Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Gaius Mulley <gaius@glam.ac.uk>
To: gdb-patches@sources.redhat.com
Subject: patch for dwarf2read.c
Date: Mon, 17 Nov 2008 20:42:00 -0000	[thread overview]
Message-ID: <877i724s7s.fsf@j228-gm.comp.glam.ac.uk> (raw)


Hi,

here is a patch for dwarf2read.c which fixes a cyclic recursive bug
when gdb is asked to resolve the following Modula-2 procedure type:

  ScanClass = (padding, valid, invalid, terminator);
  ScanState = PROCEDURE (CHAR, VAR ScanClass, VAR ScanState);

when compiled by gm2.

regards,
Gaius



--- orig/src/gdb/dwarf2read.c	2008-11-16 23:51:59.000000000 +0000
+++ modified/src/gdb/dwarf2read.c	2008-11-16 23:47:51.000000000 +0000
@@ -769,6 +769,9 @@
 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
 				     struct dwarf2_cu *cu);
 
+static void add_partial_subroutine_type (struct partial_die_info *enum_pdi,
+					 struct dwarf2_cu *cu);
+
 static void add_partial_subprogram (struct partial_die_info *pdi,
 				    CORE_ADDR *lowpc, CORE_ADDR *highpc,
 				    struct dwarf2_cu *cu);
@@ -2287,6 +2290,32 @@
     }
 }
 
+/* Read a partial die corresponding to a subroutine type.  */
+
+static void
+add_partial_subroutine_type (struct partial_die_info *subroutine_type_pdi,
+			     struct dwarf2_cu *cu)
+{
+  struct objfile *objfile = cu->objfile;
+  bfd *abfd = objfile->obfd;
+  struct partial_die_info *pdi;
+
+  if (subroutine_type_pdi->name != NULL)
+    add_partial_symbol (subroutine_type_pdi, cu);
+
+  pdi = subroutine_type_pdi->die_child;
+  while (pdi)
+    {
+      if (pdi->tag != DW_TAG_formal_parameter
+	  || pdi->tag != DW_TAG_unspecified_parameters
+	  || pdi->name == NULL)
+	complaint (&symfile_complaints, _("malformed parameter DIE ignored"));
+      else
+	add_partial_symbol (pdi, cu);
+      pdi = pdi->die_sibling;
+    }
+}
+
 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
    Return the corresponding abbrev, or NULL if the number is zero (indicating
    an empty DIE).  In either case *BYTES_READ will be set to the length of
@@ -4946,7 +4975,16 @@
      the default value DW_CC_normal.  */
   attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
   TYPE_CALLING_CONVENTION (ftype) = attr ? DW_UNSND (attr) : DW_CC_normal;
-  
+
+  TYPE_STUB_SUPPORTED (ftype) = 1;
+  if (die_is_declaration (die, cu))
+    TYPE_STUB (ftype) = 1;
+
+  /* We need to add the type field to the die immediately so we don't
+     infinitely recurse when dealing with parameters declared as
+     the same subroutine type. */
+  set_die_type (die, ftype, cu);
+
   if (die->child != NULL)
     {
       struct die_info *child_die;
@@ -4993,7 +5031,7 @@
 	}
     }
 
-  return set_die_type (die, ftype, cu);
+  return ftype;
 }
 
 static struct type *
@@ -5598,8 +5636,8 @@
     case DW_TAG_ptr_to_member_type:
     case DW_TAG_set_type:
     case DW_TAG_string_type:
-    case DW_TAG_subroutine_type:
 #endif
+    case DW_TAG_subroutine_type:
     case DW_TAG_base_type:
     case DW_TAG_class_type:
     case DW_TAG_interface_type:


             reply	other threads:[~2008-11-17  9:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-17 20:42 Gaius Mulley [this message]
2008-11-17 21:02 ` Gaius Mulley
2008-11-17 22:01 ` Daniel Jacobowitz
2008-11-20  1:56   ` Gaius Mulley

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877i724s7s.fsf@j228-gm.comp.glam.ac.uk \
    --to=gaius@glam.ac.uk \
    --cc=gdb-patches@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox