switch inferior/thread before calling target methods
[deliverable/binutils-gdb.git] / gdb / thread.c
index f171e2e3b634de110768981d0a1fa133998470c3..17a79e22c6b32785b06ebb408bc323312de97fcf 100644 (file)
@@ -62,8 +62,6 @@ static int highest_thread_num;
    spawned new threads we haven't heard of yet.  */
 static int threads_executing;
 
-static int thread_alive (struct thread_info *);
-
 /* RAII type used to increase / decrease the refcount of each thread
    in a given list of threads.  */
 
@@ -679,14 +677,38 @@ any_live_thread_of_inferior (inferior *inf)
 }
 
 /* Return true if TP is an active thread.  */
-static int
-thread_alive (struct thread_info *tp)
+static bool
+thread_alive (thread_info *tp)
 {
   if (tp->state == THREAD_EXITED)
-    return 0;
-  if (!target_thread_alive (tp->ptid))
-    return 0;
-  return 1;
+    return false;
+
+  /* Ensure we're looking at the right target stack.  */
+  gdb_assert (tp->inf == current_inferior ());
+
+  return target_thread_alive (tp->ptid);
+}
+
+/* Switch to thread TP if it is alive.  Returns true if successfully
+   switched, false otherwise.  */
+
+static bool
+switch_to_thread_if_alive (thread_info *thr)
+{
+  scoped_restore_current_thread restore_thread;
+
+  /* Switch inferior first, so that we're looking at the right target
+     stack.  */
+  switch_to_inferior_no_thread (thr->inf);
+
+  if (thread_alive (thr))
+    {
+      switch_to_thread (thr);
+      restore_thread.dont_restore ();
+      return true;
+    }
+
+  return false;
 }
 
 /* See gdbthreads.h.  */
@@ -694,9 +716,15 @@ thread_alive (struct thread_info *tp)
 void
 prune_threads (void)
 {
+  scoped_restore_current_thread restore_thread;
+
   for (thread_info *tp : all_threads_safe ())
-    if (!thread_alive (tp))
-      delete_thread (tp);
+    {
+      switch_to_inferior_no_thread (tp->inf);
+
+      if (!thread_alive (tp))
+       delete_thread (tp);
+    }
 }
 
 /* See gdbthreads.h.  */
