Fix inconsistent output of prefix and bugs in 'show' command
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Sun, 10 May 2020 06:36:29 +0000 (08:36 +0200)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Fri, 15 May 2020 20:17:45 +0000 (22:17 +0200)
cmd_show_list function implements the 'show' command.

cmd_show_list output is inconsistent: it sometimes shows a prefix
and sometimes does not.
For example, in the below, you see that there is a prefix before
each value, except for 'enabled'.

    (gdb) show style
    style address background:  The "address" style background color is: none
    style address foreground:  The "address" style foreground color is: blue
    style address intensity:  The "address" style display intensity is: normal
    enabled:  CLI output styling is enabled.
    style filename background:  The "filename" style background color is: none
    ...

There are other inconsistencies or bugs e.g. in
the below we see twice insn-number-max, once with a prefix
and once without prefix : last line, just before the value of
instruction-history-size which is itself without prefix.

    (gdb) show record
    record btrace bts buffer-size:  The record/replay bts buffer size is 65536.
    record btrace cpu:  btrace cpu is 'auto'.
    record btrace pt buffer-size:  The record/replay pt buffer size is 16384.
    record btrace replay-memory-access:  Replay memory access is read-only.
    record full insn-number-max:  Record/replay buffer limit is 200000.
    record full memory-query:  Whether query if PREC cannot record memory change of next instruction is off.
    record full stop-at-limit:  Whether record/replay stops when record/replay buffer becomes full is on.
    function-call-history-size:  Number of functions to print in "record function-call-history" is 10.
    insn-number-max:  instruction-history-size:  Number of instructions to print in "record instruction-history" is 10.
    (gdb)

Also, some values are output several times due to some aliases, so avoid outputting duplicated
values by skipping all aliases.

Now that the command structure has a correct 'back-pointer' from a command
to its prefix command, we can simplify cmd_show_list by removing its prefix argument
and at the same time fix the output inconsistencies and bugs.

gdb/ChangeLog

2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>

* cli/cli-setshow.h (cmd_show_list): Remove prefix argument.
* cli/cli-decode.c (do_show_prefix_cmd): Likewise.
* command.h (cmd_show_list): Likewise.
* dwarf2/index-cache.c (show_index_cache_command): Likewise.
* cli/cli-setshow.c (cmd_show_list): Use the prefix to produce the output.  Skip aliases.

gdb/testsuite/ChangeLog

2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>

* gdb.base/default.exp: Update output following fixes.

gdb/ChangeLog
gdb/cli/cli-decode.c
gdb/cli/cli-setshow.c
gdb/cli/cli-setshow.h
gdb/command.h
gdb/dwarf2/index-cache.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/default.exp

index d6204a297eb29605e7f83f76dcfe7ef139d51e45..80c027df8ac48e3b7076626f16f5a47d92766986 100644 (file)
@@ -1,3 +1,11 @@
+2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+
+       * cli/cli-setshow.h (cmd_show_list): Remove prefix argument.
+       * cli/cli-decode.c (do_show_prefix_cmd): Likewise.
+       * command.h (cmd_show_list): Likewise.
+       * dwarf2/index-cache.c (show_index_cache_command): Likewise.
+       * cli/cli-setshow.c (cmd_show_list): Use the prefix to produce the output.  Skip aliases.
+
 2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
 
        * unittests/command-def-selftests.c (traverse_command_structure):
