437fb926e6
void * to avoid compiler error.
1257 lines
24 KiB
C
1257 lines
24 KiB
C
/* Simulator for the Hitachi SH architecture.
|
|
|
|
Written by Steve Chamberlain of Cygnus Support.
|
|
sac@cygnus.com
|
|
|
|
This file is part of SH sim
|
|
|
|
|
|
THIS SOFTWARE IS NOT COPYRIGHTED
|
|
|
|
Cygnus offers the following for use in the public domain. Cygnus
|
|
makes no warranty with regard to the software or it's performance
|
|
and the user accepts the software "AS IS" with all faults.
|
|
|
|
CYGNUS DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO
|
|
THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
#include <signal.h>
|
|
|
|
#include "sysdep.h"
|
|
#include "bfd.h"
|
|
#include "remote-sim.h"
|
|
|
|
#include "callback.h"
|
|
/* This file is local - if newlib changes, then so should this. */
|
|
#include "syscall.h"
|
|
|
|
/* start-sanitize-sh3e */
|
|
#include <math.h>
|
|
/* end-sanitize-sh3e */
|
|
|
|
#ifndef SIGBUS
|
|
#define SIGBUS SIGSEGV
|
|
#endif
|
|
|
|
#ifndef SIGQUIT
|
|
#define SIGQUIT SIGTERM
|
|
#endif
|
|
|
|
#define O_RECOMPILE 85
|
|
#define DEFINE_TABLE
|
|
#define DISASSEMBLER_TABLE
|
|
|
|
|
|
|
|
#define SBIT(x) ((x)&sbit)
|
|
#define R0 saved_state.asregs.regs[0]
|
|
#define Rn saved_state.asregs.regs[n]
|
|
#define Rm saved_state.asregs.regs[m]
|
|
#define UR0 (unsigned int)(saved_state.asregs.regs[0])
|
|
#define UR (unsigned int)R
|
|
#define UR (unsigned int)R
|
|
#define SR0 saved_state.asregs.regs[0]
|
|
#define GBR saved_state.asregs.gbr
|
|
#define VBR saved_state.asregs.vbr
|
|
#define MACH saved_state.asregs.mach
|
|
#define MACL saved_state.asregs.macl
|
|
#define M saved_state.asregs.sr.bits.m
|
|
#define Q saved_state.asregs.sr.bits.q
|
|
#define S saved_state.asregs.sr.bits.s
|
|
/* start-sanitize-sh3e */
|
|
#define FPSCR saved_state.asregs.fpscr
|
|
#define FPUL saved_state.asregs.fpul
|
|
/* end-sanitize-sh3e */
|
|
|
|
#define GET_SR() (saved_state.asregs.sr.bits.t = T, saved_state.asregs.sr.word)
|
|
#define SET_SR(x) {saved_state.asregs.sr.word = (x); T =saved_state.asregs.sr.bits.t;}
|
|
|
|
#define PC pc
|
|
#define C cycles
|
|
|
|
int
|
|
fail ()
|
|
{
|
|
abort ();
|
|
}
|
|
|
|
#define BUSERROR(addr, mask) \
|
|
if (addr & ~mask) { saved_state.asregs.exception = SIGBUS;}
|
|
|
|
/* Define this to enable register lifetime checking.
|
|
The compiler generates "add #0,rn" insns to mark registers as invalid,
|
|
the simulator uses this info to call fail if it finds a ref to an invalid
|
|
register before a def
|
|
|
|
#define PARANOID
|
|
*/
|
|
|
|
#ifdef PARANOID
|
|
int valid[16];
|
|
#define CREF(x) if(!valid[x]) fail();
|
|
#define CDEF(x) valid[x] = 1;
|
|
#define UNDEF(x) valid[x] = 0;
|
|
#else
|
|
#define CREF(x)
|
|
#define CDEF(x)
|
|
#define UNDEF(x)
|
|
#endif
|
|
|
|
static void parse_and_set_memory_size PARAMS ((char *str));
|
|
|
|
static int IOMEM PARAMS ((int addr, int write, int value));
|
|
|
|
|
|
static host_callback *callback = &default_callback;
|
|
/* These variables are at file scope so that functions other than
|
|
sim_resume can use the fetch/store macros */
|
|
|
|
static int little_endian;
|
|
|
|
|
|
|
|
#if 1
|
|
static int maskl = ~0;
|
|
static int maskw = ~0;
|
|
#endif
|
|
typedef union
|
|
{
|
|
|
|
struct
|
|
{
|
|
|
|
int regs[16];
|
|
int pc;
|
|
int pr;
|
|
|
|
int gbr;
|
|
int vbr;
|
|
int mach;
|
|
int macl;
|
|
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
unsigned int d0:22;
|
|
unsigned int m:1;
|
|
unsigned int q:1;
|
|
unsigned int i:4;
|
|
unsigned int d1:2;
|
|
unsigned int s:1;
|
|
unsigned int t:1;
|
|
}
|
|
bits;
|
|
int word;
|
|
}
|
|
sr;
|
|
int ticks;
|
|
int stalls;
|
|
int cycles;
|
|
int insts;
|
|
|
|
|
|
int prevlock;
|
|
int thislock;
|
|
/* start-sanitize-sh3e */
|
|
float fregs[16];
|
|
float fpscr;
|
|
int fpul;
|
|
/* end-sanitize-sh3e */
|
|
int exception;
|
|
int msize;
|
|
#define PROFILE_FREQ 1
|
|
#define PROFILE_SHIFT 2
|
|
int profile;
|
|
unsigned short *profile_hist;
|
|
unsigned char *memory;
|
|
}
|
|
asregs;
|
|
int asints[28];
|
|
} saved_state_type;
|
|
saved_state_type saved_state;
|
|
|
|
static void INLINE
|
|
wlat_little (memory, x, value, maskl)
|
|
unsigned char *memory;
|
|
{
|
|
int v = value;
|
|
unsigned char *p = memory + ((x) & maskl);
|
|
BUSERROR(x, maskl);
|
|
p[3] = v >> 24;
|
|
p[2] = v >> 16;
|
|
p[1] = v >> 8;
|
|
p[0] = v;
|
|
}
|
|
|
|
static void INLINE
|
|
wwat_little (memory, x, value, maskw)
|
|
unsigned char *memory;
|
|
{
|
|
int v = value;
|
|
unsigned char *p = memory + ((x) & maskw);
|
|
BUSERROR(x, maskw);
|
|
|
|
p[1] = v >> 8;
|
|
p[0] = v;
|
|
}
|
|
|
|
|
|
static void INLINE
|
|
wbat_any (memory, x, value, maskb)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + (x & maskb);
|
|
if (x > 0x5000000)
|
|
IOMEM (x, 1, value);
|
|
BUSERROR(x, maskb);
|
|
|
|
p[0] = value;
|
|
}
|
|
|
|
|
|
|
|
static void INLINE
|
|
wlat_big (memory, x, value, maskl)
|
|
unsigned char *memory;
|
|
{
|
|
int v = value;
|
|
unsigned char *p = memory + ((x) & maskl);
|
|
BUSERROR(x, maskl);
|
|
|
|
p[0] = v >> 24;
|
|
p[1] = v >> 16;
|
|
p[2] = v >> 8;
|
|
p[3] = v;
|
|
}
|
|
|
|
static void INLINE
|
|
wwat_big (memory, x, value, maskw)
|
|
unsigned char *memory;
|
|
{
|
|
int v = value;
|
|
unsigned char *p = memory + ((x) & maskw);
|
|
BUSERROR(x, maskw);
|
|
|
|
p[0] = v >> 8;
|
|
p[1] = v;
|
|
}
|
|
|
|
|
|
static void INLINE
|
|
wbat_big (memory, x, value, maskb)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + (x & maskb);
|
|
BUSERROR(x, maskb);
|
|
|
|
if (x > 0x5000000)
|
|
IOMEM (x, 1, value);
|
|
p[0] = value;
|
|
}
|
|
|
|
|
|
|
|
/* Read functions */
|
|
static int INLINE
|
|
rlat_little (memory, x, maskl)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + ((x) & maskl);
|
|
BUSERROR(x, maskl);
|
|
|
|
return (p[3] << 24) | (p[2] << 16) | (p[1] << 8) | p[0];
|
|
|
|
}
|
|
|
|
static int INLINE
|
|
rwat_little (memory, x, maskw)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + ((x) & maskw);
|
|
BUSERROR(x, maskw);
|
|
|
|
return (p[1] << 8) | p[0];
|
|
}
|
|
|
|
static int INLINE
|
|
rbat_any (memory, x, maskb)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + ((x) & maskb);
|
|
BUSERROR(x, maskb);
|
|
|
|
return p[0];
|
|
}
|
|
|
|
static int INLINE
|
|
rlat_big (memory, x, maskl)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + ((x) & maskl);
|
|
BUSERROR(x, maskl);
|
|
|
|
return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
|
|
|
|
}
|
|
|
|
static int INLINE
|
|
rwat_big (memory, x, maskw)
|
|
unsigned char *memory;
|
|
{
|
|
unsigned char *p = memory + ((x) & maskw);
|
|
BUSERROR(x, maskw);
|
|
|
|
return (p[0] << 8) | p[1];
|
|
}
|
|
|
|
|
|
#define RWAT(x) (little_endian ? rwat_little(memory, x, maskw): rwat_big(memory, x, maskw))
|
|
#define RLAT(x) (little_endian ? rlat_little(memory, x, maskl): rlat_big(memory, x, maskl))
|
|
#define RBAT(x) (rbat_any (memory, x, maskb))
|
|
#define WWAT(x,v) (little_endian ? wwat_little(memory, x, v, maskw): wwat_big(memory, x, v, maskw))
|
|
#define WLAT(x,v) (little_endian ? wlat_little(memory, x, v, maskl): wlat_big(memory, x, v, maskl))
|
|
#define WBAT(x,v) (wbat_any (memory, x, v, maskb))
|
|
|
|
#define RUWAT(x) (RWAT(x) & 0xffff)
|
|
#define RSWAT(x) ((short)(RWAT(x)))
|
|
#define RSBAT(x) (SEXT(RBAT(x)))
|
|
|
|
#define SEXT(x) (((x&0xff) ^ (~0x7f))+0x80)
|
|
#define SEXTW(y) ((int)((short)y))
|
|
|
|
#define SL(TEMPPC) iword= RUWAT(TEMPPC); goto top;
|
|
|
|
|
|
int empty[16];
|
|
|
|
#define L(x) thislock = x;
|
|
#define TL(x) if ((x) == prevlock) stalls++;
|
|
#define TB(x,y) if ((x) == prevlock || (y)==prevlock) stalls++;
|
|
|
|
#if defined(__GO32__) || defined(WIN32)
|
|
int sim_memory_size = 19;
|
|
#else
|
|
int sim_memory_size = 24;
|
|
#endif
|
|
|
|
static int sim_profile_size = 17;
|
|
static int nsamples;
|
|
|
|
#undef TB
|
|
#define TB(x,y)
|
|
|
|
#define SMR1 (0x05FFFEC8) /* Channel 1 serial mode register */
|
|
#define BRR1 (0x05FFFEC9) /* Channel 1 bit rate register */
|
|
#define SCR1 (0x05FFFECA) /* Channel 1 serial control register */
|
|
#define TDR1 (0x05FFFECB) /* Channel 1 transmit data register */
|
|
#define SSR1 (0x05FFFECC) /* Channel 1 serial status register */
|
|
#define RDR1 (0x05FFFECD) /* Channel 1 receive data register */
|
|
|
|
#define SCI_RDRF 0x40 /* Recieve data register full */
|
|
#define SCI_TDRE 0x80 /* Transmit data register empty */
|
|
|
|
static int
|
|
IOMEM (addr, write, value)
|
|
int addr;
|
|
int write;
|
|
int value;
|
|
{
|
|
static int io;
|
|
static char ssr1;
|
|
int x;
|
|
static char lastchar;
|
|
|
|
if (write)
|
|
{
|
|
switch (addr)
|
|
{
|
|
case TDR1:
|
|
if (value != '\r')
|
|
{
|
|
putchar (value);
|
|
fflush (stdout);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
switch (addr)
|
|
{
|
|
case RDR1:
|
|
return getchar ();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
get_now ()
|
|
{
|
|
return time ((long *) 0);
|
|
}
|
|
|
|
static int
|
|
now_persec ()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
|
|
|
|
static FILE *profile_file;
|
|
|
|
static void
|
|
swap (memory, n)
|
|
unsigned char *memory;
|
|
int n;
|
|
{
|
|
WLAT (0, n);
|
|
}
|
|
static void
|
|
swap16 (memory, n)
|
|
unsigned char *memory;
|
|
int n;
|
|
{
|
|
WWAT (0, n);
|
|
}
|
|
|
|
static void
|
|
swapout (n)
|
|
int n;
|
|
{
|
|
if (profile_file)
|
|
{
|
|
char b[4];
|
|
swap (b, n);
|
|
fwrite (b, 4, 1, profile_file);
|
|
}
|
|
}
|
|
|
|
static void
|
|
swapout16 (n)
|
|
int n;
|
|
{
|
|
char b[4];
|
|
swap16 (b, n);
|
|
fwrite (b, 2, 1, profile_file);
|
|
}
|
|
|
|
|
|
/* Turn a pointer in a register into a pointer into real memory. */
|
|
|
|
static char *
|
|
ptr (x)
|
|
int x;
|
|
{
|
|
return (char *) (x + saved_state.asregs.memory);
|
|
}
|
|
|
|
|
|
/* Simulate a monitor trap, put the result into r0 and errno into r1 */
|
|
static void
|
|
trap (i, regs, memory, maskl, maskw, little_endian)
|
|
int i;
|
|
int *regs;
|
|
unsigned char *memory;
|
|
{
|
|
switch (i)
|
|
{
|
|
case 1:
|
|
printf ("%c", regs[0]);
|
|
break;
|
|
case 2:
|
|
saved_state.asregs.exception = SIGQUIT;
|
|
break;
|
|
case 3: /* FIXME: for backwards compat, should be removed */
|
|
case 34:
|
|
{
|
|
extern int errno;
|
|
int perrno = errno;
|
|
errno = 0;
|
|
|
|
switch (regs[4])
|
|
{
|
|
|
|
#if !defined(__GO32__) && !defined(WIN32)
|
|
case SYS_fork:
|
|
regs[0] = fork ();
|
|
break;
|
|
case SYS_execve:
|
|
regs[0] = execve (ptr (regs[5]), (char **)ptr (regs[6]), (char **)ptr (regs[7]));
|
|
break;
|
|
case SYS_execv:
|
|
regs[0] = execve (ptr (regs[5]),(char **) ptr (regs[6]), 0);
|
|
break;
|
|
case SYS_pipe:
|
|
{
|
|
char *buf;
|
|
int host_fd[2];
|
|
|
|
buf = ptr (regs[5]);
|
|
|
|
regs[0] = pipe (host_fd);
|
|
|
|
WLAT (buf, host_fd[0]);
|
|
buf += 4;
|
|
WLAT (buf, host_fd[1]);
|
|
}
|
|
break;
|
|
|
|
case SYS_wait:
|
|
regs[0] = wait (ptr (regs[5]));
|
|
break;
|
|
#endif
|
|
|
|
case SYS_read:
|
|
regs[0] = callback->read (callback, regs[5], ptr (regs[6]), regs[7]);
|
|
break;
|
|
case SYS_write:
|
|
if (regs[5] == 1)
|
|
regs[0] = (int)callback->write_stdout (callback, ptr(regs[6]), regs[7]);
|
|
else
|
|
regs[0] = (int)callback->write (callback, regs[5], ptr (regs[6]), regs[7]);
|
|
break;
|
|
case SYS_lseek:
|
|
regs[0] = callback->lseek (callback,regs[5], regs[6], regs[7]);
|
|
break;
|
|
case SYS_close:
|
|
regs[0] = callback->close (callback,regs[5]);
|
|
break;
|
|
case SYS_open:
|
|
regs[0] = callback->open (callback,ptr (regs[5]), regs[6]);
|
|
break;
|
|
case SYS_exit:
|
|
/* EXIT - caller can look in r5 to work out the
|
|
reason */
|
|
saved_state.asregs.exception = SIGQUIT;
|
|
break;
|
|
|
|
case SYS_stat: /* added at hmsi */
|
|
/* stat system call */
|
|
{
|
|
struct stat host_stat;
|
|
char *buf;
|
|
|
|
regs[0] = stat (ptr (regs[5]), &host_stat);
|
|
|
|
buf = ptr (regs[6]);
|
|
|
|
WWAT (buf, host_stat.st_dev);
|
|
buf += 2;
|
|
WWAT (buf, host_stat.st_ino);
|
|
buf += 2;
|
|
WLAT (buf, host_stat.st_mode);
|
|
buf += 4;
|
|
WWAT (buf, host_stat.st_nlink);
|
|
buf += 2;
|
|
WWAT (buf, host_stat.st_uid);
|
|
buf += 2;
|
|
WWAT (buf, host_stat.st_gid);
|
|
buf += 2;
|
|
WWAT (buf, host_stat.st_rdev);
|
|
buf += 2;
|
|
WLAT (buf, host_stat.st_size);
|
|
buf += 4;
|
|
WLAT (buf, host_stat.st_atime);
|
|
buf += 4;
|
|
WLAT (buf, 0);
|
|
buf += 4;
|
|
WLAT (buf, host_stat.st_mtime);
|
|
buf += 4;
|
|
WLAT (buf, 0);
|
|
buf += 4;
|
|
WLAT (buf, host_stat.st_ctime);
|
|
buf += 4;
|
|
WLAT (buf, 0);
|
|
buf += 4;
|
|
WLAT (buf, 0);
|
|
buf += 4;
|
|
WLAT (buf, 0);
|
|
buf += 4;
|
|
}
|
|
break;
|
|
|
|
case SYS_chown:
|
|
regs[0] = chown (ptr (regs[5]), regs[6], regs[7]);
|
|
break;
|
|
case SYS_chmod:
|
|
regs[0] = chmod (ptr (regs[5]), regs[6]);
|
|
break;
|
|
case SYS_utime:
|
|
/* Cast the second argument to void *, to avoid type mismatch
|
|
if a prototype is present. */
|
|
regs[0] = utime (ptr (regs[5]), (void *) ptr (regs[6]));
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
regs[1] = errno;
|
|
errno = perrno;
|
|
}
|
|
break;
|
|
|
|
case 0xc3:
|
|
case 255:
|
|
saved_state.asregs.exception = SIGTRAP;
|
|
break;
|
|
}
|
|
|
|
}
|
|
void
|
|
control_c (sig, code, scp, addr)
|
|
int sig;
|
|
int code;
|
|
char *scp;
|
|
char *addr;
|
|
{
|
|
saved_state.asregs.exception = SIGINT;
|
|
}
|
|
|
|
|
|
static int
|
|
div1 (R, iRn2, iRn1, T)
|
|
int *R;
|
|
int iRn1;
|
|
int iRn2;
|
|
int T;
|
|
{
|
|
unsigned long tmp0;
|
|
unsigned char old_q, tmp1;
|
|
|
|
old_q = Q;
|
|
Q = (unsigned char) ((0x80000000 & R[iRn1]) != 0);
|
|
R[iRn1] <<= 1;
|
|
R[iRn1] |= (unsigned long) T;
|
|
|
|
switch (old_q)
|
|
{
|
|
case 0:
|
|
switch (M)
|
|
{
|
|
case 0:
|
|
tmp0 = R[iRn1];
|
|
R[iRn1] -= R[iRn2];
|
|
tmp1 = (R[iRn1] > tmp0);
|
|
switch (Q)
|
|
{
|
|
case 0:
|
|
Q = tmp1;
|
|
break;
|
|
case 1:
|
|
Q = (unsigned char) (tmp1 == 0);
|
|
break;
|
|
}
|
|
break;
|
|
case 1:
|
|
tmp0 = R[iRn1];
|
|
R[iRn1] += R[iRn2];
|
|
tmp1 = (R[iRn1] < tmp0);
|
|
switch (Q)
|
|
{
|
|
case 0:
|
|
Q = (unsigned char) (tmp1 == 0);
|
|
break;
|
|
case 1:
|
|
Q = tmp1;
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case 1:
|
|
switch (M)
|
|
{
|
|
case 0:
|
|
tmp0 = R[iRn1];
|
|
R[iRn1] += R[iRn2];
|
|
tmp1 = (R[iRn1] < tmp0);
|
|
switch (Q)
|
|
{
|
|
case 0:
|
|
Q = tmp1;
|
|
break;
|
|
case 1:
|
|
Q = (unsigned char) (tmp1 == 0);
|
|
break;
|
|
}
|
|
break;
|
|
case 1:
|
|
tmp0 = R[iRn1];
|
|
R[iRn1] -= R[iRn2];
|
|
tmp1 = (R[iRn1] > tmp0);
|
|
switch (Q)
|
|
{
|
|
case 0:
|
|
Q = (unsigned char) (tmp1 == 0);
|
|
break;
|
|
case 1:
|
|
Q = tmp1;
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
T = (Q == M);
|
|
return T;
|
|
}
|
|
|
|
|
|
static void
|
|
dmul (sign, rm, rn)
|
|
int sign;
|
|
unsigned int rm;
|
|
unsigned int rn;
|
|
{
|
|
unsigned long RnL, RnH;
|
|
unsigned long RmL, RmH;
|
|
unsigned long temp0, temp1, temp2, temp3;
|
|
unsigned long Res2, Res1, Res0;
|
|
|
|
RnL = rn & 0xffff;
|
|
RnH = (rn >> 16) & 0xffff;
|
|
RmL = rm & 0xffff;
|
|
RmH = (rm >> 16) & 0xffff;
|
|
temp0 = RmL * RnL;
|
|
temp1 = RmH * RnL;
|
|
temp2 = RmL * RnH;
|
|
temp3 = RmH * RnH;
|
|
Res2 = 0;
|
|
Res1 = temp1 + temp2;
|
|
if (Res1 < temp1)
|
|
Res2 += 0x00010000;
|
|
temp1 = (Res1 << 16) & 0xffff0000;
|
|
Res0 = temp0 + temp1;
|
|
if (Res0 < temp0)
|
|
Res2 += 1;
|
|
Res2 += ((Res1 >> 16) & 0xffff) + temp3;
|
|
|
|
if (sign)
|
|
{
|
|
if (rn & 0x80000000)
|
|
Res2 -= rm;
|
|
if (rm & 0x80000000)
|
|
Res2 -= rn;
|
|
}
|
|
|
|
MACH = Res2;
|
|
MACL = Res0;
|
|
}
|
|
|
|
static void
|
|
macw (regs, memory, n, m)
|
|
int *regs;
|
|
unsigned char *memory;
|
|
int m, n;
|
|
{
|
|
long tempm, tempn;
|
|
long prod, macl, sum;
|
|
|
|
tempm=RSWAT(regs[m]); regs[m]+=2;
|
|
tempn=RSWAT(regs[n]); regs[n]+=2;
|
|
|
|
macl = MACL;
|
|
prod = (long)(short) tempm * (long)(short) tempn;
|
|
sum = prod + macl;
|
|
if (S)
|
|
{
|
|
if ((~(prod ^ macl) & (sum ^ prod)) < 0)
|
|
{
|
|
/* MACH's lsb is a sticky overflow bit. */
|
|
MACH |= 1;
|
|
/* Store the smallest negative number in MACL if prod is
|
|
negative, and the largest positive number otherwise. */
|
|
sum = 0x7fffffff + (prod < 0);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
long mach;
|
|
/* Add to MACH the sign extended product, and carry from low sum. */
|
|
mach = MACH + (-(prod < 0)) + ((unsigned long) sum < prod);
|
|
/* Sign extend at 10:th bit in MACH. */
|
|
MACH = (mach & 0x1ff) | -(mach & 0x200);
|
|
}
|
|
MACL = sum;
|
|
}
|
|
|
|
/* Set the memory size to the power of two provided. */
|
|
|
|
void
|
|
sim_size (power)
|
|
int power;
|
|
|
|
{
|
|
saved_state.asregs.msize = 1 << power;
|
|
|
|
sim_memory_size = power;
|
|
|
|
|
|
if (saved_state.asregs.memory)
|
|
{
|
|
free (saved_state.asregs.memory);
|
|
}
|
|
|
|
saved_state.asregs.memory =
|
|
(unsigned char *) calloc (64, saved_state.asregs.msize / 64);
|
|
|
|
if (!saved_state.asregs.memory)
|
|
{
|
|
fprintf (stderr,
|
|
"Not enough VM for simulation of %d bytes of RAM\n",
|
|
saved_state.asregs.msize);
|
|
|
|
saved_state.asregs.msize = 1;
|
|
saved_state.asregs.memory = (unsigned char *) calloc (1, 1);
|
|
}
|
|
}
|
|
|
|
|
|
int target_byte_order;
|
|
|
|
static void
|
|
set_static_little_endian(x)
|
|
int x;
|
|
{
|
|
little_endian = x;
|
|
}
|
|
|
|
static
|
|
void
|
|
init_pointers ()
|
|
{
|
|
register int little_endian = target_byte_order == 1234;
|
|
set_static_little_endian (little_endian);
|
|
if (saved_state.asregs.msize != 1 << sim_memory_size)
|
|
{
|
|
sim_size (sim_memory_size);
|
|
}
|
|
|
|
if (saved_state.asregs.profile && !profile_file)
|
|
{
|
|
profile_file = fopen ("gmon.out", "wb");
|
|
/* Seek to where to put the call arc data */
|
|
nsamples = (1 << sim_profile_size);
|
|
|
|
fseek (profile_file, nsamples * 2 + 12, 0);
|
|
|
|
if (!profile_file)
|
|
{
|
|
fprintf (stderr, "Can't open gmon.out\n");
|
|
}
|
|
else
|
|
{
|
|
saved_state.asregs.profile_hist =
|
|
(unsigned short *) calloc (64, (nsamples * sizeof (short) / 64));
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
dump_profile ()
|
|
{
|
|
unsigned int minpc;
|
|
unsigned int maxpc;
|
|
unsigned short *p;
|
|
|
|
int thisshift;
|
|
|
|
unsigned short *first;
|
|
|
|
int i;
|
|
p = saved_state.asregs.profile_hist;
|
|
minpc = 0;
|
|
maxpc = (1 << sim_profile_size);
|
|
|
|
fseek (profile_file, 0L, 0);
|
|
swapout (minpc << PROFILE_SHIFT);
|
|
swapout (maxpc << PROFILE_SHIFT);
|
|
swapout (nsamples * 2 + 12);
|
|
for (i = 0; i < nsamples; i++)
|
|
swapout16 (saved_state.asregs.profile_hist[i]);
|
|
|
|
}
|
|
|
|
static int
|
|
gotcall (from, to)
|
|
int from;
|
|
int to;
|
|
{
|
|
swapout (from);
|
|
swapout (to);
|
|
swapout (1);
|
|
}
|
|
|
|
#define MMASKB ((saved_state.asregs.msize -1) & ~0)
|
|
|
|
|
|
void
|
|
sim_resume (step, siggnal)
|
|
int step, siggnal;
|
|
{
|
|
register unsigned int pc;
|
|
register int cycles = 0;
|
|
register int stalls = 0;
|
|
register int insts = 0;
|
|
register int prevlock;
|
|
register int thislock;
|
|
register unsigned int doprofile;
|
|
#if defined(__GO32__) || defined(WIN32)
|
|
register int pollcount = 0;
|
|
#endif
|
|
register int little_endian = target_byte_order == 1234;
|
|
|
|
|
|
int tick_start = get_now ();
|
|
void (*prev) ();
|
|
extern unsigned char sh_jump_table0[];
|
|
|
|
register unsigned char *jump_table = sh_jump_table0;
|
|
|
|
register int *R = &(saved_state.asregs.regs[0]);
|
|
/* start-sanitize-sh3e */
|
|
register float *F = &(saved_state.asregs.fregs[0]);
|
|
/* end-sanitize-sh3e */
|
|
register int T;
|
|
register int PR;
|
|
|
|
register int maskb = ((saved_state.asregs.msize - 1) & ~0);
|
|
register int maskw = ((saved_state.asregs.msize - 1) & ~1);
|
|
register int maskl = ((saved_state.asregs.msize - 1) & ~3);
|
|
register unsigned char *memory;
|
|
register unsigned int sbit = ((unsigned int) 1 << 31);
|
|
|
|
prev = signal (SIGINT, control_c);
|
|
|
|
init_pointers ();
|
|
|
|
memory = saved_state.asregs.memory;
|
|
|
|
if (step)
|
|
{
|
|
saved_state.asregs.exception = SIGTRAP;
|
|
}
|
|
else
|
|
{
|
|
saved_state.asregs.exception = 0;
|
|
}
|
|
|
|
pc = saved_state.asregs.pc;
|
|
PR = saved_state.asregs.pr;
|
|
T = saved_state.asregs.sr.bits.t;
|
|
prevlock = saved_state.asregs.prevlock;
|
|
thislock = saved_state.asregs.thislock;
|
|
doprofile = saved_state.asregs.profile;
|
|
|
|
/* If profiling not enabled, disable it by asking for
|
|
profiles infrequently. */
|
|
if (doprofile == 0)
|
|
doprofile = ~0;
|
|
|
|
do
|
|
{
|
|
register unsigned int iword = RUWAT (pc);
|
|
register unsigned int ult;
|
|
#ifndef ACE_FAST
|
|
insts++;
|
|
#endif
|
|
top:
|
|
|
|
#include "code.c"
|
|
|
|
|
|
pc += 2;
|
|
|
|
#ifdef __GO32__
|
|
pollcount++;
|
|
if (pollcount > 1000)
|
|
{
|
|
pollcount = 0;
|
|
if (kbhit()) {
|
|
int k = getkey();
|
|
if (k == 1)
|
|
saved_state.asregs.exception = SIGINT;
|
|
|
|
}
|
|
}
|
|
#endif
|
|
#if defined (WIN32)
|
|
pollcount++;
|
|
if (pollcount > 1000)
|
|
{
|
|
pollcount = 0;
|
|
if (win32pollquit())
|
|
{
|
|
control_c();
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#ifndef ACE_FAST
|
|
prevlock = thislock;
|
|
thislock = 30;
|
|
cycles++;
|
|
|
|
if (cycles >= doprofile)
|
|
{
|
|
|
|
saved_state.asregs.cycles += doprofile;
|
|
cycles -= doprofile;
|
|
if (saved_state.asregs.profile_hist)
|
|
{
|
|
int n = pc >> PROFILE_SHIFT;
|
|
if (n < nsamples)
|
|
{
|
|
int i = saved_state.asregs.profile_hist[n];
|
|
if (i < 65000)
|
|
saved_state.asregs.profile_hist[n] = i + 1;
|
|
}
|
|
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
while (!saved_state.asregs.exception);
|
|
|
|
if (saved_state.asregs.exception == SIGILL
|
|
|| saved_state.asregs.exception == SIGBUS)
|
|
{
|
|
pc -= 2;
|
|
}
|
|
|
|
saved_state.asregs.ticks += get_now () - tick_start;
|
|
saved_state.asregs.cycles += cycles;
|
|
saved_state.asregs.stalls += stalls;
|
|
saved_state.asregs.insts += insts;
|
|
saved_state.asregs.pc = pc;
|
|
saved_state.asregs.sr.bits.t = T;
|
|
saved_state.asregs.pr = PR;
|
|
|
|
saved_state.asregs.prevlock = prevlock;
|
|
saved_state.asregs.thislock = thislock;
|
|
|
|
|
|
if (profile_file)
|
|
{
|
|
dump_profile ();
|
|
}
|
|
|
|
signal (SIGINT, prev);
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
sim_write (addr, buffer, size)
|
|
SIM_ADDR addr;
|
|
unsigned char *buffer;
|
|
int size;
|
|
{
|
|
int i;
|
|
init_pointers ();
|
|
|
|
for (i = 0; i < size; i++)
|
|
{
|
|
saved_state.asregs.memory[MMASKB & (addr + i)] = buffer[i];
|
|
}
|
|
return size;
|
|
}
|
|
|
|
int
|
|
sim_read (addr, buffer, size)
|
|
SIM_ADDR addr;
|
|
unsigned char *buffer;
|
|
int size;
|
|
{
|
|
int i;
|
|
|
|
init_pointers ();
|
|
|
|
for (i = 0; i < size; i++)
|
|
{
|
|
buffer[i] = saved_state.asregs.memory[MMASKB & (addr + i)];
|
|
}
|
|
return size;
|
|
}
|
|
|
|
|
|
void
|
|
sim_store_register (rn, memory)
|
|
int rn;
|
|
unsigned char *memory;
|
|
{
|
|
init_pointers();
|
|
saved_state.asregs.regs[rn]=RLAT(0);
|
|
}
|
|
|
|
void
|
|
sim_fetch_register (rn, memory)
|
|
int rn;
|
|
unsigned char *memory;
|
|
{
|
|
init_pointers();
|
|
WLAT (0, saved_state.asregs.regs[rn]);
|
|
}
|
|
|
|
|
|
int
|
|
sim_trace ()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
sim_stop_reason (reason, sigrc)
|
|
enum sim_stop *reason;
|
|
int *sigrc;
|
|
{
|
|
*reason = sim_stopped;
|
|
*sigrc = saved_state.asregs.exception;
|
|
}
|
|
|
|
|
|
void
|
|
sim_info (verbose)
|
|
int verbose;
|
|
{
|
|
double timetaken = (double) saved_state.asregs.ticks / (double) now_persec ();
|
|
double virttime = saved_state.asregs.cycles / 36.0e6;
|
|
|
|
callback->printf_filtered (callback,
|
|
"\n\n# instructions executed %10d\n",
|
|
saved_state.asregs.insts);
|
|
callback-> printf_filtered (callback, "# cycles %10d\n", saved_state.asregs.cycles);
|
|
callback-> printf_filtered (callback, "# pipeline stalls %10d\n", saved_state.asregs.stalls);
|
|
callback-> printf_filtered (callback, "# real time taken %10.4f\n", timetaken);
|
|
callback-> printf_filtered (callback, "# virtual time taken %10.4f\n", virttime);
|
|
callback-> printf_filtered (callback, "# profiling size %10d\n", sim_profile_size);
|
|
callback-> printf_filtered (callback, "# profiling frequency %10d\n", saved_state.asregs.profile);
|
|
callback-> printf_filtered (callback, "# profile maxpc %10x\n",
|
|
(1 << sim_profile_size) << PROFILE_SHIFT);
|
|
|
|
if (timetaken != 0)
|
|
{
|
|
callback->printf_filtered (callback, "# cycles/second %10d\n",
|
|
(int) (saved_state.asregs.cycles / timetaken));
|
|
callback->printf_filtered (callback, "# simulation ratio %10.4f\n",
|
|
virttime / timetaken);
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
sim_set_profile (n)
|
|
int n;
|
|
{
|
|
saved_state.asregs.profile = n;
|
|
}
|
|
|
|
void
|
|
sim_set_profile_size (n)
|
|
int n;
|
|
{
|
|
sim_profile_size = n;
|
|
}
|
|
|
|
|
|
void
|
|
sim_open (args)
|
|
char *args;
|
|
{
|
|
int n;
|
|
|
|
if (args != NULL)
|
|
{
|
|
parse_and_set_memory_size (args);
|
|
}
|
|
}
|
|
|
|
static void
|
|
parse_and_set_memory_size (str)
|
|
char *str;
|
|
{
|
|
int n;
|
|
|
|
n = strtol (str, NULL, 10);
|
|
if (n > 0 && n <= 24)
|
|
sim_memory_size = n;
|
|
else
|
|
callback->printf_filtered (callback, "Bad memory size %d; must be 1 to 24, inclusive\n", n);
|
|
}
|
|
|
|
void
|
|
sim_close (quitting)
|
|
int quitting;
|
|
{
|
|
/* nothing to do */
|
|
}
|
|
|
|
int
|
|
sim_load (prog, from_tty)
|
|
char *prog;
|
|
int from_tty;
|
|
{
|
|
/* Return nonzero so GDB will handle it. */
|
|
return 1;
|
|
}
|
|
|
|
void
|
|
sim_create_inferior (start_address, argv, env)
|
|
SIM_ADDR start_address;
|
|
char **argv;
|
|
char **env;
|
|
{
|
|
saved_state.asregs.pc = start_address;
|
|
}
|
|
|
|
void
|
|
sim_kill ()
|
|
{
|
|
/* nothing to do */
|
|
}
|
|
|
|
void
|
|
sim_do_command (cmd)
|
|
char *cmd;
|
|
{
|
|
int n;
|
|
char *sms_cmd = "set-memory-size";
|
|
|
|
if (strncmp (cmd, sms_cmd, strlen (sms_cmd)) == 0
|
|
&& strchr (" ", cmd[strlen(sms_cmd)]))
|
|
parse_and_set_memory_size (cmd + strlen(sms_cmd) + 1);
|
|
|
|
else if (strcmp (cmd, "help") == 0)
|
|
{
|
|
callback->printf_filtered (callback,"List of SH simulator commands:\n\n");
|
|
callback->printf_filtered (callback,"set-memory-size <n> -- Set the number of address bits to use\n");
|
|
callback->printf_filtered (callback,"\n");
|
|
}
|
|
else
|
|
fprintf (stderr, "Error: \"%s\" is not a valid SH simulator command.\n",
|
|
cmd);
|
|
}
|
|
|
|
|
|
int
|
|
sim_get_quit_code()
|
|
{
|
|
return saved_state.asregs.regs[5];
|
|
}
|
|
|
|
|
|
|
|
void
|
|
sim_set_callbacks(p)
|
|
host_callback *p;
|
|
{
|
|
callback = p;
|
|
}
|