Home
last modified time | relevance | path

Searched refs:FormParams (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h51 dwarf::FormParams FormParams; variable
82 const dwarf::FormParams &getFormParams() const { return FormParams; } in getFormParams()
83 uint16_t getVersion() const { return FormParams.Version; } in getVersion()
84 dwarf::DwarfFormat getFormat() const { return FormParams.Format; } in getFormat()
85 uint8_t getAddressByteSize() const { return FormParams.AddrSize; } in getAddressByteSize()
86 uint8_t getRefAddrByteSize() const { return FormParams.getRefAddrByteSize(); } in getRefAddrByteSize()
88 return FormParams.getDwarfOffsetByteSize(); in getDwarfOffsetByteSize()
106 return dwarf::getUnitLengthFieldByteSize(FormParams.Format); in getUnitLengthFieldByteSize()
184 dwarf::FormParams FormParams = {0, 0, dwarf::DwarfFormat::DWARF32}; member
188 : Base(Base), Size(Size), FormParams({Version, 0, Format}) {} in StrOffsetsContributionDescriptor()
[all …]
H A DDWARFFormValue.h96 dwarf::FormParams FormParams,
101 dwarf::FormParams FormParams, const DWARFUnit *U) { in extractValue() argument
102 return extractValue(Data, OffsetPtr, FormParams, nullptr, U); in extractValue()
137 const dwarf::FormParams Params) const { in skipValue()
153 const dwarf::FormParams FormParams);
H A DDWARFDebugLine.h72 dwarf::FormParams FormParams; member
99 const dwarf::FormParams getFormParams() const { return FormParams; } in getFormParams()
100 uint16_t getVersion() const { return FormParams.Version; } in getVersion()
101 uint8_t getAddressSize() const { return FormParams.AddrSize; } in getAddressSize()
102 bool isDWARF64() const { return FormParams.Format == dwarf::DWARF64; } in isDWARF64()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp118 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32}; in readAtoms() local
122 FormValue.extractValue(AccelSection, HashDataOffset, FormParams); in readAtoms()
167 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32}; in dumpName() local
187 if (Atom.extractValue(AccelSection, DataOffset, FormParams)) { in dumpName()
270 dwarf::FormParams FormParams = {AccelTable.Hdr.Version, 0, in extract() local
273 Atom.extractValue(AccelTable.AccelSection, Offset, FormParams); in extract()
627 dwarf::FormParams FormParams = {Hdr.Version, 0, Hdr.Format}; in getEntry() local
629 if (!Value.extractValue(AS, Offset, FormParams)) in getEntry()
H A DDWARFDebugLine.cpp110 FormParams = dwarf::FormParams({0, 0, DWARF32}); in clear()
121 int OffsetDumpWidth = 2 * dwarf::getDwarfOffsetByteSize(FormParams.Format); in dump()
125 << " format: " << dwarf::FormatString(FormParams.Format) << "\n" in dump()
269 uint64_t *OffsetPtr, const dwarf::FormParams &FormParams, in parseV5DirFileTables() argument
287 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
294 if (!Value.skipValue(DebugLineData, OffsetPtr, FormParams)) in parseV5DirFileTables()
314 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
367 std::tie(TotalLength, FormParams.Format) = in parse()
372 FormParams.Version = DebugLineData.getU16(Cursor); in parse()
386 FormParams.AddrSize = DebugLineData.getU8(Cursor); in parse()
[all …]
H A DDWARFUnit.cpp236 std::tie(Length, FormParams.Format) = in extract()
238 FormParams.Version = debug_info.getU16(offset_ptr, &Err); in extract()
239 if (FormParams.Version >= 5) { in extract()
241 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
243 FormParams.getDwarfOffsetByteSize(), offset_ptr, nullptr, &Err); in extract()
246 FormParams.getDwarfOffsetByteSize(), offset_ptr, nullptr, &Err); in extract()
247 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
258 offset_ptr, FormParams.getDwarfOffsetByteSize(), &Err); in extract()
H A DDWARFAbbreviationDeclaration.cpp99 if ((ByteSize = dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) { in extract()
H A DDWARFFormValue.cpp110 const dwarf::FormParams Params) { in skipValue()
245 uint64_t *OffsetPtr, dwarf::FormParams FP, in extractValue()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DDwarf.h648 struct FormParams { struct
691 Optional<uint8_t> getFixedFormByteSize(dwarf::Form Form, FormParams Params);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DDwarf.cpp695 FormParams Params) { in getFixedFormByteSize()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp266 const dwarf::FormParams &Params, in writeDIE()
414 dwarf::FormParams Params = {Unit.Version, AddrSize, Unit.Format}; in emitDebugInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp432 dwarf::FormParams Params = {AP->getDwarfVersion(), in SizeOf()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp317 dwarf::FormParams({Header.Version, Header.AddrSize, Header.Format})); in getCUIdentifiers()