Handle TLS variable lookups when using separate debug files.
authorJohn Baldwin <jhb@FreeBSD.org>
Mon, 4 Apr 2022 22:08:15 +0000 (15:08 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Mon, 4 Apr 2022 22:08:15 +0000 (15:08 -0700)
Commit df22c1e5d53c38f38bce6072bb46de240f9e0e2b handled the case that
a separate debug file was passed as the objfile for a shared library
to svr4_fetch_objfile_link_map.  However, a separate debug file can
also be passed for TLS variables in the main executable.  In addition,
frv_fetch_objfile_link_map also expects to be passed the original
objfile rather than a separate debug file, so pull the code to resolve
a separate debug file to the main objfile up into
target_translate_tls_address.

gdb/solib-svr4.c
gdb/target.c

index 2624ec286a0ba40336fcc62f324542ebe5f23ff4..ca98a812f3654acaceff7ecad8ff8841457d7e89 100644 (file)
@@ -1453,11 +1453,6 @@ svr4_fetch_objfile_link_map (struct objfile *objfile)
   if (objfile == current_program_space->symfile_object_file)
     return info->main_lm_addr;
 
-  /* If OBJFILE is a separate debug object file, look for the
-     original object file.  */
-  if (objfile->separate_debug_objfile_backlink != NULL)
-    objfile = objfile->separate_debug_objfile_backlink;
-
   /* The other link map addresses may be found by examining the list
      of shared libraries.  */
   for (struct so_list *so : current_program_space->solibs ())
index 928f5583a30ca411312a6b701b5c2ba4acb1216a..f33bf345cfa97ede2ac43ba0e895d8f7a4204ca4 100644 (file)
@@ -1296,6 +1296,11 @@ target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
   struct target_ops *target = current_inferior ()->top_target ();
   struct gdbarch *gdbarch = target_gdbarch ();
 
+  /* If OBJFILE is a separate debug object file, look for the
+     original object file.  */
+  if (objfile->separate_debug_objfile_backlink != NULL)
+    objfile = objfile->separate_debug_objfile_backlink;
+
   if (gdbarch_fetch_tls_load_module_address_p (gdbarch))
     {
       ptid_t ptid = inferior_ptid;