summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-07-21 09:23:21 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-07-21 09:23:21 +0000
commitefd14a62a3cd07861e0810ed04bb28b8bae2c25d (patch)
treeee38294aad1ed92637751b567c4a5d96e4bdc711
parentf7a02c17628e825082e845f865a3ac4616cb5e01 (diff)
downloadbcm5719-llvm-efd14a62a3cd07861e0810ed04bb28b8bae2c25d.tar.gz
bcm5719-llvm-efd14a62a3cd07861e0810ed04bb28b8bae2c25d.zip
FileCheck-ize a test.
llvm-svn: 213508
-rw-r--r--llvm/test/CodeGen/X86/vec_extract-sse4.ll30
1 files changed, 25 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/vec_extract-sse4.ll b/llvm/test/CodeGen/X86/vec_extract-sse4.ll
index 3cb519adf4f..747c8a8e8d0 100644
--- a/llvm/test/CodeGen/X86/vec_extract-sse4.ll
+++ b/llvm/test/CodeGen/X86/vec_extract-sse4.ll
@@ -1,10 +1,13 @@
-; RUN: llc < %s -mcpu=corei7 -march=x86 -mattr=+sse4.1 -o %t
-; RUN: not grep extractps %t
-; RUN: not grep pextrd %t
-; RUN: not grep pshufd %t
-; RUN: not grep movss %t
+; RUN: llc < %s -mcpu=corei7 -march=x86 -mattr=+sse4.1 | FileCheck %s
define void @t1(float* %R, <4 x float>* %P1) nounwind {
+; CHECK-LABEL: @t1
+; CHECK: movl 4(%esp), %[[R0:e[abcd]x]]
+; CHECK-NEXT: movl 8(%esp), %[[R1:e[abcd]x]]
+; CHECK-NEXT: movl 12(%[[R1]]), %[[R2:e[abcd]x]]
+; CHECK-NEXT: movl %[[R2]], (%[[R0]])
+; CHECK-NEXT: retl
+
%X = load <4 x float>* %P1
%tmp = extractelement <4 x float> %X, i32 3
store float %tmp, float* %R
@@ -12,12 +15,24 @@ define void @t1(float* %R, <4 x float>* %P1) nounwind {
}
define float @t2(<4 x float>* %P1) nounwind {
+; CHECK-LABEL: @t2
+; CHECK: movl 4(%esp), %[[R0:e[abcd]x]]
+; CHECK-NEXT: flds 8(%[[R0]])
+; CHECK-NEXT: retl
+
%X = load <4 x float>* %P1
%tmp = extractelement <4 x float> %X, i32 2
ret float %tmp
}
define void @t3(i32* %R, <4 x i32>* %P1) nounwind {
+; CHECK-LABEL: @t3
+; CHECK: movl 4(%esp), %[[R0:e[abcd]x]]
+; CHECK-NEXT: movl 8(%esp), %[[R1:e[abcd]x]]
+; CHECK-NEXT: movl 12(%[[R1]]), %[[R2:e[abcd]x]]
+; CHECK-NEXT: movl %[[R2]], (%[[R0]])
+; CHECK-NEXT: retl
+
%X = load <4 x i32>* %P1
%tmp = extractelement <4 x i32> %X, i32 3
store i32 %tmp, i32* %R
@@ -25,6 +40,11 @@ define void @t3(i32* %R, <4 x i32>* %P1) nounwind {
}
define i32 @t4(<4 x i32>* %P1) nounwind {
+; CHECK-LABEL: @t4
+; CHECK: movl 4(%esp), %[[R0:e[abcd]x]]
+; CHECK-NEXT: movl 12(%[[R0]]), %eax
+; CHECK-NEXT: retl
+
%X = load <4 x i32>* %P1
%tmp = extractelement <4 x i32> %X, i32 3
ret i32 %tmp
OpenPOWER on IntegriCloud