mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 10:13:13 +00:00
Enable printing of dominator related information.
Theis will eventually be moved! llvm-svn: 123
This commit is contained in:
parent
4a9f31a0a7
commit
75057fa064
@ -94,8 +94,33 @@ namespace cfg {
|
||||
class Interval;
|
||||
void WriteToOutput(const Interval *I, ostream &o);
|
||||
inline ostream &operator <<(ostream &o, const Interval *I) {
|
||||
WriteToOutput(I, o);
|
||||
return o;
|
||||
WriteToOutput(I, o); return o;
|
||||
}
|
||||
|
||||
// Stuff for printing out Dominator data structures...
|
||||
class DominatorSet;
|
||||
class ImmediateDominators;
|
||||
class DominatorTree;
|
||||
class DominanceFrontier;
|
||||
|
||||
void WriteToOutput(const DominatorSet &, ostream &o);
|
||||
inline ostream &operator <<(ostream &o, const DominatorSet &DS) {
|
||||
WriteToOutput(DS, o); return o;
|
||||
}
|
||||
|
||||
void WriteToOutput(const ImmediateDominators &, ostream &o);
|
||||
inline ostream &operator <<(ostream &o, const ImmediateDominators &ID) {
|
||||
WriteToOutput(ID, o); return o;
|
||||
}
|
||||
|
||||
void WriteToOutput(const DominatorTree &, ostream &o);
|
||||
inline ostream &operator <<(ostream &o, const DominatorTree &DT) {
|
||||
WriteToOutput(DT, o); return o;
|
||||
}
|
||||
|
||||
void WriteToOutput(const DominanceFrontier &, ostream &o);
|
||||
inline ostream &operator <<(ostream &o, const DominanceFrontier &DF) {
|
||||
WriteToOutput(DF, o); return o;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user