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