Fix build error in gdb/rocm-tdep.c
[deliverable/binutils-gdb.git] / sim / v850 / simops.c
index c739d60c0607c360b3b6e1a3b1b37a22e6e440cb..40d578e5d0ac87e17c5716c05cae787167668af9 100644 (file)
@@ -1,8 +1,9 @@
-#include <signal.h>
 #include "sim-main.h"
 #include "v850_sim.h"
 #include "simops.h"
 
+#include <sys/types.h>
+
 #ifdef HAVE_UTIME_H
 #include <utime.h>
 #endif
 #endif
 #endif
 
-
-
-
-
- /* FIXME - should be including a version of syscall.h that does not
-    pollute the name space */
-#include "../../libgloss/v850/sys/syscall.h"
+#include "targ-vals.h"
 
 #include "libiberty.h"
 
 #include <sys/time.h>
 #endif
 
-/* start-sanitize-v850e */
 /* This is an array of the bit positions of registers r20 .. r31 in
    that order in a prepare/dispose instruction.  */
 int type1_regs[12] = { 27, 26, 25, 24, 31, 30, 29, 28, 23, 22, 0, 21 };
-/* end-sanitize-v850e */
-/* start-sanitize-v850eq */
 /* This is an array of the bit positions of registers r16 .. r31 in
    that order in a push/pop instruction.  */
 int type2_regs[16] = { 3, 2, 1, 0, 27, 26, 25, 24, 31, 30, 29, 28, 23, 22, 20, 21};
 /* This is an array of the bit positions of registers r1 .. r15 in
    that order in a push/pop instruction.  */
 int type3_regs[15] = { 2, 1, 0, 27, 26, 25, 24, 31, 30, 29, 28, 23, 22, 20, 21};
-/* end-sanitize-v850eq */
 
 #ifdef DEBUG
 #ifndef SIZE_INSTRUCTION
@@ -64,26 +55,22 @@ int type3_regs[15] = { 2, 1, 0, 27, 26, 25, 24, 31, 30, 29, 28, 23, 22, 20, 21};
 #endif
 
 
-unsigned32 trace_values[3];
-int trace_num_values;
-unsigned32 trace_pc;
-const char *trace_name;
-const char *trace_module;
+unsigned32   trace_values[3];
+int          trace_num_values;
+unsigned32   trace_pc;
+const char * trace_name;
+int          trace_module;
 
 
 void
-trace_input (name, type, size)
-     char *name;
-     enum op_types type;
-     int size;
+trace_input (char *name, enum op_types type, int size)
 {
-
   if (!TRACE_ALU_P (STATE_CPU (simulator, 0)))
     return;
 
   trace_pc = PC;
   trace_name = name;
-  trace_module = "alu";
+  trace_module = TRACE_ALU_IDX;
 
   switch (type)
     {
@@ -100,9 +87,7 @@ trace_input (name, type, size)
       trace_num_values = 1;
       break;
       
-      /* start-sanitize-v850e */
     case OP_BIT_CHANGE:
-      /* end-sanitize-v850e */
     case OP_REG_REG:
     case OP_REG_REG_CMP:
       trace_values[0] = State.regs[OP[1]];
@@ -224,7 +209,8 @@ trace_result (int has_result, unsigned32 result)
     int i;
     for (i = 0; i < trace_num_values; i++)
       {
-       sprintf (chp, "%*s0x%.8lx", SIZE_VALUES - 10, "", trace_values[i]);
+       sprintf (chp, "%*s0x%.8lx", SIZE_VALUES - 10, "",
+                (long) trace_values[i]);
        chp = strchr (chp, '\0');
       }
     while (i++ < 3)
@@ -236,17 +222,13 @@ trace_result (int has_result, unsigned32 result)
 
   /* append any result to the end of the buffer */
   if (has_result)
-    sprintf (chp, " :: 0x%.8lx", (unsigned long)result);
+    sprintf (chp, " :: 0x%.8lx", (unsigned long) result);
   
-  trace_one_insn (simulator, STATE_CPU (simulator, 0), trace_pc,
-                 TRACE_LINENUM_P (STATE_CPU (simulator, 0)),
-                 "simops", __LINE__, trace_module, 
-                 "%-*s -%s", SIZE_INSTRUCTION, trace_name, buf);
+  trace_generic (simulator, STATE_CPU (simulator, 0), trace_module, "%s", buf);
 }
 
 void
-trace_output (result)
-     enum op_types result;
+trace_output (enum op_types result)
 {
   if (!TRACE_ALU_P (STATE_CPU (simulator, 0)))
     return;
@@ -332,9 +314,8 @@ condition_met (unsigned code)
   
   return 1;
 }
-/* start-sanitize-v850e */
 
-static unsigned long
+unsigned long
 Add32 (unsigned long a1, unsigned long a2, int * carry)
 {
   unsigned long result = (a1 + a2);
@@ -345,7 +326,7 @@ Add32 (unsigned long a1, unsigned long a2, int * carry)
 }
 
 static void
-Multiply64 (boolean sign, unsigned long op0)
+Multiply64 (int sign, unsigned long op0)
 {
   unsigned long op1;
   unsigned long lo;
@@ -409,38 +390,39 @@ Multiply64 (boolean sign, unsigned long op0)
   return;
 }
 
-/* end-sanitize-v850e */
 \f
-/* Read a null terminated string from memory, return in a buffer */
+/* Read a null terminated string from memory, return in a buffer.  */
+
 static char *
-fetch_str (sd, addr)
-     SIM_DESC sd;
-     address_word addr;
+fetch_str (SIM_DESC sd, address_word addr)
 {
   char *buf;
   int nr = 0;
+
   while (sim_core_read_1 (STATE_CPU (sd, 0),
-                         PC, sim_core_read_map, addr + nr) != 0)
+                         PC, read_map, addr + nr) != 0)
     nr++;
+
   buf = NZALLOC (char, nr + 1);
-  sim_read (simulator, addr, buf, nr);
+  sim_read (simulator, addr, (unsigned char *) buf, nr);
+
   return buf;
 }
 
 /* Read a null terminated argument vector from memory, return in a
-   buffer */
+   buffer.  */
+
 static char **
-fetch_argv (sd, addr)
-     SIM_DESC sd;
-     address_word addr;
+fetch_argv (SIM_DESC sd, address_word addr)
 {
   int max_nr = 64;
   int nr = 0;
   char **buf = xmalloc (max_nr * sizeof (char*));
+
   while (1)
     {
       unsigned32 a = sim_core_read_4 (STATE_CPU (sd, 0),
-                                     PC, sim_core_read_map, addr + nr * 4);
+                                     PC, read_map, addr + nr * 4);
       if (a == 0) break;
       buf[nr] = fetch_str (sd, a);
       nr ++;
@@ -455,80 +437,9 @@ fetch_argv (sd, addr)
 }
 
 \f
-/* sld.b */
-int
-OP_300 ()
-{
-  unsigned long result;
-  
-  result = load_mem (State.regs[30] + (OP[3] & 0x7f), 1);
-
-/* start-sanitize-v850eq */
-  if (PSW & PSW_US)
-    {
-      trace_input ("sld.bu", OP_LOAD16, 1);
-      State.regs[ OP[1] ] = result;
-    }
-  else
-    {
-/* end-sanitize-v850eq */
-  trace_input ("sld.b", OP_LOAD16, 1);
-  
-  State.regs[ OP[1] ] = EXTEND8 (result);
-/* start-sanitize-v850eq */
-    }
-/* end-sanitize-v850eq */
-  
-  trace_output (OP_LOAD16);
-  
-  return 2;
-}
-
-/* sld.h */
-int
-OP_400 ()
-{
-  unsigned long result;
-  
-  result = load_mem (State.regs[30] + ((OP[3] & 0x7f) << 1), 2);
-
-/* start-sanitize-v850eq */
-  if (PSW & PSW_US)
-    {
-      trace_input ("sld.hu", OP_LOAD16, 2);
-      State.regs[ OP[1] ] = result;
-    }
-  else
-    {
-/* end-sanitize-v850eq */
-  trace_input ("sld.h", OP_LOAD16, 2);
-  
-  State.regs[ OP[1] ] = EXTEND16 (result);
-/* start-sanitize-v850eq */
-    }
-/* end-sanitize-v850eq */
-  
-  trace_output (OP_LOAD16);
-
-  return 2;
-}
-
-/* sld.w */
-int
-OP_500 ()
-{
-  trace_input ("sld.w", OP_LOAD16, 4);
-  
-  State.regs[ OP[1] ] = load_mem (State.regs[30] + ((OP[3] & 0x7f) << 1), 4);
-  
-  trace_output (OP_LOAD16);
-  
-  return 2;
-}
-
 /* sst.b */
 int
