Lines Matching refs:abbrev
2959 Abbrev abbrev; in computeHdrAndAbbrevTable() local
2962 abbrev.code = oldAbbrev.Code; in computeHdrAndAbbrevTable()
2963 abbrev.tag = oldAbbrev.Tag; in computeHdrAndAbbrevTable()
2968 abbrev.attributes.push_back({a.Index, a.Form}); in computeHdrAndAbbrevTable()
2971 abbrev.attributes.push_back(cuAttr); in computeHdrAndAbbrevTable()
2976 abbrev.Profile(id); in computeHdrAndAbbrevTable()
2984 new (abbrevAlloc.Allocate()) Abbrev(std::move(abbrev)); in computeHdrAndAbbrevTable()
2997 for (Abbrev *abbrev : abbrevTable) { in computeHdrAndAbbrevTable()
2998 encodeULEB128(abbrev->code, os); in computeHdrAndAbbrevTable()
2999 encodeULEB128(abbrev->tag, os); in computeHdrAndAbbrevTable()
3000 for (DWARFDebugNames::AttributeEncoding a : abbrev->attributes) { in computeHdrAndAbbrevTable()
3104 const Abbrev *abbrev = abbrevTable[ie.abbrevCode - 1]; in computeEntryPool() local
3105 for (const auto &[a, v] : zip_equal(abbrev->attributes, ie.attrValues)) in computeEntryPool()