| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_report.cc | 214 in_report.ReportError(error); in ReportDeadlySignal() 220 in_report.ReportError(error); in ReportDoubleFree() 229 in_report.ReportError(error); in ReportNewDeleteTypeMismatch() 235 in_report.ReportError(error); in ReportFreeNotMalloced() 244 in_report.ReportError(error); in ReportAllocTypeMismatch() 250 in_report.ReportError(error); in ReportMallocUsableSizeNotOwned() 258 in_report.ReportError(error); in ReportSanitizerGetAllocatedSizeNotOwned() 264 in_report.ReportError(error); in ReportCallocOverflow() 270 in_report.ReportError(error); in ReportPvallocOverflow() 278 in_report.ReportError(error); in ReportInvalidAllocationAlignment() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | SymbolRemappingReader.cpp | 31 auto ReportError = [&](Twine Msg) { in read() local 47 return ReportError("Expected 'kind mangled_name mangled_name', " in read() 57 return ReportError("Invalid kind, expected 'name', 'type', or 'encoding'," in read() 66 return ReportError("Manglings '" + Parts[1] + "' and '" + Parts[2] + "' " in read() 71 return ReportError("Could not demangle '" + Parts[1] + "' " in read() 75 return ReportError("Could not demangle '" + Parts[2] + "' " in read()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | RemoteObjectLayer.h | 115 std::function<void(Error)> ReportError) in RemoteObjectLayer() argument 116 : Remote(Remote), ReportError(std::move(ReportError)), in RemoteObjectLayer() 183 ReportError(make_error<StringError>( in teeLog() 230 std::function<void(Error)> ReportError; variable 237 ReportError(std::move(Err)); in releaseRemoteSymbol() 317 std::function<void(Error)> ReportError) in RemoteObjectClientLayer() argument 318 : RemoteObjectLayer<RPCEndpoint>(Remote, std::move(ReportError)) { in RemoteObjectClientLayer() 423 std::function<void(Error)> ReportError) in RemoteObjectServerLayer() argument 424 : RemoteObjectLayer<RPCEndpoint>(Remote, std::move(ReportError)), in RemoteObjectServerLayer()
|
| H A D | Legacy.h | 183 ErrorReporter ReportError) in LegacyLookupFnResolver() argument 185 ReportError(std::move(ReportError)) {} in LegacyLookupFnResolver() 192 ReportError(ResponsibilitySet.takeError()); in getResponsibilitySet() 205 ErrorReporter ReportError; variable
|
| H A D | Core.h | 746 ExecutionSession &setErrorReporter(ErrorReporter ReportError) { in setErrorReporter() argument 747 this->ReportError = std::move(ReportError); in setErrorReporter() 754 void reportError(Error Err) { ReportError(std::move(Err)); } in reportError() 861 ErrorReporter ReportError = logErrorsToStdErr; variable
|
| H A D | OrcRemoteTargetClient.h | 687 std::function<void(Error)> ReportError; variable
|
| /freebsd-12.1/contrib/llvm/tools/llvm-bcanalyzer/ |
| H A D | llvm-bcanalyzer.cpp | 456 static bool ReportError(const Twine &Err) { in ReportError() function 479 return ReportError("bad length"); in decodeMetadataStringsBlob() 483 return ReportError("truncated chars"); in decodeMetadataStringsBlob() 524 return ReportError("Malformed BlockInfoBlock"); in ParseBlock() 533 return ReportError("Malformed block record"); in ParseBlock() 561 return ReportError("Premature end of bitstream"); in ParseBlock() 570 return ReportError("malformed bitcode file"); in ParseBlock() 808 return ReportError("Invalid bitcode wrapper header"); in openBitcodeFile() 826 return ReportError("Invalid bitcode wrapper header"); in openBitcodeFile() 865 return ReportError("Malformed BlockInfoBlock in block info file"); in AnalyzeBitcode() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugFrame.cpp | 348 static void LLVM_ATTRIBUTE_NORETURN ReportError(uint32_t StartOffset, in ReportError() function 418 ReportError(StartOffset, in parse() 425 ReportError(StartOffset, in parse() 441 ReportError(StartOffset, in parse() 459 ReportError(StartOffset, "Parsing augmentation data at %lx failed"); in parse() 484 ReportError(StartOffset, in parse() 513 ReportError(StartOffset, "Parsing augmentation data at %lx failed"); in parse() 531 ReportError(StartOffset, "Parsing entry instructions at %lx failed"); in parse()
|
| H A D | DWARFVerifier.cpp | 469 auto ReportError = [&](const Twine &TitleMsg) { in verifyDebugInfoAttribute() local 482 ReportError("DW_AT_ranges offset is beyond .debug_ranges bounds:"); in verifyDebugInfoAttribute() 485 ReportError("DIE has invalid DW_AT_ranges encoding:"); in verifyDebugInfoAttribute() 491 ReportError("DW_AT_stmt_list offset is beyond .debug_line bounds: " + in verifyDebugInfoAttribute() 495 ReportError("DIE has invalid DW_AT_stmt_list encoding:"); in verifyDebugInfoAttribute() 507 ReportError("DIE contains invalid DWARF expression:"); in verifyDebugInfoAttribute() 532 ReportError("DIE with tag " + TagString(DieTag) + " has " + in verifyDebugInfoAttribute() 543 ReportError("DIE has " + AttributeString(Attr) + in verifyDebugInfoAttribute()
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCFragment.cpp | 86 bool ReportError, uint64_t &Val) { in getLabelOffset() argument 88 if (ReportError) in getLabelOffset() 98 bool ReportError, uint64_t &Val) { in getSymbolOffsetImpl() argument 100 return getLabelOffset(Layout, S, ReportError, Val); in getSymbolOffsetImpl() 113 if (!getLabelOffset(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl() 121 if (!getLabelOffset(Layout, B->getSymbol(), ReportError, ValB)) in getSymbolOffsetImpl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | LLVMConventionsChecker.cpp | 227 void ReportError(QualType T); 248 ReportError(T); in Visit() 259 void ASTFieldVisitor::ReportError(QualType T) { in ReportError() function in ASTFieldVisitor
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 221 die.GetDWARF()->GetObjectFile()->GetModule()->ReportError( in CompleteExternalTagDeclType() 1123 dwarf->GetObjectFile()->GetModule()->ReportError( in ParseTypeFromDWARF() 1752 module_sp->ReportError( in ParseTypeFromDWARF() 1760 module_sp->ReportError( in ParseTypeFromDWARF() 1866 dwarf->GetObjectFile()->GetModule()->ReportError( in ParseTypeFromDWARF() 3075 module_sp->ReportError( in ParseChildMembers() 3092 module_sp->ReportError( in ParseChildMembers() 3100 module_sp->ReportError( in ParseChildMembers() 3119 module_sp->ReportError( in ParseChildMembers() 3140 module_sp->ReportError( in ParseChildMembers() [all …]
|
| H A D | SymbolFileDWARFDebugMap.cpp | 357 m_obj_file->GetModule()->ReportError( in InitOSO() 374 m_obj_file->GetModule()->ReportError( in InitOSO() 379 m_obj_file->GetModule()->ReportError( in InitOSO() 384 m_obj_file->GetModule()->ReportError( in InitOSO() 389 m_obj_file->GetModule()->ReportError( in InitOSO() 427 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo()
|
| H A D | SymbolFileDWARF.cpp | 1227 GetObjectFile()->GetModule()->ReportError( in ParseBlocksRecursive() 1540 GetObjectFile()->GetModule()->ReportError( in ResolveType() 3475 GetObjectFile()->GetModule()->ReportError( in ParseVariableDIE() 3709 GetObjectFile()->GetModule()->ReportError( in ParseVariables() 3753 GetObjectFile()->GetModule()->ReportError( in ParseVariables()
|
| H A D | DWARFDebugInfoEntry.cpp | 57 cu->GetSymbolFileDWARF()->GetObjectFile()->GetModule()->ReportError( in FastExtract() 477 cu->GetSymbolFileDWARF()->GetObjectFile()->GetModule()->ReportError( in GetDIENamesAndRanges()
|
| /freebsd-12.1/contrib/llvm/tools/lld/ELF/ |
| H A D | Config.h | 51 enum class UnresolvedPolicy { ReportError, Warn, Ignore }; enumerator
|
| H A D | Driver.cpp | 463 ? UnresolvedPolicy::ReportError in getUnresolvedSymbolPolicy()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 1218 symbol_file.GetObjectFile()->GetModule()->ReportError( in AddRecordMembers() 1282 symbol_file.GetObjectFile()->GetModule()->ReportError( in AddRecordBases() 1340 symbol_file.GetObjectFile()->GetModule()->ReportError( in AddRecordMethod()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Module.h | 926 void ReportError(const char *format, ...)
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Module.cpp | 1106 void Module::ReportError(const char *format, ...) { in ReportError() function in Module 1272 ReportError("failed to load objfile for %s", in GetObjectFile()
|