blob: 170280c4d40c96c67f864b63e01105be44096184 [file] [log] [blame]
Chris Lattnerb892eec2009-07-23 04:33:02 +00001; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin9 -mattr=sse41 | FileCheck %s -check-prefix=X32
2; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 -mattr=sse41 | FileCheck %s -check-prefix=X64
3
Chris Lattner972d5622009-07-23 04:39:09 +00004@g16 = external global i16
Chris Lattnerb892eec2009-07-23 04:33:02 +00005
Chris Lattner972d5622009-07-23 04:39:09 +00006define <4 x i32> @pinsrd_1(i32 %s, <4 x i32> %tmp) nounwind {
Chris Lattnerb892eec2009-07-23 04:33:02 +00007 %tmp1 = insertelement <4 x i32> %tmp, i32 %s, i32 1
8 ret <4 x i32> %tmp1
Chris Lattner972d5622009-07-23 04:39:09 +00009; X32: pinsrd_1:
Chris Lattnerb892eec2009-07-23 04:33:02 +000010; X32: pinsrd $1, 4(%esp), %xmm0
11
Chris Lattner972d5622009-07-23 04:39:09 +000012; X64: pinsrd_1:
Chris Lattnerb892eec2009-07-23 04:33:02 +000013; X64: pinsrd $1, %edi, %xmm0
14}
15
Chris Lattner972d5622009-07-23 04:39:09 +000016define <16 x i8> @pinsrb_1(i8 %s, <16 x i8> %tmp) nounwind {
Chris Lattnerb892eec2009-07-23 04:33:02 +000017 %tmp1 = insertelement <16 x i8> %tmp, i8 %s, i32 1
18 ret <16 x i8> %tmp1
Chris Lattner972d5622009-07-23 04:39:09 +000019; X32: pinsrb_1:
Chris Lattnerb892eec2009-07-23 04:33:02 +000020; X32: pinsrb $1, 4(%esp), %xmm0
21
Chris Lattner972d5622009-07-23 04:39:09 +000022; X64: pinsrb_1:
Chris Lattnerb892eec2009-07-23 04:33:02 +000023; X64: pinsrb $1, %edi, %xmm0
24}
Chris Lattner972d5622009-07-23 04:39:09 +000025
26
27define <2 x i64> @pmovsxbd_1(i32* %p) nounwind {
28entry:
29 %0 = load i32* %p, align 4
30 %1 = insertelement <4 x i32> undef, i32 %0, i32 0
31 %2 = insertelement <4 x i32> %1, i32 0, i32 1
32 %3 = insertelement <4 x i32> %2, i32 0, i32 2
33 %4 = insertelement <4 x i32> %3, i32 0, i32 3
34 %5 = bitcast <4 x i32> %4 to <16 x i8>
35 %6 = tail call <4 x i32> @llvm.x86.sse41.pmovsxbd(<16 x i8> %5) nounwind readnone
36 %7 = bitcast <4 x i32> %6 to <2 x i64>
37 ret <2 x i64> %7
38
39; X32: _pmovsxbd_1:
40; X32: movl 4(%esp), %eax
41; X32: pmovsxbd (%eax), %xmm0
42
43; X64: _pmovsxbd_1:
44; X64: pmovsxbd (%rdi), %xmm0
45}
46
47define <2 x i64> @pmovsxwd_1(i64* %p) nounwind readonly {
48entry:
49 %0 = load i64* %p ; <i64> [#uses=1]
50 %tmp2 = insertelement <2 x i64> zeroinitializer, i64 %0, i32 0 ; <<2 x i64>> [#uses=1]
51 %1 = bitcast <2 x i64> %tmp2 to <8 x i16> ; <<8 x i16>> [#uses=1]
52 %2 = tail call <4 x i32> @llvm.x86.sse41.pmovsxwd(<8 x i16> %1) nounwind readnone ; <<4 x i32>> [#uses=1]
53 %3 = bitcast <4 x i32> %2 to <2 x i64> ; <<2 x i64>> [#uses=1]
54 ret <2 x i64> %3
55
56; X32: _pmovsxwd_1:
57; X32: movl 4(%esp), %eax
58; X32: pmovsxwd (%eax), %xmm0
59
60; X64: _pmovsxwd_1:
61; X64: pmovsxwd (%rdi), %xmm0
62}
63
64
65
66
67define <2 x i64> @pmovzxbq_1() nounwind {
68entry:
69 %0 = load i16* @g16, align 2 ; <i16> [#uses=1]
70 %1 = insertelement <8 x i16> undef, i16 %0, i32 0 ; <<8 x i16>> [#uses=1]
71 %2 = bitcast <8 x i16> %1 to <16 x i8> ; <<16 x i8>> [#uses=1]
72 %3 = tail call <2 x i64> @llvm.x86.sse41.pmovzxbq(<16 x i8> %2) nounwind readnone ; <<2 x i64>> [#uses=1]
73 ret <2 x i64> %3
74
75; X32: _pmovzxbq_1:
76; X32: movl L_g16$non_lazy_ptr, %eax
77; X32: pmovzxbq (%eax), %xmm0
78
79; X64: _pmovzxbq_1:
80; X64: movq _g16@GOTPCREL(%rip), %rax
81; X64: pmovzxbq (%rax), %xmm0
82}
83
84declare <4 x i32> @llvm.x86.sse41.pmovsxbd(<16 x i8>) nounwind readnone
85declare <4 x i32> @llvm.x86.sse41.pmovsxwd(<8 x i16>) nounwind readnone
86declare <2 x i64> @llvm.x86.sse41.pmovzxbq(<16 x i8>) nounwind readnone
Chris Lattner1501f8b2009-07-23 04:43:48 +000087
88
89
90
91define i32 @extractps_1(<4 x float> %v) nounwind {
92 %s = extractelement <4 x float> %v, i32 3
93 %i = bitcast float %s to i32
94 ret i32 %i
95
96; X32: _extractps_1:
97; X32: extractps $3, %xmm0, %eax
98
99; X64: _extractps_1:
100; X64: extractps $3, %xmm0, %eax
101}
102define i32 @extractps_2(<4 x float> %v) nounwind {
103 %t = bitcast <4 x float> %v to <4 x i32>
104 %s = extractelement <4 x i32> %t, i32 3
105 ret i32 %s
106
107; X64: _extractps_2:
108; X64: extractps $3, %xmm0, %eax
109}