index be36eb67321de061df805ae37f39ac67e209b55b..c37dfaffb5c1adcb2f3b4d8b526b2572dfd2df2f 100644 (file)
@@ -428,7 +428,7 @@ add_basic_prefix_cmd (const char *name, enum command_class theclass,
 static void
 do_show_prefix_cmd (const char *args, int from_tty, struct cmd_list_element *c)
 {
-  cmd_show_list (*c->prefixlist, from_tty, "");
+  cmd_show_list (*c->prefixlist, from_tty);
 }
 
 /* See command.h.  */
index 2a2f905bdfda1e3729f6fdb91abe1f0d981f57d4..19a5565bfe0afa77f17ff63c871b33dcfa796974 100644 (file)
@@ -733,39 +733,45 @@ do_show_command (const char *arg, int from_tty, struct cmd_list_element *c)
 /* Show all the settings in a list of show commands.  */
 
 void
-cmd_show_list (struct cmd_list_element *list, int from_tty, const char *prefix)
+cmd_show_list (struct cmd_list_element *list, int from_tty)
 {
   struct ui_out *uiout = current_uiout;
 
   ui_out_emit_tuple tuple_emitter (uiout, "showlist");
   for (; list != NULL; list = list->next)
     {
+      /* We skip show command aliases to avoid showing duplicated values.  */
+
       /* If we find a prefix, run its list, prefixing our output by its
          prefix (with "show " skipped).  */
-      if (list->prefixlist && !list->abbrev_flag)
+      if (list->prefixlist && list->cmd_pointer == nullptr)
        {
          ui_out_emit_tuple optionlist_emitter (uiout, "optionlist");
          const char *new_prefix = strstr (list->prefixname, "show ") + 5;
 
          if (uiout->is_mi_like_p ())
            uiout->field_string ("prefix", new_prefix);
-         cmd_show_list (*list->prefixlist, from_tty, new_prefix);
+         cmd_show_list (*list->prefixlist, from_tty);
        }
-      else
+      else if (list->theclass != no_set_class && list->cmd_pointer == nullptr)
        {
-         if (list->theclass != no_set_class)
-           {
-             ui_out_emit_tuple option_emitter (uiout, "option");
-
-             uiout->text (prefix);
-             uiout->field_string ("name", list->name);
-             uiout->text (":  ");
-             if (list->type == show_cmd)
-               do_show_command (NULL, from_tty, list);
-             else
-               cmd_func (list, NULL, from_tty);
-           }
+         ui_out_emit_tuple option_emitter (uiout, "option");
+
+         {
+           /* If we find a prefix, output it (with "show " skipped).  */
+           const char *prefixname
+             = (list->prefix == nullptr ? ""
+                : strstr (list->prefix->prefixname, "show ") + 5);
+           uiout->text (prefixname);
+         }
+         uiout->field_string ("name", list->name);
+         uiout->text (":  ");
+         if (list->type == show_cmd)
+           do_show_command (NULL, from_tty, list);
+         else
+           cmd_func (list, NULL, from_tty);
        }
     }
 }
 
+
index 9f0492bd3280cd976dcfdd13c18a35f9c8cacacd..83e4984ed6caba9c57b1d704399c698d441b07d6 100644 (file)
@@ -60,7 +60,6 @@ extern void do_show_command (const char *arg, int from_tty,
 /* Get a string version of C's current value.  */
 extern std::string get_setshow_command_value_string (const cmd_list_element *c);
 
-extern void cmd_show_list (struct cmd_list_element *list, int from_tty,
-                          const char *prefix);
+extern void cmd_show_list (struct cmd_list_element *list, int from_tty);
 
 #endif /* CLI_CLI_SETSHOW_H */
index 81c35c98d2f00a53dd73e1b66e70a001666b6d6e..0a1706c545eecc72631ae44ebc876c6a0bbd4033 100644 (file)
@@ -464,7 +464,7 @@ extern void
 
 /* Do a "show" command for each thing on a command list.  */
 
-extern void cmd_show_list (struct cmd_list_element *, int, const char *);
+extern void cmd_show_list (struct cmd_list_element *, int);
 
 /* Used everywhere whenever at least one parameter is required and
    none is specified.  */
index 23e938b010256dfe39557e98d33a5d91b4a16bf9..76e7ce6ab721a2cee38aa226f5314ef77ca8de53 100644 (file)
@@ -259,7 +259,7 @@ show_index_cache_command (const char *arg, int from_tty)
   auto restore_flag = make_scoped_restore (&in_show_index_cache_command, true);
 
   /* Call all "show index-cache" subcommands.  */
-  cmd_show_list (show_index_cache_prefix_list, from_tty, "");
+  cmd_show_list (show_index_cache_prefix_list, from_tty);
 
   printf_unfiltered ("\n");
   printf_unfiltered
index 820af44416cc9eb704763778415c1c91799aa4ea..bff0ad0532990a9d5679493cb51ed63c972f7cb3 100644 (file)
@@ -1,3 +1,7 @@
+2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+
+       * gdb.base/default.exp: Update output following fixes.
+
 2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
 
        * gdb.base/alias.exp: Test aliases starting with a prefix of
index 95b92c4871696332ac5a81c3f8e6b6faed648a4c..c34bb9a92a956cf25739141f220c4c897b2b46e8 100644 (file)
@@ -559,7 +559,7 @@ gdb_test "show args" "Argument list to give program being debugged when it is st
 
 # test show check abbreviations
 foreach x {"c" "ch" "check"} {
-    gdb_test "show $x" "range:  *Range checking is \"auto; currently off\".(\[^\r\n\]*\[\r\n\])+type:  *Strict type checking is on\..*" \
+    gdb_test "show $x" "check range:  *Range checking is \"auto; currently off\".(\[^\r\n\]*\[\r\n\])+check type:  *Strict type checking is on\..*" \
        "show check \"$x\" abbreviation"
 }
 
@@ -645,7 +645,7 @@ gdb_test "show history save" "Saving of the history record on exit is on."
 #test show history size
 gdb_test "show history size" "The size of the command history is.*"
 #test show history
-gdb_test "show history" "expansion:  *History expansion on command input is o(\[^\r\n\]*\[\r\n\])+filename:  *The filename in which to record the command history is.*.gdb_history(\[^\r\n\]*\[\r\n\])+save: *Saving of the history record on exit is o(\[^\r\n\]*\[\r\n\])+size: * The size of the command history is.*"
+gdb_test "show history" "history expansion:  *History expansion on command input is o(\[^\r\n\]*\[\r\n\])+history filename:  *The filename in which to record the command history is.*.gdb_history(\[^\r\n\]*\[\r\n\])+history save: *Saving of the history record on exit is o(\[^\r\n\]*\[\r\n\])+history size: * The size of the command history is.*"
 #test show language
 gdb_test "show language" "The current source language is \"auto; currently c\"."
 #test show listsize
This page took 0.033695 seconds and 4 git commands to generate.