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