diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-15 05:51:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-15 05:51:48 +0000 |
commit | 2e42d3a3060ff0c3d4c419f17493bc6a7683e9d0 (patch) | |
tree | d796bc523341806373c120a3bfe45776b2642fa3 /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 8d2de8a82cce67513debee7a3fa5aca0189b4105 (diff) |
Implement global variables. Struct and Pointer initializers are not implemented yet though
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index e7f5c864a6..4b73b3d28b 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -74,10 +74,13 @@ public: void handleUserInput(); // User Interation Methods... + void loadModule(const string &Filename); + bool flushModule(); bool callMethod(const string &Name); // return true on failure void setBreakpoint(const string &Name); void infoValue(const string &Name); - void printValue(const string &Name); + void print(const string &Name); + static void print(const Type *Ty, GenericValue V); static void printValue(const Type *Ty, GenericValue V); |