forked from OSchip/llvm-project
Add hooks to print natural loop information and induction variables
llvm-svn: 1389
This commit is contained in:
parent
d8642f7b14
commit
b89a7e72fb
|
@ -22,7 +22,9 @@
|
||||||
#include "llvm/Analysis/Dominators.h"
|
#include "llvm/Analysis/Dominators.h"
|
||||||
#include "llvm/Analysis/IntervalPartition.h"
|
#include "llvm/Analysis/IntervalPartition.h"
|
||||||
#include "llvm/Analysis/Expressions.h"
|
#include "llvm/Analysis/Expressions.h"
|
||||||
|
#include "llvm/Analysis/InductionVariable.h"
|
||||||
#include "llvm/Analysis/CallGraph.h"
|
#include "llvm/Analysis/CallGraph.h"
|
||||||
|
#include "llvm/Analysis/LoopInfo.h"
|
||||||
#include "llvm/Analysis/FindUnsafePointerTypes.h"
|
#include "llvm/Analysis/FindUnsafePointerTypes.h"
|
||||||
#include "llvm/Analysis/FindUsedTypes.h"
|
#include "llvm/Analysis/FindUsedTypes.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@ -63,9 +65,23 @@ static void PrintClassifiedExprs(Method *M) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void PrintInductionVariables(Method *M) {
|
||||||
|
cfg::LoopInfo LI(M);
|
||||||
|
for (Method::inst_iterator I = M->inst_begin(), E = M->inst_end();
|
||||||
|
I != E; ++I) {
|
||||||
|
InductionVariable IV(*I, &LI);
|
||||||
|
if (IV.InductionType != InductionVariable::Unknown)
|
||||||
|
cout << IV;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static void PrintInstForest(Method *M) {
|
static void PrintInstForest(Method *M) {
|
||||||
cout << analysis::InstForest<char>(M);
|
cout << analysis::InstForest<char>(M);
|
||||||
}
|
}
|
||||||
|
static void PrintLoops(Method *M) {
|
||||||
|
cout << cfg::LoopInfo(M);
|
||||||
|
}
|
||||||
static void PrintCallGraph(Module *M) {
|
static void PrintCallGraph(Module *M) {
|
||||||
cout << cfg::CallGraph(M);
|
cout << cfg::CallGraph(M);
|
||||||
}
|
}
|
||||||
|
@ -111,7 +127,7 @@ static void PrintPostDomFrontier(Method *M) {
|
||||||
|
|
||||||
enum Ans {
|
enum Ans {
|
||||||
PassDone, // Unique Marker
|
PassDone, // Unique Marker
|
||||||
print, intervals, exprclassify, instforest, callgraph,
|
print, intervals, exprclassify, instforest, loops, indvars, callgraph,
|
||||||
printusedtypes, unsafepointertypes,
|
printusedtypes, unsafepointertypes,
|
||||||
|
|
||||||
domset, idom, domtree, domfrontier,
|
domset, idom, domtree, domfrontier,
|
||||||
|
@ -126,6 +142,8 @@ cl::EnumList<enum Ans> AnalysesList(cl::NoFlags,
|
||||||
clEnumVal(intervals , "Print Interval Partitions"),
|
clEnumVal(intervals , "Print Interval Partitions"),
|
||||||
clEnumVal(exprclassify , "Classify Expressions"),
|
clEnumVal(exprclassify , "Classify Expressions"),
|
||||||
clEnumVal(instforest , "Print Instruction Forest"),
|
clEnumVal(instforest , "Print Instruction Forest"),
|
||||||
|
clEnumVal(loops , "Print Loops"),
|
||||||
|
clEnumVal(indvars , "Print Induction Variables"),
|
||||||
clEnumVal(callgraph , "Print Call Graph"),
|
clEnumVal(callgraph , "Print Call Graph"),
|
||||||
clEnumVal(printusedtypes , "Print Types Used by Module"),
|
clEnumVal(printusedtypes , "Print Types Used by Module"),
|
||||||
clEnumVal(unsafepointertypes, "Print Unsafe Pointer Types"),
|
clEnumVal(unsafepointertypes, "Print Unsafe Pointer Types"),
|
||||||
|
@ -149,6 +167,8 @@ struct {
|
||||||
{ intervals , PrintIntervalPartition },
|
{ intervals , PrintIntervalPartition },
|
||||||
{ exprclassify , PrintClassifiedExprs },
|
{ exprclassify , PrintClassifiedExprs },
|
||||||
{ instforest , PrintInstForest },
|
{ instforest , PrintInstForest },
|
||||||
|
{ loops , PrintLoops },
|
||||||
|
{ indvars , PrintInductionVariables },
|
||||||
|
|
||||||
{ domset , PrintDominatorSets },
|
{ domset , PrintDominatorSets },
|
||||||
{ idom , PrintImmediateDominators },
|
{ idom , PrintImmediateDominators },
|
||||||
|
|
Loading…
Reference in New Issue