Fix 7.8 regression: resolve_dynamic_struct: Assertion `TYPE_NFIELDS (type) > 0' ...
authorJan Kratochvil <jan.kratochvil@redhat.com>
Sat, 13 Dec 2014 14:31:59 +0000 (15:31 +0100)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Sat, 13 Dec 2014 14:31:59 +0000 (15:31 +0100)
https://sourceware.org/bugzilla/show_bug.cgi?id=17642

Regression since:
commit 012370f6818657a816df1463ee71ca4e4ee40b33
Author: Tom Tromey <tromey@redhat.com>
Date:   Thu May 8 11:26:44 2014 -0600
    handle VLA in a struct or union

Bugreport:
Regression with gdb scripts for Linux kernel
https://sourceware.org/ml/gdb/2014-08/msg00127.html

That big change after "else" is just reindentation.

gdb/ChangeLog
2014-12-13  Jan Kratochvil  <jan.kratochvil@redhat.com>

PR symtab/17642
* gdbtypes.c (resolve_dynamic_type_internal): Apply check_typedef to
TYPE if not TYPE_CODE_TYPEDEF.

gdb/testsuite/ChangeLog
2014-12-13  Jan Kratochvil  <jan.kratochvil@redhat.com>

PR symtab/17642
* gdb.base/vla-stub-define.c: New file.
* gdb.base/vla-stub.c: New file.
* gdb.base/vla-stub.exp: New file.

gdb/ChangeLog
gdb/gdbtypes.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/vla-stub-define.c [new file with mode: 0644]
gdb/testsuite/gdb.base/vla-stub.c [new file with mode: 0644]
gdb/testsuite/gdb.base/vla-stub.exp [new file with mode: 0644]

index 45e2fb5cf58a572a76927b9519c35b30789c7a8f..7c3c2b94bcf8872b02a5dbbd7d523e333566d2e3 100644 (file)
@@ -1,3 +1,9 @@
+2014-12-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       PR symtab/17642
+       * gdbtypes.c (resolve_dynamic_type_internal): Apply check_typedef to
+       TYPE if not TYPE_CODE_TYPEDEF.
+
 2014-12-12  Doug Evans  <xdje42@gmail.com>
 
        * valops.c (value_maybe_namespace_elt): Remove unnecessary test of
index 7d842e97d1e166488aab702e17763c1502f58031..c5a390a9533260497afb707e6bf719a41086a0b8 100644 (file)
@@ -1888,41 +1888,47 @@ resolve_dynamic_type_internal (struct type *type, CORE_ADDR addr,
   if (!is_dynamic_type_internal (real_type, top_level))
     return type;
 
-  switch (TYPE_CODE (type))
+  if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
     {
-    case TYPE_CODE_TYPEDEF:
       resolved_type = copy_type (type);
       TYPE_TARGET_TYPE (resolved_type)
        = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type), addr,
                                         top_level);
-      break;
+    }
+  else 
+    {
+      /* Before trying to resolve TYPE, make sure it is not a stub.  */
+      type = real_type;
 
-    case TYPE_CODE_REF:
-      {
-       CORE_ADDR target_addr = read_memory_typed_address (addr, type);
+      switch (TYPE_CODE (type))
+       {
+       case TYPE_CODE_REF:
+         {
+           CORE_ADDR target_addr = read_memory_typed_address (addr, type);
 
-       resolved_type = copy_type (type);
-       TYPE_TARGET_TYPE (resolved_type)
-         = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type),
-                                          target_addr, top_level);
-       break;
-      }
+           resolved_type = copy_type (type);
+           TYPE_TARGET_TYPE (resolved_type)
+             = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type),
+                                              target_addr, top_level);
+           break;
+         }
 
-    case TYPE_CODE_ARRAY:
-      resolved_type = resolve_dynamic_array (type, addr);
-      break;
+       case TYPE_CODE_ARRAY:
+         resolved_type = resolve_dynamic_array (type, addr);
+         break;
 
-    case TYPE_CODE_RANGE:
-      resolved_type = resolve_dynamic_range (type, addr);
-      break;
+       case TYPE_CODE_RANGE:
+         resolved_type = resolve_dynamic_range (type, addr);
+         break;
 
-    case TYPE_CODE_UNION:
-      resolved_type = resolve_dynamic_union (type, addr);
-      break;
+       case TYPE_CODE_UNION:
+         resolved_type = resolve_dynamic_union (type, addr);
+         break;
 
-    case TYPE_CODE_STRUCT:
-      resolved_type = resolve_dynamic_struct (type, addr);
-      break;
+       case TYPE_CODE_STRUCT:
+         resolved_type = resolve_dynamic_struct (type, addr);
+         break;
+       }
     }
 
   /* Resolve data_location attribute.  */
index 5e441978ab307fb5879d8d430e161e82bdc5bd0d..a0acd983e644e22fae9ea892a62a5262179d909d 100644 (file)
@@ -1,3 +1,10 @@
+2014-12-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       PR symtab/17642
+       * gdb.base/vla-stub-define.c: New file.
+       * gdb.base/vla-stub.c: New file.
+       * gdb.base/vla-stub.exp: New file.
+
 2014-12-12  Phil Muldoon  <pmuldoon@redhat.com>
            Jan Kratochvil  <jan.kratochvil@redhat.com>
            Tom Tromey  <tromey@redhat.com>
diff --git a/gdb/testsuite/gdb.base/vla-stub-define.c b/gdb/testsuite/gdb.base/vla-stub-define.c
new file mode 100644 (file)
index 0000000..7445a4f
--- /dev/null
@@ -0,0 +1,21 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2014 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/>.  */
+
+struct dynamic_struct
+{
+  int dynamic_field[0];
+} use_dynamic_struct;
diff --git a/gdb/testsuite/gdb.base/vla-stub.c b/gdb/testsuite/gdb.base/vla-stub.c
new file mode 100644 (file)
index 0000000..b7ccf04
--- /dev/null
@@ -0,0 +1,37 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2014 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/>.  */
+
+struct dynamic_struct;
+typedef struct dynamic_struct dynamic_struct_t;
+
+struct static_struct
+{
+  int field;
+};
+typedef struct static_struct static_struct_t;
+
+struct local_struct
+{
+  static_struct_t here;
+  dynamic_struct_t *ptr;
+} local_struct;
+
+int
+main (void)
+{
+  return 0;
+}
diff --git a/gdb/testsuite/gdb.base/vla-stub.exp b/gdb/testsuite/gdb.base/vla-stub.exp
new file mode 100644 (file)
index 0000000..f8c9a91
--- /dev/null
@@ -0,0 +1,25 @@
+# Copyright 2014 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/>.
+
+standard_testfile .c vla-stub-define.c
+if { [prepare_for_testing "failed to prepare for vla-stub.exp" \
+      ${testfile} [list ${srcfile} ${srcfile2}]] } {
+    return -1
+}
+
+gdb_test "p *local_struct.ptr" { = {dynamic_field = 0x0}}
+
+gdb_test "whatis local_struct.here" "type = static_struct_t"
+gdb_test "whatis *local_struct.ptr" "type = dynamic_struct_t"
This page took 0.040536 seconds and 4 git commands to generate.