blob: dc3519454608114c9d14fedb1626d5edd42783b9 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===----------------------------------------------------------------------===//
2// LLVM INTERPRETER/DEBUGGER/PROFILER UTILITY
3//
4// This utility is an interactive frontend to almost all other LLVM
5// functionality. It may be used as an interpreter to run code, a debugger to
6// find problems, or a profiler to analyze execution frequencies.
7//
8//===----------------------------------------------------------------------===//
9
10#include "Interpreter.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000011#include "Support/CommandLine.h"
Chris Lattner92101ac2001-08-23 17:05:04 +000012
Chris Lattner5ff62e92002-07-22 02:10:13 +000013static cl::opt<string>
14InputFile(cl::desc("<input bytecode>"), cl::Positional, cl::init("-"));
15
16static cl::list<std::string>
17InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
18
19static cl::opt<string>
20MainFunction ("f", cl::desc("Function to execute"), cl::init("main"),
21 cl::value_desc("function name"));
22
23static cl::opt<bool>
24DebugMode("debug", cl::desc("Start program in debugger"));
25
26static cl::alias
27DebugModeA("d", cl::desc("Alias for -debug"), cl::aliasopt(DebugMode));
28
29static cl::opt<bool>
30TraceMode("trace", cl::desc("Enable Tracing"));
31
32static cl::opt<bool>
33ProfileMode("profile", cl::desc("Enable Profiling [unimp]"));
Chris Lattner92101ac2001-08-23 17:05:04 +000034
Chris Lattner43e3f7c2001-10-27 08:43:52 +000035
Chris Lattner92101ac2001-08-23 17:05:04 +000036//===----------------------------------------------------------------------===//
37// Interpreter ctor - Initialize stuff
38//
Chris Lattner43e3f7c2001-10-27 08:43:52 +000039Interpreter::Interpreter() : ExitCode(0), Profile(ProfileMode),
40 Trace(TraceMode), CurFrame(-1) {
Chris Lattner2e42d3a2001-10-15 05:51:48 +000041 CurMod = 0;
Chris Lattner5ff62e92002-07-22 02:10:13 +000042 loadModule(InputFile);
Chris Lattner92101ac2001-08-23 17:05:04 +000043
44 // Initialize the "backend"
45 initializeExecutionEngine();
Chris Lattner2b2e5b32001-10-30 20:28:46 +000046 initializeExternalMethods();
Chris Lattner92101ac2001-08-23 17:05:04 +000047}
48
49//===----------------------------------------------------------------------===//
50// main Driver function
51//
52int main(int argc, char** argv) {
53 cl::ParseCommandLineOptions(argc, argv, " llvm interpreter\n");
54
Chris Lattner5ff62e92002-07-22 02:10:13 +000055 // Add the module name to the start of the argv vector...
56 //
57 InputArgv.insert(InputArgv.begin(), InputFile);
58
59
60
Chris Lattner92101ac2001-08-23 17:05:04 +000061 // Create the interpreter...
62 Interpreter I;
63
64 // Handle alternate names of the program. If started as llp, enable profiling
65 // if started as ldb, enable debugging...
66 //
67 if (argv[0] == "ldb") // TODO: Obviously incorrect, but you get the idea
68 DebugMode = true;
69 else if (argv[0] == "llp")
70 ProfileMode = true;
71
72 // If running with the profiler, enable it now...
73 if (ProfileMode) I.enableProfiling();
Chris Lattner43e3f7c2001-10-27 08:43:52 +000074 if (TraceMode) I.enableTracing();
Chris Lattner92101ac2001-08-23 17:05:04 +000075
76 // Start interpreter into the main function...
77 //
Chris Lattner204eec32001-10-27 05:54:31 +000078 if (!I.callMainMethod(MainFunction, InputArgv) && !DebugMode) {
Chris Lattner92101ac2001-08-23 17:05:04 +000079 // If not in debug mode and if the call succeeded, run the code now...
80 I.run();
81 }
82
83 // If debug mode, allow the user to interact... also, if the user pressed
84 // ctrl-c or execution hit an error, enter the event loop...
85 if (DebugMode || I.isStopped())
86 I.handleUserInput();
87
88 // Return the status code of the program executed...
89 return I.getExitCode();
90}