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