[llvm-commits] CVS: llvm/lib/Target/TargetSelectionDAG.td

Evan Cheng evan.cheng at apple.com
Thu Dec 15 00:30:02 PST 2005



Changes in directory llvm/lib/Target:

TargetSelectionDAG.td updated: 1.24 -> 1.25
---
Log message:

Added constpool, frameindex, and externalsym nodes.


---
Diffs of the changes:  (+9 -3)

 TargetSelectionDAG.td |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/TargetSelectionDAG.td
diff -u llvm/lib/Target/TargetSelectionDAG.td:1.24 llvm/lib/Target/TargetSelectionDAG.td:1.25
--- llvm/lib/Target/TargetSelectionDAG.td:1.24	Wed Dec 14 16:02:59 2005
+++ llvm/lib/Target/TargetSelectionDAG.td	Thu Dec 15 02:29:48 2005
@@ -185,12 +185,18 @@
 def bb         : SDNode<"ISD::BasicBlock", SDTOther   , [], "BasicBlockSDNode">;
 def cond       : SDNode<"ISD::CONDCODE"  , SDTOther   , [], "CondCodeSDNode">;
 def undef      : SDNode<"ISD::UNDEF"     , SDTUNDEF   , []>;
-def globaladdr : SDNode<"ISD::GlobalAddress", SDTPtrLeaf, [],
+def globaladdr : SDNode<"ISD::GlobalAddress",       SDTPtrLeaf, [],
                         "GlobalAddressSDNode">;
-def tglobaladdr : SDNode<"ISD::TargetGlobalAddress", SDTPtrLeaf, [],
+def tglobaladdr: SDNode<"ISD::TargetGlobalAddress", SDTPtrLeaf, [],
                         "GlobalAddressSDNode">;
-def tconstpool  : SDNode<"ISD::TargetConstantPool", SDTPtrLeaf, [],
+def constpool  : SDNode<"ISD::ConstantPool",        SDTPtrLeaf, [],
                         "ConstantPoolSDNode">;
+def tconstpool : SDNode<"ISD::TargetConstantPool",  SDTPtrLeaf, [],
+                        "ConstantPoolSDNode">;
+def frameindex : SDNode<"ISD::FrameIndex",          SDTPtrLeaf, [],
+                        "FrameIndexSDNode">;
+def externalsym: SDNode<"ISD::ExternalSymbol",      SDTPtrLeaf, [],
+                        "ExternalSymbolSDNode">;
 def add        : SDNode<"ISD::ADD"       , SDTIntBinOp   ,
                         [SDNPCommutative, SDNPAssociative]>;
 def sub        : SDNode<"ISD::SUB"       , SDTIntBinOp>;






More information about the llvm-commits mailing list