Searched refs:m_header (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugArangeSet.cpp | 24 m_header.length = 0; in Clear() 25 m_header.version = 0; in Clear() 26 m_header.cu_offset = 0; in Clear() 27 m_header.addr_size = 0; in Clear() 28 m_header.seg_size = 0; in Clear() 56 if (m_header.length > 0) in extract() 71 if (m_header.version < 2 || m_header.version > 5) in extract() 75 if (m_header.addr_size != 4 && m_header.addr_size != 8) in extract() 79 if (m_header.length == 0) in extract() 83 if (!data.ValidOffset(m_offset + sizeof(m_header.length) + m_header.length - in extract() [all …]
|
| H A D | DWARFUnit.h | 140 dw_offset_t GetOffset() const { return m_header.GetOffset(); } in GetOffset() 156 dw_offset_t GetNextUnitOffset() const { return m_header.GetNextUnitOffset(); } in GetNextUnitOffset() 160 dw_offset_t GetLength() const { return m_header.GetLength(); } in GetLength() 161 uint16_t GetVersion() const { return m_header.GetVersion(); } in GetVersion() 164 uint8_t GetAddressByteSize() const { return m_header.GetAddressByteSize(); } in GetAddressByteSize() 235 uint8_t GetUnitType() const { return m_header.GetUnitType(); } in GetUnitType() 236 bool IsTypeUnit() const { return m_header.IsTypeUnit(); } in IsTypeUnit() 337 DWARFUnitHeader m_header; variable
|
| H A D | DWARFTypeUnit.h | 27 uint64_t GetTypeHash() { return m_header.GetTypeHash(); } in GetTypeHash() 29 dw_offset_t GetTypeOffset() { return GetOffset() + m_header.GetTypeOffset(); } in GetTypeOffset()
|
| H A D | DWARFDebugArangeSet.h | 51 const Header &GetHeader() const { return m_header; } in GetHeader() 64 Header m_header; variable
|
| H A D | DWARFUnit.cpp | 39 : UserID(uid), m_dwarf(dwarf), m_header(header), m_abbrevs(&abbrevs), in DWARFUnit() 343 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.GetIndexEntry()) { in SetDwoStrOffsetsBase() 487 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.GetIndexEntry()) { in SetLoclistsBase() 531 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.GetIndexEntry()) { in GetLocationData() 544 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.GetIndexEntry()) { in GetRnglistData() 1050 switch (m_header.GetUnitType()) { in GetHeaderByteSize() 1087 data.setAddressSize(m_header.GetAddressByteSize()); in FindRnglistFromOffset()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 72 if (m_header) in ParseHeader() 106 m_header.emplace(); in ParseHeader() 108 ctf_header_t &ctf_header = *m_header; in ParseHeader() 285 lldb::offset_t offset = m_body_offset + m_header->stroff + str_offset; in ReadString() 723 lldb::offset_t type_offset = m_body_offset + m_header->typeoff; in ParseTypes() 724 const lldb::offset_t type_offset_end = m_body_offset + m_header->stroff; in ParseTypes() 767 lldb::offset_t function_offset = m_body_offset + m_header->funcoff; in ParseFunctions() 768 const lldb::offset_t function_offset_end = m_body_offset + m_header->typeoff; in ParseFunctions() 882 lldb::offset_t object_offset = m_body_offset + m_header->objtoff; in ParseObjects() 883 const lldb::offset_t object_offset_end = m_body_offset + m_header->funcoff; in ParseObjects()
|
| H A D | SymbolFileCTF.h | 242 std::optional<ctf_header_t> m_header; variable
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ObjectFileELF.cpp | 696 return ((m_header.e_type & ET_EXEC) != 0) || (m_header.e_entry != 0); in IsExecutable() 746 if (m_header.e_ident[EI_DATA] == ELFDATA2MSB) in GetByteOrder() 748 if (m_header.e_ident[EI_DATA] == ELFDATA2LSB) in GetByteOrder() 795 return m_header.Parse(m_data, &offset); in ParseHeader() 928 addr_t offset = m_header.e_entry; in GetEntryPointAddress() 1055 return GetProgramHeaderInfo(m_program_headers, m_data, m_header) != 0; in ParseProgramHeaders() 2620 return ParsePLTRelocations(symbol_table, start_id, rel_type, &m_header, in ParseTrampolineSymbols() 2888 ApplyRelocations(thetab, &m_header, rel_hdr, symtab_hdr, debug_hdr, in RelocateDebugSections() 3145 DumpELFHeader(s, m_header); in Dump() 3432 switch (m_header.e_type) { in CalculateType() [all …]
|
| H A D | ObjectFileELF.h | 198 elf::ELFHeader m_header; variable
|