1 /* Simulator pseudo baseclass.
3 Copyright 1997-2024 Free Software Foundation, Inc.
5 Contributed by Cygnus Support.
7 This file is part of GDB, the GNU debugger.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* Simulator state pseudo baseclass.
25 Each simulator is required to have the file ``sim-main.h''. That
26 file includes ``sim-basics.h'', defines the base type ``sim_cia''
27 (the data type that contains complete current instruction address
28 information), include ``sim-base.h'':
30 #include "sim-basics.h"
31 /-* If `sim_cia' is not an integral value (e.g. a struct), define
32 CIA_ADDR to return the integral value. *-/
33 /-* typedef struct {...} sim_cia; *-/
34 /-* #define CIA_ADDR(cia) (...) *-/
37 finally, two data types `struct _sim_cpu' and `struct sim_state'
41 ... simulator specific members ...
45 If your sim needs to allocate sim-wide state, use STATE_ARCH_DATA. */
55 /* Pre-declare certain types. */
57 /* typedef <target-dependant> sim_cia; */
59 #define NULL_CIA ((sim_cia) 0)
61 /* Return the current instruction address as a number.
62 Some targets treat the current instruction address as a struct
63 (e.g. for delay slot handling). */
65 #define CIA_ADDR(cia) (cia)
66 typedef address_word sim_cia
;
68 #ifndef INVALID_INSTRUCTION_ADDRESS
69 #define INVALID_INSTRUCTION_ADDRESS ((address_word)0 - 1)
72 /* TODO: Probably should just delete SIM_CPU. */
73 typedef struct _sim_cpu SIM_CPU
;
74 typedef struct _sim_cpu sim_cpu
;
78 #include "sim-module.h"
80 #include "sim-arange.h"
81 #include "sim-trace.h"
83 #include "sim-events.h"
84 #include "sim-profile.h"
85 #include "sim-model.h"
87 #include "sim-engine.h"
88 #include "sim-watch.h"
89 #include "sim-memopt.h"
91 #include "sim-assert.h"
94 /* All the cpus for this instance. */
95 sim_cpu
*cpu
[MAX_NR_PROCESSORS
];
97 # define STATE_CPU(sd, n) ((sd)->cpu[n])
99 # define STATE_CPU(sd, n) ((sd)->cpu[0])
102 /* Simulator's argv[0]. */
104 #define STATE_MY_NAME(sd) ((sd)->my_name)
106 /* Who opened the simulator. */
107 SIM_OPEN_KIND open_kind
;
108 #define STATE_OPEN_KIND(sd) ((sd)->open_kind)
110 /* The host callbacks. */
111 struct host_callback_struct
*callback
;
112 #define STATE_CALLBACK(sd) ((sd)->callback)
114 /* The type of simulation environment (user/operating). */
115 enum sim_environment environment
;
116 #define STATE_ENVIRONMENT(sd) ((sd)->environment)
118 #if 0 /* FIXME: Not ready yet. */
119 /* Stuff defined in sim-config.h. */
120 struct sim_config config
;
121 #define STATE_CONFIG(sd) ((sd)->config)
124 /* List of installed module `init' handlers. */
125 struct module_list
*modules
;
126 #define STATE_MODULES(sd) ((sd)->modules)
128 /* Supported options. */
129 struct option_list
*options
;
130 #define STATE_OPTIONS(sd) ((sd)->options)
132 /* Non-zero if -v specified. */
134 #define STATE_VERBOSE_P(sd) ((sd)->verbose_p)
136 /* Non cpu-specific trace data. See sim-trace.h. */
137 TRACE_DATA trace_data
;
138 #define STATE_TRACE_DATA(sd) (& (sd)->trace_data)
140 /* If non NULL, the BFD architecture specified on the command line */
141 const struct bfd_arch_info
*architecture
;
142 #define STATE_ARCHITECTURE(sd) ((sd)->architecture)
144 /* If non NULL, the bfd target specified on the command line */
146 #define STATE_TARGET(sd) ((sd)->target)
148 /* List of machs available. */
149 const SIM_MACH
* const *machs
;
150 #define STATE_MACHS(sd) ((sd)->machs)
152 /* If non-NULL, the model to select for CPUs. */
153 const char *model_name
;
154 #define STATE_MODEL_NAME(sd) ((sd)->model_name)
156 /* In standalone simulator, this is the program to run. Not to be confused
157 with argv which are the strings passed to the program itself. */
159 #define STATE_PROG_FILE(sd) ((sd)->prog_file)
161 /* In standalone simulator, this is the program's arguments passed
162 on the command line. */
164 #define STATE_PROG_ARGV(sd) ((sd)->prog_argv)
166 /* Thie is the program's argv[0] override. */
168 #define STATE_PROG_ARGV0(sd) ((sd)->prog_argv0)
170 /* The program's environment. */
172 #define STATE_PROG_ENVP(sd) ((sd)->prog_envp)
174 /* The program's bfd. */
175 struct bfd
*prog_bfd
;
176 #define STATE_PROG_BFD(sd) ((sd)->prog_bfd)
178 /* Symbol table for prog_bfd */
179 struct bfd_symbol
**prog_syms
;
180 #define STATE_PROG_SYMS(sd) ((sd)->prog_syms)
182 /* Number of prog_syms symbols. */
183 long prog_syms_count
;
184 #define STATE_PROG_SYMS_COUNT(sd) ((sd)->prog_syms_count)
186 /* The program's text section. */
187 struct bfd_section
*text_section
;
188 /* Starting and ending text section addresses from the bfd. */
189 bfd_vma text_start
, text_end
;
190 #define STATE_TEXT_SECTION(sd) ((sd)->text_section)
191 #define STATE_TEXT_START(sd) ((sd)->text_start)
192 #define STATE_TEXT_END(sd) ((sd)->text_end)
194 /* Start address, set when the program is loaded from the bfd. */
196 #define STATE_START_ADDR(sd) ((sd)->start_addr)
198 /* Size of the simulator's cache, if any.
199 This is not the target's cache. It is the cache the simulator uses
200 to process instructions. */
201 unsigned int scache_size
;
202 #define STATE_SCACHE_SIZE(sd) ((sd)->scache_size)
204 /* core memory bus */
205 #define STATE_CORE(sd) (&(sd)->core)
208 /* Record of memory sections added via the memory-options interface. */
209 #define STATE_MEMOPT(sd) ((sd)->memopt)
213 #define STATE_EVENTS(sd) (&(sd)->events)
216 /* generic halt/resume engine */
218 #define STATE_ENGINE(sd) (&(sd)->engine)
220 /* generic watchpoint support */
221 sim_watchpoints watchpoints
;
222 #define STATE_WATCHPOINTS(sd) (&(sd)->watchpoints)
226 #define STATE_HW(sd) ((sd)->hw)
229 /* Should image loads be performed using the LMA or VMA? Older
230 simulators use the VMA while newer simulators prefer the LMA. */
232 #define STATE_LOAD_AT_LMA_P(SD) ((SD)->load_at_lma_p)
234 /* Pointer for sim target to store arbitrary state data. Normally the
235 target should define a struct and use it here. */
237 #define STATE_ARCH_DATA(sd) ((sd)->arch_data)
239 /* Marker for those wanting to do sanity checks.
240 This should remain the last member of this struct to help catch
241 miscompilation errors. */
243 #define SIM_MAGIC_NUMBER 0x4242
244 #define STATE_MAGIC(sd) ((sd)->magic)
247 /* Functions for allocating/freeing a sim_state. */
248 SIM_DESC
sim_state_alloc_extra (SIM_OPEN_KIND kind
, host_callback
*callback
,
250 #define sim_state_alloc(kind, callback) sim_state_alloc_extra(kind, callback, 0)
252 void sim_state_free (SIM_DESC
);
258 #endif /* SIM_BASE_H */