]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/d10v/interp.c
import gdb-1999-11-16 snapshot
[thirdparty/binutils-gdb.git] / sim / d10v / interp.c
index 1a1ede976b99c9360ddeaf54e52aa3db944c9043..2a9ae043c66f3cb3cfbd51c1fb8b996ba610ca9a 100644 (file)
@@ -1,36 +1,78 @@
 #include <signal.h>
 #include "sysdep.h"
 #include "bfd.h"
+#include "callback.h"
 #include "remote-sim.h"
 
 #include "d10v_sim.h"
-
-#define IMEM_SIZE 18   /* D10V instruction memory size is 18 bits */
-#define DMEM_SIZE 16   /* Data memory */
+#include "sim-d10v.h"
 
 enum _leftright { LEFT_FIRST, RIGHT_FIRST };
 
+static char *myname;
+static SIM_OPEN_KIND sim_kind;
 int d10v_debug;
+
+/* Set this to true to get the previous segment layout. */
+
+int old_segment_mapping;
+
 host_callback *d10v_callback;
-long ins_type_counters[ (int)INS_MAX ];
-long left_nops, right_nops;
+unsigned long ins_type_counters[ (int)INS_MAX ];
 
 uint16 OP[4];
 
+static int init_text_p = 0;
+/* non-zero if we opened prog_bfd */
+static int prog_bfd_was_opened_p;
+bfd *prog_bfd;
+asection *text;
+bfd_vma text_start;
+bfd_vma text_end;
+
+static long hash PARAMS ((long insn, int format));
 static struct hash_entry *lookup_hash PARAMS ((uint32 ins, int size));
+static void get_operands PARAMS ((struct simops *s, uint32 ins));
+static void do_long PARAMS ((uint32 ins));
+static void do_2_short PARAMS ((uint16 ins1, uint16 ins2, enum _leftright leftright));
+static void do_parallel PARAMS ((uint16 ins1, uint16 ins2));
+static char *add_commas PARAMS ((char *buf, int sizeof_buf, unsigned long value));
+extern void sim_set_profile PARAMS ((int n));
+extern void sim_set_profile_size PARAMS ((int n));
+static INLINE uint8 *map_memory (unsigned phys_addr);
+
+#ifdef NEED_UI_LOOP_HOOK
+/* How often to run the ui_loop update, when in use */
+#define UI_LOOP_POLL_INTERVAL 0x14000
+
+/* Counter for the ui_loop_hook update */
+static long ui_loop_hook_counter = UI_LOOP_POLL_INTERVAL;
+
+/* Actual hook to call to run through gdb's gui event loop */
+extern int (*ui_loop_hook) PARAMS ((int signo));
+#endif /* NEED_UI_LOOP_HOOK */
+
+#ifndef INLINE
+#if defined(__GNUC__) && defined(__OPTIMIZE__)
+#define INLINE __inline__
+#else
+#define INLINE
+#endif
+#endif
 
 #define MAX_HASH  63
 struct hash_entry
 {
   struct hash_entry *next;
-  long opcode;
-  long mask;
+  uint32 opcode;
+  uint32 mask;
+  int size;
   struct simops *ops;
 };
 
 struct hash_entry hash_table[MAX_HASH+1];
 
-static long 
+INLINE static long 
 hash(insn, format)
      long insn;
      int format;
@@ -41,7 +83,7 @@ hash(insn, format)
     return((insn & 0x7E00) >> 9);
 }
 
-static struct hash_entry *
+INLINE static struct hash_entry *
 lookup_hash (ins, size)
      uint32 ins;
      int size;
@@ -53,82 +95,21 @@ lookup_hash (ins, size)
   else
     h = &hash_table[(ins & 0x7E00) >> 9];
 
-  while ( (ins & h->mask) != h->opcode)
+  while ((ins & h->mask) != h->opcode || h->size != size)
     {
       if (h->next == NULL)
        {
-         (*d10v_callback->printf_filtered) (d10v_callback, "ERROR looking up hash for %x at PC %x\n",ins, PC);
-         exit(1);
+         (*d10v_callback->printf_filtered)
+           (d10v_callback, "ERROR: Illegal instruction %x at PC %x\n", ins, PC);
+         State.exception = SIGILL;
+         return NULL;
        }
       h = h->next;
     }
   return (h);
 }
 
-uint32
-get_longword (x)
-      uint8 *x;
-{
-  uint8 *a = x;
-  return (a[0]<<24) + (a[1]<<16) + (a[2]<<8) + (a[3]);
-}
-
-int64
-get_longlong (x)
-      uint8 *x;
-{
-  uint8 *a = x;
-  return ((int64)a[0]<<56) + ((int64)a[1]<<48) + ((int64)a[2]<<40) + ((int64)a[3]<<32) +
-    ((int64)a[4]<< 24) + ((int64)a[5]<<16) + ((int64)a[6]<<8) + (int64)a[7];
-}
-
-uint16
-get_word (x)
-      uint8 *x;
-{
-  uint8 *a = x;
-  return ((uint16)a[0]<<8) + a[1];
-}
-
-
-void
-write_word (addr, data)
-     uint8 *addr;
-     uint16 data;
-{
-  uint8 *a = addr;
-  a[0] = data >> 8;
-  a[1] = data & 0xff;
-}
-
-void
-write_longword (addr, data)
-     uint8 *addr;
-     uint32 data;
-{
-  addr[0] = (data >> 24) & 0xff;
-  addr[1] = (data >> 16) & 0xff;
-  addr[2] = (data >> 8) & 0xff;
-  addr[3] = data & 0xff;
-}
-
-void
-write_longlong (addr, data)
-     uint8 *addr;
-     int64 data;
-{
-  uint8 *a = addr;
-  a[0] = data >> 56;
-  a[1] = (data >> 48) & 0xff;
-  a[2] = (data >> 40) & 0xff;
-  a[3] = (data >> 32) & 0xff;
-  a[4] = (data >> 24) & 0xff;
-  a[5] = (data >> 16) & 0xff;
-  a[6] = (data >> 8) & 0xff;
-  a[7] = data & 0xff;
-}
-
-static void
+INLINE static void
 get_operands (struct simops *s, uint32 ins)
 {
   int i, shift, bits, flags;
@@ -141,6 +122,29 @@ get_operands (struct simops *s, uint32 ins)
       mask = 0x7FFFFFFF >> (31 - bits);
       OP[i] = (ins >> shift) & mask;
     }
+  /* FIXME: for tracing, update values that need to be updated each
+     instruction decode cycle */
+  State.trace.psw = PSW;
+}
+
+bfd_vma
+decode_pc ()
+{
+  asection *s;
+  if (!init_text_p && prog_bfd != NULL)
+    {
+      init_text_p = 1;
+      for (s = prog_bfd->sections; s; s = s->next)
+       if (strcmp (bfd_get_section_name (prog_bfd, s), ".text") == 0)
+         {
+           text = s;
+           text_start = bfd_get_section_vma (prog_bfd, s);
+           text_end = text_start + bfd_section_size (prog_bfd, s);
+           break;
+         }
+    }
+
+  return (PC << 2) + text_start;
 }
 
 static void
@@ -153,34 +157,68 @@ do_long (ins)
     (*d10v_callback->printf_filtered) (d10v_callback, "do_long 0x%x\n", ins);
 #endif
   h = lookup_hash (ins, 1);
