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