-OP_380 ()
+OP_380 (void)
 {
   trace_input ("sst.b", OP_STORE16, 1);
 
@@ -541,7 +452,7 @@ OP_380 ()
 
 /* sst.h */
 int
-OP_480 ()
+OP_480 (void)
 {
   trace_input ("sst.h", OP_STORE16, 2);
 
@@ -554,7 +465,7 @@ OP_480 ()
 
 /* sst.w */
 int
-OP_501 ()
+OP_501 (void)
 {
   trace_input ("sst.w", OP_STORE16, 4);
 
@@ -567,7 +478,7 @@ OP_501 ()
 
 /* ld.b */
 int
-OP_700 ()
+OP_700 (void)
 {
   int adr;
 
@@ -584,7 +495,7 @@ OP_700 ()
 
 /* ld.h */
 int
-OP_720 ()
+OP_720 (void)
 {
   int adr;
 
@@ -602,7 +513,7 @@ OP_720 ()
 
 /* ld.w */
 int
-OP_10720 ()
+OP_10720 (void)
 {
   int adr;
 
@@ -620,7 +531,7 @@ OP_10720 ()
 
 /* st.b */
 int
-OP_740 ()
+OP_740 (void)
 {
   trace_input ("st.b", OP_STORE32, 1);
 
@@ -633,7 +544,7 @@ OP_740 ()
 
 /* st.h */
 int
-OP_760 ()
+OP_760 (void)
 {
   int adr;
   
@@ -651,7 +562,7 @@ OP_760 ()
 
 /* st.w */
 int
-OP_10760 ()
+OP_10760 (void)
 {
   int adr;
   
@@ -667,147 +578,9 @@ OP_10760 ()
   return 4;
 }
 
-static int
-branch (int code)
-{
-  trace_input ("Bcond", OP_COND_BR, 0);
-  trace_output (OP_COND_BR);
-
-  if (condition_met (code))
-    return SEXT9 (((OP[3] & 0x70) >> 3) | ((OP[3] & 0xf800) >> 7));
-  else
-    return 2;
-}
-
-/* bv disp9 */
-int
-OP_580 ()
-{
-  return branch (0);
-}
-
-/* bl disp9 */
-int
-OP_581 ()
-{
-  return branch (1);
-}
-
-/* be disp9 */
-int
-OP_582 ()
-{
-  return branch (2);
-}
-
-/* bnh disp 9*/
-int
-OP_583 ()
-{
-  return branch (3);
-}
-
-/* bn disp9 */
-int
-OP_584 ()
-{
-  return branch (4);
-}
-
-/* br disp9 */
-int
-OP_585 ()
-{
-  return branch (5);
-}
-
-/* blt disp9 */
-int
-OP_586 ()
-{
-  return branch (6);
-}
-
-/* ble disp9 */
-int
-OP_587 ()
-{
-  return branch (7);
-}
-
-/* bnv disp9 */
-int
-OP_588 ()
-{
-  return branch (8);
-}
-
-/* bnl disp9 */
-int
-OP_589 ()
-{
-  return branch (9);
-}
-
-/* bne disp9 */
-int
-OP_58A ()
-{
-  return branch (10);
-}
-
-/* bh disp9 */
-int
-OP_58B ()
-{
-  return branch (11);
-}
-
-/* bp disp9 */
-int
-OP_58C ()
-{
-  return branch (12);
-}
-
-/* bsa disp9 */
-int
-OP_58D ()
-{
-  return branch (13);
-}
-
-/* bge disp9 */
-int
-OP_58E ()
-{
-  return branch (14);
-}
-
-/* bgt disp9 */
-int
-OP_58F ()
-{
-  return branch (15);
-}
-
-/* jarl/jr disp22, reg */
-int
-OP_780 ()
-{
-  trace_input ("jarl/jr", OP_JUMP, 0);
-
-  if (OP[ 1 ] != 0)
-    State.regs[ OP[1] ] = PC + 4;
-  
-  trace_output (OP_JUMP);
-  
-  return SEXT22 (((OP[3] & 0x3f) << 16) | OP[2]);
-}
-
 /* add reg, reg */
 int
-OP_1C0 ()
+OP_1C0 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
 
@@ -839,7 +612,7 @@ OP_1C0 ()
 
 /* add sign_extend(imm5), reg */
 int
-OP_240 ()
+OP_240 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
   int temp;
@@ -871,7 +644,7 @@ OP_240 ()
 
 /* addi sign_extend(imm16), reg, reg */
 int
-OP_600 ()
+OP_600 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
 
@@ -902,7 +675,7 @@ OP_600 ()
 
 /* sub reg1, reg2 */
 int
-OP_1A0 ()
+OP_1A0 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
 
@@ -931,7 +704,7 @@ OP_1A0 ()
 
 /* subr reg1, reg2 */
 int
-OP_180 ()
+OP_180 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
 
@@ -960,7 +733,7 @@ OP_180 ()
 
 /* sxh reg1 */
 int
-OP_E0 ()
+OP_E0 (void)
 {
   trace_input ("mulh", OP_REG_REG, 0);
       
@@ -973,7 +746,7 @@ OP_E0 ()
 
 /* mulh sign_extend(imm5), reg2 */
 int
-OP_2E0 ()
+OP_2E0 (void)
 {
   trace_input ("mulh", OP_IMM_REG, 0);
   
@@ -986,7 +759,7 @@ OP_2E0 ()
 
 /* mulhi imm16, reg1, reg2 */
 int
-OP_6E0 ()
+OP_6E0 (void)
 {
   trace_input ("mulhi", OP_IMM16_REG_REG, 0);
   
@@ -997,53 +770,9 @@ OP_6E0 ()
   return 4;
 }
 
-/* divh reg1, reg2 */
-int
-OP_40 ()
-{
-  unsigned int op0, op1, result, ov, s, z;
-  int temp;
-
-  trace_input ("divh", OP_REG_REG, 0);
-
-  /* Compute the result.  */
-  temp = EXTEND16 (State.regs[ OP[0] ]);
-  op0 = temp;
-  op1 = State.regs[OP[1]];
-  
-  if (op0 == 0xffffffff && op1 == 0x80000000)
-    {
-      result = 0x80000000;
-      ov = 1;
-    }
-  else if (op0 != 0)
-    {
-      result = op1 / op0;
-      ov = 0;
-    }
-  else
-    {
-      result = 0x0;
-      ov = 1;
-    }
-  
-  /* Compute the condition codes.  */
-  z = (result == 0);
-  s = (result & 0x80000000);
-  
-  /* Store the result and condition codes.  */
-  State.regs[OP[1]] = result;
-  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
-  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
-         | (ov ? PSW_OV : 0));
-  trace_output (OP_REG_REG);
-
-  return 2;
-}
-
 /* cmp reg, reg */
 int
-OP_1E0 ()
+OP_1E0 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
 
@@ -1071,7 +800,7 @@ OP_1E0 ()
 
 /* cmp sign_extend(imm5), reg */
 int
-OP_260 ()
+OP_260 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov;
   int temp;
@@ -1101,7 +830,7 @@ OP_260 ()
 
 /* setf cccc,reg2 */
 int
-OP_7E0 ()
+OP_7E0 (void)
 {
   trace_input ("setf", OP_EX1, 0);
 
@@ -1114,7 +843,7 @@ OP_7E0 ()
 
 /* satadd reg,reg */
 int
-OP_C0 ()
+OP_C0 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov, sat;
   
@@ -1132,18 +861,29 @@ OP_C0 ()
        && (op0 & 0x80000000) != (result & 0x80000000));
   sat = ov;
   
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      /* An overflow that results in a negative result implies that we
+        became too positive.  */
+      result = 0x7fffffff;
+      s = 0;
+    }
+  else if (sat)
+    {
+      /* Any other overflow must have thus been too negative.  */
+      result = 0x80000000;
+      s = 1;
+      z = 0;
+    }
+
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
   PSW &= ~(PSW_Z | PSW_S | PSW_CY | PSW_OV);
   PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
          | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
          | (sat ? PSW_SAT : 0));
-  
-  /* Handle saturated results.  */
-  if (sat && s)
-    State.regs[OP[1]] = 0x80000000;
-  else if (sat)
-    State.regs[OP[1]] = 0x7fffffff;
+
   trace_output (OP_REG_REG);
 
   return 2;
@@ -1151,7 +891,7 @@ OP_C0 ()
 
 /* satadd sign_extend(imm5), reg */
 int
-OP_220 ()
+OP_220 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov, sat;
 
@@ -1173,18 +913,28 @@ OP_220 ()
        && (op0 & 0x80000000) != (result & 0x80000000));
   sat = ov;
 
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      /* An overflow that results in a negative result implies that we
+        became too positive.  */
+      result = 0x7fffffff;
+      s = 0;
+    }
+  else if (sat)
+    {
+      /* Any other overflow must have thus been too negative.  */
+      result = 0x80000000;
+      s = 1;
+      z = 0;
+    }
+
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
   PSW &= ~(PSW_Z | PSW_S | PSW_CY | PSW_OV);
   PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
                | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
                | (sat ? PSW_SAT : 0));
-
-  /* Handle saturated results.  */
-  if (sat && s)
-    State.regs[OP[1]] = 0x80000000;
-  else if (sat)
-    State.regs[OP[1]] = 0x7fffffff;
   trace_output (OP_IMM_REG);
 
   return 2;
@@ -1192,7 +942,7 @@ OP_220 ()
 
 /* satsub reg1, reg2 */
 int
-OP_A0 ()
+OP_A0 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov, sat;
   
@@ -1210,7 +960,23 @@ OP_A0 ()
   ov = ((op1 & 0x80000000) != (op0 & 0x80000000)
        && (op1 & 0x80000000) != (result & 0x80000000));
   sat = ov;
-  
+
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      /* An overflow that results in a negative result implies that we
+        became too positive.  */
+      result = 0x7fffffff;
+      s = 0;
+    }
+  else if (sat)
+    {
+      /* Any other overflow must have thus been too negative.  */
+      result = 0x80000000;
+      s = 1;
+      z = 0;
+    }
+
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
   PSW &= ~(PSW_Z | PSW_S | PSW_CY | PSW_OV);
@@ -1218,18 +984,13 @@ OP_A0 ()
          | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
          | (sat ? PSW_SAT : 0));
   
-  /* Handle saturated results.  */
-  if (sat && s)
-    State.regs[OP[1]] = 0x80000000;
-  else if (sat)
-    State.regs[OP[1]] = 0x7fffffff;
   trace_output (OP_REG_REG);
   return 2;
 }
 
 /* satsubi sign_extend(imm16), reg */
 int
-OP_660 ()
+OP_660 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov, sat;
   int temp;
@@ -1250,6 +1011,22 @@ OP_660 ()
        && (op1 & 0x80000000) != (result & 0x80000000));
   sat = ov;
 
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      /* An overflow that results in a negative result implies that we
+        became too positive.  */
+      result = 0x7fffffff;
+      s = 0;
+    }
+  else if (sat)
+    {
+      /* Any other overflow must have thus been too negative.  */
+      result = 0x80000000;
+      s = 1;
+      z = 0;
+    }
+
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
   PSW &= ~(PSW_Z | PSW_S | PSW_CY | PSW_OV);
