Fix regression in pointer-to-member printing
authorTom Tromey <tromey@adacore.com>
Tue, 18 Oct 2022 17:32:52 +0000 (11:32 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 31 Oct 2022 14:49:06 +0000 (08:49 -0600)
PR c++/29243 points out that "info func" on a certain C++ executable
will cause an infinite loop in gdb.

I tracked this down to a bug introduced by commit 6b5a7bc76 ("Handle
member pointers directly in generic_value_print").  Before this
commit, the C++ code to print a member pointer would wind up calling
value_print_scalar_formatted; but afterward it simply calls
generic_value_print and gets into a loop.

This patch restores the previous behavior and adds a regression test.

gdb/testsuite/gdb.cp/member-ptr.cc
gdb/testsuite/gdb.cp/member-ptr.exp
gdb/valprint.c

index 22ffcc58d3922ef03175cce739412f2b34e7e597..a563d2e6af3a591369449048354ec589e6374e00 100644 (file)
@@ -142,6 +142,11 @@ int Diamond::vget_base ()
   return this->Left::x + 2000;
 }
 
+struct Container
+{
+  PMI member;
+};
+
 int
 func (int x)
 {
@@ -205,6 +210,9 @@ int main ()
   null_pmi = NULL;
   null_pmf = NULL;
 
+  Container contain;
+  contain.member = &A::j;
+
   pmi = NULL; /* Breakpoint 1 here.  */
 
   (diamond.*diamond_pfunc_ptr) (20);
index 110497b893bf495680fb757e9c865eede7528225..5b91bcb493af7d374350cd1f2c9c29ed3701c3bd 100644 (file)
@@ -628,3 +628,7 @@ gdb_test "print null_pmi = 0" "$vhn = NULL"
 gdb_test "print null_pmf" "$vhn = NULL"
 gdb_test "print null_pmf = &A::foo" "$vhn = \\(int \\(A::\\*\\)\\(A \\*( const)?, int\\)\\) $hex <A::foo ?\\(int\\)>"
 gdb_test "print null_pmf = 0" "$vhn = NULL"
+
+# Print with a format, bypassing the direct call to the scalar
+# printer.  See PR c++/29243.
+gdb_test "print/x contain" " = {member = $hex}"
index 25db57ea7946c9c53065d34f6de457265dd09afa..48d611ecf8a1eecaae3a917a225ef5bb21f677e3 100644 (file)
@@ -879,7 +879,7 @@ generic_value_print_memberptr
       cp_print_class_member (valaddr, type, stream, "&");
     }
   else
-    generic_value_print (val, stream, recurse, options, decorations);
+    value_print_scalar_formatted (val, options, 0, stream);
 }
 
 /* See valprint.h.  */