Searched refs:AccelSection (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.cpp | 47 if (!AccelSection.isValidOffset(offsetof(Header, HeaderDataLength) + 4)) in extract() 51 Hdr.Magic = AccelSection.getU32(&Offset); in extract() 52 Hdr.Version = AccelSection.getU16(&Offset); in extract() 53 Hdr.HashFunction = AccelSection.getU16(&Offset); in extract() 54 Hdr.BucketCount = AccelSection.getU32(&Offset); in extract() 55 Hdr.HashCount = AccelSection.getU32(&Offset); in extract() 56 Hdr.HeaderDataLength = AccelSection.getU32(&Offset); in extract() 61 if (!AccelSection.isValidOffset(getIthBucketBase(Hdr.BucketCount - 1))) in extract() 66 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset); in extract() 67 uint32_t NumAtoms = AccelSection.getU32(&Offset); in extract() [all …]
|
| H A D | DWARFVerifier.cpp | 1103 unsigned DWARFVerifier::verifyAppleAccelTable(const DWARFSection *AccelSection, in verifyAppleAccelTable() argument 1107 DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), *AccelSection, in verifyAppleAccelTable() 1816 unsigned DWARFVerifier::verifyDebugNames(const DWARFSection &AccelSection, in verifyDebugNames() argument 1819 DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), AccelSection, in verifyDebugNames()
|
| H A D | DWARFContext.cpp | 198 DWARFDataExtractor AccelSection(Obj, Section, IsLittleEndian, 0); in getAccelTable() local 200 Cache = std::make_unique<T>(AccelSection, StrData); in getAccelTable()
|
| /src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.h | 34 DWARFDataExtractor AccelSection; 86 DWARFAcceleratorTable(const DWARFDataExtractor &AccelSection, in DWARFAcceleratorTable() argument 88 : AccelSection(AccelSection), StringSection(StringSection) {} in DWARFAcceleratorTable() 317 AppleAcceleratorTable(const DWARFDataExtractor &AccelSection, in AppleAcceleratorTable() argument 319 : DWARFAcceleratorTable(AccelSection, StringSection) {} in AppleAcceleratorTable() 809 DWARFDebugNames(const DWARFDataExtractor &AccelSection, in DWARFDebugNames() argument 811 : DWARFAcceleratorTable(AccelSection, StringSection) {} in DWARFDebugNames()
|
| H A D | DWARFVerifier.h | 263 unsigned verifyAppleAccelTable(const DWARFSection *AccelSection, 296 unsigned verifyDebugNames(const DWARFSection &AccelSection,
|