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 | c62e2e5bf7d40ece83794ed7bb87d7b650074922 (patch) | |
tree | de20dc59fbeaf9c1387eae6a15dd2d1857bbaf0f /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | c306f18c3e6050b25704de56917180d2d2c8265c (diff) | |
download | bcm5719-llvm-c62e2e5bf7d40ece83794ed7bb87d7b650074922.tar.gz bcm5719-llvm-c62e2e5bf7d40ece83794ed7bb87d7b650074922.zip |
Implement global variables. Struct and Pointer initializers are not implemented yet though
llvm-svn: 818
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index e7f5c864a61..4b73b3d28b0 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/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); |