OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [sim/] [m32r/] [m32r-sim.h] - Diff between revs 24 and 33

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
/* collection of junk waiting time to sort out
/* collection of junk waiting time to sort out
   Copyright (C) 1996, 1997, 1998, 2003, 2007, 2008
   Copyright (C) 1996, 1997, 1998, 2003, 2007, 2008
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
   Contributed by Cygnus Support.
   Contributed by Cygnus Support.
 
 
   This file is part of GDB, the GNU debugger.
   This file is part of GDB, the GNU debugger.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#ifndef M32R_SIM_H
#ifndef M32R_SIM_H
#define M32R_SIM_H
#define M32R_SIM_H
 
 
/* GDB register numbers.  */
/* GDB register numbers.  */
#define PSW_REGNUM      16
#define PSW_REGNUM      16
#define CBR_REGNUM      17
#define CBR_REGNUM      17
#define SPI_REGNUM      18
#define SPI_REGNUM      18
#define SPU_REGNUM      19
#define SPU_REGNUM      19
#define BPC_REGNUM      20
#define BPC_REGNUM      20
#define PC_REGNUM       21
#define PC_REGNUM       21
#define ACCL_REGNUM     22
#define ACCL_REGNUM     22
#define ACCH_REGNUM     23
#define ACCH_REGNUM     23
#define ACC1L_REGNUM    24
#define ACC1L_REGNUM    24
#define ACC1H_REGNUM    25
#define ACC1H_REGNUM    25
#define BBPSW_REGNUM    26
#define BBPSW_REGNUM    26
#define BBPC_REGNUM     27
#define BBPC_REGNUM     27
#define EVB_REGNUM      28
#define EVB_REGNUM      28
 
 
extern int m32r_decode_gdb_ctrl_regnum (int);
extern int m32r_decode_gdb_ctrl_regnum (int);
 
 
/* Cover macros for hardware accesses.
/* Cover macros for hardware accesses.
   FIXME: Eventually move to cgen.  */
   FIXME: Eventually move to cgen.  */
#define GET_H_SM() ((CPU (h_psw) & 0x80) != 0)
#define GET_H_SM() ((CPU (h_psw) & 0x80) != 0)
 
 
#ifndef GET_H_CR
#ifndef GET_H_CR
extern USI  m32rbf_h_cr_get_handler (SIM_CPU *, UINT);
extern USI  m32rbf_h_cr_get_handler (SIM_CPU *, UINT);
extern void m32rbf_h_cr_set_handler (SIM_CPU *, UINT, USI);
extern void m32rbf_h_cr_set_handler (SIM_CPU *, UINT, USI);
 
 
#define GET_H_CR(regno) \
#define GET_H_CR(regno) \
  XCONCAT2 (WANT_CPU,_h_cr_get_handler) (current_cpu, (regno))
  XCONCAT2 (WANT_CPU,_h_cr_get_handler) (current_cpu, (regno))
#define SET_H_CR(regno, val) \
#define SET_H_CR(regno, val) \
  XCONCAT2 (WANT_CPU,_h_cr_set_handler) (current_cpu, (regno), (val))
  XCONCAT2 (WANT_CPU,_h_cr_set_handler) (current_cpu, (regno), (val))
#endif
#endif
 
 
#ifndef  GET_H_PSW
#ifndef  GET_H_PSW
extern UQI  m32rbf_h_psw_get_handler (SIM_CPU *);
extern UQI  m32rbf_h_psw_get_handler (SIM_CPU *);
extern void m32rbf_h_psw_set_handler (SIM_CPU *, UQI);
extern void m32rbf_h_psw_set_handler (SIM_CPU *, UQI);
 
 
#define GET_H_PSW() \
#define GET_H_PSW() \
  XCONCAT2 (WANT_CPU,_h_psw_get_handler) (current_cpu)
  XCONCAT2 (WANT_CPU,_h_psw_get_handler) (current_cpu)
#define SET_H_PSW(val) \
#define SET_H_PSW(val) \
  XCONCAT2 (WANT_CPU,_h_psw_set_handler) (current_cpu, (val))
  XCONCAT2 (WANT_CPU,_h_psw_set_handler) (current_cpu, (val))
#endif
#endif
 
 
#ifndef  GET_H_ACCUM
#ifndef  GET_H_ACCUM
extern DI   m32rbf_h_accum_get_handler (SIM_CPU *);
extern DI   m32rbf_h_accum_get_handler (SIM_CPU *);
extern void m32rbf_h_accum_set_handler (SIM_CPU *, DI);
extern void m32rbf_h_accum_set_handler (SIM_CPU *, DI);
 
 
#define GET_H_ACCUM() \
#define GET_H_ACCUM() \
  XCONCAT2 (WANT_CPU,_h_accum_get_handler) (current_cpu)
  XCONCAT2 (WANT_CPU,_h_accum_get_handler) (current_cpu)
#define SET_H_ACCUM(val) \
#define SET_H_ACCUM(val) \
  XCONCAT2 (WANT_CPU,_h_accum_set_handler) (current_cpu, (val))
  XCONCAT2 (WANT_CPU,_h_accum_set_handler) (current_cpu, (val))
