How many times do I have to do this...
[binutils-gdb.git] / gdb / remote-sim.c
index 0c9308203d848062b56ad2c85439becedf6b938a..a8fc6fa9fb8c3f625c6c43b8d3641cd9cc1c73f0 100644 (file)
@@ -107,14 +107,14 @@ int regno;
   else
     {
       /* FIXME: Until read_register() returns LONGEST, we have this.  */
-      char value[MAX_REGISTER_RAW_SIZE];
-      read_register_gen (regno, value);
-      sim_store_register (regno, value);
+      char tmp[MAX_REGISTER_RAW_SIZE];
+      read_register_gen (regno, tmp);
+      sim_store_register (regno, tmp);
       if (sr_get_debug ())
        {
          printf_filtered ("gdbsim_store_register: %d", regno);
          /* FIXME: We could print something more intelligible.  */
-         dump_mem (value, REGISTER_RAW_SIZE (regno));
+         dump_mem (tmp, REGISTER_RAW_SIZE (regno));
        }
     }
 }
@@ -138,70 +138,14 @@ gdbsim_load (prog, fromtty)
      char *prog;
      int fromtty;
 {
-  bfd  *abfd;
-
   if (sr_get_debug ())
     printf_filtered ("gdbsim_load: prog \"%s\"\n", prog);
 
   inferior_pid = 0;  
-  program_loaded = 0;
-  abfd = bfd_openr (prog, gnutarget);
-
-  if (!abfd) 
-    error ("Unable to open file %s.", prog);
-
-  if (bfd_check_format (abfd, bfd_object) == 0)
-    error ("File is not an object file.");
-
-  if (sim_load (abfd, prog) != 0)
-    return;
-
   program_loaded = 1;
-
-  sim_set_pc (abfd->start_address);
+  gr_load_image (prog, fromtty);
 }
 
-/*
- * This is a utility routine that sim_load() can call to do the work.
- * The result is 0 for success, non-zero for failure.
- *
- * Eg: int sim_load (bfd *abfd, char *prog) { return sim_load_standard (abfd); }
- */
-
-sim_load_standard (abfd)
-     bfd *abfd;
-{
-  asection *s;
-
-  s = abfd->sections;
-  while (s != (asection *)NULL) 
-  {
-    if (s->flags & SEC_LOAD) 
-    {
-      int i;
-      int delta = 4096;
-      char *buffer = xmalloc (delta);
-      printf_filtered ("%s\t: 0x%4x .. 0x%4x  ",
-                     s->name, s->vma, s->vma + s->_raw_size);
-      for (i = 0; i < s->_raw_size; i+= delta) 
-      {
-       int sub_delta = delta;
-       if (sub_delta > s->_raw_size - i)
-         sub_delta = s->_raw_size - i ;
-
-       bfd_get_section_contents (abfd, s, buffer, i, sub_delta);
-       sim_write (s->vma + i, buffer, sub_delta);
-       printf_filtered ("*");
-       fflush (stdout);
-      }
-      printf_filtered ("\n");
-      free (buffer);
-    }
-    s = s->next;
-  }
-
-  return 0;
-}
 
 /* Start an inferior process and set inferior_pid to its pid.
    EXEC_FILE is the file to run.
@@ -350,10 +294,12 @@ gdbsim_wait (pid, status)
      WAITTYPE *status;
 {
   int sigrc;
+  enum sim_stop reason;
 
   if (sr_get_debug ())
     printf_filtered ("gdbsim_wait: ");
-  if (sim_stop_signal (&sigrc) == sim_exited)
+  sim_stop_reason (&reason, &sigrc);
+  if (reason == sim_exited)
     WSETEXIT (*status, sigrc);
   else
     WSETSTOP (*status, sigrc);
@@ -422,7 +368,7 @@ gdbsim_files_info (target)
     {
       printf_filtered ("\tAttached to %s running program %s\n",
                       target_shortname, file);
-      sim_info ();
+      sim_info (printf_filtered, 0);
     }
 }