Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h31 const DWARFAbbreviationDeclaration *AbbrevDecl = nullptr; variable
50 return AbbrevDecl ? AbbrevDecl->getTag() : dwarf::DW_TAG_null; in getTag()
53 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren()
56 return AbbrevDecl; in getAbbreviationDeclarationPtr()
DDWARFDie.h73 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in getTag() local
74 if (AbbrevDecl) in getTag()
75 return AbbrevDecl->getTag(); in getTag()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h31 const DWARFAbbreviationDeclaration *AbbrevDecl = nullptr; variable
50 return AbbrevDecl ? AbbrevDecl->getTag() : dwarf::DW_TAG_null; in getTag()
53 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren()
56 return AbbrevDecl; in getAbbreviationDeclarationPtr()
DDWARFDie.h73 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in getTag() local
74 if (AbbrevDecl) in getTag()
75 return AbbrevDecl->getTag(); in getTag()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h36 const DWARFAbbreviationDeclaration *AbbrevDecl; variable
39 : Offset(0), SiblingIdx(0), AbbrevDecl(nullptr) {} in DWARFDebugInfoEntryMinimal()
51 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; } in getTag()
52 bool isNULL() const { return AbbrevDecl == nullptr; } in isNULL()
61 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } in hasChildren()
86 return AbbrevDecl; in getAbbreviationDeclarationPtr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp38 AbbrevDecl = nullptr; in extractFast()
41 AbbrevDecl = U.getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
42 if (nullptr == AbbrevDecl) { in extractFast()
49 if (Optional<size_t> FixedSize = AbbrevDecl->getFixedAttributesByteSize(U)) { in extractFast()
55 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in extractFast()
DDWARFDie.cpp337 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local
338 if (AbbrevDecl) in find()
339 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U); in find()
347 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local
348 if (AbbrevDecl) { in find()
350 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U)) in find()
590 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in dump() local
591 if (AbbrevDecl) { in dump()
596 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
600 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dump()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp38 AbbrevDecl = nullptr; in extractFast()
42 AbbrevDecl = AbbrevSet->getAbbreviationDeclaration(AbbrCode); in extractFast()
43 if (nullptr == AbbrevDecl) { in extractFast()
50 if (Optional<size_t> FixedSize = AbbrevDecl->getFixedAttributesByteSize(U)) { in extractFast()
56 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in extractFast()
DDWARFDie.cpp347 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local
348 if (AbbrevDecl) in find()
349 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U); in find()
357 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local
358 if (AbbrevDecl) { in find()
360 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U)) in find()
626 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in dump() local
627 if (AbbrevDecl) { in dump()
632 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
636 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dump()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp47 if (AbbrevDecl) { in dump()
56 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
59 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dump()
194 AbbrevDecl = nullptr; in extractFast()
197 AbbrevDecl = U->getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
198 if (nullptr == AbbrevDecl) { in extractFast()
208 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in extractFast()
236 if (!AbbrevDecl) in getAttributeValue()
239 uint32_t AttrIdx = AbbrevDecl->findAttributeIndex(Attr); in getAttributeValue()
251 DWARFFormValue::skipValue(AbbrevDecl->getFormByIndex(i), in getAttributeValue()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp79 for (auto AbbrevDecl : DI.AbbrevDecls) { in EmitDebugAbbrev() local
80 encodeULEB128(AbbrevDecl.Code, OS); in EmitDebugAbbrev()
81 encodeULEB128(AbbrevDecl.Tag, OS); in EmitDebugAbbrev()
82 OS.write(AbbrevDecl.Children); in EmitDebugAbbrev()
83 for (auto Attr : AbbrevDecl.Attributes) { in EmitDebugAbbrev()
/external/llvm-project/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp240 auto AbbrevDecl = DIE.getAbbreviationDeclarationPtr(); in dumpDebugInfo() local
241 if (AbbrevDecl) { in dumpDebugInfo()
242 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dumpDebugInfo()
/external/llvm-project/llvm/lib/ObjectYAML/
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()