+  if (h == NULL)
+    return;
   get_operands (h->ops, ins);
   State.ins_type = INS_LONG;
   ins_type_counters[ (int)State.ins_type ]++;
   (h->ops->func)();
 }
+
 static void
 do_2_short (ins1, ins2, leftright)
      uint16 ins1, ins2;
      enum _leftright leftright;
 {
   struct hash_entry *h;
+  enum _ins_type first, second;
+
 #ifdef DEBUG
   if ((d10v_debug & DEBUG_INSTRUCTION) != 0)
     (*d10v_callback->printf_filtered) (d10v_callback, "do_2_short 0x%x (%s) -> 0x%x\n",
                                       ins1, (leftright) ? "left" : "right", ins2);
 #endif
-  /*  printf ("do_2_short %x -> %x\n",ins1,ins2); */
+
+  if (leftright == LEFT_FIRST)
+    {
+      first = INS_LEFT;
+      second = INS_RIGHT;
+      ins_type_counters[ (int)INS_LEFTRIGHT ]++;
+    }
+  else
+    {
+      first = INS_RIGHT;
+      second = INS_LEFT;
+      ins_type_counters[ (int)INS_RIGHTLEFT ]++;
+    }
+
+  /* Issue the first instruction */
   h = lookup_hash (ins1, 0);
+  if (h == NULL)
+    return;
   get_operands (h->ops, ins1);
-  State.ins_type = (leftright == LEFT_FIRST) ? INS_LEFT : INS_RIGHT;
-  ins_type_counters[ (int)State.ins_type ]++;
-  (h->ops->func)();
-  h = lookup_hash (ins2, 0);
-  get_operands (h->ops, ins2);
-  State.ins_type = (leftright == LEFT_FIRST) ? INS_RIGHT : INS_LEFT;
+  State.ins_type = first;
   ins_type_counters[ (int)State.ins_type ]++;
   (h->ops->func)();
+
+  /* Issue the second instruction (if the PC hasn't changed) */
+  if (!State.pc_changed && !State.exception)
+    {
+      /* finish any existing instructions */
+      SLOT_FLUSH ();
+      h = lookup_hash (ins2, 0);
+      if (h == NULL)
+       return;
+      get_operands (h->ops, ins2);
+      State.ins_type = second;
+      ins_type_counters[ (int)State.ins_type ]++;
+      ins_type_counters[ (int)INS_CYCLES ]++;
+      (h->ops->func)();
+    }
+  else if (!State.exception)
+    ins_type_counters[ (int)INS_COND_JUMP ]++;
 }
+
 static void
 do_parallel (ins1, ins2)
      uint16 ins1, ins2;
@@ -190,34 +228,47 @@ do_parallel (ins1, ins2)
   if ((d10v_debug & DEBUG_INSTRUCTION) != 0)
     (*d10v_callback->printf_filtered) (d10v_callback, "do_parallel 0x%x || 0x%x\n", ins1, ins2);
 #endif
+  ins_type_counters[ (int)INS_PARALLEL ]++;
   h1 = lookup_hash (ins1, 0);
+  if (h1 == NULL)
+    return;
   h2 = lookup_hash (ins2, 0);
+  if (h2 == NULL)
+    return;
 
   if (h1->ops->exec_type == PARONLY)
     {
       get_operands (h1->ops, ins1);
-      State.ins_type = INS_LEFT;
+      State.ins_type = INS_LEFT_COND_TEST;
       ins_type_counters[ (int)State.ins_type ]++;
       (h1->ops->func)();
       if (State.exe)
        {
+         ins_type_counters[ (int)INS_COND_TRUE ]++;
          get_operands (h2->ops, ins2);
-         State.ins_type = INS_RIGHT;
+         State.ins_type = INS_RIGHT_COND_EXE;
+         ins_type_counters[ (int)State.ins_type ]++;
          (h2->ops->func)();
        }
+      else
+       ins_type_counters[ (int)INS_COND_FALSE ]++;
     }
   else if (h2->ops->exec_type == PARONLY)
     {
       get_operands (h2->ops, ins2);
-      State.ins_type = INS_RIGHT;
+      State.ins_type = INS_RIGHT_COND_TEST;
       ins_type_counters[ (int)State.ins_type ]++;
       (h2->ops->func)();
       if (State.exe)
        {
+         ins_type_counters[ (int)INS_COND_TRUE ]++;
          get_operands (h1->ops, ins1);
-         State.ins_type = INS_LEFT;
+         State.ins_type = INS_LEFT_COND_EXE;
+         ins_type_counters[ (int)State.ins_type ]++;
          (h1->ops->func)();
        }
+      else
+       ins_type_counters[ (int)INS_COND_FALSE ]++;
     }
   else
     {
@@ -225,101 +276,595 @@ do_parallel (ins1, ins2)
       State.ins_type = INS_LEFT_PARALLEL;
       ins_type_counters[ (int)State.ins_type ]++;
       (h1->ops->func)();
-      get_operands (h2->ops, ins2);
-      State.ins_type = INS_RIGHT_PARALLEL;
-      ins_type_counters[ (int)State.ins_type ]++;
-      (h2->ops->func)();
+      if (!State.exception)
+       {
+         get_operands (h2->ops, ins2);
+         State.ins_type = INS_RIGHT_PARALLEL;
+         ins_type_counters[ (int)State.ins_type ]++;
+         (h2->ops->func)();
+       }
     }
 }
  
+static char *
+add_commas(buf, sizeof_buf, value)
+     char *buf;
+     int sizeof_buf;
+     unsigned long value;
+{
+  int comma = 3;
+  char *endbuf = buf + sizeof_buf - 1;
+
+  *--endbuf = '\0';
+  do {
+    if (comma-- == 0)
+      {
+       *--endbuf = ',';
+       comma = 2;
+      }
+
+    *--endbuf = (value % 10) + '0';
+  } while ((value /= 10) != 0);
+
+  return endbuf;
+}
 
 void
 sim_size (power)
      int power;
 
 {
-  if (State.imem)
+  int i;
+  for (i = 0; i < IMEM_SEGMENTS; i++)
+    {
+      if (State.mem.insn[i])
+       free (State.mem.insn[i]);
+    }
+  for (i = 0; i < DMEM_SEGMENTS; i++)
     {
-      free (State.imem);
-      free (State.dmem);
+      if (State.mem.data[i])
+       free (State.mem.data[i]);
     }
+  for (i = 0; i < UMEM_SEGMENTS; i++)
+    {
+      if (State.mem.unif[i])
+       free (State.mem.unif[i]);
+    }
+  /* Always allocate dmem segment 0.  This contains the IMAP and DMAP
+     registers. */
+  State.mem.data[0] = calloc (1, SEGMENT_SIZE);
+}
+
+/* For tracing - leave info on last access around. */
+static char *last_segname = "invalid";
+static char *last_from = "invalid";
+static char *last_to = "invalid";
+
+enum
+  {
+    IMAP0_OFFSET = 0xff00,
+    DMAP0_OFFSET = 0xff08,
+    DMAP2_SHADDOW = 0xff04,
+    DMAP2_OFFSET = 0xff0c
+  };
 
