Searched refs:AbbrCode (Results 1 – 7 of 7) sorted by relevance
44 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() local45 if (0 == AbbrCode) { in extractFast()61 AbbrevDecl = AbbrevSet->getAbbreviationDeclaration(AbbrCode); in extractFast()68 U.getOffset(), AbbrCode, *OffsetPtr, in extractFast()
57 uint32_t AbbrCode) const { in getAbbreviationDeclaration()60 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()65 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()67 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
40 getAbbreviationDeclaration(uint32_t AbbrCode) const;
270 encodeULEB128(Entry.AbbrCode, OS); in writeDIE()271 uint32_t AbbrCode = Entry.AbbrCode; in writeDIE() local272 if (AbbrCode == 0 || Entry.Values.empty()) in writeDIE()286 if (AbbrCode > AbbrevDecls.size()) in writeDIE()291 const DWARFYAML::Abbrev &Abbrev = AbbrevDecls[AbbrCode - 1]; in writeDIE()
196 IO.mapRequired("AbbrCode", Entry.AbbrCode); in mapping()
37 static uint64_t getCUAbbrev(StringRef Abbrev, uint64_t AbbrCode) { in getCUAbbrev() argument40 while (AbbrevData.getULEB128(&Offset) != AbbrCode) { in getCUAbbrev()103 uint32_t AbbrCode = InfoData.getULEB128(&Offset); in getCUIdentifiers() local105 uint64_t AbbrevOffset = getCUAbbrev(Abbrev, AbbrCode); in getCUIdentifiers()
99 llvm::yaml::Hex32 AbbrCode; member