forked from OSchip/llvm-project
ExecutionEngine::create no longer takes a TraceMode argument.
llvm-svn: 9488
This commit is contained in:
parent
f314a4b7aa
commit
65cd504822
|
@ -56,8 +56,7 @@ public:
|
|||
virtual GenericValue run(Function *F,
|
||||
const std::vector<GenericValue> &ArgValues) = 0;
|
||||
|
||||
static ExecutionEngine *create(ModuleProvider *MP, bool ForceInterpreter,
|
||||
bool TraceMode);
|
||||
static ExecutionEngine *create(ModuleProvider *MP, bool ForceInterpreter);
|
||||
|
||||
void addGlobalMapping(const Function *F, void *Addr) {
|
||||
void *&CurVal = GlobalAddress[(const GlobalValue*)F];
|
||||
|
|
|
@ -47,18 +47,17 @@ ExecutionEngine::~ExecutionEngine() {
|
|||
/// NULL is returned.
|
||||
///
|
||||
ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
|
||||
bool ForceInterpreter,
|
||||
bool TraceMode) {
|
||||
bool ForceInterpreter) {
|
||||
ExecutionEngine *EE = 0;
|
||||
|
||||
// If there is nothing that is forcing us to use the interpreter, make a JIT.
|
||||
if (!ForceInterpreter && !TraceMode)
|
||||
// Unless the interpreter was explicitly selected, make a JIT.
|
||||
if (!ForceInterpreter)
|
||||
EE = VM::create(MP);
|
||||
|
||||
// If we can't make a JIT, make an interpreter instead.
|
||||
try {
|
||||
if (EE == 0)
|
||||
EE = Interpreter::create(MP->materializeModule(), TraceMode);
|
||||
EE = Interpreter::create(MP->materializeModule());
|
||||
} catch (...) {
|
||||
EE = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue