Home
last modified time | relevance | path

Searched refs:OffsetByteSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFListTable.cpp30 uint8_t OffsetByteSize = Format == dwarf::DWARF64 ? 8 : 4; in extract() local
68 HeaderData.OffsetEntryCount * OffsetByteSize) in extract()
74 *OffsetPtr += HeaderData.OffsetEntryCount * OffsetByteSize; in extract()
H A DDWARFVerifier.cpp2195 uint64_t OffsetByteSize = getDwarfOffsetByteSize(Format); in verifyDebugStrOffsets() local
2196 DA.setAddressSize(OffsetByteSize); in verifyDebugStrOffsets()
2197 uint64_t Remainder = (Length - 4) % OffsetByteSize; in verifyDebugStrOffsets()
2203 SectionName, StartOffset, Length, OffsetByteSize, Remainder); in verifyDebugStrOffsets()
2207 for (uint64_t Index = 0; C && C.tell() + OffsetByteSize <= NextUnit; ++Index) { in verifyDebugStrOffsets()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h128 uint8_t OffsetByteSize = Format == dwarf::DWARF64 ? 8 : 4; in getOffsetEntry() local
129 uint64_t Offset = OffsetTableOffset + OffsetByteSize * Index; in getOffsetEntry()
130 auto R = Data.getUnsigned(&Offset, OffsetByteSize); in getOffsetEntry()