From: Pedro Alves <pedro@codesourcery.com>
To: gdb-patches@sourceware.org
Cc: Aleksandar Ristovski <aristovski@qnx.com>, Doug Evans <dje@google.com>
Subject: Re: [patch] gdbserver: Add support for Z0/Z1 packets
Date: Sat, 20 Jun 2009 22:01:00 -0000 [thread overview]
Message-ID: <200906202301.52782.pedro@codesourcery.com> (raw)
In-Reply-To: <4A3B98EC.70209@qnx.com>
On Friday 19 June 2009 14:55:56, Aleksandar Ristovski wrote:
> RCS file: /cvs/src/src/gdb/gdbserver/target.h,v
> retrieving revision 1.36
> diff -u -p -r1.36 target.h
> --- target.h 1 Apr 2009 22:50:24 -0000 1.36
> +++ target.h 19 Jun 2009 13:47:44 -0000
> @@ -213,6 +213,14 @@ struct target_ops
> int (*read_auxv) (CORE_ADDR offset, unsigned char *myaddr,
> unsigned int len);
>
> + /* Insert and remove breakpoint. Argument TYPE can be:
> + '0' = software-breakpoint
> + '1' = hardware-breakpoint
^ spurious space
> + Returns 0 if successful, 1 otherwise. */
> +
> + int (*insert_breakpoint) (char type, CORE_ADDR addr);
> + int (*remove_breakpoint) (char type, CORE_ADDR addr);
Z0 and Z1 breakpoints also take a 'len' argument, just
like Z2-Z4. You should also pass those down.
But, Let's take a step back --- why not just rename the
insert_watchpoint|remove_watchpoint functions to insert_point,remove_point,
and relax the type checks in server.c:
if (the_target->insert_watchpoint == NULL
|| (type < '2' || type > '4'))
{
... to also allow type == '0' or '1' ?
Looking at your nto-low.c file in the original patch, you were
doing this:
+static int
+nto_insert_breakpoint (char type, CORE_ADDR addr)
^^^^^^^^^^
+{
+ TRACE ("%s\n", __func__);
+
+ return nto_insert_watchpoint (type, addr, 1);
^^^^^^^^^^
+}
In the latest patch, you're doing this:
+static int
+nto_insert_breakpoint (char type, CORE_ADDR addr)
+{
+ TRACE ("%s\n", __func__);
+ switch (type)
+ {
+ case '0': /* software-breakpoint */
+ return nto_breakpoint (addr, _DEBUG_BREAK_EXEC, 0);
+ case '1': /* hardware-breakpoint */
+ return nto_breakpoint (addr, _DEBUG_BREAK_EXEC | _DEBUG_BREAK_HW, 0);
+ }
+ return 1; /* Not supported. */
+}
+static int
+nto_insert_watchpoint (char type, CORE_ADDR addr, int len)
+{
+ int wtype = _DEBUG_BREAK_HW; /* Always request HW. */
+
+ TRACE ("%s type:%c\n", __func__, type);
+ switch (type)
+ {
+ case '2': /* write watchpoint */
+ wtype |= _DEBUG_BREAK_RW;
+ break;
+ case '3': /* read watchpoint */
+ wtype |= _DEBUG_BREAK_RD
+ break;
+ case '4': /* access watchpoint */
+ wtype |= _DEBUG_BREAK_RW;
+ break;
+ default:
+ return 1; /* Not supported. */
+ }
+ return nto_breakpoint (addr, wtype, 0);
+}
That is, still always deferring to a single function
(nto_breakpoint).
This suggests that the insert_breakpoint and insert_watchpoint
interface distintion is unnecessary.
--
Pedro Alves
next prev parent reply other threads:[~2009-06-20 22:01 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-17 1:20 Aleksandar Ristovski
2009-06-17 1:35 ` Aleksandar Ristovski
2009-06-19 7:08 ` Doug Evans
2009-06-19 13:56 ` Aleksandar Ristovski
2009-06-20 22:01 ` Pedro Alves [this message]
2009-06-22 19:39 ` Aleksandar Ristovski
2009-06-22 22:46 ` Pedro Alves
2009-06-23 15:18 ` Aleksandar Ristovski
2009-06-23 15:59 ` Pedro Alves
2009-06-23 16:57 ` Aleksandar Ristovski
2009-06-24 18:51 ` Aleksandar Ristovski
2009-06-24 19:01 ` Doug Evans
2009-06-24 19:04 ` Aleksandar Ristovski
2009-06-24 19:10 ` Doug Evans
2009-06-24 19:10 ` Pedro Alves
2009-06-24 19:20 ` Aleksandar Ristovski
2009-06-24 19:28 ` Pedro Alves
2009-06-24 19:25 ` Aleksandar Ristovski
2009-06-25 22:18 ` Pedro Alves
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200906202301.52782.pedro@codesourcery.com \
--to=pedro@codesourcery.com \
--cc=aristovski@qnx.com \
--cc=dje@google.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox