1 /* General Cpu tools GENerated simulator support.
2 Copyright (C) 1996-2018 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 3 of the License, or
10 (at your option) any later version.
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
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* Compute number of longs required to hold N bits. */
24 #define HOST_LONGS_FOR_BITS(n) \
25 (((n) + sizeof (long) * 8 - 1) / sizeof (long) * 8)
27 /* Forward decls. Defined in the machine generated files. */
29 /* This holds the contents of the extracted insn.
30 There are a few common entries (e.g. pc address), and then one big
31 union with an entry for each of the instruction formats. */
32 typedef struct argbuf ARGBUF;
34 /* ARGBUF accessors. */
35 #define ARGBUF_ADDR(abuf) ((abuf)->addr)
36 #define ARGBUF_IDESC(abuf) ((abuf)->idesc)
37 #define ARGBUF_TRACE_P(abuf) ((abuf)->trace_p)
38 #define ARGBUF_PROFILE_P(abuf) ((abuf)->profile_p)
40 /* This is one ARGBUF plus whatever else is needed for WITH_SCACHE support.
41 At present there is nothing else, but it also provides a level of
43 typedef struct scache SCACHE;
45 /* This is a union with one entry for each instruction format.
46 Each entry contains all of the non-constant inputs of the instruction
47 in the case of read-before-exec support, or all outputs of the instruction
48 in the case of write-after-exec support. */
49 typedef struct parexec PAREXEC;
51 /* An "Instruction DESCriptor".
52 This is the main handle on an instruction for the simulator. */
53 typedef struct idesc IDESC;
56 ??? This is here because it's needed before eng.h (built by genmloop.sh)
57 which is needed before cgen-engine.h and cpu.h.
58 ??? This depends on a cpu family specific type, IADDR, but no machine
59 generated headers will have been included yet. sim/common currently
60 requires the typedef of sim_cia in sim-main.h between the inclusion of
61 sim-basics.h and sim-base.h so this is no different. */
63 /* SEM_ARG is intended to hide whether or not the scache is in use from the
64 semantic routines. In reality for the with-extraction case it is always
65 an SCACHE * even when not using the SCACHE since there's no current win to
66 making it something else ("not using the SCACHE" is like having a cache
68 The without-extraction case still uses an ARGBUF:
69 - consistency with scache version
70 - still need to record which operands are written
71 This wouldn't be needed if modeling was done in the semantic routines
72 but this isn't as general as handling it outside of the semantic routines.
73 For example Shade allows calling user-supplied code before/after each
74 instruction and this is something that is being planned.
75 ??? There is still some clumsiness in how much of ARGBUF to use. */
76 typedef SCACHE *SEM_ARG;
78 /* instruction address
79 ??? This was intended to be a struct of two elements in the WITH_SCACHE_PBB
80 case. The first element is the IADDR, the second element is the SCACHE *.
81 Haven't found the time yet to make this work, but it seemed a nicer approach
82 than the current br_cache stuff. */
85 /* Current instruction address, used by common. */
88 /* Semantic routines' version of the PC. */
90 typedef SCACHE *SEM_PC;
95 /* Kinds of branches. */
98 /* Branch to an uncacheable address (e.g. j reg). */
99 SEM_BRANCH_UNCACHEABLE,
100 /* Branch to a cacheable (fixed) address. */
104 /* Virtual insn support. */
106 /* Opcode table for virtual insns (only used by the simulator). */
107 extern const CGEN_INSN cgen_virtual_insn_table[];
109 /* -ve of indices of virtual insns in cgen_virtual_insn_table. */
111 VIRTUAL_INSN_X_INVALID = 0,
112 VIRTUAL_INSN_X_BEFORE = -1, VIRTUAL_INSN_X_AFTER = -2,
113 VIRTUAL_INSN_X_BEGIN = -3,
114 VIRTUAL_INSN_X_CHAIN= -4, VIRTUAL_INSN_X_CTI_CHAIN = -5
115 } CGEN_INSN_VIRTUAL_TYPE;
117 /* Return non-zero if CGEN_INSN* INSN is a virtual insn. */
118 #define CGEN_INSN_VIRTUAL_P(insn) \
119 CGEN_INSN_ATTR_VALUE ((insn), CGEN_INSN_VIRTUAL)
121 /* GNU C's "computed goto" facility is used to speed things up where
122 possible. These macros provide a portable way to use them.
123 Nesting of these switch statements is done by providing an extra argument
124 that distinguishes them. `N' can be a number or symbol.
125 Variable `labels_##N' must be initialized with the labels of each case. */
128 #define SWITCH(N, X) goto *X;
129 #define CASE(N, X) case_##N##_##X
130 #define BREAK(N) goto end_switch_##N
131 #define DEFAULT(N) default_##N
132 #define ENDSWITCH(N) end_switch_##N:;
134 #define SWITCH(N, X) switch (X)
135 #define CASE(N, X) case X /* FIXME: old sem-switch had (@arch@_,X) here */
136 #define BREAK(N) break
137 #define DEFAULT(N) default
141 /* Simulator state. */
143 /* CGEN_STATE contains additional state information not present in
146 typedef struct cgen_state {
147 /* Non-zero if no tracing or profiling is selected. */
149 #define STATE_RUN_FAST_P(sd) ((sd) -> cgen_state.run_fast_p)
152 /* Various utilities. */
154 /* Called after sim_post_argv_init to do any cgen initialization. */
155 extern void cgen_init (SIM_DESC);
157 /* Return the name of an insn. */
158 extern CPU_INSN_NAME_FN cgen_insn_name;
160 /* Return the maximum number of extra bytes required for a sim_cpu struct. */
161 /* ??? Ok, yes, this is less pretty than it should be. Give me a better
162 language [or suggest a better way]. */
163 extern int cgen_cpu_max_extra_bytes (void);
165 /* Target supplied routine to process an invalid instruction. */
166 extern SEM_PC sim_engine_invalid_insn (SIM_CPU *, IADDR, SEM_PC);
168 #endif /* CGEN_DEFS_H */