1 /* The common simulator framework for GDB, the GNU Debugger.
3 Copyright 2002, 2004 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney and Red Hat.
7 This file is part of GDB.
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 2 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, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
31 The CPP below defines information about the compilation host. In
32 particular it defines the macro's:
34 WITH_HOST_BYTE_ORDER The byte order of the host. Could
35 be any of LITTLE_ENDIAN, BIG_ENDIAN
36 or 0 (unknown). Those macro's also
44 NetBSD is easy, everything you could ever want is in a header file
47 #if defined(__NetBSD__)
48 # include <machine/endian.h>
49 # if (WITH_HOST_BYTE_ORDER == 0)
50 # undef WITH_HOST_BYTE_ORDER
51 # define WITH_HOST_BYTE_ORDER BYTE_ORDER
53 # if (BYTE_ORDER != WITH_HOST_BYTE_ORDER)
54 # error "host endian incorrectly configured, check config.h"
58 /* Linux is similarly easy. */
60 #if defined(__linux__)
62 # if defined(__LITTLE_ENDIAN) && !defined(LITTLE_ENDIAN)
63 # define LITTLE_ENDIAN __LITTLE_ENDIAN
65 # if defined(__BIG_ENDIAN) && !defined(BIG_ENDIAN)
66 # define BIG_ENDIAN __BIG_ENDIAN
68 # if defined(__BYTE_ORDER) && !defined(BYTE_ORDER)
69 # define BYTE_ORDER __BYTE_ORDER
71 # if (WITH_HOST_BYTE_ORDER == 0)
72 # undef WITH_HOST_BYTE_ORDER
73 # define WITH_HOST_BYTE_ORDER BYTE_ORDER
75 # if (BYTE_ORDER != WITH_HOST_BYTE_ORDER)
76 # error "host endian incorrectly configured, check config.h"
80 /* INSERT HERE - hosts that have available LITTLE_ENDIAN and
84 /* Some hosts don't define LITTLE_ENDIAN or BIG_ENDIAN, help them out */
87 #define LITTLE_ENDIAN 1234
90 #define BIG_ENDIAN 4321
96 Big endian last time I looked */
98 #if defined(sparc) || defined(__sparc__)
99 # if (WITH_HOST_BYTE_ORDER == 0)
100 # undef WITH_HOST_BYTE_ORDER
101 # define WITH_HOST_BYTE_ORDER BIG_ENDIAN
103 # if (WITH_HOST_BYTE_ORDER != BIG_ENDIAN)
104 # error "sun was big endian last time I looked ..."
111 Little endian last time I looked */
113 #if defined(i386) || defined(i486) || defined(i586) || defined (i686) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined (__i686__)
114 # if (WITH_HOST_BYTE_ORDER == 0)
115 # undef WITH_HOST_BYTE_ORDER
116 # define WITH_HOST_BYTE_ORDER LITTLE_ENDIAN
118 # if (WITH_HOST_BYTE_ORDER != LITTLE_ENDIAN)
119 # error "x86 was little endian last time I looked ..."
123 #if (defined (__i486__) || defined (__i586__) || defined (__i686__)) && defined(__GNUC__) && WITH_BSWAP
126 #define htonl(IN) __extension__ ({ int _out; __asm__ ("bswap %0" : "=r" (_out) : "0" (IN)); _out; })
127 #define ntohl(IN) __extension__ ({ int _out; __asm__ ("bswap %0" : "=r" (_out) : "0" (IN)); _out; })
130 /* Power or PowerPC running AIX */
131 #if defined(_POWER) && defined(_AIX)
132 # if (WITH_HOST_BYTE_ORDER == 0)
133 # undef WITH_HOST_BYTE_ORDER
134 # define WITH_HOST_BYTE_ORDER BIG_ENDIAN
136 # if (WITH_HOST_BYTE_ORDER != BIG_ENDIAN)
137 # error "Power/PowerPC AIX was big endian last time I looked ..."
141 /* Solaris running PowerPC */
142 #if defined(__PPC) && defined(__sun__)
143 # if (WITH_HOST_BYTE_ORDER == 0)
144 # undef WITH_HOST_BYTE_ORDER
145 # define WITH_HOST_BYTE_ORDER LITTLE_ENDIAN
147 # if (WITH_HOST_BYTE_ORDER != LITTLE_ENDIAN)
148 # error "Solaris on PowerPCs was little endian last time I looked ..."
153 #if defined(__hppa__)
154 # if (WITH_HOST_BYTE_ORDER == 0)
155 # undef WITH_HOST_BYTE_ORDER
156 # define WITH_HOST_BYTE_ORDER BIG_ENDIAN
158 # if (WITH_HOST_BYTE_ORDER != BIG_ENDIAN)
159 # error "HP/PA was big endian last time I looked ..."
163 /* Big endian MIPS */
164 #if defined(__MIPSEB__)
165 # if (WITH_HOST_BYTE_ORDER == 0)
166 # undef WITH_HOST_BYTE_ORDER
167 # define WITH_HOST_BYTE_ORDER BIG_ENDIAN
169 # if (WITH_HOST_BYTE_ORDER != BIG_ENDIAN)
170 # error "MIPSEB was big endian last time I looked ..."
174 /* Little endian MIPS */
175 #if defined(__MIPSEL__)
176 # if (WITH_HOST_BYTE_ORDER == 0)
177 # undef WITH_HOST_BYTE_ORDER
178 # define WITH_HOST_BYTE_ORDER LITTLE_ENDIAN
180 # if (WITH_HOST_BYTE_ORDER != LITTLE_ENDIAN)
181 # error "MIPSEL was little endian last time I looked ..."
186 #if defined(__WIN32__)
187 # if (WITH_HOST_BYTE_ORDER == 0)
188 # undef WITH_HOST_BYTE_ORDER
189 # define WITH_HOST_BYTE_ORDER LITTLE_ENDIAN
191 # if (WITH_HOST_BYTE_ORDER != LITTLE_ENDIAN)
192 # error "Windows NT was little endian last time I looked ..."
196 /* Alpha running DEC unix */
197 #if defined(__osf__) && defined(__alpha__)
198 # if (WITH_HOST_BYTE_ORDER == 0)
199 # undef WITH_HOST_BYTE_ORDER
200 # define WITH_HOST_BYTE_ORDER LITTLE_ENDIAN
202 # if (WITH_HOST_BYTE_ORDER != LITTLE_ENDIAN)
203 # error "AXP running DEC unix was little endian last time I looked ..."
208 /* INSERT HERE - additional hosts that do not have LITTLE_ENDIAN and
209 BIG_ENDIAN definitions available. */
211 /* Until devices and tree properties are sorted out, tell sim-config.c
212 not to call the tree_find_foo fns. */
213 #define WITH_TREE_PROPERTIES 0
216 /* endianness of the host/target:
218 If the build process is aware (at compile time) of the endianness
219 of the host/target it is able to eliminate slower generic endian
222 Possible values are 0 (unknown), LITTLE_ENDIAN, BIG_ENDIAN */
224 #ifndef WITH_HOST_BYTE_ORDER
225 #define WITH_HOST_BYTE_ORDER 0 /*unknown*/
228 #ifndef WITH_TARGET_BYTE_ORDER
229 #define WITH_TARGET_BYTE_ORDER 0 /*unknown*/
232 #ifndef WITH_DEFAULT_TARGET_BYTE_ORDER
233 #define WITH_DEFAULT_TARGET_BYTE_ORDER 0 /* fatal */
236 extern int current_host_byte_order
;
237 #define CURRENT_HOST_BYTE_ORDER (WITH_HOST_BYTE_ORDER \
238 ? WITH_HOST_BYTE_ORDER \
239 : current_host_byte_order)
240 extern int current_target_byte_order
;
241 #define CURRENT_TARGET_BYTE_ORDER (WITH_TARGET_BYTE_ORDER \
242 ? WITH_TARGET_BYTE_ORDER \
243 : current_target_byte_order)
249 In addition to the above, the simulator can support the horrible
250 XOR endian mode (as found in the PowerPC and MIPS ISA). See
251 sim-core for more information.
253 If WITH_XOR_ENDIAN is non-zero, it specifies the number of bytes
254 potentially involved in the XOR munge. A typical value is 8. */
256 #ifndef WITH_XOR_ENDIAN
257 #define WITH_XOR_ENDIAN 0
262 /* Intel host BSWAP support:
264 Whether to use bswap on the 486 and pentiums rather than the 386
265 sequence that uses xchgb/rorl/xchgb */
274 Sets a limit on the number of processors that can be simulated. If
275 WITH_SMP is set to zero (0), the simulator is restricted to
276 suporting only one processor (and as a consequence leaves the SMP
277 code out of the build process).
279 The actual number of processors is taken from the device
280 /options/smp@<nr-cpu> */
282 #if defined (WITH_SMP) && (WITH_SMP > 0)
283 #define MAX_NR_PROCESSORS WITH_SMP
286 #ifndef MAX_NR_PROCESSORS
287 #define MAX_NR_PROCESSORS 1
291 /* Size of target word, address and OpenFirmware Cell:
293 The target word size is determined by the natural size of its
296 On most hosts, the address and cell are the same size as a target
299 #ifndef WITH_TARGET_WORD_BITSIZE
300 #define WITH_TARGET_WORD_BITSIZE 32
303 #ifndef WITH_TARGET_ADDRESS_BITSIZE
304 #define WITH_TARGET_ADDRESS_BITSIZE WITH_TARGET_WORD_BITSIZE
307 #ifndef WITH_TARGET_CELL_BITSIZE
308 #define WITH_TARGET_CELL_BITSIZE WITH_TARGET_WORD_BITSIZE
311 #ifndef WITH_TARGET_FLOATING_POINT_BITSIZE
312 #define WITH_TARGET_FLOATING_POINT_BITSIZE 64
317 /* Most significant bit of target:
319 Set this according to your target's bit numbering convention. For
320 the PowerPC it is zero, for many other targets it is 31 or 63.
322 For targets that can both have either 32 or 64 bit words and number
323 MSB as 31, 63. Define this to be (WITH_TARGET_WORD_BITSIZE - 1) */
325 #ifndef WITH_TARGET_WORD_MSB
326 #define WITH_TARGET_WORD_MSB 0
331 /* Program environment:
333 Three environments are available - UEA (user), VEA (virtual) and
334 OEA (perating). The former two are environment that users would
335 expect to see (VEA includes things like coherency and the time
336 base) while OEA is what an operating system expects to see. By
337 setting these to specific values, the build process is able to
338 eliminate non relevent environment code.
340 STATE_ENVIRONMENT(sd) specifies which of vea or oea is required for
343 ALL_ENVIRONMENT is used during configuration as a value for
344 WITH_ENVIRONMENT to indicate the choice is runtime selectable.
345 The default is then USER_ENVIRONMENT [since allowing the user to choose
346 the default at configure time seems like featuritis and since people using
347 OPERATING_ENVIRONMENT have more to worry about than selecting the
349 ALL_ENVIRONMENT is also used to set STATE_ENVIRONMENT to the
350 "uninitialized" state. */
352 enum sim_environment
{
356 OPERATING_ENVIRONMENT
359 /* If the simulator specified SIM_AC_OPTION_ENVIRONMENT, indicate so. */
360 #ifdef WITH_ENVIRONMENT
361 #define SIM_HAVE_ENVIRONMENT
364 /* If the simulator doesn't specify SIM_AC_OPTION_ENVIRONMENT in its
365 configure.in, the only supported environment is the user environment. */
366 #ifndef WITH_ENVIRONMENT
367 #define WITH_ENVIRONMENT USER_ENVIRONMENT
370 #define DEFAULT_ENVIRONMENT (WITH_ENVIRONMENT != ALL_ENVIRONMENT \
374 /* To be prepended to simulator calls with absolute file paths and
375 chdir:ed at startup. */
376 extern char *simulator_sysroot
;
378 /* Callback & Modulo Memory.
380 Core includes a builtin memory type (raw_memory) that is
381 implemented using an array. raw_memory does not require any
382 additional functions etc.
384 Callback memory is where the core calls a core device for the data
385 it requires. Callback memory can be layered using priorities.
387 Modulo memory is a variation on raw_memory where ADDRESS & (MODULO
388 - 1) is used as the index into the memory array.
390 The OEA model uses callback memory for devices.
392 The VEA model uses callback memory to capture `page faults'.
394 BTW, while raw_memory could have been implemented as a callback,
395 profiling has shown that there is a biger win (at least for the
396 x86) in eliminating a function call for the most common
397 (raw_memory) case. */
399 #ifndef WITH_CALLBACK_MEMORY
400 #define WITH_CALLBACK_MEMORY 1
403 #ifndef WITH_MODULO_MEMORY
404 #define WITH_MODULO_MEMORY 0
411 A processor architecture may or may not handle miss aligned
414 As alternatives: both little and big endian modes take an exception
415 (STRICT_ALIGNMENT); big and little endian models handle mis aligned
416 transfers (NONSTRICT_ALIGNMENT); or the address is forced into
417 alignment using a mask (FORCED_ALIGNMENT).
419 Mixed alignment should be specified when the simulator needs to be
420 able to change the alignment requirements on the fly (eg for
421 bi-endian support). */
423 enum sim_alignments
{
430 extern enum sim_alignments current_alignment
;
432 #if !defined (WITH_ALIGNMENT)
433 #define WITH_ALIGNMENT 0
436 #if !defined (WITH_DEFAULT_ALIGNMENT)
437 #define WITH_DEFAULT_ALIGNMENT 0 /* fatal */
443 #define CURRENT_ALIGNMENT (WITH_ALIGNMENT \
449 /* Floating point suport:
451 Should the processor trap for all floating point instructions (as
452 if the hardware wasn't implemented) or implement the floating point
453 instructions directly. */
455 #if defined (WITH_FLOATING_POINT)
457 #define SOFT_FLOATING_POINT 1
458 #define HARD_FLOATING_POINT 2
460 extern int current_floating_point
;
461 #define CURRENT_FLOATING_POINT (WITH_FLOATING_POINT \
462 ? WITH_FLOATING_POINT \
463 : current_floating_point)
471 Use the common start/stop/restart framework (sim-engine).
472 Simulators using the other modules but not the engine should define
476 #define WITH_ENGINE 1
483 Control the inclusion of debugging code.
484 Debugging is only turned on in rare circumstances [say during development]
485 and is not intended to be turned on otherwise. */
491 /* Include the tracing code. Disabling this eliminates all tracing
495 #define WITH_TRACE (-1)
498 /* Include the profiling code. Disabling this eliminates all profiling
502 #define WITH_PROFILE (-1)
506 /* include code that checks assertions scattered through out the
510 #define WITH_ASSERT 1
514 /* Whether to check instructions for reserved bits being set */
516 /* #define WITH_RESERVED_BITS 1 */
520 /* include monitoring code */
522 #define MONITOR_INSTRUCTION_ISSUE 1
523 #define MONITOR_LOAD_STORE_UNIT 2
524 /* do not define WITH_MON by default */
525 #define DEFAULT_WITH_MON (MONITOR_LOAD_STORE_UNIT \
526 | MONITOR_INSTRUCTION_ISSUE)
529 /* Current CPU model (models are in the generated models.h include file) */
534 #define CURRENT_MODEL (WITH_MODEL \
538 #ifndef WITH_DEFAULT_MODEL
539 #define WITH_DEFAULT_MODEL DEFAULT_MODEL
542 #define MODEL_ISSUE_IGNORE (-1)
543 #define MODEL_ISSUE_PROCESS 1
545 #ifndef WITH_MODEL_ISSUE
546 #define WITH_MODEL_ISSUE 0
549 extern int current_model_issue
;
550 #define CURRENT_MODEL_ISSUE (WITH_MODEL_ISSUE \
552 : current_model_issue)
556 /* Whether or not input/output just uses stdio, or uses printf_filtered for
557 output, and polling input for input. */
559 #define DONT_USE_STDIO 2
560 #define DO_USE_STDIO 1
566 extern int current_stdio
;
567 #define CURRENT_STDIO (WITH_STDIO \
573 /* Specify that configured calls pass parameters in registers when the
574 convention is that they are placed on the stack */
577 #define WITH_REGPARM 0
580 /* Specify that configured calls use an alternative calling mechanism */
583 #define WITH_STDCALL 0
587 /* Set the default state configuration, before parsing argv. */
589 extern void sim_config_default (SIM_DESC sd
);
591 /* Complete and verify the simulator configuration. */
593 extern SIM_RC
sim_config (SIM_DESC sd
);
595 /* Print the simulator configuration. */
597 extern void print_sim_config (SIM_DESC sd
);