summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-09-25 22:52:29 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-09-25 22:52:29 +0000
commit58cd84dc775ec4b4fb11e7d0e383449dfd81cf11 (patch)
treefc951d51d373aafd2a55e02c3502f81cd7c150a3
parent2bf0649e053d1589689d2e4cf32c7bf1e5e6ae12 (diff)
downloadllvm-58cd84dc775ec4b4fb11e7d0e383449dfd81cf11.tar.gz
llvm-58cd84dc775ec4b4fb11e7d0e383449dfd81cf11.tar.bz2
llvm-58cd84dc775ec4b4fb11e7d0e383449dfd81cf11.tar.xz
Provide proper masks for neon perfect shuffle table.
I definitely need to read documentation better :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82813 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/PerfectShuffle/PerfectShuffle.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/utils/PerfectShuffle/PerfectShuffle.cpp b/utils/PerfectShuffle/PerfectShuffle.cpp
index 7a42d02f8b..b94a7d326d 100644
--- a/utils/PerfectShuffle/PerfectShuffle.cpp
+++ b/utils/PerfectShuffle/PerfectShuffle.cpp
@@ -545,27 +545,27 @@ vext<2> the_vext2("vext2", OP_VEXT2);
vext<3> the_vext3("vext3", OP_VEXT3);
struct vuzpl : public Operator {
- vuzpl() : Operator(0x1032, "vuzpl", OP_VUZPL, 2) {}
+ vuzpl() : Operator(0x0246, "vuzpl", OP_VUZPL, 2) {}
} the_vuzpl;
struct vuzpr : public Operator {
- vuzpr() : Operator(0x4602, "vuzpr", OP_VUZPR, 2) {}
+ vuzpr() : Operator(0x1357, "vuzpr", OP_VUZPR, 2) {}
} the_vuzpr;
struct vzipl : public Operator {
- vzipl() : Operator(0x6273, "vzipl", OP_VZIPL, 2) {}
+ vzipl() : Operator(0x0415, "vzipl", OP_VZIPL, 2) {}
} the_vzipl;
struct vzipr : public Operator {
- vzipr() : Operator(0x4051, "vzipr", OP_VZIPR, 2) {}
+ vzipr() : Operator(0x2637, "vzipr", OP_VZIPR, 2) {}
} the_vzipr;
struct vtrnl : public Operator {
- vtrnl() : Operator(0x5173, "vtrnl", OP_VTRNL, 2) {}
+ vtrnl() : Operator(0x0426, "vtrnl", OP_VTRNL, 2) {}
} the_vtrnl;
struct vtrnr : public Operator {
- vtrnr() : Operator(0x4062, "vtrnr", OP_VTRNR, 2) {}
+ vtrnr() : Operator(0x1537, "vtrnr", OP_VTRNR, 2) {}
} the_vtrnr;
#endif