1 /* General Cpu tools GENerated simulator support.
2 Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
5 This file is part of GDB, the GNU debugger.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 /* Compute number of longs required to hold N bits. */
25 #define HOST_LONGS_FOR_BITS(n) \
26 (((n) + sizeof (long) * 8 - 1) / sizeof (long) * 8)
28 /* Forward decls. Defined in the machine generated files. */
30 /* This holds the contents of the extracted insn.
31 There are a few common entries (e.g. pc address), and then one big
32 union with an entry for each of the instruction formats. */
33 typedef struct argbuf ARGBUF
;
35 /* ARGBUF accessors. */
36 #define ARGBUF_ADDR(abuf) ((abuf)->addr)
37 #define ARGBUF_IDESC(abuf) ((abuf)->idesc)
38 #define ARGBUF_TRACE_P(abuf) ((abuf)->trace_p)
39 #define ARGBUF_PROFILE_P(abuf) ((abuf)->profile_p)
41 /* This is one ARGBUF plus whatever else is needed for WITH_SCACHE support.
42 At present there is nothing else, but it also provides a level of
44 typedef struct scache SCACHE
;
46 /* This is a union with one entry for each instruction format.
47 Each entry contains all of the non-constant inputs of the instruction
48 in the case of read-before-exec support, or all outputs of the instruction
49 in the case of write-after-exec support. */
50 typedef struct parexec PAREXEC
;
52 /* An "Instruction DESCriptor".
53 This is the main handle on an instruction for the simulator. */
54 typedef struct idesc IDESC
;
57 ??? This is here because it's needed before eng.h (built by genmloop.sh)
58 which is needed before cgen-engine.h and cpu.h.
59 ??? This depends on a cpu family specific type, IADDR, but no machine
60 generated headers will have been included yet. sim/common currently
61 requires the typedef of sim_cia in sim-main.h between the inclusion of
62 sim-basics.h and sim-base.h so this is no different. */
64 /* SEM_ARG is intended to hide whether or not the scache is in use from the
65 semantic routines. In reality for the with-extraction case it is always
66 an SCACHE * even when not using the SCACHE since there's no current win to
67 making it something else ("not using the SCACHE" is like having a cache
69 The without-extraction case still uses an ARGBUF:
70 - consistency with scache version
71 - still need to record which operands are written
72 This wouldn't be needed if modeling was done in the semantic routines
73 but this isn't as general as handling it outside of the semantic routines.
74 For example Shade allows calling user-supplied code before/after each
75 instruction and this is something that is being planned.
76 ??? There is still some clumsiness in how much of ARGBUF to use. */
77 typedef SCACHE
*SEM_ARG
;
79 /* instruction address
80 ??? This was intended to be a struct of two elements in the WITH_SCACHE_PBB
81 case. The first element is the IADDR, the second element is the SCACHE *.
82 Haven't found the time yet to make this work, but it seemed a nicer approach
83 than the current br_cache stuff. */
86 /* Current instruction address, used by common. */
89 /* Semantic routines' version of the PC. */
91 typedef SCACHE
*SEM_PC
;
96 /* Kinds of branches. */
99 /* Branch to an uncacheable address (e.g. j reg). */
100 SEM_BRANCH_UNCACHEABLE
,
101 /* Branch to a cacheable (fixed) address. */
105 /* Virtual insn support. */
107 /* Opcode table for virtual insns (only used by the simulator). */
108 extern const CGEN_INSN cgen_virtual_insn_table
[];
110 /* -ve of indices of virtual insns in cgen_virtual_insn_table. */
112 VIRTUAL_INSN_X_INVALID
= 0,
113 VIRTUAL_INSN_X_BEFORE
= -1, VIRTUAL_INSN_X_AFTER
= -2,
114 VIRTUAL_INSN_X_BEGIN
= -3,
115 VIRTUAL_INSN_X_CHAIN
= -4, VIRTUAL_INSN_X_CTI_CHAIN
= -5
116 } CGEN_INSN_VIRTUAL_TYPE
;
118 /* Return non-zero if CGEN_INSN* INSN is a virtual insn. */
119 #define CGEN_INSN_VIRTUAL_P(insn) \
120 CGEN_INSN_ATTR_VALUE ((insn), CGEN_INSN_VIRTUAL)
122 /* GNU C's "computed goto" facility is used to speed things up where
123 possible. These macros provide a portable way to use them.
124 Nesting of these switch statements is done by providing an extra argument
125 that distinguishes them. `N' can be a number or symbol.
126 Variable `labels_##N' must be initialized with the labels of each case. */
129 #define SWITCH(N, X) goto *X;
130 #define CASE(N, X) case_##N##_##X
131 #define BREAK(N) goto end_switch_##N
132 #define DEFAULT(N) default_##N
133 #define ENDSWITCH(N) end_switch_##N:;
135 #define SWITCH(N, X) switch (X)
136 #define CASE(N, X) case X /* FIXME: old sem-switch had (@arch@_,X) here */
137 #define BREAK(N) break
138 #define DEFAULT(N) default
142 /* Simulator state. */
144 /* Records simulator descriptor so utilities like @cpu@_dump_regs can be
146 extern SIM_DESC current_state
;
148 /* Simulator state. */
150 /* CGEN_STATE contains additional state information not present in
153 typedef struct cgen_state
{
154 /* FIXME: Moved to sim_state_base. */
157 #define STATE_ARGV(s) ((s) -> cgen_state.argv)
158 /* FIXME: Move to sim_state_base. */
160 #define STATE_ENVP(s) ((s) -> cgen_state.envp)
162 /* Non-zero if no tracing or profiling is selected. */
164 #define STATE_RUN_FAST_P(sd) ((sd) -> cgen_state.run_fast_p)
167 /* Various utilities. */
169 /* Called after sim_post_argv_init to do any cgen initialization. */
170 extern void cgen_init (SIM_DESC
);
172 /* Return the name of an insn. */
173 extern CPU_INSN_NAME_FN cgen_insn_name
;
175 /* Return the maximum number of extra bytes required for a sim_cpu struct. */
176 /* ??? Ok, yes, this is less pretty than it should be. Give me a better
177 language [or suggest a better way]. */
178 extern int cgen_cpu_max_extra_bytes (void);
180 /* Target supplied routine to process an invalid instruction. */
181 extern SEM_PC
sim_engine_invalid_insn (SIM_CPU
*, IADDR
, SEM_PC
);
183 #endif /* CGEN_DEFS_H */