@@ -1257,11 +1034,6 @@ OP_660 ()
                | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
                | (sat ? PSW_SAT : 0));
 
-  /* Handle saturated results.  */
-  if (sat && s)
-    State.regs[OP[1]] = 0x80000000;
-  else if (sat)
-    State.regs[OP[1]] = 0x7fffffff;
   trace_output (OP_IMM_REG);
 
   return 4;
@@ -1269,7 +1041,7 @@ OP_660 ()
 
 /* satsubr reg,reg */
 int
-OP_80 ()
+OP_80 (void)
 {
   unsigned int op0, op1, result, z, s, cy, ov, sat;
   
@@ -1283,10 +1055,26 @@ OP_80 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (result < op0);
-  ov = ((op1 & 0x80000000) != (op0 & 0x80000000)
-       && (op1 & 0x80000000) != (result & 0x80000000));
+  cy = (op0 < op1);
+  ov = ((op0 & 0x80000000) != (op1 & 0x80000000)
+       && (op0 & 0x80000000) != (result & 0x80000000));
   sat = ov;
+
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      /* An overflow that results in a negative result implies that we
+        became too positive.  */
+      result = 0x7fffffff;
+      s = 0;
+    }
+  else if (sat)
+    {
+      /* Any other overflow must have thus been too negative.  */
+      result = 0x80000000;
+      s = 1;
+      z = 0;
+    }
   
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
@@ -1295,11 +1083,6 @@ OP_80 ()
          | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
          | (sat ? PSW_SAT : 0));
   
-  /* Handle saturated results.  */
-  if (sat && s)
-    State.regs[OP[1]] = 0x80000000;
-  else if (sat)
-    State.regs[OP[1]] = 0x7fffffff;
   trace_output (OP_REG_REG);
 
   return 2;
@@ -1307,7 +1090,7 @@ OP_80 ()
 
 /* tst reg,reg */
 int
