OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [sim/] [common/] [sim-utils.h] - Diff between revs 24 and 33

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

Rev 24 Rev 33
/* Miscellaneous simulator utilities.
/* Miscellaneous simulator utilities.
   Copyright (C) 1997, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 1997, 2007, 2008 Free Software Foundation, Inc.
   Contributed by Cygnus Support.
   Contributed by Cygnus Support.
 
 
This file is part of GDB, the GNU debugger.
This file is part of GDB, the GNU debugger.
 
 
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/>.  */
 
 
#ifndef SIM_UTILS_H
#ifndef SIM_UTILS_H
#define SIM_UTILS_H
#define SIM_UTILS_H
 
 
/* Memory management with an allocator that clears memory before use. */
/* Memory management with an allocator that clears memory before use. */
 
 
void *zalloc (unsigned long size);
void *zalloc (unsigned long size);
 
 
#define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
#define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
#define NZALLOC(TYPE,N) (TYPE*)zalloc(sizeof (TYPE) * (N))
#define NZALLOC(TYPE,N) (TYPE*)zalloc(sizeof (TYPE) * (N))
 
 
void zfree(void*);
void zfree(void*);
 
 
/* Turn VALUE into a string with commas.  */
/* Turn VALUE into a string with commas.  */
char *sim_add_commas (char *, int, unsigned long);
char *sim_add_commas (char *, int, unsigned long);
 
 
/* Utilities for elapsed time reporting.  */
/* Utilities for elapsed time reporting.  */
 
 
/* Opaque type, known only inside sim_elapsed_time_foo fns. Externally
/* Opaque type, known only inside sim_elapsed_time_foo fns. Externally
   it is known to never have the value zero. */
   it is known to never have the value zero. */
typedef unsigned long SIM_ELAPSED_TIME;
typedef unsigned long SIM_ELAPSED_TIME;
 
 
 
 
/* Get reference point for future call to sim_time_elapsed.  */
/* Get reference point for future call to sim_time_elapsed.  */
SIM_ELAPSED_TIME sim_elapsed_time_get (void);
SIM_ELAPSED_TIME sim_elapsed_time_get (void);
 
 
/* Elapsed time in milliseconds since START.  */
/* Elapsed time in milliseconds since START.  */
unsigned long sim_elapsed_time_since (SIM_ELAPSED_TIME start);
unsigned long sim_elapsed_time_since (SIM_ELAPSED_TIME start);
 
 
/* Utilities for manipulating the load image.  */
/* Utilities for manipulating the load image.  */
 
 
SIM_RC sim_analyze_program (SIM_DESC sd, char *prog_name,
SIM_RC sim_analyze_program (SIM_DESC sd, char *prog_name,
                            struct bfd *prog_bfd);
                            struct bfd *prog_bfd);
 
 
/* 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. */
 
 
typedef int sim_write_fn PARAMS ((SIM_DESC sd, SIM_ADDR mem,
typedef int sim_write_fn PARAMS ((SIM_DESC sd, SIM_ADDR mem,
                                      unsigned char *buf, int length));
                                      unsigned char *buf, int length));
struct bfd *sim_load_file (SIM_DESC sd, const char *myname,
struct bfd *sim_load_file (SIM_DESC sd, const char *myname,
                           host_callback *callback, char *prog,
                           host_callback *callback, char *prog,
                           struct bfd *prog_bfd, int verbose_p,
                           struct bfd *prog_bfd, int verbose_p,
                           int lma_p, sim_write_fn do_load);
                           int lma_p, sim_write_fn do_load);
 
 
/* Internal version of sim_do_command, include formatting */
/* Internal version of sim_do_command, include formatting */
void sim_do_commandf (SIM_DESC sd, const char *fmt, ...);
void sim_do_commandf (SIM_DESC sd, const char *fmt, ...);
 
 
 
 
/* These are defined in callback.c as cover functions to the vprintf
/* These are defined in callback.c as cover functions to the vprintf
   callbacks.  */
   callbacks.  */
 
 
void sim_cb_printf (host_callback *, const char *, ...);
void sim_cb_printf (host_callback *, const char *, ...);
void sim_cb_eprintf (host_callback *, const char *, ...);
void sim_cb_eprintf (host_callback *, const char *, ...);
 
 
 
 
/* sim-basics.h defines a number of enumerations, convert each of them
/* sim-basics.h defines a number of enumerations, convert each of them
   to a string representation */
   to a string representation */
const char *map_to_str (unsigned map);
const char *map_to_str (unsigned map);
const char *access_to_str (unsigned access);
const char *access_to_str (unsigned access);
const char *transfer_to_str (unsigned transfer);
const char *transfer_to_str (unsigned transfer);
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

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