Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/BinaryFormat/
DDwarfTest.cpp148 FormParams Params_2_4_32 = {2, 4, DWARF32}; in TEST()
156 FormParams Params_2_8_32 = {2, 8, DWARF32}; in TEST()
164 FormParams Params_3_4_32 = {3, 4, DWARF32}; in TEST()
169 FormParams Params_4_4_32 = {4, 4, DWARF32}; in TEST()
174 FormParams Params_5_4_32 = {5, 4, DWARF32}; in TEST()
180 FormParams Params_3_8_64 = {3, 8, DWARF64}; in TEST()
185 FormParams Params_4_8_64 = {4, 8, DWARF64}; in TEST()
190 FormParams Params_5_8_64 = {5, 8, DWARF64}; in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFUnit.h51 dwarf::FormParams FormParams; variable
77 const dwarf::FormParams &getFormParams() const { return FormParams; } in getFormParams()
78 uint16_t getVersion() const { return FormParams.Version; } in getVersion()
79 dwarf::DwarfFormat getFormat() const { return FormParams.Format; } in getFormat()
80 uint8_t getAddressByteSize() const { return FormParams.AddrSize; } in getAddressByteSize()
81 uint8_t getRefAddrByteSize() const { return FormParams.getRefAddrByteSize(); } in getRefAddrByteSize()
83 return FormParams.getDwarfOffsetByteSize(); in getDwarfOffsetByteSize()
237 dwarf::FormParams FormParams = {0, 0, dwarf::DwarfFormat::DWARF32}; member
241 : Base(Base), Size(Size), FormParams({Version, 0, Format}) {} in StrOffsetsContributionDescriptor()
243 uint8_t getVersion() const { return FormParams.Version; } in getVersion()
[all …]
DDWARFFormValue.h84 dwarf::FormParams FormParams,
89 dwarf::FormParams FormParams, const DWARFUnit *U) { in extractValue() argument
90 return extractValue(Data, OffsetPtr, FormParams, nullptr, U); in extractValue()
119 const dwarf::FormParams Params) const { in skipValue()
135 const dwarf::FormParams FormParams);
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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
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()
617 dwarf::FormParams FormParams = {Hdr.Version, 0, dwarf::DwarfFormat::DWARF32}; in getEntry() local
619 if (!Value.extractValue(AS, Offset, FormParams)) in getEntry()
DDWARFDebugLine.cpp74 FormParams = dwarf::FormParams({0, 0, DWARF32}); in clear()
198 const dwarf::FormParams &FormParams, in parseV5DirFileTables() argument
218 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
223 if (!Value.skipValue(DebugLineData, OffsetPtr, FormParams)) in parseV5DirFileTables()
244 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
303 FormParams.Format = dwarf::DWARF64; in parse()
311 FormParams.Version = DebugLineData.getU16(OffsetPtr); in parse()
318 FormParams.AddrSize = DebugLineData.getU8(OffsetPtr); in parse()
343 FormParams, Ctx, U, ContentTypes, in parse()
DDWARFUnit.cpp106 FormParams.Format = DWARF32; in extract()
107 FormParams.Version = debug_info.getU16(offset_ptr); in extract()
108 if (FormParams.Version >= 5) { in extract()
110 FormParams.AddrSize = debug_info.getU8(offset_ptr); in extract()
114 FormParams.AddrSize = debug_info.getU8(offset_ptr); in extract()
DDWARFAbbreviationDeclaration.cpp100 if ((ByteSize = dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) { in extract()
DDWARFFormValue.cpp83 const dwarf::FormParams Params) { in skipValue()
206 uint32_t *OffsetPtr, dwarf::FormParams FP, in extractValue()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DDwarf.h495 struct FormParams { struct
533 Optional<uint8_t> getFixedFormByteSize(dwarf::Form Form, FormParams Params); argument
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DDwarfGenerator.cpp165 P.FormParams.AddrSize = AddrSize; in createBasicPrologue()
172 P.FormParams.Format = DWARF64; in createBasicPrologue()
174 P.FormParams.Version = Version; in createBasicPrologue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/BinaryFormat/
DDwarf.cpp597 FormParams Params) { in getFixedFormByteSize()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDIE.cpp430 dwarf::FormParams Params = {0, 0, dwarf::DWARF32}; in SizeOf()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp188 dwarf::FormParams({Version, AddrSize, Format})); in getCUIdentifiers()