Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: "Schimpe, Christina" <christina.schimpe@intel.com>
To: Guinevere Larsen <guinevere@redhat.com>,
	"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Cc: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
Subject: RE: [PATCH v3 2/7] gdb/record: remove record_full_insn_num
Date: Tue, 26 May 2026 08:35:20 +0000	[thread overview]
Message-ID: <SN7PR11MB76383564F9E46034A8C62E69F90B2@SN7PR11MB7638.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20260515163706.3355686-3-guinevere@redhat.com>

> -----Original Message-----
> From: Guinevere Larsen <guinevere@redhat.com>
> Sent: Freitag, 15. Mai 2026 18:37
> To: gdb-patches@sourceware.org
> Cc: Guinevere Larsen <guinevere@redhat.com>; Thiago Jung Bauermann
> <thiago.bauermann@linaro.org>
> Subject: [PATCH v3 2/7] gdb/record: remove record_full_insn_num
> 
> Now that record_full_list uses a deque, we don't need a variable to track the
> amount of items recorded, so it is just dropped.
> 
> Reviewed-by: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
> ---
>  gdb/record-full.c | 41 ++++++++++++-----------------------------
>  1 file changed, 12 insertions(+), 29 deletions(-)
> 
> diff --git a/gdb/record-full.c b/gdb/record-full.c index
> 02a57726a95..e4dd07dc300 100644
> --- a/gdb/record-full.c
> +++ b/gdb/record-full.c
> @@ -193,8 +193,6 @@ static bool record_full_stop_at_limit = true;
>  /* Maximum allowed number of insns in execution log.  */  static unsigned int
> record_full_insn_max_num
>  	= DEFAULT_RECORD_FULL_INSN_MAX_NUM;
> -/* Actual count of insns presently in execution log.  */ -static unsigned int
> record_full_insn_num = 0;
>  /* Count of insns logged so far (may be larger
>     than count of insns presently in execution log).  */  static ULONGEST
> record_full_insn_count; @@ -462,7 +460,6 @@ record_full_entry_cleanup
> (record_full_entry rec)  static void  record_full_reset_history ()  {
> -  record_full_insn_num = 0;
>    record_full_insn_count = 0;
>    record_full_next_insn = 0;
> 
> @@ -504,9 +501,7 @@ record_full_save_instruction ()  }
> 
>  /* Delete the first instruction from the beginning of the log, to make
> -   room for adding a new instruction at the end of the log.
> -
> -   Note -- this function does not modify record_full_insn_num.  */
> +   room for adding a new instruction at the end of the log.  */
> 
>  static void
>  record_full_list_release_first (void)
> @@ -606,7 +601,7 @@ record_full_arch_list_add_mem (CORE_ADDR addr,
> int len)  static void  record_full_check_insn_num (void)  {
> -  if (record_full_insn_num == record_full_insn_max_num)
> +  if (record_full_list.size () == record_full_insn_max_num)
>      {
>        /* Ask user what to do.  */
>        if (record_full_stop_at_limit)
> @@ -688,10 +683,8 @@ record_full_message (struct regcache *regcache,
> enum gdb_signal signal)
> 
>    record_full_save_instruction ();
> 
> -  if (record_full_insn_num == record_full_insn_max_num)
> +  if (record_full_list.size () == record_full_insn_max_num)
>      record_full_list_release_first ();
> -  else
> -    record_full_insn_num++;
>  }
> 
>  static bool
> @@ -1468,10 +1461,8 @@ record_full_registers_change (struct regcache
> *regcache, int regnum)
>      }
>    record_full_save_instruction ();
> 
> -  if (record_full_insn_num == record_full_insn_max_num)
> +  if (record_full_list.size () == record_full_insn_max_num)
>      record_full_list_release_first ();
> -  else
> -    record_full_insn_num++;
>  }
> 
>  /* "store_registers" method for process record target.  */ @@ -1572,10
> +1563,8 @@ record_full_target::xfer_partial (enum target_object object,
>  	}
>        record_full_save_instruction ();
> 
> -      if (record_full_insn_num == record_full_insn_max_num)
> +      if (record_full_list.size () == record_full_insn_max_num)
>  	record_full_list_release_first ();
> -      else
> -	record_full_insn_num++;
>      }
> 
>    return this->beneath ()->xfer_partial (object, annex, readbuf, writebuf, @@ -
> 1813,8 +1802,8 @@ record_full_base_target::info_record ()
>  		  pulongest (record_full_insn_count));
> 
>        /* Display log count.  */
> -      gdb_printf (_("Log contains %u instructions.\n"),
> -		  record_full_insn_num);
> +      gdb_printf (_("Log contains %lu instructions.\n"),
> +		  (unsigned long int) record_full_list.size ());
>      }
>    else
>      gdb_printf (_("No instructions have been logged.\n")); @@ -2296,8 +2285,6
> @@ record_full_restore (struct bfd &cbfd)
>  		"RECORD_FULL_FILE_MAGIC (0x%s)\n",
>  		phex_nz (netorder32 (magic), 4));
> 
> -  record_full_insn_num = 0;
> -
>    try
>      {
>        while (bfd_offset < osec_size)
> @@ -2338,9 +2325,9 @@ record_full_restore (struct bfd &cbfd)
>      }
> 
>    /* Update record_full_insn_max_num.  */
> -  if (record_full_insn_num > record_full_insn_max_num)
> +  if (record_full_list.size () > record_full_insn_max_num)
>      {
> -      record_full_insn_max_num = record_full_insn_num;
> +      record_full_insn_max_num = record_full_list.size ();
>        warning (_("Auto increase record/replay buffer limit to %u."),
>  	       record_full_insn_max_num);
>      }
> @@ -2595,14 +2582,10 @@ static void
>  set_record_full_insn_max_num (const char *args, int from_tty,
>  			      struct cmd_list_element *c)
>  {
> -  if (record_full_insn_num > record_full_insn_max_num)
> +  if (record_full_list.size () > record_full_insn_max_num)
>      {
> -      /* Count down record_full_insn_num while releasing records from list.  */
> -      while (record_full_insn_num > record_full_insn_max_num)
> -       {
> -	 record_full_list_release_first ();
> -	 record_full_insn_num--;
> -       }
> +      while (record_full_list.size () > record_full_insn_max_num)
> +	record_full_list_release_first ();
>      }
>  }
> 
> --
> 2.54.0
> 


