| /src/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitReader.cpp | 44 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 D | BitcodeReader.cpp | 1015 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 D | IRReader.cpp | 41 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 D | LLVMRemarkStreamer.h | 53 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 D | GDBRemoteCommunicationServer.cpp | 118 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 D | Interpreter.cpp | 39 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 D | LibDriver.cpp | 122 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 D | ObjectFilePCHContainerOperations.cpp | 379 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 D | CodeGenAction.cpp | 935 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 D | BackendUtil.cpp | 1216 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 D | error.h | 140 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 D | DebuggerSupportPlugin.cpp | 175 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in startSynthesis() argument 178 EIB.log(dbgs()); in startSynthesis()
|
| /src/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | ThinLTOCodeGenerator.cpp | 203 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 D | llvm-lto2.cpp | 202 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 D | LinkModules.cpp | 607 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 D | llvm-ar.cpp | 180 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 D | Error.h | 1365 [&](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 D | llvm-lto.cpp | 576 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 D | LegacyPassManager.cpp | 1349 handleAllErrors(F.materialize(), [&](ErrorInfoBase &EIB) { in run() argument 1350 report_fatal_error(Twine("Error reading bitcode file: ") + EIB.message()); in run()
|