Check OBJF_NOT_FILENAME in DWARF index code
authorTom Tromey <tom@tromey.com>
Tue, 26 Apr 2022 18:45:07 +0000 (12:45 -0600)
committerTom Tromey <tom@tromey.com>
Thu, 28 Apr 2022 15:37:48 +0000 (09:37 -0600)
The DWARF index code currently uses 'stat' to see if an objfile
represents a real file.  However, I think it's more correct to check
OBJF_NOT_FILENAME instead.

Regression tested on x86-64 Fedora 34.

gdb/dwarf2/index-cache.c
gdb/dwarf2/index-write.c

index fb827e04e59b43e6448b48dfd6eff95e4e231422..a1f6ff5963444cdbf82514485d38df7c2dfad151 100644 (file)
@@ -96,6 +96,10 @@ index_cache::store (dwarf2_per_objfile *per_objfile)
   if (!enabled ())
     return;
 
+  /* If the objfile does not correspond to an actual file, skip it.  */
+  if ((obj->flags & OBJF_NOT_FILENAME) != 0)
+    return;
+
   /* Get build id of objfile.  */
   const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
   if (build_id == nullptr)
index afe55da6c1b188a01c3f98a773a3978e09516c7f..3d1c78d4459a1baab7d1dcecb2260b81b862d452 100644 (file)
@@ -1411,9 +1411,8 @@ write_dwarf_index (dwarf2_per_objfile *per_objfile, const char *dir,
   if (per_objfile->per_bfd->types.size () > 1)
     error (_("Cannot make an index when the file has multiple .debug_types sections"));
 
-  struct stat st;
-  if (stat (objfile_name (objfile), &st) < 0)
-    perror_with_name (objfile_name (objfile));
+
+  gdb_assert ((objfile->flags & OBJF_NOT_FILENAME) == 0);
 
   const char *index_suffix = (index_kind == dw_index_kind::DEBUG_NAMES
                              ? INDEX5_SUFFIX : INDEX4_SUFFIX);
@@ -1472,10 +1471,8 @@ save_gdb_index_command (const char *arg, int from_tty)
 
   for (objfile *objfile : current_program_space->objfiles ())
     {
-      struct stat st;
-
       /* If the objfile does not correspond to an actual file, skip it.  */
-      if (stat (objfile_name (objfile), &st) < 0)
+      if ((objfile->flags & OBJF_NOT_FILENAME) != 0)
        continue;
 
       dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);