Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h51 dwarf::FormParams FormParams; variable
78 const dwarf::FormParams &getFormParams() const { return FormParams; } in getFormParams()
79 uint16_t getVersion() const { return FormParams.Version; } in getVersion()
80 dwarf::DwarfFormat getFormat() const { return FormParams.Format; } in getFormat()
81 uint8_t getAddressByteSize() const { return FormParams.AddrSize; } in getAddressByteSize()
84 return FormParams.getDwarfOffsetByteSize(); in getDwarfOffsetByteSize()
171 dwarf::FormParams FormParams = {0, 0, dwarf::DwarfFormat::DWARF32}; member
175 : Base(Base), Size(Size), FormParams({Version, 0, Format}) {} in StrOffsetsContributionDescriptor()
177 uint8_t getVersion() const { return FormParams.Version; } in getVersion()
180 return FormParams.getDwarfOffsetByteSize(); in getDwarfOffsetByteSize()
[all …]
H A DDWARFFormValue.h87 dwarf::FormParams FormParams,
92 dwarf::FormParams FormParams, const DWARFUnit *U) { in extractValue() argument
93 return extractValue(Data, OffsetPtr, FormParams, nullptr, U); in extractValue()
123 const dwarf::FormParams Params) const { in skipValue()
139 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()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp119 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32}; in readAtoms() local
123 FormValue.extractValue(AccelSection, &HashDataOffset, FormParams); in readAtoms()
168 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32}; in dumpName() local
188 if (Atom.extractValue(AccelSection, DataOffset, FormParams)) { in dumpName()
271 dwarf::FormParams FormParams = {AccelTable.Hdr.Version, 0, in extract() local
274 Atom.extractValue(AccelTable.AccelSection, Offset, FormParams); in extract()
615 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32}; in getEntry() local
617 if (!Value.extractValue(AS, Offset, FormParams)) in getEntry()
H A DDWARFDebugLine.cpp75 FormParams = dwarf::FormParams({0, 0, DWARF32}); in clear()
199 const dwarf::FormParams &FormParams, in parseV5DirFileTables() argument
219 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
224 if (!Value.skipValue(DebugLineData, OffsetPtr, FormParams)) in parseV5DirFileTables()
245 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
286 FormParams.Format = dwarf::DWARF64; in parse()
294 FormParams.Version = DebugLineData.getU16(OffsetPtr); in parse()
302 FormParams.AddrSize = DebugLineData.getU8(OffsetPtr); in parse()
327 FormParams, Ctx, U, ContentTypes, in parse()
H A DDWARFUnit.cpp248 FormParams.Format = DWARF32; in extract()
249 FormParams.Version = debug_info.getU16(offset_ptr); in extract()
250 if (FormParams.Version >= 5) { in extract()
252 FormParams.AddrSize = debug_info.getU8(offset_ptr); in extract()
256 FormParams.AddrSize = debug_info.getU8(offset_ptr); in extract()
H A DDWARFAbbreviationDeclaration.cpp100 if ((ByteSize = dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) { in extract()
H A DDWARFFormValue.cpp83 const dwarf::FormParams Params) { in skipValue()
206 uint32_t *OffsetPtr, dwarf::FormParams FP, in extractValue()
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DDwarf.h499 struct FormParams { struct
537 Optional<uint8_t> getFixedFormByteSize(dwarf::Form Form, FormParams Params); argument
/freebsd-12.1/contrib/llvm/lib/BinaryFormat/
H A DDwarf.cpp627 FormParams Params) { in getFixedFormByteSize()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp432 dwarf::FormParams Params = {0, 0, dwarf::DWARF32}; in SizeOf()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileToAtoms.cpp909 llvm::dwarf::FormParams formParams = {version, addrSize, Format}; in readCompUnit()