[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll
Chris Lattner
lattner at cs.uiuc.edu
Sat Mar 25 15:04:47 PST 2006
Changes in directory llvm/test/Regression/CodeGen/PowerPC:
eqv-andc-orc-nor.ll updated: 1.2 -> 1.3
---
Log message:
new testcases
---
Diffs of the changes: (+27 -2)
eqv-andc-orc-nor.ll | 29 +++++++++++++++++++++++++++--
1 files changed, 27 insertions(+), 2 deletions(-)
Index: llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll
diff -u llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll:1.2 llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll:1.3
--- llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll:1.2 Wed Sep 28 13:08:58 2005
+++ llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll Sat Mar 25 17:04:34 2006
@@ -1,7 +1,7 @@
; RUN: llvm-as < %s | llc -march=ppc32 | grep eqv | wc -l | grep 3 &&
-; RUN: llvm-as < %s | llc -march=ppc32 | grep andc | wc -l | grep 2 &&
+; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep andc | wc -l | grep 3 &&
; RUN: llvm-as < %s | llc -march=ppc32 | grep orc | wc -l | grep 2 &&
-; RUN: llvm-as < %s | llc -march=ppc32 | grep nor | wc -l | grep 2 &&
+; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep nor | wc -l | grep 3 &&
; RUN: llvm-as < %s | llc -march=ppc32 | grep nand | wc -l | grep 1
int %EQV1(int %X, int %Y) {
@@ -62,3 +62,28 @@
%W = xor int %Z, -1
ret int %W
}
+
+void %VNOR(<4 x float>* %P, <4 x float>* %Q) {
+ %tmp = load <4 x float>* %P
+ %tmp = cast <4 x float> %tmp to <4 x int>
+ %tmp2 = load <4 x float>* %Q
+ %tmp2 = cast <4 x float> %tmp2 to <4 x int>
+ %tmp3 = or <4 x int> %tmp, %tmp2
+ %tmp4 = xor <4 x int> %tmp3, < int -1, int -1, int -1, int -1 >
+ %tmp4 = cast <4 x int> %tmp4 to <4 x float>
+ store <4 x float> %tmp4, <4 x float>* %P
+ ret void
+}
+
+void %VANDC(<4 x float>* %P, <4 x float>* %Q) {
+ %tmp = load <4 x float>* %P
+ %tmp = cast <4 x float> %tmp to <4 x int>
+ %tmp2 = load <4 x float>* %Q
+ %tmp2 = cast <4 x float> %tmp2 to <4 x int>
+ %tmp3 = and <4 x int> %tmp, %tmp2
+ %tmp4 = xor <4 x int> %tmp3, < int -1, int -1, int -1, int -1 >
+ %tmp4 = cast <4 x int> %tmp4 to <4 x float>
+ store <4 x float> %tmp4, <4 x float>* %P
+ ret void
+}
+
More information about the llvm-commits
mailing list