blob: 80eaf4b25f52496f1120841361f9cb987ef60ed4 [file] [log] [blame]
Chris Lattner63b570d2005-01-07 07:45:27 +00001//===-- llvm/CodeGen/SelectionDAGNodes.h - SelectionDAG Nodes ---*- C++ -*-===//
Misha Brukmanea61c352005-04-21 20:39:54 +00002//
Chris Lattner63b570d2005-01-07 07:45:27 +00003// 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.
Misha Brukmanea61c352005-04-21 20:39:54 +00007//
Chris Lattner63b570d2005-01-07 07:45:27 +00008//===----------------------------------------------------------------------===//
Misha Brukmanea61c352005-04-21 20:39:54 +00009//
Chris Lattner63b570d2005-01-07 07:45:27 +000010// 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"
Andrew Lenharth2d86ea22005-04-27 20:10:01 +000023#include "llvm/Value.h"
Chris Lattner1080b9e2005-01-10 23:05:53 +000024#include "llvm/ADT/GraphTraits.h"
Chris Lattner1080b9e2005-01-10 23:05:53 +000025#include "llvm/ADT/iterator"
Jeff Cohen39931a32005-01-07 19:21:49 +000026#include "llvm/Support/DataTypes.h"
Chris Lattner63b570d2005-01-07 07:45:27 +000027#include <cassert>
28#include <vector>
29
30namespace llvm {
31
32class SelectionDAG;
33class GlobalValue;
34class MachineBasicBlock;
35class SDNode;
36template <typename T> struct simplify_type;
Chris Lattnerb80e2be2005-11-09 23:46:43 +000037template <typename T> struct ilist_traits;
38template<typename NodeTy, typename Traits> class iplist;
39template<typename NodeTy> class ilist_iterator;
Chris Lattner63b570d2005-01-07 07:45:27 +000040
41/// ISD namespace - This namespace contains an enum which represents all of the
42/// SelectionDAG node types and value types.
43///
44namespace ISD {
45 //===--------------------------------------------------------------------===//
46 /// ISD::NodeType enum - This enum defines all of the operators valid in a
47 /// SelectionDAG.
48 ///
49 enum NodeType {
Chris Lattner8a496fc2005-01-13 17:58:35 +000050 // EntryToken - This is the marker used to indicate the start of the region.
51 EntryToken,
52
Reid Spencer8c4bde32005-08-27 19:06:05 +000053 // Token factor - This node takes multiple tokens as input and produces a
Chris Lattner8a496fc2005-01-13 17:58:35 +000054 // single token result. This is used to represent the fact that the operand
55 // operators are independent of each other.
56 TokenFactor,
Nate Begemanf7f3d322005-08-30 02:39:32 +000057
58 // AssertSext, AssertZext - These nodes record if a register contains a
59 // value that has already been zero or sign extended from a narrower type.
60 // These nodes take two operands. The first is the node that has already
61 // been extended, and the second is a value type node indicating the width
62 // of the extension
63 AssertSext, AssertZext,
Misha Brukmanea61c352005-04-21 20:39:54 +000064
Chris Lattner8a496fc2005-01-13 17:58:35 +000065 // Various leaf nodes.
Evan Cheng1ab7d852006-03-01 00:51:13 +000066 STRING, BasicBlock, VALUETYPE, CONDCODE, Register,
67 Constant, ConstantFP,
Nate Begeman37efe672006-04-22 18:53:45 +000068 GlobalAddress, FrameIndex, JumpTable, ConstantPool, ExternalSymbol,
Evan Cheng1ab7d852006-03-01 00:51:13 +000069
Chris Lattnerac0d7232006-01-29 06:24:40 +000070 // TargetConstant* - Like Constant*, but the DAG does not do any folding or
71 // simplification of the constant.
Chris Lattner056f9f62005-08-17 00:33:30 +000072 TargetConstant,
Chris Lattnerac0d7232006-01-29 06:24:40 +000073 TargetConstantFP,
Chris Lattnerf6b18492005-08-19 22:31:34 +000074
75 // TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or
76 // anything else with this node, and this is valid in the target-specific
77 // dag, turning into a GlobalAddress operand.
78 TargetGlobalAddress,
Chris Lattnerafb2dd42005-08-25 00:43:01 +000079 TargetFrameIndex,
Nate Begeman37efe672006-04-22 18:53:45 +000080 TargetJumpTable,
Chris Lattneraaaaf792005-08-25 05:02:41 +000081 TargetConstantPool,
Andrew Lenharth2a2de662005-10-23 03:40:17 +000082 TargetExternalSymbol,
Chris Lattner72601ca2006-03-24 01:03:55 +000083
Chris Lattneref8ef912006-03-28 00:39:06 +000084 /// RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...)
85 /// This node represents a target intrinsic function with no side effects.
86 /// The first operand is the ID number of the intrinsic from the
87 /// llvm::Intrinsic namespace. The operands to the intrinsic follow. The
88 /// node has returns the result of the intrinsic.
89 INTRINSIC_WO_CHAIN,
90
91 /// RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...)
92 /// This node represents a target intrinsic function with side effects that
93 /// returns a result. The first operand is a chain pointer. The second is
94 /// the ID number of the intrinsic from the llvm::Intrinsic namespace. The
95 /// operands to the intrinsic follow. The node has two results, the result
96 /// of the intrinsic and an output chain.
97 INTRINSIC_W_CHAIN,
Chris Lattner63b570d2005-01-07 07:45:27 +000098
Chris Lattneref8ef912006-03-28 00:39:06 +000099 /// OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...)
100 /// This node represents a target intrinsic function with side effects that
101 /// does not return a result. The first operand is a chain pointer. The
102 /// second is the ID number of the intrinsic from the llvm::Intrinsic
103 /// namespace. The operands to the intrinsic follow.
104 INTRINSIC_VOID,
105
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000106 // CopyToReg - This node has three operands: a chain, a register number to
107 // set to this value, and a value.
Chris Lattner63b570d2005-01-07 07:45:27 +0000108 CopyToReg,
109
110 // CopyFromReg - This node indicates that the input value is a virtual or
111 // physical register that is defined outside of the scope of this
Chris Lattner18c2f132005-01-13 20:50:02 +0000112 // SelectionDAG. The register is available from the RegSDNode object.
Chris Lattner63b570d2005-01-07 07:45:27 +0000113 CopyFromReg,
114
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000115 // UNDEF - An undefined node
116 UNDEF,
Chris Lattner681ee1c2006-04-11 21:30:42 +0000117
Chris Lattnerc1a8ad72006-05-16 06:43:59 +0000118 /// FORMAL_ARGUMENTS(CHAIN, CC#, ISVARARG) - This node represents the formal
Chris Lattner681ee1c2006-04-11 21:30:42 +0000119 /// arguments for a function. CC# is a Constant value indicating the
120 /// calling convention of the function, and ISVARARG is a flag that
121 /// indicates whether the function is varargs or not. This node has one
Chris Lattnerc1a8ad72006-05-16 06:43:59 +0000122 /// result value for each incoming argument, plus one for the output chain.
123 /// It must be custom legalized.
124 ///
Chris Lattner681ee1c2006-04-11 21:30:42 +0000125 FORMAL_ARGUMENTS,
Chris Lattner6c0bfc72006-05-16 22:52:27 +0000126
127 /// RV1, RV2...RVn, CHAIN = CALL(CHAIN, CC#, ISVARARG, ISTAILCALL, CALLEE,
128 /// ARG0, ARG1, ... ARGn)
129 /// This node represents a fully general function call, before the legalizer
130 /// runs. This has one result value for each argument, plus a chain result.
131 /// It must be custom legalized.
132 CALL,
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000133
Chris Lattner63b570d2005-01-07 07:45:27 +0000134 // EXTRACT_ELEMENT - This is used to get the first or second (determined by
135 // a Constant, which is required to be operand #1), element of the aggregate
136 // value specified as operand #0. This is only for use before legalization,
137 // for values that will be broken into multiple registers.
138 EXTRACT_ELEMENT,
139
140 // BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways. Given
141 // two values of the same integer value type, this produces a value twice as
142 // big. Like EXTRACT_ELEMENT, this can only be used before legalization.
143 BUILD_PAIR,
Chris Lattner006e3e32005-11-20 22:55:57 +0000144
145 // MERGE_VALUES - This node takes multiple discrete operands and returns
146 // them all as its individual results. This nodes has exactly the same
147 // number of inputs and outputs, and is only valid before legalization.
148 // This node is useful for some pieces of the code generator that want to
149 // think about a single node with multiple results, not multiple nodes.
150 MERGE_VALUES,
Chris Lattner63b570d2005-01-07 07:45:27 +0000151
Chris Lattner615c2d02005-09-28 22:29:58 +0000152 // Simple integer binary arithmetic operators.
Chris Lattnerbede0b72005-04-06 04:21:29 +0000153 ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
Chris Lattner615c2d02005-09-28 22:29:58 +0000154
Nate Begeman551bf3f2006-02-17 05:43:56 +0000155 // Carry-setting nodes for multiple precision addition and subtraction.
156 // These nodes take two operands of the same value type, and produce two
157 // results. The first result is the normal add or sub result, the second
158 // result is the carry flag result.
159 ADDC, SUBC,
160
161 // Carry-using nodes for multiple precision addition and subtraction. These
162 // nodes take three operands: The first two are the normal lhs and rhs to
163 // the add or sub, and the third is the input carry flag. These nodes
164 // produce two results; the normal result of the add or sub, and the output
165 // carry flag. These nodes both read and write a carry flag to allow them
166 // to them to be chained together for add and sub of arbitrarily large
167 // values.
168 ADDE, SUBE,
169
Chris Lattner615c2d02005-09-28 22:29:58 +0000170 // Simple binary floating point operators.
171 FADD, FSUB, FMUL, FDIV, FREM,
Chris Lattner38bf3bf2006-03-05 05:06:40 +0000172
173 // FCOPYSIGN(X, Y) - Return the value of X with the sign of Y. NOTE: This
174 // DAG node does not require that X and Y have the same type, just that they
175 // are both floating point. X and the result must have the same type.
176 // FCOPYSIGN(f32, f64) is allowed.
177 FCOPYSIGN,
Chris Lattnerfa984b62006-03-17 19:53:41 +0000178
Chris Lattner22232f62006-03-19 00:52:25 +0000179 /// VBUILD_VECTOR(ELT1, ELT2, ELT3, ELT4,..., COUNT,TYPE) - Return a vector
180 /// with the specified, possibly variable, elements. The number of elements
181 /// is required to be a power of two.
182 VBUILD_VECTOR,
Chris Lattnerbede0b72005-04-06 04:21:29 +0000183
Chris Lattner22232f62006-03-19 00:52:25 +0000184 /// BUILD_VECTOR(ELT1, ELT2, ELT3, ELT4,...) - Return a vector
185 /// with the specified, possibly variable, elements. The number of elements
186 /// is required to be a power of two.
187 BUILD_VECTOR,
188
Chris Lattnerfa984b62006-03-17 19:53:41 +0000189 /// VINSERT_VECTOR_ELT(VECTOR, VAL, IDX, COUNT,TYPE) - Given a vector
190 /// VECTOR, an element ELEMENT, and a (potentially variable) index IDX,
191 /// return an vector with the specified element of VECTOR replaced with VAL.
192 /// COUNT and TYPE specify the type of vector, as is standard for V* nodes.
193 VINSERT_VECTOR_ELT,
194
Chris Lattner22232f62006-03-19 00:52:25 +0000195 /// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR (a legal packed
196 /// type) with the element at IDX replaced with VAL.
197 INSERT_VECTOR_ELT,
Chris Lattner4b8db6c2006-03-21 20:43:08 +0000198
199 /// VEXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
200 /// (an MVT::Vector value) identified by the (potentially variable) element
201 /// number IDX.
202 VEXTRACT_VECTOR_ELT,
203
204 /// EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
205 /// (a legal packed type vector) identified by the (potentially variable)
206 /// element number IDX.
207 EXTRACT_VECTOR_ELT,
Chris Lattner22232f62006-03-19 00:52:25 +0000208
Chris Lattnereda6dfd2006-03-28 19:54:11 +0000209 /// VVECTOR_SHUFFLE(VEC1, VEC2, SHUFFLEVEC, COUNT,TYPE) - Returns a vector,
210 /// of the same type as VEC1/VEC2. SHUFFLEVEC is a VBUILD_VECTOR of
211 /// constant int values that indicate which value each result element will
212 /// get. The elements of VEC1/VEC2 are enumerated in order. This is quite
213 /// similar to the Altivec 'vperm' instruction, except that the indices must
214 /// be constants and are in terms of the element size of VEC1/VEC2, not in
215 /// terms of bytes.
216 VVECTOR_SHUFFLE,
217
Chris Lattner49c6d3e2006-03-19 23:42:51 +0000218 /// VECTOR_SHUFFLE(VEC1, VEC2, SHUFFLEVEC) - Returns a vector, of the same
219 /// type as VEC1/VEC2. SHUFFLEVEC is a BUILD_VECTOR of constant int values
220 /// (regardless of whether its datatype is legal or not) that indicate
221 /// which value each result element will get. The elements of VEC1/VEC2 are
222 /// enumerated in order. This is quite similar to the Altivec 'vperm'
223 /// instruction, except that the indices must be constants and are in terms
224 /// of the element size of VEC1/VEC2, not in terms of bytes.
225 VECTOR_SHUFFLE,
226
Chris Lattner762f2ae2006-03-22 19:56:46 +0000227 /// X = VBIT_CONVERT(Y) and X = VBIT_CONVERT(Y, COUNT,TYPE) - This node
228 /// represents a conversion from or to an ISD::Vector type.
229 ///
230 /// This is lowered to a BIT_CONVERT of the appropriate input/output types.
231 /// The input and output are required to have the same size and at least one
Chris Lattner313f13c2006-03-22 20:09:04 +0000232 /// is required to be a vector (if neither is a vector, just use
233 /// BIT_CONVERT).
Chris Lattner762f2ae2006-03-22 19:56:46 +0000234 ///
Chris Lattner313f13c2006-03-22 20:09:04 +0000235 /// If the result is a vector, this takes three operands (like any other
236 /// vector producer) which indicate the size and type of the vector result.
Chris Lattner762f2ae2006-03-22 19:56:46 +0000237 /// Otherwise it takes one input.
238 VBIT_CONVERT,
239
Chris Lattner22232f62006-03-19 00:52:25 +0000240 /// BINOP(LHS, RHS, COUNT,TYPE)
241 /// Simple abstract vector operators. Unlike the integer and floating point
242 /// binary operators, these nodes also take two additional operands:
243 /// a constant element count, and a value type node indicating the type of
244 /// the elements. The order is count, type, op0, op1. All vector opcodes,
245 /// including VLOAD and VConstant must currently have count and type as
246 /// their last two operands.
247 VADD, VSUB, VMUL, VSDIV, VUDIV,
248 VAND, VOR, VXOR,
Chris Lattner210721a2006-03-19 05:26:45 +0000249
Chris Lattner49027e62006-04-08 22:16:01 +0000250 /// VSELECT(COND,LHS,RHS, COUNT,TYPE) - Select for MVT::Vector values.
251 /// COND is a boolean value. This node return LHS if COND is true, RHS if
252 /// COND is false.
253 VSELECT,
254
Chris Lattner210721a2006-03-19 05:26:45 +0000255 /// SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a
256 /// scalar value into the low element of the resultant vector type. The top
257 /// elements of the vector are undefined.
258 SCALAR_TO_VECTOR,
259
Chris Lattnerbede0b72005-04-06 04:21:29 +0000260 // MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
261 // an unsigned/signed value of type i[2*n], then return the top part.
262 MULHU, MULHS,
Chris Lattner63b570d2005-01-07 07:45:27 +0000263
Nate Begeman35ef9132006-01-11 21:21:00 +0000264 // Bitwise operators - logical and, logical or, logical xor, shift left,
265 // shift right algebraic (shift in sign bits), shift right logical (shift in
266 // zeroes), rotate left, rotate right, and byteswap.
267 AND, OR, XOR, SHL, SRA, SRL, ROTL, ROTR, BSWAP,
Chris Lattner63b570d2005-01-07 07:45:27 +0000268
Andrew Lenharth691ef2b2005-05-03 17:19:30 +0000269 // Counting operators
270 CTTZ, CTLZ, CTPOP,
271
Chris Lattnerfa984b62006-03-17 19:53:41 +0000272 // Select(COND, TRUEVAL, FALSEVAL)
Nate Begeman9373a812005-08-10 20:51:12 +0000273 SELECT,
274
275 // Select with condition operator - This selects between a true value and
276 // a false value (ops #2 and #3) based on the boolean result of comparing
277 // the lhs and rhs (ops #0 and #1) of a conditional expression with the
278 // condition code in op #4, a CondCodeSDNode.
279 SELECT_CC,
Chris Lattner63b570d2005-01-07 07:45:27 +0000280
281 // SetCC operator - This evaluates to a boolean (i1) true value if the
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000282 // condition is true. The operands to this are the left and right operands
283 // to compare (ops #0, and #1) and the condition code to compare them with
284 // (op #2) as a CondCodeSDNode.
Chris Lattner63b570d2005-01-07 07:45:27 +0000285 SETCC,
286
Chris Lattner14c5b532005-04-02 03:30:33 +0000287 // SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
288 // integer shift operations, just like ADD/SUB_PARTS. The operation
289 // ordering is:
Chris Lattner6b8f2d62005-04-02 03:59:45 +0000290 // [Lo,Hi] = op [LoLHS,HiLHS], Amt
Chris Lattner14c5b532005-04-02 03:30:33 +0000291 SHL_PARTS, SRA_PARTS, SRL_PARTS,
292
Chris Lattner63b570d2005-01-07 07:45:27 +0000293 // Conversion operators. These are all single input single output
294 // operations. For all of these, the result type must be strictly
295 // wider or narrower (depending on the operation) than the source
296 // type.
297
298 // SIGN_EXTEND - Used for integer types, replicating the sign bit
299 // into new bits.
300 SIGN_EXTEND,
301
302 // ZERO_EXTEND - Used for integer types, zeroing the new bits.
303 ZERO_EXTEND,
304
Chris Lattner7e122db2005-09-02 00:14:40 +0000305 // ANY_EXTEND - Used for integer types. The high bits are undefined.
306 ANY_EXTEND,
307
Chris Lattner63b570d2005-01-07 07:45:27 +0000308 // TRUNCATE - Completely drop the high bits.
309 TRUNCATE,
310
Chris Lattner1645ed02005-01-08 08:08:49 +0000311 // [SU]INT_TO_FP - These operators convert integers (whose interpreted sign
312 // depends on the first letter) to floating point.
313 SINT_TO_FP,
314 UINT_TO_FP,
315
Chris Lattnerea576102005-04-13 02:36:41 +0000316 // SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to
317 // sign extend a small value in a large integer register (e.g. sign
318 // extending the low 8 bits of a 32-bit register to fill the top 24 bits
Chris Lattner15e4b012005-07-10 00:07:11 +0000319 // with the 7th bit). The size of the smaller type is indicated by the 1th
320 // operand, a ValueType node.
Chris Lattner859157d2005-01-15 06:17:04 +0000321 SIGN_EXTEND_INREG,
Chris Lattner859157d2005-01-15 06:17:04 +0000322
Chris Lattner1645ed02005-01-08 08:08:49 +0000323 // FP_TO_[US]INT - Convert a floating point value to a signed or unsigned
324 // integer.
325 FP_TO_SINT,
326 FP_TO_UINT,
327
Chris Lattner63b570d2005-01-07 07:45:27 +0000328 // FP_ROUND - Perform a rounding operation from the current
Chris Lattner859157d2005-01-15 06:17:04 +0000329 // precision down to the specified precision (currently always 64->32).
Chris Lattner63b570d2005-01-07 07:45:27 +0000330 FP_ROUND,
331
Chris Lattner859157d2005-01-15 06:17:04 +0000332 // FP_ROUND_INREG - This operator takes a floating point register, and
333 // rounds it to a floating point value. It then promotes it and returns it
334 // in a register of the same size. This operation effectively just discards
Chris Lattner15e4b012005-07-10 00:07:11 +0000335 // excess precision. The type to round down to is specified by the 1th
336 // operation, a VTSDNode (currently always 64->32->64).
Chris Lattner859157d2005-01-15 06:17:04 +0000337 FP_ROUND_INREG,
338
Chris Lattner63b570d2005-01-07 07:45:27 +0000339 // FP_EXTEND - Extend a smaller FP type into a larger FP type.
340 FP_EXTEND,
341
Chris Lattner1ac1c4b2005-12-23 00:15:59 +0000342 // BIT_CONVERT - Theis operator converts between integer and FP values, as
343 // if one was stored to memory as integer and the other was loaded from the
Chris Lattner80f55ab2005-12-23 00:46:10 +0000344 // same address (or equivalently for vector format conversions, etc). The
345 // source and result are required to have the same bit size (e.g.
346 // f32 <-> i32). This can also be used for int-to-int or fp-to-fp
347 // conversions, but that is a noop, deleted by getNode().
Chris Lattner1ac1c4b2005-12-23 00:15:59 +0000348 BIT_CONVERT,
349
Chris Lattner7f644642005-04-28 21:44:03 +0000350 // FNEG, FABS, FSQRT, FSIN, FCOS - Perform unary floating point negation,
351 // absolute value, square root, sine and cosine operations.
352 FNEG, FABS, FSQRT, FSIN, FCOS,
Chris Lattner38bf3bf2006-03-05 05:06:40 +0000353
Chris Lattner1cff05c2005-01-14 22:07:46 +0000354 // Other operators. LOAD and STORE have token chains as their first
Chris Lattnerf7db8c62005-07-10 00:28:25 +0000355 // operand, then the same operands as an LLVM load/store instruction, then a
356 // SRCVALUE node that provides alias analysis information.
Chris Lattner63b570d2005-01-07 07:45:27 +0000357 LOAD, STORE,
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000358
Evan Cheng1ab7d852006-03-01 00:51:13 +0000359 // Abstract vector version of LOAD. VLOAD has a constant element count as
360 // the first operand, followed by a value type node indicating the type of
361 // the elements, a token chain, a pointer operand, and a SRCVALUE node.
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000362 VLOAD,
Chris Lattner63b570d2005-01-07 07:45:27 +0000363
Chris Lattner5f056bf2005-07-10 01:55:33 +0000364 // EXTLOAD, SEXTLOAD, ZEXTLOAD - These three operators all load a value from
365 // memory and extend them to a larger value (e.g. load a byte into a word
366 // register). All three of these have four operands, a token chain, a
367 // pointer to load from, a SRCVALUE for alias analysis, and a VALUETYPE node
368 // indicating the type to load.
Chris Lattner1cff05c2005-01-14 22:07:46 +0000369 //
370 // SEXTLOAD loads the integer operand and sign extends it to a larger
371 // integer result type.
372 // ZEXTLOAD loads the integer operand and zero extends it to a larger
373 // integer result type.
Chris Lattner210721a2006-03-19 05:26:45 +0000374 // EXTLOAD is used for three things: floating point extending loads,
375 // integer extending loads [the top bits are undefined], and vector
376 // extending loads [load into low elt].
Chris Lattner1cff05c2005-01-14 22:07:46 +0000377 EXTLOAD, SEXTLOAD, ZEXTLOAD,
378
379 // TRUNCSTORE - This operators truncates (for integer) or rounds (for FP) a
380 // value and stores it to memory in one operation. This can be used for
Chris Lattnerf7db8c62005-07-10 00:28:25 +0000381 // either integer or floating point operands. The first four operands of
382 // this are the same as a standard store. The fifth is the ValueType to
383 // store it as (which will be smaller than the source value).
Chris Lattner1cff05c2005-01-14 22:07:46 +0000384 TRUNCSTORE,
385
Chris Lattner63b570d2005-01-07 07:45:27 +0000386 // DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
387 // to a specified boundary. The first operand is the token chain, the
388 // second is the number of bytes to allocate, and the third is the alignment
Chris Lattner74fe0632005-08-29 22:48:32 +0000389 // boundary. The size is guaranteed to be a multiple of the stack
390 // alignment, and the alignment is guaranteed to be bigger than the stack
391 // alignment (if required) or 0 to get standard stack alignment.
Chris Lattner63b570d2005-01-07 07:45:27 +0000392 DYNAMIC_STACKALLOC,
393
394 // Control flow instructions. These all have token chains.
Misha Brukmanea61c352005-04-21 20:39:54 +0000395
Chris Lattner63b570d2005-01-07 07:45:27 +0000396 // BR - Unconditional branch. The first operand is the chain
397 // operand, the second is the MBB to branch to.
398 BR,
399
Nate Begeman37efe672006-04-22 18:53:45 +0000400 // BRIND - Indirect branch. The first operand is the chain, the second
401 // is the value to branch to, which must be of the same type as the target's
402 // pointer type.
403 BRIND,
404
Chris Lattner63b570d2005-01-07 07:45:27 +0000405 // BRCOND - Conditional branch. The first operand is the chain,
406 // the second is the condition, the third is the block to branch
407 // to if the condition is true.
408 BRCOND,
409
Nate Begeman7cbd5252005-08-16 19:49:35 +0000410 // BR_CC - Conditional branch. The behavior is like that of SELECT_CC, in
411 // that the condition is represented as condition code, and two nodes to
412 // compare, rather than as a combined SetCC node. The operands in order are
413 // chain, cc, lhs, rhs, block to branch to if condition is true.
414 BR_CC,
415
Chris Lattner63b570d2005-01-07 07:45:27 +0000416 // RET - Return from function. The first operand is the chain,
417 // and any subsequent operands are the return values for the
418 // function. This operation can have variable number of operands.
419 RET,
420
Chris Lattner7572eb82006-01-26 22:23:45 +0000421 // INLINEASM - Represents an inline asm block. This node always has two
422 // return values: a chain and a flag result. The inputs are as follows:
423 // Operand #0 : Input chain.
424 // Operand #1 : a ExternalSymbolSDNode with a pointer to the asm string.
425 // Operand #2n+2: A RegisterNode.
426 // Operand #2n+3: A TargetConstant, indicating if the reg is a use/def
427 // Operand #last: Optional, an incoming flag.
428 INLINEASM,
Chris Lattneref36aa72005-01-11 05:56:17 +0000429
Chris Lattner5a67afc2006-01-13 02:39:42 +0000430 // STACKSAVE - STACKSAVE has one operand, an input chain. It produces a
431 // value, the same type as the pointer type for the system, and an output
432 // chain.
433 STACKSAVE,
434
435 // STACKRESTORE has two operands, an input chain and a pointer to restore to
436 // it returns an output chain.
437 STACKRESTORE,
438
Chris Lattneref36aa72005-01-11 05:56:17 +0000439 // MEMSET/MEMCPY/MEMMOVE - The first operand is the chain, and the rest
440 // correspond to the operands of the LLVM intrinsic functions. The only
441 // result is a token chain. The alignment argument is guaranteed to be a
442 // Constant node.
443 MEMSET,
444 MEMMOVE,
445 MEMCPY,
Misha Brukmanea61c352005-04-21 20:39:54 +0000446
Chris Lattner16cd04d2005-05-12 23:24:06 +0000447 // CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of
448 // a call sequence, and carry arbitrary information that target might want
449 // to know. The first operand is a chain, the rest are specified by the
450 // target and not touched by the DAG optimizers.
451 CALLSEQ_START, // Beginning of a call sequence
452 CALLSEQ_END, // End of a call sequence
Nate Begemanacc398c2006-01-25 18:21:52 +0000453
454 // VAARG - VAARG has three operands: an input chain, a pointer, and a
455 // SRCVALUE. It returns a pair of values: the vaarg value and a new chain.
456 VAARG,
457
458 // VACOPY - VACOPY has five operands: an input chain, a destination pointer,
459 // a source pointer, a SRCVALUE for the destination, and a SRCVALUE for the
460 // source.
461 VACOPY,
462
463 // VAEND, VASTART - VAEND and VASTART have three operands: an input chain, a
464 // pointer, and a SRCVALUE.
465 VAEND, VASTART,
Chris Lattner63b570d2005-01-07 07:45:27 +0000466
Chris Lattner21074f42005-05-09 20:21:27 +0000467 // SRCVALUE - This corresponds to a Value*, and is used to associate memory
468 // locations with their value. This allows one use alias analysis
469 // information in the backend.
470 SRCVALUE,
471
Misha Brukmane3f570c2005-03-31 21:30:35 +0000472 // PCMARKER - This corresponds to the pcmarker intrinsic.
Andrew Lenharth95762122005-03-31 21:24:06 +0000473 PCMARKER,
Chris Lattner63b570d2005-01-07 07:45:27 +0000474
Andrew Lenharthaeef8fc2005-11-11 16:45:18 +0000475 // READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
Andrew Lenharth8b91c772005-11-11 22:48:54 +0000476 // The only operand is a chain and a value and a chain are produced. The
477 // value is the contents of the architecture specific cycle counter like
478 // register (or other high accuracy low latency clock source)
Andrew Lenharthaeef8fc2005-11-11 16:45:18 +0000479 READCYCLECOUNTER,
480
Chris Lattnerd623e952005-10-05 06:34:34 +0000481 // HANDLENODE node - Used as a handle for various purposes.
482 HANDLENODE,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000483
Chris Lattner47725d02005-11-29 06:15:39 +0000484 // LOCATION - This node is used to represent a source location for debug
485 // info. It takes token chain as input, then a line number, then a column
486 // number, then a filename, then a working dir. It produces a token chain
487 // as output.
488 LOCATION,
489
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000490 // DEBUG_LOC - This node is used to represent source line information
Jim Laskeyabf6d172006-01-05 01:25:28 +0000491 // embedded in the code. It takes a token chain as input, then a line
492 // number, then a column then a file id (provided by MachineDebugInfo.) It
493 // produces a token chain as output.
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000494 DEBUG_LOC,
495
Jim Laskeyabf6d172006-01-05 01:25:28 +0000496 // DEBUG_LABEL - This node is used to mark a location in the code where a
497 // label should be generated for use by the debug information. It takes a
Jim Laskeydf0f6592006-01-05 01:53:28 +0000498 // token chain as input and then a unique id (provided by MachineDebugInfo.)
499 // It produces a token chain as output.
Jim Laskeyabf6d172006-01-05 01:25:28 +0000500 DEBUG_LABEL,
501
Chris Lattner63b570d2005-01-07 07:45:27 +0000502 // BUILTIN_OP_END - This must be the last enum value in this list.
Chris Lattner410354f2006-02-22 16:23:43 +0000503 BUILTIN_OP_END
Chris Lattner63b570d2005-01-07 07:45:27 +0000504 };
505
Chris Lattner322dcd32006-03-25 22:56:35 +0000506 /// Node predicates
507
Evan Chenga8df1662006-03-27 06:58:47 +0000508 /// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner322dcd32006-03-25 22:56:35 +0000509 /// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +0000510 bool isBuildVectorAllOnes(const SDNode *N);
Evan Cheng4a147842006-03-26 09:50:58 +0000511
512 /// isBuildVectorAllZeros - Return true if the specified node is a
513 /// BUILD_VECTOR where all of the elements are 0 or undef.
514 bool isBuildVectorAllZeros(const SDNode *N);
Chris Lattner322dcd32006-03-25 22:56:35 +0000515
Chris Lattner63b570d2005-01-07 07:45:27 +0000516 //===--------------------------------------------------------------------===//
517 /// ISD::CondCode enum - These are ordered carefully to make the bitfields
518 /// below work out, when considering SETFALSE (something that never exists
519 /// dynamically) as 0. "U" -> Unsigned (for integer operands) or Unordered
520 /// (for floating point), "L" -> Less than, "G" -> Greater than, "E" -> Equal
521 /// to. If the "N" column is 1, the result of the comparison is undefined if
522 /// the input is a NAN.
523 ///
524 /// All of these (except for the 'always folded ops') should be handled for
525 /// floating point. For integer, only the SETEQ,SETNE,SETLT,SETLE,SETGT,
526 /// SETGE,SETULT,SETULE,SETUGT, and SETUGE opcodes are used.
527 ///
528 /// Note that these are laid out in a specific order to allow bit-twiddling
529 /// to transform conditions.
530 enum CondCode {
531 // Opcode N U L G E Intuitive operation
532 SETFALSE, // 0 0 0 0 Always false (always folded)
533 SETOEQ, // 0 0 0 1 True if ordered and equal
534 SETOGT, // 0 0 1 0 True if ordered and greater than
535 SETOGE, // 0 0 1 1 True if ordered and greater than or equal
536 SETOLT, // 0 1 0 0 True if ordered and less than
537 SETOLE, // 0 1 0 1 True if ordered and less than or equal
538 SETONE, // 0 1 1 0 True if ordered and operands are unequal
539 SETO, // 0 1 1 1 True if ordered (no nans)
540 SETUO, // 1 0 0 0 True if unordered: isnan(X) | isnan(Y)
541 SETUEQ, // 1 0 0 1 True if unordered or equal
542 SETUGT, // 1 0 1 0 True if unordered or greater than
543 SETUGE, // 1 0 1 1 True if unordered, greater than, or equal
544 SETULT, // 1 1 0 0 True if unordered or less than
Misha Brukmanea61c352005-04-21 20:39:54 +0000545 SETULE, // 1 1 0 1 True if unordered, less than, or equal
Chris Lattner63b570d2005-01-07 07:45:27 +0000546 SETUNE, // 1 1 1 0 True if unordered or not equal
547 SETTRUE, // 1 1 1 1 Always true (always folded)
548 // Don't care operations: undefined if the input is a nan.
549 SETFALSE2, // 1 X 0 0 0 Always false (always folded)
550 SETEQ, // 1 X 0 0 1 True if equal
551 SETGT, // 1 X 0 1 0 True if greater than
552 SETGE, // 1 X 0 1 1 True if greater than or equal
553 SETLT, // 1 X 1 0 0 True if less than
Misha Brukmanea61c352005-04-21 20:39:54 +0000554 SETLE, // 1 X 1 0 1 True if less than or equal
Chris Lattner63b570d2005-01-07 07:45:27 +0000555 SETNE, // 1 X 1 1 0 True if not equal
556 SETTRUE2, // 1 X 1 1 1 Always true (always folded)
557
Chris Lattner410354f2006-02-22 16:23:43 +0000558 SETCC_INVALID // Marker value.
Chris Lattner63b570d2005-01-07 07:45:27 +0000559 };
560
561 /// isSignedIntSetCC - Return true if this is a setcc instruction that
562 /// performs a signed comparison when used with integer operands.
563 inline bool isSignedIntSetCC(CondCode Code) {
564 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
565 }
566
567 /// isUnsignedIntSetCC - Return true if this is a setcc instruction that
568 /// performs an unsigned comparison when used with integer operands.
569 inline bool isUnsignedIntSetCC(CondCode Code) {
570 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE;
571 }
572
573 /// isTrueWhenEqual - Return true if the specified condition returns true if
574 /// the two operands to the condition are equal. Note that if one of the two
575 /// operands is a NaN, this value is meaningless.
576 inline bool isTrueWhenEqual(CondCode Cond) {
577 return ((int)Cond & 1) != 0;
578 }
579
580 /// getUnorderedFlavor - This function returns 0 if the condition is always
581 /// false if an operand is a NaN, 1 if the condition is always true if the
582 /// operand is a NaN, and 2 if the condition is undefined if the operand is a
583 /// NaN.
584 inline unsigned getUnorderedFlavor(CondCode Cond) {
585 return ((int)Cond >> 3) & 3;
586 }
587
588 /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
589 /// 'op' is a valid SetCC operation.
590 CondCode getSetCCInverse(CondCode Operation, bool isInteger);
591
592 /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
593 /// when given the operation for (X op Y).
594 CondCode getSetCCSwappedOperands(CondCode Operation);
595
596 /// getSetCCOrOperation - Return the result of a logical OR between different
597 /// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This
598 /// function returns SETCC_INVALID if it is not possible to represent the
599 /// resultant comparison.
600 CondCode getSetCCOrOperation(CondCode Op1, CondCode Op2, bool isInteger);
601
602 /// getSetCCAndOperation - Return the result of a logical AND between
603 /// different comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
604 /// function returns SETCC_INVALID if it is not possible to represent the
605 /// resultant comparison.
606 CondCode getSetCCAndOperation(CondCode Op1, CondCode Op2, bool isInteger);
607} // end llvm::ISD namespace
608
609
610//===----------------------------------------------------------------------===//
611/// SDOperand - Unlike LLVM values, Selection DAG nodes may return multiple
612/// values as the result of a computation. Many nodes return multiple values,
613/// from loads (which define a token and a return value) to ADDC (which returns
614/// a result and a carry value), to calls (which may return an arbitrary number
615/// of values).
616///
617/// As such, each use of a SelectionDAG computation must indicate the node that
618/// computes it as well as which return value to use from that node. This pair
619/// of information is represented with the SDOperand value type.
620///
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000621class SDOperand {
622public:
Chris Lattner63b570d2005-01-07 07:45:27 +0000623 SDNode *Val; // The node defining the value we are using.
624 unsigned ResNo; // Which return value of the node we are using.
625
Reid Spencerace44db2006-04-12 16:44:15 +0000626 SDOperand() : Val(0), ResNo(0) {}
Chris Lattner63b570d2005-01-07 07:45:27 +0000627 SDOperand(SDNode *val, unsigned resno) : Val(val), ResNo(resno) {}
628
629 bool operator==(const SDOperand &O) const {
630 return Val == O.Val && ResNo == O.ResNo;
631 }
632 bool operator!=(const SDOperand &O) const {
633 return !operator==(O);
634 }
635 bool operator<(const SDOperand &O) const {
636 return Val < O.Val || (Val == O.Val && ResNo < O.ResNo);
637 }
638
639 SDOperand getValue(unsigned R) const {
640 return SDOperand(Val, R);
641 }
642
Evan Chengbfa284f2006-03-03 06:42:32 +0000643 // isOperand - Return true if this node is an operand of N.
644 bool isOperand(SDNode *N) const;
645
Chris Lattner63b570d2005-01-07 07:45:27 +0000646 /// getValueType - Return the ValueType of the referenced return value.
647 ///
648 inline MVT::ValueType getValueType() const;
Misha Brukmanea61c352005-04-21 20:39:54 +0000649
Chris Lattner63b570d2005-01-07 07:45:27 +0000650 // Forwarding methods - These forward to the corresponding methods in SDNode.
651 inline unsigned getOpcode() const;
Chris Lattner0442fbf2005-01-21 21:39:38 +0000652 inline unsigned getNodeDepth() const;
Chris Lattner63b570d2005-01-07 07:45:27 +0000653 inline unsigned getNumOperands() const;
654 inline const SDOperand &getOperand(unsigned i) const;
Nate Begeman0f66a912005-08-17 23:44:54 +0000655 inline bool isTargetOpcode() const;
656 inline unsigned getTargetOpcode() const;
Chris Lattnera44f4ae2005-01-13 22:58:50 +0000657
658 /// hasOneUse - Return true if there is exactly one operation using this
659 /// result value of the defining operator.
660 inline bool hasOneUse() const;
Chris Lattner63b570d2005-01-07 07:45:27 +0000661};
662
663
664/// simplify_type specializations - Allow casting operators to work directly on
665/// SDOperands as if they were SDNode*'s.
666template<> struct simplify_type<SDOperand> {
667 typedef SDNode* SimpleType;
668 static SimpleType getSimplifiedValue(const SDOperand &Val) {
669 return static_cast<SimpleType>(Val.Val);
670 }
671};
672template<> struct simplify_type<const SDOperand> {
673 typedef SDNode* SimpleType;
674 static SimpleType getSimplifiedValue(const SDOperand &Val) {
675 return static_cast<SimpleType>(Val.Val);
676 }
677};
678
679
680/// SDNode - Represents one node in the SelectionDAG.
681///
682class SDNode {
Chris Lattner0442fbf2005-01-21 21:39:38 +0000683 /// NodeType - The operation that this node performs.
684 ///
685 unsigned short NodeType;
686
687 /// NodeDepth - Node depth is defined as MAX(Node depth of children)+1. This
688 /// means that leaves have a depth of 1, things that use only leaves have a
689 /// depth of 2, etc.
690 unsigned short NodeDepth;
691
Chris Lattnerf71e8432005-11-08 22:06:23 +0000692 /// OperandList - The values that are used by this operation.
Chris Lattner0442fbf2005-01-21 21:39:38 +0000693 ///
Chris Lattnerf71e8432005-11-08 22:06:23 +0000694 SDOperand *OperandList;
695
696 /// ValueList - The types of the values this node defines. SDNode's may
697 /// define multiple values simultaneously.
698 MVT::ValueType *ValueList;
Chris Lattner63b570d2005-01-07 07:45:27 +0000699
Chris Lattnerf71e8432005-11-08 22:06:23 +0000700 /// NumOperands/NumValues - The number of entries in the Operand/Value list.
701 unsigned short NumOperands, NumValues;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000702
703 /// Prev/Next pointers - These pointers form the linked list of of the
704 /// AllNodes list in the current DAG.
705 SDNode *Prev, *Next;
706 friend struct ilist_traits<SDNode>;
Chris Lattner63b570d2005-01-07 07:45:27 +0000707
708 /// Uses - These are all of the SDNode's that use a value produced by this
709 /// node.
710 std::vector<SDNode*> Uses;
711public:
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000712 virtual ~SDNode() {
713 assert(NumOperands == 0 && "Operand list not cleared before deletion");
714 }
715
Chris Lattner63b570d2005-01-07 07:45:27 +0000716 //===--------------------------------------------------------------------===//
717 // Accessors
718 //
719 unsigned getOpcode() const { return NodeType; }
Nate Begeman0f66a912005-08-17 23:44:54 +0000720 bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; }
721 unsigned getTargetOpcode() const {
722 assert(isTargetOpcode() && "Not a target opcode!");
723 return NodeType - ISD::BUILTIN_OP_END;
724 }
Chris Lattner63b570d2005-01-07 07:45:27 +0000725
726 size_t use_size() const { return Uses.size(); }
727 bool use_empty() const { return Uses.empty(); }
728 bool hasOneUse() const { return Uses.size() == 1; }
729
Chris Lattner0442fbf2005-01-21 21:39:38 +0000730 /// getNodeDepth - Return the distance from this node to the leaves in the
731 /// graph. The leaves have a depth of 1.
732 unsigned getNodeDepth() const { return NodeDepth; }
733
Chris Lattner7ece3802005-01-17 02:24:59 +0000734 typedef std::vector<SDNode*>::const_iterator use_iterator;
735 use_iterator use_begin() const { return Uses.begin(); }
736 use_iterator use_end() const { return Uses.end(); }
737
Chris Lattnerb18a2f82005-01-12 18:37:33 +0000738 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
739 /// indicated value. This method ignores uses of other values defined by this
740 /// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +0000741 bool hasNUsesOfValue(unsigned NUses, unsigned Value) const;
742
743 // isOnlyUse - Return true if this node is the only use of N.
744 bool isOnlyUse(SDNode *N) const;
Chris Lattnerb18a2f82005-01-12 18:37:33 +0000745
Evan Cheng80d8eaa2006-03-03 06:24:54 +0000746 // isOperand - Return true if this node is an operand of N.
747 bool isOperand(SDNode *N) const;
748
Chris Lattner63b570d2005-01-07 07:45:27 +0000749 /// getNumOperands - Return the number of values used by this operation.
750 ///
Chris Lattnerf71e8432005-11-08 22:06:23 +0000751 unsigned getNumOperands() const { return NumOperands; }
Chris Lattner63b570d2005-01-07 07:45:27 +0000752
753 const SDOperand &getOperand(unsigned Num) const {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000754 assert(Num < NumOperands && "Invalid child # of SDNode!");
755 return OperandList[Num];
Chris Lattner63b570d2005-01-07 07:45:27 +0000756 }
Chris Lattnerf71e8432005-11-08 22:06:23 +0000757 typedef const SDOperand* op_iterator;
758 op_iterator op_begin() const { return OperandList; }
759 op_iterator op_end() const { return OperandList+NumOperands; }
Chris Lattner50f5a512005-05-14 06:19:11 +0000760
Chris Lattner63b570d2005-01-07 07:45:27 +0000761
762 /// getNumValues - Return the number of values defined/returned by this
763 /// operator.
764 ///
Chris Lattnerf71e8432005-11-08 22:06:23 +0000765 unsigned getNumValues() const { return NumValues; }
Chris Lattner63b570d2005-01-07 07:45:27 +0000766
767 /// getValueType - Return the type of a specified result.
768 ///
769 MVT::ValueType getValueType(unsigned ResNo) const {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000770 assert(ResNo < NumValues && "Illegal result number!");
771 return ValueList[ResNo];
Chris Lattner63b570d2005-01-07 07:45:27 +0000772 }
Jeff Cohen9eb59ec2005-07-27 05:53:44 +0000773
Chris Lattnerf71e8432005-11-08 22:06:23 +0000774 typedef const MVT::ValueType* value_iterator;
775 value_iterator value_begin() const { return ValueList; }
776 value_iterator value_end() const { return ValueList+NumValues; }
Chris Lattner63b570d2005-01-07 07:45:27 +0000777
Chris Lattner6e6e3ce2005-01-10 23:25:04 +0000778 /// getOperationName - Return the opcode of this operation for printing.
779 ///
Chris Lattnerefe58692005-08-16 18:32:18 +0000780 const char* getOperationName(const SelectionDAG *G = 0) const;
Chris Lattner63b570d2005-01-07 07:45:27 +0000781 void dump() const;
Chris Lattnerefe58692005-08-16 18:32:18 +0000782 void dump(const SelectionDAG *G) const;
Chris Lattner63b570d2005-01-07 07:45:27 +0000783
784 static bool classof(const SDNode *) { return true; }
785
786protected:
787 friend class SelectionDAG;
Chris Lattner109654f2005-11-08 23:30:11 +0000788
789 /// getValueTypeList - Return a pointer to the specified value type.
790 ///
791 static MVT::ValueType *getValueTypeList(MVT::ValueType VT);
Chris Lattner63b570d2005-01-07 07:45:27 +0000792
Chris Lattner0442fbf2005-01-21 21:39:38 +0000793 SDNode(unsigned NT, MVT::ValueType VT) : NodeType(NT), NodeDepth(1) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000794 OperandList = 0; NumOperands = 0;
Chris Lattner109654f2005-11-08 23:30:11 +0000795 ValueList = getValueTypeList(VT);
Chris Lattnerf71e8432005-11-08 22:06:23 +0000796 NumValues = 1;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000797 Prev = 0; Next = 0;
Chris Lattner63b570d2005-01-07 07:45:27 +0000798 }
Chris Lattner63b570d2005-01-07 07:45:27 +0000799 SDNode(unsigned NT, SDOperand Op)
Chris Lattner0442fbf2005-01-21 21:39:38 +0000800 : NodeType(NT), NodeDepth(Op.Val->getNodeDepth()+1) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000801 OperandList = new SDOperand[1];
802 OperandList[0] = Op;
803 NumOperands = 1;
Chris Lattner63b570d2005-01-07 07:45:27 +0000804 Op.Val->Uses.push_back(this);
Chris Lattnerf71e8432005-11-08 22:06:23 +0000805 ValueList = 0;
806 NumValues = 0;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000807 Prev = 0; Next = 0;
Chris Lattner63b570d2005-01-07 07:45:27 +0000808 }
809 SDNode(unsigned NT, SDOperand N1, SDOperand N2)
810 : NodeType(NT) {
Chris Lattner0442fbf2005-01-21 21:39:38 +0000811 if (N1.Val->getNodeDepth() > N2.Val->getNodeDepth())
812 NodeDepth = N1.Val->getNodeDepth()+1;
813 else
814 NodeDepth = N2.Val->getNodeDepth()+1;
Chris Lattnerf71e8432005-11-08 22:06:23 +0000815 OperandList = new SDOperand[2];
816 OperandList[0] = N1;
817 OperandList[1] = N2;
818 NumOperands = 2;
Chris Lattner63b570d2005-01-07 07:45:27 +0000819 N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this);
Chris Lattnerf71e8432005-11-08 22:06:23 +0000820 ValueList = 0;
821 NumValues = 0;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000822 Prev = 0; Next = 0;
Chris Lattner63b570d2005-01-07 07:45:27 +0000823 }
824 SDNode(unsigned NT, SDOperand N1, SDOperand N2, SDOperand N3)
825 : NodeType(NT) {
Chris Lattner0442fbf2005-01-21 21:39:38 +0000826 unsigned ND = N1.Val->getNodeDepth();
827 if (ND < N2.Val->getNodeDepth())
828 ND = N2.Val->getNodeDepth();
829 if (ND < N3.Val->getNodeDepth())
830 ND = N3.Val->getNodeDepth();
831 NodeDepth = ND+1;
832
Chris Lattnerf71e8432005-11-08 22:06:23 +0000833 OperandList = new SDOperand[3];
834 OperandList[0] = N1;
835 OperandList[1] = N2;
836 OperandList[2] = N3;
837 NumOperands = 3;
838
Chris Lattner63b570d2005-01-07 07:45:27 +0000839 N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this);
840 N3.Val->Uses.push_back(this);
Chris Lattnerf71e8432005-11-08 22:06:23 +0000841 ValueList = 0;
842 NumValues = 0;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000843 Prev = 0; Next = 0;
Chris Lattner63b570d2005-01-07 07:45:27 +0000844 }
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000845 SDNode(unsigned NT, SDOperand N1, SDOperand N2, SDOperand N3, SDOperand N4)
846 : NodeType(NT) {
847 unsigned ND = N1.Val->getNodeDepth();
848 if (ND < N2.Val->getNodeDepth())
849 ND = N2.Val->getNodeDepth();
850 if (ND < N3.Val->getNodeDepth())
851 ND = N3.Val->getNodeDepth();
852 if (ND < N4.Val->getNodeDepth())
853 ND = N4.Val->getNodeDepth();
854 NodeDepth = ND+1;
855
Chris Lattnerf71e8432005-11-08 22:06:23 +0000856 OperandList = new SDOperand[4];
857 OperandList[0] = N1;
858 OperandList[1] = N2;
859 OperandList[2] = N3;
860 OperandList[3] = N4;
861 NumOperands = 4;
862
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000863 N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this);
864 N3.Val->Uses.push_back(this); N4.Val->Uses.push_back(this);
Chris Lattnerf71e8432005-11-08 22:06:23 +0000865 ValueList = 0;
866 NumValues = 0;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000867 Prev = 0; Next = 0;
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000868 }
Chris Lattnerf71e8432005-11-08 22:06:23 +0000869 SDNode(unsigned Opc, const std::vector<SDOperand> &Nodes) : NodeType(Opc) {
870 NumOperands = Nodes.size();
871 OperandList = new SDOperand[NumOperands];
872
Chris Lattner0442fbf2005-01-21 21:39:38 +0000873 unsigned ND = 0;
Chris Lattnerf71e8432005-11-08 22:06:23 +0000874 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
875 OperandList[i] = Nodes[i];
876 SDNode *N = OperandList[i].Val;
877 N->Uses.push_back(this);
878 if (ND < N->getNodeDepth()) ND = N->getNodeDepth();
Chris Lattner0442fbf2005-01-21 21:39:38 +0000879 }
880 NodeDepth = ND+1;
Chris Lattnerf71e8432005-11-08 22:06:23 +0000881 ValueList = 0;
882 NumValues = 0;
Chris Lattnerb80e2be2005-11-09 23:46:43 +0000883 Prev = 0; Next = 0;
Chris Lattnerf71e8432005-11-08 22:06:23 +0000884 }
Chris Lattner63b570d2005-01-07 07:45:27 +0000885
Chris Lattner1b950952005-08-16 18:16:24 +0000886 /// MorphNodeTo - This clears the return value and operands list, and sets the
887 /// opcode of the node to the specified value. This should only be used by
888 /// the SelectionDAG class.
889 void MorphNodeTo(unsigned Opc) {
890 NodeType = Opc;
Chris Lattnerf71e8432005-11-08 22:06:23 +0000891 ValueList = 0;
892 NumValues = 0;
Chris Lattnerb467f8a2005-08-17 01:54:00 +0000893
894 // Clear the operands list, updating used nodes to remove this from their
895 // use list.
Chris Lattnerf71e8432005-11-08 22:06:23 +0000896 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
897 I->Val->removeUser(this);
898 delete [] OperandList;
899 OperandList = 0;
900 NumOperands = 0;
Chris Lattner1b950952005-08-16 18:16:24 +0000901 }
902
Chris Lattner63b570d2005-01-07 07:45:27 +0000903 void setValueTypes(MVT::ValueType VT) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000904 assert(NumValues == 0 && "Should not have values yet!");
Chris Lattner109654f2005-11-08 23:30:11 +0000905 ValueList = getValueTypeList(VT);
Chris Lattnerf71e8432005-11-08 22:06:23 +0000906 NumValues = 1;
Chris Lattner63b570d2005-01-07 07:45:27 +0000907 }
Chris Lattner109654f2005-11-08 23:30:11 +0000908 void setValueTypes(MVT::ValueType *List, unsigned NumVal) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000909 assert(NumValues == 0 && "Should not have values yet!");
Chris Lattner109654f2005-11-08 23:30:11 +0000910 ValueList = List;
911 NumValues = NumVal;
Chris Lattner63b570d2005-01-07 07:45:27 +0000912 }
Chris Lattner1b950952005-08-16 18:16:24 +0000913
914 void setOperands(SDOperand Op0) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000915 assert(NumOperands == 0 && "Should not have operands yet!");
916 OperandList = new SDOperand[1];
917 OperandList[0] = Op0;
918 NumOperands = 1;
Chris Lattner8c3484c2005-08-17 18:58:38 +0000919 Op0.Val->Uses.push_back(this);
Chris Lattner1b950952005-08-16 18:16:24 +0000920 }
921 void setOperands(SDOperand Op0, SDOperand Op1) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000922 assert(NumOperands == 0 && "Should not have operands yet!");
923 OperandList = new SDOperand[2];
924 OperandList[0] = Op0;
925 OperandList[1] = Op1;
926 NumOperands = 2;
Chris Lattner8c3484c2005-08-17 18:58:38 +0000927 Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
Chris Lattner1b950952005-08-16 18:16:24 +0000928 }
929 void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000930 assert(NumOperands == 0 && "Should not have operands yet!");
931 OperandList = new SDOperand[3];
932 OperandList[0] = Op0;
933 OperandList[1] = Op1;
934 OperandList[2] = Op2;
935 NumOperands = 3;
Chris Lattner8c3484c2005-08-17 18:58:38 +0000936 Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
937 Op2.Val->Uses.push_back(this);
938 }
Nate Begeman294a0a12005-08-18 07:30:15 +0000939 void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000940 assert(NumOperands == 0 && "Should not have operands yet!");
941 OperandList = new SDOperand[4];
942 OperandList[0] = Op0;
943 OperandList[1] = Op1;
944 OperandList[2] = Op2;
945 OperandList[3] = Op3;
946 NumOperands = 4;
Nate Begeman294a0a12005-08-18 07:30:15 +0000947 Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
948 Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
949 }
Chris Lattnerd54209f2005-08-21 18:49:58 +0000950 void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
951 SDOperand Op4) {
Chris Lattnerf71e8432005-11-08 22:06:23 +0000952 assert(NumOperands == 0 && "Should not have operands yet!");
953 OperandList = new SDOperand[5];
954 OperandList[0] = Op0;
955 OperandList[1] = Op1;
956 OperandList[2] = Op2;
957 OperandList[3] = Op3;
958 OperandList[4] = Op4;
959 NumOperands = 5;
Chris Lattnerd54209f2005-08-21 18:49:58 +0000960 Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
961 Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
962 Op4.Val->Uses.push_back(this);
963 }
Evan Cheng61ca74b2005-11-30 02:04:11 +0000964 void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
965 SDOperand Op4, SDOperand Op5) {
966 assert(NumOperands == 0 && "Should not have operands yet!");
967 OperandList = new SDOperand[6];
968 OperandList[0] = Op0;
969 OperandList[1] = Op1;
970 OperandList[2] = Op2;
971 OperandList[3] = Op3;
972 OperandList[4] = Op4;
973 OperandList[5] = Op5;
974 NumOperands = 6;
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 }
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +0000979 void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
980 SDOperand Op4, SDOperand Op5, SDOperand Op6) {
981 assert(NumOperands == 0 && "Should not have operands yet!");
982 OperandList = new SDOperand[7];
983 OperandList[0] = Op0;
984 OperandList[1] = Op1;
985 OperandList[2] = Op2;
986 OperandList[3] = Op3;
987 OperandList[4] = Op4;
988 OperandList[5] = Op5;
989 OperandList[6] = Op6;
990 NumOperands = 7;
991 Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
992 Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
993 Op4.Val->Uses.push_back(this); Op5.Val->Uses.push_back(this);
994 Op6.Val->Uses.push_back(this);
995 }
Andrew Lenharth7cf11b42006-01-23 21:51:14 +0000996 void setOperands(SDOperand Op0, SDOperand Op1, SDOperand Op2, SDOperand Op3,
997 SDOperand Op4, SDOperand Op5, SDOperand Op6, SDOperand Op7) {
998 assert(NumOperands == 0 && "Should not have operands yet!");
999 OperandList = new SDOperand[8];
1000 OperandList[0] = Op0;
1001 OperandList[1] = Op1;
1002 OperandList[2] = Op2;
1003 OperandList[3] = Op3;
1004 OperandList[4] = Op4;
1005 OperandList[5] = Op5;
1006 OperandList[6] = Op6;
1007 OperandList[7] = Op7;
1008 NumOperands = 8;
1009 Op0.Val->Uses.push_back(this); Op1.Val->Uses.push_back(this);
1010 Op2.Val->Uses.push_back(this); Op3.Val->Uses.push_back(this);
1011 Op4.Val->Uses.push_back(this); Op5.Val->Uses.push_back(this);
1012 Op6.Val->Uses.push_back(this); Op7.Val->Uses.push_back(this);
1013 }
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00001014
Chris Lattner8c3484c2005-08-17 18:58:38 +00001015 void addUser(SDNode *User) {
1016 Uses.push_back(User);
Chris Lattner1b950952005-08-16 18:16:24 +00001017 }
Chris Lattnerd1fc9642005-01-07 21:08:55 +00001018 void removeUser(SDNode *User) {
1019 // Remove this user from the operand's use list.
1020 for (unsigned i = Uses.size(); ; --i) {
1021 assert(i != 0 && "Didn't find user!");
1022 if (Uses[i-1] == User) {
Chris Lattner8c3484c2005-08-17 18:58:38 +00001023 Uses[i-1] = Uses.back();
1024 Uses.pop_back();
1025 return;
Chris Lattnerd1fc9642005-01-07 21:08:55 +00001026 }
1027 }
1028 }
Chris Lattner63b570d2005-01-07 07:45:27 +00001029};
1030
1031
1032// Define inline functions from the SDOperand class.
1033
1034inline unsigned SDOperand::getOpcode() const {
1035 return Val->getOpcode();
1036}
Chris Lattner0442fbf2005-01-21 21:39:38 +00001037inline unsigned SDOperand::getNodeDepth() const {
1038 return Val->getNodeDepth();
1039}
Chris Lattner63b570d2005-01-07 07:45:27 +00001040inline MVT::ValueType SDOperand::getValueType() const {
1041 return Val->getValueType(ResNo);
1042}
1043inline unsigned SDOperand::getNumOperands() const {
1044 return Val->getNumOperands();
1045}
1046inline const SDOperand &SDOperand::getOperand(unsigned i) const {
1047 return Val->getOperand(i);
1048}
Nate Begeman0f66a912005-08-17 23:44:54 +00001049inline bool SDOperand::isTargetOpcode() const {
1050 return Val->isTargetOpcode();
1051}
1052inline unsigned SDOperand::getTargetOpcode() const {
1053 return Val->getTargetOpcode();
1054}
Chris Lattnera44f4ae2005-01-13 22:58:50 +00001055inline bool SDOperand::hasOneUse() const {
1056 return Val->hasNUsesOfValue(1, ResNo);
1057}
Chris Lattner63b570d2005-01-07 07:45:27 +00001058
Chris Lattnerd623e952005-10-05 06:34:34 +00001059/// HandleSDNode - This class is used to form a handle around another node that
1060/// is persistant and is updated across invocations of replaceAllUsesWith on its
1061/// operand. This node should be directly created by end-users and not added to
1062/// the AllNodes list.
1063class HandleSDNode : public SDNode {
1064public:
1065 HandleSDNode(SDOperand X) : SDNode(ISD::HANDLENODE, X) {}
1066 ~HandleSDNode() {
1067 MorphNodeTo(ISD::HANDLENODE); // Drops operand uses.
1068 }
1069
1070 SDOperand getValue() const { return getOperand(0); }
1071};
1072
Chris Lattner47725d02005-11-29 06:15:39 +00001073class StringSDNode : public SDNode {
1074 std::string Value;
1075protected:
1076 friend class SelectionDAG;
1077 StringSDNode(const std::string &val)
1078 : SDNode(ISD::STRING, MVT::Other), Value(val) {
1079 }
1080public:
1081 const std::string &getValue() const { return Value; }
1082 static bool classof(const StringSDNode *) { return true; }
1083 static bool classof(const SDNode *N) {
1084 return N->getOpcode() == ISD::STRING;
1085 }
1086};
Chris Lattner63b570d2005-01-07 07:45:27 +00001087
1088class ConstantSDNode : public SDNode {
1089 uint64_t Value;
1090protected:
1091 friend class SelectionDAG;
Chris Lattner056f9f62005-08-17 00:33:30 +00001092 ConstantSDNode(bool isTarget, uint64_t val, MVT::ValueType VT)
1093 : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, VT), Value(val) {
Chris Lattner63b570d2005-01-07 07:45:27 +00001094 }
1095public:
1096
1097 uint64_t getValue() const { return Value; }
1098
1099 int64_t getSignExtended() const {
1100 unsigned Bits = MVT::getSizeInBits(getValueType(0));
Chris Lattnerf26bc8e2005-01-08 19:52:31 +00001101 return ((int64_t)Value << (64-Bits)) >> (64-Bits);
Chris Lattner63b570d2005-01-07 07:45:27 +00001102 }
1103
1104 bool isNullValue() const { return Value == 0; }
1105 bool isAllOnesValue() const {
Chris Lattner885a87e2006-04-02 02:28:52 +00001106 return Value == MVT::getIntVTBitMask(getValueType(0));
Chris Lattner63b570d2005-01-07 07:45:27 +00001107 }
1108
1109 static bool classof(const ConstantSDNode *) { return true; }
1110 static bool classof(const SDNode *N) {
Chris Lattner056f9f62005-08-17 00:33:30 +00001111 return N->getOpcode() == ISD::Constant ||
1112 N->getOpcode() == ISD::TargetConstant;
Chris Lattner63b570d2005-01-07 07:45:27 +00001113 }
1114};
1115
1116class ConstantFPSDNode : public SDNode {
1117 double Value;
1118protected:
1119 friend class SelectionDAG;
Chris Lattnerac0d7232006-01-29 06:24:40 +00001120 ConstantFPSDNode(bool isTarget, double val, MVT::ValueType VT)
1121 : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP, VT),
1122 Value(val) {
Chris Lattner63b570d2005-01-07 07:45:27 +00001123 }
1124public:
1125
1126 double getValue() const { return Value; }
1127
1128 /// isExactlyValue - We don't rely on operator== working on double values, as
1129 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
1130 /// As such, this method can be used to do an exact bit-for-bit comparison of
1131 /// two floating point values.
Jim Laskey58b968b2005-08-17 20:08:02 +00001132 bool isExactlyValue(double V) const;
Chris Lattner63b570d2005-01-07 07:45:27 +00001133
1134 static bool classof(const ConstantFPSDNode *) { return true; }
1135 static bool classof(const SDNode *N) {
Chris Lattnerac0d7232006-01-29 06:24:40 +00001136 return N->getOpcode() == ISD::ConstantFP ||
1137 N->getOpcode() == ISD::TargetConstantFP;
Chris Lattner63b570d2005-01-07 07:45:27 +00001138 }
1139};
1140
1141class GlobalAddressSDNode : public SDNode {
1142 GlobalValue *TheGlobal;
Evan Cheng404cb4f2006-02-25 09:54:52 +00001143 int Offset;
Chris Lattner63b570d2005-01-07 07:45:27 +00001144protected:
1145 friend class SelectionDAG;
Evan Cheng61ca74b2005-11-30 02:04:11 +00001146 GlobalAddressSDNode(bool isTarget, const GlobalValue *GA, MVT::ValueType VT,
1147 int o=0)
Evan Cheng404cb4f2006-02-25 09:54:52 +00001148 : SDNode(isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress, VT),
1149 Offset(o) {
Chris Lattner63b570d2005-01-07 07:45:27 +00001150 TheGlobal = const_cast<GlobalValue*>(GA);
Chris Lattner63b570d2005-01-07 07:45:27 +00001151 }
1152public:
1153
1154 GlobalValue *getGlobal() const { return TheGlobal; }
Evan Cheng404cb4f2006-02-25 09:54:52 +00001155 int getOffset() const { return Offset; }
Chris Lattner63b570d2005-01-07 07:45:27 +00001156
1157 static bool classof(const GlobalAddressSDNode *) { return true; }
1158 static bool classof(const SDNode *N) {
Chris Lattnerf6b18492005-08-19 22:31:34 +00001159 return N->getOpcode() == ISD::GlobalAddress ||
1160 N->getOpcode() == ISD::TargetGlobalAddress;
Chris Lattner63b570d2005-01-07 07:45:27 +00001161 }
1162};
1163
1164
1165class FrameIndexSDNode : public SDNode {
1166 int FI;
1167protected:
1168 friend class SelectionDAG;
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001169 FrameIndexSDNode(int fi, MVT::ValueType VT, bool isTarg)
1170 : SDNode(isTarg ? ISD::TargetFrameIndex : ISD::FrameIndex, VT), FI(fi) {}
Chris Lattner63b570d2005-01-07 07:45:27 +00001171public:
1172
1173 int getIndex() const { return FI; }
1174
1175 static bool classof(const FrameIndexSDNode *) { return true; }
1176 static bool classof(const SDNode *N) {
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001177 return N->getOpcode() == ISD::FrameIndex ||
1178 N->getOpcode() == ISD::TargetFrameIndex;
Chris Lattner63b570d2005-01-07 07:45:27 +00001179 }
1180};
1181
Nate Begeman37efe672006-04-22 18:53:45 +00001182class JumpTableSDNode : public SDNode {
1183 int JTI;
1184protected:
1185 friend class SelectionDAG;
1186 JumpTableSDNode(int jti, MVT::ValueType VT, bool isTarg)
1187 : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable, VT),
1188 JTI(jti) {}
1189public:
1190
1191 int getIndex() const { return JTI; }
1192
1193 static bool classof(const JumpTableSDNode *) { return true; }
1194 static bool classof(const SDNode *N) {
1195 return N->getOpcode() == ISD::JumpTable ||
1196 N->getOpcode() == ISD::TargetJumpTable;
1197 }
1198};
1199
Chris Lattner63b570d2005-01-07 07:45:27 +00001200class ConstantPoolSDNode : public SDNode {
Chris Lattner5839bf22005-08-26 17:15:30 +00001201 Constant *C;
Evan Cheng404cb4f2006-02-25 09:54:52 +00001202 int Offset;
Evan Chengb8973bd2006-01-31 22:23:14 +00001203 unsigned Alignment;
Chris Lattner63b570d2005-01-07 07:45:27 +00001204protected:
1205 friend class SelectionDAG;
Evan Cheng404cb4f2006-02-25 09:54:52 +00001206 ConstantPoolSDNode(bool isTarget, Constant *c, MVT::ValueType VT,
1207 int o=0)
Chris Lattneraaaaf792005-08-25 05:02:41 +00001208 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, VT),
Evan Cheng404cb4f2006-02-25 09:54:52 +00001209 C(c), Offset(o), Alignment(0) {}
1210 ConstantPoolSDNode(bool isTarget, Constant *c, MVT::ValueType VT, int o,
1211 unsigned Align)
Evan Chengb8973bd2006-01-31 22:23:14 +00001212 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, VT),
Evan Cheng404cb4f2006-02-25 09:54:52 +00001213 C(c), Offset(o), Alignment(Align) {}
Chris Lattner63b570d2005-01-07 07:45:27 +00001214public:
1215
Chris Lattner5839bf22005-08-26 17:15:30 +00001216 Constant *get() const { return C; }
Evan Cheng404cb4f2006-02-25 09:54:52 +00001217 int getOffset() const { return Offset; }
Chris Lattneref3640a2006-02-09 02:10:15 +00001218
1219 // Return the alignment of this constant pool object, which is either 0 (for
1220 // default alignment) or log2 of the desired value.
Evan Chengb8973bd2006-01-31 22:23:14 +00001221 unsigned getAlignment() const { return Alignment; }
Chris Lattner63b570d2005-01-07 07:45:27 +00001222
1223 static bool classof(const ConstantPoolSDNode *) { return true; }
1224 static bool classof(const SDNode *N) {
Chris Lattneraaaaf792005-08-25 05:02:41 +00001225 return N->getOpcode() == ISD::ConstantPool ||
1226 N->getOpcode() == ISD::TargetConstantPool;
Chris Lattner63b570d2005-01-07 07:45:27 +00001227 }
1228};
1229
1230class BasicBlockSDNode : public SDNode {
1231 MachineBasicBlock *MBB;
1232protected:
1233 friend class SelectionDAG;
1234 BasicBlockSDNode(MachineBasicBlock *mbb)
1235 : SDNode(ISD::BasicBlock, MVT::Other), MBB(mbb) {}
1236public:
1237
1238 MachineBasicBlock *getBasicBlock() const { return MBB; }
1239
1240 static bool classof(const BasicBlockSDNode *) { return true; }
1241 static bool classof(const SDNode *N) {
1242 return N->getOpcode() == ISD::BasicBlock;
1243 }
1244};
1245
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001246class SrcValueSDNode : public SDNode {
1247 const Value *V;
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001248 int offset;
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001249protected:
1250 friend class SelectionDAG;
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001251 SrcValueSDNode(const Value* v, int o)
1252 : SDNode(ISD::SRCVALUE, MVT::Other), V(v), offset(o) {}
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001253
1254public:
1255 const Value *getValue() const { return V; }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001256 int getOffset() const { return offset; }
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001257
1258 static bool classof(const SrcValueSDNode *) { return true; }
1259 static bool classof(const SDNode *N) {
1260 return N->getOpcode() == ISD::SRCVALUE;
1261 }
1262};
1263
Chris Lattner63b570d2005-01-07 07:45:27 +00001264
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001265class RegisterSDNode : public SDNode {
Chris Lattner63b570d2005-01-07 07:45:27 +00001266 unsigned Reg;
1267protected:
1268 friend class SelectionDAG;
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001269 RegisterSDNode(unsigned reg, MVT::ValueType VT)
1270 : SDNode(ISD::Register, VT), Reg(reg) {}
Chris Lattner63b570d2005-01-07 07:45:27 +00001271public:
1272
1273 unsigned getReg() const { return Reg; }
1274
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001275 static bool classof(const RegisterSDNode *) { return true; }
Chris Lattner63b570d2005-01-07 07:45:27 +00001276 static bool classof(const SDNode *N) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001277 return N->getOpcode() == ISD::Register;
Chris Lattner63b570d2005-01-07 07:45:27 +00001278 }
1279};
1280
1281class ExternalSymbolSDNode : public SDNode {
1282 const char *Symbol;
1283protected:
1284 friend class SelectionDAG;
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001285 ExternalSymbolSDNode(bool isTarget, const char *Sym, MVT::ValueType VT)
1286 : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol, VT),
1287 Symbol(Sym) {
Chris Lattner63b570d2005-01-07 07:45:27 +00001288 }
1289public:
1290
1291 const char *getSymbol() const { return Symbol; }
1292
1293 static bool classof(const ExternalSymbolSDNode *) { return true; }
1294 static bool classof(const SDNode *N) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001295 return N->getOpcode() == ISD::ExternalSymbol ||
1296 N->getOpcode() == ISD::TargetExternalSymbol;
Chris Lattner63b570d2005-01-07 07:45:27 +00001297 }
1298};
1299
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001300class CondCodeSDNode : public SDNode {
Chris Lattner63b570d2005-01-07 07:45:27 +00001301 ISD::CondCode Condition;
1302protected:
1303 friend class SelectionDAG;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001304 CondCodeSDNode(ISD::CondCode Cond)
1305 : SDNode(ISD::CONDCODE, MVT::Other), Condition(Cond) {
Chris Lattner63b570d2005-01-07 07:45:27 +00001306 }
1307public:
1308
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001309 ISD::CondCode get() const { return Condition; }
Chris Lattner63b570d2005-01-07 07:45:27 +00001310
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001311 static bool classof(const CondCodeSDNode *) { return true; }
Chris Lattner63b570d2005-01-07 07:45:27 +00001312 static bool classof(const SDNode *N) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001313 return N->getOpcode() == ISD::CONDCODE;
Chris Lattner63b570d2005-01-07 07:45:27 +00001314 }
1315};
1316
Chris Lattner15e4b012005-07-10 00:07:11 +00001317/// VTSDNode - This class is used to represent MVT::ValueType's, which are used
1318/// to parameterize some operations.
1319class VTSDNode : public SDNode {
1320 MVT::ValueType ValueType;
1321protected:
1322 friend class SelectionDAG;
1323 VTSDNode(MVT::ValueType VT)
1324 : SDNode(ISD::VALUETYPE, MVT::Other), ValueType(VT) {}
1325public:
1326
1327 MVT::ValueType getVT() const { return ValueType; }
1328
1329 static bool classof(const VTSDNode *) { return true; }
1330 static bool classof(const SDNode *N) {
1331 return N->getOpcode() == ISD::VALUETYPE;
1332 }
1333};
1334
1335
Chris Lattner1080b9e2005-01-10 23:05:53 +00001336class SDNodeIterator : public forward_iterator<SDNode, ptrdiff_t> {
1337 SDNode *Node;
1338 unsigned Operand;
Misha Brukmanea61c352005-04-21 20:39:54 +00001339
Chris Lattner1080b9e2005-01-10 23:05:53 +00001340 SDNodeIterator(SDNode *N, unsigned Op) : Node(N), Operand(Op) {}
1341public:
1342 bool operator==(const SDNodeIterator& x) const {
1343 return Operand == x.Operand;
1344 }
1345 bool operator!=(const SDNodeIterator& x) const { return !operator==(x); }
1346
1347 const SDNodeIterator &operator=(const SDNodeIterator &I) {
1348 assert(I.Node == Node && "Cannot assign iterators to two different nodes!");
1349 Operand = I.Operand;
1350 return *this;
1351 }
Misha Brukmanea61c352005-04-21 20:39:54 +00001352
Chris Lattner1080b9e2005-01-10 23:05:53 +00001353 pointer operator*() const {
1354 return Node->getOperand(Operand).Val;
1355 }
1356 pointer operator->() const { return operator*(); }
Misha Brukmanea61c352005-04-21 20:39:54 +00001357
Chris Lattner1080b9e2005-01-10 23:05:53 +00001358 SDNodeIterator& operator++() { // Preincrement
1359 ++Operand;
1360 return *this;
1361 }
1362 SDNodeIterator operator++(int) { // Postincrement
Misha Brukmanea61c352005-04-21 20:39:54 +00001363 SDNodeIterator tmp = *this; ++*this; return tmp;
Chris Lattner1080b9e2005-01-10 23:05:53 +00001364 }
1365
1366 static SDNodeIterator begin(SDNode *N) { return SDNodeIterator(N, 0); }
1367 static SDNodeIterator end (SDNode *N) {
1368 return SDNodeIterator(N, N->getNumOperands());
1369 }
1370
1371 unsigned getOperand() const { return Operand; }
1372 const SDNode *getNode() const { return Node; }
1373};
1374
1375template <> struct GraphTraits<SDNode*> {
1376 typedef SDNode NodeType;
1377 typedef SDNodeIterator ChildIteratorType;
1378 static inline NodeType *getEntryNode(SDNode *N) { return N; }
Misha Brukmanea61c352005-04-21 20:39:54 +00001379 static inline ChildIteratorType child_begin(NodeType *N) {
Chris Lattner1080b9e2005-01-10 23:05:53 +00001380 return SDNodeIterator::begin(N);
1381 }
Misha Brukmanea61c352005-04-21 20:39:54 +00001382 static inline ChildIteratorType child_end(NodeType *N) {
Chris Lattner1080b9e2005-01-10 23:05:53 +00001383 return SDNodeIterator::end(N);
1384 }
1385};
1386
Chris Lattnerb80e2be2005-11-09 23:46:43 +00001387template<>
1388struct ilist_traits<SDNode> {
1389 static SDNode *getPrev(const SDNode *N) { return N->Prev; }
1390 static SDNode *getNext(const SDNode *N) { return N->Next; }
1391
1392 static void setPrev(SDNode *N, SDNode *Prev) { N->Prev = Prev; }
1393 static void setNext(SDNode *N, SDNode *Next) { N->Next = Next; }
1394
1395 static SDNode *createSentinel() {
1396 return new SDNode(ISD::EntryToken, MVT::Other);
1397 }
1398 static void destroySentinel(SDNode *N) { delete N; }
1399 //static SDNode *createNode(const SDNode &V) { return new SDNode(V); }
1400
1401
1402 void addNodeToList(SDNode *NTy) {}
1403 void removeNodeFromList(SDNode *NTy) {}
1404 void transferNodesFromList(iplist<SDNode, ilist_traits> &L2,
1405 const ilist_iterator<SDNode> &X,
1406 const ilist_iterator<SDNode> &Y) {}
1407};
1408
Chris Lattner63b570d2005-01-07 07:45:27 +00001409} // end llvm namespace
1410
1411#endif