SelectionDAGNodes.h revision 63602b8a69b2729f0789cd3c920aceef0ece64cb
163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//===-- llvm/CodeGen/SelectionDAGNodes.h - SelectionDAG Nodes ---*- C++ -*-===//
2ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman//
363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//                     The LLVM Compiler Infrastructure
463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//
57ed47a13356daed2a34cd2209a31f92552e3bdd8Chris Lattner// This file is distributed under the University of Illinois Open Source
67ed47a13356daed2a34cd2209a31f92552e3bdd8Chris Lattner// License. See LICENSE.TXT for details.
7ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman//
863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//===----------------------------------------------------------------------===//
9ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman//
1063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner// This file declares the SDNode class and derived classes, which are used to
1163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner// represent the nodes and operations present in a SelectionDAG.  These nodes
1263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner// and operations are machine code level operations, with some similarities to
1363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner// the GCC RTL representation.
1463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//
1563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner// Clients should include the SelectionDAG.h file instead of this file directly.
1663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//
1763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//===----------------------------------------------------------------------===//
1863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner#ifndef LLVM_CODEGEN_SELECTIONDAGNODES_H
2063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner#define LLVM_CODEGEN_SELECTIONDAGNODES_H
2163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
222d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth#include "llvm/Value.h"
23583bd47f777fe3eb8305872fa0eadab31e833dffJim Laskey#include "llvm/ADT/FoldingSet.h"
241080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner#include "llvm/ADT/GraphTraits.h"
251080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner#include "llvm/ADT/iterator"
268bb369b8072c919ef5802f639a52b17620201190Dale Johannesen#include "llvm/ADT/APFloat.h"
276394b099e836f56a937cdcc7332c9487b504ca68Dan Gohman#include "llvm/ADT/APInt.h"
28d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng#include "llvm/CodeGen/ValueTypes.h"
2969de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman#include "llvm/CodeGen/MemOperand.h"
3039931a3dbac1aa2fe2ec14f26001c8c29102940cJeff Cohen#include "llvm/Support/DataTypes.h"
3163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner#include <cassert>
3263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
3363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnernamespace llvm {
3463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
3563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass SelectionDAG;
3663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass GlobalValue;
3763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass MachineBasicBlock;
38d6594ae54cfde4db4d30272192645c0a45fb9902Evan Chengclass MachineConstantPoolValue;
3963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass SDNode;
4076c1b97e4020faace8c95a127f1eab66c278fb58Chris Lattnertemplate <typename T> struct DenseMapInfo;
4163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnertemplate <typename T> struct simplify_type;
42b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattnertemplate <typename T> struct ilist_traits;
43b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattnertemplate<typename NodeTy, typename Traits> class iplist;
44b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattnertemplate<typename NodeTy> class ilist_iterator;
4563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
460b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner/// SDVTList - This represents a list of ValueType's that has been intern'd by
470b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner/// a SelectionDAG.  Instances of this simple value class are returned by
480b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner/// SelectionDAG::getVTList(...).
490b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner///
500b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattnerstruct SDVTList {
510b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner  const MVT::ValueType *VTs;
520b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner  unsigned short NumVTs;
530b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner};
540b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner
5563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// ISD namespace - This namespace contains an enum which represents all of the
5663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// SelectionDAG node types and value types.
5763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner///
5863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnernamespace ISD {
59d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov  namespace ParamFlags {
60d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov  enum Flags {
61d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    NoFlagSet         = 0,
62d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    ZExt              = 1<<0,  ///< Parameter should be zero extended
63d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    ZExtOffs          = 0,
64d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    SExt              = 1<<1,  ///< Parameter should be sign extended
65d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    SExtOffs          = 1,
66d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    InReg             = 1<<2,  ///< Parameter should be passed in register
67d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    InRegOffs         = 2,
68d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    StructReturn      = 1<<3,  ///< Hidden struct-return pointer
69d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    StructReturnOffs  = 3,
701aa7efbd2c98e761f50992197473304b99257ca9Rafael Espindola    ByVal             = 1<<4,  ///< Struct passed by value
711aa7efbd2c98e761f50992197473304b99257ca9Rafael Espindola    ByValOffs         = 4,
7236397f50343639ce9a25996f2d790c656791ab92Duncan Sands    Nest              = 1<<5,  ///< Parameter is nested function static chain
7336397f50343639ce9a25996f2d790c656791ab92Duncan Sands    NestOffs          = 5,
74594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    ByValAlign        = 0xF << 6, //< The alignment of the struct
75594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    ByValAlignOffs    = 6,
76594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    ByValSize         = 0x1ffff << 10, //< The size of the struct
77594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    ByValSizeOffs     = 10,
78d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    OrigAlignment     = 0x1F<<27,
79d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov    OrigAlignmentOffs = 27
80d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov  };
81d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov  }
82d0b82b301d700217a716526f9329bb031e0d6578Anton Korobeynikov
8363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  //===--------------------------------------------------------------------===//
8463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// ISD::NodeType enum - This enum defines all of the operators valid in a
8563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// SelectionDAG.
8663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
8763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  enum NodeType {
883258ed6a361bf405a89f7af0b1885841d9909516Chris Lattner    // DELETED_NODE - This is an illegal flag value that is used to catch
893258ed6a361bf405a89f7af0b1885841d9909516Chris Lattner    // errors.  This opcode is not a legal opcode for any node.
903258ed6a361bf405a89f7af0b1885841d9909516Chris Lattner    DELETED_NODE,
913258ed6a361bf405a89f7af0b1885841d9909516Chris Lattner
928a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner    // EntryToken - This is the marker used to indicate the start of the region.
938a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner    EntryToken,
948a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner
958c4bde36a339b1c538002e819daff84caae4cbadReid Spencer    // Token factor - This node takes multiple tokens as input and produces a
968a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner    // single token result.  This is used to represent the fact that the operand
978a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner    // operators are independent of each other.
988a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner    TokenFactor,
99f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman
100f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman    // AssertSext, AssertZext - These nodes record if a register contains a
101f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman    // value that has already been zero or sign extended from a narrower type.
102f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman    // These nodes take two operands.  The first is the node that has already
103f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman    // been extended, and the second is a value type node indicating the width
104f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman    // of the extension
105f7f3d321916c1ef3a82b2a175a368a148b1ede46Nate Begeman    AssertSext, AssertZext,
106ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
1078a496fcffdcba757412fc5cc6c772260ccfde000Chris Lattner    // Various leaf nodes.
1081ab7d859cf5c490612799d7e132c0b1c39f8f497Evan Cheng    STRING, BasicBlock, VALUETYPE, CONDCODE, Register,
1091ab7d859cf5c490612799d7e132c0b1c39f8f497Evan Cheng    Constant, ConstantFP,
110b3a0417cad8b625acc3033bd5e24afb9ffd0b084Lauro Ramos Venancio    GlobalAddress, GlobalTLSAddress, FrameIndex,
111b3a0417cad8b625acc3033bd5e24afb9ffd0b084Lauro Ramos Venancio    JumpTable, ConstantPool, ExternalSymbol,
1121ab7d859cf5c490612799d7e132c0b1c39f8f497Evan Cheng
11382c3d8f81ab20dc7571f29ffc46a5bb1b7ed8323Andrew Lenharth    // The address of the GOT
11482c3d8f81ab20dc7571f29ffc46a5bb1b7ed8323Andrew Lenharth    GLOBAL_OFFSET_TABLE,
115bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman
116bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman    // FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and
117bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman    // llvm.returnaddress on the DAG.  These nodes take one operand, the index
118bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman    // of the frame or return address to return.  An index of zero corresponds
119bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman    // to the current function's frame or return address, an index of one to the
120bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman    // parent's frame or return address, and so on.
121bcc5f36765e8111c13873a0c0dc874c92385d808Nate Begeman    FRAMEADDR, RETURNADDR,
1222365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov
1232365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to
1242365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // first (possible) on-stack argument. This is needed for correct stack
1252365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // adjustment during unwind.
1262365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    FRAME_TO_ARGS_OFFSET,
127f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey
128f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey    // RESULT, OUTCHAIN = EXCEPTIONADDR(INCHAIN) - This node represents the
129f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey    // address of the exception block on entry to an landing pad block.
130f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey    EXCEPTIONADDR,
131f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey
132f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey    // RESULT, OUTCHAIN = EHSELECTION(INCHAIN, EXCEPTION) - This node represents
133f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey    // the selection index of the exception thrown.
134f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey    EHSELECTION,
135beec30eaf301bd6882cd06800b5175b94f033f9dAndrew Lenharth
1362365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents
1372365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // 'eh_return' gcc dwarf builtin, which is used to return from
1382365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // exception. The general meaning is: adjust stack by OFFSET and pass
1392365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    // execution to HANDLER. Many platform-related details also :)
1402365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov    EH_RETURN,
1412365f51ed03afe6993bae962fdc2e5a956a64cd5Anton Korobeynikov
142ac0d7238258defe72b1aad53d7f48201b91df795Chris Lattner    // TargetConstant* - Like Constant*, but the DAG does not do any folding or
143ac0d7238258defe72b1aad53d7f48201b91df795Chris Lattner    // simplification of the constant.
144056f9f61d071c6c583951678f2bf543a1316efccChris Lattner    TargetConstant,
145ac0d7238258defe72b1aad53d7f48201b91df795Chris Lattner    TargetConstantFP,
146f6b184981e429ff03742d66cf7111debd9e2bc61Chris Lattner
147f6b184981e429ff03742d66cf7111debd9e2bc61Chris Lattner    // TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or
148f6b184981e429ff03742d66cf7111debd9e2bc61Chris Lattner    // anything else with this node, and this is valid in the target-specific
149f6b184981e429ff03742d66cf7111debd9e2bc61Chris Lattner    // dag, turning into a GlobalAddress operand.
150f6b184981e429ff03742d66cf7111debd9e2bc61Chris Lattner    TargetGlobalAddress,
151b3a0417cad8b625acc3033bd5e24afb9ffd0b084Lauro Ramos Venancio    TargetGlobalTLSAddress,
152afb2dd43de61f4585e75d1f3ab93a9ac4b3b7592Chris Lattner    TargetFrameIndex,
15337efe6764568a3829fee26aba532283131d1a104Nate Begeman    TargetJumpTable,
154aaaaf79d4aaa172c2f2ae0e327bbae523a045bf5Chris Lattner    TargetConstantPool,
1552a2de66db2093a5bc1fd620d1b6ae7992a552b24Andrew Lenharth    TargetExternalSymbol,
15672601cac6051a9571ca4db3b32d6a73e40b40bd1Chris Lattner
157ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...)
158ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// This node represents a target intrinsic function with no side effects.
159ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// The first operand is the ID number of the intrinsic from the
160ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// llvm::Intrinsic namespace.  The operands to the intrinsic follow.  The
161ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// node has returns the result of the intrinsic.
162ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    INTRINSIC_WO_CHAIN,
163ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner
164ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...)
165ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// This node represents a target intrinsic function with side effects that
166ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// returns a result.  The first operand is a chain pointer.  The second is
167ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// the ID number of the intrinsic from the llvm::Intrinsic namespace.  The
168ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// operands to the intrinsic follow.  The node has two results, the result
169ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// of the intrinsic and an output chain.
170ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    INTRINSIC_W_CHAIN,
17163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
172ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...)
173ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// This node represents a target intrinsic function with side effects that
174ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// does not return a result.  The first operand is a chain pointer.  The
175ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// second is the ID number of the intrinsic from the llvm::Intrinsic
176ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    /// namespace.  The operands to the intrinsic follow.
177ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner    INTRINSIC_VOID,
178ef8ef916348ad0da964687358e8be614e2470d67Chris Lattner
179d5d0f9bd20d9df07d6b4d41b7e8ed6d33b6a649dChris Lattner    // CopyToReg - This node has three operands: a chain, a register number to
180d5d0f9bd20d9df07d6b4d41b7e8ed6d33b6a649dChris Lattner    // set to this value, and a value.
18163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    CopyToReg,
18263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
18363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // CopyFromReg - This node indicates that the input value is a virtual or
18463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // physical register that is defined outside of the scope of this
185ab2a7542546bf781fa373e20095be0e344f5b3ccDan Gohman    // SelectionDAG.  The register is available from the RegisterSDNode object.
18663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    CopyFromReg,
18763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
188fc1b1dad88a256ab5ab16dd548ad82df8efa2ca9Nate Begeman    // UNDEF - An undefined node
189fc1b1dad88a256ab5ab16dd548ad82df8efa2ca9Nate Begeman    UNDEF,
190681ee1c1c3f7c3558c29a5bf3a668c1d0784c399Chris Lattner
191b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// FORMAL_ARGUMENTS(CHAIN, CC#, ISVARARG, FLAG0, ..., FLAGn) - This node
192b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// represents the formal arguments for a function.  CC# is a Constant value
193b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// indicating the calling convention of the function, and ISVARARG is a
194b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// flag that indicates whether the function is varargs or not. This node
195b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// has one result value for each incoming argument, plus one for the output
196b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// chain. It must be custom legalized. See description of CALL node for
197b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// FLAG argument contents explanation.
198c1a8ad71e11123f1e3c8d9913a7f51978b9967d5Chris Lattner    ///
199681ee1c1c3f7c3558c29a5bf3a668c1d0784c399Chris Lattner    FORMAL_ARGUMENTS,
2006c0bfc723779366698d3936b63dcddc6164c2d33Chris Lattner
2016c0bfc723779366698d3936b63dcddc6164c2d33Chris Lattner    /// RV1, RV2...RVn, CHAIN = CALL(CHAIN, CC#, ISVARARG, ISTAILCALL, CALLEE,
202b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    ///                              ARG0, FLAG0, ARG1, FLAG1, ... ARGn, FLAGn)
2036c0bfc723779366698d3936b63dcddc6164c2d33Chris Lattner    /// This node represents a fully general function call, before the legalizer
204b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// runs.  This has one result value for each argument / flag pair, plus
205b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// a chain result. It must be custom legalized. Flag argument indicates
206b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// misc. argument attributes. Currently:
207b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// Bit 0 - signness
208b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// Bit 1 - 'inreg' attribute
209b10308e440c80dd6ffb4b478f741ff7e5f30cb48Anton Korobeynikov    /// Bit 2 - 'sret' attribute
210594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    /// Bit 4 - 'byval' attribute
211594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    /// Bit 5 - 'nest' attribute
212594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    /// Bit 6-9 - alignment of byval structures
213594d37e21aea4ef841d9ee5d9c328c4bf1c6bed7Rafael Espindola    /// Bit 10-26 - size of byval structures
21413a3cee13133711eb95174a004dca4421ccd1cd9Lauro Ramos Venancio    /// Bits 31:27 - argument ABI alignment in the first argument piece and
21513a3cee13133711eb95174a004dca4421ccd1cd9Lauro Ramos Venancio    /// alignment '1' in other argument pieces.
2166c0bfc723779366698d3936b63dcddc6164c2d33Chris Lattner    CALL,
217fc1b1dad88a256ab5ab16dd548ad82df8efa2ca9Nate Begeman
21863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // EXTRACT_ELEMENT - This is used to get the first or second (determined by
21963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // a Constant, which is required to be operand #1), element of the aggregate
22063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // value specified as operand #0.  This is only for use before legalization,
22163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // for values that will be broken into multiple registers.
22263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    EXTRACT_ELEMENT,
22363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
22463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.  Given
22563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // two values of the same integer value type, this produces a value twice as
22663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // big.  Like EXTRACT_ELEMENT, this can only be used before legalization.
22763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    BUILD_PAIR,
228006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner
229006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner    // MERGE_VALUES - This node takes multiple discrete operands and returns
230006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner    // them all as its individual results.  This nodes has exactly the same
231006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner    // number of inputs and outputs, and is only valid before legalization.
232006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner    // This node is useful for some pieces of the code generator that want to
233006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner    // think about a single node with multiple results, not multiple nodes.
234006e3e3649b2e19762b7bc134292b781569685b0Chris Lattner    MERGE_VALUES,
23563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
236615c2d0920862ae7d4d766ee3da660ecf2197308Chris Lattner    // Simple integer binary arithmetic operators.
237bede0b7dd7c70792b09f6d38f6f2dfe7c1feb1d1Chris Lattner    ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
238fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman
239fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman    // SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing
240b36904be918b72cc4c714552d42d6a713f27bbf5Duncan Sands    // a signed/unsigned value of type i[2*N], and return the full value as
241fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman    // two results, each of type iN.
242fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman    SMUL_LOHI, UMUL_LOHI,
243fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman
244fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman    // SDIVREM/UDIVREM - Divide two integers and produce both a quotient and
245fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman    // remainder result.
246fdd04d5ddecb1d1f3030839520109308137b73dcDan Gohman    SDIVREM, UDIVREM,
247615c2d0920862ae7d4d766ee3da660ecf2197308Chris Lattner
24855e34eb31741f7902445cfa94fddde7a6910c408Chris Lattner    // CARRY_FALSE - This node is used when folding other nodes,
24955e34eb31741f7902445cfa94fddde7a6910c408Chris Lattner    // like ADDC/SUBC, which indicate the carry result is always false.
25055e34eb31741f7902445cfa94fddde7a6910c408Chris Lattner    CARRY_FALSE,
25155e34eb31741f7902445cfa94fddde7a6910c408Chris Lattner
252551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // Carry-setting nodes for multiple precision addition and subtraction.
253551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // These nodes take two operands of the same value type, and produce two
254551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // results.  The first result is the normal add or sub result, the second
255551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // result is the carry flag result.
256551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    ADDC, SUBC,
257551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman
258551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // Carry-using nodes for multiple precision addition and subtraction.  These
259551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // nodes take three operands: The first two are the normal lhs and rhs to
260551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // the add or sub, and the third is the input carry flag.  These nodes
261551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // produce two results; the normal result of the add or sub, and the output
262551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // carry flag.  These nodes both read and write a carry flag to allow them
263551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // to them to be chained together for add and sub of arbitrarily large
264551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    // values.
265551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman    ADDE, SUBE,
266551bf3f80058a026b6a128dffd5530019e1df1b9Nate Begeman
267615c2d0920862ae7d4d766ee3da660ecf2197308Chris Lattner    // Simple binary floating point operators.
268615c2d0920862ae7d4d766ee3da660ecf2197308Chris Lattner    FADD, FSUB, FMUL, FDIV, FREM,
26938bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner
27038bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner    // FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.  NOTE: This
27138bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner    // DAG node does not require that X and Y have the same type, just that they
27238bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner    // are both floating point.  X and the result must have the same type.
27338bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner    // FCOPYSIGN(f32, f64) is allowed.
27438bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner    FCOPYSIGN,
275fa984b61e42c94ad7e66cf2880ca826dba488d30Chris Lattner
2761a3048bb8e0f3de0b4e56704c15c556c71565f4bChris Lattner    // INT = FGETSIGN(FP) - Return the sign bit of the specified floating point
2771a3048bb8e0f3de0b4e56704c15c556c71565f4bChris Lattner    // value as an integer 0/1 value.
2781a3048bb8e0f3de0b4e56704c15c556c71565f4bChris Lattner    FGETSIGN,
2791a3048bb8e0f3de0b4e56704c15c556c71565f4bChris Lattner
280664e9546d674096c5a012536f1a424b1681ece51Dan Gohman    /// BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a vector
28122232f659bec0f4c23ec46445d3bd3c4deb68686Chris Lattner    /// with the specified, possibly variable, elements.  The number of elements
28222232f659bec0f4c23ec46445d3bd3c4deb68686Chris Lattner    /// is required to be a power of two.
28322232f659bec0f4c23ec46445d3bd3c4deb68686Chris Lattner    BUILD_VECTOR,
28422232f659bec0f4c23ec46445d3bd3c4deb68686Chris Lattner
2857f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element
2867f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// at IDX replaced with VAL.
28722232f659bec0f4c23ec46445d3bd3c4deb68686Chris Lattner    INSERT_VECTOR_ELT,
2884b8db6c453fd3a7b07bc7c0e8092018530701ffdChris Lattner
2894b8db6c453fd3a7b07bc7c0e8092018530701ffdChris Lattner    /// EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
2907f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// identified by the (potentially variable) element number IDX.
2914b8db6c453fd3a7b07bc7c0e8092018530701ffdChris Lattner    EXTRACT_VECTOR_ELT,
29222232f659bec0f4c23ec46445d3bd3c4deb68686Chris Lattner
2937f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of
2947f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// vector type with the same length and element type, this produces a
2957f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// concatenated vector result value, with length equal to the sum of the
296b6f5b00c3bad3415d3f2ee1a6d5ee5a6f66a4540Dan Gohman    /// lengths of the input vectors.
2977f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    CONCAT_VECTORS,
2986595635175764f402e7a5e53216c8d46bdce8c28Dan Gohman
2997f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR (an
3007f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// vector value) starting with the (potentially variable) element number
3017f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    /// IDX, which must be a multiple of the result vector length.
3027f32156bb9c017b71971c52fac892fa7b9b06dd2Dan Gohman    EXTRACT_SUBVECTOR,
3036595635175764f402e7a5e53216c8d46bdce8c28Dan Gohman
30449c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// VECTOR_SHUFFLE(VEC1, VEC2, SHUFFLEVEC) - Returns a vector, of the same
30549c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// type as VEC1/VEC2.  SHUFFLEVEC is a BUILD_VECTOR of constant int values
30649c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// (regardless of whether its datatype is legal or not) that indicate
30749c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// which value each result element will get.  The elements of VEC1/VEC2 are
30849c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// enumerated in order.  This is quite similar to the Altivec 'vperm'
30949c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// instruction, except that the indices must be constants and are in terms
31049c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    /// of the element size of VEC1/VEC2, not in terms of bytes.
31149c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner    VECTOR_SHUFFLE,
31249c6d3eba8869cf945f6c55ea243466e2b406fe8Chris Lattner
313210721aecc0916315f61660dc387a96b89ec423bChris Lattner    /// SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a
314a95afe2b5fb7a716ff4cc7bb623995a0a4c56411Nate Begeman    /// scalar value into element 0 of the resultant vector type.  The top
315a95afe2b5fb7a716ff4cc7bb623995a0a4c56411Nate Begeman    /// elements 1 to N-1 of the N-element vector are undefined.
316210721aecc0916315f61660dc387a96b89ec423bChris Lattner    SCALAR_TO_VECTOR,
317210721aecc0916315f61660dc387a96b89ec423bChris Lattner
318557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    // EXTRACT_SUBREG - This node is used to extract a sub-register value.
319557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    // This node takes a superreg and a constant sub-register index as operands.
320557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    EXTRACT_SUBREG,
321557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb
322557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    // INSERT_SUBREG - This node is used to insert a sub-register value.
323557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    // This node takes a superreg, a subreg value, and a constant sub-register
324557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    // index as operands.
325557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb    INSERT_SUBREG,
326557c3631d320c5731e55b6f818a1c7b2d4d97176Christopher Lamb
327bede0b7dd7c70792b09f6d38f6f2dfe7c1feb1d1Chris Lattner    // MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
328b36904be918b72cc4c714552d42d6a713f27bbf5Duncan Sands    // an unsigned/signed value of type i[2*N], then return the top part.
329bede0b7dd7c70792b09f6d38f6f2dfe7c1feb1d1Chris Lattner    MULHU, MULHS,
33063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
33135ef913ec21de0f4f1b39c811b4335438717a9b8Nate Begeman    // Bitwise operators - logical and, logical or, logical xor, shift left,
33235ef913ec21de0f4f1b39c811b4335438717a9b8Nate Begeman    // shift right algebraic (shift in sign bits), shift right logical (shift in
33335ef913ec21de0f4f1b39c811b4335438717a9b8Nate Begeman    // zeroes), rotate left, rotate right, and byteswap.
33435ef913ec21de0f4f1b39c811b4335438717a9b8Nate Begeman    AND, OR, XOR, SHL, SRA, SRL, ROTL, ROTR, BSWAP,
33563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
336691ef2ba066dda14ae4ac0ad645054fbc967785aAndrew Lenharth    // Counting operators
337691ef2ba066dda14ae4ac0ad645054fbc967785aAndrew Lenharth    CTTZ, CTLZ, CTPOP,
338691ef2ba066dda14ae4ac0ad645054fbc967785aAndrew Lenharth
339fa984b61e42c94ad7e66cf2880ca826dba488d30Chris Lattner    // Select(COND, TRUEVAL, FALSEVAL)
3409373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman    SELECT,
3419373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman
3429373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman    // Select with condition operator - This selects between a true value and
3439373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman    // a false value (ops #2 and #3) based on the boolean result of comparing
3449373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman    // the lhs and rhs (ops #0 and #1) of a conditional expression with the
3459373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman    // condition code in op #4, a CondCodeSDNode.
3469373a81e53ce5f9f2c06c4209b8b886605aece08Nate Begeman    SELECT_CC,
34763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
34863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // SetCC operator - This evaluates to a boolean (i1) true value if the
3497cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattner    // condition is true.  The operands to this are the left and right operands
3507cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattner    // to compare (ops #0, and #1) and the condition code to compare them with
3517cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattner    // (op #2) as a CondCodeSDNode.
35263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETCC,
35363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
35414c5b53c037a6a175118ed1a7d7e0e74153d56c4Chris Lattner    // SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
35514c5b53c037a6a175118ed1a7d7e0e74153d56c4Chris Lattner    // integer shift operations, just like ADD/SUB_PARTS.  The operation
35614c5b53c037a6a175118ed1a7d7e0e74153d56c4Chris Lattner    // ordering is:
3576b8f2d649c1e96e0222be9de1e5d6c79e3eef021Chris Lattner    //       [Lo,Hi] = op [LoLHS,HiLHS], Amt
35814c5b53c037a6a175118ed1a7d7e0e74153d56c4Chris Lattner    SHL_PARTS, SRA_PARTS, SRL_PARTS,
35914c5b53c037a6a175118ed1a7d7e0e74153d56c4Chris Lattner
36063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // Conversion operators.  These are all single input single output
36163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // operations.  For all of these, the result type must be strictly
36263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // wider or narrower (depending on the operation) than the source
36363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // type.
36463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
36563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // SIGN_EXTEND - Used for integer types, replicating the sign bit
36663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // into new bits.
36763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SIGN_EXTEND,
36863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
36963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // ZERO_EXTEND - Used for integer types, zeroing the new bits.
37063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    ZERO_EXTEND,
37163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
3727e122db776d9731dfe5acb7faa9da4f3c33ee5a1Chris Lattner    // ANY_EXTEND - Used for integer types.  The high bits are undefined.
3737e122db776d9731dfe5acb7faa9da4f3c33ee5a1Chris Lattner    ANY_EXTEND,
3747e122db776d9731dfe5acb7faa9da4f3c33ee5a1Chris Lattner
37563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // TRUNCATE - Completely drop the high bits.
37663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    TRUNCATE,
37763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
3781645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner    // [SU]INT_TO_FP - These operators convert integers (whose interpreted sign
3791645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner    // depends on the first letter) to floating point.
3801645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner    SINT_TO_FP,
3811645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner    UINT_TO_FP,
3821645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner
383ea5761068956b157832d67bcc9d5e8ba706f545cChris Lattner    // SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to
384ea5761068956b157832d67bcc9d5e8ba706f545cChris Lattner    // sign extend a small value in a large integer register (e.g. sign
385ea5761068956b157832d67bcc9d5e8ba706f545cChris Lattner    // extending the low 8 bits of a 32-bit register to fill the top 24 bits
38615e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner    // with the 7th bit).  The size of the smaller type is indicated by the 1th
38715e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner    // operand, a ValueType node.
388859157daee6a4b49e99921832e1dde065167b317Chris Lattner    SIGN_EXTEND_INREG,
389859157daee6a4b49e99921832e1dde065167b317Chris Lattner
3900bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// FP_TO_[US]INT - Convert a floating point value to a signed or unsigned
3910bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// integer.
3921645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner    FP_TO_SINT,
3931645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner    FP_TO_UINT,
3941645ed0b93901ec678cd54024c8b09bca632b296Chris Lattner
3950bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type
3960bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// down to the precision of the destination VT.  TRUNC is a flag, which is
3970bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// always an integer that is zero or one.  If TRUNC is 0, this is a
3980bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// normal rounding, if it is 1, this FP_ROUND is known to not change the
3990bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// value of Y.
4000bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    ///
4010bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// The TRUNC = 1 case is used in cases where we know that the value will
4020bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// not be modified by the node, because Y is not using any of the extra
4030bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// precision of source type.  This allows certain transformations like
4040bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// FP_EXTEND(FP_ROUND(X,1)) -> X which are not safe for
4050bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// FP_EXTEND(FP_ROUND(X,0)) because the extra bits aren't removed.
40663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    FP_ROUND,
4070bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner
4081a0248690aaa9f7baaf1247e5f65a1c0c9e3783cDan Gohman    // FLT_ROUNDS_ - Returns current rounding mode:
409917c2a6ff2cfcd1263a5dd80c54336754c553aceAnton Korobeynikov    // -1 Undefined
410917c2a6ff2cfcd1263a5dd80c54336754c553aceAnton Korobeynikov    //  0 Round to 0
411917c2a6ff2cfcd1263a5dd80c54336754c553aceAnton Korobeynikov    //  1 Round to nearest
412917c2a6ff2cfcd1263a5dd80c54336754c553aceAnton Korobeynikov    //  2 Round to +inf
413917c2a6ff2cfcd1263a5dd80c54336754c553aceAnton Korobeynikov    //  3 Round to -inf
4141a0248690aaa9f7baaf1247e5f65a1c0c9e3783cDan Gohman    FLT_ROUNDS_,
415917c2a6ff2cfcd1263a5dd80c54336754c553aceAnton Korobeynikov
4160bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// X = FP_ROUND_INREG(Y, VT) - This operator takes an FP register, and
4170bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// rounds it to a floating point value.  It then promotes it and returns it
4180bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// in a register of the same size.  This operation effectively just
4190bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// discards excess precision.  The type to round down to is specified by
4200bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// the VT operand, a VTSDNode.
421859157daee6a4b49e99921832e1dde065167b317Chris Lattner    FP_ROUND_INREG,
422859157daee6a4b49e99921832e1dde065167b317Chris Lattner
4230bd4893a0726889b942405262e53d06cf3fe3be8Chris Lattner    /// X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
42463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    FP_EXTEND,
42563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
4261ac1c4b9d2877bd2d15bcf578bc617a605d815b0Chris Lattner    // BIT_CONVERT - Theis operator converts between integer and FP values, as
4271ac1c4b9d2877bd2d15bcf578bc617a605d815b0Chris Lattner    // if one was stored to memory as integer and the other was loaded from the
42880f55abf009c86bc03821e10746832f88f8a735fChris Lattner    // same address (or equivalently for vector format conversions, etc).  The
42980f55abf009c86bc03821e10746832f88f8a735fChris Lattner    // source and result are required to have the same bit size (e.g.
43080f55abf009c86bc03821e10746832f88f8a735fChris Lattner    // f32 <-> i32).  This can also be used for int-to-int or fp-to-fp
43180f55abf009c86bc03821e10746832f88f8a735fChris Lattner    // conversions, but that is a noop, deleted by getNode().
4321ac1c4b9d2877bd2d15bcf578bc617a605d815b0Chris Lattner    BIT_CONVERT,
4331ac1c4b9d2877bd2d15bcf578bc617a605d815b0Chris Lattner
43407f04fd574a59c690f297fd10c2e0dd14093675eDan Gohman    // FNEG, FABS, FSQRT, FSIN, FCOS, FPOWI, FPOW - Perform unary floating point
43507f04fd574a59c690f297fd10c2e0dd14093675eDan Gohman    // negation, absolute value, square root, sine and cosine, powi, and pow
436dd2afb0e1f65bc41d2c0053468fcddfd696a8231Chris Lattner    // operations.
43707f04fd574a59c690f297fd10c2e0dd14093675eDan Gohman    FNEG, FABS, FSQRT, FSIN, FCOS, FPOWI, FPOW,
43838bf3bffe3abfd00169d6dcf4fad7e2197808dbfChris Lattner
4398862ef148100070b7bf28beead3951464250c926Evan Cheng    // LOAD and STORE have token chains as their first operand, then the same
4408862ef148100070b7bf28beead3951464250c926Evan Cheng    // operands as an LLVM load/store instruction, then an offset node that
4418862ef148100070b7bf28beead3951464250c926Evan Cheng    // is added / subtracted from the base pointer to form the address (for
4428862ef148100070b7bf28beead3951464250c926Evan Cheng    // indexed memory ops).
44363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    LOAD, STORE,
444ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth
44563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
44657fc00d5cf47343ba762493b8781ca0b14489c35Anton Korobeynikov    // to a specified boundary.  This node always has two return values: a new
44757fc00d5cf47343ba762493b8781ca0b14489c35Anton Korobeynikov    // stack pointer value and a chain. The first operand is the token chain,
44857fc00d5cf47343ba762493b8781ca0b14489c35Anton Korobeynikov    // the second is the number of bytes to allocate, and the third is the
44957fc00d5cf47343ba762493b8781ca0b14489c35Anton Korobeynikov    // alignment boundary.  The size is guaranteed to be a multiple of the stack
45057fc00d5cf47343ba762493b8781ca0b14489c35Anton Korobeynikov    // alignment, and the alignment is guaranteed to be bigger than the stack
45174fe063e90045931eefaba561730e6a9175ced78Chris Lattner    // alignment (if required) or 0 to get standard stack alignment.
45263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    DYNAMIC_STACKALLOC,
45363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
45463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // Control flow instructions.  These all have token chains.
455ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
45663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // BR - Unconditional branch.  The first operand is the chain
45763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // operand, the second is the MBB to branch to.
45863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    BR,
45963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
46037efe6764568a3829fee26aba532283131d1a104Nate Begeman    // BRIND - Indirect branch.  The first operand is the chain, the second
46137efe6764568a3829fee26aba532283131d1a104Nate Begeman    // is the value to branch to, which must be of the same type as the target's
46237efe6764568a3829fee26aba532283131d1a104Nate Begeman    // pointer type.
46337efe6764568a3829fee26aba532283131d1a104Nate Begeman    BRIND,
464c41cd9c391f1f69adf416145a5a1308d7ce342fcEvan Cheng
465c41cd9c391f1f69adf416145a5a1308d7ce342fcEvan Cheng    // BR_JT - Jumptable branch. The first operand is the chain, the second
466c41cd9c391f1f69adf416145a5a1308d7ce342fcEvan Cheng    // is the jumptable index, the last one is the jumptable entry index.
467c41cd9c391f1f69adf416145a5a1308d7ce342fcEvan Cheng    BR_JT,
46837efe6764568a3829fee26aba532283131d1a104Nate Begeman
46963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // BRCOND - Conditional branch.  The first operand is the chain,
47063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // the second is the condition, the third is the block to branch
47163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // to if the condition is true.
47263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    BRCOND,
47363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
4747cbd525ba85ebe440d15fa359ec940e404d14906Nate Begeman    // BR_CC - Conditional branch.  The behavior is like that of SELECT_CC, in
4757cbd525ba85ebe440d15fa359ec940e404d14906Nate Begeman    // that the condition is represented as condition code, and two nodes to
4767cbd525ba85ebe440d15fa359ec940e404d14906Nate Begeman    // compare, rather than as a combined SetCC node.  The operands in order are
4777cbd525ba85ebe440d15fa359ec940e404d14906Nate Begeman    // chain, cc, lhs, rhs, block to branch to if condition is true.
4787cbd525ba85ebe440d15fa359ec940e404d14906Nate Begeman    BR_CC,
4797cbd525ba85ebe440d15fa359ec940e404d14906Nate Begeman
48063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // RET - Return from function.  The first operand is the chain,
4818e7d056bc5c0688501f6721994c8f4074d699c69Evan Cheng    // and any subsequent operands are pairs of return value and return value
4828e7d056bc5c0688501f6721994c8f4074d699c69Evan Cheng    // signness for the function.  This operation can have variable number of
4838e7d056bc5c0688501f6721994c8f4074d699c69Evan Cheng    // operands.
48463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    RET,
48563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
4867572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    // INLINEASM - Represents an inline asm block.  This node always has two
4877572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    // return values: a chain and a flag result.  The inputs are as follows:
4887572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    //   Operand #0   : Input chain.
4897572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    //   Operand #1   : a ExternalSymbolSDNode with a pointer to the asm string.
4907572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    //   Operand #2n+2: A RegisterNode.
4917572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    //   Operand #2n+3: A TargetConstant, indicating if the reg is a use/def
4927572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    //   Operand #last: Optional, an incoming flag.
4937572eb81eee93b0c666ddc5f5ff0ff72f17574fdChris Lattner    INLINEASM,
4941ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey
4951ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey    // LABEL - Represents a label in mid basic block used to track
4961ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey    // locations needed for debug and exception handling tables.  This node
4971ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey    // returns a chain.
4981ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey    //   Operand #0 : input chain.
4991ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey    //   Operand #1 : module unique number use to identify the label.
500bb81d97feb396a8bb21d074db1c57e9f66525f40Evan Cheng    //   Operand #2 : 0 indicates a debug label (e.g. stoppoint), 1 indicates
501bb81d97feb396a8bb21d074db1c57e9f66525f40Evan Cheng    //                a EH label, 2 indicates unknown label type.
5021ee29257428960fede862fcfdbe80d5d007927e9Jim Laskey    LABEL,
503a844bdeab31ef04221e7ef59a8467893584cc14dEvan Cheng
504a844bdeab31ef04221e7ef59a8467893584cc14dEvan Cheng    // DECLARE - Represents a llvm.dbg.declare intrinsic. It's used to track
505a844bdeab31ef04221e7ef59a8467893584cc14dEvan Cheng    // local variable declarations for debugging information. First operand is
506a844bdeab31ef04221e7ef59a8467893584cc14dEvan Cheng    // a chain, while the next two operands are first two arguments (address
507a844bdeab31ef04221e7ef59a8467893584cc14dEvan Cheng    // and variable) of a llvm.dbg.declare instruction.
508a844bdeab31ef04221e7ef59a8467893584cc14dEvan Cheng    DECLARE,
509f09f2e304dc82010d2e02a9b40a8c5fb0091490cJim Laskey
5105a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    // STACKSAVE - STACKSAVE has one operand, an input chain.  It produces a
5115a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    // value, the same type as the pointer type for the system, and an output
5125a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    // chain.
5135a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    STACKSAVE,
5145a67afc118d47a0061ca9809c763451ea3125306Chris Lattner
5155a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    // STACKRESTORE has two operands, an input chain and a pointer to restore to
5165a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    // it returns an output chain.
5175a67afc118d47a0061ca9809c763451ea3125306Chris Lattner    STACKRESTORE,
5185a67afc118d47a0061ca9809c763451ea3125306Chris Lattner
5195c0d6ed325417baa5d119af9c2b6790231d8565fRafael Espindola    // MEMSET/MEMCPY/MEMMOVE - The first operand is the chain. The following
5205c0d6ed325417baa5d119af9c2b6790231d8565fRafael Espindola    // correspond to the operands of the LLVM intrinsic functions and the last
5215c0d6ed325417baa5d119af9c2b6790231d8565fRafael Espindola    // one is AlwaysInline.  The only result is a token chain.  The alignment
5225c0d6ed325417baa5d119af9c2b6790231d8565fRafael Espindola    // argument is guaranteed to be a Constant node.
523ef36aa75d7df2bb67e8bfb0da7c43c1b331611e4Chris Lattner    MEMSET,
524ef36aa75d7df2bb67e8bfb0da7c43c1b331611e4Chris Lattner    MEMMOVE,
525ef36aa75d7df2bb67e8bfb0da7c43c1b331611e4Chris Lattner    MEMCPY,
526ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
52716cd04d26c53c6f81313cafb85f6c0e7a07cdff6Chris Lattner    // CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of
52816cd04d26c53c6f81313cafb85f6c0e7a07cdff6Chris Lattner    // a call sequence, and carry arbitrary information that target might want
52916cd04d26c53c6f81313cafb85f6c0e7a07cdff6Chris Lattner    // to know.  The first operand is a chain, the rest are specified by the
53016cd04d26c53c6f81313cafb85f6c0e7a07cdff6Chris Lattner    // target and not touched by the DAG optimizers.
53116cd04d26c53c6f81313cafb85f6c0e7a07cdff6Chris Lattner    CALLSEQ_START,  // Beginning of a call sequence
53216cd04d26c53c6f81313cafb85f6c0e7a07cdff6Chris Lattner    CALLSEQ_END,    // End of a call sequence
533acc398c195a697795bff3245943d104eb19192b9Nate Begeman
534acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // VAARG - VAARG has three operands: an input chain, a pointer, and a
535acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // SRCVALUE.  It returns a pair of values: the vaarg value and a new chain.
536acc398c195a697795bff3245943d104eb19192b9Nate Begeman    VAARG,
537acc398c195a697795bff3245943d104eb19192b9Nate Begeman
538acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // VACOPY - VACOPY has five operands: an input chain, a destination pointer,
539acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // a source pointer, a SRCVALUE for the destination, and a SRCVALUE for the
540acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // source.
541acc398c195a697795bff3245943d104eb19192b9Nate Begeman    VACOPY,
542acc398c195a697795bff3245943d104eb19192b9Nate Begeman
543acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // VAEND, VASTART - VAEND and VASTART have three operands: an input chain, a
544acc398c195a697795bff3245943d104eb19192b9Nate Begeman    // pointer, and a SRCVALUE.
545acc398c195a697795bff3245943d104eb19192b9Nate Begeman    VAEND, VASTART,
54663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
54769de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    // SRCVALUE - This is a node type that holds a Value* that is used to
54869de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    // make reference to a value in the LLVM IR.
54921074f43ed5165828717ea3606eb2bd222a39b26Chris Lattner    SRCVALUE,
55021074f43ed5165828717ea3606eb2bd222a39b26Chris Lattner
55169de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    // MEMOPERAND - This is a node that contains a MemOperand which records
55269de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    // information about a memory reference. This is used to make AliasAnalysis
55369de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    // queries from the backend.
55469de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    MEMOPERAND,
55569de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman
556e3f570c3f9048bc71a9f5841343eae63719e439bMisha Brukman    // PCMARKER - This corresponds to the pcmarker intrinsic.
55795762124a1d781cc0f8cbc4c22e9c5c1358d7ea0Andrew Lenharth    PCMARKER,
55863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
559aeef8fc5c6124a34bd2a723071a3982b559c26f2Andrew Lenharth    // READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
5608b91c77385a055474d271aa8c10f0382fdeaafebAndrew Lenharth    // The only operand is a chain and a value and a chain are produced.  The
5618b91c77385a055474d271aa8c10f0382fdeaafebAndrew Lenharth    // value is the contents of the architecture specific cycle counter like
5628b91c77385a055474d271aa8c10f0382fdeaafebAndrew Lenharth    // register (or other high accuracy low latency clock source)
563aeef8fc5c6124a34bd2a723071a3982b559c26f2Andrew Lenharth    READCYCLECOUNTER,
564aeef8fc5c6124a34bd2a723071a3982b559c26f2Andrew Lenharth
565d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner    // HANDLENODE node - Used as a handle for various purposes.
566d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner    HANDLENODE,
5672d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth
56847725d059b259f8a0c145478300c9e9caa006b59Chris Lattner    // LOCATION - This node is used to represent a source location for debug
56947725d059b259f8a0c145478300c9e9caa006b59Chris Lattner    // info.  It takes token chain as input, then a line number, then a column
57047725d059b259f8a0c145478300c9e9caa006b59Chris Lattner    // number, then a filename, then a working dir.  It produces a token chain
57147725d059b259f8a0c145478300c9e9caa006b59Chris Lattner    // as output.
57247725d059b259f8a0c145478300c9e9caa006b59Chris Lattner    LOCATION,
57347725d059b259f8a0c145478300c9e9caa006b59Chris Lattner
574f5395cee6a24699a016b2e379cf4804b09ce5030Jim Laskey    // DEBUG_LOC - This node is used to represent source line information
575abf6d1784b2d4bbcb7d20ab64881f77d755059f6Jim Laskey    // embedded in the code.  It takes a token chain as input, then a line
57644c3b9fdd416c79f4b67cde1aecfced5921efd81Jim Laskey    // number, then a column then a file id (provided by MachineModuleInfo.) It
577abf6d1784b2d4bbcb7d20ab64881f77d755059f6Jim Laskey    // produces a token chain as output.
578f5395cee6a24699a016b2e379cf4804b09ce5030Jim Laskey    DEBUG_LOC,
57936397f50343639ce9a25996f2d790c656791ab92Duncan Sands
58036397f50343639ce9a25996f2d790c656791ab92Duncan Sands    // TRAMPOLINE - This corresponds to the init_trampoline intrinsic.
58136397f50343639ce9a25996f2d790c656791ab92Duncan Sands    // It takes as input a token chain, the pointer to the trampoline,
58236397f50343639ce9a25996f2d790c656791ab92Duncan Sands    // the pointer to the nested function, the pointer to pass for the
58336397f50343639ce9a25996f2d790c656791ab92Duncan Sands    // 'nest' parameter, a SRCVALUE for the trampoline and another for
58436397f50343639ce9a25996f2d790c656791ab92Duncan Sands    // the nested function (allowing targets to access the original
585f7331b3dd72409e644833ecaf62a0f6db03c97eeDuncan Sands    // Function*).  It produces the result of the intrinsic and a token
586f7331b3dd72409e644833ecaf62a0f6db03c97eeDuncan Sands    // chain as output.
58736397f50343639ce9a25996f2d790c656791ab92Duncan Sands    TRAMPOLINE,
58836397f50343639ce9a25996f2d790c656791ab92Duncan Sands
58966fac79b899904ddd82e5ee354a6d370d80230f6Anton Korobeynikov    // TRAP - Trapping instruction
59066fac79b899904ddd82e5ee354a6d370d80230f6Anton Korobeynikov    TRAP,
59166fac79b899904ddd82e5ee354a6d370d80230f6Anton Korobeynikov
59222c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth    // OUTCHAIN = MEMBARRIER(INCHAIN, load-load, load-store, store-load,
59322c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth    //                       store-store, device)
594ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // This corresponds to the memory.barrier intrinsic.
59522c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth    // it takes an input chain, 4 operands to specify the type of barrier, an
59622c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth    // operand specifying if the barrier applies to device and uncached memory
59722c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth    // and produces an output chain.
59822c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth    MEMBARRIER,
59922c5c1b2dfcb1da6a7ebfebea903401fc77d56e6Andrew Lenharth
600ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // Val, OUTCHAIN = ATOMIC_LCS(INCHAIN, ptr, cmp, swap)
601ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // this corresponds to the atomic.lcs intrinsic.
602ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // cmp is compared to *ptr, and if equal, swap is stored in *ptr.
603ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // the return is always the original value in *ptr
604ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    ATOMIC_LCS,
605ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth
606ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // Val, OUTCHAIN = ATOMIC_LAS(INCHAIN, ptr, amt)
607ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // this corresponds to the atomic.las intrinsic.
608ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // *ptr + amt is stored to *ptr atomically.
609ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // the return is always the original value in *ptr
610ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    ATOMIC_LAS,
611ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth
612ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt)
613ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // this corresponds to the atomic.swap intrinsic.
614ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // amt is stored to *ptr atomically.
615ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    // the return is always the original value in *ptr
616ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    ATOMIC_SWAP,
617ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth
61863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // BUILTIN_OP_END - This must be the last enum value in this list.
619410354fe0c052141dadeca939395743f8dd58e38Chris Lattner    BUILTIN_OP_END
62063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  };
62163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
622322dcd379eb19ea8d01478a661920ea1ce62fa0dChris Lattner  /// Node predicates
623322dcd379eb19ea8d01478a661920ea1ce62fa0dChris Lattner
624a8df166fbef047c90adba3c673162a1b1f6681c4Evan Cheng  /// isBuildVectorAllOnes - Return true if the specified node is a
625322dcd379eb19ea8d01478a661920ea1ce62fa0dChris Lattner  /// BUILD_VECTOR where all of the elements are ~0 or undef.
626a8df166fbef047c90adba3c673162a1b1f6681c4Evan Cheng  bool isBuildVectorAllOnes(const SDNode *N);
6274a147842eb24a7611fcd7bfb37c55185b4664927Evan Cheng
6284a147842eb24a7611fcd7bfb37c55185b4664927Evan Cheng  /// isBuildVectorAllZeros - Return true if the specified node is a
6294a147842eb24a7611fcd7bfb37c55185b4664927Evan Cheng  /// BUILD_VECTOR where all of the elements are 0 or undef.
6304a147842eb24a7611fcd7bfb37c55185b4664927Evan Cheng  bool isBuildVectorAllZeros(const SDNode *N);
631bb81d97feb396a8bb21d074db1c57e9f66525f40Evan Cheng
632efec751a1b786724862ceff52748df94873a807eEvan Cheng  /// isScalarToVector - Return true if the specified node is a
633efec751a1b786724862ceff52748df94873a807eEvan Cheng  /// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
634efec751a1b786724862ceff52748df94873a807eEvan Cheng  /// element is not an undef.
635efec751a1b786724862ceff52748df94873a807eEvan Cheng  bool isScalarToVector(const SDNode *N);
636efec751a1b786724862ceff52748df94873a807eEvan Cheng
637bb81d97feb396a8bb21d074db1c57e9f66525f40Evan Cheng  /// isDebugLabel - Return true if the specified node represents a debug
638fc718542a3e73558af9c0272b0eea67a189e5397Evan Cheng  /// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
639bb81d97feb396a8bb21d074db1c57e9f66525f40Evan Cheng  /// is 0).
640bb81d97feb396a8bb21d074db1c57e9f66525f40Evan Cheng  bool isDebugLabel(const SDNode *N);
641322dcd379eb19ea8d01478a661920ea1ce62fa0dChris Lattner
64263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  //===--------------------------------------------------------------------===//
643144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng  /// MemIndexedMode enum - This enum defines the load / store indexed
644144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng  /// addressing modes.
64524446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///
64624446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  /// UNINDEXED    "Normal" load / store. The effective address is already
64724446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///              computed and is available in the base pointer. The offset
64881c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              operand is always undefined. In addition to producing a
64981c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              chain, an unindexed load produces one value (result of the
65081c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              load); an unindexed store does not produces a value.
65124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///
65235acd30a2e96a5a4ad9fa837971af2cc583bcd1fEvan Cheng  /// PRE_INC      Similar to the unindexed mode where the effective address is
6538862ef148100070b7bf28beead3951464250c926Evan Cheng  /// PRE_DEC      the value of the base pointer add / subtract the offset.
6548862ef148100070b7bf28beead3951464250c926Evan Cheng  ///              It considers the computation as being folded into the load /
65524446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///              store operation (i.e. the load / store does the address
65624446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///              computation as well as performing the memory transaction).
65781c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              The base operand is always undefined. In addition to
65881c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              producing a chain, pre-indexed load produces two values
65981c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              (result of the load and the result of the address
66081c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              computation); a pre-indexed store produces one value (result
66181c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ///              of the address computation).
66224446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///
66335acd30a2e96a5a4ad9fa837971af2cc583bcd1fEvan Cheng  /// POST_INC     The effective address is the value of the base pointer. The
6648862ef148100070b7bf28beead3951464250c926Evan Cheng  /// POST_DEC     value of the offset operand is then added to / subtracted
6658862ef148100070b7bf28beead3951464250c926Evan Cheng  ///              from the base after memory transaction. In addition to
6668862ef148100070b7bf28beead3951464250c926Evan Cheng  ///              producing a chain, post-indexed load produces two values
6678862ef148100070b7bf28beead3951464250c926Evan Cheng  ///              (the result of the load and the result of the base +/- offset
6688862ef148100070b7bf28beead3951464250c926Evan Cheng  ///              computation); a post-indexed store produces one value (the
6698862ef148100070b7bf28beead3951464250c926Evan Cheng  ///              the result of the base +/- offset computation).
67024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///
671144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng  enum MemIndexedMode {
67224446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    UNINDEXED = 0,
67335acd30a2e96a5a4ad9fa837971af2cc583bcd1fEvan Cheng    PRE_INC,
67435acd30a2e96a5a4ad9fa837971af2cc583bcd1fEvan Cheng    PRE_DEC,
67535acd30a2e96a5a4ad9fa837971af2cc583bcd1fEvan Cheng    POST_INC,
676144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng    POST_DEC,
677144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng    LAST_INDEXED_MODE
67824446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  };
67924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng
68024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  //===--------------------------------------------------------------------===//
681c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// LoadExtType enum - This enum defines the three variants of LOADEXT
682c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// (load with extension).
683c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  ///
68424446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  /// SEXTLOAD loads the integer operand and sign extends it to a larger
68524446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///          integer result type.
68624446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  /// ZEXTLOAD loads the integer operand and zero extends it to a larger
68724446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///          integer result type.
68824446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  /// EXTLOAD  is used for three things: floating point extending loads,
68924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///          integer extending loads [the top bits are undefined], and vector
69024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///          extending loads [load into low elt].
69124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ///
692c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  enum LoadExtType {
69324446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    NON_EXTLOAD = 0,
694c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng    EXTLOAD,
695c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng    SEXTLOAD,
696c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng    ZEXTLOAD,
697c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng    LAST_LOADX_TYPE
698c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  };
699c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
700c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  //===--------------------------------------------------------------------===//
70163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// ISD::CondCode enum - These are ordered carefully to make the bitfields
70263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// below work out, when considering SETFALSE (something that never exists
70363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// dynamically) as 0.  "U" -> Unsigned (for integer operands) or Unordered
70463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// (for floating point), "L" -> Less than, "G" -> Greater than, "E" -> Equal
70563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// to.  If the "N" column is 1, the result of the comparison is undefined if
70663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// the input is a NAN.
70763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
70863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// All of these (except for the 'always folded ops') should be handled for
70963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// floating point.  For integer, only the SETEQ,SETNE,SETLT,SETLE,SETGT,
71063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// SETGE,SETULT,SETULE,SETUGT, and SETUGE opcodes are used.
71163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
71263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// Note that these are laid out in a specific order to allow bit-twiddling
71363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// to transform conditions.
71463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  enum CondCode {
71563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // Opcode          N U L G E       Intuitive operation
71663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETFALSE,      //    0 0 0 0       Always false (always folded)
71763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETOEQ,        //    0 0 0 1       True if ordered and equal
71863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETOGT,        //    0 0 1 0       True if ordered and greater than
71963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETOGE,        //    0 0 1 1       True if ordered and greater than or equal
72063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETOLT,        //    0 1 0 0       True if ordered and less than
72163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETOLE,        //    0 1 0 1       True if ordered and less than or equal
72263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETONE,        //    0 1 1 0       True if ordered and operands are unequal
72363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETO,          //    0 1 1 1       True if ordered (no nans)
72463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETUO,         //    1 0 0 0       True if unordered: isnan(X) | isnan(Y)
72563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETUEQ,        //    1 0 0 1       True if unordered or equal
72663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETUGT,        //    1 0 1 0       True if unordered or greater than
72763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETUGE,        //    1 0 1 1       True if unordered, greater than, or equal
72863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETULT,        //    1 1 0 0       True if unordered or less than
729ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman    SETULE,        //    1 1 0 1       True if unordered, less than, or equal
73063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETUNE,        //    1 1 1 0       True if unordered or not equal
73163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETTRUE,       //    1 1 1 1       Always true (always folded)
73263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    // Don't care operations: undefined if the input is a nan.
73363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETFALSE2,     //  1 X 0 0 0       Always false (always folded)
73463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETEQ,         //  1 X 0 0 1       True if equal
73563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETGT,         //  1 X 0 1 0       True if greater than
73663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETGE,         //  1 X 0 1 1       True if greater than or equal
73763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETLT,         //  1 X 1 0 0       True if less than
738ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman    SETLE,         //  1 X 1 0 1       True if less than or equal
73963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETNE,         //  1 X 1 1 0       True if not equal
74063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    SETTRUE2,      //  1 X 1 1 1       Always true (always folded)
74163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
742410354fe0c052141dadeca939395743f8dd58e38Chris Lattner    SETCC_INVALID       // Marker value.
74363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  };
74463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
74563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// isSignedIntSetCC - Return true if this is a setcc instruction that
74663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// performs a signed comparison when used with integer operands.
74763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline bool isSignedIntSetCC(CondCode Code) {
74863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
74963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
75063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
75163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// isUnsignedIntSetCC - Return true if this is a setcc instruction that
75263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// performs an unsigned comparison when used with integer operands.
75363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline bool isUnsignedIntSetCC(CondCode Code) {
75463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE;
75563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
75663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
75763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// isTrueWhenEqual - Return true if the specified condition returns true if
75863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// the two operands to the condition are equal.  Note that if one of the two
75963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// operands is a NaN, this value is meaningless.
76063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline bool isTrueWhenEqual(CondCode Cond) {
76163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return ((int)Cond & 1) != 0;
76263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
76363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
76463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getUnorderedFlavor - This function returns 0 if the condition is always
76563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// false if an operand is a NaN, 1 if the condition is always true if the
76663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// operand is a NaN, and 2 if the condition is undefined if the operand is a
76763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// NaN.
76863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline unsigned getUnorderedFlavor(CondCode Cond) {
76963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return ((int)Cond >> 3) & 3;
77063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
77163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
77263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
77363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// 'op' is a valid SetCC operation.
77463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  CondCode getSetCCInverse(CondCode Operation, bool isInteger);
77563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
77663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
77763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// when given the operation for (X op Y).
77863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  CondCode getSetCCSwappedOperands(CondCode Operation);
77963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
78063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getSetCCOrOperation - Return the result of a logical OR between different
78163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This
78263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// function returns SETCC_INVALID if it is not possible to represent the
78363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// resultant comparison.
78463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  CondCode getSetCCOrOperation(CondCode Op1, CondCode Op2, bool isInteger);
78563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
78663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getSetCCAndOperation - Return the result of a logical AND between
78763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// different comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
78863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// function returns SETCC_INVALID if it is not possible to represent the
78963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// resultant comparison.
79063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  CondCode getSetCCAndOperation(CondCode Op1, CondCode Op2, bool isInteger);
79163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner}  // end llvm::ISD namespace
79263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
79363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
79463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner//===----------------------------------------------------------------------===//
79563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// SDOperand - Unlike LLVM values, Selection DAG nodes may return multiple
79663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// values as the result of a computation.  Many nodes return multiple values,
79763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// from loads (which define a token and a return value) to ADDC (which returns
79863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// a result and a carry value), to calls (which may return an arbitrary number
79963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// of values).
80063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner///
80163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// As such, each use of a SelectionDAG computation must indicate the node that
80263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// computes it as well as which return value to use from that node.  This pair
80363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// of information is represented with the SDOperand value type.
80463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner///
805f26bc8ef4827cf0023a7052b62b920b41813d473Chris Lattnerclass SDOperand {
806f26bc8ef4827cf0023a7052b62b920b41813d473Chris Lattnerpublic:
80763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  SDNode *Val;        // The node defining the value we are using.
80863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  unsigned ResNo;     // Which return value of the node we are using.
80963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
810ace44dbbabe9ee0498834957632df2af0dbf9c59Reid Spencer  SDOperand() : Val(0), ResNo(0) {}
81163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  SDOperand(SDNode *val, unsigned resno) : Val(val), ResNo(resno) {}
81263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
81363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool operator==(const SDOperand &O) const {
81463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return Val == O.Val && ResNo == O.ResNo;
81563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
81663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool operator!=(const SDOperand &O) const {
81763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return !operator==(O);
81863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
81963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool operator<(const SDOperand &O) const {
82063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return Val < O.Val || (Val == O.Val && ResNo < O.ResNo);
82163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
82263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
82363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  SDOperand getValue(unsigned R) const {
82463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return SDOperand(Val, R);
82563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
82663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
827bfa284f69752c54f81bffc2b0d15d5c1e618a659Evan Cheng  // isOperand - Return true if this node is an operand of N.
828bfa284f69752c54f81bffc2b0d15d5c1e618a659Evan Cheng  bool isOperand(SDNode *N) const;
829bfa284f69752c54f81bffc2b0d15d5c1e618a659Evan Cheng
83063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getValueType - Return the ValueType of the referenced return value.
83163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
83263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline MVT::ValueType getValueType() const;
833ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
8344fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  /// getValueSizeInBits - Returns MVT::getSizeInBits(getValueType()).
8354fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  ///
8364fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  unsigned getValueSizeInBits() const {
8374fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman    return MVT::getSizeInBits(getValueType());
8384fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  }
8394fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman
84063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  // Forwarding methods - These forward to the corresponding methods in SDNode.
84163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline unsigned getOpcode() const;
84263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline unsigned getNumOperands() const;
84363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  inline const SDOperand &getOperand(unsigned i) const;
844c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  inline uint64_t getConstantOperandVal(unsigned i) const;
8450f66a9172175aa7c3055333358170581c999219bNate Begeman  inline bool isTargetOpcode() const;
8460f66a9172175aa7c3055333358170581c999219bNate Begeman  inline unsigned getTargetOpcode() const;
847a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattner
848572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner
849572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner  /// reachesChainWithoutSideEffects - Return true if this operand (which must
850572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner  /// be a chain) reaches the specified operand without crossing any
851572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner  /// side-effecting instructions.  In practice, this looks through token
852572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner  /// factors and non-volatile loads.  In order to remain efficient, this only
853572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner  /// looks a couple of nodes in, it does not do an exhaustive search.
854572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner  bool reachesChainWithoutSideEffects(SDOperand Dest, unsigned Depth = 2) const;
855572dee71af1313e6742e1dfd5274fff326b9ef1cChris Lattner
856a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattner  /// hasOneUse - Return true if there is exactly one operation using this
857a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattner  /// result value of the defining operator.
858a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattner  inline bool hasOneUse() const;
859e1b50639a860934685dff840e1826b16dbe6a344Dan Gohman
860e1b50639a860934685dff840e1826b16dbe6a344Dan Gohman  /// use_empty - Return true if there are no operations using this
861e1b50639a860934685dff840e1826b16dbe6a344Dan Gohman  /// result value of the defining operator.
862e1b50639a860934685dff840e1826b16dbe6a344Dan Gohman  inline bool use_empty() const;
86363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
86463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
86563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
86676c1b97e4020faace8c95a127f1eab66c278fb58Chris Lattnertemplate<> struct DenseMapInfo<SDOperand> {
867c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng  static inline SDOperand getEmptyKey() { return SDOperand((SDNode*)-1, -1U); }
868c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng  static inline SDOperand getTombstoneKey() { return SDOperand((SDNode*)-1, 0);}
869c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng  static unsigned getHashValue(const SDOperand &Val) {
870ae9f3a3b7c915f725aef5a7250e88eaeddda03c6Anton Korobeynikov    return ((unsigned)((uintptr_t)Val.Val >> 4) ^
871ae9f3a3b7c915f725aef5a7250e88eaeddda03c6Anton Korobeynikov            (unsigned)((uintptr_t)Val.Val >> 9)) + Val.ResNo;
872c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng  }
87376c1b97e4020faace8c95a127f1eab66c278fb58Chris Lattner  static bool isEqual(const SDOperand &LHS, const SDOperand &RHS) {
87476c1b97e4020faace8c95a127f1eab66c278fb58Chris Lattner    return LHS == RHS;
87576c1b97e4020faace8c95a127f1eab66c278fb58Chris Lattner  }
876c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng  static bool isPod() { return true; }
877c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng};
878c63d391c9a886d58c6a53a7f565fbd544b076d9fEvan Cheng
87963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// simplify_type specializations - Allow casting operators to work directly on
88063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// SDOperands as if they were SDNode*'s.
88163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnertemplate<> struct simplify_type<SDOperand> {
88263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  typedef SDNode* SimpleType;
88363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static SimpleType getSimplifiedValue(const SDOperand &Val) {
88463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return static_cast<SimpleType>(Val.Val);
88563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
88663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
88763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnertemplate<> struct simplify_type<const SDOperand> {
88863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  typedef SDNode* SimpleType;
88963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static SimpleType getSimplifiedValue(const SDOperand &Val) {
89063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return static_cast<SimpleType>(Val.Val);
89163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
89263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
89363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
89463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
89563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner/// SDNode - Represents one node in the SelectionDAG.
89663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner///
897583bd47f777fe3eb8305872fa0eadab31e833dffJim Laskeyclass SDNode : public FoldingSetNode {
8980442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner  /// NodeType - The operation that this node performs.
8990442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner  ///
9000442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner  unsigned short NodeType;
90163e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner
90263e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  /// OperandsNeedDelete - This is true if OperandList was new[]'d.  If true,
90363e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  /// then they will be delete[]'d when the node is destroyed.
90463e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  bool OperandsNeedDelete : 1;
9050442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner
906b9ee9e60a905b90fa3e84c5c6091af6e5a0382d2Evan Cheng  /// NodeId - Unique id per SDNode in the DAG.
907b9ee9e60a905b90fa3e84c5c6091af6e5a0382d2Evan Cheng  int NodeId;
9080442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner
909f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  /// OperandList - The values that are used by this operation.
9100442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner  ///
911f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  SDOperand *OperandList;
912f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner
913f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  /// ValueList - The types of the values this node defines.  SDNode's may
914f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  /// define multiple values simultaneously.
9152fa6d3b1fcadbde90eaee0e8e89aebd81630b662Chris Lattner  const MVT::ValueType *ValueList;
91663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
917f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  /// NumOperands/NumValues - The number of entries in the Operand/Value list.
918f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  unsigned short NumOperands, NumValues;
919b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
920b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  /// Prev/Next pointers - These pointers form the linked list of of the
921b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  /// AllNodes list in the current DAG.
922b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  SDNode *Prev, *Next;
923b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  friend struct ilist_traits<SDNode>;
92463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
92563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// Uses - These are all of the SDNode's that use a value produced by this
92663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// node.
9275892d47a625638a90afeb31dd4f6f80a2f9bacdeChris Lattner  SmallVector<SDNode*,3> Uses;
928917d2c9dc2cc8879ed97533e7f75f3f92fa26b61Chris Lattner
929917d2c9dc2cc8879ed97533e7f75f3f92fa26b61Chris Lattner  // Out-of-line virtual method to give class a home.
930917d2c9dc2cc8879ed97533e7f75f3f92fa26b61Chris Lattner  virtual void ANCHOR();
93163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
932b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  virtual ~SDNode() {
933b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner    assert(NumOperands == 0 && "Operand list not cleared before deletion");
9343258ed6a361bf405a89f7af0b1885841d9909516Chris Lattner    NodeType = ISD::DELETED_NODE;
935b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  }
936b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
93763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  //===--------------------------------------------------------------------===//
93863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  //  Accessors
93963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  //
94063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  unsigned getOpcode()  const { return NodeType; }
9410f66a9172175aa7c3055333358170581c999219bNate Begeman  bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; }
9420f66a9172175aa7c3055333358170581c999219bNate Begeman  unsigned getTargetOpcode() const {
9430f66a9172175aa7c3055333358170581c999219bNate Begeman    assert(isTargetOpcode() && "Not a target opcode!");
9440f66a9172175aa7c3055333358170581c999219bNate Begeman    return NodeType - ISD::BUILTIN_OP_END;
9450f66a9172175aa7c3055333358170581c999219bNate Begeman  }
94663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
94763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  size_t use_size() const { return Uses.size(); }
94863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool use_empty() const { return Uses.empty(); }
94963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool hasOneUse() const { return Uses.size() == 1; }
95063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
951b9ee9e60a905b90fa3e84c5c6091af6e5a0382d2Evan Cheng  /// getNodeId - Return the unique node id.
952b9ee9e60a905b90fa3e84c5c6091af6e5a0382d2Evan Cheng  ///
953b9ee9e60a905b90fa3e84c5c6091af6e5a0382d2Evan Cheng  int getNodeId() const { return NodeId; }
9540442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner
9552e07d33f04c513f3c2da3d7b1acfc098f02c7a6eEvan Cheng  /// setNodeId - Set unique node id.
9562e07d33f04c513f3c2da3d7b1acfc098f02c7a6eEvan Cheng  void setNodeId(int Id) { NodeId = Id; }
9572e07d33f04c513f3c2da3d7b1acfc098f02c7a6eEvan Cheng
9585892d47a625638a90afeb31dd4f6f80a2f9bacdeChris Lattner  typedef SmallVector<SDNode*,3>::const_iterator use_iterator;
9597ece380440238ad0630a225b85a09a2dbed1165aChris Lattner  use_iterator use_begin() const { return Uses.begin(); }
9607ece380440238ad0630a225b85a09a2dbed1165aChris Lattner  use_iterator use_end() const { return Uses.end(); }
9617ece380440238ad0630a225b85a09a2dbed1165aChris Lattner
962b18a2f816cc9d1351ca8e380a6db5c5ef981943eChris Lattner  /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
963b18a2f816cc9d1351ca8e380a6db5c5ef981943eChris Lattner  /// indicated value.  This method ignores uses of other values defined by this
964b18a2f816cc9d1351ca8e380a6db5c5ef981943eChris Lattner  /// operation.
9654ee621125876cc954cba5280dd9395552755a871Evan Cheng  bool hasNUsesOfValue(unsigned NUses, unsigned Value) const;
9664ee621125876cc954cba5280dd9395552755a871Evan Cheng
96733d5595d667ba4a880bd7fe785724e8197bef70cEvan Cheng  /// hasAnyUseOfValue - Return true if there are any use of the indicated
96833d5595d667ba4a880bd7fe785724e8197bef70cEvan Cheng  /// value. This method ignores uses of other values defined by this operation.
96933d5595d667ba4a880bd7fe785724e8197bef70cEvan Cheng  bool hasAnyUseOfValue(unsigned Value) const;
97033d5595d667ba4a880bd7fe785724e8197bef70cEvan Cheng
971e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  /// isOnlyUse - Return true if this node is the only use of N.
972e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  ///
9734ee621125876cc954cba5280dd9395552755a871Evan Cheng  bool isOnlyUse(SDNode *N) const;
974b18a2f816cc9d1351ca8e380a6db5c5ef981943eChris Lattner
975e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  /// isOperand - Return true if this node is an operand of N.
976e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  ///
97780d8eaae05d9bcb25abf6c6f0385ec2554355f26Evan Cheng  bool isOperand(SDNode *N) const;
97880d8eaae05d9bcb25abf6c6f0385ec2554355f26Evan Cheng
979e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  /// isPredecessor - Return true if this node is a predecessor of N. This node
980e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  /// is either an operand of N or it can be reached by recursively traversing
981e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  /// up the operands.
982e6e97e66a366cc7d2d103ac58db56e4bfd700b10Evan Cheng  /// NOTE: this is an expensive method. Use it carefully.
9837ceebb437ebb18efefe72d8d2d0e9c762c3aa6b3Evan Cheng  bool isPredecessor(SDNode *N) const;
9847ceebb437ebb18efefe72d8d2d0e9c762c3aa6b3Evan Cheng
98563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getNumOperands - Return the number of values used by this operation.
98663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
987f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  unsigned getNumOperands() const { return NumOperands; }
98863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
989c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// getConstantOperandVal - Helper method returns the integer value of a
990c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// ConstantSDNode operand.
991c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  uint64_t getConstantOperandVal(unsigned Num) const;
992c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
99363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  const SDOperand &getOperand(unsigned Num) const {
994f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner    assert(Num < NumOperands && "Invalid child # of SDNode!");
995f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner    return OperandList[Num];
99663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
997c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
998f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  typedef const SDOperand* op_iterator;
999f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  op_iterator op_begin() const { return OperandList; }
1000f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  op_iterator op_end() const { return OperandList+NumOperands; }
100150f5a51f41d36c519de68ff11fbf7c7c76f45416Chris Lattner
100263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
10030b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner  SDVTList getVTList() const {
10040b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner    SDVTList X = { ValueList, NumValues };
10050b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner    return X;
10060b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner  };
10070b3e525a3a6b55b66dc5676675712b26e4c1ed9fChris Lattner
100863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getNumValues - Return the number of values defined/returned by this
100963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// operator.
101063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
1011f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  unsigned getNumValues() const { return NumValues; }
101263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
101363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// getValueType - Return the type of a specified result.
101463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ///
101563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  MVT::ValueType getValueType(unsigned ResNo) const {
1016f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner    assert(ResNo < NumValues && "Illegal result number!");
1017f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner    return ValueList[ResNo];
101863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
10199eb59ec548b861d6ede05b4e6dc22aabf645e665Jeff Cohen
10204fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  /// getValueSizeInBits - Returns MVT::getSizeInBits(getValueType(ResNo)).
10214fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  ///
10224fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  unsigned getValueSizeInBits(unsigned ResNo) const {
10234fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman    return MVT::getSizeInBits(getValueType(ResNo));
10244fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman  }
10254fc3d5dac255120e2f0c0b537044fcf56a30fa34Dan Gohman
1026f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  typedef const MVT::ValueType* value_iterator;
1027f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  value_iterator value_begin() const { return ValueList; }
1028f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  value_iterator value_end() const { return ValueList+NumValues; }
102963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
10306e6e3ceb080e5a8bdfd3258d883a06ebbd8a1965Chris Lattner  /// getOperationName - Return the opcode of this operation for printing.
10316e6e3ceb080e5a8bdfd3258d883a06ebbd8a1965Chris Lattner  ///
1032ded5ed873fa7cd85f0b9d7c677b81dddf9a61eaaReid Spencer  std::string getOperationName(const SelectionDAG *G = 0) const;
1033144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng  static const char* getIndexedModeName(ISD::MemIndexedMode AM);
103463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  void dump() const;
1035efe58694050e48b61584b8454434dcd1ad886a71Chris Lattner  void dump(const SelectionDAG *G) const;
103663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
103763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *) { return true; }
103863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1039583bd47f777fe3eb8305872fa0eadab31e833dffJim Laskey  /// Profile - Gather unique data for the node.
1040583bd47f777fe3eb8305872fa0eadab31e833dffJim Laskey  ///
1041583bd47f777fe3eb8305872fa0eadab31e833dffJim Laskey  void Profile(FoldingSetNodeID &ID);
1042583bd47f777fe3eb8305872fa0eadab31e833dffJim Laskey
104363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
104463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1045109654fae9c5b8b96bd3a829824cdbceb27ced06Chris Lattner
1046109654fae9c5b8b96bd3a829824cdbceb27ced06Chris Lattner  /// getValueTypeList - Return a pointer to the specified value type.
1047109654fae9c5b8b96bd3a829824cdbceb27ced06Chris Lattner  ///
1048547ca537b638c8fd5c8f4729e4c74898f8371e4eDan Gohman  static const MVT::ValueType *getValueTypeList(MVT::ValueType VT);
104963e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  static SDVTList getSDVTList(MVT::ValueType VT) {
105063e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner    SDVTList Ret = { getValueTypeList(VT), 1 };
105163e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner    return Ret;
10522d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  }
105363e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner
1054ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner  SDNode(unsigned Opc, SDVTList VTs, const SDOperand *Ops, unsigned NumOps)
1055b9ee9e60a905b90fa3e84c5c6091af6e5a0382d2Evan Cheng    : NodeType(Opc), NodeId(-1) {
105663e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner    OperandsNeedDelete = true;
1057f06f35e30b4c4d7db304f717a3d4dc6595fbd078Chris Lattner    NumOperands = NumOps;
1058bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    OperandList = NumOps ? new SDOperand[NumOperands] : 0;
1059f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner
1060bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    for (unsigned i = 0; i != NumOps; ++i) {
1061f06f35e30b4c4d7db304f717a3d4dc6595fbd078Chris Lattner      OperandList[i] = Ops[i];
1062bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner      Ops[i].Val->Uses.push_back(this);
10630442fbfadbeea21eee9df88dc466d95e040dde6bChris Lattner    }
1064bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
1065ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    ValueList = VTs.VTs;
1066ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    NumValues = VTs.NumVTs;
1067b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner    Prev = 0; Next = 0;
1068f71e843f651ad94e19f85daa947fe24312b40d11Chris Lattner  }
1069bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  SDNode(unsigned Opc, SDVTList VTs) : NodeType(Opc), NodeId(-1) {
1070bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    OperandsNeedDelete = false;  // Operands set with InitOperands.
1071bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    NumOperands = 0;
1072bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    OperandList = 0;
1073bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
1074bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    ValueList = VTs.VTs;
1075bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    NumValues = VTs.NumVTs;
1076bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    Prev = 0; Next = 0;
1077bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  }
1078bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
1079bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  /// InitOperands - Initialize the operands list of this node with the
1080bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  /// specified values, which are part of the node (thus they don't need to be
1081bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  /// copied in or allocated).
1082bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  void InitOperands(SDOperand *Ops, unsigned NumOps) {
1083bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    assert(OperandList == 0 && "Operands already set!");
1084bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    NumOperands = NumOps;
1085bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    OperandList = Ops;
1086bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
1087bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    for (unsigned i = 0; i != NumOps; ++i)
1088bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner      Ops[i].Val->Uses.push_back(this);
1089bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  }
1090bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
1091d429bcd4ac734540ebbc15a0ee37d154ae1daf73Chris Lattner  /// MorphNodeTo - This frees the operands of the current node, resets the
1092d429bcd4ac734540ebbc15a0ee37d154ae1daf73Chris Lattner  /// opcode, types, and operands to the specified value.  This should only be
1093d429bcd4ac734540ebbc15a0ee37d154ae1daf73Chris Lattner  /// used by the SelectionDAG class.
1094d429bcd4ac734540ebbc15a0ee37d154ae1daf73Chris Lattner  void MorphNodeTo(unsigned Opc, SDVTList L,
1095d429bcd4ac734540ebbc15a0ee37d154ae1daf73Chris Lattner                   const SDOperand *Ops, unsigned NumOps);
10961b95095857b78e12138c22e76c7936611c51355bChris Lattner
10978c3484c5181834e6b7060a6064ac769878101f23Chris Lattner  void addUser(SDNode *User) {
10988c3484c5181834e6b7060a6064ac769878101f23Chris Lattner    Uses.push_back(User);
10991b95095857b78e12138c22e76c7936611c51355bChris Lattner  }
1100d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner  void removeUser(SDNode *User) {
1101d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner    // Remove this user from the operand's use list.
1102d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner    for (unsigned i = Uses.size(); ; --i) {
1103d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner      assert(i != 0 && "Didn't find user!");
1104d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner      if (Uses[i-1] == User) {
11058c3484c5181834e6b7060a6064ac769878101f23Chris Lattner        Uses[i-1] = Uses.back();
11068c3484c5181834e6b7060a6064ac769878101f23Chris Lattner        Uses.pop_back();
11078c3484c5181834e6b7060a6064ac769878101f23Chris Lattner        return;
1108d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner      }
1109d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner    }
1110d1fc96499b7619356c7542200d32da898b79f7c1Chris Lattner  }
111163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
111263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
111363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
111463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner// Define inline functions from the SDOperand class.
111563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
111663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerinline unsigned SDOperand::getOpcode() const {
111763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  return Val->getOpcode();
111863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner}
111963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerinline MVT::ValueType SDOperand::getValueType() const {
112063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  return Val->getValueType(ResNo);
112163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner}
112263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerinline unsigned SDOperand::getNumOperands() const {
112363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  return Val->getNumOperands();
112463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner}
112563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerinline const SDOperand &SDOperand::getOperand(unsigned i) const {
112663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  return Val->getOperand(i);
112763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner}
1128c548428c5d7328592f4db6f6cd815af18b3152a3Evan Chenginline uint64_t SDOperand::getConstantOperandVal(unsigned i) const {
1129c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  return Val->getConstantOperandVal(i);
1130c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng}
11310f66a9172175aa7c3055333358170581c999219bNate Begemaninline bool SDOperand::isTargetOpcode() const {
11320f66a9172175aa7c3055333358170581c999219bNate Begeman  return Val->isTargetOpcode();
11330f66a9172175aa7c3055333358170581c999219bNate Begeman}
11340f66a9172175aa7c3055333358170581c999219bNate Begemaninline unsigned SDOperand::getTargetOpcode() const {
11350f66a9172175aa7c3055333358170581c999219bNate Begeman  return Val->getTargetOpcode();
11360f66a9172175aa7c3055333358170581c999219bNate Begeman}
1137a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattnerinline bool SDOperand::hasOneUse() const {
1138a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattner  return Val->hasNUsesOfValue(1, ResNo);
1139a44f4aeca77c6c1627568fe68e92af9c7e33dc7eChris Lattner}
1140e1b50639a860934685dff840e1826b16dbe6a344Dan Gohmaninline bool SDOperand::use_empty() const {
1141e1b50639a860934685dff840e1826b16dbe6a344Dan Gohman  return !Val->hasAnyUseOfValue(ResNo);
1142e1b50639a860934685dff840e1826b16dbe6a344Dan Gohman}
114363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
11443f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner/// UnarySDNode - This class is used for single-operand SDNodes.  This is solely
11453f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner/// to allow co-allocation of node operands with the node itself.
11463f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattnerclass UnarySDNode : public SDNode {
11473f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
11483f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  SDOperand Op;
11493f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattnerpublic:
11503f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  UnarySDNode(unsigned Opc, SDVTList VTs, SDOperand X)
11513f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    : SDNode(Opc, VTs), Op(X) {
11523f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    InitOperands(&Op, 1);
11533f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  }
11543f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner};
11553f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner
11563f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner/// BinarySDNode - This class is used for two-operand SDNodes.  This is solely
11573f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner/// to allow co-allocation of node operands with the node itself.
11583f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattnerclass BinarySDNode : public SDNode {
11593f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
11603f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  SDOperand Ops[2];
11613f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattnerpublic:
11623f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  BinarySDNode(unsigned Opc, SDVTList VTs, SDOperand X, SDOperand Y)
11633f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    : SDNode(Opc, VTs) {
11643f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    Ops[0] = X;
11653f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    Ops[1] = Y;
11663f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    InitOperands(Ops, 2);
11673f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  }
11683f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner};
11693f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner
11703f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner/// TernarySDNode - This class is used for three-operand SDNodes. This is solely
11713f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner/// to allow co-allocation of node operands with the node itself.
11723f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattnerclass TernarySDNode : public SDNode {
11733f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
11743f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  SDOperand Ops[3];
11753f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattnerpublic:
11763f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  TernarySDNode(unsigned Opc, SDVTList VTs, SDOperand X, SDOperand Y,
11773f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner                SDOperand Z)
11783f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    : SDNode(Opc, VTs) {
11793f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    Ops[0] = X;
11803f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    Ops[1] = Y;
11813f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    Ops[2] = Z;
11823f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner    InitOperands(Ops, 3);
11833f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner  }
11843f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner};
11853f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner
11863f97eb449b08069e3370d4ba7566c60bdbf0babdChris Lattner
1187d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner/// HandleSDNode - This class is used to form a handle around another node that
1188d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner/// is persistant and is updated across invocations of replaceAllUsesWith on its
1189d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner/// operand.  This node should be directly created by end-users and not added to
1190d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner/// the AllNodes list.
1191d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattnerclass HandleSDNode : public SDNode {
1192c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
1193bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  SDOperand Op;
1194d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattnerpublic:
1195423c2260f95883f7c84ac962e58ac66c3a11efacDan Gohman  explicit HandleSDNode(SDOperand X)
1196bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(ISD::HANDLENODE, getSDVTList(MVT::Other)), Op(X) {
1197bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    InitOperands(&Op, 1);
1198bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  }
119948b85926524f9d29ae600123c90194cd73fd629eChris Lattner  ~HandleSDNode();
1200bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner  SDOperand getValue() const { return Op; }
1201d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner};
1202d623e953fc5f46b013994dfa4651cff4d17af159Chris Lattner
1203ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharthclass AtomicSDNode : public SDNode {
1204ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
1205ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth  SDOperand Ops[4];
1206ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth  MVT::ValueType OrigVT;
1207ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharthpublic:
1208c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth  AtomicSDNode(unsigned Opc, SDVTList VTL, SDOperand Chain, SDOperand Ptr,
1209c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth               SDOperand Cmp, SDOperand Swp, MVT::ValueType VT)
1210ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    : SDNode(Opc, VTL) {
1211ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    Ops[0] = Chain;
1212c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth    Ops[1] = Ptr;
1213c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth    Ops[2] = Swp;
1214c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth    Ops[3] = Cmp;
1215ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    InitOperands(Ops, 4);
1216ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    OrigVT=VT;
1217ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth  }
1218c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth  AtomicSDNode(unsigned Opc, SDVTList VTL, SDOperand Chain, SDOperand Ptr,
1219c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth               SDOperand Val, MVT::ValueType VT)
1220ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    : SDNode(Opc, VTL) {
1221ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    Ops[0] = Chain;
1222c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth    Ops[1] = Ptr;
1223c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth    Ops[2] = Val;
1224ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    InitOperands(Ops, 3);
1225ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth    OrigVT=VT;
1226ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth  }
1227ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth  MVT::ValueType getVT() const { return OrigVT; }
1228c1c7bd610a1647d8e7eaeb4cc38ca1a85ae5e271Andrew Lenharth  bool isCompareAndSwap() const { return getOpcode() == ISD::ATOMIC_LCS; }
1229ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth};
1230ab0b949e0e9de452f3b052b11634ab761e008b23Andrew Lenharth
123147725d059b259f8a0c145478300c9e9caa006b59Chris Lattnerclass StringSDNode : public SDNode {
123247725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  std::string Value;
1233c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
123447725d059b259f8a0c145478300c9e9caa006b59Chris Lattnerprotected:
123547725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  friend class SelectionDAG;
1236423c2260f95883f7c84ac962e58ac66c3a11efacDan Gohman  explicit StringSDNode(const std::string &val)
1237bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(ISD::STRING, getSDVTList(MVT::Other)), Value(val) {
123847725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  }
123947725d059b259f8a0c145478300c9e9caa006b59Chris Lattnerpublic:
124047725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  const std::string &getValue() const { return Value; }
124147725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  static bool classof(const StringSDNode *) { return true; }
124247725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  static bool classof(const SDNode *N) {
124347725d059b259f8a0c145478300c9e9caa006b59Chris Lattner    return N->getOpcode() == ISD::STRING;
124447725d059b259f8a0c145478300c9e9caa006b59Chris Lattner  }
124547725d059b259f8a0c145478300c9e9caa006b59Chris Lattner};
124663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
124763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass ConstantSDNode : public SDNode {
12486394b099e836f56a937cdcc7332c9487b504ca68Dan Gohman  APInt Value;
1249c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
125063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
125163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
12526394b099e836f56a937cdcc7332c9487b504ca68Dan Gohman  ConstantSDNode(bool isTarget, const APInt &val, MVT::ValueType VT)
1253bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, getSDVTList(VT)),
1254bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner      Value(val) {
125563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
125663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
125763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
12586394b099e836f56a937cdcc7332c9487b504ca68Dan Gohman  const APInt &getAPIntValue() const { return Value; }
12596394b099e836f56a937cdcc7332c9487b504ca68Dan Gohman  uint64_t getValue() const { return Value.getZExtValue(); }
126063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
126163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  int64_t getSignExtended() const {
126263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    unsigned Bits = MVT::getSizeInBits(getValueType(0));
12636394b099e836f56a937cdcc7332c9487b504ca68Dan Gohman    return ((int64_t)Value.getZExtValue() << (64-Bits)) >> (64-Bits);
126463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
126563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
126663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool isNullValue() const { return Value == 0; }
126763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  bool isAllOnesValue() const {
1268885a87ef8512a184a58a0ebe39705ccb221749efChris Lattner    return Value == MVT::getIntVTBitMask(getValueType(0));
126963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
127063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
127163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const ConstantSDNode *) { return true; }
127263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
1273056f9f61d071c6c583951678f2bf543a1316efccChris Lattner    return N->getOpcode() == ISD::Constant ||
1274056f9f61d071c6c583951678f2bf543a1316efccChris Lattner           N->getOpcode() == ISD::TargetConstant;
127563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
127663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
127763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
127863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass ConstantFPSDNode : public SDNode {
12798bb369b8072c919ef5802f639a52b17620201190Dale Johannesen  APFloat Value;
1280c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
128163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
128263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1283e6c1742914149d44360fbf05a653041a672282afDale Johannesen  ConstantFPSDNode(bool isTarget, const APFloat& val, MVT::ValueType VT)
128487503a63d5756f1836f66f4c9723ec0ea30ec3caDale Johannesen    : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP,
128587503a63d5756f1836f66f4c9723ec0ea30ec3caDale Johannesen             getSDVTList(VT)), Value(val) {
128663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
128763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
128863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1289e6c1742914149d44360fbf05a653041a672282afDale Johannesen  const APFloat& getValueAPF() const { return Value; }
129063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
129163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// isExactlyValue - We don't rely on operator== working on double values, as
129263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
129363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// As such, this method can be used to do an exact bit-for-bit comparison of
129463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  /// two floating point values.
1295c4dd3c3b519aa2c2ed26ce03a4b1fbb992efeacaDale Johannesen
1296c4dd3c3b519aa2c2ed26ce03a4b1fbb992efeacaDale Johannesen  /// We leave the version with the double argument here because it's just so
1297c4dd3c3b519aa2c2ed26ce03a4b1fbb992efeacaDale Johannesen  /// convenient to write "2.0" and the like.  Without this function we'd
1298c4dd3c3b519aa2c2ed26ce03a4b1fbb992efeacaDale Johannesen  /// have to duplicate its logic everywhere it's called.
129987503a63d5756f1836f66f4c9723ec0ea30ec3caDale Johannesen  bool isExactlyValue(double V) const {
130084cd0e7fa30af43c47ad9533d84debb144596e48Chris Lattner    APFloat Tmp(V);
130184cd0e7fa30af43c47ad9533d84debb144596e48Chris Lattner    Tmp.convert(Value.getSemantics(), APFloat::rmNearestTiesToEven);
130284cd0e7fa30af43c47ad9533d84debb144596e48Chris Lattner    return isExactlyValue(Tmp);
130387503a63d5756f1836f66f4c9723ec0ea30ec3caDale Johannesen  }
1304e6c1742914149d44360fbf05a653041a672282afDale Johannesen  bool isExactlyValue(const APFloat& V) const;
130563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1306f04afdbb48568ef09f11fd10ac03426101f2dbf8Dale Johannesen  bool isValueValidForType(MVT::ValueType VT, const APFloat& Val);
1307f04afdbb48568ef09f11fd10ac03426101f2dbf8Dale Johannesen
130863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const ConstantFPSDNode *) { return true; }
130963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
1310ac0d7238258defe72b1aad53d7f48201b91df795Chris Lattner    return N->getOpcode() == ISD::ConstantFP ||
1311ac0d7238258defe72b1aad53d7f48201b91df795Chris Lattner           N->getOpcode() == ISD::TargetConstantFP;
131263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
131363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
131463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
131563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass GlobalAddressSDNode : public SDNode {
131663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  GlobalValue *TheGlobal;
1317404cb4f9fa2df50eac4d84b8a77c84a92188c6d5Evan Cheng  int Offset;
1318c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
131963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
132063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
132161ca74bc3a29b2af2be7e4bd612289da8aae85b5Evan Cheng  GlobalAddressSDNode(bool isTarget, const GlobalValue *GA, MVT::ValueType VT,
13222c5c111b6c144b05718404c85b9dfcc76b1619e7Lauro Ramos Venancio                      int o = 0);
132363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
132463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
132563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  GlobalValue *getGlobal() const { return TheGlobal; }
1326404cb4f9fa2df50eac4d84b8a77c84a92188c6d5Evan Cheng  int getOffset() const { return Offset; }
132763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
132863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const GlobalAddressSDNode *) { return true; }
132963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
1330f6b184981e429ff03742d66cf7111debd9e2bc61Chris Lattner    return N->getOpcode() == ISD::GlobalAddress ||
1331b3a0417cad8b625acc3033bd5e24afb9ffd0b084Lauro Ramos Venancio           N->getOpcode() == ISD::TargetGlobalAddress ||
1332b3a0417cad8b625acc3033bd5e24afb9ffd0b084Lauro Ramos Venancio           N->getOpcode() == ISD::GlobalTLSAddress ||
1333b3a0417cad8b625acc3033bd5e24afb9ffd0b084Lauro Ramos Venancio           N->getOpcode() == ISD::TargetGlobalTLSAddress;
133463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
133563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
133663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
133763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass FrameIndexSDNode : public SDNode {
133863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  int FI;
1339c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
134063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
134163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1342afb2dd43de61f4585e75d1f3ab93a9ac4b3b7592Chris Lattner  FrameIndexSDNode(int fi, MVT::ValueType VT, bool isTarg)
1343bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(isTarg ? ISD::TargetFrameIndex : ISD::FrameIndex, getSDVTList(VT)),
1344bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner      FI(fi) {
134563e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  }
134663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
134763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
134863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  int getIndex() const { return FI; }
134963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
135063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const FrameIndexSDNode *) { return true; }
135163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
1352afb2dd43de61f4585e75d1f3ab93a9ac4b3b7592Chris Lattner    return N->getOpcode() == ISD::FrameIndex ||
1353afb2dd43de61f4585e75d1f3ab93a9ac4b3b7592Chris Lattner           N->getOpcode() == ISD::TargetFrameIndex;
135463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
135563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
135663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
135737efe6764568a3829fee26aba532283131d1a104Nate Begemanclass JumpTableSDNode : public SDNode {
135837efe6764568a3829fee26aba532283131d1a104Nate Begeman  int JTI;
1359c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
136037efe6764568a3829fee26aba532283131d1a104Nate Begemanprotected:
136137efe6764568a3829fee26aba532283131d1a104Nate Begeman  friend class SelectionDAG;
136237efe6764568a3829fee26aba532283131d1a104Nate Begeman  JumpTableSDNode(int jti, MVT::ValueType VT, bool isTarg)
1363bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable, getSDVTList(VT)),
1364bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner      JTI(jti) {
136563e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  }
136637efe6764568a3829fee26aba532283131d1a104Nate Begemanpublic:
136737efe6764568a3829fee26aba532283131d1a104Nate Begeman
136859a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  int getIndex() const { return JTI; }
136937efe6764568a3829fee26aba532283131d1a104Nate Begeman
137037efe6764568a3829fee26aba532283131d1a104Nate Begeman  static bool classof(const JumpTableSDNode *) { return true; }
137137efe6764568a3829fee26aba532283131d1a104Nate Begeman  static bool classof(const SDNode *N) {
137237efe6764568a3829fee26aba532283131d1a104Nate Begeman    return N->getOpcode() == ISD::JumpTable ||
137337efe6764568a3829fee26aba532283131d1a104Nate Begeman           N->getOpcode() == ISD::TargetJumpTable;
137437efe6764568a3829fee26aba532283131d1a104Nate Begeman  }
137537efe6764568a3829fee26aba532283131d1a104Nate Begeman};
137637efe6764568a3829fee26aba532283131d1a104Nate Begeman
137763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass ConstantPoolSDNode : public SDNode {
1378d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  union {
1379d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Constant *ConstVal;
1380d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    MachineConstantPoolValue *MachineCPVal;
1381d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  } Val;
1382baf4500b3ab128c78932e36f96086c0487c8c7d1Evan Cheng  int Offset;  // It's a MachineConstantPoolValue if top bit is set.
1383b8973bd8f50d7321635e1e07b81a880a0828d185Evan Cheng  unsigned Alignment;
1384c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
138563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
138663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1387404cb4f9fa2df50eac4d84b8a77c84a92188c6d5Evan Cheng  ConstantPoolSDNode(bool isTarget, Constant *c, MVT::ValueType VT,
1388404cb4f9fa2df50eac4d84b8a77c84a92188c6d5Evan Cheng                     int o=0)
1389ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1390bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner             getSDVTList(VT)), Offset(o), Alignment(0) {
1391d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    assert((int)Offset >= 0 && "Offset is too large");
1392d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Val.ConstVal = c;
1393d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
1394404cb4f9fa2df50eac4d84b8a77c84a92188c6d5Evan Cheng  ConstantPoolSDNode(bool isTarget, Constant *c, MVT::ValueType VT, int o,
1395404cb4f9fa2df50eac4d84b8a77c84a92188c6d5Evan Cheng                     unsigned Align)
1396ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1397bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner             getSDVTList(VT)), Offset(o), Alignment(Align) {
1398d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    assert((int)Offset >= 0 && "Offset is too large");
1399d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Val.ConstVal = c;
1400d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
1401d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v,
1402d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng                     MVT::ValueType VT, int o=0)
1403ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1404bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner             getSDVTList(VT)), Offset(o), Alignment(0) {
1405d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    assert((int)Offset >= 0 && "Offset is too large");
1406d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Val.MachineCPVal = v;
1407d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Offset |= 1 << (sizeof(unsigned)*8-1);
1408d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
1409d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v,
1410d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng                     MVT::ValueType VT, int o, unsigned Align)
1411ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool,
1412bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner             getSDVTList(VT)), Offset(o), Alignment(Align) {
1413d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    assert((int)Offset >= 0 && "Offset is too large");
1414d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Val.MachineCPVal = v;
1415d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    Offset |= 1 << (sizeof(unsigned)*8-1);
1416d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
141763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
141863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1419d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  bool isMachineConstantPoolEntry() const {
1420d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    return (int)Offset < 0;
1421d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
1422d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng
1423d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  Constant *getConstVal() const {
1424d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    assert(!isMachineConstantPoolEntry() && "Wrong constantpool type");
1425d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    return Val.ConstVal;
1426d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
1427d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng
1428d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  MachineConstantPoolValue *getMachineCPVal() const {
1429d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    assert(isMachineConstantPoolEntry() && "Wrong constantpool type");
1430d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng    return Val.MachineCPVal;
1431d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  }
1432d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng
1433baf4500b3ab128c78932e36f96086c0487c8c7d1Evan Cheng  int getOffset() const {
1434baf4500b3ab128c78932e36f96086c0487c8c7d1Evan Cheng    return Offset & ~(1 << (sizeof(unsigned)*8-1));
1435baf4500b3ab128c78932e36f96086c0487c8c7d1Evan Cheng  }
1436ef3640aded552279f65bd6d18633e15ffb245157Chris Lattner
1437ef3640aded552279f65bd6d18633e15ffb245157Chris Lattner  // Return the alignment of this constant pool object, which is either 0 (for
1438ef3640aded552279f65bd6d18633e15ffb245157Chris Lattner  // default alignment) or log2 of the desired value.
1439b8973bd8f50d7321635e1e07b81a880a0828d185Evan Cheng  unsigned getAlignment() const { return Alignment; }
144063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1441d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng  const Type *getType() const;
1442d6594ae54cfde4db4d30272192645c0a45fb9902Evan Cheng
144363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const ConstantPoolSDNode *) { return true; }
144463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
1445aaaaf79d4aaa172c2f2ae0e327bbae523a045bf5Chris Lattner    return N->getOpcode() == ISD::ConstantPool ||
1446aaaaf79d4aaa172c2f2ae0e327bbae523a045bf5Chris Lattner           N->getOpcode() == ISD::TargetConstantPool;
144763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
144863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
144963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
145063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass BasicBlockSDNode : public SDNode {
145163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  MachineBasicBlock *MBB;
1452c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
145363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
145463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1455423c2260f95883f7c84ac962e58ac66c3a11efacDan Gohman  explicit BasicBlockSDNode(MachineBasicBlock *mbb)
1456bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(ISD::BasicBlock, getSDVTList(MVT::Other)), MBB(mbb) {
145763e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  }
145863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
145963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
146063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  MachineBasicBlock *getBasicBlock() const { return MBB; }
146163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
146263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const BasicBlockSDNode *) { return true; }
146363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
146463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner    return N->getOpcode() == ISD::BasicBlock;
146563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
146663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
146763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
146814471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman/// SrcValueSDNode - An SDNode that holds an arbitrary LLVM IR Value. This is
146914471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman/// used when the SelectionDAG needs to make a simple reference to something
147014471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman/// in the LLVM IR representation.
147114471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman///
147214471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman/// Note that this is not used for carrying alias information; that is done
147314471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman/// with MemOperandSDNode, which includes a Value which is required to be a
147414471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman/// pointer, and several other fields specific to memory references.
147514471be9ab531cb677658704ea73b06d4f0b7585Dan Gohman///
14762d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharthclass SrcValueSDNode : public SDNode {
14772d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  const Value *V;
1478c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
14792d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharthprotected:
14802d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  friend class SelectionDAG;
148169de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  /// Create a SrcValue for a general value.
148269de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  explicit SrcValueSDNode(const Value *v)
148369de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    : SDNode(ISD::SRCVALUE, getSDVTList(MVT::Other)), V(v) {}
14842d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth
14852d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharthpublic:
148669de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  /// getValue - return the contained Value.
14872d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  const Value *getValue() const { return V; }
14882d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth
14892d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  static bool classof(const SrcValueSDNode *) { return true; }
14902d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  static bool classof(const SDNode *N) {
14912d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth    return N->getOpcode() == ISD::SRCVALUE;
14922d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth  }
14932d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth};
14942d86ea21dd76647cb054fd5d27df9e49efc672b6Andrew Lenharth
149563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
149669de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman/// MemOperandSDNode - An SDNode that holds a MemOperand. This is
149769de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman/// used to represent a reference to memory after ISD::LOAD
149869de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman/// and ISD::STORE have been lowered.
149969de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman///
150069de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohmanclass MemOperandSDNode : public SDNode {
150169de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
150269de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohmanprotected:
150369de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  friend class SelectionDAG;
150469de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  /// Create a MemOperand node
1505f8df0ff9a5d1be41ca237bcd40ced821839b32faDan Gohman  explicit MemOperandSDNode(const MemOperand &mo)
150669de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    : SDNode(ISD::MEMOPERAND, getSDVTList(MVT::Other)), MO(mo) {}
150769de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman
150869de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohmanpublic:
150969de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  /// MO - The contained MemOperand.
151069de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  const MemOperand MO;
151169de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman
151269de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  static bool classof(const MemOperandSDNode *) { return true; }
151369de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  static bool classof(const SDNode *N) {
151469de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman    return N->getOpcode() == ISD::MEMOPERAND;
151569de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  }
151669de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman};
151769de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman
151869de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman
1519d5d0f9bd20d9df07d6b4d41b7e8ed6d33b6a649dChris Lattnerclass RegisterSDNode : public SDNode {
152063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  unsigned Reg;
1521c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
152263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
152363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1524d5d0f9bd20d9df07d6b4d41b7e8ed6d33b6a649dChris Lattner  RegisterSDNode(unsigned reg, MVT::ValueType VT)
1525bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(ISD::Register, getSDVTList(VT)), Reg(reg) {
152663e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  }
152763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
152863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
152963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  unsigned getReg() const { return Reg; }
153063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
1531d5d0f9bd20d9df07d6b4d41b7e8ed6d33b6a649dChris Lattner  static bool classof(const RegisterSDNode *) { return true; }
153263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
1533d5d0f9bd20d9df07d6b4d41b7e8ed6d33b6a649dChris Lattner    return N->getOpcode() == ISD::Register;
153463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
153563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
153663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
153763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerclass ExternalSymbolSDNode : public SDNode {
153863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  const char *Symbol;
1539c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
154063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
154163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
15422a2de66db2093a5bc1fd620d1b6ae7992a552b24Andrew Lenharth  ExternalSymbolSDNode(bool isTarget, const char *Sym, MVT::ValueType VT)
1543ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner    : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol,
1544bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner             getSDVTList(VT)), Symbol(Sym) {
154563e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  }
154663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
154763b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
154863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  const char *getSymbol() const { return Symbol; }
154963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
155063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const ExternalSymbolSDNode *) { return true; }
155163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
15522a2de66db2093a5bc1fd620d1b6ae7992a552b24Andrew Lenharth    return N->getOpcode() == ISD::ExternalSymbol ||
15532a2de66db2093a5bc1fd620d1b6ae7992a552b24Andrew Lenharth           N->getOpcode() == ISD::TargetExternalSymbol;
155463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
155563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
155663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
15577cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattnerclass CondCodeSDNode : public SDNode {
155863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  ISD::CondCode Condition;
1559c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
156063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerprotected:
156163b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  friend class SelectionDAG;
1562423c2260f95883f7c84ac962e58ac66c3a11efacDan Gohman  explicit CondCodeSDNode(ISD::CondCode Cond)
1563bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(ISD::CONDCODE, getSDVTList(MVT::Other)), Condition(Cond) {
156463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
156563b570d49b7bf205d48749aae1467ef96152ea7aChris Lattnerpublic:
156663b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
15677cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattner  ISD::CondCode get() const { return Condition; }
156863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
15697cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattner  static bool classof(const CondCodeSDNode *) { return true; }
157063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  static bool classof(const SDNode *N) {
15717cf7e3f33f25544d08492d47cc8a1cbba25dc8d7Chris Lattner    return N->getOpcode() == ISD::CONDCODE;
157263b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner  }
157363b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner};
157463b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
157515e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner/// VTSDNode - This class is used to represent MVT::ValueType's, which are used
157615e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner/// to parameterize some operations.
157715e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattnerclass VTSDNode : public SDNode {
157815e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner  MVT::ValueType ValueType;
1579c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
158015e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattnerprotected:
158115e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner  friend class SelectionDAG;
1582423c2260f95883f7c84ac962e58ac66c3a11efacDan Gohman  explicit VTSDNode(MVT::ValueType VT)
1583bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    : SDNode(ISD::VALUETYPE, getSDVTList(MVT::Other)), ValueType(VT) {
158463e3f14df6cf76f1a12de1153e1114f4b20b15a9Chris Lattner  }
158515e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattnerpublic:
158615e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner
158715e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner  MVT::ValueType getVT() const { return ValueType; }
158815e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner
158915e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner  static bool classof(const VTSDNode *) { return true; }
159015e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner  static bool classof(const SDNode *N) {
159115e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner    return N->getOpcode() == ISD::VALUETYPE;
159215e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner  }
159315e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner};
159415e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner
15959de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel/// LSBaseSDNode - Base class for LoadSDNode and StoreSDNode
15969de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel///
15979de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michelclass LSBaseSDNode : public SDNode {
15989de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michelprivate:
1599b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  // AddrMode - unindexed, pre-indexed, post-indexed.
1600b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  ISD::MemIndexedMode AddrMode;
1601b625f2f8960de32bc973092aaee8ac62863006feDan Gohman
1602b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  // MemoryVT - VT of in-memory value.
1603b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  MVT::ValueType MemoryVT;
1604b625f2f8960de32bc973092aaee8ac62863006feDan Gohman
16059de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  //! SrcValue - Memory location for alias analysis.
16069de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  const Value *SrcValue;
16079de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
16089de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  //! SVOffset - Memory location offset.
16099de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  int SVOffset;
16109de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
16119de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  //! Alignment - Alignment of memory location in bytes.
16129de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  unsigned Alignment;
16139de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
16149de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  //! IsVolatile - True if the store is volatile.
16159de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  bool IsVolatile;
16169de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michelprotected:
16179de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  //! Operand array for load and store
16189de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  /*!
16199de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel    \note Moving this array to the base class captures more
16209de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel    common functionality shared between LoadSDNode and
16219de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel    StoreSDNode
16229de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel   */
16239de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  SDOperand Ops[4];
16249de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michelpublic:
1625b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  LSBaseSDNode(ISD::NodeType NodeTy, SDOperand *Operands, unsigned NumOperands,
1626b625f2f8960de32bc973092aaee8ac62863006feDan Gohman               SDVTList VTs, ISD::MemIndexedMode AM, MVT::ValueType VT,
1627b625f2f8960de32bc973092aaee8ac62863006feDan Gohman               const Value *SV, int SVO, unsigned Align, bool Vol)
16289de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel    : SDNode(NodeTy, VTs),
1629b625f2f8960de32bc973092aaee8ac62863006feDan Gohman      AddrMode(AM), MemoryVT(VT),
163059a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner      SrcValue(SV), SVOffset(SVO), Alignment(Align), IsVolatile(Vol) {
1631b625f2f8960de32bc973092aaee8ac62863006feDan Gohman    for (unsigned i = 0; i != NumOperands; ++i)
1632b625f2f8960de32bc973092aaee8ac62863006feDan Gohman      Ops[i] = Operands[i];
1633b625f2f8960de32bc973092aaee8ac62863006feDan Gohman    InitOperands(Ops, NumOperands);
1634b625f2f8960de32bc973092aaee8ac62863006feDan Gohman    assert(Align != 0 && "Loads and stores should have non-zero aligment");
1635b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  }
16369de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
163759a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getChain() const { return getOperand(0); }
163859a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getBasePtr() const {
16399de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel    return getOperand(getOpcode() == ISD::LOAD ? 1 : 2);
16409de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  }
164163602b8a69b2729f0789cd3c920aceef0ece64cbChris Lattner  const SDOperand &getOffset() const {
164263602b8a69b2729f0789cd3c920aceef0ece64cbChris Lattner    return getOperand(getOpcode() == ISD::LOAD ? 2 : 3);
164363602b8a69b2729f0789cd3c920aceef0ece64cbChris Lattner  }
16449de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
16459de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  const Value *getSrcValue() const { return SrcValue; }
16469de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  int getSrcValueOffset() const { return SVOffset; }
16479de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  unsigned getAlignment() const { return Alignment; }
1648b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  MVT::ValueType getMemoryVT() const { return MemoryVT; }
16499de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  bool isVolatile() const { return IsVolatile; }
16509de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
1651b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  ISD::MemIndexedMode getAddressingMode() const { return AddrMode; }
1652b625f2f8960de32bc973092aaee8ac62863006feDan Gohman
1653b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  /// isIndexed - Return true if this is a pre/post inc/dec load/store.
1654b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  bool isIndexed() const { return AddrMode != ISD::UNINDEXED; }
1655b625f2f8960de32bc973092aaee8ac62863006feDan Gohman
1656b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  /// isUnindexed - Return true if this is NOT a pre/post inc/dec load/store.
1657b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  bool isUnindexed() const { return AddrMode == ISD::UNINDEXED; }
1658b625f2f8960de32bc973092aaee8ac62863006feDan Gohman
165969de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  /// getMemOperand - Return a MemOperand object describing the memory
166069de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  /// reference performed by this load or store.
166169de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman  MemOperand getMemOperand() const;
166269de1932b350d7cdfc0ed1f4198d6f78c7822a02Dan Gohman
16639de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel  static bool classof(const LSBaseSDNode *N) { return true; }
1664b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  static bool classof(const SDNode *N) {
1665b625f2f8960de32bc973092aaee8ac62863006feDan Gohman    return N->getOpcode() == ISD::LOAD ||
1666b625f2f8960de32bc973092aaee8ac62863006feDan Gohman           N->getOpcode() == ISD::STORE;
1667b625f2f8960de32bc973092aaee8ac62863006feDan Gohman  }
16689de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel};
16699de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michel
167024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng/// LoadSDNode - This class is used to represent ISD::LOAD nodes.
167124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng///
16729de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michelclass LoadSDNode : public LSBaseSDNode {
1673c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
1674bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
167581c384578828dde08f63a4f030f4860a92391cddEvan Cheng  // ExtType - non-ext, anyext, sext, zext.
167681c384578828dde08f63a4f030f4860a92391cddEvan Cheng  ISD::LoadExtType ExtType;
167781c384578828dde08f63a4f030f4860a92391cddEvan Cheng
167824446e253a17720f6462288255ab5ebd13b8491fEvan Chengprotected:
167924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  friend class SelectionDAG;
1680ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner  LoadSDNode(SDOperand *ChainPtrOff, SDVTList VTs,
1681144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng             ISD::MemIndexedMode AM, ISD::LoadExtType ETy, MVT::ValueType LVT,
168295c218a83ecf77590b9dc40c636720772d2b5cd7Christopher Lamb             const Value *SV, int O=0, unsigned Align=0, bool Vol=false)
1683b625f2f8960de32bc973092aaee8ac62863006feDan Gohman    : LSBaseSDNode(ISD::LOAD, ChainPtrOff, 3,
1684b625f2f8960de32bc973092aaee8ac62863006feDan Gohman                   VTs, AM, LVT, SV, O, Align, Vol),
168559a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner      ExtType(ETy) {
168659a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner    assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
168759a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner           "Only indexed loads and stores have a non-undef offset operand");
168859a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  }
168924446e253a17720f6462288255ab5ebd13b8491fEvan Chengpublic:
169024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng
169124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  ISD::LoadExtType getExtensionType() const { return ExtType; }
169259a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getBasePtr() const { return getOperand(1); }
169359a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getOffset() const { return getOperand(2); }
169439354cb743c5a1473de7a80b957c61e92cf76852Chris Lattner
169524446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  static bool classof(const LoadSDNode *) { return true; }
169624446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  static bool classof(const SDNode *N) {
169724446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    return N->getOpcode() == ISD::LOAD;
169824446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  }
169924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng};
170024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng
170124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng/// StoreSDNode - This class is used to represent ISD::STORE nodes.
170224446e253a17720f6462288255ab5ebd13b8491fEvan Cheng///
17039de5d0dd42463f61c4ee2f9db5f3d08153c0dacfScott Michelclass StoreSDNode : public LSBaseSDNode {
1704c76e3c86026b9fa44bfbb0888881b52955078011Chris Lattner  virtual void ANCHOR();  // Out-of-line virtual method to give class a home.
1705bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner
17063ec81c0ee73462b7b9acd355b0013827d06ad93cDuncan Sands  // IsTruncStore - True if the op does a truncation before store.
170781c384578828dde08f63a4f030f4860a92391cddEvan Cheng  bool IsTruncStore;
170824446e253a17720f6462288255ab5ebd13b8491fEvan Chengprotected:
170924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  friend class SelectionDAG;
1710ab4ed595385d0b9421c0d45c809ec6324cf11f11Chris Lattner  StoreSDNode(SDOperand *ChainValuePtrOff, SDVTList VTs,
1711144d8f09e139f691cafadbc17873943ba4c465f3Evan Cheng              ISD::MemIndexedMode AM, bool isTrunc, MVT::ValueType SVT,
171224446e253a17720f6462288255ab5ebd13b8491fEvan Cheng              const Value *SV, int O=0, unsigned Align=0, bool Vol=false)
1713b625f2f8960de32bc973092aaee8ac62863006feDan Gohman    : LSBaseSDNode(ISD::STORE, ChainValuePtrOff, 4,
1714b625f2f8960de32bc973092aaee8ac62863006feDan Gohman                   VTs, AM, SVT, SV, O, Align, Vol),
171559a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner      IsTruncStore(isTrunc) {
171659a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner    assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
171759a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner           "Only indexed loads and stores have a non-undef offset operand");
171859a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  }
171924446e253a17720f6462288255ab5ebd13b8491fEvan Chengpublic:
172024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng
172124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  bool isTruncatingStore() const { return IsTruncStore; }
172259a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getValue() const { return getOperand(1); }
172359a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getBasePtr() const { return getOperand(2); }
172459a8cdd36d644fd5d0d7c78c3c02b31f1ba29a95Chris Lattner  const SDOperand &getOffset() const { return getOperand(3); }
172539354cb743c5a1473de7a80b957c61e92cf76852Chris Lattner
17266d0b3295777f0e9e9cce27f3473c19f78e88f700Evan Cheng  static bool classof(const StoreSDNode *) { return true; }
172724446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  static bool classof(const SDNode *N) {
172824446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    return N->getOpcode() == ISD::STORE;
172924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  }
173024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng};
173124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng
173215e4b01920d6a0ffbe35d3e5aa88a4b42970b6a7Chris Lattner
17331080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattnerclass SDNodeIterator : public forward_iterator<SDNode, ptrdiff_t> {
17341080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  SDNode *Node;
17351080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  unsigned Operand;
1736ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
17371080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  SDNodeIterator(SDNode *N, unsigned Op) : Node(N), Operand(Op) {}
17381080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattnerpublic:
17391080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  bool operator==(const SDNodeIterator& x) const {
17401080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return Operand == x.Operand;
17411080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
17421080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  bool operator!=(const SDNodeIterator& x) const { return !operator==(x); }
17431080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner
17441080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  const SDNodeIterator &operator=(const SDNodeIterator &I) {
17451080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    assert(I.Node == Node && "Cannot assign iterators to two different nodes!");
17461080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    Operand = I.Operand;
17471080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return *this;
17481080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
1749ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
17501080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  pointer operator*() const {
17511080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return Node->getOperand(Operand).Val;
17521080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
17531080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  pointer operator->() const { return operator*(); }
1754ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman
17551080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  SDNodeIterator& operator++() {                // Preincrement
17561080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    ++Operand;
17571080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return *this;
17581080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
17591080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  SDNodeIterator operator++(int) { // Postincrement
1760ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman    SDNodeIterator tmp = *this; ++*this; return tmp;
17611080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
17621080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner
17631080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  static SDNodeIterator begin(SDNode *N) { return SDNodeIterator(N, 0); }
17641080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  static SDNodeIterator end  (SDNode *N) {
17651080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return SDNodeIterator(N, N->getNumOperands());
17661080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
17671080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner
17681080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  unsigned getOperand() const { return Operand; }
17691080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  const SDNode *getNode() const { return Node; }
17701080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner};
17711080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner
17721080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattnertemplate <> struct GraphTraits<SDNode*> {
17731080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  typedef SDNode NodeType;
17741080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  typedef SDNodeIterator ChildIteratorType;
17751080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  static inline NodeType *getEntryNode(SDNode *N) { return N; }
1776ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman  static inline ChildIteratorType child_begin(NodeType *N) {
17771080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return SDNodeIterator::begin(N);
17781080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
1779ea61c358720aa6c7a159d51658b34276316aa841Misha Brukman  static inline ChildIteratorType child_end(NodeType *N) {
17801080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner    return SDNodeIterator::end(N);
17811080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner  }
17821080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner};
17831080b9ee534579c67f7c99364cc6fa11edbcd919Chris Lattner
1784b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattnertemplate<>
1785b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattnerstruct ilist_traits<SDNode> {
1786b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  static SDNode *getPrev(const SDNode *N) { return N->Prev; }
1787b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  static SDNode *getNext(const SDNode *N) { return N->Next; }
1788b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
1789b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  static void setPrev(SDNode *N, SDNode *Prev) { N->Prev = Prev; }
1790b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  static void setNext(SDNode *N, SDNode *Next) { N->Next = Next; }
1791b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
1792b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  static SDNode *createSentinel() {
1793bc2e26241d507ecd6c79598e5175f90852b716b3Chris Lattner    return new SDNode(ISD::EntryToken, SDNode::getSDVTList(MVT::Other));
1794b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  }
1795b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  static void destroySentinel(SDNode *N) { delete N; }
1796b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  //static SDNode *createNode(const SDNode &V) { return new SDNode(V); }
1797b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
1798b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
1799b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  void addNodeToList(SDNode *NTy) {}
1800b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  void removeNodeFromList(SDNode *NTy) {}
1801b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner  void transferNodesFromList(iplist<SDNode, ilist_traits> &L2,
1802b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner                             const ilist_iterator<SDNode> &X,
1803b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner                             const ilist_iterator<SDNode> &Y) {}
1804b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner};
1805b80e2be8894db9f843f32ebaffb9b7fd6b57d206Chris Lattner
1806c548428c5d7328592f4db6f6cd815af18b3152a3Evan Chengnamespace ISD {
1807186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng  /// isNormalLoad - Returns true if the specified node is a non-extending
1808186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng  /// and unindexed load.
1809186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng  inline bool isNormalLoad(const SDNode *N) {
1810186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng    if (N->getOpcode() != ISD::LOAD)
1811186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng      return false;
1812186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng    const LoadSDNode *Ld = cast<LoadSDNode>(N);
1813186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng    return Ld->getExtensionType() == ISD::NON_EXTLOAD &&
1814186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng      Ld->getAddressingMode() == ISD::UNINDEXED;
1815186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng  }
1816186edc8fa13d0e02d3c17563ad2bd78ac5963a67Evan Cheng
181724446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  /// isNON_EXTLoad - Returns true if the specified node is a non-extending
181824446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  /// load.
181924446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  inline bool isNON_EXTLoad(const SDNode *N) {
182024446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    return N->getOpcode() == ISD::LOAD &&
182124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng      cast<LoadSDNode>(N)->getExtensionType() == ISD::NON_EXTLOAD;
182224446e253a17720f6462288255ab5ebd13b8491fEvan Cheng  }
182324446e253a17720f6462288255ab5ebd13b8491fEvan Cheng
1824c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// isEXTLoad - Returns true if the specified node is a EXTLOAD.
1825c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  ///
1826c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  inline bool isEXTLoad(const SDNode *N) {
182724446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    return N->getOpcode() == ISD::LOAD &&
182824446e253a17720f6462288255ab5ebd13b8491fEvan Cheng      cast<LoadSDNode>(N)->getExtensionType() == ISD::EXTLOAD;
1829c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  }
1830c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
1831c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// isSEXTLoad - Returns true if the specified node is a SEXTLOAD.
1832c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  ///
1833c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  inline bool isSEXTLoad(const SDNode *N) {
183424446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    return N->getOpcode() == ISD::LOAD &&
183524446e253a17720f6462288255ab5ebd13b8491fEvan Cheng      cast<LoadSDNode>(N)->getExtensionType() == ISD::SEXTLOAD;
1836c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  }
1837c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
1838c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  /// isZEXTLoad - Returns true if the specified node is a ZEXTLOAD.
1839c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  ///
1840c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  inline bool isZEXTLoad(const SDNode *N) {
184124446e253a17720f6462288255ab5ebd13b8491fEvan Cheng    return N->getOpcode() == ISD::LOAD &&
184224446e253a17720f6462288255ab5ebd13b8491fEvan Cheng      cast<LoadSDNode>(N)->getExtensionType() == ISD::ZEXTLOAD;
1843c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng  }
18448b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng
184502c50e4891841c28b2a743731dfc60744bb78879Evan Cheng  /// isUNINDEXEDLoad - Returns true if the specified node is a unindexed load.
184602c50e4891841c28b2a743731dfc60744bb78879Evan Cheng  ///
184702c50e4891841c28b2a743731dfc60744bb78879Evan Cheng  inline bool isUNINDEXEDLoad(const SDNode *N) {
184802c50e4891841c28b2a743731dfc60744bb78879Evan Cheng    return N->getOpcode() == ISD::LOAD &&
184902c50e4891841c28b2a743731dfc60744bb78879Evan Cheng      cast<LoadSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
185002c50e4891841c28b2a743731dfc60744bb78879Evan Cheng  }
185102c50e4891841c28b2a743731dfc60744bb78879Evan Cheng
18528b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  /// isNON_TRUNCStore - Returns true if the specified node is a non-truncating
18538b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  /// store.
18548b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  inline bool isNON_TRUNCStore(const SDNode *N) {
18558b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng    return N->getOpcode() == ISD::STORE &&
18568b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng      !cast<StoreSDNode>(N)->isTruncatingStore();
18578b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  }
18588b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng
18598b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  /// isTRUNCStore - Returns true if the specified node is a truncating
18608b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  /// store.
18618b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  inline bool isTRUNCStore(const SDNode *N) {
18628b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng    return N->getOpcode() == ISD::STORE &&
18638b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng      cast<StoreSDNode>(N)->isTruncatingStore();
18648b2794aeff151be8cdbd44786c1d0f94f8f2e427Evan Cheng  }
1865c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng}
1866c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
1867c548428c5d7328592f4db6f6cd815af18b3152a3Evan Cheng
186863b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner} // end llvm namespace
186963b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner
187063b570d49b7bf205d48749aae1467ef96152ea7aChris Lattner#endif
1871