Home
last modified time | relevance | path

Searched refs:AbbrevDecl (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.h33 const DWARFAbbreviationDeclaration *AbbrevDecl = nullptr; variable
68 return AbbrevDecl ? AbbrevDecl->getTag() : dwarf::DW_TAG_null; in getTag()
71 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren()
74 return AbbrevDecl; in getAbbreviationDeclarationPtr()
H A DDWARFDie.h74 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in getTag() local
75 if (AbbrevDecl) in getTag()
76 return AbbrevDecl->getTag(); in getTag()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.cpp40 AbbrevDecl = nullptr; in extractFast()
54 AbbrevDecl = AbbrevSet->getAbbreviationDeclaration(AbbrCode); in extractFast()
55 if (!AbbrevDecl) { in extractFast()
70 AbbrevDecl->getFixedAttributesByteSize(U)) { in extractFast()
76 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in extractFast()
H A DDWARFDie.cpp253 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local
254 if (AbbrevDecl) in find()
255 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U); in find()
263 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local
264 if (AbbrevDecl) { in find()
266 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U)) in find()
616 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in dump() local
617 if (AbbrevDecl) { in dump()
622 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFLinkerCompileUnit.h
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.h515 auto AbbrevDecl = Die->getAbbreviationDeclarationPtr(); in find() local
516 if (AbbrevDecl) { in find()
518 if (auto Value = AbbrevDecl->getAttributeValue(Die->getOffset(), Attr, in find()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp106 for (const DWARFYAML::Abbrev &AbbrevDecl : DebugAbbrev[Index].Table) { in getAbbrevTableContentByIndex() local
107 AbbrevCode = AbbrevDecl.Code ? (uint64_t)*AbbrevDecl.Code : AbbrevCode + 1; in getAbbrevTableContentByIndex()
109 encodeULEB128(AbbrevDecl.Tag, OS); in getAbbrevTableContentByIndex()
110 OS.write(AbbrevDecl.Children); in getAbbrevTableContentByIndex()
111 for (const auto &Attr : AbbrevDecl.Attributes) { in getAbbrevTableContentByIndex()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.cpp396 if (const DWARFAbbreviationDeclaration *AbbrevDecl = in processOneDie() local
398 if (AbbrevDecl) in processOneDie()
400 AbbrevDecl->attributes()) in processOneDie()