[llvm-commits] CVS: llvm/lib/VMCore/Pass.cpp PassManagerT.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Feb 29 16:38:00 PST 2004
Changes in directory llvm/lib/VMCore:
Pass.cpp updated: 1.56 -> 1.57
PassManagerT.h updated: 1.46 -> 1.47
---
Log message:
Fix -debug-pass=Executions, which relied on Function, Module, and BasicBlock
being annotable
---
Diffs of the changes: (+27 -21)
Index: llvm/lib/VMCore/Pass.cpp
diff -u llvm/lib/VMCore/Pass.cpp:1.56 llvm/lib/VMCore/Pass.cpp:1.57
--- llvm/lib/VMCore/Pass.cpp:1.56 Sat Feb 28 15:55:18 2004
+++ llvm/lib/VMCore/Pass.cpp Sun Feb 29 16:37:04 2004
@@ -133,22 +133,31 @@
}
void PMDebug::PrintPassInformation(unsigned Depth, const char *Action,
- Pass *P, Annotable *V) {
+ Pass *P, Module *M) {
if (PassDebugging >= Executions) {
std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '"
<< P->getPassName();
- if (V) {
- std::cerr << "' on ";
+ if (M) std::cerr << "' on Module '" << M->getModuleIdentifier() << "'\n";
+ std::cerr << "'...\n";
+ }
+}
- if (dynamic_cast<Module*>(V)) {
- std::cerr << "Module\n"; return;
- } else if (Function *F = dynamic_cast<Function*>(V))
- std::cerr << "Function '" << F->getName();
- else if (BasicBlock *BB = dynamic_cast<BasicBlock*>(V))
- std::cerr << "BasicBlock '" << BB->getName();
- else if (Value *Val = dynamic_cast<Value*>(V))
- std::cerr << typeid(*Val).name() << " '" << Val->getName();
- }
+void PMDebug::PrintPassInformation(unsigned Depth, const char *Action,
+ Pass *P, Function *F) {
+ if (PassDebugging >= Executions) {
+ std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '"
+ << P->getPassName();
+ if (F) std::cerr << "' on Function '" << F->getName();
+ std::cerr << "'...\n";
+ }
+}
+
+void PMDebug::PrintPassInformation(unsigned Depth, const char *Action,
+ Pass *P, BasicBlock *BB) {
+ if (PassDebugging >= Executions) {
+ std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '"
+ << P->getPassName();
+ if (BB) std::cerr << "' on BasicBlock '" << BB->getName();
std::cerr << "'...\n";
}
}
Index: llvm/lib/VMCore/PassManagerT.h
diff -u llvm/lib/VMCore/PassManagerT.h:1.46 llvm/lib/VMCore/PassManagerT.h:1.47
--- llvm/lib/VMCore/PassManagerT.h:1.46 Tue Nov 11 16:41:34 2003
+++ llvm/lib/VMCore/PassManagerT.h Sun Feb 29 16:37:04 2004
@@ -31,8 +31,6 @@
namespace llvm {
-class Annotable;
-
//===----------------------------------------------------------------------===//
// Pass debugging information. Often it is useful to find out what pass is
// running when a crash occurs in a utility. When this library is compiled with
@@ -75,7 +73,9 @@
}
static void PrintArgumentInformation(const Pass *P);
- static void PrintPassInformation(unsigned,const char*,Pass *, Annotable *);
+ static void PrintPassInformation(unsigned,const char*,Pass *, Module *);
+ static void PrintPassInformation(unsigned,const char*,Pass *, Function *);
+ static void PrintPassInformation(unsigned,const char*,Pass *, BasicBlock *);
static void PrintAnalysisSetInfo(unsigned,const char*,Pass *P,
const std::vector<AnalysisID> &);
};
@@ -216,8 +216,7 @@
for (unsigned i = 0, e = Passes.size(); i < e; ++i) {
PassClass *P = Passes[i];
- PMDebug::PrintPassInformation(getDepth(), "Executing Pass", P,
- (Annotable*)M);
+ PMDebug::PrintPassInformation(getDepth(), "Executing Pass", P, M);
// Get information about what analyses the pass uses...
AnalysisUsage AnUsage;
@@ -259,8 +258,7 @@
P->getPassName() + "'");
if (Changed)
- PMDebug::PrintPassInformation(getDepth()+1, "Made Modification", P,
- (Annotable*)M);
+ PMDebug::PrintPassInformation(getDepth()+1, "Made Modification", P, M);
PMDebug::PrintAnalysisSetInfo(getDepth(), "Preserved", P,
AnUsage.getPreservedSet());
@@ -301,8 +299,7 @@
std::vector<Pass*> &DeadPass = LastUserOf[P];
for (std::vector<Pass*>::iterator I = DeadPass.begin(),E = DeadPass.end();
I != E; ++I) {
- PMDebug::PrintPassInformation(getDepth()+1, "Freeing Pass", *I,
- (Annotable*)M);
+ PMDebug::PrintPassInformation(getDepth()+1, "Freeing Pass", *I, M);
(*I)->releaseMemory();
}
More information about the llvm-commits
mailing list