Home | History | Annotate | Download | only in ExecutionEngine

Lines Matching full:errorstr

49     std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
477 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
517 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
527 if (ErrorStr)
528 *ErrorStr = "Cannot create an interpreter with a memory manager.";
545 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
550 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
563 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
564 if (ErrorStr)
565 *ErrorStr = "Interpreter has not been linked in.";
570 if (ErrorStr)
571 *ErrorStr = "JIT has not been linked in.";