Handle vector move / load which zero the destination register top bits (i.e. movd...
[oota-llvm.git] / test / CodeGen / X86 / vec_set-5.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -o %t -f
2 ; RUN: grep movlhps   %t | count 1
3 ; RUN: grep movq      %t | count 1
4 ; RUN: grep movsd     %t | count 1
5
6 define <4 x float> @test1(float %a, float %b) nounwind {
7         %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 0               ; <<4 x float>> [#uses=1]
8         %tmp6 = insertelement <4 x float> %tmp, float 0.000000e+00, i32 1               ; <<4 x float>> [#uses=1]
9         %tmp8 = insertelement <4 x float> %tmp6, float %b, i32 2                ; <<4 x float>> [#uses=1]
10         %tmp9 = insertelement <4 x float> %tmp8, float 0.000000e+00, i32 3              ; <<4 x float>> [#uses=1]
11         ret <4 x float> %tmp9
12 }
13
14 define <4 x float> @test2(float %a, float %b) nounwind {
15         %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 0               ; <<4 x float>> [#uses=1]
16         %tmp7 = insertelement <4 x float> %tmp, float %b, i32 1         ; <<4 x float>> [#uses=1]
17         %tmp8 = insertelement <4 x float> %tmp7, float 0.000000e+00, i32 2              ; <<4 x float>> [#uses=1]
18         %tmp9 = insertelement <4 x float> %tmp8, float 0.000000e+00, i32 3              ; <<4 x float>> [#uses=1]
19         ret <4 x float> %tmp9
20 }
21
22 define <2 x i64> @test3(i32 %a, i32 %b) nounwind {
23         %tmp = insertelement <4 x i32> zeroinitializer, i32 %a, i32 0           ; <<4 x i32>> [#uses=1]
24         %tmp6 = insertelement <4 x i32> %tmp, i32 %b, i32 1             ; <<4 x i32>> [#uses=1]
25         %tmp8 = insertelement <4 x i32> %tmp6, i32 0, i32 2             ; <<4 x i32>> [#uses=1]
26         %tmp10 = insertelement <4 x i32> %tmp8, i32 0, i32 3            ; <<4 x i32>> [#uses=1]
27         %tmp11 = bitcast <4 x i32> %tmp10 to <2 x i64>          ; <<2 x i64>> [#uses=1]
28         ret <2 x i64> %tmp11
29 }