Add const qualifiers to CodeGen's use of LLVM IR constructs.
[oota-llvm.git] / include / llvm / CodeGen / SelectionDAGNodes.h
1 //===-- llvm/CodeGen/SelectionDAGNodes.h - SelectionDAG Nodes ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the SDNode class and derived classes, which are used to
11 // represent the nodes and operations present in a SelectionDAG.  These nodes
12 // and operations are machine code level operations, with some similarities to
13 // the GCC RTL representation.
14 //
15 // Clients should include the SelectionDAG.h file instead of this file directly.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #ifndef LLVM_CODEGEN_SELECTIONDAGNODES_H
20 #define LLVM_CODEGEN_SELECTIONDAGNODES_H
21
22 #include "llvm/Constants.h"
23 #include "llvm/ADT/FoldingSet.h"
24 #include "llvm/ADT/GraphTraits.h"
25 #include "llvm/ADT/ilist_node.h"
26 #include "llvm/ADT/SmallVector.h"
27 #include "llvm/ADT/STLExtras.h"
28 #include "llvm/CodeGen/ISDOpcodes.h"
29 #include "llvm/CodeGen/ValueTypes.h"
30 #include "llvm/CodeGen/MachineMemOperand.h"
31 #include "llvm/Support/MathExtras.h"
32 #include "llvm/System/DataTypes.h"
33 #include "llvm/Support/DebugLoc.h"
34 #include <cassert>
35
36 namespace llvm {
37
38 class SelectionDAG;
39 class GlobalValue;
40 class MachineBasicBlock;
41 class MachineConstantPoolValue;
42 class SDNode;
43 class Value;
44 class MCSymbol;
45 template <typename T> struct DenseMapInfo;
46 template <typename T> struct simplify_type;
47 template <typename T> struct ilist_traits;
48
49 void checkForCycles(const SDNode *N);
50   
51 /// SDVTList - This represents a list of ValueType's that has been intern'd by
52 /// a SelectionDAG.  Instances of this simple value class are returned by
53 /// SelectionDAG::getVTList(...).
54 ///
55 struct SDVTList {
56   const EVT *VTs;
57   unsigned int NumVTs;
58 };
59
60 namespace ISD {
61   /// Node predicates
62
63   /// isBuildVectorAllOnes - Return true if the specified node is a
64   /// BUILD_VECTOR where all of the elements are ~0 or undef.
65   bool isBuildVectorAllOnes(const SDNode *N);
66
67   /// isBuildVectorAllZeros - Return true if the specified node is a
68   /// BUILD_VECTOR where all of the elements are 0 or undef.
69   bool isBuildVectorAllZeros(const SDNode *N);
70
71   /// isScalarToVector - Return true if the specified node is a
72   /// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
73   /// element is not an undef.
74   bool isScalarToVector(const SDNode *N);
75 }  // end llvm:ISD namespace
76
77 //===----------------------------------------------------------------------===//
78 /// SDValue - Unlike LLVM values, Selection DAG nodes may return multiple
79 /// values as the result of a computation.  Many nodes return multiple values,
80 /// from loads (which define a token and a return value) to ADDC (which returns
81 /// a result and a carry value), to calls (which may return an arbitrary number
82 /// of values).
83 ///
84 /// As such, each use of a SelectionDAG computation must indicate the node that
85 /// computes it as well as which return value to use from that node.  This pair
86 /// of information is represented with the SDValue value type.
87 ///
88 class SDValue {
89   SDNode *Node;       // The node defining the value we are using.
90   unsigned ResNo;     // Which return value of the node we are using.
91 public:
92   SDValue() : Node(0), ResNo(0) {}
93   SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
94
95   /// get the index which selects a specific result in the SDNode
96   unsigned getResNo() const { return ResNo; }
97
98   /// get the SDNode which holds the desired result
99   SDNode *getNode() const { return Node; }
100
101   /// set the SDNode
102   void setNode(SDNode *N) { Node = N; }
103
104   inline SDNode *operator->() const { return Node; }
105   
106   bool operator==(const SDValue &O) const {
107     return Node == O.Node && ResNo == O.ResNo;
108   }
109   bool operator!=(const SDValue &O) const {
110     return !operator==(O);
111   }
112   bool operator<(const SDValue &O) const {
113     return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
114   }
115
116   SDValue getValue(unsigned R) const {
117     return SDValue(Node, R);
118   }
119
120   // isOperandOf - Return true if this node is an operand of N.
121   bool isOperandOf(SDNode *N) const;
122
123   /// getValueType - Return the ValueType of the referenced return value.
124   ///
125   inline EVT getValueType() const;
126
127   /// getValueSizeInBits - Returns the size of the value in bits.
128   ///
129   unsigned getValueSizeInBits() const {
130     return getValueType().getSizeInBits();
131   }
132
133   // Forwarding methods - These forward to the corresponding methods in SDNode.
134   inline unsigned getOpcode() const;
135   inline unsigned getNumOperands() const;
136   inline const SDValue &getOperand(unsigned i) const;
137   inline uint64_t getConstantOperandVal(unsigned i) const;
138   inline bool isTargetMemoryOpcode() const;
139   inline bool isTargetOpcode() const;
140   inline bool isMachineOpcode() const;
141   inline unsigned getMachineOpcode() const;
142   inline const DebugLoc getDebugLoc() const;
143
144
145   /// reachesChainWithoutSideEffects - Return true if this operand (which must
146   /// be a chain) reaches the specified operand without crossing any
147   /// side-effecting instructions.  In practice, this looks through token
148   /// factors and non-volatile loads.  In order to remain efficient, this only
149   /// looks a couple of nodes in, it does not do an exhaustive search.
150   bool reachesChainWithoutSideEffects(SDValue Dest,
151                                       unsigned Depth = 2) const;
152
153   /// use_empty - Return true if there are no nodes using value ResNo
154   /// of Node.
155   ///
156   inline bool use_empty() const;
157
158   /// hasOneUse - Return true if there is exactly one node using value
159   /// ResNo of Node.
160   ///
161   inline bool hasOneUse() const;
162 };
163
164
165 template<> struct DenseMapInfo<SDValue> {
166   static inline SDValue getEmptyKey() {
167     return SDValue((SDNode*)-1, -1U);
168   }
169   static inline SDValue getTombstoneKey() {
170     return SDValue((SDNode*)-1, 0);
171   }
172   static unsigned getHashValue(const SDValue &Val) {
173     return ((unsigned)((uintptr_t)Val.getNode() >> 4) ^
174             (unsigned)((uintptr_t)Val.getNode() >> 9)) + Val.getResNo();
175   }
176   static bool isEqual(const SDValue &LHS, const SDValue &RHS) {
177     return LHS == RHS;
178   }
179 };
180 template <> struct isPodLike<SDValue> { static const bool value = true; };
181
182
183 /// simplify_type specializations - Allow casting operators to work directly on
184 /// SDValues as if they were SDNode*'s.
185 template<> struct simplify_type<SDValue> {
186   typedef SDNode* SimpleType;
187   static SimpleType getSimplifiedValue(const SDValue &Val) {
188     return static_cast<SimpleType>(Val.getNode());
189   }
190 };
191 template<> struct simplify_type<const SDValue> {
192   typedef SDNode* SimpleType;
193   static SimpleType getSimplifiedValue(const SDValue &Val) {
194     return static_cast<SimpleType>(Val.getNode());
195   }
196 };
197
198 /// SDUse - Represents a use of a SDNode. This class holds an SDValue,
199 /// which records the SDNode being used and the result number, a
200 /// pointer to the SDNode using the value, and Next and Prev pointers,
201 /// which link together all the uses of an SDNode.
202 ///
203 class SDUse {
204   /// Val - The value being used.
205   SDValue Val;
206   /// User - The user of this value.
207   SDNode *User;
208   /// Prev, Next - Pointers to the uses list of the SDNode referred by
209   /// this operand.
210   SDUse **Prev, *Next;
211
212   SDUse(const SDUse &U);          // Do not implement
213   void operator=(const SDUse &U); // Do not implement
214
215 public:
216   SDUse() : Val(), User(NULL), Prev(NULL), Next(NULL) {}
217
218   /// Normally SDUse will just implicitly convert to an SDValue that it holds.
219   operator const SDValue&() const { return Val; }
220
221   /// If implicit conversion to SDValue doesn't work, the get() method returns
222   /// the SDValue.
223   const SDValue &get() const { return Val; }
224
225   /// getUser - This returns the SDNode that contains this Use.
226   SDNode *getUser() { return User; }
227
228   /// getNext - Get the next SDUse in the use list.
229   SDUse *getNext() const { return Next; }
230
231   /// getNode - Convenience function for get().getNode().
232   SDNode *getNode() const { return Val.getNode(); }
233   /// getResNo - Convenience function for get().getResNo().
234   unsigned getResNo() const { return Val.getResNo(); }
235   /// getValueType - Convenience function for get().getValueType().
236   EVT getValueType() const { return Val.getValueType(); }
237
238   /// operator== - Convenience function for get().operator==
239   bool operator==(const SDValue &V) const {
240     return Val == V;
241   }
242
243   /// operator!= - Convenience function for get().operator!=
244   bool operator!=(const SDValue &V) const {
245     return Val != V;
246   }
247
248   /// operator< - Convenience function for get().operator<
249   bool operator<(const SDValue &V) const {
250     return Val < V;
251   }
252
253 private:
254   friend class SelectionDAG;
255   friend class SDNode;
256
257   void setUser(SDNode *p) { User = p; }
258
259   /// set - Remove this use from its existing use list, assign it the
260   /// given value, and add it to the new value's node's use list.
261   inline void set(const SDValue &V);
262   /// setInitial - like set, but only supports initializing a newly-allocated
263   /// SDUse with a non-null value.
264   inline void setInitial(const SDValue &V);
265   /// setNode - like set, but only sets the Node portion of the value,
266   /// leaving the ResNo portion unmodified.
267   inline void setNode(SDNode *N);
268
269   void addToList(SDUse **List) {
270     Next = *List;
271     if (Next) Next->Prev = &Next;
272     Prev = List;
273     *List = this;
274   }
275
276   void removeFromList() {
277     *Prev = Next;
278     if (Next) Next->Prev = Prev;
279   }
280 };
281
282 /// simplify_type specializations - Allow casting operators to work directly on
283 /// SDValues as if they were SDNode*'s.
284 template<> struct simplify_type<SDUse> {
285   typedef SDNode* SimpleType;
286   static SimpleType getSimplifiedValue(const SDUse &Val) {
287     return static_cast<SimpleType>(Val.getNode());
288   }
289 };
290 template<> struct simplify_type<const SDUse> {
291   typedef SDNode* SimpleType;
292   static SimpleType getSimplifiedValue(const SDUse &Val) {
293     return static_cast<SimpleType>(Val.getNode());
294   }
295 };
296
297
298 /// SDNode - Represents one node in the SelectionDAG.
299 ///
300 class SDNode : public FoldingSetNode, public ilist_node<SDNode> {
301 private:
302   /// NodeType - The operation that this node performs.
303   ///
304   int16_t NodeType;
305
306   /// OperandsNeedDelete - This is true if OperandList was new[]'d.  If true,
307   /// then they will be delete[]'d when the node is destroyed.
308   uint16_t OperandsNeedDelete : 1;
309
310   /// HasDebugValue - This tracks whether this node has one or more dbg_value
311   /// nodes corresponding to it.
312   uint16_t HasDebugValue : 1;
313
314 protected:
315   /// SubclassData - This member is defined by this class, but is not used for
316   /// anything.  Subclasses can use it to hold whatever state they find useful.
317   /// This field is initialized to zero by the ctor.
318   uint16_t SubclassData : 14;
319
320 private:
321   /// NodeId - Unique id per SDNode in the DAG.
322   int NodeId;
323
324   /// OperandList - The values that are used by this operation.
325   ///
326   SDUse *OperandList;
327
328   /// ValueList - The types of the values this node defines.  SDNode's may
329   /// define multiple values simultaneously.
330   const EVT *ValueList;
331
332   /// UseList - List of uses for this SDNode.
333   SDUse *UseList;
334
335   /// NumOperands/NumValues - The number of entries in the Operand/Value list.
336   unsigned short NumOperands, NumValues;
337
338   /// debugLoc - source line information.
339   DebugLoc debugLoc;
340
341   /// getValueTypeList - Return a pointer to the specified value type.
342   static const EVT *getValueTypeList(EVT VT);
343
344   friend class SelectionDAG;
345   friend struct ilist_traits<SDNode>;
346
347 public:
348   //===--------------------------------------------------------------------===//
349   //  Accessors
350   //
351
352   /// getOpcode - Return the SelectionDAG opcode value for this node. For
353   /// pre-isel nodes (those for which isMachineOpcode returns false), these
354   /// are the opcode values in the ISD and <target>ISD namespaces. For
355   /// post-isel opcodes, see getMachineOpcode.
356   unsigned getOpcode()  const { return (unsigned short)NodeType; }
357
358   /// isTargetOpcode - Test if this node has a target-specific opcode (in the
359   /// \<target\>ISD namespace).
360   bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; }
361
362   /// isTargetMemoryOpcode - Test if this node has a target-specific 
363   /// memory-referencing opcode (in the \<target\>ISD namespace and
364   /// greater than FIRST_TARGET_MEMORY_OPCODE).
365   bool isTargetMemoryOpcode() const {
366     return NodeType >= ISD::FIRST_TARGET_MEMORY_OPCODE;
367   }
368
369   /// isMachineOpcode - Test if this node has a post-isel opcode, directly
370   /// corresponding to a MachineInstr opcode.
371   bool isMachineOpcode() const { return NodeType < 0; }
372
373   /// getMachineOpcode - This may only be called if isMachineOpcode returns
374   /// true. It returns the MachineInstr opcode value that the node's opcode
375   /// corresponds to.
376   unsigned getMachineOpcode() const {
377     assert(isMachineOpcode() && "Not a MachineInstr opcode!");
378     return ~NodeType;
379   }
380
381   /// getHasDebugValue - get this bit.
382   bool getHasDebugValue() const { return HasDebugValue; }
383
384   /// setHasDebugValue - set this bit.
385   void setHasDebugValue(bool b) { HasDebugValue = b; }
386
387   /// use_empty - Return true if there are no uses of this node.
388   ///
389   bool use_empty() const { return UseList == NULL; }
390
391   /// hasOneUse - Return true if there is exactly one use of this node.
392   ///
393   bool hasOneUse() const {
394     return !use_empty() && llvm::next(use_begin()) == use_end();
395   }
396
397   /// use_size - Return the number of uses of this node. This method takes
398   /// time proportional to the number of uses.
399   ///
400   size_t use_size() const { return std::distance(use_begin(), use_end()); }
401
402   /// getNodeId - Return the unique node id.
403   ///
404   int getNodeId() const { return NodeId; }
405
406   /// setNodeId - Set unique node id.
407   void setNodeId(int Id) { NodeId = Id; }
408
409   /// getDebugLoc - Return the source location info.
410   const DebugLoc getDebugLoc() const { return debugLoc; }
411
412   /// setDebugLoc - Set source location info.  Try to avoid this, putting
413   /// it in the constructor is preferable.
414   void setDebugLoc(const DebugLoc dl) { debugLoc = dl; }
415
416   /// use_iterator - This class provides iterator support for SDUse
417   /// operands that use a specific SDNode.
418   class use_iterator
419     : public std::iterator<std::forward_iterator_tag, SDUse, ptrdiff_t> {
420     SDUse *Op;
421     explicit use_iterator(SDUse *op) : Op(op) {
422     }
423     friend class SDNode;
424   public:
425     typedef std::iterator<std::forward_iterator_tag,
426                           SDUse, ptrdiff_t>::reference reference;
427     typedef std::iterator<std::forward_iterator_tag,
428                           SDUse, ptrdiff_t>::pointer pointer;
429
430     use_iterator(const use_iterator &I) : Op(I.Op) {}
431     use_iterator() : Op(0) {}
432
433     bool operator==(const use_iterator &x) const {
434       return Op == x.Op;
435     }
436     bool operator!=(const use_iterator &x) const {
437       return !operator==(x);
438     }
439
440     /// atEnd - return true if this iterator is at the end of uses list.
441     bool atEnd() const { return Op == 0; }
442
443     // Iterator traversal: forward iteration only.
444     use_iterator &operator++() {          // Preincrement
445       assert(Op && "Cannot increment end iterator!");
446       Op = Op->getNext();
447       return *this;
448     }
449
450     use_iterator operator++(int) {        // Postincrement
451       use_iterator tmp = *this; ++*this; return tmp;
452     }
453
454     /// Retrieve a pointer to the current user node.
455     SDNode *operator*() const {
456       assert(Op && "Cannot dereference end iterator!");
457       return Op->getUser();
458     }
459
460     SDNode *operator->() const { return operator*(); }
461
462     SDUse &getUse() const { return *Op; }
463
464     /// getOperandNo - Retrieve the operand # of this use in its user.
465     ///
466     unsigned getOperandNo() const {
467       assert(Op && "Cannot dereference end iterator!");
468       return (unsigned)(Op - Op->getUser()->OperandList);
469     }
470   };
471
472   /// use_begin/use_end - Provide iteration support to walk over all uses
473   /// of an SDNode.
474
475   use_iterator use_begin() const {
476     return use_iterator(UseList);
477   }
478
479   static use_iterator use_end() { return use_iterator(0); }
480
481
482   /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
483   /// indicated value.  This method ignores uses of other values defined by this
484   /// operation.
485   bool hasNUsesOfValue(unsigned NUses, unsigned Value) const;
486
487   /// hasAnyUseOfValue - Return true if there are any use of the indicated
488   /// value. This method ignores uses of other values defined by this operation.
489   bool hasAnyUseOfValue(unsigned Value) const;
490
491   /// isOnlyUserOf - Return true if this node is the only use of N.
492   ///
493   bool isOnlyUserOf(SDNode *N) const;
494
495   /// isOperandOf - Return true if this node is an operand of N.
496   ///
497   bool isOperandOf(SDNode *N) const;
498
499   /// isPredecessorOf - Return true if this node is a predecessor of N. This
500   /// node is either an operand of N or it can be reached by recursively
501   /// traversing up the operands.
502   /// NOTE: this is an expensive method. Use it carefully.
503   bool isPredecessorOf(SDNode *N) const;
504
505   /// getNumOperands - Return the number of values used by this operation.
506   ///
507   unsigned getNumOperands() const { return NumOperands; }
508
509   /// getConstantOperandVal - Helper method returns the integer value of a
510   /// ConstantSDNode operand.
511   uint64_t getConstantOperandVal(unsigned Num) const;
512
513   const SDValue &getOperand(unsigned Num) const {
514     assert(Num < NumOperands && "Invalid child # of SDNode!");
515     return OperandList[Num];
516   }
517
518   typedef SDUse* op_iterator;
519   op_iterator op_begin() const { return OperandList; }
520   op_iterator op_end() const { return OperandList+NumOperands; }
521
522   SDVTList getVTList() const {
523     SDVTList X = { ValueList, NumValues };
524     return X;
525   }
526
527   /// getFlaggedNode - If this node has a flag operand, return the node
528   /// to which the flag operand points. Otherwise return NULL.
529   SDNode *getFlaggedNode() const {
530     if (getNumOperands() != 0 &&
531       getOperand(getNumOperands()-1).getValueType().getSimpleVT() == MVT::Flag)
532       return getOperand(getNumOperands()-1).getNode();
533     return 0;
534   }
535
536   // If this is a pseudo op, like copyfromreg, look to see if there is a
537   // real target node flagged to it.  If so, return the target node.
538   const SDNode *getFlaggedMachineNode() const {
539     const SDNode *FoundNode = this;
540
541     // Climb up flag edges until a machine-opcode node is found, or the
542     // end of the chain is reached.
543     while (!FoundNode->isMachineOpcode()) {
544       const SDNode *N = FoundNode->getFlaggedNode();
545       if (!N) break;
546       FoundNode = N;
547     }
548
549     return FoundNode;
550   }
551
552   /// getNumValues - Return the number of values defined/returned by this
553   /// operator.
554   ///
555   unsigned getNumValues() const { return NumValues; }
556
557   /// getValueType - Return the type of a specified result.
558   ///
559   EVT getValueType(unsigned ResNo) const {
560     assert(ResNo < NumValues && "Illegal result number!");
561     return ValueList[ResNo];
562   }
563
564   /// getValueSizeInBits - Returns MVT::getSizeInBits(getValueType(ResNo)).
565   ///
566   unsigned getValueSizeInBits(unsigned ResNo) const {
567     return getValueType(ResNo).getSizeInBits();
568   }
569
570   typedef const EVT* value_iterator;
571   value_iterator value_begin() const { return ValueList; }
572   value_iterator value_end() const { return ValueList+NumValues; }
573
574   /// getOperationName - Return the opcode of this operation for printing.
575   ///
576   std::string getOperationName(const SelectionDAG *G = 0) const;
577   static const char* getIndexedModeName(ISD::MemIndexedMode AM);
578   void print_types(raw_ostream &OS, const SelectionDAG *G) const;
579   void print_details(raw_ostream &OS, const SelectionDAG *G) const;
580   void print(raw_ostream &OS, const SelectionDAG *G = 0) const;
581   void printr(raw_ostream &OS, const SelectionDAG *G = 0) const;
582
583   /// printrFull - Print a SelectionDAG node and all children down to
584   /// the leaves.  The given SelectionDAG allows target-specific nodes
585   /// to be printed in human-readable form.  Unlike printr, this will
586   /// print the whole DAG, including children that appear multiple
587   /// times.
588   ///
589   void printrFull(raw_ostream &O, const SelectionDAG *G = 0) const;
590
591   /// printrWithDepth - Print a SelectionDAG node and children up to
592   /// depth "depth."  The given SelectionDAG allows target-specific
593   /// nodes to be printed in human-readable form.  Unlike printr, this
594   /// will print children that appear multiple times wherever they are
595   /// used.
596   ///
597   void printrWithDepth(raw_ostream &O, const SelectionDAG *G = 0,
598                        unsigned depth = 100) const;
599
600
601   /// dump - Dump this node, for debugging.
602   void dump() const;
603
604   /// dumpr - Dump (recursively) this node and its use-def subgraph.
605   void dumpr() const;
606
607   /// dump - Dump this node, for debugging.
608   /// The given SelectionDAG allows target-specific nodes to be printed
609   /// in human-readable form.
610   void dump(const SelectionDAG *G) const;
611
612   /// dumpr - Dump (recursively) this node and its use-def subgraph.
613   /// The given SelectionDAG allows target-specific nodes to be printed
614   /// in human-readable form.
615   void dumpr(const SelectionDAG *G) const;
616
617   /// dumprFull - printrFull to dbgs().  The given SelectionDAG allows
618   /// target-specific nodes to be printed in human-readable form.
619   /// Unlike dumpr, this will print the whole DAG, including children
620   /// that appear multiple times.
621   ///
622   void dumprFull(const SelectionDAG *G = 0) const;
623
624   /// dumprWithDepth - printrWithDepth to dbgs().  The given
625   /// SelectionDAG allows target-specific nodes to be printed in
626   /// human-readable form.  Unlike dumpr, this will print children
627   /// that appear multiple times wherever they are used.
628   ///
629   void dumprWithDepth(const SelectionDAG *G = 0, unsigned depth = 100) const;
630
631
632   static bool classof(const SDNode *) { return true; }
633
634   /// Profile - Gather unique data for the node.
635   ///
636   void Profile(FoldingSetNodeID &ID) const;
637
638   /// addUse - This method should only be used by the SDUse class.
639   ///
640   void addUse(SDUse &U) { U.addToList(&UseList); }
641
642 protected:
643   static SDVTList getSDVTList(EVT VT) {
644     SDVTList Ret = { getValueTypeList(VT), 1 };
645     return Ret;
646   }
647
648   SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs, const SDValue *Ops,
649          unsigned NumOps)
650     : NodeType(Opc), OperandsNeedDelete(true), HasDebugValue(false),
651       SubclassData(0), NodeId(-1),
652       OperandList(NumOps ? new SDUse[NumOps] : 0),
653       ValueList(VTs.VTs), UseList(NULL),
654       NumOperands(NumOps), NumValues(VTs.NumVTs),
655       debugLoc(dl) {
656     for (unsigned i = 0; i != NumOps; ++i) {
657       OperandList[i].setUser(this);
658       OperandList[i].setInitial(Ops[i]);
659     }
660     checkForCycles(this);
661   }
662
663   /// This constructor adds no operands itself; operands can be
664   /// set later with InitOperands.
665   SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs)
666     : NodeType(Opc), OperandsNeedDelete(false), HasDebugValue(false),
667       SubclassData(0), NodeId(-1), OperandList(0), ValueList(VTs.VTs),
668       UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
669       debugLoc(dl) {}
670
671   /// InitOperands - Initialize the operands list of this with 1 operand.
672   void InitOperands(SDUse *Ops, const SDValue &Op0) {
673     Ops[0].setUser(this);
674     Ops[0].setInitial(Op0);
675     NumOperands = 1;
676     OperandList = Ops;
677     checkForCycles(this);
678   }
679
680   /// InitOperands - Initialize the operands list of this with 2 operands.
681   void InitOperands(SDUse *Ops, const SDValue &Op0, const SDValue &Op1) {
682     Ops[0].setUser(this);
683     Ops[0].setInitial(Op0);
684     Ops[1].setUser(this);
685     Ops[1].setInitial(Op1);
686     NumOperands = 2;
687     OperandList = Ops;
688     checkForCycles(this);
689   }
690
691   /// InitOperands - Initialize the operands list of this with 3 operands.
692   void InitOperands(SDUse *Ops, const SDValue &Op0, const SDValue &Op1,
693                     const SDValue &Op2) {
694     Ops[0].setUser(this);
695     Ops[0].setInitial(Op0);
696     Ops[1].setUser(this);
697     Ops[1].setInitial(Op1);
698     Ops[2].setUser(this);
699     Ops[2].setInitial(Op2);
700     NumOperands = 3;
701     OperandList = Ops;
702     checkForCycles(this);
703   }
704
705   /// InitOperands - Initialize the operands list of this with 4 operands.
706   void InitOperands(SDUse *Ops, const SDValue &Op0, const SDValue &Op1,
707                     const SDValue &Op2, const SDValue &Op3) {
708     Ops[0].setUser(this);
709     Ops[0].setInitial(Op0);
710     Ops[1].setUser(this);
711     Ops[1].setInitial(Op1);
712     Ops[2].setUser(this);
713     Ops[2].setInitial(Op2);
714     Ops[3].setUser(this);
715     Ops[3].setInitial(Op3);
716     NumOperands = 4;
717     OperandList = Ops;
718     checkForCycles(this);
719   }
720
721   /// InitOperands - Initialize the operands list of this with N operands.
722   void InitOperands(SDUse *Ops, const SDValue *Vals, unsigned N) {
723     for (unsigned i = 0; i != N; ++i) {
724       Ops[i].setUser(this);
725       Ops[i].setInitial(Vals[i]);
726     }
727     NumOperands = N;
728     OperandList = Ops;
729     checkForCycles(this);
730   }
731
732   /// DropOperands - Release the operands and set this node to have
733   /// zero operands.
734   void DropOperands();
735 };
736
737
738 // Define inline functions from the SDValue class.
739
740 inline unsigned SDValue::getOpcode() const {
741   return Node->getOpcode();
742 }
743 inline EVT SDValue::getValueType() const {
744   return Node->getValueType(ResNo);
745 }
746 inline unsigned SDValue::getNumOperands() const {
747   return Node->getNumOperands();
748 }
749 inline const SDValue &SDValue::getOperand(unsigned i) const {
750   return Node->getOperand(i);
751 }
752 inline uint64_t SDValue::getConstantOperandVal(unsigned i) const {
753   return Node->getConstantOperandVal(i);
754 }
755 inline bool SDValue::isTargetOpcode() const {
756   return Node->isTargetOpcode();
757 }
758 inline bool SDValue::isTargetMemoryOpcode() const {
759   return Node->isTargetMemoryOpcode();
760 }
761 inline bool SDValue::isMachineOpcode() const {
762   return Node->isMachineOpcode();
763 }
764 inline unsigned SDValue::getMachineOpcode() const {
765   return Node->getMachineOpcode();
766 }
767 inline bool SDValue::use_empty() const {
768   return !Node->hasAnyUseOfValue(ResNo);
769 }
770 inline bool SDValue::hasOneUse() const {
771   return Node->hasNUsesOfValue(1, ResNo);
772 }
773 inline const DebugLoc SDValue::getDebugLoc() const {
774   return Node->getDebugLoc();
775 }
776
777 // Define inline functions from the SDUse class.
778
779 inline void SDUse::set(const SDValue &V) {
780   if (Val.getNode()) removeFromList();
781   Val = V;
782   if (V.getNode()) V.getNode()->addUse(*this);
783 }
784
785 inline void SDUse::setInitial(const SDValue &V) {
786   Val = V;
787   V.getNode()->addUse(*this);
788 }
789
790 inline void SDUse::setNode(SDNode *N) {
791   if (Val.getNode()) removeFromList();
792   Val.setNode(N);
793   if (N) N->addUse(*this);
794 }
795
796 /// UnarySDNode - This class is used for single-operand SDNodes.  This is solely
797 /// to allow co-allocation of node operands with the node itself.
798 class UnarySDNode : public SDNode {
799   SDUse Op;
800 public:
801   UnarySDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, SDValue X)
802     : SDNode(Opc, dl, VTs) {
803     InitOperands(&Op, X);
804   }
805 };
806
807 /// BinarySDNode - This class is used for two-operand SDNodes.  This is solely
808 /// to allow co-allocation of node operands with the node itself.
809 class BinarySDNode : public SDNode {
810   SDUse Ops[2];
811 public:
812   BinarySDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, SDValue X, SDValue Y)
813     : SDNode(Opc, dl, VTs) {
814     InitOperands(Ops, X, Y);
815   }
816 };
817
818 /// TernarySDNode - This class is used for three-operand SDNodes. This is solely
819 /// to allow co-allocation of node operands with the node itself.
820 class TernarySDNode : public SDNode {
821   SDUse Ops[3];
822 public:
823   TernarySDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, SDValue X, SDValue Y,
824                 SDValue Z)
825     : SDNode(Opc, dl, VTs) {
826     InitOperands(Ops, X, Y, Z);
827   }
828 };
829
830
831 /// HandleSDNode - This class is used to form a handle around another node that
832 /// is persistant and is updated across invocations of replaceAllUsesWith on its
833 /// operand.  This node should be directly created by end-users and not added to
834 /// the AllNodes list.
835 class HandleSDNode : public SDNode {
836   SDUse Op;
837 public:
838   // FIXME: Remove the "noinline" attribute once <rdar://problem/5852746> is
839   // fixed.
840 #if __GNUC__==4 && __GNUC_MINOR__==2 && defined(__APPLE__) && !defined(__llvm__)
841   explicit __attribute__((__noinline__)) HandleSDNode(SDValue X)
842 #else
843   explicit HandleSDNode(SDValue X)
844 #endif
845     : SDNode(ISD::HANDLENODE, DebugLoc(), getSDVTList(MVT::Other)) {
846     InitOperands(&Op, X);
847   }
848   ~HandleSDNode();
849   const SDValue &getValue() const { return Op; }
850 };
851
852 /// Abstact virtual class for operations for memory operations
853 class MemSDNode : public SDNode {
854 private:
855   // MemoryVT - VT of in-memory value.
856   EVT MemoryVT;
857
858 protected:
859   /// MMO - Memory reference information.
860   MachineMemOperand *MMO;
861
862 public:
863   MemSDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, EVT MemoryVT,
864             MachineMemOperand *MMO);
865
866   MemSDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, const SDValue *Ops,
867             unsigned NumOps, EVT MemoryVT, MachineMemOperand *MMO);
868
869   bool readMem() const { return MMO->isLoad(); }
870   bool writeMem() const { return MMO->isStore(); }
871
872   /// Returns alignment and volatility of the memory access
873   unsigned getOriginalAlignment() const { 
874     return MMO->getBaseAlignment();
875   }
876   unsigned getAlignment() const {
877     return MMO->getAlignment();
878   }
879
880   /// getRawSubclassData - Return the SubclassData value, which contains an
881   /// encoding of the volatile flag, as well as bits used by subclasses. This
882   /// function should only be used to compute a FoldingSetNodeID value.
883   unsigned getRawSubclassData() const {
884     return SubclassData;
885   }
886
887   // We access subclass data here so that we can check consistency
888   // with MachineMemOperand information.
889   bool isVolatile() const { return (SubclassData >> 5) & 1; }
890   bool isNonTemporal() const { return (SubclassData >> 6) & 1; }
891
892   /// Returns the SrcValue and offset that describes the location of the access
893   const Value *getSrcValue() const { return MMO->getValue(); }
894   int64_t getSrcValueOffset() const { return MMO->getOffset(); }
895
896   /// getMemoryVT - Return the type of the in-memory value.
897   EVT getMemoryVT() const { return MemoryVT; }
898
899   /// getMemOperand - Return a MachineMemOperand object describing the memory
900   /// reference performed by operation.
901   MachineMemOperand *getMemOperand() const { return MMO; }
902
903   /// refineAlignment - Update this MemSDNode's MachineMemOperand information
904   /// to reflect the alignment of NewMMO, if it has a greater alignment.
905   /// This must only be used when the new alignment applies to all users of
906   /// this MachineMemOperand.
907   void refineAlignment(const MachineMemOperand *NewMMO) {
908     MMO->refineAlignment(NewMMO);
909   }
910
911   const SDValue &getChain() const { return getOperand(0); }
912   const SDValue &getBasePtr() const {
913     return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
914   }
915
916   // Methods to support isa and dyn_cast
917   static bool classof(const MemSDNode *) { return true; }
918   static bool classof(const SDNode *N) {
919     // For some targets, we lower some target intrinsics to a MemIntrinsicNode
920     // with either an intrinsic or a target opcode.
921     return N->getOpcode() == ISD::LOAD                ||
922            N->getOpcode() == ISD::STORE               ||
923            N->getOpcode() == ISD::ATOMIC_CMP_SWAP     ||
924            N->getOpcode() == ISD::ATOMIC_SWAP         ||
925            N->getOpcode() == ISD::ATOMIC_LOAD_ADD     ||
926            N->getOpcode() == ISD::ATOMIC_LOAD_SUB     ||
927            N->getOpcode() == ISD::ATOMIC_LOAD_AND     ||
928            N->getOpcode() == ISD::ATOMIC_LOAD_OR      ||
929            N->getOpcode() == ISD::ATOMIC_LOAD_XOR     ||
930            N->getOpcode() == ISD::ATOMIC_LOAD_NAND    ||
931            N->getOpcode() == ISD::ATOMIC_LOAD_MIN     ||
932            N->getOpcode() == ISD::ATOMIC_LOAD_MAX     ||
933            N->getOpcode() == ISD::ATOMIC_LOAD_UMIN    ||
934            N->getOpcode() == ISD::ATOMIC_LOAD_UMAX    ||
935            N->isTargetMemoryOpcode();
936   }
937 };
938
939 /// AtomicSDNode - A SDNode reprenting atomic operations.
940 ///
941 class AtomicSDNode : public MemSDNode {
942   SDUse Ops[4];
943
944 public:
945   // Opc:   opcode for atomic
946   // VTL:    value type list
947   // Chain:  memory chain for operaand
948   // Ptr:    address to update as a SDValue
949   // Cmp:    compare value
950   // Swp:    swap value
951   // SrcVal: address to update as a Value (used for MemOperand)
952   // Align:  alignment of memory
953   AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT,
954                SDValue Chain, SDValue Ptr,
955                SDValue Cmp, SDValue Swp, MachineMemOperand *MMO)
956     : MemSDNode(Opc, dl, VTL, MemVT, MMO) {
957     assert(readMem() && "Atomic MachineMemOperand is not a load!");
958     assert(writeMem() && "Atomic MachineMemOperand is not a store!");
959     InitOperands(Ops, Chain, Ptr, Cmp, Swp);
960   }
961   AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT,
962                SDValue Chain, SDValue Ptr,
963                SDValue Val, MachineMemOperand *MMO)
964     : MemSDNode(Opc, dl, VTL, MemVT, MMO) {
965     assert(readMem() && "Atomic MachineMemOperand is not a load!");
966     assert(writeMem() && "Atomic MachineMemOperand is not a store!");
967     InitOperands(Ops, Chain, Ptr, Val);
968   }
969
970   const SDValue &getBasePtr() const { return getOperand(1); }
971   const SDValue &getVal() const { return getOperand(2); }
972
973   bool isCompareAndSwap() const {
974     unsigned Op = getOpcode();
975     return Op == ISD::ATOMIC_CMP_SWAP;
976   }
977
978   // Methods to support isa and dyn_cast
979   static bool classof(const AtomicSDNode *) { return true; }
980   static bool classof(const SDNode *N) {
981     return N->getOpcode() == ISD::ATOMIC_CMP_SWAP     ||
982            N->getOpcode() == ISD::ATOMIC_SWAP         ||
983            N->getOpcode() == ISD::ATOMIC_LOAD_ADD     ||
984            N->getOpcode() == ISD::ATOMIC_LOAD_SUB     ||
985            N->getOpcode() == ISD::ATOMIC_LOAD_AND     ||
986            N->getOpcode() == ISD::ATOMIC_LOAD_OR      ||
987            N->getOpcode() == ISD::ATOMIC_LOAD_XOR     ||
988            N->getOpcode() == ISD::ATOMIC_LOAD_NAND    ||
989            N->getOpcode() == ISD::ATOMIC_LOAD_MIN     ||
990            N->getOpcode() == ISD::ATOMIC_LOAD_MAX     ||
991            N->getOpcode() == ISD::ATOMIC_LOAD_UMIN    ||
992            N->getOpcode() == ISD::ATOMIC_LOAD_UMAX;
993   }
994 };
995
996 /// MemIntrinsicSDNode - This SDNode is used for target intrinsics that touch
997 /// memory and need an associated MachineMemOperand. Its opcode may be
998 /// INTRINSIC_VOID, INTRINSIC_W_CHAIN, or a target-specific opcode with a
999 /// value not less than FIRST_TARGET_MEMORY_OPCODE.
1000 class MemIntrinsicSDNode : public MemSDNode {
1001 public:
1002   MemIntrinsicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTs,
1003                      const SDValue *Ops, unsigned NumOps,
1004                      EVT MemoryVT, MachineMemOperand *MMO)
1005     : MemSDNode(Opc, dl, VTs, Ops, NumOps, MemoryVT, MMO) {
1006   }
1007
1008   // Methods to support isa and dyn_cast
1009   static bool classof(const MemIntrinsicSDNode *) { return true; }
1010   static bool classof(const SDNode *N) {
1011     // We lower some target intrinsics to their target opcode
1012     // early a node with a target opcode can be of this class
1013     return N->getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1014            N->getOpcode() == ISD::INTRINSIC_VOID ||
1015            N->isTargetMemoryOpcode();
1016   }
1017 };
1018
1019 /// ShuffleVectorSDNode - This SDNode is used to implement the code generator
1020 /// support for the llvm IR shufflevector instruction.  It combines elements
1021 /// from two input vectors into a new input vector, with the selection and
1022 /// ordering of elements determined by an array of integers, referred to as
1023 /// the shuffle mask.  For input vectors of width N, mask indices of 0..N-1
1024 /// refer to elements from the LHS input, and indices from N to 2N-1 the RHS.
1025 /// An index of -1 is treated as undef, such that the code generator may put
1026 /// any value in the corresponding element of the result.
1027 class ShuffleVectorSDNode : public SDNode {
1028   SDUse Ops[2];
1029
1030   // The memory for Mask is owned by the SelectionDAG's OperandAllocator, and
1031   // is freed when the SelectionDAG object is destroyed.
1032   const int *Mask;
1033 protected:
1034   friend class SelectionDAG;
1035   ShuffleVectorSDNode(EVT VT, DebugLoc dl, SDValue N1, SDValue N2, 
1036                       const int *M)
1037     : SDNode(ISD::VECTOR_SHUFFLE, dl, getSDVTList(VT)), Mask(M) {
1038     InitOperands(Ops, N1, N2);
1039   }
1040 public:
1041
1042   void getMask(SmallVectorImpl<int> &M) const {
1043     EVT VT = getValueType(0);
1044     M.clear();
1045     for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
1046       M.push_back(Mask[i]);
1047   }
1048   int getMaskElt(unsigned Idx) const {
1049     assert(Idx < getValueType(0).getVectorNumElements() && "Idx out of range!");
1050     return Mask[Idx];
1051   }
1052   
1053   bool isSplat() const { return isSplatMask(Mask, getValueType(0)); }
1054   int  getSplatIndex() const { 
1055     assert(isSplat() && "Cannot get splat index for non-splat!");
1056     EVT VT = getValueType(0);
1057     for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
1058       if (Mask[i] != -1)
1059         return Mask[i];
1060     }
1061     return -1;
1062   }
1063   static bool isSplatMask(const int *Mask, EVT VT);
1064
1065   static bool classof(const ShuffleVectorSDNode *) { return true; }
1066   static bool classof(const SDNode *N) {
1067     return N->getOpcode() == ISD::VECTOR_SHUFFLE;
1068   }
1069 };
1070   
1071 class ConstantSDNode : public SDNode {
1072   const ConstantInt *Value;
1073   friend class SelectionDAG;
1074   ConstantSDNode(bool isTarget, const ConstantInt *val, EVT VT)
1075     : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant,
1076              DebugLoc(), getSDVTList(VT)), Value(val) {
1077   }
1078 public:
1079
1080   const ConstantInt *getConstantIntValue() const { return Value; }
1081   const APInt &getAPIntValue() const { return Value->getValue(); }
1082   uint64_t getZExtValue() const { return Value->getZExtValue(); }
1083   int64_t getSExtValue() const { return Value->getSExtValue(); }
1084
1085   bool isNullValue() const { return Value->isNullValue(); }
1086   bool isAllOnesValue() const { return Value->isAllOnesValue(); }
1087
1088   static bool classof(const ConstantSDNode *) { return true; }
1089   static bool classof(const SDNode *N) {
1090     return N->getOpcode() == ISD::Constant ||
1091            N->getOpcode() == ISD::TargetConstant;
1092   }
1093 };
1094
1095 class ConstantFPSDNode : public SDNode {
1096   const ConstantFP *Value;
1097   friend class SelectionDAG;
1098   ConstantFPSDNode(bool isTarget, const ConstantFP *val, EVT VT)
1099     : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP,
1100              DebugLoc(), getSDVTList(VT)), Value(val) {
1101   }
1102 public:
1103
1104   const APFloat& getValueAPF() const { return Value->getValueAPF(); }
1105   const ConstantFP *getConstantFPValue() const { return Value; }
1106
1107   /// isZero - Return true if the value is positive or negative zero.
1108   bool isZero() const { return Value->isZero(); }
1109
1110   /// isNaN - Return true if the value is a NaN.
1111   bool isNaN() const { return Value->isNaN(); }
1112
1113   /// isExactlyValue - We don't rely on operator== working on double values, as
1114   /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
1115   /// As such, this method can be used to do an exact bit-for-bit comparison of
1116   /// two floating point values.
1117
1118   /// We leave the version with the double argument here because it's just so
1119   /// convenient to write "2.0" and the like.  Without this function we'd
1120   /// have to duplicate its logic everywhere it's called.
1121   bool isExactlyValue(double V) const {
1122     bool ignored;
1123     // convert is not supported on this type
1124     if (&Value->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
1125       return false;
1126     APFloat Tmp(V);
1127     Tmp.convert(Value->getValueAPF().getSemantics(),
1128                 APFloat::rmNearestTiesToEven, &ignored);
1129     return isExactlyValue(Tmp);
1130   }
1131   bool isExactlyValue(const APFloat& V) const;
1132
1133   bool isValueValidForType(EVT VT, const APFloat& Val);
1134
1135   static bool classof(const ConstantFPSDNode *) { return true; }
1136   static bool classof(const SDNode *N) {
1137     return N->getOpcode() == ISD::ConstantFP ||
1138            N->getOpcode() == ISD::TargetConstantFP;
1139   }
1140 };
1141
1142 class GlobalAddressSDNode : public SDNode {
1143   const GlobalValue *TheGlobal;
1144   int64_t Offset;
1145   unsigned char TargetFlags;
1146   friend class SelectionDAG;
1147   GlobalAddressSDNode(unsigned Opc, const GlobalValue *GA, EVT VT,
1148                       int64_t o, unsigned char TargetFlags);
1149 public:
1150
1151   const GlobalValue *getGlobal() const { return TheGlobal; }
1152   int64_t getOffset() const { return Offset; }
1153   unsigned char getTargetFlags() const { return TargetFlags; }
1154   // Return the address space this GlobalAddress belongs to.
1155   unsigned getAddressSpace() const;
1156
1157   static bool classof(const GlobalAddressSDNode *) { return true; }
1158   static bool classof(const SDNode *N) {
1159     return N->getOpcode() == ISD::GlobalAddress ||
1160            N->getOpcode() == ISD::TargetGlobalAddress ||
1161            N->getOpcode() == ISD::GlobalTLSAddress ||
1162            N->getOpcode() == ISD::TargetGlobalTLSAddress;
1163   }
1164 };
1165
1166 class FrameIndexSDNode : public SDNode {
1167   int FI;
1168   friend class SelectionDAG;
1169   FrameIndexSDNode(int fi, EVT VT, bool isTarg)
1170     : SDNode(isTarg ? ISD::TargetFrameIndex : ISD::FrameIndex,
1171       DebugLoc(), getSDVTList(VT)), FI(fi) {
1172   }
1173 public:
1174
1175   int getIndex() const { return FI; }
1176
1177   static bool classof(const FrameIndexSDNode *) { return true; }
1178   static bool classof(const SDNode *N) {
1179     return N->getOpcode() == ISD::FrameIndex ||
1180            N->getOpcode() == ISD::TargetFrameIndex;
1181   }
1182 };
1183
1184 class JumpTableSDNode : public SDNode {
1185   int JTI;
1186   unsigned char TargetFlags;
1187   friend class SelectionDAG;
1188   JumpTableSDNode(int jti, EVT VT, bool isTarg, unsigned char TF)
1189     : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable,
1190       DebugLoc(), getSDVTList(VT)), JTI(jti), TargetFlags(TF) {
1191   }
1192 public:
1193
1194   int getIndex() const { return JTI; }
1195   unsigned char getTargetFlags() const { return TargetFlags; }
1196
1197   static bool classof(const JumpTableSDNode *) { return true; }
1198   static bool classof(const SDNode *N) {
1199     return N->getOpcode() == ISD::JumpTable ||
1200            N->getOpcode() == ISD::TargetJumpTable;
1201   }
1202 };
1203
1204 class ConstantPoolSDNode : public SDNode {
1205   union {
1206     const Constant *ConstVal;
1207     MachineConstantPoolValue *MachineCPVal;
1208   } Val;
1209   int Offset;  // It's a MachineConstantPoolValue if top bit is set.
1210   unsigned Alignment;  // Minimum alignment requirement of CP (not log2 value).
1211   unsigned char TargetFlags;
1212   friend class SelectionDAG;
1213   ConstantPoolSDNode(bool isTarget, const Constant *c, EVT VT, int o,
1214                      unsigned Align, unsigned char TF)
1215     : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1216              DebugLoc(),
1217              getSDVTList(VT)), Offset(o), Alignment(Align), TargetFlags(TF) {
1218     assert((int)Offset >= 0 && "Offset is too large");
1219     Val.ConstVal = c;
1220   }
1221   ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v,
1222                      EVT VT, int o, unsigned Align, unsigned char TF)
1223     : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1224              DebugLoc(),
1225              getSDVTList(VT)), Offset(o), Alignment(Align), TargetFlags(TF) {
1226     assert((int)Offset >= 0 && "Offset is too large");
1227     Val.MachineCPVal = v;
1228     Offset |= 1 << (sizeof(unsigned)*CHAR_BIT-1);
1229   }
1230 public:
1231   
1232
1233   bool isMachineConstantPoolEntry() const {
1234     return (int)Offset < 0;
1235   }
1236
1237   const Constant *getConstVal() const {
1238     assert(!isMachineConstantPoolEntry() && "Wrong constantpool type");
1239     return Val.ConstVal;
1240   }
1241
1242   MachineConstantPoolValue *getMachineCPVal() const {
1243     assert(isMachineConstantPoolEntry() && "Wrong constantpool type");
1244     return Val.MachineCPVal;
1245   }
1246
1247   int getOffset() const {
1248     return Offset & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
1249   }
1250
1251   // Return the alignment of this constant pool object, which is either 0 (for
1252   // default alignment) or the desired value.
1253   unsigned getAlignment() const { return Alignment; }
1254   unsigned char getTargetFlags() const { return TargetFlags; }
1255
1256   const Type *getType() const;
1257
1258   static bool classof(const ConstantPoolSDNode *) { return true; }
1259   static bool classof(const SDNode *N) {
1260     return N->getOpcode() == ISD::ConstantPool ||
1261            N->getOpcode() == ISD::TargetConstantPool;
1262   }
1263 };
1264
1265 class BasicBlockSDNode : public SDNode {
1266   MachineBasicBlock *MBB;
1267   friend class SelectionDAG;
1268   /// Debug info is meaningful and potentially useful here, but we create
1269   /// blocks out of order when they're jumped to, which makes it a bit
1270   /// harder.  Let's see if we need it first.
1271   explicit BasicBlockSDNode(MachineBasicBlock *mbb)
1272     : SDNode(ISD::BasicBlock, DebugLoc(), getSDVTList(MVT::Other)), MBB(mbb) {
1273   }
1274 public:
1275
1276   MachineBasicBlock *getBasicBlock() const { return MBB; }
1277
1278   static bool classof(const BasicBlockSDNode *) { return true; }
1279   static bool classof(const SDNode *N) {
1280     return N->getOpcode() == ISD::BasicBlock;
1281   }
1282 };
1283
1284 /// BuildVectorSDNode - A "pseudo-class" with methods for operating on
1285 /// BUILD_VECTORs.
1286 class BuildVectorSDNode : public SDNode {
1287   // These are constructed as SDNodes and then cast to BuildVectorSDNodes.
1288   explicit BuildVectorSDNode();        // Do not implement
1289 public:
1290   /// isConstantSplat - Check if this is a constant splat, and if so, find the
1291   /// smallest element size that splats the vector.  If MinSplatBits is
1292   /// nonzero, the element size must be at least that large.  Note that the
1293   /// splat element may be the entire vector (i.e., a one element vector).
1294   /// Returns the splat element value in SplatValue.  Any undefined bits in
1295   /// that value are zero, and the corresponding bits in the SplatUndef mask
1296   /// are set.  The SplatBitSize value is set to the splat element size in
1297   /// bits.  HasAnyUndefs is set to true if any bits in the vector are
1298   /// undefined.  isBigEndian describes the endianness of the target.
1299   bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
1300                        unsigned &SplatBitSize, bool &HasAnyUndefs,
1301                        unsigned MinSplatBits = 0, bool isBigEndian = false);
1302
1303   static inline bool classof(const BuildVectorSDNode *) { return true; }
1304   static inline bool classof(const SDNode *N) {
1305     return N->getOpcode() == ISD::BUILD_VECTOR;
1306   }
1307 };
1308
1309 /// SrcValueSDNode - An SDNode that holds an arbitrary LLVM IR Value. This is
1310 /// used when the SelectionDAG needs to make a simple reference to something
1311 /// in the LLVM IR representation.
1312 ///
1313 class SrcValueSDNode : public SDNode {
1314   const Value *V;
1315   friend class SelectionDAG;
1316   /// Create a SrcValue for a general value.
1317   explicit SrcValueSDNode(const Value *v)
1318     : SDNode(ISD::SRCVALUE, DebugLoc(), getSDVTList(MVT::Other)), V(v) {}
1319
1320 public:
1321   /// getValue - return the contained Value.
1322   const Value *getValue() const { return V; }
1323
1324   static bool classof(const SrcValueSDNode *) { return true; }
1325   static bool classof(const SDNode *N) {
1326     return N->getOpcode() == ISD::SRCVALUE;
1327   }
1328 };
1329   
1330 class MDNodeSDNode : public SDNode {
1331   const MDNode *MD;
1332   friend class SelectionDAG;
1333   explicit MDNodeSDNode(const MDNode *md)
1334   : SDNode(ISD::MDNODE_SDNODE, DebugLoc(), getSDVTList(MVT::Other)), MD(md) {}
1335 public:
1336   
1337   const MDNode *getMD() const { return MD; }
1338   
1339   static bool classof(const MDNodeSDNode *) { return true; }
1340   static bool classof(const SDNode *N) {
1341     return N->getOpcode() == ISD::MDNODE_SDNODE;
1342   }
1343 };
1344
1345
1346 class RegisterSDNode : public SDNode {
1347   unsigned Reg;
1348   friend class SelectionDAG;
1349   RegisterSDNode(unsigned reg, EVT VT)
1350     : SDNode(ISD::Register, DebugLoc(), getSDVTList(VT)), Reg(reg) {
1351   }
1352 public:
1353
1354   unsigned getReg() const { return Reg; }
1355
1356   static bool classof(const RegisterSDNode *) { return true; }
1357   static bool classof(const SDNode *N) {
1358     return N->getOpcode() == ISD::Register;
1359   }
1360 };
1361
1362 class BlockAddressSDNode : public SDNode {
1363   const BlockAddress *BA;
1364   unsigned char TargetFlags;
1365   friend class SelectionDAG;
1366   BlockAddressSDNode(unsigned NodeTy, EVT VT, const BlockAddress *ba,
1367                      unsigned char Flags)
1368     : SDNode(NodeTy, DebugLoc(), getSDVTList(VT)),
1369              BA(ba), TargetFlags(Flags) {
1370   }
1371 public:
1372   const BlockAddress *getBlockAddress() const { return BA; }
1373   unsigned char getTargetFlags() const { return TargetFlags; }
1374
1375   static bool classof(const BlockAddressSDNode *) { return true; }
1376   static bool classof(const SDNode *N) {
1377     return N->getOpcode() == ISD::BlockAddress ||
1378            N->getOpcode() == ISD::TargetBlockAddress;
1379   }
1380 };
1381
1382 class EHLabelSDNode : public SDNode {
1383   SDUse Chain;
1384   MCSymbol *Label;
1385   friend class SelectionDAG;
1386   EHLabelSDNode(DebugLoc dl, SDValue ch, MCSymbol *L)
1387     : SDNode(ISD::EH_LABEL, dl, getSDVTList(MVT::Other)), Label(L) {
1388     InitOperands(&Chain, ch);
1389   }
1390 public:
1391   MCSymbol *getLabel() const { return Label; }
1392
1393   static bool classof(const EHLabelSDNode *) { return true; }
1394   static bool classof(const SDNode *N) {
1395     return N->getOpcode() == ISD::EH_LABEL;
1396   }
1397 };
1398
1399 class ExternalSymbolSDNode : public SDNode {
1400   const char *Symbol;
1401   unsigned char TargetFlags;
1402   
1403   friend class SelectionDAG;
1404   ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned char TF, EVT VT)
1405     : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol,
1406              DebugLoc(), getSDVTList(VT)), Symbol(Sym), TargetFlags(TF) {
1407   }
1408 public:
1409
1410   const char *getSymbol() const { return Symbol; }
1411   unsigned char getTargetFlags() const { return TargetFlags; }
1412
1413   static bool classof(const ExternalSymbolSDNode *) { return true; }
1414   static bool classof(const SDNode *N) {
1415     return N->getOpcode() == ISD::ExternalSymbol ||
1416            N->getOpcode() == ISD::TargetExternalSymbol;
1417   }
1418 };
1419
1420 class CondCodeSDNode : public SDNode {
1421   ISD::CondCode Condition;
1422   friend class SelectionDAG;
1423   explicit CondCodeSDNode(ISD::CondCode Cond)
1424     : SDNode(ISD::CONDCODE, DebugLoc(), getSDVTList(MVT::Other)),
1425       Condition(Cond) {
1426   }
1427 public:
1428
1429   ISD::CondCode get() const { return Condition; }
1430
1431   static bool classof(const CondCodeSDNode *) { return true; }
1432   static bool classof(const SDNode *N) {
1433     return N->getOpcode() == ISD::CONDCODE;
1434   }
1435 };
1436   
1437 /// CvtRndSatSDNode - NOTE: avoid using this node as this may disappear in the
1438 /// future and most targets don't support it.
1439 class CvtRndSatSDNode : public SDNode {
1440   ISD::CvtCode CvtCode;
1441   friend class SelectionDAG;
1442   explicit CvtRndSatSDNode(EVT VT, DebugLoc dl, const SDValue *Ops,
1443                            unsigned NumOps, ISD::CvtCode Code)
1444     : SDNode(ISD::CONVERT_RNDSAT, dl, getSDVTList(VT), Ops, NumOps),
1445       CvtCode(Code) {
1446     assert(NumOps == 5 && "wrong number of operations");
1447   }
1448 public:
1449   ISD::CvtCode getCvtCode() const { return CvtCode; }
1450
1451   static bool classof(const CvtRndSatSDNode *) { return true; }
1452   static bool classof(const SDNode *N) {
1453     return N->getOpcode() == ISD::CONVERT_RNDSAT;
1454   }
1455 };
1456
1457 namespace ISD {
1458   struct ArgFlagsTy {
1459   private:
1460     static const uint64_t NoFlagSet      = 0ULL;
1461     static const uint64_t ZExt           = 1ULL<<0;  ///< Zero extended
1462     static const uint64_t ZExtOffs       = 0;
1463     static const uint64_t SExt           = 1ULL<<1;  ///< Sign extended
1464     static const uint64_t SExtOffs       = 1;
1465     static const uint64_t InReg          = 1ULL<<2;  ///< Passed in register
1466     static const uint64_t InRegOffs      = 2;
1467     static const uint64_t SRet           = 1ULL<<3;  ///< Hidden struct-ret ptr
1468     static const uint64_t SRetOffs       = 3;
1469     static const uint64_t ByVal          = 1ULL<<4;  ///< Struct passed by value
1470     static const uint64_t ByValOffs      = 4;
1471     static const uint64_t Nest           = 1ULL<<5;  ///< Nested fn static chain
1472     static const uint64_t NestOffs       = 5;
1473     static const uint64_t ByValAlign     = 0xFULL << 6; //< Struct alignment
1474     static const uint64_t ByValAlignOffs = 6;
1475     static const uint64_t Split          = 1ULL << 10;
1476     static const uint64_t SplitOffs      = 10;
1477     static const uint64_t OrigAlign      = 0x1FULL<<27;
1478     static const uint64_t OrigAlignOffs  = 27;
1479     static const uint64_t ByValSize      = 0xffffffffULL << 32; //< Struct size
1480     static const uint64_t ByValSizeOffs  = 32;
1481
1482     static const uint64_t One            = 1ULL; //< 1 of this type, for shifts
1483
1484     uint64_t Flags;
1485   public:
1486     ArgFlagsTy() : Flags(0) { }
1487
1488     bool isZExt()   const { return Flags & ZExt; }
1489     void setZExt()  { Flags |= One << ZExtOffs; }
1490
1491     bool isSExt()   const { return Flags & SExt; }
1492     void setSExt()  { Flags |= One << SExtOffs; }
1493
1494     bool isInReg()  const { return Flags & InReg; }
1495     void setInReg() { Flags |= One << InRegOffs; }
1496
1497     bool isSRet()   const { return Flags & SRet; }
1498     void setSRet()  { Flags |= One << SRetOffs; }
1499
1500     bool isByVal()  const { return Flags & ByVal; }
1501     void setByVal() { Flags |= One << ByValOffs; }
1502
1503     bool isNest()   const { return Flags & Nest; }
1504     void setNest()  { Flags |= One << NestOffs; }
1505
1506     unsigned getByValAlign() const {
1507       return (unsigned)
1508         ((One << ((Flags & ByValAlign) >> ByValAlignOffs)) / 2);
1509     }
1510     void setByValAlign(unsigned A) {
1511       Flags = (Flags & ~ByValAlign) |
1512         (uint64_t(Log2_32(A) + 1) << ByValAlignOffs);
1513     }
1514
1515     bool isSplit()   const { return Flags & Split; }
1516     void setSplit()  { Flags |= One << SplitOffs; }
1517
1518     unsigned getOrigAlign() const {
1519       return (unsigned)
1520         ((One << ((Flags & OrigAlign) >> OrigAlignOffs)) / 2);
1521     }
1522     void setOrigAlign(unsigned A) {
1523       Flags = (Flags & ~OrigAlign) |
1524         (uint64_t(Log2_32(A) + 1) << OrigAlignOffs);
1525     }
1526
1527     unsigned getByValSize() const {
1528       return (unsigned)((Flags & ByValSize) >> ByValSizeOffs);
1529     }
1530     void setByValSize(unsigned S) {
1531       Flags = (Flags & ~ByValSize) | (uint64_t(S) << ByValSizeOffs);
1532     }
1533
1534     /// getArgFlagsString - Returns the flags as a string, eg: "zext align:4".
1535     std::string getArgFlagsString();
1536
1537     /// getRawBits - Represent the flags as a bunch of bits.
1538     uint64_t getRawBits() const { return Flags; }
1539   };
1540
1541   /// InputArg - This struct carries flags and type information about a
1542   /// single incoming (formal) argument or incoming (from the perspective
1543   /// of the caller) return value virtual register.
1544   ///
1545   struct InputArg {
1546     ArgFlagsTy Flags;
1547     EVT VT;
1548     bool Used;
1549
1550     InputArg() : VT(MVT::Other), Used(false) {}
1551     InputArg(ISD::ArgFlagsTy flags, EVT vt, bool used)
1552       : Flags(flags), VT(vt), Used(used) {
1553       assert(VT.isSimple() &&
1554              "InputArg value type must be Simple!");
1555     }
1556   };
1557
1558   /// OutputArg - This struct carries flags and a value for a
1559   /// single outgoing (actual) argument or outgoing (from the perspective
1560   /// of the caller) return value virtual register.
1561   ///
1562   struct OutputArg {
1563     ArgFlagsTy Flags;
1564     SDValue Val;
1565     bool IsFixed;
1566
1567     OutputArg() : IsFixed(false) {}
1568     OutputArg(ISD::ArgFlagsTy flags, SDValue val, bool isfixed)
1569       : Flags(flags), Val(val), IsFixed(isfixed) {
1570       assert(Val.getValueType().isSimple() &&
1571              "OutputArg value type must be Simple!");
1572     }
1573   };
1574 }
1575
1576 /// VTSDNode - This class is used to represent EVT's, which are used
1577 /// to parameterize some operations.
1578 class VTSDNode : public SDNode {
1579   EVT ValueType;
1580   friend class SelectionDAG;
1581   explicit VTSDNode(EVT VT)
1582     : SDNode(ISD::VALUETYPE, DebugLoc(), getSDVTList(MVT::Other)),
1583       ValueType(VT) {
1584   }
1585 public:
1586
1587   EVT getVT() const { return ValueType; }
1588
1589   static bool classof(const VTSDNode *) { return true; }
1590   static bool classof(const SDNode *N) {
1591     return N->getOpcode() == ISD::VALUETYPE;
1592   }
1593 };
1594
1595 /// LSBaseSDNode - Base class for LoadSDNode and StoreSDNode
1596 ///
1597 class LSBaseSDNode : public MemSDNode {
1598   //! Operand array for load and store
1599   /*!
1600     \note Moving this array to the base class captures more
1601     common functionality shared between LoadSDNode and
1602     StoreSDNode
1603    */
1604   SDUse Ops[4];
1605 public:
1606   LSBaseSDNode(ISD::NodeType NodeTy, DebugLoc dl, SDValue *Operands,
1607                unsigned numOperands, SDVTList VTs, ISD::MemIndexedMode AM,
1608                EVT MemVT, MachineMemOperand *MMO)
1609     : MemSDNode(NodeTy, dl, VTs, MemVT, MMO) {
1610     SubclassData |= AM << 2;
1611     assert(getAddressingMode() == AM && "MemIndexedMode encoding error!");
1612     InitOperands(Ops, Operands, numOperands);
1613     assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
1614            "Only indexed loads and stores have a non-undef offset operand");
1615   }
1616
1617   const SDValue &getOffset() const {
1618     return getOperand(getOpcode() == ISD::LOAD ? 2 : 3);
1619   }
1620
1621   /// getAddressingMode - Return the addressing mode for this load or store:
1622   /// unindexed, pre-inc, pre-dec, post-inc, or post-dec.
1623   ISD::MemIndexedMode getAddressingMode() const {
1624     return ISD::MemIndexedMode((SubclassData >> 2) & 7);
1625   }
1626
1627   /// isIndexed - Return true if this is a pre/post inc/dec load/store.
1628   bool isIndexed() const { return getAddressingMode() != ISD::UNINDEXED; }
1629
1630   /// isUnindexed - Return true if this is NOT a pre/post inc/dec load/store.
1631   bool isUnindexed() const { return getAddressingMode() == ISD::UNINDEXED; }
1632
1633   static bool classof(const LSBaseSDNode *) { return true; }
1634   static bool classof(const SDNode *N) {
1635     return N->getOpcode() == ISD::LOAD ||
1636            N->getOpcode() == ISD::STORE;
1637   }
1638 };
1639
1640 /// LoadSDNode - This class is used to represent ISD::LOAD nodes.
1641 ///
1642 class LoadSDNode : public LSBaseSDNode {
1643   friend class SelectionDAG;
1644   LoadSDNode(SDValue *ChainPtrOff, DebugLoc dl, SDVTList VTs,
1645              ISD::MemIndexedMode AM, ISD::LoadExtType ETy, EVT MemVT,
1646              MachineMemOperand *MMO)
1647     : LSBaseSDNode(ISD::LOAD, dl, ChainPtrOff, 3,
1648                    VTs, AM, MemVT, MMO) {
1649     SubclassData |= (unsigned short)ETy;
1650     assert(getExtensionType() == ETy && "LoadExtType encoding error!");
1651     assert(readMem() && "Load MachineMemOperand is not a load!");
1652     assert(!writeMem() && "Load MachineMemOperand is a store!");
1653   }
1654 public:
1655
1656   /// getExtensionType - Return whether this is a plain node,
1657   /// or one of the varieties of value-extending loads.
1658   ISD::LoadExtType getExtensionType() const {
1659     return ISD::LoadExtType(SubclassData & 3);
1660   }
1661
1662   const SDValue &getBasePtr() const { return getOperand(1); }
1663   const SDValue &getOffset() const { return getOperand(2); }
1664
1665   static bool classof(const LoadSDNode *) { return true; }
1666   static bool classof(const SDNode *N) {
1667     return N->getOpcode() == ISD::LOAD;
1668   }
1669 };
1670
1671 /// StoreSDNode - This class is used to represent ISD::STORE nodes.
1672 ///
1673 class StoreSDNode : public LSBaseSDNode {
1674   friend class SelectionDAG;
1675   StoreSDNode(SDValue *ChainValuePtrOff, DebugLoc dl, SDVTList VTs,
1676               ISD::MemIndexedMode AM, bool isTrunc, EVT MemVT,
1677               MachineMemOperand *MMO)
1678     : LSBaseSDNode(ISD::STORE, dl, ChainValuePtrOff, 4,
1679                    VTs, AM, MemVT, MMO) {
1680     SubclassData |= (unsigned short)isTrunc;
1681     assert(isTruncatingStore() == isTrunc && "isTrunc encoding error!");
1682     assert(!readMem() && "Store MachineMemOperand is a load!");
1683     assert(writeMem() && "Store MachineMemOperand is not a store!");
1684   }
1685 public:
1686
1687   /// isTruncatingStore - Return true if the op does a truncation before store.
1688   /// For integers this is the same as doing a TRUNCATE and storing the result.
1689   /// For floats, it is the same as doing an FP_ROUND and storing the result.
1690   bool isTruncatingStore() const { return SubclassData & 1; }
1691
1692   const SDValue &getValue() const { return getOperand(1); }
1693   const SDValue &getBasePtr() const { return getOperand(2); }
1694   const SDValue &getOffset() const { return getOperand(3); }
1695
1696   static bool classof(const StoreSDNode *) { return true; }
1697   static bool classof(const SDNode *N) {
1698     return N->getOpcode() == ISD::STORE;
1699   }
1700 };
1701
1702 /// MachineSDNode - An SDNode that represents everything that will be needed
1703 /// to construct a MachineInstr. These nodes are created during the
1704 /// instruction selection proper phase.
1705 ///
1706 class MachineSDNode : public SDNode {
1707 public:
1708   typedef MachineMemOperand **mmo_iterator;
1709
1710 private:
1711   friend class SelectionDAG;
1712   MachineSDNode(unsigned Opc, const DebugLoc DL, SDVTList VTs)
1713     : SDNode(Opc, DL, VTs), MemRefs(0), MemRefsEnd(0) {}
1714
1715   /// LocalOperands - Operands for this instruction, if they fit here. If
1716   /// they don't, this field is unused.
1717   SDUse LocalOperands[4];
1718
1719   /// MemRefs - Memory reference descriptions for this instruction.
1720   mmo_iterator MemRefs;
1721   mmo_iterator MemRefsEnd;
1722
1723 public:
1724   mmo_iterator memoperands_begin() const { return MemRefs; }
1725   mmo_iterator memoperands_end() const { return MemRefsEnd; }
1726   bool memoperands_empty() const { return MemRefsEnd == MemRefs; }
1727
1728   /// setMemRefs - Assign this MachineSDNodes's memory reference descriptor
1729   /// list. This does not transfer ownership.
1730   void setMemRefs(mmo_iterator NewMemRefs, mmo_iterator NewMemRefsEnd) {
1731     MemRefs = NewMemRefs;
1732     MemRefsEnd = NewMemRefsEnd;
1733   }
1734
1735   static bool classof(const MachineSDNode *) { return true; }
1736   static bool classof(const SDNode *N) {
1737     return N->isMachineOpcode();
1738   }
1739 };
1740
1741 class SDNodeIterator : public std::iterator<std::forward_iterator_tag,
1742                                             SDNode, ptrdiff_t> {
1743   SDNode *Node;
1744   unsigned Operand;
1745
1746   SDNodeIterator(SDNode *N, unsigned Op) : Node(N), Operand(Op) {}
1747 public:
1748   bool operator==(const SDNodeIterator& x) const {
1749     return Operand == x.Operand;
1750   }
1751   bool operator!=(const SDNodeIterator& x) const { return !operator==(x); }
1752
1753   const SDNodeIterator &operator=(const SDNodeIterator &I) {
1754     assert(I.Node == Node && "Cannot assign iterators to two different nodes!");
1755     Operand = I.Operand;
1756     return *this;
1757   }
1758
1759   pointer operator*() const {
1760     return Node->getOperand(Operand).getNode();
1761   }
1762   pointer operator->() const { return operator*(); }
1763
1764   SDNodeIterator& operator++() {                // Preincrement
1765     ++Operand;
1766     return *this;
1767   }
1768   SDNodeIterator operator++(int) { // Postincrement
1769     SDNodeIterator tmp = *this; ++*this; return tmp;
1770   }
1771   size_t operator-(SDNodeIterator Other) const {
1772     assert(Node == Other.Node &&
1773            "Cannot compare iterators of two different nodes!");
1774     return Operand - Other.Operand;
1775   }
1776
1777   static SDNodeIterator begin(SDNode *N) { return SDNodeIterator(N, 0); }
1778   static SDNodeIterator end  (SDNode *N) {
1779     return SDNodeIterator(N, N->getNumOperands());
1780   }
1781
1782   unsigned getOperand() const { return Operand; }
1783   const SDNode *getNode() const { return Node; }
1784 };
1785
1786 template <> struct GraphTraits<SDNode*> {
1787   typedef SDNode NodeType;
1788   typedef SDNodeIterator ChildIteratorType;
1789   static inline NodeType *getEntryNode(SDNode *N) { return N; }
1790   static inline ChildIteratorType child_begin(NodeType *N) {
1791     return SDNodeIterator::begin(N);
1792   }
1793   static inline ChildIteratorType child_end(NodeType *N) {
1794     return SDNodeIterator::end(N);
1795   }
1796 };
1797
1798 /// LargestSDNode - The largest SDNode class.
1799 ///
1800 typedef LoadSDNode LargestSDNode;
1801
1802 /// MostAlignedSDNode - The SDNode class with the greatest alignment
1803 /// requirement.
1804 ///
1805 typedef GlobalAddressSDNode MostAlignedSDNode;
1806
1807 namespace ISD {
1808   /// isNormalLoad - Returns true if the specified node is a non-extending
1809   /// and unindexed load.
1810   inline bool isNormalLoad(const SDNode *N) {
1811     const LoadSDNode *Ld = dyn_cast<LoadSDNode>(N);
1812     return Ld && Ld->getExtensionType() == ISD::NON_EXTLOAD &&
1813       Ld->getAddressingMode() == ISD::UNINDEXED;
1814   }
1815
1816   /// isNON_EXTLoad - Returns true if the specified node is a non-extending
1817   /// load.
1818   inline bool isNON_EXTLoad(const SDNode *N) {
1819     return isa<LoadSDNode>(N) &&
1820       cast<LoadSDNode>(N)->getExtensionType() == ISD::NON_EXTLOAD;
1821   }
1822
1823   /// isEXTLoad - Returns true if the specified node is a EXTLOAD.
1824   ///
1825   inline bool isEXTLoad(const SDNode *N) {
1826     return isa<LoadSDNode>(N) &&
1827       cast<LoadSDNode>(N)->getExtensionType() == ISD::EXTLOAD;
1828   }
1829
1830   /// isSEXTLoad - Returns true if the specified node is a SEXTLOAD.
1831   ///
1832   inline bool isSEXTLoad(const SDNode *N) {
1833     return isa<LoadSDNode>(N) &&
1834       cast<LoadSDNode>(N)->getExtensionType() == ISD::SEXTLOAD;
1835   }
1836
1837   /// isZEXTLoad - Returns true if the specified node is a ZEXTLOAD.
1838   ///
1839   inline bool isZEXTLoad(const SDNode *N) {
1840     return isa<LoadSDNode>(N) &&
1841       cast<LoadSDNode>(N)->getExtensionType() == ISD::ZEXTLOAD;
1842   }
1843
1844   /// isUNINDEXEDLoad - Returns true if the specified node is an unindexed load.
1845   ///
1846   inline bool isUNINDEXEDLoad(const SDNode *N) {
1847     return isa<LoadSDNode>(N) &&
1848       cast<LoadSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
1849   }
1850
1851   /// isNormalStore - Returns true if the specified node is a non-truncating
1852   /// and unindexed store.
1853   inline bool isNormalStore(const SDNode *N) {
1854     const StoreSDNode *St = dyn_cast<StoreSDNode>(N);
1855     return St && !St->isTruncatingStore() &&
1856       St->getAddressingMode() == ISD::UNINDEXED;
1857   }
1858
1859   /// isNON_TRUNCStore - Returns true if the specified node is a non-truncating
1860   /// store.
1861   inline bool isNON_TRUNCStore(const SDNode *N) {
1862     return isa<StoreSDNode>(N) && !cast<StoreSDNode>(N)->isTruncatingStore();
1863   }
1864
1865   /// isTRUNCStore - Returns true if the specified node is a truncating
1866   /// store.
1867   inline bool isTRUNCStore(const SDNode *N) {
1868     return isa<StoreSDNode>(N) && cast<StoreSDNode>(N)->isTruncatingStore();
1869   }
1870
1871   /// isUNINDEXEDStore - Returns true if the specified node is an
1872   /// unindexed store.
1873   inline bool isUNINDEXEDStore(const SDNode *N) {
1874     return isa<StoreSDNode>(N) &&
1875       cast<StoreSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
1876   }
1877 }
1878
1879 } // end llvm namespace
1880
1881 #endif