diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-11-05 04:47:26 +0000 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-11-17 20:01:37 +0000 |
commit | 9c742269ec8507d924d7a0c815155ca5aa21467a (patch) | |
tree | 311e5334f6a80b23a0b361e8f916a5df9a57ab0e /gdb/mi | |
parent | 7438771288f1acd5ab25277188a75ce9e48e256c (diff) | |
download | gdb-9c742269ec8507d924d7a0c815155ca5aa21467a.zip gdb-9c742269ec8507d924d7a0c815155ca5aa21467a.tar.gz gdb-9c742269ec8507d924d7a0c815155ca5aa21467a.tar.bz2 |
gdb: remove get_current_regcache
Remove get_current_regcache, inlining the call to get_thread_regcache in
callers. When possible, pass the right thread_info object known from
the local context. Otherwise, fall back to passing `inferior_thread ()`.
This makes the reference to global context bubble up one level, a small
step towards the long term goal of reducing the number of references to
global context (or rather, moving those references as close as possible
to the top of the call tree).
No behavior change expected.
Change-Id: Ifa6980c88825d803ea586546b6b4c633c33be8d6
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 944c911..abcd0d3 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1132,7 +1132,6 @@ void mi_cmd_data_write_register_values (const char *command, const char *const *argv, int argc) { - struct regcache *regcache; struct gdbarch *gdbarch; int numregs, i; @@ -1143,7 +1142,7 @@ mi_cmd_data_write_register_values (const char *command, will change depending upon the particular processor being debugged. */ - regcache = get_current_regcache (); + regcache *regcache = get_thread_regcache (inferior_thread ()); gdbarch = regcache->arch (); numregs = gdbarch_num_cooked_regs (gdbarch); |