public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Pedro Alves <palves@redhat.com>
To: Philippe Waroquiers <philippe.waroquiers@skynet.be>,
	gdb-patches@sourceware.org
Subject: Re: [RFA_v3 2/8] Implement frame apply [all | COUNT | -COUNT | id ID... ] [FLAG]... COMMAND.
Date: Mon, 09 Jul 2018 19:16:00 -0000	[thread overview]
Message-ID: <922c099e-4580-d804-1357-907bbe0b90ad@redhat.com> (raw)
In-Reply-To: <20180624183708.888-3-philippe.waroquiers@skynet.be>

On 06/24/2018 07:37 PM, Philippe Waroquiers wrote:
> Implement frame apply [all | COUNT | -COUNT | id ID... ] [FLAG]... COMMAND.
> Also implement the command 'faas COMMAND', a shortcut for
> 'frame apply all -s COMMAND'.
> 
> The syntax of 'frame apply' to specify some innermost or outermost
> frames is similar to 'backtrace' command, using COUNT or -COUNT.
> 
> To apply a COMMAND to a more specific set of frames, the following
> new command and syntax can be used:
> frame apply id ID... [FLAG]... COMMAND
> where ID is one or more frame ids or range of frame ids.

Thanks much for doing this.  Other than the "id" / "level"
thing, this looks mostly OK to me.  One minor detail below.

> +
> +/* Implementation of the "frame apply id" command.  */
> +
> +static void
> +frame_apply_id_command (const char *cmd, int from_tty)
> +{
> +  if (!target_has_stack)
> +    error (_("No stack."));
> +
> +  bool id_found = false;
> +  const char *ids = cmd;
> +  number_or_range_parser idls (ids);
> +
> +  /* Skip the ID list to find the flags and command args.  */
> +  while (!idls.finished ())
> +    {
> +      const int id_beg = idls.get_number ();
> +
> +      id_found = true;
> +      if (idls.in_range ())
> +	idls.skip_range ();
> +    }
> +
> +  if (!id_found)
> +    error (_("Missing or invalid ID... argument"));
> +
> +  cmd = idls.cur_tok ();
> +
> +  /* Redo the IDLS parsing, but applying COMMAND.  */
> +  idls.init (ids);
> +  while (!idls.finished ())
> +    {
> +      const int id_beg = idls.get_number ();
> +      int n_frames;
> +
> +      if (idls.in_range ())
> +	{
> +	  n_frames = idls.end_value () - id_beg + 1;
> +	  idls.skip_range ();
> +	}
> +      else
> +	n_frames = 1;
> +
> +      frame_apply_command_count ("frame apply id", cmd, from_tty,
> +				 leading_innermost_frame (id_beg), n_frames);

I noticed that as is, frame_apply_command_count is going to parse CMD
for parse_flags_qcs for every iteration.  I wonder whether it wouldn't
be clearer to split frame_apply_command_count after that CMD parsing
to a separate function that is called by both frame_apply_id_command
and frame_apply_command_count.

Thanks,
Pedro Alves

  reply	other threads:[~2018-07-09 19:16 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-24 18:37 [RFA_v3 0/8] Implement 'frame apply COMMAND', enhance 'thread apply COMMAND' Philippe Waroquiers
2018-06-24 18:37 ` [RFA_v3 5/8] Announce the user visible changes for frame/thread apply in NEWS Philippe Waroquiers
2018-06-24 18:37 ` [RFA_v3 3/8] Add [FLAG]... arguments to 'thread apply' Philippe Waroquiers
2018-07-09 19:18   ` Pedro Alves
2018-06-24 18:37 ` [RFA_v3 8/8] Add a self-test for cli-utils.c Philippe Waroquiers
2018-07-09 19:27   ` Pedro Alves
2018-06-24 18:37 ` [RFA_v3 4/8] Documents the new commands 'frame apply', faas, taas, tfaas Philippe Waroquiers
2018-07-09 19:16   ` Pedro Alves
2018-06-24 18:37 ` [RFA_v3 7/8] Modify gdb.threads/pthreads.exp to test FLAG qcs arguments for thread apply Philippe Waroquiers
2018-06-24 18:37 ` [RFA_v3 6/8] Add a test for 'frame apply' Philippe Waroquiers
2018-07-09 19:19   ` Pedro Alves
2018-06-24 18:37 ` [RFA_v3 1/8] Add helper functions parse_flags and parse_flags_qcs Philippe Waroquiers
2018-07-09 19:14   ` Pedro Alves
2018-06-24 18:37 ` [RFA_v3 2/8] Implement frame apply [all | COUNT | -COUNT | id ID... ] [FLAG]... COMMAND Philippe Waroquiers
2018-07-09 19:16   ` Pedro Alves [this message]
2018-07-10 21:50     ` Philippe Waroquiers
2018-06-29 12:22 ` [RFA_v3 0/8] Implement 'frame apply COMMAND', enhance 'thread apply COMMAND' Andrew Burgess
2018-06-29 20:16   ` Philippe Waroquiers
2018-06-29 20:38     ` Philippe Waroquiers
2018-07-09 19:01       ` 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=922c099e-4580-d804-1357-907bbe0b90ad@redhat.com \
    --to=palves@redhat.com \
    --cc=gdb-patches@sourceware.org \
    --cc=philippe.waroquiers@skynet.be \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).