aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2009-07-24 19:24:26 +0000
committerEric Christopher <echristo@apple.com>2009-07-24 19:24:26 +0000
commit1243a01f6c2e175aa9b96ffd7a99950fc7b18921 (patch)
treec0f064bb1fbec4c9c6e598533ff0599dc6696d6b
parentd398a8da54be11f9a3d43908e2d3d7d59ca4e891 (diff)
downloadexternal_llvm-1243a01f6c2e175aa9b96ffd7a99950fc7b18921.zip
external_llvm-1243a01f6c2e175aa9b96ffd7a99950fc7b18921.tar.gz
external_llvm-1243a01f6c2e175aa9b96ffd7a99950fc7b18921.tar.bz2
Move insertps tests to sse41 combo test file, convert to filecheck
format and add an extract/insert test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76994 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/sse41.ll31
-rw-r--r--test/CodeGen/X86/vec_insertps-1.ll13
2 files changed, 31 insertions, 13 deletions
diff --git a/test/CodeGen/X86/sse41.ll b/test/CodeGen/X86/sse41.ll
index a35de02..6c093a8 100644
--- a/test/CodeGen/X86/sse41.ll
+++ b/test/CodeGen/X86/sse41.ll
@@ -150,4 +150,35 @@ define i32 @ext_3(<4 x i32> %v) nounwind {
; X64: pextrd $3, %xmm0, %eax
}
+define <4 x float> @insertps_1(<4 x float> %t1, <4 x float> %t2) nounwind {
+ %tmp1 = call <4 x float> @llvm.x86.sse41.insertps(<4 x float> %t1, <4 x float> %t2, i32 1) nounwind readnone
+ ret <4 x float> %tmp1
+; X32: _insertps_1:
+; X32: insertps $1, %xmm1, %xmm0
+
+; X64: _insertps_1:
+; X64: insertps $1, %xmm1, %xmm0
+}
+
+declare <4 x float> @llvm.x86.sse41.insertps(<4 x float>, <4 x float>, i32) nounwind readnone
+
+define <4 x float> @insertps_2(<4 x float> %t1, float %t2) nounwind {
+ %tmp1 = insertelement <4 x float> %t1, float %t2, i32 0
+ ret <4 x float> %tmp1
+; X32: _insertps_2:
+; X32: insertps $0, 4(%esp), %xmm0
+
+; X64: _insertps_2:
+; X64: insertps $0, %xmm1, %xmm0
+}
+
+define <4 x float> @insertps_3(<4 x float> %t1, <4 x float> %t2) nounwind {
+ %tmp2 = extractelement <4 x float> %t2, i32 0
+ %tmp1 = insertelement <4 x float> %t1, float %tmp2, i32 0
+ ret <4 x float> %tmp1
+; X32: _insertps_3:
+; X32: insertps $0, %xmm1, %xmm0
+; X64: _insertps_3:
+; X64: insertps $0, %xmm1, %xmm0
+} \ No newline at end of file
diff --git a/test/CodeGen/X86/vec_insertps-1.ll b/test/CodeGen/X86/vec_insertps-1.ll
deleted file mode 100644
index befd897..0000000
--- a/test/CodeGen/X86/vec_insertps-1.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llvm-as < %s | llc -march=x86 -mattr=sse41 | grep insertps | count 2
-
-define <4 x float> @t1(<4 x float> %t1, <4 x float> %t2) nounwind {
- %tmp1 = call <4 x float> @llvm.x86.sse41.insertps(<4 x float> %t1, <4 x float> %t2, i32 1) nounwind readnone
- ret <4 x float> %tmp1
-}
-
-declare <4 x float> @llvm.x86.sse41.insertps(<4 x float>, <4 x float>, i32) nounwind readnone
-
-define <4 x float> @t2(<4 x float> %t1, float %t2) nounwind {
- %tmp1 = insertelement <4 x float> %t1, float %t2, i32 0
- ret <4 x float> %tmp1
-} \ No newline at end of file