blob: 44d59a1aa52d69c8ff2283fdff83cd758fd5fe37 [file] [log] [blame]
Vikram S. Adve78ef1392001-08-28 23:06:02 +00001/* -*-C++-*-
2 ****************************************************************************
3 * File:
4 * SchedGraph.h
5 *
6 * Purpose:
7 * Scheduling graph based on SSA graph plus extra dependence edges
8 * capturing dependences due to machine resources (machine registers,
9 * CC registers, and any others).
10 *
11 * Strategy:
12 * This graph tries to leverage the SSA graph as much as possible,
13 * but captures the extra dependences through a common interface.
14 *
15 * History:
16 * 7/20/01 - Vikram Adve - Created
17 ***************************************************************************/
18
19#ifndef LLVM_CODEGEN_SCHEDGRAPH_H
20#define LLVM_CODEGEN_SCHEDGRAPH_H
21
Vikram S. Adve78ef1392001-08-28 23:06:02 +000022#include "llvm/Support/NonCopyable.h"
23#include "llvm/Support/HashExtras.h"
Chris Lattner3ff43872001-09-28 22:56:31 +000024#include "llvm/Support/GraphTraits.h"
Vikram S. Advee64574c2001-11-08 05:20:23 +000025#include "llvm/Target/MachineInstrInfo.h"
26#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnercffebdc2001-09-07 21:07:10 +000027#include <hash_map>
Vikram S. Adve78ef1392001-08-28 23:06:02 +000028
29class Value;
30class Instruction;
Chris Lattner3ff43872001-09-28 22:56:31 +000031class TerminatorInst;
Vikram S. Adve78ef1392001-08-28 23:06:02 +000032class BasicBlock;
33class Method;
Vikram S. Adve78ef1392001-08-28 23:06:02 +000034class TargetMachine;
35class SchedGraphEdge;
36class SchedGraphNode;
37class SchedGraph;
Vikram S. Adve4a87b382001-09-30 23:37:26 +000038class RegToRefVecMap;
Vikram S. Advec352d2c2001-11-05 04:04:23 +000039class ValueToDefVecMap;
40class RefVec;
Chris Lattnerc0c77082001-09-14 17:55:51 +000041class MachineInstr;
Vikram S. Adved0d79c02001-10-28 21:45:02 +000042class MachineCodeForBasicBlock;
43
Vikram S. Adve78ef1392001-08-28 23:06:02 +000044
45/******************** Exported Data Types and Constants ********************/
46
47typedef int ResourceId;
Vikram S. Adved0d79c02001-10-28 21:45:02 +000048const ResourceId InvalidRID = -1;
49const ResourceId MachineCCRegsRID = -2; // use +ve numbers for actual regs
50const ResourceId MachineIntRegsRID = -3; // use +ve numbers for actual regs
51const ResourceId MachineFPRegsRID = -4; // use +ve numbers for actual regs
Vikram S. Adve78ef1392001-08-28 23:06:02 +000052
53
54//*********************** Public Class Declarations ************************/
55
56class SchedGraphEdge: public NonCopyable {
57public:
58 enum SchedGraphEdgeDepType {
Vikram S. Adve200a4352001-11-12 18:53:43 +000059 CtrlDep, MemoryDep, ValueDep, MachineRegister, MachineResource
Vikram S. Adve78ef1392001-08-28 23:06:02 +000060 };
61 enum DataDepOrderType {
Vikram S. Adved0d79c02001-10-28 21:45:02 +000062 TrueDep = 0x1, AntiDep=0x2, OutputDep=0x4, NonDataDep=0x8
Vikram S. Adve78ef1392001-08-28 23:06:02 +000063 };
64
65protected:
66 SchedGraphNode* src;
67 SchedGraphNode* sink;
68 SchedGraphEdgeDepType depType;
Vikram S. Adved0d79c02001-10-28 21:45:02 +000069 unsigned int depOrderType;
Vikram S. Adve78ef1392001-08-28 23:06:02 +000070 int minDelay; // cached latency (assumes fixed target arch)
71
72 union {
Vikram S. Adve4a87b382001-09-30 23:37:26 +000073 const Value* val;
74 int machineRegNum;
75 ResourceId resourceId;
Vikram S. Adve78ef1392001-08-28 23:06:02 +000076 };
77
78public:
79 // For all constructors, if minDelay is unspecified, minDelay is
80 // set to _src->getLatency().
81 // constructor for CtrlDep or MemoryDep edges, selected by 3rd argument
82 /*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
83 SchedGraphNode* _sink,
84 SchedGraphEdgeDepType _depType,
Vikram S. Adve200a4352001-11-12 18:53:43 +000085 unsigned int _depOrderType,
Vikram S. Adve78ef1392001-08-28 23:06:02 +000086 int _minDelay = -1);
87
Vikram S. Adve200a4352001-11-12 18:53:43 +000088 // constructor for explicit value dependence (may be true/anti/output)
Vikram S. Adve78ef1392001-08-28 23:06:02 +000089 /*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
90 SchedGraphNode* _sink,
Vikram S. Adve4a87b382001-09-30 23:37:26 +000091 const Value* _val,
Vikram S. Adve200a4352001-11-12 18:53:43 +000092 unsigned int _depOrderType,
Vikram S. Adve78ef1392001-08-28 23:06:02 +000093 int _minDelay = -1);
94
95 // constructor for machine register dependence
96 /*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
97 SchedGraphNode* _sink,
98 unsigned int _regNum,
Vikram S. Adve200a4352001-11-12 18:53:43 +000099 unsigned int _depOrderType,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000100 int _minDelay = -1);
101
102 // constructor for any other machine resource dependences.
103 // DataDepOrderType is always NonDataDep. It it not an argument to
104 // avoid overloading ambiguity with previous constructor.
105 /*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
106 SchedGraphNode* _sink,
107 ResourceId _resourceId,
108 int _minDelay = -1);
109
Vikram S. Advef0b6d792001-09-18 12:49:26 +0000110 /*dtor*/ ~SchedGraphEdge();
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000111
112 SchedGraphNode* getSrc () const { return src; }
113 SchedGraphNode* getSink () const { return sink; }
114 int getMinDelay () const { return minDelay; }
115 SchedGraphEdgeDepType getDepType () const { return depType; }
116
117 const Value* getValue () const {
Vikram S. Adve200a4352001-11-12 18:53:43 +0000118 assert(depType == ValueDep); return val;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000119 }
120 int getMachineReg () const {
121 assert(depType == MachineRegister); return machineRegNum;
122 }
123 int getResourceId () const {
124 assert(depType == MachineResource); return resourceId;
125 }
126
127public:
128 //
129 // Debugging support
130 //
131 friend ostream& operator<<(ostream& os, const SchedGraphEdge& edge);
132
Chris Lattnercffebdc2001-09-07 21:07:10 +0000133 void dump (int indent=0) const;
134
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000135private:
136 // disable default ctor
137 /*ctor*/ SchedGraphEdge(); // DO NOT IMPLEMENT
138};
139
140
141
142class SchedGraphNode: public NonCopyable {
143private:
144 unsigned int nodeId;
Vikram S. Adveaf00d482001-11-12 14:18:01 +0000145 const BasicBlock* bb;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000146 const MachineInstr* minstr;
147 vector<SchedGraphEdge*> inEdges;
148 vector<SchedGraphEdge*> outEdges;
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000149 int origIndexInBB; // original position of machine instr in BB
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000150 int latency;
151
152public:
Vikram S. Advef0b6d792001-09-18 12:49:26 +0000153 typedef vector<SchedGraphEdge*>:: iterator iterator;
154 typedef vector<SchedGraphEdge*>::const_iterator const_iterator;
155 typedef vector<SchedGraphEdge*>:: reverse_iterator reverse_iterator;
156 typedef vector<SchedGraphEdge*>::const_reverse_iterator const_reverse_iterator;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000157
158public:
159 //
160 // Accessor methods
161 //
162 unsigned int getNodeId () const { return nodeId; }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000163 const MachineInstr* getMachineInstr () const { return minstr; }
Vikram S. Advee64574c2001-11-08 05:20:23 +0000164 const MachineOpCode getOpCode () const { return minstr->getOpCode();}
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000165 int getLatency () const { return latency; }
166 unsigned int getNumInEdges () const { return inEdges.size(); }
167 unsigned int getNumOutEdges () const { return outEdges.size(); }
168 bool isDummyNode () const { return (minstr == NULL); }
Vikram S. Adveaf00d482001-11-12 14:18:01 +0000169 const BasicBlock* getBB () const { return bb; }
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000170 int getOrigIndexInBB() const { return origIndexInBB; }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000171
172 //
173 // Iterators
174 //
175 iterator beginInEdges () { return inEdges.begin(); }
176 iterator endInEdges () { return inEdges.end(); }
177 iterator beginOutEdges () { return outEdges.begin(); }
178 iterator endOutEdges () { return outEdges.end(); }
179
180 const_iterator beginInEdges () const { return inEdges.begin(); }
181 const_iterator endInEdges () const { return inEdges.end(); }
182 const_iterator beginOutEdges () const { return outEdges.begin(); }
183 const_iterator endOutEdges () const { return outEdges.end(); }
184
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000185public:
186 //
187 // Debugging support
188 //
189 friend ostream& operator<<(ostream& os, const SchedGraphNode& node);
190
Chris Lattnercffebdc2001-09-07 21:07:10 +0000191 void dump (int indent=0) const;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000192
193private:
194 friend class SchedGraph; // give access for ctor and dtor
195 friend class SchedGraphEdge; // give access for adding edges
196
197 void addInEdge (SchedGraphEdge* edge);
198 void addOutEdge (SchedGraphEdge* edge);
199
200 void removeInEdge (const SchedGraphEdge* edge);
201 void removeOutEdge (const SchedGraphEdge* edge);
202
203 // disable default constructor and provide a ctor for single-block graphs
204 /*ctor*/ SchedGraphNode(); // DO NOT IMPLEMENT
205 /*ctor*/ SchedGraphNode (unsigned int _nodeId,
Vikram S. Adveaf00d482001-11-12 14:18:01 +0000206 const BasicBlock* _bb,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000207 const MachineInstr* _minstr,
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000208 int indexInBB,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000209 const TargetMachine& _target);
210 /*dtor*/ ~SchedGraphNode ();
211};
212
213
214
215class SchedGraph :
216 public NonCopyable,
217 private hash_map<const MachineInstr*, SchedGraphNode*>
218{
219private:
220 vector<const BasicBlock*> bbVec; // basic blocks included in the graph
221 SchedGraphNode* graphRoot; // the root and leaf are not inserted
222 SchedGraphNode* graphLeaf; // in the hash_map (see getNumNodes())
223
224public:
225 typedef hash_map<const MachineInstr*, SchedGraphNode*>::iterator iterator;
226 typedef hash_map<const MachineInstr*, SchedGraphNode*>::const_iterator const_iterator;
227
228public:
229 //
230 // Accessor methods
231 //
232 const vector<const BasicBlock*>& getBasicBlocks() const { return bbVec; }
233 const unsigned int getNumNodes() const { return size()+2; }
234 SchedGraphNode* getRoot() const { return graphRoot; }
235 SchedGraphNode* getLeaf() const { return graphLeaf; }
236
237 SchedGraphNode* getGraphNodeForInstr(const MachineInstr* minstr) const {
238 const_iterator onePair = this->find(minstr);
239 return (onePair != this->end())? (*onePair).second : NULL;
240 }
241
242 //
Vikram S. Advef0b6d792001-09-18 12:49:26 +0000243 // Delete nodes or edges from the graph.
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000244 //
Vikram S. Advef0b6d792001-09-18 12:49:26 +0000245 void eraseNode (SchedGraphNode* node);
246
247 void eraseIncomingEdges (SchedGraphNode* node,
248 bool addDummyEdges = true);
249
250 void eraseOutgoingEdges (SchedGraphNode* node,
251 bool addDummyEdges = true);
252
253 void eraseIncidentEdges (SchedGraphNode* node,
254 bool addDummyEdges = true);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000255
256 //
257 // Unordered iterators.
258 // Return values is pair<const MachineIntr*,SchedGraphNode*>.
259 //
260 iterator begin() {
261 return hash_map<const MachineInstr*, SchedGraphNode*>::begin();
262 }
263 iterator end() {
264 return hash_map<const MachineInstr*, SchedGraphNode*>::end();
265 }
266 const_iterator begin() const {
267 return hash_map<const MachineInstr*, SchedGraphNode*>::begin();
268 }
269 const_iterator end() const {
270 return hash_map<const MachineInstr*, SchedGraphNode*>::end();
271 }
272
273 //
274 // Ordered iterators.
275 // Return values is pair<const MachineIntr*,SchedGraphNode*>.
276 //
277 // void postord_init();
278 // postorder_iterator postord_begin();
279 // postorder_iterator postord_end();
280 // const_postorder_iterator postord_begin() const;
281 // const_postorder_iterator postord_end() const;
282
283 //
284 // Debugging support
285 //
286 void dump () const;
287
288private:
289 friend class SchedGraphSet; // give access to ctor
290
291 // disable default constructor and provide a ctor for single-block graphs
292 /*ctor*/ SchedGraph (); // DO NOT IMPLEMENT
293 /*ctor*/ SchedGraph (const BasicBlock* bb,
294 const TargetMachine& target);
295 /*dtor*/ ~SchedGraph ();
296
297 inline void noteGraphNodeForInstr (const MachineInstr* minstr,
298 SchedGraphNode* node)
299 {
300 assert((*this)[minstr] == NULL);
301 (*this)[minstr] = node;
302 }
303
304 //
305 // Graph builder
306 //
Vikram S. Adved0d79c02001-10-28 21:45:02 +0000307 void buildGraph (const TargetMachine& target);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000308
Vikram S. Adve5b43af92001-11-11 01:23:27 +0000309 void buildNodesforBB (const TargetMachine& target,
310 const BasicBlock* bb,
Vikram S. Advee64574c2001-11-08 05:20:23 +0000311 vector<SchedGraphNode*>& memNodeVec,
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000312 RegToRefVecMap& regToRefVecMap,
313 ValueToDefVecMap& valueToDefVecMap);
Vikram S. Adve4a87b382001-09-30 23:37:26 +0000314
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000315 void findDefUseInfoAtInstr (const TargetMachine& target,
316 SchedGraphNode* node,
Vikram S. Advee64574c2001-11-08 05:20:23 +0000317 vector<SchedGraphNode*>& memNodeVec,
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000318 RegToRefVecMap& regToRefVecMap,
319 ValueToDefVecMap& valueToDefVecMap);
320
Vikram S. Advee64574c2001-11-08 05:20:23 +0000321 void addEdgesForInstruction(const MachineInstr& minstr,
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000322 const ValueToDefVecMap& valueToDefVecMap,
323 const TargetMachine& target);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000324
325 void addCDEdges (const TerminatorInst* term,
326 const TargetMachine& target);
327
Vikram S. Advee64574c2001-11-08 05:20:23 +0000328 void addMemEdges (const vector<SchedGraphNode*>& memNodeVec,
329 const TargetMachine& target);
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000330
Vikram S. Advee64574c2001-11-08 05:20:23 +0000331 void addCallCCEdges (const vector<SchedGraphNode*>& memNodeVec,
332 MachineCodeForBasicBlock& bbMvec,
333 const TargetMachine& target);
Vikram S. Adved0d79c02001-10-28 21:45:02 +0000334
Vikram S. Adve4a87b382001-09-30 23:37:26 +0000335 void addMachineRegEdges (RegToRefVecMap& regToRefVecMap,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000336 const TargetMachine& target);
337
Vikram S. Adve200a4352001-11-12 18:53:43 +0000338 void addEdgesForValue (SchedGraphNode* refNode,
Vikram S. Advec352d2c2001-11-05 04:04:23 +0000339 const RefVec& defVec,
Vikram S. Advef43e3362001-10-17 23:55:16 +0000340 const Value* defValue,
Vikram S. Adve200a4352001-11-12 18:53:43 +0000341 bool refNodeIsDef,
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000342 const TargetMachine& target);
343
344 void addDummyEdges ();
345};
346
347
348class SchedGraphSet :
349 public NonCopyable,
350 private hash_map<const BasicBlock*, SchedGraph*>
351{
352private:
353 const Method* method;
354
355public:
356 typedef hash_map<const BasicBlock*, SchedGraph*>::iterator iterator;
357 typedef hash_map<const BasicBlock*, SchedGraph*>::const_iterator const_iterator;
358
359public:
360 /*ctor*/ SchedGraphSet (const Method* _method,
361 const TargetMachine& target);
362 /*dtor*/ ~SchedGraphSet ();
363
364 //
365 // Accessors
366 //
367 SchedGraph* getGraphForBasicBlock (const BasicBlock* bb) const {
368 const_iterator onePair = this->find(bb);
369 return (onePair != this->end())? (*onePair).second : NULL;
370 }
371
372 //
373 // Iterators
374 //
375 iterator begin() {
376 return hash_map<const BasicBlock*, SchedGraph*>::begin();
377 }
378 iterator end() {
379 return hash_map<const BasicBlock*, SchedGraph*>::end();
380 }
381 const_iterator begin() const {
382 return hash_map<const BasicBlock*, SchedGraph*>::begin();
383 }
384 const_iterator end() const {
385 return hash_map<const BasicBlock*, SchedGraph*>::end();
386 }
387
388 //
389 // Debugging support
390 //
391 void dump () const;
392
393private:
394 inline void noteGraphForBlock(const BasicBlock* bb, SchedGraph* graph) {
395 assert((*this)[bb] == NULL);
396 (*this)[bb] = graph;
397 }
398
399 //
400 // Graph builder
401 //
402 void buildGraphsForMethod (const Method *method,
403 const TargetMachine& target);
404};
405
406
407//********************** Sched Graph Iterators *****************************/
408
409// Ok to make it a template because it shd get instantiated at most twice:
410// for <SchedGraphNode, SchedGraphNode::iterator> and
411// for <const SchedGraphNode, SchedGraphNode::const_iterator>.
412//
413template <class _NodeType, class _EdgeType, class _EdgeIter>
Chris Lattnercffebdc2001-09-07 21:07:10 +0000414class PredIterator: public std::bidirectional_iterator<_NodeType, ptrdiff_t> {
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000415protected:
416 _EdgeIter oi;
417public:
Chris Lattnercffebdc2001-09-07 21:07:10 +0000418 typedef PredIterator<_NodeType, _EdgeType, _EdgeIter> _Self;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000419
Chris Lattnercffebdc2001-09-07 21:07:10 +0000420 inline PredIterator(_EdgeIter startEdge) : oi(startEdge) {}
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000421
422 inline bool operator==(const _Self& x) const { return oi == x.oi; }
423 inline bool operator!=(const _Self& x) const { return !operator==(x); }
424
425 // operator*() differs for pred or succ iterator
Chris Lattnercffebdc2001-09-07 21:07:10 +0000426 inline _NodeType* operator*() const { return (*oi)->getSrc(); }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000427 inline _NodeType* operator->() const { return operator*(); }
428
429 inline _EdgeType* getEdge() const { return *(oi); }
430
Chris Lattnercffebdc2001-09-07 21:07:10 +0000431 inline _Self &operator++() { ++oi; return *this; } // Preincrement
432 inline _Self operator++(int) { // Postincrement
433 _Self tmp(*this); ++*this; return tmp;
434 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000435
Chris Lattnercffebdc2001-09-07 21:07:10 +0000436 inline _Self &operator--() { --oi; return *this; } // Predecrement
437 inline _Self operator--(int) { // Postdecrement
438 _Self tmp = *this; --*this; return tmp;
439 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000440};
441
442template <class _NodeType, class _EdgeType, class _EdgeIter>
Chris Lattnercffebdc2001-09-07 21:07:10 +0000443class SuccIterator: public std::bidirectional_iterator<_NodeType, ptrdiff_t> {
444protected:
445 _EdgeIter oi;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000446public:
Chris Lattnercffebdc2001-09-07 21:07:10 +0000447 typedef SuccIterator<_NodeType, _EdgeType, _EdgeIter> _Self;
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000448
Chris Lattnercffebdc2001-09-07 21:07:10 +0000449 inline SuccIterator(_EdgeIter startEdge) : oi(startEdge) {}
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000450
Chris Lattnercffebdc2001-09-07 21:07:10 +0000451 inline bool operator==(const _Self& x) const { return oi == x.oi; }
452 inline bool operator!=(const _Self& x) const { return !operator==(x); }
453
454 inline _NodeType* operator*() const { return (*oi)->getSink(); }
455 inline _NodeType* operator->() const { return operator*(); }
456
457 inline _EdgeType* getEdge() const { return *(oi); }
458
459 inline _Self &operator++() { ++oi; return *this; } // Preincrement
460 inline _Self operator++(int) { // Postincrement
461 _Self tmp(*this); ++*this; return tmp;
462 }
463
464 inline _Self &operator--() { --oi; return *this; } // Predecrement
465 inline _Self operator--(int) { // Postdecrement
466 _Self tmp = *this; --*this; return tmp;
467 }
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000468};
469
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000470//
471// sg_pred_iterator
472// sg_pred_const_iterator
473//
474typedef PredIterator<SchedGraphNode, SchedGraphEdge, SchedGraphNode::iterator>
475 sg_pred_iterator;
476typedef PredIterator<const SchedGraphNode, const SchedGraphEdge,SchedGraphNode::const_iterator>
477 sg_pred_const_iterator;
478
479inline sg_pred_iterator pred_begin( SchedGraphNode *N) {
480 return sg_pred_iterator(N->beginInEdges());
481}
482inline sg_pred_iterator pred_end( SchedGraphNode *N) {
483 return sg_pred_iterator(N->endInEdges());
484}
485inline sg_pred_const_iterator pred_begin(const SchedGraphNode *N) {
486 return sg_pred_const_iterator(N->beginInEdges());
487}
488inline sg_pred_const_iterator pred_end( const SchedGraphNode *N) {
489 return sg_pred_const_iterator(N->endInEdges());
490}
491
492
493//
494// sg_succ_iterator
495// sg_succ_const_iterator
496//
497typedef SuccIterator<SchedGraphNode, SchedGraphEdge, SchedGraphNode::iterator>
498 sg_succ_iterator;
499typedef SuccIterator<const SchedGraphNode, const SchedGraphEdge,SchedGraphNode::const_iterator>
500 sg_succ_const_iterator;
501
502inline sg_succ_iterator succ_begin( SchedGraphNode *N) {
503 return sg_succ_iterator(N->beginOutEdges());
504}
505inline sg_succ_iterator succ_end( SchedGraphNode *N) {
506 return sg_succ_iterator(N->endOutEdges());
507}
508inline sg_succ_const_iterator succ_begin(const SchedGraphNode *N) {
509 return sg_succ_const_iterator(N->beginOutEdges());
510}
511inline sg_succ_const_iterator succ_end( const SchedGraphNode *N) {
512 return sg_succ_const_iterator(N->endOutEdges());
513}
514
Chris Lattner3ff43872001-09-28 22:56:31 +0000515// Provide specializations of GraphTraits to be able to use graph iterators on
516// the scheduling graph!
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000517//
Chris Lattner3ff43872001-09-28 22:56:31 +0000518template <> struct GraphTraits<SchedGraph*> {
519 typedef SchedGraphNode NodeType;
520 typedef sg_succ_iterator ChildIteratorType;
521
522 static inline NodeType *getEntryNode(SchedGraph *SG) { return SG->getRoot(); }
523 static inline ChildIteratorType child_begin(NodeType *N) {
524 return succ_begin(N);
525 }
526 static inline ChildIteratorType child_end(NodeType *N) {
527 return succ_end(N);
528 }
529};
530
531template <> struct GraphTraits<const SchedGraph*> {
532 typedef const SchedGraphNode NodeType;
533 typedef sg_succ_const_iterator ChildIteratorType;
534
535 static inline NodeType *getEntryNode(const SchedGraph *SG) {
536 return SG->getRoot();
537 }
538 static inline ChildIteratorType child_begin(NodeType *N) {
539 return succ_begin(N);
540 }
541 static inline ChildIteratorType child_end(NodeType *N) {
542 return succ_end(N);
543 }
544};
Vikram S. Adve78ef1392001-08-28 23:06:02 +0000545
546
547//************************ External Functions *****************************/
548
549
550ostream& operator<<(ostream& os, const SchedGraphEdge& edge);
551
552ostream& operator<<(ostream& os, const SchedGraphNode& node);
553
554
555/***************************************************************************/
556
557#endif