1 /* mem.c --- memory for M32C simulator.
3 Copyright (C) 2005-2024 Free Software Foundation, Inc.
4 Contributed by Red Hat, Inc.
6 This file is part of the GNU simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 /* This must come before any other includes. */
30 #include <sys/types.h>
32 #include <sys/select.h>
50 #define L1_LEN (1 << L1_BITS)
51 #define L2_LEN (1 << L2_BITS)
52 #define OFF_LEN (1 << OFF_BITS)
54 static unsigned char **pt
[L1_LEN
];
57 int m32c_console_ifd
= 0;
59 int m32c_console_ofd
= 1;
61 int m32c_use_raw_console
= 0;
68 /* [ get=0/put=1 ][ byte size ] */
69 static unsigned int mem_counters
[2][5];
71 #define COUNT(isput,bytes) \
72 if (verbose && enable_counting) mem_counters[isput][bytes]++
79 for (i
= 0; i
< L1_LEN
; i
++)
82 for (j
= 0; j
< L2_LEN
; j
++)
87 memset (pt
, 0, sizeof (pt
));
88 memset (mem_counters
, 0, sizeof (mem_counters
));
91 static unsigned char *
94 static int recursing
= 0;
95 int pt1
= (address
>> (L2_BITS
+ OFF_BITS
)) & ((1 << L1_BITS
) - 1);
96 int pt2
= (address
>> OFF_BITS
) & ((1 << L2_BITS
) - 1);
97 int pto
= address
& ((1 << OFF_BITS
) - 1);
99 if (address
== 0 && !recursing
)
102 put_reg (pc
, m32c_opcode_pc
);
103 printf ("NULL pointer dereference at pc=0x%x\n", get_reg (pc
));
104 step_result
= M32C_MAKE_HIT_BREAK ();
106 /* This code can be re-enabled to help diagnose NULL pointer
107 bugs that aren't debuggable in GDB. */
108 m32c_dump_all_registers ();
114 pt
[pt1
] = (unsigned char **) calloc (L2_LEN
, sizeof (char **));
115 if (pt
[pt1
][pt2
] == 0)
117 pt
[pt1
][pt2
] = (unsigned char *) malloc (OFF_LEN
);
118 memset (pt
[pt1
][pt2
], 0, OFF_LEN
);
121 return pt
[pt1
][pt2
] + pto
;
125 used (int rstart
, int i
, int j
)
127 int rend
= i
<< (L2_BITS
+ OFF_BITS
);
128 rend
+= j
<< OFF_BITS
;
129 if (rstart
== 0xe0000 && rend
== 0xe1000)
131 printf ("mem: %08x - %08x (%dk bytes)\n", rstart
, rend
- 1,
132 (rend
- rstart
) / 1024);
136 mcs (int isput
, int bytes
)
138 return comma (mem_counters
[isput
][bytes
]);
142 mem_usage_stats (void)
148 for (i
= 0; i
< L1_LEN
; i
++)
151 for (j
= 0; j
< L2_LEN
; j
++)
157 rstart
= (i
<< (L2_BITS
+ OFF_BITS
)) + (j
<< OFF_BITS
);
174 /* mem foo: 123456789012 123456789012 123456789012 123456789012
176 printf (" byte short pointer long"
178 printf ("mem get: %12s %12s %12s %12s %12s\n", mcs (0, 1), mcs (0, 2),
179 mcs (0, 3), mcs (0, 4), mcs (0, 0));
180 printf ("mem put: %12s %12s %12s %12s\n", mcs (1, 1), mcs (1, 2),
181 mcs (1, 3), mcs (1, 4));
186 s (int address
, char *dir
)
189 printf ("MEM[%0*x] %s", membus_mask
== 0xfffff ? 5 : 6, address
, dir
);
193 #define S(d) if (trace) s(address, d)
204 #define E() if (trace) e()
206 extern int m32c_disassemble
;
209 mem_put_byte (int address
, unsigned char value
)
212 address
&= membus_mask
;
213 m
= mem_ptr (address
);
215 printf (" %02x", value
);
221 static int old_led
= -1;
222 static char *led_on
[] =
223 { "\033[31m O ", "\033[32m O ", "\033[34m O " };
224 static char *led_off
[] = { "\033[0m · ", "\033[0m · ", "\033[0m · " };
226 if (old_led
!= value
)
229 for (i
= 0; i
< 3; i
++)
230 if (value
& (1 << i
))
231 fputs (led_off
[i
], stdout
);
233 fputs (led_on
[i
], stdout
);
234 fputs ("\033[0m\r", stdout
);
242 case 0x346: /* TA0low */
243 timer_a
.count
= (timer_a
.count
& 0xff00) | value
;
244 timer_a
.reload
= timer_a
.count
;
246 case 0x347: /* TA0high */
247 timer_a
.count
= (timer_a
.count
& 0x00ff) | (value
<< 8);
248 timer_a
.reload
= timer_a
.count
;
250 case 0x340: /* TABSR */
253 case 0x356: /* TA0MR */
254 timer_a
.mode
= value
;
256 case 0x35f: /* TCSPR */
257 timer_a
.tcspr
= value
;
259 case 0x006c: /* TA0IC */
264 case 0x100: /* TRACR */
267 case 0x102: /* TRAMR */
268 timer_a
.mode
= value
;
270 case 0x104: /* TRA */
271 timer_a
.count
= value
;
272 timer_a
.reload
= value
;
274 case 0x103: /* TRAPRE */
275 timer_a
.tcspr
= value
;
277 case 0x0056: /* TA0IC */
282 case 0x2ea: /* m32c uart1tx */
283 case 0x3aa: /* m16c uart1tx */
285 static int pending_exit
= 0;
290 step_result
= M32C_MAKE_EXITED (value
);
297 if (write (m32c_console_ofd
, &value
, 1) != 1)
298 printf ("write console failed: %s\n", strerror (errno
));
304 m32c_syscall (value
);
312 printf ("SimTrace: %06lx %02x\n", regs
.r_pc
, value
);
316 printf ("SimTrap: %06lx %02x\n", regs
.r_pc
, value
);
322 mem_put_qi (int address
, unsigned char value
)
325 mem_put_byte (address
, value
& 0xff);
331 mem_put_hi (int address
, unsigned short value
)
333 if (address
== 0x402)
335 printf ("SimTrace: %06lx %04x\n", regs
.r_pc
, value
);
339 mem_put_byte (address
, value
& 0xff);
340 mem_put_byte (address
+ 1, value
>> 8);
346 mem_put_psi (int address
, unsigned long value
)
349 mem_put_byte (address
, value
& 0xff);
350 mem_put_byte (address
+ 1, (value
>> 8) & 0xff);
351 mem_put_byte (address
+ 2, value
>> 16);
357 mem_put_si (int address
, unsigned long value
)
360 mem_put_byte (address
, value
& 0xff);
361 mem_put_byte (address
+ 1, (value
>> 8) & 0xff);
362 mem_put_byte (address
+ 2, (value
>> 16) & 0xff);
363 mem_put_byte (address
+ 3, (value
>> 24) & 0xff);
369 mem_put_blk (int address
, const void *bufptr
, int nbytes
)
371 const unsigned char *buf
= bufptr
;
375 mem_counters
[1][1] += nbytes
;
377 mem_put_byte (address
++, *buf
++);
384 unsigned char *m
= mem_ptr (regs
.r_pc
& membus_mask
);
389 #ifdef HAVE_TERMIOS_H
390 static int console_raw
= 0;
391 static struct termios oattr
;
403 FD_SET (m32c_console_ifd
, &ifd
);
404 n
= select (1, &ifd
, 0, 0, &t
);
409 m32c_sim_restore_console (void)
412 tcsetattr (m32c_console_ifd
, TCSANOW
, &oattr
);
418 mem_get_byte (int address
)
421 address
&= membus_mask
;
422 m
= mem_ptr (address
);
425 #ifdef HAVE_TERMIOS_H
426 case 0x2ed: /* m32c uart1c1 */
427 case 0x3ad: /* m16c uart1c1 */
429 if (!console_raw
&& m32c_use_raw_console
)
432 tcgetattr (m32c_console_ifd
, &attr
);
433 tcgetattr (m32c_console_ifd
, &oattr
);
434 /* We want each key to be sent as the user presses them. */
435 attr
.c_lflag
&= ~(ICANON
| ECHO
| ECHOE
);
436 tcsetattr (m32c_console_ifd
, TCSANOW
, &attr
);
438 atexit (m32c_sim_restore_console
);
442 return 0x02; /* tx empty and rx full */
444 return 0x0a; /* transmitter empty */
446 case 0x2ee: /* m32c uart1 rx */
449 if (read (m32c_console_ifd
, &c
, 1) != 1)
451 if (m32c_console_ifd
== 0 && c
== 3) /* Ctrl-C */
453 printf ("Ctrl-C!\n");
457 if (m32c_console_ifd
!= 1)
460 printf ("\033[31m%c\033[0m", c
);
462 printf ("\033[31m%02x\033[0m", c
);
469 case 0x346: /* TA0low */
470 return timer_a
.count
& 0xff;
471 case 0x347: /* TA0high */
472 return (timer_a
.count
>> 8) & 0xff;
473 case 0x104: /* TRA */
474 return timer_a
.count
;
478 /* In case both cases above are not included. */
484 printf (" %02x", *m
);
490 mem_get_qi (int address
)
494 rv
= mem_get_byte (address
);
501 mem_get_hi (int address
)
505 rv
= mem_get_byte (address
);
506 rv
|= mem_get_byte (address
+ 1) * 256;
513 mem_get_psi (int address
)
517 rv
= mem_get_byte (address
);
518 rv
|= mem_get_byte (address
+ 1) * 256;
519 rv
|= mem_get_byte (address
+ 2) * 65536;
526 mem_get_si (int address
)
530 rv
= mem_get_byte (address
);
531 rv
|= mem_get_byte (address
+ 1) << 8;
532 rv
|= mem_get_byte (address
+ 2) << 16;
533 rv
|= mem_get_byte (address
+ 3) << 24;
540 mem_get_blk (int address
, void *bufptr
, int nbytes
)
546 mem_counters
[0][1] += nbytes
;
548 *buf
++ = mem_get_byte (address
++);
553 sign_ext (int v
, int bits
)
557 v
&= (1 << bits
) - 1;
558 if (v
& (1 << (bits
- 1)))
566 update_timer_a (void)
571 if (timer_a
.prescale
< 0)
575 switch (timer_a
.mode
& 0xc0)
578 timer_a
.prescale
= 0;
581 timer_a
.prescale
= 8;
584 timer_a
.prescale
= timer_a
.tcspr
& 0x0f;
587 timer_a
.prescale
= 32;
593 timer_a
.prescale
= timer_a
.tcspr
;
596 if (timer_a
.count
< 0)
598 timer_a
.count
= timer_a
.reload
;
602 mem_put_qi (0x6c, timer_a
.ic
| 0x08);
604 mem_put_qi (0x56, timer_a
.ic
| 0x08);
610 if (regs
.r_flags
& FLAGBIT_I
/* interrupts enabled */
611 && timer_a
.ic
& 0x08 /* timer A interrupt triggered */
612 && (timer_a
.ic
& 0x07) > ((regs
.r_flags
>> 12) & 0x07))
615 trigger_peripheral_interrupt (12, 0x06c);
617 trigger_peripheral_interrupt (22, 0x056);