diff options
author | Pedro Alves <pedro@palves.net> | 2024-04-30 15:33:58 +0100 |
---|---|---|
committer | Pedro Alves <pedro@palves.net> | 2024-05-08 00:39:55 +0100 |
commit | 78ef7c48d1d0c8199cb55e8c6f6a3e6ff09ee59f (patch) | |
tree | 16b27288994c94ec86588dbfb84210ccfb5a0a23 | |
parent | ea80c32fa7af28a45919e2277191bae2f2487fe2 (diff) | |
download | gdb-78ef7c48d1d0c8199cb55e8c6f6a3e6ff09ee59f.zip gdb-78ef7c48d1d0c8199cb55e8c6f6a3e6ff09ee59f.tar.gz gdb-78ef7c48d1d0c8199cb55e8c6f6a3e6ff09ee59f.tar.bz2 |
Windows gdb: Eliminate reload_context
We don't need reload_context, because we can get the same information
out of th->context.ContextFlags. If ContextFlags is zero, then we
need to fetch the context out of the inferior thread. This is what
gdbserver does too.
Change-Id: Ied566037c81383414c46c77713bdd1aec6377b23
-rw-r--r-- | gdb/nat/windows-nat.h | 4 | ||||
-rw-r--r-- | gdb/windows-nat.c | 42 |
2 files changed, 25 insertions, 21 deletions
diff --git a/gdb/nat/windows-nat.h b/gdb/nat/windows-nat.h index 7d33634..41921aa 100644 --- a/gdb/nat/windows-nat.h +++ b/gdb/nat/windows-nat.h @@ -84,10 +84,6 @@ struct windows_thread_info the thread. */ bool debug_registers_changed = false; - /* Nonzero if CONTEXT is invalidated and must be re-read from the - inferior thread. */ - bool reload_context = false; - /* True if this thread is currently stopped at a software breakpoint. This is used to offset the PC when needed. */ bool stopped_at_software_breakpoint = false; diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 4ffbeaa..3888ab6 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -98,6 +98,8 @@ struct windows_per_inferior : public windows_process_info void handle_unload_dll () override; bool handle_access_violation (const EXCEPTION_RECORD *rec) override; + void invalidate_context (windows_thread_info *th); + int windows_initialization_done = 0; std::vector<std::unique_ptr<windows_thread_info>> thread_list; @@ -523,6 +525,18 @@ windows_per_inferior::find_thread (ptid_t ptid) return nullptr; } + +void +windows_per_inferior::invalidate_context (windows_thread_info *th) +{ +#ifdef __x86_64__ + if (windows_process.wow64_process) + th->wow64_context.ContextFlags = 0; + else +#endif + th->context.ContextFlags = 0; +} + windows_thread_info * windows_per_inferior::thread_rec (ptid_t ptid, thread_disposition_type disposition) @@ -536,11 +550,11 @@ windows_per_inferior::thread_rec case INVALIDATE_CONTEXT: if (ptid.lwp () != current_event.dwThreadId) th->suspend (); - th->reload_context = true; + invalidate_context (th); break; case DONT_SUSPEND: - th->reload_context = true; th->suspended = -1; + invalidate_context (th); break; } } @@ -642,18 +656,13 @@ windows_nat_target::delete_thread (ptid_t ptid, DWORD exit_code, and supplies its value to the given regcache. This function assumes that R is non-negative. A failed assertion - is raised if that is not true. - - This function assumes that TH->RELOAD_CONTEXT is not set, meaning - that the windows_thread_info has an up-to-date context. A failed - assertion is raised if that assumption is violated. */ + is raised if that is not true. */ static void windows_fetch_one_register (struct regcache *regcache, windows_thread_info *th, int r) { gdb_assert (r >= 0); - gdb_assert (!th->reload_context); char *context_ptr = (char *) &th->context; #ifdef __x86_64__ @@ -723,21 +732,23 @@ windows_nat_target::fetch_registers (struct regcache *regcache, int r) if (th == NULL) return; - if (th->reload_context) - { #ifdef __x86_64__ - if (windows_process.wow64_process) + if (windows_process.wow64_process) + { + if (th->wow64_context.ContextFlags == 0) { th->wow64_context.ContextFlags = CONTEXT_DEBUGGER_DR; CHECK (Wow64GetThreadContext (th->h, &th->wow64_context)); } - else + } + else #endif + { + if (th->context.ContextFlags == 0) { th->context.ContextFlags = CONTEXT_DEBUGGER_DR; CHECK (GetThreadContext (th->h, &th->context)); } - th->reload_context = false; } if (r < 0) @@ -1533,10 +1544,7 @@ windows_nat_target::get_windows_debug_event *ourstatus = stop->status; ptid_t ptid (windows_process.current_event.dwProcessId, thread_id); - windows_thread_info *th - = windows_process.thread_rec (ptid, INVALIDATE_CONTEXT); - th->reload_context = true; - + windows_process.thread_rec (ptid, INVALIDATE_CONTEXT); return ptid; } |