From: Stan Shebs <stanshebs@earthlink.net>
To: Tom Tromey <tromey@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH v2] dynamic printf
Date: Wed, 16 May 2012 20:46:00 -0000 [thread overview]
Message-ID: <4FB41216.2080508@earthlink.net> (raw)
In-Reply-To: <87ipfvop8i.fsf@fleche.redhat.com>
On 5/16/12 1:17 PM, Tom Tromey wrote:
>>>>>> "Stan" == Stan Shebs<stanshebs@earthlink.net> writes:
> Sorry about the delay on this.
>
> Stan> + /* Manufacture a printf/continue sequence. */
> Stan> + if (printf_line)
> Stan> + {
> Stan> + struct command_line *printf_cmd_line, *cont_cmd_line = NULL;
> Stan> +
> Stan> + cont_cmd_line = xmalloc (sizeof (struct command_line));
> Stan> + cont_cmd_line->control_type = simple_control;
> Stan> + cont_cmd_line->body_count = 0;
> Stan> + cont_cmd_line->body_list = NULL;
> Stan> + cont_cmd_line->next = NULL;
> Stan> + cont_cmd_line->line = xstrdup ("continue");
> Stan> +
> Stan> + printf_cmd_line = xmalloc (sizeof (struct command_line));
> Stan> + printf_cmd_line->control_type = simple_control;
> Stan> + printf_cmd_line->body_count = 0;
> Stan> + printf_cmd_line->body_list = NULL;
> Stan> + printf_cmd_line->next = cont_cmd_line;
> Stan> + printf_cmd_line->line = printf_line;
> Stan> +
> Stan> + breakpoint_set_commands (b, printf_cmd_line);
>
> I thought this approach would break "next"ing over a dprintf location.
Indeed, thus this part of the introduction to this patch: :-)
"... Joel previously noted a problem with the "continue" in the command
list, which is that stepping/nexting over a dprintf becomes a continue
instead (this is a problem for general breakpoint command lists as
well). I tinkered with bpstats a bit, but didn't come up with a good
solution. One possibility might be a new pseudo-command for breakpoint
command lists, that resumes the program using the same proceed()
arguments as the command that caused the breakpoint hit."
If nobody comes up with a good idea here, it should probably be
documented as a limitation. I wonder if some relatively recent infrun
tinkering changed the breakpoint command behavior - you'd think
*somebody* would have bumped into it sometime in the past 20 years...
Ironically, the agent version doesn't have this problem, because the
resume happens automatically inside GDBserver, and GDB is oblivious.
> Stan> +void
> Stan> +dprintf_command (char *arg, int from_tty)
>
> I think this could be static.
>
Good point, I tweaked it for the agent patch.
Stan
next prev parent reply other threads:[~2012-05-16 20:46 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-08 6:27 Stan Shebs
2012-05-08 7:50 ` Yao Qi
2012-05-14 15:54 ` Stan Shebs
2012-05-15 4:10 ` [commit] Fix spu-tdep.c build regression [Re: [PATCH v2] dynamic printf] Jan Kratochvil
2012-05-15 10:24 ` Jim Meyering
2012-05-15 13:10 ` [commit] testsuite: gdb.base/dprintf.exp PR 12649 race " Jan Kratochvil
2012-05-15 13:34 ` Joel Brobecker
2012-05-15 13:37 ` [commit#2] " Jan Kratochvil
2012-05-16 20:17 ` [PATCH v2] dynamic printf Tom Tromey
2012-05-16 20:46 ` Stan Shebs [this message]
2012-05-16 20:52 ` Pedro Alves
2012-05-16 22:25 ` Stan Shebs
2012-05-17 1:56 ` Tom Tromey
2012-05-18 15:38 ` Pedro Alves
2012-05-16 20:53 ` Pedro Alves
2012-05-16 21:06 ` Tom Tromey
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=4FB41216.2080508@earthlink.net \
--to=stanshebs@earthlink.net \
--cc=gdb-patches@sourceware.org \
--cc=tromey@redhat.com \
/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