gdb: make thread_info::executing private
authorAndrew Burgess <andrew.burgess@embecosm.com>
Tue, 10 Aug 2021 10:20:44 +0000 (11:20 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Tue, 7 Sep 2021 11:44:08 +0000 (12:44 +0100)
Rename thread_info::executing to thread_info::m_executing, and make it
private.  Add a new get/set member functions, and convert GDB to make
use of these.

The only real change of interest in this patch is in thread.c where I
have deleted the helper function set_executing_thread, and now just
use the new set function thread_info::set_executing.  However, the old
helper function set_executing_thread included some code to reset the
thread's stop_pc, so I moved this code into the new function
thread_info::set_executing.  However, I don't believe there is
anywhere that this results in a change of behaviour, previously the
executing flag was always set true through a call to
set_executing_thread anyway.

gdb/breakpoint.c
gdb/frame.c
gdb/gdbthread.h
gdb/infcmd.c
gdb/inflow.c
gdb/infrun.c
gdb/linux-nat.c
gdb/linux-thread-db.c
gdb/record-btrace.c
gdb/target.c
gdb/thread.c

index f6c9683aecf1c1c6e5009d091616a22a52e24cd3..10b28c97be7dcb335e742ca25cf5998f76c5322e 100644 (file)
@@ -1661,7 +1661,7 @@ watchpoint_in_thread_scope (struct watchpoint *b)
   return (b->pspace == current_program_space
          && (b->watchpoint_thread == null_ptid
              || (inferior_ptid == b->watchpoint_thread
-                 && !inferior_thread ()->executing)));
+                 && !inferior_thread ()->executing ())));
 }
 
 /* Set watchpoint B to disp_del_at_next_stop, even including its possible
@@ -4512,7 +4512,7 @@ get_bpstat_thread ()
     return NULL;
 
   thread_info *tp = inferior_thread ();
-  if (tp->state == THREAD_EXITED || tp->executing)
+  if (tp->state == THREAD_EXITED || tp->executing ())
     return NULL;
   return tp;
 }
index 4d7505f7ae3a8e043652a2034e6e42fb68f3c974..d28944075edc769934aa403fe277622295f296e1 100644 (file)
@@ -1789,7 +1789,7 @@ has_stack_frames ()
        return false;
 
       /* ... or from a spinning thread.  */
-      if (tp->executing)
+      if (tp->executing ())
        return false;
     }
 
index 9c178f531d9b494f142eea9020941f382c588b2b..e6f383cca610e9afd0e7cc69e2114475d0105663 100644 (file)
@@ -287,15 +287,19 @@ public:
      if the thread does not have a user-given name.  */
   char *name = NULL;
 
-  /* True means the thread is executing.  Note: this is different
-     from saying that there is an active target and we are stopped at
-     a breakpoint, for instance.  This is a real indicator whether the
-     thread is off and running.  */
-  bool executing = false;
+  bool executing () const
+  { return m_executing; }
+
+  /* Set the thread's 'm_executing' field from EXECUTING, and if EXECUTING
+     is true also clears the thread's stop_pc.  */
+  void set_executing (bool executing);
 
   bool resumed () const
   { return m_resumed; }
 
+  /* Set the thread's 'm_resumed' field from RESUMED.  The thread may also
+     be added to (when RESUMED is true), or removed from (when RESUMED is
+     false), the list of threads with a pending wait status.  */
   void set_resumed (bool resumed);
 
   /* Frontend view of the thread state.  Note that the THREAD_RUNNING/
@@ -488,6 +492,12 @@ private:
      the thread run.  */
   bool m_resumed = false;
 
+  /* True means the thread is executing.  Note: this is different
+     from saying that there is an active target and we are stopped at
+     a breakpoint, for instance.  This is a real indicator whether the
+     thread is off and running.  */
+  bool m_executing = false;
+
   /* State of inferior thread to restore after GDB is done with an inferior
      call.  See `struct thread_suspend_state'.  */
   thread_suspend_state m_suspend;
index c183b60e81a85ea1bb92603a4a8ab9cf4524fced..e6ee49bc43de9fe98b80e1c241c9e771f971e214 100644 (file)
@@ -2371,7 +2371,7 @@ proceed_after_attach (inferior *inf)
   scoped_restore_current_thread restore_thread;
 
   for (thread_info *thread : inf->non_exited_threads ())
