2002-04-20 17:04:09 +00:00
|
|
|
/* Memory breakpoint operations for the remote server for GDB.
|
2008-01-01 22:53:26 +00:00
|
|
|
Copyright (C) 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
|
2002-04-20 17:04:09 +00:00
|
|
|
|
|
|
|
Contributed by MontaVista Software.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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
|
2007-08-23 18:08:50 +00:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-04-20 17:04:09 +00:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 18:08:50 +00:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2002-04-20 17:04:09 +00:00
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
|
* acconfig.h: Remove.
* configure.ac: Add a test for socklen_t. Use three-argument
AC_DEFINE throughout.
* config.in: Regenerated using autoheader 2.59.
* configure: Regenerated.
* gdbreplay.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
* remote-utils.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
(convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
unsigned char.
* i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
char for buffers.
* linux-low.c (linux_read_memory, linux_write_memory)
(linux_read_auxv): Likewise.
* mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
(check_mem_write): Likewise.
* mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
Likewise.
* regcache.c (struct inferior_rgcache_data, registers_to_string)
(registers_from_string, register_data): Likewise.
* server.c (handle_query, main): Likewise.
* server.h (convert_ascii_to_int, convert_int_to_ascii)
(decode_M_packet): Likewise.
* target.c (read_inferior_memory, write_inferior_memory): Likewise.
* target.h (struct target_ops): Update read_memory, write_memory,
and read_auxv.
(read_inferior_memory, write_inferior_memory): Update.
* linux-low.h (struct linux_target_ops): Change type of breakpoint
to unsigned char *.
* linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
linux-s390-low.c, linux-sh-low.c: Update for changes in
read_inferior_memory and the_low_target->breakpoint.
2005-06-13 01:59:22 +00:00
|
|
|
const unsigned char *breakpoint_data;
|
2002-04-20 17:04:09 +00:00
|
|
|
int breakpoint_len;
|
|
|
|
|
|
|
|
#define MAX_BREAKPOINT_LEN 8
|
|
|
|
|
|
|
|
struct breakpoint
|
|
|
|
{
|
|
|
|
struct breakpoint *next;
|
|
|
|
CORE_ADDR pc;
|
|
|
|
unsigned char old_data[MAX_BREAKPOINT_LEN];
|
|
|
|
|
|
|
|
/* Non-zero iff we are stepping over this breakpoint. */
|
|
|
|
int reinserting;
|
|
|
|
|
|
|
|
/* Non-NULL iff this breakpoint was inserted to step over
|
|
|
|
another one. Points to the other breakpoint (which is also
|
|
|
|
in the *next chain somewhere). */
|
|
|
|
struct breakpoint *breakpoint_to_reinsert;
|
|
|
|
|
2007-12-18 21:58:01 +00:00
|
|
|
/* Function to call when we hit this breakpoint. If it returns 1,
|
|
|
|
the breakpoint will be deleted; 0, it will be reinserted for
|
|
|
|
another round. */
|
|
|
|
int (*handler) (CORE_ADDR);
|
2002-04-20 17:04:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct breakpoint *breakpoints;
|
|
|
|
|
|
|
|
void
|
2007-12-18 21:58:01 +00:00
|
|
|
set_breakpoint_at (CORE_ADDR where, int (*handler) (CORE_ADDR))
|
2002-04-20 17:04:09 +00:00
|
|
|
{
|
|
|
|
struct breakpoint *bp;
|
|
|
|
|
|
|
|
if (breakpoint_data == NULL)
|
|
|
|
error ("Target does not support breakpoints.");
|
|
|
|
|
|
|
|
bp = malloc (sizeof (struct breakpoint));
|
|
|
|
memset (bp, 0, sizeof (struct breakpoint));
|
|
|
|
|
|
|
|
(*the_target->read_memory) (where, bp->old_data,
|
|
|
|
breakpoint_len);
|
|
|
|
(*the_target->write_memory) (where, breakpoint_data,
|
|
|
|
breakpoint_len);
|
|
|
|
|
|
|
|
bp->pc = where;
|
|
|
|
bp->handler = handler;
|
|
|
|
|
|
|
|
bp->next = breakpoints;
|
|
|
|
breakpoints = bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
delete_breakpoint (struct breakpoint *bp)
|
|
|
|
{
|
|
|
|
struct breakpoint *cur;
|
|
|
|
|
|
|
|
if (breakpoints == bp)
|
|
|
|
{
|
|
|
|
breakpoints = bp->next;
|
|
|
|
(*the_target->write_memory) (bp->pc, bp->old_data,
|
|
|
|
breakpoint_len);
|
|
|
|
free (bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cur = breakpoints;
|
|
|
|
while (cur->next)
|
|
|
|
{
|
|
|
|
if (cur->next == bp)
|
|
|
|
{
|
|
|
|
cur->next = bp->next;
|
|
|
|
(*the_target->write_memory) (bp->pc, bp->old_data,
|
|
|
|
breakpoint_len);
|
|
|
|
free (bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
warning ("Could not find breakpoint in list.");
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct breakpoint *
|
|
|
|
find_breakpoint_at (CORE_ADDR where)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp = breakpoints;
|
|
|
|
|
|
|
|
while (bp != NULL)
|
|
|
|
{
|
|
|
|
if (bp->pc == where)
|
|
|
|
return bp;
|
|
|
|
bp = bp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
gdb/
* arm-wince-tdep.c: New.
* config/arm/wince.mt (DEPRECATED_TM_FILE): Use tm-arm.h.
(MT_CFLAGS): Delete.
(TM_CLIBS): Delete.
(TDEPFILES): Add arm-wince-tdep.o, corelow.o, solib.o,
solib-legacy.o, solib-svr4.o, and remove wince.o.
* configure.tgt (arm*-*-mingw32ce*): Add.
* signals/signals.c [HAVE_SIGNAL_H]: Check.
(do_target_signal_to_host): Silence 'not used' warning.
* config/arm/tm-wince.h: Remove.
gdb/gdbserver/
* gdbserver/configure.ac: Add errno checking.
(AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
sys/file.h and malloc.h.
(AC_CHECK_DECLS): Add perror.
(srv_mingwce): Handle.
* gdbserver/configure.srv (i[34567]86-*-cygwin*): Add
win32-i386-low.o to srv_tgtobj.
(i[34567]86-*-mingw*): Likewise.
(arm*-*-mingw32ce*): Add case.
* gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
[__MINGW32CE__] (strerror): New function.
[__MINGW32CE__] (errno): Define to GetLastError.
[__MINGW32CE__] (COUNTOF): New macro.
(remote_open): Remove extra close call.
* mem-break.c (delete_breakpoint_at): New function.
* mem-break.h (delete_breakpoint_at): Declare.
* remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
[USE_WIN32API] (read, write): Add char* casts.
* server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
* server.h: Include wincecompat.h on Windows CE.
[HAVE_ERRNO_H]: Check.
(perror): Declare if not declared.
* utils.c: Add stdlib.h, errno.h and malloc.h includes.
(perror_with_name): Remove errno declaration.
* wincecompat.h: New.
* wincecompat.c: New.
* win32-low.h: New.
* win32-arm-low.c: New.
* win32-i386-low.c: New.
(win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
(OUTMSG2): Make it safe.
(_T): New macro.
(COUNTOF): New macro.
(NUM_REGS): Get it from the low target.
(CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
(thread_rec): Let low target handle debug registers.
(child_add_thread): Likewise.
(child_init_thread_list): Likewise.
(continue_one_thread): Likewise.
(regptr): New.
(do_child_fetch_inferior_registers): Move to ...
* win32-i386-low.c: ... here, and rename to ...
(do_fetch_inferior_registers): ... this.
* win32-low.c (child_fetch_inferior_registers):
Go through the low target.
(do_child_store_inferior_registers): Use regptr.
(strwinerror): New function.
(win32_create_inferior): Handle Windows CE.
Use strwinerror instead of strerror on Windows error
codes. Add program to the error output.
Don't close the main thread handle on Windows CE.
(win32_attach): Use coredll.dll on Windows CE.
(win32_kill): Close current process and current
thread handles.
(win32_detach): Use coredll.dll on Windows CE.
(win32_resume): Let low target handle debug registers, and
step request.
(handle_exception): Add/Remove initial breakpoint. Avoid
non-existant WSTOPSIG on Windows CE.
(win32_read_inferior_memory): Cast to remove warning.
(win32_arch_string): Go through the low target.
(initialize_low): Call set_breakpoint_data with the low
target's breakpoint.
* win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
FOP_REGNUM, mappings): Move to ...
* win32-i386-low.c: ... here.
* win32-low.c (win32_thread_info): Move to ...
* win32-low.h: ... here.
* Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
win32-arm-low.c and wincecompat.c.
(all:): Add $EXEEXT.
(install-only:): Likewise.
(gdbserver:): Likewise.
(gdbreplay:): Likewise.
* config.in: Regenerate.
* configure: Regenerate.
2007-03-29 01:06:48 +00:00
|
|
|
void
|
|
|
|
delete_breakpoint_at (CORE_ADDR addr)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp = find_breakpoint_at (addr);
|
|
|
|
if (bp != NULL)
|
|
|
|
delete_breakpoint (bp);
|
|
|
|
}
|
|
|
|
|
2007-12-18 21:58:01 +00:00
|
|
|
static int
|
2002-04-20 17:04:09 +00:00
|
|
|
reinsert_breakpoint_handler (CORE_ADDR stop_pc)
|
|
|
|
{
|
|
|
|
struct breakpoint *stop_bp, *orig_bp;
|
|
|
|
|
|
|
|
stop_bp = find_breakpoint_at (stop_pc);
|
|
|
|
if (stop_bp == NULL)
|
|
|
|
error ("lost the stopping breakpoint.");
|
|
|
|
|
|
|
|
orig_bp = stop_bp->breakpoint_to_reinsert;
|
|
|
|
if (orig_bp == NULL)
|
|
|
|
error ("no breakpoint to reinsert");
|
|
|
|
|
|
|
|
(*the_target->write_memory) (orig_bp->pc, breakpoint_data,
|
|
|
|
breakpoint_len);
|
|
|
|
orig_bp->reinserting = 0;
|
2007-12-18 21:58:01 +00:00
|
|
|
return 1;
|
2002-04-20 17:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
reinsert_breakpoint_by_bp (CORE_ADDR stop_pc, CORE_ADDR stop_at)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp, *orig_bp;
|
|
|
|
|
2002-05-15 03:36:13 +00:00
|
|
|
orig_bp = find_breakpoint_at (stop_pc);
|
2002-04-20 17:04:09 +00:00
|
|
|
if (orig_bp == NULL)
|
|
|
|
error ("Could not find original breakpoint in list.");
|
|
|
|
|
2007-12-18 21:58:01 +00:00
|
|
|
set_breakpoint_at (stop_at, reinsert_breakpoint_handler);
|
|
|
|
|
2002-04-20 17:04:09 +00:00
|
|
|
bp = find_breakpoint_at (stop_at);
|
|
|
|
if (bp == NULL)
|
|
|
|
error ("Could not find breakpoint in list (reinserting by breakpoint).");
|
|
|
|
bp->breakpoint_to_reinsert = orig_bp;
|
|
|
|
|
|
|
|
(*the_target->write_memory) (orig_bp->pc, orig_bp->old_data,
|
|
|
|
breakpoint_len);
|
|
|
|
orig_bp->reinserting = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uninsert_breakpoint (CORE_ADDR stopped_at)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp;
|
|
|
|
|
|
|
|
bp = find_breakpoint_at (stopped_at);
|
|
|
|
if (bp == NULL)
|
|
|
|
error ("Could not find breakpoint in list (uninserting).");
|
|
|
|
|
|
|
|
(*the_target->write_memory) (bp->pc, bp->old_data,
|
|
|
|
breakpoint_len);
|
|
|
|
bp->reinserting = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
reinsert_breakpoint (CORE_ADDR stopped_at)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp;
|
|
|
|
|
|
|
|
bp = find_breakpoint_at (stopped_at);
|
|
|
|
if (bp == NULL)
|
|
|
|
error ("Could not find breakpoint in list (uninserting).");
|
|
|
|
if (! bp->reinserting)
|
|
|
|
error ("Breakpoint already inserted at reinsert time.");
|
|
|
|
|
|
|
|
(*the_target->write_memory) (bp->pc, breakpoint_data,
|
|
|
|
breakpoint_len);
|
|
|
|
bp->reinserting = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
check_breakpoints (CORE_ADDR stop_pc)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp;
|
|
|
|
|
|
|
|
bp = find_breakpoint_at (stop_pc);
|
|
|
|
if (bp == NULL)
|
|
|
|
return 0;
|
|
|
|
if (bp->reinserting)
|
|
|
|
{
|
|
|
|
warning ("Hit a removed breakpoint?");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-18 21:58:01 +00:00
|
|
|
if ((*bp->handler) (bp->pc))
|
|
|
|
{
|
|
|
|
delete_breakpoint (bp);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 1;
|
2002-04-20 17:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* acconfig.h: Remove.
* configure.ac: Add a test for socklen_t. Use three-argument
AC_DEFINE throughout.
* config.in: Regenerated using autoheader 2.59.
* configure: Regenerated.
* gdbreplay.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
* remote-utils.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
(convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
unsigned char.
* i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
char for buffers.
* linux-low.c (linux_read_memory, linux_write_memory)
(linux_read_auxv): Likewise.
* mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
(check_mem_write): Likewise.
* mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
Likewise.
* regcache.c (struct inferior_rgcache_data, registers_to_string)
(registers_from_string, register_data): Likewise.
* server.c (handle_query, main): Likewise.
* server.h (convert_ascii_to_int, convert_int_to_ascii)
(decode_M_packet): Likewise.
* target.c (read_inferior_memory, write_inferior_memory): Likewise.
* target.h (struct target_ops): Update read_memory, write_memory,
and read_auxv.
(read_inferior_memory, write_inferior_memory): Update.
* linux-low.h (struct linux_target_ops): Change type of breakpoint
to unsigned char *.
* linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
linux-s390-low.c, linux-sh-low.c: Update for changes in
read_inferior_memory and the_low_target->breakpoint.
2005-06-13 01:59:22 +00:00
|
|
|
set_breakpoint_data (const unsigned char *bp_data, int bp_len)
|
2002-04-20 17:04:09 +00:00
|
|
|
{
|
|
|
|
breakpoint_data = bp_data;
|
|
|
|
breakpoint_len = bp_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* acconfig.h: Remove.
* configure.ac: Add a test for socklen_t. Use three-argument
AC_DEFINE throughout.
* config.in: Regenerated using autoheader 2.59.
* configure: Regenerated.
* gdbreplay.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
* remote-utils.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
(convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
unsigned char.
* i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
char for buffers.
* linux-low.c (linux_read_memory, linux_write_memory)
(linux_read_auxv): Likewise.
* mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
(check_mem_write): Likewise.
* mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
Likewise.
* regcache.c (struct inferior_rgcache_data, registers_to_string)
(registers_from_string, register_data): Likewise.
* server.c (handle_query, main): Likewise.
* server.h (convert_ascii_to_int, convert_int_to_ascii)
(decode_M_packet): Likewise.
* target.c (read_inferior_memory, write_inferior_memory): Likewise.
* target.h (struct target_ops): Update read_memory, write_memory,
and read_auxv.
(read_inferior_memory, write_inferior_memory): Update.
* linux-low.h (struct linux_target_ops): Change type of breakpoint
to unsigned char *.
* linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
linux-s390-low.c, linux-sh-low.c: Update for changes in
read_inferior_memory and the_low_target->breakpoint.
2005-06-13 01:59:22 +00:00
|
|
|
check_mem_read (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
|
2002-04-20 17:04:09 +00:00
|
|
|
{
|
|
|
|
struct breakpoint *bp = breakpoints;
|
|
|
|
CORE_ADDR mem_end = mem_addr + mem_len;
|
|
|
|
|
|
|
|
for (; bp != NULL; bp = bp->next)
|
|
|
|
{
|
|
|
|
CORE_ADDR bp_end = bp->pc + breakpoint_len;
|
|
|
|
CORE_ADDR start, end;
|
|
|
|
int copy_offset, copy_len, buf_offset;
|
|
|
|
|
|
|
|
if (mem_addr >= bp_end)
|
|
|
|
continue;
|
|
|
|
if (bp->pc >= mem_end)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
start = bp->pc;
|
|
|
|
if (mem_addr > start)
|
|
|
|
start = mem_addr;
|
|
|
|
|
|
|
|
end = bp_end;
|
|
|
|
if (end > mem_end)
|
|
|
|
end = mem_end;
|
|
|
|
|
|
|
|
copy_len = end - start;
|
|
|
|
copy_offset = start - bp->pc;
|
|
|
|
buf_offset = start - mem_addr;
|
|
|
|
|
|
|
|
memcpy (buf + buf_offset, bp->old_data + copy_offset, copy_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* acconfig.h: Remove.
* configure.ac: Add a test for socklen_t. Use three-argument
AC_DEFINE throughout.
* config.in: Regenerated using autoheader 2.59.
* configure: Regenerated.
* gdbreplay.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
* remote-utils.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
(convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
unsigned char.
* i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
char for buffers.
* linux-low.c (linux_read_memory, linux_write_memory)
(linux_read_auxv): Likewise.
* mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
(check_mem_write): Likewise.
* mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
Likewise.
* regcache.c (struct inferior_rgcache_data, registers_to_string)
(registers_from_string, register_data): Likewise.
* server.c (handle_query, main): Likewise.
* server.h (convert_ascii_to_int, convert_int_to_ascii)
(decode_M_packet): Likewise.
* target.c (read_inferior_memory, write_inferior_memory): Likewise.
* target.h (struct target_ops): Update read_memory, write_memory,
and read_auxv.
(read_inferior_memory, write_inferior_memory): Update.
* linux-low.h (struct linux_target_ops): Change type of breakpoint
to unsigned char *.
* linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
linux-s390-low.c, linux-sh-low.c: Update for changes in
read_inferior_memory and the_low_target->breakpoint.
2005-06-13 01:59:22 +00:00
|
|
|
check_mem_write (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
|
2002-04-20 17:04:09 +00:00
|
|
|
{
|
|
|
|
struct breakpoint *bp = breakpoints;
|
|
|
|
CORE_ADDR mem_end = mem_addr + mem_len;
|
|
|
|
|
|
|
|
for (; bp != NULL; bp = bp->next)
|
|
|
|
{
|
|
|
|
CORE_ADDR bp_end = bp->pc + breakpoint_len;
|
|
|
|
CORE_ADDR start, end;
|
|
|
|
int copy_offset, copy_len, buf_offset;
|
|
|
|
|
|
|
|
if (mem_addr >= bp_end)
|
|
|
|
continue;
|
|
|
|
if (bp->pc >= mem_end)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
start = bp->pc;
|
|
|
|
if (mem_addr > start)
|
|
|
|
start = mem_addr;
|
|
|
|
|
|
|
|
end = bp_end;
|
|
|
|
if (end > mem_end)
|
|
|
|
end = mem_end;
|
|
|
|
|
|
|
|
copy_len = end - start;
|
|
|
|
copy_offset = start - bp->pc;
|
|
|
|
buf_offset = start - mem_addr;
|
|
|
|
|
|
|
|
memcpy (bp->old_data + copy_offset, buf + buf_offset, copy_len);
|
|
|
|
if (bp->reinserting == 0)
|
|
|
|
memcpy (buf + buf_offset, breakpoint_data + copy_offset, copy_len);
|
|
|
|
}
|
|
|
|
}
|
2007-07-02 15:35:36 +00:00
|
|
|
|
|
|
|
/* Delete all breakpoints. */
|
|
|
|
|
|
|
|
void
|
|
|
|
delete_all_breakpoints (void)
|
|
|
|
{
|
|
|
|
while (breakpoints)
|
|
|
|
delete_breakpoint (breakpoints);
|
|
|
|
}
|