OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [h8500-tdep.c] - Diff between revs 105 and 1765

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

Rev 105 Rev 1765
/* Target-dependent code for Hitachi H8/500, for GDB.
/* Target-dependent code for Hitachi H8/500, for GDB.
   Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
   Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   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 2 of the License, or
   the Free Software Foundation; either version 2 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, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330,
   Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.  */
   Boston, MA 02111-1307, USA.  */
 
 
/*
/*
   Contributed by Steve Chamberlain
   Contributed by Steve Chamberlain
   sac@cygnus.com
   sac@cygnus.com
 */
 */
 
 
#include "defs.h"
#include "defs.h"
#include "frame.h"
#include "frame.h"
#include "obstack.h"
#include "obstack.h"
#include "symtab.h"
#include "symtab.h"
#include "gdbtypes.h"
#include "gdbtypes.h"
#include "gdbcmd.h"
#include "gdbcmd.h"
#include "value.h"
#include "value.h"
#include "dis-asm.h"
#include "dis-asm.h"
#include "gdbcore.h"
#include "gdbcore.h"
 
 
#define UNSIGNED_SHORT(X) ((X) & 0xffff)
#define UNSIGNED_SHORT(X) ((X) & 0xffff)
 
 
static int code_size = 2;
static int code_size = 2;
 
 
static int data_size = 2;
static int data_size = 2;
 
 
/* Shape of an H8/500 frame :
/* Shape of an H8/500 frame :
 
 
   arg-n
   arg-n
   ..
   ..
   arg-2
   arg-2
   arg-1
   arg-1
   return address <2 or 4 bytes>
   return address <2 or 4 bytes>
   old fp         <2 bytes>
   old fp         <2 bytes>
   auto-n
   auto-n
   ..
   ..
   auto-1
   auto-1
   saved registers
   saved registers
 
 
 */
 */
 
 
/* an easy to debug H8 stack frame looks like:
/* an easy to debug H8 stack frame looks like:
   0x6df6               push    r6
   0x6df6               push    r6
   0x0d76       mov.w   r7,r6
   0x0d76       mov.w   r7,r6
   0x6dfn          push    reg
   0x6dfn          push    reg
   0x7905 nnnn          mov.w  #n,r5    or   0x1b87  subs #2,sp
   0x7905 nnnn          mov.w  #n,r5    or   0x1b87  subs #2,sp
   0x1957               sub.w  r5,sp
   0x1957               sub.w  r5,sp
 
 
 */
 */
 
 
#define IS_PUSH(x) (((x) & 0xff00)==0x6d00)
#define IS_PUSH(x) (((x) & 0xff00)==0x6d00)
#define IS_LINK_8(x) ((x) == 0x17)
#define IS_LINK_8(x) ((x) == 0x17)
#define IS_LINK_16(x) ((x) == 0x1f)
#define IS_LINK_16(x) ((x) == 0x1f)
#define IS_MOVE_FP(x) ((x) == 0x0d76)
#define IS_MOVE_FP(x) ((x) == 0x0d76)
#define IS_MOV_SP_FP(x) ((x) == 0x0d76)
#define IS_MOV_SP_FP(x) ((x) == 0x0d76)
#define IS_SUB2_SP(x) ((x) == 0x1b87)
#define IS_SUB2_SP(x) ((x) == 0x1b87)
#define IS_MOVK_R5(x) ((x) == 0x7905)
#define IS_MOVK_R5(x) ((x) == 0x7905)
#define IS_SUB_R5SP(x) ((x) == 0x1957)
#define IS_SUB_R5SP(x) ((x) == 0x1957)
 
 
#define LINK_8 0x17
#define LINK_8 0x17
#define LINK_16 0x1f
#define LINK_16 0x1f
 
 
int minimum_mode = 1;
int minimum_mode = 1;
 
 
CORE_ADDR
CORE_ADDR
h8500_skip_prologue (start_pc)
h8500_skip_prologue (start_pc)
     CORE_ADDR start_pc;
     CORE_ADDR start_pc;
{
{
  short int w;
  short int w;
 
 
  w = read_memory_integer (start_pc, 1);
  w = read_memory_integer (start_pc, 1);
  if (w == LINK_8)
  if (w == LINK_8)
    {
    {
      start_pc += 2;
      start_pc += 2;
      w = read_memory_integer (start_pc, 1);
      w = read_memory_integer (start_pc, 1);
    }
    }
 
 
  if (w == LINK_16)
  if (w == LINK_16)
    {
    {
      start_pc += 3;
      start_pc += 3;
      w = read_memory_integer (start_pc, 2);
      w = read_memory_integer (start_pc, 2);
    }
    }
 
 
  return start_pc;
  return start_pc;
}
}
 
 
CORE_ADDR
CORE_ADDR
h8500_addr_bits_remove (addr)
h8500_addr_bits_remove (addr)
     CORE_ADDR addr;
     CORE_ADDR addr;
{
{
  return ((addr) & 0xffffff);
  return ((addr) & 0xffffff);
}
}
 
 
/* Given a GDB frame, determine the address of the calling function's frame.
/* Given a GDB frame, determine the address of the calling function's frame.
   This will be used to create a new GDB frame struct, and then
   This will be used to create a new GDB frame struct, and then
   INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
   INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
 
 
   For us, the frame address is its stack pointer value, so we look up
   For us, the frame address is its stack pointer value, so we look up
   the function prologue to determine the caller's sp value, and return it.  */
   the function prologue to determine the caller's sp value, and return it.  */
 
 