#endif
#endif


/* Misc. profile data.  */
/* Misc. profile data.  */
 
 
typedef struct {
typedef struct {
  /* nop insn slot filler count */
  /* nop insn slot filler count */
  unsigned int fillnop_count;
  unsigned int fillnop_count;
  /* number of parallel insns */
  /* number of parallel insns */
  unsigned int parallel_count;
  unsigned int parallel_count;
 
 
  /* FIXME: generalize this to handle all insn lengths, move to common.  */
  /* FIXME: generalize this to handle all insn lengths, move to common.  */
  /* number of short insns, not including parallel ones */
  /* number of short insns, not including parallel ones */
  unsigned int short_count;
  unsigned int short_count;
  /* number of long insns */
  /* number of long insns */
  unsigned int long_count;
  unsigned int long_count;
 
 
  /* Working area for computing cycle counts.  */
  /* Working area for computing cycle counts.  */
  unsigned long insn_cycles; /* FIXME: delete */
  unsigned long insn_cycles; /* FIXME: delete */
  unsigned long cti_stall;
  unsigned long cti_stall;
  unsigned long load_stall;
  unsigned long load_stall;
  unsigned long biggest_cycles;
  unsigned long biggest_cycles;
 
 
  /* Bitmask of registers loaded by previous insn.  */
  /* Bitmask of registers loaded by previous insn.  */
  unsigned int load_regs;
  unsigned int load_regs;
  /* Bitmask of registers loaded by current insn.  */
  /* Bitmask of registers loaded by current insn.  */
  unsigned int load_regs_pending;
  unsigned int load_regs_pending;
} M32R_MISC_PROFILE;
} M32R_MISC_PROFILE;
 
 
/* Initialize the working area.  */
/* Initialize the working area.  */
void m32r_init_insn_cycles (SIM_CPU *, int);
void m32r_init_insn_cycles (SIM_CPU *, int);
/* Update the totals for the insn.  */
/* Update the totals for the insn.  */
void m32r_record_insn_cycles (SIM_CPU *, int);
void m32r_record_insn_cycles (SIM_CPU *, int);
 
 
/* This is invoked by the nop pattern in the .cpu file.  */
/* This is invoked by the nop pattern in the .cpu file.  */
#define PROFILE_COUNT_FILLNOPS(cpu, addr) \
#define PROFILE_COUNT_FILLNOPS(cpu, addr) \
do { \
do { \
  if (PROFILE_INSN_P (cpu) \
  if (PROFILE_INSN_P (cpu) \
      && (addr & 3) != 0) \
      && (addr & 3) != 0) \
    ++ CPU_M32R_MISC_PROFILE (cpu)->fillnop_count; \
    ++ CPU_M32R_MISC_PROFILE (cpu)->fillnop_count; \
} while (0)
} while (0)
 
 
/* This is invoked by the execute section of mloop{,x}.in.  */
/* This is invoked by the execute section of mloop{,x}.in.  */
#define PROFILE_COUNT_PARINSNS(cpu) \
#define PROFILE_COUNT_PARINSNS(cpu) \
do { \
do { \
  if (PROFILE_INSN_P (cpu)) \
  if (PROFILE_INSN_P (cpu)) \
    ++ CPU_M32R_MISC_PROFILE (cpu)->parallel_count; \
    ++ CPU_M32R_MISC_PROFILE (cpu)->parallel_count; \
} while (0)
} while (0)
 
 
/* This is invoked by the execute section of mloop{,x}.in.  */
/* This is invoked by the execute section of mloop{,x}.in.  */
#define PROFILE_COUNT_SHORTINSNS(cpu) \
#define PROFILE_COUNT_SHORTINSNS(cpu) \
do { \
do { \
  if (PROFILE_INSN_P (cpu)) \
  if (PROFILE_INSN_P (cpu)) \
    ++ CPU_M32R_MISC_PROFILE (cpu)->short_count; \
    ++ CPU_M32R_MISC_PROFILE (cpu)->short_count; \
} while (0)
} while (0)
 
 
/* This is invoked by the execute section of mloop{,x}.in.  */
/* This is invoked by the execute section of mloop{,x}.in.  */
#define PROFILE_COUNT_LONGINSNS(cpu) \
#define PROFILE_COUNT_LONGINSNS(cpu) \
do { \
do { \
  if (PROFILE_INSN_P (cpu)) \
  if (PROFILE_INSN_P (cpu)) \
    ++ CPU_M32R_MISC_PROFILE (cpu)->long_count; \
    ++ CPU_M32R_MISC_PROFILE (cpu)->long_count; \
} while (0)
} while (0)


#define GETTWI GETTSI
#define GETTWI GETTSI
#define SETTWI SETTSI
#define SETTWI SETTSI


/* Additional execution support.  */
/* Additional execution support.  */
 
 


/* Hardware/device support.
/* Hardware/device support.
   ??? Will eventually want to move device stuff to config files.  */
   ??? Will eventually want to move device stuff to config files.  */
 
 
