diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-02-13 07:25:05 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-02-13 07:25:05 +0000 |
| commit | ee322b44a4a583abe4c00a058ad70b390163be10 (patch) | |
| tree | 1c05ecbc9b87b5c845872928d287e60da7d85169 /llvm/lib/CodeGen/SelectionDAG | |
| parent | eea32990a921e540027bc09f2dd6683fcf12d47a (diff) | |
| download | bcm5719-llvm-ee322b44a4a583abe4c00a058ad70b390163be10.tar.gz bcm5719-llvm-ee322b44a4a583abe4c00a058ad70b390163be10.zip | |
teach dag combiner how to eliminate MERGE_VALUES nodes.
llvm-svn: 47052
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index a2f36f33b45..29a31e4e1d6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -137,6 +137,7 @@ namespace { // otherwise - N should be replaced by the returned Operand. // SDOperand visitTokenFactor(SDNode *N); + SDOperand visitMERGE_VALUES(SDNode *N); SDOperand visitADD(SDNode *N); SDOperand visitSUB(SDNode *N); SDOperand visitADDC(SDNode *N); @@ -662,6 +663,7 @@ SDOperand DAGCombiner::visit(SDNode *N) { switch(N->getOpcode()) { default: break; case ISD::TokenFactor: return visitTokenFactor(N); + case ISD::MERGE_VALUES: return visitMERGE_VALUES(N); case ISD::ADD: return visitADD(N); case ISD::SUB: return visitSUB(N); case ISD::ADDC: return visitADDC(N); @@ -837,6 +839,18 @@ SDOperand DAGCombiner::visitTokenFactor(SDNode *N) { return Result; } +/// MERGE_VALUES can always be eliminated. +SDOperand DAGCombiner::visitMERGE_VALUES(SDNode *N) { + WorkListRemover DeadNodes(*this); + for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) + DAG.ReplaceAllUsesOfValueWith(SDOperand(N, i), N->getOperand(i), + &DeadNodes); + removeFromWorkList(N); + DAG.DeleteNode(N); + return SDOperand(N, 0); // Return N so it doesn't get rechecked! +} + + static SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) { MVT::ValueType VT = N0.getValueType(); |

