Searched refs:AbbrevDecl (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
D | DWARFDebugInfoEntry.cpp | 33 if (AbbrevDecl) { in dump() 40 AbbrevDecl->hasChildren() ? '*' : ' '); in dump() 43 const uint32_t numAttributes = AbbrevDecl->getNumAttributes(); in dump() 45 uint16_t attr = AbbrevDecl->getAttrByIndex(i); in dump() 46 uint16_t form = AbbrevDecl->getFormByIndex(i); in dump() 109 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode); in extractFast() 112 const uint32_t numAttributes = AbbrevDecl->getNumAttributes(); in extractFast() 116 form = AbbrevDecl->getFormByIndex(i); in extractFast() 203 AbbrevDecl = NULL; in extractFast() 223 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode); in extract() [all …]
|
D | DWARFDebugInfoEntry.h | 35 const DWARFAbbreviationDeclaration *AbbrevDecl; variable 38 : Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {} in DWARFDebugInfoEntryMinimal() 53 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; } in getTag() 54 bool isNULL() const { return AbbrevDecl == 0; } in isNULL() 57 return !isNULL() ? AbbrevDecl->getNumAttributes() : 0; in getNumAttributes() 59 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } in hasChildren() 106 return AbbrevDecl; in getAbbreviationDeclarationPtr()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.h | 32 const DWARFAbbreviationDeclaration *AbbrevDecl = nullptr; variable 51 return AbbrevDecl ? AbbrevDecl->getTag() : dwarf::DW_TAG_null; in getTag() 54 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren() 57 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-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.cpp | 39 AbbrevDecl = nullptr; in extractFast() 42 AbbrevDecl = U.getAbbreviations()->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 | 294 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local 295 if (AbbrevDecl) in find() 296 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U); in find() 304 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in find() local 305 if (AbbrevDecl) { in find() 307 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U)) in find() 503 auto AbbrevDecl = getAbbreviationDeclarationPtr(); in dump() local 504 if (AbbrevDecl) { in dump() 509 AbbrevDecl->hasChildren() ? '*' : ' '); in dump() 513 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-7.0/llvm/lib/ObjectYAML/ |
D | DWARFEmitter.cpp | 80 for (auto AbbrevDecl : DI.AbbrevDecls) { in EmitDebugAbbrev() local 81 encodeULEB128(AbbrevDecl.Code, OS); in EmitDebugAbbrev() 82 encodeULEB128(AbbrevDecl.Tag, OS); in EmitDebugAbbrev() 83 OS.write(AbbrevDecl.Children); in EmitDebugAbbrev() 84 for (auto Attr : AbbrevDecl.Attributes) { in EmitDebugAbbrev()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 136 auto AbbrevDecl = DIE.getAbbreviationDeclarationPtr(); in dumpDebugInfo() local 137 if (AbbrevDecl) { in dumpDebugInfo() 138 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dumpDebugInfo()
|