Home
last modified time | relevance | path

Searched refs:OffsetEntryCount (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFListTable.cpp50 HeaderData.OffsetEntryCount = Data.getU32(OffsetPtr); in extract()
68 HeaderData.OffsetEntryCount * OffsetByteSize) in extract()
72 SectionName.data(), HeaderOffset, HeaderData.OffsetEntryCount); in extract()
74 *OffsetPtr += HeaderData.OffsetEntryCount * OffsetByteSize; in extract()
90 HeaderData.OffsetEntryCount); in dump()
92 if (HeaderData.OffsetEntryCount > 0) { in dump()
94 for (uint32_t I = 0; I < HeaderData.OffsetEntryCount; ++I) { in dump()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h70 uint32_t OffsetEntryCount; member
96 uint32_t getOffsetEntryCount() const { return HeaderData.OffsetEntryCount; } in getOffsetEntryCount()
116 if (Index >= HeaderData.OffsetEntryCount) in getOffsetEntry()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp956 uint32_t OffsetEntryCount; in writeDWARFLists() local
957 if (Table.OffsetEntryCount) in writeDWARFLists()
958 OffsetEntryCount = *Table.OffsetEntryCount; in writeDWARFLists()
960 OffsetEntryCount = Table.Offsets ? Table.Offsets->size() : Offsets.size(); in writeDWARFLists()
962 OffsetEntryCount * (Table.Format == dwarf::DWARF64 ? 8 : 4); in writeDWARFLists()
974 writeInteger((uint32_t)OffsetEntryCount, OS, IsLittleEndian); in writeDWARFLists()
986 else if (OffsetEntryCount != 0) in writeDWARFLists()
H A DDWARFYAML.cpp322 IO.mapOptional("OffsetEntryCount", ListTable.OffsetEntryCount); in mapping()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDWARFListTableTest.cpp76 TEST(DWARFListTableHeader, OffsetEntryCount) { in TEST() argument
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/DWARF/
H A Ddebug-rnglists.yaml243 OffsetEntryCount: 4
655 ## u) Test that when the "OffsetEntryCount" is specified to be 0 and "Offsets" is not specified,
680 - OffsetEntryCount: [[ENTRYCOUNT=<none>]]
690 ## v) Test that when the "Offsets" entry is specified to be empty and the "OffsetEntryCount" is not…
698 ## the "OffsetEntryCount" is specified to be 0.
H A Ddebug-loclists.yaml336 OffsetEntryCount: 4
825 ## w) Test that when the "OffsetEntryCount" is specified to be 0 and "Offsets" is not specified,
854 - OffsetEntryCount: [[OFFSETENTRIES=<none>]]
863 ## x) Test that when the "Offsets" entry is specified to be empty and the "OffsetEntryCount" is not…
871 ## the "OffsetEntryCount" is specified to be 0.
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/
H A DDW_AT_range-DW_FORM_sec_offset.s34 …ute, but range extraction failed (invalid range list table index 0; OffsetEntryCount is 0, DW_AT_r…
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h205 Optional<uint32_t> OffsetEntryCount; member
/llvm-project-15.0.7/bolt/lib/Core/
H A DDebugData.cpp184 OffsetEntryCountType OffsetEntryCount; member
205 support::endian::write(*HeaderStream, Header.OffsetEntryCount, in getDWARF5Header()