aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-19 05:33:30 +0000
committerChris Lattner <sabre@nondot.org>2006-03-19 05:33:30 +0000
commit28b1a0b5323eb6953f40c28b4a2b02c6602d49ac (patch)
tree3bd54c5235f63d45f8fd14035bd963e655fbeb0a
parent210721aecc0916315f61660dc387a96b89ec423b (diff)
notes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26856 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/README.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/README.txt b/lib/Target/PowerPC/README.txt
index c4cf303543..42a644c1f3 100644
--- a/lib/Target/PowerPC/README.txt
+++ b/lib/Target/PowerPC/README.txt
@@ -506,6 +506,7 @@ Implement PPCInstrInfo::isLoadFromStackSlot/isStoreToStackSlot for vector
registers, to generate better spill code.
===-------------------------------------------------------------------------===
+
int foo(int N, int ***W, int **TK, int X) {
int t, i;
@@ -518,5 +519,20 @@ int foo(int N, int ***W, int **TK, int X) {
We generate relatively atrocious code for this loop compared to gcc.
+===-------------------------------------------------------------------------===
+
+Altivec support. The first should be a single lvx from the constant pool, the
+second should be a xor/stvx:
+void foo(void) {
+ int x[8] __attribute__((aligned(128))) = { 1, 1, 1, 1, 1, 1, 1, 1 };
+ bar (x);
+}
+
+#include <string.h>
+void foo(void) {
+ int x[8] __attribute__((aligned(128)));
+ memset (x, 0, sizeof (x));
+ bar (x);
+}