Inferior without argument prints detail of current inferior.
authorLancelot SIX <lsix@lancelotsix.com>
Wed, 6 Jan 2021 20:58:04 +0000 (20:58 +0000)
committerLancelot SIX <lsix@lancelotsix.com>
Tue, 2 Feb 2021 22:37:39 +0000 (22:37 +0000)
This patch makes the inferior command display information about the
current inferior when called with no argument.  This behavior is similar
to the one of the thread command.

Before patch:

    (gdb) info inferior
      Num  Description       Connection           Executable
    * 1    process 19221     1 (native)           /home/lsix/tmp/a.out
      2    process 19239     1 (native)           /home/lsix/tmp/a.out
    (gdb) inferior 2
    [Switching to inferior 2 [process 19239] (/home/lsix/tmp/a.out)]
    [Switching to thread 2.1 (process 19239)]
    #0  0x0000000000401146 in main ()
    (gdb) inferior
    Argument required (expression to compute).

After patch:

    (gdb) info inferior
      Num  Description       Connection           Executable
    * 1    process 18699     1 (native)           /home/lsix/tmp/a.out
      2    process 18705     1 (native)           /home/lsix/tmp/a.out
    (gdb) inferior 2
    [Switching to inferior 2 [process 18705] (/home/lsix/tmp/a.out)]
    [Switching to thread 2.1 (process 18705)]
    #0  0x0000000000401146 in main ()
    (gdb) inferior
    [Current inferior is 2 [process 18705] (/home/lsix/tmp/a.out)]

gdb/doc/ChangeLog:

* gdb.texinfo (Inferiors Connections and Programs): Document the
inferior command when used without argument.

gdb/ChangeLog:

* NEWS: Add entry for the behavior change of the inferior command.
* inferior.c (inferior_command): When no argument is given to the
inferior command, display info about the currently selected
inferior.

gdb/testsuite/ChangeLog:

* gdb.base/inferior-noarg.c: New test.
* gdb.base/inferior-noarg.exp: New test.

gdb/ChangeLog
gdb/NEWS
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/inferior.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/inferior-noarg.c [new file with mode: 0644]
gdb/testsuite/gdb.base/inferior-noarg.exp [new file with mode: 0644]

index 739b39e50ff148542f2b41fcf603b4d242de8274..209834a15fc4403b9560ce97081725b4420a07f3 100644 (file)
@@ -1,3 +1,11 @@
+2021-02-02  Lancelot SIX  <lsix@lancelotsix.com>
+
+       * NEWS (Changed commands): Add entry for the behavior change of
+       the inferior command.
+       * inferior.c (inferior_command): When no argument is given to the
+       inferior command, display info about the currently selected
+       inferior.
+
 2021-02-02  Simon Marchi  <simon.marchi@efficios.com>
 
        * dwarf2/read.c (read_loclist_index, read_rnglist_index): Return
index d2ed28857b0c05c5fe1f4e7cd54f5b24641e396b..d4c76570331fe0181cb8cac291abb3f126c9d562 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -80,6 +80,12 @@ set style version background COLOR
 set style version intensity VALUE
   Control the styling of GDB's version number text.
 
+inferior [ID]
+  When the ID parameter is omitted, then this command prints information
+  about the current inferior.  When the ID parameter is present, the
+  behavior of the command is unchanged and have the inferior ID become
+  the current inferior.
+
 *** Changes in GDB 10
 
 * There are new feature names for ARC targets: "org.gnu.gdb.arc.core"
index 2d6517d279c21d1649f3b2d6dc31afdc3fa6fdae..7b21966d3d49b010ec5903352ac3f56ce6f0d5a3 100644 (file)
@@ -1,3 +1,8 @@
+2021-02-02  Lancelot SIX  <lsix@lancelotsix.com>
+
+       * gdb.texinfo (Inferiors Connections and Programs): Document the
+       inferior command when used without argument.
+
 2021-01-27  Tom Tromey  <tromey@adacore.com>
 
        * gdb.texinfo (Auto-loading extensions): Remove extraneous space.
index 84243a72eafdb2f390af385ebaf1587fd2b1d038..174fd6d0ffc0f707e9e38aee5e65cb4c2732d240 100644 (file)
@@ -3118,6 +3118,22 @@ For example,
   2    process 2307      2 (extended-remote host:10000)  hello
 @end smallexample
 
