summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/README_ALTIVEC.txt
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2008-02-13 07:06:12 +0000
committerNate Begeman <natebegeman@mac.com>2008-02-13 07:06:12 +0000
commitb5041b30851b1173170a8d281b2e9571a2a04bdd (patch)
treeae404ac41c26af4f30b887b1b3f0c31327913291 /lib/Target/PowerPC/README_ALTIVEC.txt
parent261c704da165d4b5aa0d75a978cdc7e750cc033b (diff)
downloadllvm-b5041b30851b1173170a8d281b2e9571a2a04bdd.tar.gz
llvm-b5041b30851b1173170a8d281b2e9571a2a04bdd.tar.bz2
llvm-b5041b30851b1173170a8d281b2e9571a2a04bdd.tar.xz
readme updates
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47051 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/README_ALTIVEC.txt')
-rw-r--r--lib/Target/PowerPC/README_ALTIVEC.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/README_ALTIVEC.txt b/lib/Target/PowerPC/README_ALTIVEC.txt
index 143804da07..461b4123c7 100644
--- a/lib/Target/PowerPC/README_ALTIVEC.txt
+++ b/lib/Target/PowerPC/README_ALTIVEC.txt
@@ -177,3 +177,12 @@ which prevents the vnot pattern from matching.
//===----------------------------------------------------------------------===//
+
+An alternative to the store/store/load approach for illegal insert element
+lowering would be:
+
+1. store element to any ol' slot
+2. lvx the slot
+3. lvsl 0; splat index; vcmpeq to generate a select mask
+4. lvsl slot + x; vperm to rotate result into correct slot
+5. vsel result together.