| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ELFAttrParserExtended.cpp | 110 utohexstr(FormatVersion)); in parse() 125 utohexstr(Cursor.tell() - 4)); in parse() 136 "\ninvalid Optionality at offset " + utohexstr(Cursor.tell() - 4) + in parse() 137 ": " + utohexstr(IsOptional) + " (Options are 1|0)"); in parse() 145 utohexstr(Cursor.tell() - 4) + ": " + in parse() 146 utohexstr(Type) + " (Options are 1|0)"); in parse()
|
| H A D | ELFAttrParserCompact.cpp | 109 "invalid tag 0x" + Twine::utohexstr(tag) + in parseAttributeList() 110 " at offset 0x" + Twine::utohexstr(pos)); in parseAttributeList() 157 Twine::utohexstr(cursor.tell() - 5)); in parseSubsection() 177 "unrecognized tag 0x" + Twine::utohexstr(tag) + in parseSubsection() 179 Twine::utohexstr(cursor.tell() - 5)); in parseSubsection() 211 utohexstr(formatVersion)); in parse() 227 utohexstr(cursor.tell() - 4)); in parse()
|
| H A D | SipHash.cpp | 52 << utohexstr(Discriminator, /*Lowercase=*/false, /*Width=*/4) in getPointerAuthStableSipHash()
|
| H A D | ScopedPrinter.cpp | 10 OS << "0x" << utohexstr(Value.Value); in operator <<()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ELF.h | 392 Twine::utohexstr(getHeader().e_phoff) + in program_headers() 412 createError("invalid offset (0x" + Twine::utohexstr(Phdr.p_offset) + in notes_begin() 413 ") or size (0x" + Twine::utohexstr(Phdr.p_filesz) + ")"); in notes_begin() 440 createError("invalid offset (0x" + Twine::utohexstr(Shdr.sh_offset) + in notes_begin() 441 ") or size (0x" + Twine::utohexstr(Shdr.sh_size) + ")"); in notes_begin() 637 " has a sh_offset (0x" + Twine::utohexstr(Offset) + in getSectionContentsAsArray() 638 ") + sh_size (0x" + Twine::utohexstr(Size) + in getSectionContentsAsArray() 642 " has a sh_offset (0x" + Twine::utohexstr(Offset) + in getSectionContentsAsArray() 643 ") + sh_size (0x" + Twine::utohexstr(Size) + in getSectionContentsAsArray() 645 Twine::utohexstr(Buf.size()) + ")"); in getSectionContentsAsArray() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | XCOFFObjectFile.cpp | 106 return createError("entry with offset 0x" + Twine::utohexstr(Offset) + in getLoaderSecSymNameInStrTbl() 108 Twine::utohexstr(LoaderSecHeader->LengthOfStrTbl) + in getLoaderSecSymNameInStrTbl() 241 return createError("entry with offset 0x" + Twine::utohexstr(Offset) + in getStringTableEntry() 243 Twine::utohexstr(StringTable.Size) + " is invalid"); in getStringTableEntry() 425 Twine::utohexstr(OffsetToRaw) + " and size 0x" + in getSectionContents() 426 Twine::utohexstr(SectionSize) + " goes past the end of the file"); in getSectionContents() 461 Twine(("<Unknown:") + Twine::utohexstr(SectType) + ">") in getSectionFileOffsetToRawData() 488 Twine::utohexstr(SectionOffset) + " and size 0x" + in getSectionFileOffsetToRawData() 489 Twine::utohexstr(SizeOfSection) + in getSectionFileOffsetToRawData() 788 " data with offset 0x" + Twine::utohexstr(StartPtr) + in getRawData() [all …]
|
| H A D | MachOObjectFile.cpp | 3003 Twine::utohexstr(offset)); in pushNode() 3011 "export info size: 0x" + Twine::utohexstr(ExportInfoSize) + in pushNode() 3012 " in export trie data at node: 0x" + Twine::utohexstr(offset) + in pushNode() 3023 Twine::utohexstr(offset)); in pushNode() 3034 " in flags: 0x" + Twine::utohexstr(State.Flags) + in pushNode() 3035 " in export trie data at node: 0x" + Twine::utohexstr(offset)); in pushNode() 3045 Twine::utohexstr(offset)); in pushNode() 3056 ") in export trie data at node: 0x" + Twine::utohexstr(offset)); in pushNode() 3069 Twine::utohexstr(offset) + in pushNode() 3079 Twine::utohexstr(offset) + in pushNode() [all …]
|
| H A D | ELF.cpp | 599 return "<unknown:>0x" + utohexstr(Type, true); in getDynamicTagAsString() 690 Twine::utohexstr(VAddr)); in toMappedAddr() 696 Twine::utohexstr(VAddr)); in toMappedAddr() 701 Twine::utohexstr(VAddr) + " to the segment with index " + in toMappedAddr() 704 Twine::utohexstr(Phdr.p_offset + Phdr.p_filesz) + in toMappedAddr() 706 Twine::utohexstr(getBufSize()) + ")"); in toMappedAddr() 726 Twine::utohexstr(Offset) + " exceeds UINT" + in readULEB128As() 728 "_MAX (0x" + Twine::utohexstr(Value) + ")"); in readULEB128As() 776 Twine::utohexstr(RelocationOffsetInSection) + in decodeBBAddrMapImpl() 862 Twine::utohexstr(Cur.tell()) + " in " + in decodeBBAddrMapImpl()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DFAPacketizerEmitter.cpp | 124 << Twine::utohexstr(FuncResources)); in collectAllFuncUnits() 159 << Twine::utohexstr(ComboResources) << "\n"); in collectAllComboFuncs() 164 << Twine::utohexstr(FuncResources) << "\n"); in collectAllComboFuncs() 170 << Twine::utohexstr(ComboBit) << " = 0x" in collectAllComboFuncs() 171 << Twine::utohexstr(ComboResources) << "\n"); in collectAllComboFuncs()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | ConcatOutputSection.cpp | 249 ", isecVA = " + utohexstr(isecVA) + ", threshold = " + in estimateBranchTargetThresholdVA() 250 utohexstr(branchTargetThresholdVA) + ", isecEnd = " + utohexstr(isecEnd) + in estimateBranchTargetThresholdVA() 251 ", tail = " + utohexstr(isecEnd - isecVA) + in estimateBranchTargetThresholdVA() 252 ", slop = " + utohexstr(forwardBranchRange - (isecEnd - isecVA))); in estimateBranchTargetThresholdVA()
|
| H A D | InputSection.cpp | 118 Twine::utohexstr(off - sym->value) + ")") in getLocation() 130 Twine::utohexstr(off) + ")") in getLocation()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 142 "unable to read data at 0x" + Twine::utohexstr(Offset) + in getAsArrayRef() 143 " of size 0x" + Twine::utohexstr(Size) + " (" + SizePrintName + in getAsArrayRef() 145 Twine::utohexstr(ObjSize)); in getAsArrayRef() 156 Msg += ("invalid " + SizePrintName + " (0x" + Twine::utohexstr(Size) + ")") in getAsArrayRef() 160 (" or " + EntSizePrintName + " (0x" + Twine::utohexstr(EntSize) + ")") in getAsArrayRef() 360 return createError("offset (0x" + Twine::utohexstr(Offset) + in createDRI() 361 ") + size (0x" + Twine::utohexstr(Size) + in createDRI() 363 Twine::utohexstr(Obj.getBufSize()) + ")"); in createDRI() 1024 Desc = (Name + "+0x" + Twine::utohexstr(*Offset)).str(); in getSymbolSectionIndex() 1029 Twine::utohexstr(Ndx) + " (" + Desc + ")"); in getSymbolSectionIndex() [all …]
|
| H A D | ObjDumper.cpp | 64 reportUniqueWarning("offset (0x" + Twine::utohexstr(StringDataOffset) + in printAsStringList() 66 Twine::utohexstr(StrSize) + ")"); in printAsStringList()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObjcopy.cpp | 833 "address 0x" + Twine::utohexstr(Seg.PAddr) + in handleArgs() 835 Twine::utohexstr(Config.ChangeSectionLMAValAll) + in handleArgs() 842 "address 0x" + Twine::utohexstr(Seg.PAddr) + in handleArgs() 844 Twine::utohexstr(std::abs(Config.ChangeSectionLMAValAll)) + in handleArgs() 868 "address 0x" + Twine::utohexstr(Sec.Addr) + in handleArgs() 870 Twine::utohexstr(PatternUpdate.Update.Value) + in handleArgs() 878 "address 0x" + Twine::utohexstr(Sec.Addr) + in handleArgs() 880 Twine::utohexstr(PatternUpdate.Update.Value) + in handleArgs()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterDwarf.cpp | 273 Twine::utohexstr(Die.getOffset()) + ":0x" + in emitDwarfDIE() 274 Twine::utohexstr(Die.getSize()) + " " + in emitDwarfDIE()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.cpp | 187 DictScope NameScope(W, ("Name@0x" + Twine::utohexstr(NameOffset)).str()); in dumpName() 259 ListScope HashScope(W, ("Hash 0x" + Twine::utohexstr(Hash)).str()); in dump() 480 DictScope AbbrevScope(W, ("Abbreviation 0x" + Twine::utohexstr(Code)).str()); in dump() 719 W.getOStream() << "Entry @ 0x" + Twine::utohexstr(AbsoluteOffset); in dumpParentIdx() 838 DictScope EntryScope(W, ("Entry @ 0x" + Twine::utohexstr(EntryId)).str()); in dumpEntry() 920 DictScope UnitScope(W, ("Name Index @ 0x" + Twine::utohexstr(Base)).str()); in dump()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | SystemZ.cpp | 193 Str += llvm::utohexstr(Librel); in getTargetDefines()
|
| H A D | ARM.cpp | 799 Builder.defineMacro("__ARM_FEATURE_LDREX", "0x" + Twine::utohexstr(LDREX)); in getTargetDefines() 808 Builder.defineMacro("__ARM_FP", "0x" + Twine::utohexstr(HW_FP)); in getTargetDefines() 912 "0x" + Twine::utohexstr(FeatureCoprocBF)); in getTargetDefines() 964 "0x" + Twine::utohexstr(HW_FP & ~HW_FP_DP)); in getTargetDefines() 974 "0x" + Twine::utohexstr(getARMCDECoprocMask())); in getTargetDefines()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/XCOFF/ |
| H A D | XCOFFWriter.cpp | 114 Twine::utohexstr(FileSize) + " bytes"); in write()
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | OutputSections.cpp | 161 << isec << ": 0x" << utohexstr(isec->flags, true) in commitSection() 163 << utohexstr(flags, true); in commitSection() 933 << "wrote incorrect addend value 0x" << utohexstr(writtenAddend) in checkDynRelAddends() 934 << " instead of 0x" << utohexstr(addend) in checkDynRelAddends() 936 << utohexstr(rel.getOffset()) in checkDynRelAddends()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMachObjectWriter.cpp | 142 utohexstr(FixupOffset) + in recordARMScatteredHalfRelocation() 249 utohexstr(FixupOffset) + in recordARMScatteredRelocation()
|
| /freebsd/contrib/llvm-project/lld/MachO/Arch/ |
| H A D | ARM64Common.cpp | 137 llvm::utohexstr(va) + symbolHint + " is not " + Twine(align) + in reportUnalignedLdrStr()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 726 P.format(" code 0x{0} (+0x{1})", utohexstr(CodeOffset), utohexstr(Delta)); in visitKnownRecord() 730 P.format(" code end 0x{0} (+0x{1})", utohexstr(CodeOffset + Length), in visitKnownRecord() 731 utohexstr(Length)); in visitKnownRecord() 776 P.format(" setfile {0} 0x{1}", utohexstr(FileOffset)); in visitKnownRecord()
|
| H A D | MinimalTypeDumper.cpp | 246 H = "0x" + utohexstr(Hash); in visitTypeBegin() 248 H = "0x" + utohexstr(Hash) + ", our hash = 0x" + utohexstr(OurHash); in visitTypeBegin()
|
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | Chunks.cpp | 146 error("unsupported relocation type 0x" + Twine::utohexstr(type) + " in " + in applyRelX64() 166 error("unsupported relocation type 0x" + Twine::utohexstr(type) + " in " + in applyRelX86() 243 error("unsupported relocation type 0x" + Twine::utohexstr(type) + " in " + in applyRelARM() 363 error("unsupported relocation type 0x" + Twine::utohexstr(type) + " in " + in applyRelARM64() 759 utohexstr(magic)); in consumeDebugMagic()
|