diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-21 18:49:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-21 18:49:58 +0000 |
commit | d54209fcf9af827fecfaf32685a0fb8caf7cadb1 (patch) | |
tree | e69445bd12ab08c48a95b14d13658349dfd71ab7 | |
parent | 6b09a296049d765ad663ae21ab1b26ce7c2c93ae (diff) |
Add 5-operand version of SelectNodeTo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22950 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 3 | ||||
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index b93dd124a1..d7c12c6250 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -229,6 +229,9 @@ public: SDOperand Op1, SDOperand Op2, SDOperand Op3); void SelectNodeTo(SDNode *N, MVT::ValueType VT, unsigned TargetOpc, SDOperand Op1, SDOperand Op2, SDOperand Op3, SDOperand Op4); + void SelectNodeTo(SDNode *N, MVT::ValueType VT, unsigned TargetOpc, + SDOperand Op1, SDOperand Op2, SDOperand Op3, SDOperand Op4, + SDOperand Op5); SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT, SDOperand Op1) { diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 56a279c77b..5681a36f5c 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -678,6 +678,18 @@ protected: Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this); Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this); } + void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3, + SDOperand Op4) { + Operands.reserve(5); + Operands.push_back(Op0); + Operands.push_back(Op1); + Operands.push_back(Op2); + Operands.push_back(Op3); + Operands.push_back(Op4); + Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this); + Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this); + Op4.Val->Uses.push_back(this); + } void addUser(SDNode *User) { Uses.push_back(User); } |