gdb: fix logic of find_comp_unit and set_comp_unit
authorSimon Marchi <simon.marchi@polymtl.ca>
Thu, 3 Dec 2020 20:47:56 +0000 (15:47 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 3 Dec 2020 20:47:56 +0000 (15:47 -0500)
The logic in find_comp_unit and set_comp_unit is reversed.  When the BFD
requires relocation, we want to put the comp_unit structure in the
map where the comp_unit objects are not shared, that is the one indexed
by objfile.  If the BFD does not require relocation, then, we can share
a single comp_unit structure for all users of that BFD, so we want to
put it in the BFD-indexed map.  The comments on top of
dwarf2_frame_bfd_data and dwarf2_frame_objfile_data make that clear.

Fix it by swapping the two in find_comp_unit and set_comp_unit.

I don't have a test for this, because I don't see how to write one in a
reasonable amount of time.

gdb/ChangeLog:

PR gdb/26876
* dwarf2/frame.c (find_comp_unit, set_comp_unit): Reverse use of
dwarf2_frame_bfd_data and dwarf2_frame_objfile_data.

Change-Id: I80c1ee7ad8425fa4947de65b170973d05f5a52ec

gdb/ChangeLog
gdb/dwarf2/frame.c

index 7c0739368ec0c779a22af1d33b5dd5997dfe378b..75d7422559d09832ca9814cca60303cc7fb0097c 100644 (file)
@@ -1,3 +1,9 @@
+2020-12-03  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       PR gdb/26876
+       * dwarf2/frame.c (find_comp_unit, set_comp_unit): Reverse use of
+       dwarf2_frame_bfd_data and dwarf2_frame_objfile_data.
+
 2020-12-02  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * arch/riscv.c: Include 'rv32e-xregs.c'.
index a577a671f2427bf20fc01d1480b76bd0ea265b15..7df3ccfe46a7b624f12c1cf41f5e10440a7916c2 100644 (file)
@@ -1640,8 +1640,9 @@ find_comp_unit (struct objfile *objfile)
 {
   bfd *abfd = objfile->obfd;
   if (gdb_bfd_requires_relocations (abfd))
-    return dwarf2_frame_bfd_data.get (abfd);
-  return dwarf2_frame_objfile_data.get (objfile);
+    return dwarf2_frame_objfile_data.get (objfile);
+
+  return dwarf2_frame_bfd_data.get (abfd);
 }
 
 /* Store the comp_unit on OBJFILE, or the corresponding BFD, as
@@ -1652,8 +1653,9 @@ set_comp_unit (struct objfile *objfile, struct comp_unit *unit)
 {
   bfd *abfd = objfile->obfd;
   if (gdb_bfd_requires_relocations (abfd))
-    return dwarf2_frame_bfd_data.set (abfd, unit);
-  return dwarf2_frame_objfile_data.set (objfile, unit);
+    return dwarf2_frame_objfile_data.set (objfile, unit);
+
+  return dwarf2_frame_bfd_data.set (abfd, unit);
 }
 
 /* Find the FDE for *PC.  Return a pointer to the FDE, and store the