Add additional checking to ensure that MachineMemOperands are never set to null,...
[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   bool isInvariant() const { return (SubclassData >> 7) & 1; }
921
922   AtomicOrdering getOrdering() const {
923     return AtomicOrdering((SubclassData >> 8) & 15);
924   }
925   SynchronizationScope getSynchScope() const {
926     return SynchronizationScope((SubclassData >> 12) & 1);
927   }
928
929   /// Returns the SrcValue and offset that describes the location of the access
930   const Value *getSrcValue() const { return MMO->getValue(); }
931   int64_t getSrcValueOffset() const { return MMO->getOffset(); }
932
933   /// Returns the TBAAInfo that describes the dereference.
934   const MDNode *getTBAAInfo() const { return MMO->getTBAAInfo(); }
935
936   /// getMemoryVT - Return the type of the in-memory value.
937   EVT getMemoryVT() const { return MemoryVT; }
938
939   /// getMemOperand - Return a MachineMemOperand object describing the memory
940   /// reference performed by operation.
941   MachineMemOperand *getMemOperand() const { return MMO; }
942
943   const MachinePointerInfo &getPointerInfo() const {
944     return MMO->getPointerInfo();
945   }
946   
947   /// refineAlignment - Update this MemSDNode's MachineMemOperand information
948   /// to reflect the alignment of NewMMO, if it has a greater alignment.
949   /// This must only be used when the new alignment applies to all users of
950   /// this MachineMemOperand.
951   void refineAlignment(const MachineMemOperand *NewMMO) {
952     MMO->refineAlignment(NewMMO);
953   }
954
955   const SDValue &getChain() const { return getOperand(0); }
956   const SDValue &getBasePtr() const {
957     return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
958   }
959
960   // Methods to support isa and dyn_cast
961   static bool classof(const MemSDNode *) { return true; }
962   static bool classof(const SDNode *N) {
963     // For some targets, we lower some target intrinsics to a MemIntrinsicNode
964     // with either an intrinsic or a target opcode.
965     return N->getOpcode() == ISD::LOAD                ||
966            N->getOpcode() == ISD::STORE               ||
967            N->getOpcode() == ISD::PREFETCH            ||
968            N->getOpcode() == ISD::ATOMIC_CMP_SWAP     ||
969            N->getOpcode() == ISD::ATOMIC_SWAP         ||
970            N->getOpcode() == ISD::ATOMIC_LOAD_ADD     ||
971            N->getOpcode() == ISD::ATOMIC_LOAD_SUB     ||
972            N->getOpcode() == ISD::ATOMIC_LOAD_AND     ||
973            N->getOpcode() == ISD::ATOMIC_LOAD_OR      ||
974            N->getOpcode() == ISD::ATOMIC_LOAD_XOR     ||
975            N->getOpcode() == ISD::ATOMIC_LOAD_NAND    ||
976            N->getOpcode() == ISD::ATOMIC_LOAD_MIN     ||
977            N->getOpcode() == ISD::ATOMIC_LOAD_MAX     ||
978            N->getOpcode() == ISD::ATOMIC_LOAD_UMIN    ||
979            N->getOpcode() == ISD::ATOMIC_LOAD_UMAX    ||
980            N->getOpcode() == ISD::ATOMIC_LOAD         ||
981            N->getOpcode() == ISD::ATOMIC_STORE        ||
982            N->isTargetMemoryOpcode();
983   }
984 };
985
986 /// AtomicSDNode - A SDNode reprenting atomic operations.
987 ///
988 class AtomicSDNode : public MemSDNode {
989   SDUse Ops[4];
990
991   void InitAtomic(AtomicOrdering Ordering, SynchronizationScope SynchScope) {
992     // This must match encodeMemSDNodeFlags() in SelectionDAG.cpp.
993     assert((Ordering & 15) == Ordering &&
994            "Ordering may not require more than 4 bits!");
995     assert((SynchScope & 1) == SynchScope &&
996            "SynchScope may not require more than 1 bit!");
997     SubclassData |= Ordering << 8;
998     SubclassData |= SynchScope << 12;
999     assert(getOrdering() == Ordering && "Ordering encoding error!");
1000     assert(getSynchScope() == SynchScope && "Synch-scope encoding error!");
1001
1002     assert((readMem() || getOrdering() <= Monotonic) &&
1003            "Acquire/Release MachineMemOperand must be a load!");
1004     assert((writeMem() || getOrdering() <= Monotonic) &&
1005            "Acquire/Release MachineMemOperand must be a store!");
1006   }
1007
1008 public:
1009   // Opc:   opcode for atomic
1010   // VTL:    value type list
1011   // Chain:  memory chain for operaand
1012   // Ptr:    address to update as a SDValue
1013   // Cmp:    compare value
1014   // Swp:    swap value
1015   // SrcVal: address to update as a Value (used for MemOperand)
1016   // Align:  alignment of memory
1017   AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT,
1018                SDValue Chain, SDValue Ptr,
1019                SDValue Cmp, SDValue Swp, MachineMemOperand *MMO,
1020                AtomicOrdering Ordering, SynchronizationScope SynchScope)
1021     : MemSDNode(Opc, dl, VTL, MemVT, MMO) {
1022     InitAtomic(Ordering, SynchScope);
1023     InitOperands(Ops, Chain, Ptr, Cmp, Swp);
1024   }
1025   AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT,
1026                SDValue Chain, SDValue Ptr,
1027                SDValue Val, MachineMemOperand *MMO,
1028                AtomicOrdering Ordering, SynchronizationScope SynchScope)
1029     : MemSDNode(Opc, dl, VTL, MemVT, MMO) {
1030     InitAtomic(Ordering, SynchScope);
1031     InitOperands(Ops, Chain, Ptr, Val);
1032   }
1033   AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT,
1034                SDValue Chain, SDValue Ptr,
1035                MachineMemOperand *MMO,
1036                AtomicOrdering Ordering, SynchronizationScope SynchScope)
1037     : MemSDNode(Opc, dl, VTL, MemVT, MMO) {
1038     InitAtomic(Ordering, SynchScope);
1039     InitOperands(Ops, Chain, Ptr);
1040   }
1041
1042   const SDValue &getBasePtr() const { return getOperand(1); }
1043   const SDValue &getVal() const { return getOperand(2); }
1044
1045   bool isCompareAndSwap() const {
1046     unsigned Op = getOpcode();
1047     return Op == ISD::ATOMIC_CMP_SWAP;
1048   }
1049
1050   // Methods to support isa and dyn_cast
1051   static bool classof(const AtomicSDNode *) { return true; }
1052   static bool classof(const SDNode *N) {
1053     return N->getOpcode() == ISD::ATOMIC_CMP_SWAP     ||
1054            N->getOpcode() == ISD::ATOMIC_SWAP         ||
1055            N->getOpcode() == ISD::ATOMIC_LOAD_ADD     ||
1056            N->getOpcode() == ISD::ATOMIC_LOAD_SUB     ||
1057            N->getOpcode() == ISD::ATOMIC_LOAD_AND     ||
1058            N->getOpcode() == ISD::ATOMIC_LOAD_OR      ||
1059            N->getOpcode() == ISD::ATOMIC_LOAD_XOR     ||
1060            N->getOpcode() == ISD::ATOMIC_LOAD_NAND    ||
1061            N->getOpcode() == ISD::ATOMIC_LOAD_MIN     ||
1062            N->getOpcode() == ISD::ATOMIC_LOAD_MAX     ||
1063            N->getOpcode() == ISD::ATOMIC_LOAD_UMIN    ||
1064            N->getOpcode() == ISD::ATOMIC_LOAD_UMAX    ||
1065            N->getOpcode() == ISD::ATOMIC_LOAD         ||
1066            N->getOpcode() == ISD::ATOMIC_STORE;
1067   }
1068 };
1069
1070 /// MemIntrinsicSDNode - This SDNode is used for target intrinsics that touch
1071 /// memory and need an associated MachineMemOperand. Its opcode may be
1072 /// INTRINSIC_VOID, INTRINSIC_W_CHAIN, PREFETCH, or a target-specific opcode
1073 /// with a value not less than FIRST_TARGET_MEMORY_OPCODE.
1074 class MemIntrinsicSDNode : public MemSDNode {
1075 public:
1076   MemIntrinsicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTs,
1077                      const SDValue *Ops, unsigned NumOps,
1078                      EVT MemoryVT, MachineMemOperand *MMO)
1079     : MemSDNode(Opc, dl, VTs, Ops, NumOps, MemoryVT, MMO) {
1080   }
1081
1082   // Methods to support isa and dyn_cast
1083   static bool classof(const MemIntrinsicSDNode *) { return true; }
1084   static bool classof(const SDNode *N) {
1085     // We lower some target intrinsics to their target opcode
1086     // early a node with a target opcode can be of this class
1087     return N->getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1088            N->getOpcode() == ISD::INTRINSIC_VOID ||
1089            N->getOpcode() == ISD::PREFETCH ||
1090            N->isTargetMemoryOpcode();
1091   }
1092 };
1093
1094 /// ShuffleVectorSDNode - This SDNode is used to implement the code generator
1095 /// support for the llvm IR shufflevector instruction.  It combines elements
1096 /// from two input vectors into a new input vector, with the selection and
1097 /// ordering of elements determined by an array of integers, referred to as
1098 /// the shuffle mask.  For input vectors of width N, mask indices of 0..N-1
1099 /// refer to elements from the LHS input, and indices from N to 2N-1 the RHS.
1100 /// An index of -1 is treated as undef, such that the code generator may put
1101 /// any value in the corresponding element of the result.
1102 class ShuffleVectorSDNode : public SDNode {
1103   SDUse Ops[2];
1104
1105   // The memory for Mask is owned by the SelectionDAG's OperandAllocator, and
1106   // is freed when the SelectionDAG object is destroyed.
1107   const int *Mask;
1108 protected:
1109   friend class SelectionDAG;
1110   ShuffleVectorSDNode(EVT VT, DebugLoc dl, SDValue N1, SDValue N2, 
1111                       const int *M)
1112     : SDNode(ISD::VECTOR_SHUFFLE, dl, getSDVTList(VT)), Mask(M) {
1113     InitOperands(Ops, N1, N2);
1114   }
1115 public:
1116
1117   void getMask(SmallVectorImpl<int> &M) const {
1118     EVT VT = getValueType(0);
1119     M.clear();
1120     for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
1121       M.push_back(Mask[i]);
1122   }
1123   int getMaskElt(unsigned Idx) const {
1124     assert(Idx < getValueType(0).getVectorNumElements() && "Idx out of range!");
1125     return Mask[Idx];
1126   }
1127   
1128   bool isSplat() const { return isSplatMask(Mask, getValueType(0)); }
1129   int  getSplatIndex() const { 
1130     assert(isSplat() && "Cannot get splat index for non-splat!");
1131     EVT VT = getValueType(0);
1132     for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
1133       if (Mask[i] != -1)
1134         return Mask[i];
1135     }
1136     return -1;
1137   }
1138   static bool isSplatMask(const int *Mask, EVT VT);
1139
1140   static bool classof(const ShuffleVectorSDNode *) { return true; }
1141   static bool classof(const SDNode *N) {
1142     return N->getOpcode() == ISD::VECTOR_SHUFFLE;
1143   }
1144 };
1145   
1146 class ConstantSDNode : public SDNode {
1147   const ConstantInt *Value;
1148   friend class SelectionDAG;
1149   ConstantSDNode(bool isTarget, const ConstantInt *val, EVT VT)
1150     : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant,
1151              DebugLoc(), getSDVTList(VT)), Value(val) {
1152   }
1153 public:
1154
1155   const ConstantInt *getConstantIntValue() const { return Value; }
1156   const APInt &getAPIntValue() const { return Value->getValue(); }
1157   uint64_t getZExtValue() const { return Value->getZExtValue(); }
1158   int64_t getSExtValue() const { return Value->getSExtValue(); }
1159
1160   bool isOne() const { return Value->isOne(); }
1161   bool isNullValue() const { return Value->isNullValue(); }
1162   bool isAllOnesValue() const { return Value->isAllOnesValue(); }
1163
1164   static bool classof(const ConstantSDNode *) { return true; }
1165   static bool classof(const SDNode *N) {
1166     return N->getOpcode() == ISD::Constant ||
1167            N->getOpcode() == ISD::TargetConstant;
1168   }
1169 };
1170
1171 class ConstantFPSDNode : public SDNode {
1172   const ConstantFP *Value;
1173   friend class SelectionDAG;
1174   ConstantFPSDNode(bool isTarget, const ConstantFP *val, EVT VT)
1175     : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP,
1176              DebugLoc(), getSDVTList(VT)), Value(val) {
1177   }
1178 public:
1179
1180   const APFloat& getValueAPF() const { return Value->getValueAPF(); }
1181   const ConstantFP *getConstantFPValue() const { return Value; }
1182
1183   /// isZero - Return true if the value is positive or negative zero.
1184   bool isZero() const { return Value->isZero(); }
1185
1186   /// isNaN - Return true if the value is a NaN.
1187   bool isNaN() const { return Value->isNaN(); }
1188
1189   /// isExactlyValue - We don't rely on operator== working on double values, as
1190   /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
1191   /// As such, this method can be used to do an exact bit-for-bit comparison of
1192   /// two floating point values.
1193
1194   /// We leave the version with the double argument here because it's just so
1195   /// convenient to write "2.0" and the like.  Without this function we'd
1196   /// have to duplicate its logic everywhere it's called.
1197   bool isExactlyValue(double V) const {
1198     bool ignored;
1199     // convert is not supported on this type
1200     if (&Value->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
1201       return false;
1202     APFloat Tmp(V);
1203     Tmp.convert(Value->getValueAPF().getSemantics(),
1204                 APFloat::rmNearestTiesToEven, &ignored);
1205     return isExactlyValue(Tmp);
1206   }
1207   bool isExactlyValue(const APFloat& V) const;
1208
1209   static bool isValueValidForType(EVT VT, const APFloat& Val);
1210
1211   static bool classof(const ConstantFPSDNode *) { return true; }
1212   static bool classof(const SDNode *N) {
1213     return N->getOpcode() == ISD::ConstantFP ||
1214            N->getOpcode() == ISD::TargetConstantFP;
1215   }
1216 };
1217
1218 class GlobalAddressSDNode : public SDNode {
1219   const GlobalValue *TheGlobal;
1220   int64_t Offset;
1221   unsigned char TargetFlags;
1222   friend class SelectionDAG;
1223   GlobalAddressSDNode(unsigned Opc, DebugLoc DL, const GlobalValue *GA, EVT VT,
1224                       int64_t o, unsigned char TargetFlags);
1225 public:
1226
1227   const GlobalValue *getGlobal() const { return TheGlobal; }
1228   int64_t getOffset() const { return Offset; }
1229   unsigned char getTargetFlags() const { return TargetFlags; }
1230   // Return the address space this GlobalAddress belongs to.
1231   unsigned getAddressSpace() const;
1232
1233   static bool classof(const GlobalAddressSDNode *) { return true; }
1234   static bool classof(const SDNode *N) {
1235     return N->getOpcode() == ISD::GlobalAddress ||
1236            N->getOpcode() == ISD::TargetGlobalAddress ||
1237            N->getOpcode() == ISD::GlobalTLSAddress ||
1238            N->getOpcode() == ISD::TargetGlobalTLSAddress;
1239   }
1240 };
1241
1242 class FrameIndexSDNode : public SDNode {
1243   int FI;
1244   friend class SelectionDAG;
1245   FrameIndexSDNode(int fi, EVT VT, bool isTarg)
1246     : SDNode(isTarg ? ISD::TargetFrameIndex : ISD::FrameIndex,
1247       DebugLoc(), getSDVTList(VT)), FI(fi) {
1248   }
1249 public:
1250
1251   int getIndex() const { return FI; }
1252
1253   static bool classof(const FrameIndexSDNode *) { return true; }
1254   static bool classof(const SDNode *N) {
1255     return N->getOpcode() == ISD::FrameIndex ||
1256            N->getOpcode() == ISD::TargetFrameIndex;
1257   }
1258 };
1259
1260 class JumpTableSDNode : public SDNode {
1261   int JTI;
1262   unsigned char TargetFlags;
1263   friend class SelectionDAG;
1264   JumpTableSDNode(int jti, EVT VT, bool isTarg, unsigned char TF)
1265     : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable,
1266       DebugLoc(), getSDVTList(VT)), JTI(jti), TargetFlags(TF) {
1267   }
1268 public:
1269
1270   int getIndex() const { return JTI; }
1271   unsigned char getTargetFlags() const { return TargetFlags; }
1272
1273   static bool classof(const JumpTableSDNode *) { return true; }
1274   static bool classof(const SDNode *N) {
1275     return N->getOpcode() == ISD::JumpTable ||
1276            N->getOpcode() == ISD::TargetJumpTable;
1277   }
1278 };
1279
1280 class ConstantPoolSDNode : public SDNode {
1281   union {
1282     const Constant *ConstVal;
1283     MachineConstantPoolValue *MachineCPVal;
1284   } Val;
1285   int Offset;  // It's a MachineConstantPoolValue if top bit is set.
1286   unsigned Alignment;  // Minimum alignment requirement of CP (not log2 value).
1287   unsigned char TargetFlags;
1288   friend class SelectionDAG;
1289   ConstantPoolSDNode(bool isTarget, const Constant *c, EVT VT, int o,
1290                      unsigned Align, unsigned char TF)
1291     : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1292              DebugLoc(),
1293              getSDVTList(VT)), Offset(o), Alignment(Align), TargetFlags(TF) {
1294     assert((int)Offset >= 0 && "Offset is too large");
1295     Val.ConstVal = c;
1296   }
1297   ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v,
1298                      EVT VT, int o, unsigned Align, unsigned char TF)
1299     : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1300              DebugLoc(),
1301              getSDVTList(VT)), Offset(o), Alignment(Align), TargetFlags(TF) {
1302     assert((int)Offset >= 0 && "Offset is too large");
1303     Val.MachineCPVal = v;
1304     Offset |= 1 << (sizeof(unsigned)*CHAR_BIT-1);
1305   }
1306 public:
1307   
1308
1309   bool isMachineConstantPoolEntry() const {
1310     return (int)Offset < 0;
1311   }
1312
1313   const Constant *getConstVal() const {
1314     assert(!isMachineConstantPoolEntry() && "Wrong constantpool type");
1315     return Val.ConstVal;
1316   }
1317
1318   MachineConstantPoolValue *getMachineCPVal() const {
1319     assert(isMachineConstantPoolEntry() && "Wrong constantpool type");
1320     return Val.MachineCPVal;
1321   }
1322
1323   int getOffset() const {
1324     return Offset & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
1325   }
1326
1327   // Return the alignment of this constant pool object, which is either 0 (for
1328   // default alignment) or the desired value.
1329   unsigned getAlignment() const { return Alignment; }
1330   unsigned char getTargetFlags() const { return TargetFlags; }
1331
1332   Type *getType() const;
1333
1334   static bool classof(const ConstantPoolSDNode *) { return true; }
1335   static bool classof(const SDNode *N) {
1336     return N->getOpcode() == ISD::ConstantPool ||
1337            N->getOpcode() == ISD::TargetConstantPool;
1338   }
1339 };
1340
1341 class BasicBlockSDNode : public SDNode {
1342   MachineBasicBlock *MBB;
1343   friend class SelectionDAG;
1344   /// Debug info is meaningful and potentially useful here, but we create
1345   /// blocks out of order when they're jumped to, which makes it a bit
1346   /// harder.  Let's see if we need it first.
1347   explicit BasicBlockSDNode(MachineBasicBlock *mbb)
1348     : SDNode(ISD::BasicBlock, DebugLoc(), getSDVTList(MVT::Other)), MBB(mbb) {
1349   }
1350 public:
1351
1352   MachineBasicBlock *getBasicBlock() const { return MBB; }
1353
1354   static bool classof(const BasicBlockSDNode *) { return true; }
1355   static bool classof(const SDNode *N) {
1356     return N->getOpcode() == ISD::BasicBlock;
1357   }
1358 };
1359
1360 /// BuildVectorSDNode - A "pseudo-class" with methods for operating on
1361 /// BUILD_VECTORs.
1362 class BuildVectorSDNode : public SDNode {
1363   // These are constructed as SDNodes and then cast to BuildVectorSDNodes.
1364   explicit BuildVectorSDNode();        // Do not implement
1365 public:
1366   /// isConstantSplat - Check if this is a constant splat, and if so, find the
1367   /// smallest element size that splats the vector.  If MinSplatBits is
1368   /// nonzero, the element size must be at least that large.  Note that the
1369   /// splat element may be the entire vector (i.e., a one element vector).
1370   /// Returns the splat element value in SplatValue.  Any undefined bits in
1371   /// that value are zero, and the corresponding bits in the SplatUndef mask
1372   /// are set.  The SplatBitSize value is set to the splat element size in
1373   /// bits.  HasAnyUndefs is set to true if any bits in the vector are
1374   /// undefined.  isBigEndian describes the endianness of the target.
1375   bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
1376                        unsigned &SplatBitSize, bool &HasAnyUndefs,
1377                        unsigned MinSplatBits = 0, bool isBigEndian = false);
1378
1379   static inline bool classof(const BuildVectorSDNode *) { return true; }
1380   static inline bool classof(const SDNode *N) {
1381     return N->getOpcode() == ISD::BUILD_VECTOR;
1382   }
1383 };
1384
1385 /// SrcValueSDNode - An SDNode that holds an arbitrary LLVM IR Value. This is
1386 /// used when the SelectionDAG needs to make a simple reference to something
1387 /// in the LLVM IR representation.
1388 ///
1389 class SrcValueSDNode : public SDNode {
1390   const Value *V;
1391   friend class SelectionDAG;
1392   /// Create a SrcValue for a general value.
1393   explicit SrcValueSDNode(const Value *v)
1394     : SDNode(ISD::SRCVALUE, DebugLoc(), getSDVTList(MVT::Other)), V(v) {}
1395
1396 public:
1397   /// getValue - return the contained Value.
1398   const Value *getValue() const { return V; }
1399
1400   static bool classof(const SrcValueSDNode *) { return true; }
1401   static bool classof(const SDNode *N) {
1402     return N->getOpcode() == ISD::SRCVALUE;
1403   }
1404 };
1405   
1406 class MDNodeSDNode : public SDNode {
1407   const MDNode *MD;
1408   friend class SelectionDAG;
1409   explicit MDNodeSDNode(const MDNode *md)
1410   : SDNode(ISD::MDNODE_SDNODE, DebugLoc(), getSDVTList(MVT::Other)), MD(md) {}
1411 public:
1412   
1413   const MDNode *getMD() const { return MD; }
1414   
1415   static bool classof(const MDNodeSDNode *) { return true; }
1416   static bool classof(const SDNode *N) {
1417     return N->getOpcode() == ISD::MDNODE_SDNODE;
1418   }
1419 };
1420
1421
1422 class RegisterSDNode : public SDNode {
1423   unsigned Reg;
1424   friend class SelectionDAG;
1425   RegisterSDNode(unsigned reg, EVT VT)
1426     : SDNode(ISD::Register, DebugLoc(), getSDVTList(VT)), Reg(reg) {
1427   }
1428 public:
1429
1430   unsigned getReg() const { return Reg; }
1431
1432   static bool classof(const RegisterSDNode *) { return true; }
1433   static bool classof(const SDNode *N) {
1434     return N->getOpcode() == ISD::Register;
1435   }
1436 };
1437
1438 class BlockAddressSDNode : public SDNode {
1439   const BlockAddress *BA;
1440   unsigned char TargetFlags;
1441   friend class SelectionDAG;
1442   BlockAddressSDNode(unsigned NodeTy, EVT VT, const BlockAddress *ba,
1443                      unsigned char Flags)
1444     : SDNode(NodeTy, DebugLoc(), getSDVTList(VT)),
1445              BA(ba), TargetFlags(Flags) {
1446   }
1447 public:
1448   const BlockAddress *getBlockAddress() const { return BA; }
1449   unsigned char getTargetFlags() const { return TargetFlags; }
1450
1451   static bool classof(const BlockAddressSDNode *) { return true; }
1452   static bool classof(const SDNode *N) {
1453     return N->getOpcode() == ISD::BlockAddress ||
1454            N->getOpcode() == ISD::TargetBlockAddress;
1455   }
1456 };
1457
1458 class EHLabelSDNode : public SDNode {
1459   SDUse Chain;
1460   MCSymbol *Label;
1461   friend class SelectionDAG;
1462   EHLabelSDNode(DebugLoc dl, SDValue ch, MCSymbol *L)
1463     : SDNode(ISD::EH_LABEL, dl, getSDVTList(MVT::Other)), Label(L) {
1464     InitOperands(&Chain, ch);
1465   }
1466 public:
1467   MCSymbol *getLabel() const { return Label; }
1468
1469   static bool classof(const EHLabelSDNode *) { return true; }
1470   static bool classof(const SDNode *N) {
1471     return N->getOpcode() == ISD::EH_LABEL;
1472   }
1473 };
1474
1475 class ExternalSymbolSDNode : public SDNode {
1476   const char *Symbol;
1477   unsigned char TargetFlags;
1478   
1479   friend class SelectionDAG;
1480   ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned char TF, EVT VT)
1481     : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol,
1482              DebugLoc(), getSDVTList(VT)), Symbol(Sym), TargetFlags(TF) {
1483   }
1484 public:
1485
1486   const char *getSymbol() const { return Symbol; }
1487   unsigned char getTargetFlags() const { return TargetFlags; }
1488
1489   static bool classof(const ExternalSymbolSDNode *) { return true; }
1490   static bool classof(const SDNode *N) {
1491     return N->getOpcode() == ISD::ExternalSymbol ||
1492            N->getOpcode() == ISD::TargetExternalSymbol;
1493   }
1494 };
1495
1496 class CondCodeSDNode : public SDNode {
1497   ISD::CondCode Condition;
1498   friend class SelectionDAG;
1499   explicit CondCodeSDNode(ISD::CondCode Cond)
1500     : SDNode(ISD::CONDCODE, DebugLoc(), getSDVTList(MVT::Other)),
1501       Condition(Cond) {
1502   }
1503 public:
1504
1505   ISD::CondCode get() const { return Condition; }
1506
1507   static bool classof(const CondCodeSDNode *) { return true; }
1508   static bool classof(const SDNode *N) {
1509     return N->getOpcode() == ISD::CONDCODE;
1510   }
1511 };
1512   
1513 /// CvtRndSatSDNode - NOTE: avoid using this node as this may disappear in the
1514 /// future and most targets don't support it.
1515 class CvtRndSatSDNode : public SDNode {
1516   ISD::CvtCode CvtCode;
1517   friend class SelectionDAG;
1518   explicit CvtRndSatSDNode(EVT VT, DebugLoc dl, const SDValue *Ops,
1519                            unsigned NumOps, ISD::CvtCode Code)
1520     : SDNode(ISD::CONVERT_RNDSAT, dl, getSDVTList(VT), Ops, NumOps),
1521       CvtCode(Code) {
1522     assert(NumOps == 5 && "wrong number of operations");
1523   }
1524 public:
1525   ISD::CvtCode getCvtCode() const { return CvtCode; }
1526
1527   static bool classof(const CvtRndSatSDNode *) { return true; }
1528   static bool classof(const SDNode *N) {
1529     return N->getOpcode() == ISD::CONVERT_RNDSAT;
1530   }
1531 };
1532
1533 /// VTSDNode - This class is used to represent EVT's, which are used
1534 /// to parameterize some operations.
1535 class VTSDNode : public SDNode {
1536   EVT ValueType;
1537   friend class SelectionDAG;
1538   explicit VTSDNode(EVT VT)
1539     : SDNode(ISD::VALUETYPE, DebugLoc(), getSDVTList(MVT::Other)),
1540       ValueType(VT) {
1541   }
1542 public:
1543
1544   EVT getVT() const { return ValueType; }
1545
1546   static bool classof(const VTSDNode *) { return true; }
1547   static bool classof(const SDNode *N) {
1548     return N->getOpcode() == ISD::VALUETYPE;
1549   }
1550 };
1551
1552 /// LSBaseSDNode - Base class for LoadSDNode and StoreSDNode
1553 ///
1554 class LSBaseSDNode : public MemSDNode {
1555   //! Operand array for load and store
1556   /*!
1557     \note Moving this array to the base class captures more
1558     common functionality shared between LoadSDNode and
1559     StoreSDNode
1560    */
1561   SDUse Ops[4];
1562 public:
1563   LSBaseSDNode(ISD::NodeType NodeTy, DebugLoc dl, SDValue *Operands,
1564                unsigned numOperands, SDVTList VTs, ISD::MemIndexedMode AM,
1565                EVT MemVT, MachineMemOperand *MMO)
1566     : MemSDNode(NodeTy, dl, VTs, MemVT, MMO) {
1567     SubclassData |= AM << 2;
1568     assert(getAddressingMode() == AM && "MemIndexedMode encoding error!");
1569     InitOperands(Ops, Operands, numOperands);
1570     assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
1571            "Only indexed loads and stores have a non-undef offset operand");
1572   }
1573
1574   const SDValue &getOffset() const {
1575     return getOperand(getOpcode() == ISD::LOAD ? 2 : 3);
1576   }
1577
1578   /// getAddressingMode - Return the addressing mode for this load or store:
1579   /// unindexed, pre-inc, pre-dec, post-inc, or post-dec.
1580   ISD::MemIndexedMode getAddressingMode() const {
1581     return ISD::MemIndexedMode((SubclassData >> 2) & 7);
1582   }
1583
1584   /// isIndexed - Return true if this is a pre/post inc/dec load/store.
1585   bool isIndexed() const { return getAddressingMode() != ISD::UNINDEXED; }
1586
1587   /// isUnindexed - Return true if this is NOT a pre/post inc/dec load/store.
1588   bool isUnindexed() const { return getAddressingMode() == ISD::UNINDEXED; }
1589
1590   static bool classof(const LSBaseSDNode *) { return true; }
1591   static bool classof(const SDNode *N) {
1592     return N->getOpcode() == ISD::LOAD ||
1593            N->getOpcode() == ISD::STORE;
1594   }
1595 };
1596
1597 /// LoadSDNode - This class is used to represent ISD::LOAD nodes.
1598 ///
1599 class LoadSDNode : public LSBaseSDNode {
1600   friend class SelectionDAG;
1601   LoadSDNode(SDValue *ChainPtrOff, DebugLoc dl, SDVTList VTs,
1602              ISD::MemIndexedMode AM, ISD::LoadExtType ETy, EVT MemVT,
1603              MachineMemOperand *MMO)
1604     : LSBaseSDNode(ISD::LOAD, dl, ChainPtrOff, 3,
1605                    VTs, AM, MemVT, MMO) {
1606     SubclassData |= (unsigned short)ETy;
1607     assert(getExtensionType() == ETy && "LoadExtType encoding error!");
1608     assert(readMem() && "Load MachineMemOperand is not a load!");
1609     assert(!writeMem() && "Load MachineMemOperand is a store!");
1610   }
1611 public:
1612
1613   /// getExtensionType - Return whether this is a plain node,
1614   /// or one of the varieties of value-extending loads.
1615   ISD::LoadExtType getExtensionType() const {
1616     return ISD::LoadExtType(SubclassData & 3);
1617   }
1618
1619   const SDValue &getBasePtr() const { return getOperand(1); }
1620   const SDValue &getOffset() const { return getOperand(2); }
1621
1622   static bool classof(const LoadSDNode *) { return true; }
1623   static bool classof(const SDNode *N) {
1624     return N->getOpcode() == ISD::LOAD;
1625   }
1626 };
1627
1628 /// StoreSDNode - This class is used to represent ISD::STORE nodes.
1629 ///
1630 class StoreSDNode : public LSBaseSDNode {
1631   friend class SelectionDAG;
1632   StoreSDNode(SDValue *ChainValuePtrOff, DebugLoc dl, SDVTList VTs,
1633               ISD::MemIndexedMode AM, bool isTrunc, EVT MemVT,
1634               MachineMemOperand *MMO)
1635     : LSBaseSDNode(ISD::STORE, dl, ChainValuePtrOff, 4,
1636                    VTs, AM, MemVT, MMO) {
1637     SubclassData |= (unsigned short)isTrunc;
1638     assert(isTruncatingStore() == isTrunc && "isTrunc encoding error!");
1639     assert(!readMem() && "Store MachineMemOperand is a load!");
1640     assert(writeMem() && "Store MachineMemOperand is not a store!");
1641   }
1642 public:
1643
1644   /// isTruncatingStore - Return true if the op does a truncation before store.
1645   /// For integers this is the same as doing a TRUNCATE and storing the result.
1646   /// For floats, it is the same as doing an FP_ROUND and storing the result.
1647   bool isTruncatingStore() const { return SubclassData & 1; }
1648
1649   const SDValue &getValue() const { return getOperand(1); }
1650   const SDValue &getBasePtr() const { return getOperand(2); }
1651   const SDValue &getOffset() const { return getOperand(3); }
1652
1653   static bool classof(const StoreSDNode *) { return true; }
1654   static bool classof(const SDNode *N) {
1655     return N->getOpcode() == ISD::STORE;
1656   }
1657 };
1658
1659 /// MachineSDNode - An SDNode that represents everything that will be needed
1660 /// to construct a MachineInstr. These nodes are created during the
1661 /// instruction selection proper phase.
1662 ///
1663 class MachineSDNode : public SDNode {
1664 public:
1665   typedef MachineMemOperand **mmo_iterator;
1666
1667 private:
1668   friend class SelectionDAG;
1669   MachineSDNode(unsigned Opc, const DebugLoc DL, SDVTList VTs)
1670     : SDNode(Opc, DL, VTs), MemRefs(0), MemRefsEnd(0) {}
1671
1672   /// LocalOperands - Operands for this instruction, if they fit here. If
1673   /// they don't, this field is unused.
1674   SDUse LocalOperands[4];
1675
1676   /// MemRefs - Memory reference descriptions for this instruction.
1677   mmo_iterator MemRefs;
1678   mmo_iterator MemRefsEnd;
1679
1680 public:
1681   mmo_iterator memoperands_begin() const { return MemRefs; }
1682   mmo_iterator memoperands_end() const { return MemRefsEnd; }
1683   bool memoperands_empty() const { return MemRefsEnd == MemRefs; }
1684
1685   /// setMemRefs - Assign this MachineSDNodes's memory reference descriptor
1686   /// list. This does not transfer ownership.
1687   void setMemRefs(mmo_iterator NewMemRefs, mmo_iterator NewMemRefsEnd) {
1688     for (mmo_iterator MMI = NewMemRefs, MME = NewMemRefsEnd; MMI != MME; ++MMI)
1689       assert(*MMI && "Null mem ref detected!");
1690     MemRefs = NewMemRefs;
1691     MemRefsEnd = NewMemRefsEnd;
1692   }
1693
1694   static bool classof(const MachineSDNode *) { return true; }
1695   static bool classof(const SDNode *N) {
1696     return N->isMachineOpcode();
1697   }
1698 };
1699
1700 class SDNodeIterator : public std::iterator<std::forward_iterator_tag,
1701                                             SDNode, ptrdiff_t> {
1702   SDNode *Node;
1703   unsigned Operand;
1704
1705   SDNodeIterator(SDNode *N, unsigned Op) : Node(N), Operand(Op) {}
1706 public:
1707   bool operator==(const SDNodeIterator& x) const {
1708     return Operand == x.Operand;
1709   }
1710   bool operator!=(const SDNodeIterator& x) const { return !operator==(x); }
1711
1712   const SDNodeIterator &operator=(const SDNodeIterator &I) {
1713     assert(I.Node == Node && "Cannot assign iterators to two different nodes!");
1714     Operand = I.Operand;
1715     return *this;
1716   }
1717
1718   pointer operator*() const {
1719     return Node->getOperand(Operand).getNode();
1720   }
1721   pointer operator->() const { return operator*(); }
1722
1723   SDNodeIterator& operator++() {                // Preincrement
1724     ++Operand;
1725     return *this;
1726   }
1727   SDNodeIterator operator++(int) { // Postincrement
1728     SDNodeIterator tmp = *this; ++*this; return tmp;
1729   }
1730   size_t operator-(SDNodeIterator Other) const {
1731     assert(Node == Other.Node &&
1732            "Cannot compare iterators of two different nodes!");
1733     return Operand - Other.Operand;
1734   }
1735
1736   static SDNodeIterator begin(SDNode *N) { return SDNodeIterator(N, 0); }
1737   static SDNodeIterator end  (SDNode *N) {
1738     return SDNodeIterator(N, N->getNumOperands());
1739   }
1740
1741   unsigned getOperand() const { return Operand; }
1742   const SDNode *getNode() const { return Node; }
1743 };
1744
1745 template <> struct GraphTraits<SDNode*> {
1746   typedef SDNode NodeType;
1747   typedef SDNodeIterator ChildIteratorType;
1748   static inline NodeType *getEntryNode(SDNode *N) { return N; }
1749   static inline ChildIteratorType child_begin(NodeType *N) {
1750     return SDNodeIterator::begin(N);
1751   }
1752   static inline ChildIteratorType child_end(NodeType *N) {
1753     return SDNodeIterator::end(N);
1754   }
1755 };
1756
1757 /// LargestSDNode - The largest SDNode class.
1758 ///
1759 typedef LoadSDNode LargestSDNode;
1760
1761 /// MostAlignedSDNode - The SDNode class with the greatest alignment
1762 /// requirement.
1763 ///
1764 typedef GlobalAddressSDNode MostAlignedSDNode;
1765
1766 namespace ISD {
1767   /// isNormalLoad - Returns true if the specified node is a non-extending
1768   /// and unindexed load.
1769   inline bool isNormalLoad(const SDNode *N) {
1770     const LoadSDNode *Ld = dyn_cast<LoadSDNode>(N);
1771     return Ld && Ld->getExtensionType() == ISD::NON_EXTLOAD &&
1772       Ld->getAddressingMode() == ISD::UNINDEXED;
1773   }
1774
1775   /// isNON_EXTLoad - Returns true if the specified node is a non-extending
1776   /// load.
1777   inline bool isNON_EXTLoad(const SDNode *N) {
1778     return isa<LoadSDNode>(N) &&
1779       cast<LoadSDNode>(N)->getExtensionType() == ISD::NON_EXTLOAD;
1780   }
1781
1782   /// isEXTLoad - Returns true if the specified node is a EXTLOAD.
1783   ///
1784   inline bool isEXTLoad(const SDNode *N) {
1785     return isa<LoadSDNode>(N) &&
1786       cast<LoadSDNode>(N)->getExtensionType() == ISD::EXTLOAD;
1787   }
1788
1789   /// isSEXTLoad - Returns true if the specified node is a SEXTLOAD.
1790   ///
1791   inline bool isSEXTLoad(const SDNode *N) {
1792     return isa<LoadSDNode>(N) &&
1793       cast<LoadSDNode>(N)->getExtensionType() == ISD::SEXTLOAD;
1794   }
1795
1796   /// isZEXTLoad - Returns true if the specified node is a ZEXTLOAD.
1797   ///
1798   inline bool isZEXTLoad(const SDNode *N) {
1799     return isa<LoadSDNode>(N) &&
1800       cast<LoadSDNode>(N)->getExtensionType() == ISD::ZEXTLOAD;
1801   }
1802
1803   /// isUNINDEXEDLoad - Returns true if the specified node is an unindexed load.
1804   ///
1805   inline bool isUNINDEXEDLoad(const SDNode *N) {
1806     return isa<LoadSDNode>(N) &&
1807       cast<LoadSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
1808   }
1809
1810   /// isNormalStore - Returns true if the specified node is a non-truncating
1811   /// and unindexed store.
1812   inline bool isNormalStore(const SDNode *N) {
1813     const StoreSDNode *St = dyn_cast<StoreSDNode>(N);
1814     return St && !St->isTruncatingStore() &&
1815       St->getAddressingMode() == ISD::UNINDEXED;
1816   }
1817
1818   /// isNON_TRUNCStore - Returns true if the specified node is a non-truncating
1819   /// store.
1820   inline bool isNON_TRUNCStore(const SDNode *N) {
1821     return isa<StoreSDNode>(N) && !cast<StoreSDNode>(N)->isTruncatingStore();
1822   }
1823
1824   /// isTRUNCStore - Returns true if the specified node is a truncating
1825   /// store.
1826   inline bool isTRUNCStore(const SDNode *N) {
1827     return isa<StoreSDNode>(N) && cast<StoreSDNode>(N)->isTruncatingStore();
1828   }
1829
1830   /// isUNINDEXEDStore - Returns true if the specified node is an
1831   /// unindexed store.
1832   inline bool isUNINDEXEDStore(const SDNode *N) {
1833     return isa<StoreSDNode>(N) &&
1834       cast<StoreSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
1835   }
1836 }
1837
1838 } // end llvm namespace
1839
1840 #endif