Remove quick_symbol_functions::relocated
authorTom Tromey <tom@tromey.com>
Thu, 20 Oct 2022 19:54:56 +0000 (13:54 -0600)
committerTom Tromey <tom@tromey.com>
Mon, 19 Dec 2022 15:05:14 +0000 (08:05 -0700)
quick_symbol_functions::relocated is only needed for psymtabs, and
there it is only needed for Rust.  However, because we've switched the
DWARF reader away from psymtabs, this means there's no longer a need
for this method at all.

gdb/objfiles.c
gdb/psympriv.h
gdb/psymtab.c
gdb/quick-symbol.h

index 09aba0f80f075baa28d1df45b22a93b8a418f03b..ffdb36ab633f30e76c48879f740e6560188b8e42 100644 (file)
@@ -667,10 +667,6 @@ objfile_relocate1 (struct objfile *objfile,
       }
   }
 
-  /* Notify the quick symbol object.  */
-  for (const auto &iter : objfile->qf)
-    iter->relocated ();
-
   /* Relocate isolated symbols.  */
   {
     struct symbol *iter;
index 61fb5c0f6c1c0d5085e5f6564760d5e823367d64..8dc79e92ca63eb7afa36974b271284df57cc6912 100644 (file)
@@ -536,17 +536,15 @@ struct psymbol_functions : public quick_symbol_functions
      CORE_ADDR pc, struct obj_section *section, int warn_if_readin) override;
 
   struct compunit_symtab *find_compunit_symtab_by_address
-    (struct objfile *objfile, CORE_ADDR address) override;
+    (struct objfile *objfile, CORE_ADDR address) override
+  {
+    return nullptr;
+  }
 
   void map_symbol_filenames (struct objfile *objfile,
                             gdb::function_view<symbol_filename_ftype> fun,
                             bool need_fullname) override;
 
-  void relocated () override
-  {
-    m_psymbol_map.clear ();
-  }
-
   /* Return a range adapter for the psymtabs.  */
   psymtab_storage::partial_symtab_range partial_symbols
        (struct objfile *objfile);
@@ -588,11 +586,6 @@ private:
 
   /* Storage for the partial symbols.  */
   std::shared_ptr<psymtab_storage> m_partial_symtabs;
-
-  /* Map symbol addresses to the partial symtab that defines the
-     object at that address.  */
-
-  std::vector<std::pair<CORE_ADDR, partial_symtab *>> m_psymbol_map;
 };
 
 #endif /* PSYMPRIV_H */
index 424e611b87bcb28190cca4ab7ab7f57e9ac70b66..35832ae71da03652e46635e8540c85713a97eeba 100644 (file)
@@ -1103,75 +1103,6 @@ psymbol_functions::has_unexpanded_symtabs (struct objfile *objfile)
   return false;
 }
 
-/* Helper function for psym_find_compunit_symtab_by_address that fills
-   in m_psymbol_map for a given range of psymbols.  */
-
-void
-psymbol_functions::fill_psymbol_map
-     (struct objfile *objfile,
-      struct partial_symtab *psymtab,
-      std::set<CORE_ADDR> *seen_addrs,
-      const std::vector<partial_symbol *> &symbols)
-{
-  for (partial_symbol *psym : symbols)
-    {
-      if (psym->aclass == LOC_STATIC)
-       {
-         CORE_ADDR addr = psym->address (objfile);
-         if (seen_addrs->find (addr) == seen_addrs->end ())
-           {
-             seen_addrs->insert (addr);
-             m_psymbol_map.emplace_back (addr, psymtab);
-           }
-       }
-    }
-}
-
-/* See find_compunit_symtab_by_address in quick_symbol_functions, in
-   symfile.h.  */
-
-compunit_symtab *
-psymbol_functions::find_compunit_symtab_by_address (struct objfile *objfile,
-                                                   CORE_ADDR address)
-{
-  if (m_psymbol_map.empty ())
-    {
-      std::set<CORE_ADDR> seen_addrs;
-
-      for (partial_symtab *pst : partial_symbols (objfile))
-       {
-         fill_psymbol_map (objfile, pst,
-                           &seen_addrs,
-                           pst->global_psymbols);
-         fill_psymbol_map (objfile, pst,
-                           &seen_addrs,
-                           pst->static_psymbols);
-       }
-
-      m_psymbol_map.shrink_to_fit ();
-
-      std::sort (m_psymbol_map.begin (), m_psymbol_map.end (),
-                [] (const std::pair<CORE_ADDR, partial_symtab *> &a,
-                    const std::pair<CORE_ADDR, partial_symtab *> &b)
-                {
-                  return a.first < b.first;
-                });
-    }
-
-  auto iter = std::lower_bound
-    (m_psymbol_map.begin (), m_psymbol_map.end (), address,
-     [] (const std::pair<CORE_ADDR, partial_symtab *> &a,
-        CORE_ADDR b)
-     {
-       return a.first < b;
-     });
-
-  if (iter == m_psymbol_map.end () || iter->first != address)
-    return NULL;
-
-  return psymtab_to_symtab (objfile, iter->second);
-}
-
 \f
 
 /* Partially fill a partial symtab.  It will be completely filled at
index c55989e0a2ca569c967c53ff3e9ed6c9b391b41d..f4120b0a7a4016aabcb0d312c02f3d40252714b1 100644 (file)
@@ -212,13 +212,6 @@ struct quick_symbol_functions
        gdb::function_view<symbol_filename_ftype> fun,
        bool need_fullname) = 0;
 
-  /* This is called when the objfile is relocated.  It can be used to
-     clean up any internal caches.  */
-  virtual void relocated ()
-  {
-    /* Do nothing.  */
-  }
-
   /* Return true if this class can lazily read the symbols.  This may
      only return true if there are in fact symbols to be read, because
      this is used in the implementation of 'has_partial_symbols'.  */