2012-11-09 18:03:10 +00:00
|
|
|
http://sourceware.org/ml/gdb-patches/2012-09/msg00629.html
|
|
|
|
Subject: [PATCH 3/4] Expand watchpoint lengths to LONGEST
|
|
|
|
|
|
|
|
|
|
|
|
--MP_/6HRlH6vpyqtSy4CYyMrX6b2
|
|
|
|
Content-Type: text/plain; charset=US-ASCII
|
|
|
|
Content-Transfer-Encoding: 7bit
|
|
|
|
Content-Disposition: inline
|
|
|
|
|
|
|
|
Hi,
|
|
|
|
|
|
|
|
This is part three of the bitpos expansion change. Some architectures
|
|
|
|
allow arbitrary length watchpoints and combined with the fact that type
|
|
|
|
lengths could be large enough, we need LONGEST for watchpoint lengths.
|
|
|
|
It is architecture dependent however, whether the LONGEST is needed or
|
|
|
|
not. This patch updates the signatures of watchpoint insertion and
|
|
|
|
removal functions of all architectures (to comply with the function
|
|
|
|
signatures in the callback struct), but expands types only in
|
|
|
|
architectures that need it. Tested on Fedora 16 x86_64.
|
|
|
|
|
|
|
|
Regards,
|
|
|
|
Siddhesh
|
|
|
|
--MP_/6HRlH6vpyqtSy4CYyMrX6b2
|
|
|
|
Content-Type: text/plain
|
|
|
|
Content-Transfer-Encoding: quoted-printable
|
|
|
|
Content-Disposition: attachment; filename=ChangeLog-wp
|
|
|
|
|
|
|
|
gdb/ChangeLog:
|
|
|
|
|
|
|
|
* arm-linux-nat.c (arm_linux_insert_watchpoint): Expand
|
|
|
|
parameter LEN to LONGEST.
|
|
|
|
(arm_linux_remove_watchpoint): Likewise.
|
|
|
|
(arm_linux_watchpoint_addr_within_range): Expand parameter
|
|
|
|
LENGTH to LONGEST.
|
|
|
|
* i386-nat.c (i386_insert_watchpoint): Expand parameter LEN to
|
|
|
|
LONGEST.
|
|
|
|
(i386_remove_watchpoint): Likewise.
|
|
|
|
* ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
|
|
|
|
(ia64_linux_remove_watchpoint): Likewise.
|
|
|
|
* inf-ttrace.c (inf_ttrace_insert_watchpoint): Likewise.
|
|
|
|
Expand NUM_PAGES, PAGE to LONGEST.
|
|
|
|
(inf_ttrace_remove_watchpoint): Likewise.
|
|
|
|
* mips-linux-nat.c (mips_linux_insert_watchpoint): Expand
|
|
|
|
parameter LEN to LONGEST.
|
|
|
|
(mips_linux_remove_watchpoint): Likewise.
|
|
|
|
* nto-procfs.c (procfs_remove_hw_watchpoint): Likewise.
|
|
|
|
(procfs_insert_hw_watchpoint): Likewise.
|
|
|
|
* ppc-linux-nat.c (calculate_dvc): Likewise. Expand I,
|
|
|
|
NUM_BYTE_ENABLE to LONGEST.
|
|
|
|
(check_condition): Expand parameter LEN to point to LONGEST.
|
|
|
|
(ppc_linux_can_accel_watchpoint_condition): Expand parameter
|
|
|
|
LEN to LONGEST.
|
|
|
|
(create_watchpoint_request): Likewise.
|
|
|
|
(ppc_linux_insert_watchpoint): Likewise.
|
|
|
|
(ppc_linux_remove_watchpoint): Likewise.
|
|
|
|
(ppc_linux_watchpoint_addr_within_range): Expand parameter
|
|
|
|
LENGTH to LONGEST.
|
|
|
|
* procfs.c (proc_set_watchpoint): Expand parameter LEN to
|
|
|
|
LONGEST.
|
|
|
|
(procfs_set_watchpoint): Likewise.
|
|
|
|
(procfs_insert_watchpoint): Likewise.
|
|
|
|
(procfs_remove_watchpoint): Likewise.
|
|
|
|
* remote-m32r-sdi.c (m32r_insert_watchpoint): Likewise. Use
|
|
|
|
plongest to format print LEN.
|
|
|
|
(m32r_remove_watchpoint): Likewise.
|
|
|
|
* remote-mips.c (mips_insert_watchpoint): Expand parameter LEN
|
|
|
|
to LONGEST.
|
|
|
|
(mips_remove_watchpoint): Likewise.
|
|
|
|
* remote.c (remote_insert_watchpoint): Likewise.
|
|
|
|
Use phex_nz to format print LEN.
|
|
|
|
(remote_remove_watchpoint): Likewise.
|
|
|
|
(remote_watchpoint_addr_within_range): Expand parameter LENGTH
|
|
|
|
to LONGEST.
|
2014-02-07 18:38:14 +00:00
|
|
|
* s390-linux-nat.c (s390_insert_watchpoint): Expand parameter LEN to
|
2012-11-09 18:03:10 +00:00
|
|
|
LONGEST.
|
|
|
|
(s390_remove_watchpoint): Likewise.
|
|
|
|
* target.c (update_current_target): Expand parameter LEN for
|
|
|
|
callbacks to TO_INSERT_WATCHPOINT, TO_REMOVE_WATCHPOINT,
|
|
|
|
TO_CAN_ACCEL_WATCHPOINT_CONDITION, to LONGEST.
|
|
|
|
(default_watchpoint_addr_within_range): Expand parameter
|
|
|
|
LENGTH to LONGEST.
|
|
|
|
(debug_to_can_accel_watchpoint_condition): Expand parameter LEN
|
|
|
|
to LONGEST. Use plongest to format print LEN.
|
|
|
|
(debug_to_watchpoint_addr_within_range): Expand parameter LENGTH
|
|
|
|
to LONGEST. Use plongest to format print LENGTH.
|
|
|
|
(debug_to_insert_watchpoint): Expand parameter LEN to LONGEST.
|
|
|
|
Use plongest to format print LEN.
|
|
|
|
(debug_to_remove_watchpoint): Likewise.
|
|
|
|
* target.h (struct target_ops): Expand parameter LEN of
|
|
|
|
TO_REMOVE_WATCHPOINT, TO_INSERT_WATCHPOINT,
|
|
|
|
TO_WATCHPOINT_ADDR_WITHIN_RANGE and
|
|
|
|
TO_CAN_ACCEL_WATCHPOINT_CONDITION to LONGEST.
|
|
|
|
|
|
|
|
--MP_/6HRlH6vpyqtSy4CYyMrX6b2
|
|
|
|
Content-Type: text/x-patch
|
|
|
|
Content-Transfer-Encoding: 7bit
|
|
|
|
Content-Disposition: attachment; filename=bitpos-wp.patch
|
|
|
|
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/arm-linux-nat.c
|
2013-01-19 22:41:55 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/arm-linux-nat.c 2015-01-05 22:10:30.170726774 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/arm-linux-nat.c 2015-01-05 22:10:35.571751324 +0100
|
|
|
|
@@ -1295,7 +1295,7 @@ arm_linux_stopped_by_watchpoint (struct
|
2012-11-09 18:03:10 +00:00
|
|
|
static int
|
|
|
|
arm_linux_watchpoint_addr_within_range (struct target_ops *target,
|
|
|
|
CORE_ADDR addr,
|
|
|
|
- CORE_ADDR start, int length)
|
|
|
|
+ CORE_ADDR start, LONGEST length)
|
|
|
|
{
|
|
|
|
return start <= addr && start + length - 1 >= addr;
|
|
|
|
}
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/ppc-linux-nat.c
|
2013-01-19 22:41:55 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/ppc-linux-nat.c 2015-01-05 22:10:30.171726779 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/ppc-linux-nat.c 2015-01-05 22:10:35.572751329 +0100
|
|
|
|
@@ -1860,11 +1860,11 @@ can_use_watchpoint_cond_accel (void)
|
2012-11-09 18:03:10 +00:00
|
|
|
CONDITION_VALUE will hold the value which should be put in the
|
|
|
|
DVC register. */
|
|
|
|
static void
|
|
|
|
-calculate_dvc (CORE_ADDR addr, int len, CORE_ADDR data_value,
|
|
|
|
+calculate_dvc (CORE_ADDR addr, LONGEST len, CORE_ADDR data_value,
|
|
|
|
uint32_t *condition_mode, uint64_t *condition_value)
|
|
|
|
{
|
|
|
|
- int i, num_byte_enable, align_offset, num_bytes_off_dvc,
|
|
|
|
- rightmost_enabled_byte;
|
|
|
|
+ LONGEST i, num_byte_enable;
|
|
|
|
+ int align_offset, num_bytes_off_dvc, rightmost_enabled_byte;
|
|
|
|
CORE_ADDR addr_end_data, addr_end_dvc;
|
|
|
|
|
|
|
|
/* The DVC register compares bytes within fixed-length windows which
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -1951,7 +1951,7 @@ num_memory_accesses (struct value *v)
|
2012-11-09 18:03:10 +00:00
|
|
|
of the constant. */
|
|
|
|
static int
|
|
|
|
check_condition (CORE_ADDR watch_addr, struct expression *cond,
|
|
|
|
- CORE_ADDR *data_value, int *len)
|
|
|
|
+ CORE_ADDR *data_value, LONGEST *len)
|
|
|
|
{
|
|
|
|
int pc = 1, num_accesses_left, num_accesses_right;
|
|
|
|
struct value *left_val, *right_val, *left_chain, *right_chain;
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -2019,7 +2019,7 @@ check_condition (CORE_ADDR watch_addr, s
|
2014-08-02 10:58:20 +00:00
|
|
|
true. */
|
|
|
|
static int
|
|
|
|
ppc_linux_can_accel_watchpoint_condition (struct target_ops *self,
|
|
|
|
- CORE_ADDR addr, int len, int rw,
|
|
|
|
+ CORE_ADDR addr, LONGEST len, int rw,
|
|
|
|
struct expression *cond)
|
|
|
|
{
|
|
|
|
CORE_ADDR data_value;
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -2036,7 +2036,7 @@ ppc_linux_can_accel_watchpoint_condition
|
2012-11-09 18:03:10 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
create_watchpoint_request (struct ppc_hw_breakpoint *p, CORE_ADDR addr,
|
|
|
|
- int len, int rw, struct expression *cond,
|
|
|
|
+ LONGEST len, int rw, struct expression *cond,
|
|
|
|
int insert)
|
|
|
|
{
|
|
|
|
if (len == 1
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -2302,7 +2302,7 @@ ppc_linux_stopped_by_watchpoint (struct
|
2012-11-09 18:03:10 +00:00
|
|
|
static int
|
|
|
|
ppc_linux_watchpoint_addr_within_range (struct target_ops *target,
|
|
|
|
CORE_ADDR addr,
|
|
|
|
- CORE_ADDR start, int length)
|
|
|
|
+ CORE_ADDR start, LONGEST length)
|
|
|
|
{
|
|
|
|
int mask;
|
|
|
|
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/procfs.c
|
2013-01-19 22:41:55 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/procfs.c 2015-01-05 22:10:30.172726783 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/procfs.c 2015-01-05 22:10:35.573751333 +0100
|
|
|
|
@@ -2426,7 +2426,7 @@ procfs_address_to_host_pointer (CORE_ADD
|
2012-11-09 18:03:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static int
|
|
|
|
-proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, int len, int wflags)
|
|
|
|
+proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, LONGEST len, int wflags)
|
|
|
|
{
|
|
|
|
#if !defined (PCWATCH) && !defined (PIOCSWATCH)
|
|
|
|
/* If neither or these is defined, we can't support watchpoints.
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -4705,7 +4705,7 @@ procfs_pid_to_str (struct target_ops *op
|
2012-11-09 18:03:10 +00:00
|
|
|
/* Insert a watchpoint. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
-procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, int len, int rwflag,
|
|
|
|
+procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, LONGEST len, int rwflag,
|
|
|
|
int after)
|
|
|
|
{
|
2013-01-19 22:41:55 +00:00
|
|
|
#ifndef AIX5
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/remote.c
|
2013-01-19 22:41:55 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/remote.c 2015-01-05 22:10:30.174726792 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/remote.c 2015-01-05 22:10:35.574751338 +0100
|
|
|
|
@@ -8298,7 +8298,7 @@ remote_insert_watchpoint (struct target_
|
2012-11-09 18:03:10 +00:00
|
|
|
p = strchr (rs->buf, '\0');
|
|
|
|
addr = remote_address_masked (addr);
|
|
|
|
p += hexnumstr (p, (ULONGEST) addr);
|
|
|
|
- xsnprintf (p, endbuf - p, ",%x", len);
|
|
|
|
+ xsnprintf (p, endbuf - p, ",%s", phex_nz (len, sizeof (len)));
|
|
|
|
|
|
|
|
putpkt (rs->buf);
|
|
|
|
getpkt (&rs->buf, &rs->buf_size, 0);
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -8318,7 +8318,7 @@ remote_insert_watchpoint (struct target_
|
2012-11-09 18:03:10 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
|
|
|
|
- CORE_ADDR start, int length)
|
|
|
|
+ CORE_ADDR start, LONGEST length)
|
|
|
|
{
|
|
|
|
CORE_ADDR diff = remote_address_masked (addr - start);
|
|
|
|
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -8348,7 +8348,7 @@ remote_remove_watchpoint (struct target_
|
2012-11-09 18:03:10 +00:00
|
|
|
p = strchr (rs->buf, '\0');
|
|
|
|
addr = remote_address_masked (addr);
|
|
|
|
p += hexnumstr (p, (ULONGEST) addr);
|
|
|
|
- xsnprintf (p, endbuf - p, ",%x", len);
|
|
|
|
+ xsnprintf (p, endbuf - p, ",%s", phex_nz (len, sizeof (len)));
|
|
|
|
putpkt (rs->buf);
|
|
|
|
getpkt (&rs->buf, &rs->buf_size, 0);
|
|
|
|
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/target.c
|
2013-01-19 22:41:55 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/target.c 2015-01-05 22:10:30.175726797 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/target.c 2015-01-05 22:10:35.575751342 +0100
|
|
|
|
@@ -51,7 +51,7 @@ static void generic_tls_error (void) ATT
|
2014-06-19 20:14:32 +00:00
|
|
|
static void default_terminal_info (struct target_ops *, const char *, int);
|
2012-11-09 18:03:10 +00:00
|
|
|
|
|
|
|
static int default_watchpoint_addr_within_range (struct target_ops *,
|
|
|
|
- CORE_ADDR, CORE_ADDR, int);
|
2013-08-02 20:26:03 +00:00
|
|
|
+ CORE_ADDR, CORE_ADDR, LONGEST);
|
2012-11-09 18:03:10 +00:00
|
|
|
|
2014-06-19 20:14:32 +00:00
|
|
|
static int default_region_ok_for_hw_watchpoint (struct target_ops *,
|
|
|
|
CORE_ADDR, LONGEST);
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -2983,7 +2983,7 @@ default_region_ok_for_hw_watchpoint (str
|
2012-11-09 18:03:10 +00:00
|
|
|
static int
|
|
|
|
default_watchpoint_addr_within_range (struct target_ops *target,
|
|
|
|
CORE_ADDR addr,
|
|
|
|
- CORE_ADDR start, int length)
|
|
|
|
+ CORE_ADDR start, LONGEST length)
|
|
|
|
{
|
|
|
|
return addr >= start && addr < start + length;
|
|
|
|
}
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/target.h
|
2013-01-19 22:41:55 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/target.h 2015-01-05 22:10:30.176726802 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/target.h 2015-01-05 22:10:35.575751342 +0100
|
|
|
|
@@ -483,7 +483,7 @@ struct target_ops
|
2014-06-19 20:14:32 +00:00
|
|
|
int (*to_stopped_data_address) (struct target_ops *, CORE_ADDR *)
|
|
|
|
TARGET_DEFAULT_RETURN (0);
|
2012-11-09 18:03:10 +00:00
|
|
|
int (*to_watchpoint_addr_within_range) (struct target_ops *,
|
2014-06-19 20:14:32 +00:00
|
|
|
- CORE_ADDR, CORE_ADDR, int)
|
|
|
|
+ CORE_ADDR, CORE_ADDR, LONGEST)
|
|
|
|
TARGET_DEFAULT_FUNC (default_watchpoint_addr_within_range);
|
2012-11-09 18:03:10 +00:00
|
|
|
|
|
|
|
/* Documentation of this routine is provided with the corresponding
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -493,7 +493,7 @@ struct target_ops
|
2014-08-02 10:58:20 +00:00
|
|
|
TARGET_DEFAULT_FUNC (default_region_ok_for_hw_watchpoint);
|
|
|
|
|
|
|
|
int (*to_can_accel_watchpoint_condition) (struct target_ops *,
|
|
|
|
- CORE_ADDR, int, int,
|
|
|
|
+ CORE_ADDR, LONGEST, int,
|
|
|
|
struct expression *)
|
|
|
|
TARGET_DEFAULT_RETURN (0);
|
|
|
|
int (*to_masked_watch_num_registers) (struct target_ops *,
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/aarch64-linux-nat.c
|
2014-05-30 21:31:53 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/aarch64-linux-nat.c 2015-01-05 22:10:30.176726802 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/aarch64-linux-nat.c 2015-01-05 22:10:35.575751342 +0100
|
|
|
|
@@ -424,14 +424,14 @@ aarch64_notify_debug_reg_change (const s
|
2014-05-30 21:31:53 +00:00
|
|
|
static void
|
|
|
|
aarch64_show_debug_reg_state (struct aarch64_debug_reg_state *state,
|
|
|
|
const char *func, CORE_ADDR addr,
|
|
|
|
- int len, int type)
|
|
|
|
+ LONGEST len, int type)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fprintf_unfiltered (gdb_stdlog, "%s", func);
|
|
|
|
if (addr || len)
|
|
|
|
- fprintf_unfiltered (gdb_stdlog, " (addr=0x%08lx, len=%d, type=%s)",
|
|
|
|
- (unsigned long) addr, len,
|
|
|
|
+ fprintf_unfiltered (gdb_stdlog, " (addr=0x%08lx, len=%s, type=%s)",
|
|
|
|
+ (unsigned long) addr, plongest (len),
|
|
|
|
type == hw_write ? "hw-write-watchpoint"
|
|
|
|
: (type == hw_read ? "hw-read-watchpoint"
|
|
|
|
: (type == hw_access ? "hw-access-watchpoint"
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -851,9 +851,10 @@ aarch64_linux_read_description (struct t
|
2014-05-30 21:31:53 +00:00
|
|
|
gdbserver/linux-aarch64-low.c for more information. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
-aarch64_align_watchpoint (CORE_ADDR addr, int len, CORE_ADDR *aligned_addr_p,
|
|
|
|
+aarch64_align_watchpoint (CORE_ADDR addr, LONGEST len,
|
|
|
|
+ CORE_ADDR *aligned_addr_p,
|
|
|
|
int *aligned_len_p, CORE_ADDR *next_addr_p,
|
|
|
|
- int *next_len_p)
|
|
|
|
+ LONGEST *next_len_p)
|
|
|
|
{
|
|
|
|
int aligned_len;
|
|
|
|
unsigned int offset;
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -1020,7 +1021,7 @@ aarch64_point_encode_ctrl_reg (int type,
|
2014-05-30 21:31:53 +00:00
|
|
|
Return 0 for any non-compliant ADDR and/or LEN; return 1 otherwise. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
-aarch64_point_is_aligned (int is_watchpoint, CORE_ADDR addr, int len)
|
|
|
|
+aarch64_point_is_aligned (int is_watchpoint, CORE_ADDR addr, LONGEST len)
|
|
|
|
{
|
|
|
|
unsigned int alignment = is_watchpoint ? AARCH64_HWP_ALIGNMENT
|
|
|
|
: AARCH64_HBP_ALIGNMENT;
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -1272,7 +1273,7 @@ aarch64_handle_aligned_watchpoint (int t
|
2014-05-30 21:31:53 +00:00
|
|
|
Return 0 if succeed. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
-aarch64_handle_unaligned_watchpoint (int type, CORE_ADDR addr, int len,
|
|
|
|
+aarch64_handle_unaligned_watchpoint (int type, CORE_ADDR addr, LONGEST len,
|
|
|
|
int is_insert)
|
|
|
|
{
|
|
|
|
struct aarch64_debug_reg_state *state
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -1297,8 +1298,8 @@ aarch64_handle_unaligned_watchpoint (int
|
2014-05-30 21:31:53 +00:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
|
|
|
"handle_unaligned_watchpoint: is_insert: %d\n"
|
|
|
|
" aligned_addr: 0x%08lx, aligned_len: %d\n"
|
|
|
|
-" next_addr: 0x%08lx, next_len: %d\n",
|
|
|
|
- is_insert, aligned_addr, aligned_len, addr, len);
|
|
|
|
+" next_addr: 0x%08lx, next_len: %s\n",
|
|
|
|
+ is_insert, aligned_addr, aligned_len, addr, plongest (len));
|
|
|
|
|
|
|
|
if (ret != 0)
|
|
|
|
return ret;
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -1310,7 +1311,7 @@ aarch64_handle_unaligned_watchpoint (int
|
2014-05-30 21:31:53 +00:00
|
|
|
/* Implements insertion and removal of a single watchpoint. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
-aarch64_handle_watchpoint (int type, CORE_ADDR addr, int len, int is_insert)
|
|
|
|
+aarch64_handle_watchpoint (int type, CORE_ADDR addr, LONGEST len, int is_insert)
|
|
|
|
{
|
|
|
|
if (aarch64_point_is_aligned (1 /* is_watchpoint */ , addr, len))
|
|
|
|
return aarch64_handle_aligned_watchpoint (type, addr, len, is_insert);
|
2015-01-08 20:53:17 +00:00
|
|
|
@@ -1479,7 +1480,7 @@ aarch64_linux_stopped_by_watchpoint (str
|
2014-05-30 21:31:53 +00:00
|
|
|
static int
|
|
|
|
aarch64_linux_watchpoint_addr_within_range (struct target_ops *target,
|
|
|
|
CORE_ADDR addr,
|
|
|
|
- CORE_ADDR start, int length)
|
|
|
|
+ CORE_ADDR start, LONGEST length)
|
|
|
|
{
|
|
|
|
return start <= addr && start + length - 1 >= addr;
|
|
|
|
}
|
2015-01-08 20:53:17 +00:00
|
|
|
Index: gdb-7.8.50.20141228/gdb/target-delegates.c
|
2014-06-19 20:14:32 +00:00
|
|
|
===================================================================
|
2015-01-08 20:53:17 +00:00
|
|
|
--- gdb-7.8.50.20141228.orig/gdb/target-delegates.c 2015-01-05 22:10:30.177726806 +0100
|
|
|
|
+++ gdb-7.8.50.20141228/gdb/target-delegates.c 2015-01-05 22:12:11.071185408 +0100
|
|
|
|
@@ -607,14 +607,14 @@ debug_stopped_data_address (struct targe
|
2014-06-19 20:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
-delegate_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
|
|
|
|
+delegate_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, LONGEST arg3)
|
|
|
|
{
|
|
|
|
self = self->beneath;
|
|
|
|
return self->to_watchpoint_addr_within_range (self, arg1, arg2, arg3);
|
2015-01-08 20:53:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
-debug_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, int arg3)
|
|
|
|
+debug_watchpoint_addr_within_range (struct target_ops *self, CORE_ADDR arg1, CORE_ADDR arg2, LONGEST arg3)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
fprintf_unfiltered (gdb_stdlog, "-> %s->to_watchpoint_addr_within_range (...)\n", debug_target.to_shortname);
|
|
|
|
@@ -626,7 +626,7 @@ debug_watchpoint_addr_within_range (stru
|
|
|
|
fputs_unfiltered (", ", gdb_stdlog);
|
|
|
|
target_debug_print_CORE_ADDR (arg2);
|
|
|
|
fputs_unfiltered (", ", gdb_stdlog);
|
|
|
|
- target_debug_print_int (arg3);
|
|
|
|
+ target_debug_print_LONGEST (arg3);
|
|
|
|
fputs_unfiltered (") = ", gdb_stdlog);
|
|
|
|
target_debug_print_int (result);
|
|
|
|
fputs_unfiltered ("\n", gdb_stdlog);
|
|
|
|
@@ -659,20 +659,20 @@ debug_region_ok_for_hw_watchpoint (struc
|
2014-08-02 10:58:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
-delegate_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
|
|
|
|
+delegate_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, LONGEST arg2, int arg3, struct expression *arg4)
|
|
|
|
{
|
|
|
|
self = self->beneath;
|
|
|
|
return self->to_can_accel_watchpoint_condition (self, arg1, arg2, arg3, arg4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
-tdefault_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
|
|
|
|
+tdefault_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, LONGEST arg2, int arg3, struct expression *arg4)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2015-01-08 20:53:17 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
-debug_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, int arg2, int arg3, struct expression *arg4)
|
|
|
|
+debug_can_accel_watchpoint_condition (struct target_ops *self, CORE_ADDR arg1, LONGEST arg2, int arg3, struct expression *arg4)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
fprintf_unfiltered (gdb_stdlog, "-> %s->to_can_accel_watchpoint_condition (...)\n", debug_target.to_shortname);
|
|
|
|
@@ -682,7 +682,7 @@ debug_can_accel_watchpoint_condition (st
|
|
|
|
fputs_unfiltered (", ", gdb_stdlog);
|
|
|
|
target_debug_print_CORE_ADDR (arg1);
|
|
|
|
fputs_unfiltered (", ", gdb_stdlog);
|
|
|
|
- target_debug_print_int (arg2);
|
|
|
|
+ target_debug_print_LONGEST (arg2);
|
|
|
|
fputs_unfiltered (", ", gdb_stdlog);
|
|
|
|
target_debug_print_int (arg3);
|
|
|
|
fputs_unfiltered (", ", gdb_stdlog);
|