Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp44 Error AppleAcceleratorTable::extract() { in extract()
82 uint32_t AppleAcceleratorTable::getNumBuckets() { return Hdr.BucketCount; } in getNumBuckets()
83 uint32_t AppleAcceleratorTable::getNumHashes() { return Hdr.HashCount; } in getNumHashes()
84 uint32_t AppleAcceleratorTable::getSizeHdr() { return sizeof(Hdr); } in getSizeHdr()
85 uint32_t AppleAcceleratorTable::getHeaderDataLength() { in getHeaderDataLength()
89 ArrayRef<std::pair<AppleAcceleratorTable::HeaderData::AtomType,
90 AppleAcceleratorTable::HeaderData::Form>>
91 AppleAcceleratorTable::getAtomsDesc() { in getAtomsDesc()
95 bool AppleAcceleratorTable::validateForms() { in validateForms()
115 AppleAcceleratorTable::readAtoms(uint64_t *HashDataOffset) { in readAtoms()
[all …]
H A DDWARFContext.cpp907 const AppleAcceleratorTable &DWARFContext::getAppleNames() { in getAppleNames()
912 const AppleAcceleratorTable &DWARFContext::getAppleTypes() { in getAppleTypes()
917 const AppleAcceleratorTable &DWARFContext::getAppleNamespaces() { in getAppleNamespaces()
923 const AppleAcceleratorTable &DWARFContext::getAppleObjC() { in getAppleObjC()
H A DDWARFVerifier.cpp873 AppleAcceleratorTable AccelTable(AccelSectionData, *StrData); in verifyAppleAccelTable()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h67 std::unique_ptr<AppleAcceleratorTable> AppleNames;
68 std::unique_ptr<AppleAcceleratorTable> AppleTypes;
69 std::unique_ptr<AppleAcceleratorTable> AppleNamespaces;
70 std::unique_ptr<AppleAcceleratorTable> AppleObjC;
308 const AppleAcceleratorTable &getAppleNames();
311 const AppleAcceleratorTable &getAppleTypes();
314 const AppleAcceleratorTable &getAppleNamespaces();
317 const AppleAcceleratorTable &getAppleObjC();
H A DDWARFAcceleratorTable.h83 class AppleAcceleratorTable : public DWARFAcceleratorTable {
122 void extract(const AppleAcceleratorTable &AccelTable, uint64_t *Offset);
139 friend class AppleAcceleratorTable; variable
144 const AppleAcceleratorTable *AccelTable = nullptr;
161 ValueIterator(const AppleAcceleratorTable &AccelTable, uint64_t DataOffset);
180 AppleAcceleratorTable(const DWARFDataExtractor &AccelSection, in AppleAcceleratorTable() function
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp365 static void getDies(DWARFContext &DICtx, const AppleAcceleratorTable &Accel, in getDies()