]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/X86/cvtv2f32.ll
Vendor import of llvm trunk r290819:
[FreeBSD/FreeBSD.git] / test / CodeGen / X86 / cvtv2f32.ll
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-linux-pc -mcpu=corei7 | FileCheck %s --check-prefix=X32
3 ; RUN: llc < %s -mtriple=x86_64-linux-pc -mcpu=corei7 | FileCheck %s --check-prefix=X64
4
5 ; uitofp <2 x i32> codegen from buildvector or legalization is different but gives the same results
6 ; across the full 0 - 0xFFFFFFFF u32 range.
7
8 define <2 x float> @uitofp_2i32_buildvector(i32 %x, i32 %y, <2 x float> %v) {
9 ; X32-LABEL: uitofp_2i32_buildvector:
10 ; X32:       # BB#0:
11 ; X32-NEXT:    movq {{.*#+}} xmm1 = mem[0],zero
12 ; X32-NEXT:    movdqa {{.*#+}} xmm2 = [1258291200,1258291200,1258291200,1258291200]
13 ; X32-NEXT:    pblendw {{.*#+}} xmm2 = xmm1[0],xmm2[1],xmm1[2],xmm2[3],xmm1[4],xmm2[5],xmm1[6],xmm2[7]
14 ; X32-NEXT:    psrld $16, %xmm1
15 ; X32-NEXT:    pblendw {{.*#+}} xmm1 = xmm1[0],mem[1],xmm1[2],mem[3],xmm1[4],mem[5],xmm1[6],mem[7]
16 ; X32-NEXT:    addps {{\.LCPI.*}}, %xmm1
17 ; X32-NEXT:    addps %xmm2, %xmm1
18 ; X32-NEXT:    mulps %xmm1, %xmm0
19 ; X32-NEXT:    retl
20 ;
21 ; X64-LABEL: uitofp_2i32_buildvector:
22 ; X64:       # BB#0:
23 ; X64-NEXT:    movd %edi, %xmm1
24 ; X64-NEXT:    pinsrd $1, %esi, %xmm1
25 ; X64-NEXT:    movdqa {{.*#+}} xmm2 = [1258291200,1258291200,1258291200,1258291200]
26 ; X64-NEXT:    pblendw {{.*#+}} xmm2 = xmm1[0],xmm2[1],xmm1[2],xmm2[3],xmm1[4],xmm2[5],xmm1[6],xmm2[7]
27 ; X64-NEXT:    psrld $16, %xmm1
28 ; X64-NEXT:    pblendw {{.*#+}} xmm1 = xmm1[0],mem[1],xmm1[2],mem[3],xmm1[4],mem[5],xmm1[6],mem[7]
29 ; X64-NEXT:    addps {{.*}}(%rip), %xmm1
30 ; X64-NEXT:    addps %xmm2, %xmm1
31 ; X64-NEXT:    mulps %xmm1, %xmm0
32 ; X64-NEXT:    retq
33   %t1 = uitofp i32 %x to float
34   %t2 = insertelement <2 x float> undef, float %t1, i32 0
35   %t3 = uitofp i32 %y to float
36   %t4 = insertelement <2 x float> %t2, float %t3, i32 1
37   %t5 = fmul <2 x float> %v, %t4
38   ret <2 x float> %t5
39 }
40
41 define <2 x float> @uitofp_2i32_legalized(<2 x i32> %in, <2 x float> %v) {
42 ; X32-LABEL: uitofp_2i32_legalized:
43 ; X32:       # BB#0:
44 ; X32-NEXT:    pxor %xmm2, %xmm2
45 ; X32-NEXT:    pblendw {{.*#+}} xmm2 = xmm0[0,1],xmm2[2,3],xmm0[4,5],xmm2[6,7]
46 ; X32-NEXT:    movdqa {{.*#+}} xmm0 = [4.503600e+15,4.503600e+15]
47 ; X32-NEXT:    por %xmm0, %xmm2
48 ; X32-NEXT:    subpd %xmm0, %xmm2
49 ; X32-NEXT:    cvtpd2ps %xmm2, %xmm0
50 ; X32-NEXT:    mulps %xmm1, %xmm0
51 ; X32-NEXT:    retl
52 ;
53 ; X64-LABEL: uitofp_2i32_legalized:
54 ; X64:       # BB#0:
55 ; X64-NEXT:    pxor %xmm2, %xmm2
56 ; X64-NEXT:    pblendw {{.*#+}} xmm2 = xmm0[0,1],xmm2[2,3],xmm0[4,5],xmm2[6,7]
57 ; X64-NEXT:    movdqa {{.*#+}} xmm0 = [4.503600e+15,4.503600e+15]
58 ; X64-NEXT:    por %xmm0, %xmm2
59 ; X64-NEXT:    subpd %xmm0, %xmm2
60 ; X64-NEXT:    cvtpd2ps %xmm2, %xmm0
61 ; X64-NEXT:    mulps %xmm1, %xmm0
62 ; X64-NEXT:    retq
63   %t1 = uitofp <2 x i32> %in to <2 x float>
64   %t2 = fmul <2 x float> %v, %t1
65   ret <2 x float> %t2
66 }