Wed Sep 20 08:16:03 1995 steve chamberlain <sac@slash.cygnus.com>
[deliverable/binutils-gdb.git] / gdb / remote-sim.h
1 /* This file defines the interface between the simulator and gdb.
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20 #if !defined (REMOTE_SIM_H)
21 #define REMOTE_SIM_H 1
22
23 /* This file is used when building stand-alone simulators, so isolate this
24 file from gdb. */
25
26 /* Pick up CORE_ADDR_TYPE if defined (from gdb), otherwise use same value as
27 gdb does (unsigned int - from defs.h). */
28
29 #ifndef CORE_ADDR_TYPE
30 typedef unsigned int SIM_ADDR;
31 #else
32 typedef CORE_ADDR_TYPE SIM_ADDR;
33 #endif
34
35 /* Callbacks.
36 The simulator may use the following callbacks (gdb routines) which the
37 standalone program must provide.
38
39 void printf_filtered (char *msg, ...);
40 void error /-* noreturn *-/ (char *msg, ...);
41 void *xmalloc (long size);
42 int sim_callback_write_stdout (char *, int len);
43 */
44
45 /* Main simulator entry points ...
46
47 All functions that can get an error must call the gdb routine `error',
48 they can only return upon success. */
49
50 /* Initialize the simulator. This function is called when the simulator
51 is selected from the command line. ARGS is passed from the command line
52 and can be used to select whatever run time options the simulator provides.
53 ARGS is the raw character string and must be parsed by the simulator,
54 which is trivial to do with the buildargv function in libiberty.
55 It is ok to do nothing. */
56
57 void sim_open PARAMS ((char *args));
58
59 /* Terminate usage of the simulator. This may involve freeing target memory
60 and closing any open files and mmap'd areas. You cannot assume sim_kill
61 has already been called.
62 QUITTING is non-zero if we cannot hang on errors. */
63
64 void sim_close PARAMS ((int quitting));
65
66 /* Load program PROG into the simulator.
67 Return non-zero if you wish the caller to handle it
68 (it is done this way because most simulators can use gr_load_image,
69 but defining it as a callback seems awkward). */
70
71 int sim_load PARAMS ((char *prog, int from_tty));
72
73 /* Prepare to run the simulated program.
74 START_ADDRESS is, yes, you guessed it, the start address of the program.
75 ARGV and ENV are NULL terminated lists of pointers.
76 Gdb will set the start address via sim_store_register as well, but
77 standalone versions of existing simulators are not set up to cleanly call
78 sim_store_register, so the START_ADDRESS argument is there as a
79 workaround. */
80
81 void sim_create_inferior PARAMS ((SIM_ADDR start_address,
82 char **argv, char **env));
83
84 /* Kill the running program.
85 This may involve closing any open files and deleting any mmap'd areas. */
86
87 void sim_kill PARAMS ((void));
88
89 /* Read LENGTH bytes of the simulated program's memory and store in BUF.
90 Result is number of bytes read, or zero if error. */
91
92 int sim_read PARAMS ((SIM_ADDR mem, unsigned char *buf, int length));
93
94 /* Store LENGTH bytes from BUF in the simulated program's memory.
95 Result is number of bytes write, or zero if error. */
96
97 int sim_write PARAMS ((SIM_ADDR mem, unsigned char *buf, int length));
98
99 /* Fetch register REGNO and store the raw value in BUF. */
100
101 void sim_fetch_register PARAMS ((int regno, unsigned char *buf));
102
103 /* Store register REGNO from BUF (in raw format). */
104
105 void sim_store_register PARAMS ((int regno, unsigned char *buf));
106
107 /* Print some interesting information about the simulator.
108 VERBOSE is non-zero for the wordy version. */
109
110 void sim_info PARAMS ((int verbose));
111
112 /* Fetch why the program stopped.
113 SIGRC will contain either the argument to exit() or the signal number. */
114
115 enum sim_stop { sim_exited, sim_stopped, sim_signalled };
116
117 void sim_stop_reason PARAMS ((enum sim_stop *reason, int *sigrc));
118
119 /* Run (or resume) the program. */
120
121 void sim_resume PARAMS ((int step, int siggnal));
122
123 /* Passthru for other commands that the simulator might support. */
124
125 void sim_do_command PARAMS ((char *cmd));
126
127
128 /* Callbacks for the simulator to use. */
129
130 int sim_callback_write_stdout PARAMS ((char *, int));
131
132 #endif /* !defined (REMOTE_SIM_H) */
This page took 0.032889 seconds and 5 git commands to generate.