Home
last modified time | relevance | path

Searched refs:AppleAcceleratorTable (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp43 Error AppleAcceleratorTable::extract() { in extract()
81 uint32_t AppleAcceleratorTable::getNumBuckets() { return Hdr.BucketCount; } in getNumBuckets()
82 uint32_t AppleAcceleratorTable::getNumHashes() { return Hdr.HashCount; } in getNumHashes()
83 uint32_t AppleAcceleratorTable::getSizeHdr() { return sizeof(Hdr); } in getSizeHdr()
84 uint32_t AppleAcceleratorTable::getHeaderDataLength() { in getHeaderDataLength()
88 ArrayRef<std::pair<AppleAcceleratorTable::HeaderData::AtomType,
89 AppleAcceleratorTable::HeaderData::Form>>
90 AppleAcceleratorTable::getAtomsDesc() { in getAtomsDesc()
94 bool AppleAcceleratorTable::validateForms() { in validateForms()
114 AppleAcceleratorTable::readAtoms(uint64_t *HashDataOffset) { in readAtoms()
[all …]
H A DDWARFContext.cpp1014 const AppleAcceleratorTable &DWARFContext::getAppleNames() { in getAppleNames()
1019 const AppleAcceleratorTable &DWARFContext::getAppleTypes() { in getAppleTypes()
1024 const AppleAcceleratorTable &DWARFContext::getAppleNamespaces() { in getAppleNamespaces()
1030 const AppleAcceleratorTable &DWARFContext::getAppleObjC() { in getAppleObjC()
H A DDWARFVerifier.cpp974 AppleAcceleratorTable AccelTable(AccelSectionData, *StrData); in verifyAppleAccelTable()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h31 class AppleAcceleratorTable; variable
61 std::unique_ptr<AppleAcceleratorTable> AppleNames;
62 std::unique_ptr<AppleAcceleratorTable> AppleTypes;
63 std::unique_ptr<AppleAcceleratorTable> AppleNamespaces;
64 std::unique_ptr<AppleAcceleratorTable> AppleObjC;
315 const AppleAcceleratorTable &getAppleNames();
318 const AppleAcceleratorTable &getAppleTypes();
321 const AppleAcceleratorTable &getAppleNamespaces();
324 const AppleAcceleratorTable &getAppleObjC();
H A DDWARFAcceleratorTable.h83 class AppleAcceleratorTable : public DWARFAcceleratorTable {
123 void extract(const AppleAcceleratorTable &AccelTable, uint64_t *Offset);
140 friend class AppleAcceleratorTable; variable
145 const AppleAcceleratorTable *AccelTable = nullptr;
162 ValueIterator(const AppleAcceleratorTable &AccelTable, uint64_t DataOffset);
181 AppleAcceleratorTable(const DWARFDataExtractor &AccelSection, in AppleAcceleratorTable() function
/openbsd-src/gnu/llvm/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp397 static void getDies(DWARFContext &DICtx, const AppleAcceleratorTable &Accel, in getDies()