[x86] Teach the vector combiner that picks a canonical shuffle from to
[oota-llvm.git] / test / CodeGen / X86 / extractelement-load.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse2 -mcpu=yonah | FileCheck %s
2 ; RUN: llc < %s -march=x86-64 -mattr=+sse2 -mcpu=core2 | FileCheck %s
3
4 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
5
6 define i32 @t(<2 x i64>* %val) nounwind  {
7 ; CHECK-LABEL: t:
8 ; CHECK-NOT: movd
9 ; CHECK: movl 8(
10 ; CHECK-NEXT: ret
11         %tmp2 = load <2 x i64>* %val, align 16          ; <<2 x i64>> [#uses=1]
12         %tmp3 = bitcast <2 x i64> %tmp2 to <4 x i32>            ; <<4 x i32>> [#uses=1]
13         %tmp4 = extractelement <4 x i32> %tmp3, i32 2           ; <i32> [#uses=1]
14         ret i32 %tmp4
15 }
16
17 ; Case where extractelement of load ends up as undef.
18 ; (Making sure this doesn't crash.)
19 define i32 @t2(<8 x i32>* %xp) {
20 ; CHECK-LABEL: t2:
21 ; CHECK: ret
22   %x = load <8 x i32>* %xp
23   %Shuff68 = shufflevector <8 x i32> %x, <8 x i32> undef, <8 x i32> <i32
24 undef, i32 7, i32 9, i32 undef, i32 13, i32 15, i32 1, i32 3>
25   %y = extractelement <8 x i32> %Shuff68, i32 0
26   ret i32 %y
27 }
28
29 ; This case could easily end up inf-looping in the DAG combiner due to an
30 ; low alignment load of the vector which prevents us from reliably forming a
31 ; narrow load.
32 ; FIXME: It would be nice to detect whether the target has fast and legal
33 ; unaligned loads and use them here.
34 define void @t3() {
35 ; CHECK-LABEL: t3:
36 ;
37 ; This movs the entire vector, shuffling the high double down. If we fixed the
38 ; FIXME above it would just move the high double directly.
39 ; CHECK: movups
40 ; CHECK: movhlps
41 ; CHECK: movlps
42
43 bb:
44   %tmp13 = load <2 x double>* undef, align 1
45   %.sroa.3.24.vec.extract = extractelement <2 x double> %tmp13, i32 1
46   store double %.sroa.3.24.vec.extract, double* undef, align 8
47   unreachable
48 }