diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-09-29 14:24:38 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-10-10 10:44:35 -0400 |
commit | 99d9c3b92ca96a7425cbb6b1bf453ede9477a2ee (patch) | |
tree | 7f642c989f7c7b49bd40ab5873fc12be632e6ea9 /gdb/progspace.c | |
parent | 72c4529c85907a5e1e04960ff1362a5a185553a0 (diff) | |
download | binutils-99d9c3b92ca96a7425cbb6b1bf453ede9477a2ee.zip binutils-99d9c3b92ca96a7425cbb6b1bf453ede9477a2ee.tar.gz binutils-99d9c3b92ca96a7425cbb6b1bf453ede9477a2ee.tar.bz2 |
gdb: remove target_gdbarch
This function is just a wrapper around the current inferior's gdbarch.
I find that having that wrapper just obscures where the arch is coming
from, and that it's often used as "I don't know which arch to use so
I'll use this magical target_gdbarch function that gets me an arch" when
the arch should in fact come from something in the context (a thread,
objfile, symbol, etc). I think that removing it and inlining
`current_inferior ()->arch ()` everywhere will make it a bit clearer
where that arch comes from and will trigger people into reflecting
whether this is the right place to get the arch or not.
Change-Id: I79f14b4e4934c88f91ca3a3155f5fc3ea2fadf6b
Reviewed-By: John Baldwin <jhb@FreeBSD.org>
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/progspace.c')
-rw-r--r-- | gdb/progspace.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/progspace.c b/gdb/progspace.c index 1dbcd58..555fa79 100644 --- a/gdb/progspace.c +++ b/gdb/progspace.c @@ -58,7 +58,8 @@ address_space::address_space () struct address_space * maybe_new_address_space (void) { - int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ()); + int shared_aspace + = gdbarch_has_shared_address_space (current_inferior ()->arch ()); if (shared_aspace) { @@ -121,7 +122,7 @@ program_space::~program_space () /* Defer breakpoint re-set because we don't want to create new locations for this pspace which we're tearing down. */ clear_symtab_users (SYMFILE_DEFER_BP_RESET); - if (!gdbarch_has_shared_address_space (target_gdbarch ())) + if (!gdbarch_has_shared_address_space (current_inferior ()->arch ())) delete this->aspace; } @@ -402,7 +403,8 @@ maintenance_info_program_spaces_command (const char *args, int from_tty) void update_address_spaces (void) { - int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ()); + int shared_aspace + = gdbarch_has_shared_address_space (current_inferior ()->arch ()); init_address_spaces (); @@ -422,7 +424,7 @@ update_address_spaces (void) } for (inferior *inf : all_inferiors ()) - if (gdbarch_has_global_solist (target_gdbarch ())) + if (gdbarch_has_global_solist (current_inferior ()->arch ())) inf->aspace = maybe_new_address_space (); else inf->aspace = inf->pspace->aspace; |