[3/3] btrace: Remove ui_out cleanups

Message ID 20180304205605.13037-3-simon.marchi@polymtl.ca
State New, archived
Headers

Commit Message

Simon Marchi March 4, 2018, 8:56 p.m. UTC
  This patch replaces the cleanups that close the list and tuple of the
btrace instruction history output with ui_out_emit_tuple and
ui_out_emit_list.

This allows removing make_cleanup_ui_out_tuple_begin_end and
make_cleanup_ui_out_list_begin_end.

This patch (along with the previous ones in the series) was regtested on
the buildbot.

gdb/ChangeLog:

	* record-btrace.c (btrace_print_lines): Replace cleanup
	parameter with RAII equivalents.
	(btrace_insn_history): Replace cleanup with RAII equivalents.
	* ui-out.h (make_cleanup_ui_out_list_begin_end,
	make_cleanup_ui_out_tuple_begin_end): Remove.
	* ui-out.c (struct ui_out_end_cleanup_data, do_cleanup_end,
	make_cleanup_ui_out_end, make_cleanup_ui_out_tuple_begin_end,
	make_cleanup_ui_out_list_begin_end): Remove.
---
 gdb/record-btrace.c | 55 ++++++++++++++++++++++++-----------------------------
 gdb/ui-out.c        | 44 ------------------------------------------
 gdb/ui-out.h        |  8 --------
 3 files changed, 25 insertions(+), 82 deletions(-)
  

Comments

Metzger, Markus T March 5, 2018, 12:39 p.m. UTC | #1
Hello Simon,


> This patch replaces the cleanups that close the list and tuple of the
> btrace instruction history output with ui_out_emit_tuple and
> ui_out_emit_list.
> 
> This allows removing make_cleanup_ui_out_tuple_begin_end and
> make_cleanup_ui_out_list_begin_end.
> 
> This patch (along with the previous ones in the series) was regtested on
> the buildbot.


> diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c
> index 15ce760f5a..ddd15c4781 100644
> --- a/gdb/record-btrace.c
> +++ b/gdb/record-btrace.c
> @@ -620,26 +620,25 @@ btrace_find_line_range (CORE_ADDR pc)
> 
>  static void
>  btrace_print_lines (struct btrace_line_range lines, struct ui_out *uiout,
> -		    struct cleanup **ui_item_chain, int flags)
> +		    gdb::optional<ui_out_emit_tuple> *src_and_asm_tuple,
> +		    gdb::optional<ui_out_emit_list> *asm_list,

Reference instead of pointer?

 
> -  for (line = lines.begin; line < lines.end; ++line)
> +  for (int line = lines.begin; line < lines.end; ++line)
>      {
> -      if (*ui_item_chain != NULL)
> -	do_cleanups (*ui_item_chain);
> +      asm_list->reset ();
> +      src_and_asm_tuple->reset ();

The SRC_AND_ASM_TUPLE reset () shouldn't be necessary; it is reset () in emplace ().


> -      *ui_item_chain
> -	= make_cleanup_ui_out_tuple_begin_end (uiout, "src_and_asm_line");
> +      src_and_asm_tuple->emplace (uiout, "src_and_asm_line");
> 
>        print_source_lines (lines.symtab, line, line + 1, psl_flags);
> 
> -      make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn");
> +      asm_list->emplace (uiout, "line_asm_insn");
>      }
>  }

Looks good to me, otherwise.

I have not tested it, though.  Did you run the gdb.btrace test suite?  You said
you ran buildbot but that might skip gdb.btrace when run on VMs or on old
hardware.

Please let me know if you want me to run the gdb.btrace tests for you.  A user
branch would be nice in that case.

Regards,
Markus.

Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Christian Lamprechter
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
  
Simon Marchi March 5, 2018, 10:16 p.m. UTC | #2
On 2018-03-05 07:39, Metzger, Markus T wrote:
> Hello Simon,
> 
> 
>> This patch replaces the cleanups that close the list and tuple of the
>> btrace instruction history output with ui_out_emit_tuple and
>> ui_out_emit_list.
>> 
>> This allows removing make_cleanup_ui_out_tuple_begin_end and
>> make_cleanup_ui_out_list_begin_end.
>> 
>> This patch (along with the previous ones in the series) was regtested 
>> on
>> the buildbot.
> 
> 
>> diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c
>> index 15ce760f5a..ddd15c4781 100644
>> --- a/gdb/record-btrace.c
>> +++ b/gdb/record-btrace.c
>> @@ -620,26 +620,25 @@ btrace_find_line_range (CORE_ADDR pc)
>> 
>>  static void
>>  btrace_print_lines (struct btrace_line_range lines, struct ui_out 
>> *uiout,
>> -		    struct cleanup **ui_item_chain, int flags)
>> +		    gdb::optional<ui_out_emit_tuple> *src_and_asm_tuple,
>> +		    gdb::optional<ui_out_emit_list> *asm_list,
> 
> Reference instead of pointer?

