Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp24 DWARFDataExtractor DebugInfoData = U.getDebugInfoExtractor(); in extractFast() local
26 return extractFast(U, OffsetPtr, DebugInfoData, UEndOffset, 0); in extractFast()
30 const DWARFDataExtractor &DebugInfoData, in extractFast() argument
34 if (Offset >= UEndOffset || !DebugInfoData.isValidOffset(Offset)) in extractFast()
36 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast()
61 } else if (!DWARFFormValue::skipValue(AttrSpec.Form, DebugInfoData, in extractFast()
DDWARFFormValue.cpp81 bool DWARFFormValue::skipValue(dwarf::Form Form, DataExtractor DebugInfoData, in skipValue() argument
91 uint64_t size = DebugInfoData.getULEB128(OffsetPtr); in skipValue()
96 uint8_t size = DebugInfoData.getU8(OffsetPtr); in skipValue()
101 uint16_t size = DebugInfoData.getU16(OffsetPtr); in skipValue()
106 uint32_t size = DebugInfoData.getU32(OffsetPtr); in skipValue()
113 DebugInfoData.getCStr(OffsetPtr); in skipValue()
153 DebugInfoData.getSLEB128(OffsetPtr); in skipValue()
164 DebugInfoData.getULEB128(OffsetPtr); in skipValue()
169 Form = static_cast<dwarf::Form>(DebugInfoData.getULEB128(OffsetPtr)); in skipValue()
DDWARFVerifier.cpp110 bool DWARFVerifier::verifyUnitHeader(const DWARFDataExtractor DebugInfoData, in verifyUnitHeader() argument
125 Length = DebugInfoData.getU32(Offset); in verifyUnitHeader()
133 Version = DebugInfoData.getU16(Offset); in verifyUnitHeader()
136 UnitType = DebugInfoData.getU8(Offset); in verifyUnitHeader()
137 AddrSize = DebugInfoData.getU8(Offset); in verifyUnitHeader()
138 AbbrOffset = DebugInfoData.getU32(Offset); in verifyUnitHeader()
142 AbbrOffset = DebugInfoData.getU32(Offset); in verifyUnitHeader()
143 AddrSize = DebugInfoData.getU8(Offset); in verifyUnitHeader()
149 ValidLength = DebugInfoData.isValidOffset(OffsetStart + Length + 3); in verifyUnitHeader()
259 DWARFDataExtractor DebugInfoData(DObj, DObj.getInfoSection(), in handleDebugInfo() local
[all …]
DDWARFAbbreviationDeclaration.cpp158 auto DebugInfoData = U.getDebugInfoExtractor(); in getAttributeValue() local
172 if (FormValue.extractValue(DebugInfoData, &Offset, U.getFormParams(), &U)) in getAttributeValue()
179 DWARFFormValue::skipValue(Spec.Form, DebugInfoData, &Offset, in getAttributeValue()
DDWARFUnit.cpp218 DWARFDataExtractor DebugInfoData = getDebugInfoExtractor(); in extractDIEsToVector() local
222 while (DIE.extractFast(*this, &DIEOffset, DebugInfoData, NextCUOffset, in extractDIEsToVector()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp187 DataExtractor DebugInfoData = U->getDebugInfoExtractor(); in extractFast() local
189 if (Offset >= UEndOffset || !DebugInfoData.isValidOffset(Offset)) in extractFast()
191 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast()
215 else if (!DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, U)) { in extractFast()
243 DataExtractor DebugInfoData = U->getDebugInfoExtractor(); in getAttributeValue() local
247 DebugInfoData.getULEB128(&DebugInfoOffset); in getAttributeValue()
252 DebugInfoData, &DebugInfoOffset, U); in getAttributeValue()
256 return FormValue.extractValue(DebugInfoData, &DebugInfoOffset, U); in getAttributeValue()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFFormValue.h118 bool skipValue(DataExtractor DebugInfoData, uint32_t *OffsetPtr, in skipValue() argument
120 return DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, Params); in skipValue()
133 static bool skipValue(dwarf::Form Form, DataExtractor DebugInfoData,
DDWARFDebugInfoEntry.h44 const DWARFDataExtractor &DebugInfoData, uint32_t UEndOffset,
DDWARFVerifier.h136 bool verifyUnitHeader(const DWARFDataExtractor DebugInfoData,