| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | Error.h | 49 class ErrorInfoBase { 51 virtual ~ErrorInfoBase() = default; 199 Error(std::unique_ptr<ErrorInfoBase> Payload) { in Error() 272 ErrorInfoBase *getPtr() const { in getPtr() 273 return reinterpret_cast<ErrorInfoBase*>( in getPtr() 278 void setPtr(ErrorInfoBase *EI) { in setPtr() 280 Payload = reinterpret_cast<ErrorInfoBase*>( in setPtr() 298 Payload = reinterpret_cast<ErrorInfoBase*>( in setChecked() 304 std::unique_ptr<ErrorInfoBase> takePayload() { in takePayload() 319 ErrorInfoBase *Payload = nullptr; [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | Error.cpp | 54 void ErrorInfoBase::anchor() {} in anchor() 55 char ErrorInfoBase::ID = 0; 66 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in logAllUnhandledErrors() 96 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) { in errorToErrorCode() 153 return reinterpret_cast<ErrorInfoBase *>(Err)->dynamicClassID(); in LLVMGetErrorTypeId()
|
| /freebsd-12.1/contrib/llvm/lib/Testing/Support/ |
| H A D | Error.cpp | 17 std::vector<std::shared_ptr<ErrorInfoBase>> Infos; in TakeError() 19 [&Infos](std::unique_ptr<ErrorInfoBase> Info) { in TakeError()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitReader.cpp | 46 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMParseBitcodeInContext() 92 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMGetBitcodeModuleInContext()
|
| /freebsd-12.1/contrib/llvm/lib/IRReader/ |
| H A D | IRReader.cpp | 41 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in getLazyIRModule() 81 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in parseIR()
|
| /freebsd-12.1/contrib/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 148 handleAllErrors(MOrErr.takeError(), [&](const ErrorInfoBase &EIB) { in libDriverMain() 170 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in libDriverMain()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ |
| H A D | Buffer.cpp | 24 handleAllErrors(BufferOrErr.takeError(), [this](const ErrorInfoBase &E) { in allocate()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Testing/Support/ |
| H A D | SupportHelpers.h | 23 std::vector<std::shared_ptr<ErrorInfoBase>> Infos;
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.cpp | 40 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in create()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | func-id-helper.cpp | 40 handleAllErrors(ResOrErr.takeError(), [&](const ErrorInfoBase &) { in SymbolOrNumber() argument
|
| H A D | xray-graph.cpp | 469 [&](const ErrorInfoBase &E) { E.log(errs()); }); in getGraphRenderer()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | RPCSerialization.h | 372 std::function<Error(ChannelT &C, const ErrorInfoBase&)>; 403 [KeyName, Serialize](ChannelT &C, const ErrorInfoBase &EIB) -> Error { in registerErrorType() 420 [&C](const ErrorInfoBase &EIB) { in serialize() 448 static Error serializeAsStringError(ChannelT &C, const ErrorInfoBase &EIB) { in serializeAsStringError()
|
| H A D | RemoteObjectLayer.h | 182 [this](std::unique_ptr<ErrorInfoBase> EIB) { in teeLog()
|
| H A D | OrcRemoteTargetClient.h | 201 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) {
|
| /freebsd-12.1/contrib/llvm/tools/lld/Common/ |
| H A D | ErrorHandler.cpp | 85 [&](ErrorInfoBase &EIB) { error(EIB.message()); }); in checkError()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Object/ |
| H A D | RelocVisitor.h | 121 handleAllErrors(AddendOrErr.takeError(), [](const ErrorInfoBase &EI) { in getELFAddend()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | ObjectFilePCHContainerOperations.cpp | 346 handleAllErrors(OFOrErr.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH()
|
| H A D | BackendUtil.cpp | 1201 handleAllErrors(BMOrErr.takeError(), [&](ErrorInfoBase &EIB) { in runThinLTOBackend() 1218 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in runThinLTOBackend() 1262 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in runThinLTOBackend()
|
| H A D | CodeGenAction.cpp | 876 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in CreateASTConsumer() 952 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in loadModule()
|
| /freebsd-12.1/contrib/llvm/lib/LTO/ |
| H A D | ThinLTOCodeGenerator.cpp | 188 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromBuffer() 212 handleAllErrors(Result.takeError(), [&](ErrorInfoBase &EIB) { in crossImportIntoModule()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-lto2/ |
| H A D | llvm-lto2.cpp | 123 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in check()
|
| /freebsd-12.1/contrib/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 558 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in run()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | llvm-readobj.cpp | 355 [&](const ErrorInfoBase &EI) { reportError(EI.message()); }); in error()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-ar/ |
| H A D | llvm-ar.cpp | 138 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) { in failIfError()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.cpp | 660 [&W](const ErrorInfoBase &EI) { EI.log(W.startLine()); }); in dumpEntry()
|