xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/vec_set-3.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=i386-unknown -mattr=+sse2,+sse4.1 | FileCheck %s
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Workerdefine <4 x float> @test(float %a) {
5*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: test:
6*9880d681SAndroid Build Coastguard Worker; CHECK:       # BB#0:
7*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    insertps {{.*#+}} xmm0 = zero,mem[0],zero,zero
8*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retl
9*9880d681SAndroid Build Coastguard Worker  %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 1
10*9880d681SAndroid Build Coastguard Worker  %tmp5 = insertelement <4 x float> %tmp, float 0.000000e+00, i32 2
11*9880d681SAndroid Build Coastguard Worker  %tmp6 = insertelement <4 x float> %tmp5, float 0.000000e+00, i32 3
12*9880d681SAndroid Build Coastguard Worker  ret <4 x float> %tmp6
13*9880d681SAndroid Build Coastguard Worker}
14*9880d681SAndroid Build Coastguard Worker
15*9880d681SAndroid Build Coastguard Workerdefine <2 x i64> @test2(i32 %a) {
16*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: test2:
17*9880d681SAndroid Build Coastguard Worker; CHECK:       # BB#0:
18*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    movd {{.*#+}} xmm0 = mem[0],zero,zero,zero
19*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    pshufd {{.*#+}} xmm0 = xmm0[1,1,0,1]
20*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retl
21*9880d681SAndroid Build Coastguard Worker  %tmp7 = insertelement <4 x i32> zeroinitializer, i32 %a, i32 2
22*9880d681SAndroid Build Coastguard Worker  %tmp9 = insertelement <4 x i32> %tmp7, i32 0, i32 3
23*9880d681SAndroid Build Coastguard Worker  %tmp10 = bitcast <4 x i32> %tmp9 to <2 x i64>
24*9880d681SAndroid Build Coastguard Worker  ret <2 x i64> %tmp10
25*9880d681SAndroid Build Coastguard Worker}
26*9880d681SAndroid Build Coastguard Worker
27*9880d681SAndroid Build Coastguard Workerdefine <4 x float> @test3(<4 x float> %A) {
28*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: test3:
29*9880d681SAndroid Build Coastguard Worker; CHECK:       # BB#0:
30*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    insertps {{.*#+}} xmm0 = zero,xmm0[0],zero,zero
31*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retl
32*9880d681SAndroid Build Coastguard Worker  %tmp0 = extractelement <4 x float> %A, i32 0
33*9880d681SAndroid Build Coastguard Worker  %tmp1 = insertelement <4 x float> <float 0.000000e+00, float undef, float undef, float undef >, float %tmp0, i32 1
34*9880d681SAndroid Build Coastguard Worker  %tmp2 = insertelement <4 x float> %tmp1, float 0.000000e+00, i32 2
35*9880d681SAndroid Build Coastguard Worker  ret <4 x float> %tmp2
36*9880d681SAndroid Build Coastguard Worker}
37