f8b1114a7cc6a01b6d125631c688d05d611e39e2
[oota-llvm.git] / test / Analysis / CostModel / X86 / cast.ll
1 ; RUN: opt < %s  -cost-model -analyze -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck %s
2
3 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
4 target triple = "x86_64-apple-macosx10.8.0"
5
6 define i32 @add(i32 %arg) {
7
8   ; -- Same size registeres --
9   ;CHECK: cost of 1 {{.*}} zext
10   %A = zext <4 x i1> undef to <4 x i32>
11   ;CHECK: cost of 2 {{.*}} sext
12   %B = sext <4 x i1> undef to <4 x i32>
13   ;CHECK: cost of 0 {{.*}} trunc
14   %C = trunc <4 x i32> undef to <4 x i1>
15
16   ; -- Different size registers --
17   ;CHECK-NOT: cost of 1 {{.*}} zext
18   %D = zext <8 x i1> undef to <8 x i32>
19   ;CHECK-NOT: cost of 2 {{.*}} sext
20   %E = sext <8 x i1> undef to <8 x i32>
21   ;CHECK-NOT: cost of 2 {{.*}} trunc
22   %F = trunc <8 x i32> undef to <8 x i1>
23
24   ; -- scalars --
25
26   ;CHECK: cost of 1 {{.*}} zext
27   %G = zext i1 undef to i32
28   ;CHECK: cost of 0 {{.*}} trunc
29   %H = trunc i32 undef to i1
30
31   ;CHECK: cost of 1 {{.*}} ret
32   ret i32 undef
33 }
34