-  State.imem = (uint8 *)calloc(1,1<<IMEM_SIZE);
-  State.dmem = (uint8 *)calloc(1,1<<DMEM_SIZE);
-  if (!State.imem || !State.dmem )
+static void
+set_dmap_register (int reg_nr, unsigned long value)
+{
+  uint8 *raw = map_memory (SIM_D10V_MEMORY_DATA
+                          + DMAP0_OFFSET + 2 * reg_nr);
+  WRITE_16 (raw, value);
+#ifdef DEBUG
+  if ((d10v_debug & DEBUG_MEMORY))
     {
-      (*d10v_callback->printf_filtered) (d10v_callback, "Memory allocation failed.\n");
-      exit(1);
+      (*d10v_callback->printf_filtered)
+       (d10v_callback, "mem: dmap%d=0x%04lx\n", reg_nr, value);
     }
+#endif
+}
 
+static unsigned long
+dmap_register (int reg_nr)
+{
+  uint8 *raw = map_memory (SIM_D10V_MEMORY_DATA
+                          + DMAP0_OFFSET + 2 * reg_nr);
+  return READ_16 (raw);
+}
+
+static void
+set_imap_register (int reg_nr, unsigned long value)
+{
+  uint8 *raw = map_memory (SIM_D10V_MEMORY_DATA
+                          + IMAP0_OFFSET + 2 * reg_nr);
+  WRITE_16 (raw, value);
 #ifdef DEBUG
-  if ((d10v_debug & DEBUG_MEMSIZE) != 0)
+  if ((d10v_debug & DEBUG_MEMORY))
     {
-      (*d10v_callback->printf_filtered) (d10v_callback, "Allocated %d bytes instruction memory and\n",1<<IMEM_SIZE);
-      (*d10v_callback->printf_filtered) (d10v_callback, "          %d bytes data memory.\n",          1<<DMEM_SIZE);
+      (*d10v_callback->printf_filtered)
+       (d10v_callback, "mem: imap%d=0x%04lx\n", reg_nr, value);
     }
 #endif
 }
 
+static unsigned long
+imap_register (int reg_nr)
+{
+  uint8 *raw = map_memory (SIM_D10V_MEMORY_DATA
+                          + IMAP0_OFFSET + 2 * reg_nr);
+  return READ_16 (raw);
+}
+
+enum
+  {
+    HELD_SPI_IDX = 0,
+    HELD_SPU_IDX = 1
+  };
+
+static unsigned long
+spu_register (void)
+{
+  if (PSW_SM)
+    return GPR (SP_IDX);
+  else
+    return HELD_SP (HELD_SPU_IDX);
+}
+
+static unsigned long
+spi_register (void)
+{
+  if (!PSW_SM)
+    return GPR (SP_IDX);
+  else
+    return HELD_SP (HELD_SPI_IDX);
+}
+
+static void
+set_spi_register (unsigned long value)
+{
+  if (!PSW_SM)
+    SET_GPR (SP_IDX, value);
+  SET_HELD_SP (HELD_SPI_IDX, value);
+}
+
 static void
