/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.h | 31 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()
|
D | DWARFDie.h | 73 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/ |
D | DWARFDebugInfoEntry.h | 31 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()
|
D | DWARFDie.h | 73 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in getTag() local 74 if (AbbrevDecl) in getTag() 75 return AbbrevDecl->getTag(); in getTag()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.h | 36 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/ |
D | DWARFDebugInfoEntry.cpp | 38 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()
|
D | DWARFDie.cpp | 337 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/ |
D | DWARFDebugInfoEntry.cpp | 38 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()
|
D | DWARFDie.cpp | 347 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/ |
D | DWARFDebugInfoEntry.cpp | 47 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/ |
D | DWARFEmitter.cpp | 79 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/ |
D | dwarf2yaml.cpp | 240 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/ |
D | DWARFEmitter.cpp | 108 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()
|