diff options
author | Pedro Alves <palves@redhat.com> | 2015-11-30 16:05:16 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-11-30 18:37:31 +0000 |
commit | 799a2abe613be0645b84f5aaa050f2f91e6ae3f7 (patch) | |
tree | 403ea876b72cc8d2142181226306aa0a9cf36372 | |
parent | 34c6591498f4363ef2c71d683cdaaa33d6a6ad64 (diff) | |
download | gdb-799a2abe613be0645b84f5aaa050f2f91e6ae3f7.zip gdb-799a2abe613be0645b84f5aaa050f2f91e6ae3f7.tar.gz gdb-799a2abe613be0645b84f5aaa050f2f91e6ae3f7.tar.bz2 |
remote: stop reason and watchpoint data address per thread
Running local-watch-wrong-thread.exp with "maint set target-non-stop
on" exposes that gdb/remote.c only records whether the target stopped
for a breakpoint/watchpoint plus the watchpoint data address *for the
last reported remote event*. But in non-stop mode, we need to keep
that info per-thread, as each thread can end up with its own
last-status pending.
gdb/ChangeLog:
2015-11-30 Pedro Alves <palves@redhat.com>
* remote.c (struct remote_state) <remote_watch_data_address,
stop_reason>: Delete fields.
(struct private_thread_info) <stop_reason, watch_data_address>:
New fields.
(resume_clear_thread_private_info): New function.
(append_pending_thread_resumptions): Call it.
(remote_resume): Clear all threads' private info.
(process_stop_reply): Adjust.
(remote_wait_as): Don't reference remote_state's stop_reason
field.
(remote_stopped_by_sw_breakpoint)
(remote_stopped_by_hw_breakpoint, remote_stopped_by_watchpoint)
(remote_stopped_data_address): Adjust to refer get data from the
current thread.
-rw-r--r-- | gdb/ChangeLog | 17 | ||||
-rw-r--r-- | gdb/remote.c | 69 |
2 files changed, 61 insertions, 25 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3e10e2b..a0eff91 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,22 @@ 2015-11-30 Pedro Alves <palves@redhat.com> + * remote.c (struct remote_state) <remote_watch_data_address, + stop_reason>: Delete fields. + (struct private_thread_info) <stop_reason, watch_data_address>: + New fields. + (resume_clear_thread_private_info): New function. + (append_pending_thread_resumptions): Call it. + (remote_resume): Clear all threads' private info. + (process_stop_reply): Adjust. + (remote_wait_as): Don't reference remote_state's stop_reason + field. + (remote_stopped_by_sw_breakpoint) + (remote_stopped_by_hw_breakpoint, remote_stopped_by_watchpoint) + (remote_stopped_data_address): Adjust to refer get data from the + current thread. + +2015-11-30 Pedro Alves <palves@redhat.com> + * infcmd.c (attach_post_wait): If the target is always in non-stop mode, and the UI is in all-stop mode, stop all threads and pick the one with lowest number as current. diff --git a/gdb/remote.c b/gdb/remote.c index bbcdbe1..5270bd2 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -401,13 +401,6 @@ struct remote_state int use_threadinfo_query; int use_threadextra_query; - /* This is set to the data address of the access causing the target - to stop for a watchpoint. */ - CORE_ADDR remote_watch_data_address; - - /* Whether the target stopped for a breakpoint/watchpoint. */ - enum target_stop_reason stop_reason; - threadref echo_nextthread; threadref nextthread; threadref resultthreadlist[MAXTHREADLISTRESULTS]; @@ -439,6 +432,13 @@ struct private_thread_info char *extra; char *name; int core; + + /* Whether the target stopped for a breakpoint/watchpoint. */ + enum target_stop_reason stop_reason; + + /* This is set to the data address of the access causing the target + to stop for a watchpoint. */ + CORE_ADDR watch_data_address; }; static void @@ -5327,6 +5327,18 @@ append_resumption (char *p, char *endp, return p; } +/* Clear the thread's private info on resume. */ + +static void +resume_clear_thread_private_info (struct thread_info *thread) +{ + if (thread->priv != NULL) + { + thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON; + thread->priv->watch_data_address = 0; + } +} + /* Append a vCont continue-with-signal action for threads that have a non-zero stop signal. */ @@ -5343,6 +5355,7 @@ append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid) p = append_resumption (p, endp, thread->ptid, 0, thread->suspend.stop_signal); thread->suspend.stop_signal = GDB_SIGNAL_0; + resume_clear_thread_private_info (thread); } return p; @@ -5437,6 +5450,7 @@ remote_resume (struct target_ops *ops, { struct remote_state *rs = get_remote_state (); char *buf; + struct thread_info *thread; /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN (explained in remote-notif.c:handle_notification) so @@ -5463,6 +5477,9 @@ remote_resume (struct target_ops *ops, else set_continue_thread (ptid); + ALL_NON_EXITED_THREADS (thread) + resume_clear_thread_private_info (thread); + buf = rs->buf; if (execution_direction == EXEC_REVERSE) { @@ -6609,6 +6626,7 @@ process_stop_reply (struct stop_reply *stop_reply, && status->kind != TARGET_WAITKIND_SIGNALLED) { struct remote_state *rs = get_remote_state (); + struct private_thread_info *remote_thr; /* Expedited registers. */ if (stop_reply->regcache) @@ -6625,11 +6643,11 @@ process_stop_reply (struct stop_reply *stop_reply, VEC_free (cached_reg_t, stop_reply->regcache); } - rs->stop_reason = stop_reply->stop_reason; - rs->remote_watch_data_address = stop_reply->watch_data_address; - remote_notice_new_inferior (ptid, 0); - demand_private_info (ptid)->core = stop_reply->core; + remote_thr = demand_private_info (ptid); + remote_thr->core = stop_reply->core; + remote_thr->stop_reason = stop_reply->stop_reason; + remote_thr->watch_data_address = stop_reply->watch_data_address; } stop_reply_xfree (stop_reply); @@ -6763,8 +6781,6 @@ remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options) buf = rs->buf; - rs->stop_reason = TARGET_STOPPED_BY_NO_REASON; - /* Assume that the target has acknowledged Ctrl-C unless we receive an 'F' or 'O' packet. */ if (buf[0] != 'F' && buf[0] != 'O') @@ -9333,9 +9349,10 @@ remote_check_watch_resources (struct target_ops *self, static int remote_stopped_by_sw_breakpoint (struct target_ops *ops) { - struct remote_state *rs = get_remote_state (); + struct thread_info *thread = inferior_thread (); - return rs->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT; + return (thread->priv != NULL + && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT); } /* The to_supports_stopped_by_sw_breakpoint method of target @@ -9354,9 +9371,10 @@ remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops) static int remote_stopped_by_hw_breakpoint (struct target_ops *ops) { - struct remote_state *rs = get_remote_state (); + struct thread_info *thread = inferior_thread (); - return rs->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT; + return (thread->priv != NULL + && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT); } /* The to_supports_stopped_by_hw_breakpoint method of target @@ -9373,24 +9391,25 @@ remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops) static int remote_stopped_by_watchpoint (struct target_ops *ops) { - struct remote_state *rs = get_remote_state (); + struct thread_info *thread = inferior_thread (); - return rs->stop_reason == TARGET_STOPPED_BY_WATCHPOINT; + return (thread->priv != NULL + && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT); } static int remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p) { - struct remote_state *rs = get_remote_state (); - int rc = 0; + struct thread_info *thread = inferior_thread (); - if (remote_stopped_by_watchpoint (target)) + if (thread->priv != NULL + && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT) { - *addr_p = rs->remote_watch_data_address; - rc = 1; + *addr_p = thread->priv->watch_data_address; + return 1; } - return rc; + return 0; } |