I once pointed this out on one of Tom's patches, and he said that in the 
caller code, it's more obvious that object is meant to be modified if 
you do:

   function_that_modifies_object (&object);

instead of

   function_that_modifies_object (object);

And I kind of agree with that it is, which is why I've been using 
pointers when references would have worked (ok, here the function name 
makes it obvious but it's not always the case).  In the implementation 
of the function, since you use object->field instead of object.field, it 
also hints that you're not modifying a local object.  But I also agree 
that it's really not C++-y to do it this way, so I'll happily change it.

>> -  for (line = lines.begin; line < lines.end; ++line)
>> +  for (int line = lines.begin; line < lines.end; ++line)
>>      {
>> -      if (*ui_item_chain != NULL)
>> -	do_cleanups (*ui_item_chain);
>> +      asm_list->reset ();
>> +      src_and_asm_tuple->reset ();
> 
> The SRC_AND_ASM_TUPLE reset () shouldn't be necessary; it is reset ()
> in emplace ().

Ok.

>> -      *ui_item_chain
>> -	= make_cleanup_ui_out_tuple_begin_end (uiout, "src_and_asm_line");
>> +      src_and_asm_tuple->emplace (uiout, "src_and_asm_line");
>> 
>>        print_source_lines (lines.symtab, line, line + 1, psl_flags);
>> 
>> -      make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn");
>> +      asm_list->emplace (uiout, "line_asm_insn");
>>      }
>>  }
> 
> Looks good to me, otherwise.
> 
> I have not tested it, though.  Did you run the gdb.btrace test suite?  
> You said
> you ran buildbot but that might skip gdb.btrace when run on VMs or on 
> old
> hardware.
> 
> Please let me know if you want me to run the gdb.btrace tests for you.  
> A user
> branch would be nice in that case.

