| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | DWARFCallFrameInfo.h | 80 const std::function<bool(lldb::addr_t, uint32_t, dw_offset_t)> &callback); 91 dw_offset_t cie_offset; 101 dw_offset_t inst_offset; // offset of CIE instructions in mCFIData 110 CIE(dw_offset_t offset) in CIE() 120 typedef std::map<dw_offset_t, CIESP> cie_map_t; 125 typedef RangeDataVector<lldb::addr_t, uint32_t, dw_offset_t> FDEEntryMap; 141 std::optional<FDE> ParseFDE(dw_offset_t offset, const Address &startaddr); 143 const CIE *GetCIE(dw_offset_t cie_offset); 171 ParseCIE(const dw_offset_t cie_offset);
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFUnit.h | 100 dw_offset_t GetOffset() const { return m_header.getOffset(); } in GetOffset() 109 bool ContainsDIEOffset(dw_offset_t die_offset) const { in ContainsDIEOffset() 113 dw_offset_t GetFirstDIEOffset() const { in GetFirstDIEOffset() 116 dw_offset_t GetNextUnitOffset() const { return m_header.getNextUnitOffset(); } in GetNextUnitOffset() 120 dw_offset_t GetLength() const { return m_header.getLength(); } in GetLength() 126 dw_offset_t GetAbbrevOffset() const; 132 dw_offset_t GetLineTableOffset(); 138 void SetStrOffsetsBase(dw_offset_t str_offsets_base); 153 DWARFDIE GetDIE(dw_offset_t die_offset); 158 llvm::StringRef PeekDIEName(dw_offset_t die_offset); [all …]
|
| H A D | DWARFDebugInfo.h | 28 typedef dw_offset_t (*Callback)(SymbolFileDWARF *dwarf2Data, DWARFUnit *cu, 30 const dw_offset_t next_offset, 37 DWARFUnit *GetUnitAtOffset(DIERef::Section section, dw_offset_t cu_offset, 40 dw_offset_t die_offset); 44 DWARFDIE GetDIE(DIERef::Section section, dw_offset_t die_offset); 81 uint32_t FindUnitIndex(DIERef::Section section, dw_offset_t offset);
|
| H A D | DIERef.h | 35 dw_offset_t die_offset) in DIERef() 68 dw_offset_t die_offset() const { return m_die_offset; } in die_offset() 126 dw_offset_t m_die_offset : k_die_offset_bit_size; 128 dw_offset_t m_file_index : k_file_index_bit_size; 130 dw_offset_t m_file_index_valid : 1; 132 dw_offset_t m_section : 1;
|
| H A D | DWARFDebugAranges.h | 20 typedef RangeDataVector<dw_addr_t, uint32_t, dw_offset_t> RangeToDIE; 33 void AppendRange(dw_offset_t cu_offset, dw_addr_t low_pc, dw_addr_t high_pc); 39 dw_offset_t FindAddress(dw_addr_t address) const; 44 dw_offset_t OffsetAtIndex(uint32_t idx) const { in OffsetAtIndex()
|
| H A D | DWARFDebugInfo.cpp | 49 std::set<dw_offset_t> cus_with_data; in GetCompileUnitAranges() 51 dw_offset_t offset = m_cu_aranges_up->OffsetAtIndex(n); in GetCompileUnitAranges() 68 dw_offset_t offset = cu->GetOffset(); in GetCompileUnitAranges() 194 dw_offset_t offset) { in FindUnitIndex() 201 [](const std::pair<DIERef::Section, dw_offset_t> &lhs, in FindUnitIndex() 212 dw_offset_t cu_offset, in GetUnitAtOffset() 227 dw_offset_t die_offset) { in GetUnitContainingDIEOffset() 256 DWARFDebugInfo::GetDIE(DIERef::Section section, dw_offset_t die_offset) { in GetDIE()
|
| H A D | DWARFDebugInfoEntry.h | 78 dw_offset_t GetAttributeValue(const DWARFUnit *cu, const dw_attr_t attr, 80 dw_offset_t *end_attr_offset_ptr = nullptr, 142 dw_offset_t GetOffset() const { return m_offset; } in GetOffset() 184 dw_offset_t m_offset : DW_DIE_OFFSET_MAX_BITSIZE; 187 dw_offset_t m_parent_idx : 64 - DW_DIE_OFFSET_MAX_BITSIZE;
|
| H A D | DWARFAttribute.h | 48 void Append(const DWARFFormValue &form_value, dw_offset_t attr_die_offset, in DIEOffsetAtIndex() 51 dw_offset_t DIEOffsetAtIndex(uint32_t i) const { in AttributeAtIndex() 72 dw_offset_t die_offset;
|
| H A D | DWARFDebugAbbrev.h | |
| H A D | DWARFDebugAranges.cpp | 64 void DWARFDebugAranges::AppendRange(dw_offset_t offset, dw_addr_t low_pc, in AppendRange() 78 dw_offset_t DWARFDebugAranges::FindAddress(dw_addr_t address) const { in FindAddress()
|
| H A D | ManualDWARFIndex.h | 25 llvm::DenseSet<dw_offset_t> units_to_avoid = {}, 163 llvm::DenseSet<dw_offset_t> m_units_to_avoid;
|
| H A D | DWARFUnit.cpp | 453 dw_offset_t DWARFUnit::GetAbbrevOffset() const { in GetAbbrevOffset() 457 dw_offset_t DWARFUnit::GetLineTableOffset() { in GetLineTableOffset() 611 void DWARFUnit::SetStrOffsetsBase(dw_offset_t str_offsets_base) { in SetStrOffsetsBase() 617 dw_offset_t addr_base = GetAddrBase(); in ReadAddressFromDebugAddrSection() 643 const dw_offset_t die_offset) { in CompareDIEOffset() 653 DWARFUnit::GetDIE(dw_offset_t die_offset) { in GetDIE() 674 llvm::StringRef DWARFUnit::PeekDIEName(dw_offset_t die_offset) { in PeekDIEName() 1087 DWARFUnit::FindRnglistFromOffset(dw_offset_t offset) { in FindRnglistFromOffset() 1117 dw_offset_t addr_base = GetAddrBase(); in FindRnglistFromOffset()
|
| H A D | SymbolFileDWARF.h | 459 dw_offset_t spec_block_die_offset); 463 dw_offset_t spec_block_die_offset); 483 void GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset, 484 dw_offset_t max_die_offset, uint32_t type_mask, 541 llvm::DenseMap<dw_offset_t, std::unique_ptr<SupportFileList>>
|
| H A D | DWARFDebugInfoEntry.cpp | 238 const dw_offset_t offset = form_value.Unsigned(); in GetDIENamesAndRanges() 388 dw_offset_t DWARFDebugInfoEntry::GetAttributeValue( in GetAttributeValue() 390 dw_offset_t *end_attr_offset_ptr, bool check_elaborating_dies) const { in GetAttributeValue() 403 const dw_offset_t attr_offset = offset; in GetAttributeValue() 425 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
|
| H A D | DWARFTypeUnit.h | 29 dw_offset_t GetTypeOffset() { return GetOffset() + m_header.getTypeOffset(); } in GetTypeOffset()
|
| H A D | DWARFDebugAbbrev.cpp | |
| H A D | DWARFAttribute.cpp | 32 dw_offset_t attr_die_offset, dw_attr_t attr) { in Append()
|
| H A D | AppleDWARFIndex.cpp | 165 dw_offset_t lower_bound = non_skeleton_cu.GetOffset(); in GetGlobalVariables() 166 dw_offset_t upper_bound = non_skeleton_cu.GetNextUnitOffset(); in GetGlobalVariables()
|
| H A D | DWARFCompileUnit.cpp | 44 const dw_offset_t cu_offset = GetOffset(); in BuildAddressRangeTable()
|
| H A D | DWARFBaseDIE.cpp | 92 dw_offset_t DWARFBaseDIE::GetOffset() const { in GetOffset()
|
| H A D | DWARFFormValue.h | 59 uint64_t Reference(dw_offset_t offset) const;
|
| H A D | DWARFBaseDIE.h | 90 dw_offset_t GetOffset() const;
|
| H A D | DWARFDIE.h | 64 GetDIE(dw_offset_t die_offset) const;
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | DWARFCallFrameInfo.cpp | 265 DWARFCallFrameInfo::GetCIE(dw_offset_t cie_offset) { in GetCIE() 279 DWARFCallFrameInfo::ParseCIE(const dw_offset_t cie_offset) { in ParseCIE() 285 dw_offset_t cie_id, end_offset; in ParseCIE() 470 const dw_offset_t current_entry = offset; in GetFDEIndex() 471 dw_offset_t cie_id, next_entry, cie_offset; in GetFDEIndex() 557 DWARFCallFrameInfo::ParseFDE(dw_offset_t dwarf_offset, in ParseFDE() 570 dw_offset_t cie_offset; in ParseFDE() 590 const dw_offset_t end_offset = current_entry + length + (is_64bit ? 12 : 4); in ParseFDE() 980 const std::function<bool(lldb::addr_t, uint32_t, dw_offset_t)> &callback) { in ForEachFDEEntries()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | dwarf.h | 30 typedef uint64_t dw_offset_t; // Dwarf Debug Information Entry offset for any typedef
|