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