-init_system ()
+set_spu_register  (unsigned long value)
+{
+  if (PSW_SM)
+    SET_GPR (SP_IDX, value);
+  SET_HELD_SP (HELD_SPU_IDX, value);
+}
+
+/* Given a virtual address in the DMAP address space, translate it
+   into a physical address. */
+
+unsigned long
+sim_d10v_translate_dmap_addr (unsigned long offset,
+                             int nr_bytes,
+                             unsigned long *phys,
+                             unsigned long (*dmap_register) (int reg_nr))
+{
+  short map;
+  int regno;
+  last_from = "logical-data";
+  if (offset >= DMAP_BLOCK_SIZE * SIM_D10V_NR_DMAP_REGS)
+    {
+      /* Logical address out side of data segments, not supported */
+      return 0;
+    }
+  regno = (offset / DMAP_BLOCK_SIZE);
+  offset = (offset % DMAP_BLOCK_SIZE);
+  if ((offset % DMAP_BLOCK_SIZE) + nr_bytes > DMAP_BLOCK_SIZE)
+    {
+      /* Don't cross a BLOCK boundary */
+      nr_bytes = DMAP_BLOCK_SIZE - (offset % DMAP_BLOCK_SIZE);
+    }
+  map = dmap_register (regno);
+  if (regno == 3)
+    {
+      /* Always maps to data memory */
+      int iospi = (offset / 0x1000) % 4;
+      int iosp = (map >> (4 * (3 - iospi))) % 0x10;
+      last_to = "io-space";
+      *phys = (SIM_D10V_MEMORY_DATA + (iosp * 0x10000) + 0xc000 + offset);
+    }
+  else
+    {
+      int sp = ((map & 0x3000) >> 12);
+      int segno = (map & 0x3ff);
+      switch (sp)
+       {
+       case 0: /* 00: Unified memory */
+         *phys = SIM_D10V_MEMORY_UNIFIED + (segno * DMAP_BLOCK_SIZE) + offset;
+         last_to = "unified";
+         break;
+       case 1: /* 01: Instruction Memory */
+         *phys = SIM_D10V_MEMORY_INSN + (segno * DMAP_BLOCK_SIZE) + offset;
+         last_to = "chip-insn";
+         break;
+       case 2: /* 10: Internal data memory */
+         *phys = SIM_D10V_MEMORY_DATA + (segno << 16) + (regno * DMAP_BLOCK_SIZE) + offset;
+         last_to = "chip-data";
+         break;
+       case 3: /* 11: Reserved */
+         return 0;
+       }
+    }
+  return nr_bytes;
+}
+
+/* Given a virtual address in the IMAP address space, translate it
+   into a physical address. */
+
+unsigned long
+sim_d10v_translate_imap_addr (unsigned long offset,
+                             int nr_bytes,
+                             unsigned long *phys,
+                             unsigned long (*imap_register) (int reg_nr))
+{
+  short map;
+  int regno;
+  int sp;
+  int segno;
+  last_from = "logical-insn";
+  if (offset >= (IMAP_BLOCK_SIZE * SIM_D10V_NR_IMAP_REGS))
+    {
+      /* Logical address outside of IMAP segments, not supported */
+      return 0;
+    }
+  regno = (offset / IMAP_BLOCK_SIZE);
+  offset = (offset % IMAP_BLOCK_SIZE);
+  if (offset + nr_bytes > IMAP_BLOCK_SIZE)
+    {
+      /* Don't cross a BLOCK boundary */
+      nr_bytes = IMAP_BLOCK_SIZE - offset;
+    }
+  map = imap_register (regno);
+  sp = (map & 0x3000) >> 12;
+  segno = (map & 0x007f);
+  switch (sp)
+    {
+    case 0: /* 00: unified memory */
+      *phys = SIM_D10V_MEMORY_UNIFIED + (segno << 17) + offset;
+      last_to = "unified";
+      break;
+    case 1: /* 01: instruction memory */
+      *phys = SIM_D10V_MEMORY_INSN + (IMAP_BLOCK_SIZE * regno) + offset;
+      last_to = "chip-insn";
+      break;
+    case 2: /*10*/
+      /* Reserved. */
+      return 0;
+    case 3: /* 11: for testing  - instruction memory */
+      offset = (offset % 0x800);
+      *phys = SIM_D10V_MEMORY_INSN + offset;
+      if (offset + nr_bytes > 0x800)
+       /* don't cross VM boundary */
+       nr_bytes = 0x800 - offset;
+      last_to = "test-insn";
+      break;
+    }
+  return nr_bytes;
+}
+
+unsigned long
+sim_d10v_translate_addr (unsigned long memaddr,
+                        int nr_bytes,
+                        unsigned long *targ_addr,
+                        unsigned long (*dmap_register) (int reg_nr),
+                        unsigned long (*imap_register) (int reg_nr))
 {
-  if (!State.imem)
-    sim_size(1);
+  unsigned long phys;
+  unsigned long seg;
+  unsigned long off;
+
+  last_from = "unknown";
+  last_to = "unknown";
+
+  seg = (memaddr >> 24);
+  off = (memaddr & 0xffffffL);
+
+  /* However, if we've asked to use the previous generation of segment
+     mapping, rearrange the segments as follows. */
+
+  if (old_segment_mapping)
+    {
+      switch (seg)
+       {
+       case 0x00: /* DMAP translated memory */
+         seg = 0x10;
+         break;
+       case 0x01: /* IMAP translated memory */
+         seg = 0x11;
+         break;
+       case 0x10: /* On-chip data memory */
+         seg = 0x02;
+         break;
+       case 0x11: /* On-chip insn memory */
+         seg = 0x01;
+         break;
+       case 0x12: /* Unified memory */
+         seg = 0x00;
+         break;
+       }
+    }
+
+  switch (seg)
+    {
+    case 0x00:                 /* Physical unified memory */
+      last_from = "phys-unified";
+      last_to = "unified";
+      phys = SIM_D10V_MEMORY_UNIFIED + off;
+      if ((off % SEGMENT_SIZE) + nr_bytes > SEGMENT_SIZE)
+       nr_bytes = SEGMENT_SIZE - (off % SEGMENT_SIZE);
+      break;
+
+    case 0x01:                 /* Physical instruction memory */
+      last_from = "phys-insn";
+      last_to = "chip-insn";
+      phys = SIM_D10V_MEMORY_INSN + off;
+      if ((off % SEGMENT_SIZE) + nr_bytes > SEGMENT_SIZE)
+       nr_bytes = SEGMENT_SIZE - (off % SEGMENT_SIZE);
+      break;
+
+    case 0x02:                 /* Physical data memory segment */
+      last_from = "phys-data";
+      last_to = "chip-data";
+      phys = SIM_D10V_MEMORY_DATA + off;
+      if ((off % SEGMENT_SIZE) + nr_bytes > SEGMENT_SIZE)
+       nr_bytes = SEGMENT_SIZE - (off % SEGMENT_SIZE);
+      break;
+
+    case 0x10:                 /* in logical data address segment */
+      nr_bytes = sim_d10v_translate_dmap_addr (off, nr_bytes, &phys,
+                                              dmap_register);
+      break;
+
+    case 0x11:                 /* in logical instruction address segment */
+      nr_bytes = sim_d10v_translate_imap_addr (off, nr_bytes, &phys,
+                                              imap_register);
+      break;
+
+    default:
+      return 0;
+    }
+
+  *targ_addr = phys;
+  return nr_bytes;
+}
+
+/* Return a pointer into the raw buffer designated by phys_addr.  It
+   is assumed that the client has already ensured that the access
+   isn't going to cross a segment boundary. */
+
+uint8 *
+map_memory (unsigned phys_addr)
+{
+  uint8 **memory;
+  uint8 *raw;
+  unsigned offset;
+  int segment = ((phys_addr >> 24) & 0xff);
+  
+  switch (segment)
+    {
+      
+    case 0x00: /* Unified memory */
+      {
+       memory = &State.mem.unif[(phys_addr / SEGMENT_SIZE) % UMEM_SEGMENTS];
+       last_segname = "umem";
+       break;
+      }
+    
+    case 0x01: /* On-chip insn memory */
+      {
+       memory = &State.mem.insn[(phys_addr / SEGMENT_SIZE) % IMEM_SEGMENTS];
+       last_segname = "imem";
+       break;
+      }
+    
+    case 0x02: /* On-chip data memory */
+      {
+       if ((phys_addr & 0xff00) == 0xff00)
+         {
+           phys_addr = (phys_addr & 0xffff);
+           if (phys_addr == DMAP2_SHADDOW)
+             {
+               phys_addr = DMAP2_OFFSET;
+               last_segname = "dmap";
+             }
+           else
+             last_segname = "reg";
+         }
+       else
+         last_segname = "dmem";
+       memory = &State.mem.data[(phys_addr / SEGMENT_SIZE) % DMEM_SEGMENTS];
+       break;
+      }
+    
+    default:
+      /* OOPS! */
+      last_segname = "scrap";
+      return State.mem.fault;
+    }
+  
+  if (*memory == NULL)
+    {
+      *memory = calloc (1, SEGMENT_SIZE);
+      if (*memory == NULL)
+       {
+         (*d10v_callback->printf_filtered) (d10v_callback, "Malloc failed.\n");
+         return State.mem.fault;
+       }
+    }
+  
+  offset = (phys_addr % SEGMENT_SIZE);
+  raw = *memory + offset;
+  return raw;
+}
+  
+/* Transfer data to/from simulated memory.  Since a bug in either the
+   simulated program or in gdb or the simulator itself may cause a
+   bogus address to be passed in, we need to do some sanity checking
+   on addresses to make sure they are within bounds.  When an address
+   fails the bounds check, treat it as a zero length read/write rather
+   than aborting the entire run. */
+
+static int
+xfer_mem (SIM_ADDR virt,
+         unsigned char *buffer,
+         int size,
+         int write_p)
+{
+  int xfered = 0;
+
+  while (xfered < size)
+    {
+      uint8 *memory;
+      unsigned long phys;
+      int phys_size;
+      phys_size = sim_d10v_translate_addr (virt, size,
+                                          &phys,
+                                          dmap_register,
+                                          imap_register);
+      if (phys_size == 0)
+       return xfered;
+
+      memory = map_memory (phys);
+
+#ifdef DEBUG
+      if ((d10v_debug & DEBUG_INSTRUCTION) != 0)
+       {
+         (*d10v_callback->printf_filtered)
+           (d10v_callback,
+            "sim_%s %d bytes: 0x%08lx (%s) -> 0x%08lx (%s) -> 0x%08lx (%s)\n",
+            (write_p ? "write" : "read"),
+            phys_size, virt, last_from,
+            phys, last_to,
+            (long) memory, last_segname);
+       }
+#endif
+
+      if (write_p)
+       {
+         memcpy (memory, buffer, phys_size);
+       }
+      else
+       {
+         memcpy (buffer, memory, phys_size);
+       }
+
+      virt += phys_size;
+      buffer += phys_size;
+      xfered += phys_size;
+    }
+
+  return size;
 }
 
+
 int
-sim_write (addr, buffer, size)
+sim_write (sd, addr, buffer, size)
+     SIM_DESC sd;
      SIM_ADDR addr;
      unsigned char *buffer;
      int size;
 {
-  int i;
-  init_system ();
+  /* FIXME: this should be performing a virtual transfer */
+  return xfer_mem( addr, buffer, size, 1);
+}
 
