Home | History | Annotate | Line # | Download | only in mips
interp.c revision 1.1.1.6
      1      1.1  christos /*> interp.c <*/
      2      1.1  christos /* Simulator for the MIPS architecture.
      3      1.1  christos 
      4      1.1  christos    This file is part of the MIPS sim
      5      1.1  christos 
      6      1.1  christos 		THIS SOFTWARE IS NOT COPYRIGHTED
      7      1.1  christos 
      8      1.1  christos    Cygnus offers the following for use in the public domain.  Cygnus
      9      1.1  christos    makes no warranty with regard to the software or it's performance
     10      1.1  christos    and the user accepts the software "AS IS" with all faults.
     11      1.1  christos 
     12      1.1  christos    CYGNUS DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO
     13      1.1  christos    THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     14      1.1  christos    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     15      1.1  christos 
     16      1.1  christos NOTEs:
     17      1.1  christos 
     18      1.1  christos The IDT monitor (found on the VR4300 board), seems to lie about
     19      1.1  christos register contents. It seems to treat the registers as sign-extended
     20      1.1  christos 32-bit values. This cause *REAL* problems when single-stepping 64-bit
     21      1.1  christos code on the hardware.
     22      1.1  christos 
     23      1.1  christos */
     24      1.1  christos 
     25  1.1.1.6  christos /* This must come before any other includes.  */
     26  1.1.1.6  christos #include "defs.h"
     27  1.1.1.6  christos 
     28      1.1  christos #include "bfd.h"
     29      1.1  christos #include "sim-main.h"
     30      1.1  christos #include "sim-utils.h"
     31      1.1  christos #include "sim-options.h"
     32      1.1  christos #include "sim-assert.h"
     33      1.1  christos #include "sim-hw.h"
     34  1.1.1.6  christos #include "sim-signal.h"
     35      1.1  christos 
     36      1.1  christos #include "itable.h"
     37      1.1  christos 
     38      1.1  christos #include <stdio.h>
     39      1.1  christos #include <stdarg.h>
     40      1.1  christos #include <ansidecl.h>
     41      1.1  christos #include <ctype.h>
     42      1.1  christos #include <limits.h>
     43      1.1  christos #include <math.h>
     44      1.1  christos #include <stdlib.h>
     45      1.1  christos #include <string.h>
     46      1.1  christos 
     47      1.1  christos #include "getopt.h"
     48      1.1  christos #include "libiberty.h"
     49      1.1  christos #include "bfd.h"
     50  1.1.1.5  christos #include "elf-bfd.h"
     51  1.1.1.6  christos #include "sim/callback.h"   /* GDB simulator callback interface */
     52  1.1.1.6  christos #include "sim/sim.h" /* GDB simulator interface */
     53  1.1.1.6  christos #include "sim-syscall.h"   /* Simulator system call support */
     54      1.1  christos 
     55  1.1.1.3  christos char* pr_addr (SIM_ADDR addr);
     56  1.1.1.3  christos char* pr_uword64 (uword64 addr);
     57      1.1  christos 
     58      1.1  christos 
     59      1.1  christos /* Within interp.c we refer to the sim_state and sim_cpu directly. */
     60      1.1  christos #define CPU cpu
     61      1.1  christos #define SD sd
     62      1.1  christos 
     63      1.1  christos 
     64      1.1  christos /* The following reserved instruction value is used when a simulator
     65      1.1  christos    trap is required. NOTE: Care must be taken, since this value may be
     66      1.1  christos    used in later revisions of the MIPS ISA. */
     67      1.1  christos 
     68  1.1.1.5  christos #define RSVD_INSTRUCTION           (0x00000039)
     69      1.1  christos #define RSVD_INSTRUCTION_MASK      (0xFC00003F)
     70      1.1  christos 
     71      1.1  christos #define RSVD_INSTRUCTION_ARG_SHIFT 6
     72  1.1.1.6  christos #define RSVD_INSTRUCTION_ARG_MASK  0xFFFFF
     73      1.1  christos 
     74      1.1  christos 
     75      1.1  christos /* Bits in the Debug register */
     76      1.1  christos #define Debug_DBD 0x80000000   /* Debug Branch Delay */
     77      1.1  christos #define Debug_DM  0x40000000   /* Debug Mode         */
     78      1.1  christos #define Debug_DBp 0x00000002   /* Debug Breakpoint indicator */
     79      1.1  christos 
     80      1.1  christos /*---------------------------------------------------------------------------*/
     81      1.1  christos /*-- GDB simulator interface ------------------------------------------------*/
     82      1.1  christos /*---------------------------------------------------------------------------*/
     83      1.1  christos 
     84  1.1.1.3  christos static void ColdReset (SIM_DESC sd);
     85      1.1  christos 
     86      1.1  christos /*---------------------------------------------------------------------------*/
     87      1.1  christos 
     88      1.1  christos 
     89      1.1  christos 
     90      1.1  christos #define DELAYSLOT()     {\
     91      1.1  christos                           if (STATE & simDELAYSLOT)\
     92      1.1  christos                             sim_io_eprintf(sd,"Delay slot already activated (branch in delay slot?)\n");\
     93      1.1  christos                           STATE |= simDELAYSLOT;\
     94      1.1  christos                         }
     95      1.1  christos 
     96      1.1  christos #define JALDELAYSLOT()	{\
     97      1.1  christos 			  DELAYSLOT ();\
     98      1.1  christos 			  STATE |= simJALDELAYSLOT;\
     99      1.1  christos 			}
    100      1.1  christos 
    101      1.1  christos #define NULLIFY()       {\
    102      1.1  christos                           STATE &= ~simDELAYSLOT;\
    103      1.1  christos                           STATE |= simSKIPNEXT;\
    104      1.1  christos                         }
    105      1.1  christos 
    106      1.1  christos #define CANCELDELAYSLOT() {\
    107      1.1  christos                             DSSTATE = 0;\
    108      1.1  christos                             STATE &= ~(simDELAYSLOT | simJALDELAYSLOT);\
    109      1.1  christos                           }
    110      1.1  christos 
    111      1.1  christos #define INDELAYSLOT()	((STATE & simDELAYSLOT) != 0)
    112      1.1  christos #define INJALDELAYSLOT() ((STATE & simJALDELAYSLOT) != 0)
    113      1.1  christos 
    114      1.1  christos /* Note that the monitor code essentially assumes this layout of memory.
    115      1.1  christos    If you change these, change the monitor code, too.  */
    116      1.1  christos /* FIXME Currently addresses are truncated to 32-bits, see
    117      1.1  christos    mips/sim-main.c:address_translation(). If that changes, then these
    118      1.1  christos    values will need to be extended, and tested for more carefully. */
    119      1.1  christos #define K0BASE  (0x80000000)
    120      1.1  christos #define K0SIZE  (0x20000000)
    121      1.1  christos #define K1BASE  (0xA0000000)
    122      1.1  christos #define K1SIZE  (0x20000000)
    123      1.1  christos 
    124      1.1  christos /* Simple run-time monitor support.
    125  1.1.1.6  christos 
    126      1.1  christos    We emulate the monitor by placing magic reserved instructions at
    127      1.1  christos    the monitor's entry points; when we hit these instructions, instead
    128      1.1  christos    of raising an exception (as we would normally), we look at the
    129      1.1  christos    instruction and perform the appropriate monitory operation.
    130  1.1.1.6  christos 
    131  1.1.1.6  christos    `*_monitor_base' are the physical addresses at which the corresponding
    132      1.1  christos         monitor vectors are located.  `0' means none.  By default,
    133      1.1  christos         install all three.
    134      1.1  christos     The RSVD_INSTRUCTION... macros specify the magic instructions we
    135      1.1  christos     use at the monitor entry points.  */
    136      1.1  christos static int firmware_option_p = 0;
    137      1.1  christos static SIM_ADDR idt_monitor_base =     0xBFC00000;
    138      1.1  christos static SIM_ADDR pmon_monitor_base =    0xBFC00500;
    139      1.1  christos static SIM_ADDR lsipmon_monitor_base = 0xBFC00200;
    140      1.1  christos 
    141      1.1  christos static SIM_RC sim_firmware_command (SIM_DESC sd, char* arg);
    142      1.1  christos 
    143      1.1  christos #define MEM_SIZE (8 << 20)	/* 8 MBytes */
    144      1.1  christos 
    145      1.1  christos 
    146  1.1.1.4  christos #if WITH_TRACE_ANY_P
    147      1.1  christos static char *tracefile = "trace.din"; /* default filename for trace log */
    148      1.1  christos FILE *tracefh = NULL;
    149  1.1.1.3  christos static void open_trace (SIM_DESC sd);
    150  1.1.1.4  christos #else
    151  1.1.1.4  christos #define open_trace(sd)
    152  1.1.1.4  christos #endif
    153      1.1  christos 
    154      1.1  christos static const char * get_insn_name (sim_cpu *, int);
    155      1.1  christos 
    156      1.1  christos /* simulation target board.  NULL=canonical */
    157      1.1  christos static char* board = NULL;
    158      1.1  christos 
    159      1.1  christos 
    160      1.1  christos static DECLARE_OPTION_HANDLER (mips_option_handler);
    161      1.1  christos 
    162      1.1  christos enum {
    163      1.1  christos   OPTION_DINERO_TRACE = OPTION_START,
    164      1.1  christos   OPTION_DINERO_FILE,
    165      1.1  christos   OPTION_FIRMWARE,
    166      1.1  christos   OPTION_INFO_MEMORY,
    167      1.1  christos   OPTION_BOARD
    168      1.1  christos };
    169      1.1  christos 
    170      1.1  christos static int display_mem_info = 0;
    171      1.1  christos 
    172      1.1  christos static SIM_RC
    173  1.1.1.4  christos mips_option_handler (SIM_DESC sd, sim_cpu *cpu, int opt, char *arg,
    174  1.1.1.4  christos                      int is_command)
    175      1.1  christos {
    176      1.1  christos   int cpu_nr;
    177      1.1  christos   switch (opt)
    178      1.1  christos     {
    179      1.1  christos     case OPTION_DINERO_TRACE: /* ??? */
    180  1.1.1.4  christos #if WITH_TRACE_ANY_P
    181      1.1  christos       /* Eventually the simTRACE flag could be treated as a toggle, to
    182      1.1  christos 	 allow external control of the program points being traced
    183      1.1  christos 	 (i.e. only from main onwards, excluding the run-time setup,
    184      1.1  christos 	 etc.). */
    185      1.1  christos       for (cpu_nr = 0; cpu_nr < MAX_NR_PROCESSORS; cpu_nr++)
    186      1.1  christos 	{
    187      1.1  christos 	  sim_cpu *cpu = STATE_CPU (sd, cpu_nr);
    188      1.1  christos 	  if (arg == NULL)
    189      1.1  christos 	    STATE |= simTRACE;
    190      1.1  christos 	  else if (strcmp (arg, "yes") == 0)
    191      1.1  christos 	    STATE |= simTRACE;
    192      1.1  christos 	  else if (strcmp (arg, "no") == 0)
    193      1.1  christos 	    STATE &= ~simTRACE;
    194      1.1  christos 	  else if (strcmp (arg, "on") == 0)
    195      1.1  christos 	    STATE |= simTRACE;
    196      1.1  christos 	  else if (strcmp (arg, "off") == 0)
    197      1.1  christos 	    STATE &= ~simTRACE;
    198      1.1  christos 	  else
    199      1.1  christos 	    {
    200      1.1  christos 	      fprintf (stderr, "Unrecognized dinero-trace option `%s'\n", arg);
    201      1.1  christos 	      return SIM_RC_FAIL;
    202      1.1  christos 	    }
    203      1.1  christos 	}
    204      1.1  christos       return SIM_RC_OK;
    205  1.1.1.4  christos #else /* !WITH_TRACE_ANY_P */
    206      1.1  christos       fprintf(stderr,"\
    207      1.1  christos Simulator constructed without dinero tracing support (for performance).\n\
    208  1.1.1.4  christos Re-compile simulator with \"-DWITH_TRACE_ANY_P\" to enable this option.\n");
    209      1.1  christos       return SIM_RC_FAIL;
    210  1.1.1.4  christos #endif /* !WITH_TRACE_ANY_P */
    211      1.1  christos 
    212      1.1  christos     case OPTION_DINERO_FILE:
    213  1.1.1.4  christos #if WITH_TRACE_ANY_P
    214      1.1  christos       if (optarg != NULL) {
    215      1.1  christos 	char *tmp;
    216      1.1  christos 	tmp = (char *)malloc(strlen(optarg) + 1);
    217      1.1  christos 	if (tmp == NULL)
    218      1.1  christos 	  {
    219      1.1  christos 	    sim_io_printf(sd,"Failed to allocate buffer for tracefile name \"%s\"\n",optarg);
    220      1.1  christos 	    return SIM_RC_FAIL;
    221      1.1  christos 	  }
    222      1.1  christos 	else {
    223      1.1  christos 	  strcpy(tmp,optarg);
    224      1.1  christos 	  tracefile = tmp;
    225      1.1  christos 	  sim_io_printf(sd,"Placing trace information into file \"%s\"\n",tracefile);
    226      1.1  christos 	}
    227      1.1  christos       }
    228  1.1.1.4  christos #endif /* WITH_TRACE_ANY_P */
    229      1.1  christos       return SIM_RC_OK;
    230      1.1  christos 
    231      1.1  christos     case OPTION_FIRMWARE:
    232      1.1  christos       return sim_firmware_command (sd, arg);
    233      1.1  christos 
    234      1.1  christos     case OPTION_BOARD:
    235      1.1  christos       {
    236      1.1  christos 	if (arg)
    237      1.1  christos 	  {
    238      1.1  christos 	    board = zalloc(strlen(arg) + 1);
    239      1.1  christos 	    strcpy(board, arg);
    240      1.1  christos 	  }
    241      1.1  christos 	return SIM_RC_OK;
    242      1.1  christos       }
    243      1.1  christos 
    244      1.1  christos     case OPTION_INFO_MEMORY:
    245      1.1  christos       display_mem_info = 1;
    246      1.1  christos       break;
    247      1.1  christos     }
    248  1.1.1.6  christos 
    249      1.1  christos   return SIM_RC_OK;
    250      1.1  christos }
    251      1.1  christos 
    252      1.1  christos 
    253      1.1  christos static const OPTION mips_options[] =
    254      1.1  christos {
    255      1.1  christos   { {"dinero-trace", optional_argument, NULL, OPTION_DINERO_TRACE},
    256      1.1  christos       '\0', "on|off", "Enable dinero tracing",
    257      1.1  christos       mips_option_handler },
    258      1.1  christos   { {"dinero-file", required_argument, NULL, OPTION_DINERO_FILE},
    259      1.1  christos       '\0', "FILE", "Write dinero trace to FILE",
    260      1.1  christos       mips_option_handler },
    261      1.1  christos   { {"firmware", required_argument, NULL, OPTION_FIRMWARE},
    262      1.1  christos     '\0', "[idt|pmon|lsipmon|none][@ADDRESS]", "Emulate ROM monitor",
    263      1.1  christos     mips_option_handler },
    264      1.1  christos   { {"board", required_argument, NULL, OPTION_BOARD},
    265      1.1  christos      '\0', "none" /* rely on compile-time string concatenation for other options */
    266      1.1  christos 
    267      1.1  christos #define BOARD_JMR3904 "jmr3904"
    268      1.1  christos            "|" BOARD_JMR3904
    269      1.1  christos #define BOARD_JMR3904_PAL "jmr3904pal"
    270      1.1  christos            "|" BOARD_JMR3904_PAL
    271      1.1  christos #define BOARD_JMR3904_DEBUG "jmr3904debug"
    272      1.1  christos            "|" BOARD_JMR3904_DEBUG
    273      1.1  christos #define BOARD_BSP "bsp"
    274      1.1  christos            "|" BOARD_BSP
    275      1.1  christos 
    276      1.1  christos     , "Customize simulation for a particular board.", mips_option_handler },
    277      1.1  christos 
    278      1.1  christos   /* These next two options have the same names as ones found in the
    279      1.1  christos      memory_options[] array in common/sim-memopt.c.  This is because
    280      1.1  christos      the intention is to provide an alternative handler for those two
    281      1.1  christos      options.  We need an alternative handler because the memory
    282      1.1  christos      regions are not set up until after the command line arguments
    283      1.1  christos      have been parsed, and so we cannot display the memory info whilst
    284      1.1  christos      processing the command line.  There is a hack in sim_open to
    285      1.1  christos      remove these handlers when we want the real --memory-info option
    286      1.1  christos      to work.  */
    287      1.1  christos   { { "info-memory", no_argument, NULL, OPTION_INFO_MEMORY },
    288      1.1  christos     '\0', NULL, "List configured memory regions", mips_option_handler },
    289      1.1  christos   { { "memory-info", no_argument, NULL, OPTION_INFO_MEMORY },
    290      1.1  christos     '\0', NULL, NULL, mips_option_handler },
    291  1.1.1.6  christos 
    292      1.1  christos   { {NULL, no_argument, NULL, 0}, '\0', NULL, NULL, NULL }
    293      1.1  christos };
    294      1.1  christos 
    295      1.1  christos 
    296      1.1  christos int interrupt_pending;
    297      1.1  christos 
    298      1.1  christos void
    299      1.1  christos interrupt_event (SIM_DESC sd, void *data)
    300      1.1  christos {
    301      1.1  christos   sim_cpu *cpu = STATE_CPU (sd, 0); /* FIXME */
    302  1.1.1.4  christos   address_word cia = CPU_PC_GET (cpu);
    303      1.1  christos   if (SR & status_IE)
    304      1.1  christos     {
    305      1.1  christos       interrupt_pending = 0;
    306      1.1  christos       SignalExceptionInterrupt (1); /* interrupt "1" */
    307      1.1  christos     }
    308      1.1  christos   else if (!interrupt_pending)
    309      1.1  christos     sim_events_schedule (sd, 1, interrupt_event, data);
    310      1.1  christos }
    311      1.1  christos 
    312      1.1  christos 
    313      1.1  christos /*---------------------------------------------------------------------------*/
    314      1.1  christos /*-- Device registration hook -----------------------------------------------*/
    315      1.1  christos /*---------------------------------------------------------------------------*/
    316      1.1  christos static void device_init(SIM_DESC sd) {
    317      1.1  christos #ifdef DEVICE_INIT
    318      1.1  christos   extern void register_devices(SIM_DESC);
    319      1.1  christos   register_devices(sd);
    320      1.1  christos #endif
    321      1.1  christos }
    322      1.1  christos 
    323      1.1  christos /*---------------------------------------------------------------------------*/
    324      1.1  christos /*-- GDB simulator interface ------------------------------------------------*/
    325      1.1  christos /*---------------------------------------------------------------------------*/
    326      1.1  christos 
    327  1.1.1.4  christos static sim_cia
    328  1.1.1.4  christos mips_pc_get (sim_cpu *cpu)
    329  1.1.1.4  christos {
    330  1.1.1.4  christos   return PC;
    331  1.1.1.4  christos }
    332  1.1.1.4  christos 
    333  1.1.1.4  christos static void
    334  1.1.1.4  christos mips_pc_set (sim_cpu *cpu, sim_cia pc)
    335  1.1.1.4  christos {
    336  1.1.1.4  christos   PC = pc;
    337  1.1.1.4  christos }
    338  1.1.1.4  christos 
    339  1.1.1.6  christos static int mips_reg_fetch (SIM_CPU *, int, void *, int);
    340  1.1.1.6  christos static int mips_reg_store (SIM_CPU *, int, const void *, int);
    341  1.1.1.5  christos 
    342      1.1  christos SIM_DESC
    343  1.1.1.5  christos sim_open (SIM_OPEN_KIND kind, host_callback *cb,
    344  1.1.1.5  christos 	  struct bfd *abfd, char * const *argv)
    345      1.1  christos {
    346  1.1.1.4  christos   int i;
    347  1.1.1.6  christos   SIM_DESC sd = sim_state_alloc_extra (kind, cb,
    348  1.1.1.6  christos 				       sizeof (struct mips_sim_state));
    349  1.1.1.4  christos   sim_cpu *cpu;
    350      1.1  christos 
    351      1.1  christos   SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
    352      1.1  christos 
    353  1.1.1.4  christos   /* The cpu data is kept in a separately allocated chunk of memory.  */
    354  1.1.1.6  christos   if (sim_cpu_alloc_all (sd, 1) != SIM_RC_OK)
    355  1.1.1.4  christos     return 0;
    356  1.1.1.4  christos 
    357  1.1.1.4  christos   cpu = STATE_CPU (sd, 0); /* FIXME */
    358  1.1.1.4  christos 
    359      1.1  christos   /* FIXME: watchpoints code shouldn't need this */
    360      1.1  christos   STATE_WATCHPOINTS (sd)->interrupt_handler = interrupt_event;
    361      1.1  christos 
    362      1.1  christos   /* Initialize the mechanism for doing insn profiling.  */
    363      1.1  christos   CPU_INSN_NAME (cpu) = get_insn_name;
    364      1.1  christos   CPU_MAX_INSNS (cpu) = nr_itable_entries;
    365      1.1  christos 
    366      1.1  christos   STATE = 0;
    367  1.1.1.6  christos 
    368      1.1  christos   if (sim_pre_argv_init (sd, argv[0]) != SIM_RC_OK)
    369      1.1  christos     return 0;
    370      1.1  christos   sim_add_option_table (sd, NULL, mips_options);
    371      1.1  christos 
    372      1.1  christos 
    373  1.1.1.5  christos   /* The parser will print an error message for us, so we silently return.  */
    374      1.1  christos   if (sim_parse_args (sd, argv) != SIM_RC_OK)
    375      1.1  christos     {
    376      1.1  christos       /* Uninstall the modules to avoid memory leaks,
    377      1.1  christos 	 file descriptor leaks, etc.  */
    378      1.1  christos       sim_module_uninstall (sd);
    379      1.1  christos       return 0;
    380      1.1  christos     }
    381      1.1  christos 
    382      1.1  christos   /* handle board-specific memory maps */
    383      1.1  christos   if (board == NULL)
    384      1.1  christos     {
    385      1.1  christos       /* Allocate core managed memory */
    386      1.1  christos       sim_memopt *entry, *match = NULL;
    387      1.1  christos       address_word mem_size = 0;
    388      1.1  christos       int mapped = 0;
    389      1.1  christos 
    390      1.1  christos       /* For compatibility with the old code - under this (at level one)
    391      1.1  christos 	 are the kernel spaces K0 & K1.  Both of these map to a single
    392      1.1  christos 	 smaller sub region */
    393      1.1  christos       sim_do_command(sd," memory region 0x7fff8000,0x8000") ; /* MTZ- 32 k stack */
    394      1.1  christos 
    395      1.1  christos       /* Look for largest memory region defined on command-line at
    396      1.1  christos 	 phys address 0. */
    397      1.1  christos       for (entry = STATE_MEMOPT (sd); entry != NULL; entry = entry->next)
    398      1.1  christos 	{
    399      1.1  christos 	  /* If we find an entry at address 0, then we will end up
    400      1.1  christos 	     allocating a new buffer in the "memory alias" command
    401      1.1  christos 	     below. The region at address 0 will be deleted. */
    402      1.1  christos 	  address_word size = (entry->modulo != 0
    403      1.1  christos 			       ? entry->modulo : entry->nr_bytes);
    404      1.1  christos 	  if (entry->addr == 0
    405      1.1  christos 	      && (!match || entry->level < match->level))
    406      1.1  christos 	    match = entry;
    407      1.1  christos 	  else if (entry->addr == K0BASE || entry->addr == K1BASE)
    408      1.1  christos 	    mapped = 1;
    409      1.1  christos 	  else
    410      1.1  christos 	    {
    411      1.1  christos 	      sim_memopt *alias;
    412      1.1  christos 	      for (alias = entry->alias; alias != NULL; alias = alias->next)
    413      1.1  christos 		{
    414      1.1  christos 		  if (alias->addr == 0
    415      1.1  christos 		      && (!match || entry->level < match->level))
    416      1.1  christos 		    match = entry;
    417      1.1  christos 		  else if (alias->addr == K0BASE || alias->addr == K1BASE)
    418      1.1  christos 		    mapped = 1;
    419      1.1  christos 		}
    420      1.1  christos 	    }
    421      1.1  christos 	}
    422      1.1  christos 
    423      1.1  christos       if (!mapped)
    424      1.1  christos 	{
    425      1.1  christos 	  if (match)
    426      1.1  christos 	    {
    427      1.1  christos 	      /* Get existing memory region size. */
    428      1.1  christos 	      mem_size = (match->modulo != 0
    429      1.1  christos 			  ? match->modulo : match->nr_bytes);
    430      1.1  christos 	      /* Delete old region. */
    431  1.1.1.6  christos 	      sim_do_commandf (sd, "memory delete %d:0x%" PRIxTW "@%d",
    432      1.1  christos 			       match->space, match->addr, match->level);
    433  1.1.1.6  christos 	    }
    434      1.1  christos 	  else if (mem_size == 0)
    435      1.1  christos 	    mem_size = MEM_SIZE;
    436      1.1  christos 	  /* Limit to KSEG1 size (512MB) */
    437      1.1  christos 	  if (mem_size > K1SIZE)
    438      1.1  christos 	    mem_size = K1SIZE;
    439      1.1  christos 	  /* memory alias K1BASE@1,K1SIZE%MEMSIZE,K0BASE */
    440  1.1.1.6  christos 	  sim_do_commandf (sd, "memory alias 0x%x@1,0x%x%%0x%lx,0x%0x",
    441      1.1  christos 			   K1BASE, K1SIZE, (long)mem_size, K0BASE);
    442  1.1.1.6  christos 	  if (WITH_TARGET_WORD_BITSIZE == 64)
    443  1.1.1.6  christos 	    sim_do_commandf (sd, "memory alias 0x%x,0x%" PRIxTW ",0x%" PRIxTA,
    444  1.1.1.6  christos 			     (K0BASE), mem_size, EXTENDED(K0BASE));
    445      1.1  christos 	}
    446      1.1  christos 
    447      1.1  christos       device_init(sd);
    448      1.1  christos     }
    449      1.1  christos   else if (board != NULL
    450      1.1  christos 	   && (strcmp(board, BOARD_BSP) == 0))
    451      1.1  christos     {
    452      1.1  christos       int i;
    453      1.1  christos 
    454      1.1  christos       STATE_ENVIRONMENT (sd) = OPERATING_ENVIRONMENT;
    455      1.1  christos 
    456      1.1  christos       /* ROM: 0x9FC0_0000 - 0x9FFF_FFFF and 0xBFC0_0000 - 0xBFFF_FFFF */
    457  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x,0x%0x",
    458  1.1.1.6  christos 		       0x9FC00000,
    459      1.1  christos 		       4 * 1024 * 1024, /* 4 MB */
    460      1.1  christos 		       0xBFC00000);
    461      1.1  christos 
    462      1.1  christos       /* SRAM: 0x8000_0000 - 0x803F_FFFF and 0xA000_0000 - 0xA03F_FFFF */
    463  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x,0x%0x",
    464  1.1.1.6  christos 		       0x80000000,
    465      1.1  christos 		       4 * 1024 * 1024, /* 4 MB */
    466      1.1  christos 		       0xA0000000);
    467      1.1  christos 
    468      1.1  christos       /* DRAM: 0x8800_0000 - 0x89FF_FFFF and 0xA800_0000 - 0xA9FF_FFFF */
    469      1.1  christos       for (i=0; i<8; i++) /* 32 MB total */
    470      1.1  christos 	{
    471      1.1  christos 	  unsigned size = 4 * 1024 * 1024;  /* 4 MB */
    472  1.1.1.6  christos 	  sim_do_commandf (sd, "memory alias 0x%x@1,0x%x,0x%0x",
    473  1.1.1.6  christos 			   0x88000000 + (i * size),
    474  1.1.1.6  christos 			   size,
    475      1.1  christos 			   0xA8000000 + (i * size));
    476      1.1  christos 	}
    477      1.1  christos     }
    478      1.1  christos #if (WITH_HW)
    479      1.1  christos   else if (board != NULL
    480      1.1  christos 	   && (strcmp(board, BOARD_JMR3904) == 0 ||
    481      1.1  christos 	       strcmp(board, BOARD_JMR3904_PAL) == 0 ||
    482      1.1  christos 	       strcmp(board, BOARD_JMR3904_DEBUG) == 0))
    483      1.1  christos     {
    484      1.1  christos       /* match VIRTUAL memory layout of JMR-TX3904 board */
    485      1.1  christos       int i;
    486      1.1  christos 
    487      1.1  christos       /* --- disable monitor unless forced on by user --- */
    488      1.1  christos 
    489      1.1  christos       if (! firmware_option_p)
    490      1.1  christos 	{
    491      1.1  christos 	  idt_monitor_base = 0;
    492      1.1  christos 	  pmon_monitor_base = 0;
    493      1.1  christos 	  lsipmon_monitor_base = 0;
    494      1.1  christos 	}
    495      1.1  christos 
    496      1.1  christos       /* --- environment --- */
    497      1.1  christos 
    498      1.1  christos       STATE_ENVIRONMENT (sd) = OPERATING_ENVIRONMENT;
    499      1.1  christos 
    500      1.1  christos       /* --- memory --- */
    501      1.1  christos 
    502      1.1  christos       /* ROM: 0x9FC0_0000 - 0x9FFF_FFFF and 0xBFC0_0000 - 0xBFFF_FFFF */
    503  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x,0x%0x",
    504  1.1.1.6  christos 		       0x9FC00000,
    505      1.1  christos 		       4 * 1024 * 1024, /* 4 MB */
    506      1.1  christos 		       0xBFC00000);
    507      1.1  christos 
    508      1.1  christos       /* SRAM: 0x8000_0000 - 0x803F_FFFF and 0xA000_0000 - 0xA03F_FFFF */
    509  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x,0x%0x",
    510  1.1.1.6  christos 		       0x80000000,
    511      1.1  christos 		       4 * 1024 * 1024, /* 4 MB */
    512      1.1  christos 		       0xA0000000);
    513      1.1  christos 
    514      1.1  christos       /* DRAM: 0x8800_0000 - 0x89FF_FFFF and 0xA800_0000 - 0xA9FF_FFFF */
    515      1.1  christos       for (i=0; i<8; i++) /* 32 MB total */
    516      1.1  christos 	{
    517      1.1  christos 	  unsigned size = 4 * 1024 * 1024;  /* 4 MB */
    518  1.1.1.6  christos 	  sim_do_commandf (sd, "memory alias 0x%x@1,0x%x,0x%0x",
    519  1.1.1.6  christos 			   0x88000000 + (i * size),
    520  1.1.1.6  christos 			   size,
    521      1.1  christos 			   0xA8000000 + (i * size));
    522      1.1  christos 	}
    523      1.1  christos 
    524      1.1  christos       /* Dummy memory regions for unsimulated devices - sorted by address */
    525      1.1  christos 
    526  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xB1000000, 0x400); /* ISA I/O */
    527  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xB2100000, 0x004); /* ISA ctl */
    528  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xB2500000, 0x004); /* LED/switch */
    529  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xB2700000, 0x004); /* RTC */
    530  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xB3C00000, 0x004); /* RTC */
    531  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xFFFF8000, 0x900); /* DRAMC */
    532  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xFFFF9000, 0x200); /* EBIF */
    533  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xFFFFE000, 0x01c); /* EBIF */
    534  1.1.1.6  christos       sim_do_commandf (sd, "memory alias 0x%x@1,0x%x", 0xFFFFF500, 0x300); /* PIO */
    535      1.1  christos 
    536      1.1  christos 
    537      1.1  christos       /* --- simulated devices --- */
    538      1.1  christos       sim_hw_parse (sd, "/tx3904irc@0xffffc000/reg 0xffffc000 0x20");
    539      1.1  christos       sim_hw_parse (sd, "/tx3904cpu");
    540      1.1  christos       sim_hw_parse (sd, "/tx3904tmr@0xfffff000/reg 0xfffff000 0x100");
    541      1.1  christos       sim_hw_parse (sd, "/tx3904tmr@0xfffff100/reg 0xfffff100 0x100");
    542      1.1  christos       sim_hw_parse (sd, "/tx3904tmr@0xfffff200/reg 0xfffff200 0x100");
    543      1.1  christos       sim_hw_parse (sd, "/tx3904sio@0xfffff300/reg 0xfffff300 0x100");
    544      1.1  christos       {
    545      1.1  christos 	/* FIXME: poking at dv-sockser internals, use tcp backend if
    546      1.1  christos 	 --sockser_addr option was given.*/
    547  1.1.1.6  christos #ifdef HAVE_DV_SOCKSER
    548      1.1  christos 	extern char* sockser_addr;
    549  1.1.1.6  christos #else
    550  1.1.1.6  christos # define sockser_addr NULL
    551  1.1.1.6  christos #endif
    552  1.1.1.6  christos 	if (sockser_addr == NULL)
    553      1.1  christos 	  sim_hw_parse (sd, "/tx3904sio@0xfffff300/backend stdio");
    554      1.1  christos 	else
    555      1.1  christos 	  sim_hw_parse (sd, "/tx3904sio@0xfffff300/backend tcp");
    556      1.1  christos       }
    557      1.1  christos       sim_hw_parse (sd, "/tx3904sio@0xfffff400/reg 0xfffff400 0x100");
    558      1.1  christos       sim_hw_parse (sd, "/tx3904sio@0xfffff400/backend stdio");
    559      1.1  christos 
    560      1.1  christos       /* -- device connections --- */
    561      1.1  christos       sim_hw_parse (sd, "/tx3904irc > ip level /tx3904cpu");
    562      1.1  christos       sim_hw_parse (sd, "/tx3904tmr@0xfffff000 > int tmr0 /tx3904irc");
    563      1.1  christos       sim_hw_parse (sd, "/tx3904tmr@0xfffff100 > int tmr1 /tx3904irc");
    564      1.1  christos       sim_hw_parse (sd, "/tx3904tmr@0xfffff200 > int tmr2 /tx3904irc");
    565      1.1  christos       sim_hw_parse (sd, "/tx3904sio@0xfffff300 > int sio0 /tx3904irc");
    566      1.1  christos       sim_hw_parse (sd, "/tx3904sio@0xfffff400 > int sio1 /tx3904irc");
    567      1.1  christos 
    568      1.1  christos       /* add PAL timer & I/O module */
    569  1.1.1.6  christos       if (!strcmp(board, BOARD_JMR3904_PAL))
    570      1.1  christos 	{
    571      1.1  christos 	 /* the device */
    572      1.1  christos 	 sim_hw_parse (sd, "/pal@0xffff0000");
    573      1.1  christos 	 sim_hw_parse (sd, "/pal@0xffff0000/reg 0xffff0000 64");
    574      1.1  christos 
    575      1.1  christos 	 /* wire up interrupt ports to irc */
    576      1.1  christos 	 sim_hw_parse (sd, "/pal@0x31000000 > countdown tmr0 /tx3904irc");
    577      1.1  christos 	 sim_hw_parse (sd, "/pal@0x31000000 > timer tmr1 /tx3904irc");
    578      1.1  christos 	 sim_hw_parse (sd, "/pal@0x31000000 > int int0 /tx3904irc");
    579      1.1  christos 	}
    580      1.1  christos 
    581  1.1.1.6  christos       if (!strcmp(board, BOARD_JMR3904_DEBUG))
    582      1.1  christos 	{
    583      1.1  christos 	  /* -- DEBUG: glue interrupt generators --- */
    584      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000/reg 0xffff0000 0x50");
    585      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int0 int0 /tx3904irc");
    586      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int1 int1 /tx3904irc");
    587      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int2 int2 /tx3904irc");
    588      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int3 int3 /tx3904irc");
    589      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int4 int4 /tx3904irc");
    590      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int5 int5 /tx3904irc");
    591      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int6 int6 /tx3904irc");
    592      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int7 int7 /tx3904irc");
    593      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int8 dmac0 /tx3904irc");
    594      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int9 dmac1 /tx3904irc");
    595      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int10 dmac2 /tx3904irc");
    596      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int11 dmac3 /tx3904irc");
    597      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int12 sio0 /tx3904irc");
    598      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int13 sio1 /tx3904irc");
    599      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int14 tmr0 /tx3904irc");
    600      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int15 tmr1 /tx3904irc");
    601      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int16 tmr2 /tx3904irc");
    602      1.1  christos 	  sim_hw_parse (sd, "/glue@0xffff0000 > int17 nmi /tx3904cpu");
    603      1.1  christos 	}
    604      1.1  christos 
    605      1.1  christos       device_init(sd);
    606      1.1  christos     }
    607      1.1  christos #endif
    608      1.1  christos 
    609      1.1  christos   if (display_mem_info)
    610      1.1  christos     {
    611      1.1  christos       struct option_list * ol;
    612      1.1  christos       struct option_list * prev;
    613      1.1  christos 
    614      1.1  christos       /* This is a hack.  We want to execute the real --memory-info command
    615      1.1  christos 	 line switch which is handled in common/sim-memopts.c, not the
    616      1.1  christos 	 override we have defined in this file.  So we remove the
    617      1.1  christos 	 mips_options array from the state options list.  This is safe
    618      1.1  christos          because we have now processed all of the command line.  */
    619      1.1  christos       for (ol = STATE_OPTIONS (sd), prev = NULL;
    620      1.1  christos 	   ol != NULL;
    621      1.1  christos 	   prev = ol, ol = ol->next)
    622      1.1  christos 	if (ol->options == mips_options)
    623      1.1  christos 	  break;
    624      1.1  christos 
    625      1.1  christos       SIM_ASSERT (ol != NULL);
    626      1.1  christos 
    627      1.1  christos       if (prev == NULL)
    628      1.1  christos 	STATE_OPTIONS (sd) = ol->next;
    629      1.1  christos       else
    630      1.1  christos 	prev->next = ol->next;
    631      1.1  christos 
    632      1.1  christos       sim_do_commandf (sd, "memory-info");
    633      1.1  christos     }
    634      1.1  christos 
    635      1.1  christos   /* check for/establish the a reference program image */
    636  1.1.1.6  christos   if (sim_analyze_program (sd, STATE_PROG_FILE (sd), abfd) != SIM_RC_OK)
    637      1.1  christos     {
    638      1.1  christos       sim_module_uninstall (sd);
    639      1.1  christos       return 0;
    640      1.1  christos     }
    641      1.1  christos 
    642      1.1  christos   /* Configure/verify the target byte order and other runtime
    643      1.1  christos      configuration options */
    644      1.1  christos   if (sim_config (sd) != SIM_RC_OK)
    645      1.1  christos     {
    646      1.1  christos       sim_module_uninstall (sd);
    647      1.1  christos       return 0;
    648      1.1  christos     }
    649      1.1  christos 
    650      1.1  christos   if (sim_post_argv_init (sd) != SIM_RC_OK)
    651      1.1  christos     {
    652      1.1  christos       /* Uninstall the modules to avoid memory leaks,
    653      1.1  christos 	 file descriptor leaks, etc.  */
    654      1.1  christos       sim_module_uninstall (sd);
    655      1.1  christos       return 0;
    656      1.1  christos     }
    657      1.1  christos 
    658      1.1  christos   /* verify assumptions the simulator made about the host type system.
    659      1.1  christos      This macro does not return if there is a problem */
    660      1.1  christos   SIM_ASSERT (sizeof(int) == (4 * sizeof(char)));
    661      1.1  christos   SIM_ASSERT (sizeof(word64) == (8 * sizeof(char)));
    662      1.1  christos 
    663      1.1  christos   /* This is NASTY, in that we are assuming the size of specific
    664      1.1  christos      registers: */
    665      1.1  christos   {
    666      1.1  christos     int rn;
    667      1.1  christos     for (rn = 0; (rn < (LAST_EMBED_REGNUM + 1)); rn++)
    668      1.1  christos       {
    669      1.1  christos 	if (rn < 32)
    670      1.1  christos 	  cpu->register_widths[rn] = WITH_TARGET_WORD_BITSIZE;
    671      1.1  christos 	else if ((rn >= FGR_BASE) && (rn < (FGR_BASE + NR_FGR)))
    672      1.1  christos 	  cpu->register_widths[rn] = WITH_TARGET_FLOATING_POINT_BITSIZE;
    673      1.1  christos 	else if ((rn >= 33) && (rn <= 37))
    674      1.1  christos 	  cpu->register_widths[rn] = WITH_TARGET_WORD_BITSIZE;
    675      1.1  christos 	else if ((rn == SRIDX)
    676      1.1  christos 		 || (rn == FCR0IDX)
    677      1.1  christos 		 || (rn == FCR31IDX)
    678      1.1  christos 		 || ((rn >= 72) && (rn <= 89)))
    679      1.1  christos 	  cpu->register_widths[rn] = 32;
    680      1.1  christos 	else
    681      1.1  christos 	  cpu->register_widths[rn] = 0;
    682      1.1  christos       }
    683      1.1  christos 
    684      1.1  christos 
    685      1.1  christos   }
    686      1.1  christos 
    687      1.1  christos   if (STATE & simTRACE)
    688      1.1  christos     open_trace(sd);
    689      1.1  christos 
    690      1.1  christos   /*
    691  1.1.1.6  christos   sim_io_eprintf (sd, "idt@%x pmon@%x lsipmon@%x\n",
    692      1.1  christos 		  idt_monitor_base,
    693  1.1.1.6  christos 		  pmon_monitor_base,
    694      1.1  christos 		  lsipmon_monitor_base);
    695      1.1  christos   */
    696      1.1  christos 
    697      1.1  christos   /* Write the monitor trap address handlers into the monitor (eeprom)
    698      1.1  christos      address space.  This can only be done once the target endianness
    699      1.1  christos      has been determined. */
    700      1.1  christos   if (idt_monitor_base != 0)
    701      1.1  christos     {
    702      1.1  christos       unsigned loop;
    703  1.1.1.6  christos       address_word idt_monitor_size = 1 << 11;
    704      1.1  christos 
    705      1.1  christos       /* the default monitor region */
    706  1.1.1.6  christos       if (WITH_TARGET_WORD_BITSIZE == 64)
    707  1.1.1.6  christos 	sim_do_commandf (sd, "memory alias 0x%x,0x%" PRIxTW ",0x%" PRIxTA,
    708  1.1.1.6  christos 			 idt_monitor_base, idt_monitor_size,
    709  1.1.1.6  christos 			 EXTENDED (idt_monitor_base));
    710  1.1.1.6  christos       else
    711  1.1.1.6  christos 	sim_do_commandf (sd, "memory region 0x%x,0x%" PRIxTA,
    712  1.1.1.6  christos 			 idt_monitor_base, idt_monitor_size);
    713      1.1  christos 
    714      1.1  christos       /* Entry into the IDT monitor is via fixed address vectors, and
    715      1.1  christos 	 not using machine instructions. To avoid clashing with use of
    716      1.1  christos 	 the MIPS TRAP system, we place our own (simulator specific)
    717      1.1  christos 	 "undefined" instructions into the relevant vector slots. */
    718      1.1  christos       for (loop = 0; (loop < idt_monitor_size); loop += 4)
    719      1.1  christos 	{
    720      1.1  christos 	  address_word vaddr = (idt_monitor_base + loop);
    721  1.1.1.6  christos 	  uint32_t insn = (RSVD_INSTRUCTION |
    722      1.1  christos 			     (((loop >> 2) & RSVD_INSTRUCTION_ARG_MASK)
    723      1.1  christos 			      << RSVD_INSTRUCTION_ARG_SHIFT));
    724      1.1  christos 	  H2T (insn);
    725  1.1.1.6  christos 	  sim_write (sd, vaddr, &insn, sizeof (insn));
    726      1.1  christos 	}
    727      1.1  christos     }
    728      1.1  christos 
    729      1.1  christos   if ((pmon_monitor_base != 0) || (lsipmon_monitor_base != 0))
    730      1.1  christos     {
    731      1.1  christos     /* The PMON monitor uses the same address space, but rather than
    732      1.1  christos        branching into it the address of a routine is loaded. We can
    733      1.1  christos        cheat for the moment, and direct the PMON routine to IDT style
    734      1.1  christos        instructions within the monitor space. This relies on the IDT
    735      1.1  christos        monitor not using the locations from 0xBFC00500 onwards as its
    736      1.1  christos        entry points.*/
    737      1.1  christos       unsigned loop;
    738      1.1  christos       for (loop = 0; (loop < 24); loop++)
    739      1.1  christos 	{
    740  1.1.1.6  christos 	  uint32_t value = ((0x500 - 8) / 8); /* default UNDEFINED reason code */
    741      1.1  christos 	  switch (loop)
    742      1.1  christos 	    {
    743      1.1  christos             case 0: /* read */
    744      1.1  christos               value = 7;
    745      1.1  christos               break;
    746      1.1  christos             case 1: /* write */
    747      1.1  christos               value = 8;
    748      1.1  christos               break;
    749      1.1  christos             case 2: /* open */
    750      1.1  christos               value = 6;
    751      1.1  christos               break;
    752      1.1  christos             case 3: /* close */
    753      1.1  christos               value = 10;
    754      1.1  christos               break;
    755      1.1  christos             case 5: /* printf */
    756      1.1  christos               value = ((0x500 - 16) / 8); /* not an IDT reason code */
    757      1.1  christos               break;
    758      1.1  christos             case 8: /* cliexit */
    759      1.1  christos               value = 17;
    760      1.1  christos               break;
    761      1.1  christos             case 11: /* flush_cache */
    762      1.1  christos               value = 28;
    763      1.1  christos               break;
    764      1.1  christos           }
    765      1.1  christos 
    766      1.1  christos 	SIM_ASSERT (idt_monitor_base != 0);
    767      1.1  christos         value = ((unsigned int) idt_monitor_base + (value * 8));
    768      1.1  christos 	H2T (value);
    769      1.1  christos 
    770      1.1  christos 	if (pmon_monitor_base != 0)
    771      1.1  christos 	  {
    772      1.1  christos 	    address_word vaddr = (pmon_monitor_base + (loop * 4));
    773  1.1.1.6  christos 	    sim_write (sd, vaddr, &value, sizeof (value));
    774      1.1  christos 	  }
    775      1.1  christos 
    776      1.1  christos 	if (lsipmon_monitor_base != 0)
    777      1.1  christos 	  {
    778      1.1  christos 	    address_word vaddr = (lsipmon_monitor_base + (loop * 4));
    779  1.1.1.6  christos 	    sim_write (sd, vaddr, &value, sizeof (value));
    780      1.1  christos 	  }
    781      1.1  christos       }
    782      1.1  christos 
    783      1.1  christos   /* Write an abort sequence into the TRAP (common) exception vector
    784      1.1  christos      addresses.  This is to catch code executing a TRAP (et.al.)
    785      1.1  christos      instruction without installing a trap handler. */
    786  1.1.1.6  christos   if ((idt_monitor_base != 0) ||
    787  1.1.1.6  christos       (pmon_monitor_base != 0) ||
    788      1.1  christos       (lsipmon_monitor_base != 0))
    789      1.1  christos     {
    790  1.1.1.6  christos       uint32_t halt[2] = { 0x2404002f /* addiu r4, r0, 47 */,
    791      1.1  christos 			     HALT_INSTRUCTION /* BREAK */ };
    792      1.1  christos       H2T (halt[0]);
    793      1.1  christos       H2T (halt[1]);
    794  1.1.1.6  christos       sim_write (sd, 0x80000000, halt, sizeof (halt));
    795  1.1.1.6  christos       sim_write (sd, 0x80000180, halt, sizeof (halt));
    796  1.1.1.6  christos       sim_write (sd, 0x80000200, halt, sizeof (halt));
    797      1.1  christos       /* XXX: Write here unconditionally? */
    798  1.1.1.6  christos       sim_write (sd, 0xBFC00200, halt, sizeof (halt));
    799  1.1.1.6  christos       sim_write (sd, 0xBFC00380, halt, sizeof (halt));
    800  1.1.1.6  christos       sim_write (sd, 0xBFC00400, halt, sizeof (halt));
    801      1.1  christos     }
    802      1.1  christos   }
    803      1.1  christos 
    804  1.1.1.4  christos   /* CPU specific initialization.  */
    805  1.1.1.4  christos   for (i = 0; i < MAX_NR_PROCESSORS; ++i)
    806  1.1.1.4  christos     {
    807  1.1.1.4  christos       SIM_CPU *cpu = STATE_CPU (sd, i);
    808      1.1  christos 
    809  1.1.1.5  christos       CPU_REG_FETCH (cpu) = mips_reg_fetch;
    810  1.1.1.5  christos       CPU_REG_STORE (cpu) = mips_reg_store;
    811  1.1.1.4  christos       CPU_PC_FETCH (cpu) = mips_pc_get;
    812  1.1.1.4  christos       CPU_PC_STORE (cpu) = mips_pc_set;
    813  1.1.1.4  christos     }
    814      1.1  christos 
    815      1.1  christos   return sd;
    816      1.1  christos }
    817      1.1  christos 
    818  1.1.1.4  christos #if WITH_TRACE_ANY_P
    819      1.1  christos static void
    820  1.1.1.4  christos open_trace (SIM_DESC sd)
    821      1.1  christos {
    822      1.1  christos   tracefh = fopen(tracefile,"wb+");
    823      1.1  christos   if (tracefh == NULL)
    824      1.1  christos     {
    825      1.1  christos       sim_io_eprintf(sd,"Failed to create file \"%s\", writing trace information to stderr.\n",tracefile);
    826      1.1  christos       tracefh = stderr;
    827      1.1  christos   }
    828      1.1  christos }
    829  1.1.1.4  christos #endif
    830      1.1  christos 
    831      1.1  christos /* Return name of an insn, used by insn profiling.  */
    832      1.1  christos static const char *
    833      1.1  christos get_insn_name (sim_cpu *cpu, int i)
    834      1.1  christos {
    835      1.1  christos   return itable[i].name;
    836      1.1  christos }
    837      1.1  christos 
    838      1.1  christos void
    839  1.1.1.5  christos mips_sim_close (SIM_DESC sd, int quitting)
    840      1.1  christos {
    841  1.1.1.4  christos #if WITH_TRACE_ANY_P
    842      1.1  christos   if (tracefh != NULL && tracefh != stderr)
    843      1.1  christos    fclose(tracefh);
    844      1.1  christos   tracefh = NULL;
    845  1.1.1.4  christos #endif
    846      1.1  christos }
    847      1.1  christos 
    848  1.1.1.5  christos static int
    849  1.1.1.6  christos mips_reg_store (SIM_CPU *cpu, int rn, const void *memory, int length)
    850      1.1  christos {
    851      1.1  christos   /* NOTE: gdb (the client) stores registers in target byte order
    852      1.1  christos      while the simulator uses host byte order */
    853      1.1  christos 
    854      1.1  christos   /* Unfortunately this suffers from the same problem as the register
    855      1.1  christos      numbering one. We need to know what the width of each logical
    856      1.1  christos      register number is for the architecture being simulated. */
    857      1.1  christos 
    858      1.1  christos   if (cpu->register_widths[rn] == 0)
    859      1.1  christos     {
    860  1.1.1.5  christos       sim_io_eprintf (CPU_STATE (cpu), "Invalid register width for %d (register store ignored)\n", rn);
    861      1.1  christos       return 0;
    862      1.1  christos     }
    863      1.1  christos 
    864      1.1  christos   if (rn >= FGR_BASE && rn < FGR_BASE + NR_FGR)
    865      1.1  christos     {
    866      1.1  christos       cpu->fpr_state[rn - FGR_BASE] = fmt_uninterpreted;
    867      1.1  christos       if (cpu->register_widths[rn] == 32)
    868      1.1  christos 	{
    869      1.1  christos 	  if (length == 8)
    870      1.1  christos 	    {
    871  1.1.1.6  christos 	      cpu->fgr[rn - FGR_BASE] =
    872  1.1.1.6  christos 		(uint32_t) T2H_8 (*(uint64_t*)memory);
    873      1.1  christos 	      return 8;
    874      1.1  christos 	    }
    875      1.1  christos 	  else
    876      1.1  christos 	    {
    877  1.1.1.6  christos 	      cpu->fgr[rn - FGR_BASE] = T2H_4 (*(uint32_t*)memory);
    878      1.1  christos 	      return 4;
    879      1.1  christos 	    }
    880      1.1  christos 	}
    881      1.1  christos       else
    882      1.1  christos 	{
    883      1.1  christos           if (length == 8)
    884      1.1  christos 	    {
    885  1.1.1.6  christos 	      cpu->fgr[rn - FGR_BASE] = T2H_8 (*(uint64_t*)memory);
    886      1.1  christos 	      return 8;
    887      1.1  christos 	    }
    888      1.1  christos 	  else
    889      1.1  christos 	    {
    890  1.1.1.6  christos 	      cpu->fgr[rn - FGR_BASE] = T2H_4 (*(uint32_t*)memory);
    891      1.1  christos 	      return 4;
    892      1.1  christos 	    }
    893      1.1  christos 	}
    894      1.1  christos     }
    895      1.1  christos 
    896      1.1  christos   if (cpu->register_widths[rn] == 32)
    897      1.1  christos     {
    898      1.1  christos       if (length == 8)
    899      1.1  christos 	{
    900      1.1  christos 	  cpu->registers[rn] =
    901  1.1.1.6  christos 	    (uint32_t) T2H_8 (*(uint64_t*)memory);
    902      1.1  christos 	  return 8;
    903      1.1  christos 	}
    904      1.1  christos       else
    905      1.1  christos 	{
    906  1.1.1.6  christos 	  cpu->registers[rn] = T2H_4 (*(uint32_t*)memory);
    907      1.1  christos 	  return 4;
    908      1.1  christos 	}
    909      1.1  christos     }
    910      1.1  christos   else
    911      1.1  christos     {
    912      1.1  christos       if (length == 8)
    913      1.1  christos 	{
    914  1.1.1.6  christos 	  cpu->registers[rn] = T2H_8 (*(uint64_t*)memory);
    915      1.1  christos 	  return 8;
    916      1.1  christos 	}
    917      1.1  christos       else
    918      1.1  christos 	{
    919  1.1.1.6  christos 	  cpu->registers[rn] = (int32_t) T2H_4(*(uint32_t*)memory);
    920      1.1  christos 	  return 4;
    921      1.1  christos 	}
    922      1.1  christos     }
    923      1.1  christos 
    924      1.1  christos   return 0;
    925      1.1  christos }
    926      1.1  christos 
    927  1.1.1.5  christos static int
    928  1.1.1.6  christos mips_reg_fetch (SIM_CPU *cpu, int rn, void *memory, int length)
    929      1.1  christos {
    930      1.1  christos   /* NOTE: gdb (the client) stores registers in target byte order
    931      1.1  christos      while the simulator uses host byte order */
    932      1.1  christos 
    933      1.1  christos   if (cpu->register_widths[rn] == 0)
    934      1.1  christos     {
    935  1.1.1.5  christos       sim_io_eprintf (CPU_STATE (cpu), "Invalid register width for %d (register fetch ignored)\n", rn);
    936      1.1  christos       return 0;
    937      1.1  christos     }
    938      1.1  christos 
    939      1.1  christos   /* Any floating point register */
    940      1.1  christos   if (rn >= FGR_BASE && rn < FGR_BASE + NR_FGR)
    941      1.1  christos     {
    942      1.1  christos       if (cpu->register_widths[rn] == 32)
    943      1.1  christos 	{
    944      1.1  christos 	  if (length == 8)
    945      1.1  christos 	    {
    946  1.1.1.6  christos 	      *(uint64_t*)memory =
    947  1.1.1.6  christos 		H2T_8 ((uint32_t) (cpu->fgr[rn - FGR_BASE]));
    948      1.1  christos 	      return 8;
    949      1.1  christos 	    }
    950      1.1  christos 	  else
    951      1.1  christos 	    {
    952  1.1.1.6  christos 	      *(uint32_t*)memory = H2T_4 (cpu->fgr[rn - FGR_BASE]);
    953      1.1  christos 	      return 4;
    954      1.1  christos 	    }
    955      1.1  christos 	}
    956      1.1  christos       else
    957      1.1  christos 	{
    958      1.1  christos 	  if (length == 8)
    959      1.1  christos 	    {
    960  1.1.1.6  christos 	      *(uint64_t*)memory = H2T_8 (cpu->fgr[rn - FGR_BASE]);
    961      1.1  christos 	      return 8;
    962      1.1  christos 	    }
    963      1.1  christos 	  else
    964      1.1  christos 	    {
    965  1.1.1.6  christos 	      *(uint32_t*)memory = H2T_4 ((uint32_t)(cpu->fgr[rn - FGR_BASE]));
    966      1.1  christos 	      return 4;
    967      1.1  christos 	    }
    968      1.1  christos 	}
    969      1.1  christos     }
    970      1.1  christos 
    971      1.1  christos   if (cpu->register_widths[rn] == 32)
    972      1.1  christos     {
    973      1.1  christos       if (length == 8)
    974      1.1  christos 	{
    975  1.1.1.6  christos 	  *(uint64_t*)memory =
    976  1.1.1.6  christos 	    H2T_8 ((uint32_t) (cpu->registers[rn]));
    977      1.1  christos 	  return 8;
    978      1.1  christos 	}
    979      1.1  christos       else
    980      1.1  christos 	{
    981  1.1.1.6  christos 	  *(uint32_t*)memory = H2T_4 ((uint32_t)(cpu->registers[rn]));
    982      1.1  christos 	  return 4;
    983      1.1  christos 	}
    984      1.1  christos     }
    985      1.1  christos   else
    986      1.1  christos     {
    987      1.1  christos       if (length == 8)
    988      1.1  christos 	{
    989  1.1.1.6  christos 	  *(uint64_t*)memory =
    990  1.1.1.6  christos 	    H2T_8 ((uint64_t) (cpu->registers[rn]));
    991      1.1  christos 	  return 8;
    992      1.1  christos 	}
    993      1.1  christos       else
    994      1.1  christos 	{
    995  1.1.1.6  christos 	  *(uint32_t*)memory = H2T_4 ((uint32_t)(cpu->registers[rn]));
    996      1.1  christos 	  return 4;
    997      1.1  christos 	}
    998      1.1  christos     }
    999      1.1  christos 
   1000      1.1  christos   return 0;
   1001      1.1  christos }
   1002      1.1  christos 
   1003      1.1  christos SIM_RC
   1004  1.1.1.5  christos sim_create_inferior (SIM_DESC sd, struct bfd *abfd,
   1005  1.1.1.5  christos 		     char * const *argv, char * const *env)
   1006      1.1  christos {
   1007      1.1  christos 
   1008      1.1  christos #ifdef DEBUG
   1009      1.1  christos #if 0 /* FIXME: doesn't compile */
   1010      1.1  christos   printf("DBG: sim_create_inferior entered: start_address = 0x%s\n",
   1011      1.1  christos 	 pr_addr(PC));
   1012      1.1  christos #endif
   1013      1.1  christos #endif /* DEBUG */
   1014      1.1  christos 
   1015      1.1  christos   ColdReset(sd);
   1016      1.1  christos 
   1017      1.1  christos   if (abfd != NULL)
   1018      1.1  christos     {
   1019      1.1  christos       /* override PC value set by ColdReset () */
   1020      1.1  christos       int cpu_nr;
   1021      1.1  christos       for (cpu_nr = 0; cpu_nr < sim_engine_nr_cpus (sd); cpu_nr++)
   1022      1.1  christos 	{
   1023      1.1  christos 	  sim_cpu *cpu = STATE_CPU (sd, cpu_nr);
   1024  1.1.1.5  christos 	  sim_cia pc = bfd_get_start_address (abfd);
   1025  1.1.1.5  christos 
   1026  1.1.1.6  christos 	  /* The 64-bit BFD sign-extends MIPS addresses to model
   1027  1.1.1.6  christos 	     32-bit compatibility segments with 64-bit addressing.
   1028  1.1.1.6  christos 	     These addresses work as is on 64-bit targets but
   1029  1.1.1.6  christos 	     can be truncated for 32-bit targets.  */
   1030  1.1.1.6  christos 	  if (WITH_TARGET_WORD_BITSIZE == 32)
   1031  1.1.1.6  christos 	    pc = (uint32_t) pc;
   1032  1.1.1.5  christos 
   1033  1.1.1.5  christos 	  CPU_PC_SET (cpu, pc);
   1034      1.1  christos 	}
   1035      1.1  christos     }
   1036      1.1  christos 
   1037      1.1  christos #if 0 /* def DEBUG */
   1038      1.1  christos   if (argv || env)
   1039      1.1  christos     {
   1040      1.1  christos       /* We should really place the argv slot values into the argument
   1041      1.1  christos 	 registers, and onto the stack as required. However, this
   1042      1.1  christos 	 assumes that we have a stack defined, which is not
   1043      1.1  christos 	 necessarily true at the moment. */
   1044      1.1  christos       char **cptr;
   1045      1.1  christos       sim_io_printf(sd,"sim_create_inferior() : passed arguments ignored\n");
   1046      1.1  christos       for (cptr = argv; (cptr && *cptr); cptr++)
   1047      1.1  christos 	printf("DBG: arg \"%s\"\n",*cptr);
   1048      1.1  christos     }
   1049      1.1  christos #endif /* DEBUG */
   1050      1.1  christos 
   1051      1.1  christos   return SIM_RC_OK;
   1052      1.1  christos }
   1053      1.1  christos 
   1054      1.1  christos /*---------------------------------------------------------------------------*/
   1055      1.1  christos /*-- Private simulator support interface ------------------------------------*/
   1056      1.1  christos /*---------------------------------------------------------------------------*/
   1057      1.1  christos 
   1058      1.1  christos /* Read a null terminated string from memory, return in a buffer */
   1059      1.1  christos static char *
   1060      1.1  christos fetch_str (SIM_DESC sd,
   1061      1.1  christos 	   address_word addr)
   1062      1.1  christos {
   1063      1.1  christos   char *buf;
   1064      1.1  christos   int nr = 0;
   1065  1.1.1.4  christos   unsigned char null;
   1066      1.1  christos   while (sim_read (sd, addr + nr, &null, 1) == 1 && null != 0)
   1067      1.1  christos     nr++;
   1068      1.1  christos   buf = NZALLOC (char, nr + 1);
   1069  1.1.1.6  christos   sim_read (sd, addr, buf, nr);
   1070      1.1  christos   return buf;
   1071      1.1  christos }
   1072      1.1  christos 
   1073      1.1  christos 
   1074      1.1  christos /* Implements the "sim firmware" command:
   1075      1.1  christos 	sim firmware NAME[@ADDRESS] --- emulate ROM monitor named NAME.
   1076      1.1  christos 		NAME can be idt, pmon, or lsipmon.  If omitted, ADDRESS
   1077      1.1  christos 		defaults to the normal address for that monitor.
   1078      1.1  christos 	sim firmware none --- don't emulate any ROM monitor.  Useful
   1079      1.1  christos 		if you need a clean address space.  */
   1080      1.1  christos static SIM_RC
   1081      1.1  christos sim_firmware_command (SIM_DESC sd, char *arg)
   1082      1.1  christos {
   1083      1.1  christos   int address_present = 0;
   1084      1.1  christos   SIM_ADDR address;
   1085      1.1  christos 
   1086      1.1  christos   /* Signal occurrence of this option. */
   1087      1.1  christos   firmware_option_p = 1;
   1088      1.1  christos 
   1089      1.1  christos   /* Parse out the address, if present.  */
   1090      1.1  christos   {
   1091      1.1  christos     char *p = strchr (arg, '@');
   1092      1.1  christos     if (p)
   1093      1.1  christos       {
   1094      1.1  christos 	char *q;
   1095      1.1  christos 	address_present = 1;
   1096      1.1  christos 	p ++; /* skip over @ */
   1097      1.1  christos 
   1098      1.1  christos 	address = strtoul (p, &q, 0);
   1099  1.1.1.6  christos 	if (*q != '\0')
   1100      1.1  christos 	  {
   1101      1.1  christos 	    sim_io_printf (sd, "Invalid address given to the"
   1102      1.1  christos 			   "`sim firmware NAME@ADDRESS' command: %s\n",
   1103      1.1  christos 			   p);
   1104      1.1  christos 	    return SIM_RC_FAIL;
   1105      1.1  christos 	  }
   1106      1.1  christos       }
   1107      1.1  christos     else
   1108      1.1  christos       {
   1109      1.1  christos 	address_present = 0;
   1110      1.1  christos 	address = -1; /* Dummy value.  */
   1111      1.1  christos       }
   1112      1.1  christos   }
   1113      1.1  christos 
   1114      1.1  christos   if (! strncmp (arg, "idt", 3))
   1115      1.1  christos     {
   1116      1.1  christos       idt_monitor_base = address_present ? address : 0xBFC00000;
   1117      1.1  christos       pmon_monitor_base = 0;
   1118      1.1  christos       lsipmon_monitor_base = 0;
   1119      1.1  christos     }
   1120      1.1  christos   else if (! strncmp (arg, "pmon", 4))
   1121      1.1  christos     {
   1122      1.1  christos       /* pmon uses indirect calls.  Hook into implied idt. */
   1123      1.1  christos       pmon_monitor_base = address_present ? address : 0xBFC00500;
   1124      1.1  christos       idt_monitor_base = pmon_monitor_base - 0x500;
   1125      1.1  christos       lsipmon_monitor_base = 0;
   1126      1.1  christos     }
   1127      1.1  christos   else if (! strncmp (arg, "lsipmon", 7))
   1128      1.1  christos     {
   1129      1.1  christos       /* lsipmon uses indirect calls.  Hook into implied idt. */
   1130      1.1  christos       pmon_monitor_base = 0;
   1131      1.1  christos       lsipmon_monitor_base = address_present ? address : 0xBFC00200;
   1132      1.1  christos       idt_monitor_base = lsipmon_monitor_base - 0x200;
   1133      1.1  christos     }
   1134      1.1  christos   else if (! strncmp (arg, "none", 4))
   1135      1.1  christos     {
   1136      1.1  christos       if (address_present)
   1137      1.1  christos 	{
   1138      1.1  christos 	  sim_io_printf (sd,
   1139      1.1  christos 			 "The `sim firmware none' command does "
   1140      1.1  christos 			 "not take an `ADDRESS' argument.\n");
   1141      1.1  christos 	  return SIM_RC_FAIL;
   1142      1.1  christos 	}
   1143      1.1  christos       idt_monitor_base = 0;
   1144      1.1  christos       pmon_monitor_base = 0;
   1145      1.1  christos       lsipmon_monitor_base = 0;
   1146      1.1  christos     }
   1147      1.1  christos   else
   1148      1.1  christos     {
   1149      1.1  christos       sim_io_printf (sd, "\
   1150      1.1  christos Unrecognized name given to the `sim firmware NAME' command: %s\n\
   1151      1.1  christos Recognized firmware names are: `idt', `pmon', `lsipmon', and `none'.\n",
   1152      1.1  christos 		     arg);
   1153      1.1  christos       return SIM_RC_FAIL;
   1154      1.1  christos     }
   1155  1.1.1.6  christos 
   1156      1.1  christos   return SIM_RC_OK;
   1157      1.1  christos }
   1158      1.1  christos 
   1159  1.1.1.6  christos /* stat structures from MIPS32/64.  */
   1160  1.1.1.6  christos static const char stat32_map[] =
   1161  1.1.1.6  christos "st_dev,2:st_ino,2:st_mode,4:st_nlink,2:st_uid,2:st_gid,2"
   1162  1.1.1.6  christos ":st_rdev,2:st_size,4:st_atime,4:st_spare1,4:st_mtime,4:st_spare2,4"
   1163  1.1.1.6  christos ":st_ctime,4:st_spare3,4:st_blksize,4:st_blocks,4:st_spare4,8";
   1164  1.1.1.6  christos 
   1165  1.1.1.6  christos static const char stat64_map[] =
   1166  1.1.1.6  christos "st_dev,2:st_ino,2:st_mode,4:st_nlink,2:st_uid,2:st_gid,2"
   1167  1.1.1.6  christos ":st_rdev,2:st_size,8:st_atime,8:st_spare1,8:st_mtime,8:st_spare2,8"
   1168  1.1.1.6  christos ":st_ctime,8:st_spare3,8:st_blksize,8:st_blocks,8:st_spare4,16";
   1169  1.1.1.6  christos 
   1170  1.1.1.6  christos /* Map for calls using the host struct stat.  */
   1171  1.1.1.6  christos static const CB_TARGET_DEFS_MAP CB_stat_map[] =
   1172  1.1.1.6  christos {
   1173  1.1.1.6  christos   { "stat", CB_SYS_stat, 15 },
   1174  1.1.1.6  christos   { 0, -1, -1 }
   1175  1.1.1.6  christos };
   1176      1.1  christos 
   1177      1.1  christos 
   1178      1.1  christos /* Simple monitor interface (currently setup for the IDT and PMON monitors) */
   1179      1.1  christos int
   1180      1.1  christos sim_monitor (SIM_DESC sd,
   1181      1.1  christos 	     sim_cpu *cpu,
   1182      1.1  christos 	     address_word cia,
   1183      1.1  christos 	     unsigned int reason)
   1184      1.1  christos {
   1185      1.1  christos #ifdef DEBUG
   1186      1.1  christos   printf("DBG: sim_monitor: entered (reason = %d)\n",reason);
   1187      1.1  christos #endif /* DEBUG */
   1188      1.1  christos 
   1189      1.1  christos   /* The IDT monitor actually allows two instructions per vector
   1190      1.1  christos      slot. However, the simulator currently causes a trap on each
   1191      1.1  christos      individual instruction. We cheat, and lose the bottom bit. */
   1192      1.1  christos   reason >>= 1;
   1193      1.1  christos 
   1194      1.1  christos   /* The following callback functions are available, however the
   1195      1.1  christos      monitor we are simulating does not make use of them: get_errno,
   1196  1.1.1.6  christos      isatty, rename, system and time.  */
   1197      1.1  christos   switch (reason)
   1198      1.1  christos     {
   1199      1.1  christos 
   1200      1.1  christos     case 6: /* int open(char *path,int flags) */
   1201      1.1  christos       {
   1202      1.1  christos 	char *path = fetch_str (sd, A0);
   1203      1.1  christos 	V0 = sim_io_open (sd, path, (int)A1);
   1204      1.1  christos 	free (path);
   1205      1.1  christos 	break;
   1206      1.1  christos       }
   1207      1.1  christos 
   1208      1.1  christos     case 7: /* int read(int file,char *ptr,int len) */
   1209      1.1  christos       {
   1210      1.1  christos 	int fd = A0;
   1211      1.1  christos 	int nr = A2;
   1212      1.1  christos 	char *buf = zalloc (nr);
   1213      1.1  christos 	V0 = sim_io_read (sd, fd, buf, nr);
   1214  1.1.1.6  christos 	sim_write (sd, A1, buf, nr);
   1215      1.1  christos 	free (buf);
   1216      1.1  christos       }
   1217      1.1  christos       break;
   1218      1.1  christos 
   1219      1.1  christos     case 8: /* int write(int file,char *ptr,int len) */
   1220      1.1  christos       {
   1221      1.1  christos 	int fd = A0;
   1222      1.1  christos 	int nr = A2;
   1223      1.1  christos 	char *buf = zalloc (nr);
   1224  1.1.1.6  christos 	sim_read (sd, A1, buf, nr);
   1225      1.1  christos 	V0 = sim_io_write (sd, fd, buf, nr);
   1226      1.1  christos 	if (fd == 1)
   1227      1.1  christos 	    sim_io_flush_stdout (sd);
   1228      1.1  christos 	else if (fd == 2)
   1229      1.1  christos 	    sim_io_flush_stderr (sd);
   1230      1.1  christos 	free (buf);
   1231      1.1  christos 	break;
   1232      1.1  christos       }
   1233      1.1  christos 
   1234      1.1  christos     case 10: /* int close(int file) */
   1235      1.1  christos       {
   1236      1.1  christos 	V0 = sim_io_close (sd, (int)A0);
   1237      1.1  christos 	break;
   1238      1.1  christos       }
   1239      1.1  christos 
   1240      1.1  christos     case 2:  /* Densan monitor: char inbyte(int waitflag) */
   1241      1.1  christos       {
   1242      1.1  christos 	if (A0 == 0)	/* waitflag == NOWAIT */
   1243      1.1  christos 	  V0 = (unsigned_word)-1;
   1244      1.1  christos       }
   1245      1.1  christos      /* Drop through to case 11 */
   1246      1.1  christos 
   1247      1.1  christos     case 11: /* char inbyte(void) */
   1248      1.1  christos       {
   1249      1.1  christos         char tmp;
   1250      1.1  christos 	/* ensure that all output has gone... */
   1251      1.1  christos 	sim_io_flush_stdout (sd);
   1252      1.1  christos         if (sim_io_read_stdin (sd, &tmp, sizeof(char)) != sizeof(char))
   1253      1.1  christos 	  {
   1254      1.1  christos 	    sim_io_error(sd,"Invalid return from character read");
   1255      1.1  christos 	    V0 = (unsigned_word)-1;
   1256      1.1  christos 	  }
   1257      1.1  christos         else
   1258      1.1  christos 	  V0 = (unsigned_word)tmp;
   1259      1.1  christos 	break;
   1260      1.1  christos       }
   1261      1.1  christos 
   1262      1.1  christos     case 3:  /* Densan monitor: void co(char chr) */
   1263      1.1  christos     case 12: /* void outbyte(char chr) : write a byte to "stdout" */
   1264      1.1  christos       {
   1265      1.1  christos         char tmp = (char)(A0 & 0xFF);
   1266      1.1  christos         sim_io_write_stdout (sd, &tmp, sizeof(char));
   1267      1.1  christos 	break;
   1268      1.1  christos       }
   1269      1.1  christos 
   1270  1.1.1.6  christos     case 13: /* int unlink(const char *path) */
   1271  1.1.1.6  christos       {
   1272  1.1.1.6  christos 	char *path = fetch_str (sd, A0);
   1273  1.1.1.6  christos 	V0 = sim_io_unlink (sd, path);
   1274  1.1.1.6  christos 	free (path);
   1275  1.1.1.6  christos 	break;
   1276  1.1.1.6  christos       }
   1277  1.1.1.6  christos 
   1278  1.1.1.6  christos     case 14: /* int lseek(int fd, int offset, int whence) */
   1279  1.1.1.6  christos       {
   1280  1.1.1.6  christos 	V0 = sim_io_lseek (sd, A0, A1, A2);
   1281  1.1.1.6  christos 	break;
   1282  1.1.1.6  christos       }
   1283  1.1.1.6  christos 
   1284  1.1.1.6  christos     case 15: /* int stat(const char *path, struct stat *buf); */
   1285  1.1.1.6  christos       {
   1286  1.1.1.6  christos 	/* As long as the infrastructure doesn't cache anything
   1287  1.1.1.6  christos 	   related to the stat mapping, this trick gets us a dual
   1288  1.1.1.6  christos 	   "struct stat"-type mapping in the least error-prone way.  */
   1289  1.1.1.6  christos 	host_callback *cb = STATE_CALLBACK (sd);
   1290  1.1.1.6  christos 	const char *saved_map = cb->stat_map;
   1291  1.1.1.6  christos 	CB_TARGET_DEFS_MAP *saved_syscall_map = cb->syscall_map;
   1292  1.1.1.6  christos 	bfd *prog_bfd = STATE_PROG_BFD (sd);
   1293  1.1.1.6  christos 	int is_elf32bit = (elf_elfheader(prog_bfd)->e_ident[EI_CLASS] ==
   1294  1.1.1.6  christos 			   ELFCLASS32);
   1295  1.1.1.6  christos 	static CB_SYSCALL s;
   1296  1.1.1.6  christos 	CB_SYSCALL_INIT (&s);
   1297  1.1.1.6  christos 	s.func = 15;
   1298  1.1.1.6  christos 	/* Mask out the sign extension part for 64-bit targets because the
   1299  1.1.1.6  christos 	   MIPS simulator's memory model is still 32-bit.  */
   1300  1.1.1.6  christos 	s.arg1 = A0 & 0xFFFFFFFF;
   1301  1.1.1.6  christos 	s.arg2 = A1 & 0xFFFFFFFF;
   1302  1.1.1.6  christos 	s.p1 = sd;
   1303  1.1.1.6  christos 	s.p2 = cpu;
   1304  1.1.1.6  christos 	s.read_mem = sim_syscall_read_mem;
   1305  1.1.1.6  christos 	s.write_mem = sim_syscall_write_mem;
   1306  1.1.1.6  christos 
   1307  1.1.1.6  christos 	cb->syscall_map = (CB_TARGET_DEFS_MAP *) CB_stat_map;
   1308  1.1.1.6  christos 	cb->stat_map = is_elf32bit ? stat32_map : stat64_map;
   1309  1.1.1.6  christos 
   1310  1.1.1.6  christos 	if (cb_syscall (cb, &s) != CB_RC_OK)
   1311  1.1.1.6  christos 	  sim_engine_halt (sd, cpu, NULL, mips_pc_get (cpu),
   1312  1.1.1.6  christos 			   sim_stopped, SIM_SIGILL);
   1313  1.1.1.6  christos 
   1314  1.1.1.6  christos 	V0 = s.result;
   1315  1.1.1.6  christos 	cb->stat_map = saved_map;
   1316  1.1.1.6  christos 	cb->syscall_map = saved_syscall_map;
   1317  1.1.1.6  christos 	break;
   1318  1.1.1.6  christos       }
   1319  1.1.1.6  christos 
   1320      1.1  christos     case 17: /* void _exit() */
   1321      1.1  christos       {
   1322      1.1  christos 	sim_io_eprintf (sd, "sim_monitor(17): _exit(int reason) to be coded\n");
   1323      1.1  christos 	sim_engine_halt (SD, CPU, NULL, NULL_CIA, sim_exited,
   1324      1.1  christos 			 (unsigned int)(A0 & 0xFFFFFFFF));
   1325      1.1  christos 	break;
   1326      1.1  christos       }
   1327      1.1  christos 
   1328      1.1  christos     case 28: /* PMON flush_cache */
   1329      1.1  christos       break;
   1330      1.1  christos 
   1331      1.1  christos     case 55: /* void get_mem_info(unsigned int *ptr) */
   1332      1.1  christos       /* in:  A0 = pointer to three word memory location */
   1333      1.1  christos       /* out: [A0 + 0] = size */
   1334      1.1  christos       /*      [A0 + 4] = instruction cache size */
   1335      1.1  christos       /*      [A0 + 8] = data cache size */
   1336      1.1  christos       {
   1337      1.1  christos 	unsigned_4 value;
   1338      1.1  christos 	unsigned_4 zero = 0;
   1339      1.1  christos 	address_word mem_size;
   1340      1.1  christos 	sim_memopt *entry, *match = NULL;
   1341      1.1  christos 
   1342      1.1  christos 	/* Search for memory region mapped to KSEG0 or KSEG1. */
   1343  1.1.1.6  christos 	for (entry = STATE_MEMOPT (sd);
   1344      1.1  christos 	     entry != NULL;
   1345      1.1  christos 	     entry = entry->next)
   1346      1.1  christos 	  {
   1347      1.1  christos 	    if ((entry->addr == K0BASE || entry->addr == K1BASE)
   1348      1.1  christos 		&& (!match || entry->level < match->level))
   1349      1.1  christos 	      match = entry;
   1350      1.1  christos 	    else
   1351      1.1  christos 	      {
   1352      1.1  christos 		sim_memopt *alias;
   1353  1.1.1.6  christos 		for (alias = entry->alias;
   1354      1.1  christos 		     alias != NULL;
   1355      1.1  christos 		     alias = alias->next)
   1356      1.1  christos 		  if ((alias->addr == K0BASE || alias->addr == K1BASE)
   1357      1.1  christos 		      && (!match || entry->level < match->level))
   1358      1.1  christos 		    match = entry;
   1359      1.1  christos 	      }
   1360      1.1  christos 	  }
   1361      1.1  christos 
   1362      1.1  christos 	/* Get region size, limit to KSEG1 size (512MB). */
   1363      1.1  christos 	SIM_ASSERT (match != NULL);
   1364      1.1  christos 	mem_size = (match->modulo != 0
   1365      1.1  christos 		    ? match->modulo : match->nr_bytes);
   1366      1.1  christos 	if (mem_size > K1SIZE)
   1367      1.1  christos 	  mem_size = K1SIZE;
   1368      1.1  christos 
   1369      1.1  christos 	value = mem_size;
   1370      1.1  christos 	H2T (value);
   1371  1.1.1.6  christos 	sim_write (sd, A0 + 0, &value, 4);
   1372  1.1.1.6  christos 	sim_write (sd, A0 + 4, &zero, 4);
   1373  1.1.1.6  christos 	sim_write (sd, A0 + 8, &zero, 4);
   1374      1.1  christos 	/* sim_io_eprintf (sd, "sim: get_mem_info() deprecated\n"); */
   1375      1.1  christos 	break;
   1376      1.1  christos       }
   1377  1.1.1.6  christos 
   1378      1.1  christos     case 158: /* PMON printf */
   1379      1.1  christos       /* in:  A0 = pointer to format string */
   1380      1.1  christos       /*      A1 = optional argument 1 */
   1381      1.1  christos       /*      A2 = optional argument 2 */
   1382      1.1  christos       /*      A3 = optional argument 3 */
   1383      1.1  christos       /* out: void */
   1384      1.1  christos       /* The following is based on the PMON printf source */
   1385      1.1  christos       {
   1386      1.1  christos 	address_word s = A0;
   1387  1.1.1.4  christos 	unsigned char c;
   1388  1.1.1.6  christos 	address_word *ap = &A1; /* 1st argument */
   1389      1.1  christos         /* This isn't the quickest way, since we call the host print
   1390      1.1  christos            routine for every character almost. But it does avoid
   1391      1.1  christos            having to allocate and manage a temporary string buffer. */
   1392      1.1  christos 	/* TODO: Include check that we only use three arguments (A1,
   1393      1.1  christos            A2 and A3) */
   1394      1.1  christos 	while (sim_read (sd, s++, &c, 1) && c != '\0')
   1395      1.1  christos 	  {
   1396      1.1  christos             if (c == '%')
   1397      1.1  christos 	      {
   1398      1.1  christos 		char tmp[40];
   1399      1.1  christos 		enum {FMT_RJUST, FMT_LJUST, FMT_RJUST0, FMT_CENTER} fmt = FMT_RJUST;
   1400      1.1  christos 		int width = 0, trunc = 0, haddot = 0, longlong = 0;
   1401      1.1  christos 		while (sim_read (sd, s++, &c, 1) && c != '\0')
   1402      1.1  christos 		  {
   1403      1.1  christos 		    if (strchr ("dobxXulscefg%", c))
   1404      1.1  christos 		      break;
   1405      1.1  christos 		    else if (c == '-')
   1406      1.1  christos 		      fmt = FMT_LJUST;
   1407      1.1  christos 		    else if (c == '0')
   1408      1.1  christos 		      fmt = FMT_RJUST0;
   1409      1.1  christos 		    else if (c == '~')
   1410      1.1  christos 		      fmt = FMT_CENTER;
   1411      1.1  christos 		    else if (c == '*')
   1412      1.1  christos 		      {
   1413      1.1  christos 			if (haddot)
   1414      1.1  christos 			  trunc = (int)*ap++;
   1415      1.1  christos 			else
   1416      1.1  christos 			  width = (int)*ap++;
   1417      1.1  christos 		      }
   1418      1.1  christos 		    else if (c >= '1' && c <= '9')
   1419      1.1  christos 		      {
   1420      1.1  christos 			address_word t = s;
   1421      1.1  christos 			unsigned int n;
   1422      1.1  christos 			while (sim_read (sd, s++, &c, 1) == 1 && isdigit (c))
   1423      1.1  christos 			  tmp[s - t] = c;
   1424      1.1  christos 			tmp[s - t] = '\0';
   1425      1.1  christos 			n = (unsigned int)strtol(tmp,NULL,10);
   1426      1.1  christos 			if (haddot)
   1427      1.1  christos 			  trunc = n;
   1428      1.1  christos 			else
   1429      1.1  christos 			  width = n;
   1430      1.1  christos 			s--;
   1431      1.1  christos 		      }
   1432      1.1  christos 		    else if (c == '.')
   1433      1.1  christos 		      haddot = 1;
   1434      1.1  christos 		  }
   1435      1.1  christos 		switch (c)
   1436      1.1  christos 		  {
   1437      1.1  christos 		  case '%':
   1438      1.1  christos 		    sim_io_printf (sd, "%%");
   1439      1.1  christos 		    break;
   1440      1.1  christos 		  case 's':
   1441      1.1  christos 		    if ((int)*ap != 0)
   1442      1.1  christos 		      {
   1443      1.1  christos 			address_word p = *ap++;
   1444  1.1.1.4  christos 			unsigned char ch;
   1445      1.1  christos 			while (sim_read (sd, p++, &ch, 1) == 1 && ch != '\0')
   1446      1.1  christos 			  sim_io_printf(sd, "%c", ch);
   1447      1.1  christos 		      }
   1448      1.1  christos 		    else
   1449      1.1  christos 		      sim_io_printf(sd,"(null)");
   1450      1.1  christos 		    break;
   1451      1.1  christos 		  case 'c':
   1452      1.1  christos 		    sim_io_printf (sd, "%c", (int)*ap++);
   1453      1.1  christos 		    break;
   1454      1.1  christos 		  default:
   1455      1.1  christos 		    if (c == 'l')
   1456      1.1  christos 		      {
   1457      1.1  christos 			sim_read (sd, s++, &c, 1);
   1458      1.1  christos 			if (c == 'l')
   1459      1.1  christos 			  {
   1460      1.1  christos 			    longlong = 1;
   1461      1.1  christos 			    sim_read (sd, s++, &c, 1);
   1462      1.1  christos 			  }
   1463      1.1  christos 		      }
   1464      1.1  christos 		    if (strchr ("dobxXu", c))
   1465      1.1  christos 		      {
   1466      1.1  christos 			word64 lv = (word64) *ap++;
   1467      1.1  christos 			if (c == 'b')
   1468      1.1  christos 			  sim_io_printf(sd,"<binary not supported>");
   1469      1.1  christos 			else
   1470      1.1  christos 			  {
   1471  1.1.1.6  christos #define P_(c, fmt64, fmt32) \
   1472  1.1.1.6  christos   case c: \
   1473  1.1.1.6  christos     if (longlong) \
   1474  1.1.1.6  christos       sim_io_printf (sd, "%" fmt64, lv); \
   1475  1.1.1.6  christos     else \
   1476  1.1.1.6  christos       sim_io_printf (sd, "%" fmt32, (int)lv); \
   1477  1.1.1.6  christos     break;
   1478  1.1.1.6  christos #define P(c, fmtc) P_(c, PRI##fmtc##64, PRI##fmtc##32)
   1479  1.1.1.6  christos 			    switch (c)
   1480  1.1.1.6  christos 			      {
   1481  1.1.1.6  christos 			      P('d', d)
   1482  1.1.1.6  christos 			      P('o', o)
   1483  1.1.1.6  christos 			      P('x', x)
   1484  1.1.1.6  christos 			      P('X', X)
   1485  1.1.1.6  christos 			      P('u', u)
   1486  1.1.1.6  christos 			      }
   1487      1.1  christos 			  }
   1488  1.1.1.6  christos #undef P
   1489  1.1.1.6  christos #undef P_
   1490      1.1  christos 		      }
   1491      1.1  christos 		    else if (strchr ("eEfgG", c))
   1492      1.1  christos 		      {
   1493      1.1  christos 			double dbl = *(double*)(ap++);
   1494  1.1.1.6  christos 
   1495  1.1.1.6  christos #define P(c, fmtc) \
   1496  1.1.1.6  christos   case c: \
   1497  1.1.1.6  christos     sim_io_printf (sd, "%*.*" #fmtc, width, trunc, dbl); \
   1498  1.1.1.6  christos     break;
   1499  1.1.1.6  christos 			switch (c)
   1500  1.1.1.6  christos 			  {
   1501  1.1.1.6  christos 			  P('e', e)
   1502  1.1.1.6  christos 			  P('E', E)
   1503  1.1.1.6  christos 			  P('f', f)
   1504  1.1.1.6  christos 			  P('g', g)
   1505  1.1.1.6  christos 			  P('G', G)
   1506  1.1.1.6  christos 			  }
   1507  1.1.1.6  christos #undef P
   1508      1.1  christos 			trunc = 0;
   1509      1.1  christos 		      }
   1510      1.1  christos 		  }
   1511      1.1  christos 	      }
   1512      1.1  christos 	    else
   1513      1.1  christos 	      sim_io_printf(sd, "%c", c);
   1514      1.1  christos 	  }
   1515      1.1  christos 	break;
   1516      1.1  christos       }
   1517      1.1  christos 
   1518      1.1  christos     default:
   1519      1.1  christos       /* Unknown reason.  */
   1520      1.1  christos       return 0;
   1521      1.1  christos   }
   1522      1.1  christos   return 1;
   1523      1.1  christos }
   1524      1.1  christos 
   1525      1.1  christos /* Store a word into memory.  */
   1526      1.1  christos 
   1527      1.1  christos static void
   1528      1.1  christos store_word (SIM_DESC sd,
   1529      1.1  christos 	    sim_cpu *cpu,
   1530      1.1  christos 	    address_word cia,
   1531      1.1  christos 	    uword64 vaddr,
   1532      1.1  christos 	    signed_word val)
   1533      1.1  christos {
   1534  1.1.1.5  christos   address_word paddr = vaddr;
   1535      1.1  christos 
   1536      1.1  christos   if ((vaddr & 3) != 0)
   1537      1.1  christos     SignalExceptionAddressStore ();
   1538      1.1  christos   else
   1539      1.1  christos     {
   1540  1.1.1.5  christos       const uword64 mask = 7;
   1541  1.1.1.5  christos       uword64 memval;
   1542  1.1.1.5  christos       unsigned int byte;
   1543  1.1.1.5  christos 
   1544  1.1.1.5  christos       paddr = (paddr & ~mask) | ((paddr & mask) ^ (ReverseEndian << 2));
   1545  1.1.1.5  christos       byte = (vaddr & mask) ^ (BigEndianCPU << 2);
   1546  1.1.1.5  christos       memval = ((uword64) val) << (8 * byte);
   1547  1.1.1.5  christos       StoreMemory (AccessLength_WORD, memval, 0, paddr, vaddr,
   1548  1.1.1.5  christos 		   isREAL);
   1549      1.1  christos     }
   1550      1.1  christos }
   1551      1.1  christos 
   1552  1.1.1.6  christos #define MIPSR6_P(abfd) \
   1553  1.1.1.6  christos   ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6 \
   1554  1.1.1.6  christos     || (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R6)
   1555  1.1.1.6  christos 
   1556      1.1  christos /* Load a word from memory.  */
   1557      1.1  christos 
   1558      1.1  christos static signed_word
   1559      1.1  christos load_word (SIM_DESC sd,
   1560      1.1  christos 	   sim_cpu *cpu,
   1561      1.1  christos 	   address_word cia,
   1562      1.1  christos 	   uword64 vaddr)
   1563      1.1  christos {
   1564  1.1.1.6  christos   if ((vaddr & 3) != 0 && !MIPSR6_P (STATE_PROG_BFD (sd)))
   1565      1.1  christos     {
   1566      1.1  christos       SIM_CORE_SIGNAL (SD, cpu, cia, read_map, AccessLength_WORD+1, vaddr, read_transfer, sim_core_unaligned_signal);
   1567      1.1  christos     }
   1568      1.1  christos   else
   1569      1.1  christos     {
   1570  1.1.1.5  christos       address_word paddr = vaddr;
   1571  1.1.1.5  christos       const uword64 mask = 0x7;
   1572  1.1.1.5  christos       const unsigned int reverse = ReverseEndian ? 1 : 0;
   1573  1.1.1.5  christos       const unsigned int bigend = BigEndianCPU ? 1 : 0;
   1574  1.1.1.5  christos       uword64 memval;
   1575  1.1.1.5  christos       unsigned int byte;
   1576  1.1.1.5  christos 
   1577  1.1.1.5  christos       paddr = (paddr & ~mask) | ((paddr & mask) ^ (reverse << 2));
   1578  1.1.1.5  christos       LoadMemory (&memval, NULL, AccessLength_WORD, paddr, vaddr, isDATA,
   1579  1.1.1.5  christos 		  isREAL);
   1580  1.1.1.5  christos       byte = (vaddr & mask) ^ (bigend << 2);
   1581  1.1.1.5  christos       return EXTEND32 (memval >> (8 * byte));
   1582      1.1  christos     }
   1583      1.1  christos 
   1584      1.1  christos   return 0;
   1585      1.1  christos }
   1586      1.1  christos 
   1587      1.1  christos /* Simulate the mips16 entry and exit pseudo-instructions.  These
   1588      1.1  christos    would normally be handled by the reserved instruction exception
   1589      1.1  christos    code, but for ease of simulation we just handle them directly.  */
   1590      1.1  christos 
   1591      1.1  christos static void
   1592      1.1  christos mips16_entry (SIM_DESC sd,
   1593      1.1  christos 	      sim_cpu *cpu,
   1594      1.1  christos 	      address_word cia,
   1595      1.1  christos 	      unsigned int insn)
   1596      1.1  christos {
   1597      1.1  christos   int aregs, sregs, rreg;
   1598      1.1  christos 
   1599      1.1  christos #ifdef DEBUG
   1600      1.1  christos   printf("DBG: mips16_entry: entered (insn = 0x%08X)\n",insn);
   1601      1.1  christos #endif /* DEBUG */
   1602      1.1  christos 
   1603      1.1  christos   aregs = (insn & 0x700) >> 8;
   1604      1.1  christos   sregs = (insn & 0x0c0) >> 6;
   1605      1.1  christos   rreg =  (insn & 0x020) >> 5;
   1606      1.1  christos 
   1607      1.1  christos   /* This should be checked by the caller.  */
   1608      1.1  christos   if (sregs == 3)
   1609      1.1  christos     abort ();
   1610      1.1  christos 
   1611      1.1  christos   if (aregs < 5)
   1612      1.1  christos     {
   1613      1.1  christos       int i;
   1614      1.1  christos       signed_word tsp;
   1615      1.1  christos 
   1616      1.1  christos       /* This is the entry pseudo-instruction.  */
   1617      1.1  christos 
   1618      1.1  christos       for (i = 0; i < aregs; i++)
   1619      1.1  christos 	store_word (SD, CPU, cia, (uword64) (SP + 4 * i), GPR[i + 4]);
   1620      1.1  christos 
   1621      1.1  christos       tsp = SP;
   1622      1.1  christos       SP -= 32;
   1623      1.1  christos 
   1624      1.1  christos       if (rreg)
   1625      1.1  christos 	{
   1626      1.1  christos 	  tsp -= 4;
   1627      1.1  christos 	  store_word (SD, CPU, cia, (uword64) tsp, RA);
   1628      1.1  christos 	}
   1629      1.1  christos 
   1630      1.1  christos       for (i = 0; i < sregs; i++)
   1631      1.1  christos 	{
   1632      1.1  christos 	  tsp -= 4;
   1633      1.1  christos 	  store_word (SD, CPU, cia, (uword64) tsp, GPR[16 + i]);
   1634      1.1  christos 	}
   1635      1.1  christos     }
   1636      1.1  christos   else
   1637      1.1  christos     {
   1638      1.1  christos       int i;
   1639      1.1  christos       signed_word tsp;
   1640      1.1  christos 
   1641      1.1  christos       /* This is the exit pseudo-instruction.  */
   1642      1.1  christos 
   1643      1.1  christos       tsp = SP + 32;
   1644      1.1  christos 
   1645      1.1  christos       if (rreg)
   1646      1.1  christos 	{
   1647      1.1  christos 	  tsp -= 4;
   1648      1.1  christos 	  RA = load_word (SD, CPU, cia, (uword64) tsp);
   1649      1.1  christos 	}
   1650      1.1  christos 
   1651      1.1  christos       for (i = 0; i < sregs; i++)
   1652      1.1  christos 	{
   1653      1.1  christos 	  tsp -= 4;
   1654      1.1  christos 	  GPR[i + 16] = load_word (SD, CPU, cia, (uword64) tsp);
   1655      1.1  christos 	}
   1656      1.1  christos 
   1657      1.1  christos       SP += 32;
   1658      1.1  christos 
   1659      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   1660      1.1  christos 	{
   1661      1.1  christos 	  if (aregs == 5)
   1662      1.1  christos 	    {
   1663      1.1  christos 	      FGR[0] = WORD64LO (GPR[4]);
   1664      1.1  christos 	      FPR_STATE[0] = fmt_uninterpreted;
   1665      1.1  christos 	    }
   1666      1.1  christos 	  else if (aregs == 6)
   1667      1.1  christos 	    {
   1668      1.1  christos 	      FGR[0] = WORD64LO (GPR[5]);
   1669      1.1  christos 	      FGR[1] = WORD64LO (GPR[4]);
   1670      1.1  christos 	      FPR_STATE[0] = fmt_uninterpreted;
   1671      1.1  christos 	      FPR_STATE[1] = fmt_uninterpreted;
   1672      1.1  christos 	    }
   1673  1.1.1.6  christos 	}
   1674      1.1  christos 
   1675      1.1  christos       PC = RA;
   1676      1.1  christos     }
   1677  1.1.1.6  christos 
   1678      1.1  christos }
   1679      1.1  christos 
   1680      1.1  christos /*-- trace support ----------------------------------------------------------*/
   1681      1.1  christos 
   1682  1.1.1.4  christos /* The trace support is provided (if required) in the memory accessing
   1683      1.1  christos    routines. Since we are also providing the architecture specific
   1684      1.1  christos    features, the architecture simulation code can also deal with
   1685  1.1.1.4  christos    notifying the trace world of cache flushes, etc. Similarly we do
   1686      1.1  christos    not need to provide profiling support in the simulator engine,
   1687      1.1  christos    since we can sample in the instruction fetch control loop. By
   1688  1.1.1.4  christos    defining the trace manifest, we add tracing as a run-time
   1689      1.1  christos    option. */
   1690      1.1  christos 
   1691  1.1.1.4  christos #if WITH_TRACE_ANY_P
   1692      1.1  christos /* Tracing by default produces "din" format (as required by
   1693      1.1  christos    dineroIII). Each line of such a trace file *MUST* have a din label
   1694      1.1  christos    and address field. The rest of the line is ignored, so comments can
   1695      1.1  christos    be included if desired. The first field is the label which must be
   1696      1.1  christos    one of the following values:
   1697      1.1  christos 
   1698      1.1  christos 	0       read data
   1699      1.1  christos         1       write data
   1700      1.1  christos         2       instruction fetch
   1701      1.1  christos         3       escape record (treated as unknown access type)
   1702      1.1  christos         4       escape record (causes cache flush)
   1703      1.1  christos 
   1704      1.1  christos    The address field is a 32bit (lower-case) hexadecimal address
   1705      1.1  christos    value. The address should *NOT* be preceded by "0x".
   1706      1.1  christos 
   1707      1.1  christos    The size of the memory transfer is not important when dealing with
   1708      1.1  christos    cache lines (as long as no more than a cache line can be
   1709      1.1  christos    transferred in a single operation :-), however more information
   1710      1.1  christos    could be given following the dineroIII requirement to allow more
   1711      1.1  christos    complete memory and cache simulators to provide better
   1712      1.1  christos    results. i.e. the University of Pisa has a cache simulator that can
   1713      1.1  christos    also take bus size and speed as (variable) inputs to calculate
   1714      1.1  christos    complete system performance (a much more useful ability when trying
   1715      1.1  christos    to construct an end product, rather than a processor). They
   1716      1.1  christos    currently have an ARM version of their tool called ChARM. */
   1717      1.1  christos 
   1718      1.1  christos 
   1719      1.1  christos void
   1720      1.1  christos dotrace (SIM_DESC sd,
   1721      1.1  christos 	 sim_cpu *cpu,
   1722      1.1  christos 	 FILE *tracefh,
   1723      1.1  christos 	 int type,
   1724      1.1  christos 	 SIM_ADDR address,
   1725      1.1  christos 	 int width,
   1726  1.1.1.6  christos 	 const char *comment, ...)
   1727      1.1  christos {
   1728      1.1  christos   if (STATE & simTRACE) {
   1729      1.1  christos     va_list ap;
   1730  1.1.1.6  christos     fprintf(tracefh,"%d %s ; width %d ; ",
   1731      1.1  christos 		type,
   1732      1.1  christos 		pr_addr(address),
   1733      1.1  christos 		width);
   1734      1.1  christos     va_start(ap,comment);
   1735      1.1  christos     vfprintf(tracefh,comment,ap);
   1736      1.1  christos     va_end(ap);
   1737      1.1  christos     fprintf(tracefh,"\n");
   1738      1.1  christos   }
   1739      1.1  christos   /* NOTE: Since the "din" format will only accept 32bit addresses, and
   1740      1.1  christos      we may be generating 64bit ones, we should put the hi-32bits of the
   1741      1.1  christos      address into the comment field. */
   1742      1.1  christos 
   1743      1.1  christos   /* TODO: Provide a buffer for the trace lines. We can then avoid
   1744      1.1  christos      performing writes until the buffer is filled, or the file is
   1745      1.1  christos      being closed. */
   1746      1.1  christos 
   1747      1.1  christos   /* NOTE: We could consider adding a comment field to the "din" file
   1748      1.1  christos      produced using type 3 markers (unknown access). This would then
   1749      1.1  christos      allow information about the program that the "din" is for, and
   1750      1.1  christos      the MIPs world that was being simulated, to be placed into the
   1751      1.1  christos      trace file. */
   1752      1.1  christos 
   1753      1.1  christos   return;
   1754      1.1  christos }
   1755  1.1.1.4  christos #endif /* WITH_TRACE_ANY_P */
   1756      1.1  christos 
   1757      1.1  christos /*---------------------------------------------------------------------------*/
   1758      1.1  christos /*-- simulator engine -------------------------------------------------------*/
   1759      1.1  christos /*---------------------------------------------------------------------------*/
   1760      1.1  christos 
   1761      1.1  christos static void
   1762      1.1  christos ColdReset (SIM_DESC sd)
   1763      1.1  christos {
   1764      1.1  christos   int cpu_nr;
   1765      1.1  christos   for (cpu_nr = 0; cpu_nr < sim_engine_nr_cpus (sd); cpu_nr++)
   1766      1.1  christos     {
   1767      1.1  christos       sim_cpu *cpu = STATE_CPU (sd, cpu_nr);
   1768      1.1  christos       /* RESET: Fixed PC address: */
   1769      1.1  christos       PC = (unsigned_word) UNSIGNED64 (0xFFFFFFFFBFC00000);
   1770      1.1  christos       /* The reset vector address is in the unmapped, uncached memory space. */
   1771  1.1.1.6  christos 
   1772      1.1  christos       SR &= ~(status_SR | status_TS | status_RP);
   1773      1.1  christos       SR |= (status_ERL | status_BEV);
   1774  1.1.1.6  christos 
   1775      1.1  christos       /* Cheat and allow access to the complete register set immediately */
   1776      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT
   1777      1.1  christos 	  && WITH_TARGET_WORD_BITSIZE == 64)
   1778      1.1  christos 	SR |= status_FR; /* 64bit registers */
   1779  1.1.1.6  christos 
   1780      1.1  christos       /* Ensure that any instructions with pending register updates are
   1781      1.1  christos 	 cleared: */
   1782      1.1  christos       PENDING_INVALIDATE();
   1783  1.1.1.6  christos 
   1784      1.1  christos       /* Initialise the FPU registers to the unknown state */
   1785      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   1786      1.1  christos 	{
   1787      1.1  christos 	  int rn;
   1788      1.1  christos 	  for (rn = 0; (rn < 32); rn++)
   1789      1.1  christos 	    FPR_STATE[rn] = fmt_uninterpreted;
   1790      1.1  christos 	}
   1791  1.1.1.6  christos 
   1792      1.1  christos       /* Initialise the Config0 register. */
   1793      1.1  christos       C0_CONFIG = 0x80000000 		/* Config1 present */
   1794      1.1  christos 	| 2;				/* KSEG0 uncached */
   1795      1.1  christos       if (WITH_TARGET_WORD_BITSIZE == 64)
   1796      1.1  christos 	{
   1797      1.1  christos 	  /* FIXME Currently mips/sim-main.c:address_translation()
   1798      1.1  christos 	     truncates all addresses to 32-bits. */
   1799      1.1  christos 	  if (0 && WITH_TARGET_ADDRESS_BITSIZE == 64)
   1800      1.1  christos 	    C0_CONFIG |= (2 << 13);	/* MIPS64, 64-bit addresses */
   1801      1.1  christos 	  else
   1802      1.1  christos 	    C0_CONFIG |= (1 << 13);	/* MIPS64, 32-bit addresses */
   1803      1.1  christos 	}
   1804      1.1  christos       if (BigEndianMem)
   1805      1.1  christos 	C0_CONFIG |= 0x00008000;	/* Big Endian */
   1806      1.1  christos     }
   1807      1.1  christos }
   1808      1.1  christos 
   1809      1.1  christos 
   1810      1.1  christos 
   1811      1.1  christos 
   1812      1.1  christos /* Description from page A-26 of the "MIPS IV Instruction Set" manual (revision 3.1) */
   1813      1.1  christos /* Signal an exception condition. This will result in an exception
   1814      1.1  christos    that aborts the instruction. The instruction operation pseudocode
   1815      1.1  christos    will never see a return from this function call. */
   1816      1.1  christos 
   1817      1.1  christos void
   1818      1.1  christos signal_exception (SIM_DESC sd,
   1819      1.1  christos 		  sim_cpu *cpu,
   1820      1.1  christos 		  address_word cia,
   1821      1.1  christos 		  int exception,...)
   1822      1.1  christos {
   1823      1.1  christos   /* int vector; */
   1824      1.1  christos 
   1825      1.1  christos #ifdef DEBUG
   1826      1.1  christos   sim_io_printf(sd,"DBG: SignalException(%d) PC = 0x%s\n",exception,pr_addr(cia));
   1827      1.1  christos #endif /* DEBUG */
   1828      1.1  christos 
   1829      1.1  christos   /* Ensure that any active atomic read/modify/write operation will fail: */
   1830      1.1  christos   LLBIT = 0;
   1831      1.1  christos 
   1832      1.1  christos   /* Save registers before interrupt dispatching */
   1833      1.1  christos #ifdef SIM_CPU_EXCEPTION_TRIGGER
   1834      1.1  christos   SIM_CPU_EXCEPTION_TRIGGER(sd, cpu, cia);
   1835      1.1  christos #endif
   1836      1.1  christos 
   1837      1.1  christos   switch (exception) {
   1838      1.1  christos 
   1839      1.1  christos     case DebugBreakPoint:
   1840      1.1  christos       if (! (Debug & Debug_DM))
   1841      1.1  christos         {
   1842      1.1  christos           if (INDELAYSLOT())
   1843      1.1  christos             {
   1844      1.1  christos               CANCELDELAYSLOT();
   1845  1.1.1.6  christos 
   1846      1.1  christos               Debug |= Debug_DBD;  /* signaled from within in delay slot */
   1847      1.1  christos               DEPC = cia - 4;      /* reference the branch instruction */
   1848      1.1  christos             }
   1849      1.1  christos           else
   1850      1.1  christos             {
   1851      1.1  christos               Debug &= ~Debug_DBD; /* not signaled from within a delay slot */
   1852      1.1  christos               DEPC = cia;
   1853      1.1  christos             }
   1854  1.1.1.6  christos 
   1855      1.1  christos           Debug |= Debug_DM;            /* in debugging mode */
   1856      1.1  christos           Debug |= Debug_DBp;           /* raising a DBp exception */
   1857      1.1  christos           PC = 0xBFC00200;
   1858      1.1  christos           sim_engine_restart (SD, CPU, NULL, NULL_CIA);
   1859      1.1  christos         }
   1860      1.1  christos       break;
   1861      1.1  christos 
   1862      1.1  christos     case ReservedInstruction:
   1863      1.1  christos      {
   1864      1.1  christos        va_list ap;
   1865      1.1  christos        unsigned int instruction;
   1866      1.1  christos        va_start(ap,exception);
   1867      1.1  christos        instruction = va_arg(ap,unsigned int);
   1868      1.1  christos        va_end(ap);
   1869      1.1  christos        /* Provide simple monitor support using ReservedInstruction
   1870      1.1  christos           exceptions. The following code simulates the fixed vector
   1871      1.1  christos           entry points into the IDT monitor by causing a simulator
   1872      1.1  christos           trap, performing the monitor operation, and returning to
   1873      1.1  christos           the address held in the $ra register (standard PCS return
   1874      1.1  christos           address). This means we only need to pre-load the vector
   1875      1.1  christos           space with suitable instruction values. For systems were
   1876      1.1  christos           actual trap instructions are used, we would not need to
   1877      1.1  christos           perform this magic. */
   1878      1.1  christos        if ((instruction & RSVD_INSTRUCTION_MASK) == RSVD_INSTRUCTION)
   1879      1.1  christos 	 {
   1880      1.1  christos 	   int reason = (instruction >> RSVD_INSTRUCTION_ARG_SHIFT) & RSVD_INSTRUCTION_ARG_MASK;
   1881      1.1  christos 	   if (!sim_monitor (SD, CPU, cia, reason))
   1882      1.1  christos 	     sim_io_error (sd, "sim_monitor: unhandled reason = %d, pc = 0x%s\n", reason, pr_addr (cia));
   1883      1.1  christos 
   1884      1.1  christos 	   /* NOTE: This assumes that a branch-and-link style
   1885      1.1  christos 	      instruction was used to enter the vector (which is the
   1886      1.1  christos 	      case with the current IDT monitor). */
   1887      1.1  christos 	   sim_engine_restart (SD, CPU, NULL, RA);
   1888      1.1  christos 	 }
   1889      1.1  christos        /* Look for the mips16 entry and exit instructions, and
   1890      1.1  christos           simulate a handler for them.  */
   1891      1.1  christos        else if ((cia & 1) != 0
   1892      1.1  christos 		&& (instruction & 0xf81f) == 0xe809
   1893      1.1  christos 		&& (instruction & 0x0c0) != 0x0c0)
   1894      1.1  christos 	 {
   1895      1.1  christos 	   mips16_entry (SD, CPU, cia, instruction);
   1896      1.1  christos 	   sim_engine_restart (sd, NULL, NULL, NULL_CIA);
   1897      1.1  christos 	 }
   1898      1.1  christos        /* else fall through to normal exception processing */
   1899      1.1  christos        sim_io_eprintf(sd,"ReservedInstruction at PC = 0x%s\n", pr_addr (cia));
   1900      1.1  christos      }
   1901      1.1  christos 
   1902      1.1  christos     default:
   1903      1.1  christos      /* Store exception code into current exception id variable (used
   1904      1.1  christos         by exit code): */
   1905      1.1  christos 
   1906      1.1  christos      /* TODO: If not simulating exceptions then stop the simulator
   1907      1.1  christos         execution. At the moment we always stop the simulation. */
   1908      1.1  christos 
   1909      1.1  christos #ifdef SUBTARGET_R3900
   1910      1.1  christos       /* update interrupt-related registers */
   1911      1.1  christos 
   1912      1.1  christos       /* insert exception code in bits 6:2 */
   1913      1.1  christos       CAUSE = LSMASKED32(CAUSE, 31, 7) | LSINSERTED32(exception, 6, 2);
   1914      1.1  christos       /* shift IE/KU history bits left */
   1915      1.1  christos       SR = LSMASKED32(SR, 31, 4) | LSINSERTED32(LSEXTRACTED32(SR, 3, 0), 5, 2);
   1916      1.1  christos 
   1917      1.1  christos       if (STATE & simDELAYSLOT)
   1918      1.1  christos 	{
   1919      1.1  christos 	  STATE &= ~simDELAYSLOT;
   1920      1.1  christos 	  CAUSE |= cause_BD;
   1921      1.1  christos 	  EPC = (cia - 4); /* reference the branch instruction */
   1922      1.1  christos 	}
   1923      1.1  christos       else
   1924      1.1  christos 	EPC = cia;
   1925      1.1  christos 
   1926      1.1  christos      if (SR & status_BEV)
   1927      1.1  christos        PC = (signed)0xBFC00000 + 0x180;
   1928      1.1  christos      else
   1929      1.1  christos        PC = (signed)0x80000000 + 0x080;
   1930      1.1  christos #else
   1931      1.1  christos      /* See figure 5-17 for an outline of the code below */
   1932      1.1  christos      if (! (SR & status_EXL))
   1933      1.1  christos        {
   1934      1.1  christos 	 CAUSE = (exception << 2);
   1935      1.1  christos 	 if (STATE & simDELAYSLOT)
   1936      1.1  christos 	   {
   1937      1.1  christos 	     STATE &= ~simDELAYSLOT;
   1938      1.1  christos 	     CAUSE |= cause_BD;
   1939      1.1  christos 	     EPC = (cia - 4); /* reference the branch instruction */
   1940      1.1  christos 	   }
   1941      1.1  christos 	 else
   1942      1.1  christos 	   EPC = cia;
   1943      1.1  christos 	 /* FIXME: TLB et.al. */
   1944      1.1  christos 	 /* vector = 0x180; */
   1945      1.1  christos        }
   1946      1.1  christos      else
   1947      1.1  christos        {
   1948      1.1  christos 	 CAUSE = (exception << 2);
   1949      1.1  christos 	 /* vector = 0x180; */
   1950      1.1  christos        }
   1951      1.1  christos      SR |= status_EXL;
   1952      1.1  christos      /* Store exception code into current exception id variable (used
   1953      1.1  christos         by exit code): */
   1954      1.1  christos 
   1955      1.1  christos      if (SR & status_BEV)
   1956      1.1  christos        PC = (signed)0xBFC00200 + 0x180;
   1957      1.1  christos      else
   1958      1.1  christos        PC = (signed)0x80000000 + 0x180;
   1959      1.1  christos #endif
   1960      1.1  christos 
   1961      1.1  christos      switch ((CAUSE >> 2) & 0x1F)
   1962      1.1  christos        {
   1963      1.1  christos        case Interrupt:
   1964      1.1  christos 	 /* Interrupts arrive during event processing, no need to
   1965      1.1  christos             restart */
   1966      1.1  christos 	 return;
   1967      1.1  christos 
   1968      1.1  christos        case NMIReset:
   1969      1.1  christos 	 /* Ditto */
   1970      1.1  christos #ifdef SUBTARGET_3900
   1971      1.1  christos 	 /* Exception vector: BEV=0 BFC00000 / BEF=1 BFC00000  */
   1972      1.1  christos 	 PC = (signed)0xBFC00000;
   1973      1.1  christos #endif /* SUBTARGET_3900 */
   1974      1.1  christos 	 return;
   1975      1.1  christos 
   1976      1.1  christos        case TLBModification:
   1977      1.1  christos        case TLBLoad:
   1978      1.1  christos        case TLBStore:
   1979      1.1  christos        case AddressLoad:
   1980      1.1  christos        case AddressStore:
   1981      1.1  christos        case InstructionFetch:
   1982      1.1  christos        case DataReference:
   1983      1.1  christos 	 /* The following is so that the simulator will continue from the
   1984      1.1  christos 	    exception handler address. */
   1985      1.1  christos 	 sim_engine_halt (SD, CPU, NULL, PC,
   1986      1.1  christos 			  sim_stopped, SIM_SIGBUS);
   1987      1.1  christos 
   1988      1.1  christos        case ReservedInstruction:
   1989      1.1  christos        case CoProcessorUnusable:
   1990      1.1  christos 	 PC = EPC;
   1991      1.1  christos 	 sim_engine_halt (SD, CPU, NULL, PC,
   1992      1.1  christos 			  sim_stopped, SIM_SIGILL);
   1993      1.1  christos 
   1994      1.1  christos        case IntegerOverflow:
   1995      1.1  christos        case FPE:
   1996      1.1  christos 	 sim_engine_halt (SD, CPU, NULL, PC,
   1997      1.1  christos 			  sim_stopped, SIM_SIGFPE);
   1998  1.1.1.6  christos 
   1999      1.1  christos        case BreakPoint:
   2000      1.1  christos 	 sim_engine_halt (SD, CPU, NULL, PC, sim_stopped, SIM_SIGTRAP);
   2001      1.1  christos 	 break;
   2002      1.1  christos 
   2003      1.1  christos        case SystemCall:
   2004      1.1  christos        case Trap:
   2005      1.1  christos 	 sim_engine_restart (SD, CPU, NULL, PC);
   2006      1.1  christos 	 break;
   2007      1.1  christos 
   2008      1.1  christos        case Watch:
   2009      1.1  christos 	 PC = EPC;
   2010      1.1  christos 	 sim_engine_halt (SD, CPU, NULL, PC,
   2011      1.1  christos 			  sim_stopped, SIM_SIGTRAP);
   2012      1.1  christos 
   2013      1.1  christos        default: /* Unknown internal exception */
   2014      1.1  christos 	 PC = EPC;
   2015      1.1  christos 	 sim_engine_halt (SD, CPU, NULL, PC,
   2016      1.1  christos 			  sim_stopped, SIM_SIGABRT);
   2017      1.1  christos 
   2018      1.1  christos        }
   2019      1.1  christos 
   2020      1.1  christos     case SimulatorFault:
   2021      1.1  christos      {
   2022      1.1  christos        va_list ap;
   2023      1.1  christos        char *msg;
   2024      1.1  christos        va_start(ap,exception);
   2025      1.1  christos        msg = va_arg(ap,char *);
   2026      1.1  christos        va_end(ap);
   2027      1.1  christos        sim_engine_abort (SD, CPU, NULL_CIA,
   2028      1.1  christos 			 "FATAL: Simulator error \"%s\"\n",msg);
   2029      1.1  christos      }
   2030      1.1  christos    }
   2031      1.1  christos 
   2032      1.1  christos   return;
   2033      1.1  christos }
   2034      1.1  christos 
   2035      1.1  christos 
   2036      1.1  christos 
   2037      1.1  christos /* This function implements what the MIPS32 and MIPS64 ISAs define as
   2038      1.1  christos    "UNPREDICTABLE" behaviour.
   2039      1.1  christos 
   2040      1.1  christos    About UNPREDICTABLE behaviour they say: "UNPREDICTABLE results
   2041      1.1  christos    may vary from processor implementation to processor implementation,
   2042      1.1  christos    instruction to instruction, or as a function of time on the same
   2043      1.1  christos    implementation or instruction.  Software can never depend on results
   2044      1.1  christos    that are UNPREDICTABLE. ..."  (MIPS64 Architecture for Programmers
   2045      1.1  christos    Volume II, The MIPS64 Instruction Set.  MIPS Document MD00087 revision
   2046      1.1  christos    0.95, page 2.)
   2047  1.1.1.6  christos 
   2048      1.1  christos    For UNPREDICTABLE behaviour, we print a message, if possible print
   2049      1.1  christos    the offending instructions mips.igen instruction name (provided by
   2050      1.1  christos    the caller), and stop the simulator.
   2051      1.1  christos 
   2052      1.1  christos    XXX FIXME: eventually, stopping the simulator should be made conditional
   2053      1.1  christos    on a command-line option.  */
   2054      1.1  christos void
   2055      1.1  christos unpredictable_action(sim_cpu *cpu, address_word cia)
   2056      1.1  christos {
   2057      1.1  christos   SIM_DESC sd = CPU_STATE(cpu);
   2058      1.1  christos 
   2059      1.1  christos   sim_io_eprintf(sd, "UNPREDICTABLE: PC = 0x%s\n", pr_addr (cia));
   2060      1.1  christos   sim_engine_halt (SD, CPU, NULL, cia, sim_stopped, SIM_SIGABRT);
   2061      1.1  christos }
   2062      1.1  christos 
   2063      1.1  christos 
   2064      1.1  christos /*-- co-processor support routines ------------------------------------------*/
   2065      1.1  christos 
   2066      1.1  christos static int UNUSED
   2067      1.1  christos CoProcPresent(unsigned int coproc_number)
   2068      1.1  christos {
   2069      1.1  christos   /* Return TRUE if simulator provides a model for the given co-processor number */
   2070      1.1  christos   return(0);
   2071      1.1  christos }
   2072      1.1  christos 
   2073      1.1  christos void
   2074      1.1  christos cop_lw (SIM_DESC sd,
   2075      1.1  christos 	sim_cpu *cpu,
   2076      1.1  christos 	address_word cia,
   2077      1.1  christos 	int coproc_num,
   2078      1.1  christos 	int coproc_reg,
   2079      1.1  christos 	unsigned int memword)
   2080      1.1  christos {
   2081      1.1  christos   switch (coproc_num)
   2082      1.1  christos     {
   2083      1.1  christos     case 1:
   2084      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   2085      1.1  christos 	{
   2086      1.1  christos #ifdef DEBUG
   2087      1.1  christos 	  printf("DBG: COP_LW: memword = 0x%08X (uword64)memword = 0x%s\n",memword,pr_addr(memword));
   2088      1.1  christos #endif
   2089      1.1  christos 	  StoreFPR(coproc_reg,fmt_uninterpreted_32,(uword64)memword);
   2090      1.1  christos 	  break;
   2091      1.1  christos 	}
   2092      1.1  christos 
   2093      1.1  christos     default:
   2094      1.1  christos #if 0 /* this should be controlled by a configuration option */
   2095      1.1  christos       sim_io_printf(sd,"COP_LW(%d,%d,0x%08X) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,coproc_reg,memword,pr_addr(cia));
   2096      1.1  christos #endif
   2097      1.1  christos       break;
   2098      1.1  christos     }
   2099      1.1  christos 
   2100      1.1  christos   return;
   2101      1.1  christos }
   2102      1.1  christos 
   2103      1.1  christos void
   2104      1.1  christos cop_ld (SIM_DESC sd,
   2105      1.1  christos 	sim_cpu *cpu,
   2106      1.1  christos 	address_word cia,
   2107      1.1  christos 	int coproc_num,
   2108      1.1  christos 	int coproc_reg,
   2109      1.1  christos 	uword64 memword)
   2110      1.1  christos {
   2111      1.1  christos 
   2112      1.1  christos #ifdef DEBUG
   2113  1.1.1.6  christos   printf("DBG: COP_LD: coproc_num = %d, coproc_reg = %d, value = 0x%s : PC = 0x%s\n", coproc_num, coproc_reg, pr_uword64(memword), pr_addr(cia));
   2114      1.1  christos #endif
   2115      1.1  christos 
   2116      1.1  christos   switch (coproc_num) {
   2117      1.1  christos     case 1:
   2118      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   2119      1.1  christos 	{
   2120      1.1  christos 	  StoreFPR(coproc_reg,fmt_uninterpreted_64,memword);
   2121      1.1  christos 	  break;
   2122      1.1  christos 	}
   2123      1.1  christos 
   2124      1.1  christos     default:
   2125      1.1  christos #if 0 /* this message should be controlled by a configuration option */
   2126      1.1  christos      sim_io_printf(sd,"COP_LD(%d,%d,0x%s) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,coproc_reg,pr_addr(memword),pr_addr(cia));
   2127      1.1  christos #endif
   2128      1.1  christos      break;
   2129      1.1  christos   }
   2130      1.1  christos 
   2131      1.1  christos   return;
   2132      1.1  christos }
   2133      1.1  christos 
   2134      1.1  christos 
   2135      1.1  christos 
   2136      1.1  christos 
   2137      1.1  christos unsigned int
   2138      1.1  christos cop_sw (SIM_DESC sd,
   2139      1.1  christos 	sim_cpu *cpu,
   2140      1.1  christos 	address_word cia,
   2141      1.1  christos 	int coproc_num,
   2142      1.1  christos 	int coproc_reg)
   2143      1.1  christos {
   2144      1.1  christos   unsigned int value = 0;
   2145      1.1  christos 
   2146      1.1  christos   switch (coproc_num)
   2147      1.1  christos     {
   2148      1.1  christos     case 1:
   2149      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   2150      1.1  christos 	{
   2151      1.1  christos 	  value = (unsigned int)ValueFPR(coproc_reg,fmt_uninterpreted_32);
   2152      1.1  christos 	  break;
   2153      1.1  christos 	}
   2154      1.1  christos 
   2155      1.1  christos     default:
   2156      1.1  christos #if 0 /* should be controlled by configuration option */
   2157      1.1  christos       sim_io_printf(sd,"COP_SW(%d,%d) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,coproc_reg,pr_addr(cia));
   2158      1.1  christos #endif
   2159      1.1  christos       break;
   2160      1.1  christos     }
   2161      1.1  christos 
   2162      1.1  christos   return(value);
   2163      1.1  christos }
   2164      1.1  christos 
   2165      1.1  christos uword64
   2166      1.1  christos cop_sd (SIM_DESC sd,
   2167      1.1  christos 	sim_cpu *cpu,
   2168      1.1  christos 	address_word cia,
   2169      1.1  christos 	int coproc_num,
   2170      1.1  christos 	int coproc_reg)
   2171      1.1  christos {
   2172      1.1  christos   uword64 value = 0;
   2173      1.1  christos   switch (coproc_num)
   2174      1.1  christos     {
   2175      1.1  christos     case 1:
   2176      1.1  christos       if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   2177      1.1  christos 	{
   2178      1.1  christos 	  value = ValueFPR(coproc_reg,fmt_uninterpreted_64);
   2179      1.1  christos 	  break;
   2180      1.1  christos 	}
   2181      1.1  christos 
   2182      1.1  christos     default:
   2183      1.1  christos #if 0 /* should be controlled by configuration option */
   2184      1.1  christos       sim_io_printf(sd,"COP_SD(%d,%d) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,coproc_reg,pr_addr(cia));
   2185      1.1  christos #endif
   2186      1.1  christos       break;
   2187      1.1  christos     }
   2188      1.1  christos 
   2189      1.1  christos   return(value);
   2190      1.1  christos }
   2191      1.1  christos 
   2192      1.1  christos 
   2193      1.1  christos 
   2194      1.1  christos 
   2195      1.1  christos void
   2196      1.1  christos decode_coproc (SIM_DESC sd,
   2197      1.1  christos 	       sim_cpu *cpu,
   2198      1.1  christos 	       address_word cia,
   2199  1.1.1.5  christos 	       unsigned int instruction,
   2200  1.1.1.5  christos 	       int coprocnum,
   2201  1.1.1.5  christos 	       CP0_operation op,
   2202  1.1.1.5  christos 	       int rt,
   2203  1.1.1.5  christos 	       int rd,
   2204  1.1.1.5  christos 	       int sel)
   2205      1.1  christos {
   2206      1.1  christos   switch (coprocnum)
   2207      1.1  christos     {
   2208      1.1  christos     case 0: /* standard CPU control and cache registers */
   2209      1.1  christos       {
   2210      1.1  christos         /* R4000 Users Manual (second edition) lists the following CP0
   2211      1.1  christos            instructions:
   2212      1.1  christos 	                                                           CODE><-RT><RD-><--TAIL--->
   2213      1.1  christos 	   DMFC0   Doubleword Move From CP0        (VR4100 = 01000000001tttttddddd00000000000)
   2214      1.1  christos 	   DMTC0   Doubleword Move To CP0          (VR4100 = 01000000101tttttddddd00000000000)
   2215      1.1  christos 	   MFC0    word Move From CP0              (VR4100 = 01000000000tttttddddd00000000000)
   2216      1.1  christos 	   MTC0    word Move To CP0                (VR4100 = 01000000100tttttddddd00000000000)
   2217      1.1  christos 	   TLBR    Read Indexed TLB Entry          (VR4100 = 01000010000000000000000000000001)
   2218      1.1  christos 	   TLBWI   Write Indexed TLB Entry         (VR4100 = 01000010000000000000000000000010)
   2219      1.1  christos 	   TLBWR   Write Random TLB Entry          (VR4100 = 01000010000000000000000000000110)
   2220      1.1  christos 	   TLBP    Probe TLB for Matching Entry    (VR4100 = 01000010000000000000000000001000)
   2221      1.1  christos 	   CACHE   Cache operation                 (VR4100 = 101111bbbbbpppppiiiiiiiiiiiiiiii)
   2222      1.1  christos 	   ERET    Exception return                (VR4100 = 01000010000000000000000000011000)
   2223      1.1  christos 	   */
   2224  1.1.1.5  christos 	if (((op == cp0_mfc0) || (op == cp0_mtc0)      /* MFC0  /  MTC0  */
   2225  1.1.1.5  christos 	     || (op == cp0_dmfc0) || (op == cp0_dmtc0))  /* DMFC0 / DMTC0  */
   2226  1.1.1.5  christos 	    && sel == 0)
   2227      1.1  christos 	  {
   2228      1.1  christos 	    switch (rd)  /* NOTEs: Standard CP0 registers */
   2229      1.1  christos 	      {
   2230      1.1  christos 		/* 0 = Index               R4000   VR4100  VR4300 */
   2231      1.1  christos 		/* 1 = Random              R4000   VR4100  VR4300 */
   2232      1.1  christos 		/* 2 = EntryLo0            R4000   VR4100  VR4300 */
   2233      1.1  christos 		/* 3 = EntryLo1            R4000   VR4100  VR4300 */
   2234      1.1  christos 		/* 4 = Context             R4000   VR4100  VR4300 */
   2235      1.1  christos 		/* 5 = PageMask            R4000   VR4100  VR4300 */
   2236      1.1  christos 		/* 6 = Wired               R4000   VR4100  VR4300 */
   2237      1.1  christos 		/* 8 = BadVAddr            R4000   VR4100  VR4300 */
   2238      1.1  christos 		/* 9 = Count               R4000   VR4100  VR4300 */
   2239      1.1  christos 		/* 10 = EntryHi            R4000   VR4100  VR4300 */
   2240      1.1  christos 		/* 11 = Compare            R4000   VR4100  VR4300 */
   2241      1.1  christos 		/* 12 = SR                 R4000   VR4100  VR4300 */
   2242      1.1  christos #ifdef SUBTARGET_R3900
   2243      1.1  christos 	      case 3:
   2244      1.1  christos 		/* 3 = Config              R3900                  */
   2245      1.1  christos 	      case 7:
   2246      1.1  christos 		/* 7 = Cache               R3900                  */
   2247      1.1  christos 	      case 15:
   2248      1.1  christos 		/* 15 = PRID               R3900                  */
   2249      1.1  christos 
   2250      1.1  christos 		/* ignore */
   2251      1.1  christos 		break;
   2252      1.1  christos 
   2253      1.1  christos 	      case 8:
   2254      1.1  christos 		/* 8 = BadVAddr            R4000   VR4100  VR4300 */
   2255  1.1.1.5  christos 		if (op == cp0_mfc0 || op == cp0_dmfc0)
   2256      1.1  christos 		  GPR[rt] = (signed_word) (signed_address) COP0_BADVADDR;
   2257      1.1  christos 		else
   2258      1.1  christos 		  COP0_BADVADDR = GPR[rt];
   2259      1.1  christos 		break;
   2260      1.1  christos 
   2261      1.1  christos #endif /* SUBTARGET_R3900 */
   2262      1.1  christos 	      case 12:
   2263  1.1.1.5  christos 		if (op == cp0_mfc0 || op == cp0_dmfc0)
   2264      1.1  christos 		  GPR[rt] = SR;
   2265      1.1  christos 		else
   2266      1.1  christos 		  SR = GPR[rt];
   2267      1.1  christos 		break;
   2268      1.1  christos 		/* 13 = Cause              R4000   VR4100  VR4300 */
   2269      1.1  christos 	      case 13:
   2270  1.1.1.5  christos 		if (op == cp0_mfc0 || op == cp0_dmfc0)
   2271      1.1  christos 		  GPR[rt] = CAUSE;
   2272      1.1  christos 		else
   2273      1.1  christos 		  CAUSE = GPR[rt];
   2274      1.1  christos 		break;
   2275      1.1  christos 		/* 14 = EPC                R4000   VR4100  VR4300 */
   2276      1.1  christos 	      case 14:
   2277  1.1.1.5  christos 		if (op == cp0_mfc0 || op == cp0_dmfc0)
   2278      1.1  christos 		  GPR[rt] = (signed_word) (signed_address) EPC;
   2279      1.1  christos 		else
   2280      1.1  christos 		  EPC = GPR[rt];
   2281      1.1  christos 		break;
   2282      1.1  christos 		/* 15 = PRId               R4000   VR4100  VR4300 */
   2283      1.1  christos #ifdef SUBTARGET_R3900
   2284      1.1  christos                 /* 16 = Debug */
   2285      1.1  christos               case 16:
   2286  1.1.1.5  christos                 if (op == cp0_mfc0 || op == cp0_dmfc0)
   2287      1.1  christos                   GPR[rt] = Debug;
   2288      1.1  christos                 else
   2289      1.1  christos                   Debug = GPR[rt];
   2290      1.1  christos                 break;
   2291      1.1  christos #else
   2292      1.1  christos 		/* 16 = Config             R4000   VR4100  VR4300 */
   2293      1.1  christos               case 16:
   2294  1.1.1.5  christos 	        if (op == cp0_mfc0 || op == cp0_dmfc0)
   2295      1.1  christos 		  GPR[rt] = C0_CONFIG;
   2296      1.1  christos 		else
   2297      1.1  christos 		  /* only bottom three bits are writable */
   2298      1.1  christos 		  C0_CONFIG = (C0_CONFIG & ~0x7) | (GPR[rt] & 0x7);
   2299      1.1  christos                 break;
   2300      1.1  christos #endif
   2301      1.1  christos #ifdef SUBTARGET_R3900
   2302      1.1  christos                 /* 17 = Debug */
   2303      1.1  christos               case 17:
   2304  1.1.1.5  christos                 if (op == cp0_mfc0 || op == cp0_dmfc0)
   2305      1.1  christos                   GPR[rt] = DEPC;
   2306      1.1  christos                 else
   2307      1.1  christos                   DEPC = GPR[rt];
   2308      1.1  christos                 break;
   2309      1.1  christos #else
   2310      1.1  christos 		/* 17 = LLAddr             R4000   VR4100  VR4300 */
   2311      1.1  christos #endif
   2312      1.1  christos 		/* 18 = WatchLo            R4000   VR4100  VR4300 */
   2313      1.1  christos 		/* 19 = WatchHi            R4000   VR4100  VR4300 */
   2314      1.1  christos 		/* 20 = XContext           R4000   VR4100  VR4300 */
   2315      1.1  christos 		/* 26 = PErr or ECC        R4000   VR4100  VR4300 */
   2316      1.1  christos 		/* 27 = CacheErr           R4000   VR4100 */
   2317      1.1  christos 		/* 28 = TagLo              R4000   VR4100  VR4300 */
   2318      1.1  christos 		/* 29 = TagHi              R4000   VR4100  VR4300 */
   2319      1.1  christos 		/* 30 = ErrorEPC           R4000   VR4100  VR4300 */
   2320      1.1  christos 		if (STATE_VERBOSE_P(SD))
   2321  1.1.1.6  christos 		  sim_io_eprintf (SD,
   2322      1.1  christos 				  "Warning: PC 0x%lx:interp.c decode_coproc DEADC0DE\n",
   2323      1.1  christos 				  (unsigned long)cia);
   2324      1.1  christos 		GPR[rt] = 0xDEADC0DE; /* CPR[0,rd] */
   2325      1.1  christos 		/* CPR[0,rd] = GPR[rt]; */
   2326      1.1  christos 	      default:
   2327  1.1.1.5  christos 		if (op == cp0_mfc0 || op == cp0_dmfc0)
   2328  1.1.1.6  christos 		  GPR[rt] = (signed_word) (int32_t) COP0_GPR[rd];
   2329      1.1  christos 		else
   2330      1.1  christos 		  COP0_GPR[rd] = GPR[rt];
   2331      1.1  christos #if 0
   2332      1.1  christos 		if (code == 0x00)
   2333      1.1  christos 		  sim_io_printf(sd,"Warning: MFC0 %d,%d ignored, PC=%08x (architecture specific)\n",rt,rd, (unsigned)cia);
   2334      1.1  christos 		else
   2335      1.1  christos 		  sim_io_printf(sd,"Warning: MTC0 %d,%d ignored, PC=%08x (architecture specific)\n",rt,rd, (unsigned)cia);
   2336      1.1  christos #endif
   2337      1.1  christos 	      }
   2338      1.1  christos 	  }
   2339  1.1.1.5  christos 	else if ((op == cp0_mfc0 || op == cp0_dmfc0)
   2340      1.1  christos 		 && rd == 16)
   2341      1.1  christos 	  {
   2342      1.1  christos 	    /* [D]MFC0 RT,C0_CONFIG,SEL */
   2343  1.1.1.6  christos 	    int32_t cfg = 0;
   2344  1.1.1.5  christos 	    switch (sel)
   2345      1.1  christos 	      {
   2346      1.1  christos 	      case 0:
   2347      1.1  christos 		cfg = C0_CONFIG;
   2348      1.1  christos 		break;
   2349      1.1  christos 	      case 1:
   2350  1.1.1.6  christos 		/* MIPS32 r/o Config1:
   2351      1.1  christos 		   Config2 present */
   2352      1.1  christos 		cfg = 0x80000000;
   2353  1.1.1.6  christos 		/* MIPS16 implemented.
   2354      1.1  christos 		   XXX How to check configuration? */
   2355      1.1  christos 		cfg |= 0x0000004;
   2356      1.1  christos 		if (CURRENT_FLOATING_POINT == HARD_FLOATING_POINT)
   2357      1.1  christos 		  /* MDMX & FPU implemented */
   2358      1.1  christos 		  cfg |= 0x00000021;
   2359      1.1  christos 		break;
   2360      1.1  christos 	      case 2:
   2361  1.1.1.6  christos 		/* MIPS32 r/o Config2:
   2362      1.1  christos 		   Config3 present. */
   2363      1.1  christos 		cfg = 0x80000000;
   2364      1.1  christos 		break;
   2365      1.1  christos 	      case 3:
   2366  1.1.1.6  christos 		/* MIPS32 r/o Config3:
   2367      1.1  christos 		   SmartMIPS implemented. */
   2368      1.1  christos 		cfg = 0x00000002;
   2369      1.1  christos 		break;
   2370      1.1  christos 	      }
   2371      1.1  christos 	    GPR[rt] = cfg;
   2372      1.1  christos 	  }
   2373  1.1.1.5  christos 	else if (op == cp0_eret && sel == 0x18)
   2374      1.1  christos 	  {
   2375      1.1  christos 	    /* ERET */
   2376      1.1  christos 	    if (SR & status_ERL)
   2377      1.1  christos 	      {
   2378      1.1  christos 		/* Oops, not yet available */
   2379      1.1  christos 		sim_io_printf(sd,"Warning: ERET when SR[ERL] set not handled yet");
   2380      1.1  christos 		PC = EPC;
   2381      1.1  christos 		SR &= ~status_ERL;
   2382      1.1  christos 	      }
   2383      1.1  christos 	    else
   2384      1.1  christos 	      {
   2385      1.1  christos 		PC = EPC;
   2386      1.1  christos 		SR &= ~status_EXL;
   2387      1.1  christos 	      }
   2388      1.1  christos 	  }
   2389  1.1.1.5  christos         else if (op == cp0_rfe && sel == 0x10)
   2390      1.1  christos           {
   2391      1.1  christos             /* RFE */
   2392      1.1  christos #ifdef SUBTARGET_R3900
   2393      1.1  christos 	    /* TX39: Copy IEp/KUp -> IEc/KUc, and IEo/KUo -> IEp/KUp */
   2394      1.1  christos 
   2395      1.1  christos 	    /* shift IE/KU history bits right */
   2396      1.1  christos 	    SR = LSMASKED32(SR, 31, 4) | LSINSERTED32(LSEXTRACTED32(SR, 5, 2), 3, 0);
   2397      1.1  christos 
   2398      1.1  christos 	    /* TODO: CACHE register */
   2399      1.1  christos #endif /* SUBTARGET_R3900 */
   2400      1.1  christos           }
   2401  1.1.1.5  christos         else if (op == cp0_deret && sel == 0x1F)
   2402      1.1  christos           {
   2403      1.1  christos             /* DERET */
   2404      1.1  christos             Debug &= ~Debug_DM;
   2405      1.1  christos             DELAYSLOT();
   2406      1.1  christos             DSPC = DEPC;
   2407      1.1  christos           }
   2408      1.1  christos 	else
   2409      1.1  christos 	  sim_io_eprintf(sd,"Unrecognised COP0 instruction 0x%08X at PC = 0x%s : No handler present\n",instruction,pr_addr(cia));
   2410      1.1  christos         /* TODO: When executing an ERET or RFE instruction we should
   2411      1.1  christos            clear LLBIT, to ensure that any out-standing atomic
   2412      1.1  christos            read/modify/write sequence fails. */
   2413      1.1  christos       }
   2414      1.1  christos     break;
   2415  1.1.1.6  christos 
   2416      1.1  christos     case 2: /* co-processor 2 */
   2417      1.1  christos       {
   2418      1.1  christos 	int handle = 0;
   2419      1.1  christos 
   2420      1.1  christos 
   2421  1.1.1.6  christos 	if (!handle)
   2422      1.1  christos 	  {
   2423      1.1  christos 	    sim_io_eprintf(sd, "COP2 instruction 0x%08X at PC = 0x%s : No handler present\n",
   2424      1.1  christos 			   instruction,pr_addr(cia));
   2425      1.1  christos 	  }
   2426      1.1  christos       }
   2427      1.1  christos     break;
   2428  1.1.1.6  christos 
   2429      1.1  christos     case 1: /* should not occur (FPU co-processor) */
   2430      1.1  christos     case 3: /* should not occur (FPU co-processor) */
   2431      1.1  christos       SignalException(ReservedInstruction,instruction);
   2432      1.1  christos       break;
   2433      1.1  christos     }
   2434  1.1.1.6  christos 
   2435      1.1  christos   return;
   2436      1.1  christos }
   2437      1.1  christos 
   2438      1.1  christos 
   2439      1.1  christos /* This code copied from gdb's utils.c.  Would like to share this code,
   2440      1.1  christos    but don't know of a common place where both could get to it. */
   2441      1.1  christos 
   2442      1.1  christos /* Temporary storage using circular buffer */
   2443      1.1  christos #define NUMCELLS 16
   2444      1.1  christos #define CELLSIZE 32
   2445      1.1  christos static char*
   2446      1.1  christos get_cell (void)
   2447      1.1  christos {
   2448      1.1  christos   static char buf[NUMCELLS][CELLSIZE];
   2449      1.1  christos   static int cell=0;
   2450      1.1  christos   if (++cell>=NUMCELLS) cell=0;
   2451      1.1  christos   return buf[cell];
   2452  1.1.1.6  christos }
   2453      1.1  christos 
   2454      1.1  christos /* Print routines to handle variable size regs, etc */
   2455      1.1  christos 
   2456      1.1  christos /* Eliminate warning from compiler on 32-bit systems */
   2457  1.1.1.6  christos static int thirty_two = 32;
   2458      1.1  christos 
   2459  1.1.1.6  christos char*
   2460  1.1.1.4  christos pr_addr (SIM_ADDR addr)
   2461      1.1  christos {
   2462      1.1  christos   char *paddr_str=get_cell();
   2463      1.1  christos   switch (sizeof(addr))
   2464      1.1  christos     {
   2465      1.1  christos       case 8:
   2466      1.1  christos         sprintf(paddr_str,"%08lx%08lx",
   2467      1.1  christos 		(unsigned long)(addr>>thirty_two),(unsigned long)(addr&0xffffffff));
   2468      1.1  christos 	break;
   2469      1.1  christos       case 4:
   2470      1.1  christos         sprintf(paddr_str,"%08lx",(unsigned long)addr);
   2471      1.1  christos 	break;
   2472      1.1  christos       case 2:
   2473      1.1  christos         sprintf(paddr_str,"%04x",(unsigned short)(addr&0xffff));
   2474      1.1  christos 	break;
   2475      1.1  christos       default:
   2476      1.1  christos         sprintf(paddr_str,"%x",addr);
   2477      1.1  christos     }
   2478      1.1  christos   return paddr_str;
   2479      1.1  christos }
   2480      1.1  christos 
   2481  1.1.1.6  christos char*
   2482  1.1.1.4  christos pr_uword64 (uword64 addr)
   2483      1.1  christos {
   2484      1.1  christos   char *paddr_str=get_cell();
   2485      1.1  christos   sprintf(paddr_str,"%08lx%08lx",
   2486      1.1  christos           (unsigned long)(addr>>thirty_two),(unsigned long)(addr&0xffffffff));
   2487      1.1  christos   return paddr_str;
   2488      1.1  christos }
   2489      1.1  christos 
   2490      1.1  christos 
   2491      1.1  christos void
   2492      1.1  christos mips_core_signal (SIM_DESC sd,
   2493      1.1  christos                  sim_cpu *cpu,
   2494      1.1  christos                  sim_cia cia,
   2495      1.1  christos                  unsigned map,
   2496      1.1  christos                  int nr_bytes,
   2497      1.1  christos                  address_word addr,
   2498      1.1  christos                  transfer_type transfer,
   2499      1.1  christos                  sim_core_signals sig)
   2500      1.1  christos {
   2501      1.1  christos   const char *copy = (transfer == read_transfer ? "read" : "write");
   2502      1.1  christos   address_word ip = CIA_ADDR (cia);
   2503      1.1  christos 
   2504      1.1  christos   switch (sig)
   2505      1.1  christos     {
   2506      1.1  christos     case sim_core_unmapped_signal:
   2507      1.1  christos       sim_io_eprintf (sd, "mips-core: %d byte %s to unmapped address 0x%lx at 0x%lx\n",
   2508  1.1.1.6  christos                       nr_bytes, copy,
   2509      1.1  christos 		      (unsigned long) addr, (unsigned long) ip);
   2510      1.1  christos       COP0_BADVADDR = addr;
   2511      1.1  christos       SignalExceptionDataReference();
   2512      1.1  christos       break;
   2513      1.1  christos 
   2514      1.1  christos     case sim_core_unaligned_signal:
   2515      1.1  christos       sim_io_eprintf (sd, "mips-core: %d byte %s to unaligned address 0x%lx at 0x%lx\n",
   2516  1.1.1.6  christos                       nr_bytes, copy,
   2517      1.1  christos 		      (unsigned long) addr, (unsigned long) ip);
   2518      1.1  christos       COP0_BADVADDR = addr;
   2519  1.1.1.6  christos       if (transfer == read_transfer)
   2520      1.1  christos 	SignalExceptionAddressLoad();
   2521      1.1  christos       else
   2522      1.1  christos 	SignalExceptionAddressStore();
   2523      1.1  christos       break;
   2524      1.1  christos 
   2525      1.1  christos     default:
   2526      1.1  christos       sim_engine_abort (sd, cpu, cia,
   2527      1.1  christos                         "mips_core_signal - internal error - bad switch");
   2528      1.1  christos     }
   2529      1.1  christos }
   2530      1.1  christos 
   2531      1.1  christos 
   2532      1.1  christos void
   2533      1.1  christos mips_cpu_exception_trigger(SIM_DESC sd, sim_cpu* cpu, address_word cia)
   2534      1.1  christos {
   2535      1.1  christos   ASSERT(cpu != NULL);
   2536      1.1  christos 
   2537  1.1.1.6  christos   if (cpu->exc_suspended > 0)
   2538  1.1.1.6  christos     sim_io_eprintf(sd, "Warning, nested exception triggered (%d)\n", cpu->exc_suspended);
   2539      1.1  christos 
   2540      1.1  christos   PC = cia;
   2541      1.1  christos   memcpy(cpu->exc_trigger_registers, cpu->registers, sizeof(cpu->exc_trigger_registers));
   2542      1.1  christos   cpu->exc_suspended = 0;
   2543      1.1  christos }
   2544      1.1  christos 
   2545      1.1  christos void
   2546      1.1  christos mips_cpu_exception_suspend(SIM_DESC sd, sim_cpu* cpu, int exception)
   2547      1.1  christos {
   2548      1.1  christos   ASSERT(cpu != NULL);
   2549      1.1  christos 
   2550  1.1.1.6  christos   if (cpu->exc_suspended > 0)
   2551  1.1.1.6  christos     sim_io_eprintf(sd, "Warning, nested exception signal (%d then %d)\n",
   2552  1.1.1.6  christos 		   cpu->exc_suspended, exception);
   2553      1.1  christos 
   2554      1.1  christos   memcpy(cpu->exc_suspend_registers, cpu->registers, sizeof(cpu->exc_suspend_registers));
   2555      1.1  christos   memcpy(cpu->registers, cpu->exc_trigger_registers, sizeof(cpu->registers));
   2556      1.1  christos   cpu->exc_suspended = exception;
   2557      1.1  christos }
   2558      1.1  christos 
   2559      1.1  christos void
   2560      1.1  christos mips_cpu_exception_resume(SIM_DESC sd, sim_cpu* cpu, int exception)
   2561      1.1  christos {
   2562      1.1  christos   ASSERT(cpu != NULL);
   2563      1.1  christos 
   2564  1.1.1.6  christos   if (exception == 0 && cpu->exc_suspended > 0)
   2565      1.1  christos     {
   2566      1.1  christos       /* warn not for breakpoints */
   2567  1.1.1.6  christos       if (cpu->exc_suspended != sim_signal_to_host(sd, SIM_SIGTRAP))
   2568      1.1  christos 	sim_io_eprintf(sd, "Warning, resuming but ignoring pending exception signal (%d)\n",
   2569  1.1.1.6  christos 		       cpu->exc_suspended);
   2570      1.1  christos     }
   2571  1.1.1.6  christos   else if (exception != 0 && cpu->exc_suspended > 0)
   2572      1.1  christos     {
   2573  1.1.1.6  christos       if (exception != cpu->exc_suspended)
   2574      1.1  christos 	sim_io_eprintf(sd, "Warning, resuming with mismatched exception signal (%d vs %d)\n",
   2575  1.1.1.6  christos 		       cpu->exc_suspended, exception);
   2576  1.1.1.6  christos 
   2577  1.1.1.6  christos       memcpy(cpu->registers, cpu->exc_suspend_registers, sizeof(cpu->registers));
   2578      1.1  christos     }
   2579  1.1.1.6  christos   else if (exception != 0 && cpu->exc_suspended == 0)
   2580      1.1  christos     {
   2581  1.1.1.6  christos       sim_io_eprintf(sd, "Warning, ignoring spontanous exception signal (%d)\n", exception);
   2582      1.1  christos     }
   2583  1.1.1.6  christos   cpu->exc_suspended = 0;
   2584      1.1  christos }
   2585      1.1  christos 
   2586      1.1  christos 
   2587      1.1  christos /*---------------------------------------------------------------------------*/
   2588      1.1  christos /*> EOF interp.c <*/
   2589