Home
last modified time | relevance | path

Searched refs:EIB (Results 1 – 19 of 19) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp44 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMParseBitcodeInContext() argument
45 Message = EIB.message(); in LLVMParseBitcodeInContext()
90 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMGetBitcodeModuleInContext() argument
91 Message = EIB.message(); in LLVMGetBitcodeModuleInContext()
H A DBitcodeReader.cpp1015 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in errorToErrorCodeAndEmitErrors() argument
1016 EC = EIB.convertToErrorCode(); in errorToErrorCodeAndEmitErrors()
1017 Ctx.emitError(EIB.message()); in errorToErrorCodeAndEmitErrors()
/src/contrib/llvm-project/llvm/lib/IRReader/
H A DIRReader.cpp41 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in getLazyIRModule() argument
43 EIB.message()); in getLazyIRModule()
80 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in parseIR() argument
82 EIB.message()); in parseIR()
/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DLLVMRemarkStreamer.h53 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EIB) { in LLVMRemarkSetupErrorInfo()
54 Msg = EIB.message(); in LLVMRemarkSetupErrorInfo()
55 EC = EIB.convertToErrorCode(); in LLVMRemarkSetupErrorInfo()
/src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp118 std::unique_ptr<llvm::ErrorInfoBase> EIB; in SendErrorResponse() local
123 [&](std::unique_ptr<llvm::ErrorInfoBase> E) { EIB = std::move(E); }); in SendErrorResponse()
125 if (EIB) in SendErrorResponse()
126 return SendErrorResponse(Status(llvm::Error(std::move(EIB)))); in SendErrorResponse()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp39 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in create() argument
40 Msg = EIB.message(); in create()
/src/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp122 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) { in fatalOpenError() argument
123 llvm::errs() << "error opening '" << File << "': " << EIB.message() << '\n'; in fatalOpenError()
245 handleAllErrors(ChildMB.takeError(), [&](const ErrorInfoBase &EIB) { in appendFile() argument
246 llvm::errs() << MB.getBufferIdentifier() << ": " << EIB.message() in appendFile()
272 [&](const ErrorInfoBase &EIB) { in appendFile() argument
274 << EIB.message() << "\n"; in appendFile()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DObjectFilePCHContainerOperations.cpp379 handleAllErrors(E.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH() argument
380 EIB.log(llvm::errs()); in ExtractPCH()
387 handleAllErrors(OFOrErr.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH() argument
388 if (EIB.convertToErrorCode() == in ExtractPCH()
393 EIB.log(llvm::errs()); in ExtractPCH()
H A DCodeGenAction.cpp935 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadLinkModules() argument
937 << F.Filename << EIB.message(); in loadLinkModules()
1056 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in loadModule() argument
1057 CI.getDiagnostics().Report(DiagID) << EIB.message(); in loadModule()
H A DBackendUtil.cpp1216 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in runThinLTOBackend() argument
1217 errs() << "Error setting up ThinLTO save-temps: " << EIB.message() in runThinLTOBackend()
1287 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in runThinLTOBackend() argument
1288 errs() << "Error running ThinLTO backend: " << EIB.message() << '\n'; in runThinLTOBackend()
/src/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h140 inline Error repackage_error(std::unique_ptr<ErrorInfoBase> EIB) { in repackage_error() argument
141 return Error(std::move(EIB)); in repackage_error()
410 if (auto EIB = error_cast<ErrorInfoBase>(Err)) in toString() local
411 return EIB->toString(); in toString()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp175 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in startSynthesis() argument
178 EIB.log(dbgs()); in startSynthesis()
/src/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp203 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromInput() argument
205 SourceMgr::DK_Error, EIB.message()); in loadModuleFromInput()
229 handleAllErrors(Result.takeError(), [&](ErrorInfoBase &EIB) { in crossImportIntoModule() argument
231 SourceMgr::DK_Error, EIB.message()); in crossImportIntoModule()
/src/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp202 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in check() argument
203 errs() << "llvm-lto2: " << Msg << ": " << EIB.message().c_str() << '\n'; in check()
/src/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp607 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in run() argument
608 DstM.getContext().diagnose(LinkDiagnosticInfo(DS_Error, EIB.message())); in run()
/src/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp180 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) { in failIfError() argument
183 fail(EIB.message()); in failIfError()
184 fail(Context + ": " + EIB.message()); in failIfError()
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h1365 [&](std::unique_ptr<ErrorInfoBase> EIB) -> Error { in build()
1366 Payload = std::move(EIB); in build()
/src/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp576 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromInput() argument
578 SourceMgr::DK_Error, EIB.message()); in loadModuleFromInput()
/src/contrib/llvm-project/llvm/lib/IR/
H A DLegacyPassManager.cpp1349 handleAllErrors(F.materialize(), [&](ErrorInfoBase &EIB) { in run() argument
1350 report_fatal_error(Twine("Error reading bitcode file: ") + EIB.message()); in run()