-  /* (*d10v_callback->printf_filtered) (d10v_callback, "sim_write %d bytes to 0x%x\n",size,addr); */
-  for (i = 0; i < size; i++)
-    {
-      State.imem[i+addr] = buffer[i]; 
-    }
-  return size;
+int
+sim_read (sd, addr, buffer, size)
+     SIM_DESC sd;
+     SIM_ADDR addr;
+     unsigned char *buffer;
+     int size;
+{
+  /* FIXME: this should be performing a virtual transfer */
+  return xfer_mem( addr, buffer, size, 0);
 }
 
-void
-sim_open (args)
-     char *args;
+
+SIM_DESC
+sim_open (kind, callback, abfd, argv)
+     SIM_OPEN_KIND kind;
+     host_callback *callback;
+     struct _bfd *abfd;
+     char **argv;
 {
   struct simops *s;
-  struct hash_entry *h, *prev;
-  if (args != NULL)
-    (*d10v_callback->printf_filtered) (d10v_callback, "sim_open %s\n",args);
+  struct hash_entry *h;
+  static int init_p = 0;
+  char **p;
 
+  sim_kind = kind;
+  d10v_callback = callback;
+  myname = argv[0];
+  old_segment_mapping = 0;
+
+  /* NOTE: This argument parsing is only effective when this function
+     is called by GDB. Standalone argument parsing is handled by
+     sim/common/run.c. */
+  for (p = argv + 1; *p; ++p)
+    {
+      if (strcmp (*p, "-oldseg") == 0)
+       old_segment_mapping = 1;
+#ifdef DEBUG
+      else if (strcmp (*p, "-t") == 0)
+       d10v_debug = DEBUG;
+      else if (strncmp (*p, "-t", 2) == 0)
+       d10v_debug = atoi (*p + 2);
+#endif
+      else
+       (*d10v_callback->printf_filtered) (d10v_callback, "ERROR: unsupported option(s): %s\n",*p);
+    }
+  
   /* put all the opcodes in the hash table */
-  for (s = Simops; s->func; s++)
+  if (!init_p++)
     {
-      h = &hash_table[hash(s->opcode,s->format)];
+      for (s = Simops; s->func; s++)
+       {
+         h = &hash_table[hash(s->opcode,s->format)];
       
-      /* go to the last entry in the chain */
-      while (h->next)
-         h = h->next;
+         /* go to the last entry in the chain */
+         while (h->next)
+           h = h->next;
 
-      if (h->ops)
-       {
-         h->next = calloc(1,sizeof(struct hash_entry));
-         h = h->next;
+         if (h->ops)
+           {
+             h->next = (struct hash_entry *) calloc(1,sizeof(struct hash_entry));
+             if (!h->next)
+               perror ("malloc failure");
+
+             h = h->next;
+           }
+         h->ops = s;
+         h->mask = s->mask;
+         h->opcode = s->opcode;
+         h->size = s->is_long;
        }
-      h->ops = s;
-      h->mask = s->mask;
-      h->opcode = s->opcode;
     }
+
+  /* reset the processor state */
+  if (!State.mem.data[0])
+    sim_size (1);
+  sim_create_inferior ((SIM_DESC) 1, NULL, NULL, NULL);
+
+  /* Fudge our descriptor.  */
+  return (SIM_DESC) 1;
 }
 
 
 void
-sim_close (quitting)
+sim_close (sd, quitting)
+     SIM_DESC sd;
      int quitting;
 {
-  /* nothing to do */
+  if (prog_bfd != NULL && prog_bfd_was_opened_p)
+    {
+      bfd_close (prog_bfd);
+      prog_bfd = NULL;
+      prog_bfd_was_opened_p = 0;
+    }
 }
 
 void
@@ -336,212 +881,548 @@ sim_set_profile_size (n)
   (*d10v_callback->printf_filtered) (d10v_callback, "sim_set_profile_size %d\n",n);
 }
 
+uint8 *
+dmem_addr (uint16 offset)
+{
+  unsigned long phys;
+  uint8 *mem;
+  int phys_size;
+
+  /* Note: DMEM address range is 0..0x10000. Calling code can compute
+     things like ``0xfffe + 0x0e60 == 0x10e5d''.  Since offset's type
+     is uint16 this is modulo'ed onto 0x0e5d. */
+
+  phys_size = sim_d10v_translate_dmap_addr (offset, 1, &phys,
+                                           dmap_register);
+  if (phys_size == 0)
+    {
+      mem = State.mem.fault;
+    }
+  else
+    mem = map_memory (phys);
+#ifdef DEBUG
+  if ((d10v_debug & DEBUG_MEMORY))
+    {
+      (*d10v_callback->printf_filtered)
+       (d10v_callback,
+        "mem: 0x%08x (%s) -> 0x%08lx %d (%s) -> 0x%08lx (%s)\n",
+        offset, last_from,
+        phys, phys_size, last_to,
+        (long) mem, last_segname);
+    }
+#endif
+  return mem;
+}
+
+uint8 *
+imem_addr (uint32 offset)
+{
+  unsigned long phys;
+  uint8 *mem;
+  int phys_size = sim_d10v_translate_imap_addr (offset, 1, &phys, imap_register);
+  if (phys_size == 0)
+    {
+      return State.mem.fault;
+    }
+  mem = map_memory (phys); 
+#ifdef DEBUG
+  if ((d10v_debug & DEBUG_MEMORY))
+    {
+      (*d10v_callback->printf_filtered)
+       (d10v_callback,
+        "mem: 0x%08x (%s) -> 0x%08lx %d (%s) -> 0x%08lx (%s)\n",
+        offset, last_from,
+        phys, phys_size, last_to,
+        (long) mem, last_segname);
+    }
+#endif
+  return mem;
+}
+
+static int stop_simulator = 0;
+
+int
+sim_stop (sd)
+     SIM_DESC sd;
+{
+  stop_simulator = 1;
+  return 1;
+}
+
+
+/* Run (or resume) the program.  */
 void
