* Add support for DataStructure analysis

* Parameterize pass outputting with the printPass template, so analysis
  output can optionally take more arguments than just a stream.  The
  default output mode is just to use operator<< on the analysis.
* Remove CurrentModule hack, in favor of using printPass
* Remove special operator<<'s defined for FindUsedTypes and
  FindUnsafePointerTypes, in favor of printPass specializations
* Use std::cout instead of cout


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-03-26 22:43:12 +00:00
parent bb2a28fec5
commit bc132d62d3
2 changed files with 58 additions and 30 deletions

View File

@ -1,6 +1,6 @@
LEVEL = ../.. LEVEL = ../..
TOOLNAME = analyze TOOLNAME = analyze
USEDLIBS = analysis asmparser bcreader asmwriter scalaropts vmcore analysis ipa transforms support USEDLIBS = analysis asmparser bcreader asmwriter scalaropts vmcore analysis ipa datastructure transforms support
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -26,6 +26,7 @@
#include "llvm/Analysis/InductionVariable.h" #include "llvm/Analysis/InductionVariable.h"
#include "llvm/Analysis/CallGraph.h" #include "llvm/Analysis/CallGraph.h"
#include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/LoopInfo.h"
#include "llvm/Analysis/DataStructure.h"
#include "llvm/Analysis/FindUnsafePointerTypes.h" #include "llvm/Analysis/FindUnsafePointerTypes.h"
#include "llvm/Analysis/FindUsedTypes.h" #include "llvm/Analysis/FindUsedTypes.h"
#include "llvm/Support/InstIterator.h" #include "llvm/Support/InstIterator.h"
@ -33,18 +34,40 @@
#include <algorithm> #include <algorithm>
#include <iostream> #include <iostream>
using std::cout;
using std::ostream; using std::ostream;
using std::string; using std::string;
static Module *CurrentModule; //===----------------------------------------------------------------------===//
// printPass - Specify how to print out a pass. For most passes, the standard
static void operator<<(ostream &O, const FindUsedTypes &FUT) { // way of using operator<< works great, so we use it directly...
FUT.printTypes(cout, CurrentModule); //
template<class PassType>
static void printPass(PassType &P, ostream &O, Module *M) {
O << P;
} }
static void operator<<(ostream &O, const FindUnsafePointerTypes &FUPT) { template<class PassType>
FUPT.printResults(CurrentModule, cout); static void printPass(PassType &P, ostream &O, Method *M) {
O << P;
}
// Other classes require more information to print out information, so we
// specialize the template here for them...
//
template<>
static void printPass(DataStructure &P, ostream &O, Module *M) {
P.print(O, M);
}
template<>
static void printPass(FindUsedTypes &FUT, ostream &O, Module *M) {
FUT.printTypes(O, M);
}
template<>
static void printPass(FindUnsafePointerTypes &FUPT, ostream &O,
Module *M) {
FUPT.printResults(M, O);
} }
@ -60,7 +83,8 @@ public:
PassPrinter(const string &M, AnalysisID id) : Message(M), ID(id) {} PassPrinter(const string &M, AnalysisID id) : Message(M), ID(id) {}
virtual bool run(Module *M) { virtual bool run(Module *M) {
cout << Message << "\n" << getAnalysis<PassName>(ID); std::cout << Message << "\n";
printPass(getAnalysis<PassName>(ID), std::cout, M);
return false; return false;
} }
@ -79,8 +103,8 @@ public:
PassPrinter(const string &M, AnalysisID id) : Message(M), ID(id) {} PassPrinter(const string &M, AnalysisID id) : Message(M), ID(id) {}
virtual bool runOnMethod(Method *M) { virtual bool runOnMethod(Method *M) {
cout << Message << " on method '" << M->getName() << "'\n" std::cout << Message << " on method '" << M->getName() << "'\n";
<< getAnalysis<PassName>(ID); printPass(getAnalysis<PassName>(ID), std::cout, M);
return false; return false;
} }
@ -113,7 +137,7 @@ Pass *NewPrintModule(const string &Message) {
struct InstForest : public MethodPass { struct InstForest : public MethodPass {
void doit(Method *M) { void doit(Method *M) {
cout << analysis::InstForest<char>(M); std::cout << analysis::InstForest<char>(M);
} }
}; };
@ -124,7 +148,7 @@ struct IndVars : public MethodPass {
if (PHINode *PN = dyn_cast<PHINode>(*I)) { if (PHINode *PN = dyn_cast<PHINode>(*I)) {
InductionVariable IV(PN, &LI); InductionVariable IV(PN, &LI);
if (IV.InductionType != InductionVariable::Unknown) if (IV.InductionType != InductionVariable::Unknown)
cout << IV; std::cout << IV;
} }
} }
@ -136,29 +160,30 @@ struct IndVars : public MethodPass {
struct Exprs : public MethodPass { struct Exprs : public MethodPass {
static void doit(Method *M) { static void doit(Method *M) {
cout << "Classified expressions for: " << M->getName() << "\n"; std::cout << "Classified expressions for: " << M->getName() << "\n";
for (inst_iterator I = inst_begin(M), E = inst_end(M); I != E; ++I) { for (inst_iterator I = inst_begin(M), E = inst_end(M); I != E; ++I) {
cout << *I; std::cout << *I;
if ((*I)->getType() == Type::VoidTy) continue; if ((*I)->getType() == Type::VoidTy) continue;
analysis::ExprType R = analysis::ClassifyExpression(*I); analysis::ExprType R = analysis::ClassifyExpression(*I);
if (R.Var == *I) continue; // Doesn't tell us anything if (R.Var == *I) continue; // Doesn't tell us anything
cout << "\t\tExpr ="; std::cout << "\t\tExpr =";
switch (R.ExprTy) { switch (R.ExprTy) {
case analysis::ExprType::ScaledLinear: case analysis::ExprType::ScaledLinear:
WriteAsOperand(cout << "(", (Value*)R.Scale) << " ) *"; WriteAsOperand(std::cout << "(", (Value*)R.Scale) << " ) *";
// fall through // fall through
case analysis::ExprType::Linear: case analysis::ExprType::Linear:
WriteAsOperand(cout << "(", R.Var) << " )"; WriteAsOperand(std::cout << "(", R.Var) << " )";
if (R.Offset == 0) break; if (R.Offset == 0) break;
else cout << " +"; else std::cout << " +";
// fall through // fall through
case analysis::ExprType::Constant: case analysis::ExprType::Constant:
if (R.Offset) WriteAsOperand(cout, (Value*)R.Offset); else cout << " 0"; if (R.Offset) WriteAsOperand(std::cout, (Value*)R.Offset);
else std::cout << " 0";
break; break;
} }
cout << "\n\n"; std::cout << "\n\n";
} }
} }
}; };
@ -171,7 +196,7 @@ public:
PrinterPass(const string &M) : Message(M) {} PrinterPass(const string &M) : Message(M) {}
virtual bool runOnMethod(Method *M) { virtual bool runOnMethod(Method *M) {
cout << Message << " on method '" << M->getName() << "'\n"; std::cout << Message << " on method '" << M->getName() << "'\n";
TraitClass::doit(M); TraitClass::doit(M);
return false; return false;
@ -191,7 +216,7 @@ enum Ans {
print, intervals, exprs, instforest, loops, indvars, print, intervals, exprs, instforest, loops, indvars,
// ip analyses // ip analyses
printmodule, callgraph, printusedtypes, unsafepointertypes, printmodule, callgraph, datastructure, printusedtypes, unsafepointertypes,
domset, idom, domtree, domfrontier, domset, idom, domtree, domfrontier,
postdomset, postidom, postdomtree, postdomfrontier, postdomset, postidom, postdomtree, postdomfrontier,
@ -205,13 +230,14 @@ cl::EnumList<enum Ans> AnalysesList(cl::NoFlags,
clEnumVal(intervals , "Print Interval Partitions"), clEnumVal(intervals , "Print Interval Partitions"),
clEnumVal(exprs , "Classify Expressions"), clEnumVal(exprs , "Classify Expressions"),
clEnumVal(instforest , "Print Instruction Forest"), clEnumVal(instforest , "Print Instruction Forest"),
clEnumVal(loops , "Print Loops"), clEnumVal(loops , "Print natural loops"),
clEnumVal(indvars , "Print Induction Variables"), clEnumVal(indvars , "Print Induction Variables"),
clEnumVal(printmodule , "Print entire module"), clEnumVal(printmodule , "Print entire module"),
clEnumVal(callgraph , "Print Call Graph"), clEnumVal(callgraph , "Print Call Graph"),
clEnumVal(printusedtypes , "Print Types Used by Module"), clEnumVal(datastructure , "Print data structure information"),
clEnumVal(unsafepointertypes, "Print Unsafe Pointer Types"), clEnumVal(printusedtypes , "Print types used by module"),
clEnumVal(unsafepointertypes, "Print unsafe pointer types"),
clEnumVal(domset , "Print Dominator Sets"), clEnumVal(domset , "Print Dominator Sets"),
clEnumVal(idom , "Print Immediate Dominators"), clEnumVal(idom , "Print Immediate Dominators"),
@ -241,6 +267,7 @@ struct {
{ printmodule , NewPrintModule }, { printmodule , NewPrintModule },
{ printusedtypes , New<Pass, FindUsedTypes> }, { printusedtypes , New<Pass, FindUsedTypes> },
{ callgraph , New<Pass, CallGraph> }, { callgraph , New<Pass, CallGraph> },
{ datastructure , New<Pass, DataStructure> },
{ unsafepointertypes, New<Pass, FindUnsafePointerTypes> }, { unsafepointertypes, New<Pass, FindUnsafePointerTypes> },
// Dominator analyses // Dominator analyses
@ -258,9 +285,10 @@ struct {
int main(int argc, char **argv) { int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv, " llvm analysis printer tool\n"); cl::ParseCommandLineOptions(argc, argv, " llvm analysis printer tool\n");
Module *CurMod = 0;
try { try {
CurrentModule = ParseBytecodeFile(InputFilename); CurMod = ParseBytecodeFile(InputFilename);
if (!CurrentModule && !(CurrentModule = ParseAssemblyFile(InputFilename))){ if (!CurMod && !(CurMod = ParseAssemblyFile(InputFilename))){
std::cerr << "Input file didn't read correctly.\n"; std::cerr << "Input file didn't read correctly.\n";
return 1; return 1;
} }
@ -290,8 +318,8 @@ int main(int argc, char **argv) {
} }
} }
Analyses.run(CurrentModule); Analyses.run(CurMod);
delete CurrentModule; delete CurMod;
return 0; return 0;
} }