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