Displaying 1 result from an estimated 1 matches for "interpretedee".
Did you mean:
interpreteded
2007 Mar 30
1
[LLVMdev] Two ExecutionEngines from one Module
...or running via the interpreter. It is the ability to have
both flavors of execution that is causing me grief. Given a Module
pointer, module, here's the scenario:
CompiledProgram* program = new CompiledProgram(module);
Inside our CompiledProgram object, we might want to do this:
this->interpretedEE =
llvm::ExecutionEngine::create(this->module,true);
Ownership of the module will transfer to the interpretedEE at this
point. Fair enough because we've got this all buttoned up in a class
and we can handle the various orders of takedown.
Later, I'd like to make a native one:
this-&g...