Add d_main_name to set the logical entry point for D programs.
authorIain Buclaw <ibuclaw@gdcproject.org>
Sat, 18 Jan 2014 17:09:43 +0000 (17:09 +0000)
committerIain Buclaw <ibuclaw@gdcproject.org>
Sat, 18 Jan 2014 18:10:32 +0000 (18:10 +0000)
gdb/ChangeLog:
2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>

    * d-lang.h (d_main_name): Add declaration.
    * d-lang.c (d_main_name): New function.
    * symtab.c (find_main_name): Add call to d_main_name.

gdb/ChangeLog
gdb/d-lang.c
gdb/d-lang.h
gdb/symtab.c

index e26922b9484d750ff9e1ca18f39b87cb98061543..4715d3149a85beb685f6ef5da344ce2d96cff844 100644 (file)
@@ -1,3 +1,9 @@
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * d-lang.h (d_main_name): Add declaration.
+       * d-lang.c (d_main_name): New function.
+       * symtab.c (find_main_name): Add call to d_main_name.
+
 2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
 
        * d-lang.c (d_language_defn): Change macro_expansion_c to
index 766b5fa81b01c50b8b42a6aaa1737c5046afc9f7..b6938290846d404a9b936da8ceea76a99fd0daa5 100644 (file)
 
 #include <ctype.h>
 
+/* The name of the symbol to use to get the name of the main subprogram.  */
+static const char D_MAIN[] = "D main";
+
+/* Function returning the special symbol name used by D for the main
+   procedure in the main program if it is found in minimal symbol list.
+   This function tries to find minimal symbols so that it finds them even
+   if the program was compiled without debugging information.  */
+
+const char *
+d_main_name (void)
+{
+  struct minimal_symbol *msym;
+
+  msym = lookup_minimal_symbol (D_MAIN, NULL, NULL);
+  if (msym != NULL)
+    return D_MAIN;
+
+  /* No known entry procedure found, the main program is probably not D.  */
+  return NULL;
+}
+
 /* Extract identifiers from MANGLED_STR and append it to TEMPBUF.
    Return 1 on success or 0 on failure.  */
 static int
index 8834a1d6c0a42ac0ef90640ce03db3b89293654e..9ede338f13c1bbe0fb6114c3980f4cab217f241e 100644 (file)
 
 #include "symtab.h"
 
+/* Defined in d-lang.c  */
+
+extern const char *d_main_name (void);
+
 extern char *d_demangle (const char *mangled, int options);
 
 extern void d_val_print (struct type *type, const gdb_byte *valaddr,
index 09b2326ed5276026a772c3cf750f972a9af3fd2f..97b85b84ac5ccc45e58a486289769b95e51a6f59 100644 (file)
@@ -5122,6 +5122,13 @@ find_main_name (void)
       return;
     }
 
+  new_main_name = d_main_name ();
+  if (new_main_name != NULL)
+    {
+      set_main_name (new_main_name, language_d);
+      return;
+    }
+
   new_main_name = go_main_name ();
   if (new_main_name != NULL)
     {