diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-13 17:58:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-13 17:58:35 +0000 |
commit | 8a496fcffdcba757412fc5cc6c772260ccfde000 (patch) | |
tree | d403b25ab3f206810f7cc5de6f97ec0b4c33e156 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 41c56c03f7464c94bac11e56046f014d49f5bcf4 (diff) |
Add a new node type, add comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19525 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 2ca6e1509c..2957a51401 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -44,8 +44,16 @@ namespace ISD { /// SelectionDAG. /// enum NodeType { - // Leaf nodes - EntryToken, Constant, ConstantFP, GlobalAddress, FrameIndex, ConstantPool, + // EntryToken - This is the marker used to indicate the start of the region. + EntryToken, + + // Token factor - This node is takes multiple tokens as input and produces a + // single token result. This is used to represent the fact that the operand + // operators are independent of each other. + TokenFactor, + + // Various leaf nodes. + Constant, ConstantFP, GlobalAddress, FrameIndex, ConstantPool, BasicBlock, ExternalSymbol, // CopyToReg - This node has chain and child nodes, and an associated |