sim: h8300: inline sim_state_initialize
authorMike Frysinger <vapier@gentoo.org>
Wed, 30 Dec 2015 11:03:31 +0000 (06:03 -0500)
committerMike Frysinger <vapier@gentoo.org>
Wed, 30 Dec 2015 11:05:02 +0000 (06:05 -0500)
All the state is handled already by the common cpu allocation which
zeros out the entire state.

sim/h8300/ChangeLog
sim/h8300/compile.c

index 834fcec547798c211dfc64f47369bf23a642ad46..7d87d1fcf18c8d804d7aefd07ac3a858d63a57ba 100644 (file)
@@ -1,3 +1,9 @@
+2015-12-30  Mike Frysinger  <vapier@gentoo.org>
+
+       * compile.c (sim_state_initialize): Delete.
+       (sim_open): Replace sim_state_initialize call with SBR_REGNUM
+       assignment.
+
 2015-12-30  Mike Frysinger  <vapier@gentoo.org>
 
        * compile.c (h8300_reg_store): Delete sd.  Change init_pointers to
index 99d28ad9f525d5b71e4aa0471c0f520c08f77d07..ef6a853a11976777a327382b627f8d014b3ee631 100644 (file)
@@ -58,32 +58,6 @@ static void set_simcache_size (SIM_DESC, int);
 
 /* CPU data object: */
 
-static int
-sim_state_initialize (SIM_DESC sd, sim_cpu *cpu)
-{
-  /* FIXME: not really necessary, since sim_cpu_alloc calls zalloc.  */
-
-  memset (&cpu->regs, 0, sizeof(cpu->regs));
-  cpu->regs[SBR_REGNUM] = 0xFFFFFF00;
-  cpu->pc = 0;
-  cpu->delayed_branch = 0;
-  cpu->memory = NULL;
-  cpu->eightbit = NULL;
-  cpu->mask = 0;
-
-  /* Initialize local simulator state.  */
-  sd->sim_cache = NULL;
-  sd->sim_cache_size = 0;
-  sd->cache_idx = NULL;
-  sd->cache_top = 0;
-  sd->memory_size = 0;
-  sd->compiles = 0;
-#ifdef ADEBUG
-  memset (&cpu->stats, 0, sizeof (cpu->stats));
-#endif
-  return 0;
-}
-
 static unsigned int
 h8_get_pc (SIM_DESC sd)
 {
@@ -4869,7 +4843,7 @@ sim_open (SIM_OPEN_KIND kind,
 
   cpu = STATE_CPU (sd, 0);
   SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
-  sim_state_initialize (sd, cpu);
+  cpu->regs[SBR_REGNUM] = 0xFFFFFF00;
   /* sim_cpu object is new, so some initialization is needed.  */
   init_pointers_needed = 1;
 
This page took 0.030976 seconds and 4 git commands to generate.