1 # Simulator main loop for CRIS. -*- C -*-
2 # Copyright (C) 2004-2024 Free Software Foundation, Inc.
3 # Contributed by Axis Communications.
5 # This file is part of the GNU simulators.
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/>.
20 # Based on the fr30 file.
23 # /bin/sh mainloop.in command
29 # extract-{simple,scache,pbb}
30 # {full,fast}-exec-{simple,scache,pbb}
32 # A target need only provide a "full" version of one of simple,scache,pbb.
33 # If the target wants it can also provide a fast version of same.
34 # It can't provide more than this, however for illustration's sake the CRIS
35 # port provides examples of all.
37 # ??? After a few more ports are done, revisit.
38 # Will eventually need to machine generate a lot of this.
48 /* It seems we don't have a templated header file corresponding to
49 cris-tmpl.c, so we have to get out declarations the hackish way. */
50 extern void @cpu@_specific_init (SIM_CPU *current_cpu);
52 static INLINE const IDESC *
53 extract (SIM_CPU *current_cpu, PCADDR pc, CGEN_INSN_INT insn, ARGBUF *abuf,
56 const IDESC *id = @cpu@_decode (current_cpu, pc, insn,
61 @cpu@_fill_argbuf (current_cpu, abuf, id, pc, fast_p);
64 int trace_p = PC_IN_TRACE_RANGE_P (current_cpu, pc);
65 int profile_p = PC_IN_PROFILE_RANGE_P (current_cpu, pc);
66 @cpu@_fill_argbuf_tp (current_cpu, abuf, trace_p, profile_p);
71 /* This might not be used directly depending on the fast compile mode. */
72 ATTRIBUTE_UNUSED static INLINE SEM_PC
73 execute (SIM_CPU *current_cpu, SCACHE *sc, int fast_p)
79 #if ! WITH_SEM_SWITCH_FAST
81 vpc = (*sc->argbuf.semantic.sem_fast) (current_cpu, sc);
83 vpc = (*sc->argbuf.semantic.sem_fast) (current_cpu, &sc->argbuf);
87 #endif /* WITH_SEM_SWITCH_FAST */
91 #if ! WITH_SEM_SWITCH_FULL
92 ARGBUF *abuf = &sc->argbuf;
93 const IDESC *idesc = abuf->idesc;
95 int virtual_p = CGEN_ATTR_VALUE (NULL, idesc->attrs, CGEN_INSN_VIRTUAL);
102 /* FIXME: call x-before */
103 if (ARGBUF_PROFILE_P (abuf))
104 PROFILE_COUNT_INSN (current_cpu, abuf->addr, idesc->num);
105 /* FIXME: Later make cover macros: PROFILE_INSN_{INIT,FINI}. */
106 if (PROFILE_MODEL_P (current_cpu)
107 && ARGBUF_PROFILE_P (abuf))
108 @cpu@_model_insn_before (current_cpu, 1 /*first_p*/);
109 CGEN_TRACE_INSN_INIT (current_cpu, abuf, 1);
110 CGEN_TRACE_INSN (current_cpu, idesc->idata,
111 (const struct argbuf *) abuf, abuf->addr);
114 vpc = (*sc->argbuf.semantic.sem_full) (current_cpu, sc);
116 vpc = (*sc->argbuf.semantic.sem_full) (current_cpu, abuf);
120 /* FIXME: call x-after */
121 if (PROFILE_MODEL_P (current_cpu)
122 && ARGBUF_PROFILE_P (abuf))
126 cycles = (*idesc->timing->model_fn) (current_cpu, sc);
127 @cpu@_model_insn_after (current_cpu, 1 /*last_p*/, cycles);
129 CGEN_TRACE_INSN_FINI (current_cpu, abuf, 1);
133 #endif /* WITH_SEM_SWITCH_FULL */
147 /* This seemed the only sane location to emit a call to a
148 model-specific init function. It may not work for all simulator
149 types. FIXME: Introduce a model-init hook. */
151 /* We use the same condition as the code that's expected to follow, so
152 GCC can consolidate the code with only one conditional. */
153 if (! CPU_IDESC_SEM_INIT_P (current_cpu))
154 @cpu@_specific_init (current_cpu);
159 xextract-simple | xextract-scache)
161 # Inputs: current_cpu, vpc, sc, FAST_P
162 # Outputs: sc filled in
167 CGEN_INSN_INT insn = GETIMEMUHI (current_cpu, vpc);
168 extract (current_cpu, vpc, insn, SEM_ARGBUF (sc), FAST_P);
176 # Inputs: current_cpu, pc, sc, max_insns, FAST_P
178 # sc must be left pointing past the last created entry.
179 # pc must be left pointing past the last created entry.
180 # If the pbb is terminated by a cti insn, SET_CTI_VPC(sc) must be called
181 # to record the vpc of the cti insn.
182 # SET_INSN_COUNT(n) must be called to record number of real insns.
190 /* Make sure the buffer doesn't overflow for profiled insns if
191 max_insns happens to not be a multiple of 3. */
195 /* There might be two real insns handled per loop. */
198 while (max_insns > 0)
200 UHI insn = GETIMEMUHI (current_cpu, pc);
201 int trace_p = PC_IN_TRACE_RANGE_P (current_cpu, pc);
202 int profile_p = PC_IN_PROFILE_RANGE_P (current_cpu, pc);
203 int befaft_p = profile_p || trace_p;
207 @cpu@_emit_before (current_cpu, sc, pc, 1);
209 sc->argbuf.trace_p = trace_p;
210 sc->argbuf.profile_p = profile_p;
214 idesc = extract (current_cpu, pc, insn, &sc->argbuf, FAST_P);
221 @cpu@_emit_after (current_cpu, sc, pc);
228 if (IDESC_CTI_P (idesc))
230 SET_CTI_VPC (sc - 1);
232 /* Delay slot? Ignore for zero-instructions (bcc .+2) since
233 those are treated as exit insns to avoid runaway sessions
234 for invalid programs. */
235 if (insn != 0 && CGEN_ATTR_VALUE (NULL, idesc->attrs, CGEN_INSN_DELAY_SLOT))
237 trace_p = PC_IN_TRACE_RANGE_P (current_cpu, pc);
238 profile_p = PC_IN_PROFILE_RANGE_P (current_cpu, pc);
239 befaft_p = profile_p || trace_p;
243 @cpu@_emit_before (current_cpu, sc, pc, 1);
245 sc->argbuf.trace_p = trace_p;
246 sc->argbuf.profile_p = profile_p;
250 insn = GETIMEMUHI (current_cpu, pc);
251 idesc = extract (current_cpu, pc, insn, &sc->argbuf, FAST_P);
258 @cpu@_emit_after (current_cpu, sc, pc);
269 SET_INSN_COUNT (icount);
275 xfull-exec-* | xfast-exec-*)
277 # Inputs: current_cpu, sc, FAST_P
279 # vpc contains the address of the next insn to execute
284 #if (! FAST_P && WITH_SEM_SWITCH_FULL) || (FAST_P && WITH_SEM_SWITCH_FAST)
285 #define DEFINE_SWITCH
286 #include "sem@cpu@-switch.c"
288 vpc = execute (current_cpu, vpc, FAST_P);
296 echo "Invalid argument to mainloop.in: $1" >&2