diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-23 00:30:52 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-01-30 10:14:21 -0500 |
commit | d4e3adda1225d29b99f7bc81cc711806ecaacb70 (patch) | |
tree | 9e28132b4b36b74d943160bfb5aa7dd03e19b494 /sim/mn10300 | |
parent | 18d4b488f4538f11cfdc618ddfb26eaf2c955fb7 (diff) | |
download | gdb-d4e3adda1225d29b99f7bc81cc711806ecaacb70.zip gdb-d4e3adda1225d29b99f7bc81cc711806ecaacb70.tar.gz gdb-d4e3adda1225d29b99f7bc81cc711806ecaacb70.tar.bz2 |
sim: watchpoints: change sizeof_pc to sizeof(sim_cia)
Existing ports already have sizeof_pc set to the same size as sim_cia,
so simply make that part of the core code. We already assume this in
places by way of sim_pc_{get,set}, and this is how it's documented in
the sim-base.h API.
There is code to allow sims to pick different register word sizes from
address sizes, but most ports use the defaults for both (32-bits), and
the few that support multiple register sizes never change the address
size (so address defaults to register). I can't think of any machine
where the register hardware size would be larger than the address word
size either. We have ABIs that behave that way (e.g. x32), but the
hardware is still equivalent register sized.
Diffstat (limited to 'sim/mn10300')
-rw-r--r-- | sim/mn10300/ChangeLog | 4 | ||||
-rw-r--r-- | sim/mn10300/interp.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index 3932e81..45fdcad 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2021-01-30 Mike Frysinger <vapier@gentoo.org> + + * interp.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc. + 2021-01-11 Mike Frysinger <vapier@gentoo.org> * config.in, configure: Regenerate. diff --git a/sim/mn10300/interp.c b/sim/mn10300/interp.c index 418f3f0..c41797a 100644 --- a/sim/mn10300/interp.c +++ b/sim/mn10300/interp.c @@ -103,7 +103,6 @@ sim_open (SIM_OPEN_KIND kind, moment, only support watchpoints causing a breakpoint (gdb halt). */ STATE_WATCHPOINTS (sd)->pc = &(PC); - STATE_WATCHPOINTS (sd)->sizeof_pc = sizeof (PC); STATE_WATCHPOINTS (sd)->interrupt_handler = NULL; STATE_WATCHPOINTS (sd)->interrupt_names = NULL; |