diff options
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h index 9717f9a7c5f..85efd989f4d 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h @@ -74,8 +74,7 @@ public: const DWARFFormValue::FixedFormSizes &fixed_form_sizes, lldb::offset_t *offset_ptr); - bool Extract(SymbolFileDWARF *dwarf2Data, const DWARFUnit *cu, - lldb::offset_t *offset_ptr); + bool Extract(const DWARFUnit *cu, lldb::offset_t *offset_ptr); bool LookupAddress(const dw_addr_t address, SymbolFileDWARF *dwarf2Data, const DWARFUnit *cu, @@ -109,11 +108,6 @@ public: const dw_attr_t attr, uint64_t fail_value, bool check_specification_or_abstract_origin = false) const; - int64_t GetAttributeValueAsSigned( - SymbolFileDWARF *dwarf2Data, const DWARFUnit *cu, - const dw_attr_t attr, int64_t fail_value, - bool check_specification_or_abstract_origin = false) const; - uint64_t GetAttributeValueAsAddress( SymbolFileDWARF *dwarf2Data, const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, @@ -259,10 +253,6 @@ public: void SetParentIndex(uint32_t idx) { m_parent_idx = idx; } - static void - DumpDIECollection(lldb_private::Stream &strm, - DWARFDebugInfoEntry::collection &die_collection); - protected: dw_offset_t m_offset; // Offset within the .debug_info of the start of this entry |