CORE_ADDR
CORE_ADDR
h8500_frame_chain (thisframe)
h8500_frame_chain (thisframe)
     struct frame_info *thisframe;
     struct frame_info *thisframe;
{
{
  if (!inside_entry_file (thisframe->pc))
  if (!inside_entry_file (thisframe->pc))
    return (read_memory_integer (FRAME_FP (thisframe), PTR_SIZE));
    return (read_memory_integer (FRAME_FP (thisframe), PTR_SIZE));
  else
  else
    return 0;
    return 0;
}
}
 
 
/* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
/* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
   is not the address of a valid instruction, the address of the next
   is not the address of a valid instruction, the address of the next
   instruction beyond ADDR otherwise.  *PWORD1 receives the first word
   instruction beyond ADDR otherwise.  *PWORD1 receives the first word
   of the instruction. */
   of the instruction. */
 
 
CORE_ADDR
CORE_ADDR
NEXT_PROLOGUE_INSN (addr, lim, pword1)
NEXT_PROLOGUE_INSN (addr, lim, pword1)
     CORE_ADDR addr;
     CORE_ADDR addr;
     CORE_ADDR lim;
     CORE_ADDR lim;
     char *pword1;
     char *pword1;
{
{
  if (addr < lim + 8)
  if (addr < lim + 8)
    {
    {
      read_memory (addr, pword1, 1);
      read_memory (addr, pword1, 1);
      read_memory (addr, pword1 + 1, 1);
      read_memory (addr, pword1 + 1, 1);
      return 1;
      return 1;
    }
    }
  return 0;
  return 0;
}
}
 
 
/* Examine the prologue of a function.  `ip' points to the first
/* Examine the prologue of a function.  `ip' points to the first
   instruction.  `limit' is the limit of the prologue (e.g. the addr
   instruction.  `limit' is the limit of the prologue (e.g. the addr
   of the first linenumber, or perhaps the program counter if we're
   of the first linenumber, or perhaps the program counter if we're
   stepping through).  `frame_sp' is the stack pointer value in use in
   stepping through).  `frame_sp' is the stack pointer value in use in
   this frame.  `fsr' is a pointer to a frame_saved_regs structure
   this frame.  `fsr' is a pointer to a frame_saved_regs structure
   into which we put info about the registers saved by this frame.
   into which we put info about the registers saved by this frame.
   `fi' is a struct frame_info pointer; we fill in various fields in
   `fi' is a struct frame_info pointer; we fill in various fields in
   it to reflect the offsets of the arg pointer and the locals
   it to reflect the offsets of the arg pointer and the locals
   pointer.  */
   pointer.  */
 
 
/* Return the saved PC from this frame. */
/* Return the saved PC from this frame. */
 
 
CORE_ADDR
CORE_ADDR
frame_saved_pc (frame)
frame_saved_pc (frame)
     struct frame_info *frame;
     struct frame_info *frame;
{
{
  return read_memory_integer (FRAME_FP (frame) + 2, PTR_SIZE);
  return read_memory_integer (FRAME_FP (frame) + 2, PTR_SIZE);
}
}
 
 
void
void
h8500_pop_frame ()
h8500_pop_frame ()
{
{
  unsigned regnum;
  unsigned regnum;
  struct frame_saved_regs fsr;
  struct frame_saved_regs fsr;
  struct frame_info *frame = get_current_frame ();
  struct frame_info *frame = get_current_frame ();
 
 
  get_frame_saved_regs (frame, &fsr);
  get_frame_saved_regs (frame, &fsr);
 
 
  for (regnum = 0; regnum < 8; regnum++)
  for (regnum = 0; regnum < 8; regnum++)
    {
    {
      if (fsr.regs[regnum])
      if (fsr.regs[regnum])
        write_register (regnum, read_memory_short (fsr.regs[regnum]));
        write_register (regnum, read_memory_short (fsr.regs[regnum]));
 
 
      flush_cached_frames ();
      flush_cached_frames ();
    }
    }
}
}
 
 
void
void
print_register_hook (regno)
print_register_hook (regno)
     int regno;
     int regno;
{
{
  if (regno == CCR_REGNUM)
  if (regno == CCR_REGNUM)
    {
    {
      /* CCR register */
      /* CCR register */
 
 
      int C, Z, N, V;
      int C, Z, N, V;
      unsigned char b[2];
      unsigned char b[2];
      unsigned char l;
      unsigned char l;
 
 
      read_relative_register_raw_bytes (regno, b);
      read_relative_register_raw_bytes (regno, b);
      l = b[1];
      l = b[1];
      printf_unfiltered ("\t");
      printf_unfiltered ("\t");
      printf_unfiltered ("I-%d - ", (l & 0x80) != 0);
      printf_unfiltered ("I-%d - ", (l & 0x80) != 0);
      N = (l & 0x8) != 0;
      N = (l & 0x8) != 0;
      Z = (l & 0x4) != 0;
      Z = (l & 0x4) != 0;
      V = (l & 0x2) != 0;
      V = (l & 0x2) != 0;
      C = (l & 0x1) != 0;
      C = (l & 0x1) != 0;
      printf_unfiltered ("N-%d ", N);
      printf_unfiltered ("N-%d ", N);
      printf_unfiltered ("Z-%d ", Z);
      printf_unfiltered ("Z-%d ", Z);
      printf_unfiltered ("V-%d ", V);
      printf_unfiltered ("V-%d ", V);
      printf_unfiltered ("C-%d ", C);
      printf_unfiltered ("C-%d ", C);
      if ((C | Z) == 0)
      if ((C | Z) == 0)
        printf_unfiltered ("u> ");
        printf_unfiltered ("u> ");
      if ((C | Z) == 1)
      if ((C | Z) == 1)
        printf_unfiltered ("u<= ");
        printf_unfiltered ("u<= ");
      if ((C == 0))
      if ((C == 0))
        printf_unfiltered ("u>= ");
        printf_unfiltered ("u>= ");
      if (C == 1)
      if (C == 1)
        printf_unfiltered ("u< ");
        printf_unfiltered ("u< ");
      if (Z == 0)
      if (Z == 0)
        printf_unfiltered ("!= ");
        printf_unfiltered ("!= ");
      if (Z == 1)
      if (Z == 1)
        printf_unfiltered ("== ");
        printf_unfiltered ("== ");
      if ((N ^ V) == 0)
      if ((N ^ V) == 0)
        printf_unfiltered (">= ");
        printf_unfiltered (">= ");
      if ((N ^ V) == 1)
      if ((N ^ V) == 1)
        printf_unfiltered ("< ");
        printf_unfiltered ("< ");
      if ((Z | (N ^ V)) == 0)
      if ((Z | (N ^ V)) == 0)
        printf_unfiltered ("> ");
        printf_unfiltered ("> ");
      if ((Z | (N ^ V)) == 1)
      if ((Z | (N ^ V)) == 1)
        printf_unfiltered ("<= ");
        printf_unfiltered ("<= ");
    }
    }
}
}
 
 
int
int
h8500_register_size (regno)
h8500_register_size (regno)
     int regno;
     int regno;
{
{
  switch (regno)
  switch (regno)
    {
    {
    case SEG_C_REGNUM:
    case SEG_C_REGNUM:
    case SEG_D_REGNUM:
    case SEG_D_REGNUM:
    case SEG_E_REGNUM:
    case SEG_E_REGNUM:
    case SEG_T_REGNUM:
    case SEG_T_REGNUM:
      return 1;
      return 1;
    case R0_REGNUM:
    case R0_REGNUM:
    case R1_REGNUM:
    case R1_REGNUM:
    case R2_REGNUM:
    case R2_REGNUM:
    case R3_REGNUM:
    case R3_REGNUM:
    case R4_REGNUM:
    case R4_REGNUM:
    case R5_REGNUM:
    case R5_REGNUM:
    case R6_REGNUM:
    case R6_REGNUM:
    case R7_REGNUM:
    case R7_REGNUM:
    case CCR_REGNUM:
    case CCR_REGNUM:
      return 2;
      return 2;
 
 
    case PR0_REGNUM:
    case PR0_REGNUM:
    case PR1_REGNUM:
    case PR1_REGNUM:
    case PR2_REGNUM:
    case PR2_REGNUM:
    case PR3_REGNUM:
    case PR3_REGNUM:
    case PR4_REGNUM:
    case PR4_REGNUM:
    case PR5_REGNUM:
    case PR5_REGNUM:
    case PR6_REGNUM:
    case PR6_REGNUM:
    case PR7_REGNUM:
    case PR7_REGNUM:
    case PC_REGNUM:
    case PC_REGNUM:
      return 4;
      return 4;
    default:
    default:
      abort ();
      abort ();
    }
    }
}
}
 
 
struct type *
struct type *
h8500_register_virtual_type (regno)
h8500_register_virtual_type (regno)
     int regno;
     int regno;
{
{
  switch (regno)
  switch (regno)
    {
    {
    case SEG_C_REGNUM:
    case SEG_C_REGNUM:
    case SEG_E_REGNUM:
    case SEG_E_REGNUM:
    case SEG_D_REGNUM:
    case SEG_D_REGNUM:
    case SEG_T_REGNUM:
    case SEG_T_REGNUM:
      return builtin_type_unsigned_char;
      return builtin_type_unsigned_char;
    case R0_REGNUM:
    case R0_REGNUM:
    case R1_REGNUM:
    case R1_REGNUM:
    case R2_REGNUM:
    case R2_REGNUM:
    case R3_REGNUM:
    case R3_REGNUM:
    case R4_REGNUM:
    case R4_REGNUM:
    case R5_REGNUM:
    case R5_REGNUM:
    case R6_REGNUM:
    case R6_REGNUM:
    case R7_REGNUM:
    case R7_REGNUM:
    case CCR_REGNUM:
    case CCR_REGNUM:
      return builtin_type_unsigned_short;
      return builtin_type_unsigned_short;
    case PR0_REGNUM:
    case PR0_REGNUM:
    case PR1_REGNUM:
    case PR1_REGNUM:
    case PR2_REGNUM:
    case PR2_REGNUM:
    case PR3_REGNUM:
    case PR3_REGNUM:
    case PR4_REGNUM:
    case PR4_REGNUM:
    case PR5_REGNUM:
    case PR5_REGNUM:
    case PR6_REGNUM:
    case PR6_REGNUM:
    case PR7_REGNUM:
    case PR7_REGNUM:
    case PC_REGNUM:
    case PC_REGNUM:
      return builtin_type_unsigned_long;
      return builtin_type_unsigned_long;
    default:
    default:
      abort ();
      abort ();
    }
    }
}
}
 
 
/* Put here the code to store, into a struct frame_saved_regs,
/* Put here the code to store, into a struct frame_saved_regs,
   the addresses of the saved registers of frame described by FRAME_INFO.
   the addresses of the saved registers of frame described by FRAME_INFO.
   This includes special registers such as pc and fp saved in special
   This includes special registers such as pc and fp saved in special
   ways in the stack frame.  sp is even more special:
   ways in the stack frame.  sp is even more special:
   the address we return for it IS the sp for the next frame.  */
   the address we return for it IS the sp for the next frame.  */
 
 
