search for: nativeee

Displaying 1 result from an estimated 1 matches for "nativeee".

Did you mean: native
2007 Mar 30
1
[LLVMdev] Two ExecutionEngines from one Module
...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->nativeEE = llvm::ExecutionEngine::create(???,false); and at this point I'm in a seeming catch-22. I can't use the same module (I believe) to construct the second ExecutionEngine since ownership of the module is already in the first one. Zooming around the class hierarchy didn't seem to yield...