-sim_resume (step, siggnal)
+sim_resume (sd, step, siggnal)
+     SIM_DESC sd;
      int step, siggnal;
 {
   uint32 inst;
-  int i;
-  reg_t oldpc;
+  uint8 *iaddr;
 
 /*   (*d10v_callback->printf_filtered) (d10v_callback, "sim_resume (%d,%d)  PC=0x%x\n",step,siggnal,PC); */
+  State.exception = 0;
+  if (step)
+    sim_stop (sd);
 
- if (step)
-   State.exception = SIGTRAP;
- else
-   State.exception = 0;
+  do
+    {
+      iaddr = imem_addr ((uint32)PC << 2);
+      if (iaddr == State.mem.fault)
+       {
+         State.exception = SIGBUS;
+         break;
+       }
+      inst = get_longword( iaddr ); 
  
- do
-   {
-     inst = RLW (PC << 2); 
-     oldpc = PC;
-     switch (inst & 0xC0000000)
-       {
-       case 0xC0000000:
-        /* long instruction */
-        do_long (inst & 0x3FFFFFFF);
-        break;
-       case 0x80000000:
-        /* R -> L */
-        do_2_short ( inst & 0x7FFF, (inst & 0x3FFF8000) >> 15, 0);
-        break;
-       case 0x40000000:
-        /* L -> R */
-        do_2_short ((inst & 0x3FFF8000) >> 15, inst & 0x7FFF, 1);
-        break;
-       case 0:
-        do_parallel ((inst & 0x3FFF8000) >> 15, inst & 0x7FFF);
-        break;
-       }
-     
-     if (State.RP && PC == RPT_E)
-       {
-        RPT_C -= 1;
-        if (RPT_C == 0)
-          State.RP = 0;
-        else
-          PC = RPT_S;
-       }
-     
-     /* FIXME */
-     if (PC == oldpc)
-       PC++;
-   } 
- while (!State.exception);
+      State.pc_changed = 0;
+      ins_type_counters[ (int)INS_CYCLES ]++;
+      
+      switch (inst & 0xC0000000)
+       {
+       case 0xC0000000:
+         /* long instruction */
+         do_long (inst & 0x3FFFFFFF);
+         break;
+       case 0x80000000:
+         /* R -> L */
+         do_2_short ( inst & 0x7FFF, (inst & 0x3FFF8000) >> 15, RIGHT_FIRST);
+         break;
+       case 0x40000000:
+         /* L -> R */
+         do_2_short ((inst & 0x3FFF8000) >> 15, inst & 0x7FFF, LEFT_FIRST);
+         break;
+       case 0:
+         do_parallel ((inst & 0x3FFF8000) >> 15, inst & 0x7FFF);
+         break;
+       }
+      
+      /* If the PC of the current instruction matches RPT_E then
+        schedule a branch to the loop start.  If one of those
+        instructions happens to be a branch, than that instruction
+        will be ignored */
+      if (!State.pc_changed)
+       {
+         if (PSW_RP && PC == RPT_E)
+           {
+             /* Note: The behavour of a branch instruction at RPT_E
+                is implementation dependant, this simulator takes the
+                branch.  Branching to RPT_E is valid, the instruction
+                must be executed before the loop is taken.  */
+             if (RPT_C == 1)
+               {
+                 SET_PSW_RP (0);
+                 SET_RPT_C (0);
+                 SET_PC (PC + 1);
+               }
+             else
+               {
+                 SET_RPT_C (RPT_C - 1);
+                 SET_PC (RPT_S);
+               }
+           }
+         else
+           SET_PC (PC + 1);
+       }         
+      
+      /* Check for a breakpoint trap on this instruction.  This
+        overrides any pending branches or loops */
+      if (PSW_DB && PC == IBA)
+       {
+         SET_BPC (PC);
+         SET_BPSW (PSW);
+         SET_PSW (PSW & PSW_SM_BIT);
+         SET_PC (SDBT_VECTOR_START);
+       }
+
+      /* Writeback all the DATA / PC changes */
+      SLOT_FLUSH ();
+
+#ifdef NEED_UI_LOOP_HOOK
+      if (ui_loop_hook != NULL && ui_loop_hook_counter-- < 0)
+       {
+         ui_loop_hook_counter = UI_LOOP_POLL_INTERVAL;
+         ui_loop_hook (0);
+       }
+#endif /* NEED_UI_LOOP_HOOK */
+    }
+  while ( !State.exception && !stop_simulator);
+  
+  if (step && !State.exception)
+    State.exception = SIGTRAP;
 }
 
 int
-sim_trace ()
+sim_trace (sd)
+     SIM_DESC sd;
 {
 #ifdef DEBUG
   d10v_debug = DEBUG;
 #endif
-  sim_resume (0, 0);
+  sim_resume (sd, 0, 0);
   return 1;
 }
 
 void
-sim_info (verbose)
+sim_info (sd, verbose)
+     SIM_DESC sd;
      int verbose;
 {
-  char buf[40];
-  int size;
-  long total = (ins_type_counters[ (int)INS_LONG ]
-               + ins_type_counters[ (int)INS_LEFT ]
-               + ins_type_counters[ (int)INS_LEFT_PARALLEL ]
-               + ins_type_counters[ (int)INS_RIGHT ]
-               + ins_type_counters[ (int)INS_RIGHT_PARALLEL ]);
+  char buf1[40];
+  char buf2[40];
+  char buf3[40];
+  char buf4[40];
+  char buf5[40];
+  unsigned long left           = ins_type_counters[ (int)INS_LEFT ] + ins_type_counters[ (int)INS_LEFT_COND_EXE ];
+  unsigned long left_nops      = ins_type_counters[ (int)INS_LEFT_NOPS ];
+  unsigned long left_parallel  = ins_type_counters[ (int)INS_LEFT_PARALLEL ];
+  unsigned long left_cond      = ins_type_counters[ (int)INS_LEFT_COND_TEST ];
+  unsigned long left_total     = left + left_parallel + left_cond + left_nops;
+
+  unsigned long right          = ins_type_counters[ (int)INS_RIGHT ] + ins_type_counters[ (int)INS_RIGHT_COND_EXE ];
+  unsigned long right_nops     = ins_type_counters[ (int)INS_RIGHT_NOPS ];
+  unsigned long right_parallel = ins_type_counters[ (int)INS_RIGHT_PARALLEL ];
+  unsigned long right_cond     = ins_type_counters[ (int)INS_RIGHT_COND_TEST ];
+  unsigned long right_total    = right + right_parallel + right_cond + right_nops;
+
+  unsigned long unknown                = ins_type_counters[ (int)INS_UNKNOWN ];
+  unsigned long ins_long       = ins_type_counters[ (int)INS_LONG ];
+  unsigned long parallel       = ins_type_counters[ (int)INS_PARALLEL ];
+  unsigned long leftright      = ins_type_counters[ (int)INS_LEFTRIGHT ];
+  unsigned long rightleft      = ins_type_counters[ (int)INS_RIGHTLEFT ];
+  unsigned long cond_true      = ins_type_counters[ (int)INS_COND_TRUE ];
+  unsigned long cond_false     = ins_type_counters[ (int)INS_COND_FALSE ];
+  unsigned long cond_jump      = ins_type_counters[ (int)INS_COND_JUMP ];
+  unsigned long cycles         = ins_type_counters[ (int)INS_CYCLES ];
+  unsigned long total          = (unknown + left_total + right_total + ins_long);
 
-  sprintf (buf, "%ld", total);
-  size = strlen (buf);
+  int size                     = strlen (add_commas (buf1, sizeof (buf1), total));
+  int parallel_size            = strlen (add_commas (buf1, sizeof (buf1),
+                                                     (left_parallel > right_parallel) ? left_parallel : right_parallel));
+  int cond_size                        = strlen (add_commas (buf1, sizeof (buf1), (left_cond > right_cond) ? left_cond : right_cond));
+  int nop_size                 = strlen (add_commas (buf1, sizeof (buf1), (left_nops > right_nops) ? left_nops : right_nops));
+  int normal_size              = strlen (add_commas (buf1, sizeof (buf1), (left > right) ? left : right));
 
   (*d10v_callback->printf_filtered) (d10v_callback,
-                                    "executed %*ld instructions in the left  container, %*ld parallel, %*ld nops\n",
-                                    size, ins_type_counters[ (int)INS_LEFT ] + ins_type_counters[ (int)INS_LEFT_PARALLEL ],
-                                    size, ins_type_counters[ (int)INS_LEFT_PARALLEL ],
-                                    size, left_nops);
+                                    "executed %*s left  instruction(s), %*s normal, %*s parallel, %*s EXExxx, %*s nops\n",
+                                    size, add_commas (buf1, sizeof (buf1), left_total),
+                                    normal_size, add_commas (buf2, sizeof (buf2), left),
+                                    parallel_size, add_commas (buf3, sizeof (buf3), left_parallel),
+                                    cond_size, add_commas (buf4, sizeof (buf4), left_cond),
+                                    nop_size, add_commas (buf5, sizeof (buf5), left_nops));
 
   (*d10v_callback->printf_filtered) (d10v_callback,
-                                    "executed %*ld instructions in the right container, %*ld parallel, %*ld nops\n",
-                                    size, ins_type_counters[ (int)INS_RIGHT ] + ins_type_counters[ (int)INS_RIGHT_PARALLEL ],
-                                    size, ins_type_counters[ (int)INS_RIGHT_PARALLEL ],
-                                    size, right_nops);
+                                    "executed %*s right instruction(s), %*s normal, %*s parallel, %*s EXExxx, %*s nops\n",
+                                    size, add_commas (buf1, sizeof (buf1), right_total),
+                                    normal_size, add_commas (buf2, sizeof (buf2), right),
+                                    parallel_size, add_commas (buf3, sizeof (buf3), right_parallel),
+                                    cond_size, add_commas (buf4, sizeof (buf4), right_cond),
+                                    nop_size, add_commas (buf5, sizeof (buf5), right_nops));
+
+  if (ins_long)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "executed %*s long instruction(s)\n",
+                                      size, add_commas (buf1, sizeof (buf1), ins_long));
+
+  if (parallel)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "executed %*s parallel instruction(s)\n",
+                                      size, add_commas (buf1, sizeof (buf1), parallel));
+
+  if (leftright)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "executed %*s instruction(s) encoded L->R\n",
+                                      size, add_commas (buf1, sizeof (buf1), leftright));
+
+  if (rightleft)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "executed %*s instruction(s) encoded R->L\n",
+                                      size, add_commas (buf1, sizeof (buf1), rightleft));
+
+  if (unknown)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "executed %*s unknown instruction(s)\n",
+                                      size, add_commas (buf1, sizeof (buf1), unknown));
+
+  if (cond_true)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "executed %*s instruction(s) due to EXExxx condition being true\n",
+                                      size, add_commas (buf1, sizeof (buf1), cond_true));
+
+  if (cond_false)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "skipped  %*s instruction(s) due to EXExxx condition being false\n",
+                                      size, add_commas (buf1, sizeof (buf1), cond_false));
+
+  if (cond_jump)
+    (*d10v_callback->printf_filtered) (d10v_callback,
+                                      "skipped  %*s instruction(s) due to conditional branch succeeding\n",
+                                      size, add_commas (buf1, sizeof (buf1), cond_jump));
 
   (*d10v_callback->printf_filtered) (d10v_callback,
-                                    "executed %*ld long instructions\n",
-                                    size, ins_type_counters[ (int)INS_LONG ]);
+                                    "executed %*s cycle(s)\n",
+                                    size, add_commas (buf1, sizeof (buf1), cycles));
 
   (*d10v_callback->printf_filtered) (d10v_callback,
-                                    "executed %*ld total instructions\n",
-                                    size, total);
+                                    "executed %*s total instructions\n",
+                                    size, add_commas (buf1, sizeof (buf1), total));
 }
 
