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/JIT | |
| 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/JIT')
| -rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 7 | ||||
| -rw-r--r-- | llvm/lib/ExecutionEngine/JIT/VM.h | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index 57d7b89d8f2..9a2dc1aacb7 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JIT.cpp @@ -41,11 +41,10 @@ namespace { #endif /* NO_JITS_ENABLED */ } -/// createJIT - Create an return a new JIT compiler if there is one available -/// for the current target. Otherwise it returns null. +/// create - Create an return a new JIT compiler if there is one available +/// for the current target. Otherwise, return null. /// -ExecutionEngine *ExecutionEngine::createJIT(Module *M) { - +ExecutionEngine *VM::create(Module *M) { TargetMachine* (*TargetMachineAllocator)(const Module &) = 0; // Allow a command-line switch to override what *should* be the default target diff --git a/llvm/lib/ExecutionEngine/JIT/VM.h b/llvm/lib/ExecutionEngine/JIT/VM.h index e886a194122..764afcf66fe 100644 --- a/llvm/lib/ExecutionEngine/JIT/VM.h +++ b/llvm/lib/ExecutionEngine/JIT/VM.h @@ -26,6 +26,11 @@ public: VM(Module *M, TargetMachine *tm); ~VM(); + /// create - Create an return a new JIT compiler if there is one available + /// for the current target. Otherwise, return null. + /// + static ExecutionEngine *create(Module *M); + /// run - Start execution with the specified function and arguments. /// virtual int run(const std::string &FnName, |

