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/] [gdb/] [gdbserver/] [mem-break.c] - Diff between revs 24 and 33

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
/* Memory breakpoint operations for the remote server for GDB.
/* Memory breakpoint operations for the remote server for GDB.
   Copyright (C) 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
 
 
   Contributed by MontaVista Software.
   Contributed by MontaVista Software.
 
 
   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 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/>.  */
 
 
#include "server.h"
#include "server.h"
 
 
const unsigned char *breakpoint_data;
const unsigned char *breakpoint_data;
int breakpoint_len;
int breakpoint_len;
 
 
#define MAX_BREAKPOINT_LEN 8
#define MAX_BREAKPOINT_LEN 8
 
 
struct breakpoint
struct breakpoint
{
{
  struct breakpoint *next;
  struct breakpoint *next;
  CORE_ADDR pc;
  CORE_ADDR pc;
  unsigned char old_data[MAX_BREAKPOINT_LEN];
  unsigned char old_data[MAX_BREAKPOINT_LEN];
 
 
  /* Non-zero iff we are stepping over this breakpoint.  */
  /* Non-zero iff we are stepping over this breakpoint.  */
  int reinserting;
  int reinserting;
 
 
  /* Non-NULL iff this breakpoint was inserted to step over
  /* Non-NULL iff this breakpoint was inserted to step over
     another one.  Points to the other breakpoint (which is also
     another one.  Points to the other breakpoint (which is also
     in the *next chain somewhere).  */
     in the *next chain somewhere).  */
  struct breakpoint *breakpoint_to_reinsert;
  struct breakpoint *breakpoint_to_reinsert;
 
 
  /* Function to call when we hit this breakpoint.  If it returns 1,
  /* Function to call when we hit this breakpoint.  If it returns 1,
     the breakpoint will be deleted; 0, it will be reinserted for
     the breakpoint will be deleted; 0, it will be reinserted for
     another round.  */
     another round.  */
  int (*handler) (CORE_ADDR);
  int (*handler) (CORE_ADDR);
};
};
 
 
struct breakpoint *breakpoints;
struct breakpoint *breakpoints;
 
 
void
void
set_breakpoint_at (CORE_ADDR where, int (*handler) (CORE_ADDR))
set_breakpoint_at (CORE_ADDR where, int (*handler) (CORE_ADDR))
{
{
  struct breakpoint *bp;
  struct breakpoint *bp;
 
 
  if (breakpoint_data == NULL)
  if (breakpoint_data == NULL)
    error ("Target does not support breakpoints.");
    error ("Target does not support breakpoints.");
 
 
  bp = malloc (sizeof (struct breakpoint));
  bp = malloc (sizeof (struct breakpoint));
  memset (bp, 0, sizeof (struct breakpoint));
  memset (bp, 0, sizeof (struct breakpoint));
 
 
  (*the_target->read_memory) (where, bp->old_data,
  (*the_target->read_memory) (where, bp->old_data,
                              breakpoint_len);
                              breakpoint_len);
  (*the_target->write_memory) (where, breakpoint_data,
  (*the_target->write_memory) (where, breakpoint_data,
                               breakpoint_len);
                               breakpoint_len);
 
 
  bp->pc = where;
  bp->pc = where;
  bp->handler = handler;
  bp->handler = handler;
 
 
  bp->next = breakpoints;
  bp->next = breakpoints;
  breakpoints = bp;
  breakpoints = bp;
}
}
 
 
static void
static void
delete_breakpoint (struct breakpoint *bp)
delete_breakpoint (struct breakpoint *bp)
{
{
  struct breakpoint *cur;
  struct breakpoint *cur;
 
 
  if (breakpoints == bp)
  if (breakpoints == bp)
    {
    {
      breakpoints = bp->next;
      breakpoints = bp->next;
      (*the_target->write_memory) (bp->pc, bp->old_data,
      (*the_target->write_memory) (bp->pc, bp->old_data,
                                   breakpoint_len);
                                   breakpoint_len);
      free (bp);
      free (bp);
      return;
      return;
    }
    }
  cur = breakpoints;
  cur = breakpoints;
  while (cur->next)
  while (cur->next)
    {
    {
      if (cur->next == bp)
      if (cur->next == bp)
        {
        {
          cur->next = bp->next;
          cur->next = bp->next;
          (*the_target->write_memory) (bp->pc, bp->old_data,
          (*the_target->write_memory) (bp->pc, bp->old_data,
                                       breakpoint_len);
                                       breakpoint_len);
          free (bp);
          free (bp);
          return;
          return;
        }
        }
    }
    }
  warning ("Could not find breakpoint in list.");
  warning ("Could not find breakpoint in list.");
}
}
 
 
static struct breakpoint *
static struct breakpoint *
find_breakpoint_at (CORE_ADDR where)
find_breakpoint_at (CORE_ADDR where)
{
{
  struct breakpoint *bp = breakpoints;
  struct breakpoint *bp = breakpoints;
 
 
  while (bp != NULL)
  while (bp != NULL)
    {
    {
      if (bp->pc == where)
      if (bp->pc == where)
        return bp;
        return bp;
      bp = bp->next;
      bp = bp->next;
    }
    }
 
 
  return NULL;
  return NULL;
}
}
 
 
void
void
delete_breakpoint_at (CORE_ADDR addr)
delete_breakpoint_at (CORE_ADDR addr)
{
{
  struct breakpoint *bp = find_breakpoint_at (addr);
  struct breakpoint *bp = find_breakpoint_at (addr);
  if (bp != NULL)
  if (bp != NULL)
    delete_breakpoint (bp);
    delete_breakpoint (bp);
}
}
 
 
static int
static int
reinsert_breakpoint_handler (CORE_ADDR stop_pc)
reinsert_breakpoint_handler (CORE_ADDR stop_pc)
{
{
  struct breakpoint *stop_bp, *orig_bp;
  struct breakpoint *stop_bp, *orig_bp;
 
 
  stop_bp = find_breakpoint_at (stop_pc);
  stop_bp = find_breakpoint_at (stop_pc);
  if (stop_bp == NULL)
  if (stop_bp == NULL)
    error ("lost the stopping breakpoint.");
    error ("lost the stopping breakpoint.");
 
 
  orig_bp = stop_bp->breakpoint_to_reinsert;
  orig_bp = stop_bp->breakpoint_to_reinsert;
  if (orig_bp == NULL)
  if (orig_bp == NULL)
    error ("no breakpoint to reinsert");
    error ("no breakpoint to reinsert");
 
 
  (*the_target->write_memory) (orig_bp->pc, breakpoint_data,
  (*the_target->write_memory) (orig_bp->pc, breakpoint_data,
                               breakpoint_len);
                               breakpoint_len);
  orig_bp->reinserting = 0;
  orig_bp->reinserting = 0;
  return 1;
  return 1;
}
}
 
 
void
void
reinsert_breakpoint_by_bp (CORE_ADDR stop_pc, CORE_ADDR stop_at)
reinsert_breakpoint_by_bp (CORE_ADDR stop_pc, CORE_ADDR stop_at)
{
{
  struct breakpoint *bp, *orig_bp;
  struct breakpoint *bp, *orig_bp;
 
 
  orig_bp = find_breakpoint_at (stop_pc);
  orig_bp = find_breakpoint_at (stop_pc);
  if (orig_bp == NULL)
  if (orig_bp == NULL)
    error ("Could not find original breakpoint in list.");
    error ("Could not find original breakpoint in list.");
 
 
  set_breakpoint_at (stop_at, reinsert_breakpoint_handler);
  set_breakpoint_at (stop_at, reinsert_breakpoint_handler);
 
 
  bp = find_breakpoint_at (stop_at);
  bp = find_breakpoint_at (stop_at);
  if (bp == NULL)
  if (bp == NULL)
    error ("Could not find breakpoint in list (reinserting by breakpoint).");
    error ("Could not find breakpoint in list (reinserting by breakpoint).");
  bp->breakpoint_to_reinsert = orig_bp;
  bp->breakpoint_to_reinsert = orig_bp;
 
 
  (*the_target->write_memory) (orig_bp->pc, orig_bp->old_data,
  (*the_target->write_memory) (orig_bp->pc, orig_bp->old_data,
                               breakpoint_len);
                               breakpoint_len);
  orig_bp->reinserting = 1;
  orig_bp->reinserting = 1;
}
}
 
 
void
void
uninsert_breakpoint (CORE_ADDR stopped_at)
uninsert_breakpoint (CORE_ADDR stopped_at)
{
{
  struct breakpoint *bp;
  struct breakpoint *bp;
 
 
  bp = find_breakpoint_at (stopped_at);
  bp = find_breakpoint_at (stopped_at);
  if (bp == NULL)
  if (bp == NULL)
    error ("Could not find breakpoint in list (uninserting).");
    error ("Could not find breakpoint in list (uninserting).");
 
 
  (*the_target->write_memory) (bp->pc, bp->old_data,
  (*the_target->write_memory) (bp->pc, bp->old_data,
                               breakpoint_len);
                               breakpoint_len);
  bp->reinserting = 1;
  bp->reinserting = 1;
}
}
 
 
void
void
reinsert_breakpoint (CORE_ADDR stopped_at)
reinsert_breakpoint (CORE_ADDR stopped_at)
{
{
  struct breakpoint *bp;
  struct breakpoint *bp;
 
 
  bp = find_breakpoint_at (stopped_at);
  bp = find_breakpoint_at (stopped_at);
  if (bp == NULL)
  if (bp == NULL)
    error ("Could not find breakpoint in list (uninserting).");
    error ("Could not find breakpoint in list (uninserting).");
  if (! bp->reinserting)
  if (! bp->reinserting)
    error ("Breakpoint already inserted at reinsert time.");
    error ("Breakpoint already inserted at reinsert time.");
 
 
  (*the_target->write_memory) (bp->pc, breakpoint_data,
  (*the_target->write_memory) (bp->pc, breakpoint_data,
                               breakpoint_len);
                               breakpoint_len);
  bp->reinserting = 0;
  bp->reinserting = 0;
}
}
 
 
int
int
check_breakpoints (CORE_ADDR stop_pc)
check_breakpoints (CORE_ADDR stop_pc)
{
{
  struct breakpoint *bp;
  struct breakpoint *bp;
 
 
  bp = find_breakpoint_at (stop_pc);
  bp = find_breakpoint_at (stop_pc);
  if (bp == NULL)
  if (bp == NULL)
    return 0;
    return 0;
  if (bp->reinserting)
  if (bp->reinserting)
    {
    {
      warning ("Hit a removed breakpoint?");
      warning ("Hit a removed breakpoint?");
      return 0;
      return 0;
    }
    }
 
 
  if ((*bp->handler) (bp->pc))
  if ((*bp->handler) (bp->pc))
    {
    {
      delete_breakpoint (bp);
      delete_breakpoint (bp);
      return 2;
      return 2;
    }
    }
  else
  else
    return 1;
    return 1;
}
}
 
 
void
void
set_breakpoint_data (const unsigned char *bp_data, int bp_len)
set_breakpoint_data (const unsigned char *bp_data, int bp_len)
{
{
  breakpoint_data = bp_data;
  breakpoint_data = bp_data;
  breakpoint_len = bp_len;
  breakpoint_len = bp_len;
}
}
 
 
void
void
check_mem_read (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
check_mem_read (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
{
{
  struct breakpoint *bp = breakpoints;
  struct breakpoint *bp = breakpoints;
  CORE_ADDR mem_end = mem_addr + mem_len;
  CORE_ADDR mem_end = mem_addr + mem_len;
 
 
  for (; bp != NULL; bp = bp->next)
  for (; bp != NULL; bp = bp->next)
    {
    {
      CORE_ADDR bp_end = bp->pc + breakpoint_len;
      CORE_ADDR bp_end = bp->pc + breakpoint_len;
      CORE_ADDR start, end;
      CORE_ADDR start, end;
      int copy_offset, copy_len, buf_offset;
      int copy_offset, copy_len, buf_offset;
 
 
      if (mem_addr >= bp_end)
      if (mem_addr >= bp_end)
        continue;
        continue;
      if (bp->pc >= mem_end)
      if (bp->pc >= mem_end)
        continue;
        continue;
 
 
      start = bp->pc;
      start = bp->pc;
      if (mem_addr > start)
      if (mem_addr > start)
        start = mem_addr;
        start = mem_addr;
 
 
      end = bp_end;
      end = bp_end;
      if (end > mem_end)
      if (end > mem_end)
        end = mem_end;
        end = mem_end;
 
 
      copy_len = end - start;
      copy_len = end - start;
      copy_offset = start - bp->pc;
      copy_offset = start - bp->pc;
      buf_offset = start - mem_addr;
      buf_offset = start - mem_addr;
 
 
      memcpy (buf + buf_offset, bp->old_data + copy_offset, copy_len);
      memcpy (buf + buf_offset, bp->old_data + copy_offset, copy_len);
    }
    }
}
}
 
 
void
void
check_mem_write (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
check_mem_write (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
{
{
  struct breakpoint *bp = breakpoints;
  struct breakpoint *bp = breakpoints;
  CORE_ADDR mem_end = mem_addr + mem_len;
  CORE_ADDR mem_end = mem_addr + mem_len;
 
 
  for (; bp != NULL; bp = bp->next)
  for (; bp != NULL; bp = bp->next)
    {
    {
      CORE_ADDR bp_end = bp->pc + breakpoint_len;
      CORE_ADDR bp_end = bp->pc + breakpoint_len;
      CORE_ADDR start, end;
      CORE_ADDR start, end;
      int copy_offset, copy_len, buf_offset;
      int copy_offset, copy_len, buf_offset;
 
 
      if (mem_addr >= bp_end)
      if (mem_addr >= bp_end)
        continue;
        continue;
      if (bp->pc >= mem_end)
      if (bp->pc >= mem_end)
        continue;
        continue;
 
 
      start = bp->pc;
      start = bp->pc;
      if (mem_addr > start)
      if (mem_addr > start)
        start = mem_addr;
        start = mem_addr;
 
 
      end = bp_end;
      end = bp_end;
      if (end > mem_end)
      if (end > mem_end)
        end = mem_end;
        end = mem_end;
 
 
      copy_len = end - start;
      copy_len = end - start;
      copy_offset = start - bp->pc;
      copy_offset = start - bp->pc;
      buf_offset = start - mem_addr;
      buf_offset = start - mem_addr;
 
 
      memcpy (bp->old_data + copy_offset, buf + buf_offset, copy_len);
      memcpy (bp->old_data + copy_offset, buf + buf_offset, copy_len);
      if (bp->reinserting == 0)
      if (bp->reinserting == 0)
        memcpy (buf + buf_offset, breakpoint_data + copy_offset, copy_len);
        memcpy (buf + buf_offset, breakpoint_data + copy_offset, copy_len);
    }
    }
}
}
 
 
/* Delete all breakpoints.  */
/* Delete all breakpoints.  */
 
 
void
void
delete_all_breakpoints (void)
delete_all_breakpoints (void)
{
{
  while (breakpoints)
  while (breakpoints)
    delete_breakpoint (breakpoints);
    delete_breakpoint (breakpoints);
}
}
 
 

powered by: WebSVN 2.1.0

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