79b3371d50d036894406bee5c7a2a64670242fbb
[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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the 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/CodeGen/SelectionDAGNodes.h"
19 #include "llvm/ADT/ilist"
20
21 #include <map>
22 #include <list>
23 #include <string>
24
25 namespace llvm {
26   class TargetLowering;
27   class TargetMachine;
28   class MachineDebugInfo;
29   class MachineFunction;
30
31 /// SelectionDAG class - This is used to represent a portion of an LLVM function
32 /// in a low-level Data Dependence DAG representation suitable for instruction
33 /// selection.  This DAG is constructed as the first step of instruction
34 /// selection in order to allow implementation of machine specific optimizations
35 /// and code simplifications.
36 ///
37 /// The representation used by the SelectionDAG is a target-independent
38 /// representation, which has some similarities to the GCC RTL representation,
39 /// but is significantly more simple, powerful, and is a graph form instead of a
40 /// linear form.
41 ///
42 class SelectionDAG {
43   TargetLowering &TLI;
44   MachineFunction &MF;
45   MachineDebugInfo *DI;
46
47   // Root - The root of the entire DAG.  EntryNode - The starting token.
48   SDOperand Root, EntryNode;
49
50   // AllNodes - A linked list of nodes in the current DAG.
51   ilist<SDNode> AllNodes;
52
53   // ValueNodes - track SrcValue nodes
54   std::map<std::pair<const Value*, int>, SDNode*> ValueNodes;
55
56 public:
57   SelectionDAG(TargetLowering &tli, MachineFunction &mf, MachineDebugInfo *di)
58   : TLI(tli), MF(mf), DI(di) {
59     EntryNode = Root = getNode(ISD::EntryToken, MVT::Other);
60   }
61   ~SelectionDAG();
62
63   MachineFunction &getMachineFunction() const { return MF; }
64   const TargetMachine &getTarget() const;
65   TargetLowering &getTargetLoweringInfo() const { return TLI; }
66   MachineDebugInfo *getMachineDebugInfo() const { return DI; }
67
68   /// viewGraph - Pop up a ghostview window with the DAG rendered using 'dot'.
69   ///
70   void viewGraph();
71
72
73   typedef ilist<SDNode>::const_iterator allnodes_const_iterator;
74   allnodes_const_iterator allnodes_begin() const { return AllNodes.begin(); }
75   allnodes_const_iterator allnodes_end() const { return AllNodes.end(); }
76   typedef ilist<SDNode>::iterator allnodes_iterator;
77   allnodes_iterator allnodes_begin() { return AllNodes.begin(); }
78   allnodes_iterator allnodes_end() { return AllNodes.end(); }
79   
80   /// getRoot - Return the root tag of the SelectionDAG.
81   ///
82   const SDOperand &getRoot() const { return Root; }
83
84   /// getEntryNode - Return the token chain corresponding to the entry of the
85   /// function.
86   const SDOperand &getEntryNode() const { return EntryNode; }
87
88   /// setRoot - Set the current root tag of the SelectionDAG.
89   ///
90   const SDOperand &setRoot(SDOperand N) { return Root = N; }
91
92   /// Combine - This iterates over the nodes in the SelectionDAG, folding
93   /// certain types of nodes together, or eliminating superfluous nodes.  When
94   /// the AfterLegalize argument is set to 'true', Combine takes care not to
95   /// generate any nodes that will be illegal on the target.
96   void Combine(bool AfterLegalize);
97   
98   /// Legalize - This transforms the SelectionDAG into a SelectionDAG that is
99   /// compatible with the target instruction selector, as indicated by the
100   /// TargetLowering object.
101   ///
102   /// Note that this is an involved process that may invalidate pointers into
103   /// the graph.
104   void Legalize();
105
106   /// RemoveDeadNodes - This method deletes all unreachable nodes in the
107   /// SelectionDAG, including nodes (like loads) that have uses of their token
108   /// chain but no other uses and no side effect.  If a node is passed in as an
109   /// argument, it is used as the seed for node deletion.
110   void RemoveDeadNodes(SDNode *N = 0);
111
112   SDOperand getString(const std::string &Val);
113   SDOperand getConstant(uint64_t Val, MVT::ValueType VT);
114   SDOperand getTargetConstant(uint64_t Val, MVT::ValueType VT);
115   SDOperand getConstantFP(double Val, MVT::ValueType VT);
116   SDOperand getGlobalAddress(const GlobalValue *GV, MVT::ValueType VT,
117                              int offset = 0);
118   SDOperand getTargetGlobalAddress(const GlobalValue *GV, MVT::ValueType VT,
119                                    int offset = 0);
120   SDOperand getFrameIndex(int FI, MVT::ValueType VT);
121   SDOperand getTargetFrameIndex(int FI, MVT::ValueType VT);
122   SDOperand getConstantPool(Constant *C, MVT::ValueType VT);
123   SDOperand getTargetConstantPool(Constant *C, MVT::ValueType VT);
124   SDOperand getBasicBlock(MachineBasicBlock *MBB);
125   SDOperand getExternalSymbol(const char *Sym, MVT::ValueType VT);
126   SDOperand getTargetExternalSymbol(const char *Sym, MVT::ValueType VT);
127   SDOperand getValueType(MVT::ValueType);
128   SDOperand getRegister(unsigned Reg, MVT::ValueType VT);
129
130   SDOperand getCopyToReg(SDOperand Chain, unsigned Reg, SDOperand N) {
131     return getNode(ISD::CopyToReg, MVT::Other, Chain,
132                    getRegister(Reg, N.getValueType()), N);
133   }
134
135   // This version of the getCopyToReg method takes an extra operand, which
136   // indicates that there is potentially an incoming flag value (if Flag is not
137   // null) and that there should be a flag result.
138   SDOperand getCopyToReg(SDOperand Chain, unsigned Reg, SDOperand N,
139                          SDOperand Flag) {
140     std::vector<MVT::ValueType> VTs;
141     VTs.push_back(MVT::Other);
142     VTs.push_back(MVT::Flag);
143     std::vector<SDOperand> Ops;
144     Ops.push_back(Chain);
145     Ops.push_back(getRegister(Reg, N.getValueType()));
146     Ops.push_back(N);
147     if (Flag.Val) Ops.push_back(Flag);
148     return getNode(ISD::CopyToReg, VTs, Ops);
149   }
150
151   // Similar to last getCopyToReg() except parameter Reg is a SDOperand
152   SDOperand getCopyToReg(SDOperand Chain, SDOperand Reg, SDOperand N,
153                          SDOperand Flag) {
154     std::vector<MVT::ValueType> VTs;
155     VTs.push_back(MVT::Other);
156     VTs.push_back(MVT::Flag);
157     std::vector<SDOperand> Ops;
158     Ops.push_back(Chain);
159     Ops.push_back(Reg);
160     Ops.push_back(N);
161     if (Flag.Val) Ops.push_back(Flag);
162     return getNode(ISD::CopyToReg, VTs, Ops);
163   }
164   
165   SDOperand getCopyFromReg(SDOperand Chain, unsigned Reg, MVT::ValueType VT) {
166     std::vector<MVT::ValueType> ResultTys;
167     ResultTys.push_back(VT);
168     ResultTys.push_back(MVT::Other);
169     std::vector<SDOperand> Ops;
170     Ops.push_back(Chain);
171     Ops.push_back(getRegister(Reg, VT));
172     return getNode(ISD::CopyFromReg, ResultTys, Ops);
173   }
174   
175   // This version of the getCopyFromReg method takes an extra operand, which
176   // indicates that there is potentially an incoming flag value (if Flag is not
177   // null) and that there should be a flag result.
178   SDOperand getCopyFromReg(SDOperand Chain, unsigned Reg, MVT::ValueType VT,
179                            SDOperand Flag) {
180     std::vector<MVT::ValueType> ResultTys;
181     ResultTys.push_back(VT);
182     ResultTys.push_back(MVT::Other);
183     ResultTys.push_back(MVT::Flag);
184     std::vector<SDOperand> Ops;
185     Ops.push_back(Chain);
186     Ops.push_back(getRegister(Reg, VT));
187     if (Flag.Val) Ops.push_back(Flag);
188     return getNode(ISD::CopyFromReg, ResultTys, Ops);
189   }
190
191   /// getCall - Note that this destroys the vector of RetVals passed in.
192   ///
193   SDNode *getCall(std::vector<MVT::ValueType> &RetVals, SDOperand Chain,
194                   SDOperand Callee, bool isTailCall = false) {
195     SDNode *NN = new SDNode(isTailCall ? ISD::TAILCALL : ISD::CALL, Chain,
196                             Callee);
197     setNodeValueTypes(NN, RetVals);
198     AllNodes.push_back(NN);
199     return NN;
200   }
201   /// getCall - Note that this destroys the vector of RetVals passed in.
202   ///
203   SDNode *getCall(std::vector<MVT::ValueType> &RetVals, SDOperand Chain,
204                   SDOperand Callee, SDOperand Flag, bool isTailCall = false) {
205     SDNode *NN = new SDNode(isTailCall ? ISD::TAILCALL : ISD::CALL, Chain,
206                             Callee, Flag);
207     setNodeValueTypes(NN, RetVals);
208     AllNodes.push_back(NN);
209     return NN;
210   }
211   
212   /// getCall - This is identical to the one above, and should be used for calls
213   /// where arguments are passed in physical registers.  This destroys the
214   /// RetVals and ArgsInRegs vectors.
215   SDNode *getCall(std::vector<MVT::ValueType> &RetVals, SDOperand Chain,
216                   SDOperand Callee, std::vector<SDOperand> &ArgsInRegs,
217                   bool isTailCall = false) {
218     ArgsInRegs.insert(ArgsInRegs.begin(), Callee);
219     ArgsInRegs.insert(ArgsInRegs.begin(), Chain);
220     SDNode *NN = new SDNode(isTailCall ? ISD::TAILCALL : ISD::CALL, ArgsInRegs);
221     setNodeValueTypes(NN, RetVals);
222     AllNodes.push_back(NN);
223     return NN;
224   }
225
226   SDOperand getCondCode(ISD::CondCode Cond);
227
228   /// getZeroExtendInReg - Return the expression required to zero extend the Op
229   /// value assuming it was the smaller SrcTy value.
230   SDOperand getZeroExtendInReg(SDOperand Op, MVT::ValueType SrcTy);
231
232   /// getNode - Gets or creates the specified node.
233   ///
234   SDOperand getNode(unsigned Opcode, MVT::ValueType VT);
235   SDOperand getNode(unsigned Opcode, MVT::ValueType VT, SDOperand N);
236   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
237                     SDOperand N1, SDOperand N2);
238   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
239                     SDOperand N1, SDOperand N2, SDOperand N3);
240   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
241                     SDOperand N1, SDOperand N2, SDOperand N3, SDOperand N4);
242   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
243                     SDOperand N1, SDOperand N2, SDOperand N3, SDOperand N4,
244                     SDOperand N5);
245   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
246                     std::vector<SDOperand> &Children);
247   SDOperand getNode(unsigned Opcode, std::vector<MVT::ValueType> &ResultTys,
248                     std::vector<SDOperand> &Ops);
249
250   /// getSetCC - Helper function to make it easier to build SetCC's if you just
251   /// have an ISD::CondCode instead of an SDOperand.
252   ///
253   SDOperand getSetCC(MVT::ValueType VT, SDOperand LHS, SDOperand RHS,
254                      ISD::CondCode Cond) {
255     return getNode(ISD::SETCC, VT, LHS, RHS, getCondCode(Cond));
256   }
257
258   /// getSelectCC - Helper function to make it easier to build SelectCC's if you
259   /// just have an ISD::CondCode instead of an SDOperand.
260   ///
261   SDOperand getSelectCC(SDOperand LHS, SDOperand RHS,
262                         SDOperand True, SDOperand False, ISD::CondCode Cond) {
263     MVT::ValueType VT = True.getValueType();
264     return getNode(ISD::SELECT_CC, VT, LHS, RHS, True, False,getCondCode(Cond));
265   }
266   
267   /// getBR2Way_CC - Helper function to make it easier to build BRTWOWAY_CC
268   /// nodes.
269   ///
270   SDOperand getBR2Way_CC(SDOperand Chain, SDOperand CCNode, SDOperand LHS, 
271                          SDOperand RHS, SDOperand True, SDOperand False) {
272     std::vector<SDOperand> Ops;
273     Ops.push_back(Chain);
274     Ops.push_back(CCNode);
275     Ops.push_back(LHS);
276     Ops.push_back(RHS);
277     Ops.push_back(True);
278     Ops.push_back(False);
279     return getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
280   }
281
282   /// getLoad - Loads are not normal binary operators: their result type is not
283   /// determined by their operands, and they produce a value AND a token chain.
284   ///
285   SDOperand getLoad(MVT::ValueType VT, SDOperand Chain, SDOperand Ptr,
286                     SDOperand SV);
287   SDOperand getVecLoad(unsigned Count, MVT::ValueType VT, SDOperand Chain, 
288                        SDOperand Ptr, SDOperand SV);
289   SDOperand getExtLoad(unsigned Opcode, MVT::ValueType VT, SDOperand Chain,
290                        SDOperand Ptr, SDOperand SV, MVT::ValueType EVT);
291
292   // getSrcValue - construct a node to track a Value* through the backend
293   SDOperand getSrcValue(const Value* I, int offset = 0);
294
295   
296   /// SelectNodeTo - These are used for target selectors to *mutate* the
297   /// specified node to have the specified return type, Target opcode, and
298   /// operands.  Note that target opcodes are stored as
299   /// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.  The 0th value
300   /// of the resultant node is returned.
301   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT);
302   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
303                          SDOperand Op1);
304   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
305                          SDOperand Op1, SDOperand Op2);
306   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
307                          SDOperand Op1, SDOperand Op2, SDOperand Op3);
308   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
309                          SDOperand Op1, SDOperand Op2, SDOperand Op3, 
310                          SDOperand Op4);
311   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
312                          SDOperand Op1, SDOperand Op2, SDOperand Op3,
313                          SDOperand Op4, SDOperand Op5);
314   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
315                          SDOperand Op1, SDOperand Op2, SDOperand Op3, 
316                          SDOperand Op4, SDOperand Op5, SDOperand Op6);
317   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT1, 
318                          MVT::ValueType VT2, SDOperand Op1, SDOperand Op2);
319   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT1,
320                          MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
321                          SDOperand Op3);
322   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT1,
323                          MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
324                          SDOperand Op3, SDOperand Op4);
325   SDOperand SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT1,
326                          MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
327                          SDOperand Op3, SDOperand Op4, SDOperand Op5);
328
329   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT) {
330     return getNode(ISD::BUILTIN_OP_END+Opcode, VT);
331   }
332   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
333                           SDOperand Op1) {
334     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1);
335   }
336   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
337                           SDOperand Op1, SDOperand Op2) {
338     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2);
339   }
340   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
341                           SDOperand Op1, SDOperand Op2, SDOperand Op3) {
342     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3);
343   }
344   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
345                           SDOperand Op1, SDOperand Op2, SDOperand Op3,
346                           SDOperand Op4) {
347     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3, Op4);
348   }
349   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
350                           SDOperand Op1, SDOperand Op2, SDOperand Op3,
351                           SDOperand Op4, SDOperand Op5) {
352     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3, Op4, Op5);
353   }
354   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
355                           SDOperand Op1, SDOperand Op2, SDOperand Op3,
356                           SDOperand Op4, SDOperand Op5, SDOperand Op6) {
357     std::vector<SDOperand> Ops;
358     Ops.reserve(6);
359     Ops.push_back(Op1);
360     Ops.push_back(Op2);
361     Ops.push_back(Op3);
362     Ops.push_back(Op4);
363     Ops.push_back(Op5);
364     Ops.push_back(Op6);
365     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops);
366   }
367   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
368                           SDOperand Op1, SDOperand Op2, SDOperand Op3,
369                           SDOperand Op4, SDOperand Op5, SDOperand Op6,
370                           SDOperand Op7) {
371     std::vector<SDOperand> Ops;
372     Ops.reserve(7);
373     Ops.push_back(Op1);
374     Ops.push_back(Op2);
375     Ops.push_back(Op3);
376     Ops.push_back(Op4);
377     Ops.push_back(Op5);
378     Ops.push_back(Op6);
379     Ops.push_back(Op7);
380     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops);
381   }
382   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT,
383                           std::vector<SDOperand> &Ops) {
384     return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops);
385   }
386   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
387                           MVT::ValueType VT2, SDOperand Op1) {
388     std::vector<MVT::ValueType> ResultTys;
389     ResultTys.push_back(VT1);
390     ResultTys.push_back(VT2);
391     std::vector<SDOperand> Ops;
392     Ops.push_back(Op1);
393     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
394   }
395   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
396                           MVT::ValueType VT2, SDOperand Op1, SDOperand Op2) {
397     std::vector<MVT::ValueType> ResultTys;
398     ResultTys.push_back(VT1);
399     ResultTys.push_back(VT2);
400     std::vector<SDOperand> Ops;
401     Ops.push_back(Op1);
402     Ops.push_back(Op2);
403     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
404   }
405   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
406                           MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
407                           SDOperand Op3) {
408     std::vector<MVT::ValueType> ResultTys;
409     ResultTys.push_back(VT1);
410     ResultTys.push_back(VT2);
411     std::vector<SDOperand> Ops;
412     Ops.push_back(Op1);
413     Ops.push_back(Op2);
414     Ops.push_back(Op3);
415     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
416   }
417   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
418                           MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
419                           SDOperand Op3, SDOperand Op4) {
420     std::vector<MVT::ValueType> ResultTys;
421     ResultTys.push_back(VT1);
422     ResultTys.push_back(VT2);
423     std::vector<SDOperand> Ops;
424     Ops.push_back(Op1);
425     Ops.push_back(Op2);
426     Ops.push_back(Op3);
427     Ops.push_back(Op4);
428     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
429   }
430   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
431                           MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
432                           SDOperand Op3, SDOperand Op4, SDOperand Op5) {
433     std::vector<MVT::ValueType> ResultTys;
434     ResultTys.push_back(VT1);
435     ResultTys.push_back(VT2);
436     std::vector<SDOperand> Ops;
437     Ops.push_back(Op1);
438     Ops.push_back(Op2);
439     Ops.push_back(Op3);
440     Ops.push_back(Op4);
441     Ops.push_back(Op5);
442     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
443   }
444   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
445                           MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
446                           SDOperand Op3, SDOperand Op4, SDOperand Op5,
447                           SDOperand Op6) {
448     std::vector<MVT::ValueType> ResultTys;
449     ResultTys.push_back(VT1);
450     ResultTys.push_back(VT2);
451     std::vector<SDOperand> Ops;
452     Ops.push_back(Op1);
453     Ops.push_back(Op2);
454     Ops.push_back(Op3);
455     Ops.push_back(Op4);
456     Ops.push_back(Op5);
457     Ops.push_back(Op6);
458     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
459   }
460   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
461                           MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
462                           SDOperand Op3, SDOperand Op4, SDOperand Op5,
463                           SDOperand Op6, SDOperand Op7) {
464     std::vector<MVT::ValueType> ResultTys;
465     ResultTys.push_back(VT1);
466     ResultTys.push_back(VT2);
467     std::vector<SDOperand> Ops;
468     Ops.push_back(Op1);
469     Ops.push_back(Op2);
470     Ops.push_back(Op3);
471     Ops.push_back(Op4);
472     Ops.push_back(Op5);
473     Ops.push_back(Op6); 
474     Ops.push_back(Op7);
475    return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
476   }
477   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
478                           MVT::ValueType VT2, MVT::ValueType VT3,
479                           SDOperand Op1, SDOperand Op2) {
480     std::vector<MVT::ValueType> ResultTys;
481     ResultTys.push_back(VT1);
482     ResultTys.push_back(VT2);
483     ResultTys.push_back(VT3);
484     std::vector<SDOperand> Ops;
485     Ops.push_back(Op1);
486     Ops.push_back(Op2);
487     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
488   }
489   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
490                           MVT::ValueType VT2, MVT::ValueType VT3,
491                           SDOperand Op1, SDOperand Op2,
492                           SDOperand Op3, SDOperand Op4, SDOperand Op5,
493                           SDOperand Op6) {
494     std::vector<MVT::ValueType> ResultTys;
495     ResultTys.push_back(VT1);
496     ResultTys.push_back(VT2);
497     ResultTys.push_back(VT3);
498     std::vector<SDOperand> Ops;
499     Ops.push_back(Op1);
500     Ops.push_back(Op2);
501     Ops.push_back(Op3);
502     Ops.push_back(Op4);
503     Ops.push_back(Op5);
504     Ops.push_back(Op6);
505     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
506   }
507   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1,
508                           MVT::ValueType VT2, MVT::ValueType VT3,
509                           SDOperand Op1, SDOperand Op2,
510                           SDOperand Op3, SDOperand Op4, SDOperand Op5,
511                           SDOperand Op6, SDOperand Op7) {
512     std::vector<MVT::ValueType> ResultTys;
513     ResultTys.push_back(VT1);
514     ResultTys.push_back(VT2);
515     ResultTys.push_back(VT3);
516     std::vector<SDOperand> Ops;
517     Ops.push_back(Op1);
518     Ops.push_back(Op2);
519     Ops.push_back(Op3);
520     Ops.push_back(Op4);
521     Ops.push_back(Op5);
522     Ops.push_back(Op6);
523     Ops.push_back(Op7);
524     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
525   }
526   SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
527                           MVT::ValueType VT2, std::vector<SDOperand> &Ops) {
528     std::vector<MVT::ValueType> ResultTys;
529     ResultTys.push_back(VT1);
530     ResultTys.push_back(VT2);
531     return getNode(ISD::BUILTIN_OP_END+Opcode, ResultTys, Ops);
532   }
533   
534   /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
535   /// This can cause recursive merging of nodes in the DAG.  Use the first
536   /// version if 'From' is known to have a single result, use the second
537   /// if you have two nodes with identical results, use the third otherwise.
538   ///
539   /// These methods all take an optional vector, which (if not null) is 
540   /// populated with any nodes that are deleted from the SelectionDAG, due to
541   /// new equivalences that are discovered.
542   ///
543   void ReplaceAllUsesWith(SDOperand From, SDOperand Op,
544                           std::vector<SDNode*> *Deleted = 0);
545   void ReplaceAllUsesWith(SDNode *From, SDNode *To,
546                           std::vector<SDNode*> *Deleted = 0);
547   void ReplaceAllUsesWith(SDNode *From, const std::vector<SDOperand> &To,
548                           std::vector<SDNode*> *Deleted = 0);
549   
550   
551   /// DeleteNode - Remove the specified node from the system.  This node must
552   /// have no referrers.
553   void DeleteNode(SDNode *N);
554   
555   void dump() const;
556
557 private:
558   void RemoveNodeFromCSEMaps(SDNode *N);
559   SDNode *AddNonLeafNodeToCSEMaps(SDNode *N);
560   void DestroyDeadNode(SDNode *N);
561   void DeleteNodeNotInCSEMaps(SDNode *N);
562   void setNodeValueTypes(SDNode *N, std::vector<MVT::ValueType> &RetVals);
563   void setNodeValueTypes(SDNode *N, MVT::ValueType VT1, MVT::ValueType VT2);
564   
565   
566   /// SimplifySetCC - Try to simplify a setcc built with the specified operands 
567   /// and cc.  If unable to simplify it, return a null SDOperand.
568   SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N1,
569                           SDOperand N2, ISD::CondCode Cond);
570   
571   // List of non-single value types.
572   std::list<std::vector<MVT::ValueType> > VTList;
573   
574   // Maps to auto-CSE operations.
575   std::map<std::pair<unsigned, MVT::ValueType>, SDNode *> NullaryOps;
576   std::map<std::pair<unsigned, std::pair<SDOperand, MVT::ValueType> >,
577            SDNode *> UnaryOps;
578   std::map<std::pair<unsigned, std::pair<SDOperand, SDOperand> >,
579            SDNode *> BinaryOps;
580
581   std::map<std::pair<unsigned, MVT::ValueType>, RegisterSDNode*> RegNodes;
582   std::vector<CondCodeSDNode*> CondCodeNodes;
583
584   std::map<std::pair<SDOperand, std::pair<SDOperand, MVT::ValueType> >,
585            SDNode *> Loads;
586
587   std::map<std::pair<const GlobalValue*, int>, SDNode*> GlobalValues;
588   std::map<std::pair<const GlobalValue*, int>, SDNode*> TargetGlobalValues;
589   std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> Constants;
590   std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> TargetConstants;
591   std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> ConstantFPs;
592   std::map<int, SDNode*> FrameIndices, TargetFrameIndices;
593   std::map<Constant *, SDNode*> ConstantPoolIndices;
594   std::map<Constant *, SDNode*> TargetConstantPoolIndices;
595   std::map<MachineBasicBlock *, SDNode*> BBNodes;
596   std::vector<SDNode*> ValueTypeNodes;
597   std::map<std::string, SDNode*> ExternalSymbols;
598   std::map<std::string, SDNode*> TargetExternalSymbols;
599   std::map<std::string, StringSDNode*> StringNodes;
600   std::map<std::pair<unsigned,
601                      std::pair<MVT::ValueType, std::vector<SDOperand> > >,
602            SDNode*> OneResultNodes;
603   std::map<std::pair<unsigned,
604                      std::pair<std::vector<MVT::ValueType>,
605                                std::vector<SDOperand> > >,
606            SDNode*> ArbitraryNodes;
607 };
608
609 template <> struct GraphTraits<SelectionDAG*> : public GraphTraits<SDNode*> {
610   typedef SelectionDAG::allnodes_iterator nodes_iterator;
611   static nodes_iterator nodes_begin(SelectionDAG *G) {
612     return G->allnodes_begin();
613   }
614   static nodes_iterator nodes_end(SelectionDAG *G) {
615     return G->allnodes_end();
616   }
617 };
618
619 }  // end namespace llvm
620
621 #endif