Searched refs:AccelSection (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.cpp | 21 if (!AccelSection.isValidOffset(offsetof(Header, HeaderDataLength)+4)) in extract() 24 Hdr.Magic = AccelSection.getU32(&Offset); in extract() 25 Hdr.Version = AccelSection.getU16(&Offset); in extract() 26 Hdr.HashFunction = AccelSection.getU16(&Offset); in extract() 27 Hdr.NumBuckets = AccelSection.getU32(&Offset); in extract() 28 Hdr.NumHashes = AccelSection.getU32(&Offset); in extract() 29 Hdr.HeaderDataLength = AccelSection.getU32(&Offset); in extract() 33 if (!AccelSection.isValidOffset(sizeof(Hdr) + Hdr.HeaderDataLength + in extract() 37 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset); in extract() 38 uint32_t NumAtoms = AccelSection.getU32(&Offset); in extract() [all …]
|
D | DWARFContext.cpp | 69 DataExtractor AccelSection(Section.Data, LittleEndian, 0); in dumpAccelSection() local 72 DWARFAcceleratorTable Accel(AccelSection, StrData, Section.Relocs); in dumpAccelSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.cpp | 48 if (!AccelSection.isValidOffset(offsetof(Header, HeaderDataLength)+4)) in extract() 52 Hdr.Magic = AccelSection.getU32(&Offset); in extract() 53 Hdr.Version = AccelSection.getU16(&Offset); in extract() 54 Hdr.HashFunction = AccelSection.getU16(&Offset); in extract() 55 Hdr.BucketCount = AccelSection.getU32(&Offset); in extract() 56 Hdr.HashCount = AccelSection.getU32(&Offset); in extract() 57 Hdr.HeaderDataLength = AccelSection.getU32(&Offset); in extract() 63 if (!AccelSection.isValidOffset(sizeof(Hdr) + Hdr.HeaderDataLength + in extract() 69 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset); in extract() 70 uint32_t NumAtoms = AccelSection.getU32(&Offset); in extract() [all …]
|
D | DWARFVerifier.cpp | 682 unsigned DWARFVerifier::verifyAppleAccelTable(const DWARFSection *AccelSection, in verifyAppleAccelTable() argument 686 DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), *AccelSection, in verifyAppleAccelTable() 1286 unsigned DWARFVerifier::verifyDebugNames(const DWARFSection &AccelSection, in verifyDebugNames() argument 1289 DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), AccelSection, in verifyDebugNames()
|
D | DWARFContext.cpp | 772 DWARFDataExtractor AccelSection(Obj, Section, IsLittleEndian, 0); in getAccelTable() local 774 Cache.reset(new T(AccelSection, StrData)); in getAccelTable()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.h | 40 DataExtractor AccelSection; variable 44 DWARFAcceleratorTable(DataExtractor AccelSection, DataExtractor StringSection, in DWARFAcceleratorTable() argument 46 : AccelSection(AccelSection), StringSection(StringSection), Relocs(Relocs) {} in DWARFAcceleratorTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.h | 34 DWARFDataExtractor AccelSection; 70 DWARFAcceleratorTable(const DWARFDataExtractor &AccelSection, in DWARFAcceleratorTable() argument 72 : AccelSection(AccelSection), StringSection(StringSection) {} in DWARFAcceleratorTable() 174 AppleAcceleratorTable(const DWARFDataExtractor &AccelSection, in AppleAcceleratorTable() argument 176 : DWARFAcceleratorTable(AccelSection, StringSection) {} in AppleAcceleratorTable() 579 DWARFDebugNames(const DWARFDataExtractor &AccelSection, in DWARFDebugNames() argument 581 : DWARFAcceleratorTable(AccelSection, StringSection) {} in DWARFDebugNames()
|
D | DWARFVerifier.h | 233 unsigned verifyAppleAccelTable(const DWARFSection *AccelSection, 266 unsigned verifyDebugNames(const DWARFSection &AccelSection,
|