* hpread.c (struct hpread_symfile_info): Delete have_module field
authorJeff Law <law@redhat.com>
Wed, 28 Sep 1994 06:42:24 +0000 (06:42 +0000)
committerJeff Law <law@redhat.com>
Wed, 28 Sep 1994 06:42:24 +0000 (06:42 +0000)
and accessor macro.  Minor indentation fix.
(hpread_build_psymtabs, case K_MODULE):  Only start a new psymtab
and reset state variables have_name & texthigh if pst is NULL.
(hpread_build_psymtabs, case K_SRCFILE): Only reset the name of a
partial symbol table if pst is non-NULL.  If pst is NULL, then
start a new psymtab.
(hpread_process_one_debug_symbol, case K_MODULE): Now empty.
(hpread_process_one_debug_symbol, case K_SRCFILE): Simplify and
correct handling of subfiles.

gdb/ChangeLog.hpread
gdb/hpread.c

index 375ffd15827b3234eb66d60d9f2cd90cc9a3e468..57116c4e28db12e6beba2b7f73bd4c280ee43dce 100644 (file)
@@ -1,3 +1,16 @@
+Wed Sep 28 00:35:23 1994  Jeff Law  (law@snake.cs.utah.edu)
+
+       * hpread.c (struct hpread_symfile_info): Delete have_module field
+       and accessor macro.  Minor indentation fix.
+       (hpread_build_psymtabs, case K_MODULE):  Only start a new psymtab
+       and reset state variables have_name & texthigh if pst is NULL.
+       (hpread_build_psymtabs, case K_SRCFILE): Only reset the name of a
+       partial symbol table if pst is non-NULL.  If pst is NULL, then
+       start a new psymtab.
+       (hpread_process_one_debug_symbol, case K_MODULE): Now empty.
+       (hpread_process_one_debug_symbol, case K_SRCFILE): Simplify and
+       correct handling of subfiles.
+
 Fri Aug 19 10:36:15 1994  Jeff Law  (law@snake.cs.utah.edu)
 
        * Makefile.in (ALLDEPFILES): Add hpread.c.
index f3acc7e5be3f91b3a7620174649cd8c275980572..431c945df7453e5063a3920f8a63530830147303 100644 (file)
@@ -60,12 +60,11 @@ struct hpread_symfile_info
   SLTPOINTER sl_index;
 
   /* Some state variables we'll need.  */
-  int have_module;
   int within_function;
 
-   /* Keep track of the current function's address.  We may need to look
-      up something based on this address.  */
-   unsigned int current_function_value;
+  /* Keep track of the current function's address.  We may need to look
+     up something based on this address.  */
+  unsigned int current_function_value;
 
 };
 
@@ -82,7 +81,6 @@ struct hpread_symfile_info
 #define TYPE_VECTOR(o)          (HPUX_SYMFILE_INFO(o)->type_vector)
 #define TYPE_VECTOR_LENGTH(o)   (HPUX_SYMFILE_INFO(o)->type_vector_length)
 #define SL_INDEX(o)             (HPUX_SYMFILE_INFO(o)->sl_index)
-#define HAVE_MODULE(o)          (HPUX_SYMFILE_INFO(o)->have_module)
 #define WITHIN_FUNCTION(o)      (HPUX_SYMFILE_INFO(o)->within_function)
 #define CURRENT_FUNCTION_VALUE(o) (HPUX_SYMFILE_INFO(o)->current_function_value)
 
@@ -430,12 +428,13 @@ hpread_build_psymtabs (objfile, section_offsets, mainline)
                  }
 
 
-               if (HAVE_MODULE (objfile))
+               if (pst)
                  {
                    if (!have_name)
                      {
-                       pst->filename =
-                         (char *) obstack_alloc (&pst->objfile->psymbol_obstack, strlen (namestring) + 1);
+                       pst->filename = (char *)
+                         obstack_alloc (&pst->objfile->psymbol_obstack,
+                                        strlen (namestring) + 1);
                        strcpy (pst->filename, namestring);
                        have_name = 1;
                        continue;
@@ -468,6 +467,7 @@ hpread_build_psymtabs (objfile, section_offsets, mainline)
                                            objfile->global_psymbols.next,
                                            objfile->static_psymbols.next);
                texthigh = valu;
+               have_name = 1;
                continue;
              }
 
