509564baca8d0d8a697f33e6fdefda990ed89d98
[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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source 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/CodeGen/ValueTypes.h"
23 #include "llvm/Value.h"
24 #include "llvm/ADT/GraphTraits.h"
25 #include "llvm/ADT/iterator"
26 #include "llvm/Support/DataTypes.h"
27 #include <cassert>
28 #include <vector>
29
30 namespace llvm {
31
32 class SelectionDAG;
33 class GlobalValue;
34 class MachineBasicBlock;
35 class SDNode;
36 template <typename T> struct simplify_type;
37 template <typename T> struct ilist_traits;
38 template<typename NodeTy, typename Traits> class iplist;
39 template<typename NodeTy> class ilist_iterator;
40
41 /// ISD namespace - This namespace contains an enum which represents all of the
42 /// SelectionDAG node types and value types.
43 ///
44 namespace ISD {
45   //===--------------------------------------------------------------------===//
46   /// ISD::NodeType enum - This enum defines all of the operators valid in a
47   /// SelectionDAG.
48   ///
49   enum NodeType {
50     // DELETED_NODE - This is an illegal flag value that is used to catch
51     // errors.  This opcode is not a legal opcode for any node.
52     DELETED_NODE,
53     
54     // EntryToken - This is the marker used to indicate the start of the region.
55     EntryToken,
56
57     // Token factor - This node takes multiple tokens as input and produces a
58     // single token result.  This is used to represent the fact that the operand
59     // operators are independent of each other.
60     TokenFactor,
61     
62     // AssertSext, AssertZext - These nodes record if a register contains a 
63     // value that has already been zero or sign extended from a narrower type.  
64     // These nodes take two operands.  The first is the node that has already 
65     // been extended, and the second is a value type node indicating the width
66     // of the extension
67     AssertSext, AssertZext,
68
69     // Various leaf nodes.
70     STRING, BasicBlock, VALUETYPE, CONDCODE, Register,
71     Constant, ConstantFP,
72     GlobalAddress, FrameIndex, JumpTable, ConstantPool, ExternalSymbol,
73
74     // TargetConstant* - Like Constant*, but the DAG does not do any folding or
75     // simplification of the constant.
76     TargetConstant,
77     TargetConstantFP,
78     
79     // TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or
80     // anything else with this node, and this is valid in the target-specific
81     // dag, turning into a GlobalAddress operand.
82     TargetGlobalAddress,
83     TargetFrameIndex,
84     TargetJumpTable,
85     TargetConstantPool,
86     TargetExternalSymbol,
87     
88     /// RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...)
89     /// This node represents a target intrinsic function with no side effects.
90     /// The first operand is the ID number of the intrinsic from the
91     /// llvm::Intrinsic namespace.  The operands to the intrinsic follow.  The
92     /// node has returns the result of the intrinsic.
93     INTRINSIC_WO_CHAIN,
94     
95     /// RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...)
96     /// This node represents a target intrinsic function with side effects that
97     /// returns a result.  The first operand is a chain pointer.  The second is
98     /// the ID number of the intrinsic from the llvm::Intrinsic namespace.  The
99     /// operands to the intrinsic follow.  The node has two results, the result
100     /// of the intrinsic and an output chain.
101     INTRINSIC_W_CHAIN,
102
103     /// OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...)
104     /// This node represents a target intrinsic function with side effects that
105     /// does not return a result.  The first operand is a chain pointer.  The
106     /// second is the ID number of the intrinsic from the llvm::Intrinsic
107     /// namespace.  The operands to the intrinsic follow.
108     INTRINSIC_VOID,
109     
110     // CopyToReg - This node has three operands: a chain, a register number to
111     // set to this value, and a value.  
112     CopyToReg,
113
114     // CopyFromReg - This node indicates that the input value is a virtual or
115     // physical register that is defined outside of the scope of this
116     // SelectionDAG.  The register is available from the RegSDNode object.
117     CopyFromReg,
118
119     // UNDEF - An undefined node
120     UNDEF,
121     
122     /// FORMAL_ARGUMENTS(CHAIN, CC#, ISVARARG) - This node represents the formal
123     /// arguments for a function.  CC# is a Constant value indicating the
124     /// calling convention of the function, and ISVARARG is a flag that
125     /// indicates whether the function is varargs or not.  This node has one
126     /// result value for each incoming argument, plus one for the output chain.
127     /// It must be custom legalized.
128     /// 
129     FORMAL_ARGUMENTS,
130     
131     /// RV1, RV2...RVn, CHAIN = CALL(CHAIN, CC#, ISVARARG, ISTAILCALL, CALLEE,
132     ///                              ARG0, SIGN0, ARG1, SIGN1, ... ARGn, SIGNn)
133     /// This node represents a fully general function call, before the legalizer
134     /// runs.  This has one result value for each argument / signness pair, plus
135     /// a chain result. It must be custom legalized.
136     CALL,
137
138     // EXTRACT_ELEMENT - This is used to get the first or second (determined by
139     // a Constant, which is required to be operand #1), element of the aggregate
140     // value specified as operand #0.  This is only for use before legalization,
141     // for values that will be broken into multiple registers.
142     EXTRACT_ELEMENT,
143
144     // BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.  Given
145     // two values of the same integer value type, this produces a value twice as
146     // big.  Like EXTRACT_ELEMENT, this can only be used before legalization.
147     BUILD_PAIR,
148     
149     // MERGE_VALUES - This node takes multiple discrete operands and returns
150     // them all as its individual results.  This nodes has exactly the same
151     // number of inputs and outputs, and is only valid before legalization.
152     // This node is useful for some pieces of the code generator that want to
153     // think about a single node with multiple results, not multiple nodes.
154     MERGE_VALUES,
155
156     // Simple integer binary arithmetic operators.
157     ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
158     
159     // Carry-setting nodes for multiple precision addition and subtraction.
160     // These nodes take two operands of the same value type, and produce two
161     // results.  The first result is the normal add or sub result, the second
162     // result is the carry flag result.
163     ADDC, SUBC,
164     
165     // Carry-using nodes for multiple precision addition and subtraction.  These
166     // nodes take three operands: The first two are the normal lhs and rhs to
167     // the add or sub, and the third is the input carry flag.  These nodes
168     // produce two results; the normal result of the add or sub, and the output
169     // carry flag.  These nodes both read and write a carry flag to allow them
170     // to them to be chained together for add and sub of arbitrarily large
171     // values.
172     ADDE, SUBE,
173     
174     // Simple binary floating point operators.
175     FADD, FSUB, FMUL, FDIV, FREM,
176
177     // FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.  NOTE: This
178     // DAG node does not require that X and Y have the same type, just that they
179     // are both floating point.  X and the result must have the same type.
180     // FCOPYSIGN(f32, f64) is allowed.
181     FCOPYSIGN,
182
183     /// VBUILD_VECTOR(ELT1, ELT2, ELT3, ELT4,...,  COUNT,TYPE) - Return a vector
184     /// with the specified, possibly variable, elements.  The number of elements
185     /// is required to be a power of two.
186     VBUILD_VECTOR,
187
188     /// BUILD_VECTOR(ELT1, ELT2, ELT3, ELT4,...) - Return a vector
189     /// with the specified, possibly variable, elements.  The number of elements
190     /// is required to be a power of two.
191     BUILD_VECTOR,
192     
193     /// VINSERT_VECTOR_ELT(VECTOR, VAL, IDX,  COUNT,TYPE) - Given a vector
194     /// VECTOR, an element ELEMENT, and a (potentially variable) index IDX,
195     /// return an vector with the specified element of VECTOR replaced with VAL.
196     /// COUNT and TYPE specify the type of vector, as is standard for V* nodes.
197     VINSERT_VECTOR_ELT,
198     
199     /// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR (a legal packed
200     /// type) with the element at IDX replaced with VAL.
201     INSERT_VECTOR_ELT,
202
203     /// VEXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
204     /// (an MVT::Vector value) identified by the (potentially variable) element
205     /// number IDX.
206     VEXTRACT_VECTOR_ELT,
207     
208     /// EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
209     /// (a legal packed type vector) identified by the (potentially variable)
210     /// element number IDX.
211     EXTRACT_VECTOR_ELT,
212     
213     /// VVECTOR_SHUFFLE(VEC1, VEC2, SHUFFLEVEC, COUNT,TYPE) - Returns a vector,
214     /// of the same type as VEC1/VEC2.  SHUFFLEVEC is a VBUILD_VECTOR of
215     /// constant int values that indicate which value each result element will
216     /// get.  The elements of VEC1/VEC2 are enumerated in order.  This is quite
217     /// similar to the Altivec 'vperm' instruction, except that the indices must
218     /// be constants and are in terms of the element size of VEC1/VEC2, not in
219     /// terms of bytes.
220     VVECTOR_SHUFFLE,
221
222     /// VECTOR_SHUFFLE(VEC1, VEC2, SHUFFLEVEC) - Returns a vector, of the same
223     /// type as VEC1/VEC2.  SHUFFLEVEC is a BUILD_VECTOR of constant int values
224     /// (regardless of whether its datatype is legal or not) that indicate
225     /// which value each result element will get.  The elements of VEC1/VEC2 are
226     /// enumerated in order.  This is quite similar to the Altivec 'vperm'
227     /// instruction, except that the indices must be constants and are in terms
228     /// of the element size of VEC1/VEC2, not in terms of bytes.
229     VECTOR_SHUFFLE,
230     
231     /// X = VBIT_CONVERT(Y)  and X = VBIT_CONVERT(Y, COUNT,TYPE) - This node
232     /// represents a conversion from or to an ISD::Vector type.
233     ///
234     /// This is lowered to a BIT_CONVERT of the appropriate input/output types.
235     /// The input and output are required to have the same size and at least one
236     /// is required to be a vector (if neither is a vector, just use
237     /// BIT_CONVERT).
238     ///
239     /// If the result is a vector, this takes three operands (like any other
240     /// vector producer) which indicate the size and type of the vector result.
241     /// Otherwise it takes one input.
242     VBIT_CONVERT,
243     
244     /// BINOP(LHS, RHS,  COUNT,TYPE)
245     /// Simple abstract vector operators.  Unlike the integer and floating point
246     /// binary operators, these nodes also take two additional operands:
247     /// a constant element count, and a value type node indicating the type of
248     /// the elements.  The order is count, type, op0, op1.  All vector opcodes,
249     /// including VLOAD and VConstant must currently have count and type as
250     /// their last two operands.
251     VADD, VSUB, VMUL, VSDIV, VUDIV,
252     VAND, VOR, VXOR,
253     
254     /// VSELECT(COND,LHS,RHS,  COUNT,TYPE) - Select for MVT::Vector values.
255     /// COND is a boolean value.  This node return LHS if COND is true, RHS if
256     /// COND is false.
257     VSELECT,
258     
259     /// SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a
260     /// scalar value into the low element of the resultant vector type.  The top
261     /// elements of the vector are undefined.
262     SCALAR_TO_VECTOR,
263     
264     // MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
265     // an unsigned/signed value of type i[2*n], then return the top part.
266     MULHU, MULHS,
267
268     // Bitwise operators - logical and, logical or, logical xor, shift left,
269     // shift right algebraic (shift in sign bits), shift right logical (shift in
270     // zeroes), rotate left, rotate right, and byteswap.
271     AND, OR, XOR, SHL, SRA, SRL, ROTL, ROTR, BSWAP,
272
273     // Counting operators
274     CTTZ, CTLZ, CTPOP,
275
276     // Select(COND, TRUEVAL, FALSEVAL)
277     SELECT, 
278     
279     // Select with condition operator - This selects between a true value and 
280     // a false value (ops #2 and #3) based on the boolean result of comparing
281     // the lhs and rhs (ops #0 and #1) of a conditional expression with the 
282     // condition code in op #4, a CondCodeSDNode.
283     SELECT_CC,
284
285     // SetCC operator - This evaluates to a boolean (i1) true value if the
286     // condition is true.  The operands to this are the left and right operands
287     // to compare (ops #0, and #1) and the condition code to compare them with
288     // (op #2) as a CondCodeSDNode.
289     SETCC,
290
291     // SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
292     // integer shift operations, just like ADD/SUB_PARTS.  The operation
293     // ordering is:
294     //       [Lo,Hi] = op [LoLHS,HiLHS], Amt
295     SHL_PARTS, SRA_PARTS, SRL_PARTS,
296
297     // Conversion operators.  These are all single input single output
298     // operations.  For all of these, the result type must be strictly
299     // wider or narrower (depending on the operation) than the source
300     // type.
301
302     // SIGN_EXTEND - Used for integer types, replicating the sign bit
303     // into new bits.
304     SIGN_EXTEND,
305
306     // ZERO_EXTEND - Used for integer types, zeroing the new bits.
307     ZERO_EXTEND,
308
309     // ANY_EXTEND - Used for integer types.  The high bits are undefined.
310     ANY_EXTEND,
311     
312     // TRUNCATE - Completely drop the high bits.
313     TRUNCATE,
314
315     // [SU]INT_TO_FP - These operators convert integers (whose interpreted sign
316     // depends on the first letter) to floating point.
317     SINT_TO_FP,
318     UINT_TO_FP,
319
320     // SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to
321     // sign extend a small value in a large integer register (e.g. sign
322     // extending the low 8 bits of a 32-bit register to fill the top 24 bits
323     // with the 7th bit).  The size of the smaller type is indicated by the 1th
324     // operand, a ValueType node.
325     SIGN_EXTEND_INREG,
326
327     // FP_TO_[US]INT - Convert a floating point value to a signed or unsigned
328     // integer.
329     FP_TO_SINT,
330     FP_TO_UINT,
331
332     // FP_ROUND - Perform a rounding operation from the current
333     // precision down to the specified precision (currently always 64->32).
334     FP_ROUND,
335
336     // FP_ROUND_INREG - This operator takes a floating point register, and
337     // rounds it to a floating point value.  It then promotes it and returns it
338     // in a register of the same size.  This operation effectively just discards
339     // excess precision.  The type to round down to is specified by the 1th
340     // operation, a VTSDNode (currently always 64->32->64).
341     FP_ROUND_INREG,
342
343     // FP_EXTEND - Extend a smaller FP type into a larger FP type.
344     FP_EXTEND,
345
346     // BIT_CONVERT - Theis operator converts between integer and FP values, as
347     // if one was stored to memory as integer and the other was loaded from the
348     // same address (or equivalently for vector format conversions, etc).  The 
349     // source and result are required to have the same bit size (e.g. 
350     // f32 <-> i32).  This can also be used for int-to-int or fp-to-fp 
351     // conversions, but that is a noop, deleted by getNode().
352     BIT_CONVERT,
353     
354     // FNEG, FABS, FSQRT, FSIN, FCOS - Perform unary floating point negation,
355     // absolute value, square root, sine and cosine operations.
356     FNEG, FABS, FSQRT, FSIN, FCOS,
357     
358     // Other operators.  LOAD and STORE have token chains as their first
359     // operand, then the same operands as an LLVM load/store instruction, then a
360     // SRCVALUE node that provides alias analysis information.
361     LOAD, STORE,
362     
363     // Abstract vector version of LOAD.  VLOAD has a constant element count as
364     // the first operand, followed by a value type node indicating the type of
365     // the elements, a token chain, a pointer operand, and a SRCVALUE node.
366     VLOAD,
367
368     // EXTLOAD, SEXTLOAD, ZEXTLOAD - These three operators all load a value from
369     // memory and extend them to a larger value (e.g. load a byte into a word
370     // register).  All three of these have four operands, a token chain, a
371     // pointer to load from, a SRCVALUE for alias analysis, and a VALUETYPE node
372     // indicating the type to load.
373     //
374     // SEXTLOAD loads the integer operand and sign extends it to a larger
375     //          integer result type.
376     // ZEXTLOAD loads the integer operand and zero extends it to a larger
377     //          integer result type.
378     // EXTLOAD  is used for three things: floating point extending loads, 
379     //          integer extending loads [the top bits are undefined], and vector
380     //          extending loads [load into low elt].
381     EXTLOAD, SEXTLOAD, ZEXTLOAD,
382
383     // TRUNCSTORE - This operators truncates (for integer) or rounds (for FP) a
384     // value and stores it to memory in one operation.  This can be used for
385     // either integer or floating point operands.  The first four operands of
386     // this are the same as a standard store.  The fifth is the ValueType to
387     // store it as (which will be smaller than the source value).
388     TRUNCSTORE,
389
390     // DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
391     // to a specified boundary.  The first operand is the token chain, the
392     // second is the number of bytes to allocate, and the third is the alignment
393     // boundary.  The size is guaranteed to be a multiple of the stack 
394     // alignment, and the alignment is guaranteed to be bigger than the stack 
395     // alignment (if required) or 0 to get standard stack alignment.
396     DYNAMIC_STACKALLOC,
397
398     // Control flow instructions.  These all have token chains.
399
400     // BR - Unconditional branch.  The first operand is the chain
401     // operand, the second is the MBB to branch to.
402     BR,
403
404     // BRIND - Indirect branch.  The first operand is the chain, the second
405     // is the value to branch to, which must be of the same type as the target's
406     // pointer type.
407     BRIND,
408     
409     // BRCOND - Conditional branch.  The first operand is the chain,
410     // the second is the condition, the third is the block to branch
411     // to if the condition is true.
412     BRCOND,
413
414     // BR_CC - Conditional branch.  The behavior is like that of SELECT_CC, in
415     // that the condition is represented as condition code, and two nodes to
416     // compare, rather than as a combined SetCC node.  The operands in order are
417     // chain, cc, lhs, rhs, block to branch to if condition is true.
418     BR_CC,
419     
420     // RET - Return from function.  The first operand is the chain,
421     // and any subsequent operands are pairs of return value and return value
422     // signness for the function.  This operation can have variable number of
423     // operands.
424     RET,
425
426     // INLINEASM - Represents an inline asm block.  This node always has two
427     // return values: a chain and a flag result.  The inputs are as follows:
428     //   Operand #0   : Input chain.
429     //   Operand #1   : a ExternalSymbolSDNode with a pointer to the asm string.
430     //   Operand #2n+2: A RegisterNode.
431     //   Operand #2n+3: A TargetConstant, indicating if the reg is a use/def
432     //   Operand #last: Optional, an incoming flag.
433     INLINEASM,
434
435     // STACKSAVE - STACKSAVE has one operand, an input chain.  It produces a
436     // value, the same type as the pointer type for the system, and an output
437     // chain.
438     STACKSAVE,
439     
440     // STACKRESTORE has two operands, an input chain and a pointer to restore to
441     // it returns an output chain.
442     STACKRESTORE,
443     
444     // MEMSET/MEMCPY/MEMMOVE - The first operand is the chain, and the rest
445     // correspond to the operands of the LLVM intrinsic functions.  The only
446     // result is a token chain.  The alignment argument is guaranteed to be a
447     // Constant node.
448     MEMSET,
449     MEMMOVE,
450     MEMCPY,
451
452     // CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of
453     // a call sequence, and carry arbitrary information that target might want
454     // to know.  The first operand is a chain, the rest are specified by the
455     // target and not touched by the DAG optimizers.
456     CALLSEQ_START,  // Beginning of a call sequence
457     CALLSEQ_END,    // End of a call sequence
458     
459     // VAARG - VAARG has three operands: an input chain, a pointer, and a 
460     // SRCVALUE.  It returns a pair of values: the vaarg value and a new chain.
461     VAARG,
462     
463     // VACOPY - VACOPY has five operands: an input chain, a destination pointer,
464     // a source pointer, a SRCVALUE for the destination, and a SRCVALUE for the
465     // source.
466     VACOPY,
467     
468     // VAEND, VASTART - VAEND and VASTART have three operands: an input chain, a
469     // pointer, and a SRCVALUE.
470     VAEND, VASTART,
471
472     // SRCVALUE - This corresponds to a Value*, and is used to associate memory
473     // locations with their value.  This allows one use alias analysis
474     // information in the backend.
475     SRCVALUE,
476
477     // PCMARKER - This corresponds to the pcmarker intrinsic.
478     PCMARKER,
479
480     // READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
481     // The only operand is a chain and a value and a chain are produced.  The
482     // value is the contents of the architecture specific cycle counter like 
483     // register (or other high accuracy low latency clock source)
484     READCYCLECOUNTER,
485
486     // HANDLENODE node - Used as a handle for various purposes.
487     HANDLENODE,
488
489     // LOCATION - This node is used to represent a source location for debug
490     // info.  It takes token chain as input, then a line number, then a column
491     // number, then a filename, then a working dir.  It produces a token chain
492     // as output.
493     LOCATION,
494     
495     // DEBUG_LOC - This node is used to represent source line information
496     // embedded in the code.  It takes a token chain as input, then a line
497     // number, then a column then a file id (provided by MachineDebugInfo.) It
498     // produces a token chain as output.
499     DEBUG_LOC,
500     
501     // DEBUG_LABEL - This node is used to mark a location in the code where a
502     // label should be generated for use by the debug information.  It takes a
503     // token chain as input and then a unique id (provided by MachineDebugInfo.)
504     // It produces a token chain as output.
505     DEBUG_LABEL,
506     
507     // BUILTIN_OP_END - This must be the last enum value in this list.
508     BUILTIN_OP_END
509   };
510
511   /// Node predicates
512
513   /// isBuildVectorAllOnes - Return true if the specified node is a
514   /// BUILD_VECTOR where all of the elements are ~0 or undef.
515   bool isBuildVectorAllOnes(const SDNode *N);
516
517   /// isBuildVectorAllZeros - Return true if the specified node is a
518   /// BUILD_VECTOR where all of the elements are 0 or undef.
519   bool isBuildVectorAllZeros(const SDNode *N);
520   
521   //===--------------------------------------------------------------------===//
522   /// ISD::CondCode enum - These are ordered carefully to make the bitfields
523   /// below work out, when considering SETFALSE (something that never exists
524   /// dynamically) as 0.  "U" -> Unsigned (for integer operands) or Unordered
525   /// (for floating point), "L" -> Less than, "G" -> Greater than, "E" -> Equal
526   /// to.  If the "N" column is 1, the result of the comparison is undefined if
527   /// the input is a NAN.
528   ///
529   /// All of these (except for the 'always folded ops') should be handled for
530   /// floating point.  For integer, only the SETEQ,SETNE,SETLT,SETLE,SETGT,
531   /// SETGE,SETULT,SETULE,SETUGT, and SETUGE opcodes are used.
532   ///
533   /// Note that these are laid out in a specific order to allow bit-twiddling
534   /// to transform conditions.
535   enum CondCode {
536     // Opcode          N U L G E       Intuitive operation
537     SETFALSE,      //    0 0 0 0       Always false (always folded)
538     SETOEQ,        //    0 0 0 1       True if ordered and equal
539     SETOGT,        //    0 0 1 0       True if ordered and greater than
540     SETOGE,        //    0 0 1 1       True if ordered and greater than or equal
541     SETOLT,        //    0 1 0 0       True if ordered and less than
542     SETOLE,        //    0 1 0 1       True if ordered and less than or equal
543     SETONE,        //    0 1 1 0       True if ordered and operands are unequal
544     SETO,          //    0 1 1 1       True if ordered (no nans)
545     SETUO,         //    1 0 0 0       True if unordered: isnan(X) | isnan(Y)
546     SETUEQ,        //    1 0 0 1       True if unordered or equal
547     SETUGT,        //    1 0 1 0       True if unordered or greater than
548     SETUGE,        //    1 0 1 1       True if unordered, greater than, or equal
549     SETULT,        //    1 1 0 0       True if unordered or less than
550     SETULE,        //    1 1 0 1       True if unordered, less than, or equal
551     SETUNE,        //    1 1 1 0       True if unordered or not equal
552     SETTRUE,       //    1 1 1 1       Always true (always folded)
553     // Don't care operations: undefined if the input is a nan.
554     SETFALSE2,     //  1 X 0 0 0       Always false (always folded)
555     SETEQ,         //  1 X 0 0 1       True if equal
556     SETGT,         //  1 X 0 1 0       True if greater than
557     SETGE,         //  1 X 0 1 1       True if greater than or equal
558     SETLT,         //  1 X 1 0 0       True if less than
559     SETLE,         //  1 X 1 0 1       True if less than or equal
560     SETNE,         //  1 X 1 1 0       True if not equal
561     SETTRUE2,      //  1 X 1 1 1       Always true (always folded)
562
563     SETCC_INVALID       // Marker value.
564   };
565
566   /// isSignedIntSetCC - Return true if this is a setcc instruction that
567   /// performs a signed comparison when used with integer operands.
568   inline bool isSignedIntSetCC(CondCode Code) {
569     return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
570   }
571
572   /// isUnsignedIntSetCC - Return true if this is a setcc instruction that
573   /// performs an unsigned comparison when used with integer operands.
574   inline bool isUnsignedIntSetCC(CondCode Code) {
575     return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE;
576   }
577
578   /// isTrueWhenEqual - Return true if the specified condition returns true if
579   /// the two operands to the condition are equal.  Note that if one of the two
580   /// operands is a NaN, this value is meaningless.
581   inline bool isTrueWhenEqual(CondCode Cond) {
582     return ((int)Cond & 1) != 0;
583   }
584
585   /// getUnorderedFlavor - This function returns 0 if the condition is always
586   /// false if an operand is a NaN, 1 if the condition is always true if the
587   /// operand is a NaN, and 2 if the condition is undefined if the operand is a
588   /// NaN.
589   inline unsigned getUnorderedFlavor(CondCode Cond) {
590     return ((int)Cond >> 3) & 3;
591   }
592
593   /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
594   /// 'op' is a valid SetCC operation.
595   CondCode getSetCCInverse(CondCode Operation, bool isInteger);
596
597   /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
598   /// when given the operation for (X op Y).
599   CondCode getSetCCSwappedOperands(CondCode Operation);
600
601   /// getSetCCOrOperation - Return the result of a logical OR between different
602   /// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This
603   /// function returns SETCC_INVALID if it is not possible to represent the
604   /// resultant comparison.
605   CondCode getSetCCOrOperation(CondCode Op1, CondCode Op2, bool isInteger);
606
607   /// getSetCCAndOperation - Return the result of a logical AND between
608   /// different comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
609   /// function returns SETCC_INVALID if it is not possible to represent the
610   /// resultant comparison.
611   CondCode getSetCCAndOperation(CondCode Op1, CondCode Op2, bool isInteger);
612 }  // end llvm::ISD namespace
613
614
615 //===----------------------------------------------------------------------===//
616 /// SDOperand - Unlike LLVM values, Selection DAG nodes may return multiple
617 /// values as the result of a computation.  Many nodes return multiple values,
618 /// from loads (which define a token and a return value) to ADDC (which returns
619 /// a result and a carry value), to calls (which may return an arbitrary number
620 /// of values).
621 ///
622 /// As such, each use of a SelectionDAG computation must indicate the node that
623 /// computes it as well as which return value to use from that node.  This pair
624 /// of information is represented with the SDOperand value type.
625 ///
626 class SDOperand {
627 public:
628   SDNode *Val;        // The node defining the value we are using.
629   unsigned ResNo;     // Which return value of the node we are using.
630
631   SDOperand() : Val(0), ResNo(0) {}
632   SDOperand(SDNode *val, unsigned resno) : Val(val), ResNo(resno) {}
633
634   bool operator==(const SDOperand &O) const {
635     return Val == O.Val && ResNo == O.ResNo;
636   }
637   bool operator!=(const SDOperand &O) const {
638     return !operator==(O);
639   }
640   bool operator<(const SDOperand &O) const {
641     return Val < O.Val || (Val == O.Val && ResNo < O.ResNo);
642   }
643
644   SDOperand getValue(unsigned R) const {
645     return SDOperand(Val, R);
646   }
647
648   // isOperand - Return true if this node is an operand of N.
649   bool isOperand(SDNode *N) const;
650
651   /// getValueType - Return the ValueType of the referenced return value.
652   ///
653   inline MVT::ValueType getValueType() const;
654
655   // Forwarding methods - These forward to the corresponding methods in SDNode.
656   inline unsigned getOpcode() const;
657   inline unsigned getNumOperands() const;
658   inline const SDOperand &getOperand(unsigned i) const;
659   inline bool isTargetOpcode() const;
660   inline unsigned getTargetOpcode() const;
661
662   /// hasOneUse - Return true if there is exactly one operation using this
663   /// result value of the defining operator.
664   inline bool hasOneUse() const;
665 };
666
667
668 /// simplify_type specializations - Allow casting operators to work directly on
669 /// SDOperands as if they were SDNode*'s.
670 template<> struct simplify_type<SDOperand> {
671   typedef SDNode* SimpleType;
672   static SimpleType getSimplifiedValue(const SDOperand &Val) {
673     return static_cast<SimpleType>(Val.Val);
674   }
675 };
676 template<> struct simplify_type<const SDOperand> {
677   typedef SDNode* SimpleType;
678   static SimpleType getSimplifiedValue(const SDOperand &Val) {
679     return static_cast<SimpleType>(Val.Val);
680   }
681 };
682
683
684 /// SDNode - Represents one node in the SelectionDAG.
685 ///
686 class SDNode {
687   /// NodeType - The operation that this node performs.
688   ///
689   unsigned short NodeType;
690
691   /// NodeId - Unique id per SDNode in the DAG.
692   int NodeId;
693
694   /// OperandList - The values that are used by this operation.
695   ///
696   SDOperand *OperandList;
697   
698   /// ValueList - The types of the values this node defines.  SDNode's may
699   /// define multiple values simultaneously.
700   MVT::ValueType *ValueList;
701
702   /// NumOperands/NumValues - The number of entries in the Operand/Value list.
703   unsigned short NumOperands, NumValues;
704   
705   /// Prev/Next pointers - These pointers form the linked list of of the
706   /// AllNodes list in the current DAG.
707   SDNode *Prev, *Next;
708   friend struct ilist_traits<SDNode>;
709
710   /// Uses - These are all of the SDNode's that use a value produced by this
711   /// node.
712   std::vector<SDNode*> Uses;
713   
714   // Out-of-line virtual method to give class a home.
715   virtual void ANCHOR();
716 public:
717   virtual ~SDNode() {
718     assert(NumOperands == 0 && "Operand list not cleared before deletion");
719     NodeType = ISD::DELETED_NODE;
720   }
721   
722   //===--------------------------------------------------------------------===//
723   //  Accessors
724   //
725   unsigned getOpcode()  const { return NodeType; }
726   bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; }
727   unsigned getTargetOpcode() const {
728     assert(isTargetOpcode() && "Not a target opcode!");
729     return NodeType - ISD::BUILTIN_OP_END;
730   }
731
732   size_t use_size() const { return Uses.size(); }
733   bool use_empty() const { return Uses.empty(); }
734   bool hasOneUse() const { return Uses.size() == 1; }
735
736   /// getNodeId - Return the unique node id.
737   ///
738   int getNodeId() const { return NodeId; }
739
740   typedef std::vector<SDNode*>::const_iterator use_iterator;
741   use_iterator use_begin() const { return Uses.begin(); }
742   use_iterator use_end() const { return Uses.end(); }
743
744   /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
745   /// indicated value.  This method ignores uses of other values defined by this
746   /// operation.
747   bool hasNUsesOfValue(unsigned NUses, unsigned Value) const;
748
749   // isOnlyUse - Return true if this node is the only use of N.
750   bool isOnlyUse(SDNode *N) const;
751
752   // isOperand - Return true if this node is an operand of N.
753   bool isOperand(SDNode *N) const;
754
755   /// getNumOperands - Return the number of values used by this operation.
756   ///
757   unsigned getNumOperands() const { return NumOperands; }
758
759   const SDOperand &getOperand(unsigned Num) const {
760     assert(Num < NumOperands && "Invalid child # of SDNode!");
761     return OperandList[Num];
762   }
763   typedef const SDOperand* op_iterator;
764   op_iterator op_begin() const { return OperandList; }
765   op_iterator op_end() const { return OperandList+NumOperands; }
766
767
768   /// getNumValues - Return the number of values defined/returned by this
769   /// operator.
770   ///
771   unsigned getNumValues() const { return NumValues; }
772
773   /// getValueType - Return the type of a specified result.
774   ///
775   MVT::ValueType getValueType(unsigned ResNo) const {
776     assert(ResNo < NumValues && "Illegal result number!");
777     return ValueList[ResNo];
778   }
779
780   typedef const MVT::ValueType* value_iterator;
781   value_iterator value_begin() const { return ValueList; }
782   value_iterator value_end() const { return ValueList+NumValues; }
783
784   /// getOperationName - Return the opcode of this operation for printing.
785   ///
786   const char* getOperationName(const SelectionDAG *G = 0) const;
787   void dump() const;
788   void dump(const SelectionDAG *G) const;
789
790   static bool classof(const SDNode *) { return true; }
791
792 protected:
793   friend class SelectionDAG;
794   
795   /// getValueTypeList - Return a pointer to the specified value type.
796   ///
797   static MVT::ValueType *getValueTypeList(MVT::ValueType VT);
798
799   SDNode(unsigned NT, MVT::ValueType VT) : NodeType(NT), NodeId(-1) {
800     OperandList = 0; NumOperands = 0;
801     ValueList = getValueTypeList(VT);
802     NumValues = 1;
803     Prev = 0; Next = 0;
804   }
805   SDNode(unsigned NT, SDOperand Op)
806     : NodeType(NT), NodeId(-1) {
807     OperandList = new SDOperand[1];
808     OperandList[0] = Op;
809     NumOperands = 1;
810     Op.Val->Uses.push_back(this);
811     ValueList = 0;
812     NumValues = 0;
813     Prev = 0; Next = 0;
814   }
815   SDNode(unsigned NT, SDOperand N1, SDOperand N2)
816     : NodeType(NT), NodeId(-1) {
817     OperandList = new SDOperand[2];
818     OperandList[0] = N1;
819     OperandList[1] = N2;
820     NumOperands = 2;
821     N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this);
822     ValueList = 0;
823     NumValues = 0;
824     Prev = 0; Next = 0;
825   }
826   SDNode(unsigned NT, SDOperand N1, SDOperand N2, SDOperand N3)
827     : NodeType(NT), NodeId(-1) {
828     OperandList = new SDOperand[3];
829     OperandList[0] = N1;
830     OperandList[1] = N2;
831     OperandList[2] = N3;
832     NumOperands = 3;
833     
834     N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this);
835     N3.Val->Uses.push_back(this);
836     ValueList = 0;
837     NumValues = 0;
838     Prev = 0; Next = 0;
839   }
840   SDNode(unsigned NT, SDOperand N1, SDOperand N2, SDOperand N3, SDOperand N4)
841     : NodeType(NT), NodeId(-1) {
842     OperandList = new SDOperand[4];
843     OperandList[0] = N1;
844     OperandList[1] = N2;
845     OperandList[2] = N3;
846     OperandList[3] = N4;
847     NumOperands = 4;
848     
849     N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this);
850     N3.Val->Uses.push_back(this); N4.Val->Uses.push_back(this);
851     ValueList = 0;
852     NumValues = 0;
853     Prev = 0; Next = 0;
854   }
855   SDNode(unsigned Opc, const std::vector<SDOperand> &Nodes)
856     : NodeType(Opc), NodeId(-1) {
857     NumOperands = Nodes.size();
858     OperandList = new SDOperand[NumOperands];
859     
860     for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
861       OperandList[i] = Nodes[i];
862       SDNode *N = OperandList[i].Val;
863       N->Uses.push_back(this);
864     }
865     ValueList = 0;
866     NumValues = 0;
867     Prev = 0; Next = 0;
868   }
869
870   /// MorphNodeTo - This clears the return value and operands list, and sets the
871   /// opcode of the node to the specified value.  This should only be used by
872   /// the SelectionDAG class.
873   void MorphNodeTo(unsigned Opc) {
874     NodeType = Opc;
875     ValueList = 0;
876     NumValues = 0;
877     
878     // Clear the operands list, updating used nodes to remove this from their
879     // use list.
880     for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
881       I->Val->removeUser(this);
882     delete [] OperandList;
883     OperandList = 0;
884     NumOperands = 0;
885   }
886   
887   void setValueTypes(MVT::ValueType VT) {
888     assert(NumValues == 0 && "Should not have values yet!");
889     ValueList = getValueTypeList(VT);
890     NumValues = 1;
891   }
892   void setValueTypes(MVT::ValueType *List, unsigned NumVal) {
893     assert(NumValues == 0 && "Should not have values yet!");
894     ValueList = List;
895     NumValues = NumVal;
896   }
897   
898   void setOperands(SDOperand Op0) {
899     assert(NumOperands == 0 && "Should not have operands yet!");
900     OperandList = new SDOperand[1];
901     OperandList[0] = Op0;
902     NumOperands = 1;
903     Op0.Val->Uses.push_back(this);
904   }
905   void setOperands(SDOperand Op0, SDOperand Op1) {
906     assert(NumOperands == 0 && "Should not have operands yet!");
907     OperandList = new SDOperand[2];
908     OperandList[0] = Op0;
909     OperandList[1] = Op1;
910     NumOperands = 2;
911     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
912   }
913   void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2) {
914     assert(NumOperands == 0 && "Should not have operands yet!");
915     OperandList = new SDOperand[3];
916     OperandList[0] = Op0;
917     OperandList[1] = Op1;
918     OperandList[2] = Op2;
919     NumOperands = 3;
920     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
921     Op2.Val->Uses.push_back(this);
922   }
923   void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
924     assert(NumOperands == 0 && "Should not have operands yet!");
925     OperandList = new SDOperand[4];
926     OperandList[0] = Op0;
927     OperandList[1] = Op1;
928     OperandList[2] = Op2;
929     OperandList[3] = Op3;
930     NumOperands = 4;
931     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
932     Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
933   }
934   void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
935                    SDOperand Op4) {
936     assert(NumOperands == 0 && "Should not have operands yet!");
937     OperandList = new SDOperand[5];
938     OperandList[0] = Op0;
939     OperandList[1] = Op1;
940     OperandList[2] = Op2;
941     OperandList[3] = Op3;
942     OperandList[4] = Op4;
943     NumOperands = 5;
944     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
945     Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
946     Op4.Val->Uses.push_back(this);
947   }
948   void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
949                    SDOperand Op4, SDOperand Op5) {
950     assert(NumOperands == 0 && "Should not have operands yet!");
951     OperandList = new SDOperand[6];
952     OperandList[0] = Op0;
953     OperandList[1] = Op1;
954     OperandList[2] = Op2;
955     OperandList[3] = Op3;
956     OperandList[4] = Op4;
957     OperandList[5] = Op5;
958     NumOperands = 6;
959     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
960     Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
961     Op4.Val->Uses.push_back(this); Op5.Val->Uses.push_back(this);
962   }
963   void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
964                    SDOperand Op4, SDOperand Op5, SDOperand Op6) {
965     assert(NumOperands == 0 && "Should not have operands yet!");
966     OperandList = new SDOperand[7];
967     OperandList[0] = Op0;
968     OperandList[1] = Op1;
969     OperandList[2] = Op2;
970     OperandList[3] = Op3;
971     OperandList[4] = Op4;
972     OperandList[5] = Op5;
973     OperandList[6] = Op6;
974     NumOperands = 7;
975     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
976     Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
977     Op4.Val->Uses.push_back(this); Op5.Val->Uses.push_back(this);
978     Op6.Val->Uses.push_back(this);
979   }
980   void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
981                    SDOperand Op4, SDOperand Op5, SDOperand Op6, SDOperand Op7) {
982     assert(NumOperands == 0 && "Should not have operands yet!");
983     OperandList = new SDOperand[8];
984     OperandList[0] = Op0;
985     OperandList[1] = Op1;
986     OperandList[2] = Op2;
987     OperandList[3] = Op3;
988     OperandList[4] = Op4;
989     OperandList[5] = Op5;
990     OperandList[6] = Op6;
991     OperandList[7] = Op7;
992     NumOperands = 8;
993     Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
994     Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
995     Op4.Val->Uses.push_back(this); Op5.Val->Uses.push_back(this);
996     Op6.Val->Uses.push_back(this); Op7.Val->Uses.push_back(this);
997   }
998
999   void addUser(SDNode *User) {
1000     Uses.push_back(User);
1001   }
1002   void removeUser(SDNode *User) {
1003     // Remove this user from the operand's use list.
1004     for (unsigned i = Uses.size(); ; --i) {
1005       assert(i != 0 && "Didn't find user!");
1006       if (Uses[i-1] == User) {
1007         Uses[i-1] = Uses.back();
1008         Uses.pop_back();
1009         return;
1010       }
1011     }
1012   }
1013
1014   void setNodeId(int Id) {
1015     NodeId = Id;
1016   }
1017 };
1018
1019
1020 // Define inline functions from the SDOperand class.
1021
1022 inline unsigned SDOperand::getOpcode() const {
1023   return Val->getOpcode();
1024 }
1025 inline MVT::ValueType SDOperand::getValueType() const {
1026   return Val->getValueType(ResNo);
1027 }
1028 inline unsigned SDOperand::getNumOperands() const {
1029   return Val->getNumOperands();
1030 }
1031 inline const SDOperand &SDOperand::getOperand(unsigned i) const {
1032   return Val->getOperand(i);
1033 }
1034 inline bool SDOperand::isTargetOpcode() const {
1035   return Val->isTargetOpcode();
1036 }
1037 inline unsigned SDOperand::getTargetOpcode() const {
1038   return Val->getTargetOpcode();
1039 }
1040 inline bool SDOperand::hasOneUse() const {
1041   return Val->hasNUsesOfValue(1, ResNo);
1042 }
1043
1044 /// HandleSDNode - This class is used to form a handle around another node that
1045 /// is persistant and is updated across invocations of replaceAllUsesWith on its
1046 /// operand.  This node should be directly created by end-users and not added to
1047 /// the AllNodes list.
1048 class HandleSDNode : public SDNode {
1049 public:
1050   HandleSDNode(SDOperand X) : SDNode(ISD::HANDLENODE, X) {}
1051   ~HandleSDNode() {
1052     MorphNodeTo(ISD::HANDLENODE);  // Drops operand uses.
1053   }
1054   
1055   SDOperand getValue() const { return getOperand(0); }
1056 };
1057
1058 class StringSDNode : public SDNode {
1059   std::string Value;
1060 protected:
1061   friend class SelectionDAG;
1062   StringSDNode(const std::string &val)
1063     : SDNode(ISD::STRING, MVT::Other), Value(val) {
1064   }
1065 public:
1066   const std::string &getValue() const { return Value; }
1067   static bool classof(const StringSDNode *) { return true; }
1068   static bool classof(const SDNode *N) {
1069     return N->getOpcode() == ISD::STRING;
1070   }
1071 };  
1072
1073 class ConstantSDNode : public SDNode {
1074   uint64_t Value;
1075 protected:
1076   friend class SelectionDAG;
1077   ConstantSDNode(bool isTarget, uint64_t val, MVT::ValueType VT)
1078     : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, VT), Value(val) {
1079   }
1080 public:
1081
1082   uint64_t getValue() const { return Value; }
1083
1084   int64_t getSignExtended() const {
1085     unsigned Bits = MVT::getSizeInBits(getValueType(0));
1086     return ((int64_t)Value << (64-Bits)) >> (64-Bits);
1087   }
1088
1089   bool isNullValue() const { return Value == 0; }
1090   bool isAllOnesValue() const {
1091     return Value == MVT::getIntVTBitMask(getValueType(0));
1092   }
1093
1094   static bool classof(const ConstantSDNode *) { return true; }
1095   static bool classof(const SDNode *N) {
1096     return N->getOpcode() == ISD::Constant ||
1097            N->getOpcode() == ISD::TargetConstant;
1098   }
1099 };
1100
1101 class ConstantFPSDNode : public SDNode {
1102   double Value;
1103 protected:
1104   friend class SelectionDAG;
1105   ConstantFPSDNode(bool isTarget, double val, MVT::ValueType VT)
1106     : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP, VT), 
1107       Value(val) {
1108   }
1109 public:
1110
1111   double getValue() const { return Value; }
1112
1113   /// isExactlyValue - We don't rely on operator== working on double values, as
1114   /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
1115   /// As such, this method can be used to do an exact bit-for-bit comparison of
1116   /// two floating point values.
1117   bool isExactlyValue(double V) const;
1118
1119   static bool classof(const ConstantFPSDNode *) { return true; }
1120   static bool classof(const SDNode *N) {
1121     return N->getOpcode() == ISD::ConstantFP || 
1122            N->getOpcode() == ISD::TargetConstantFP;
1123   }
1124 };
1125
1126 class GlobalAddressSDNode : public SDNode {
1127   GlobalValue *TheGlobal;
1128   int Offset;
1129 protected:
1130   friend class SelectionDAG;
1131   GlobalAddressSDNode(bool isTarget, const GlobalValue *GA, MVT::ValueType VT,
1132                       int o=0)
1133     : SDNode(isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress, VT),
1134       Offset(o) {
1135     TheGlobal = const_cast<GlobalValue*>(GA);
1136   }
1137 public:
1138
1139   GlobalValue *getGlobal() const { return TheGlobal; }
1140   int getOffset() const { return Offset; }
1141
1142   static bool classof(const GlobalAddressSDNode *) { return true; }
1143   static bool classof(const SDNode *N) {
1144     return N->getOpcode() == ISD::GlobalAddress ||
1145            N->getOpcode() == ISD::TargetGlobalAddress;
1146   }
1147 };
1148
1149
1150 class FrameIndexSDNode : public SDNode {
1151   int FI;
1152 protected:
1153   friend class SelectionDAG;
1154   FrameIndexSDNode(int fi, MVT::ValueType VT, bool isTarg)
1155     : SDNode(isTarg ? ISD::TargetFrameIndex : ISD::FrameIndex, VT), FI(fi) {}
1156 public:
1157
1158   int getIndex() const { return FI; }
1159
1160   static bool classof(const FrameIndexSDNode *) { return true; }
1161   static bool classof(const SDNode *N) {
1162     return N->getOpcode() == ISD::FrameIndex ||
1163            N->getOpcode() == ISD::TargetFrameIndex;
1164   }
1165 };
1166
1167 class JumpTableSDNode : public SDNode {
1168   int JTI;
1169 protected:
1170   friend class SelectionDAG;
1171   JumpTableSDNode(int jti, MVT::ValueType VT, bool isTarg)
1172     : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable, VT), 
1173     JTI(jti) {}
1174 public:
1175     
1176     int getIndex() const { return JTI; }
1177   
1178   static bool classof(const JumpTableSDNode *) { return true; }
1179   static bool classof(const SDNode *N) {
1180     return N->getOpcode() == ISD::JumpTable ||
1181            N->getOpcode() == ISD::TargetJumpTable;
1182   }
1183 };
1184
1185 class ConstantPoolSDNode : public SDNode {
1186   Constant *C;
1187   int Offset;
1188   unsigned Alignment;
1189 protected:
1190   friend class SelectionDAG;
1191   ConstantPoolSDNode(bool isTarget, Constant *c, MVT::ValueType VT,
1192                      int o=0)
1193     : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, VT),
1194       C(c), Offset(o), Alignment(0) {}
1195   ConstantPoolSDNode(bool isTarget, Constant *c, MVT::ValueType VT, int o,
1196                      unsigned Align)
1197     : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, VT),
1198       C(c), Offset(o), Alignment(Align) {}
1199 public:
1200
1201   Constant *get() const { return C; }
1202   int getOffset() const { return Offset; }
1203   
1204   // Return the alignment of this constant pool object, which is either 0 (for
1205   // default alignment) or log2 of the desired value.
1206   unsigned getAlignment() const { return Alignment; }
1207
1208   static bool classof(const ConstantPoolSDNode *) { return true; }
1209   static bool classof(const SDNode *N) {
1210     return N->getOpcode() == ISD::ConstantPool ||
1211            N->getOpcode() == ISD::TargetConstantPool;
1212   }
1213 };
1214
1215 class BasicBlockSDNode : public SDNode {
1216   MachineBasicBlock *MBB;
1217 protected:
1218   friend class SelectionDAG;
1219   BasicBlockSDNode(MachineBasicBlock *mbb)
1220     : SDNode(ISD::BasicBlock, MVT::Other), MBB(mbb) {}
1221 public:
1222
1223   MachineBasicBlock *getBasicBlock() const { return MBB; }
1224
1225   static bool classof(const BasicBlockSDNode *) { return true; }
1226   static bool classof(const SDNode *N) {
1227     return N->getOpcode() == ISD::BasicBlock;
1228   }
1229 };
1230
1231 class SrcValueSDNode : public SDNode {
1232   const Value *V;
1233   int offset;
1234 protected:
1235   friend class SelectionDAG;
1236   SrcValueSDNode(const Value* v, int o)
1237     : SDNode(ISD::SRCVALUE, MVT::Other), V(v), offset(o) {}
1238
1239 public:
1240   const Value *getValue() const { return V; }
1241   int getOffset() const { return offset; }
1242
1243   static bool classof(const SrcValueSDNode *) { return true; }
1244   static bool classof(const SDNode *N) {
1245     return N->getOpcode() == ISD::SRCVALUE;
1246   }
1247 };
1248
1249
1250 class RegisterSDNode : public SDNode {
1251   unsigned Reg;
1252 protected:
1253   friend class SelectionDAG;
1254   RegisterSDNode(unsigned reg, MVT::ValueType VT)
1255     : SDNode(ISD::Register, VT), Reg(reg) {}
1256 public:
1257
1258   unsigned getReg() const { return Reg; }
1259
1260   static bool classof(const RegisterSDNode *) { return true; }
1261   static bool classof(const SDNode *N) {
1262     return N->getOpcode() == ISD::Register;
1263   }
1264 };
1265
1266 class ExternalSymbolSDNode : public SDNode {
1267   const char *Symbol;
1268 protected:
1269   friend class SelectionDAG;
1270   ExternalSymbolSDNode(bool isTarget, const char *Sym, MVT::ValueType VT)
1271     : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol, VT),
1272       Symbol(Sym) {
1273     }
1274 public:
1275
1276   const char *getSymbol() const { return Symbol; }
1277
1278   static bool classof(const ExternalSymbolSDNode *) { return true; }
1279   static bool classof(const SDNode *N) {
1280     return N->getOpcode() == ISD::ExternalSymbol ||
1281            N->getOpcode() == ISD::TargetExternalSymbol;
1282   }
1283 };
1284
1285 class CondCodeSDNode : public SDNode {
1286   ISD::CondCode Condition;
1287 protected:
1288   friend class SelectionDAG;
1289   CondCodeSDNode(ISD::CondCode Cond)
1290     : SDNode(ISD::CONDCODE, MVT::Other), Condition(Cond) {
1291   }
1292 public:
1293
1294   ISD::CondCode get() const { return Condition; }
1295
1296   static bool classof(const CondCodeSDNode *) { return true; }
1297   static bool classof(const SDNode *N) {
1298     return N->getOpcode() == ISD::CONDCODE;
1299   }
1300 };
1301
1302 /// VTSDNode - This class is used to represent MVT::ValueType's, which are used
1303 /// to parameterize some operations.
1304 class VTSDNode : public SDNode {
1305   MVT::ValueType ValueType;
1306 protected:
1307   friend class SelectionDAG;
1308   VTSDNode(MVT::ValueType VT)
1309     : SDNode(ISD::VALUETYPE, MVT::Other), ValueType(VT) {}
1310 public:
1311
1312   MVT::ValueType getVT() const { return ValueType; }
1313
1314   static bool classof(const VTSDNode *) { return true; }
1315   static bool classof(const SDNode *N) {
1316     return N->getOpcode() == ISD::VALUETYPE;
1317   }
1318 };
1319
1320
1321 class SDNodeIterator : public forward_iterator<SDNode, ptrdiff_t> {
1322   SDNode *Node;
1323   unsigned Operand;
1324
1325   SDNodeIterator(SDNode *N, unsigned Op) : Node(N), Operand(Op) {}
1326 public:
1327   bool operator==(const SDNodeIterator& x) const {
1328     return Operand == x.Operand;
1329   }
1330   bool operator!=(const SDNodeIterator& x) const { return !operator==(x); }
1331
1332   const SDNodeIterator &operator=(const SDNodeIterator &I) {
1333     assert(I.Node == Node && "Cannot assign iterators to two different nodes!");
1334     Operand = I.Operand;
1335     return *this;
1336   }
1337
1338   pointer operator*() const {
1339     return Node->getOperand(Operand).Val;
1340   }
1341   pointer operator->() const { return operator*(); }
1342
1343   SDNodeIterator& operator++() {                // Preincrement
1344     ++Operand;
1345     return *this;
1346   }
1347   SDNodeIterator operator++(int) { // Postincrement
1348     SDNodeIterator tmp = *this; ++*this; return tmp;
1349   }
1350
1351   static SDNodeIterator begin(SDNode *N) { return SDNodeIterator(N, 0); }
1352   static SDNodeIterator end  (SDNode *N) {
1353     return SDNodeIterator(N, N->getNumOperands());
1354   }
1355
1356   unsigned getOperand() const { return Operand; }
1357   const SDNode *getNode() const { return Node; }
1358 };
1359
1360 template <> struct GraphTraits<SDNode*> {
1361   typedef SDNode NodeType;
1362   typedef SDNodeIterator ChildIteratorType;
1363   static inline NodeType *getEntryNode(SDNode *N) { return N; }
1364   static inline ChildIteratorType child_begin(NodeType *N) {
1365     return SDNodeIterator::begin(N);
1366   }
1367   static inline ChildIteratorType child_end(NodeType *N) {
1368     return SDNodeIterator::end(N);
1369   }
1370 };
1371
1372 template<>
1373 struct ilist_traits<SDNode> {
1374   static SDNode *getPrev(const SDNode *N) { return N->Prev; }
1375   static SDNode *getNext(const SDNode *N) { return N->Next; }
1376   
1377   static void setPrev(SDNode *N, SDNode *Prev) { N->Prev = Prev; }
1378   static void setNext(SDNode *N, SDNode *Next) { N->Next = Next; }
1379   
1380   static SDNode *createSentinel() {
1381     return new SDNode(ISD::EntryToken, MVT::Other);
1382   }
1383   static void destroySentinel(SDNode *N) { delete N; }
1384   //static SDNode *createNode(const SDNode &V) { return new SDNode(V); }
1385   
1386   
1387   void addNodeToList(SDNode *NTy) {}
1388   void removeNodeFromList(SDNode *NTy) {}
1389   void transferNodesFromList(iplist<SDNode, ilist_traits> &L2,
1390                              const ilist_iterator<SDNode> &X,
1391                              const ilist_iterator<SDNode> &Y) {}
1392 };
1393
1394 } // end llvm namespace
1395
1396 #endif