1 /* This file is part of SIS (SPARC instruction simulator)
3 Copyright (C) 1995-2024 Free Software Foundation, Inc.
4 Contributed by Jiri Gaisler, European Space Agency
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 /* This must come before any other includes. */
26 #include <sys/fcntl.h>
28 #include "libiberty.h"
31 #include "sim-config.h"
34 #include "gdb/signals.h"
38 extern struct disassemble_info dinfo
;
39 extern struct pstate sregs
;
40 extern struct estate ebase
;
48 extern int sis_verbose
;
49 extern char *sis_version
;
50 extern struct estate ebase
;
51 extern struct evcell evbuf
[];
52 extern struct irqcell irqarr
[];
53 extern int irqpend
, ext_irl
;
56 extern int sparclite_board
;
58 extern char uart_dev1
[], uart_dev2
[];
60 int sis_gdb_break
= 1;
62 host_callback
*sim_callback
;
65 run_sim(struct pstate
*sregs
, uint64_t icount
, int dis
)
70 (*sim_callback
->printf_filtered
) (sim_callback
, "resuming at %x\n",
73 sregs
->starttime
= get_time();
75 if ((sregs
->pc
!= 0) && (ebase
.simtime
== 0))
77 while (!sregs
->err_mode
& (icount
> 0)) {
83 if (sregs
->psr
& 0x080)
88 #if 0 /* DELETE ME! for debugging purposes only */
90 if (sregs
->pc
== 0 || sregs
->npc
== 0)
91 printf ("bogus pc or npc\n");
93 mexc
= memory_iread (sregs
->pc
, &sregs
->inst
, &sregs
->hold
);
94 #if 0 /* DELETE ME! for debugging purposes only */
96 printf("pc %x, np %x, sp %x, fp %x, wm %x, cw %x, i %08x\n",
97 sregs
->pc
, sregs
->npc
,
98 sregs
->r
[(((sregs
->psr
& 7) << 4) + 14) & 0x7f],
99 sregs
->r
[(((sregs
->psr
& 7) << 4) + 30) & 0x7f],
107 sregs
->pc
= sregs
->npc
;
108 sregs
->npc
= sregs
->npc
+ 4;
110 if (ext_irl
) irq
= check_interrupts(sregs
);
113 sregs
->trap
= I_ACC_EXC
;
115 if ((sis_gdb_break
) && (sregs
->inst
== 0x91d02001)) {
117 (*sim_callback
->printf_filtered
) (sim_callback
,
118 "SW BP hit at %x\n", sregs
->pc
);
124 dispatch_instruction(sregs
);
130 sregs
->err_mode
= execute_trap(sregs
);
139 sregs
->tottime
+= get_time() - sregs
->starttime
;
143 error_mode(sregs
->pc
);
148 (*sim_callback
->printf_filtered
) (sim_callback
,
149 "HW BP hit at %x\n", sregs
->pc
);
159 static int ATTRIBUTE_PRINTF (3, 4)
160 fprintf_styled (void *stream
, enum disassembler_style style
,
161 const char *fmt
, ...)
164 FILE *out
= (FILE *) stream
;
167 va_start (args
, fmt
);
168 ret
= vfprintf (out
, fmt
, args
);
175 sim_open (SIM_OPEN_KIND kind
, struct host_callback_struct
*callback
,
176 struct bfd
*abfd
, char * const *argv
)
183 sim_callback
= callback
;
185 argc
= countargv (argv
);
186 while (stat
< argc
) {
187 if (argv
[stat
][0] == '-') {
188 if (strcmp(argv
[stat
], "-v") == 0) {
191 if (strcmp(argv
[stat
], "-nfp") == 0) {
194 if (strcmp(argv
[stat
], "-ift") == 0) {
197 if (strcmp(argv
[stat
], "-sparclite") == 0) {
200 if (strcmp(argv
[stat
], "-sparclite-board") == 0) {
203 if (strcmp(argv
[stat
], "-dumbio") == 0) {
206 if (strcmp(argv
[stat
], "-wrp") == 0) {
209 if (strcmp(argv
[stat
], "-rom8") == 0) {
212 if (strcmp(argv
[stat
], "-uben") == 0) {
215 if (strcmp(argv
[stat
], "-uart1") == 0) {
216 if ((stat
+ 1) < argc
)
217 strcpy(uart_dev1
, argv
[++stat
]);
219 if (strcmp(argv
[stat
], "-uart2") == 0) {
220 if ((stat
+ 1) < argc
)
221 strcpy(uart_dev2
, argv
[++stat
]);
223 if (strcmp(argv
[stat
], "-nogdb") == 0) {
226 if (strcmp(argv
[stat
], "-freq") == 0) {
227 if ((stat
+ 1) < argc
) {
228 freq
= strtol(argv
[++stat
], (char **)NULL
, 0);
231 if (strncmp(argv
[stat
], "--sysroot=", sizeof("--sysroot=") - 1) == 0) {
232 /* Ignore until we start to support this. */
234 (*sim_callback
->printf_filtered
) (sim_callback
,
235 "unknown option %s\n",
239 bfd_load(argv
[stat
]);
244 (*sim_callback
->printf_filtered
) (sim_callback
, "\n SIS - SPARC instruction simulator %s\n", sis_version
);
245 (*sim_callback
->printf_filtered
) (sim_callback
, " Bug-reports to Jiri Gaisler ESA/ESTEC (jgais@wd.estec.esa.nl)\n");
247 (*sim_callback
->printf_filtered
) (sim_callback
, "no FPU\n");
249 (*sim_callback
->printf_filtered
) (sim_callback
, "simulating Sparclite\n");
251 (*sim_callback
->printf_filtered
) (sim_callback
, "dumb IO (no input, dumb output)\n");
252 if (sis_gdb_break
== 0)
253 (*sim_callback
->printf_filtered
) (sim_callback
, "disabling GDB trap handling for breakpoints\n");
255 (*sim_callback
->printf_filtered
) (sim_callback
, " ERC32 freq %d Mhz\n", freq
);
258 sregs
.freq
= freq
? freq
: 15;
260 termsave
= fcntl(0, F_GETFL
, 0);
262 INIT_DISASSEMBLE_INFO(dinfo
, stdout
,(fprintf_ftype
)fprintf
,
264 #ifdef HOST_LITTLE_ENDIAN
265 dinfo
.endian
= BFD_ENDIAN_LITTLE
;
267 dinfo
.endian
= BFD_ENDIAN_BIG
;
275 /* Fudge our descriptor for now. */
280 sim_close(SIM_DESC sd
, int quitting
)
285 fcntl(0, F_SETFL
, termsave
);
290 sim_load(SIM_DESC sd
, const char *prog
, bfd
*abfd
, int from_tty
)
297 sim_create_inferior(SIM_DESC sd
, bfd
*abfd
, char * const *argv
,
300 bfd_vma start_address
= 0;
302 start_address
= bfd_get_start_address (abfd
);
307 sregs
.pc
= start_address
& ~3;
308 sregs
.npc
= sregs
.pc
+ 4;
313 sim_store_register(SIM_DESC sd
, int regno
, const void *buf
, int length
)
315 const unsigned char *value
= buf
;
318 regval
= (value
[0] << 24) | (value
[1] << 16)
319 | (value
[2] << 8) | value
[3];
320 set_regi(&sregs
, regno
, regval
);
326 sim_fetch_register(SIM_DESC sd
, int regno
, void *buf
, int length
)
328 get_regi(&sregs
, regno
, buf
);
333 sim_write (SIM_DESC sd
, uint64_t addr
, const void *buffer
, uint64_t length
)
336 const unsigned char *data
= buffer
;
338 for (i
= 0; i
< length
; i
++) {
339 sis_memory_write ((addr
+ i
) ^ EBT
, &data
[i
], 1);
345 sim_read (SIM_DESC sd
, uint64_t addr
, void *buffer
, uint64_t length
)
348 unsigned char *data
= buffer
;
350 for (i
= 0; i
< length
; i
++) {
351 sis_memory_read ((addr
+ i
) ^ EBT
, &data
[i
], 1);
357 sim_info(SIM_DESC sd
, bool verbose
)
365 sim_stop_reason(SIM_DESC sd
, enum sim_stop
*reason
, int *sigrc
)
370 *reason
= sim_stopped
;
371 *sigrc
= GDB_SIGNAL_INT
;
376 *reason
= sim_stopped
;
377 *sigrc
= GDB_SIGNAL_TRAP
;
381 *reason
= sim_exited
;
387 /* Flush all register windows out to the stack. Starting after the invalid
388 window, flush all windows up to, and including the current window. This
389 allows GDB to do backtraces and look at local variables for frames that
390 are still in the register windows. Note that strictly speaking, this
391 behavior is *wrong* for several reasons. First, it doesn't use the window
392 overflow handlers. It therefore assumes standard frame layouts and window
393 handling policies. Second, it changes system state behind the back of the
394 target program. I expect this to mainly pose problems when debugging trap
406 /* Keep current window handy */
408 cwp
= sregs
.psr
& PSR_CWP
;
410 /* Calculate the invalid window from the wim. */
412 for (invwin
= 0; invwin
<= PSR_CWP
; invwin
++)
413 if ((sregs
.wim
>> invwin
) & 1)
416 /* Start saving with the window after the invalid window. */
418 invwin
= (invwin
- 1) & PSR_CWP
;
420 for (win
= invwin
; ; win
= (win
- 1) & PSR_CWP
)
425 sp
= sregs
.r
[(win
* 16 + 14) & 0x7f];
427 if (sis_verbose
> 2) {
428 uint32_t fp
= sregs
.r
[(win
* 16 + 30) & 0x7f];
429 printf("flush_window: win %d, sp %x, fp %x\n", win
, sp
, fp
);
433 for (i
= 0; i
< 16; i
++)
434 memory_write (11, sp
+ 4 * i
, &sregs
.r
[(win
* 16 + 16 + i
) & 0x7f], 2,
443 sim_resume(SIM_DESC sd
, int step
, int siggnal
)
445 simstat
= run_sim(&sregs
, UINT64_MAX
, 0);
447 if (sis_gdb_break
) flush_windows ();
451 sim_do_command(SIM_DESC sd
, const char *cmd
)
453 exec_cmd(&sregs
, cmd
);
457 sim_complete_command (SIM_DESC sd
, const char *text
, const char *word
)
463 sim_memory_map (SIM_DESC sd
)
468 #if 0 /* FIXME: These shouldn't exist. */
471 sim_insert_breakpoint(int addr
)
473 if (sregs
.bptnum
< BPT_MAX
) {
474 sregs
.bpts
[sregs
.bptnum
] = addr
& ~0x3;
477 (*sim_callback
->printf_filtered
) (sim_callback
, "inserted HW BP at %x\n", addr
);
484 sim_remove_breakpoint(int addr
)
488 while ((i
< sregs
.bptnum
) && (sregs
.bpts
[i
] != addr
))
490 if (addr
== sregs
.bpts
[i
]) {
491 for (; i
< sregs
.bptnum
- 1; i
++)
492 sregs
.bpts
[i
] = sregs
.bpts
[i
+ 1];
495 (*sim_callback
->printf_filtered
) (sim_callback
, "removed HW BP at %x\n", addr
);