From 6e4f085c7f459e0777a71bcb61ed3aa8257fa386 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 22 Mar 2015 23:10:09 -0400 Subject: sim: sim-close: unify sim_close logic Other than the nice advantage of all sims having to declare one fewer common function, this also fixes leakage in pretty much every sim. Many were not freeing any resources, and a few were inconsistent as to the ones they did. Now we have a single module that takes care of all the logic for us. Most of the non-cgen based ones could be deleted outright. The cgen ones required adding a callback to the arch-specific cleanup func. The few that still have close callbacks are to manage their internal state. We do not convert erc32, m32c, ppc, rl78, or rx as they do not use the common sim core. --- sim/cr16/ChangeLog | 4 ++++ sim/cr16/interp.c | 7 ------- 2 files changed, 4 insertions(+), 7 deletions(-) (limited to 'sim/cr16') diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog index ccc4abb..5cbb413 100644 --- a/sim/cr16/ChangeLog +++ b/sim/cr16/ChangeLog @@ -1,3 +1,7 @@ +2015-11-14 Mike Frysinger + + * interp.c (sim_close): Delete. + 2015-11-10 Mike Frysinger * interp.c (sim_cr16_translate_dmap_addr): Mark static. diff --git a/sim/cr16/interp.c b/sim/cr16/interp.c index 5b3f5bb..8af7aef 100644 --- a/sim/cr16/interp.c +++ b/sim/cr16/interp.c @@ -945,13 +945,6 @@ sim_open (SIM_OPEN_KIND kind, struct host_callback_struct *cb, struct bfd *abfd, return sd; } - -void -sim_close (SIM_DESC sd, int quitting) -{ - /* Nothing to do. */ -} - uint8 * dmem_addr (uint32 offset) { -- cgit v1.1