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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFVerifier.h192 /// \param AttrValue The DWARF attribute value to check
197 DWARFAttribute &AttrValue);
207 /// \param AttrValue The DWARF attribute value to check
211 unsigned verifyDebugInfoForm(const DWARFDie &Die, DWARFAttribute &AttrValue);
H A DDWARFDie.h293 DWARFAttribute AttrValue; member in class:llvm::DWARFDie::attribute_iterator
301 /// attribute is able to be read, update AttrValue and the Index member
313 explicit operator bool() const { return AttrValue.isValid(); }
314 const DWARFAttribute &operator*() const { return AttrValue; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp170 for (auto AttrValue : Die.attributes()) {
171 NumUnitErrors += verifyDebugInfoAttribute(Die, AttrValue);
172 NumUnitErrors += verifyDebugInfoForm(Die, AttrValue);
448 DWARFAttribute &AttrValue) {
457 const auto Attr = AttrValue.Attr;
461 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) {
470 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) {
533 DWARFAttribute &AttrValue) {
537 const auto Form = AttrValue.Value.getForm();
545 Optional<uint64_t> RefVal = AttrValue
447 verifyDebugInfoAttribute(const DWARFDie &Die, DWARFAttribute &AttrValue) argument
532 verifyDebugInfoForm(const DWARFDie &Die, DWARFAttribute &AttrValue) argument
[all...]
H A DDWARFDie.cpp677 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize();
688 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index);
690 AttrValue.Offset += AttrValue.ByteSize;
691 uint64_t ParseOffset = AttrValue.Offset;
694 AttrValue.Value = DWARFFormValue::createFromUnit(
696 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
699 AttrValue = {};

Completed in 158 milliseconds