Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp44 llvm::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(uint32_t &HashDataOffset) { in readAtoms()
[all …]
DDWARFContext.cpp785 const AppleAcceleratorTable &DWARFContext::getAppleNames() { in getAppleNames()
790 const AppleAcceleratorTable &DWARFContext::getAppleTypes() { in getAppleTypes()
795 const AppleAcceleratorTable &DWARFContext::getAppleNamespaces() { in getAppleNamespaces()
801 const AppleAcceleratorTable &DWARFContext::getAppleObjC() { in getAppleObjC()
DDWARFVerifier.cpp688 AppleAcceleratorTable AccelTable(AccelSectionData, *StrData); in verifyAppleAccelTable()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFContext.h73 std::unique_ptr<AppleAcceleratorTable> AppleNames;
74 std::unique_ptr<AppleAcceleratorTable> AppleTypes;
75 std::unique_ptr<AppleAcceleratorTable> AppleNamespaces;
76 std::unique_ptr<AppleAcceleratorTable> AppleObjC;
253 const AppleAcceleratorTable &getAppleNames();
256 const AppleAcceleratorTable &getAppleTypes();
259 const AppleAcceleratorTable &getAppleNamespaces();
262 const AppleAcceleratorTable &getAppleObjC();
DDWARFAcceleratorTable.h84 class AppleAcceleratorTable : public DWARFAcceleratorTable {
123 void extract(const AppleAcceleratorTable &AccelTable, uint32_t *Offset);
140 friend class AppleAcceleratorTable; variable
145 const AppleAcceleratorTable *AccelTable = nullptr;
155 ValueIterator(const AppleAcceleratorTable &AccelTable, unsigned DataOffset);
174 AppleAcceleratorTable(const DWARFDataExtractor &AccelSection, in AppleAcceleratorTable() function
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp312 static void getDies(DWARFContext &DICtx, const AppleAcceleratorTable &Accel, in getDies()