[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp PPCISelLowering.h PPCInstrAltivec.td
Chris Lattner
lattner at cs.uiuc.edu
Thu Apr 6 10:23:29 PDT 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCISelLowering.cpp updated: 1.132 -> 1.133
PPCISelLowering.h updated: 1.39 -> 1.40
PPCInstrAltivec.td updated: 1.41 -> 1.42
---
Log message:
Compile the vpkuhum/vpkuwum intrinsics into vpkuhum/vpkuwum instead of into
vperm with a perm mask lvx'd from the constant pool.
---
Diffs of the changes: (+75 -2)
PPCISelLowering.cpp | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++
PPCISelLowering.h | 8 +++++++
PPCInstrAltivec.td | 15 ++++++++++++--
3 files changed, 75 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.132 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.133
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.132 Wed Apr 5 12:39:25 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp Thu Apr 6 12:23:16 2006
@@ -267,6 +267,56 @@
return false;
}
+/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
+/// true if Op is undef or if it matches the specified value.
+static bool isConstantOrUndef(SDOperand Op, unsigned Val) {
+ return Op.getOpcode() == ISD::UNDEF ||
+ cast<ConstantSDNode>(Op)->getValue() == Val;
+}
+
+/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
+/// VPKUHUM instruction.
+bool PPC::isVPKUHUMShuffleMask(SDNode *N) {
+ return isConstantOrUndef(N->getOperand( 0), 1) &&
+ isConstantOrUndef(N->getOperand( 1), 3) &&
+ isConstantOrUndef(N->getOperand( 2), 5) &&
+ isConstantOrUndef(N->getOperand( 3), 7) &&
+ isConstantOrUndef(N->getOperand( 4), 9) &&
+ isConstantOrUndef(N->getOperand( 5), 11) &&
+ isConstantOrUndef(N->getOperand( 6), 13) &&
+ isConstantOrUndef(N->getOperand( 7), 15) &&
+ isConstantOrUndef(N->getOperand( 8), 17) &&
+ isConstantOrUndef(N->getOperand( 9), 19) &&
+ isConstantOrUndef(N->getOperand(10), 21) &&
+ isConstantOrUndef(N->getOperand(11), 23) &&
+ isConstantOrUndef(N->getOperand(12), 25) &&
+ isConstantOrUndef(N->getOperand(13), 27) &&
+ isConstantOrUndef(N->getOperand(14), 29) &&
+ isConstantOrUndef(N->getOperand(15), 31);
+}
+
+/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
+/// VPKUWUM instruction.
+bool PPC::isVPKUWUMShuffleMask(SDNode *N) {
+ return isConstantOrUndef(N->getOperand( 0), 2) &&
+ isConstantOrUndef(N->getOperand( 1), 3) &&
+ isConstantOrUndef(N->getOperand( 2), 6) &&
+ isConstantOrUndef(N->getOperand( 3), 7) &&
+ isConstantOrUndef(N->getOperand( 4), 10) &&
+ isConstantOrUndef(N->getOperand( 5), 11) &&
+ isConstantOrUndef(N->getOperand( 6), 14) &&
+ isConstantOrUndef(N->getOperand( 7), 15) &&
+ isConstantOrUndef(N->getOperand( 8), 18) &&
+ isConstantOrUndef(N->getOperand( 9), 19) &&
+ isConstantOrUndef(N->getOperand(10), 22) &&
+ isConstantOrUndef(N->getOperand(11), 23) &&
+ isConstantOrUndef(N->getOperand(12), 26) &&
+ isConstantOrUndef(N->getOperand(13), 27) &&
+ isConstantOrUndef(N->getOperand(14), 30) &&
+ isConstantOrUndef(N->getOperand(15), 31);
+}
+
+
/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
/// specifies a splat of a single element that is suitable for input to
@@ -759,6 +809,10 @@
PPC::isSplatShuffleMask(PermMask.Val, 4)))
return Op;
+ if (PPC::isVPKUWUMShuffleMask(PermMask.Val) ||
+ PPC::isVPKUHUMShuffleMask(PermMask.Val))
+ return Op;
+
// TODO: Handle more cases, and also handle cases that are cheaper to do as
// multiple such instructions than as a constant pool load/vperm pair.
Index: llvm/lib/Target/PowerPC/PPCISelLowering.h
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.h:1.39 llvm/lib/Target/PowerPC/PPCISelLowering.h:1.40
--- llvm/lib/Target/PowerPC/PPCISelLowering.h:1.39 Tue Apr 4 12:25:31 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.h Thu Apr 6 12:23:16 2006
@@ -102,6 +102,14 @@
/// Define some predicates that are used for node matching.
namespace PPC {
+ /// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
+ /// VPKUHUM instruction.
+ bool isVPKUHUMShuffleMask(SDNode *N);
+
+ /// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
+ /// VPKUWUM instruction.
+ bool isVPKUWUMShuffleMask(SDNode *N);
+
/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
/// specifies a splat of a single element that is suitable for input to
/// VSPLTB/VSPLTH/VSPLTW.
Index: llvm/lib/Target/PowerPC/PPCInstrAltivec.td
diff -u llvm/lib/Target/PowerPC/PPCInstrAltivec.td:1.41 llvm/lib/Target/PowerPC/PPCInstrAltivec.td:1.42
--- llvm/lib/Target/PowerPC/PPCInstrAltivec.td:1.41 Wed Apr 5 17:27:14 2006
+++ llvm/lib/Target/PowerPC/PPCInstrAltivec.td Thu Apr 6 12:23:16 2006
@@ -15,6 +15,15 @@
// Altivec transformation functions and pattern fragments.
//
+/// VPKUHUM_shuffle_mask/VPKUWUM_shuffle_mask - Return true if this is a valid
+/// shuffle mask for the VPKUHUM or VPKUWUM instructions.
+def VPKUHUM_shuffle_mask : PatLeaf<(build_vector), [{
+ return PPC::isVPKUHUMShuffleMask(N);
+}]>;
+def VPKUWUM_shuffle_mask : PatLeaf<(build_vector), [{
+ return PPC::isVPKUWUMShuffleMask(N);
+}]>;
+
// VSPLT*_get_imm xform function: convert vector_shuffle mask to VSPLT* imm.
def VSPLTB_get_imm : SDNodeXForm<build_vector, [{
return getI32Imm(PPC::getVSPLTImmediate(N, 1));
@@ -369,11 +378,13 @@
def VPKSWUS : VX1_Int<334, "vpkswus", int_ppc_altivec_vpkswus>;
def VPKUHUM : VXForm_1<14, (ops VRRC:$vD, VRRC:$vA, VRRC:$vB),
"vpkuhum $vD, $vA, $vB", VecFP,
- [/*TODO*/]>;
+ [(set VRRC:$vD, (vector_shuffle (v16i8 VRRC:$vA),
+ VRRC:$vB, VPKUHUM_shuffle_mask))]>;
def VPKUHUS : VX1_Int<142, "vpkuhus", int_ppc_altivec_vpkuhus>;
def VPKUWUM : VXForm_1<78, (ops VRRC:$vD, VRRC:$vA, VRRC:$vB),
"vpkuwum $vD, $vA, $vB", VecFP,
- [/*TODO*/]>;
+ [(set VRRC:$vD, (vector_shuffle (v16i8 VRRC:$vA),
+ VRRC:$vB, VPKUWUM_shuffle_mask))]>;
def VPKUWUS : VX1_Int<206, "vpkuwus", int_ppc_altivec_vpkuwus>;
// Vector Unpack.
More information about the llvm-commits
mailing list