LGTM.

Reviewed-By: Christina Schimpe <christina.schimpe@intel.com>

Christina


Intel Deutschland GmbH
Registered Address: Dornacher Strasse 1, 85622 Feldkirchen, Germany
Tel: +49 89 991 430, www.intel.de
Managing Directors: Harry Demas, Jeffrey Schneiderman, Yin Chong Sorrell
Chairperson of the Supervisory Board: Nicole Lau
Registered Seat: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928

  reply	other threads:[~2026-05-26  8:35 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-15 16:36 [PATCH v3 0/7] refactor the internals of record-full Guinevere Larsen
2026-05-15 16:36 ` [PATCH v3 1/7] gdb/record: Refactor record history Guinevere Larsen
2026-05-26  8:33   ` Schimpe, Christina
2026-05-28 13:20     ` Guinevere Larsen
2026-05-29 13:47       ` Schimpe, Christina
2026-05-15 16:36 ` [PATCH v3 2/7] gdb/record: remove record_full_insn_num Guinevere Larsen
2026-05-26  8:35   ` Schimpe, Christina [this message]
2026-05-15 16:37 ` [PATCH v3 3/7] gdb/record: c++ify internal structures of record-full.c Guinevere Larsen
2026-05-26  9:00   ` Schimpe, Christina
2026-05-27 20:13     ` Guinevere Larsen
2026-05-29 12:09       ` Schimpe, Christina
2026-05-29 16:38         ` Guinevere Larsen
2026-05-15 16:37 ` [PATCH v3 4/7] gdb/record: make record_full_history more c++-like Guinevere Larsen
2026-05-16  1:03   ` Thiago Jung Bauermann
2026-05-26  9:04   ` Schimpe, Christina
2026-05-26 20:07     ` Guinevere Larsen
2026-05-15 16:37 ` [PATCH v3 5/6] gdb/record: Define new version of the record-save section Guinevere Larsen
2026-05-15 16:37 ` [PATCH v3 5/7] gdb/record: extract the PC to record_full_instruction Guinevere Larsen
2026-05-16  1:04   ` Thiago Jung Bauermann
2026-05-29 12:40   ` Schimpe, Christina
2026-06-01 20:24     ` Guinevere Larsen
2026-05-15 16:37 ` [PATCH v3 6/7] gdb/record: Define new version of the record-save section Guinevere Larsen
2026-05-15 16:37 ` [PATCH v3 6/6] gdb/record: rename record_full_list to record_full_log Guinevere Larsen
2026-05-29 12:05   ` Schimpe, Christina
2026-05-15 16:37 ` [PATCH v3 7/7] " Guinevere Larsen
2026-05-16  1:07   ` Thiago Jung Bauermann
2026-05-15 17:45 ` [PATCH v3 0/7] refactor the internals of record-full Guinevere Larsen

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=SN7PR11MB76383564F9E46034A8C62E69F90B2@SN7PR11MB7638.namprd11.prod.outlook.com \
    --to=christina.schimpe@intel.com \
    --cc=gdb-patches@sourceware.org \
    --cc=guinevere@redhat.com \
    --cc=thiago.bauermann@linaro.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