void
void
frame_find_saved_regs (frame_info, frame_saved_regs)
frame_find_saved_regs (frame_info, frame_saved_regs)
     struct frame_info *frame_info;
     struct frame_info *frame_info;
     struct frame_saved_regs *frame_saved_regs;
     struct frame_saved_regs *frame_saved_regs;
{
{
  register int regnum;
  register int regnum;
  register int regmask;
  register int regmask;
  register CORE_ADDR next_addr;
  register CORE_ADDR next_addr;
  register CORE_ADDR pc;
  register CORE_ADDR pc;
  unsigned char thebyte;
  unsigned char thebyte;
 
 
  memset (frame_saved_regs, '\0', sizeof *frame_saved_regs);
  memset (frame_saved_regs, '\0', sizeof *frame_saved_regs);
 
 
  if ((frame_info)->pc >= (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM * 4 - 4
  if ((frame_info)->pc >= (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM * 4 - 4
      && (frame_info)->pc <= (frame_info)->frame)
      && (frame_info)->pc <= (frame_info)->frame)
    {
    {
      next_addr = (frame_info)->frame;
      next_addr = (frame_info)->frame;
      pc = (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM * 4 - 4;
      pc = (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM * 4 - 4;
    }
    }
  else
  else
    {
    {
      pc = get_pc_function_start ((frame_info)->pc);
      pc = get_pc_function_start ((frame_info)->pc);
      /* Verify we have a link a6 instruction next;
      /* Verify we have a link a6 instruction next;
         if not we lose.  If we win, find the address above the saved
         if not we lose.  If we win, find the address above the saved
         regs using the amount of storage from the link instruction.
         regs using the amount of storage from the link instruction.
       */
       */
 
 
      thebyte = read_memory_integer (pc, 1);
      thebyte = read_memory_integer (pc, 1);
      if (0x1f == thebyte)
      if (0x1f == thebyte)
        next_addr = (frame_info)->frame + read_memory_integer (pc += 1, 2), pc += 2;
        next_addr = (frame_info)->frame + read_memory_integer (pc += 1, 2), pc += 2;
      else if (0x17 == thebyte)
      else if (0x17 == thebyte)
        next_addr = (frame_info)->frame + read_memory_integer (pc += 1, 1), pc += 1;
        next_addr = (frame_info)->frame + read_memory_integer (pc += 1, 1), pc += 1;
      else
      else
        goto lose;
        goto lose;
#if 0
#if 0
      /* FIXME steve */
      /* FIXME steve */
      /* If have an add:g.waddal #-n, sp next, adjust next_addr.  */
      /* If have an add:g.waddal #-n, sp next, adjust next_addr.  */
      if ((0x0c0177777 & read_memory_integer (pc, 2)) == 0157774)
      if ((0x0c0177777 & read_memory_integer (pc, 2)) == 0157774)
        next_addr += read_memory_integer (pc += 2, 4), pc += 4;
        next_addr += read_memory_integer (pc += 2, 4), pc += 4;
#endif
#endif
    }
    }
 
 
  thebyte = read_memory_integer (pc, 1);
  thebyte = read_memory_integer (pc, 1);
  if (thebyte == 0x12)
  if (thebyte == 0x12)
    {
    {
      /* Got stm */
      /* Got stm */
      pc++;
      pc++;
      regmask = read_memory_integer (pc, 1);
      regmask = read_memory_integer (pc, 1);
      pc++;
      pc++;
      for (regnum = 0; regnum < 8; regnum++, regmask >>= 1)
      for (regnum = 0; regnum < 8; regnum++, regmask >>= 1)
        {
        {
          if (regmask & 1)
          if (regmask & 1)
            {
            {
              (frame_saved_regs)->regs[regnum] = (next_addr += 2) - 2;
              (frame_saved_regs)->regs[regnum] = (next_addr += 2) - 2;
            }
            }
        }
        }
      thebyte = read_memory_integer (pc, 1);
      thebyte = read_memory_integer (pc, 1);
    }
    }
  /* Maybe got a load of pushes */
  /* Maybe got a load of pushes */
  while (thebyte == 0xbf)
  while (thebyte == 0xbf)
    {
    {
      pc++;
      pc++;
      regnum = read_memory_integer (pc, 1) & 0x7;
      regnum = read_memory_integer (pc, 1) & 0x7;
      pc++;
      pc++;
      (frame_saved_regs)->regs[regnum] = (next_addr += 2) - 2;
      (frame_saved_regs)->regs[regnum] = (next_addr += 2) - 2;
      thebyte = read_memory_integer (pc, 1);
      thebyte = read_memory_integer (pc, 1);
    }
    }
 
 
lose:;
lose:;
 
 
  /* Remember the address of the frame pointer */
  /* Remember the address of the frame pointer */
  (frame_saved_regs)->regs[FP_REGNUM] = (frame_info)->frame;
  (frame_saved_regs)->regs[FP_REGNUM] = (frame_info)->frame;
 
 
  /* This is where the old sp is hidden */
  /* This is where the old sp is hidden */
  (frame_saved_regs)->regs[SP_REGNUM] = (frame_info)->frame;
  (frame_saved_regs)->regs[SP_REGNUM] = (frame_info)->frame;
 
 
  /* And the PC - remember the pushed FP is always two bytes long */
  /* And the PC - remember the pushed FP is always two bytes long */
  (frame_saved_regs)->regs[PC_REGNUM] = (frame_info)->frame + 2;
  (frame_saved_regs)->regs[PC_REGNUM] = (frame_info)->frame + 2;
}
}
 
 
CORE_ADDR
CORE_ADDR
saved_pc_after_call ()
saved_pc_after_call ()
{
{
  int x;
  int x;
  int a = read_register (SP_REGNUM);
  int a = read_register (SP_REGNUM);
 
 
  x = read_memory_integer (a, code_size);
  x = read_memory_integer (a, code_size);
  if (code_size == 2)
  if (code_size == 2)
    {
    {
      /* Stick current code segement onto top */
      /* Stick current code segement onto top */
      x &= 0xffff;
      x &= 0xffff;
      x |= read_register (SEG_C_REGNUM) << 16;
      x |= read_register (SEG_C_REGNUM) << 16;
    }
    }
  x &= 0xffffff;
  x &= 0xffffff;
  return x;
  return x;
}
}
 
 
void
void
h8500_set_pointer_size (newsize)
h8500_set_pointer_size (newsize)
     int newsize;
     int newsize;
{
{
  static int oldsize = 0;
  static int oldsize = 0;
 
 
  if (oldsize != newsize)
  if (oldsize != newsize)
    {
    {
      printf_unfiltered ("pointer size set to %d bits\n", newsize);
      printf_unfiltered ("pointer size set to %d bits\n", newsize);
      oldsize = newsize;
      oldsize = newsize;
      if (newsize == 32)
      if (newsize == 32)
        {
        {
          minimum_mode = 0;
          minimum_mode = 0;
        }
        }
      else
      else
        {
        {
          minimum_mode = 1;
          minimum_mode = 1;
        }
        }
      _initialize_gdbtypes ();
      _initialize_gdbtypes ();
    }
    }
}
}
 
 
static void
static void
big_command ()
big_command ()
{
{
  h8500_set_pointer_size (32);
  h8500_set_pointer_size (32);
  code_size = 4;
  code_size = 4;
  data_size = 4;
  data_size = 4;
}
}
 
 
static void
static void
medium_command ()
medium_command ()
{
{
  h8500_set_pointer_size (32);
  h8500_set_pointer_size (32);
  code_size = 4;
  code_size = 4;
  data_size = 2;
  data_size = 2;
}
}
 
 
static void
static void
compact_command ()
compact_command ()
{
{
  h8500_set_pointer_size (32);
  h8500_set_pointer_size (32);
  code_size = 2;
  code_size = 2;
  data_size = 4;
  data_size = 4;
}
}
 
 
static void
static void
small_command ()
small_command ()
{
{
  h8500_set_pointer_size (16);
  h8500_set_pointer_size (16);
  code_size = 2;
  code_size = 2;
  data_size = 2;
  data_size = 2;
}
}
 
 
static struct cmd_list_element *setmemorylist;
static struct cmd_list_element *setmemorylist;
 
 
static void
static void
set_memory (args, from_tty)
set_memory (args, from_tty)
     char *args;
     char *args;
     int from_tty;
     int from_tty;
{
{
  printf_unfiltered ("\"set memory\" must be followed by the name of a memory subcommand.\n");
  printf_unfiltered ("\"set memory\" must be followed by the name of a memory subcommand.\n");
  help_list (setmemorylist, "set memory ", -1, gdb_stdout);
  help_list (setmemorylist, "set memory ", -1, gdb_stdout);
}
}
 
 
/* See if variable name is ppc or pr[0-7] */
/* See if variable name is ppc or pr[0-7] */
 
 
int
int
h8500_is_trapped_internalvar (name)
h8500_is_trapped_internalvar (name)
     char *name;
     char *name;
{
{
  if (name[0] != 'p')
  if (name[0] != 'p')
    return 0;
    return 0;
 
 
  if (strcmp (name + 1, "pc") == 0)
  if (strcmp (name + 1, "pc") == 0)
    return 1;
    return 1;
 
 
  if (name[1] == 'r'
  if (name[1] == 'r'
      && name[2] >= '0'
      && name[2] >= '0'
      && name[2] <= '7'
      && name[2] <= '7'
      && name[3] == '\000')
      && name[3] == '\000')
    return 1;
    return 1;
  else
  else
    return 0;
    return 0;
}
}
 
 
value_ptr
value_ptr
h8500_value_of_trapped_internalvar (var)
h8500_value_of_trapped_internalvar (var)
     struct internalvar *var;
     struct internalvar *var;
{
{
  LONGEST regval;
  LONGEST regval;
  unsigned char regbuf[4];
  unsigned char regbuf[4];
  int page_regnum, regnum;
  int page_regnum, regnum;
 
 
  regnum = var->name[2] == 'c' ? PC_REGNUM : var->name[2] - '0';
  regnum = var->name[2] == 'c' ? PC_REGNUM : var->name[2] - '0';
 
 
  switch (var->name[2])
  switch (var->name[2])
    {
    {
    case 'c':
    case 'c':
      page_regnum = SEG_C_REGNUM;
      page_regnum = SEG_C_REGNUM;
      break;
      break;
    case '0':
    case '0':
    case '1':
    case '1':
    case '2':
    case '2':
    case '3':
    case '3':
      page_regnum = SEG_D_REGNUM;
      page_regnum = SEG_D_REGNUM;
      break;
      break;
    case '4':
    case '4':
    case '5':
    case '5':
      page_regnum = SEG_E_REGNUM;
      page_regnum = SEG_E_REGNUM;
      break;
      break;
    case '6':
    case '6':
    case '7':
    case '7':
      page_regnum = SEG_T_REGNUM;
      page_regnum = SEG_T_REGNUM;
      break;
      break;
    }
    }
 
 
  get_saved_register (regbuf, NULL, NULL, selected_frame, page_regnum, NULL);
  get_saved_register (regbuf, NULL, NULL, selected_frame, page_regnum, NULL);
  regval = regbuf[0] << 16;
  regval = regbuf[0] << 16;
 
 
  get_saved_register (regbuf, NULL, NULL, selected_frame, regnum, NULL);
  get_saved_register (regbuf, NULL, NULL, selected_frame, regnum, NULL);
  regval |= regbuf[0] << 8 | regbuf[1];          /* XXX host/target byte order */
  regval |= regbuf[0] << 8 | regbuf[1];          /* XXX host/target byte order */
 
 
  free (var->value);            /* Free up old value */
  free (var->value);            /* Free up old value */
 
 
  var->value = value_from_longest (builtin_type_unsigned_long, regval);
  var->value = value_from_longest (builtin_type_unsigned_long, regval);
  release_value (var->value);   /* Unchain new value */
  release_value (var->value);   /* Unchain new value */
 
 
  VALUE_LVAL (var->value) = lval_internalvar;
  VALUE_LVAL (var->value) = lval_internalvar;
  VALUE_INTERNALVAR (var->value) = var;
  VALUE_INTERNALVAR (var->value) = var;
  return var->value;
  return var->value;
}
}
 
 
void
void
h8500_set_trapped_internalvar (var, newval, bitpos, bitsize, offset)
h8500_set_trapped_internalvar (var, newval, bitpos, bitsize, offset)
     struct internalvar *var;
     struct internalvar *var;
     int offset, bitpos, bitsize;
     int offset, bitpos, bitsize;
     value_ptr newval;
     value_ptr newval;
{
{
  char *page_regnum, *regnum;
  char *page_regnum, *regnum;
  char expression[100];
  char expression[100];
  unsigned new_regval;
  unsigned new_regval;
  struct type *type;
  struct type *type;
  enum type_code newval_type_code;
  enum type_code newval_type_code;
 
 
  type = check_typedef (VALUE_TYPE (newval));
  type = check_typedef (VALUE_TYPE (newval));
  newval_type_code = TYPE_CODE (type);
  newval_type_code = TYPE_CODE (type);
 
 
  if ((newval_type_code != TYPE_CODE_INT
  if ((newval_type_code != TYPE_CODE_INT
       && newval_type_code != TYPE_CODE_PTR)
       && newval_type_code != TYPE_CODE_PTR)
      || TYPE_LENGTH (type) != sizeof (new_regval))
      || TYPE_LENGTH (type) != sizeof (new_regval))
    error ("Illegal type (%s) for assignment to $%s\n",
    error ("Illegal type (%s) for assignment to $%s\n",
           TYPE_NAME (VALUE_TYPE (newval)), var->name);
           TYPE_NAME (VALUE_TYPE (newval)), var->name);
 
 
  new_regval = *(long *) VALUE_CONTENTS_RAW (newval);
  new_regval = *(long *) VALUE_CONTENTS_RAW (newval);
 
 
  regnum = var->name + 1;
  regnum = var->name + 1;
 
 
  switch (var->name[2])
  switch (var->name[2])
    {
    {
    case 'c':
    case 'c':
      page_regnum = "cp";
      page_regnum = "cp";
      break;
      break;
    case '0':
    case '0':
    case '1':
    case '1':
    case '2':
    case '2':
    case '3':
    case '3':
      page_regnum = "dp";
      page_regnum = "dp";
      break;
      break;
    case '4':
    case '4':
    case '5':
    case '5':
      page_regnum = "ep";
      page_regnum = "ep";
      break;
      break;
    case '6':
    case '6':
    case '7':
    case '7':
      page_regnum = "tp";
      page_regnum = "tp";
      break;
      break;
    }
    }
 
 
  sprintf (expression, "$%s=%d", page_regnum, new_regval >> 16);
  sprintf (expression, "$%s=%d", page_regnum, new_regval >> 16);
  parse_and_eval (expression);
  parse_and_eval (expression);
 
 
  sprintf (expression, "$%s=%d", regnum, new_regval & 0xffff);
  sprintf (expression, "$%s=%d", regnum, new_regval & 0xffff);
  parse_and_eval (expression);
  parse_and_eval (expression);
}
}
 
 
CORE_ADDR
CORE_ADDR
h8500_read_sp ()
h8500_read_sp ()
{
{
  return read_register (PR7_REGNUM);
  return read_register (PR7_REGNUM);
}
}
 
 
void
void
h8500_write_sp (v)
h8500_write_sp (v)
     CORE_ADDR v;
     CORE_ADDR v;
{
{
  write_register (PR7_REGNUM, v);
  write_register (PR7_REGNUM, v);
}
}
 
 
CORE_ADDR
CORE_ADDR
h8500_read_pc (pid)
h8500_read_pc (pid)
     int pid;
     int pid;
{
{
  return read_register (PC_REGNUM);
  return read_register (PC_REGNUM);
}
}
 
 
void
void
h8500_write_pc (v, pid)
h8500_write_pc (v, pid)
     CORE_ADDR v;
     CORE_ADDR v;
     int pid;
     int pid;
{
{
  write_register (PC_REGNUM, v);
  write_register (PC_REGNUM, v);
}
}
 
 
CORE_ADDR
CORE_ADDR
h8500_read_fp ()
h8500_read_fp ()
{
{
  return read_register (PR6_REGNUM);
  return read_register (PR6_REGNUM);
}
}
 
 
void
void
h8500_write_fp (v)
h8500_write_fp (v)
     CORE_ADDR v;
     CORE_ADDR v;
{
{
  write_register (PR6_REGNUM, v);
  write_register (PR6_REGNUM, v);
}
}
 
 
void
void
_initialize_h8500_tdep ()
_initialize_h8500_tdep ()
{
{
  tm_print_insn = print_insn_h8500;
  tm_print_insn = print_insn_h8500;
 
 
  add_prefix_cmd ("memory", no_class, set_memory,
  add_prefix_cmd ("memory", no_class, set_memory,
                  "set the memory model", &setmemorylist, "set memory ", 0,
                  "set the memory model", &setmemorylist, "set memory ", 0,
                  &setlist);
                  &setlist);
 
 
  add_cmd ("small", class_support, small_command,
  add_cmd ("small", class_support, small_command,
      "Set small memory model. (16 bit code, 16 bit data)", &setmemorylist);
      "Set small memory model. (16 bit code, 16 bit data)", &setmemorylist);
 
 
  add_cmd ("big", class_support, big_command,
  add_cmd ("big", class_support, big_command,
        "Set big memory model. (32 bit code, 32 bit data)", &setmemorylist);
        "Set big memory model. (32 bit code, 32 bit data)", &setmemorylist);
 
 
  add_cmd ("medium", class_support, medium_command,
  add_cmd ("medium", class_support, medium_command,
     "Set medium memory model. (32 bit code, 16 bit data)", &setmemorylist);
     "Set medium memory model. (32 bit code, 16 bit data)", &setmemorylist);
 
 
  add_cmd ("compact", class_support, compact_command,
  add_cmd ("compact", class_support, compact_command,
    "Set compact memory model. (16 bit code, 32 bit data)", &setmemorylist);
    "Set compact memory model. (16 bit code, 32 bit data)", &setmemorylist);
 
 
}
}
 
 

powered by: WebSVN 2.1.0

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