Lines Matching refs:ErrorStr
50 std::unique_ptr<Module> M, std::string *ErrorStr,
56 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
61 std::string *ErrorStr) =nullptr;
477 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr), in EngineBuilder()
516 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr)) in create()
526 if (ErrorStr) in create()
527 *ErrorStr = "Cannot create an interpreter with a memory manager."; in create()
543 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr), in create()
548 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), in create()
561 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); in create()
562 if (ErrorStr) in create()
563 *ErrorStr = "Interpreter has not been linked in."; in create()
568 if (ErrorStr) in create()
569 *ErrorStr = "JIT has not been linked in."; in create()