| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugRnglists.cpp | 176 raw_ostream &OS, uint8_t AddrSize, uint8_t MaxEncodingStringLength, in dump() argument 181 uint8_t AddrSize, DIDumpOptions DumpOpts) { in dump() argument 185 .dump(OS, AddrSize, DumpOpts); in dump() 202 uint64_t Tombstone = dwarf::computeTombstoneAddress(AddrSize); in dump() 215 DWARFFormValue::dumpAddress(OS << ' ', AddrSize, Value0); in dump() 223 DWARFFormValue::dumpAddress(OS << ' ', AddrSize, Value0); in dump() 226 PrintRawEntry(OS, *this, AddrSize, DumpOpts); in dump() 227 DWARFAddressRange(Value0, Value0 + Value1).dump(OS, AddrSize, DumpOpts); in dump() 230 PrintRawEntry(OS, *this, AddrSize, DumpOpts); in dump() 233 .dump(OS, AddrSize, DumpOpts); in dump() [all …]
|
| H A D | DWARFDebugAddr.cpp | 23 AddrSize, errc::not_supported, "address table at offset 0x%" PRIx64, in extractAddresses() 26 if (DataSize % AddrSize != 0) { in extractAddresses() 32 Offset, DataSize, AddrSize); in extractAddresses() 35 size_t Count = DataSize / AddrSize; in extractAddresses() 38 Addrs.push_back(Data.getRelocatedValue(AddrSize, OffsetPtr)); in extractAddresses() 79 AddrSize = Data.getU8(OffsetPtr); in extractV5() 97 if (CUAddrSize && AddrSize != CUAddrSize) { in extractV5() 102 Offset, AddrSize, CUAddrSize)); in extractV5() 116 AddrSize = CUAddrSize; in extractPreStandard() 145 << format(", addr_size = 0x%2.2" PRIx8, AddrSize) in dump() [all …]
|
| H A D | DWARFDebugArangeSet.cpp | 74 HeaderData.AddrSize = data.getU8(offset_ptr, &Err); in extract() 92 HeaderData.AddrSize, errc::invalid_argument, in extract() 105 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() 134 assert(sizeof(arangeDescriptor.Address) >= HeaderData.AddrSize); in extract() 139 arangeDescriptor.Address = data.getUnsigned(offset_ptr, HeaderData.AddrSize); in extract() 140 arangeDescriptor.Length = data.getUnsigned(offset_ptr, HeaderData.AddrSize); in extract() 173 << format("addr_size = 0x%2.2x, ", HeaderData.AddrSize) in dump() 177 Desc.dump(OS, HeaderData.AddrSize); in dump()
|
| H A D | DWARFListTable.cpp | 48 HeaderData.AddrSize = Data.getU8(OffsetPtr); in extract() 59 HeaderData.AddrSize, errc::not_supported, in extract() 73 Data.setAddressSize(HeaderData.AddrSize); in extract() 89 HeaderData.Version, HeaderData.AddrSize, HeaderData.SegSize, in dump()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | DWARFEmitter.cpp | 140 uint8_t AddrSize; in emitDebugAranges() local 141 if (Range.AddrSize) in emitDebugAranges() 142 AddrSize = *Range.AddrSize; in emitDebugAranges() 144 AddrSize = DI.Is64BitAddrSize ? 8 : 4; in emitDebugAranges() 155 const uint64_t PaddedHeaderLength = alignTo(HeaderLength, AddrSize * 2); in emitDebugAranges() 161 Length += AddrSize * 2 * (Range.Descriptors.size() + 1); in emitDebugAranges() 167 writeInteger((uint8_t)AddrSize, OS, DI.IsLittleEndian); in emitDebugAranges() 172 if (Error Err = writeVariableSizedInteger(Descriptor.Address, AddrSize, in emitDebugAranges() 177 cantFail(writeVariableSizedInteger(Descriptor.Length, AddrSize, OS, in emitDebugAranges() 180 ZeroFillBytes(OS, AddrSize * 2); in emitDebugAranges() [all …]
|
| H A D | DWARFYAML.cpp | 174 IO.mapOptional("AddressSize", ARange.AddrSize); in mapping() 188 IO.mapOptional("AddrSize", DebugRanges.AddrSize); in mapping() 218 IO.mapOptional("AddrSize", Unit.AddrSize); in mapping() 308 IO.mapOptional("AddressSize", AddrTable.AddrSize); in mapping() 363 IO.mapOptional("AddressSize", ListTable.AddrSize); in mapping()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 887 int AddrSize = asmInfo->getCodePointerSize(); in EmitGenDwarfAranges() local 888 int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1)); in EmitGenDwarfAranges() 889 if (Pad == 2 * AddrSize) in EmitGenDwarfAranges() 895 Length += 2 * AddrSize * Sections.size(); in EmitGenDwarfAranges() 897 Length += 2 * AddrSize; in EmitGenDwarfAranges() 916 MCOS->emitInt8(AddrSize); in EmitGenDwarfAranges() 934 MCOS->emitValue(Addr, AddrSize); in EmitGenDwarfAranges() 935 emitAbsValue(*MCOS, Size, AddrSize); in EmitGenDwarfAranges() 939 MCOS->emitIntValue(0, AddrSize); in EmitGenDwarfAranges() 940 MCOS->emitIntValue(0, AddrSize); in EmitGenDwarfAranges() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugAddr.h | 37 uint8_t AddrSize; variable 85 uint8_t getAddressSize() const { return AddrSize; } in getAddressSize()
|
| H A D | DWARFDebugRnglists.h | 41 dump(raw_ostream &OS, uint8_t AddrSize, uint8_t MaxEncodingStringLength,
|
| H A D | DWARFDebugArangeSet.h | 39 uint8_t AddrSize; member
|
| H A D | DWARFListTable.h | 66 uint8_t AddrSize; member 94 uint8_t getAddrSize() const { return HeaderData.AddrSize; } in getAddrSize()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFLinkerCompileUnit.cpp | 534 OutLocationSection.emitIntVal(OutLocationSection.getFormParams().AddrSize, 1); in emitLocListHeader() 561 OutLocationSection.getFormParams().AddrSize); in emitLocListFragment() 564 OutLocationSection.getFormParams().AddrSize); in emitLocListFragment() 579 OutLocationSection.getFormParams().AddrSize); in emitLocListFragment() 581 OutLocationSection.getFormParams().AddrSize); in emitLocListFragment() 652 OutAddrSection.emitIntVal(getFormParams().AddrSize, 1); in emitDebugAddrSection() 659 OutAddrSection.emitIntVal(AddrValue, getFormParams().AddrSize); in emitDebugAddrSection() 779 OutRangeSection.emitIntVal(OutRangeSection.getFormParams().AddrSize, 1); in emitRangeListHeader() 800 OutRangeSection.getFormParams().AddrSize); in emitRangeListFragment() 802 OutRangeSection.getFormParams().AddrSize); in emitRangeListFragment() [all …]
|
| H A D | DWARFLinkerImpl.cpp | 42 Format.AddrSize = File.Dwarf->getCUAddrSize(); in LinkContext() 134 GlobalFormat.AddrSize = in link() 135 std::max(GlobalFormat.AddrSize, Context->getFormParams().AddrSize); in link() 157 if (GlobalFormat.AddrSize == 0) { in link() 160 GlobalFormat.AddrSize = (*TargetTriple).get().isArch32Bit() ? 4 : 8; in link() 162 GlobalFormat.AddrSize = 8; in link() 842 uint32_t AddrSize, uint64_t Address, in emitFDE() argument 845 Section.emitIntVal(FDEBytes.size() + 4 + AddrSize, 4); in emitFDE() 847 Section.emitIntVal(Address, AddrSize); in emitFDE()
|
| H A D | DWARFEmitterImpl.cpp | 145 Asm->emitInt8(Unit.getFormParams().AddrSize); in emitCompileUnitHeader() 152 Asm->emitInt8(Unit.getFormParams().AddrSize); in emitCompileUnitHeader()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AddressPool.cpp | 27 static const uint8_t AddrSize = Asm.MAI->getCodePointerSize(); in emitHeader() local 34 Asm.emitInt8(AddrSize); in emitHeader()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
| H A D | DWARFLinkerUnit.h | |
| H A D | DWARFLinkerCompileUnit.h | |
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | DWARFYAML.h | 60 std::optional<yaml::Hex8> AddrSize; member 75 std::optional<llvm::yaml::Hex8> AddrSize; member 115 std::optional<uint8_t> AddrSize; member 191 std::optional<yaml::Hex8> AddrSize; member 230 std::optional<yaml::Hex8> AddrSize; member
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFStreamer.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.cpp | 713 unsigned AddrSize = Unit.getOrigUnit().getAddressByteSize(); in emitDwarfDebugAddrsHeader() local 725 Asm->emitInt8(AddrSize); in emitDwarfDebugAddrsHeader() 737 uint8_t AddrSize) { in emitDwarfDebugAddrs() argument 740 Asm->OutStreamer->emitIntValue(Addr, AddrSize); in emitDwarfDebugAddrs() 741 AddrSectionSize += AddrSize; in emitDwarfDebugAddrs() 1270 void DwarfStreamer::emitFDE(uint32_t CIEOffset, uint32_t AddrSize, in emitFDE() argument 1274 MS->emitIntValue(FDEBytes.size() + 4 + AddrSize, 4); in emitFDE() 1276 MS->emitIntValue(Address, AddrSize); in emitFDE() 1278 FrameSectionSize += FDEBytes.size() + 8 + AddrSize; in emitFDE()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | X86DisassemblerTables.h | 261 bool ignoresVEX_W, unsigned AddrSize);
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | DwarfTransformer.cpp | 33 uint8_t AddrSize = 0; member 43 AddrSize = CU->getAddressByteSize(); in CUInfo() 51 if (AddrSize == 4) in isHighestAddress() 53 else if (AddrSize == 8) in isHighestAddress()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DWP/ |
| H A D | DWP.h | 46 uint8_t AddrSize = 0; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
| H A D | AMDGPUDisassembler.cpp | 1207 unsigned AddrSize = Info->VAddrDwords; in convertMIMGInst() local 1218 AddrSize = in convertMIMGInst() 1227 if (!IsVSample && AddrSize > 12) in convertMIMGInst() 1228 AddrSize = 16; in convertMIMGInst() 1230 if (AddrSize > Info->VAddrDwords) { in convertMIMGInst() 1252 if (DstSize == Info->VDataDwords && AddrSize == Info->VAddrDwords) in convertMIMGInst() 1256 AMDGPU::getMIMGOpcode(Info->BaseOpcode, Info->MIMGEncoding, DstSize, AddrSize); in convertMIMGInst() 1284 AddrSize != Info->VAddrDwords) { in convertMIMGInst() 1310 assert(AddrSize <= Info->VAddrDwords); in convertMIMGInst() 1311 MI.erase(MI.begin() + VAddr0Idx + AddrSize, in convertMIMGInst()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Dwarf.h | 1095 uint8_t AddrSize; member 1106 return AddrSize; in getRefAddrByteSize() 1115 explicit operator bool() const { return Version && AddrSize; }
|