sim: msp430: drop duplicate sim_load_file call
authorMike Frysinger <vapier@gentoo.org>
Mon, 4 Jan 2016 05:25:46 +0000 (00:25 -0500)
committerMike Frysinger <vapier@gentoo.org>
Tue, 5 Jan 2016 19:37:46 +0000 (14:37 -0500)
There's no need, or desire, to call sim_load_file from sim_open.  The
higher levels (gdb/run) take care of calling sim_load for us already.

sim/msp430/ChangeLog
sim/msp430/msp430-sim.c

index 4f4b938fb6e80012e598cc83fc96b5e7e3d21ad6..02892801e862371dc7685db7e863ac47282f7b32 100644 (file)
@@ -1,3 +1,10 @@
+2016-01-05  Mike Frysinger  <vapier@gentoo.org>
+
+       * msp430-sim.c (loader_write_mem): Delete.
+       (lookup_symbol): Return -1 when abfd is NULL.
+       (sim_open): Delete prog_bfd variable.  Delete call to sim_load_file.
+       Delete prog_bfd check.
+
 2016-01-05  Mike Frysinger  <vapier@gentoo.org>
 
        * Makefile.in (SIM_OBJS): Delete trace.o.
index a074587625ab8155e21a6a13321ddc443d7ebb27..74a600d2d88e5305d89f08da918652496b416e2b 100644 (file)
 #include "sim-syscall.h"
 #include "targ-vals.h"
 
-static int
-loader_write_mem (SIM_DESC sd,
-                 SIM_ADDR taddr,
-                 const unsigned char *buf,
-                 int bytes)
-{
-  SIM_CPU *cpu = MSP430_CPU (sd);
-  return sim_core_write_buffer (sd, cpu, write_map, buf, taddr, bytes);
-}
-
 static sim_cia
 msp430_pc_fetch (SIM_CPU *cpu)
 {
@@ -62,6 +52,9 @@ lookup_symbol (SIM_DESC sd, const char *name)
   long number_of_symbols = STATE_NUM_SYMBOLS (sd);
   long i;
 
+  if (abfd == NULL)
+    return -1;
+
   if (symbol_table == NULL)
     {
       long storage_needed;
@@ -148,7 +141,6 @@ sim_open (SIM_OPEN_KIND kind,
 {
   SIM_DESC sd = sim_state_alloc (kind, callback);
   char c;
-  struct bfd *prog_bfd;
 
   /* Initialise the simulator.  */
 
@@ -198,14 +190,6 @@ sim_open (SIM_OPEN_KIND kind,
       return 0;
     }
 
-  prog_bfd = sim_load_file (sd, argv[0], callback,
-                           "the program",
-                           STATE_PROG_BFD (sd),
-                           0 /* verbose */,
-                           1 /* use LMA instead of VMA */,
-                           loader_write_mem);
-  /* Allow prog_bfd to be NULL - this is needed by the GDB testsuite.  */
-
   /* Establish any remaining configuration options.  */
   if (sim_config (sd) != SIM_RC_OK)
     {
@@ -223,13 +207,10 @@ sim_open (SIM_OPEN_KIND kind,
   assert (MAX_NR_PROCESSORS == 1);
   msp430_initialize_cpu (sd, MSP430_CPU (sd));
 
-  if (prog_bfd != NULL)
-    {
-      MSP430_CPU (sd)->state.cio_breakpoint = lookup_symbol (sd, "C$$IO$$");
-      MSP430_CPU (sd)->state.cio_buffer = lookup_symbol (sd, "__CIOBUF__");
-      if (MSP430_CPU (sd)->state.cio_buffer == -1)
-       MSP430_CPU (sd)->state.cio_buffer = lookup_symbol (sd, "_CIOBUF_");
-    }
+  MSP430_CPU (sd)->state.cio_breakpoint = lookup_symbol (sd, "C$$IO$$");
+  MSP430_CPU (sd)->state.cio_buffer = lookup_symbol (sd, "__CIOBUF__");
+  if (MSP430_CPU (sd)->state.cio_buffer == -1)
+    MSP430_CPU (sd)->state.cio_buffer = lookup_symbol (sd, "_CIOBUF_");
 
   return sd;
 }
This page took 0.026491 seconds and 4 git commands to generate.