Lines Matching refs:ErrorStr
49 std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
473 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr), in EngineBuilder()
512 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr)) in create()
522 if (ErrorStr) in create()
523 *ErrorStr = "Cannot create an interpreter with a memory manager."; in create()
540 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr), in create()
545 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), in create()
558 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); in create()
559 if (ErrorStr) in create()
560 *ErrorStr = "Interpreter has not been linked in."; in create()
565 if (ErrorStr) in create()
566 *ErrorStr = "JIT has not been linked in."; in create()