Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.h32 const DWARFAbbreviationDeclaration *AbbrevDecl = nullptr; variable
67 return AbbrevDecl ? AbbrevDecl->getTag() : dwarf::DW_TAG_null; in getTag()
70 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren()
73 return AbbrevDecl; in getAbbreviationDeclarationPtr()
H A DDWARFDie.h72 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in getTag() local
73 if (AbbrevDecl) in getTag()
74 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()
597 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in dump() local
598 if (AbbrevDecl) { in dump()
603 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFLinkerCompileUnit.h
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp108 for (const DWARFYAML::Abbrev &AbbrevDecl : DebugAbbrev[Index].Table) { in getAbbrevTableContentByIndex() local
109 AbbrevCode = AbbrevDecl.Code ? (uint64_t)*AbbrevDecl.Code : AbbrevCode + 1; in getAbbrevTableContentByIndex()
111 encodeULEB128(AbbrevDecl.Tag, OS); in getAbbrevTableContentByIndex()
112 OS.write(AbbrevDecl.Children); in getAbbrevTableContentByIndex()
113 for (const auto &Attr : AbbrevDecl.Attributes) { in getAbbrevTableContentByIndex()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.cpp597 if (const DWARFAbbreviationDeclaration *AbbrevDecl = in processOneDie() local
599 if (AbbrevDecl) in processOneDie()
601 AbbrevDecl->attributes()) in processOneDie()