From: Tom Tromey Date: Wed, 16 Jan 2019 14:09:55 +0000 (-0700) Subject: Simplify minsym iteration X-Git-Tag: binutils-2_32~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=604b1bfb46e62d561698397cb5499b487eb0db34;p=external%2Fbinutils.git Simplify minsym iteration This simplifies the minimal symbol iterator, by using minimal_symbol_count and just doing a somewhat ordinary array-like iteration. array_view is nearly usable, except that it is more convenient for this iterator to return pointers rather than references. gdb/ChangeLog 2019-01-16 Tom Tromey * objfiles.h (class objfile_msymbols) : Change argument type. Remove no-argument constructor. : Simplify. : Update. : Use minimal_symbol_count. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4e562fc..7d1ed3f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,13 @@ 2019-01-16 Tom Tromey + * objfiles.h (class objfile_msymbols) : Change argument + type. Remove no-argument constructor. + : Simplify. + : Update. + : Use minimal_symbol_count. + +2019-01-16 Tom Tromey + * objfiles.h (struct objfile) : New method. (class objfile_psymtabs): Remove. * psymtab.h (class psymtab_storage) : New diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 5299a3c..2e0fad6 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -591,20 +591,11 @@ public: typedef std::forward_iterator_tag iterator_category; typedef int difference_type; - explicit iterator (struct objfile *objfile) - : m_msym (objfile->per_bfd->msymbols) + explicit iterator (struct minimal_symbol *msym) + : m_msym (msym) { - /* Make sure to properly handle the case where there are no - minsyms. */ - if (MSYMBOL_LINKAGE_NAME (m_msym) == nullptr) - m_msym = nullptr; } - iterator () - : m_msym (nullptr) - { - } - value_type operator* () const { return m_msym; @@ -622,12 +613,7 @@ public: self_type &operator++ () { - if (m_msym != nullptr) - { - ++m_msym; - if (MSYMBOL_LINKAGE_NAME (m_msym) == nullptr) - m_msym = nullptr; - } + ++m_msym; return *this; } @@ -637,12 +623,13 @@ public: iterator begin () const { - return iterator (m_objfile); + return iterator (m_objfile->per_bfd->msymbols); } iterator end () const { - return iterator (); + return iterator (m_objfile->per_bfd->msymbols + + m_objfile->per_bfd->minimal_symbol_count); } private: