(sim_core_signal): Add missing "\n" in message.
[deliverable/binutils-gdb.git] / include / remote-sim.h
CommitLineData
05e4e44f
AC
1/* This file defines the interface between the simulator and gdb.
2 Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, 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
58056128
RS
23#ifdef __cplusplus
24extern "C" {
25#endif
26
05e4e44f
AC
27/* This file is used when building stand-alone simulators, so isolate this
28 file from gdb. */
29
30/* Pick up CORE_ADDR_TYPE if defined (from gdb), otherwise use same value as
31 gdb does (unsigned int - from defs.h). */
32
33#ifndef CORE_ADDR_TYPE
34typedef unsigned int SIM_ADDR;
35#else
36typedef CORE_ADDR_TYPE SIM_ADDR;
37#endif
38
1fa0cc2d 39
05e4e44f
AC
40/* Semi-opaque type used as result of sim_open and passed back to all
41 other routines. "desc" is short for "descriptor".
42 It is up to each simulator to define `sim_state'. */
43
44typedef struct sim_state *SIM_DESC;
45
1fa0cc2d 46
b0d8c28f 47/* Values for `kind' arg to sim_open. */
1fa0cc2d 48
b0d8c28f
DE
49typedef enum {
50 SIM_OPEN_STANDALONE, /* simulator used standalone (run.c) */
51 SIM_OPEN_DEBUG /* simulator used by debugger (gdb) */
52} SIM_OPEN_KIND;
53
1fa0cc2d 54
b0d8c28f 55/* Return codes from various functions. */
1fa0cc2d 56
b0d8c28f
DE
57typedef enum {
58 SIM_RC_FAIL = 0,
94dbc121
SG
59 SIM_RC_OK = 1,
60 SIM_RC_UNKNOWN_BREAKPOINT = 2,
61 SIM_RC_INSUFFICIENT_RESOURCES = 3,
62 SIM_RC_DUPLICATE_BREAKPOINT = 4
b0d8c28f
DE
63} SIM_RC;
64
1fa0cc2d 65
a1cb1f4b 66/* The bfd struct, as an opaque type. */
1fa0cc2d 67
a1cb1f4b
DE
68struct _bfd;
69
8517f62b 70
05e4e44f
AC
71/* Main simulator entry points. */
72
8517f62b 73
247fccde
AC
74/* Create a fully initialized simulator instance.
75
1fa0cc2d
AC
76 (This function is called when the simulator is selected from the
77 gdb command line.)
247fccde 78
fafce69a
AC
79 KIND specifies how the simulator shall be used. Currently there
80 are only two kinds: stand-alone and debug.
247fccde 81
1fa0cc2d 82 CALLBACK specifies a standard host callback (defined in callback.h).
05e4e44f 83
247fccde
AC
84 ABFD, when non NULL, designates a target program. The program is
85 not loaded.
86
87 ARGV is a standard ARGV pointer such as that passed from the
88 command line. The syntax of the argument list is is assumed to be
89 ``SIM-PROG { SIM-OPTION } [ TARGET-PROGRAM { TARGET-OPTION } ]''.
fafce69a
AC
90 The trailing TARGET-PROGRAM and args are only valid for a
91 stand-alone simulator.
247fccde
AC
92
93 On success, the result is a non NULL descriptor that shall be
94 passed to the other sim_foo functions. While the simulator
95 configuration can be parameterized by (in decreasing precedence)
96 ARGV's SIM-OPTION, ARGV's TARGET-PROGRAM and the ABFD argument, the
97 successful creation of the simulator shall not dependent on the
98 presence of any of these arguments/options.
99
fafce69a
AC
100 Hardware simulator: The created simulator shall be sufficiently
101 initialized to handle, with out restrictions any client requests
102 (including memory reads/writes, register fetch/stores and a
103 resume).
247fccde 104
fafce69a
AC
105 Process simulator: that process is not created until a call to
106 sim_create_inferior. FIXME: What should the state of the simulator
107 be? */
247fccde
AC
108
109SIM_DESC sim_open PARAMS ((SIM_OPEN_KIND kind, struct host_callback_struct *callback, struct _bfd *abfd, char **argv));
05e4e44f 110
8517f62b 111
1fa0cc2d 112/* Destory a simulator instance.
247fccde
AC
113
114 QUITTING is non-zero if we cannot hang on errors.
115
1fa0cc2d
AC
116 This may involve freeing target memory and closing any open files
117 and mmap'd areas. You cannot assume sim_kill has already been
247fccde 118 called. */
05e4e44f
AC
119
120void sim_close PARAMS ((SIM_DESC sd, int quitting));
121
8517f62b 122
247fccde
AC
123/* Load program PROG into the simulators memory.
124
a1cb1f4b 125 If ABFD is non-NULL, the bfd for the file has already been opened.
247fccde
AC
126 The result is a return code indicating success.
127
9e03a68f
AC
128 Hardware simulator: Normally, each program section is written into
129 memory according to that sections LMA using physical (direct)
130 addressing. The exception being systems, such as PPC/CHRP, which
131 support more complicated program loaders. A call to this function
132 should not effect the state of the processor registers. Multiple
133 calls to this function are permitted and have an accumulative
134 effect.
247fccde 135
fafce69a
AC
136 Process simulator: Calls to this function may be ignored.
137
9e03a68f
AC
138 FIXME: Most hardware simulators load the image at the VMA using
139 virtual addressing.
140
141 FIXME: For some hardware targets, before a loaded program can be
142 executed, it requires the manipulation of VM registers and tables.
fafce69a
AC
143 Such manipulation should probably (?) occure in
144 sim_create_inferior. */
05e4e44f 145
a1cb1f4b 146SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct _bfd *abfd, int from_tty));
05e4e44f 147
8517f62b 148
05e4e44f 149/* Prepare to run the simulated program.
247fccde 150
fafce69a
AC
151 ABFD, if not NULL, provides initial processor state information.
152 ARGV and ENV, if non NULL, are NULL terminated lists of pointers.
247fccde 153
fafce69a
AC
154 Hardware simulator: This function shall initialize the processor
155 registers to a known value. The program counter and possibly stack
156 pointer shall be set using information obtained from ABFD (or
157 hardware reset defaults). ARGV and ENV, dependant on the target
158 ABI, may be written to memory.
247fccde 159
fafce69a
AC
160 Process simulator: After a call to this function, a new process
161 instance shall exist. The TEXT, DATA, BSS and stack regions shall
162 all be initialized, ARGV and ENV shall be written to process
163 address space (according to the applicable ABI) and the program
164 counter and stack pointer set accordingly. */
05e4e44f 165
fafce69a 166SIM_RC sim_create_inferior PARAMS ((SIM_DESC sd, struct _bfd *abfd, char **argv, char **env));
05e4e44f 167
8517f62b 168
5ccb9020
AC
169/* Fetch LENGTH bytes of the simulated program's memory. Start fetch
170 at virtual address MEM and store in BUF. Result is number of bytes
171 read, or zero if error. */
05e4e44f
AC
172
173int sim_read PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
174
8517f62b 175
5ccb9020
AC
176/* Store LENGTH bytes from BUF into the simulated program's
177 memory. Store bytes starting at virtual address MEM. Result is
178 number of bytes write, or zero if error. */
05e4e44f
AC
179
180int sim_write PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
181
8517f62b 182
247fccde
AC
183/* Fetch register REGNO and store the raw (target endian) value in
184 BUF. */
05e4e44f
AC
185
186void sim_fetch_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf));
187
8517f62b 188
1fa0cc2d 189/* Store register REGNO from the raw (target endian) value in BUF. */
05e4e44f
AC
190
191void sim_store_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf));
192
8517f62b 193
a1cb1f4b 194/* Print whatever statistics the simulator has collected.
247fccde 195
a1cb1f4b 196 VERBOSE is currently unused and must always be zero. */
05e4e44f
AC
197
198void sim_info PARAMS ((SIM_DESC sd, int verbose));
199
05e4e44f 200
1fa0cc2d 201/* Run (or resume) the simulated program. */
05e4e44f
AC
202
203void sim_resume PARAMS ((SIM_DESC sd, int step, int siggnal));
204
8517f62b
AC
205
206/* Asynchronous request to stop the simulation.
207 A nonzero return indicates that the simulator is able to handle
208 the request */
209
210int sim_stop PARAMS ((SIM_DESC sd));
211
212
1fa0cc2d 213/* Fetch the REASON why the program stopped.
247fccde 214
1fa0cc2d
AC
215 SIM_EXITED: The program has terminated. SIGRC indicates the target
216 dependant exit status.
247fccde 217
5ccb9020
AC
218 SIM_STOPPED: The program has stopped. SIGRC uses the host's signal
219 numbering as a way of identifying the reaon: program interrupted by
220 user via a sim_stop request (SIGINT); a breakpoint instruction
221 (SIGTRAP); a completed single step (SIGTRAP); an internal error
222 condition (SIGABRT); an illegal instruction (SIGILL); Access to an
223 undefined memory region (SIGSEGV); Mis-aligned memory access
224 (SIGBUS).
247fccde 225
1fa0cc2d
AC
226 SIM_SIGNALLED: The simulator encountered target code that requires
227 the signal SIGRC to be delivered to the simulated program.
247fccde 228
1fa0cc2d
AC
229 SIM_RUNNING, SIM_POLLING: The return of one of these values
230 indicates a problem internal to the simulator. */
231
232enum sim_stop { sim_running, sim_polling, sim_exited, sim_stopped, sim_signalled };
233
234void sim_stop_reason PARAMS ((SIM_DESC sd, enum sim_stop *reason, int *sigrc));
05e4e44f 235
8517f62b 236
1fa0cc2d
AC
237/* Passthru for other commands that the simulator might support.
238 Simulators should be prepared to deal with any combination of NULL
239 or empty CMD. */
240
05e4e44f 241void sim_do_command PARAMS ((SIM_DESC sd, char *cmd));
94dbc121
SG
242
243/* Call these functions to set and clear breakpoints at ADDR. */
244
245SIM_RC sim_set_breakpoint PARAMS ((SIM_DESC sd, SIM_ADDR addr));
246SIM_RC sim_clear_breakpoint PARAMS ((SIM_DESC sd, SIM_ADDR addr));
247SIM_RC sim_clear_all_breakpoints PARAMS ((SIM_DESC sd));
248
249/* These functions are used to enable and disable breakpoints. */
250
251SIM_RC sim_enable_breakpoint PARAMS ((SIM_DESC sd, SIM_ADDR addr));
252SIM_RC sim_disable_breakpoint PARAMS ((SIM_DESC sd, SIM_ADDR addr));
253SIM_RC sim_enable_all_breakpoints PARAMS ((SIM_DESC sd));
254SIM_RC sim_disable_all_breakpoints PARAMS ((SIM_DESC sd));
247fccde 255\f
8517f62b 256
1fa0cc2d 257/* Provide simulator with a default (global) host_callback_struct.
247fccde 258 THIS PROCEDURE IS DEPRECIATED.
aa02a0b0 259 GDB and NRUN do not use this interface.
1fa0cc2d
AC
260 This procedure does not take a SIM_DESC argument as it is
261 used before sim_open. */
262
ff82f214
AC
263void sim_set_callbacks PARAMS ((struct host_callback_struct *));
264
24aa2b57 265
1fa0cc2d 266/* Set the size of the simulator memory array.
247fccde 267 THIS PROCEDURE IS DEPRECIATED.
aa02a0b0 268 GDB and NRUN do not use this interface.
1fa0cc2d
AC
269 This procedure does not take a SIM_DESC argument as it is
270 used before sim_open. */
271
ff82f214 272void sim_size PARAMS ((int i));
87e43259 273
87e43259 274
1fa0cc2d 275/* Run a simulation with tracing enabled.
247fccde 276 THIS PROCEDURE IS DEPRECIATED.
aa02a0b0 277 GDB and NRUN do not use this interface.
1fa0cc2d
AC
278 This procedure does not take a SIM_DESC argument as it is
279 used before sim_open. */
280
87e43259
AC
281int sim_trace PARAMS ((SIM_DESC sd));
282
283
1fa0cc2d 284/* Configure the size of the profile buffer.
247fccde 285 THIS PROCEDURE IS DEPRECIATED.
aa02a0b0 286 GDB and NRUN do not use this interface.
1fa0cc2d
AC
287 This procedure does not take a SIM_DESC argument as it is
288 used before sim_open. */
50a2a691 289
1fa0cc2d 290void sim_set_profile_size PARAMS ((int n));
50a2a691 291
aa02a0b0
AC
292
293/* Kill the running program.
247fccde 294 THIS PROCEDURE IS DEPRECIATED.
aa02a0b0
AC
295 GDB and NRUN do not use this interface.
296 This procedure will be replaced as part of the introduction of
297 multi-cpu simulators. */
298
299void sim_kill PARAMS ((SIM_DESC sd));
300
58056128
RS
301#ifdef __cplusplus
302}
303#endif
304
05e4e44f 305#endif /* !defined (REMOTE_SIM_H) */
This page took 0.093857 seconds and 4 git commands to generate.