2001-08-28 23:06:02 +00:00
|
|
|
/* -*-C++-*-
|
|
|
|
****************************************************************************
|
|
|
|
* File:
|
|
|
|
* SchedGraph.h
|
|
|
|
*
|
|
|
|
* Purpose:
|
|
|
|
* Scheduling graph based on SSA graph plus extra dependence edges
|
|
|
|
* capturing dependences due to machine resources (machine registers,
|
|
|
|
* CC registers, and any others).
|
|
|
|
*
|
|
|
|
* Strategy:
|
|
|
|
* This graph tries to leverage the SSA graph as much as possible,
|
|
|
|
* but captures the extra dependences through a common interface.
|
|
|
|
*
|
|
|
|
* History:
|
|
|
|
* 7/20/01 - Vikram Adve - Created
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_SCHEDGRAPH_H
|
|
|
|
#define LLVM_CODEGEN_SCHEDGRAPH_H
|
|
|
|
|
2001-11-08 05:20:23 +00:00
|
|
|
#include "llvm/Target/MachineInstrInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/NonCopyable.h"
|
|
|
|
#include "Support/HashExtras.h"
|
|
|
|
#include "Support/GraphTraits.h"
|
2001-09-07 21:07:10 +00:00
|
|
|
#include <hash_map>
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
class Value;
|
|
|
|
class Instruction;
|
2001-09-28 22:56:31 +00:00
|
|
|
class TerminatorInst;
|
2001-08-28 23:06:02 +00:00
|
|
|
class BasicBlock;
|
|
|
|
class Method;
|
|
|
|
class TargetMachine;
|
|
|
|
class SchedGraphEdge;
|
|
|
|
class SchedGraphNode;
|
|
|
|
class SchedGraph;
|
2001-09-30 23:37:26 +00:00
|
|
|
class RegToRefVecMap;
|
2001-11-05 04:04:23 +00:00
|
|
|
class ValueToDefVecMap;
|
|
|
|
class RefVec;
|
2001-09-14 17:55:51 +00:00
|
|
|
class MachineInstr;
|
2001-10-28 21:45:02 +00:00
|
|
|
class MachineCodeForBasicBlock;
|
|
|
|
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
/******************** Exported Data Types and Constants ********************/
|
|
|
|
|
|
|
|
typedef int ResourceId;
|
2001-10-28 21:45:02 +00:00
|
|
|
const ResourceId InvalidRID = -1;
|
|
|
|
const ResourceId MachineCCRegsRID = -2; // use +ve numbers for actual regs
|
|
|
|
const ResourceId MachineIntRegsRID = -3; // use +ve numbers for actual regs
|
|
|
|
const ResourceId MachineFPRegsRID = -4; // use +ve numbers for actual regs
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
//*********************** Public Class Declarations ************************/
|
|
|
|
|
|
|
|
class SchedGraphEdge: public NonCopyable {
|
|
|
|
public:
|
|
|
|
enum SchedGraphEdgeDepType {
|
2001-11-12 18:53:43 +00:00
|
|
|
CtrlDep, MemoryDep, ValueDep, MachineRegister, MachineResource
|
2001-08-28 23:06:02 +00:00
|
|
|
};
|
|
|
|
enum DataDepOrderType {
|
2001-10-28 21:45:02 +00:00
|
|
|
TrueDep = 0x1, AntiDep=0x2, OutputDep=0x4, NonDataDep=0x8
|
2001-08-28 23:06:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
SchedGraphNode* src;
|
|
|
|
SchedGraphNode* sink;
|
|
|
|
SchedGraphEdgeDepType depType;
|
2001-10-28 21:45:02 +00:00
|
|
|
unsigned int depOrderType;
|
2001-08-28 23:06:02 +00:00
|
|
|
int minDelay; // cached latency (assumes fixed target arch)
|
|
|
|
|
|
|
|
union {
|
2001-09-30 23:37:26 +00:00
|
|
|
const Value* val;
|
|
|
|
int machineRegNum;
|
|
|
|
ResourceId resourceId;
|
2001-08-28 23:06:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
// For all constructors, if minDelay is unspecified, minDelay is
|
|
|
|
// set to _src->getLatency().
|
|
|
|
// constructor for CtrlDep or MemoryDep edges, selected by 3rd argument
|
|
|
|
/*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
|
|
|
|
SchedGraphNode* _sink,
|
|
|
|
SchedGraphEdgeDepType _depType,
|
2001-11-12 18:53:43 +00:00
|
|
|
unsigned int _depOrderType,
|
2001-08-28 23:06:02 +00:00
|
|
|
int _minDelay = -1);
|
|
|
|
|
2001-11-12 18:53:43 +00:00
|
|
|
// constructor for explicit value dependence (may be true/anti/output)
|
2001-08-28 23:06:02 +00:00
|
|
|
/*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
|
|
|
|
SchedGraphNode* _sink,
|
2001-09-30 23:37:26 +00:00
|
|
|
const Value* _val,
|
2001-11-12 18:53:43 +00:00
|
|
|
unsigned int _depOrderType,
|
2001-08-28 23:06:02 +00:00
|
|
|
int _minDelay = -1);
|
|
|
|
|
|
|
|
// constructor for machine register dependence
|
|
|
|
/*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
|
|
|
|
SchedGraphNode* _sink,
|
|
|
|
unsigned int _regNum,
|
2001-11-12 18:53:43 +00:00
|
|
|
unsigned int _depOrderType,
|
2001-08-28 23:06:02 +00:00
|
|
|
int _minDelay = -1);
|
|
|
|
|
|
|
|
// constructor for any other machine resource dependences.
|
|
|
|
// DataDepOrderType is always NonDataDep. It it not an argument to
|
|
|
|
// avoid overloading ambiguity with previous constructor.
|
|
|
|
/*ctor*/ SchedGraphEdge(SchedGraphNode* _src,
|
|
|
|
SchedGraphNode* _sink,
|
|
|
|
ResourceId _resourceId,
|
|
|
|
int _minDelay = -1);
|
|
|
|
|
2001-09-18 12:49:26 +00:00
|
|
|
/*dtor*/ ~SchedGraphEdge();
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
SchedGraphNode* getSrc () const { return src; }
|
|
|
|
SchedGraphNode* getSink () const { return sink; }
|
|
|
|
int getMinDelay () const { return minDelay; }
|
|
|
|
SchedGraphEdgeDepType getDepType () const { return depType; }
|
|
|
|
|
|
|
|
const Value* getValue () const {
|
2001-11-12 18:53:43 +00:00
|
|
|
assert(depType == ValueDep); return val;
|
2001-08-28 23:06:02 +00:00
|
|
|
}
|
|
|
|
int getMachineReg () const {
|
|
|
|
assert(depType == MachineRegister); return machineRegNum;
|
|
|
|
}
|
|
|
|
int getResourceId () const {
|
|
|
|
assert(depType == MachineResource); return resourceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
//
|
|
|
|
// Debugging support
|
|
|
|
//
|
|
|
|
friend ostream& operator<<(ostream& os, const SchedGraphEdge& edge);
|
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
void dump (int indent=0) const;
|
|
|
|
|
2001-08-28 23:06:02 +00:00
|
|
|
private:
|
|
|
|
// disable default ctor
|
|
|
|
/*ctor*/ SchedGraphEdge(); // DO NOT IMPLEMENT
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SchedGraphNode: public NonCopyable {
|
|
|
|
private:
|
|
|
|
unsigned int nodeId;
|
2001-11-12 14:18:01 +00:00
|
|
|
const BasicBlock* bb;
|
2001-08-28 23:06:02 +00:00
|
|
|
const MachineInstr* minstr;
|
|
|
|
vector<SchedGraphEdge*> inEdges;
|
|
|
|
vector<SchedGraphEdge*> outEdges;
|
2001-11-11 01:23:27 +00:00
|
|
|
int origIndexInBB; // original position of machine instr in BB
|
2001-08-28 23:06:02 +00:00
|
|
|
int latency;
|
|
|
|
|
|
|
|
public:
|
2001-09-18 12:49:26 +00:00
|
|
|
typedef vector<SchedGraphEdge*>:: iterator iterator;
|
|
|
|
typedef vector<SchedGraphEdge*>::const_iterator const_iterator;
|
|
|
|
typedef vector<SchedGraphEdge*>:: reverse_iterator reverse_iterator;
|
|
|
|
typedef vector<SchedGraphEdge*>::const_reverse_iterator const_reverse_iterator;
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
//
|
|
|
|
// Accessor methods
|
|
|
|
//
|
|
|
|
unsigned int getNodeId () const { return nodeId; }
|
|
|
|
const MachineInstr* getMachineInstr () const { return minstr; }
|
2001-11-08 05:20:23 +00:00
|
|
|
const MachineOpCode getOpCode () const { return minstr->getOpCode();}
|
2001-08-28 23:06:02 +00:00
|
|
|
int getLatency () const { return latency; }
|
|
|
|
unsigned int getNumInEdges () const { return inEdges.size(); }
|
|
|
|
unsigned int getNumOutEdges () const { return outEdges.size(); }
|
|
|
|
bool isDummyNode () const { return (minstr == NULL); }
|
2001-11-12 14:18:01 +00:00
|
|
|
const BasicBlock* getBB () const { return bb; }
|
2001-11-11 01:23:27 +00:00
|
|
|
int getOrigIndexInBB() const { return origIndexInBB; }
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Iterators
|
|
|
|
//
|
|
|
|
iterator beginInEdges () { return inEdges.begin(); }
|
|
|
|
iterator endInEdges () { return inEdges.end(); }
|
|
|
|
iterator beginOutEdges () { return outEdges.begin(); }
|
|
|
|
iterator endOutEdges () { return outEdges.end(); }
|
|
|
|
|
|
|
|
const_iterator beginInEdges () const { return inEdges.begin(); }
|
|
|
|
const_iterator endInEdges () const { return inEdges.end(); }
|
|
|
|
const_iterator beginOutEdges () const { return outEdges.begin(); }
|
|
|
|
const_iterator endOutEdges () const { return outEdges.end(); }
|
|
|
|
|
|
|
|
public:
|
|
|
|
//
|
|
|
|
// Debugging support
|
|
|
|
//
|
|
|
|
friend ostream& operator<<(ostream& os, const SchedGraphNode& node);
|
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
void dump (int indent=0) const;
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class SchedGraph; // give access for ctor and dtor
|
|
|
|
friend class SchedGraphEdge; // give access for adding edges
|
|
|
|
|
|
|
|
void addInEdge (SchedGraphEdge* edge);
|
|
|
|
void addOutEdge (SchedGraphEdge* edge);
|
|
|
|
|
|
|
|
void removeInEdge (const SchedGraphEdge* edge);
|
|
|
|
void removeOutEdge (const SchedGraphEdge* edge);
|
|
|
|
|
|
|
|
// disable default constructor and provide a ctor for single-block graphs
|
|
|
|
/*ctor*/ SchedGraphNode(); // DO NOT IMPLEMENT
|
|
|
|
/*ctor*/ SchedGraphNode (unsigned int _nodeId,
|
2001-11-12 14:18:01 +00:00
|
|
|
const BasicBlock* _bb,
|
2001-08-28 23:06:02 +00:00
|
|
|
const MachineInstr* _minstr,
|
2001-11-11 01:23:27 +00:00
|
|
|
int indexInBB,
|
2001-08-28 23:06:02 +00:00
|
|
|
const TargetMachine& _target);
|
|
|
|
/*dtor*/ ~SchedGraphNode ();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SchedGraph :
|
|
|
|
public NonCopyable,
|
|
|
|
private hash_map<const MachineInstr*, SchedGraphNode*>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
vector<const BasicBlock*> bbVec; // basic blocks included in the graph
|
|
|
|
SchedGraphNode* graphRoot; // the root and leaf are not inserted
|
|
|
|
SchedGraphNode* graphLeaf; // in the hash_map (see getNumNodes())
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef hash_map<const MachineInstr*, SchedGraphNode*>::iterator iterator;
|
|
|
|
typedef hash_map<const MachineInstr*, SchedGraphNode*>::const_iterator const_iterator;
|
|
|
|
|
|
|
|
public:
|
|
|
|
//
|
|
|
|
// Accessor methods
|
|
|
|
//
|
|
|
|
const vector<const BasicBlock*>& getBasicBlocks() const { return bbVec; }
|
|
|
|
const unsigned int getNumNodes() const { return size()+2; }
|
|
|
|
SchedGraphNode* getRoot() const { return graphRoot; }
|
|
|
|
SchedGraphNode* getLeaf() const { return graphLeaf; }
|
|
|
|
|
|
|
|
SchedGraphNode* getGraphNodeForInstr(const MachineInstr* minstr) const {
|
|
|
|
const_iterator onePair = this->find(minstr);
|
|
|
|
return (onePair != this->end())? (*onePair).second : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2001-09-18 12:49:26 +00:00
|
|
|
// Delete nodes or edges from the graph.
|
2001-08-28 23:06:02 +00:00
|
|
|
//
|
2001-09-18 12:49:26 +00:00
|
|
|
void eraseNode (SchedGraphNode* node);
|
|
|
|
|
|
|
|
void eraseIncomingEdges (SchedGraphNode* node,
|
|
|
|
bool addDummyEdges = true);
|
|
|
|
|
|
|
|
void eraseOutgoingEdges (SchedGraphNode* node,
|
|
|
|
bool addDummyEdges = true);
|
|
|
|
|
|
|
|
void eraseIncidentEdges (SchedGraphNode* node,
|
|
|
|
bool addDummyEdges = true);
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Unordered iterators.
|
|
|
|
// Return values is pair<const MachineIntr*,SchedGraphNode*>.
|
|
|
|
//
|
|
|
|
iterator begin() {
|
|
|
|
return hash_map<const MachineInstr*, SchedGraphNode*>::begin();
|
|
|
|
}
|
|
|
|
iterator end() {
|
|
|
|
return hash_map<const MachineInstr*, SchedGraphNode*>::end();
|
|
|
|
}
|
|
|
|
const_iterator begin() const {
|
|
|
|
return hash_map<const MachineInstr*, SchedGraphNode*>::begin();
|
|
|
|
}
|
|
|
|
const_iterator end() const {
|
|
|
|
return hash_map<const MachineInstr*, SchedGraphNode*>::end();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Ordered iterators.
|
|
|
|
// Return values is pair<const MachineIntr*,SchedGraphNode*>.
|
|
|
|
//
|
|
|
|
// void postord_init();
|
|
|
|
// postorder_iterator postord_begin();
|
|
|
|
// postorder_iterator postord_end();
|
|
|
|
// const_postorder_iterator postord_begin() const;
|
|
|
|
// const_postorder_iterator postord_end() const;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Debugging support
|
|
|
|
//
|
|
|
|
void dump () const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class SchedGraphSet; // give access to ctor
|
|
|
|
|
|
|
|
// disable default constructor and provide a ctor for single-block graphs
|
|
|
|
/*ctor*/ SchedGraph (); // DO NOT IMPLEMENT
|
|
|
|
/*ctor*/ SchedGraph (const BasicBlock* bb,
|
|
|
|
const TargetMachine& target);
|
|
|
|
/*dtor*/ ~SchedGraph ();
|
|
|
|
|
|
|
|
inline void noteGraphNodeForInstr (const MachineInstr* minstr,
|
|
|
|
SchedGraphNode* node)
|
|
|
|
{
|
|
|
|
assert((*this)[minstr] == NULL);
|
|
|
|
(*this)[minstr] = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Graph builder
|
|
|
|
//
|
2001-10-28 21:45:02 +00:00
|
|
|
void buildGraph (const TargetMachine& target);
|
2001-08-28 23:06:02 +00:00
|
|
|
|
2001-11-11 01:23:27 +00:00
|
|
|
void buildNodesforBB (const TargetMachine& target,
|
|
|
|
const BasicBlock* bb,
|
2001-11-08 05:20:23 +00:00
|
|
|
vector<SchedGraphNode*>& memNodeVec,
|
2001-11-05 04:04:23 +00:00
|
|
|
RegToRefVecMap& regToRefVecMap,
|
|
|
|
ValueToDefVecMap& valueToDefVecMap);
|
|
|
|
|
|
|
|
void findDefUseInfoAtInstr (const TargetMachine& target,
|
|
|
|
SchedGraphNode* node,
|
2001-11-08 05:20:23 +00:00
|
|
|
vector<SchedGraphNode*>& memNodeVec,
|
2001-11-05 04:04:23 +00:00
|
|
|
RegToRefVecMap& regToRefVecMap,
|
|
|
|
ValueToDefVecMap& valueToDefVecMap);
|
|
|
|
|
2001-11-08 05:20:23 +00:00
|
|
|
void addEdgesForInstruction(const MachineInstr& minstr,
|
2001-11-05 04:04:23 +00:00
|
|
|
const ValueToDefVecMap& valueToDefVecMap,
|
|
|
|
const TargetMachine& target);
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
void addCDEdges (const TerminatorInst* term,
|
|
|
|
const TargetMachine& target);
|
|
|
|
|
2001-11-08 05:20:23 +00:00
|
|
|
void addMemEdges (const vector<SchedGraphNode*>& memNodeVec,
|
|
|
|
const TargetMachine& target);
|
2001-08-28 23:06:02 +00:00
|
|
|
|
2001-11-08 05:20:23 +00:00
|
|
|
void addCallCCEdges (const vector<SchedGraphNode*>& memNodeVec,
|
|
|
|
MachineCodeForBasicBlock& bbMvec,
|
|
|
|
const TargetMachine& target);
|
2001-10-28 21:45:02 +00:00
|
|
|
|
2001-09-30 23:37:26 +00:00
|
|
|
void addMachineRegEdges (RegToRefVecMap& regToRefVecMap,
|
2001-08-28 23:06:02 +00:00
|
|
|
const TargetMachine& target);
|
|
|
|
|
2001-11-12 18:53:43 +00:00
|
|
|
void addEdgesForValue (SchedGraphNode* refNode,
|
2001-11-05 04:04:23 +00:00
|
|
|
const RefVec& defVec,
|
2001-10-17 23:55:16 +00:00
|
|
|
const Value* defValue,
|
2001-11-12 18:53:43 +00:00
|
|
|
bool refNodeIsDef,
|
2001-08-28 23:06:02 +00:00
|
|
|
const TargetMachine& target);
|
|
|
|
|
|
|
|
void addDummyEdges ();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class SchedGraphSet :
|
|
|
|
public NonCopyable,
|
|
|
|
private hash_map<const BasicBlock*, SchedGraph*>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const Method* method;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef hash_map<const BasicBlock*, SchedGraph*>::iterator iterator;
|
|
|
|
typedef hash_map<const BasicBlock*, SchedGraph*>::const_iterator const_iterator;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/*ctor*/ SchedGraphSet (const Method* _method,
|
|
|
|
const TargetMachine& target);
|
|
|
|
/*dtor*/ ~SchedGraphSet ();
|
|
|
|
|
|
|
|
//
|
|
|
|
// Accessors
|
|
|
|
//
|
|
|
|
SchedGraph* getGraphForBasicBlock (const BasicBlock* bb) const {
|
|
|
|
const_iterator onePair = this->find(bb);
|
|
|
|
return (onePair != this->end())? (*onePair).second : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Iterators
|
|
|
|
//
|
|
|
|
iterator begin() {
|
|
|
|
return hash_map<const BasicBlock*, SchedGraph*>::begin();
|
|
|
|
}
|
|
|
|
iterator end() {
|
|
|
|
return hash_map<const BasicBlock*, SchedGraph*>::end();
|
|
|
|
}
|
|
|
|
const_iterator begin() const {
|
|
|
|
return hash_map<const BasicBlock*, SchedGraph*>::begin();
|
|
|
|
}
|
|
|
|
const_iterator end() const {
|
|
|
|
return hash_map<const BasicBlock*, SchedGraph*>::end();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Debugging support
|
|
|
|
//
|
|
|
|
void dump () const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline void noteGraphForBlock(const BasicBlock* bb, SchedGraph* graph) {
|
|
|
|
assert((*this)[bb] == NULL);
|
|
|
|
(*this)[bb] = graph;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Graph builder
|
|
|
|
//
|
|
|
|
void buildGraphsForMethod (const Method *method,
|
|
|
|
const TargetMachine& target);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//********************** Sched Graph Iterators *****************************/
|
|
|
|
|
|
|
|
// Ok to make it a template because it shd get instantiated at most twice:
|
|
|
|
// for <SchedGraphNode, SchedGraphNode::iterator> and
|
|
|
|
// for <const SchedGraphNode, SchedGraphNode::const_iterator>.
|
|
|
|
//
|
|
|
|
template <class _NodeType, class _EdgeType, class _EdgeIter>
|
2001-09-07 21:07:10 +00:00
|
|
|
class PredIterator: public std::bidirectional_iterator<_NodeType, ptrdiff_t> {
|
2001-08-28 23:06:02 +00:00
|
|
|
protected:
|
|
|
|
_EdgeIter oi;
|
|
|
|
public:
|
2001-09-07 21:07:10 +00:00
|
|
|
typedef PredIterator<_NodeType, _EdgeType, _EdgeIter> _Self;
|
2001-08-28 23:06:02 +00:00
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
inline PredIterator(_EdgeIter startEdge) : oi(startEdge) {}
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
inline bool operator==(const _Self& x) const { return oi == x.oi; }
|
|
|
|
inline bool operator!=(const _Self& x) const { return !operator==(x); }
|
|
|
|
|
|
|
|
// operator*() differs for pred or succ iterator
|
2001-09-07 21:07:10 +00:00
|
|
|
inline _NodeType* operator*() const { return (*oi)->getSrc(); }
|
2001-08-28 23:06:02 +00:00
|
|
|
inline _NodeType* operator->() const { return operator*(); }
|
|
|
|
|
|
|
|
inline _EdgeType* getEdge() const { return *(oi); }
|
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
inline _Self &operator++() { ++oi; return *this; } // Preincrement
|
|
|
|
inline _Self operator++(int) { // Postincrement
|
|
|
|
_Self tmp(*this); ++*this; return tmp;
|
|
|
|
}
|
2001-08-28 23:06:02 +00:00
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
inline _Self &operator--() { --oi; return *this; } // Predecrement
|
|
|
|
inline _Self operator--(int) { // Postdecrement
|
|
|
|
_Self tmp = *this; --*this; return tmp;
|
|
|
|
}
|
2001-08-28 23:06:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class _NodeType, class _EdgeType, class _EdgeIter>
|
2001-09-07 21:07:10 +00:00
|
|
|
class SuccIterator: public std::bidirectional_iterator<_NodeType, ptrdiff_t> {
|
|
|
|
protected:
|
|
|
|
_EdgeIter oi;
|
2001-08-28 23:06:02 +00:00
|
|
|
public:
|
2001-09-07 21:07:10 +00:00
|
|
|
typedef SuccIterator<_NodeType, _EdgeType, _EdgeIter> _Self;
|
2001-08-28 23:06:02 +00:00
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
inline SuccIterator(_EdgeIter startEdge) : oi(startEdge) {}
|
|
|
|
|
|
|
|
inline bool operator==(const _Self& x) const { return oi == x.oi; }
|
|
|
|
inline bool operator!=(const _Self& x) const { return !operator==(x); }
|
|
|
|
|
|
|
|
inline _NodeType* operator*() const { return (*oi)->getSink(); }
|
|
|
|
inline _NodeType* operator->() const { return operator*(); }
|
2001-08-28 23:06:02 +00:00
|
|
|
|
2001-09-07 21:07:10 +00:00
|
|
|
inline _EdgeType* getEdge() const { return *(oi); }
|
|
|
|
|
|
|
|
inline _Self &operator++() { ++oi; return *this; } // Preincrement
|
|
|
|
inline _Self operator++(int) { // Postincrement
|
|
|
|
_Self tmp(*this); ++*this; return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline _Self &operator--() { --oi; return *this; } // Predecrement
|
|
|
|
inline _Self operator--(int) { // Postdecrement
|
|
|
|
_Self tmp = *this; --*this; return tmp;
|
|
|
|
}
|
2001-08-28 23:06:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// sg_pred_iterator
|
|
|
|
// sg_pred_const_iterator
|
|
|
|
//
|
|
|
|
typedef PredIterator<SchedGraphNode, SchedGraphEdge, SchedGraphNode::iterator>
|
|
|
|
sg_pred_iterator;
|
|
|
|
typedef PredIterator<const SchedGraphNode, const SchedGraphEdge,SchedGraphNode::const_iterator>
|
|
|
|
sg_pred_const_iterator;
|
|
|
|
|
|
|
|
inline sg_pred_iterator pred_begin( SchedGraphNode *N) {
|
|
|
|
return sg_pred_iterator(N->beginInEdges());
|
|
|
|
}
|
|
|
|
inline sg_pred_iterator pred_end( SchedGraphNode *N) {
|
|
|
|
return sg_pred_iterator(N->endInEdges());
|
|
|
|
}
|
|
|
|
inline sg_pred_const_iterator pred_begin(const SchedGraphNode *N) {
|
|
|
|
return sg_pred_const_iterator(N->beginInEdges());
|
|
|
|
}
|
|
|
|
inline sg_pred_const_iterator pred_end( const SchedGraphNode *N) {
|
|
|
|
return sg_pred_const_iterator(N->endInEdges());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// sg_succ_iterator
|
|
|
|
// sg_succ_const_iterator
|
|
|
|
//
|
|
|
|
typedef SuccIterator<SchedGraphNode, SchedGraphEdge, SchedGraphNode::iterator>
|
|
|
|
sg_succ_iterator;
|
|
|
|
typedef SuccIterator<const SchedGraphNode, const SchedGraphEdge,SchedGraphNode::const_iterator>
|
|
|
|
sg_succ_const_iterator;
|
|
|
|
|
|
|
|
inline sg_succ_iterator succ_begin( SchedGraphNode *N) {
|
|
|
|
return sg_succ_iterator(N->beginOutEdges());
|
|
|
|
}
|
|
|
|
inline sg_succ_iterator succ_end( SchedGraphNode *N) {
|
|
|
|
return sg_succ_iterator(N->endOutEdges());
|
|
|
|
}
|
|
|
|
inline sg_succ_const_iterator succ_begin(const SchedGraphNode *N) {
|
|
|
|
return sg_succ_const_iterator(N->beginOutEdges());
|
|
|
|
}
|
|
|
|
inline sg_succ_const_iterator succ_end( const SchedGraphNode *N) {
|
|
|
|
return sg_succ_const_iterator(N->endOutEdges());
|
|
|
|
}
|
|
|
|
|
2001-09-28 22:56:31 +00:00
|
|
|
// Provide specializations of GraphTraits to be able to use graph iterators on
|
|
|
|
// the scheduling graph!
|
2001-08-28 23:06:02 +00:00
|
|
|
//
|
2001-09-28 22:56:31 +00:00
|
|
|
template <> struct GraphTraits<SchedGraph*> {
|
|
|
|
typedef SchedGraphNode NodeType;
|
|
|
|
typedef sg_succ_iterator ChildIteratorType;
|
|
|
|
|
|
|
|
static inline NodeType *getEntryNode(SchedGraph *SG) { return SG->getRoot(); }
|
|
|
|
static inline ChildIteratorType child_begin(NodeType *N) {
|
|
|
|
return succ_begin(N);
|
|
|
|
}
|
|
|
|
static inline ChildIteratorType child_end(NodeType *N) {
|
|
|
|
return succ_end(N);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct GraphTraits<const SchedGraph*> {
|
|
|
|
typedef const SchedGraphNode NodeType;
|
|
|
|
typedef sg_succ_const_iterator ChildIteratorType;
|
|
|
|
|
|
|
|
static inline NodeType *getEntryNode(const SchedGraph *SG) {
|
|
|
|
return SG->getRoot();
|
|
|
|
}
|
|
|
|
static inline ChildIteratorType child_begin(NodeType *N) {
|
|
|
|
return succ_begin(N);
|
|
|
|
}
|
|
|
|
static inline ChildIteratorType child_end(NodeType *N) {
|
|
|
|
return succ_end(N);
|
|
|
|
}
|
|
|
|
};
|
2001-08-28 23:06:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
//************************ External Functions *****************************/
|
|
|
|
|
|
|
|
|
|
|
|
ostream& operator<<(ostream& os, const SchedGraphEdge& edge);
|
|
|
|
|
|
|
|
ostream& operator<<(ostream& os, const SchedGraphNode& node);
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#endif
|