Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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.cpp960 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in errorToErrorCodeAndEmitErrors() argument
961 EC = EIB.convertToErrorCode(); in errorToErrorCodeAndEmitErrors()
962 Ctx.emitError(EIB.message()); in errorToErrorCodeAndEmitErrors()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp107 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) { in fatalOpenError() argument
108 llvm::errs() << "error opening '" << File << "': " << EIB.message() << '\n'; in fatalOpenError()
209 handleAllErrors(ChildMB.takeError(), [&](const ErrorInfoBase &EIB) { in appendFile() argument
210 llvm::errs() << MB.getBufferIdentifier() << ": " << EIB.message() in appendFile()
236 [&](const ErrorInfoBase &EIB) { in appendFile() argument
238 << EIB.message() << "\n"; in appendFile()
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp39 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in create() argument
40 Msg = EIB.message(); in create()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DObjectFilePCHContainerOperations.cpp371 handleAllErrors(E.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH() argument
372 EIB.log(llvm::errs()); in ExtractPCH()
379 handleAllErrors(OFOrErr.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH() argument
380 if (EIB.convertToErrorCode() == in ExtractPCH()
385 EIB.log(llvm::errs()); in ExtractPCH()
H A DCodeGenAction.cpp1064 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in CreateASTConsumer() argument
1066 << F.Filename << EIB.message(); in CreateASTConsumer()
1117 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in loadModule() argument
1118 CI.getDiagnostics().Report(DiagID) << EIB.message(); in loadModule()
H A DBackendUtil.cpp1142 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in runThinLTOBackend() argument
1143 errs() << "Error setting up ThinLTO save-temps: " << EIB.message() in runThinLTOBackend()
1212 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in runThinLTOBackend() argument
1213 errs() << "Error running ThinLTO backend: " << EIB.message() << '\n'; in runThinLTOBackend()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp200 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromInput() argument
202 SourceMgr::DK_Error, EIB.message()); in loadModuleFromInput()
226 handleAllErrors(Result.takeError(), [&](ErrorInfoBase &EIB) { in crossImportIntoModule() argument
228 SourceMgr::DK_Error, EIB.message()); in crossImportIntoModule()
/openbsd/gnu/llvm/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp193 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in check() argument
194 errs() << "llvm-lto2: " << Msg << ": " << EIB.message().c_str() << '\n'; in check()
/openbsd/gnu/llvm/llvm/lib/Linker/
H A DLinkModules.cpp586 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in run() argument
587 DstM.getContext().diagnose(LinkDiagnosticInfo(DS_Error, EIB.message())); in run()
/openbsd/gnu/llvm/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp185 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) { in failIfError() argument
188 fail(EIB.message()); in failIfError()
189 fail(Context + ": " + EIB.message()); in failIfError()
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DError.h1312 [&](std::unique_ptr<ErrorInfoBase> EIB) -> Error { in build()
1313 Payload = std::move(EIB); in build()
/openbsd/gnu/llvm/llvm/tools/gold/
H A Dgold-plugin.cpp499 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) -> Error { in check() argument
500 message(LDPL_FATAL, "%s: %s", Msg.c_str(), EIB.message().c_str()); in check()
/openbsd/gnu/llvm/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp570 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromInput() argument
572 SourceMgr::DK_Error, EIB.message()); in loadModuleFromInput()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DLegacyPassManager.cpp1344 handleAllErrors(F.materialize(), [&](ErrorInfoBase &EIB) { in run() argument
1345 report_fatal_error(Twine("Error reading bitcode file: ") + EIB.message()); in run()