54 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mtriple=i386-unknown -mattr=+sse2,+sse4.1 | FileCheck %s --check-prefix=X863; RUN: llc < %s -mtriple=x86_64-unknown -mattr=+sse2,+sse4.1 | FileCheck %s --check-prefix=X644 5define <4 x float> @test(float %a) {6; X86-LABEL: test:7; X86: # %bb.0:8; X86-NEXT: insertps {{.*#+}} xmm0 = zero,mem[0],zero,zero9; X86-NEXT: retl10;11; X64-LABEL: test:12; X64: # %bb.0:13; X64-NEXT: insertps {{.*#+}} xmm0 = zero,xmm0[0],zero,zero14; X64-NEXT: retq15 %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 116 %tmp5 = insertelement <4 x float> %tmp, float 0.000000e+00, i32 217 %tmp6 = insertelement <4 x float> %tmp5, float 0.000000e+00, i32 318 ret <4 x float> %tmp619}20 21define <2 x i64> @test2(i32 %a) {22; X86-LABEL: test2:23; X86: # %bb.0:24; X86-NEXT: movd {{.*#+}} xmm0 = mem[0],zero,zero,zero25; X86-NEXT: pshufd {{.*#+}} xmm0 = xmm0[1,1,0,1]26; X86-NEXT: retl27;28; X64-LABEL: test2:29; X64: # %bb.0:30; X64-NEXT: movd %edi, %xmm031; X64-NEXT: pshufd {{.*#+}} xmm0 = xmm0[1,1,0,1]32; X64-NEXT: retq33 %tmp7 = insertelement <4 x i32> zeroinitializer, i32 %a, i32 234 %tmp9 = insertelement <4 x i32> %tmp7, i32 0, i32 335 %tmp10 = bitcast <4 x i32> %tmp9 to <2 x i64>36 ret <2 x i64> %tmp1037}38 39define <4 x float> @test3(<4 x float> %A) {40; X86-LABEL: test3:41; X86: # %bb.0:42; X86-NEXT: insertps {{.*#+}} xmm0 = zero,xmm0[0],zero,zero43; X86-NEXT: retl44;45; X64-LABEL: test3:46; X64: # %bb.0:47; X64-NEXT: insertps {{.*#+}} xmm0 = zero,xmm0[0],zero,zero48; X64-NEXT: retq49 %tmp0 = extractelement <4 x float> %A, i32 050 %tmp1 = insertelement <4 x float> <float 0.000000e+00, float undef, float undef, float undef >, float %tmp0, i32 151 %tmp2 = insertelement <4 x float> %tmp1, float 0.000000e+00, i32 252 ret <4 x float> %tmp253}54