From 997aede09dc18d6e0a56c6afc9b7ee941750289e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 26 Nov 2001 18:53:29 +0000 Subject: [PATCH] Implement writer support for Loops, Induction Variables, and CallGraphs llvm-svn: 1372 --- lib/Analysis/Writer.cpp | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/lib/Analysis/Writer.cpp b/lib/Analysis/Writer.cpp index 6fce54a8288..3d9134f0dc4 100644 --- a/lib/Analysis/Writer.cpp +++ b/lib/Analysis/Writer.cpp @@ -8,6 +8,8 @@ #include "llvm/Analysis/Writer.h" #include "llvm/Analysis/IntervalPartition.h" #include "llvm/Analysis/Dominators.h" +#include "llvm/Analysis/LoopInfo.h" +#include "llvm/Analysis/InductionVariable.h" #include #include @@ -95,3 +97,52 @@ void cfg::WriteToOutput(const DominanceFrontier &DF, ostream &o) { } } + +//===----------------------------------------------------------------------===// +// Loop Printing Routines +//===----------------------------------------------------------------------===// + +void cfg::WriteToOutput(const Loop *L, ostream &o) { + o << string(L->getLoopDepth()*2, ' ') << "Loop Containing: "; + + for (unsigned i = 0; i < L->getBlocks().size(); ++i) { + if (i) o << ","; + WriteAsOperand(o, (const Value*)L->getBlocks()[i]); + } + o << endl; + + copy(L->getSubLoops().begin(), L->getSubLoops().end(), + ostream_iterator(o, "\n")); +} + +void cfg::WriteToOutput(const LoopInfo &LI, ostream &o) { + copy(LI.getTopLevelLoops().begin(), LI.getTopLevelLoops().end(), + ostream_iterator(o, "\n")); +} + + + +//===----------------------------------------------------------------------===// +// Induction Variable Printing Routines +//===----------------------------------------------------------------------===// + +void WriteToOutput(const InductionVariable &IV, ostream &o) { + switch (IV.InductionType) { + case InductionVariable::Cannonical: o << "Cannonical "; break; + case InductionVariable::SimpleLinear: o << "SimpleLinear "; break; + case InductionVariable::Linear: o << "Linear "; break; + case InductionVariable::Unknown: o << "Unrecognized "; break; + } + o << "Induction Variable"; + if (IV.Phi) { + WriteAsOperand(o, (const Value*)IV.Phi); + o << ":\n" << (const Value*)IV.Phi; + } else { + o << endl; + } + if (IV.InductionType == InductionVariable::Unknown) return; + + o << " Start ="; WriteAsOperand(o, IV.Start); + o << " Step =" ; WriteAsOperand(o, IV.Step); + o << endl; +}