diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-29 08:22:04 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-29 08:22:04 +0000 |
commit | f26ffe987cf3643a7bd66bd9f97c34605ba7d08e (patch) | |
tree | 96ec60731614a458cd3ad8f59bd6f109d715e3f4 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | cd5e6dda7e91af662f378e43842e6d2d55ec3057 (diff) |
Implement vector shift up / down and insert zero with ps{rl}lq / ps{rl}ldq.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 44c72b6bec..24954d75d2 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -1853,10 +1853,17 @@ SDOperand SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned Idx) { unsigned NumElems = PermMask.getNumOperands(); SDOperand V = (Idx < NumElems) ? N->getOperand(0) : N->getOperand(1); Idx %= NumElems; - if (V.getOpcode() == ISD::SCALAR_TO_VECTOR) { - return (Idx == 0) - ? V.getOperand(0) : getNode(ISD::UNDEF, MVT::getVectorElementType(VT)); + + if (V.getOpcode() == ISD::BIT_CONVERT) { + V = V.getOperand(0); + if (MVT::getVectorNumElements(V.getValueType()) != NumElems) + return SDOperand(); } + if (V.getOpcode() == ISD::SCALAR_TO_VECTOR) + return (Idx == 0) ? V.getOperand(0) + : getNode(ISD::UNDEF, MVT::getVectorElementType(VT)); + if (V.getOpcode() == ISD::BUILD_VECTOR) + return V.getOperand(Idx); if (V.getOpcode() == ISD::VECTOR_SHUFFLE) { SDOperand Elt = PermMask.getOperand(Idx); if (Elt.getOpcode() == ISD::UNDEF) |