@@ -1037,6 +1065,9 @@ print_thread_info_1 (struct ui_out *uiout, const char *requested_threads,
     gdb::optional<ui_out_emit_list> list_emitter;
     gdb::optional<ui_out_emit_table> table_emitter;
 
+    /* We'll be switching threads temporarily below.  */
+    scoped_restore_current_thread restore_thread;
+
     if (uiout->is_mi_like_p ())
       list_emitter.emplace (uiout, "threads");
     else
@@ -1054,6 +1085,10 @@ print_thread_info_1 (struct ui_out *uiout, const char *requested_threads,
 
            if (!uiout->is_mi_like_p ())
              {
+               /* Switch inferiors so we're looking at the right
+                  target stack.  */
+               switch_to_inferior_no_thread (tp->inf);
+
                target_id_col_width
                  = std::max (target_id_col_width,
                              thread_target_id_str (tp).size ());
@@ -1085,90 +1120,89 @@ print_thread_info_1 (struct ui_out *uiout, const char *requested_threads,
        uiout->table_body ();
       }
 
-    /* We'll be switching threads temporarily.  */
-    scoped_restore_current_thread restore_thread;
-
     for (inferior *inf : all_inferiors ())
       for (thread_info *tp : inf->threads ())
-      {
-       int core;
+       {
+         int core;
 
-       any_thread = true;
-       if (tp == current_thread && tp->state == THREAD_EXITED)
-         current_exited = true;
+         any_thread = true;
+         if (tp == current_thread && tp->state == THREAD_EXITED)
+           current_exited = true;
 
-       if (!should_print_thread (requested_threads, default_inf_num,
-                                 global_ids, pid, tp))
-         continue;
+         if (!should_print_thread (requested_threads, default_inf_num,
+                                   global_ids, pid, tp))
+           continue;
 
-       ui_out_emit_tuple tuple_emitter (uiout, NULL);
+         ui_out_emit_tuple tuple_emitter (uiout, NULL);
 
-       if (!uiout->is_mi_like_p ())
-         {
-           if (tp == current_thread)
-             uiout->field_string ("current", "*");
-           else
-             uiout->field_skip ("current");
+         if (!uiout->is_mi_like_p ())
+           {
+             if (tp == current_thread)
+               uiout->field_string ("current", "*");
+             else
+               uiout->field_skip ("current");
 
-           uiout->field_string ("id-in-tg", print_thread_id (tp));
-         }
+             uiout->field_string ("id-in-tg", print_thread_id (tp));
+           }
 
-       if (show_global_ids || uiout->is_mi_like_p ())
-         uiout->field_signed ("id", tp->global_num);
+         if (show_global_ids || uiout->is_mi_like_p ())
+           uiout->field_signed ("id", tp->global_num);
 
-       /* For the CLI, we stuff everything into the target-id field.
-          This is a gross hack to make the output come out looking
-          correct.  The underlying problem here is that ui-out has no
-          way to specify that a field's space allocation should be
-          shared by several fields.  For MI, we do the right thing
-          instead.  */
+         /* Switch to the thread (and inferior / target).  */
+         switch_to_thread (tp);
 
-       if (uiout->is_mi_like_p ())
-         {
-           uiout->field_string ("target-id", target_pid_to_str (tp->ptid));
+         /* For the CLI, we stuff everything into the target-id field.
+            This is a gross hack to make the output come out looking
+            correct.  The underlying problem here is that ui-out has no
+            way to specify that a field's space allocation should be
+            shared by several fields.  For MI, we do the right thing
+            instead.  */
 
-           const char *extra_info = target_extra_thread_info (tp);
-           if (extra_info != nullptr)
-             uiout->field_string ("details", extra_info);
+         if (uiout->is_mi_like_p ())
+           {
+             uiout->field_string ("target-id", target_pid_to_str (tp->ptid));
 
-           const char *name = (tp->name != nullptr
-                               ? tp->name
-                               : target_thread_name (tp));
-           if (name != NULL)
-             uiout->field_string ("name", name);
-         }
-       else
-         {
-           uiout->field_string ("target-id",
-                                thread_target_id_str (tp).c_str ());
-         }
+             const char *extra_info = target_extra_thread_info (tp);
+             if (extra_info != nullptr)
+               uiout->field_string ("details", extra_info);
 
-       if (tp->state == THREAD_RUNNING)
-         uiout->text ("(running)\n");
-       else
-         {
-           /* The switch below puts us at the top of the stack (leaf
-              frame).  */
-           switch_to_thread (tp);
-           print_stack_frame (get_selected_frame (NULL),
-                              /* For MI output, print frame level.  */
-                              uiout->is_mi_like_p (),
-                              LOCATION, 0);
-         }
+             const char *name = (tp->name != nullptr
+                                 ? tp->name
+                                 : target_thread_name (tp));
+             if (name != NULL)
+               uiout->field_string ("name", name);
+           }
+         else
+           {
+             uiout->field_string ("target-id",
+                                  thread_target_id_str (tp).c_str ());
+           }
 
-       if (uiout->is_mi_like_p ())
-         {
-           const char *state = "stopped";
+         if (tp->state == THREAD_RUNNING)
+           uiout->text ("(running)\n");
+         else
+           {
+             /* The switch above put us at the top of the stack (leaf
+                frame).  */
+             print_stack_frame (get_selected_frame (NULL),
+                                /* For MI output, print frame level.  */
+                                uiout->is_mi_like_p (),
+                                LOCATION, 0);
+           }
 
-           if (tp->state == THREAD_RUNNING)
-             state = "running";
-           uiout->field_string ("state", state);
-         }
+         if (uiout->is_mi_like_p ())
+           {
+             const char *state = "stopped";
 
-       core = target_core_of_thread (tp->ptid);
-       if (uiout->is_mi_like_p () && core != -1)
-         uiout->field_signed ("core", core);
-      }
+             if (tp->state == THREAD_RUNNING)
+               state = "running";
+             uiout->field_string ("state", state);
+           }
+
+         core = target_core_of_thread (tp->ptid);
+         if (uiout->is_mi_like_p () && core != -1)
+           uiout->field_signed ("core", core);
+       }
 
     /* This end scope restores the current thread and the frame
        selected before the "info threads" command, and it finishes the
@@ -1375,7 +1409,8 @@ restore_selected_frame (struct frame_id a_frame_id, int frame_level)
     }
 }
 
-scoped_restore_current_thread::~scoped_restore_current_thread ()
+void
+scoped_restore_current_thread::restore ()
 {
   /* If an entry of thread_info was previously selected, it won't be
      deleted because we've increased its refcount.  The thread represented
@@ -1402,6 +1437,22 @@ scoped_restore_current_thread::~scoped_restore_current_thread ()
       && target_has_stack
       && target_has_memory)
     restore_selected_frame (m_selected_frame_id, m_selected_frame_level);
+}
+
+scoped_restore_current_thread::~scoped_restore_current_thread ()
+{
+  if (!m_dont_restore)
+    {
+      try
+       {
+         restore ();
+       }
+      catch (const gdb_exception &ex)
+       {
+         /* We're in a dtor, there's really nothing else we can do
+            but swallow the exception.  */
+       }
+    }
 
   if (m_thread != NULL)
     m_thread->decref ();
@@ -1645,7 +1696,7 @@ thread_apply_all_command (const char *cmd, int from_tty)
       scoped_restore_current_thread restore_thread;
 
       for (thread_info *thr : thr_list_cpy)
-       if (thread_alive (thr))
+       if (switch_to_thread_if_alive (thr))
          thr_try_catch_cmd (thr, cmd, from_tty, flags);
     }
 }
@@ -1802,7 +1853,7 @@ thread_apply_command (const char *tidlist, int from_tty)
          continue;
        }
 
-      if (!thread_alive (tp))
+      if (!switch_to_thread_if_alive (tp))
        {
          warning (_("Thread %s has terminated."), print_thread_id (tp));
          continue;
@@ -1970,11 +2021,9 @@ show_print_thread_events (struct ui_file *file, int from_tty,
 void
 thread_select (const char *tidstr, thread_info *tp)
 {
-  if (!thread_alive (tp))
+  if (!switch_to_thread_if_alive (tp))
     error (_("Thread ID %s has terminated."), tidstr);
 
-  switch_to_thread (tp);
-
   annotate_thread_changed ();
 
   /* Since the current thread may have changed, see if there is any
This page took 0.043858 seconds and 4 git commands to generate.