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