35 return OS <<
"DW_ATOM_unknown_" <<
format(
"%x",
A.Value);
49 "Section too small: cannot read header.");
64 "Section too small: cannot read buckets and hashes.");
69 HashDataEntryLength = 0;
76 for (
unsigned i = 0; i < NumAtoms; ++i) {
79 HdrData.Atoms.push_back(std::make_pair(AtomType, AtomForm));
81 std::optional<uint8_t> FormSize =
84 return MakeUnsupportedFormError(AtomForm);
85 HashDataEntryLength += *FormSize;
93 return Hdr.BucketCount;
98 return Hdr.HeaderDataLength;
104 return HdrData.Atoms;
110 switch (Atom.first) {
116 FormValue.
getForm() == dwarf::DW_FORM_sdata)
126std::pair<uint64_t, dwarf::Tag>
134 switch (Atom.first) {
145 return {DieOffset, DieTag};
148void AppleAcceleratorTable::Header::dump(
ScopedPrinter &W)
const {
150 W.printHex(
"Magic", Magic);
151 W.printHex(
"Version",
Version);
152 W.printHex(
"Hash function", HashFunction);
153 W.printNumber(
"Bucket count", BucketCount);
154 W.printNumber(
"Hashes count", HashCount);
155 W.printNumber(
"HeaderData length", HeaderDataLength);
158std::optional<uint64_t> AppleAcceleratorTable::HeaderData::extractOffset(
159 std::optional<DWARFFormValue>
Value)
const {
163 switch (
Value->getForm()) {
164 case dwarf::DW_FORM_ref1:
165 case dwarf::DW_FORM_ref2:
166 case dwarf::DW_FORM_ref4:
167 case dwarf::DW_FORM_ref8:
168 case dwarf::DW_FORM_ref_udata:
169 return Value->getRawUValue() + DIEOffsetBase;
171 return Value->getAsSectionOffset();
180 W.printString(
"Incorrectly terminated list.");
188 W.startLine() <<
format(
"String: 0x%08" PRIx64, StringOffset);
195 for (
auto &Atom : AtomForms) {
196 W.startLine() <<
format(
"Atom[%d]: ", i);
198 Atom.dump(
W.getOStream());
199 if (std::optional<uint64_t> Val = Atom.getAsUnsignedConstant()) {
202 W.getOStream() <<
" (" << Str <<
")";
205 W.getOStream() <<
"Error extracting the value";
206 W.getOStream() <<
"\n";
221 W.printNumber(
"DIE offset base", HdrData.DIEOffsetBase);
222 W.printNumber(
"Number of atoms",
uint64_t(HdrData.Atoms.size()));
228 for (
const auto &Atom : HdrData.Atoms) {
230 W.startLine() <<
"Type: " <<
formatAtom(Atom.first) <<
'\n';
231 W.startLine() <<
"Form: " <<
formatv(
"{0}", Atom.second) <<
'\n';
239 uint64_t OffsetsBase = HashesBase + Hdr.HashCount * 4;
241 for (
unsigned Bucket = 0; Bucket < Hdr.BucketCount; ++Bucket) {
245 if (
Index == UINT32_MAX) {
246 W.printString(
"EMPTY");
250 for (
unsigned HashIdx =
Index; HashIdx < Hdr.HashCount; ++HashIdx) {
251 uint64_t HashOffset = HashesBase + HashIdx*4;
252 uint64_t OffsetsOffset = OffsetsBase + HashIdx*4;
255 if (Hash % Hdr.BucketCount != Bucket)
261 W.printString(
"Invalid section offset");
264 while (dumpName(W, AtomForms, &DataOffset))
272 Values.reserve(Table.HdrData.Atoms.size());
273 for (
const auto &Atom : Table.HdrData.Atoms)
278 for (
auto &FormValue :
Values)
282std::optional<DWARFFormValue>
284 for (
auto [Atom, FormValue] :
zip_equal(Table.HdrData.Atoms, Values))
285 if (Atom.first == AtomToFind)
290std::optional<uint64_t>
303 if (std::optional<uint64_t>
Value =
Tag->getAsUnsignedConstant())
312void AppleAcceleratorTable::Iterator::prepareNextEntryOrEnd() {
313 if (NumEntriesToCome == 0)
314 prepareNextStringOrEnd();
318 Current.BaseEntry.extract(&OffsetCopy);
320 Offset += getTable().getHashDataEntryLength();
323void AppleAcceleratorTable::Iterator::prepareNextStringOrEnd() {
324 std::optional<uint32_t> StrOffset = getTable().readStringOffsetAt(
Offset);
331 return prepareNextStringOrEnd();
332 Current.StrOffset = *StrOffset;
334 std::optional<uint32_t> MaybeNumEntries = getTable().readU32FromAccel(
Offset);
335 if (!MaybeNumEntries || *MaybeNumEntries == 0)
337 NumEntriesToCome = *MaybeNumEntries;
342 : Current(Table),
Offset(Table.getEntriesBase()), NumEntriesToCome(0) {
346 prepareNextEntryOrEnd();
351 const auto EmptyRange =
358 uint32_t BucketIdx = hashToBucketIdx(SearchHash);
359 std::optional<uint32_t> HashIdx = idxOfHashInBucket(SearchHash, BucketIdx);
363 std::optional<uint64_t> MaybeDataOffset = readIthOffset(*HashIdx);
364 if (!MaybeDataOffset)
367 uint64_t DataOffset = *MaybeDataOffset;
371 std::optional<uint32_t> StrOffset = readStringOffsetAt(DataOffset);
373 while (StrOffset && *StrOffset) {
374 std::optional<StringRef> MaybeStr = readStringFromStrSection(*StrOffset);
375 std::optional<uint32_t> NumEntries = this->readU32FromAccel(DataOffset);
376 if (!MaybeStr || !NumEntries)
379 if (Key == *MaybeStr)
382 DataOffset = EndOffset;
383 StrOffset = readStringOffsetAt(DataOffset);
389std::optional<uint32_t>
390AppleAcceleratorTable::idxOfHashInBucket(
uint32_t HashToFind,
392 std::optional<uint32_t> HashStartIdx = readIthBucket(BucketIdx);
397 std::optional<uint32_t> MaybeHash = readIthHash(HashIdx);
398 if (!MaybeHash || !wouldHashBeInBucket(*MaybeHash, BucketIdx))
400 if (*MaybeHash == HashToFind)
406std::optional<StringRef> AppleAcceleratorTable::readStringFromStrSection(
407 uint64_t StringSectionOffset)
const {
417std::optional<uint32_t>
419 bool UseRelocation)
const {
433 W.printHex(
"Length", UnitLength);
435 W.printNumber(
"Version",
Version);
436 W.printNumber(
"CU count", CompUnitCount);
437 W.printNumber(
"Local TU count", LocalTypeUnitCount);
438 W.printNumber(
"Foreign TU count", ForeignTypeUnitCount);
439 W.printNumber(
"Bucket count", BucketCount);
440 W.printNumber(
"Name count", NameCount);
441 W.printHex(
"Abbreviations table size", AbbrevTableSize);
442 W.startLine() <<
"Augmentation: '" << AugmentationString <<
"'\n";
449 "parsing .debug_names header at 0x%" PRIx64
": %s",
459 LocalTypeUnitCount = AS.
getU32(
C);
460 ForeignTypeUnitCount = AS.
getU32(
C);
463 AbbrevTableSize = AS.
getU32(
C);
467 return HeaderError(
C.takeError());
471 "cannot read header augmentation"));
472 AugmentationString.resize(AugmentationStringSize);
473 AS.
getU8(
C,
reinterpret_cast<uint8_t *
>(AugmentationString.data()),
474 AugmentationStringSize);
476 return C.takeError();
484 W.startLine() <<
formatv(
"{0}: {1}\n", Attr.Index, Attr.Form);
500 return Abbr.
Code == 0;
512DWARFDebugNames::NameIndex::extractAttributeEncoding(
uint64_t *
Offset) {
515 "Incorrectly terminated abbreviation table.");
524DWARFDebugNames::NameIndex::extractAttributeEncodings(
uint64_t *
Offset) {
525 std::vector<AttributeEncoding>
Result;
527 auto AttrEncOr = extractAttributeEncoding(
Offset);
529 return AttrEncOr.takeError();
531 return std::move(Result);
533 Result.emplace_back(*AttrEncOr);
541 "Incorrectly terminated abbreviation table.");
549 auto AttrEncOr = extractAttributeEncodings(
Offset);
551 return AttrEncOr.takeError();
552 return Abbrev(Code,
dwarf::Tag(
Tag), AbbrevOffset, std::move(*AttrEncOr));
560 Ret.CUsBase = EndOfHeaderOffset;
561 Ret.BucketsBase = Ret.CUsBase + Hdr.
CompUnitCount * DwarfSize +
564 Ret.HashesBase = Ret.BucketsBase + Hdr.
BucketCount * 4;
565 Ret.StringOffsetsBase =
567 Ret.EntryOffsetsBase = Ret.StringOffsetsBase + Hdr.
NameCount * DwarfSize;
576 if (
Error E = Hdr.extract(AS, &EndOfHeaderOffset))
583 Offsets.EntryOffsetsBase + (Hdr.NameCount * SectionOffsetSize);
587 "Section too small: cannot read abbreviations.");
589 Offsets.EntriesBase =
Offset + Hdr.AbbrevTableSize;
592 auto AbbrevOr = extractAbbrev(&
Offset);
594 return AbbrevOr.takeError();
598 if (!Abbrevs.insert(std::move(*AbbrevOr)).second)
600 "Duplicate abbreviation code.");
605 : NameIdx(&NameIdx), Abbr(&Abbr) {
610 Values.emplace_back(Attr.Form);
613std::optional<DWARFFormValue>
618 return std::get<1>(Tuple);
624 return lookup(dwarf::DW_IDX_parent).has_value();
628 if (std::optional<DWARFFormValue> Off =
lookup(dwarf::DW_IDX_die_offset))
629 return Off->getAsReferenceUVal();
635 if (std::optional<DWARFFormValue> Off =
lookup(dwarf::DW_IDX_compile_unit))
636 return Off->getAsUnsignedConstant();
648 if (
lookup(dwarf::DW_IDX_type_unit).has_value())
650 return getRelatedCUIndex();
654 std::optional<uint64_t>
Index = getCUIndex();
661 std::optional<uint64_t>
Index = getRelatedCUIndex();
668 std::optional<uint64_t>
Index = getLocalTUIndex();
674std::optional<uint64_t>
676 std::optional<uint64_t>
Index = getLocalTUIndex();
688 if (std::optional<DWARFFormValue> Off =
lookup(dwarf::DW_IDX_type_unit))
689 return Off->getAsUnsignedConstant();
696 std::optional<DWARFFormValue> ParentEntryOff =
lookup(dwarf::DW_IDX_parent);
697 assert(ParentEntryOff.has_value() &&
"hasParentInformation() must be called");
699 if (ParentEntryOff->getForm() == dwarf::Form::DW_FORM_flag_present)
708 W.getOStream() <<
"<invalid offset data>";
713 if (!ParentEntry->has_value()) {
714 W.getOStream() <<
"<parent not indexed>";
723 W.startLine() <<
formatv(
"Abbrev: {0:x}\n", Abbr->
Code);
724 W.startLine() <<
formatv(
"Tag: {0}\n", Abbr->
Tag);
727 auto Index = std::get<0>(Tuple).Index;
730 auto FormValue = std::get<1>(Tuple);
731 if (
Index == dwarf::Index::DW_IDX_parent)
732 dumpParentIdx(W, FormValue);
734 FormValue.dump(W.getOStream());
735 W.getOStream() <<
'\n';
748 return Section.AccelSection.getRelocatedValue(SectionOffsetSize, &
Offset);
752 assert(TU < Hdr.LocalTypeUnitCount);
755 Offsets.CUsBase + SectionOffsetSize * (Hdr.CompUnitCount + TU);
756 return Section.AccelSection.getRelocatedValue(SectionOffsetSize, &
Offset);
760 assert(TU < Hdr.ForeignTypeUnitCount);
764 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU;
765 return Section.AccelSection.getU64(&
Offset);
773 "Incorrectly terminated entry list.");
777 return make_error<SentinelError>();
779 const auto AbbrevIt = Abbrevs.find_as(AbbrevCode);
780 if (AbbrevIt == Abbrevs.end())
783 Entry E(*
this, *AbbrevIt);
789 "Error extracting index attribute values.");
799 Offsets.StringOffsetsBase + SectionOffsetSize * (
Index - 1);
801 Offsets.EntryOffsetsBase + SectionOffsetSize * (
Index - 1);
805 AS.getRelocatedValue(SectionOffsetSize, &StringOffsetOffset);
806 uint64_t EntryOffset = AS.getUnsigned(&EntryOffsetOffset, SectionOffsetSize);
807 EntryOffset += Offsets.EntriesBase;
808 return {Section.StringSection,
Index, StringOffset, EntryOffset};
813 assert(Bucket < Hdr.BucketCount);
814 uint64_t BucketOffset = Offsets.BucketsBase + 4 * Bucket;
815 return Section.AccelSection.getU32(&BucketOffset);
821 return Section.AccelSection.getU32(&HashOffset);
831 auto EntryOr = getEntry(
Offset);
844 const NameTableEntry &NTE,
845 std::optional<uint32_t> Hash)
const {
848 W.printHex(
"Hash", *Hash);
850 W.startLine() <<
format(
"String: 0x%08" PRIx64, NTE.getStringOffset());
851 W.getOStream() <<
" \"" << NTE.getString() <<
"\"\n";
853 uint64_t EntryOffset = NTE.getEntryOffset();
854 while (dumpEntry(W, &EntryOffset))
858void DWARFDebugNames::NameIndex::dumpCUs(
ScopedPrinter &W)
const {
859 ListScope CUScope(W,
"Compilation Unit offsets");
861 W.startLine() <<
format(
"CU[%u]: 0x%08" PRIx64
"\n",
CU, getCUOffset(
CU));
864void DWARFDebugNames::NameIndex::dumpLocalTUs(
ScopedPrinter &W)
const {
865 if (Hdr.LocalTypeUnitCount == 0)
868 ListScope TUScope(W,
"Local Type Unit offsets");
869 for (
uint32_t TU = 0; TU < Hdr.LocalTypeUnitCount; ++TU)
870 W.startLine() <<
format(
"LocalTU[%u]: 0x%08" PRIx64
"\n", TU,
871 getLocalTUOffset(TU));
874void DWARFDebugNames::NameIndex::dumpForeignTUs(
ScopedPrinter &W)
const {
875 if (Hdr.ForeignTypeUnitCount == 0)
878 ListScope TUScope(W,
"Foreign Type Unit signatures");
879 for (
uint32_t TU = 0; TU < Hdr.ForeignTypeUnitCount; ++TU) {
880 W.startLine() <<
format(
"ForeignTU[%u]: 0x%016" PRIx64
"\n", TU,
881 getForeignTUSignature(TU));
885void DWARFDebugNames::NameIndex::dumpAbbreviations(
ScopedPrinter &W)
const {
886 ListScope AbbrevsScope(W,
"Abbreviations");
887 std::vector<const Abbrev *> AbbrevsVect;
889 AbbrevsVect.push_back(&Abbr);
890 llvm::sort(AbbrevsVect, [](
const Abbrev *LHS,
const Abbrev *RHS) {
891 return LHS->AbbrevOffset <
RHS->AbbrevOffset;
902 W.printString(
"EMPTY");
905 if (
Index > Hdr.NameCount) {
906 W.printString(
"Name index is invalid");
912 if (Hash % Hdr.BucketCount != Bucket)
915 dumpName(W, getNameTableEntry(
Index), Hash);
925 dumpAbbreviations(W);
927 if (Hdr.BucketCount > 0) {
928 for (
uint32_t Bucket = 0; Bucket < Hdr.BucketCount; ++Bucket)
929 dumpBucket(W, Bucket);
933 W.startLine() <<
"Hash table not present\n";
935 dumpName(W, NTE, std::nullopt);
945 NameIndices.push_back(std::move(Next));
961std::optional<uint64_t>
962DWARFDebugNames::ValueIterator::findEntryOffsetInCurrentIndex() {
963 const Header &Hdr = CurrentIndex->Hdr;
964 if (Hdr.BucketCount == 0) {
966 for (
const NameTableEntry &NTE : *CurrentIndex) {
967 if (NTE.sameNameAs(Key))
968 return NTE.getEntryOffset();
977 uint32_t Bucket = *Hash % Hdr.BucketCount;
983 uint32_t HashAtIndex = CurrentIndex->getHashArrayEntry(
Index);
984 if (HashAtIndex % Hdr.BucketCount != Bucket)
987 if (HashAtIndex != Hash)
990 NameTableEntry NTE = CurrentIndex->getNameTableEntry(
Index);
991 if (NTE.sameNameAs(Key))
992 return NTE.getEntryOffset();
997bool DWARFDebugNames::ValueIterator::getEntryAtCurrentOffset() {
998 auto EntryOr = CurrentIndex->getEntry(&DataOffset);
1003 CurrentEntry = std::move(*EntryOr);
1007bool DWARFDebugNames::ValueIterator::findInCurrentIndex() {
1008 std::optional<uint64_t>
Offset = findEntryOffsetInCurrentIndex();
1012 return getEntryAtCurrentOffset();
1015void DWARFDebugNames::ValueIterator::searchFromStartOfCurrentIndex() {
1016 for (
const NameIndex *
End = CurrentIndex->Section.NameIndices.end();
1017 CurrentIndex !=
End; ++CurrentIndex) {
1018 if (findInCurrentIndex())
1024void DWARFDebugNames::ValueIterator::next() {
1025 assert(CurrentIndex &&
"Incrementing an end() iterator?");
1028 if (getEntryAtCurrentOffset())
1032 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) {
1039 searchFromStartOfCurrentIndex();
1046 searchFromStartOfCurrentIndex();
1052 if (!findInCurrentIndex())
1058 if (NameIndices.empty())
1065 if (CUToNameIndex.size() == 0 && NameIndices.size() > 0) {
1066 for (
const auto &NI : *
this) {
1068 CUToNameIndex.try_emplace(NI.getCUOffset(
CU), &NI);
1071 return CUToNameIndex.lookup(CUOffset);
1075 return Name.size() > 2 && (
Name[0] ==
'-' ||
Name[0] ==
'+') &&
1081 return std::nullopt;
1084 size_t FirstSpace = ClassNameStart.
find(
' ');
1086 return std::nullopt;
1089 if (!SelectorStart.
size())
1090 return std::nullopt;
1118 if (!
Name.ends_with(
">") ||
Name.count(
"<") == 0 ||
Name.ends_with(
"<=>"))
1122 size_t NumLeftAnglesToSkip = 1;
1125 NumLeftAnglesToSkip +=
Name.count(
"<=>");
1127 size_t RightAngleCount =
Name.count(
'>');
1128 size_t LeftAngleCount =
Name.count(
'<');
1132 if (LeftAngleCount > RightAngleCount)
1133 NumLeftAnglesToSkip += LeftAngleCount - RightAngleCount;
1135 size_t StartOfTemplate = 0;
1136 while (NumLeftAnglesToSkip--)
1137 StartOfTemplate =
Name.find(
'<', StartOfTemplate) + 1;
1139 return Name.substr(0, StartOfTemplate - 1);
for(const MachineOperand &MO :llvm::drop_begin(OldMI.operands(), Desc.getNumOperands()))
#define offsetof(TYPE, MEMBER)
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
static constexpr DWARFDebugNames::AttributeEncoding sentinelAttrEnc()
static bool isSentinel(const DWARFDebugNames::AttributeEncoding &AE)
static DWARFDebugNames::Abbrev sentinelAbbrev()
static bool isObjCSelector(StringRef Name)
static Atom formatAtom(unsigned Atom)
This file contains constants used for implementing Dwarf debug support.
static bool lookup(const GsymReader &GR, DataExtractor &Data, uint64_t &Offset, uint64_t BaseAddr, uint64_t Addr, SourceLocations &SrcLocs, llvm::Error &Err)
A Lookup helper functions.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
This class holds an abstract representation of an Accelerator Table, consisting of a sequence of buck...
std::optional< DWARFFormValue > lookup(HeaderData::AtomType Atom) const
Returns the value of the Atom in this Accelerator Entry, if the Entry contains such Atom.
std::optional< uint64_t > getDIESectionOffset() const
Returns the Section Offset of the Debug Info Entry associated with this Accelerator Entry or std::nul...
std::optional< dwarf::Tag > getTag() const override
Returns the Tag of the Debug Info Entry associated with this Accelerator Entry or std::nullopt if the...
std::optional< uint64_t > getCUOffset() const override
Returns the Offset of the Compilation Unit associated with this Accelerator Entry or std::nullopt if ...
Iterator(const AppleAcceleratorTable &Table, bool SetEnd=false)
An iterator for Entries all having the same string as key.
SameNameIterator(const AppleAcceleratorTable &AccelTable, uint64_t DataOffset)
Construct a new iterator for the entries at DataOffset.
This implements the Apple accelerator table format, a precursor of the DWARF 5 accelerator table form...
iterator_range< SameNameIterator > equal_range(StringRef Key) const
Look up all entries in the accelerator table matching Key.
uint32_t getNumBuckets() const
uint32_t getSizeHdr() const
std::pair< uint64_t, dwarf::Tag > readAtoms(uint64_t *HashDataOffset)
Return information related to the DWARF DIE we're looking for when performing a lookup by name.
uint32_t getNumHashes() const
uint32_t getHashDataEntryLength() const
Returns the size of one HashData entry.
void dump(raw_ostream &OS) const override
ArrayRef< std::pair< HeaderData::AtomType, HeaderData::Form > > getAtomsDesc()
Return the Atom description, which can be used to interpret the raw values of the Accelerator Entries...
uint32_t getHeaderDataLength() const
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
SmallVector< DWARFFormValue, 3 > Values
DataExtractor StringSection
virtual ~DWARFAcceleratorTable()
DWARFDataExtractor AccelSection
DWARF v5-specific implementation of an Accelerator Entry.
std::optional< uint64_t > getLocalTUIndex() const
Returns the Index into the Local Type Unit list of the owning Name Index or std::nullopt if this Acce...
std::optional< uint64_t > getForeignTUTypeSignature() const override
Returns the type signature of the Type Unit associated with this Accelerator Entry or std::nullopt if...
std::optional< uint64_t > getRelatedCUIndex() const
Similar functionality to getCUIndex() but without the DW_IDX_type_unit restriction.
std::optional< uint64_t > getCUIndex() const
Returns the Index into the Compilation Unit list of the owning Name Index or std::nullopt if this Acc...
std::optional< uint64_t > getRelatedCUOffset() const
std::optional< uint64_t > getCUOffset() const override
Returns the Offset of the Compilation Unit associated with this Accelerator Entry or std::nullopt if ...
std::optional< uint64_t > getDIEUnitOffset() const
Returns the Offset of the DIE within the containing CU or TU.
Expected< std::optional< DWARFDebugNames::Entry > > getParentDIEEntry() const
Returns the Entry corresponding to the parent of the DIE represented by this Entry.
bool hasParentInformation() const
Returns true if this Entry has information about its parent DIE (i.e.
std::optional< DWARFFormValue > lookup(dwarf::Index Index) const
Returns the value of the Index Attribute in this Accelerator Entry, if the Entry contains such Attrib...
std::optional< uint64_t > getLocalTUOffset() const override
Returns the Offset of the Type Unit associated with this Accelerator Entry or std::nullopt if the Typ...
void dumpParentIdx(ScopedPrinter &W, const DWARFFormValue &FormValue) const
void dump(ScopedPrinter &W) const
Represents a single accelerator table within the DWARF v5 .debug_names section.
uint32_t getHashArrayEntry(uint32_t Index) const
Reads an entry in the Hash Array for the given Index.
uint64_t getLocalTUOffset(uint32_t TU) const
Reads offset of local type unit TU, TU is 0-based.
uint32_t getBucketArrayEntry(uint32_t Bucket) const
Reads an entry in the Bucket Array for the given Bucket.
uint64_t getNextUnitOffset() const
void dump(ScopedPrinter &W) const
uint32_t getCUCount() const
iterator_range< ValueIterator > equal_range(StringRef Key) const
Look up all entries in this Name Index matching Key.
uint64_t getCUOffset(uint32_t CU) const
Reads offset of compilation unit CU. CU is 0-based.
Expected< Entry > getEntry(uint64_t *Offset) const
NameTableEntry getNameTableEntry(uint32_t Index) const
Reads an entry in the Name Table for the given Index.
uint32_t getForeignTUCount() const
uint64_t getForeignTUSignature(uint32_t TU) const
Reads signature of foreign type unit TU. TU is 0-based.
uint32_t getLocalTUCount() const
Expected< Entry > getEntryAtRelativeOffset(uint64_t Offset) const
Returns the Entry at the relative Offset from the start of the Entry pool.
A single entry in the Name Table (DWARF v5 sect.
Error returned by NameIndex::getEntry to report it has reached the end of the entry list.
std::error_code convertToErrorCode() const override
Convert this error to a std::error_code.
ValueIterator()=default
End marker.
.debug_names section consists of one or more units.
const NameIndex * getCUNameIndex(uint64_t CUOffset)
Return the Name Index covering the compile unit at CUOffset, or nullptr if there is no Name Index cov...
const_iterator begin() const
iterator_range< ValueIterator > equal_range(StringRef Key) const
Look up all entries in the accelerator table matching Key.
void dump(raw_ostream &OS) const override
Base class for error info classes.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
StringRef drop_front(size_t N=1) const
Return a StringRef equal to 'this' but with the first N elements dropped.
char back() const
back - Get the last character in the string.
constexpr size_t size() const
size - Get the string size.
StringRef take_front(size_t N=1) const
Return a StringRef equal to 'this' but with only the first N elements remaining.
size_t find(char C, size_t From=0) const
Search for the first character C in the string.
static constexpr size_t npos
StringRef drop_back(size_t N=1) const
Return a StringRef equal to 'this' but with the last N elements dropped.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static Twine utohexstr(const uint64_t &Val)
LLVM Value Representation.
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
StringRef FormEncodingString(unsigned Encoding)
StringRef AtomTypeString(unsigned Atom)
StringRef FormatString(DwarfFormat Format)
@ C
The default llvm calling convention, compatible with C.
StringRef AtomValueString(uint16_t Atom, unsigned Val)
Returns the symbolic string representing Val when used as a value for atom Atom.
DWARFDebugNames::DWARFDebugNamesOffsets findDebugNamesOffsets(uint64_t EndOfHeaderOffset, const DWARFDebugNames::Header &Hdr)
std::optional< const char * > toString(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract a string value from it.
const uint32_t DW_INVALID_OFFSET
Identifier of an invalid DIE offset in the .debug_info section.
std::optional< uint8_t > getFixedFormByteSize(dwarf::Form Form, FormParams Params)
Get the fixed byte size for a given form.
uint8_t getDwarfOffsetByteSize(DwarfFormat Format)
The size of a reference determined by the DWARF 32/64-bit format.
@ DW_ATOM_die_offset
Marker as the end of a list of atoms.
NodeAddr< CodeNode * > Code
This is an optimization pass for GlobalISel generic memory operations.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
void handleAllErrors(Error E, HandlerTs &&... Handlers)
Behaves the same as handleErrors, except that by contract all errors must be handled by the given han...
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
SmallVectorImpl< T >::const_pointer c_str(SmallVectorImpl< T > &str)
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
auto formatv(const char *Fmt, Ts &&...Vals) -> formatv_object< decltype(std::make_tuple(support::detail::build_format_adapter(std::forward< Ts >(Vals))...))>
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
detail::zippy< detail::zip_first, T, U, Args... > zip_first(T &&t, U &&u, Args &&...args)
zip iterator that, for the sake of efficiency, assumes the first iteratee to be the shortest.
void sort(IteratorTy Start, IteratorTy End)
std::optional< StringRef > StripTemplateParameters(StringRef Name)
If Name is the name of a templated function that includes template parameters, returns a substring of...
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
uint32_t caseFoldingDjbHash(StringRef Buffer, uint32_t H=5381)
Computes the Bernstein hash after folding the input according to the Dwarf 5 standard case folding ru...
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
uint32_t djbHash(StringRef Buffer, uint32_t H=5381)
The Bernstein hash function used by the DWARF accelerator tables.
std::optional< ObjCSelectorNames > getObjCNamesIfSelector(StringRef Name)
If Name is the AT_name of a DIE which refers to an Objective-C selector, returns an instance of ObjCS...
void consumeError(Error Err)
Consume a Error without doing anything.
Implement std::hash so that hash_code can be used in STL containers.
Abbreviation describing the encoding of Name Index entries.
void dump(ScopedPrinter &W) const
uint32_t Code
< Abbreviation offset in the .debug_names section
std::vector< AttributeEncoding > Attributes
List of index attributes.
dwarf::Tag Tag
Dwarf Tag of the described entity.
Index attribute and its encoding.
Offsets for the start of various important tables from the start of the section.
StringRef ClassName
For "-[A(Category) method:]", this would be "A(category)".
std::optional< std::string > MethodNameNoCategory
For "-[A(Category) method:]", this would be "A method:".
StringRef Selector
For "-[A(Category) method:]", this would be "method:".
std::optional< StringRef > ClassNameNoCategory
For "-[A(Category) method:]", this would be "A".