Home
last modified time | relevance | path

Searched refs:AttributeSpecs (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.h105 return attr_iterator_range(AttributeSpecs.begin(), AttributeSpecs.end()); in attributes()
109 assert(idx < AttributeSpecs.size()); in getFormByIndex()
110 return AttributeSpecs[idx].Form; in getFormByIndex()
114 return AttributeSpecs.size(); in getNumAttributes()
118 assert(idx < AttributeSpecs.size()); in getAttrByIndex()
119 return AttributeSpecs[idx].Attr; in getAttrByIndex()
123 assert(idx < AttributeSpecs.size()); in getAttrIsImplicitConstByIndex()
124 return AttributeSpecs[idx].isImplicitConst(); in getAttrIsImplicitConstByIndex()
128 assert(idx < AttributeSpecs.size()); in getAttrImplicitConstValueByIndex()
129 return AttributeSpecs[idx].getImplicitConstValue(); in getAttrImplicitConstValueByIndex()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp29 AttributeSpecs.clear(); in clear()
99 AttributeSpecs.push_back(AttributeSpec(A, F, V)); in extract()
141 AttributeSpecs.push_back(AttributeSpec(A, F, ByteSize)); in extract()
152 for (const AttributeSpec &Spec : AttributeSpecs) { in dump()
163 for (uint32_t i = 0, e = AttributeSpecs.size(); i != e; ++i) { in findAttributeIndex()
164 if (AttributeSpecs[i].Attr == Attr) in findAttributeIndex()
179 if (auto FixedSize = AttributeSpecs[CurAttrIdx].getByteSize(U)) in getAttributeOffsetFromIndex()
182 DWARFFormValue::skipValue(AttributeSpecs[CurAttrIdx].Form, DebugInfoData, in getAttributeOffsetFromIndex()
190 assert(AttributeSpecs.size() > AttrIndex && in getAttributeValueFromOffset()
194 const AttributeSpec &Spec = AttributeSpecs[AttrIndex]; in getAttributeValueFromOffset()