f7ebbf25fbc37df3e0c8a741188be33f75403a61
[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/SelectionDAGCSEMap.h"
19 #include "llvm/ADT/ilist"
20
21 #include <list>
22 #include <vector>
23 #include <map>
24 #include <set>
25 #include <string>
26
27 namespace llvm {
28   class TargetLowering;
29   class TargetMachine;
30   class MachineDebugInfo;
31   class MachineFunction;
32   class MachineConstantPoolValue;
33
34 /// SelectionDAG class - This is used to represent a portion of an LLVM function
35 /// in a low-level Data Dependence DAG representation suitable for instruction
36 /// selection.  This DAG is constructed as the first step of instruction
37 /// selection in order to allow implementation of machine specific optimizations
38 /// and code simplifications.
39 ///
40 /// The representation used by the SelectionDAG is a target-independent
41 /// representation, which has some similarities to the GCC RTL representation,
42 /// but is significantly more simple, powerful, and is a graph form instead of a
43 /// linear form.
44 ///
45 class SelectionDAG {
46   TargetLowering &TLI;
47   MachineFunction &MF;
48   MachineDebugInfo *DI;
49
50   /// Root - The root of the entire DAG.  EntryNode - The starting token.
51   SDOperand Root, EntryNode;
52
53   /// AllNodes - A linked list of nodes in the current DAG.
54   ilist<SDNode> AllNodes;
55
56   /// CSEMap - This structure is used to memoize nodes, automatically performing
57   /// CSE with existing nodes with a duplicate is requested.
58   SelectionDAGCSEMap CSEMap;
59
60 public:
61   SelectionDAG(TargetLowering &tli, MachineFunction &mf, MachineDebugInfo *di)
62   : TLI(tli), MF(mf), DI(di) {
63     EntryNode = Root = getNode(ISD::EntryToken, MVT::Other);
64   }
65   ~SelectionDAG();
66
67   MachineFunction &getMachineFunction() const { return MF; }
68   const TargetMachine &getTarget() const;
69   TargetLowering &getTargetLoweringInfo() const { return TLI; }
70   MachineDebugInfo *getMachineDebugInfo() const { return DI; }
71
72   /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
73   ///
74   void viewGraph();
75   
76 #ifndef NDEBUG
77   std::map<const SDNode *, std::string> NodeGraphAttrs;
78 #endif
79
80   /// clearGraphAttrs - Clear all previously defined node graph attributes.
81   /// Intended to be used from a debugging tool (eg. gdb).
82   void clearGraphAttrs();
83   
84   /// setGraphAttrs - Set graph attributes for a node. (eg. "color=red".)
85   ///
86   void setGraphAttrs(const SDNode *N, const char *Attrs);
87   
88   /// getGraphAttrs - Get graph attributes for a node. (eg. "color=red".)
89   /// Used from getNodeAttributes.
90   const std::string getGraphAttrs(const SDNode *N) const;
91   
92   /// setGraphColor - Convenience for setting node color attribute.
93   ///
94   void setGraphColor(const SDNode *N, const char *Color);
95
96   typedef ilist<SDNode>::const_iterator allnodes_const_iterator;
97   allnodes_const_iterator allnodes_begin() const { return AllNodes.begin(); }
98   allnodes_const_iterator allnodes_end() const { return AllNodes.end(); }
99   typedef ilist<SDNode>::iterator allnodes_iterator;
100   allnodes_iterator allnodes_begin() { return AllNodes.begin(); }
101   allnodes_iterator allnodes_end() { return AllNodes.end(); }
102   
103   /// getRoot - Return the root tag of the SelectionDAG.
104   ///
105   const SDOperand &getRoot() const { return Root; }
106
107   /// getEntryNode - Return the token chain corresponding to the entry of the
108   /// function.
109   const SDOperand &getEntryNode() const { return EntryNode; }
110
111   /// setRoot - Set the current root tag of the SelectionDAG.
112   ///
113   const SDOperand &setRoot(SDOperand N) { return Root = N; }
114
115   /// Combine - This iterates over the nodes in the SelectionDAG, folding
116   /// certain types of nodes together, or eliminating superfluous nodes.  When
117   /// the AfterLegalize argument is set to 'true', Combine takes care not to
118   /// generate any nodes that will be illegal on the target.
119   void Combine(bool AfterLegalize);
120   
121   /// Legalize - This transforms the SelectionDAG into a SelectionDAG that is
122   /// compatible with the target instruction selector, as indicated by the
123   /// TargetLowering object.
124   ///
125   /// Note that this is an involved process that may invalidate pointers into
126   /// the graph.
127   void Legalize();
128
129   /// RemoveDeadNodes - This method deletes all unreachable nodes in the
130   /// SelectionDAG.
131   void RemoveDeadNodes();
132   
133   /// getVTList - Return an SDVTList that represents the list of values
134   /// specified.
135   SDVTList getVTList(MVT::ValueType VT);
136   SDVTList getVTList(MVT::ValueType VT1, MVT::ValueType VT2);
137   SDVTList getVTList(MVT::ValueType VT1, MVT::ValueType VT2,MVT::ValueType VT3);
138   SDVTList getVTList(const MVT::ValueType *VTs, unsigned NumVTs);
139   
140   /// getNodeValueTypes - These are obsolete, use getVTList instead.
141   const MVT::ValueType *getNodeValueTypes(MVT::ValueType VT) {
142     return getVTList(VT).VTs;
143   }
144   const MVT::ValueType *getNodeValueTypes(MVT::ValueType VT1, 
145                                           MVT::ValueType VT2) {
146     return getVTList(VT1, VT2).VTs;
147   }
148   const MVT::ValueType *getNodeValueTypes(MVT::ValueType VT1,MVT::ValueType VT2,
149                                           MVT::ValueType VT3) {
150     return getVTList(VT1, VT2, VT3).VTs;
151   }
152   const MVT::ValueType *getNodeValueTypes(std::vector<MVT::ValueType> &VTList) {
153     return getVTList(&VTList[0], VTList.size()).VTs;
154   }
155   
156   
157   //===--------------------------------------------------------------------===//
158   // Node creation methods.
159   //
160   SDOperand getString(const std::string &Val);
161   SDOperand getConstant(uint64_t Val, MVT::ValueType VT, bool isTarget = false);
162   SDOperand getTargetConstant(uint64_t Val, MVT::ValueType VT) {
163     return getConstant(Val, VT, true);
164   }
165   SDOperand getConstantFP(double Val, MVT::ValueType VT, bool isTarget = false);
166   SDOperand getTargetConstantFP(double Val, MVT::ValueType VT) {
167     return getConstantFP(Val, VT, true);
168   }
169   SDOperand getGlobalAddress(const GlobalValue *GV, MVT::ValueType VT,
170                              int offset = 0, bool isTargetGA = false);
171   SDOperand getTargetGlobalAddress(const GlobalValue *GV, MVT::ValueType VT,
172                                    int offset = 0) {
173     return getGlobalAddress(GV, VT, offset, true);
174   }
175   SDOperand getFrameIndex(int FI, MVT::ValueType VT, bool isTarget = false);
176   SDOperand getTargetFrameIndex(int FI, MVT::ValueType VT) {
177     return getFrameIndex(FI, VT, true);
178   }
179   SDOperand getJumpTable(int JTI, MVT::ValueType VT, bool isTarget = false);
180   SDOperand getTargetJumpTable(int JTI, MVT::ValueType VT) {
181     return getJumpTable(JTI, VT, true);
182   }
183   SDOperand getConstantPool(Constant *C, MVT::ValueType VT,
184                             unsigned Align = 0, int Offs = 0, bool isT=false);
185   SDOperand getTargetConstantPool(Constant *C, MVT::ValueType VT,
186                                   unsigned Align = 0, int Offset = 0) {
187     return getConstantPool(C, VT, Align, Offset, true);
188   }
189   SDOperand getConstantPool(MachineConstantPoolValue *C, MVT::ValueType VT,
190                             unsigned Align = 0, int Offs = 0, bool isT=false);
191   SDOperand getTargetConstantPool(MachineConstantPoolValue *C,
192                                   MVT::ValueType VT, unsigned Align = 0,
193                                   int Offset = 0) {
194     return getConstantPool(C, VT, Align, Offset, true);
195   }
196   SDOperand getBasicBlock(MachineBasicBlock *MBB);
197   SDOperand getExternalSymbol(const char *Sym, MVT::ValueType VT);
198   SDOperand getTargetExternalSymbol(const char *Sym, MVT::ValueType VT);
199   SDOperand getValueType(MVT::ValueType);
200   SDOperand getRegister(unsigned Reg, MVT::ValueType VT);
201
202   SDOperand getCopyToReg(SDOperand Chain, unsigned Reg, SDOperand N) {
203     return getNode(ISD::CopyToReg, MVT::Other, Chain,
204                    getRegister(Reg, N.getValueType()), N);
205   }
206
207   // This version of the getCopyToReg method takes an extra operand, which
208   // indicates that there is potentially an incoming flag value (if Flag is not
209   // null) and that there should be a flag result.
210   SDOperand getCopyToReg(SDOperand Chain, unsigned Reg, SDOperand N,
211                          SDOperand Flag) {
212     const MVT::ValueType *VTs = getNodeValueTypes(MVT::Other, MVT::Flag);
213     SDOperand Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Flag };
214     return getNode(ISD::CopyToReg, VTs, 2, Ops, Flag.Val ? 4 : 3);
215   }
216
217   // Similar to last getCopyToReg() except parameter Reg is a SDOperand
218   SDOperand getCopyToReg(SDOperand Chain, SDOperand Reg, SDOperand N,
219                          SDOperand Flag) {
220     const MVT::ValueType *VTs = getNodeValueTypes(MVT::Other, MVT::Flag);
221     SDOperand Ops[] = { Chain, Reg, N, Flag };
222     return getNode(ISD::CopyToReg, VTs, 2, Ops, Flag.Val ? 4 : 3);
223   }
224   
225   SDOperand getCopyFromReg(SDOperand Chain, unsigned Reg, MVT::ValueType VT) {
226     const MVT::ValueType *VTs = getNodeValueTypes(VT, MVT::Other);
227     SDOperand Ops[] = { Chain, getRegister(Reg, VT) };
228     return getNode(ISD::CopyFromReg, VTs, 2, Ops, 2);
229   }
230   
231   // This version of the getCopyFromReg method takes an extra operand, which
232   // indicates that there is potentially an incoming flag value (if Flag is not
233   // null) and that there should be a flag result.
234   SDOperand getCopyFromReg(SDOperand Chain, unsigned Reg, MVT::ValueType VT,
235                            SDOperand Flag) {
236     const MVT::ValueType *VTs = getNodeValueTypes(VT, MVT::Other, MVT::Flag);
237     SDOperand Ops[] = { Chain, getRegister(Reg, VT), Flag };
238     return getNode(ISD::CopyFromReg, VTs, 3, Ops, Flag.Val ? 3 : 2);
239   }
240
241   SDOperand getCondCode(ISD::CondCode Cond);
242
243   /// getZeroExtendInReg - Return the expression required to zero extend the Op
244   /// value assuming it was the smaller SrcTy value.
245   SDOperand getZeroExtendInReg(SDOperand Op, MVT::ValueType SrcTy);
246   
247   /// getCALLSEQ_START - Return a new CALLSEQ_START node, which always must have
248   /// a flag result (to ensure it's not CSE'd).
249   SDOperand getCALLSEQ_START(SDOperand Chain, SDOperand Op) {
250     const MVT::ValueType *VTs = getNodeValueTypes(MVT::Other, MVT::Flag);
251     SDOperand Ops[] = { Chain,  Op };
252     return getNode(ISD::CALLSEQ_START, VTs, 2, Ops, 2);
253   }
254
255   /// getNode - Gets or creates the specified node.
256   ///
257   SDOperand getNode(unsigned Opcode, MVT::ValueType VT);
258   SDOperand getNode(unsigned Opcode, MVT::ValueType VT, SDOperand N);
259   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
260                     SDOperand N1, SDOperand N2);
261   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
262                     SDOperand N1, SDOperand N2, SDOperand N3);
263   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
264                     SDOperand N1, SDOperand N2, SDOperand N3, SDOperand N4);
265   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
266                     SDOperand N1, SDOperand N2, SDOperand N3, SDOperand N4,
267                     SDOperand N5);
268   SDOperand getNode(unsigned Opcode, MVT::ValueType VT,
269                     const SDOperand *Ops, unsigned NumOps);
270   SDOperand getNode(unsigned Opcode, std::vector<MVT::ValueType> &ResultTys,
271                     const SDOperand *Ops, unsigned NumOps);
272   SDOperand getNode(unsigned Opcode, const MVT::ValueType *VTs, unsigned NumVTs,
273                     const SDOperand *Ops, unsigned NumOps);
274   SDOperand getNode(unsigned Opcode, SDVTList VTs,
275                     const SDOperand *Ops, unsigned NumOps);
276   
277   /// getSetCC - Helper function to make it easier to build SetCC's if you just
278   /// have an ISD::CondCode instead of an SDOperand.
279   ///
280   SDOperand getSetCC(MVT::ValueType VT, SDOperand LHS, SDOperand RHS,
281                      ISD::CondCode Cond) {
282     return getNode(ISD::SETCC, VT, LHS, RHS, getCondCode(Cond));
283   }
284
285   /// getSelectCC - Helper function to make it easier to build SelectCC's if you
286   /// just have an ISD::CondCode instead of an SDOperand.
287   ///
288   SDOperand getSelectCC(SDOperand LHS, SDOperand RHS,
289                         SDOperand True, SDOperand False, ISD::CondCode Cond) {
290     return getNode(ISD::SELECT_CC, True.getValueType(), LHS, RHS, True, False,
291                    getCondCode(Cond));
292   }
293   
294   /// getVAArg - VAArg produces a result and token chain, and takes a pointer
295   /// and a source value as input.
296   SDOperand getVAArg(MVT::ValueType VT, SDOperand Chain, SDOperand Ptr,
297                      SDOperand SV);
298
299   /// getLoad - Loads are not normal binary operators: their result type is not
300   /// determined by their operands, and they produce a value AND a token chain.
301   ///
302   SDOperand getLoad(MVT::ValueType VT, SDOperand Chain, SDOperand Ptr,
303                     SDOperand SV);
304   SDOperand getVecLoad(unsigned Count, MVT::ValueType VT, SDOperand Chain, 
305                        SDOperand Ptr, SDOperand SV);
306   SDOperand getExtLoad(ISD::LoadExtType LType, MVT::ValueType VT,
307                        SDOperand Chain, SDOperand Ptr, SDOperand SV,
308                        MVT::ValueType EVT);
309
310   // getSrcValue - construct a node to track a Value* through the backend
311   SDOperand getSrcValue(const Value* I, int offset = 0);
312
313   /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
314   /// specified operands.  If the resultant node already exists in the DAG,
315   /// this does not modify the specified node, instead it returns the node that
316   /// already exists.  If the resultant node does not exist in the DAG, the
317   /// input node is returned.  As a degenerate case, if you specify the same
318   /// input operands as the node already has, the input node is returned.
319   SDOperand UpdateNodeOperands(SDOperand N, SDOperand Op);
320   SDOperand UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2);
321   SDOperand UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
322                                SDOperand Op3);
323   SDOperand UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
324                                SDOperand Op3, SDOperand Op4);
325   SDOperand UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
326                                SDOperand Op3, SDOperand Op4, SDOperand Op5);
327   SDOperand UpdateNodeOperands(SDOperand N, SDOperand *Ops, unsigned NumOps);
328   
329   /// SelectNodeTo - These are used for target selectors to *mutate* the
330   /// specified node to have the specified return type, Target opcode, and
331   /// operands.  Note that target opcodes are stored as
332   /// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.  The 0th value
333   /// of the resultant node is returned.
334   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT);
335   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
336                        SDOperand Op1);
337   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
338                        SDOperand Op1, SDOperand Op2);
339   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT, 
340                        SDOperand Op1, SDOperand Op2, SDOperand Op3);
341   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT,
342                         const SDOperand *Ops, unsigned NumOps);
343   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT1, 
344                        MVT::ValueType VT2, SDOperand Op1, SDOperand Op2);
345   SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, MVT::ValueType VT1,
346                        MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
347                        SDOperand Op3);
348
349
350   /// getTargetNode - These are used for target selectors to create a new node
351   /// with specified return type(s), target opcode, and operands.
352   ///
353   /// Note that getTargetNode returns the resultant node.  If there is already a
354   /// node of the specified opcode and operands, it returns that node instead of
355   /// the current one.
356   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT);
357   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT,
358                         SDOperand Op1);
359   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT,
360                         SDOperand Op1, SDOperand Op2);
361   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT,
362                         SDOperand Op1, SDOperand Op2, SDOperand Op3);
363   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT,
364                         const SDOperand *Ops, unsigned NumOps);
365   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1,
366                         MVT::ValueType VT2, SDOperand Op1);
367   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1,
368                         MVT::ValueType VT2, SDOperand Op1, SDOperand Op2);
369   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1,
370                         MVT::ValueType VT2, SDOperand Op1, SDOperand Op2,
371                         SDOperand Op3);
372   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
373                         MVT::ValueType VT2,
374                         const SDOperand *Ops, unsigned NumOps);
375   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1,
376                         MVT::ValueType VT2, MVT::ValueType VT3,
377                         SDOperand Op1, SDOperand Op2);
378   SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
379                         MVT::ValueType VT2, MVT::ValueType VT3,
380                         const SDOperand *Ops, unsigned NumOps);
381   
382   /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
383   /// This can cause recursive merging of nodes in the DAG.  Use the first
384   /// version if 'From' is known to have a single result, use the second
385   /// if you have two nodes with identical results, use the third otherwise.
386   ///
387   /// These methods all take an optional vector, which (if not null) is 
388   /// populated with any nodes that are deleted from the SelectionDAG, due to
389   /// new equivalences that are discovered.
390   ///
391   void ReplaceAllUsesWith(SDOperand From, SDOperand Op,
392                           std::vector<SDNode*> *Deleted = 0);
393   void ReplaceAllUsesWith(SDNode *From, SDNode *To,
394                           std::vector<SDNode*> *Deleted = 0);
395   void ReplaceAllUsesWith(SDNode *From, const SDOperand *To,
396                           std::vector<SDNode*> *Deleted = 0);
397
398   /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
399   /// uses of other values produced by From.Val alone.  The Deleted vector is
400   /// handled the same was as for ReplaceAllUsesWith, but it is required for
401   /// this method.
402   void ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
403                                  std::vector<SDNode*> &Deleted);
404
405   /// DeleteNode - Remove the specified node from the system.  This node must
406   /// have no referrers.
407   void DeleteNode(SDNode *N);
408
409   /// AssignNodeIds - Assign a unique node id for each node in the DAG based on
410   /// their allnodes order. It returns the maximum id.
411   unsigned AssignNodeIds();
412
413   /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
414   /// based on their topological order. It returns the maximum id and a vector
415   /// of the SDNodes* in assigned order by reference.
416   unsigned AssignTopologicalOrder(std::vector<SDNode*> &TopOrder);
417
418   /// isCommutativeBinOp - Returns true if the opcode is a commutative binary
419   /// operation.
420   static bool isCommutativeBinOp(unsigned Opcode) {
421     switch (Opcode) {
422     case ISD::ADD:
423     case ISD::MUL:
424     case ISD::MULHU:
425     case ISD::MULHS:
426     case ISD::FADD:
427     case ISD::FMUL:
428     case ISD::AND:
429     case ISD::OR:
430     case ISD::XOR:
431     case ISD::ADDC: 
432     case ISD::ADDE: return true;
433     default: return false;
434     }
435   }
436
437   void dump() const;
438
439 private:
440   void RemoveNodeFromCSEMaps(SDNode *N);
441   SDNode *AddNonLeafNodeToCSEMaps(SDNode *N);
442   SDNode *FindModifiedNodeSlot(SDNode *N, SDOperand Op, void *&InsertPos);
443   SDNode *FindModifiedNodeSlot(SDNode *N, SDOperand Op1, SDOperand Op2,
444                                void *&InsertPos);
445   SDNode *FindModifiedNodeSlot(SDNode *N, const SDOperand *Ops, unsigned NumOps,
446                                void *&InsertPos);
447
448   void DeleteNodeNotInCSEMaps(SDNode *N);
449   
450   /// SimplifySetCC - Try to simplify a setcc built with the specified operands 
451   /// and cc.  If unable to simplify it, return a null SDOperand.
452   SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N1,
453                           SDOperand N2, ISD::CondCode Cond);
454   
455   // List of non-single value types.
456   std::list<std::vector<MVT::ValueType> > VTList;
457   
458   // Maps to auto-CSE operations.
459   std::vector<CondCodeSDNode*> CondCodeNodes;
460
461   std::vector<SDNode*> ValueTypeNodes;
462   std::map<std::string, SDNode*> ExternalSymbols;
463   std::map<std::string, SDNode*> TargetExternalSymbols;
464   std::map<std::string, StringSDNode*> StringNodes;
465 };
466
467 template <> struct GraphTraits<SelectionDAG*> : public GraphTraits<SDNode*> {
468   typedef SelectionDAG::allnodes_iterator nodes_iterator;
469   static nodes_iterator nodes_begin(SelectionDAG *G) {
470     return G->allnodes_begin();
471   }
472   static nodes_iterator nodes_end(SelectionDAG *G) {
473     return G->allnodes_end();
474   }
475 };
476
477 }  // end namespace llvm
478
479 #endif