Simplified TRUNCATE operation that comes after SETCC. It is possible since SETCC...
[oota-llvm.git] / test / CodeGen / X86 / avx-trunc.ll
1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -mattr=+avx | FileCheck %s
2
3 define <4 x i32> @trunc_64_32(<4 x i64> %A) nounwind uwtable readnone ssp{
4 ; CHECK: trunc_64_32
5 ; CHECK: pshufd
6   %B = trunc <4 x i64> %A to <4 x i32>
7   ret <4 x i32>%B
8 }
9 define <8 x i16> @trunc_32_16(<8 x i32> %A) nounwind uwtable readnone ssp{
10 ; CHECK: trunc_32_16
11 ; CHECK: pshufb
12   %B = trunc <8 x i32> %A to <8 x i16>
13   ret <8 x i16>%B
14 }
15
16 define <8 x i16> @trunc_after_setcc(<8 x float> %a, <8 x float> %b, <8 x float> %c, <8 x float> %d) {
17 ; CHECK: trunc_after_setcc
18 ; CHECK: vcmpltps
19 ; CHECK-NOT: vextract
20 ; CHECK: vcmpltps
21 ; CHECK-NEXT: vandps
22 ; CHECK-NEXT: vandps
23 ; CHECK: ret
24   %res1 = fcmp olt <8 x float> %a, %b
25   %res2 = fcmp olt <8 x float> %c, %d
26   %andr = and <8 x i1>%res1, %res2
27   %ex = zext <8 x i1> %andr to <8 x i16>
28   ret <8 x i16>%ex
29 }
30