1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 14:33:02 +02:00
llvm-mirror/tools/analyze/analyze.cpp
Chris Lattner a1f8bdb501 Add better support for post dominator information.
Print method name for each analysis.

llvm-svn: 144
2001-07-06 16:59:10 +00:00

128 lines
4.0 KiB
C++

//===------------------------------------------------------------------------===
// LLVM 'Analyze' UTILITY
//
// This utility is designed to print out the results of running various analysis
// passes on a program. This is useful for understanding a program, or for
// debugging an analysis pass.
//
// analyze --help - Output information about command line switches
// analyze --quiet - Do not print analysis name before output
//
//===------------------------------------------------------------------------===
#include <iostream>
#include "llvm/Module.h"
#include "llvm/Bytecode/Reader.h"
#include "llvm/Assembly/Parser.h"
#include "llvm/Tools/CommandLine.h"
#include "llvm/Analysis/Writer.h"
#include "llvm/Analysis/Dominators.h"
#include "llvm/Analysis/IntervalPartition.h"
static void PrintMethod(Method *M) {
cout << M;
}
static void PrintIntervalPartition(Method *M) {
cout << cfg::IntervalPartition(M);
}
static void PrintDominatorSets(Method *M) {
cout << cfg::DominatorSet(M);
}
static void PrintImmediateDominators(Method *M) {
cout << cfg::ImmediateDominators(M);
}
static void PrintDominatorTree(Method *M) {
cout << cfg::DominatorTree(M);
}
static void PrintDominanceFrontier(Method *M) {
cout << cfg::DominanceFrontier(M);
}
static void PrintPostDominatorSets(Method *M) {
cout << cfg::DominatorSet(M, true);
}
static void PrintImmediatePostDoms(Method *M) {
cout << cfg::ImmediateDominators(cfg::DominatorSet(M, true));
}
static void PrintPostDomTree(Method *M) {
cout << cfg::DominatorTree(cfg::DominatorSet(M, true));
}
static void PrintPostDomFrontier(Method *M) {
cout << cfg::DominanceFrontier(cfg::DominatorSet(M, true));
}
struct {
const string ArgName, Name;
void (*AnPtr)(Method *M);
} AnTable[] = {
{ "-print" , "Print each Method" , PrintMethod },
{ "-intervals" , "Interval Partition" , PrintIntervalPartition },
{ "-domset" , "Dominator Sets" , PrintDominatorSets },
{ "-idom" , "Immediate Dominators" , PrintImmediateDominators },
{ "-domtree" , "Dominator Tree" , PrintDominatorTree },
{ "-domfrontier" , "Dominance Frontier" , PrintDominanceFrontier },
{ "-postdomset" , "Postdominator Sets" , PrintPostDominatorSets },
{ "-postidom" , "Immediate Postdominators", PrintImmediatePostDoms },
{ "-postdomtree" , "Post Dominator Tree" , PrintPostDomTree },
{ "-postdomfrontier", "Postdominance Frontier" , PrintPostDomFrontier },
};
int main(int argc, char **argv) {
ToolCommandLine Options(argc, argv, false);
bool Quiet = false;
for (int i = 1; i < argc; i++) {
if (string(argv[i]) == string("--help")) {
cerr << argv[0] << " usage:\n"
<< " " << argv[0] << " --help\t - Print this usage information\n"
<< "\t --quiet\t - Do not print analysis name before output\n";
for (unsigned j = 0; j < sizeof(AnTable)/sizeof(AnTable[0]); ++j) {
cerr << "\t " << AnTable[j].ArgName << "\t - Print "
<< AnTable[j].Name << endl;
}
return 1;
} else if (string(argv[i]) == string("-q") ||
string(argv[i]) == string("--quiet")) {
Quiet = true; argv[i] = 0;
}
}
Module *C = ParseBytecodeFile(Options.getInputFilename());
if (!C && !(C = ParseAssemblyFile(Options))) {
cerr << "Input file didn't read correctly.\n";
return 1;
}
// Loop over all of the methods in the module...
for (Module::iterator I = C->begin(), E = C->end(); I != E; ++I) {
Method *M = *I;
// Loop over all of the optimizations to be run...
for (int i = 1; i < argc; i++) {
if (argv[i] == 0) continue;
unsigned j;
for (j = 0; j < sizeof(AnTable)/sizeof(AnTable[0]); j++) {
if (string(argv[i]) == AnTable[j].ArgName) {
if (!Quiet)
cerr << "Running: " << AnTable[j].Name << " analysis on '"
<< ((Value*)M)->getName() << "'!\n";
AnTable[j].AnPtr(M);
break;
}
}
if (j == sizeof(AnTable)/sizeof(AnTable[0]))
cerr << "'" << argv[i] << "' argument unrecognized: ignored\n";
}
}
delete C;
return 0;
}