Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp111 const DWARFAttribute &AttrValue, unsigned Indent, in dumpAttribute() argument
118 dwarf::Attribute Attr = AttrValue.Attr; in dumpAttribute()
121 dwarf::Form Form = AttrValue.Value.getForm(); in dumpAttribute()
126 const DWARFFormValue &FormValue = AttrValue.Value; in dumpAttribute()
611 for (const DWARFAttribute &AttrValue : attributes()) in dump() local
612 dumpAttribute(OS, *this, AttrValue, Indent, DumpOpts); in dump()
680 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize(); in attribute_iterator()
691 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index); in updateForIndex()
693 AttrValue.Offset += AttrValue.ByteSize; in updateForIndex()
694 uint64_t ParseOffset = AttrValue.Offset; in updateForIndex()
[all …]
H A DDWARFVerifier.cpp255 for (auto AttrValue : Die.attributes()) { in verifyUnitContents() local
256 NumUnitErrors += verifyDebugInfoAttribute(Die, AttrValue); in verifyUnitContents()
257 NumUnitErrors += verifyDebugInfoForm(Die, AttrValue, UnitLocalReferences, in verifyUnitContents()
657 DWARFAttribute &AttrValue) { in verifyDebugInfoAttribute() argument
669 const auto Attr = AttrValue.Attr; in verifyDebugInfoAttribute()
673 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute()
693 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute()
770 if (auto FileIdx = AttrValue.Value.getAsUnsignedConstant()) { in verifyDebugInfoAttribute()
811 if (!AttrValue.Value.getAsUnsignedConstant()) { in verifyDebugInfoAttribute()
826 DWARFAttribute &AttrValue, in verifyDebugInfoForm() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h306 DWARFAttribute AttrValue; variable
326 explicit operator bool() const { return AttrValue.isValid(); }
327 const DWARFAttribute &operator*() const { return AttrValue; }
H A DDWARFVerifier.h203 DWARFAttribute &AttrValue);
217 unsigned verifyDebugInfoForm(const DWARFDie &Die, DWARFAttribute &AttrValue,
/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h812 struct AttrValue { struct
824 SmallVector<AttrValue, 3> attrValues; argument
H A DSyntheticSections.cpp2772 DebugNamesBaseSection::AttrValue attr, cuAttr = {0, 0}; in readEntry()
3077 for (AttrValue value : ie.attrValues) in computeEntryPool()
3303 for (AttrValue value : ie.attrValues) { in writeTo()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp179 int AttrValue = 0; in getStringFnAttrAsInt() local
180 if (!Attr.getValueAsString().getAsInteger(10, AttrValue)) in getStringFnAttrAsInt()
181 return AttrValue; in getStringFnAttrAsInt()