Yes, I have ran the gdb.btrace/*.exp tests locally on two different 
machines and saw no regressions.  However, the processors may be a bit 
old (Q6600 from 2007 and i5-4310U from 2014), so it's possible that not 
all required features are available, and therefore some tests may be 
skipped.  So if you want to be sure, here's a branch for you to test:

users/simark/btrace-cleanups
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=shortlog;h=refs/heads/users/simark/btrace-cleanups

Thanks!

Simon
  
Metzger, Markus T March 6, 2018, 7:30 a.m. UTC | #3
Hello Simon,

> >>  static void
> >>  btrace_print_lines (struct btrace_line_range lines, struct ui_out
> >> *uiout,
> >> -		    struct cleanup **ui_item_chain, int flags)
> >> +		    gdb::optional<ui_out_emit_tuple> *src_and_asm_tuple,
> >> +		    gdb::optional<ui_out_emit_list> *asm_list,
> >
> > Reference instead of pointer?
> 
> I once pointed this out on one of Tom's patches, and he said that in the
> caller code, it's more obvious that object is meant to be modified if
> you do:
> 
>    function_that_modifies_object (&object);
> 
> instead of
> 
>    function_that_modifies_object (object);
> 
> And I kind of agree with that it is, which is why I've been using
> pointers when references would have worked (ok, here the function name
> makes it obvious but it's not always the case).  In the implementation
> of the function, since you use object->field instead of object.field, it
> also hints that you're not modifying a local object.  But I also agree
> that it's really not C++-y to do it this way, so I'll happily change it.

I prefer consistency.  I we agreed to use pointers instead of references
in other parts of GDB, let's do so everywhere.


> Yes, I have ran the gdb.btrace/*.exp tests locally on two different
> machines and saw no regressions.  However, the processors may be a bit
> old (Q6600 from 2007 and i5-4310U from 2014), so it's possible that not
> all required features are available, and therefore some tests may be
> skipped.  So if you want to be sure, here's a branch for you to test:

You would get an "untested" if btrace tests are skipped.  As long as
you're not getting all "untested", you should be fine.  There is only
one test, tsx.exp, that requires recent hardware and compiler.

It would use the method that is available on your target preferring
PT over BTS.  But this change is not related to trace decode so it
shouldn't matter.

I ran the tests on recent hardware using PT and everything passes.

Thanks,
Markus.

Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Christian Lamprechter
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
  
Simon Marchi March 6, 2018, 2:40 p.m. UTC | #4
On 2018-03-06 02:30, Metzger, Markus T wrote:
> I prefer consistency.  I we agreed to use pointers instead of 
> references
> in other parts of GDB, let's do so everywhere.

There was no formal decision, I would just say it's the current trend.  
But it would be a good idea to formalize it, so we don't have to wonder 
about it again, I'll send a proposal in a separate mail.  For reference, 
I checked the Google C++ style guide, and they forbid non-const 
reference:

https://google.github.io/styleguide/cppguide.html#Reference_Arguments

I'll push this patch with pointers then.

>> Yes, I have ran the gdb.btrace/*.exp tests locally on two different
>> machines and saw no regressions.  However, the processors may be a bit
>> old (Q6600 from 2007 and i5-4310U from 2014), so it's possible that 
>> not
>> all required features are available, and therefore some tests may be
>> skipped.  So if you want to be sure, here's a branch for you to test:
> 
> You would get an "untested" if btrace tests are skipped.  As long as
> you're not getting all "untested", you should be fine.  There is only
> one test, tsx.exp, that requires recent hardware and compiler.
> 
> It would use the method that is available on your target preferring
> PT over BTS.  But this change is not related to trace decode so it
> shouldn't matter.
> 
> I ran the tests on recent hardware using PT and everything passes.

Ok, thanks!

Simon
  

Patch

diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c
index 15ce760f5a..ddd15c4781 100644
--- a/gdb/record-btrace.c
+++ b/gdb/record-btrace.c
@@ -620,26 +620,25 @@  btrace_find_line_range (CORE_ADDR pc)
 
 static void
 btrace_print_lines (struct btrace_line_range lines, struct ui_out *uiout,
-		    struct cleanup **ui_item_chain, int flags)
+		    gdb::optional<ui_out_emit_tuple> *src_and_asm_tuple,
+		    gdb::optional<ui_out_emit_list> *asm_list,
+		    int flags)
 {
   print_source_lines_flags psl_flags;
-  int line;
 
-  psl_flags = 0;
   if (flags & DISASSEMBLY_FILENAME)
     psl_flags |= PRINT_SOURCE_LINES_FILENAME;
 
-  for (line = lines.begin; line < lines.end; ++line)
+  for (int line = lines.begin; line < lines.end; ++line)
     {
-      if (*ui_item_chain != NULL)
-	do_cleanups (*ui_item_chain);
+      asm_list->reset ();
+      src_and_asm_tuple->reset ();
 
-      *ui_item_chain
-	= make_cleanup_ui_out_tuple_begin_end (uiout, "src_and_asm_line");
+      src_and_asm_tuple->emplace (uiout, "src_and_asm_line");
 
       print_source_lines (lines.symtab, line, line + 1, psl_flags);
 
-      make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn");
+      asm_list->emplace (uiout, "line_asm_insn");
     }
 }
 
@@ -652,28 +651,23 @@  btrace_insn_history (struct ui_out *uiout,
 		     const struct btrace_insn_iterator *end,
 		     gdb_disassembly_flags flags)
 {
-  struct cleanup *cleanups, *ui_item_chain;
-  struct gdbarch *gdbarch;
-  struct btrace_insn_iterator it;
-  struct btrace_line_range last_lines;
-
   DEBUG ("itrace (0x%x): [%u; %u)", (unsigned) flags,
 	 btrace_insn_number (begin), btrace_insn_number (end));
 
   flags |= DISASSEMBLY_SPECULATIVE;
 
-  gdbarch = target_gdbarch ();
-  last_lines = btrace_mk_line_range (NULL, 0, 0);
+  struct gdbarch *gdbarch = target_gdbarch ();
+  btrace_line_range last_lines = btrace_mk_line_range (NULL, 0, 0);
 
-  cleanups = make_cleanup_ui_out_list_begin_end (uiout, "asm_insns");
+  ui_out_emit_list list_emitter (uiout, "asm_insns");
 
-  /* UI_ITEM_CHAIN is a cleanup chain for the last source line and the
-     instructions corresponding to that line.  */
-  ui_item_chain = NULL;
+  gdb::optional<ui_out_emit_tuple> src_and_asm_tuple;
+  gdb::optional<ui_out_emit_list> asm_list;
 
   gdb_pretty_print_disassembler disasm (gdbarch);
 
