blob: 76e1eb19771bce652634f8dbe0a6193f9f3f765d [file] [log] [blame]
Chris Lattnerd7ff5782001-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 Lattner5de22042001-11-27 00:03:19 +000011#include "Support/CommandLine.h"
Chris Lattnerd7ff5782001-08-23 17:05:04 +000012
Chris Lattner6d044b52002-07-25 16:39:56 +000013static cl::opt<std::string>
Chris Lattnerf5cad152002-07-22 02:10:13 +000014InputFile(cl::desc("<input bytecode>"), cl::Positional, cl::init("-"));
15
16static cl::list<std::string>
17InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
18
Chris Lattner6d044b52002-07-25 16:39:56 +000019static cl::opt<std::string>
Chris Lattnerf5cad152002-07-22 02:10:13 +000020MainFunction ("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 Lattnerd7ff5782001-08-23 17:05:04 +000034
Chris Lattner009f8102001-10-27 08:43:52 +000035
Chris Lattnerd7ff5782001-08-23 17:05:04 +000036//===----------------------------------------------------------------------===//
37// Interpreter ctor - Initialize stuff
38//
Chris Lattner009f8102001-10-27 08:43:52 +000039Interpreter::Interpreter() : ExitCode(0), Profile(ProfileMode),
40 Trace(TraceMode), CurFrame(-1) {
Chris Lattnerc62e2e52001-10-15 05:51:48 +000041 CurMod = 0;
Chris Lattnerf5cad152002-07-22 02:10:13 +000042 loadModule(InputFile);
Chris Lattnerd7ff5782001-08-23 17:05:04 +000043
44 // Initialize the "backend"
45 initializeExecutionEngine();
Chris Lattner3f741a52001-10-30 20:28:46 +000046 initializeExternalMethods();
Chris Lattnerd7ff5782001-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 Lattnerf5cad152002-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
Chris Lattnerd7ff5782001-08-23 17:05:04 +000059 // Create the interpreter...
60 Interpreter I;
61
62 // Handle alternate names of the program. If started as llp, enable profiling
63 // if started as ldb, enable debugging...
64 //
65 if (argv[0] == "ldb") // TODO: Obviously incorrect, but you get the idea
66 DebugMode = true;
67 else if (argv[0] == "llp")
68 ProfileMode = true;
69
70 // If running with the profiler, enable it now...
71 if (ProfileMode) I.enableProfiling();
Chris Lattner009f8102001-10-27 08:43:52 +000072 if (TraceMode) I.enableTracing();
Chris Lattnerd7ff5782001-08-23 17:05:04 +000073
74 // Start interpreter into the main function...
75 //
Chris Lattner6642eec2001-10-27 05:54:31 +000076 if (!I.callMainMethod(MainFunction, InputArgv) && !DebugMode) {
Chris Lattnerd7ff5782001-08-23 17:05:04 +000077 // If not in debug mode and if the call succeeded, run the code now...
78 I.run();
79 }
80
81 // If debug mode, allow the user to interact... also, if the user pressed
82 // ctrl-c or execution hit an error, enter the event loop...
83 if (DebugMode || I.isStopped())
84 I.handleUserInput();
85
86 // Return the status code of the program executed...
87 return I.getExitCode();
88}