blob: 0ded97cabf255942abcfc4a3f118b4d3c33a4c51 [file] [log] [blame]
Eugene Zelenkoe94042c2017-02-27 23:43:14 +00001//===- DWARFAcceleratorTable.cpp ------------------------------------------===//
Frederic Riss7c41c642014-11-20 16:21:06 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Zachary Turner82af9432015-01-30 18:07:45 +000010#include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000011
Chandler Carruth6bda14b2017-06-06 11:49:48 +000012#include "llvm/ADT/SmallVector.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000013#include "llvm/BinaryFormat/Dwarf.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000014#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000015#include "llvm/Support/Compiler.h"
Jonas Devlieghere92ac9d32018-01-28 11:05:10 +000016#include "llvm/Support/DJB.h"
Frederic Risse837ec22014-11-14 16:15:53 +000017#include "llvm/Support/Format.h"
Pavel Labath9025f952018-03-21 11:46:37 +000018#include "llvm/Support/FormatVariadic.h"
Pavel Labath3c9a9182018-01-29 11:08:32 +000019#include "llvm/Support/ScopedPrinter.h"
Frederic Risse837ec22014-11-14 16:15:53 +000020#include "llvm/Support/raw_ostream.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000021#include <cstddef>
22#include <cstdint>
23#include <utility>
Frederic Risse837ec22014-11-14 16:15:53 +000024
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000025using namespace llvm;
Frederic Risse837ec22014-11-14 16:15:53 +000026
Pavel Labath3c9a9182018-01-29 11:08:32 +000027namespace {
Pavel Labath9025f952018-03-21 11:46:37 +000028struct Atom {
Pavel Labath3c9a9182018-01-29 11:08:32 +000029 unsigned Value;
30};
31
Pavel Labath9025f952018-03-21 11:46:37 +000032static raw_ostream &operator<<(raw_ostream &OS, const Atom &A) {
33 StringRef Str = dwarf::AtomTypeString(A.Value);
Pavel Labath3c9a9182018-01-29 11:08:32 +000034 if (!Str.empty())
35 return OS << Str;
Pavel Labath9025f952018-03-21 11:46:37 +000036 return OS << "DW_ATOM_unknown_" << format("%x", A.Value);
Pavel Labath3c9a9182018-01-29 11:08:32 +000037}
38} // namespace
39
Pavel Labath9025f952018-03-21 11:46:37 +000040static Atom formatAtom(unsigned Atom) { return {Atom}; }
Pavel Labath3c9a9182018-01-29 11:08:32 +000041
42DWARFAcceleratorTable::~DWARFAcceleratorTable() = default;
43
Pavel Labath9b36fd22018-01-22 13:17:23 +000044llvm::Error AppleAcceleratorTable::extract() {
Frederic Risse837ec22014-11-14 16:15:53 +000045 uint32_t Offset = 0;
46
47 // Check that we can at least read the header.
48 if (!AccelSection.isValidOffset(offsetof(Header, HeaderDataLength)+4))
Jonas Devlieghereba915892017-12-11 18:22:47 +000049 return make_error<StringError>("Section too small: cannot read header.",
50 inconvertibleErrorCode());
Frederic Risse837ec22014-11-14 16:15:53 +000051
52 Hdr.Magic = AccelSection.getU32(&Offset);
53 Hdr.Version = AccelSection.getU16(&Offset);
54 Hdr.HashFunction = AccelSection.getU16(&Offset);
Pavel Labath394e8052018-01-29 11:33:17 +000055 Hdr.BucketCount = AccelSection.getU32(&Offset);
56 Hdr.HashCount = AccelSection.getU32(&Offset);
Frederic Risse837ec22014-11-14 16:15:53 +000057 Hdr.HeaderDataLength = AccelSection.getU32(&Offset);
58
59 // Check that we can read all the hashes and offsets from the
60 // section (see SourceLevelDebugging.rst for the structure of the index).
Jonas Devlieghereba915892017-12-11 18:22:47 +000061 // We need to substract one because we're checking for an *offset* which is
62 // equal to the size for an empty table and hence pointer after the section.
Frederic Risse837ec22014-11-14 16:15:53 +000063 if (!AccelSection.isValidOffset(sizeof(Hdr) + Hdr.HeaderDataLength +
Pavel Labath394e8052018-01-29 11:33:17 +000064 Hdr.BucketCount * 4 + Hdr.HashCount * 8 - 1))
Jonas Devlieghereba915892017-12-11 18:22:47 +000065 return make_error<StringError>(
66 "Section too small: cannot read buckets and hashes.",
67 inconvertibleErrorCode());
Frederic Risse837ec22014-11-14 16:15:53 +000068
69 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset);
70 uint32_t NumAtoms = AccelSection.getU32(&Offset);
71
72 for (unsigned i = 0; i < NumAtoms; ++i) {
73 uint16_t AtomType = AccelSection.getU16(&Offset);
Greg Clayton6c273762016-10-27 16:32:04 +000074 auto AtomForm = static_cast<dwarf::Form>(AccelSection.getU16(&Offset));
Frederic Risse837ec22014-11-14 16:15:53 +000075 HdrData.Atoms.push_back(std::make_pair(AtomType, AtomForm));
76 }
77
Adrian Prantl99fdb9d2017-09-28 18:10:52 +000078 IsValid = true;
Jonas Devlieghereba915892017-12-11 18:22:47 +000079 return Error::success();
Frederic Risse837ec22014-11-14 16:15:53 +000080}
81
Pavel Labath394e8052018-01-29 11:33:17 +000082uint32_t AppleAcceleratorTable::getNumBuckets() { return Hdr.BucketCount; }
83uint32_t AppleAcceleratorTable::getNumHashes() { return Hdr.HashCount; }
Pavel Labath9b36fd22018-01-22 13:17:23 +000084uint32_t AppleAcceleratorTable::getSizeHdr() { return sizeof(Hdr); }
85uint32_t AppleAcceleratorTable::getHeaderDataLength() {
Spyridoula Gravanie41823b2017-06-14 00:17:55 +000086 return Hdr.HeaderDataLength;
87}
88
Pavel Labath9b36fd22018-01-22 13:17:23 +000089ArrayRef<std::pair<AppleAcceleratorTable::HeaderData::AtomType,
90 AppleAcceleratorTable::HeaderData::Form>>
91AppleAcceleratorTable::getAtomsDesc() {
Spyridoula Gravani837c1102017-06-29 20:13:05 +000092 return HdrData.Atoms;
93}
94
Pavel Labath9b36fd22018-01-22 13:17:23 +000095bool AppleAcceleratorTable::validateForms() {
Spyridoula Gravani837c1102017-06-29 20:13:05 +000096 for (auto Atom : getAtomsDesc()) {
97 DWARFFormValue FormValue(Atom.second);
98 switch (Atom.first) {
99 case dwarf::DW_ATOM_die_offset:
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000100 case dwarf::DW_ATOM_die_tag:
101 case dwarf::DW_ATOM_type_flags:
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000102 if ((!FormValue.isFormClass(DWARFFormValue::FC_Constant) &&
103 !FormValue.isFormClass(DWARFFormValue::FC_Flag)) ||
104 FormValue.getForm() == dwarf::DW_FORM_sdata)
105 return false;
Adrian Prantl0e6694d2017-12-19 22:05:25 +0000106 break;
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000107 default:
108 break;
109 }
110 }
111 return true;
112}
113
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000114std::pair<uint32_t, dwarf::Tag>
Pavel Labath9b36fd22018-01-22 13:17:23 +0000115AppleAcceleratorTable::readAtoms(uint32_t &HashDataOffset) {
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000116 uint32_t DieOffset = dwarf::DW_INVALID_OFFSET;
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000117 dwarf::Tag DieTag = dwarf::DW_TAG_null;
Pavel Labath322711f2018-03-14 09:39:54 +0000118 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32};
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000119
120 for (auto Atom : getAtomsDesc()) {
121 DWARFFormValue FormValue(Atom.second);
Paul Robinsone5400f82017-11-07 19:57:12 +0000122 FormValue.extractValue(AccelSection, &HashDataOffset, FormParams);
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000123 switch (Atom.first) {
124 case dwarf::DW_ATOM_die_offset:
125 DieOffset = *FormValue.getAsUnsignedConstant();
126 break;
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000127 case dwarf::DW_ATOM_die_tag:
128 DieTag = (dwarf::Tag)*FormValue.getAsUnsignedConstant();
129 break;
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000130 default:
131 break;
132 }
133 }
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000134 return {DieOffset, DieTag};
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000135}
136
Pavel Labath394e8052018-01-29 11:33:17 +0000137void AppleAcceleratorTable::Header::dump(ScopedPrinter &W) const {
138 DictScope HeaderScope(W, "Header");
139 W.printHex("Magic", Magic);
140 W.printHex("Version", Version);
141 W.printHex("Hash function", HashFunction);
142 W.printNumber("Bucket count", BucketCount);
143 W.printNumber("Hashes count", HashCount);
144 W.printNumber("HeaderData length", HeaderDataLength);
145}
146
Pavel Labath47c34722018-03-09 11:58:59 +0000147Optional<uint64_t> AppleAcceleratorTable::HeaderData::extractOffset(
148 Optional<DWARFFormValue> Value) const {
149 if (!Value)
150 return None;
151
152 switch (Value->getForm()) {
153 case dwarf::DW_FORM_ref1:
154 case dwarf::DW_FORM_ref2:
155 case dwarf::DW_FORM_ref4:
156 case dwarf::DW_FORM_ref8:
157 case dwarf::DW_FORM_ref_udata:
158 return Value->getRawUValue() + DIEOffsetBase;
159 default:
160 return Value->getAsSectionOffset();
161 }
162}
163
Pavel Labath394e8052018-01-29 11:33:17 +0000164bool AppleAcceleratorTable::dumpName(ScopedPrinter &W,
165 SmallVectorImpl<DWARFFormValue> &AtomForms,
166 uint32_t *DataOffset) const {
Pavel Labath322711f2018-03-14 09:39:54 +0000167 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32};
Pavel Labath394e8052018-01-29 11:33:17 +0000168 uint32_t NameOffset = *DataOffset;
169 if (!AccelSection.isValidOffsetForDataOfSize(*DataOffset, 4)) {
170 W.printString("Incorrectly terminated list.");
171 return false;
172 }
173 unsigned StringOffset = AccelSection.getRelocatedValue(4, DataOffset);
174 if (!StringOffset)
175 return false; // End of list
176
177 DictScope NameScope(W, ("Name@0x" + Twine::utohexstr(NameOffset)).str());
178 W.startLine() << format("String: 0x%08x", StringOffset);
179 W.getOStream() << " \"" << StringSection.getCStr(&StringOffset) << "\"\n";
180
181 unsigned NumData = AccelSection.getU32(DataOffset);
182 for (unsigned Data = 0; Data < NumData; ++Data) {
183 ListScope DataScope(W, ("Data " + Twine(Data)).str());
184 unsigned i = 0;
185 for (auto &Atom : AtomForms) {
186 W.startLine() << format("Atom[%d]: ", i++);
187 if (Atom.extractValue(AccelSection, DataOffset, FormParams))
188 Atom.dump(W.getOStream());
189 else
190 W.getOStream() << "Error extracting the value";
191 W.getOStream() << "\n";
192 }
193 }
194 return true; // more entries follow
195}
196
Pavel Labath9b36fd22018-01-22 13:17:23 +0000197LLVM_DUMP_METHOD void AppleAcceleratorTable::dump(raw_ostream &OS) const {
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000198 if (!IsValid)
199 return;
200
Pavel Labath394e8052018-01-29 11:33:17 +0000201 ScopedPrinter W(OS);
Frederic Risse837ec22014-11-14 16:15:53 +0000202
Pavel Labath394e8052018-01-29 11:33:17 +0000203 Hdr.dump(W);
204
205 W.printNumber("DIE offset base", HdrData.DIEOffsetBase);
Pavel Labath34609572018-01-29 11:53:46 +0000206 W.printNumber("Number of atoms", uint64_t(HdrData.Atoms.size()));
Frederic Riss77a07432014-11-20 16:21:11 +0000207 SmallVector<DWARFFormValue, 3> AtomForms;
Pavel Labath394e8052018-01-29 11:33:17 +0000208 {
209 ListScope AtomsScope(W, "Atoms");
210 unsigned i = 0;
211 for (const auto &Atom : HdrData.Atoms) {
212 DictScope AtomScope(W, ("Atom " + Twine(i++)).str());
213 W.startLine() << "Type: " << formatAtom(Atom.first) << '\n';
Pavel Labath9025f952018-03-21 11:46:37 +0000214 W.startLine() << "Form: " << formatv("{0}", Atom.second) << '\n';
Pavel Labath394e8052018-01-29 11:33:17 +0000215 AtomForms.push_back(DWARFFormValue(Atom.second));
216 }
Frederic Risse837ec22014-11-14 16:15:53 +0000217 }
218
219 // Now go through the actual tables and dump them.
220 uint32_t Offset = sizeof(Hdr) + Hdr.HeaderDataLength;
Pavel Labath394e8052018-01-29 11:33:17 +0000221 unsigned HashesBase = Offset + Hdr.BucketCount * 4;
222 unsigned OffsetsBase = HashesBase + Hdr.HashCount * 4;
Frederic Risse837ec22014-11-14 16:15:53 +0000223
Pavel Labath394e8052018-01-29 11:33:17 +0000224 for (unsigned Bucket = 0; Bucket < Hdr.BucketCount; ++Bucket) {
Frederic Risse837ec22014-11-14 16:15:53 +0000225 unsigned Index = AccelSection.getU32(&Offset);
226
Pavel Labath394e8052018-01-29 11:33:17 +0000227 ListScope BucketScope(W, ("Bucket " + Twine(Bucket)).str());
Frederic Risse837ec22014-11-14 16:15:53 +0000228 if (Index == UINT32_MAX) {
Pavel Labath394e8052018-01-29 11:33:17 +0000229 W.printString("EMPTY");
Frederic Risse837ec22014-11-14 16:15:53 +0000230 continue;
231 }
232
Pavel Labath394e8052018-01-29 11:33:17 +0000233 for (unsigned HashIdx = Index; HashIdx < Hdr.HashCount; ++HashIdx) {
Frederic Risse837ec22014-11-14 16:15:53 +0000234 unsigned HashOffset = HashesBase + HashIdx*4;
235 unsigned OffsetsOffset = OffsetsBase + HashIdx*4;
236 uint32_t Hash = AccelSection.getU32(&HashOffset);
237
Pavel Labath394e8052018-01-29 11:33:17 +0000238 if (Hash % Hdr.BucketCount != Bucket)
Frederic Risse837ec22014-11-14 16:15:53 +0000239 break;
240
241 unsigned DataOffset = AccelSection.getU32(&OffsetsOffset);
Pavel Labath394e8052018-01-29 11:33:17 +0000242 ListScope HashScope(W, ("Hash 0x" + Twine::utohexstr(Hash)).str());
Frederic Risse837ec22014-11-14 16:15:53 +0000243 if (!AccelSection.isValidOffset(DataOffset)) {
Pavel Labath394e8052018-01-29 11:33:17 +0000244 W.printString("Invalid section offset");
Frederic Risse837ec22014-11-14 16:15:53 +0000245 continue;
246 }
Pavel Labath394e8052018-01-29 11:33:17 +0000247 while (dumpName(W, AtomForms, &DataOffset))
248 /*empty*/;
Frederic Risse837ec22014-11-14 16:15:53 +0000249 }
250 }
251}
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000252
Pavel Labathd99072b2018-02-24 00:35:21 +0000253AppleAcceleratorTable::Entry::Entry(
254 const AppleAcceleratorTable::HeaderData &HdrData)
255 : HdrData(&HdrData) {
256 Values.reserve(HdrData.Atoms.size());
257 for (const auto &Atom : HdrData.Atoms)
258 Values.push_back(DWARFFormValue(Atom.second));
259}
260
261void AppleAcceleratorTable::Entry::extract(
262 const AppleAcceleratorTable &AccelTable, uint32_t *Offset) {
263
Pavel Labath322711f2018-03-14 09:39:54 +0000264 dwarf::FormParams FormParams = {AccelTable.Hdr.Version, 0,
265 dwarf::DwarfFormat::DWARF32};
Pavel Labathd99072b2018-02-24 00:35:21 +0000266 for (auto &Atom : Values)
267 Atom.extractValue(AccelTable.AccelSection, Offset, FormParams);
268}
269
270Optional<DWARFFormValue>
271AppleAcceleratorTable::Entry::lookup(HeaderData::AtomType Atom) const {
272 assert(HdrData && "Dereferencing end iterator?");
273 assert(HdrData->Atoms.size() == Values.size());
274 for (const auto &Tuple : zip_first(HdrData->Atoms, Values)) {
275 if (std::get<0>(Tuple).first == Atom)
276 return std::get<1>(Tuple);
277 }
278 return None;
279}
280
Pavel Labath47c34722018-03-09 11:58:59 +0000281Optional<uint64_t> AppleAcceleratorTable::Entry::getDIESectionOffset() const {
282 return HdrData->extractOffset(lookup(dwarf::DW_ATOM_die_offset));
Pavel Labathd99072b2018-02-24 00:35:21 +0000283}
284
285Optional<uint64_t> AppleAcceleratorTable::Entry::getCUOffset() const {
Pavel Labath47c34722018-03-09 11:58:59 +0000286 return HdrData->extractOffset(lookup(dwarf::DW_ATOM_cu_offset));
Pavel Labathd99072b2018-02-24 00:35:21 +0000287}
288
289Optional<dwarf::Tag> AppleAcceleratorTable::Entry::getTag() const {
290 Optional<DWARFFormValue> Tag = lookup(dwarf::DW_ATOM_die_tag);
291 if (!Tag)
292 return None;
293 if (Optional<uint64_t> Value = Tag->getAsUnsignedConstant())
294 return dwarf::Tag(*Value);
295 return None;
296}
297
Pavel Labath9b36fd22018-01-22 13:17:23 +0000298AppleAcceleratorTable::ValueIterator::ValueIterator(
299 const AppleAcceleratorTable &AccelTable, unsigned Offset)
Pavel Labathd99072b2018-02-24 00:35:21 +0000300 : AccelTable(&AccelTable), Current(AccelTable.HdrData), DataOffset(Offset) {
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000301 if (!AccelTable.AccelSection.isValidOffsetForDataOfSize(DataOffset, 4))
302 return;
303
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000304 // Read the first entry.
305 NumData = AccelTable.AccelSection.getU32(&DataOffset);
306 Next();
307}
308
Pavel Labath9b36fd22018-01-22 13:17:23 +0000309void AppleAcceleratorTable::ValueIterator::Next() {
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000310 assert(NumData > 0 && "attempted to increment iterator past the end");
311 auto &AccelSection = AccelTable->AccelSection;
312 if (Data >= NumData ||
313 !AccelSection.isValidOffsetForDataOfSize(DataOffset, 4)) {
314 NumData = 0;
Pavel Labath59870af2018-05-31 08:47:00 +0000315 DataOffset = 0;
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000316 return;
317 }
Pavel Labathd99072b2018-02-24 00:35:21 +0000318 Current.extract(*AccelTable, &DataOffset);
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000319 ++Data;
320}
321
Pavel Labath9b36fd22018-01-22 13:17:23 +0000322iterator_range<AppleAcceleratorTable::ValueIterator>
323AppleAcceleratorTable::equal_range(StringRef Key) const {
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000324 if (!IsValid)
325 return make_range(ValueIterator(), ValueIterator());
326
327 // Find the bucket.
Jonas Devlieghere92ac9d32018-01-28 11:05:10 +0000328 unsigned HashValue = djbHash(Key);
Pavel Labath394e8052018-01-29 11:33:17 +0000329 unsigned Bucket = HashValue % Hdr.BucketCount;
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000330 unsigned BucketBase = sizeof(Hdr) + Hdr.HeaderDataLength;
Pavel Labath394e8052018-01-29 11:33:17 +0000331 unsigned HashesBase = BucketBase + Hdr.BucketCount * 4;
332 unsigned OffsetsBase = HashesBase + Hdr.HashCount * 4;
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000333
334 unsigned BucketOffset = BucketBase + Bucket * 4;
335 unsigned Index = AccelSection.getU32(&BucketOffset);
336
337 // Search through all hashes in the bucket.
Pavel Labath394e8052018-01-29 11:33:17 +0000338 for (unsigned HashIdx = Index; HashIdx < Hdr.HashCount; ++HashIdx) {
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000339 unsigned HashOffset = HashesBase + HashIdx * 4;
340 unsigned OffsetsOffset = OffsetsBase + HashIdx * 4;
341 uint32_t Hash = AccelSection.getU32(&HashOffset);
342
Pavel Labath394e8052018-01-29 11:33:17 +0000343 if (Hash % Hdr.BucketCount != Bucket)
Adrian Prantl99fdb9d2017-09-28 18:10:52 +0000344 // We are already in the next bucket.
345 break;
346
347 unsigned DataOffset = AccelSection.getU32(&OffsetsOffset);
348 unsigned StringOffset = AccelSection.getRelocatedValue(4, &DataOffset);
349 if (!StringOffset)
350 break;
351
352 // Finally, compare the key.
353 if (Key == StringSection.getCStr(&StringOffset))
354 return make_range({*this, DataOffset}, ValueIterator());
355 }
356 return make_range(ValueIterator(), ValueIterator());
357}
Pavel Labath3c9a9182018-01-29 11:08:32 +0000358
359void DWARFDebugNames::Header::dump(ScopedPrinter &W) const {
360 DictScope HeaderScope(W, "Header");
361 W.printHex("Length", UnitLength);
362 W.printNumber("Version", Version);
363 W.printHex("Padding", Padding);
364 W.printNumber("CU count", CompUnitCount);
365 W.printNumber("Local TU count", LocalTypeUnitCount);
366 W.printNumber("Foreign TU count", ForeignTypeUnitCount);
367 W.printNumber("Bucket count", BucketCount);
368 W.printNumber("Name count", NameCount);
369 W.printHex("Abbreviations table size", AbbrevTableSize);
370 W.startLine() << "Augmentation: '" << AugmentationString << "'\n";
371}
372
373llvm::Error DWARFDebugNames::Header::extract(const DWARFDataExtractor &AS,
374 uint32_t *Offset) {
375 // Check that we can read the fixed-size part.
Pavel Labathe7264102018-01-29 13:53:48 +0000376 if (!AS.isValidOffset(*Offset + sizeof(HeaderPOD) - 1))
Pavel Labath3c9a9182018-01-29 11:08:32 +0000377 return make_error<StringError>("Section too small: cannot read header.",
378 inconvertibleErrorCode());
379
380 UnitLength = AS.getU32(Offset);
381 Version = AS.getU16(Offset);
382 Padding = AS.getU16(Offset);
383 CompUnitCount = AS.getU32(Offset);
384 LocalTypeUnitCount = AS.getU32(Offset);
385 ForeignTypeUnitCount = AS.getU32(Offset);
386 BucketCount = AS.getU32(Offset);
387 NameCount = AS.getU32(Offset);
388 AbbrevTableSize = AS.getU32(Offset);
Pavel Labathea0f8412018-03-29 15:12:45 +0000389 AugmentationStringSize = alignTo(AS.getU32(Offset), 4);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000390
391 if (!AS.isValidOffsetForDataOfSize(*Offset, AugmentationStringSize))
392 return make_error<StringError>(
393 "Section too small: cannot read header augmentation.",
394 inconvertibleErrorCode());
395 AugmentationString.resize(AugmentationStringSize);
396 AS.getU8(Offset, reinterpret_cast<uint8_t *>(AugmentationString.data()),
397 AugmentationStringSize);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000398 return Error::success();
399}
400
401void DWARFDebugNames::Abbrev::dump(ScopedPrinter &W) const {
402 DictScope AbbrevScope(W, ("Abbreviation 0x" + Twine::utohexstr(Code)).str());
Pavel Labath9025f952018-03-21 11:46:37 +0000403 W.startLine() << formatv("Tag: {0}\n", Tag);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000404
Pavel Labath9025f952018-03-21 11:46:37 +0000405 for (const auto &Attr : Attributes)
406 W.startLine() << formatv("{0}: {1}\n", Attr.Index, Attr.Form);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000407}
408
409static constexpr DWARFDebugNames::AttributeEncoding sentinelAttrEnc() {
410 return {dwarf::Index(0), dwarf::Form(0)};
411}
412
413static bool isSentinel(const DWARFDebugNames::AttributeEncoding &AE) {
414 return AE == sentinelAttrEnc();
415}
416
417static DWARFDebugNames::Abbrev sentinelAbbrev() {
418 return DWARFDebugNames::Abbrev(0, dwarf::Tag(0), {});
419}
420
421static bool isSentinel(const DWARFDebugNames::Abbrev &Abbr) {
422 return Abbr.Code == 0;
423}
424
425DWARFDebugNames::Abbrev DWARFDebugNames::AbbrevMapInfo::getEmptyKey() {
426 return sentinelAbbrev();
427}
428
429DWARFDebugNames::Abbrev DWARFDebugNames::AbbrevMapInfo::getTombstoneKey() {
430 return DWARFDebugNames::Abbrev(~0, dwarf::Tag(0), {});
431}
432
433Expected<DWARFDebugNames::AttributeEncoding>
434DWARFDebugNames::NameIndex::extractAttributeEncoding(uint32_t *Offset) {
435 if (*Offset >= EntriesBase) {
436 return make_error<StringError>("Incorrectly terminated abbreviation table.",
437 inconvertibleErrorCode());
438 }
439
440 uint32_t Index = Section.AccelSection.getULEB128(Offset);
441 uint32_t Form = Section.AccelSection.getULEB128(Offset);
442 return AttributeEncoding(dwarf::Index(Index), dwarf::Form(Form));
443}
444
445Expected<std::vector<DWARFDebugNames::AttributeEncoding>>
446DWARFDebugNames::NameIndex::extractAttributeEncodings(uint32_t *Offset) {
447 std::vector<AttributeEncoding> Result;
448 for (;;) {
449 auto AttrEncOr = extractAttributeEncoding(Offset);
450 if (!AttrEncOr)
451 return AttrEncOr.takeError();
452 if (isSentinel(*AttrEncOr))
453 return std::move(Result);
454
455 Result.emplace_back(*AttrEncOr);
456 }
457}
458
459Expected<DWARFDebugNames::Abbrev>
460DWARFDebugNames::NameIndex::extractAbbrev(uint32_t *Offset) {
461 if (*Offset >= EntriesBase) {
462 return make_error<StringError>("Incorrectly terminated abbreviation table.",
463 inconvertibleErrorCode());
464 }
465
466 uint32_t Code = Section.AccelSection.getULEB128(Offset);
467 if (Code == 0)
468 return sentinelAbbrev();
469
470 uint32_t Tag = Section.AccelSection.getULEB128(Offset);
471 auto AttrEncOr = extractAttributeEncodings(Offset);
472 if (!AttrEncOr)
473 return AttrEncOr.takeError();
474 return Abbrev(Code, dwarf::Tag(Tag), std::move(*AttrEncOr));
475}
476
477Error DWARFDebugNames::NameIndex::extract() {
478 const DWARFDataExtractor &AS = Section.AccelSection;
479 uint32_t Offset = Base;
480 if (Error E = Hdr.extract(AS, &Offset))
481 return E;
482
483 CUsBase = Offset;
484 Offset += Hdr.CompUnitCount * 4;
485 Offset += Hdr.LocalTypeUnitCount * 4;
486 Offset += Hdr.ForeignTypeUnitCount * 8;
487 BucketsBase = Offset;
488 Offset += Hdr.BucketCount * 4;
489 HashesBase = Offset;
490 if (Hdr.BucketCount > 0)
491 Offset += Hdr.NameCount * 4;
492 StringOffsetsBase = Offset;
493 Offset += Hdr.NameCount * 4;
494 EntryOffsetsBase = Offset;
495 Offset += Hdr.NameCount * 4;
496
497 if (!AS.isValidOffsetForDataOfSize(Offset, Hdr.AbbrevTableSize))
498 return make_error<StringError>(
499 "Section too small: cannot read abbreviations.",
500 inconvertibleErrorCode());
501
502 EntriesBase = Offset + Hdr.AbbrevTableSize;
503
504 for (;;) {
505 auto AbbrevOr = extractAbbrev(&Offset);
506 if (!AbbrevOr)
507 return AbbrevOr.takeError();
508 if (isSentinel(*AbbrevOr))
509 return Error::success();
510
511 if (!Abbrevs.insert(std::move(*AbbrevOr)).second) {
512 return make_error<StringError>("Duplicate abbreviation code.",
513 inconvertibleErrorCode());
514 }
515 }
516}
Pavel Labathd99072b2018-02-24 00:35:21 +0000517DWARFDebugNames::Entry::Entry(const NameIndex &NameIdx, const Abbrev &Abbr)
518 : NameIdx(&NameIdx), Abbr(&Abbr) {
Pavel Labath3c9a9182018-01-29 11:08:32 +0000519 // This merely creates form values. It is up to the caller
520 // (NameIndex::getEntry) to populate them.
521 Values.reserve(Abbr.Attributes.size());
522 for (const auto &Attr : Abbr.Attributes)
523 Values.emplace_back(Attr.Form);
524}
525
Pavel Labathd99072b2018-02-24 00:35:21 +0000526Optional<DWARFFormValue>
527DWARFDebugNames::Entry::lookup(dwarf::Index Index) const {
528 assert(Abbr->Attributes.size() == Values.size());
529 for (const auto &Tuple : zip_first(Abbr->Attributes, Values)) {
530 if (std::get<0>(Tuple).Index == Index)
531 return std::get<1>(Tuple);
532 }
533 return None;
534}
Pavel Labath3c9a9182018-01-29 11:08:32 +0000535
Pavel Labath47c34722018-03-09 11:58:59 +0000536Optional<uint64_t> DWARFDebugNames::Entry::getDIEUnitOffset() const {
Pavel Labathd99072b2018-02-24 00:35:21 +0000537 if (Optional<DWARFFormValue> Off = lookup(dwarf::DW_IDX_die_offset))
Pavel Labath2d1fc432018-03-29 13:47:57 +0000538 return Off->getAsReferenceUVal();
Pavel Labathd99072b2018-02-24 00:35:21 +0000539 return None;
540}
541
542Optional<uint64_t> DWARFDebugNames::Entry::getCUIndex() const {
543 if (Optional<DWARFFormValue> Off = lookup(dwarf::DW_IDX_compile_unit))
544 return Off->getAsUnsignedConstant();
Pavel Labath47c34722018-03-09 11:58:59 +0000545 // In a per-CU index, the entries without a DW_IDX_compile_unit attribute
546 // implicitly refer to the single CU.
547 if (NameIdx->getCUCount() == 1)
548 return 0;
Pavel Labathd99072b2018-02-24 00:35:21 +0000549 return None;
550}
551
552Optional<uint64_t> DWARFDebugNames::Entry::getCUOffset() const {
553 Optional<uint64_t> Index = getCUIndex();
554 if (!Index || *Index >= NameIdx->getCUCount())
555 return None;
556 return NameIdx->getCUOffset(*Index);
557}
558
559void DWARFDebugNames::Entry::dump(ScopedPrinter &W) const {
560 W.printHex("Abbrev", Abbr->Code);
Pavel Labath9025f952018-03-21 11:46:37 +0000561 W.startLine() << formatv("Tag: {0}\n", Abbr->Tag);
Pavel Labathd99072b2018-02-24 00:35:21 +0000562 assert(Abbr->Attributes.size() == Values.size());
563 for (const auto &Tuple : zip_first(Abbr->Attributes, Values)) {
Pavel Labath9025f952018-03-21 11:46:37 +0000564 W.startLine() << formatv("{0}: ", std::get<0>(Tuple).Index);
Pavel Labathd99072b2018-02-24 00:35:21 +0000565 std::get<1>(Tuple).dump(W.getOStream());
Pavel Labath3c9a9182018-01-29 11:08:32 +0000566 W.getOStream() << '\n';
567 }
568}
569
570char DWARFDebugNames::SentinelError::ID;
571std::error_code DWARFDebugNames::SentinelError::convertToErrorCode() const {
572 return inconvertibleErrorCode();
573}
574
575uint32_t DWARFDebugNames::NameIndex::getCUOffset(uint32_t CU) const {
576 assert(CU < Hdr.CompUnitCount);
577 uint32_t Offset = CUsBase + 4 * CU;
578 return Section.AccelSection.getRelocatedValue(4, &Offset);
579}
580
581uint32_t DWARFDebugNames::NameIndex::getLocalTUOffset(uint32_t TU) const {
582 assert(TU < Hdr.LocalTypeUnitCount);
583 uint32_t Offset = CUsBase + Hdr.CompUnitCount * 4;
584 return Section.AccelSection.getRelocatedValue(4, &Offset);
585}
586
Pavel Labathd99072b2018-02-24 00:35:21 +0000587uint64_t DWARFDebugNames::NameIndex::getForeignTUSignature(uint32_t TU) const {
Pavel Labath3c9a9182018-01-29 11:08:32 +0000588 assert(TU < Hdr.ForeignTypeUnitCount);
589 uint32_t Offset = CUsBase + (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) * 4;
590 return Section.AccelSection.getU64(&Offset);
591}
592
593Expected<DWARFDebugNames::Entry>
594DWARFDebugNames::NameIndex::getEntry(uint32_t *Offset) const {
595 const DWARFDataExtractor &AS = Section.AccelSection;
596 if (!AS.isValidOffset(*Offset))
Pavel Labathc9f07b02018-04-06 13:34:12 +0000597 return make_error<StringError>("Incorrectly terminated entry list.",
Pavel Labath3c9a9182018-01-29 11:08:32 +0000598 inconvertibleErrorCode());
599
600 uint32_t AbbrevCode = AS.getULEB128(Offset);
601 if (AbbrevCode == 0)
602 return make_error<SentinelError>();
603
604 const auto AbbrevIt = Abbrevs.find_as(AbbrevCode);
605 if (AbbrevIt == Abbrevs.end())
Pavel Labathc9f07b02018-04-06 13:34:12 +0000606 return make_error<StringError>("Invalid abbreviation.",
Pavel Labath3c9a9182018-01-29 11:08:32 +0000607 inconvertibleErrorCode());
608
Pavel Labathd99072b2018-02-24 00:35:21 +0000609 Entry E(*this, *AbbrevIt);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000610
Pavel Labath322711f2018-03-14 09:39:54 +0000611 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32};
Pavel Labath3c9a9182018-01-29 11:08:32 +0000612 for (auto &Value : E.Values) {
613 if (!Value.extractValue(AS, Offset, FormParams))
Pavel Labathc9f07b02018-04-06 13:34:12 +0000614 return make_error<StringError>("Error extracting index attribute values.",
Pavel Labath3c9a9182018-01-29 11:08:32 +0000615 inconvertibleErrorCode());
616 }
617 return std::move(E);
618}
619
620DWARFDebugNames::NameTableEntry
621DWARFDebugNames::NameIndex::getNameTableEntry(uint32_t Index) const {
622 assert(0 < Index && Index <= Hdr.NameCount);
623 uint32_t StringOffsetOffset = StringOffsetsBase + 4 * (Index - 1);
624 uint32_t EntryOffsetOffset = EntryOffsetsBase + 4 * (Index - 1);
625 const DWARFDataExtractor &AS = Section.AccelSection;
626
627 uint32_t StringOffset = AS.getRelocatedValue(4, &StringOffsetOffset);
628 uint32_t EntryOffset = AS.getU32(&EntryOffsetOffset);
629 EntryOffset += EntriesBase;
Pavel Labathd6ca0632018-06-01 10:33:11 +0000630 return {Section.StringSection, Index, StringOffset, EntryOffset};
Pavel Labath3c9a9182018-01-29 11:08:32 +0000631}
632
633uint32_t
634DWARFDebugNames::NameIndex::getBucketArrayEntry(uint32_t Bucket) const {
635 assert(Bucket < Hdr.BucketCount);
636 uint32_t BucketOffset = BucketsBase + 4 * Bucket;
637 return Section.AccelSection.getU32(&BucketOffset);
638}
639
640uint32_t DWARFDebugNames::NameIndex::getHashArrayEntry(uint32_t Index) const {
641 assert(0 < Index && Index <= Hdr.NameCount);
642 uint32_t HashOffset = HashesBase + 4 * (Index - 1);
643 return Section.AccelSection.getU32(&HashOffset);
644}
645
646// Returns true if we should continue scanning for entries, false if this is the
647// last (sentinel) entry). In case of a parsing error we also return false, as
648// it's not possible to recover this entry list (but the other lists may still
649// parse OK).
650bool DWARFDebugNames::NameIndex::dumpEntry(ScopedPrinter &W,
651 uint32_t *Offset) const {
652 uint32_t EntryId = *Offset;
653 auto EntryOr = getEntry(Offset);
654 if (!EntryOr) {
655 handleAllErrors(EntryOr.takeError(), [](const SentinelError &) {},
656 [&W](const ErrorInfoBase &EI) { EI.log(W.startLine()); });
657 return false;
658 }
659
660 DictScope EntryScope(W, ("Entry @ 0x" + Twine::utohexstr(EntryId)).str());
661 EntryOr->dump(W);
662 return true;
663}
664
Pavel Labathd6ca0632018-06-01 10:33:11 +0000665void DWARFDebugNames::NameIndex::dumpName(ScopedPrinter &W,
666 const NameTableEntry &NTE,
Pavel Labath3c9a9182018-01-29 11:08:32 +0000667 Optional<uint32_t> Hash) const {
Pavel Labathd6ca0632018-06-01 10:33:11 +0000668 DictScope NameScope(W, ("Name " + Twine(NTE.getIndex())).str());
Pavel Labath3c9a9182018-01-29 11:08:32 +0000669 if (Hash)
670 W.printHex("Hash", *Hash);
671
Pavel Labathd6ca0632018-06-01 10:33:11 +0000672 W.startLine() << format("String: 0x%08x", NTE.getStringOffset());
673 W.getOStream() << " \"" << NTE.getString() << "\"\n";
Pavel Labath3c9a9182018-01-29 11:08:32 +0000674
Pavel Labathd6ca0632018-06-01 10:33:11 +0000675 uint32_t EntryOffset = NTE.getEntryOffset();
676 while (dumpEntry(W, &EntryOffset))
Pavel Labath3c9a9182018-01-29 11:08:32 +0000677 /*empty*/;
678}
679
680void DWARFDebugNames::NameIndex::dumpCUs(ScopedPrinter &W) const {
681 ListScope CUScope(W, "Compilation Unit offsets");
682 for (uint32_t CU = 0; CU < Hdr.CompUnitCount; ++CU)
683 W.startLine() << format("CU[%u]: 0x%08x\n", CU, getCUOffset(CU));
684}
685
686void DWARFDebugNames::NameIndex::dumpLocalTUs(ScopedPrinter &W) const {
687 if (Hdr.LocalTypeUnitCount == 0)
688 return;
689
690 ListScope TUScope(W, "Local Type Unit offsets");
691 for (uint32_t TU = 0; TU < Hdr.LocalTypeUnitCount; ++TU)
692 W.startLine() << format("LocalTU[%u]: 0x%08x\n", TU, getLocalTUOffset(TU));
693}
694
695void DWARFDebugNames::NameIndex::dumpForeignTUs(ScopedPrinter &W) const {
696 if (Hdr.ForeignTypeUnitCount == 0)
697 return;
698
699 ListScope TUScope(W, "Foreign Type Unit signatures");
700 for (uint32_t TU = 0; TU < Hdr.ForeignTypeUnitCount; ++TU) {
701 W.startLine() << format("ForeignTU[%u]: 0x%016" PRIx64 "\n", TU,
Pavel Labathd99072b2018-02-24 00:35:21 +0000702 getForeignTUSignature(TU));
Pavel Labath3c9a9182018-01-29 11:08:32 +0000703 }
704}
705
706void DWARFDebugNames::NameIndex::dumpAbbreviations(ScopedPrinter &W) const {
707 ListScope AbbrevsScope(W, "Abbreviations");
708 for (const auto &Abbr : Abbrevs)
709 Abbr.dump(W);
710}
711
712void DWARFDebugNames::NameIndex::dumpBucket(ScopedPrinter &W,
713 uint32_t Bucket) const {
714 ListScope BucketScope(W, ("Bucket " + Twine(Bucket)).str());
715 uint32_t Index = getBucketArrayEntry(Bucket);
716 if (Index == 0) {
717 W.printString("EMPTY");
718 return;
719 }
720 if (Index > Hdr.NameCount) {
721 W.printString("Name index is invalid");
722 return;
723 }
724
725 for (; Index <= Hdr.NameCount; ++Index) {
726 uint32_t Hash = getHashArrayEntry(Index);
727 if (Hash % Hdr.BucketCount != Bucket)
728 break;
729
Pavel Labathd6ca0632018-06-01 10:33:11 +0000730 dumpName(W, getNameTableEntry(Index), Hash);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000731 }
732}
733
734LLVM_DUMP_METHOD void DWARFDebugNames::NameIndex::dump(ScopedPrinter &W) const {
735 DictScope UnitScope(W, ("Name Index @ 0x" + Twine::utohexstr(Base)).str());
736 Hdr.dump(W);
737 dumpCUs(W);
738 dumpLocalTUs(W);
739 dumpForeignTUs(W);
740 dumpAbbreviations(W);
741
742 if (Hdr.BucketCount > 0) {
743 for (uint32_t Bucket = 0; Bucket < Hdr.BucketCount; ++Bucket)
744 dumpBucket(W, Bucket);
745 return;
746 }
747
748 W.startLine() << "Hash table not present\n";
Pavel Labathd6ca0632018-06-01 10:33:11 +0000749 for (NameTableEntry NTE : *this)
750 dumpName(W, NTE, None);
Pavel Labath3c9a9182018-01-29 11:08:32 +0000751}
752
753llvm::Error DWARFDebugNames::extract() {
754 uint32_t Offset = 0;
755 while (AccelSection.isValidOffset(Offset)) {
756 NameIndex Next(*this, Offset);
757 if (llvm::Error E = Next.extract())
758 return E;
759 Offset = Next.getNextUnitOffset();
760 NameIndices.push_back(std::move(Next));
761 }
762 return Error::success();
763}
764
Pavel Labath80827f12018-05-15 13:24:10 +0000765iterator_range<DWARFDebugNames::ValueIterator>
766DWARFDebugNames::NameIndex::equal_range(StringRef Key) const {
767 return make_range(ValueIterator(*this, Key), ValueIterator());
768}
769
Pavel Labath3c9a9182018-01-29 11:08:32 +0000770LLVM_DUMP_METHOD void DWARFDebugNames::dump(raw_ostream &OS) const {
771 ScopedPrinter W(OS);
772 for (const NameIndex &NI : NameIndices)
773 NI.dump(W);
774}
Pavel Labathd99072b2018-02-24 00:35:21 +0000775
776Optional<uint32_t>
777DWARFDebugNames::ValueIterator::findEntryOffsetInCurrentIndex() {
778 const Header &Hdr = CurrentIndex->Hdr;
779 if (Hdr.BucketCount == 0) {
780 // No Hash Table, We need to search through all names in the Name Index.
Pavel Labathd6ca0632018-06-01 10:33:11 +0000781 for (NameTableEntry NTE : *CurrentIndex) {
782 if (NTE.getString() == Key)
783 return NTE.getEntryOffset();
Pavel Labathd99072b2018-02-24 00:35:21 +0000784 }
785 return None;
786 }
787
788 // The Name Index has a Hash Table, so use that to speed up the search.
789 // Compute the Key Hash, if it has not been done already.
790 if (!Hash)
791 Hash = caseFoldingDjbHash(Key);
792 uint32_t Bucket = *Hash % Hdr.BucketCount;
793 uint32_t Index = CurrentIndex->getBucketArrayEntry(Bucket);
794 if (Index == 0)
795 return None; // Empty bucket
796
797 for (; Index <= Hdr.NameCount; ++Index) {
798 uint32_t Hash = CurrentIndex->getHashArrayEntry(Index);
799 if (Hash % Hdr.BucketCount != Bucket)
800 return None; // End of bucket
801
802 NameTableEntry NTE = CurrentIndex->getNameTableEntry(Index);
Pavel Labathd6ca0632018-06-01 10:33:11 +0000803 if (NTE.getString() == Key)
804 return NTE.getEntryOffset();
Pavel Labathd99072b2018-02-24 00:35:21 +0000805 }
806 return None;
807}
808
809bool DWARFDebugNames::ValueIterator::getEntryAtCurrentOffset() {
810 auto EntryOr = CurrentIndex->getEntry(&DataOffset);
811 if (!EntryOr) {
812 consumeError(EntryOr.takeError());
813 return false;
814 }
815 CurrentEntry = std::move(*EntryOr);
816 return true;
817}
818
819bool DWARFDebugNames::ValueIterator::findInCurrentIndex() {
820 Optional<uint32_t> Offset = findEntryOffsetInCurrentIndex();
821 if (!Offset)
822 return false;
823 DataOffset = *Offset;
824 return getEntryAtCurrentOffset();
825}
826
827void DWARFDebugNames::ValueIterator::searchFromStartOfCurrentIndex() {
828 for (const NameIndex *End = CurrentIndex->Section.NameIndices.end();
829 CurrentIndex != End; ++CurrentIndex) {
830 if (findInCurrentIndex())
831 return;
832 }
833 setEnd();
834}
835
836void DWARFDebugNames::ValueIterator::next() {
837 assert(CurrentIndex && "Incrementing an end() iterator?");
838
839 // First try the next entry in the current Index.
840 if (getEntryAtCurrentOffset())
841 return;
842
Pavel Labath59870af2018-05-31 08:47:00 +0000843 // If we're a local iterator or we have reached the last Index, we're done.
844 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) {
Pavel Labath80827f12018-05-15 13:24:10 +0000845 setEnd();
846 return;
847 }
848
849 // Otherwise, try the next index.
Pavel Labathd99072b2018-02-24 00:35:21 +0000850 ++CurrentIndex;
851 searchFromStartOfCurrentIndex();
852}
853
854DWARFDebugNames::ValueIterator::ValueIterator(const DWARFDebugNames &AccelTable,
855 StringRef Key)
Pavel Labath80827f12018-05-15 13:24:10 +0000856 : CurrentIndex(AccelTable.NameIndices.begin()), IsLocal(false), Key(Key) {
Pavel Labathd99072b2018-02-24 00:35:21 +0000857 searchFromStartOfCurrentIndex();
858}
859
Pavel Labath80827f12018-05-15 13:24:10 +0000860DWARFDebugNames::ValueIterator::ValueIterator(
861 const DWARFDebugNames::NameIndex &NI, StringRef Key)
862 : CurrentIndex(&NI), IsLocal(true), Key(Key) {
863 if (!findInCurrentIndex())
864 setEnd();
865}
866
Pavel Labathd99072b2018-02-24 00:35:21 +0000867iterator_range<DWARFDebugNames::ValueIterator>
868DWARFDebugNames::equal_range(StringRef Key) const {
869 if (NameIndices.empty())
870 return make_range(ValueIterator(), ValueIterator());
871 return make_range(ValueIterator(*this, Key), ValueIterator());
872}
Pavel Labath80827f12018-05-15 13:24:10 +0000873
874const DWARFDebugNames::NameIndex *
875DWARFDebugNames::getCUNameIndex(uint32_t CUOffset) {
876 if (CUToNameIndex.size() == 0 && NameIndices.size() > 0) {
877 for (const auto &NI : *this) {
878 for (uint32_t CU = 0; CU < NI.getCUCount(); ++CU)
879 CUToNameIndex.try_emplace(NI.getCUOffset(CU), &NI);
880 }
881 }
882 return CUToNameIndex.lookup(CUOffset);
883}