Implement "dbt" and "rtd" instructions.

Import fixes to dmap_addr() from mitsu branch.
This commit is contained in:
Andrew Cagney 1998-02-16 00:35:57 +00:00
parent b104806fd3
commit 729295b597
2 changed files with 40 additions and 15 deletions

View File

@ -1,3 +1,18 @@
Mon Oct 27 14:43:33 1997 Fred Fish <fnf@cygnus.com>
* (dmem_addr): If address is illegal or in I/O space, signal a bus
error. Allocate unified memory on demand. Fix DMEM address
calculations.
Mon Feb 16 10:27:53 1998 Andrew Cagney <cagney@b1.cygnus.com>
* simops.c (OP_5F20): Implement "dbt".
(OP_5F60): Implement "rtd".
* d10v_sim.h (DPC_CR): Define enum.
(DBT_VECTOR_START): Define
(DPSW, DPC): Define.
Fri Feb 13 15:15:58 1998 Andrew Cagney <cagney@b1.cygnus.com>
* simops.c (move_to_cr): Sync regs[SP_IDX] with State.sp according

View File

@ -627,21 +627,31 @@ dmem_addr( addr )
if (DMAP & 0x1000)
{
/* instruction memory */
return (DMAP & 0xf) * 0x4000 + State.imem;
return (DMAP & 0xf) * 0x4000 + State.imem + (addr - 0x8000);
}
/* unified memory */
/* this is ugly because we allocate unified memory in 128K segments and */
/* dmap addresses 16k segments */
seg = (DMAP & 0x3ff) >> 3;
if (State.umem[seg] == NULL)
else
{
(*d10v_callback->printf_filtered) (d10v_callback, "ERROR: unified memory region %d unmapped, pc = 0x%lx\n",
seg, (long)decode_pc ());
State.exception = SIGBUS;
/* unified memory */
/* this is ugly because we allocate unified memory in 128K segments and */
/* dmap addresses 16k segments */
seg = (DMAP & 0x3ff) >> 3;
if (State.umem[seg] == NULL)
{
#ifdef DEBUG
(*d10v_callback->printf_filtered) (d10v_callback,"Allocating %d bytes unified memory to region %d\n", 1<<UMEM_SIZE, seg);
#endif
State.umem[seg] = (uint8 *)calloc(1,1<<UMEM_SIZE);
if (!State.umem[seg])
{
(*d10v_callback->printf_filtered) (d10v_callback,
"ERROR: alloc failed. unified memory region %d unmapped, pc = 0x%lx\n",
seg, (long)decode_pc ());
State.exception = SIGBUS;
}
}
return State.umem[seg] + (DMAP & 7) * 0x4000 + (addr - 0x8000);
}
return State.umem[seg] + (DMAP & 7) * 0x4000;
}
return State.dmem + addr;
}
@ -903,13 +913,13 @@ sim_create_inferior (sd, abfd, argv, env)
{
/* a hack to set r0/r1 with argc/argv */
/* some high memory that won't be overwritten by the stack soon */
addr = State.regs[0] = 0x7C00;
p = 20;
i = 0;
bfd_vma addr = State.regs[0] = 0x7C00;
int p = 20;
int i = 0;
while (argv[i])
{
int size = strlen (argv[i]) + 1;
SW (addr + 2*i, addr + p);
size = strlen (argv[i]) + 1;
sim_write (sd, addr + 0, argv[i], size);
p += size;
i++;