/* Exception, Interrupt, and Trap addresses */
/* Exception, Interrupt, and Trap addresses */
#define EIT_SYSBREAK_ADDR       0x10
#define EIT_SYSBREAK_ADDR       0x10
#define EIT_RSVD_INSN_ADDR      0x20
#define EIT_RSVD_INSN_ADDR      0x20
#define EIT_ADDR_EXCP_ADDR      0x30
#define EIT_ADDR_EXCP_ADDR      0x30
#define EIT_TRAP_BASE_ADDR      0x40
#define EIT_TRAP_BASE_ADDR      0x40
#define EIT_EXTERN_ADDR         0x80
#define EIT_EXTERN_ADDR         0x80
#define EIT_RESET_ADDR          0x7ffffff0
#define EIT_RESET_ADDR          0x7ffffff0
#define EIT_WAKEUP_ADDR         0x7ffffff0
#define EIT_WAKEUP_ADDR         0x7ffffff0
 
 
/* Special purpose traps.  */
/* Special purpose traps.  */
#define TRAP_SYSCALL    0
#define TRAP_SYSCALL    0
#define TRAP_BREAKPOINT 1
#define TRAP_BREAKPOINT 1
 
 
/* Support for the MSPR register (Cache Purge Control Register)
/* Support for the MSPR register (Cache Purge Control Register)
   and the MCCR register (Cache Control Register) are needed in order for
   and the MCCR register (Cache Control Register) are needed in order for
   overlays to work correctly with the scache.
   overlays to work correctly with the scache.
   MSPR no longer exists but is supported for upward compatibility with
   MSPR no longer exists but is supported for upward compatibility with
   early overlay support.  */
   early overlay support.  */
 
 
/* Cache Purge Control (only exists on early versions of chips) */
/* Cache Purge Control (only exists on early versions of chips) */
#define MSPR_ADDR 0xfffffff7
#define MSPR_ADDR 0xfffffff7
#define MSPR_PURGE 1
#define MSPR_PURGE 1
 
 
/* Lock Control Register (not supported) */
/* Lock Control Register (not supported) */
#define MLCR_ADDR 0xfffffff7
#define MLCR_ADDR 0xfffffff7
#define MLCR_LM 1
#define MLCR_LM 1
 
 
/* Power Management Control Register (not supported) */
/* Power Management Control Register (not supported) */
#define MPMR_ADDR 0xfffffffb
#define MPMR_ADDR 0xfffffffb
 
 
/* Cache Control Register */
/* Cache Control Register */
#define MCCR_ADDR 0xffffffff
#define MCCR_ADDR 0xffffffff
#define MCCR_CP 0x80
#define MCCR_CP 0x80
/* not supported */
/* not supported */
#define MCCR_CM0 2
#define MCCR_CM0 2
#define MCCR_CM1 1
#define MCCR_CM1 1
 
 
/* Serial device addresses.  */
/* Serial device addresses.  */
#ifdef M32R_EVA /* orig eva board, no longer supported */
#ifdef M32R_EVA /* orig eva board, no longer supported */
#define UART_INCHAR_ADDR        0xff102013
#define UART_INCHAR_ADDR        0xff102013
#define UART_OUTCHAR_ADDR       0xff10200f
#define UART_OUTCHAR_ADDR       0xff10200f
#define UART_STATUS_ADDR        0xff102006
#define UART_STATUS_ADDR        0xff102006
/* Indicate ready bit is inverted.  */
/* Indicate ready bit is inverted.  */
#define UART_INPUT_READY0
#define UART_INPUT_READY0
#else
#else
/* These are the values for the MSA2000 board.
/* These are the values for the MSA2000 board.
   ??? Will eventually need to move this to a config file.  */
   ??? Will eventually need to move this to a config file.  */
#define UART_INCHAR_ADDR        0xff004009
#define UART_INCHAR_ADDR        0xff004009
#define UART_OUTCHAR_ADDR       0xff004007
#define UART_OUTCHAR_ADDR       0xff004007
#define UART_STATUS_ADDR        0xff004002
#define UART_STATUS_ADDR        0xff004002
#endif
#endif
 
 
#define UART_INPUT_READY        0x4
#define UART_INPUT_READY        0x4
#define UART_OUTPUT_READY       0x1
#define UART_OUTPUT_READY       0x1
 
 
/* Start address and length of all device support.  */
/* Start address and length of all device support.  */
#define M32R_DEVICE_ADDR        0xff000000
#define M32R_DEVICE_ADDR        0xff000000
#define M32R_DEVICE_LEN         0x00ffffff
#define M32R_DEVICE_LEN         0x00ffffff
 
 
/* sim_core_attach device argument.  */
/* sim_core_attach device argument.  */
extern device m32r_devices;
extern device m32r_devices;
 
 
/* FIXME: Temporary, until device support ready.  */
/* FIXME: Temporary, until device support ready.  */
struct _device { int foo; };
struct _device { int foo; };
 
 
/* Handle the trap insn.  */
/* Handle the trap insn.  */
USI m32r_trap (SIM_CPU *, PCADDR, int);
USI m32r_trap (SIM_CPU *, PCADDR, int);
 
 
#endif /* M32R_SIM_H */
#endif /* M32R_SIM_H */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.