-void
-sim_create_inferior (start_address, argv, env)
-     SIM_ADDR start_address;
+SIM_RC
+sim_create_inferior (sd, abfd, argv, env)
+     SIM_DESC sd;
+     struct _bfd *abfd;
      char **argv;
      char **env;
 {
+  bfd_vma start_address;
+
+  /* reset all state information */
+  memset (&State.regs, 0, (int)&State.mem - (int)&State.regs);
+
+  if (argv)
+    {
+      /* a hack to set r0/r1 with argc/argv */
+      /* some high memory that won't be overwritten by the stack soon */
+      bfd_vma addr = 0x7C00;
+      int p = 20;
+      int i = 0;
+      while (argv[i])
+       {
+         int size = strlen (argv[i]) + 1;
+         SW (addr + 2*i, addr + p); 
+         sim_write (sd, addr + 0, argv[i], size);
+         p += size;
+         i++;
+       }
+      SET_GPR (0, addr);
+      SET_GPR (1, i);
+    }
+
+  /* set PC */
+  if (abfd != NULL)
+    start_address = bfd_get_start_address (abfd);
+  else
+    start_address = 0xffc0 << 2;
 #ifdef DEBUG
   if (d10v_debug)
-    (*d10v_callback->printf_filtered) (d10v_callback, "sim_create_inferior:  PC=0x%x\n", start_address);
+    (*d10v_callback->printf_filtered) (d10v_callback, "sim_create_inferior:  PC=0x%lx\n", (long) start_address);
 #endif
-  PC = start_address >> 2;
-}
+  SET_CREG (PC_CR, start_address >> 2);
 
+  /* cpu resets imap0 to 0 and imap1 to 0x7f, but D10V-EVA board
+     initializes imap0 and imap1 to 0x1000 as part of its ROM
+     initialization. */
+  if (old_segment_mapping)
+    {
+      /* External memory startup.  This is the HARD reset state. */
+      set_imap_register (0, 0x0000);
+      set_imap_register (1, 0x007f);
+      set_dmap_register (0, 0x2000);
+      set_dmap_register (1, 0x2000);
+      set_dmap_register (2, 0x0000); /* Old DMAP */
+      set_dmap_register (3, 0x0000);
+    }
+  else
+    {
+      /* Internal memory startup. This is the ROM intialized state. */
+      set_imap_register (0, 0x1000);
+      set_imap_register (1, 0x1000);
+      set_dmap_register (0, 0x2000);
+      set_dmap_register (1, 0x2000);
+      set_dmap_register (2, 0x0000); /* Old DMAP, Value is not 0x2000 */
+      set_dmap_register (3, 0x0000);
+    }
 
-void
-sim_kill ()
-{
-  /* nothing to do */
+  SLOT_FLUSH ();
+  return SIM_RC_OK;
 }
 
+
 void
-sim_set_callbacks(p)
+sim_set_callbacks (p)
      host_callback *p;
 {
-/*  printf ("sim_set_callbacks\n"); */
   d10v_callback = p;
 }
 
 void
-sim_stop_reason (reason, sigrc)
+sim_stop_reason (sd, reason, sigrc)
+     SIM_DESC sd;
      enum sim_stop *reason;
      int *sigrc;
 {
 /*   (*d10v_callback->printf_filtered) (d10v_callback, "sim_stop_reason:  PC=0x%x\n",PC<<2); */
 
-  if (State.exception == SIGQUIT)
+  switch (State.exception)
     {
+    case SIG_D10V_STOP:                        /* stop instruction */
       *reason = sim_exited;
-      *sigrc = State.exception;
-    }
-  else
-    {
+      *sigrc = 0;
+      break;
+
+    case SIG_D10V_EXIT:                        /* exit trap */
+      *reason = sim_exited;
+      *sigrc = GPR (0);
+      break;
+
+    default:                           /* some signal */
       *reason = sim_stopped;
-      *sigrc = State.exception;
-    } 
+      if (stop_simulator && !State.exception)
+       *sigrc = SIGINT;
+      else
+       *sigrc = State.exception;
+      break;
+    }
+
+  stop_simulator = 0;
 }
 
