diff options
author | Duncan Sands <baldrick@free.fr> | 2008-07-21 10:20:31 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-07-21 10:20:31 +0000 |
commit | b0e39386516c94edba98e7853b0f1f886ae428e9 (patch) | |
tree | f67d743ce03f5dff5eaf4d7dd710d2d0180c9446 /llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | |
parent | b3fa8639e1483909c733da224990feb401cab119 (diff) | |
download | bcm5719-llvm-b0e39386516c94edba98e7853b0f1f886ae428e9.tar.gz bcm5719-llvm-b0e39386516c94edba98e7853b0f1f886ae428e9.zip |
Add VerifyNode, a place to put sanity checks on
generic SDNode's (nodes with their own constructors
should do sanity checking in the constructor). Add
sanity checks for BUILD_VECTOR and fix all the places
that were producing bogus BUILD_VECTORs, as found by
"make check". My favorite is the BUILD_VECTOR with
only two operands that was being used to build a
vector with four elements!
llvm-svn: 53850
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 4b02c54a4ec..b49fa9be533 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -186,7 +186,7 @@ private: /// scalar (e.g. f32) value. SDOperand ScalarizeVectorOp(SDOperand O); - /// isShuffleLegal - Return true if a vector shuffle is legal with the + /// isShuffleLegal - Return non-null if a vector shuffle is legal with the /// specified mask and type. Targets can specify exactly which masks they /// support and the code generator is tasked with not creating illegal masks. /// @@ -241,6 +241,7 @@ SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const { // If this is promoted to a different type, convert the shuffle mask and // ask if it is legal in the promoted type! MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT); + MVT EltVT = NVT.getVectorElementType(); // If we changed # elements, change the shuffle mask. unsigned NumEltsGrowth = @@ -253,10 +254,10 @@ SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const { SDOperand InOp = Mask.getOperand(i); for (unsigned j = 0; j != NumEltsGrowth; ++j) { if (InOp.getOpcode() == ISD::UNDEF) - Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32)); + Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT)); else { unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue(); - Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32)); + Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT)); } } } |