OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [sim/] [common/] [sim-load.c] - Diff between revs 24 and 157

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 157
/* Utility to load a file into the simulator.
/* Utility to load a file into the simulator.
   Copyright (C) 1997, 1998, 2001, 2002, 2004, 2007, 2008
   Copyright (C) 1997, 1998, 2001, 2002, 2004, 2007, 2008
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
This program is free software; you can redistribute it and/or modify
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
(at your option) any later version.
 
 
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
/* This is a standalone loader, independent of the sim-basic.h machinery,
/* This is a standalone loader, independent of the sim-basic.h machinery,
   as it is used by simulators that don't use it [though that doesn't mean
   as it is used by simulators that don't use it [though that doesn't mean
   to suggest that they shouldn't :-)].  */
   to suggest that they shouldn't :-)].  */
 
 
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "cconfig.h"
#include "cconfig.h"
#endif
#endif
#include "ansidecl.h"
#include "ansidecl.h"
#include <stdio.h> /* for NULL */
#include <stdio.h> /* for NULL */
#include <stdarg.h>
#include <stdarg.h>
#ifdef HAVE_STDLIB_H
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#include <stdlib.h>
#endif
#endif
#include <time.h>
#include <time.h>
 
 
#include "sim-basics.h"
#include "sim-basics.h"
#include "bfd.h"
#include "bfd.h"
#include "sim-utils.h"
#include "sim-utils.h"
 
 
#include "gdb/callback.h"
#include "gdb/callback.h"
#include "gdb/remote-sim.h"
#include "gdb/remote-sim.h"
 
 
static void eprintf PARAMS ((host_callback *, const char *, ...));
static void eprintf PARAMS ((host_callback *, const char *, ...));
static void xprintf PARAMS ((host_callback *, const char *, ...));
static void xprintf PARAMS ((host_callback *, const char *, ...));
static void report_transfer_performance
static void report_transfer_performance
  PARAMS ((host_callback *, unsigned long, time_t, time_t));
  PARAMS ((host_callback *, unsigned long, time_t, time_t));
static void xprintf_bfd_vma PARAMS ((host_callback *, bfd_vma));
static void xprintf_bfd_vma PARAMS ((host_callback *, bfd_vma));
 
 
/* Load program PROG into the simulator using the function DO_LOAD.
/* Load program PROG into the simulator using the function DO_LOAD.
   If PROG_BFD is non-NULL, the file has already been opened.
   If PROG_BFD is non-NULL, the file has already been opened.
   If VERBOSE_P is non-zero statistics are printed of each loaded section
   If VERBOSE_P is non-zero statistics are printed of each loaded section
   and the transfer rate (for consistency with gdb).
   and the transfer rate (for consistency with gdb).
   If LMA_P is non-zero the program sections are loaded at the LMA
   If LMA_P is non-zero the program sections are loaded at the LMA
   rather than the VMA
   rather than the VMA
   If this fails an error message is printed and NULL is returned.
   If this fails an error message is printed and NULL is returned.
   If it succeeds the bfd is returned.
   If it succeeds the bfd is returned.
   NOTE: For historical reasons, older hardware simulators incorrectly
   NOTE: For historical reasons, older hardware simulators incorrectly
   write the program sections at LMA interpreted as a virtual address.
   write the program sections at LMA interpreted as a virtual address.
   This is still accommodated for backward compatibility reasons. */
   This is still accommodated for backward compatibility reasons. */
 
 
 
 
