diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-09 05:27:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-09 05:27:34 +0000 |
commit | 9f8ae2b8cc69b25f112ed5bc4ff36a7df8ceb7bc (patch) | |
tree | 84310f74db739e42a10ac9fdb2dd37f76b8f5864 | |
parent | b61107aa51db1bc66f6a2bb895926ca9b2f1f3f1 (diff) |
Add hooks for the FindUsedTypes pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1233 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/analyze/analyze.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp index 492f47142b..745aa0b059 100644 --- a/tools/analyze/analyze.cpp +++ b/tools/analyze/analyze.cpp @@ -24,6 +24,7 @@ #include "llvm/Analysis/Expressions.h" #include "llvm/Analysis/CallGraph.h" #include "llvm/Analysis/FindUnsafePointerTypes.h" +#include "llvm/Analysis/FindUsedTypes.h" #include <algorithm> static void PrintMethod(Method *M) { @@ -75,6 +76,12 @@ static void PrintUnsafePtrTypes(Module *M) { FUPT.printResults(M, cout); } +static void PrintUsedTypes(Module *M) { + FindUsedTypes FUT; + FUT.run(M); + FUT.printTypes(cout, M); +} + static void PrintDominatorSets(Method *M) { cout << cfg::DominatorSet(M); } @@ -104,7 +111,9 @@ static void PrintPostDomFrontier(Method *M) { enum Ans { PassDone, // Unique Marker - print, intervals, exprclassify, instforest, callgraph, unsafepointertypes, + print, intervals, exprclassify, instforest, callgraph, + printusedtypes, unsafepointertypes, + domset, idom, domtree, domfrontier, postdomset, postidom, postdomtree, postdomfrontier, }; @@ -118,6 +127,7 @@ cl::EnumList<enum Ans> AnalysesList(cl::NoFlags, clEnumVal(exprclassify , "Classify Expressions"), clEnumVal(instforest , "Print Instruction Forest"), clEnumVal(callgraph , "Print Call Graph"), + clEnumVal(printusedtypes , "Print Types Used by Module"), clEnumVal(unsafepointertypes, "Print Unsafe Pointer Types"), clEnumVal(domset , "Print Dominator Sets"), @@ -152,7 +162,8 @@ struct { }; pair<enum Ans, void (*)(Module *)> ModAnTable[] = { - pair<enum Ans, void (*)(Module *)>(callgraph , PrintCallGraph), + pair<enum Ans, void (*)(Module *)>(callgraph , PrintCallGraph), + pair<enum Ans, void (*)(Module *)>(printusedtypes , PrintUsedTypes), pair<enum Ans, void (*)(Module *)>(unsafepointertypes, PrintUnsafePtrTypes), }; |