+To get informations about the current inferior, use @code{inferior}:
+
+@table @code
+@kindex inferior
+@item inferior
+Shows information about the current inferior.
+
+For example,
+@end table
+@c end table here to get a little more width for example
+
+@smallexample
+(@value{GDBP}) inferior
+[Current inferior is 1 [process 3401] (helloworld)]
+@end smallexample
+
 To find out what open target connections exist at any moment, use
 @w{@code{info connections}}:
 
index 3ff0512c381e03ea1ef03c37460948b8b19c6c9b..49f869a4c783a93472b2c2bec082c0a2316dae8b 100644 (file)
@@ -635,34 +635,50 @@ inferior_command (const char *args, int from_tty)
   struct inferior *inf;
   int num;
 
-  num = parse_and_eval_long (args);
-
-  inf = find_inferior_id (num);
-  if (inf == NULL)
-    error (_("Inferior ID %d not known."), num);
-
-  if (inf->pid != 0)
+  if (args == nullptr)
     {
-      if (inf != current_inferior ())
-       {
-         thread_info *tp = any_thread_of_inferior (inf);
-         if (tp == NULL)
-           error (_("Inferior has no threads."));
+      inf = current_inferior ();
+      gdb_assert (inf != nullptr);
+      const char *filename = inf->pspace->exec_filename.get ();
 
-         switch_to_thread (tp);
-       }
+      if (filename == nullptr)
+       filename = _("<noexec>");
 
-      gdb::observers::user_selected_context_changed.notify
-       (USER_SELECTED_INFERIOR
-        | USER_SELECTED_THREAD
-        | USER_SELECTED_FRAME);
+      printf_filtered (_("[Current inferior is %d [%s] (%s)]\n"),
+                      inf->num, inferior_pid_to_str (inf->pid).c_str (),
+                      filename);
     }
   else
     {
-      switch_to_inferior_no_thread (inf);
+      num = parse_and_eval_long (args);
+
+      inf = find_inferior_id (num);
+      if (inf == NULL)
+       error (_("Inferior ID %d not known."), num);
+
+      if (inf->pid != 0)
+       {
+         if (inf != current_inferior ())
+           {
+             thread_info *tp = any_thread_of_inferior (inf);
+             if (tp == NULL)
+               error (_("Inferior has no threads."));
 
-      gdb::observers::user_selected_context_changed.notify
-       (USER_SELECTED_INFERIOR);
+             switch_to_thread (tp);
+           }
+
+         gdb::observers::user_selected_context_changed.notify
+           (USER_SELECTED_INFERIOR
+            | USER_SELECTED_THREAD
+            | USER_SELECTED_FRAME);
+       }
+      else
+       {
+         switch_to_inferior_no_thread (inf);
+
+         gdb::observers::user_selected_context_changed.notify
+           (USER_SELECTED_INFERIOR);
+       }
     }
 }
 
index f03b2db727bf7b8148cee600cf2703023fe37c83..5731d0e08b09cb4ad146d0862f6cc0fb93983c0d 100644 (file)
@@ -1,3 +1,8 @@
+2021-02-02  Lancelot SIX  <lsix@lancelotsix.com>
+
+       * gdb.base/inferior-noarg.c: New test.
+       * gdb.base/inferior-noarg.exp: New test.
+
 2021-02-02  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * gdb.base/scope.exp: Use proc_with_prefix.
diff --git a/gdb/testsuite/gdb.base/inferior-noarg.c b/gdb/testsuite/gdb.base/inferior-noarg.c
new file mode 100644 (file)
index 0000000..bfe52c0
--- /dev/null
@@ -0,0 +1,22 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2021 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+int
+main (void)
+{
+  return 0;
+}
diff --git a/gdb/testsuite/gdb.base/inferior-noarg.exp b/gdb/testsuite/gdb.base/inferior-noarg.exp
new file mode 100644 (file)
index 0000000..65d23fe
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 2021 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# This test case checks that the 'inferior' command, when given no
+# argument, displays information about the inferior currently active.
+
+standard_testfile
+
+if { [prepare_for_testing "failed to prepare" \
+       ${testfile} ${srcfile}] } {
+    return
+}
+
+gdb_test "inferior" "\[Current inferior is 1 \[<null>\] (.*)\]" "inferior not running"
+
+if { ![runto_main] } {
+    untested "could not run to main"
+    return
+}
+
+gdb_test "inferior" {\[Current inferior is 1 \[.*\] (.*)\]} "inferior running"
+gdb_test "clone-inferior" "Added inferior 2.*" "create new inferior"
+gdb_test "inferior 2" "\[Switching to inferior 2 \[<null>\] (.*)]" "change inferior"
+gdb_test "inferior" "\[Current inferior is 2 \[<null>\] (.*)\]" "show new inferior"