diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-03 20:34:19 +0000 |
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-03 20:34:19 +0000 |
| commit | 4bd3bd5b5aad9cb32f1cd268cfa5e8b8df0ec368 (patch) | |
| tree | 6ae0302c5ea265fd5966fb1f3e1b046fd3afb3e1 /llvm/lib/ExecutionEngine/Interpreter | |
| parent | 54d85e389fcb019e4e910a986eff5b8f71aa06e6 (diff) | |
| download | bcm5719-llvm-4bd3bd5b5aad9cb32f1cd268cfa5e8b8df0ec368.tar.gz bcm5719-llvm-4bd3bd5b5aad9cb32f1cd268cfa5e8b8df0ec368.zip | |
ExecutionEngine.cpp: Move execution engine creation stuff into a new
static method here.
Remove some extra blank lines.
ExecutionEngine.h: Add its prototype.
lli.cpp: Call it.
Make creation method for each type of EE into a static method of its
own subclass.
Interpreter/Interpreter.cpp: ExecutionEngine::createInterpreter -->
Interpreter::create
Interpreter/Interpreter.h: Likewise.
JIT/JIT.cpp: ExecutionEngine::createJIT --> VM::create
JIT/VM.h: Likewise.
llvm-svn: 8343
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | 6 | ||||
| -rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 9 |
2 files changed, 9 insertions, 6 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 950e6a57273..6f540e2d1a8 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -9,11 +9,9 @@ #include "Interpreter.h" #include "llvm/Module.h" -/// createInterpreter - Create a new interpreter object. This can never fail. +/// create - Create a new interpreter object. This can never fail. /// -ExecutionEngine *ExecutionEngine::createInterpreter(Module *M, - bool DebugMode, - bool TraceMode) { +ExecutionEngine *Interpreter::create(Module *M, bool DebugMode, bool TraceMode){ bool isLittleEndian; switch (M->getEndianness()) { case Module::LittleEndian: isLittleEndian = true; break; diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 89581e0fd5f..459904da6db 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -91,8 +91,13 @@ public: bool DebugMode, bool TraceMode); inline ~Interpreter() { CW.setModule(0); } - // getExitCode - return the code that should be the exit code for the lli - // utility. + /// create - Create an interpreter ExecutionEngine. This can never fail. + /// + static ExecutionEngine *create(Module *M, bool DebugMode, bool TraceMode); + + /// getExitCode - return the code that should be the exit code for the lli + /// utility. + /// inline int getExitCode() const { return ExitCode; } /// run - Start execution with the specified function and arguments. |

