1996-08-02 00:23:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
1996-09-04 17:42:51 +00:00
|
|
|
#include <limits.h>
|
1996-08-02 00:23:31 +00:00
|
|
|
#include "ansidecl.h"
|
1996-09-04 15:41:43 +00:00
|
|
|
#include "callback.h"
|
1996-08-02 00:23:31 +00:00
|
|
|
#include "opcode/d10v.h"
|
1996-10-30 22:43:02 +00:00
|
|
|
#include "bfd.h"
|
1996-08-02 00:23:31 +00:00
|
|
|
|
1996-09-04 17:42:51 +00:00
|
|
|
#define DEBUG_TRACE 0x00000001
|
|
|
|
#define DEBUG_VALUES 0x00000002
|
1996-10-16 22:14:23 +00:00
|
|
|
#define DEBUG_LINE_NUMBER 0x00000004
|
|
|
|
#define DEBUG_MEMSIZE 0x00000008
|
|
|
|
#define DEBUG_INSTRUCTION 0x00000010
|
|
|
|
|
|
|
|
#ifndef DEBUG
|
|
|
|
#define DEBUG (DEBUG_TRACE | DEBUG_VALUES | DEBUG_LINE_NUMBER)
|
|
|
|
#endif
|
1996-09-04 15:41:43 +00:00
|
|
|
|
1996-09-04 17:42:51 +00:00
|
|
|
extern int d10v_debug;
|
1996-09-04 15:41:43 +00:00
|
|
|
|
1996-09-04 17:42:51 +00:00
|
|
|
#if UCHAR_MAX == 255
|
1996-08-02 00:23:31 +00:00
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef signed char int8;
|
1996-09-04 17:42:51 +00:00
|
|
|
#else
|
|
|
|
#error "Char is not an 8-bit type"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SHRT_MAX == 32767
|
|
|
|
typedef unsigned short uint16;
|
1996-08-02 00:23:31 +00:00
|
|
|
typedef signed short int16;
|
1996-09-04 17:42:51 +00:00
|
|
|
#else
|
|
|
|
#error "Short is not a 16-bit type"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if INT_MAX == 2147483647
|
|
|
|
typedef unsigned int uint32;
|
1996-08-02 00:23:31 +00:00
|
|
|
typedef signed int int32;
|
1996-09-04 17:42:51 +00:00
|
|
|
|
|
|
|
#elif LONG_MAX == 2147483647
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
typedef signed long int32;
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error "Neither int nor long is a 32-bit type"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LONG_MAX > 2147483647
|
|
|
|
typedef unsigned long uint64;
|
|
|
|
typedef signed long int64;
|
|
|
|
|
|
|
|
#elif __GNUC__
|
|
|
|
typedef unsigned long long uint64;
|
1996-08-02 00:23:31 +00:00
|
|
|
typedef signed long long int64;
|
|
|
|
|
1996-09-04 17:42:51 +00:00
|
|
|
#else
|
|
|
|
#error "Can't find an appropriate 64-bit type"
|
|
|
|
#endif
|
|
|
|
|
1996-08-02 00:23:31 +00:00
|
|
|
/* FIXME: D10V defines */
|
|
|
|
typedef uint16 reg_t;
|
|
|
|
|
|
|
|
struct simops
|
|
|
|
{
|
|
|
|
long opcode;
|
|
|
|
long mask;
|
|
|
|
int format;
|
|
|
|
int cycles;
|
|
|
|
int unit;
|
|
|
|
int exec_type;
|
|
|
|
void (*func)();
|
|
|
|
int numops;
|
|
|
|
int operands[9];
|
|
|
|
};
|
|
|
|
|
1996-09-04 15:41:43 +00:00
|
|
|
enum _ins_type
|
|
|
|
{
|
1996-10-22 19:49:37 +00:00
|
|
|
INS_UNKNOWN, /* unknown instruction */
|
|
|
|
INS_COND_TRUE, /* # times EXExxx executed other instruction */
|
|
|
|
INS_COND_FALSE, /* # times EXExxx did not execute other instruction */
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
INS_COND_JUMP, /* # times JUMP skipped other instruction */
|
1996-10-22 19:49:37 +00:00
|
|
|
INS_CYCLES, /* # cycles */
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
INS_LONG, /* long instruction (both containers, ie FM == 11) */
|
|
|
|
INS_LEFTRIGHT, /* # times instruction encoded as L -> R (ie, FM == 01) */
|
|
|
|
INS_RIGHTLEFT, /* # times instruction encoded as L <- R (ie, FM == 10) */
|
|
|
|
INS_PARALLEL, /* # times instruction encoded as L || R (ie, RM == 00) */
|
1996-10-22 19:49:37 +00:00
|
|
|
|
|
|
|
INS_LEFT, /* normal left instructions */
|
|
|
|
INS_LEFT_PARALLEL, /* left side of || */
|
|
|
|
INS_LEFT_COND_TEST, /* EXExx test on left side */
|
|
|
|
INS_LEFT_COND_EXE, /* execution after EXExxx test on right side succeeded */
|
|
|
|
INS_LEFT_NOPS, /* NOP on left side */
|
|
|
|
|
|
|
|
INS_RIGHT, /* normal right instructions */
|
|
|
|
INS_RIGHT_PARALLEL, /* right side of || */
|
|
|
|
INS_RIGHT_COND_TEST, /* EXExx test on right side */
|
|
|
|
INS_RIGHT_COND_EXE, /* execution after EXExxx test on left side succeeded */
|
|
|
|
INS_RIGHT_NOPS, /* NOP on right side */
|
|
|
|
|
1996-09-04 17:42:51 +00:00
|
|
|
INS_MAX
|
1996-09-04 15:41:43 +00:00
|
|
|
};
|
|
|
|
|
1996-10-22 19:49:37 +00:00
|
|
|
extern unsigned long ins_type_counters[ (int)INS_MAX ];
|
1996-09-04 17:42:51 +00:00
|
|
|
|
1996-08-02 00:23:31 +00:00
|
|
|
struct _state
|
|
|
|
{
|
|
|
|
reg_t regs[16]; /* general-purpose registers */
|
1996-10-16 22:14:23 +00:00
|
|
|
reg_t cregs[16]; /* control registers */
|
|
|
|
int64 a[2]; /* accumulators */
|
1996-08-02 00:23:31 +00:00
|
|
|
uint8 SM;
|
|
|
|
uint8 EA;
|
|
|
|
uint8 DB;
|
|
|
|
uint8 IE;
|
|
|
|
uint8 RP;
|
|
|
|
uint8 MD;
|
|
|
|
uint8 FX;
|
|
|
|
uint8 ST;
|
|
|
|
uint8 F0;
|
|
|
|
uint8 F1;
|
|
|
|
uint8 C;
|
|
|
|
uint8 exe;
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
int exception;
|
|
|
|
/* everything below this line is not reset by sim_create_inferior() */
|
1996-08-02 00:23:31 +00:00
|
|
|
uint8 *imem;
|
|
|
|
uint8 *dmem;
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
uint8 *umem[128];
|
1996-09-04 15:41:43 +00:00
|
|
|
enum _ins_type ins_type;
|
1996-08-02 00:23:31 +00:00
|
|
|
} State;
|
|
|
|
|
1996-09-04 15:41:43 +00:00
|
|
|
extern host_callback *d10v_callback;
|
1996-08-02 00:23:31 +00:00
|
|
|
extern uint16 OP[4];
|
|
|
|
extern struct simops Simops[];
|
1996-10-30 22:43:02 +00:00
|
|
|
extern asection *text;
|
|
|
|
extern bfd_vma text_start;
|
|
|
|
extern bfd_vma text_end;
|
|
|
|
extern bfd *exec_bfd;
|
1996-08-02 00:23:31 +00:00
|
|
|
|
|
|
|
#define PC (State.cregs[2])
|
|
|
|
#define PSW (State.cregs[0])
|
|
|
|
#define BPSW (State.cregs[1])
|
|
|
|
#define BPC (State.cregs[3])
|
|
|
|
#define RPT_C (State.cregs[7])
|
|
|
|
#define RPT_S (State.cregs[8])
|
|
|
|
#define RPT_E (State.cregs[9])
|
|
|
|
#define MOD_S (State.cregs[10])
|
|
|
|
#define MOD_E (State.cregs[11])
|
|
|
|
#define IBA (State.cregs[14])
|
|
|
|
|
1996-10-16 22:14:23 +00:00
|
|
|
#define SIG_D10V_STOP -1
|
|
|
|
#define SIG_D10V_EXIT -2
|
|
|
|
|
1996-08-02 00:23:31 +00:00
|
|
|
#define SEXT3(x) ((((x)&0x7)^(~3))+4)
|
|
|
|
|
|
|
|
/* sign-extend a 4-bit number */
|
|
|
|
#define SEXT4(x) ((((x)&0xf)^(~7))+8)
|
|
|
|
|
|
|
|
/* sign-extend an 8-bit number */
|
|
|
|
#define SEXT8(x) ((((x)&0xff)^(~0x7f))+0x80)
|
|
|
|
|
|
|
|
/* sign-extend a 16-bit number */
|
|
|
|
#define SEXT16(x) ((((x)&0xffff)^(~0x7fff))+0x8000)
|
|
|
|
|
1996-08-27 01:32:48 +00:00
|
|
|
/* sign-extend a 32-bit number */
|
|
|
|
#define SEXT32(x) ((((x)&0xffffffffLL)^(~0x7fffffffLL))+0x80000000LL)
|
|
|
|
|
1996-08-03 00:45:58 +00:00
|
|
|
/* sign extend a 40 bit number */
|
|
|
|
#define SEXT40(x) ((((x)&0xffffffffffLL)^(~0x7fffffffffLL))+0x8000000000LL)
|
|
|
|
|
1996-08-29 00:35:11 +00:00
|
|
|
/* sign extend a 44 bit number */
|
|
|
|
#define SEXT44(x) ((((x)&0xfffffffffffLL)^(~0x7ffffffffffLL))+0x80000000000LL)
|
|
|
|
|
|
|
|
/* sign extend a 60 bit number */
|
|
|
|
#define SEXT60(x) ((((x)&0xfffffffffffffffLL)^(~0x7ffffffffffffffLL))+0x800000000000000LL)
|
|
|
|
|
1996-08-02 00:23:31 +00:00
|
|
|
#define MAX32 0x7fffffffLL
|
|
|
|
#define MIN32 0xff80000000LL
|
|
|
|
#define MASK32 0xffffffffLL
|
|
|
|
#define MASK40 0xffffffffffLL
|
|
|
|
|
1996-08-27 01:32:48 +00:00
|
|
|
#define INC_ADDR(x,i) x = ((State.MD && x == MOD_E) ? MOD_S : (x)+(i))
|
|
|
|
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
extern uint8 *dmem_addr PARAMS ((uint32));
|
1996-10-30 22:43:02 +00:00
|
|
|
extern bfd_vma decode_pc PARAMS ((void));
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
|
|
|
|
#define RB(x) (*(dmem_addr(x)))
|
1996-08-03 00:45:58 +00:00
|
|
|
#define SB(addr,data) ( RB(addr) = (data & 0xff))
|
1996-08-02 00:23:31 +00:00
|
|
|
|
1996-10-16 22:14:23 +00:00
|
|
|
#if defined(__GNUC__) && defined(__OPTIMIZE__) && !defined(NO_ENDIAN_INLINE)
|
|
|
|
#define ENDIAN_INLINE static __inline__
|
|
|
|
#include "endian.c"
|
|
|
|
#undef ENDIAN_INLINE
|
1996-08-02 00:23:31 +00:00
|
|
|
|
|
|
|
#else
|
1996-10-16 22:16:21 +00:00
|
|
|
extern uint32 get_longword PARAMS ((uint8 *));
|
|
|
|
extern uint16 get_word PARAMS ((uint8 *));
|
|
|
|
extern int64 get_longlong PARAMS ((uint8 *));
|
|
|
|
extern void write_word PARAMS ((uint8 *addr, uint16 data));
|
|
|
|
extern void write_longword PARAMS ((uint8 *addr, uint32 data));
|
|
|
|
extern void write_longlong PARAMS ((uint8 *addr, int64 data));
|
1996-10-16 22:14:23 +00:00
|
|
|
#endif
|
1996-08-29 00:35:11 +00:00
|
|
|
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
#define SW(addr,data) write_word(dmem_addr(addr),data)
|
|
|
|
#define RW(x) get_word(dmem_addr(x))
|
|
|
|
#define SLW(addr,data) write_longword(dmem_addr(addr),data)
|
|
|
|
#define RLW(x) get_longword(dmem_addr(x))
|
1996-08-29 00:35:11 +00:00
|
|
|
#define READ_16(x) get_word(x)
|
|
|
|
#define WRITE_16(addr,data) write_word(addr,data)
|
|
|
|
#define READ_64(x) get_longlong(x)
|
|
|
|
#define WRITE_64(addr,data) write_longlong(addr,data)
|
Tue Oct 29 12:13:52 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* interp.c (sim_size): Now allocates unified memory for imap segments
0,1,2, and 127. Initializes imap0 and imap1 to 0x1000. Initializes dmap to 0.
(sim_write): Just call xfer_mem().
(sim_read): Just call xfer_mem().
(xfer_mem): New function. Does appropriate memory mapping and copies bytes.
(dmem_addr): New function. Reads dmap register and translates data
addresses to local addresses.
(pc_addr): New function. Reads imap register and computes local address
corresponding to contents of the PC.
(sim_resume): Change to use pc_addr().
(sim_create_inferior): Change reinitialization code. Also reinitializes
imap[01] and dmap.
(sim_fetch_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
(sim_store_register): Add fake registers 32,33,34 for imap0, imap1, and dmap.
* simops.c (MEMPTR): Redefine to use dmem_addr().
(OP_5F00): Replace references to STate.imem with dmem_addr().
* d10v-sim.h (State): Remove mem_min and mem_max. Add umem[128].
(RB,SW,RW,SLW,RLW): Redefine to use dmem_addr().
(IMAP0,IMAP1,DMAP,SET_IMAP,SET_IMAP1,SET_DMAP): Define.
1996-10-29 20:31:08 +00:00
|
|
|
|
|
|
|
#define IMAP0 RW(0xff00)
|
|
|
|
#define IMAP1 RW(0xff02)
|
|
|
|
#define DMAP RW(0xff04)
|
|
|
|
#define SET_IMAP0(x) SW(0xff00,x)
|
|
|
|
#define SET_IMAP1(x) SW(0xff02,x)
|
|
|
|
#define SET_DMAP(x) SW(0xff04,x)
|