@@ -478,14 +478,16 @@ hpread_build_psymtabs (objfile, section_offsets, mainline)
              SET_NAMESTRING (dn_bufp, &namestring, objfile);
              valu = hpread_get_textlow (i, hp_symnum, objfile);
              valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
-             pst = hpread_start_psymtab (objfile, section_offsets,
-                                         namestring, valu,
-                                         hp_symnum * DNTTBLOCKSIZE,
-                                         objfile->global_psymbols.next,
-                                         objfile->static_psymbols.next);
-             texthigh = valu;
-             HAVE_MODULE (objfile) = 1;
-             have_name = 0;
+             if (!pst)
+               {
+                 pst = hpread_start_psymtab (objfile, section_offsets,
+                                             namestring, valu,
+                                             hp_symnum * DNTTBLOCKSIZE,
+                                             objfile->global_psymbols.next,
+                                             objfile->static_psymbols.next);
+                 texthigh = valu;
+                 have_name = 0;
+               }
              continue;
            case K_FUNCTION:
            case K_ENTRY:
@@ -515,7 +517,6 @@ hpread_build_psymtabs (objfile, section_offsets, mainline)
                  pst = (struct partial_symtab *) 0;
                  includes_used = 0;
                  dependencies_used = 0;
-                 HAVE_MODULE (objfile) = 0;
                  have_name = 0;
                }
              if (dn_bufp->dend.endkind == K_FUNCTION)
@@ -1762,7 +1763,6 @@ hpread_process_one_debug_symbol (dn_bufp, name, section_offsets, objfile,
   DNTTPOINTER hp_type;
   struct symbol *sym;
   struct context_stack *new;
-  char *p;
 
   /* Allocate one GDB debug symbol and fill in some default values.  */
   sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
@@ -1793,37 +1793,18 @@ hpread_process_one_debug_symbol (dn_bufp, name, section_offsets, objfile,
          (if any) and start accumulating a new symbol table.  */
 
       valu = text_offset + offset;     /* Relocate for dynamic loading */
-      p = strrchr (name, '.');
-      if (!strcmp (p, ".h") || HAVE_MODULE (objfile)
-         || (last_source_file && !strcmp (name, last_source_file)))
-       {
-         SL_INDEX (objfile) = hpread_record_lines (current_subfile,
-                                                   SL_INDEX (objfile),
-                                                   dn_bufp->dsfile.address,
-                                                   objfile);
-         start_subfile (name, NULL);
-         break;
-       }
+      if (!last_source_file)
+       start_symtab (name, NULL, valu);
 
-      if (last_source_file)
-       {
-         SL_INDEX (objfile) = hpread_record_lines (current_subfile,
-                                                   SL_INDEX (objfile),
-                                                   dn_bufp->dsfile.address,
-                                                   objfile);
-         end_symtab (valu + text_size, 0, 0, objfile, 0);
-       }
-
-      SL_INDEX (objfile) = dn_bufp->dsfile.address;
-      start_symtab (name, NULL, valu);
+      SL_INDEX (objfile) = hpread_record_lines (current_subfile,
+                                               SL_INDEX (objfile),
+                                               dn_bufp->dsfile.address,
+                                               objfile);
+      start_subfile (name, NULL);
       break;
-
+      
     case K_MODULE:
-      /* This kind of symbol indicates the start of a module or C source
-         file */
-      valu = text_offset + offset;     /* Relocate for dynamic loading */
-      SL_INDEX (objfile) = dn_bufp->dmodule.address;
-      start_symtab (filename, NULL, valu);
+      /* No need to do anything with these K_MODULE symbols anymore.  */
       break;
 
     case K_FUNCTION:
This page took 0.028083 seconds and 4 git commands to generate.