Restrict simulator commands to an enabled simulator.
[binutils-gdb.git] / include / remote-sim.h
1 /* This file defines the interface between the simulator and gdb.
2 Copyright (C) 1993, 1994, 1996, 1997 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
36 /* Semi-opaque type used as result of sim_open and passed back to all
37 other routines. "desc" is short for "descriptor".
38 It is up to each simulator to define `sim_state'. */
39
40 typedef struct sim_state *SIM_DESC;
41
42
43 /* Values for `kind' arg to sim_open. */
44
45 typedef enum {
46 SIM_OPEN_STANDALONE, /* simulator used standalone (run.c) */
47 SIM_OPEN_DEBUG /* simulator used by debugger (gdb) */
48 } SIM_OPEN_KIND;
49
50
51 /* Return codes from various functions. */
52
53 typedef enum {
54 SIM_RC_FAIL = 0,
55 SIM_RC_OK = 1
56 } SIM_RC;
57
58
59 /* The bfd struct, as an opaque type. */
60
61 struct _bfd;
62
63
64 /* Main simulator entry points. */
65
66
67 /* Create a simulator instance.
68 (This function is called when the simulator is selected from the
69 gdb command line.)
70 KIND specifies how the simulator will be used. Currently there are only
71 two kinds: standalone and debug.
72 CALLBACK specifies a standard host callback (defined in callback.h).
73 ARGV is passed from the command line and can be used to select whatever
74 run time options the simulator provides. It is the standard NULL
75 terminated array of pointers, with argv[0] being the program name.
76 The result is a descriptor that shall be passed to the other
77 sim_foo functions. */
78
79 SIM_DESC sim_open PARAMS ((SIM_OPEN_KIND kind, struct host_callback_struct *callback, char **argv));
80
81
82 /* Destory a simulator instance.
83 This may involve freeing target memory and closing any open files
84 and mmap'd areas. You cannot assume sim_kill has already been
85 called.
86 QUITTING is non-zero if we cannot hang on errors. */
87
88 void sim_close PARAMS ((SIM_DESC sd, int quitting));
89
90
91 /* Load program PROG into the simulator.
92 If ABFD is non-NULL, the bfd for the file has already been opened.
93 The result is a return code indicating success. */
94
95 SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct _bfd *abfd, int from_tty));
96
97
98 /* Prepare to run the simulated program.
99 ARGV and ENV are NULL terminated lists of pointers. */
100
101 SIM_RC sim_create_inferior PARAMS ((SIM_DESC sd, char **argv, char **env));
102
103
104 /* Kill the running program.
105 This may involve closing any open files and deleting any mmap'd areas. */
106
107 void sim_kill PARAMS ((SIM_DESC sd));
108
109
110 /* Read LENGTH bytes of the simulated program's memory and store in BUF.
111 Result is number of bytes read, or zero if error. */
112
113 int sim_read PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
114
115
116 /* Store LENGTH bytes from BUF in the simulated program's memory.
117 Result is number of bytes write, or zero if error. */
118
119 int sim_write PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
120
121
122 /* Fetch register REGNO and store the raw (target endian) value in BUF. */
123
124 void sim_fetch_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf));
125
126
127 /* Store register REGNO from the raw (target endian) value in BUF. */
128
129 void sim_store_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf));
130
131
132 /* Print whatever statistics the simulator has collected.
133 VERBOSE is currently unused and must always be zero. */
134
135 void sim_info PARAMS ((SIM_DESC sd, int verbose));
136
137
138 /* Run (or resume) the simulated program. */
139
140 void sim_resume PARAMS ((SIM_DESC sd, int step, int siggnal));
141
142
143 /* Asynchronous request to stop the simulation.
144 A nonzero return indicates that the simulator is able to handle
145 the request */
146
147 int sim_stop PARAMS ((SIM_DESC sd));
148
149
150 /* Fetch the REASON why the program stopped.
151 SIM_EXITED: The program has terminated. SIGRC indicates the target
152 dependant exit status.
153 SIM_STOPPED: The program has stopped. SIGRC indicates the reason:
154 program interrupted by user via a sim_stop request (SIGINT); a
155 breakpoint instruction (SIGTRAP); a completed step (SIGTRAP); an
156 internal error condition (SIGABRT).
157 SIM_SIGNALLED: The simulator encountered target code that requires
158 the signal SIGRC to be delivered to the simulated program.
159 SIM_RUNNING, SIM_POLLING: The return of one of these values
160 indicates a problem internal to the simulator. */
161
162 enum sim_stop { sim_running, sim_polling, sim_exited, sim_stopped, sim_signalled };
163
164 void sim_stop_reason PARAMS ((SIM_DESC sd, enum sim_stop *reason, int *sigrc));
165
166
167 /* Passthru for other commands that the simulator might support.
168 Simulators should be prepared to deal with any combination of NULL
169 or empty CMD. */
170
171 void sim_do_command PARAMS ((SIM_DESC sd, char *cmd));
172
173
174 /* Provide simulator with a default (global) host_callback_struct.
175 THIS PROCEDURE IS IS DEPRECIATED.
176 This procedure does not take a SIM_DESC argument as it is
177 used before sim_open. */
178
179 void sim_set_callbacks PARAMS ((struct host_callback_struct *));
180
181
182 /* Set the size of the simulator memory array.
183 THIS PROCEDURE IS IS DEPRECIATED.
184 This procedure does not take a SIM_DESC argument as it is
185 used before sim_open. */
186
187 void sim_size PARAMS ((int i));
188
189
190 /* Run a simulation with tracing enabled.
191 THIS PROCEDURE IS IS DEPRECIATED.
192 This procedure does not take a SIM_DESC argument as it is
193 used before sim_open. */
194
195 int sim_trace PARAMS ((SIM_DESC sd));
196
197
198 /* Configure the size of the profile buffer.
199 THIS PROCEDURE IS IS DEPRECIATED.
200 This procedure does not take a SIM_DESC argument as it is
201 used before sim_open. */
202
203 void sim_set_profile_size PARAMS ((int n));
204
205 #endif /* !defined (REMOTE_SIM_H) */