diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-03 18:19:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-03 18:19:18 +0000 |
commit | 603682ad1d5f422b5565b8d29cd08bb28f8a8edb (patch) | |
tree | d1cd766ae01d3e2512e4b934108046621e1e590f /llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | 30ed3bdaf21b4928bb2d73a3cd176dc679c9d796 (diff) | |
download | bcm5719-llvm-603682ad1d5f422b5565b8d29cd08bb28f8a8edb.tar.gz bcm5719-llvm-603682ad1d5f422b5565b8d29cd08bb28f8a8edb.zip |
Deal with error handling better.
llvm-svn: 34887
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 1cce7cb8d3c..cc8cbf9e288 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -18,6 +18,7 @@ #include "llvm/DerivedTypes.h" #include "llvm/Module.h" #include "llvm/ModuleProvider.h" +#include <iostream> using namespace llvm; static struct RegisterInterp { @@ -31,13 +32,20 @@ namespace llvm { /// create - Create a new interpreter object. This can never fail. /// -ExecutionEngine *Interpreter::create(ModuleProvider *MP) { - Module *M; - try { - M = MP->materializeModule(); - } catch (...) { - return 0; // error materializing the module. - } +ExecutionEngine *Interpreter::create(ModuleProvider *MP, std::string* ErrStr) { + // Tell this ModuleProvide to materialize and release the module + Module *M = MP->releaseModule(ErrStr); + if (!M) + // We got an error, just return 0 + return 0; + + // This is a bit nasty, but the ExecutionEngine won't be able to delete the + // module due to use/def issues if we don't delete this MP here. Below we + // construct a new Interpreter with the Module we just got. This creates a + // new ExistingModuleProvider in the EE instance. Consequently, MP is left + // dangling and it contains references into the module which cause problems + // when the module is deleted via the ExistingModuleProvide via EE. + delete MP; // FIXME: This should probably compute the entire data layout std::string DataLayout; |