Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
DDWARFDie.cpp110 const DWARFAttribute &AttrValue, unsigned Indent, in dumpAttribute() argument
117 dwarf::Attribute Attr = AttrValue.Attr; in dumpAttribute()
120 dwarf::Form Form = AttrValue.Value.getForm(); in dumpAttribute()
125 const DWARFFormValue &FormValue = AttrValue.Value; in dumpAttribute()
597 for (const DWARFAttribute &AttrValue : attributes()) in dump() local
598 dumpAttribute(OS, *this, AttrValue, Indent, DumpOpts); in dump()
666 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize(); in attribute_iterator()
677 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index); in updateForIndex()
679 AttrValue.Offset += AttrValue.ByteSize; in updateForIndex()
680 uint64_t ParseOffset = AttrValue.Offset; in updateForIndex()
[all …]
DDWARFVerifier.cpp213 for (auto AttrValue : Die.attributes()) { in verifyUnitContents() local
214 NumUnitErrors += verifyDebugInfoAttribute(Die, AttrValue); in verifyUnitContents()
215 NumUnitErrors += verifyDebugInfoForm(Die, AttrValue, UnitLocalReferences, in verifyUnitContents()
570 DWARFAttribute &AttrValue) { in verifyDebugInfoAttribute() argument
580 const auto Attr = AttrValue.Attr; in verifyDebugInfoAttribute()
584 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute()
602 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute()
674 if (auto FileIdx = AttrValue.Value.getAsUnsignedConstant()) { in verifyDebugInfoAttribute()
709 if (!AttrValue.Value.getAsUnsignedConstant()) { in verifyDebugInfoAttribute()
722 DWARFAttribute &AttrValue, in verifyDebugInfoForm() argument
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
DDWARFVerifier.h189 DWARFAttribute &AttrValue);
203 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; }
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DInlineCost.cpp168 int AttrValue = 0; in getStringFnAttrAsInt() local
169 if (!Attr.getValueAsString().getAsInteger(10, AttrValue)) in getStringFnAttrAsInt()
170 return AttrValue; in getStringFnAttrAsInt()