blob: 2efdb14b4044683ae773fd0f179c6b659df0c7f0 [file] [log] [blame]
NAKAMURA Takumi384490c2011-02-22 07:21:51 +00001; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
2; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
Bruno Cardoso Lopese8501a42010-09-09 18:48:34 +00003; RUN: llc -O0 < %s -march=x86 -mcpu=core2 | FileCheck %s --check-prefix=CHECK_O0
Bruno Cardoso Lopesfea81b42010-09-01 22:33:20 +00004
5define <4 x i32> @t00(<4 x i32>* %a0) nounwind ssp {
6entry:
NAKAMURA Takumi384490c2011-02-22 07:21:51 +00007; CHECK: movaps ({{%rdi|%rcx}}), %xmm0
Bruno Cardoso Lopesfea81b42010-09-01 22:33:20 +00008; CHECK-NEXT: movaps %xmm0, %xmm1
9; CHECK-NEXT: movlps (%rax), %xmm1
10; CHECK-NEXT: shufps $36, %xmm1, %xmm0
11 %0 = load <4 x i32>* undef, align 16
12 %1 = load <4 x i32>* %a0, align 16
13 %2 = shufflevector <4 x i32> %1, <4 x i32> %0, <4 x i32> <i32 0, i32 1, i32 2, i32 4>
14 ret <4 x i32> %2
15}
16
Bruno Cardoso Lopese8501a42010-09-09 18:48:34 +000017define void @t01(double* %a0) nounwind ssp {
18entry:
19; CHECK_O0: movsd (%eax), %xmm0
20; CHECK_O0: unpcklpd %xmm0, %xmm0
21 %tmp93 = load double* %a0, align 8
22 %vecinit94 = insertelement <2 x double> undef, double %tmp93, i32 1
23 store <2 x double> %vecinit94, <2 x double>* undef
24 ret void
25}