bfd *
bfd *
sim_load_file (sd, myname, callback, prog, prog_bfd, verbose_p, lma_p, do_write)
sim_load_file (sd, myname, callback, prog, prog_bfd, verbose_p, lma_p, do_write)
     SIM_DESC sd;
     SIM_DESC sd;
     const char *myname;
     const char *myname;
     host_callback *callback;
     host_callback *callback;
     char *prog;
     char *prog;
     bfd *prog_bfd;
     bfd *prog_bfd;
     int verbose_p;
     int verbose_p;
     int lma_p;
     int lma_p;
     sim_write_fn do_write;
     sim_write_fn do_write;
{
{
  asection *s;
  asection *s;
  /* Record separately as we don't want to close PROG_BFD if it was passed.  */
  /* Record separately as we don't want to close PROG_BFD if it was passed.  */
  bfd *result_bfd;
  bfd *result_bfd;
  time_t start_time = 0; /* Start and end times of download */
  time_t start_time = 0; /* Start and end times of download */
  time_t end_time = 0;
  time_t end_time = 0;
  unsigned long data_count = 0;  /* Number of bytes transferred to memory */
  unsigned long data_count = 0;  /* Number of bytes transferred to memory */
  int found_loadable_section;
  int found_loadable_section;
 
 
  if (prog_bfd != NULL)
  if (prog_bfd != NULL)
    result_bfd = prog_bfd;
    result_bfd = prog_bfd;
  else
  else
    {
    {
      result_bfd = bfd_openr (prog, 0);
      result_bfd = bfd_openr (prog, 0);
      if (result_bfd == NULL)
      if (result_bfd == NULL)
        {
        {
          eprintf (callback, "%s: can't open \"%s\": %s\n",
          eprintf (callback, "%s: can't open \"%s\": %s\n",
                   myname, prog, bfd_errmsg (bfd_get_error ()));
                   myname, prog, bfd_errmsg (bfd_get_error ()));
          return NULL;
          return NULL;
        }
        }
    }
    }
 
 
  if (!bfd_check_format (result_bfd, bfd_object))
  if (!bfd_check_format (result_bfd, bfd_object))
    {
    {
      eprintf (callback, "%s: \"%s\" is not an object file: %s\n",
      eprintf (callback, "%s: \"%s\" is not an object file: %s\n",
               myname, prog, bfd_errmsg (bfd_get_error ()));
               myname, prog, bfd_errmsg (bfd_get_error ()));
      /* Only close if we opened it.  */
      /* Only close if we opened it.  */
      if (prog_bfd == NULL)
      if (prog_bfd == NULL)
        bfd_close (result_bfd);
        bfd_close (result_bfd);
      return NULL;
      return NULL;
    }
    }
 
 
  if (verbose_p)
  if (verbose_p)
    start_time = time (NULL);
    start_time = time (NULL);
 
 
  found_loadable_section = 0;
  found_loadable_section = 0;
  for (s = result_bfd->sections; s; s = s->next)
  for (s = result_bfd->sections; s; s = s->next)
    {
    {
      if (s->flags & SEC_LOAD)
      if (s->flags & SEC_LOAD)
        {
        {
          bfd_size_type size;
          bfd_size_type size;
 
 
          size = bfd_get_section_size (s);
          size = bfd_get_section_size (s);
          if (size > 0)
          if (size > 0)
            {
            {
              char *buffer;
              char *buffer;
              bfd_vma lma;
              bfd_vma lma;
 
 
              buffer = malloc (size);
              buffer = malloc (size);
              if (buffer == NULL)
              if (buffer == NULL)
                {
                {
                  eprintf (callback,
                  eprintf (callback,
                           "%s: insufficient memory to load \"%s\"\n",
                           "%s: insufficient memory to load \"%s\"\n",
                           myname, prog);
                           myname, prog);
                  /* Only close if we opened it.  */
                  /* Only close if we opened it.  */
                  if (prog_bfd == NULL)
                  if (prog_bfd == NULL)
                    bfd_close (result_bfd);
                    bfd_close (result_bfd);
                  return NULL;
                  return NULL;
                }
                }
              if (lma_p)
              if (lma_p)
                lma = bfd_section_lma (result_bfd, s);
                lma = bfd_section_lma (result_bfd, s);
              else
              else
                lma = bfd_section_vma (result_bfd, s);
                lma = bfd_section_vma (result_bfd, s);
              if (verbose_p)
              if (verbose_p)
                {
                {
                  xprintf (callback, "Loading section %s, size 0x%lx %s ",
                  xprintf (callback, "Loading section %s, size 0x%lx %s ",
                           bfd_get_section_name (result_bfd, s),
                           bfd_get_section_name (result_bfd, s),
                           (unsigned long) size,
                           (unsigned long) size,
                           (lma_p ? "lma" : "vma"));
                           (lma_p ? "lma" : "vma"));
                  xprintf_bfd_vma (callback, lma);
                  xprintf_bfd_vma (callback, lma);
                  xprintf (callback, "\n");
                  xprintf (callback, "\n");
                }
                }
              data_count += size;
              data_count += size;
              bfd_get_section_contents (result_bfd, s, buffer, 0, size);
              bfd_get_section_contents (result_bfd, s, buffer, 0, size);
              do_write (sd, lma, buffer, size);
              do_write (sd, lma, buffer, size);
              found_loadable_section = 1;
              found_loadable_section = 1;
              free (buffer);
              free (buffer);
            }
            }
        }
        }
    }
    }
 
 
  if (!found_loadable_section)
  if (!found_loadable_section)
    {
    {
      eprintf (callback,
      eprintf (callback,
               "%s: no loadable sections \"%s\"\n",
               "%s: no loadable sections \"%s\"\n",
               myname, prog);
               myname, prog);
      return NULL;
      return NULL;
    }
    }
 
 
  if (verbose_p)
  if (verbose_p)
    {
    {
      end_time = time (NULL);
      end_time = time (NULL);
      xprintf (callback, "Start address ");
      xprintf (callback, "Start address ");
      xprintf_bfd_vma (callback, bfd_get_start_address (result_bfd));
      xprintf_bfd_vma (callback, bfd_get_start_address (result_bfd));
      xprintf (callback, "\n");
      xprintf (callback, "\n");
      report_transfer_performance (callback, data_count, start_time, end_time);
      report_transfer_performance (callback, data_count, start_time, end_time);
    }
    }
 
 
  bfd_cache_close (result_bfd);
  bfd_cache_close (result_bfd);
 
 
  return result_bfd;
  return result_bfd;
}
}
 
 
static void
static void
xprintf VPARAMS ((host_callback *callback, const char *fmt, ...))
xprintf VPARAMS ((host_callback *callback, const char *fmt, ...))
{
{
  va_list ap;
  va_list ap;
 
 
  VA_START (ap, fmt);
  VA_START (ap, fmt);
 
 
  (*callback->vprintf_filtered) (callback, fmt, ap);
  (*callback->vprintf_filtered) (callback, fmt, ap);
 
 
  va_end (ap);
  va_end (ap);
}
}
 
 
static void
static void
eprintf VPARAMS ((host_callback *callback, const char *fmt, ...))
eprintf VPARAMS ((host_callback *callback, const char *fmt, ...))
{
{
  va_list ap;
  va_list ap;
 
 
  VA_START (ap, fmt);
  VA_START (ap, fmt);
 
 
  (*callback->evprintf_filtered) (callback, fmt, ap);
  (*callback->evprintf_filtered) (callback, fmt, ap);
 
 
  va_end (ap);
  va_end (ap);
}
}
 
 
/* Report how fast the transfer went. */
/* Report how fast the transfer went. */
 
 
static void
static void
report_transfer_performance (callback, data_count, start_time, end_time)
report_transfer_performance (callback, data_count, start_time, end_time)
     host_callback *callback;
     host_callback *callback;
     unsigned long data_count;
     unsigned long data_count;
     time_t start_time, end_time;
     time_t start_time, end_time;
{
{
  xprintf (callback, "Transfer rate: ");
  xprintf (callback, "Transfer rate: ");
  if (end_time != start_time)
  if (end_time != start_time)
    xprintf (callback, "%ld bits/sec",
    xprintf (callback, "%ld bits/sec",
             (data_count * 8) / (end_time - start_time));
             (data_count * 8) / (end_time - start_time));
  else
  else
    xprintf (callback, "%ld bits in <1 sec", (data_count * 8));
    xprintf (callback, "%ld bits in <1 sec", (data_count * 8));
  xprintf (callback, ".\n");
  xprintf (callback, ".\n");
}
}
 
 
/* Print a bfd_vma.
/* Print a bfd_vma.
   This is intended to handle the vagaries of 32 vs 64 bits, etc.  */
   This is intended to handle the vagaries of 32 vs 64 bits, etc.  */
 
 
static void
static void
xprintf_bfd_vma (callback, vma)
xprintf_bfd_vma (callback, vma)
     host_callback *callback;
     host_callback *callback;
     bfd_vma vma;
     bfd_vma vma;
{
{
  /* FIXME: for now */
  /* FIXME: for now */
  xprintf (callback, "0x%lx", (unsigned long) vma);
  xprintf (callback, "0x%lx", (unsigned long) vma);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.