search for: _executionengine

Displaying 3 results from an estimated 3 matches for "_executionengine".

Did you mean: executionengine
2008 May 28
1
[LLVMdev] Asm output while executing
...aration()) { Passes.run(*I); } Passes.doFinalization(); /// The execution llvm::Function *inputFunction = _module->getFunction("function"); std::vector<llvm::GenericValue> args(0); llvm::GenericValue result; result = _executionEngine->runFunction( inputFunction, args ); **** Thanks, -- .alvaro.castro.castilla.
2018 Mar 02
2
EngineBuilder().create() => NULL
Hi, I try to create an execution engine, but I always got a nullptr value :     _executionEngine = EngineBuilder(std::move(_module)).create(); I build my project with cmake and add the following command in my cmake.     llvm_map_components_to_libnames(llvm_libs Analysis Core ExecutionEngine InstCombine Object RuntimeDyld ScalarOpts Support native mcjit) BTW, I have also try to execute th...
2018 Mar 02
0
EngineBuilder().create() => NULL
EngineBuilder should provided an error string option, try printing it out? Zhang > 在 2018年3月2日,上午8:23,Christophe Demez via llvm-dev <llvm-dev at lists.llvm.org> 写道: > > Hi, > > I try to create an execution engine, but I always got a nullptr value : > > _executionEngine = EngineBuilder(std::move(_module)).create(); > > I build my project with cmake and add the following command in my cmake. > > llvm_map_components_to_libnames(llvm_libs Analysis Core ExecutionEngine InstCombine Object RuntimeDyld ScalarOpts Support native mcjit) > > BTW, I...