aboutsummaryrefslogtreecommitdiff
path: root/gdb/objfiles.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-07-29 15:27:33 -0600
committerTom Tromey <tom@tromey.com>2021-07-30 08:49:15 -0600
commit177ac6e47ef4445510e68bde175275e75efb1055 (patch)
tree1ed1caa4e207c43e28f0b30bd2d29476c9ec42f4 /gdb/objfiles.h
parent785e5700ce4bda469e323d1dc7eeae9d86980c79 (diff)
downloadfsf-binutils-gdb-177ac6e47ef4445510e68bde175275e75efb1055.zip
fsf-binutils-gdb-177ac6e47ef4445510e68bde175275e75efb1055.tar.gz
fsf-binutils-gdb-177ac6e47ef4445510e68bde175275e75efb1055.tar.bz2
Use iterator_range in more places
This changes a couple of spots to replace custom iterator range classes with a specialization of iterator_range. Regression tested on x86-64 Fedora 34.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r--gdb/objfiles.h59
1 files changed, 9 insertions, 50 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index 55be1bf..97abc9c 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -380,29 +380,7 @@ private:
/* A range adapter wrapping separate_debug_iterator. */
-class separate_debug_range
-{
-public:
-
- explicit separate_debug_range (struct objfile *objfile)
- : m_objfile (objfile)
- {
- }
-
- separate_debug_iterator begin ()
- {
- return separate_debug_iterator (m_objfile);
- }
-
- separate_debug_iterator end ()
- {
- return separate_debug_iterator (nullptr);
- }
-
-private:
-
- struct objfile *m_objfile;
-};
+typedef iterator_range<separate_debug_iterator> separate_debug_range;
/* Master structure for keeping track of each file from which
gdb reads symbols. There are several ways these get allocated: 1.
@@ -456,38 +434,17 @@ public:
/* A range adapter that makes it possible to iterate over all
minimal symbols of an objfile. */
- class msymbols_range
- {
- public:
-
- explicit msymbols_range (struct objfile *objfile)
- : m_objfile (objfile)
- {
- }
-
- minimal_symbol_iterator begin () const
- {
- return minimal_symbol_iterator (m_objfile->per_bfd->msymbols.get ());
- }
-
- minimal_symbol_iterator end () const
- {
- return minimal_symbol_iterator
- (m_objfile->per_bfd->msymbols.get ()
- + m_objfile->per_bfd->minimal_symbol_count);
- }
-
- private:
-
- struct objfile *m_objfile;
- };
+ typedef iterator_range<minimal_symbol_iterator> msymbols_range;
/* Return a range adapter for iterating over all minimal
symbols. */
msymbols_range msymbols ()
{
- return msymbols_range (this);
+ auto start = minimal_symbol_iterator (per_bfd->msymbols.get ());
+ auto end = minimal_symbol_iterator (per_bfd->msymbols.get ()
+ + per_bfd->minimal_symbol_count);
+ return msymbols_range (start, end);
}
/* Return a range adapter for iterating over all the separate debug
@@ -495,7 +452,9 @@ public:
separate_debug_range separate_debug_objfiles ()
{
- return separate_debug_range (this);
+ auto start = separate_debug_iterator (this);
+ auto end = separate_debug_iterator (nullptr);
+ return separate_debug_range (start, end);
}
CORE_ADDR text_section_offset () const