Enabling incremental bytecode loading in the JIT:
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 14 Oct 2003 21:36:31 +0000 (21:36 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 14 Oct 2003 21:36:31 +0000 (21:36 +0000)
* ExecutionEngine and VM can be constructed using a ModuleProvider.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9124 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp

index 429d54b671dad4407022dfbca6c4349fb84b12ea..35a735d647c5025cd380c1d69502b40165f0e8f9 100644 (file)
 Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
 
 ExecutionEngine::~ExecutionEngine() {
-  delete &CurMod;
+  delete MP;
 }
 
 /// FIXME: document
 ///
-ExecutionEngine *ExecutionEngine::create(Module *M, bool ForceInterpreter,
+ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP, 
+                                         bool ForceInterpreter,
                                          bool TraceMode) {
   ExecutionEngine *EE = 0;
 
   // If there is nothing that is forcing us to use the interpreter, make a JIT.
   if (!ForceInterpreter && !TraceMode)
-    EE = VM::create(M);
+    EE = VM::create(MP);
 
   // If we can't make a JIT, make an interpreter instead.
   if (EE == 0)
-    EE = Interpreter::create(M, TraceMode);
+    EE = Interpreter::create(MP->releaseModule(), TraceMode);
   return EE;
 }