-void
-sim_fetch_register (rn, memory)
+int
+sim_fetch_register (sd, rn, memory, length)
+     SIM_DESC sd;
      int rn;
      unsigned char *memory;
+     int length;
 {
-  if (rn > 31)
+  int size;
+  if (rn < 0)
+    size = 0;
+  else if (rn >= SIM_D10V_R0_REGNUM
+          && rn < SIM_D10V_R0_REGNUM + SIM_D10V_NR_R_REGS)
     {
-      WRITE_64 (memory, State.a[rn-32]);
-      /* (*d10v_callback->printf_filtered) (d10v_callback, "sim_fetch_register %d 0x%llx\n",rn,State.a[rn-32]); */
+      WRITE_16 (memory, GPR (rn - SIM_D10V_R0_REGNUM));
+      size = 2;
     }
-  else
+  else if (rn >= SIM_D10V_CR0_REGNUM
+          && rn < SIM_D10V_CR0_REGNUM + SIM_D10V_NR_CR_REGS)
+    {
+      WRITE_16 (memory, CREG (rn - SIM_D10V_CR0_REGNUM));
+      size = 2;
+    }
+  else if (rn >= SIM_D10V_A0_REGNUM
+          && rn < SIM_D10V_A0_REGNUM + SIM_D10V_NR_A_REGS)
+    {
+      WRITE_64 (memory, ACC (rn - SIM_D10V_A0_REGNUM));
+      size = 8;
+    }
+  else if (rn == SIM_D10V_SPI_REGNUM)
+    {
+      /* PSW_SM indicates that the current SP is the USER
+         stack-pointer. */
+      WRITE_16 (memory, spi_register ());
+      size = 2;
+    }
+  else if (rn == SIM_D10V_SPU_REGNUM)
+    {
+      /* PSW_SM indicates that the current SP is the USER
+         stack-pointer. */
+      WRITE_16 (memory, spu_register ());
+      size = 2;
+    }
+  else if (rn >= SIM_D10V_IMAP0_REGNUM
+          && rn < SIM_D10V_IMAP0_REGNUM + SIM_D10V_NR_IMAP_REGS)
+    {
+      WRITE_16 (memory, imap_register (rn - SIM_D10V_IMAP0_REGNUM));
+      size = 2;
+    }
+  else if (rn >= SIM_D10V_DMAP0_REGNUM
+          && rn < SIM_D10V_DMAP0_REGNUM + SIM_D10V_NR_DMAP_REGS)
     {
-      WRITE_16 (memory, State.regs[rn]);
-      /* (*d10v_callback->printf_filtered) (d10v_callback, "sim_fetch_register %d 0x%x\n",rn,State.regs[rn]); */
+      WRITE_16 (memory, dmap_register (rn - SIM_D10V_DMAP0_REGNUM));
+      size = 2;
     }
+  else
+    size = 0;
+  return size;
 }
  
-void
-sim_store_register (rn, memory)
+int
+sim_store_register (sd, rn, memory, length)
+     SIM_DESC sd;
      int rn;
      unsigned char *memory;
+     int length;
 {
-  if (rn > 31)
+  int size;
+  if (rn < 0)
+    size = 0;
+  else if (rn >= SIM_D10V_R0_REGNUM
+          && rn < SIM_D10V_R0_REGNUM + SIM_D10V_NR_R_REGS)
     {
-      State.a[rn-32] =  READ_64 (memory) & MASK40;
-      /* (*d10v_callback->printf_filtered) (d10v_callback, "store: a%d=0x%llx\n",rn-32,State.a[rn-32]); */
+      SET_GPR (rn - SIM_D10V_R0_REGNUM, READ_16 (memory));
+      size = 2;
     }
-  else
+  else if (rn >= SIM_D10V_CR0_REGNUM
+          && rn < SIM_D10V_CR0_REGNUM + SIM_D10V_NR_CR_REGS)
     {
-      State.regs[rn]= READ_16 (memory);
-      /* (*d10v_callback->printf_filtered) (d10v_callback, "store: r%d=0x%x\n",rn,State.regs[rn]); */
+      SET_CREG (rn - SIM_D10V_CR0_REGNUM, READ_16 (memory));
+      size = 2;
     }
-}
-
-sim_read (addr, buffer, size)
-     SIM_ADDR addr;
-     unsigned char *buffer;
-     int size;
-{
-  int i;
-  for (i = 0; i < size; i++)
+  else if (rn >= SIM_D10V_A0_REGNUM
+          && rn < SIM_D10V_A0_REGNUM + SIM_D10V_NR_A_REGS)
+    {
+      SET_ACC (rn - SIM_D10V_A0_REGNUM, READ_64 (memory) & MASK40);
+      size = 8;
+    }
+  else if (rn == SIM_D10V_SPI_REGNUM)
+    {
+      /* PSW_SM indicates that the current SP is the USER
+         stack-pointer. */
+      set_spi_register (READ_16 (memory));
+      size = 2;
+    }
+  else if (rn == SIM_D10V_SPU_REGNUM)
+    {
+      set_spu_register (READ_16 (memory));
+      size = 2;
+    }
+  else if (rn >= SIM_D10V_IMAP0_REGNUM
+          && rn < SIM_D10V_IMAP0_REGNUM + SIM_D10V_NR_IMAP_REGS)
+    {
+      set_imap_register (rn - SIM_D10V_IMAP0_REGNUM, READ_16(memory));
+      size = 2;
+    }
+  else if (rn >= SIM_D10V_DMAP0_REGNUM
+          && rn < SIM_D10V_DMAP0_REGNUM + SIM_D10V_NR_DMAP_REGS)
     {
-      buffer[i] = State.imem[addr + i];
+      set_dmap_register (rn - SIM_D10V_DMAP0_REGNUM, READ_16(memory));
+      size = 2;
     }
+  else
+    size = 0;
+  SLOT_FLUSH ();
   return size;
-} 
+}
+
 
 void
-sim_do_command (cmd)
+sim_do_command (sd, cmd)
+     SIM_DESC sd;
      char *cmd;
 { 
   (*d10v_callback->printf_filtered) (d10v_callback, "sim_do_command: %s\n",cmd);
 }
 
-int
-sim_load (prog, from_tty)
+SIM_RC
+sim_load (sd, prog, abfd, from_tty)
+     SIM_DESC sd;
      char *prog;
+     bfd *abfd;
      int from_tty;
 {
-  /* Return nonzero so GDB will handle it.  */
-  return 1;
+  extern bfd *sim_load_file (); /* ??? Don't know where this should live.  */
+
+  if (prog_bfd != NULL && prog_bfd_was_opened_p)
+    {
+      bfd_close (prog_bfd);
+      prog_bfd_was_opened_p = 0;
+    }
+  prog_bfd = sim_load_file (sd, myname, d10v_callback, prog, abfd,
+                           sim_kind == SIM_OPEN_DEBUG,
+                           1/*LMA*/, sim_write);
+  if (prog_bfd == NULL)
+    return SIM_RC_FAIL;
+  prog_bfd_was_opened_p = abfd == NULL;
+  return SIM_RC_OK;
 }