-OP_160 ()
+OP_160 (void)
 {
   unsigned int op0, op1, result, z, s;
 
@@ -1332,7 +1115,7 @@ OP_160 ()
 
 /* mov sign_extend(imm5), reg */
 int
-OP_200 ()
+OP_200 (void)
 {
   int value = SEXT5 (OP[0]);
   
@@ -1347,7 +1130,7 @@ OP_200 ()
 
 /* movhi imm16, reg, reg */
 int
-OP_640 ()
+OP_640 (void)
 {
   trace_input ("movhi", OP_UIMM16_REG_REG, 16);
       
@@ -1360,7 +1143,7 @@ OP_640 ()
 
 /* sar zero_extend(imm5),reg1 */
 int
-OP_2A0 ()
+OP_2A0 (void)
 {
   unsigned int op0, op1, result, z, s, cy;
 
@@ -1372,7 +1155,7 @@ OP_2A0 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (op1 & (1 << (op0 - 1)));
+  cy = op0 ? (op1 & (1 << (op0 - 1))) : 0;
 
   /* Store the result and condition codes.  */
   State.regs[ OP[1] ] = result;
@@ -1386,7 +1169,7 @@ OP_2A0 ()
 
 /* sar reg1, reg2 */
 int
-OP_A007E0 ()
+OP_A007E0 (void)
 {
   unsigned int op0, op1, result, z, s, cy;
 
@@ -1399,7 +1182,7 @@ OP_A007E0 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (op1 & (1 << (op0 - 1)));
+  cy = op0 ? (op1 & (1 << (op0 - 1))) : 0;
 
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
@@ -1413,7 +1196,7 @@ OP_A007E0 ()
 
 /* shl zero_extend(imm5),reg1 */
 int
-OP_2C0 ()
+OP_2C0 (void)
 {
   unsigned int op0, op1, result, z, s, cy;
 
@@ -1425,7 +1208,7 @@ OP_2C0 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (op1 & (1 << (32 - op0)));
+  cy = op0 ? (op1 & (1 << (32 - op0))) : 0;
 
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
@@ -1439,7 +1222,7 @@ OP_2C0 ()
 
 /* shl reg1, reg2 */
 int
-OP_C007E0 ()
+OP_C007E0 (void)
 {
   unsigned int op0, op1, result, z, s, cy;
 
@@ -1451,7 +1234,7 @@ OP_C007E0 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (op1 & (1 << (32 - op0)));
+  cy = op0 ? (op1 & (1 << (32 - op0))) : 0;
 
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
@@ -1465,7 +1248,7 @@ OP_C007E0 ()
 
 /* shr zero_extend(imm5),reg1 */
 int
-OP_280 ()
+OP_280 (void)
 {
   unsigned int op0, op1, result, z, s, cy;
 
@@ -1477,7 +1260,7 @@ OP_280 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (op1 & (1 << (op0 - 1)));
+  cy = op0 ? (op1 & (1 << (op0 - 1))) : 0;
 
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
@@ -1491,7 +1274,7 @@ OP_280 ()
 
 /* shr reg1, reg2 */
 int
-OP_8007E0 ()
+OP_8007E0 (void)
 {
   unsigned int op0, op1, result, z, s, cy;
 
@@ -1503,7 +1286,7 @@ OP_8007E0 ()
   /* Compute the condition codes.  */
   z = (result == 0);
   s = (result & 0x80000000);
-  cy = (op1 & (1 << (op0 - 1)));
+  cy = op0 ? (op1 & (1 << (op0 - 1))) : 0;
 
   /* Store the result and condition codes.  */
   State.regs[OP[1]] = result;
@@ -1517,7 +1300,7 @@ OP_8007E0 ()
 
 /* or reg, reg */
 int
-OP_100 ()
+OP_100 (void)
 {
   unsigned int op0, op1, result, z, s;
 
@@ -1543,7 +1326,7 @@ OP_100 ()
 
 /* ori zero_extend(imm16), reg, reg */
 int
-OP_680 ()
+OP_680 (void)
 {
   unsigned int op0, op1, result, z, s;
 
@@ -1567,7 +1350,7 @@ OP_680 ()
 
 /* and reg, reg */
 int
-OP_140 ()
+OP_140 (void)
 {
   unsigned int op0, op1, result, z, s;
 
@@ -1593,7 +1376,7 @@ OP_140 ()
 
 /* andi zero_extend(imm16), reg, reg */
 int
-OP_6C0 ()
+OP_6C0 (void)
 {
   unsigned int result, z;
 
@@ -1617,7 +1400,7 @@ OP_6C0 ()
 
 /* xor reg, reg */
 int
-OP_120 ()
+OP_120 (void)
 {
   unsigned int op0, op1, result, z, s;
 
@@ -1643,7 +1426,7 @@ OP_120 ()
 
 /* xori zero_extend(imm16), reg, reg */
 int
-OP_6A0 ()
+OP_6A0 (void)
 {
   unsigned int op0, op1, result, z, s;
 
@@ -1667,7 +1450,7 @@ OP_6A0 ()
 
 /* not reg1, reg2 */
 int
-OP_20 ()
+OP_20 (void)
 {
   unsigned int op0, result, z, s;
 
@@ -1691,7 +1474,7 @@ OP_20 ()
 
 /* set1 */
 int
-OP_7C0 ()
+OP_7C0 (void)
 {
   unsigned int op0, op1, op2;
   int temp;
@@ -1714,7 +1497,7 @@ OP_7C0 ()
 
 /* not1 */
 int
-OP_47C0 ()
+OP_47C0 (void)
 {
   unsigned int op0, op1, op2;
   int temp;
@@ -1737,7 +1520,7 @@ OP_47C0 ()
 
 /* clr1 */
 int
-OP_87C0 ()
+OP_87C0 (void)
 {
   unsigned int op0, op1, op2;
   int temp;
@@ -1760,7 +1543,7 @@ OP_87C0 ()
 
 /* tst1 */
 int
-OP_C7C0 ()
+OP_C7C0 (void)
 {
   unsigned int op0, op1, op2;
   int temp;
@@ -1781,7 +1564,7 @@ OP_C7C0 ()
 
 /* di */
 int
-OP_16007E0 ()
+OP_16007E0 (void)
 {
   trace_input ("di", OP_NONE, 0);
   PSW |= PSW_ID;
@@ -1792,7 +1575,7 @@ OP_16007E0 ()
 
 /* ei */
 int
-OP_16087E0 ()
+OP_16087E0 (void)
 {
   trace_input ("ei", OP_NONE, 0);
   PSW &= ~PSW_ID;
@@ -1803,19 +1586,19 @@ OP_16087E0 ()
 
 /* halt */
 int
-OP_12007E0 ()
+OP_12007E0 (void)
 {
   trace_input ("halt", OP_NONE, 0);
   /* FIXME this should put processor into a mode where NMI still handled */
   trace_output (OP_NONE);
   sim_engine_halt (simulator, STATE_CPU (simulator, 0), NULL, PC,
-                  sim_stopped, SIGTRAP);
+                  sim_stopped, SIM_SIGTRAP);
   return 0;
 }
 
 /* trap */
 int
-OP_10007E0 ()
+OP_10007E0 (void)
 {
   trace_input ("trap", OP_TRAP, 0);
   trace_output (OP_TRAP);
@@ -1843,50 +1626,55 @@ OP_10007E0 ()
 
 #define MEMPTR(x) (map (x))
 
+      RETERR = 0;
+
       switch (FUNC)
        {
 
 #ifdef HAVE_FORK
-#ifdef SYS_fork
-       case SYS_fork:
+#ifdef TARGET_SYS_fork
+       case TARGET_SYS_fork:
          RETVAL = fork ();
+         RETERR = errno;
          break;
 #endif
 #endif
 
 #ifdef HAVE_EXECVE
-#ifdef SYS_execv
-       case SYS_execve:
+#ifdef TARGET_SYS_execv
+       case TARGET_SYS_execve:
          {
            char *path = fetch_str (simulator, PARM1);
            char **argv = fetch_argv (simulator, PARM2);
            char **envp = fetch_argv (simulator, PARM3);
            RETVAL = execve (path, argv, envp);
-           zfree (path);
+           free (path);
            freeargv (argv);
            freeargv (envp);
+           RETERR = errno;
            break;
          }
 #endif
 #endif
 
 #if HAVE_EXECV
-#ifdef SYS_execv
-       case SYS_execv:
+#ifdef TARGET_SYS_execv
+       case TARGET_SYS_execv:
          {
            char *path = fetch_str (simulator, PARM1);
            char **argv = fetch_argv (simulator, PARM2);
            RETVAL = execv (path, argv);
-           zfree (path);
+           free (path);
            freeargv (argv);
+           RETERR = errno;
            break;
          }
 #endif
 #endif
 
 #if 0
-#ifdef SYS_pipe
-       case SYS_pipe:
+#ifdef TARGET_SYS_pipe
+       case TARGET_SYS_pipe:
          {
            reg_t buf;
            int host_fd[2];
@@ -1894,75 +1682,87 @@ OP_10007E0 ()
            buf = PARM1;
            RETVAL = pipe (host_fd);
            SW (buf, host_fd[0]);
-           buf += sizeof(uint16);
+           buf += sizeof (uint16);
            SW (buf, host_fd[1]);
+           RETERR = errno;
          }
          break;
 #endif
 #endif
 
 #if 0
-#ifdef SYS_wait
-       case SYS_wait:
+#ifdef TARGET_SYS_wait
+       case TARGET_SYS_wait:
          {
            int status;
 
            RETVAL = wait (&status);
            SW (PARM1, status);
+           RETERR = errno;
          }
          break;
 #endif
 #endif
 
-#ifdef SYS_read
-       case SYS_read:
+#ifdef TARGET_SYS_read
+       case TARGET_SYS_read:
          {
            char *buf = zalloc (PARM3);
            RETVAL = sim_io_read (simulator, PARM1, buf, PARM3);
-           sim_write (simulator, PARM2, buf, PARM3);
-           zfree (buf);
+           sim_write (simulator, PARM2, (unsigned char *) buf, PARM3);
+           free (buf);
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
            break;
          }
 #endif
 
-#ifdef SYS_write
-       case SYS_write:
+#ifdef TARGET_SYS_write
+       case TARGET_SYS_write:
          {
            char *buf = zalloc (PARM3);
-           sim_read (simulator, PARM2, buf, PARM3);
+           sim_read (simulator, PARM2, (unsigned char *) buf, PARM3);
            if (PARM1 == 1)
              RETVAL = sim_io_write_stdout (simulator, buf, PARM3);
            else
              RETVAL = sim_io_write (simulator, PARM1, buf, PARM3);
-           zfree (buf);
+           free (buf);
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
            break;
          }
 #endif
 
-#ifdef SYS_lseek
-       case SYS_lseek:
+#ifdef TARGET_SYS_lseek
+       case TARGET_SYS_lseek:
          RETVAL = sim_io_lseek (simulator, PARM1, PARM2, PARM3);
+         if ((int) RETVAL < 0)
+           RETERR = sim_io_get_errno (simulator);
          break;
 #endif
 
-#ifdef SYS_close
-       case SYS_close:
+#ifdef TARGET_SYS_close
+       case TARGET_SYS_close:
          RETVAL = sim_io_close (simulator, PARM1);
+         if ((int) RETVAL < 0)
+           RETERR = sim_io_get_errno (simulator);
          break;
 #endif
 
-#ifdef SYS_open
-       case SYS_open:
+#ifdef TARGET_SYS_open
+       case TARGET_SYS_open:
          {
            char *buf = fetch_str (simulator, PARM1);
            RETVAL = sim_io_open (simulator, buf, PARM2);
-           zfree (buf);
+           free (buf);
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
            break;
          }
 #endif
 
-#ifdef SYS_exit
-       case SYS_exit:
+#ifdef TARGET_SYS_exit
+       case TARGET_SYS_exit:
          if ((PARM1 & 0xffff0000) == 0xdead0000 && (PARM1 & 0xffff) != 0)
            /* get signal encoded by kill */
            sim_engine_halt (simulator, STATE_CPU (simulator, 0), NULL, PC,
@@ -1970,7 +1770,7 @@ OP_10007E0 ()
          else if (PARM1 == 0xdead)
            /* old libraries */
            sim_engine_halt (simulator, STATE_CPU (simulator, 0), NULL, PC,
-                            sim_exited, SIGABRT);
+                            sim_stopped, SIM_SIGABRT);
          else
            /* PARM1 has exit status */
            sim_engine_halt (simulator, STATE_CPU (simulator, 0), NULL, PC,
@@ -1978,18 +1778,17 @@ OP_10007E0 ()
          break;
 #endif
 
-#if !defined(__GO32__) && !defined(_WIN32)
-#ifdef SYS_stat
-       case SYS_stat:  /* added at hmsi */
+#ifdef TARGET_SYS_stat
+       case TARGET_SYS_stat:   /* added at hmsi */
          /* stat system call */
          {
            struct stat host_stat;
            reg_t buf;
            char *path = fetch_str (simulator, PARM1);
 
-           RETVAL = stat (path, &host_stat);
+           RETVAL = sim_io_stat (simulator, path, &host_stat);
 
-           zfree (path);
+           free (path);
            buf = PARM2;
 
            /* Just wild-assed guesses.  */
@@ -2004,50 +1803,111 @@ OP_10007E0 ()
            store_mem (buf + 20, 4, host_stat.st_atime);
            store_mem (buf + 28, 4, host_stat.st_mtime);
            store_mem (buf + 36, 4, host_stat.st_ctime);
-         }
-         break;
-#endif
-#endif
 
-#ifdef HAVE_CHOWN
-#ifdef SYS_chown
-       case SYS_chown:
-         {
-           char *path = fetch_str (simulator, PARM1);
-           RETVAL = chown (path, PARM2, PARM3);
-           zfree (path);
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
          }
          break;
 #endif
-#endif
 
-#if HAVE_CHMOD
-#ifdef SYS_chmod
-       case SYS_chmod:
+#ifdef TARGET_SYS_fstat
+       case TARGET_SYS_fstat:
+         /* fstat system call */
          {
-           char *path = fetch_str (simulator, PARM1);
-           RETVAL = chmod (path, PARM2);
-           zfree (path);
-         }
-         break;
-#endif
-#endif
+           struct stat host_stat;
+           reg_t buf;
 
-#ifdef SYS_time
-#if HAVE_TIME
-       case SYS_time:
-         {
-           time_t now;
+           RETVAL = sim_io_fstat (simulator, PARM1, &host_stat);
+
+           buf = PARM2;
+
+           /* Just wild-assed guesses.  */
+           store_mem (buf, 2, host_stat.st_dev);
+           store_mem (buf + 2, 2, host_stat.st_ino);
+           store_mem (buf + 4, 4, host_stat.st_mode);
+           store_mem (buf + 8, 2, host_stat.st_nlink);
+           store_mem (buf + 10, 2, host_stat.st_uid);
+           store_mem (buf + 12, 2, host_stat.st_gid);
+           store_mem (buf + 14, 2, host_stat.st_rdev);
+           store_mem (buf + 16, 4, host_stat.st_size);
+           store_mem (buf + 20, 4, host_stat.st_atime);
+           store_mem (buf + 28, 4, host_stat.st_mtime);
+           store_mem (buf + 36, 4, host_stat.st_ctime);
+
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
+         }
+         break;
+#endif
+
+#ifdef TARGET_SYS_rename
+       case TARGET_SYS_rename:
+         {
+           char *oldpath = fetch_str (simulator, PARM1);
+           char *newpath = fetch_str (simulator, PARM2);
+           RETVAL = sim_io_rename (simulator, oldpath, newpath);
+           free (oldpath);
+           free (newpath);
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
+         }
+         break;
+#endif
+
+#ifdef TARGET_SYS_unlink
+       case TARGET_SYS_unlink:
+         {
+           char *path = fetch_str (simulator, PARM1);
+           RETVAL = sim_io_unlink (simulator, path);
+           free (path);
+           if ((int) RETVAL < 0)
+             RETERR = sim_io_get_errno (simulator);
+         }
+         break;
+#endif
+
+#ifdef HAVE_CHOWN
+#ifdef TARGET_SYS_chown
+       case TARGET_SYS_chown:
+         {
+           char *path = fetch_str (simulator, PARM1);
+           RETVAL = chown (path, PARM2, PARM3);
+           free (path);
+           RETERR = errno;
+         }
+         break;
+#endif
+#endif
+
+#if HAVE_CHMOD
+#ifdef TARGET_SYS_chmod
+       case TARGET_SYS_chmod:
+         {
+           char *path = fetch_str (simulator, PARM1);
+           RETVAL = chmod (path, PARM2);
+           free (path);
+           RETERR = errno;
+         }
+         break;
+#endif
+#endif
+
+#ifdef TARGET_SYS_time
+#if HAVE_TIME
+       case TARGET_SYS_time:
+         {
+           time_t now;
            RETVAL = time (&now);
            store_mem (PARM1, 4, now);
+           RETERR = errno;
          }
          break;
 #endif
 #endif
 
 #if !defined(__GO32__) && !defined(_WIN32)
-#ifdef SYS_times
-       case SYS_times:
+#ifdef TARGET_SYS_times
+       case TARGET_SYS_times:
          {
            struct tms tms;
            RETVAL = times (&tms);
@@ -2055,14 +1915,15 @@ OP_10007E0 ()
            store_mem (PARM1 + 4, 4, tms.tms_stime);
            store_mem (PARM1 + 8, 4, tms.tms_cutime);
            store_mem (PARM1 + 12, 4, tms.tms_cstime);
+           reterr = errno;
            break;
          }
 #endif
 #endif
 
-#ifdef SYS_gettimeofday
+#ifdef TARGET_SYS_gettimeofday
 #if !defined(__GO32__) && !defined(_WIN32)
-       case SYS_gettimeofday:
+       case TARGET_SYS_gettimeofday:
          {
            struct timeval t;
            struct timezone tz;
@@ -2071,14 +1932,15 @@ OP_10007E0 ()
            store_mem (PARM1 + 4, 4, t.tv_usec);
            store_mem (PARM2, 4, tz.tz_minuteswest);
            store_mem (PARM2 + 4, 4, tz.tz_dsttime);
+           RETERR = errno;
            break;
          }
 #endif
 #endif
 
-#ifdef SYS_utime
+#ifdef TARGET_SYS_utime
 #if HAVE_UTIME
-       case SYS_utime:
+       case TARGET_SYS_utime:
          {
            /* Cast the second argument to void *, to avoid type mismatch
               if a prototype is present.  */
@@ -2092,7 +1954,6 @@ OP_10007E0 ()
        default:
          abort ();
        }
-      RETERR = errno;
       errno = save_errno;
 
       return 4;
@@ -2106,13 +1967,12 @@ OP_10007E0 ()
       ECR |= 0x40 + OP[0];
       /* Flag that we are now doing exception processing.  */
       PSW |= PSW_EP | PSW_ID;
-      PC = ((OP[0] < 0x10) ? 0x40 : 0x50) - 4;
+      PC = (OP[0] < 0x10) ? 0x40 : 0x50;
 
       return 0;
     }
 }
 
-/* start-sanitize-v850e */
 /* tst1 reg2, [reg1] */
 int
 OP_E607E0 (void)
@@ -2124,7 +1984,7 @@ OP_E607E0 (void)
   temp = load_mem (State.regs[ OP[0] ], 1);
   
   PSW &= ~PSW_Z;
-  if ((temp & (1 << State.regs[ OP[1] & 0x7 ])) == 0)
+  if ((temp & (1 << (State.regs[ OP[1] ] & 0x7))) == 0)
     PSW |= PSW_Z;
   
   trace_output (OP_BIT);
@@ -2132,31 +1992,26 @@ OP_E607E0 (void)
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* mulu reg1, reg2, reg3 */
 int
 OP_22207E0 (void)
 {
   trace_input ("mulu", OP_REG_REG_REG, 0);
 
-  Multiply64 (false, State.regs[ OP[0] ]);
+  Multiply64 (0, State.regs[ OP[0] ]);
 
   trace_output (OP_REG_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
-
 #define BIT_CHANGE_OP( name, binop )           \
   unsigned int bit;                            \
   unsigned int temp;                           \
                                                \
   trace_input (name, OP_BIT_CHANGE, 0);                \
                                                \
-  bit  = 1 << State.regs[ OP[1] & 0x7 ];       \
+  bit  = 1 << (State.regs[ OP[1] ] & 0x7);     \
   temp = load_mem (State.regs[ OP[0] ], 1);    \
                                                \
   PSW &= ~PSW_Z;                               \
@@ -2203,18 +2058,18 @@ OP_20007E0 (void)
 
   return 4;
 }
-/* end-sanitize-v850e */
-/* start-sanitize-v850eq */
-/* This function is courtesy of Sugimoto at NEC, via Seow Tan (Soew_Tan@el.nec.com) */
+
+/* This function is courtesy of Sugimoto at NEC, via Seow Tan
+   (Soew_Tan@el.nec.com) */
 void
 divun
 (
   unsigned int       N,
   unsigned long int  als,
   unsigned long int  sfi,
-  unsigned long int *  quotient_ptr,
-  unsigned long int *  remainder_ptr,
-  boolean *          overflow_ptr
+  unsigned32 /*unsigned long int*/ *  quotient_ptr,
+  unsigned32 /*unsigned long int*/ *  remainder_ptr,
+  int *          overflow_ptr
 )
 {
   unsigned long   ald = sfi >> (N - 1);
@@ -2286,9 +2141,9 @@ divn
   unsigned int       N,
   unsigned long int  als,
   unsigned long int  sfi,
-  signed long int *  quotient_ptr,
-  signed long int *  remainder_ptr,
-  boolean *          overflow_ptr
+  signed32 /*signed long int*/ *  quotient_ptr,
+  signed32 /*signed long int*/ *  remainder_ptr,
+  int *          overflow_ptr
 )
 {
   unsigned long          ald = (signed long) sfi >> (N - 1);
@@ -2383,11 +2238,11 @@ divn
 int
 OP_1C207E0 (void)
 {
-  unsigned long int  quotient;
-  unsigned long int  remainder;
+  unsigned32 /*unsigned long int*/  quotient;
+  unsigned32 /*unsigned long int*/  remainder;
   unsigned long int  divide_by;
   unsigned long int  divide_this;
-  boolean            overflow = false;
+  int            overflow = 0;
   unsigned int       imm5;
       
   trace_input ("sdivun", OP_IMM_REG_REG_REG, 0);
@@ -2418,19 +2273,19 @@ OP_1C207E0 (void)
 int
 OP_1C007E0 (void)
 {
-  signed long int  quotient;
-  signed long int  remainder;
+  signed32 /*signed long int*/  quotient;
+  signed32 /*signed long int*/  remainder;
   signed long int  divide_by;
   signed long int  divide_this;
-  boolean          overflow = false;
+  int          overflow = 0;
   unsigned int     imm5;
       
   trace_input ("sdivn", OP_IMM_REG_REG_REG, 0);
 
   imm5 = 32 - ((OP[3] & 0x3c0000) >> 17);
 
-  divide_by   = State.regs[ OP[0] ];
-  divide_this = State.regs[ OP[1] ] << imm5;
+  divide_by   = (signed32) State.regs[ OP[0] ];
+  divide_this = (signed32) (State.regs[ OP[1] ] << imm5);
 
   divn (imm5, divide_by, divide_this, & quotient, & remainder, & overflow);
   
@@ -2453,11 +2308,11 @@ OP_1C007E0 (void)
 int
 OP_18207E0 (void)
 {
-  unsigned long int  quotient;
-  unsigned long int  remainder;
+  unsigned32 /*unsigned long int*/  quotient;
+  unsigned32 /*unsigned long int*/  remainder;
   unsigned long int  divide_by;
   unsigned long int  divide_this;
-  boolean            overflow = false;
+  int            overflow = 0;
   unsigned int       imm5;
       
   trace_input ("sdivhun", OP_IMM_REG_REG_REG, 0);
@@ -2488,11 +2343,11 @@ OP_18207E0 (void)
 int
 OP_18007E0 (void)
 {
-  signed long int  quotient;
-  signed long int  remainder;
+  signed32 /*signed long int*/  quotient;
+  signed32 /*signed long int*/  remainder;
   signed long int  divide_by;
   signed long int  divide_this;
-  boolean          overflow = false;
+  int          overflow = 0;
   unsigned int     imm5;
       
   trace_input ("sdivhn", OP_IMM_REG_REG_REG, 0);
@@ -2500,7 +2355,7 @@ OP_18007E0 (void)
   imm5 = 32 - ((OP[3] & 0x3c0000) >> 17);
 
   divide_by   = EXTEND16 (State.regs[ OP[0] ]);
-  divide_this = State.regs[ OP[1] ] << imm5;
+  divide_this = (signed32) (State.regs[ OP[1] ] << imm5);
 
   divn (imm5, divide_by, divide_this, & quotient, & remainder, & overflow);
   
@@ -2519,8 +2374,6 @@ OP_18007E0 (void)
   return 4;
 }
 
-/* end-sanitize-v850eq */
-/* start-sanitize-v850e */
 /* divu  reg1, reg2, reg3 */
 int
 OP_2C207E0 (void)
@@ -2529,7 +2382,7 @@ OP_2C207E0 (void)
   unsigned long int remainder;
   unsigned long int divide_by;
   unsigned long int divide_this;
-  boolean           overflow = false;
+  int           overflow = 0;
   
   trace_input ("divu", OP_REG_REG_REG, 0);
   
@@ -2540,27 +2393,26 @@ OP_2C207E0 (void)
   
   if (divide_by == 0)
     {
-      overflow = true;
-      divide_by  = 1;
+      PSW |= PSW_OV;
     }
+  else
+    {
+      State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
+      State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
   
-  State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
-  State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
-  
-  /* Set condition codes.  */
-  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
+      /* Set condition codes.  */
+      PSW &= ~(PSW_Z | PSW_S | PSW_OV);
   
-  if (overflow)      PSW |= PSW_OV;
-  if (quotient == 0) PSW |= PSW_Z;
-  if (quotient & 0x80000000) PSW |= PSW_S;
+      if (overflow)      PSW |= PSW_OV;
+      if (quotient == 0) PSW |= PSW_Z;
+      if (quotient & 0x80000000) PSW |= PSW_S;
+    }
   
   trace_output (OP_REG_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* div  reg1, reg2, reg3 */
 int
 OP_2C007E0 (void)
@@ -2569,38 +2421,43 @@ OP_2C007E0 (void)
   signed long int remainder;
   signed long int divide_by;
   signed long int divide_this;
-  boolean         overflow = false;
   
   trace_input ("div", OP_REG_REG_REG, 0);
   
   /* Compute the result.  */
   
-  divide_by   = State.regs[ OP[0] ];
+  divide_by   = (signed32) State.regs[ OP[0] ];
   divide_this = State.regs[ OP[1] ];
   
-  if (divide_by == 0 || (divide_by == -1 && divide_this == (1 << 31)))
+  if (divide_by == 0)
     {
-      overflow  = true;
-      divide_by = 1;
+      PSW |= PSW_OV;
+    }
+  else if (divide_by == -1 && divide_this == (1L << 31))
+    {
+      PSW &= ~PSW_Z;
+      PSW |= PSW_OV | PSW_S;
+      State.regs[ OP[1] ] = (1 << 31);
+      State.regs[ OP[2] >> 11 ] = 0;
+    }
+  else
+    {
+      divide_this = (signed32) divide_this;
+      State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
+      State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
+      /* Set condition codes.  */
+      PSW &= ~(PSW_Z | PSW_S | PSW_OV);
+  
+      if (quotient == 0) PSW |= PSW_Z;
+      if (quotient <  0) PSW |= PSW_S;
     }
-  
-  State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
-  State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
-  
-  /* Set condition codes.  */
-  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
-  
-  if (overflow)      PSW |= PSW_OV;
-  if (quotient == 0) PSW |= PSW_Z;
-  if (quotient <  0) PSW |= PSW_S;
   
   trace_output (OP_REG_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* divhu  reg1, reg2, reg3 */
 int
 OP_28207E0 (void)
@@ -2609,7 +2466,7 @@ OP_28207E0 (void)
   unsigned long int remainder;
   unsigned long int divide_by;
   unsigned long int divide_this;
-  boolean           overflow = false;
+  int           overflow = 0;
   
   trace_input ("divhu", OP_REG_REG_REG, 0);
   
@@ -2620,27 +2477,26 @@ OP_28207E0 (void)
   
   if (divide_by == 0)
     {
-      overflow = true;
-      divide_by  = 1;
+      PSW |= PSW_OV;
     }
+  else
+    {
+      State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
+      State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
   
-  State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
-  State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
-  
-  /* Set condition codes.  */
-  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
+      /* Set condition codes.  */
+      PSW &= ~(PSW_Z | PSW_S | PSW_OV);
   
-  if (overflow)      PSW |= PSW_OV;
-  if (quotient == 0) PSW |= PSW_Z;
-  if (quotient & 0x80000000) PSW |= PSW_S;
+      if (overflow)      PSW |= PSW_OV;
+      if (quotient == 0) PSW |= PSW_Z;
+      if (quotient & 0x80000000) PSW |= PSW_S;
+    }
   
   trace_output (OP_REG_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* divh  reg1, reg2, reg3 */
 int
 OP_28007E0 (void)
@@ -2649,68 +2505,70 @@ OP_28007E0 (void)
   signed long int remainder;
   signed long int divide_by;
   signed long int divide_this;
-  boolean         overflow = false;
+  int         overflow = 0;
   
   trace_input ("divh", OP_REG_REG_REG, 0);
   
   /* Compute the result.  */
   
-  divide_by  = State.regs[ OP[0] ];
-  divide_this = EXTEND16 (State.regs[ OP[1] ]);
+  divide_by  = EXTEND16 (State.regs[ OP[0] ]);
+  divide_this = State.regs[ OP[1] ];
   
-  if (divide_by == 0 || (divide_by == -1 && divide_this == (1 << 31)))
+  if (divide_by == 0)
     {
-      overflow = true;
-      divide_by  = 1;
+      PSW |= PSW_OV;
     }
+  else if (divide_by == -1 && divide_this == (1L << 31))
+    {
+      PSW &= ~PSW_Z;
+      PSW |= PSW_OV | PSW_S;
+      State.regs[ OP[1] ] = (1 << 31);
+      State.regs[ OP[2] >> 11 ] = 0;
+    }
+  else
+    {
+      divide_this = (signed32) divide_this;
+      State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
+      State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
   
-  State.regs[ OP[1]       ] = quotient  = divide_this / divide_by;
-  State.regs[ OP[2] >> 11 ] = remainder = divide_this % divide_by;
-  
-  /* Set condition codes.  */
-  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
+      /* Set condition codes.  */
+      PSW &= ~(PSW_Z | PSW_S | PSW_OV);
   
-  if (overflow)      PSW |= PSW_OV;
-  if (quotient == 0) PSW |= PSW_Z;
-  if (quotient <  0) PSW |= PSW_S;
+      if (quotient == 0) PSW |= PSW_Z;
+      if (quotient <  0) PSW |= PSW_S;
+    }
   
   trace_output (OP_REG_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* mulu imm9, reg2, reg3 */
 int
 OP_24207E0 (void)
 {
   trace_input ("mulu", OP_IMM_REG_REG, 0);
 
-  Multiply64 (false, (OP[3] & 0x1f) | ((OP[3] >> 13) & 0x1e0));
+  Multiply64 (0, (OP[3] & 0x1f) | ((OP[3] >> 13) & 0x1e0));
 
   trace_output (OP_IMM_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* mul imm9, reg2, reg3 */
 int
 OP_24007E0 (void)
 {
   trace_input ("mul", OP_IMM_REG_REG, 0);
 
-  Multiply64 (true, (OP[3] & 0x1f) | ((OP[3] >> 13) & 0x1e0));
+  Multiply64 (1, SEXT9 ((OP[3] & 0x1f) | ((OP[3] >> 13) & 0x1e0)));
 
   trace_output (OP_IMM_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* ld.hu */
 int
 OP_107E0 (void)
@@ -2729,8 +2587,7 @@ OP_107E0 (void)
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
+
 /* ld.bu */
 int
 OP_10780 (void)
@@ -2849,55 +2706,19 @@ OP_30780 (void)
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
-/* sld.hu */
-int
-OP_70 (void)
-{
-  unsigned long result;
-  
-  result  = load_mem (State.regs[30] + ((OP[3] & 0xf) << 1), 2);
-
-  /* start-sanitize-v850eq */
-  if (PSW & PSW_US)
-    {
-      trace_input ("sld.h", OP_LOAD16, 2);
-      State.regs[ OP[1] ] = EXTEND16 (result);
-    }
-  else
-    {
-/* end-sanitize-v850eq */
-  trace_input ("sld.hu", OP_LOAD16, 2);
-  
-  State.regs[ OP[1] ] = result;
-/* start-sanitize-v850eq */
-    }
-/* end-sanitize-v850eq */
-  
-  trace_output (OP_LOAD16);
-  
-  return 2;
-}
-
-/* end-sanitize-v850e */
-/* start-sanitize-v850e */
 /* mul reg1, reg2, reg3 */
 int
 OP_22007E0 (void)
 {
   trace_input ("mul", OP_REG_REG_REG, 0);
 
-  Multiply64 (true, State.regs[ OP[0] ]);
+  Multiply64 (1, State.regs[ OP[0] ]);
 
   trace_output (OP_REG_REG_REG);
 
   return 4;
 }
 
-/* end-sanitize-v850e */
-/* start-sanitize-v850eq */
-
 /* popmh list18 */
 int
 OP_307F0 (void)
@@ -3015,4 +2836,776 @@ OP_307E0 (void)
   return 4;
 }
 
-/* end-sanitize-v850eq */
+/* V850E2R FPU functions */
+/*
+  sim_fpu_status_invalid_snan = 1,                             -V--- (sim spec.)
+  sim_fpu_status_invalid_qnan = 2,                             ----- (sim spec.)
+  sim_fpu_status_invalid_isi = 4, (inf - inf)                  -V---
+  sim_fpu_status_invalid_idi = 8, (inf / inf)                  -V---
+  sim_fpu_status_invalid_zdz = 16, (0 / 0)                     -V---
+  sim_fpu_status_invalid_imz = 32, (inf * 0)                   -V---
+  sim_fpu_status_invalid_cvi = 64, convert to integer          -V---
+  sim_fpu_status_invalid_div0 = 128, (X / 0)                   --Z--
+  sim_fpu_status_invalid_cmp = 256, compare                    ----- (sim spec.)
+  sim_fpu_status_invalid_sqrt = 512,                           -V---
+  sim_fpu_status_rounded = 1024,                               I----
+  sim_fpu_status_inexact = 2048,                               I---- (sim spec.)
+  sim_fpu_status_overflow = 4096,                              I--O-
+  sim_fpu_status_underflow = 8192,                             I---U
+  sim_fpu_status_denorm = 16384,                               ----U (sim spec.)
+*/  
+    
+void
+update_fpsr (SIM_DESC sd, sim_fpu_status status, unsigned int mask, unsigned int double_op_p)
+{
+  unsigned int fpsr = FPSR & mask;
+
+  unsigned int flags = 0;
+
+  if (fpsr & FPSR_XEI
+      && ((status & (sim_fpu_status_rounded
+                    | sim_fpu_status_overflow
+                    | sim_fpu_status_inexact))
+         || (status & sim_fpu_status_underflow
+             && (fpsr & (FPSR_XEU | FPSR_XEI)) == 0
+             && fpsr & FPSR_FS)))
+    {
+      flags |= FPSR_XCI | FPSR_XPI;
+    }
+
+  if (fpsr & FPSR_XEV
+      && (status & (sim_fpu_status_invalid_isi
+                   | sim_fpu_status_invalid_imz
+                   | sim_fpu_status_invalid_zdz
+                   | sim_fpu_status_invalid_idi
+                   | sim_fpu_status_invalid_cvi
+                   | sim_fpu_status_invalid_sqrt
+                   | sim_fpu_status_invalid_snan)))
+    {
+      flags |= FPSR_XCV | FPSR_XPV;
+    }
+
+  if (fpsr & FPSR_XEZ
+      && (status & sim_fpu_status_invalid_div0))
+    {
+      flags |= FPSR_XCV | FPSR_XPV;
+    }
+
+  if (fpsr & FPSR_XEO
+      && (status & sim_fpu_status_overflow))
+    {
+      flags |= FPSR_XCO | FPSR_XPO;
+    }
+      
+  if (((fpsr & FPSR_XEU) || (fpsr & FPSR_FS) == 0)
+      && (status & (sim_fpu_status_underflow
+                   | sim_fpu_status_denorm)))
+    {
+      flags |= FPSR_XCU | FPSR_XPU;
+    }
+
+  if (flags)
+    {
+      FPSR &= ~FPSR_XC;
+      FPSR |= flags;
+
+      SignalExceptionFPE (sd, double_op_p);
+    }
+}
+
+/* Exception.  */
+
+void
+SignalException (SIM_DESC sd)
+{
+  if (MPM & MPM_AUE)
+    {
+      PSW = PSW & ~(PSW_NPV | PSW_DMP | PSW_IMP);
+    }
+}
+
+void
+SignalExceptionFPE (SIM_DESC sd, unsigned int double_op_p)
+{                                                              
+  if (((PSW & (PSW_NP|PSW_ID)) == 0)
+      || !(FPSR & (double_op_p ? FPSR_DEM : FPSR_SEM)))                
+    {                                                          
+      EIPC = PC;                                                       
+      EIPSW = PSW;                                             
+      EIIC = (FPSR & (double_op_p ? FPSR_DEM : FPSR_SEM))      
+       ? 0x71 : 0x72;                                          
+      PSW |= (PSW_EP | PSW_ID);
+      PC = 0x70;
+
+      SignalException (sd);
+    }                                                          
+}
+
+void
+check_invalid_snan (SIM_DESC sd, sim_fpu_status status, unsigned int double_op_p)
+{
+  if ((FPSR & FPSR_XEI)
+      && (status & sim_fpu_status_invalid_snan))
+    {
+      FPSR &= ~FPSR_XC;
+      FPSR |= FPSR_XCV;
+      FPSR |= FPSR_XPV;
+      SignalExceptionFPE (sd, double_op_p);
+    }
+}
+
+int
+v850_float_compare (SIM_DESC sd, int cmp, sim_fpu wop1, sim_fpu wop2, int double_op_p)
+{
+  int result = -1;
+  
+  if (sim_fpu_is_nan (&wop1) || sim_fpu_is_nan (&wop2))
+    {
+      if (cmp & 0x8)
+       {
+         if (FPSR & FPSR_XEV)
+           {
+             FPSR |= FPSR_XCV | FPSR_XPV;
+             SignalExceptionFPE (sd, double_op_p);
+           }
+       }
+
+      switch (cmp)
+       {
+       case FPU_CMP_F:
+         result = 0;
+         break;
+       case FPU_CMP_UN:
+         result = 1;
+         break;
+       case FPU_CMP_EQ:
+         result = 0;
+         break;
+       case FPU_CMP_UEQ:
+         result = 1;
+         break;
+       case FPU_CMP_OLT:
+         result = 0;
+         break;
+       case FPU_CMP_ULT:
+         result = 1;
+         break;
+       case FPU_CMP_OLE:
+         result = 0;
+         break;
+       case FPU_CMP_ULE:
+         result = 1;
+         break;
+       case FPU_CMP_SF:
+         result = 0;
+         break;
+       case FPU_CMP_NGLE:
+         result = 1;
+         break;
+       case FPU_CMP_SEQ:
+         result = 0;
+         break;
+       case FPU_CMP_NGL:
+         result = 1;
+         break;
+       case FPU_CMP_LT:
+         result = 0;
+         break;
+       case FPU_CMP_NGE:
+         result = 1;
+         break;
+       case FPU_CMP_LE:
+         result = 0;
+         break;
+       case FPU_CMP_NGT:
+         result = 1;
+         break;
+       default:
+         abort ();
+       }
+    }
+  else if (sim_fpu_is_infinity (&wop1) && sim_fpu_is_infinity (&wop2)
+          && sim_fpu_sign (&wop1) == sim_fpu_sign (&wop2))
+    {
+      switch (cmp)
+       {
+       case FPU_CMP_F:
+         result = 0;
+         break;
+       case FPU_CMP_UN:
+         result = 0;
+         break;
+       case FPU_CMP_EQ:
+         result = 1;
+         break;
+       case FPU_CMP_UEQ:
+         result = 1;
+         break;
+       case FPU_CMP_OLT:
+         result = 0;
+         break;
+       case FPU_CMP_ULT:
+         result = 0;
+         break;
+       case FPU_CMP_OLE:
+         result = 1;
+         break;
+       case FPU_CMP_ULE:
+         result = 1;
+         break;
+       case FPU_CMP_SF:
+         result = 0;
+         break;
+       case FPU_CMP_NGLE:
+         result = 0;
+         break;
+       case FPU_CMP_SEQ:
+         result = 1;
+         break;
+       case FPU_CMP_NGL:
+         result = 1;
+         break;
+       case FPU_CMP_LT:
+         result = 0;
+         break;
+       case FPU_CMP_NGE:
+         result = 0;
+         break;
+       case FPU_CMP_LE:
+         result = 1;
+         break;
+       case FPU_CMP_NGT:
+         result = 1;
+         break;
+       default:
+         abort ();
+       }
+    }
+  else
+    {
+      int gt = 0,lt = 0,eq = 0, status;
+
+      status = sim_fpu_cmp (&wop1, &wop2);
+
+      switch (status)
+       {
+       case SIM_FPU_IS_SNAN:
+       case SIM_FPU_IS_QNAN:
+         abort ();
+         break;
+
+       case SIM_FPU_IS_NINF:
+         lt = 1;
+         break;
+       case SIM_FPU_IS_PINF:
+         gt = 1;
+         break;
+       case SIM_FPU_IS_NNUMBER:
+         lt = 1;
+         break;
+       case SIM_FPU_IS_PNUMBER:
+         gt = 1;
+         break;
+       case SIM_FPU_IS_NDENORM:
+         lt = 1;
+         break;
+       case SIM_FPU_IS_PDENORM:
+         gt = 1;
+         break;
+       case SIM_FPU_IS_NZERO:
+       case SIM_FPU_IS_PZERO:
+         eq = 1;
+         break;
+       }
+  
+      switch (cmp)
+       {
+       case FPU_CMP_F:
+         result = 0;
+         break;
+       case FPU_CMP_UN:
+         result = 0;
+         break;
+       case FPU_CMP_EQ:
+         result = eq;
+         break;
+       case FPU_CMP_UEQ:
+         result = eq;
+         break;
+       case FPU_CMP_OLT:
+         result = lt;
+         break;
+       case FPU_CMP_ULT:
+         result = lt;
+         break;
+       case FPU_CMP_OLE:
+         result = lt || eq;
+         break;
+       case FPU_CMP_ULE:
+         result = lt || eq;
+         break;
+       case FPU_CMP_SF:
+         result = 0;
+         break;
+       case FPU_CMP_NGLE:
+         result = 0;
+         break;
+       case FPU_CMP_SEQ:
+         result = eq;
+         break;
+       case FPU_CMP_NGL:
+         result = eq;
+         break;
+       case FPU_CMP_LT:
+         result = lt;
+         break;
+       case FPU_CMP_NGE:
+         result = lt;
+         break;
+       case FPU_CMP_LE:
+         result = lt || eq;
+         break;
+       case FPU_CMP_NGT:
+         result = lt || eq;
+         break;
+       }
+    }
+
+  ASSERT (result != -1);
+  return result;
+}
+
+void
+v850_div (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p, unsigned int *op3p)
+{
+  signed long int quotient;
+  signed long int remainder;
+  signed long int divide_by;
+  signed long int divide_this;
+  bfd_boolean     overflow = FALSE;
+  
+  /* Compute the result.  */
+  divide_by   = op0;
+  divide_this = op1;
+
+  if (divide_by == 0 || (divide_by == -1 && divide_this == (1 << 31)))
+    {
+      overflow  = TRUE;
+      divide_by = 1;
+    }
+  
+  quotient  = divide_this / divide_by;
+  remainder = divide_this % divide_by;
+  
+  /* Set condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
+  
+  if (overflow)      PSW |= PSW_OV;
+  if (quotient == 0) PSW |= PSW_Z;
+  if (quotient <  0) PSW |= PSW_S;
+  
+  *op2p = quotient;
+  *op3p = remainder;
+}
+
+void
+v850_divu (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p, unsigned int *op3p)
+{
+  unsigned long int quotient;
+  unsigned long int remainder;
+  unsigned long int divide_by;
+  unsigned long int divide_this;
+  bfd_boolean       overflow = FALSE;
+  
+  /* Compute the result.  */
+  
+  divide_by   = op0;
+  divide_this = op1;
+  
+  if (divide_by == 0)
+    {
+      overflow = TRUE;
+      divide_by  = 1;
+    }
+  
+  quotient  = divide_this / divide_by;
+  remainder = divide_this % divide_by;
+  
+  /* Set condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV);
+  
+  if (overflow)      PSW |= PSW_OV;
+  if (quotient == 0) PSW |= PSW_Z;
+  if (quotient & 0x80000000) PSW |= PSW_S;
+  
+  *op2p = quotient;
+  *op3p = remainder;
+}
+
+void
+v850_sar (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p)
+{
+  unsigned int result, z, s, cy;
+
+  op0 &= 0x1f;
+  result = (signed)op1 >> op0;
+
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = (result & 0x80000000);
+  cy = (op1 & (1 << (op0 - 1)));
+
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV | PSW_CY);
+  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
+               | (cy ? PSW_CY : 0));
+
+  *op2p = result;
+}
+
+void
+v850_shl (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p)
+{
+  unsigned int result, z, s, cy;
+
+  op0 &= 0x1f;
+  result = op1 << op0;
+
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = (result & 0x80000000);
+  cy = (op1 & (1 << (32 - op0)));
+
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV | PSW_CY);
+  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
+               | (cy ? PSW_CY : 0));
+
+  *op2p = result;
+}
+
+void
+v850_rotl (SIM_DESC sd, unsigned int amount, unsigned int src, unsigned int * dest)
+{
+  unsigned int result, z, s, cy;
+
+  amount &= 0x1f;
+  result = src << amount;
+  result |= src >> (32 - amount);
+
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = (result & 0x80000000);
+  cy = ! (result & 1);
+
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV | PSW_CY);
+  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
+               | (cy ? PSW_CY : 0));
+
+  * dest = result;
+}
+
+void
+v850_bins (SIM_DESC sd, unsigned int source, unsigned int lsb, unsigned int msb,
+          unsigned int * dest)
+{
+  unsigned int mask;
+  unsigned int result, pos, width;
+  unsigned int z, s;
+
+  pos = lsb;
+  width = (msb - lsb) + 1;
+
+  mask = ~ (-(1 << width));
+  source &= mask;
+  mask <<= pos;
+  result = (* dest) & ~ mask;
+  result |= source << pos;
+
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = result & 0x80000000;
+
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV );
+  PSW |= (z ? PSW_Z : 0) | (s ? PSW_S : 0);
+  
+  * dest = result;
+}
+
+void
+v850_shr (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p)
+{
+  unsigned int result, z, s, cy;
+
+  op0 &=  0x1f;
+  result = op1 >> op0;
+
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = (result & 0x80000000);
+  cy = (op1 & (1 << (op0 - 1)));
+
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_OV | PSW_CY);
+  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
+               | (cy ? PSW_CY : 0));
+
+  *op2p = result;
+}
+
+void
+v850_satadd (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p)
+{
+  unsigned int result, z, s, cy, ov, sat;
+
+  result = op0 + op1;
+  
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = (result & 0x80000000);
+  cy = (result < op0 || result < op1);
+  ov = ((op0 & 0x80000000) == (op1 & 0x80000000)
+       && (op0 & 0x80000000) != (result & 0x80000000));
+  sat = ov;
+  
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_CY | PSW_OV);
+  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
+         | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
+         | (sat ? PSW_SAT : 0));
+  
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      result = 0x7fffffff;
+      PSW &= ~PSW_S;
+    }
+  else if (sat)
+    {
+      result = 0x80000000;
+      PSW |= PSW_S;
+    }
+
+  *op2p = result;
+}
+
+void
+v850_satsub (SIM_DESC sd, unsigned int op0, unsigned int op1, unsigned int *op2p)
+{
+  unsigned int result, z, s, cy, ov, sat;
+
+  /* Compute the result.  */
+  result = op1 - op0;
+  
+  /* Compute the condition codes.  */
+  z = (result == 0);
+  s = (result & 0x80000000);
+  cy = (op1 < op0);
+  ov = ((op1 & 0x80000000) != (op0 & 0x80000000)
+       && (op1 & 0x80000000) != (result & 0x80000000));
+  sat = ov;
+  
+  /* Store the result and condition codes.  */
+  PSW &= ~(PSW_Z | PSW_S | PSW_CY | PSW_OV);
+  PSW |= ((z ? PSW_Z : 0) | (s ? PSW_S : 0)
+         | (cy ? PSW_CY : 0) | (ov ? PSW_OV : 0)
+         | (sat ? PSW_SAT : 0));
+
+  /* Handle saturated results.  */
+  if (sat && s)
+    {
+      result = 0x7fffffff;
+      PSW &= ~PSW_S;
+    }
+  else if (sat)
+    {
+      result = 0x80000000;
+      PSW |= PSW_S;
+    }
+
+  *op2p = result;
+}
+
+unsigned32
+load_data_mem (SIM_DESC  sd,
+              SIM_ADDR  addr,
+              int       len)
+{
+  uint32 data;
+
+  switch (len)
+    {
+    case 1:
+      data = sim_core_read_unaligned_1 (STATE_CPU (sd, 0), 
+                                       PC, read_map, addr);
+      break;
+    case 2:
+      data = sim_core_read_unaligned_2 (STATE_CPU (sd, 0), 
+                                       PC, read_map, addr);
+      break;
+    case 4:
+      data = sim_core_read_unaligned_4 (STATE_CPU (sd, 0), 
+                                       PC, read_map, addr);
+      break;
+    default:
+      abort ();
+    }
+  return data;
+}
+
+void
+store_data_mem (SIM_DESC    sd,
+               SIM_ADDR    addr,
+               int         len,
+               unsigned32  data)
+{
+  switch (len)
+    {
+    case 1:
+      store_mem (addr, 1, data);
+      break;
+    case 2:
+      store_mem (addr, 2, data);
+      break;
+    case 4:
+      store_mem (addr, 4, data);
+      break;
+    default:
+      abort ();
+    }
+}
+
+int
+mpu_load_mem_test (SIM_DESC sd, unsigned int addr, int size, int base_reg)
+{
+  int result = 1;
+
+  if (PSW & PSW_DMP)
+    {
+      if (IPE0 && addr >= IPA2ADDR (IPA0L) && addr <= IPA2ADDR (IPA0L) && IPR0)
+       {
+         /* text area */
+       }
+      else if (IPE1 && addr >= IPA2ADDR (IPA1L) && addr <= IPA2ADDR (IPA1L) && IPR1)
+       {
+         /* text area */
+       }
+      else if (IPE2 && addr >= IPA2ADDR (IPA2L) && addr <= IPA2ADDR (IPA2L) && IPR2)
+       {
+         /* text area */
+       }
+      else if (IPE3 && addr >= IPA2ADDR (IPA3L) && addr <= IPA2ADDR (IPA3L) && IPR3)
+       {
+         /* text area */
+       }
+      else if (addr >= PPA2ADDR (PPA & ~PPM) && addr <= DPA2ADDR (PPA | PPM))
+       {
+         /* preifarallel area */
+       }
+      else if (addr >= PPA2ADDR (SPAL) && addr <= DPA2ADDR (SPAU))
+       {
+         /* stack area */
+       }
+      else if (DPE0 && addr >= DPA2ADDR (DPA0L) && addr <= DPA2ADDR (DPA0L) && DPR0
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else if (DPE1 && addr >= DPA2ADDR (DPA1L) && addr <= DPA2ADDR (DPA1L) && DPR1
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else if (DPE2 && addr >= DPA2ADDR (DPA2L) && addr <= DPA2ADDR (DPA2L) && DPR2
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else if (DPE3 && addr >= DPA2ADDR (DPA3L) && addr <= DPA2ADDR (DPA3L) && DPR3
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else
+       {
+         VMECR &= ~(VMECR_VMW | VMECR_VMX);
+         VMECR |= VMECR_VMR;
+         VMADR = addr;
+         VMTID = TID;
+         FEIC = 0x431;
+
+         PC = 0x30;
+
+         SignalException (sd);
+         result = 0;
+       }
+    }
+
+  return result;
+}
+
+int
+mpu_store_mem_test (SIM_DESC sd, unsigned int addr, int size, int base_reg)
+{
+  int result = 1;
+
+  if (PSW & PSW_DMP)
+    {
+      if (addr >= PPA2ADDR (PPA & ~PPM) && addr <= DPA2ADDR (PPA | PPM))
+       {
+         /* preifarallel area */
+       }
+      else if (addr >= PPA2ADDR (SPAL) && addr <= DPA2ADDR (SPAU))
+       {
+         /* stack area */
+       }
+      else if (DPE0 && addr >= DPA2ADDR (DPA0L) && addr <= DPA2ADDR (DPA0L) && DPW0
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else if (DPE1 && addr >= DPA2ADDR (DPA1L) && addr <= DPA2ADDR (DPA1L) && DPW1
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else if (DPE2 && addr >= DPA2ADDR (DPA2L) && addr <= DPA2ADDR (DPA2L) && DPW2
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else if (DPE3 && addr >= DPA2ADDR (DPA3L) && addr <= DPA2ADDR (DPA3L) && DPW3
+              && ((SPAL & SPAL_SPS) ? base_reg == SP_REGNO : 1))
+       {
+         /* data area */
+       }
+      else
+       {
+         if (addr >= PPA2ADDR (PPA & ~PPM) && addr <= DPA2ADDR (PPA | PPM))
+           {
+             FEIC = 0x432;
+             VPTID = TID;
+             VPADR = PC;
+#ifdef NOT_YET
+             VIP_PP;
+             VPECR;
+#endif       
+           }
+         else
+           {
+             FEIC = 0x431;
+             VMTID = TID;
+             VMADR = VMECR;
+             VMECR &= ~(VMECR_VMW | VMECR_VMX);
+             VMECR |= VMECR_VMR;
+             PC = 0x30;
+           }
+         result = 0;
+       }
+    }
+
+  return result;
+}
+
This page took 0.054617 seconds and 4 git commands to generate.