bdd852138853844170ffdb67cc8c4430a5308817
[oota-llvm.git] / test / CodeGen / X86 / vec_set-3.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse2 -mcpu=penryn | FileCheck %s
2
3 define <4 x float> @test(float %a) {
4 ; CHECK-LABEL: test:
5 ; CHECK:         movss {{.*}}, %xmm0
6 ; CHECK-NEXT:    pshufd {{.*#+}} xmm0 = xmm0[1,0,1,1]
7 ; CHECK-NEXT:    retl
8
9 entry:
10   %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 1
11   %tmp5 = insertelement <4 x float> %tmp, float 0.000000e+00, i32 2
12   %tmp6 = insertelement <4 x float> %tmp5, float 0.000000e+00, i32 3
13   ret <4 x float> %tmp6
14 }
15
16 define <2 x i64> @test2(i32 %a) {
17 ; CHECK-LABEL: test2:
18 ; CHECK:         movd {{.*}}, %xmm0
19 ; CHECK-NEXT:    pshufd {{.*#+}} xmm0 = xmm0[1,1,0,1]
20 ; CHECK-NEXT:    retl
21
22 entry:
23   %tmp7 = insertelement <4 x i32> zeroinitializer, i32 %a, i32 2
24   %tmp9 = insertelement <4 x i32> %tmp7, i32 0, i32 3
25   %tmp10 = bitcast <4 x i32> %tmp9 to <2 x i64>
26   ret <2 x i64> %tmp10
27 }
28
29 define <4 x float> @test3(<4 x float> %A) {
30 ; CHECK-LABEL: test3:
31 ; CHECK:         xorps %[[X1:xmm[0-9]+]], %[[X1]]
32 ; CHECK-NEXT:    movss %xmm0, %[[X1]]
33 ; CHECK-NEXT:    pshufd {{.*#+}} xmm0 = [[X1]][1,0,1,1]
34 ; CHECK-NEXT:    retl
35
36   %tmp0 = extractelement <4 x float> %A, i32 0
37   %tmp1 = insertelement <4 x float> <float 0.000000e+00, float undef, float undef, float undef >, float %tmp0, i32 1
38   %tmp2 = insertelement <4 x float> %tmp1, float 0.000000e+00, i32 2
39   ret <4 x float> %tmp2
40 }