Home
last modified time | relevance | path

Searched refs:DebugInfoData (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.cpp23 const DWARFDataExtractor &DebugInfoData, in extractFast() argument
36 assert(DebugInfoData.isValidOffset(UEndOffset - 1)); in extractFast()
37 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast()
81 } else if (!DWARFFormValue::skipValue(AttrSpec.Form, DebugInfoData, in extractFast()
H A DDWARFAbbreviationDeclaration.cpp172 DWARFDataExtractor DebugInfoData = U.getDebugInfoExtractor(); in getAttributeOffsetFromIndex() local
182 DWARFFormValue::skipValue(AttributeSpecs[CurAttrIdx].Form, DebugInfoData, in getAttributeOffsetFromIndex()
200 DWARFDataExtractor DebugInfoData = U.getDebugInfoExtractor(); in getAttributeValueFromOffset() local
201 if (FormValue.extractValue(DebugInfoData, &Offset, U.getFormParams(), &U)) in getAttributeValueFromOffset()
H A DDWARFFormValue.cpp110 bool DWARFFormValue::skipValue(dwarf::Form Form, DataExtractor DebugInfoData, in skipValue() argument
120 uint64_t size = DebugInfoData.getULEB128(OffsetPtr); in skipValue()
125 uint8_t size = DebugInfoData.getU8(OffsetPtr); in skipValue()
130 uint16_t size = DebugInfoData.getU16(OffsetPtr); in skipValue()
135 uint32_t size = DebugInfoData.getU32(OffsetPtr); in skipValue()
142 DebugInfoData.getCStr(OffsetPtr); in skipValue()
185 DebugInfoData.getSLEB128(OffsetPtr); in skipValue()
196 DebugInfoData.getULEB128(OffsetPtr); in skipValue()
200 DebugInfoData.getULEB128(OffsetPtr); in skipValue()
206 Form = static_cast<dwarf::Form>(DebugInfoData.getULEB128(OffsetPtr)); in skipValue()
H A DDWARFVerifier.cpp139 std::tie(Length, Format) = DebugInfoData.getInitialLength(Offset); in verifyUnitHeader()
141 Version = DebugInfoData.getU16(Offset); in verifyUnitHeader()
144 UnitType = DebugInfoData.getU8(Offset); in verifyUnitHeader()
145 AddrSize = DebugInfoData.getU8(Offset); in verifyUnitHeader()
146 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader()
150 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader()
151 AddrSize = DebugInfoData.getU8(Offset); in verifyUnitHeader()
387 bool hasDIE = DebugInfoData.isValidOffset(Offset); in verifyUnitSection()
401 hasDIE = DebugInfoData.isValidOffset(Offset); in verifyUnitSection()
1722 InfoFormat = DebugInfoData.getInitialLength(&Offset).second; in verifyDebugStrOffsets()
[all …]
H A DDWARFUnit.cpp393 DWARFDataExtractor DebugInfoData = getDebugInfoExtractor(); in extractDIEsToVector() local
395 assert(DebugInfoData.isValidOffset(NextCUOffset - 1)); in extractDIEsToVector()
417 if (!DIE.extractFast(*this, &DIEOffset, DebugInfoData, NextCUOffset, in extractDIEsToVector()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h148 bool skipValue(DataExtractor DebugInfoData, uint64_t *OffsetPtr, in skipValue() argument
150 return DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, Params); in skipValue()
163 static bool skipValue(dwarf::Form Form, DataExtractor DebugInfoData,
H A DDWARFDebugInfoEntry.h42 const DWARFDataExtractor &DebugInfoData, uint64_t UEndOffset,
H A DDWARFVerifier.h126 bool verifyUnitHeader(const DWARFDataExtractor DebugInfoData,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVELFReader.cpp513 DWARFDataExtractor DebugInfoData = in processOneDie() local
526 if (DebugInfoData.isValidOffset(Offset)) { in processOneDie()
593 ProcessAttributes(DIE, DebugInfoData); in processOneDie()
598 DWARFDataExtractor DebugInfoData = in processOneDie() local
601 if (DebugInfoData.isValidOffset(Offset)) in processOneDie()
602 ProcessAttributes(InputDIE, DebugInfoData); in processOneDie()