Home
last modified time | relevance | path

Searched refs:AttrValue (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDie.cpp237 const DWARFAttribute &AttrValue, unsigned Indent, in dumpAttribute() argument
244 dwarf::Attribute Attr = AttrValue.Attr; in dumpAttribute()
247 dwarf::Form Form = AttrValue.Value.getForm(); in dumpAttribute()
252 const DWARFFormValue &FormValue = AttrValue.Value; in dumpAttribute()
650 for (const DWARFAttribute &AttrValue : attributes()) in dump() local
651 dumpAttribute(OS, *this, AttrValue, Indent, DumpOpts); in dump()
719 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize(); in attribute_iterator()
730 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index); in updateForIndex()
732 AttrValue.Offset += AttrValue.ByteSize; in updateForIndex()
733 uint64_t ParseOffset = AttrValue.Offset; in updateForIndex()
[all …]
DDWARFVerifier.cpp170 for (auto AttrValue : Die.attributes()) { in verifyUnitContents() local
171 NumUnitErrors += verifyDebugInfoAttribute(Die, AttrValue); in verifyUnitContents()
172 NumUnitErrors += verifyDebugInfoForm(Die, AttrValue); in verifyUnitContents()
465 DWARFAttribute &AttrValue) { in verifyDebugInfoAttribute() argument
474 const auto Attr = AttrValue.Attr; in verifyDebugInfoAttribute()
478 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute()
494 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute()
552 if (auto FileIdx = AttrValue.Value.getAsUnsignedConstant()) { in verifyDebugInfoAttribute()
590 DWARFAttribute &AttrValue) { in verifyDebugInfoForm() argument
594 const auto Form = AttrValue.Value.getForm(); in verifyDebugInfoForm()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFVerifier.h197 DWARFAttribute &AttrValue);
211 unsigned verifyDebugInfoForm(const DWARFDie &Die, DWARFAttribute &AttrValue);
DDWARFDie.h306 DWARFAttribute AttrValue; variable
326 explicit operator bool() const { return AttrValue.isValid(); }
327 const DWARFAttribute &operator*() const { return AttrValue; }