Home
last modified time | relevance | path

Searched refs:dw_offset_t (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFUnit.h41 dw_offset_t m_offset = 0;
42 dw_offset_t m_length = 0;
44 dw_offset_t m_abbr_offset = 0;
59 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
62 dw_offset_t GetLength() const { return m_length; } in GetLength()
146 dw_offset_t GetFirstDIEOffset() const { in GetFirstDIEOffset()
156 dw_offset_t GetAbbrevOffset() const;
160 dw_offset_t GetLineTableOffset();
166 void SetStrOffsetsBase(dw_offset_t str_offsets_base);
181 DWARFDIE GetDIE(dw_offset_t die_offset);
[all …]
H A DDWARFDebugAbbrev.h31 DWARFAbbreviationDeclarationSet(dw_offset_t offset, uint32_t idx_offset) in DWARFAbbreviationDeclarationSet()
35 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
52 dw_offset_t m_offset;
57 typedef std::map<dw_offset_t, DWARFAbbreviationDeclarationSet>
68 GetAbbreviationDeclarationSet(dw_offset_t cu_abbr_offset) const;
H A DDWARFDebugInfo.h28 typedef dw_offset_t (*Callback)(SymbolFileDWARF *dwarf2Data,
31 const dw_offset_t next_offset,
39 DWARFUnit *GetUnitAtOffset(DIERef::Section section, dw_offset_t cu_offset,
42 dw_offset_t die_offset);
78 uint32_t FindUnitIndex(DIERef::Section section, dw_offset_t offset);
H A DDWARFDebugAranges.h18 typedef lldb_private::RangeDataVector<dw_addr_t, uint32_t, dw_offset_t>
32 void AppendRange(dw_offset_t cu_offset, dw_addr_t low_pc, dw_addr_t high_pc);
38 dw_offset_t FindAddress(dw_addr_t address) const;
43 dw_offset_t OffsetAtIndex(uint32_t idx) const { in OffsetAtIndex()
H A DDWARFDebugInfo.cpp48 std::set<dw_offset_t> cus_with_data; in GetCompileUnitAranges()
50 dw_offset_t offset = m_cu_aranges_up->OffsetAtIndex(n); in GetCompileUnitAranges()
60 dw_offset_t offset = cu->GetOffset(); in GetCompileUnitAranges()
118 dw_offset_t offset) { in FindUnitIndex()
125 [](const std::pair<DIERef::Section, dw_offset_t> &lhs, in FindUnitIndex()
136 dw_offset_t cu_offset, in GetUnitAtOffset()
155 dw_offset_t die_offset) { in GetUnitContainingDIEOffset()
H A DDWARFDebugArangeSet.h47 dw_offset_t FindAddress(dw_addr_t address) const;
50 dw_offset_t GetNextOffset() const { return m_next_offset; } in GetNextOffset()
60 dw_offset_t m_offset;
61 dw_offset_t m_next_offset;
H A DDIERef.h31 dw_offset_t die_offset) in DIERef()
45 dw_offset_t die_offset() const { return m_die_offset; } in die_offset()
92 dw_offset_t m_die_offset;
H A DDWARFDebugInfoEntry.h56 dw_offset_t
59 dw_offset_t *end_attr_offset_ptr = nullptr,
118 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
168 dw_offset_t m_offset; // Offset within the .debug_info/.debug_types
H A DHashedNameToDIE.h55 dw_offset_t die_offset = DW_INVALID_OFFSET;
65 DIEInfo(dw_offset_t o, dw_tag_t t, uint32_t f, uint32_t h);
82 Prologue(dw_offset_t _die_base_offset = 0);
102 dw_offset_t die_base_offset;
H A DDWARFDebugAranges.cpp51 const dw_offset_t cu_offset = set.GetHeader().cu_offset; in extract()
84 void DWARFDebugAranges::AppendRange(dw_offset_t offset, dw_addr_t low_pc, in AppendRange()
99 dw_offset_t DWARFDebugAranges::FindAddress(dw_addr_t address) const { in FindAddress()
H A DDWARFAttribute.h49 void Append(const DWARFFormValue &form_value, dw_offset_t attr_die_offset,
52 dw_offset_t DIEOffsetAtIndex(uint32_t i) const { in DIEOffsetAtIndex()
73 dw_offset_t die_offset;
H A DDWARFDebugRanges.h25 bool FindRanges(const DWARFUnit *cu, dw_offset_t debug_ranges_offset,
36 typedef std::map<dw_offset_t, DWARFRangeList> range_map;
H A DDWARFDebugRanges.cpp32 dw_offset_t debug_ranges_offset = offset; in Extract()
112 dw_offset_t debug_ranges_offset, in FindRanges()
H A DManualDWARFIndex.h23 llvm::DenseSet<dw_offset_t> units_to_avoid = {})
171 llvm::DenseSet<dw_offset_t> m_units_to_avoid;
H A DDWARFDebugInfoEntry.cpp355 const dw_offset_t offset = form_value.Unsigned(); in GetDIENamesAndRanges()
469 dw_offset_t DWARFDebugInfoEntry::GetAttributeValue( in GetAttributeValue()
471 dw_offset_t *end_attr_offset_ptr, in GetAttributeValue()
485 const dw_offset_t attr_offset = offset; in GetAttributeValue()
500 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
510 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
H A DDWARFUnit.cpp422 dw_offset_t DWARFUnit::GetAbbrevOffset() const { in GetAbbrevOffset()
426 dw_offset_t DWARFUnit::GetLineTableOffset() { in GetLineTableOffset()
578 void DWARFUnit::SetStrOffsetsBase(dw_offset_t str_offsets_base) { in SetStrOffsetsBase()
584 dw_offset_t addr_base = GetAddrBase(); in ReadAddressFromDebugAddrSection()
610 const dw_offset_t die_offset) { in CompareDIEOffset()
620 DWARFUnit::GetDIE(dw_offset_t die_offset) { in GetDIE()
1007 DWARFUnit::FindRnglistFromOffset(dw_offset_t offset) { in FindRnglistFromOffset()
1035 dw_offset_t addr_base = GetAddrBase(); in FindRnglistFromOffset()
H A DSymbolFileDWARF.h450 dw_offset_t spec_block_die_offset);
454 dw_offset_t spec_block_die_offset);
479 void GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset,
480 dw_offset_t max_die_offset, uint32_t type_mask,
553 llvm::DenseMap<dw_offset_t, lldb_private::FileSpecList>
H A DDWARFDataExtractor.cpp19 dw_offset_t
H A DDWARFDataExtractor.h28 dw_offset_t GetDWARFOffset(lldb::offset_t *offset_ptr) const;
H A DDWARFTypeUnit.h23 dw_offset_t GetTypeOffset() { return GetOffset() + m_header.GetTypeOffset(); } in GetTypeOffset()
H A DDIERef.cpp37 dw_offset_t die_offset = data.GetU32(offset_ptr); in Decode()
H A DDWARFAttribute.cpp31 dw_offset_t attr_die_offset, dw_attr_t attr) { in Append()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h76 const std::function<bool(lldb::addr_t, uint32_t, dw_offset_t)> &callback);
87 dw_offset_t cie_offset;
97 dw_offset_t inst_offset; // offset of CIE instructions in mCFIData
106 CIE(dw_offset_t offset) in CIE()
116 typedef std::map<dw_offset_t, CIESP> cie_map_t;
121 typedef RangeDataVector<lldb::addr_t, uint32_t, dw_offset_t> FDEEntryMap;
133 const CIE *GetCIE(dw_offset_t cie_offset);
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A Ddwarf.h33 typedef uint32_t dw_offset_t; // Dwarf Debug Information Entry offset for any typedef
37 #define DW_INVALID_OFFSET (~(dw_offset_t)0)
/llvm-project-15.0.7/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp233 DWARFCallFrameInfo::GetCIE(dw_offset_t cie_offset) { in GetCIE()
247 DWARFCallFrameInfo::ParseCIE(const dw_offset_t cie_offset) { in ParseCIE()
253 dw_offset_t cie_id, end_offset; in ParseCIE()
439 const dw_offset_t current_entry = offset; in GetFDEIndex()
440 dw_offset_t cie_id, next_entry, cie_offset; in GetFDEIndex()
525 bool DWARFCallFrameInfo::FDEToUnwindPlan(dw_offset_t dwarf_offset, in FDEToUnwindPlan()
539 dw_offset_t cie_offset; in FDEToUnwindPlan()
571 const dw_offset_t end_offset = current_entry + length + (is_64bit ? 12 : 4); in FDEToUnwindPlan()
1014 const std::function<bool(lldb::addr_t, uint32_t, dw_offset_t)> &callback) { in ForEachFDEEntries()

12