diff options
author | Craig Topper <craig.topper@gmail.com> | 2020-01-11 16:04:28 -0800 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2020-01-11 17:50:20 -0800 |
commit | ddfcd82bdc219dd2dc04d6826c417cea3da65d12 (patch) | |
tree | f65ea4847630e000b5b56ed82345a847a33c2ed6 /llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | |
parent | f719c540bb09cb5bfe37bc6283ea68e31949b3f4 (diff) | |
download | bcm5719-llvm-ddfcd82bdc219dd2dc04d6826c417cea3da65d12.tar.gz bcm5719-llvm-ddfcd82bdc219dd2dc04d6826c417cea3da65d12.zip |
[LegalizeVectorOps] Expand vector MERGE_VALUES immediately.
Custom legalization can produce MERGE_VALUES to return multiple
results. We can expand them immediately instead of leaving them
around for DAG combine to clean up.
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp index d6de85b3c83..9316823d20e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp @@ -332,6 +332,13 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) { switch (Op.getOpcode()) { default: return TranslateLegalizeResults(Op, Node); + case ISD::MERGE_VALUES: + Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); + // This operation lies about being legal: when it claims to be legal, + // it should actually be expanded. + if (Action == TargetLowering::Legal) + Action = TargetLowering::Expand; + break; #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \ case ISD::STRICT_##DAGN: #include "llvm/IR/ConstrainedOps.def" @@ -834,6 +841,10 @@ SDValue VectorLegalizer::ExpandStore(SDNode *N) { void VectorLegalizer::Expand(SDNode *Node, SmallVectorImpl<SDValue> &Results) { SDValue Tmp; switch (Node->getOpcode()) { + case ISD::MERGE_VALUES: + for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) + Results.push_back(Node->getOperand(i)); + return; case ISD::SIGN_EXTEND_INREG: Results.push_back(ExpandSEXTINREG(Node)); return; |