blob: 2d262aedc5d36afedcdd9e839384a6683828ca2b [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===-- Interpreter.h ------------------------------------------*- C++ -*--===//
2//
3// This header file defines the interpreter structure
4//
5//===----------------------------------------------------------------------===//
6
7#ifndef LLI_INTERPRETER_H
8#define LLI_INTERPRETER_H
9
10#include "llvm/Module.h"
11#include "llvm/Method.h"
Chris Lattner7b851ab2001-10-15 19:18:26 +000012#include "llvm/Support/DataTypes.h"
Chris Lattner92101ac2001-08-23 17:05:04 +000013
14struct MethodInfo; // Defined in ExecutionAnnotations.h
15class CallInst;
16class ReturnInst;
17class BranchInst;
Chris Lattner86660982001-08-27 05:16:50 +000018class AllocationInst;
Chris Lattner92101ac2001-08-23 17:05:04 +000019
20union GenericValue {
21 bool BoolVal;
22 unsigned char UByteVal;
23 signed char SByteVal;
24 unsigned short UShortVal;
25 signed short ShortVal;
26 unsigned int UIntVal;
27 signed int IntVal;
Chris Lattner7b851ab2001-10-15 19:18:26 +000028 uint64_t ULongVal;
29 int64_t LongVal;
Chris Lattner92101ac2001-08-23 17:05:04 +000030 double DoubleVal;
31 float FloatVal;
Chris Lattnerc2593162001-10-27 08:28:11 +000032 uint64_t PointerVal;
Chris Lattner92101ac2001-08-23 17:05:04 +000033};
34
35typedef vector<GenericValue> ValuePlaneTy;
36
37// ExecutionContext struct - This struct represents one stack frame currently
38// executing.
39//
40struct ExecutionContext {
41 Method *CurMethod; // The currently executing method
42 BasicBlock *CurBB; // The currently executing BB
43 BasicBlock::iterator CurInst; // The next instruction to execute
44 MethodInfo *MethInfo; // The MethInfo annotation for the method
45 vector<ValuePlaneTy> Values; // ValuePlanes for each type
46
47 BasicBlock *PrevBB; // The previous BB or null if in first BB
48 CallInst *Caller; // Holds the call that called subframes.
49 // NULL if main func or debugger invoked fn
50};
51
52
53// Interpreter - This class represents the entirety of the interpreter.
54//
55class Interpreter {
56 Module *CurMod; // The current Module being executed (0 if none)
57 int ExitCode; // The exit code to be returned by the lli util
58 bool Profile; // Profiling enabled?
Chris Lattner43e3f7c2001-10-27 08:43:52 +000059 bool Trace; // Tracing enabled?
Chris Lattner92101ac2001-08-23 17:05:04 +000060 int CurFrame; // The current stack frame being inspected
61
62 // The runtime stack of executing code. The top of the stack is the current
63 // method record.
64 vector<ExecutionContext> ECStack;
65
66public:
67 Interpreter();
68 inline ~Interpreter() { delete CurMod; }
69
70 // getExitCode - return the code that should be the exit code for the lli
71 // utility.
72 inline int getExitCode() const { return ExitCode; }
73
74 // enableProfiling() - Turn profiling on, clear stats?
75 void enableProfiling() { Profile = true; }
Chris Lattner43e3f7c2001-10-27 08:43:52 +000076 void enableTracing() { Trace = true; }
Chris Lattner92101ac2001-08-23 17:05:04 +000077
78 void initializeExecutionEngine();
79 void handleUserInput();
80
81 // User Interation Methods...
Chris Lattner2e42d3a2001-10-15 05:51:48 +000082 void loadModule(const string &Filename);
83 bool flushModule();
Chris Lattner92101ac2001-08-23 17:05:04 +000084 bool callMethod(const string &Name); // return true on failure
85 void setBreakpoint(const string &Name);
Chris Lattner86660982001-08-27 05:16:50 +000086 void infoValue(const string &Name);
Chris Lattner2e42d3a2001-10-15 05:51:48 +000087 void print(const string &Name);
88 static void print(const Type *Ty, GenericValue V);
Chris Lattner365a76e2001-09-10 04:49:44 +000089 static void printValue(const Type *Ty, GenericValue V);
Chris Lattner92101ac2001-08-23 17:05:04 +000090
Chris Lattnerf8f2afb2001-10-18 21:55:32 +000091 // Hack until we can parse command line args...
92 bool callMainMethod(const string &MainName,
Chris Lattner204eec32001-10-27 05:54:31 +000093 const vector<string> &InputFilename);
Chris Lattner92101ac2001-08-23 17:05:04 +000094
95 void list(); // Do the 'list' command
96 void printStackTrace(); // Do the 'backtrace' command
97
98 // Code execution methods...
Chris Lattner365a76e2001-09-10 04:49:44 +000099 void callMethod (Method *Meth, const vector<GenericValue> &ArgVals);
100 void callExternalMethod(Method *Meth, const vector<GenericValue> &ArgVals);
Chris Lattner92101ac2001-08-23 17:05:04 +0000101 bool executeInstruction(); // Execute one instruction...
102
103 void stepInstruction(); // Do the 'step' command
104 void nextInstruction(); // Do the 'next' command
105 void run(); // Do the 'run' command
106 void finish(); // Do the 'finish' command
107
108 // Opcode Implementations
109 void executeCallInst(CallInst *I, ExecutionContext &SF);
110 void executeRetInst(ReturnInst *I, ExecutionContext &SF);
111 void executeBrInst(BranchInst *I, ExecutionContext &SF);
Chris Lattner86660982001-08-27 05:16:50 +0000112 void executeAllocInst(AllocationInst *I, ExecutionContext &SF);
Chris Lattnere43db882001-10-27 04:15:57 +0000113 void exitCalled(GenericValue GV);
Chris Lattner92101ac2001-08-23 17:05:04 +0000114
115 // getCurrentMethod - Return the currently executing method
116 inline Method *getCurrentMethod() const {
117 return CurFrame < 0 ? 0 : ECStack[CurFrame].CurMethod;
118 }
119
120 // isStopped - Return true if a program is stopped. Return false if no
121 // program is running.
122 //
123 inline bool isStopped() const { return !ECStack.empty(); }
124
125private: // Helper functions
Chris Lattnere43db882001-10-27 04:15:57 +0000126 // getCurrentExecutablePath() - Return the directory that the lli executable
127 // lives in.
128 //
129 string getCurrentExecutablePath() const;
130
Chris Lattner92101ac2001-08-23 17:05:04 +0000131 // printCurrentInstruction - Print out the instruction that the virtual PC is
132 // at, or fail silently if no program is running.
133 //
134 void printCurrentInstruction();
135
136 // LookupMatchingNames - Search the current method namespace, then the global
137 // namespace looking for values that match the specified name. Return ALL
138 // matches to that name. This is obviously slow, and should only be used for
139 // user interaction.
140 //
141 vector<Value*> LookupMatchingNames(const string &Name);
142
143 // ChooseOneOption - Prompt the user to choose among the specified options to
144 // pick one value. If no options are provided, emit an error. If a single
145 // option is provided, just return that option.
146 //
147 Value *ChooseOneOption(const string &Name, const vector<Value*> &Opts);
148};
149
150#endif