Delete an unused function.
[oota-llvm.git] / include / llvm / CodeGen / SelectionDAG.h
1 //===-- llvm/CodeGen/SelectionDAG.h - InstSelection DAG ---------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the SelectionDAG class, and transitively defines the
11 // SDNode class and subclasses.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CODEGEN_SELECTIONDAG_H
16 #define LLVM_CODEGEN_SELECTIONDAG_H
17
18 #include "llvm/ADT/ilist.h"
19 #include "llvm/ADT/DenseSet.h"
20 #include "llvm/ADT/StringMap.h"
21 #include "llvm/CodeGen/SelectionDAGNodes.h"
22 #include "llvm/Support/RecyclingAllocator.h"
23 #include "llvm/Target/TargetMachine.h"
24 #include <cassert>
25 #include <vector>
26 #include <map>
27 #include <string>
28
29 namespace llvm {
30
31 class AliasAnalysis;
32 class FunctionLoweringInfo;
33 class MachineConstantPoolValue;
34 class MachineFunction;
35 class MDNode;
36 class SDNodeOrdering;
37 class SDDbgValue;
38 class TargetLowering;
39
40 template<> struct ilist_traits<SDNode> : public ilist_default_traits<SDNode> {
41 private:
42   mutable ilist_half_node<SDNode> Sentinel;
43 public:
44   SDNode *createSentinel() const {
45     return static_cast<SDNode*>(&Sentinel);
46   }
47   static void destroySentinel(SDNode *) {}
48
49   SDNode *provideInitialHead() const { return createSentinel(); }
50   SDNode *ensureHead(SDNode*) const { return createSentinel(); }
51   static void noteHead(SDNode*, SDNode*) {}
52
53   static void deleteNode(SDNode *) {
54     assert(0 && "ilist_traits<SDNode> shouldn't see a deleteNode call!");
55   }
56 private:
57   static void createNode(const SDNode &);
58 };
59
60 /// SDDbgInfo - Keeps track of dbg_value information through SDISel.  We do
61 /// not build SDNodes for these so as not to perturb the generated code;
62 /// instead the info is kept off to the side in this structure. Each SDNode may
63 /// have one or more associated dbg_value entries. This information is kept in
64 /// DbgValMap.
65 class SDDbgInfo {
66   SmallVector<SDDbgValue*, 32> DbgValues;
67   DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> > DbgValMap;
68
69   void operator=(const SDDbgInfo&);   // Do not implement.
70   SDDbgInfo(const SDDbgInfo&);   // Do not implement.
71 public:
72   SDDbgInfo() {}
73
74   void add(SDDbgValue *V, const SDNode *Node = 0) {
75     if (Node)
76       DbgValMap[Node].push_back(V);
77     DbgValues.push_back(V);
78   }
79
80   void clear() {
81     DbgValMap.clear();
82     DbgValues.clear();
83   }
84
85   bool empty() const {
86     return DbgValues.empty();
87   }
88
89   SmallVector<SDDbgValue*,2> &getSDDbgValues(const SDNode *Node) {
90     return DbgValMap[Node];
91   }
92
93   typedef SmallVector<SDDbgValue*,32>::iterator DbgIterator;
94   DbgIterator DbgBegin() { return DbgValues.begin(); }
95   DbgIterator DbgEnd()   { return DbgValues.end(); }
96 };
97
98 enum CombineLevel {
99   Unrestricted,   // Combine may create illegal operations and illegal types.
100   NoIllegalTypes, // Combine may create illegal operations but no illegal types.
101   NoIllegalOperations // Combine may only create legal operations and types.
102 };
103
104 class SelectionDAG;
105 void checkForCycles(const SDNode *N);
106 void checkForCycles(const SelectionDAG *DAG);
107
108 /// SelectionDAG class - This is used to represent a portion of an LLVM function
109 /// in a low-level Data Dependence DAG representation suitable for instruction
110 /// selection.  This DAG is constructed as the first step of instruction
111 /// selection in order to allow implementation of machine specific optimizations
112 /// and code simplifications.
113 ///
114 /// The representation used by the SelectionDAG is a target-independent
115 /// representation, which has some similarities to the GCC RTL representation,
116 /// but is significantly more simple, powerful, and is a graph form instead of a
117 /// linear form.
118 ///
119 class SelectionDAG {
120   TargetLowering &TLI;
121   MachineFunction *MF;
122   FunctionLoweringInfo &FLI;
123   LLVMContext *Context;
124
125   /// EntryNode - The starting token.
126   SDNode EntryNode;
127
128   /// Root - The root of the entire DAG.
129   SDValue Root;
130
131   /// AllNodes - A linked list of nodes in the current DAG.
132   ilist<SDNode> AllNodes;
133
134   /// NodeAllocatorType - The AllocatorType for allocating SDNodes. We use
135   /// pool allocation with recycling.
136   typedef RecyclingAllocator<BumpPtrAllocator, SDNode, sizeof(LargestSDNode),
137                              AlignOf<MostAlignedSDNode>::Alignment>
138     NodeAllocatorType;
139
140   /// NodeAllocator - Pool allocation for nodes.
141   NodeAllocatorType NodeAllocator;
142
143   /// CSEMap - This structure is used to memoize nodes, automatically performing
144   /// CSE with existing nodes when a duplicate is requested.
145   FoldingSet<SDNode> CSEMap;
146
147   /// OperandAllocator - Pool allocation for machine-opcode SDNode operands.
148   BumpPtrAllocator OperandAllocator;
149
150   /// Allocator - Pool allocation for misc. objects that are created once per
151   /// SelectionDAG.
152   BumpPtrAllocator Allocator;
153
154   /// SDNodeOrdering - The ordering of the SDNodes. It roughly corresponds to
155   /// the ordering of the original LLVM instructions.
156   SDNodeOrdering *Ordering;
157
158   /// DbgInfo - Tracks dbg_value information through SDISel.
159   SDDbgInfo *DbgInfo;
160
161   /// VerifyNode - Sanity check the given node.  Aborts if it is invalid.
162   void VerifyNode(SDNode *N);
163
164   /// setGraphColorHelper - Implementation of setSubgraphColor.
165   /// Return whether we had to truncate the search.
166   ///
167   bool setSubgraphColorHelper(SDNode *N, const char *Color,
168                               DenseSet<SDNode *> &visited,
169                               int level, bool &printed);
170
171   void operator=(const SelectionDAG&); // Do not implement.
172   SelectionDAG(const SelectionDAG&);   // Do not implement.
173
174 public:
175   SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli);
176   ~SelectionDAG();
177
178   /// init - Prepare this SelectionDAG to process code in the given
179   /// MachineFunction.
180   ///
181   void init(MachineFunction &mf);
182
183   /// clear - Clear state and free memory necessary to make this
184   /// SelectionDAG ready to process a new block.
185   ///
186   void clear();
187
188   MachineFunction &getMachineFunction() const { return *MF; }
189   const TargetMachine &getTarget() const;
190   TargetLowering &getTargetLoweringInfo() const { return TLI; }
191   FunctionLoweringInfo &getFunctionLoweringInfo() const { return FLI; }
192   LLVMContext *getContext() const {return Context; }
193
194   /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
195   ///
196   void viewGraph(const std::string &Title);
197   void viewGraph();
198
199 #ifndef NDEBUG
200   std::map<const SDNode *, std::string> NodeGraphAttrs;
201 #endif
202
203   /// clearGraphAttrs - Clear all previously defined node graph attributes.
204   /// Intended to be used from a debugging tool (eg. gdb).
205   void clearGraphAttrs();
206
207   /// setGraphAttrs - Set graph attributes for a node. (eg. "color=red".)
208   ///
209   void setGraphAttrs(const SDNode *N, const char *Attrs);
210
211   /// getGraphAttrs - Get graph attributes for a node. (eg. "color=red".)
212   /// Used from getNodeAttributes.
213   const std::string getGraphAttrs(const SDNode *N) const;
214
215   /// setGraphColor - Convenience for setting node color attribute.
216   ///
217   void setGraphColor(const SDNode *N, const char *Color);
218
219   /// setGraphColor - Convenience for setting subgraph color attribute.
220   ///
221   void setSubgraphColor(SDNode *N, const char *Color);
222
223   typedef ilist<SDNode>::const_iterator allnodes_const_iterator;
224   allnodes_const_iterator allnodes_begin() const { return AllNodes.begin(); }
225   allnodes_const_iterator allnodes_end() const { return AllNodes.end(); }
226   typedef ilist<SDNode>::iterator allnodes_iterator;
227   allnodes_iterator allnodes_begin() { return AllNodes.begin(); }
228   allnodes_iterator allnodes_end() { return AllNodes.end(); }
229   ilist<SDNode>::size_type allnodes_size() const {
230     return AllNodes.size();
231   }
232
233   /// getRoot - Return the root tag of the SelectionDAG.
234   ///
235   const SDValue &getRoot() const { return Root; }
236
237   /// getEntryNode - Return the token chain corresponding to the entry of the
238   /// function.
239   SDValue getEntryNode() const {
240     return SDValue(const_cast<SDNode *>(&EntryNode), 0);
241   }
242
243   /// setRoot - Set the current root tag of the SelectionDAG.
244   ///
245   const SDValue &setRoot(SDValue N) {
246     assert((!N.getNode() || N.getValueType() == MVT::Other) &&
247            "DAG root value is not a chain!");
248     if (N.getNode())
249       checkForCycles(N.getNode());
250     Root = N;
251     if (N.getNode())
252       checkForCycles(this);
253     return Root;
254   }
255
256   /// Combine - This iterates over the nodes in the SelectionDAG, folding
257   /// certain types of nodes together, or eliminating superfluous nodes.  The
258   /// Level argument controls whether Combine is allowed to produce nodes and
259   /// types that are illegal on the target.
260   void Combine(CombineLevel Level, AliasAnalysis &AA,
261                CodeGenOpt::Level OptLevel);
262
263   /// LegalizeTypes - This transforms the SelectionDAG into a SelectionDAG that
264   /// only uses types natively supported by the target.  Returns "true" if it
265   /// made any changes.
266   ///
267   /// Note that this is an involved process that may invalidate pointers into
268   /// the graph.
269   bool LegalizeTypes();
270
271   /// Legalize - This transforms the SelectionDAG into a SelectionDAG that is
272   /// compatible with the target instruction selector, as indicated by the
273   /// TargetLowering object.
274   ///
275   /// Note that this is an involved process that may invalidate pointers into
276   /// the graph.
277   void Legalize(CodeGenOpt::Level OptLevel);
278
279   /// LegalizeVectors - This transforms the SelectionDAG into a SelectionDAG
280   /// that only uses vector math operations supported by the target.  This is
281   /// necessary as a separate step from Legalize because unrolling a vector
282   /// operation can introduce illegal types, which requires running
283   /// LegalizeTypes again.
284   ///
285   /// This returns true if it made any changes; in that case, LegalizeTypes
286   /// is called again before Legalize.
287   ///
288   /// Note that this is an involved process that may invalidate pointers into
289   /// the graph.
290   bool LegalizeVectors();
291
292   /// RemoveDeadNodes - This method deletes all unreachable nodes in the
293   /// SelectionDAG.
294   void RemoveDeadNodes();
295
296   /// DeleteNode - Remove the specified node from the system.  This node must
297   /// have no referrers.
298   void DeleteNode(SDNode *N);
299
300   /// getVTList - Return an SDVTList that represents the list of values
301   /// specified.
302   SDVTList getVTList(EVT VT);
303   SDVTList getVTList(EVT VT1, EVT VT2);
304   SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
305   SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
306   SDVTList getVTList(const EVT *VTs, unsigned NumVTs);
307
308   //===--------------------------------------------------------------------===//
309   // Node creation methods.
310   //
311   SDValue getConstant(uint64_t Val, EVT VT, bool isTarget = false);
312   SDValue getConstant(const APInt &Val, EVT VT, bool isTarget = false);
313   SDValue getConstant(const ConstantInt &Val, EVT VT, bool isTarget = false);
314   SDValue getIntPtrConstant(uint64_t Val, bool isTarget = false);
315   SDValue getTargetConstant(uint64_t Val, EVT VT) {
316     return getConstant(Val, VT, true);
317   }
318   SDValue getTargetConstant(const APInt &Val, EVT VT) {
319     return getConstant(Val, VT, true);
320   }
321   SDValue getTargetConstant(const ConstantInt &Val, EVT VT) {
322     return getConstant(Val, VT, true);
323   }
324   SDValue getConstantFP(double Val, EVT VT, bool isTarget = false);
325   SDValue getConstantFP(const APFloat& Val, EVT VT, bool isTarget = false);
326   SDValue getConstantFP(const ConstantFP &CF, EVT VT, bool isTarget = false);
327   SDValue getTargetConstantFP(double Val, EVT VT) {
328     return getConstantFP(Val, VT, true);
329   }
330   SDValue getTargetConstantFP(const APFloat& Val, EVT VT) {
331     return getConstantFP(Val, VT, true);
332   }
333   SDValue getTargetConstantFP(const ConstantFP &Val, EVT VT) {
334     return getConstantFP(Val, VT, true);
335   }
336   SDValue getGlobalAddress(const GlobalValue *GV, EVT VT,
337                            int64_t offset = 0, bool isTargetGA = false,
338                            unsigned char TargetFlags = 0);
339   SDValue getTargetGlobalAddress(const GlobalValue *GV, EVT VT,
340                                  int64_t offset = 0,
341                                  unsigned char TargetFlags = 0) {
342     return getGlobalAddress(GV, VT, offset, true, TargetFlags);
343   }
344   SDValue getFrameIndex(int FI, EVT VT, bool isTarget = false);
345   SDValue getTargetFrameIndex(int FI, EVT VT) {
346     return getFrameIndex(FI, VT, true);
347   }
348   SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false,
349                        unsigned char TargetFlags = 0);
350   SDValue getTargetJumpTable(int JTI, EVT VT, unsigned char TargetFlags = 0) {
351     return getJumpTable(JTI, VT, true, TargetFlags);
352   }
353   SDValue getConstantPool(Constant *C, EVT VT,
354                           unsigned Align = 0, int Offs = 0, bool isT=false,
355                           unsigned char TargetFlags = 0);
356   SDValue getTargetConstantPool(Constant *C, EVT VT,
357                                 unsigned Align = 0, int Offset = 0,
358                                 unsigned char TargetFlags = 0) {
359     return getConstantPool(C, VT, Align, Offset, true, TargetFlags);
360   }
361   SDValue getConstantPool(MachineConstantPoolValue *C, EVT VT,
362                           unsigned Align = 0, int Offs = 0, bool isT=false,
363                           unsigned char TargetFlags = 0);
364   SDValue getTargetConstantPool(MachineConstantPoolValue *C,
365                                   EVT VT, unsigned Align = 0,
366                                   int Offset = 0, unsigned char TargetFlags=0) {
367     return getConstantPool(C, VT, Align, Offset, true, TargetFlags);
368   }
369   // When generating a branch to a BB, we don't in general know enough
370   // to provide debug info for the BB at that time, so keep this one around.
371   SDValue getBasicBlock(MachineBasicBlock *MBB);
372   SDValue getBasicBlock(MachineBasicBlock *MBB, DebugLoc dl);
373   SDValue getExternalSymbol(const char *Sym, EVT VT);
374   SDValue getExternalSymbol(const char *Sym, DebugLoc dl, EVT VT);
375   SDValue getTargetExternalSymbol(const char *Sym, EVT VT,
376                                   unsigned char TargetFlags = 0);
377   SDValue getValueType(EVT);
378   SDValue getRegister(unsigned Reg, EVT VT);
379   SDValue getEHLabel(DebugLoc dl, SDValue Root, MCSymbol *Label);
380   SDValue getBlockAddress(BlockAddress *BA, EVT VT,
381                           bool isTarget = false, unsigned char TargetFlags = 0);
382
383   SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N) {
384     return getNode(ISD::CopyToReg, dl, MVT::Other, Chain,
385                    getRegister(Reg, N.getValueType()), N);
386   }
387
388   // This version of the getCopyToReg method takes an extra operand, which
389   // indicates that there is potentially an incoming flag value (if Flag is not
390   // null) and that there should be a flag result.
391   SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N,
392                        SDValue Flag) {
393     SDVTList VTs = getVTList(MVT::Other, MVT::Flag);
394     SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Flag };
395     return getNode(ISD::CopyToReg, dl, VTs, Ops, Flag.getNode() ? 4 : 3);
396   }
397
398   // Similar to last getCopyToReg() except parameter Reg is a SDValue
399   SDValue getCopyToReg(SDValue Chain, DebugLoc dl, SDValue Reg, SDValue N,
400                          SDValue Flag) {
401     SDVTList VTs = getVTList(MVT::Other, MVT::Flag);
402     SDValue Ops[] = { Chain, Reg, N, Flag };
403     return getNode(ISD::CopyToReg, dl, VTs, Ops, Flag.getNode() ? 4 : 3);
404   }
405
406   SDValue getCopyFromReg(SDValue Chain, DebugLoc dl, unsigned Reg, EVT VT) {
407     SDVTList VTs = getVTList(VT, MVT::Other);
408     SDValue Ops[] = { Chain, getRegister(Reg, VT) };
409     return getNode(ISD::CopyFromReg, dl, VTs, Ops, 2);
410   }
411
412   // This version of the getCopyFromReg method takes an extra operand, which
413   // indicates that there is potentially an incoming flag value (if Flag is not
414   // null) and that there should be a flag result.
415   SDValue getCopyFromReg(SDValue Chain, DebugLoc dl, unsigned Reg, EVT VT,
416                            SDValue Flag) {
417     SDVTList VTs = getVTList(VT, MVT::Other, MVT::Flag);
418     SDValue Ops[] = { Chain, getRegister(Reg, VT), Flag };
419     return getNode(ISD::CopyFromReg, dl, VTs, Ops, Flag.getNode() ? 3 : 2);
420   }
421
422   SDValue getCondCode(ISD::CondCode Cond);
423
424   /// Returns the ConvertRndSat Note: Avoid using this node because it may
425   /// disappear in the future and most targets don't support it.
426   SDValue getConvertRndSat(EVT VT, DebugLoc dl, SDValue Val, SDValue DTy,
427                            SDValue STy,
428                            SDValue Rnd, SDValue Sat, ISD::CvtCode Code);
429   
430   /// getVectorShuffle - Return an ISD::VECTOR_SHUFFLE node.  The number of
431   /// elements in VT, which must be a vector type, must match the number of
432   /// mask elements NumElts.  A integer mask element equal to -1 is treated as
433   /// undefined.
434   SDValue getVectorShuffle(EVT VT, DebugLoc dl, SDValue N1, SDValue N2, 
435                            const int *MaskElts);
436
437   /// getSExtOrTrunc - Convert Op, which must be of integer type, to the
438   /// integer type VT, by either sign-extending or truncating it.
439   SDValue getSExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT);
440
441   /// getZExtOrTrunc - Convert Op, which must be of integer type, to the
442   /// integer type VT, by either zero-extending or truncating it.
443   SDValue getZExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT);
444
445   /// getZeroExtendInReg - Return the expression required to zero extend the Op
446   /// value assuming it was the smaller SrcTy value.
447   SDValue getZeroExtendInReg(SDValue Op, DebugLoc DL, EVT SrcTy);
448
449   /// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
450   SDValue getNOT(DebugLoc DL, SDValue Val, EVT VT);
451
452   /// getCALLSEQ_START - Return a new CALLSEQ_START node, which always must have
453   /// a flag result (to ensure it's not CSE'd).  CALLSEQ_START does not have a
454   /// useful DebugLoc.
455   SDValue getCALLSEQ_START(SDValue Chain, SDValue Op) {
456     SDVTList VTs = getVTList(MVT::Other, MVT::Flag);
457     SDValue Ops[] = { Chain,  Op };
458     return getNode(ISD::CALLSEQ_START, DebugLoc(), VTs, Ops, 2);
459   }
460
461   /// getCALLSEQ_END - Return a new CALLSEQ_END node, which always must have a
462   /// flag result (to ensure it's not CSE'd).  CALLSEQ_END does not have
463   /// a useful DebugLoc.
464   SDValue getCALLSEQ_END(SDValue Chain, SDValue Op1, SDValue Op2,
465                            SDValue InFlag) {
466     SDVTList NodeTys = getVTList(MVT::Other, MVT::Flag);
467     SmallVector<SDValue, 4> Ops;
468     Ops.push_back(Chain);
469     Ops.push_back(Op1);
470     Ops.push_back(Op2);
471     Ops.push_back(InFlag);
472     return getNode(ISD::CALLSEQ_END, DebugLoc(), NodeTys, &Ops[0],
473                    (unsigned)Ops.size() - (InFlag.getNode() == 0 ? 1 : 0));
474   }
475
476   /// getUNDEF - Return an UNDEF node.  UNDEF does not have a useful DebugLoc.
477   SDValue getUNDEF(EVT VT) {
478     return getNode(ISD::UNDEF, DebugLoc(), VT);
479   }
480
481   /// getGLOBAL_OFFSET_TABLE - Return a GLOBAL_OFFSET_TABLE node.  This does
482   /// not have a useful DebugLoc.
483   SDValue getGLOBAL_OFFSET_TABLE(EVT VT) {
484     return getNode(ISD::GLOBAL_OFFSET_TABLE, DebugLoc(), VT);
485   }
486
487   /// getNode - Gets or creates the specified node.
488   ///
489   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT);
490   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N);
491   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2);
492   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
493                   SDValue N1, SDValue N2, SDValue N3);
494   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
495                   SDValue N1, SDValue N2, SDValue N3, SDValue N4);
496   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
497                   SDValue N1, SDValue N2, SDValue N3, SDValue N4,
498                   SDValue N5);
499   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
500                   const SDUse *Ops, unsigned NumOps);
501   SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
502                   const SDValue *Ops, unsigned NumOps);
503   SDValue getNode(unsigned Opcode, DebugLoc DL,
504                   const std::vector<EVT> &ResultTys,
505                   const SDValue *Ops, unsigned NumOps);
506   SDValue getNode(unsigned Opcode, DebugLoc DL, const EVT *VTs, unsigned NumVTs,
507                   const SDValue *Ops, unsigned NumOps);
508   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs,
509                   const SDValue *Ops, unsigned NumOps);
510   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs);
511   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs, SDValue N);
512   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs,
513                   SDValue N1, SDValue N2);
514   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs,
515                   SDValue N1, SDValue N2, SDValue N3);
516   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs,
517                   SDValue N1, SDValue N2, SDValue N3, SDValue N4);
518   SDValue getNode(unsigned Opcode, DebugLoc DL, SDVTList VTs,
519                   SDValue N1, SDValue N2, SDValue N3, SDValue N4,
520                   SDValue N5);
521
522   /// getStackArgumentTokenFactor - Compute a TokenFactor to force all
523   /// the incoming stack arguments to be loaded from the stack. This is
524   /// used in tail call lowering to protect stack arguments from being
525   /// clobbered.
526   SDValue getStackArgumentTokenFactor(SDValue Chain);
527
528   SDValue getMemcpy(SDValue Chain, DebugLoc dl, SDValue Dst, SDValue Src,
529                     SDValue Size, unsigned Align, bool isVol, bool AlwaysInline,
530                     const Value *DstSV, uint64_t DstSVOff,
531                     const Value *SrcSV, uint64_t SrcSVOff);
532
533   SDValue getMemmove(SDValue Chain, DebugLoc dl, SDValue Dst, SDValue Src,
534                      SDValue Size, unsigned Align, bool isVol,
535                      const Value *DstSV, uint64_t DstOSVff,
536                      const Value *SrcSV, uint64_t SrcSVOff);
537
538   SDValue getMemset(SDValue Chain, DebugLoc dl, SDValue Dst, SDValue Src,
539                     SDValue Size, unsigned Align, bool isVol,
540                     const Value *DstSV, uint64_t DstSVOff);
541
542   /// getSetCC - Helper function to make it easier to build SetCC's if you just
543   /// have an ISD::CondCode instead of an SDValue.
544   ///
545   SDValue getSetCC(DebugLoc DL, EVT VT, SDValue LHS, SDValue RHS,
546                    ISD::CondCode Cond) {
547     return getNode(ISD::SETCC, DL, VT, LHS, RHS, getCondCode(Cond));
548   }
549
550   /// getVSetCC - Helper function to make it easier to build VSetCC's nodes
551   /// if you just have an ISD::CondCode instead of an SDValue.
552   ///
553   SDValue getVSetCC(DebugLoc DL, EVT VT, SDValue LHS, SDValue RHS,
554                     ISD::CondCode Cond) {
555     return getNode(ISD::VSETCC, DL, VT, LHS, RHS, getCondCode(Cond));
556   }
557
558   /// getSelectCC - Helper function to make it easier to build SelectCC's if you
559   /// just have an ISD::CondCode instead of an SDValue.
560   ///
561   SDValue getSelectCC(DebugLoc DL, SDValue LHS, SDValue RHS,
562                       SDValue True, SDValue False, ISD::CondCode Cond) {
563     return getNode(ISD::SELECT_CC, DL, True.getValueType(),
564                    LHS, RHS, True, False, getCondCode(Cond));
565   }
566
567   /// getVAArg - VAArg produces a result and token chain, and takes a pointer
568   /// and a source value as input.
569   SDValue getVAArg(EVT VT, DebugLoc dl, SDValue Chain, SDValue Ptr,
570                    SDValue SV);
571
572   /// getAtomic - Gets a node for an atomic op, produces result and chain and
573   /// takes 3 operands
574   SDValue getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT, SDValue Chain,
575                     SDValue Ptr, SDValue Cmp, SDValue Swp, const Value* PtrVal,
576                     unsigned Alignment=0);
577   SDValue getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT, SDValue Chain,
578                     SDValue Ptr, SDValue Cmp, SDValue Swp,
579                     MachineMemOperand *MMO);
580
581   /// getAtomic - Gets a node for an atomic op, produces result and chain and
582   /// takes 2 operands.
583   SDValue getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT, SDValue Chain,
584                     SDValue Ptr, SDValue Val, const Value* PtrVal,
585                     unsigned Alignment = 0);
586   SDValue getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT, SDValue Chain,
587                     SDValue Ptr, SDValue Val,
588                     MachineMemOperand *MMO);
589
590   /// getMemIntrinsicNode - Creates a MemIntrinsicNode that may produce a
591   /// result and takes a list of operands. Opcode may be INTRINSIC_VOID,
592   /// INTRINSIC_W_CHAIN, or a target-specific opcode with a value not
593   /// less than FIRST_TARGET_MEMORY_OPCODE.
594   SDValue getMemIntrinsicNode(unsigned Opcode, DebugLoc dl,
595                               const EVT *VTs, unsigned NumVTs,
596                               const SDValue *Ops, unsigned NumOps,
597                               EVT MemVT, const Value *srcValue, int SVOff,
598                               unsigned Align = 0, bool Vol = false,
599                               bool ReadMem = true, bool WriteMem = true);
600
601   SDValue getMemIntrinsicNode(unsigned Opcode, DebugLoc dl, SDVTList VTList,
602                               const SDValue *Ops, unsigned NumOps,
603                               EVT MemVT, const Value *srcValue, int SVOff,
604                               unsigned Align = 0, bool Vol = false,
605                               bool ReadMem = true, bool WriteMem = true);
606
607   SDValue getMemIntrinsicNode(unsigned Opcode, DebugLoc dl, SDVTList VTList,
608                               const SDValue *Ops, unsigned NumOps,
609                               EVT MemVT, MachineMemOperand *MMO);
610
611   /// getMergeValues - Create a MERGE_VALUES node from the given operands.
612   SDValue getMergeValues(const SDValue *Ops, unsigned NumOps, DebugLoc dl);
613
614   /// getLoad - Loads are not normal binary operators: their result type is not
615   /// determined by their operands, and they produce a value AND a token chain.
616   ///
617   SDValue getLoad(EVT VT, DebugLoc dl, SDValue Chain, SDValue Ptr,
618                   const Value *SV, int SVOffset, bool isVolatile,
619                   bool isNonTemporal, unsigned Alignment);
620   SDValue getExtLoad(ISD::LoadExtType ExtType, DebugLoc dl, EVT VT,
621                      SDValue Chain, SDValue Ptr, const Value *SV,
622                      int SVOffset, EVT MemVT, bool isVolatile,
623                      bool isNonTemporal, unsigned Alignment);
624   SDValue getIndexedLoad(SDValue OrigLoad, DebugLoc dl, SDValue Base,
625                            SDValue Offset, ISD::MemIndexedMode AM);
626   SDValue getLoad(ISD::MemIndexedMode AM, DebugLoc dl, ISD::LoadExtType ExtType,
627                   EVT VT, SDValue Chain, SDValue Ptr, SDValue Offset,
628                   const Value *SV, int SVOffset, EVT MemVT,
629                   bool isVolatile, bool isNonTemporal, unsigned Alignment);
630   SDValue getLoad(ISD::MemIndexedMode AM, DebugLoc dl, ISD::LoadExtType ExtType,
631                   EVT VT, SDValue Chain, SDValue Ptr, SDValue Offset,
632                   EVT MemVT, MachineMemOperand *MMO);
633
634   /// getStore - Helper function to build ISD::STORE nodes.
635   ///
636   SDValue getStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr,
637                    const Value *SV, int SVOffset, bool isVolatile,
638                    bool isNonTemporal, unsigned Alignment);
639   SDValue getStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr,
640                    MachineMemOperand *MMO);
641   SDValue getTruncStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr,
642                         const Value *SV, int SVOffset, EVT TVT,
643                         bool isNonTemporal, bool isVolatile,
644                         unsigned Alignment);
645   SDValue getTruncStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr,
646                         EVT TVT, MachineMemOperand *MMO);
647   SDValue getIndexedStore(SDValue OrigStoe, DebugLoc dl, SDValue Base,
648                            SDValue Offset, ISD::MemIndexedMode AM);
649
650   /// getSrcValue - Construct a node to track a Value* through the backend.
651   SDValue getSrcValue(const Value *v);
652
653   /// getMDNode - Return an MDNodeSDNode which holds an MDNode.
654   SDValue getMDNode(const MDNode *MD);
655   
656   /// getShiftAmountOperand - Return the specified value casted to
657   /// the target's desired shift amount type.
658   SDValue getShiftAmountOperand(SDValue Op);
659
660   /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
661   /// specified operands.  If the resultant node already exists in the DAG,
662   /// this does not modify the specified node, instead it returns the node that
663   /// already exists.  If the resultant node does not exist in the DAG, the
664   /// input node is returned.  As a degenerate case, if you specify the same
665   /// input operands as the node already has, the input node is returned.
666   SDValue UpdateNodeOperands(SDValue N, SDValue Op);
667   SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2);
668   SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
669                                SDValue Op3);
670   SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
671                                SDValue Op3, SDValue Op4);
672   SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
673                                SDValue Op3, SDValue Op4, SDValue Op5);
674   SDValue UpdateNodeOperands(SDValue N,
675                                const SDValue *Ops, unsigned NumOps);
676
677   /// SelectNodeTo - These are used for target selectors to *mutate* the
678   /// specified node to have the specified return type, Target opcode, and
679   /// operands.  Note that target opcodes are stored as
680   /// ~TargetOpcode in the node opcode field.  The resultant node is returned.
681   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT);
682   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT, SDValue Op1);
683   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT,
684                        SDValue Op1, SDValue Op2);
685   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT,
686                        SDValue Op1, SDValue Op2, SDValue Op3);
687   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT,
688                        const SDValue *Ops, unsigned NumOps);
689   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, EVT VT2);
690   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
691                        EVT VT2, const SDValue *Ops, unsigned NumOps);
692   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
693                        EVT VT2, EVT VT3, const SDValue *Ops, unsigned NumOps);
694   SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
695                        EVT VT2, EVT VT3, EVT VT4, const SDValue *Ops,
696                        unsigned NumOps);
697   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
698                        EVT VT2, SDValue Op1);
699   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
700                        EVT VT2, SDValue Op1, SDValue Op2);
701   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
702                        EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3);
703   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
704                        EVT VT2, EVT VT3, SDValue Op1, SDValue Op2, SDValue Op3);
705   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, SDVTList VTs,
706                        const SDValue *Ops, unsigned NumOps);
707
708   /// MorphNodeTo - This *mutates* the specified node to have the specified
709   /// return type, opcode, and operands.
710   SDNode *MorphNodeTo(SDNode *N, unsigned Opc, SDVTList VTs,
711                       const SDValue *Ops, unsigned NumOps);
712
713   /// getMachineNode - These are used for target selectors to create a new node
714   /// with specified return type(s), MachineInstr opcode, and operands.
715   ///
716   /// Note that getMachineNode returns the resultant node.  If there is already
717   /// a node of the specified opcode and operands, it returns that node instead
718   /// of the current one.
719   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT);
720   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
721                                 SDValue Op1);
722   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
723                                 SDValue Op1, SDValue Op2);
724   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
725                          SDValue Op1, SDValue Op2, SDValue Op3);
726   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
727                          const SDValue *Ops, unsigned NumOps);
728   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2);
729   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2,
730                          SDValue Op1);
731   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1,
732                          EVT VT2, SDValue Op1, SDValue Op2);
733   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1,
734                          EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3);
735   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2,
736                          const SDValue *Ops, unsigned NumOps);
737   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2,
738                          EVT VT3, SDValue Op1, SDValue Op2);
739   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2,
740                          EVT VT3, SDValue Op1, SDValue Op2, SDValue Op3);
741   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2,
742                          EVT VT3, const SDValue *Ops, unsigned NumOps);
743   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2,
744                          EVT VT3, EVT VT4, const SDValue *Ops, unsigned NumOps);
745   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl,
746                          const std::vector<EVT> &ResultTys, const SDValue *Ops,
747                          unsigned NumOps);
748   MachineSDNode *getMachineNode(unsigned Opcode, DebugLoc dl, SDVTList VTs,
749                          const SDValue *Ops, unsigned NumOps);
750
751   /// getTargetExtractSubreg - A convenience function for creating
752   /// TargetInstrInfo::EXTRACT_SUBREG nodes.
753   SDValue getTargetExtractSubreg(int SRIdx, DebugLoc DL, EVT VT,
754                                  SDValue Operand);
755
756   /// getTargetInsertSubreg - A convenience function for creating
757   /// TargetInstrInfo::INSERT_SUBREG nodes.
758   SDValue getTargetInsertSubreg(int SRIdx, DebugLoc DL, EVT VT,
759                                 SDValue Operand, SDValue Subreg);
760
761   /// getNodeIfExists - Get the specified node if it's already available, or
762   /// else return NULL.
763   SDNode *getNodeIfExists(unsigned Opcode, SDVTList VTs,
764                           const SDValue *Ops, unsigned NumOps);
765
766   /// getDbgValue - Creates a SDDbgValue node.
767   ///
768   SDDbgValue *getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R, uint64_t Off,
769                           DebugLoc DL, unsigned O);
770   SDDbgValue *getDbgValue(MDNode *MDPtr, Value *C, uint64_t Off,
771                           DebugLoc DL, unsigned O);
772   SDDbgValue *getDbgValue(MDNode *MDPtr, unsigned FI, uint64_t Off,
773                           DebugLoc DL, unsigned O);
774
775   /// DAGUpdateListener - Clients of various APIs that cause global effects on
776   /// the DAG can optionally implement this interface.  This allows the clients
777   /// to handle the various sorts of updates that happen.
778   class DAGUpdateListener {
779   public:
780     virtual ~DAGUpdateListener();
781
782     /// NodeDeleted - The node N that was deleted and, if E is not null, an
783     /// equivalent node E that replaced it.
784     virtual void NodeDeleted(SDNode *N, SDNode *E) = 0;
785
786     /// NodeUpdated - The node N that was updated.
787     virtual void NodeUpdated(SDNode *N) = 0;
788   };
789
790   /// RemoveDeadNode - Remove the specified node from the system. If any of its
791   /// operands then becomes dead, remove them as well. Inform UpdateListener
792   /// for each node deleted.
793   void RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener = 0);
794
795   /// RemoveDeadNodes - This method deletes the unreachable nodes in the
796   /// given list, and any nodes that become unreachable as a result.
797   void RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
798                        DAGUpdateListener *UpdateListener = 0);
799
800   /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
801   /// This can cause recursive merging of nodes in the DAG.  Use the first
802   /// version if 'From' is known to have a single result, use the second
803   /// if you have two nodes with identical results (or if 'To' has a superset
804   /// of the results of 'From'), use the third otherwise.
805   ///
806   /// These methods all take an optional UpdateListener, which (if not null) is
807   /// informed about nodes that are deleted and modified due to recursive
808   /// changes in the dag.
809   ///
810   /// These functions only replace all existing uses. It's possible that as
811   /// these replacements are being performed, CSE may cause the From node
812   /// to be given new uses. These new uses of From are left in place, and
813   /// not automatically transfered to To.
814   ///
815   void ReplaceAllUsesWith(SDValue From, SDValue Op,
816                           DAGUpdateListener *UpdateListener = 0);
817   void ReplaceAllUsesWith(SDNode *From, SDNode *To,
818                           DAGUpdateListener *UpdateListener = 0);
819   void ReplaceAllUsesWith(SDNode *From, const SDValue *To,
820                           DAGUpdateListener *UpdateListener = 0);
821
822   /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
823   /// uses of other values produced by From.Val alone.
824   void ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
825                                  DAGUpdateListener *UpdateListener = 0);
826
827   /// ReplaceAllUsesOfValuesWith - Like ReplaceAllUsesOfValueWith, but
828   /// for multiple values at once. This correctly handles the case where
829   /// there is an overlap between the From values and the To values.
830   void ReplaceAllUsesOfValuesWith(const SDValue *From, const SDValue *To,
831                                   unsigned Num,
832                                   DAGUpdateListener *UpdateListener = 0);
833
834   /// AssignTopologicalOrder - Topological-sort the AllNodes list and a
835   /// assign a unique node id for each node in the DAG based on their
836   /// topological order. Returns the number of nodes.
837   unsigned AssignTopologicalOrder();
838
839   /// RepositionNode - Move node N in the AllNodes list to be immediately
840   /// before the given iterator Position. This may be used to update the
841   /// topological ordering when the list of nodes is modified.
842   void RepositionNode(allnodes_iterator Position, SDNode *N) {
843     AllNodes.insert(Position, AllNodes.remove(N));
844   }
845
846   /// isCommutativeBinOp - Returns true if the opcode is a commutative binary
847   /// operation.
848   static bool isCommutativeBinOp(unsigned Opcode) {
849     // FIXME: This should get its info from the td file, so that we can include
850     // target info.
851     switch (Opcode) {
852     case ISD::ADD:
853     case ISD::MUL:
854     case ISD::MULHU:
855     case ISD::MULHS:
856     case ISD::SMUL_LOHI:
857     case ISD::UMUL_LOHI:
858     case ISD::FADD:
859     case ISD::FMUL:
860     case ISD::AND:
861     case ISD::OR:
862     case ISD::XOR:
863     case ISD::SADDO:
864     case ISD::UADDO:
865     case ISD::ADDC:
866     case ISD::ADDE: return true;
867     default: return false;
868     }
869   }
870
871   /// AssignOrdering - Assign an order to the SDNode.
872   void AssignOrdering(const SDNode *SD, unsigned Order);
873
874   /// GetOrdering - Get the order for the SDNode.
875   unsigned GetOrdering(const SDNode *SD) const;
876
877   /// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
878   /// value is produced by SD.
879   void AddDbgValue(SDDbgValue *DB, SDNode *SD = 0);
880
881   /// GetDbgValues - Get the debug values which reference the given SDNode.
882   SmallVector<SDDbgValue*,2> &GetDbgValues(const SDNode* SD) {
883     return DbgInfo->getSDDbgValues(SD);
884   }
885
886   /// hasDebugValues - Return true if there are any SDDbgValue nodes associated
887   /// with this SelectionDAG.
888   bool hasDebugValues() const { return !DbgInfo->empty(); }
889
890   SDDbgInfo::DbgIterator DbgBegin() { return DbgInfo->DbgBegin(); }
891   SDDbgInfo::DbgIterator DbgEnd()   { return DbgInfo->DbgEnd(); }
892
893   void dump() const;
894
895   /// CreateStackTemporary - Create a stack temporary, suitable for holding the
896   /// specified value type.  If minAlign is specified, the slot size will have
897   /// at least that alignment.
898   SDValue CreateStackTemporary(EVT VT, unsigned minAlign = 1);
899
900   /// CreateStackTemporary - Create a stack temporary suitable for holding
901   /// either of the specified value types.
902   SDValue CreateStackTemporary(EVT VT1, EVT VT2);
903
904   /// FoldConstantArithmetic -
905   SDValue FoldConstantArithmetic(unsigned Opcode,
906                                  EVT VT,
907                                  ConstantSDNode *Cst1,
908                                  ConstantSDNode *Cst2);
909
910   /// FoldSetCC - Constant fold a setcc to true or false.
911   SDValue FoldSetCC(EVT VT, SDValue N1,
912                     SDValue N2, ISD::CondCode Cond, DebugLoc dl);
913
914   /// SignBitIsZero - Return true if the sign bit of Op is known to be zero.  We
915   /// use this predicate to simplify operations downstream.
916   bool SignBitIsZero(SDValue Op, unsigned Depth = 0) const;
917
918   /// MaskedValueIsZero - Return true if 'Op & Mask' is known to be zero.  We
919   /// use this predicate to simplify operations downstream.  Op and Mask are
920   /// known to be the same type.
921   bool MaskedValueIsZero(SDValue Op, const APInt &Mask, unsigned Depth = 0)
922     const;
923
924   /// ComputeMaskedBits - Determine which of the bits specified in Mask are
925   /// known to be either zero or one and return them in the KnownZero/KnownOne
926   /// bitsets.  This code only analyzes bits in Mask, in order to short-circuit
927   /// processing.  Targets can implement the computeMaskedBitsForTargetNode
928   /// method in the TargetLowering class to allow target nodes to be understood.
929   void ComputeMaskedBits(SDValue Op, const APInt &Mask, APInt &KnownZero,
930                          APInt &KnownOne, unsigned Depth = 0) const;
931
932   /// ComputeNumSignBits - Return the number of times the sign bit of the
933   /// register is replicated into the other bits.  We know that at least 1 bit
934   /// is always equal to the sign bit (itself), but other cases can give us
935   /// information.  For example, immediately after an "SRA X, 2", we know that
936   /// the top 3 bits are all equal to each other, so we return 3.  Targets can
937   /// implement the ComputeNumSignBitsForTarget method in the TargetLowering
938   /// class to allow target nodes to be understood.
939   unsigned ComputeNumSignBits(SDValue Op, unsigned Depth = 0) const;
940
941   /// isKnownNeverNan - Test whether the given SDValue is known to never be NaN.
942   bool isKnownNeverNaN(SDValue Op) const;
943
944   /// isKnownNeverZero - Test whether the given SDValue is known to never be
945   /// positive or negative Zero.
946   bool isKnownNeverZero(SDValue Op) const;
947
948   /// isEqualTo - Test whether two SDValues are known to compare equal. This
949   /// is true if they are the same value, or if one is negative zero and the
950   /// other positive zero.
951   bool isEqualTo(SDValue A, SDValue B) const;
952
953   /// isVerifiedDebugInfoDesc - Returns true if the specified SDValue has
954   /// been verified as a debug information descriptor.
955   bool isVerifiedDebugInfoDesc(SDValue Op) const;
956
957   /// getShuffleScalarElt - Returns the scalar element that will make up the ith
958   /// element of the result of the vector shuffle.
959   SDValue getShuffleScalarElt(const ShuffleVectorSDNode *N, unsigned Idx);
960
961   /// UnrollVectorOp - Utility function used by legalize and lowering to
962   /// "unroll" a vector operation by splitting out the scalars and operating
963   /// on each element individually.  If the ResNE is 0, fully unroll the vector
964   /// op. If ResNE is less than the width of the vector op, unroll up to ResNE.
965   /// If the  ResNE is greater than the width of the vector op, unroll the
966   /// vector op and fill the end of the resulting vector with UNDEFS.
967   SDValue UnrollVectorOp(SDNode *N, unsigned ResNE = 0);
968
969   /// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a 
970   /// location that is 'Dist' units away from the location that the 'Base' load 
971   /// is loading from.
972   bool isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base,
973                          unsigned Bytes, int Dist) const;
974
975   /// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
976   /// it cannot be inferred.
977   unsigned InferPtrAlignment(SDValue Ptr) const;
978
979 private:
980   bool RemoveNodeFromCSEMaps(SDNode *N);
981   void AddModifiedNodeToCSEMaps(SDNode *N, DAGUpdateListener *UpdateListener);
982   SDNode *FindModifiedNodeSlot(SDNode *N, SDValue Op, void *&InsertPos);
983   SDNode *FindModifiedNodeSlot(SDNode *N, SDValue Op1, SDValue Op2,
984                                void *&InsertPos);
985   SDNode *FindModifiedNodeSlot(SDNode *N, const SDValue *Ops, unsigned NumOps,
986                                void *&InsertPos);
987
988   void DeleteNodeNotInCSEMaps(SDNode *N);
989   void DeallocateNode(SDNode *N);
990
991   unsigned getEVTAlignment(EVT MemoryVT) const;
992
993   void allnodes_clear();
994
995   /// VTList - List of non-single value types.
996   std::vector<SDVTList> VTList;
997
998   /// CondCodeNodes - Maps to auto-CSE operations.
999   std::vector<CondCodeSDNode*> CondCodeNodes;
1000
1001   std::vector<SDNode*> ValueTypeNodes;
1002   std::map<EVT, SDNode*, EVT::compareRawBits> ExtendedValueTypeNodes;
1003   StringMap<SDNode*> ExternalSymbols;
1004   
1005   std::map<std::pair<std::string, unsigned char>,SDNode*> TargetExternalSymbols;
1006 };
1007
1008 template <> struct GraphTraits<SelectionDAG*> : public GraphTraits<SDNode*> {
1009   typedef SelectionDAG::allnodes_iterator nodes_iterator;
1010   static nodes_iterator nodes_begin(SelectionDAG *G) {
1011     return G->allnodes_begin();
1012   }
1013   static nodes_iterator nodes_end(SelectionDAG *G) {
1014     return G->allnodes_end();
1015   }
1016 };
1017
1018 }  // end namespace llvm
1019
1020 #endif