-    if (!thread->executing
+    if (!thread->executing ()
        && !thread->stop_requested
        && thread->stop_signal () == GDB_SIGNAL_0)
       {
@@ -2644,7 +2644,7 @@ notice_new_inferior (thread_info *thr, bool leave_running, int from_tty)
   /* When we "notice" a new inferior we need to do all the things we
      would normally do if we had just attached to it.  */
 
-  if (thr->executing)
+  if (thr->executing ())
     {
       struct inferior *inferior = current_inferior ();
 
index 74dda702a8a9a71ea1fe5e368b4422359698c189..bcab66487b09200852738fb94191661cc4d93a7f 100644 (file)
@@ -525,7 +525,7 @@ child_interrupt (struct target_ops *self)
   thread_info *resumed = NULL;
   for (thread_info *thr : all_non_exited_threads ())
     {
-      if (thr->executing)
+      if (thr->executing ())
        {
          resumed = thr;
          break;
index 694bbe665f4bc829285827c4ecaa6d237742914d..8e778576eabbeca26e934a52fc7cbc80c2bf23d7 100644 (file)
@@ -862,7 +862,7 @@ static void
 proceed_after_vfork_done (thread_info *thread)
 {
   if (thread->state == THREAD_RUNNING
-      && !thread->executing
+      && !thread->executing ()
       && !thread->stop_requested
       && thread->stop_signal () == GDB_SIGNAL_0)
     {
@@ -1885,7 +1885,7 @@ start_step_over (void)
 
       if (tp->control.trap_expected
          || tp->resumed ()
-         || tp->executing)
+         || tp->executing ())
        {
          internal_error (__FILE__, __LINE__,
                          "[%s] has inconsistent state: "
@@ -1893,7 +1893,7 @@ start_step_over (void)
                          target_pid_to_str (tp->ptid).c_str (),
                          tp->control.trap_expected,
                          tp->resumed (),
-                         tp->executing);
+                         tp->executing ());
        }
 
       infrun_debug_printf ("resuming [%s] for step-over",
@@ -3197,7 +3197,7 @@ proceed (CORE_ADDR addr, enum gdb_signal siggnal)
              {
                infrun_debug_printf ("[%s] resumed",
                                     target_pid_to_str (tp->ptid).c_str ());
-               gdb_assert (tp->executing || tp->has_pending_waitstatus ());
+               gdb_assert (tp->executing () || tp->has_pending_waitstatus ());
                continue;
              }
 
@@ -3329,7 +3329,7 @@ infrun_thread_stop_requested (ptid_t ptid)
     {
       if (tp->state != THREAD_RUNNING)
        continue;
-      if (tp->executing)
+      if (tp->executing ())
        continue;
 
       /* Remove matching threads from the step-over queue, so
@@ -3778,7 +3778,7 @@ prepare_for_detach (void)
        {
          if (thr->displaced_step_state.in_progress ())
            {
-             if (thr->executing)
+             if (thr->executing ())
                {
                  if (!thr->stop_requested)
                    {
@@ -4806,7 +4806,7 @@ handle_one (const wait_one_event &event)
        t = add_thread (event.target, event.ptid);
 
       t->stop_requested = 0;
-      t->executing = 0;
+      t->set_executing (false);
       t->set_resumed (false);
       t->control.may_range_step = 0;
 
@@ -4947,7 +4947,7 @@ stop_all_threads (void)
              if (!target_is_non_stop_p ())
                continue;
 
-             if (t->executing)
+             if (t->executing ())
                {
                  /* If already stopping, don't request a stop again.
                     We just haven't seen the notification yet.  */
@@ -5091,7 +5091,7 @@ handle_no_resumed (struct execution_control_state *ecs)
 
   for (thread_info *thread : all_non_exited_threads ())
     {
-      if (swap_terminal && thread->executing)
+      if (swap_terminal && thread->executing ())
        {
          if (thread->inf != curr_inf)
            {
@@ -5104,7 +5104,7 @@ handle_no_resumed (struct execution_control_state *ecs)
        }
 
       if (!ignore_event
-         && (thread->executing || thread->has_pending_waitstatus ()))
+         && (thread->executing () || thread->has_pending_waitstatus ()))
        {
          /* Either there were no unwaited-for children left in the
             target at some point, but there are now, or some target
@@ -5722,7 +5722,7 @@ restart_threads (struct thread_info *event_thread)
        {
          infrun_debug_printf ("restart threads: [%s] resumed",
                              target_pid_to_str (tp->ptid).c_str ());
-         gdb_assert (tp->executing || tp->has_pending_waitstatus ());
+         gdb_assert (tp->executing () || tp->has_pending_waitstatus ());
          continue;
        }
 
@@ -5869,7 +5869,7 @@ finish_step_over (struct execution_control_state *ecs)
             do_target_wait.  */
          tp->set_resumed (true);
 
-         gdb_assert (!tp->executing);
+         gdb_assert (!tp->executing ());
 
          regcache = get_thread_regcache (tp);
          tp->set_stop_pc (regcache_read_pc (regcache));
@@ -7419,7 +7419,7 @@ restart_after_all_stop_detach (process_stratum_target *proc_target)
       /* If we have any thread that is already executing, then we
         don't need to resume the target -- it is already been
         resumed.  */
-      if (thr->executing)
+      if (thr->executing ())
        return;
 
       /* If we have a pending event to process, skip resuming the
index e9433b2206bc857584550f9c92fd4f2cf55a614b..29ca62d2bc173970185a17ac575409b78e8139fd 100644 (file)
@@ -1280,7 +1280,7 @@ get_detach_signal (struct lwp_info *lp)
     {
       struct thread_info *tp = find_thread_ptid (linux_target, lp->ptid);
 
-      if (target_is_non_stop_p () && !tp->executing)
+      if (target_is_non_stop_p () && !tp->executing ())
        {
          if (tp->has_pending_waitstatus ())
            signo = tp->pending_waitstatus ().value.sig;
index eb2aa5ac409a61ee3cd1f793c21c62a75303ce78..245939b6400754daadf7bd2a4fa50cedda2e6f84 100644 (file)
@@ -1641,7 +1641,7 @@ thread_db_target::update_thread_list ()
        continue;
 
       thread_info *thread = any_live_thread_of_inferior (inf);
-      if (thread == NULL || thread->executing)
+      if (thread == NULL || thread->executing ())
        continue;
 
       /* It's best to avoid td_ta_thr_iter if possible.  That walks
index 85e357e604a35f266e63d669969626bb03b19d41..e2b9866d68ab9db8a3c38d769fe209431b1d5193 100644 (file)
@@ -1998,7 +1998,7 @@ get_thread_current_frame_id (struct thread_info *tp)
      For the former, EXECUTING is true and we're in wait, about to
      move the thread.  Since we need to recompute the stack, we temporarily
      set EXECUTING to false.  */
-  executing = tp->executing;
+  executing = tp->executing ();
   set_executing (proc_target, inferior_ptid, false);
 
   id = null_frame_id;
index ae2d659583e2a10a68eccc763ffa3d25b430d425..d1c1bf523eda80e61b0e6c261f1b1db2a4e0ddf0 100644 (file)
@@ -3815,7 +3815,7 @@ target_pass_ctrlc (void)
        {
          /* A thread can be THREAD_STOPPED and executing, while
             running an infcall.  */
-         if (thr->state == THREAD_RUNNING || thr->executing)
+         if (thr->state == THREAD_RUNNING || thr->executing ())
            {
              /* We can get here quite deep in target layers.  Avoid
                 switching thread context or anything that would
index a82fb49140a326867cc37c4887f87c0b889c0db0..c95a9186681dfd217e330c4ec9c9b8678bf31abd 100644 (file)
@@ -319,6 +319,16 @@ thread_info::deletable () const
 
 /* See gdbthread.h.  */
 
+void
+thread_info::set_executing (bool executing)
+{
+  m_executing = executing;
+  if (executing)
+    this->set_stop_pc (~(CORE_ADDR) 0);
+}
+
+/* See gdbthread.h.  */
+
 void
 thread_info::set_resumed (bool resumed)
 {
@@ -625,13 +635,13 @@ any_live_thread_of_inferior (inferior *inf)
       curr_tp = inferior_thread ();
       if (curr_tp->state == THREAD_EXITED)
        curr_tp = NULL;
-      else if (!curr_tp->executing)
+      else if (!curr_tp->executing ())
        return curr_tp;
     }
 
   for (thread_info *tp : inf->non_exited_threads ())
     {
-      if (!tp->executing)
+      if (!tp->executing ())
        return tp;
 
       tp_executing = tp;
@@ -841,24 +851,11 @@ set_running (process_stratum_target *targ, ptid_t ptid, bool running)
     gdb::observers::target_resumed.notify (ptid);
 }
 
-
-/* Helper for set_executing.  Set's the thread's 'executing' field
-   from EXECUTING, and if EXECUTING is true also clears the thread's
-   stop_pc.  */
-
-static void
-set_executing_thread (thread_info *thr, bool executing)
-{
-  thr->executing = executing;
-  if (executing)
-    thr->set_stop_pc (~(CORE_ADDR) 0);
-}
-
 void
 set_executing (process_stratum_target *targ, ptid_t ptid, bool executing)
 {
   for (thread_info *tp : all_non_exited_threads (targ, ptid))
-    set_executing_thread (tp, executing);
+    tp->set_executing (executing);
 
   /* It only takes one running thread to spawn more threads.  */
   if (executing)
@@ -895,7 +892,7 @@ finish_thread_state (process_stratum_target *targ, ptid_t ptid)
   bool any_started = false;
 
   for (thread_info *tp : all_non_exited_threads (targ, ptid))
-    if (set_running_thread (tp, tp->executing))
+    if (set_running_thread (tp, tp->executing ()))
       any_started = true;
 
   if (any_started)
@@ -922,7 +919,7 @@ validate_registers_access (void)
      at the prompt) when a thread is not executing for some internal
      reason, but is marked running from the user's perspective.  E.g.,
      the thread is waiting for its turn in the step-over queue.  */
-  if (tp->executing)
+  if (tp->executing ())
     error (_("Selected thread is running."));
 }
 
@@ -940,7 +937,7 @@ can_access_registers_thread (thread_info *thread)
     return false;
 
   /* ... or from a spinning thread.  FIXME: see validate_registers_access.  */
-  if (thread->executing)
+  if (thread->executing ())
     return false;
 
   return true;
@@ -1997,7 +1994,7 @@ update_threads_executing (void)
 
       for (thread_info *tp : inf->non_exited_threads ())
        {
-         if (tp->executing)
+         if (tp->executing ())
            {
              targ->threads_executing = true;
              return;