Home | History | Annotate | Download | only in ExecutionEngine

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;
454 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
494 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
504 if (ErrorStr)
505 *ErrorStr = "Cannot create an interpreter with a memory manager.";
522 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
527 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
540 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
541 if (ErrorStr)
542 *ErrorStr = "Interpreter has not been linked in.";
547 if (ErrorStr)
548 *ErrorStr = "JIT has not been linked in.";