-  for (it = *begin; btrace_insn_cmp (&it, end) != 0; btrace_insn_next (&it, 1))
+  for (btrace_insn_iterator it = *begin; btrace_insn_cmp (&it, end) != 0;
+         btrace_insn_next (&it, 1))
     {
       const struct btrace_insn *insn;
 
@@ -708,19 +702,22 @@  btrace_insn_history (struct ui_out *uiout,
 	      if (!btrace_line_range_is_empty (lines)
 		  && !btrace_line_range_contains_range (last_lines, lines))
 		{
-		  btrace_print_lines (lines, uiout, &ui_item_chain, flags);
+		  btrace_print_lines (lines, uiout, &src_and_asm_tuple,
+				      &asm_list, flags);
 		  last_lines = lines;
 		}
-	      else if (ui_item_chain == NULL)
+	      else if (!src_and_asm_tuple.has_value ())
 		{
-		  ui_item_chain
-		    = make_cleanup_ui_out_tuple_begin_end (uiout,
-							   "src_and_asm_line");
+		  gdb_assert (!asm_list.has_value ());
+
+		  src_and_asm_tuple.emplace (uiout, "src_and_asm_line");
+
 		  /* No source information.  */
-		  make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn");
+		  asm_list.emplace (uiout, "line_asm_insn");
 		}
 
-	      gdb_assert (ui_item_chain != NULL);
+	      gdb_assert (src_and_asm_tuple.has_value ());
+	      gdb_assert (asm_list.has_value ());
 	    }
 
 	  memset (&dinsn, 0, sizeof (dinsn));
@@ -733,8 +730,6 @@  btrace_insn_history (struct ui_out *uiout,
 	  disasm.pretty_print_insn (uiout, &dinsn, flags);
 	}
     }
-
-  do_cleanups (cleanups);
 }
 
 /* The to_insn_history method of target record-btrace.  */
diff --git a/gdb/ui-out.c b/gdb/ui-out.c
index 0340a44a83..3648815090 100644
--- a/gdb/ui-out.c
+++ b/gdb/ui-out.c
@@ -438,50 +438,6 @@  ui_out::end (ui_out_type type)
   do_end (type);
 }
 
-struct ui_out_end_cleanup_data
-{
-  struct ui_out *uiout;
-  enum ui_out_type type;
-};
-
-static void
-do_cleanup_end (void *data)
-{
-  struct ui_out_end_cleanup_data *end_cleanup_data
-    = (struct ui_out_end_cleanup_data *) data;
-
-  end_cleanup_data->uiout->end (end_cleanup_data->type);
-  xfree (end_cleanup_data);
-}
-
-static struct cleanup *
-make_cleanup_ui_out_end (struct ui_out *uiout,
-			 enum ui_out_type type)
-{
-  struct ui_out_end_cleanup_data *end_cleanup_data;
-
-  end_cleanup_data = XNEW (struct ui_out_end_cleanup_data);
-  end_cleanup_data->uiout = uiout;
-  end_cleanup_data->type = type;
-  return make_cleanup (do_cleanup_end, end_cleanup_data);
-}
-
-struct cleanup *
-make_cleanup_ui_out_tuple_begin_end (struct ui_out *uiout,
-				     const char *id)
-{
-  uiout->begin (ui_out_type_tuple, id);
-  return make_cleanup_ui_out_end (uiout, ui_out_type_tuple);
-}
-
-struct cleanup *
-make_cleanup_ui_out_list_begin_end (struct ui_out *uiout,
-				    const char *id)
-{
-  uiout->begin (ui_out_type_list, id);
-  return make_cleanup_ui_out_end (uiout, ui_out_type_list);
-}
-
 void
 ui_out::field_int (const char *fldname, int value)
 {
diff --git a/gdb/ui-out.h b/gdb/ui-out.h
index 1708542e7e..a415100d7e 100644
--- a/gdb/ui-out.h
+++ b/gdb/ui-out.h
@@ -66,14 +66,6 @@  enum ui_out_type
     ui_out_type_list
   };
 
-/* Compatibility wrappers.  */
-
-extern struct cleanup *make_cleanup_ui_out_list_begin_end (struct ui_out *uiout,
-							   const char *id);
-
-extern struct cleanup *make_cleanup_ui_out_tuple_begin_end (struct ui_out *uiout,
-							    const char *id);
-
 class ui_out
 {
  public: