| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | ELF.h | 110 return createError( 162 return createError(Msg); in defaultWarningHandler() 416 return createError( in getExtendedSymbolTableIndex() 645 return createError( in getSectionStringTable() 802 return createError( in sections() 825 return createError( in sections() 858 return createError( in getEntry() 938 return createError( in getVersionDefinitions() 1011 return createError( in getVersionDependencies() 1128 return createError( in getSHNDXTable() [all …]
|
| H A D | Minidump.h | 144 static Error createError(StringRef Str) { in createError() function 196 return createError("No such stream"); in getStream()
|
| H A D | Error.h | 84 inline Error createError(const Twine &Err) { in createError() function
|
| H A D | StackMapParser.h | 328 return object::createError( in validateHeader() 334 return object::createError( in validateHeader()
|
| H A D | ELFObjectFile.h | 1065 return createError("Section is not SHT_RELA"); in getRelocationAddend()
|
| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | Minidump.cpp | 35 return createError("String size not even"); in getString() 51 return createError("String decoding failed"); in getString() 60 return createError("No such stream"); in getMemoryInfoList() 78 return createError("No such stream"); in getListStream() 119 return createError("Invalid signature"); in create() 121 return createError("Invalid version"); in create() 146 return createError("Cannot handle one of the minidump streams"); in create() 150 return createError("Duplicate stream type"); in create()
|
| H A D | COFFModuleDefinition.cpp | 165 return createError("integer expected"); in readAsInt() 172 return createError(Msg); in expect() 219 return createError("unknown directive: " + Tok.Value); in parseOne() 230 return createError("identifier expected, but got " + Tok.Value); in parseExport() 334 return createError("identifier expected, but got " + Tok.Value); in parseVersion() 338 return createError("integer expected, but got " + Tok.Value); in parseVersion() 342 return createError("integer expected, but got " + Tok.Value); in parseVersion()
|
| H A D | Decompressor.cpp | 23 return createError("zlib is not available"); in create() 39 return createError("corrupted compressed section header"); in consumeCompressedZLibHeader() 46 return createError("unsupported compression type"); in consumeCompressedZLibHeader()
|
| H A D | ELF.cpp | 386 return createError("invalid packed relocation header"); in android_relas() 404 return createError("relocation group unexpectedly large"); in android_relas() 573 return createError("invalid empty dynamic section"); in dynamicEntries() 576 return createError("dynamic sections must be DT_NULL terminated"); in dynamicEntries() 611 return createError("virtual address is not in any segment: 0x" + in toMappedAddr() 617 return createError("virtual address is not in any segment: 0x" + in toMappedAddr() 622 return createError("can't map virtual address 0x" + in toMappedAddr() 656 ULEBSizeErr = createError( in decodeBBAddrMap() 671 return createError("unsupported SHT_LLVM_BB_ADDR_MAP version: " + in decodeBBAddrMap()
|
| H A D | ELFObjectFile.cpp | 78 return createError("Insufficient alignment"); in createELFObjectFile() 86 return createError("Invalid ELF data"); in createELFObjectFile() 93 return createError("Invalid ELF data"); in createELFObjectFile() 95 return createError("Invalid ELF class"); in createELFObjectFile() 689 return createError("unable to get the linked-to section for " + in readBBAddrMapImpl() 697 return createError("unable to read " + describe(EF, Sec) + ": " + in readBBAddrMapImpl() 737 return createError("unable to read an entry with index " + Twine(I) + in readDynsymVersionsImpl() 743 return createError("unable to read flags for symbol with index " + in readDynsymVersionsImpl() 751 return createError("unable to get a version for entry " + Twine(I) + in readDynsymVersionsImpl()
|
| H A D | XCOFFObjectFile.cpp | 381 return createError( in getSectionContents() 423 return createError(toString(std::move(E)) + in getLoaderSectionAddress() 718 return createError(toString(std::move(E)) + ": " + Name.data() + in getRawData() 870 return createError("symbol index " + Twine(Index) + in getSymbolNameByIndex() 952 return createError( in relocations() 984 return createError(toString(StringTableOrErr.takeError()) + in parseStringTable() 1027 return createError( in getImportFileTable() 1036 return createError( in getImportFileTable() 1081 return createError(toString(SecHeadersOrErr.takeError()) + in create() 1106 return createError( in create() [all …]
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | DwarfCFIEHPrinter.h | 75 reportError(object::createError( in printUnwindInformation() 127 object::createError("only version 1 of .eh_frame_hdr is supported"), in printEHFrameHdr() 133 reportError(object::createError("unexpected encoding eh_frame_ptr_enc"), in printEHFrameHdr() 139 reportError(object::createError("unexpected encoding fde_count_enc"), in printEHFrameHdr() 145 reportError(object::createError("unexpected encoding table_enc"), in printEHFrameHdr() 165 reportError(object::createError("initial_location is out of order"), in printEHFrameHdr()
|
| H A D | ObjDumper.cpp | 26 static inline Error createError(const Twine &Msg) { in createError() function 35 reportWarning(createError(Msg), ObjName); in ObjDumper() 132 createError(formatv("could not find section '{0}'", S.first).str()), in getSectionRefsByNameOrIndex() 138 createError(formatv("could not find section {0}", S.first).str()), in getSectionRefsByNameOrIndex()
|
| H A D | ELFDumper.cpp | 431 return createError( in getLinkAsSymtab() 440 return createError( in getLinkAsSymtab() 949 return createError( in getSymbolSectionIndex() 2488 return createError("the hash table at offset 0x" + in checkHashTable() 2524 return createError("unable to dump the SHT_GNU_HASH " in checkGNUHashTable() 2557 return createError("no dynamic symbol table found"); in getGnuHashTableChains() 2577 return createError( in getGnuHashTableChains() 2820 return createError("cannot find PLTGOT dynamic tag"); in findGOT() 3157 return createError( in readMipsOptions() 4840 return createError(Err); in toULEB128Array() [all …]
|
| H A D | llvm-readobj.cpp | 404 reportError(createError(ContentErrString), FileStr); in dumpObject()
|
| /llvm-project-15.0.7/llvm/tools/llvm-rc/ |
| H A D | ResourceFileWriter.cpp | 46 static Error createError(const Twine &Message, in createError() function 73 return createError(FieldName + " (" + Twine(SignedNum) + in checkSignedNumberFits() 79 return createError(FieldName + " (" + Twine(SignedNum) + in checkSignedNumberFits() 162 return createError("Non-ASCII 8-bit codepoint (" + Twine(C) + in processString() 186 return createError("Non-8-bit codepoint (" + Twine(Char) + in processString() 199 return createError("Non-8-bit escaped char (" + Twine(Char) + in processString() 226 return createError("Expected \"\""); in processString() 318 return createError("Expected \\\"\""); in processString() 718 return createError("Incorrect bitmap file."); in writeBitmapBody() 1157 return joinErrors(createError("Error in " + Twine(Ctl.Type) + in writeDialogBody() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | IntelPTSingleBufferTrace.cpp | 88 auto createError = [&](const char *expected_value_message) { in ReadIntelPTConfigFile() local 99 return createError("an unsigned hexadecimal int"); in ReadIntelPTConfigFile() 101 return createError("0 or 1"); in ReadIntelPTConfigFile() 104 return createError("an unsigned decimal int"); in ReadIntelPTConfigFile()
|
| /llvm-project-15.0.7/llvm/unittests/ObjCopy/ |
| H A D | ObjCopyTest.cpp | 113 return createError("could not create ObjectFile from yaml description"); in createObjectFileFromYamlDescription() 116 return createError("wrong file format"); in createObjectFileFromYamlDescription() 142 return createError("wrong file format"); in callObjCopy() 145 return createError("binary is not object file"); in callObjCopy()
|
| /llvm-project-15.0.7/llvm/lib/InterfaceStub/ |
| H A D | ELFObjHandler.cpp | 351 return createError(Stream.str()); in appendToError() 431 return createError( in terminatedSubstr() 449 return createError("No .dynamic section found"); in populateDynamic() 484 return createError( in populateDynamic() 488 return createError( in populateDynamic() 492 return createError( in populateDynamic()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | APFloat.cpp | 232 static inline Error createError(const Twine &Err) { in createError() function 270 return createError("Exponent has no digits"); in readExponent() 307 return createError("Exponent has no digits"); in totalExponent() 313 return createError("Exponent has no digits"); in totalExponent() 362 return createError("Significand has no digits"); in skipLeadingZeroesAndAnyDot() 420 return createError("Significand has no digits"); in interpretDecimal() 422 return createError("Significand has no digits"); in interpretDecimal() 2597 return createError("Significand has no digits"); in convertFromHexadecimalString() 2910 return createError("Invalid string length"); in convertFromString() 2924 return createError("String has no digits"); in convertFromString() [all …]
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFContext.cpp | 1451 static Error createError(const Twine &Reason, llvm::Error E) { in createError() function 1484 return createError("failed to compute symbol address: ", in getSymbolInfo() 1490 return createError("failed to get symbol section: ", in getSymbolInfo() 1715 HandleError(createError("failed to get relocated section: ", in DWARFObjInMemory() 1735 HandleError(createError("failed to decompress '" + Name + "', ", in DWARFObjInMemory() 1773 createError("Unexpected relocations for dwo section " + Name)); in DWARFObjInMemory() 1858 HandleError(createError( in DWARFObjInMemory() 1869 createError("failed to compute relocation: " + Type + ", ", in DWARFObjInMemory()
|
| /llvm-project-15.0.7/llvm/lib/DWP/ |
| H A D | DWP.cpp | 269 static Error createError(StringRef Name, Error E) { in createError() function 289 return createError(Name, Dec.takeError()); in handleCompressedSection() 293 return createError(Name, std::move(E)); in handleCompressedSection()
|
| /llvm-project-15.0.7/llvm/tools/llvm-dwarfutil/ |
| H A D | llvm-dwarfutil.cpp | 186 createError("output verification failed")); in verifyOutput() 503 createError("unsupported input file"))); in main()
|
| H A D | DebugInfoLinker.cpp | 142 return object::createError("no relocations in linked binary"); in relocateIndexedAddr()
|
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | ELFDump.cpp | 52 return createError("dynamic string table not found"); in getDynamicStrTab()
|