summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-03 15:30:38 +0000
committerChris Lattner <sabre@nondot.org>2001-07-03 15:30:38 +0000
commitf3dc2c9a074c49dc2ee1b75ecc408d8655c5406c (patch)
tree91a26f9ef992da33f49cc946c7f4c2c273eba568 /tools
parent9aa97849a0e017ebadccc4c8e58b109d8c1ae41b (diff)
downloadllvm-f3dc2c9a074c49dc2ee1b75ecc408d8655c5406c.tar.gz
llvm-f3dc2c9a074c49dc2ee1b75ecc408d8655c5406c.tar.bz2
llvm-f3dc2c9a074c49dc2ee1b75ecc408d8655c5406c.tar.xz
Initial checkin of analyze tool.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/analyze/Makefile10
-rw-r--r--tools/analyze/analyze.cpp104
2 files changed, 114 insertions, 0 deletions
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile
new file mode 100644
index 0000000000..97a54bcdce
--- /dev/null
+++ b/tools/analyze/Makefile
@@ -0,0 +1,10 @@
+LEVEL = ../..
+include $(LEVEL)/Makefile.common
+
+all:: analyze
+clean ::
+ rm -f opt
+
+analyze : $(ObjectsG) Debug/.dir Depend/.dir
+ $(LinkG) -o $@ $(ObjectsG) -lvmcore -lanalysis -lbcreader \
+ -lopt -lasmwriter -lasmparser
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
new file mode 100644
index 0000000000..f8cc189934
--- /dev/null
+++ b/tools/analyze/analyze.cpp
@@ -0,0 +1,104 @@
+//===------------------------------------------------------------------------===
+// 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 PrintIntervalPartition(const Method *M) {
+ cout << cfg::IntervalPartition((Method*)M);
+}
+
+static void PrintDominatorSets(const Method *M) {
+ cout << cfg::DominatorSet(M);
+}
+static void PrintImmediateDominators(const Method *M) {
+ cout << cfg::ImmediateDominators(M);
+}
+static void PrintDominatorTree(const Method *M) {
+ cout << cfg::DominatorTree(M);
+}
+static void PrintDominanceFrontier(const Method *M) {
+ cout << cfg::DominanceFrontier(M);
+}
+
+struct {
+ const string ArgName, Name;
+ void (*AnPtr)(const Method *M);
+} AnTable[] = {
+ { "-intervals" , "Interval Partition" , PrintIntervalPartition },
+ { "-domset" , "Dominator Sets" , PrintDominatorSets },
+ { "-immdom" , "Immediate Dominators", PrintImmediateDominators },
+ { "-domtree" , "Dominator Tree" , PrintDominatorTree },
+ { "-domfrontier" , "Dominance Frontier" , PrintDominanceFrontier },
+};
+
+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 optimization 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;
+ }
+ }
+
+ const Module *C = ParseBytecodeFile(Options.getInputFilename());
+ if (C == 0) {
+ C = ParseAssemblyFile(Options);
+ if (C == 0) {
+ cerr << "Input file didn't read correctly.\n";
+ return 1;
+ }
+ }
+
+ // Loop over all of the methods in the module...
+ for (Module::const_iterator I = C->begin(), E = C->end(); I != E; ++I) {
+ const 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!\n";
+ AnTable[j].AnPtr(M);
+ break;
+ }
+ }
+
+ if (j == sizeof(AnTable)/sizeof(AnTable[0]))
+ cerr << "'" << argv[i] << "' argument unrecognized: ignored\n";
+ }
+ }
+
+ delete C;
+ return 0;
+}