blob: 79de903536d5a3d02797b06167f3fdff3fff8b42 [file] [log] [blame]
Evan Chengebfd1172008-04-07 17:02:18 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse,-sse2 | grep shufps | count 4
Anton Korobeynikov0a06e272008-05-06 23:09:29 +00002; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse,-sse2 -mtriple=i386-apple-darwin | grep mov | count 2
Evan Chengbf8b2c52008-04-05 00:30:36 +00003; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep pshufd | count 4
4; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep shufps
Anton Korobeynikov0a06e272008-05-06 23:09:29 +00005; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -mtriple=i386-apple-darwin | not grep mov
Evan Chengbf8b2c52008-04-05 00:30:36 +00006
7define <4 x float> @t1(<4 x float> %a, <4 x float> %b) nounwind {
8 %tmp1 = shufflevector <4 x float> %b, <4 x float> undef, <4 x i32> zeroinitializer
9 ret <4 x float> %tmp1
10}
11
12define <4 x float> @t2(<4 x float> %A, <4 x float> %B) nounwind {
13 %tmp = shufflevector <4 x float> %A, <4 x float> %B, <4 x i32> < i32 3, i32 3, i32 3, i32 3 >
14 ret <4 x float> %tmp
15}
16
17define <4 x float> @t3(<4 x float> %A, <4 x float> %B) nounwind {
18 %tmp = shufflevector <4 x float> %A, <4 x float> %B, <4 x i32> < i32 4, i32 4, i32 4, i32 4 >
19 ret <4 x float> %tmp
20}
21
22define <4 x float> @t4(<4 x float> %A, <4 x float> %B) nounwind {
23 %tmp = shufflevector <4 x float> %A, <4 x float> %B, <4 x i32> < i32 1, i32 3, i32 2, i32 0 >
24 ret <4 x float> %tmp
25}