2002-04-24 Pierre Muller <ics.u-strasbg.fr>
[external/binutils.git] / gdb / hpread.c
1 /* Read hp debug symbols and convert to internal format, for GDB.
2    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3    Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.
21
22    Written by the Center for Software Science at the University of Utah
23    and by Cygnus Support.  */
24
25 #include "defs.h"
26 #include "bfd.h"
27 #include "gdb_string.h"
28 #include "hp-symtab.h"
29 #include "syms.h"
30 #include "symtab.h"
31 #include "symfile.h"
32 #include "objfiles.h"
33 #include "buildsym.h"
34 #include "complaints.h"
35 #include "gdb-stabs.h"
36 #include "gdbtypes.h"
37 #include "demangle.h"
38
39 /* Private information attached to an objfile which we use to find
40    and internalize the HP C debug symbols within that objfile.  */
41
42 struct hpread_symfile_info
43   {
44     /* The contents of each of the debug sections (there are 4 of them).  */
45     char *gntt;
46     char *lntt;
47     char *slt;
48     char *vt;
49
50     /* We keep the size of the $VT$ section for range checking.  */
51     unsigned int vt_size;
52
53     /* Some routines still need to know the number of symbols in the
54        main debug sections ($LNTT$ and $GNTT$). */
55     unsigned int lntt_symcount;
56     unsigned int gntt_symcount;
57
58     /* To keep track of all the types we've processed.  */
59     struct type **type_vector;
60     int type_vector_length;
61
62     /* Keeps track of the beginning of a range of source lines.  */
63     sltpointer sl_index;
64
65     /* Some state variables we'll need.  */
66     int within_function;
67
68     /* Keep track of the current function's address.  We may need to look
69        up something based on this address.  */
70     unsigned int current_function_value;
71   };
72
73 /* Accessor macros to get at the fields.  */
74 #define HPUX_SYMFILE_INFO(o) \
75   ((struct hpread_symfile_info *)((o)->sym_private))
76 #define GNTT(o)                 (HPUX_SYMFILE_INFO(o)->gntt)
77 #define LNTT(o)                 (HPUX_SYMFILE_INFO(o)->lntt)
78 #define SLT(o)                  (HPUX_SYMFILE_INFO(o)->slt)
79 #define VT(o)                   (HPUX_SYMFILE_INFO(o)->vt)
80 #define VT_SIZE(o)              (HPUX_SYMFILE_INFO(o)->vt_size)
81 #define LNTT_SYMCOUNT(o)        (HPUX_SYMFILE_INFO(o)->lntt_symcount)
82 #define GNTT_SYMCOUNT(o)        (HPUX_SYMFILE_INFO(o)->gntt_symcount)
83 #define TYPE_VECTOR(o)          (HPUX_SYMFILE_INFO(o)->type_vector)
84 #define TYPE_VECTOR_LENGTH(o)   (HPUX_SYMFILE_INFO(o)->type_vector_length)
85 #define SL_INDEX(o)             (HPUX_SYMFILE_INFO(o)->sl_index)
86 #define WITHIN_FUNCTION(o)      (HPUX_SYMFILE_INFO(o)->within_function)
87 #define CURRENT_FUNCTION_VALUE(o) (HPUX_SYMFILE_INFO(o)->current_function_value)
88
89 /* Given the native debug symbol SYM, set NAMEP to the name associated
90    with the debug symbol.  Note we may be called with a debug symbol which
91    has no associated name, in that case we return an empty string.
92
93    Also note we "know" that the name for any symbol is always in the
94    same place.  Hence we don't have to conditionalize on the symbol type.  */
95 #define SET_NAMESTRING(SYM, NAMEP, OBJFILE) \
96   if (! hpread_has_name ((SYM)->dblock.kind)) \
97     *NAMEP = ""; \
98   else if (((unsigned)(SYM)->dsfile.name) >= VT_SIZE (OBJFILE)) \
99     { \
100       complain (&string_table_offset_complaint, (char *) symnum); \
101       *NAMEP = ""; \
102     } \
103   else \
104     *NAMEP = (SYM)->dsfile.name + VT (OBJFILE)
105 \f
106 /* We put a pointer to this structure in the read_symtab_private field
107    of the psymtab.  */
108
109 struct symloc
110   {
111     /* The offset within the file symbol table of first local symbol for
112        this file.  */
113
114     int ldsymoff;
115
116     /* Length (in bytes) of the section of the symbol table devoted to
117        this file's symbols (actually, the section bracketed may contain
118        more than just this file's symbols).  If ldsymlen is 0, the only
119        reason for this thing's existence is the dependency list.
120        Nothing else will happen when it is read in.  */
121
122     int ldsymlen;
123   };
124
125 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
126 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
127 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
128 \f
129 /* FIXME: Shouldn't this stuff be in a .h file somewhere?  */
130 /* Complaints about the symbols we have encountered.  */
131 extern struct complaint string_table_offset_complaint;
132 extern struct complaint lbrac_unmatched_complaint;
133 extern struct complaint lbrac_mismatch_complaint;
134 \f
135 static struct complaint hpread_unhandled_end_common_complaint =
136 {
137   "unhandled symbol in hp-symtab-read.c: DNTT_TYPE_COMMON/DNTT_TYPE_END.\n", 0, 0
138 };
139
140 static struct complaint hpread_unhandled_type_complaint =
141 {
142   "hpread_type_translate: unhandled type code.", 0, 0
143 };
144
145 static struct complaint hpread_struct_complaint =
146 {
147   "hpread_read_struct_type: expected SVAR type...", 0, 0
148 };
149
150 static struct complaint hpread_array_complaint =
151 {
152   "error in hpread_array_type.", 0, 0
153 };
154
155 static struct complaint hpread_type_lookup_complaint =
156 {
157   "error in hpread_type_lookup().", 0, 0
158 };
159
160
161 static struct complaint hpread_unexpected_end_complaint =
162 {
163   "internal error in hp-symtab-read.c: Unexpected DNTT_TYPE_END kind.", 0, 0
164 };
165
166 static struct complaint hpread_tagdef_complaint =
167 {
168   "error processing class tagdef", 0, 0
169 };
170
171 static struct complaint hpread_unhandled_common_complaint =
172 {
173   "unhandled symbol in hp-symtab-read.c: DNTT_TYPE_COMMON.", 0, 0
174 };
175
176 static struct complaint hpread_unhandled_blockdata_complaint =
177 {
178   "unhandled symbol in hp-symtab-read.c: DNTT_TYPE_BLOCKDATA.", 0, 0
179 };
180
181 /* To generate dumping code, uncomment this define.  The dumping
182    itself is controlled by routine-local statics called "dumping". */
183 /* #define DUMPING         1 */
184
185 /* To use the quick look-up tables, uncomment this define. */
186 #define QUICK_LOOK_UP      1
187
188 /* To call PXDB to process un-processed files, uncomment this define. */
189 #define USE_PXDB           1
190
191 /* Forward procedure declarations */
192
193 void hpread_symfile_init (struct objfile *);
194
195 void do_pxdb (bfd *);
196
197 void hpread_build_psymtabs (struct objfile *, int);
198
199 void hpread_symfile_finish (struct objfile *);
200
201 static union dnttentry *hpread_get_gntt (int, struct objfile *);
202
203 static union dnttentry *hpread_get_lntt (int index, struct objfile *objfile);
204
205
206 static unsigned long hpread_get_textlow (int, int, struct objfile *, int);
207
208 static struct partial_symtab *hpread_start_psymtab
209   (struct objfile *, char *, CORE_ADDR, int,
210    struct partial_symbol **, struct partial_symbol **);
211
212 static struct partial_symtab *hpread_end_psymtab
213   (struct partial_symtab *, char **, int, int, CORE_ADDR,
214    struct partial_symtab **, int);
215
216 static unsigned long hpread_get_scope_start (sltpointer, struct objfile *);
217
218 static unsigned long hpread_get_line (sltpointer, struct objfile *);
219
220 static CORE_ADDR hpread_get_location (sltpointer, struct objfile *);
221
222 static void hpread_psymtab_to_symtab_1 (struct partial_symtab *);
223
224 void hpread_psymtab_to_symtab (struct partial_symtab *);
225
226 static struct symtab *hpread_expand_symtab
227   (struct objfile *, int, int, CORE_ADDR, int,
228    struct section_offsets *, char *);
229
230 static int hpread_type_translate (dnttpointer);
231
232 static struct type **hpread_lookup_type (dnttpointer, struct objfile *);
233
234 static struct type *hpread_alloc_type (dnttpointer, struct objfile *);
235
236 static struct type *hpread_read_enum_type
237   (dnttpointer, union dnttentry *, struct objfile *);
238
239 static struct type *hpread_read_function_type
240   (dnttpointer, union dnttentry *, struct objfile *, int);
241
242 static struct type *hpread_read_doc_function_type
243   (dnttpointer, union dnttentry *, struct objfile *, int);
244
245 static struct type *hpread_read_struct_type
246   (dnttpointer, union dnttentry *, struct objfile *);
247
248 static struct type *hpread_get_nth_template_arg (struct objfile *, int);
249
250 static struct type *hpread_read_templ_arg_type
251   (dnttpointer, union dnttentry *, struct objfile *, char *);
252
253 static struct type *hpread_read_set_type
254   (dnttpointer, union dnttentry *, struct objfile *);
255
256 static struct type *hpread_read_array_type
257   (dnttpointer, union dnttentry *dn_bufp, struct objfile *objfile);
258
259 static struct type *hpread_read_subrange_type
260   (dnttpointer, union dnttentry *, struct objfile *);
261
262 static struct type *hpread_type_lookup (dnttpointer, struct objfile *);
263
264 static sltpointer hpread_record_lines
265   (struct subfile *, sltpointer, sltpointer, struct objfile *, CORE_ADDR);
266
267 static void hpread_process_one_debug_symbol
268   (union dnttentry *, char *, struct section_offsets *,
269    struct objfile *, CORE_ADDR, int, char *, int, int *);
270
271 static int hpread_get_scope_depth (union dnttentry *, struct objfile *, int);
272
273 static void fix_static_member_physnames
274   (struct type *, char *, struct objfile *);
275
276 static void fixup_class_method_type
277   (struct type *, struct type *, struct objfile *);
278
279 static void hpread_adjust_bitoffsets (struct type *, int);
280
281 static dnttpointer hpread_get_next_skip_over_anon_unions
282   (int, dnttpointer, union dnttentry **, struct objfile *);
283
284 \f
285 /* Global to indicate presence of HP-compiled objects,
286    in particular, SOM executable file with SOM debug info 
287    Defined in symtab.c, used in hppa-tdep.c. */
288 extern int hp_som_som_object_present;
289
290 /* Static used to indicate a class type that requires a
291    fix-up of one of its method types */
292 static struct type *fixup_class = NULL;
293
294 /* Static used to indicate the method type that is to be
295    used to fix-up the type for fixup_class */
296 static struct type *fixup_method = NULL;
297
298 #ifdef USE_PXDB
299
300 /* NOTE use of system files!  May not be portable. */
301
302 #define PXDB_SVR4 "/opt/langtools/bin/pxdb"
303 #define PXDB_BSD  "/usr/bin/pxdb"
304
305 #include <stdlib.h>
306 #include "gdb_string.h"
307
308 /* check for the existence of a file, given its full pathname */
309 int
310 file_exists (char *filename)
311 {
312   if (filename)
313     return (access (filename, F_OK) == 0);
314   return 0;
315 }
316
317
318 /* Translate from the "hp_language" enumeration in hp-symtab.h
319    used in the debug info to gdb's generic enumeration in defs.h. */
320 static enum language
321 trans_lang (enum hp_language in_lang)
322 {
323   if (in_lang == HP_LANGUAGE_C)
324     return language_c;
325
326   else if (in_lang == HP_LANGUAGE_CPLUSPLUS)
327     return language_cplus;
328
329   else if (in_lang == HP_LANGUAGE_FORTRAN)
330     return language_fortran;
331
332   else
333     return language_unknown;
334 }
335
336 static char main_string[] = "main";
337 \f
338 /* Call PXDB to process our file.
339
340    Approach copied from DDE's "dbgk_run_pxdb".  Note: we
341    don't check for BSD location of pxdb, nor for existence
342    of pxdb itself, etc.
343
344    NOTE: uses system function and string functions directly.
345
346    Return value: 1 if ok, 0 if not */
347 int
348 hpread_call_pxdb (const char *file_name)
349 {
350   char *p;
351   int status;
352   int retval;
353
354   if (file_exists (PXDB_SVR4))
355     {
356       p = xmalloc (strlen (PXDB_SVR4) + strlen (file_name) + 2);
357       strcpy (p, PXDB_SVR4);
358       strcat (p, " ");
359       strcat (p, file_name);
360
361       warning ("File not processed by pxdb--about to process now.\n");
362       status = system (p);
363
364       retval = (status == 0);
365     }
366   else
367     {
368       warning ("pxdb not found at standard location: /opt/langtools/bin\ngdb will not be able to debug %s.\nPlease install pxdb at the above location and then restart gdb.\nYou can also run pxdb on %s with the command\n\"pxdb %s\" and then restart gdb.", file_name, file_name, file_name);
369
370       retval = 0;
371     }
372   return retval;
373 }                               /* hpread_call_pxdb */
374 \f
375
376 /* Return 1 if the file turns out to need pre-processing
377    by PXDB, and we have thus called PXDB to do this processing
378    and the file therefore needs to be re-loaded.  Otherwise
379    return 0. */
380 int
381 hpread_pxdb_needed (bfd *sym_bfd)
382 {
383   asection *pinfo_section, *debug_section, *header_section;
384   unsigned int do_pxdb;
385   char *buf;
386   bfd_size_type header_section_size;
387
388   unsigned long tmp;
389   unsigned int pxdbed;
390
391   header_section = bfd_get_section_by_name (sym_bfd, "$HEADER$");
392   if (!header_section)
393     {
394       return 0;                 /* No header at all, can't recover... */
395     }
396
397   debug_section = bfd_get_section_by_name (sym_bfd, "$DEBUG$");
398   pinfo_section = bfd_get_section_by_name (sym_bfd, "$PINFO$");
399
400   if (pinfo_section && !debug_section)
401     {
402       /* Debug info with DOC, has different header format. 
403          this only happens if the file was pxdbed and compiled optimized
404          otherwise the PINFO section is not there. */
405       header_section_size = bfd_section_size (objfile->obfd, header_section);
406
407       if (header_section_size == (bfd_size_type) sizeof (DOC_info_PXDB_header))
408         {
409           buf = alloca (sizeof (DOC_info_PXDB_header));
410
411           if (!bfd_get_section_contents (sym_bfd,
412                                          header_section,
413                                          buf, 0,
414                                          header_section_size))
415             error ("bfd_get_section_contents\n");
416
417           tmp = bfd_get_32 (sym_bfd, (bfd_byte *) (buf + sizeof (int) * 4));
418           pxdbed = (tmp >> 31) & 0x1;
419
420           if (!pxdbed)
421             error ("file debug header info invalid\n");
422           do_pxdb = 0;
423         }
424
425       else
426         error ("invalid $HEADER$ size in executable \n");
427     }
428
429   else
430     {
431
432       /* this can be three different cases:
433          1. pxdbed and not doc
434          - DEBUG and HEADER sections are there
435          - header is PXDB_header type
436          - pxdbed flag is set to 1
437
438          2. not pxdbed and doc
439          - DEBUG and HEADER  sections are there
440          - header is DOC_info_header type
441          - pxdbed flag is set to 0
442
443          3. not pxdbed and not doc
444          - DEBUG and HEADER sections are there
445          - header is XDB_header type
446          - pxdbed flag is set to 0
447
448          NOTE: the pxdbed flag is meaningful also in the not
449          already pxdb processed version of the header,
450          because in case on non-already processed by pxdb files
451          that same bit in the header would be always zero.
452          Why? Because the bit is the leftmost bit of a word
453          which contains a 'length' which is always a positive value
454          so that bit is never set to 1 (otherwise it would be negative)
455
456          Given the above, we have two choices : either we ignore the
457          size of the header itself and just look at the pxdbed field,
458          or we check the size and then we (for safety and paranoia related
459          issues) check the bit.
460          The first solution is used by DDE, the second by PXDB itself.
461          I am using the second one here, because I already wrote it,
462          and it is the end of a long day.
463          Also, using the first approach would still involve size issues
464          because we need to read in the contents of the header section, and
465          give the correct amount of stuff we want to read to the
466          get_bfd_section_contents function.  */
467
468       /* decide which case depending on the size of the header section.
469          The size is as defined in hp-symtab.h  */
470
471       header_section_size = bfd_section_size (objfile->obfd, header_section);
472
473       if (header_section_size == (bfd_size_type) sizeof (PXDB_header))  /* pxdb and not doc */
474         {
475
476           buf = alloca (sizeof (PXDB_header));
477           if (!bfd_get_section_contents (sym_bfd,
478                                          header_section,
479                                          buf, 0,
480                                          header_section_size))
481             error ("bfd_get_section_contents\n");
482
483           tmp = bfd_get_32 (sym_bfd, (bfd_byte *) (buf + sizeof (int) * 3));
484           pxdbed = (tmp >> 31) & 0x1;
485
486           if (pxdbed)
487             do_pxdb = 0;
488           else
489             error ("file debug header invalid\n");
490         }
491       else                      /*not pxdbed and doc OR not pxdbed and non doc */
492         do_pxdb = 1;
493     }
494
495   if (do_pxdb)
496     {
497       return 1;
498     }
499   else
500     {
501       return 0;
502     }
503 }                               /* hpread_pxdb_needed */
504
505 #endif
506
507 /* Check whether the file needs to be preprocessed by pxdb. 
508    If so, call pxdb. */
509
510 void
511 do_pxdb (bfd *sym_bfd)
512 {
513   /* The following code is HP-specific.  The "right" way of
514      doing this is unknown, but we bet would involve a target-
515      specific pre-file-load check using a generic mechanism. */
516
517   /* This code will not be executed if the file is not in SOM
518      format (i.e. if compiled with gcc) */
519   if (hpread_pxdb_needed (sym_bfd))
520     {
521       /*This file has not been pre-processed. Preprocess now */
522
523       if (hpread_call_pxdb (sym_bfd->filename))
524         {
525           /* The call above has changed the on-disk file, 
526              we can close the file anyway, because the
527              symbols will be reread in when the target is run */
528           bfd_close (sym_bfd);
529         }
530     }
531 }
532 \f
533
534
535 #ifdef QUICK_LOOK_UP
536
537 /* Code to handle quick lookup-tables follows. */
538
539
540 /* Some useful macros */
541 #define VALID_FILE(i)   ((i) < pxdb_header_p->fd_entries)
542 #define VALID_MODULE(i) ((i) < pxdb_header_p->md_entries)
543 #define VALID_PROC(i)   ((i) < pxdb_header_p->pd_entries)
544 #define VALID_CLASS(i)  ((i) < pxdb_header_p->cd_entries)
545
546 #define FILE_START(i)    (qFD[i].adrStart)
547 #define MODULE_START(i) (qMD[i].adrStart)
548 #define PROC_START(i)    (qPD[i].adrStart)
549
550 #define FILE_END(i)   (qFD[i].adrEnd)
551 #define MODULE_END(i) (qMD[i].adrEnd)
552 #define PROC_END(i)   (qPD[i].adrEnd)
553
554 #define FILE_ISYM(i)   (qFD[i].isym)
555 #define MODULE_ISYM(i) (qMD[i].isym)
556 #define PROC_ISYM(i)   (qPD[i].isym)
557
558 #define VALID_CURR_FILE    (curr_fd < pxdb_header_p->fd_entries)
559 #define VALID_CURR_MODULE  (curr_md < pxdb_header_p->md_entries)
560 #define VALID_CURR_PROC    (curr_pd < pxdb_header_p->pd_entries)
561 #define VALID_CURR_CLASS   (curr_cd < pxdb_header_p->cd_entries)
562
563 #define CURR_FILE_START     (qFD[curr_fd].adrStart)
564 #define CURR_MODULE_START   (qMD[curr_md].adrStart)
565 #define CURR_PROC_START     (qPD[curr_pd].adrStart)
566
567 #define CURR_FILE_END    (qFD[curr_fd].adrEnd)
568 #define CURR_MODULE_END  (qMD[curr_md].adrEnd)
569 #define CURR_PROC_END    (qPD[curr_pd].adrEnd)
570
571 #define CURR_FILE_ISYM    (qFD[curr_fd].isym)
572 #define CURR_MODULE_ISYM  (qMD[curr_md].isym)
573 #define CURR_PROC_ISYM    (qPD[curr_pd].isym)
574
575 #define TELL_OBJFILE                                      \
576             do {                                          \
577                if( !told_objfile ) {                      \
578                    told_objfile = 1;                      \
579                    warning ("\nIn object file \"%s\":\n", \
580                             objfile->name);               \
581                }                                          \
582             } while (0)
583 \f
584
585
586 /* Keeping track of the start/end symbol table (LNTT) indices of
587    psymtabs created so far */
588
589 typedef struct
590 {
591   int start;
592   int end;
593 }
594 pst_syms_struct;
595
596 static pst_syms_struct *pst_syms_array = 0;
597
598 static pst_syms_count = 0;
599 static pst_syms_size = 0;
600
601 /* used by the TELL_OBJFILE macro */
602 static boolean told_objfile = 0;
603
604 /* Set up psymtab symbol index stuff */
605 static void
606 init_pst_syms (void)
607 {
608   pst_syms_count = 0;
609   pst_syms_size = 20;
610   pst_syms_array = (pst_syms_struct *) xmalloc (20 * sizeof (pst_syms_struct));
611 }
612
613 /* Clean up psymtab symbol index stuff */
614 static void
615 clear_pst_syms (void)
616 {
617   pst_syms_count = 0;
618   pst_syms_size = 0;
619   xfree (pst_syms_array);
620   pst_syms_array = 0;
621 }
622
623 /* Add information about latest psymtab to symbol index table */
624 static void
625 record_pst_syms (int start_sym, int end_sym)
626 {
627   if (++pst_syms_count > pst_syms_size)
628     {
629       pst_syms_array = (pst_syms_struct *) xrealloc (pst_syms_array,
630                               2 * pst_syms_size * sizeof (pst_syms_struct));
631       pst_syms_size *= 2;
632     }
633   pst_syms_array[pst_syms_count - 1].start = start_sym;
634   pst_syms_array[pst_syms_count - 1].end = end_sym;
635 }
636
637 /* Find a suitable symbol table index which can serve as the upper
638    bound of a psymtab that starts at INDEX
639
640    This scans backwards in the psymtab symbol index table to find a
641    "hole" in which the given index can fit.  This is a heuristic!!
642    We don't search the entire table to check for multiple holes,
643    we don't care about overlaps, etc. 
644
645    Return 0 => not found */
646 static int
647 find_next_pst_start (int index)
648 {
649   int i;
650
651   for (i = pst_syms_count - 1; i >= 0; i--)
652     if (pst_syms_array[i].end <= index)
653       return (i == pst_syms_count - 1) ? 0 : pst_syms_array[i + 1].start - 1;
654
655   if (pst_syms_array[0].start > index)
656     return pst_syms_array[0].start - 1;
657
658   return 0;
659 }
660 \f
661
662
663 /* Utility functions to find the ending symbol index for a psymtab */
664
665 /* Find the next file entry that begins beyond INDEX, and return
666    its starting symbol index - 1.
667    QFD is the file table, CURR_FD is the file entry from where to start,
668    PXDB_HEADER_P as in hpread_quick_traverse (to allow macros to work).
669
670    Return 0 => not found */
671 static int
672 find_next_file_isym (int index, quick_file_entry *qFD, int curr_fd,
673                      PXDB_header_ptr pxdb_header_p)
674 {
675   while (VALID_CURR_FILE)
676     {
677       if (CURR_FILE_ISYM >= index)
678         return CURR_FILE_ISYM - 1;
679       curr_fd++;
680     }
681   return 0;
682 }
683
684 /* Find the next procedure entry that begins beyond INDEX, and return
685    its starting symbol index - 1.
686    QPD is the procedure table, CURR_PD is the proc entry from where to start,
687    PXDB_HEADER_P as in hpread_quick_traverse (to allow macros to work).
688
689    Return 0 => not found */
690 static int
691 find_next_proc_isym (int index, quick_procedure_entry *qPD, int curr_pd,
692                      PXDB_header_ptr pxdb_header_p)
693 {
694   while (VALID_CURR_PROC)
695     {
696       if (CURR_PROC_ISYM >= index)
697         return CURR_PROC_ISYM - 1;
698       curr_pd++;
699     }
700   return 0;
701 }
702
703 /* Find the next module entry that begins beyond INDEX, and return
704    its starting symbol index - 1.
705    QMD is the module table, CURR_MD is the modue entry from where to start,
706    PXDB_HEADER_P as in hpread_quick_traverse (to allow macros to work).
707
708    Return 0 => not found */
709 static int
710 find_next_module_isym (int index, quick_module_entry *qMD, int curr_md,
711                        PXDB_header_ptr pxdb_header_p)
712 {
713   while (VALID_CURR_MODULE)
714     {
715       if (CURR_MODULE_ISYM >= index)
716         return CURR_MODULE_ISYM - 1;
717       curr_md++;
718     }
719   return 0;
720 }
721
722 /* Scan and record partial symbols for all functions starting from index
723    pointed to by CURR_PD_P, and between code addresses START_ADR and END_ADR.
724    Other parameters are explained in comments below. */
725
726 /* This used to be inline in hpread_quick_traverse, but now that we do
727    essentially the same thing for two different cases (modules and
728    module-less files), it's better organized in a separate routine,
729    although it does take lots of arguments.  pai/1997-10-08
730    
731    CURR_PD_P is the pointer to the current proc index. QPD is the
732    procedure quick lookup table.  MAX_PROCS is the number of entries
733    in the proc. table.  START_ADR is the beginning of the code range
734    for the current psymtab.  end_adr is the end of the code range for
735    the current psymtab.  PST is the current psymtab.  VT_bits is
736    a pointer to the strings table of SOM debug space.  OBJFILE is
737    the current object file. */
738
739 static int
740 scan_procs (int *curr_pd_p, quick_procedure_entry *qPD, int max_procs,
741             CORE_ADDR start_adr, CORE_ADDR end_adr, struct partial_symtab *pst,
742             char *vt_bits, struct objfile *objfile)
743 {
744   union dnttentry *dn_bufp;
745   int symbol_count = 0;         /* Total number of symbols in this psymtab */
746   int curr_pd = *curr_pd_p;     /* Convenience variable -- avoid dereferencing pointer all the time */
747
748 #ifdef DUMPING
749   /* Turn this on for lots of debugging information in this routine */
750   static int dumping = 0;
751 #endif
752
753 #ifdef DUMPING
754   if (dumping)
755     {
756       printf ("Scan_procs called, addresses %x to %x, proc %x\n", start_adr, end_adr, curr_pd);
757     }
758 #endif
759
760   while ((CURR_PROC_START <= end_adr) && (curr_pd < max_procs))
761     {
762
763       char *rtn_name;           /* mangled name */
764       char *rtn_dem_name;       /* qualified demangled name */
765       char *class_name;
766       int class;
767
768       if ((trans_lang ((enum hp_language) qPD[curr_pd].language) == language_cplus) &&
769           vt_bits[(long) qPD[curr_pd].sbAlias])         /* not a null string */
770         {
771           /* Get mangled name for the procedure, and demangle it */
772           rtn_name = &vt_bits[(long) qPD[curr_pd].sbAlias];
773           rtn_dem_name = cplus_demangle (rtn_name, DMGL_ANSI | DMGL_PARAMS);
774         }
775       else
776         {
777           rtn_name = &vt_bits[(long) qPD[curr_pd].sbProc];
778           rtn_dem_name = NULL;
779         }
780
781       /* Hack to get around HP C/C++ compilers' insistence on providing
782          "_MAIN_" as an alternate name for "main" */
783       if ((strcmp (rtn_name, "_MAIN_") == 0) &&
784           (strcmp (&vt_bits[(long) qPD[curr_pd].sbProc], "main") == 0))
785         rtn_dem_name = rtn_name = main_string;
786
787 #ifdef DUMPING
788       if (dumping)
789         {
790           printf ("..add %s (demangled %s), index %x to this psymtab\n", rtn_name, rtn_dem_name, curr_pd);
791         }
792 #endif
793
794       /* Check for module-spanning routines. */
795       if (CURR_PROC_END > end_adr)
796         {
797           TELL_OBJFILE;
798           warning ("Procedure \"%s\" [0x%x] spans file or module boundaries.", rtn_name, curr_pd);
799         }
800
801       /* Add this routine symbol to the list in the objfile. 
802          Unfortunately we have to go to the LNTT to determine the
803          correct list to put it on. An alternative (which the
804          code used to do) would be to not check and always throw
805          it on the "static" list. But if we go that route, then
806          symbol_lookup() needs to be tweaked a bit to account
807          for the fact that the function might not be found on
808          the correct list in the psymtab. - RT */
809       dn_bufp = hpread_get_lntt (qPD[curr_pd].isym, objfile);
810       if (dn_bufp->dfunc.global)
811         add_psymbol_with_dem_name_to_list (rtn_name,
812                                            strlen (rtn_name),
813                                            rtn_dem_name,
814                                            strlen (rtn_dem_name),
815                                            VAR_NAMESPACE,
816                                            LOC_BLOCK,   /* "I am a routine"        */
817                                            &objfile->global_psymbols,
818                                            (qPD[curr_pd].adrStart +     /* Starting address of rtn */
819                                  ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile))),
820                                            0,   /* core addr?? */
821                       trans_lang ((enum hp_language) qPD[curr_pd].language),
822                                            objfile);
823       else
824         add_psymbol_with_dem_name_to_list (rtn_name,
825                                            strlen (rtn_name),
826                                            rtn_dem_name,
827                                            strlen (rtn_dem_name),
828                                            VAR_NAMESPACE,
829                                            LOC_BLOCK,   /* "I am a routine"        */
830                                            &objfile->static_psymbols,
831                                            (qPD[curr_pd].adrStart +     /* Starting address of rtn */
832                                  ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile))),
833                                            0,   /* core addr?? */
834                       trans_lang ((enum hp_language) qPD[curr_pd].language),
835                                            objfile);
836
837       symbol_count++;
838       *curr_pd_p = ++curr_pd;   /* bump up count & reflect in caller */
839     }                           /* loop over procedures */
840
841 #ifdef DUMPING
842   if (dumping)
843     {
844       if (symbol_count == 0)
845         printf ("Scan_procs: no symbols found!\n");
846     }
847 #endif
848
849   return symbol_count;
850 }
851
852
853 /* Traverse the quick look-up tables, building a set of psymtabs.
854
855    This constructs a psymtab for modules and files in the quick lookup
856    tables.
857
858    Mostly, modules correspond to compilation units, so we try to
859    create psymtabs that correspond to modules; however, in some cases
860    a file can result in a compiled object which does not have a module
861    entry for it, so in such cases we create a psymtab for the file.  */
862
863 int
864 hpread_quick_traverse (struct objfile *objfile, char *gntt_bits,
865                        char *vt_bits, PXDB_header_ptr pxdb_header_p)
866 {
867   struct partial_symtab *pst;
868
869   char *addr;
870
871   quick_procedure_entry *qPD;
872   quick_file_entry *qFD;
873   quick_module_entry *qMD;
874   quick_class_entry *qCD;
875
876   int idx;
877   int i;
878   CORE_ADDR start_adr;          /* current psymtab's starting code addr   */
879   CORE_ADDR end_adr;            /* current psymtab's ending code addr     */
880   CORE_ADDR next_mod_adr;       /* next module's starting code addr    */
881   int curr_pd;                  /* current procedure */
882   int curr_fd;                  /* current file      */
883   int curr_md;                  /* current module    */
884   int start_sym;                /* current psymtab's starting symbol index */
885   int end_sym;                  /* current psymtab's ending symbol index   */
886   int max_LNTT_sym_index;
887   int syms_in_pst;
888   B_TYPE *class_entered;
889
890   struct partial_symbol **global_syms;  /* We'll be filling in the "global"   */
891   struct partial_symbol **static_syms;  /* and "static" tables in the objfile
892                                            as we go, so we need a pair of     
893                                            current pointers. */
894
895 #ifdef DUMPING
896   /* Turn this on for lots of debugging information in this routine.
897      You get a blow-by-blow account of quick lookup table reading */
898   static int dumping = 0;
899 #endif
900
901   pst = (struct partial_symtab *) 0;
902
903   /* Clear out some globals */
904   init_pst_syms ();
905   told_objfile = 0;
906
907   /* Demangling style -- if EDG style already set, don't change it,
908      as HP style causes some problems with the KAI EDG compiler */
909   if (current_demangling_style != edg_demangling)
910     {
911       /* Otherwise, ensure that we are using HP style demangling */
912       set_demangling_style (HP_DEMANGLING_STYLE_STRING);
913     }
914
915   /* First we need to find the starting points of the quick
916      look-up tables in the GNTT. */
917
918   addr = gntt_bits;
919
920   qPD = (quick_procedure_entry_ptr) addr;
921   addr += pxdb_header_p->pd_entries * sizeof (quick_procedure_entry);
922
923 #ifdef DUMPING
924   if (dumping)
925     {
926       printf ("\n Printing routines as we see them\n");
927       for (i = 0; VALID_PROC (i); i++)
928         {
929           idx = (long) qPD[i].sbProc;
930           printf ("%s %x..%x\n", &vt_bits[idx],
931                   (int) PROC_START (i),
932                   (int) PROC_END (i));
933         }
934     }
935 #endif
936
937   qFD = (quick_file_entry_ptr) addr;
938   addr += pxdb_header_p->fd_entries * sizeof (quick_file_entry);
939
940 #ifdef DUMPING
941   if (dumping)
942     {
943       printf ("\n Printing files as we see them\n");
944       for (i = 0; VALID_FILE (i); i++)
945         {
946           idx = (long) qFD[i].sbFile;
947           printf ("%s %x..%x\n", &vt_bits[idx],
948                   (int) FILE_START (i),
949                   (int) FILE_END (i));
950         }
951     }
952 #endif
953
954   qMD = (quick_module_entry_ptr) addr;
955   addr += pxdb_header_p->md_entries * sizeof (quick_module_entry);
956
957 #ifdef DUMPING
958   if (dumping)
959     {
960       printf ("\n Printing modules as we see them\n");
961       for (i = 0; i < pxdb_header_p->md_entries; i++)
962         {
963           idx = (long) qMD[i].sbMod;
964           printf ("%s\n", &vt_bits[idx]);
965         }
966     }
967 #endif
968
969   qCD = (quick_class_entry_ptr) addr;
970   addr += pxdb_header_p->cd_entries * sizeof (quick_class_entry);
971
972 #ifdef DUMPING
973   if (dumping)
974     {
975       printf ("\n Printing classes as we see them\n");
976       for (i = 0; VALID_CLASS (i); i++)
977         {
978           idx = (long) qCD[i].sbClass;
979           printf ("%s\n", &vt_bits[idx]);
980         }
981
982       printf ("\n Done with dump, on to build!\n");
983     }
984 #endif
985
986   /* We need this index only while hp-symtab-read.c expects
987      a byte offset to the end of the LNTT entries for a given
988      psymtab.  Thus the need for it should go away someday.
989
990      When it goes away, then we won't have any need to load the
991      LNTT from the objfile at psymtab-time, and start-up will be
992      faster.  To make that work, we'll need some way to create
993      a null pst for the "globals" pseudo-module. */
994   max_LNTT_sym_index = LNTT_SYMCOUNT (objfile);
995
996   /* Scan the module descriptors and make a psymtab for each.
997
998      We know the MDs, FDs and the PDs are in order by starting
999      address.  We use that fact to traverse all three arrays in
1000      parallel, knowing when the next PD is in a new file
1001      and we need to create a new psymtab. */
1002   curr_pd = 0;                  /* Current procedure entry */
1003   curr_fd = 0;                  /* Current file entry */
1004   curr_md = 0;                  /* Current module entry */
1005
1006   start_adr = 0;                /* Current psymtab code range */
1007   end_adr = 0;
1008
1009   start_sym = 0;                /* Current psymtab symbol range */
1010   end_sym = 0;
1011
1012   syms_in_pst = 0;              /* Symbol count for psymtab */
1013
1014   /* Psts actually just have pointers into the objfile's
1015      symbol table, not their own symbol tables. */
1016   global_syms = objfile->global_psymbols.list;
1017   static_syms = objfile->static_psymbols.list;
1018
1019
1020   /* First skip over pseudo-entries with address 0.  These represent inlined
1021      routines and abstract (uninstantiated) template routines.
1022      FIXME: These should be read in and available -- even if we can't set
1023      breakpoints, etc., there's some information that can be presented
1024      to the user. pai/1997-10-08  */
1025
1026   while (VALID_CURR_PROC && (CURR_PROC_START == 0))
1027     curr_pd++;
1028
1029   /* Loop over files, modules, and procedures in code address order. Each
1030      time we enter an iteration of this loop, curr_pd points to the first
1031      unprocessed procedure, curr_fd points to the first unprocessed file, and
1032      curr_md to the first unprocessed module.  Each iteration of this loop
1033      updates these as required -- any or all of them may be bumpd up
1034      each time around.  When we exit this loop, we are done with all files
1035      and modules in the tables -- there may still be some procedures, however.
1036
1037      Note: This code used to loop only over module entries, under the assumption
1038      that files can occur via inclusions and are thus unreliable, while a
1039      compiled object always corresponds to a module.  With CTTI in the HP aCC
1040      compiler, it turns out that compiled objects may have only files and no
1041      modules; so we have to loop over files and modules, creating psymtabs for
1042      either as appropriate.  Unfortunately there are some problems (notably:
1043      1. the lack of "SRC_FILE_END" entries in the LNTT, 2. the lack of pointers
1044      to the ending symbol indices of a module or a file) which make it quite hard
1045      to do this correctly.  Currently it uses a bunch of heuristics to start and
1046      end psymtabs; they seem to work well with most objects generated by aCC, but
1047      who knows when that will change...   */
1048
1049   while (VALID_CURR_FILE || VALID_CURR_MODULE)
1050     {
1051
1052       char *mod_name_string;
1053       char *full_name_string;
1054
1055       /* First check for modules like "version.c", which have no code
1056          in them but still have qMD entries.  They also have no qFD or
1057          qPD entries.  Their start address is -1 and their end address
1058          is 0.  */
1059       if (VALID_CURR_MODULE && (CURR_MODULE_START == -1) && (CURR_MODULE_END == 0))
1060         {
1061
1062           mod_name_string = &vt_bits[(long) qMD[curr_md].sbMod];
1063
1064 #ifdef DUMPING
1065           if (dumping)
1066             printf ("Module with data only %s\n", mod_name_string);
1067 #endif
1068
1069           /* We'll skip the rest (it makes error-checking easier), and
1070              just make an empty pst.  Right now empty psts are not put
1071              in the pst chain, so all this is for naught, but later it
1072              might help.  */
1073
1074           pst = hpread_start_psymtab (objfile,
1075                                       mod_name_string,
1076                                       CURR_MODULE_START,        /* Low text address: bogus! */
1077                        (CURR_MODULE_ISYM * sizeof (struct dntt_type_block)),
1078           /* ldsymoff */
1079                                       global_syms,
1080                                       static_syms);
1081
1082           pst = hpread_end_psymtab (pst,
1083                                     NULL,       /* psymtab_include_list */
1084                                     0,  /* includes_used        */
1085                                   end_sym * sizeof (struct dntt_type_block),
1086           /* byte index in LNTT of end 
1087              = capping symbol offset  
1088              = LDSYMOFF of nextfile */
1089                                     0,  /* text high            */
1090                                     NULL,       /* dependency_list      */
1091                                     0);         /* dependencies_used    */
1092
1093           global_syms = objfile->global_psymbols.next;
1094           static_syms = objfile->static_psymbols.next;
1095
1096           curr_md++;
1097         }
1098       else if (VALID_CURR_MODULE &&
1099                ((CURR_MODULE_START == 0) || (CURR_MODULE_START == -1) ||
1100                 (CURR_MODULE_END == 0) || (CURR_MODULE_END == -1)))
1101         {
1102           TELL_OBJFILE;
1103           warning ("Module \"%s\" [0x%s] has non-standard addresses.  It starts at 0x%s, ends at 0x%s, and will be skipped.",
1104                    mod_name_string, paddr_nz (curr_md), paddr_nz (start_adr), paddr_nz (end_adr));
1105           /* On to next module */
1106           curr_md++;
1107         }
1108       else
1109         {
1110           /* First check if we are looking at a file with code in it
1111              that does not overlap the current module's code range */
1112
1113           if (VALID_CURR_FILE ? (VALID_CURR_MODULE ? (CURR_FILE_END < CURR_MODULE_START) : 1) : 0)
1114             {
1115
1116               /* Looking at file not corresponding to any module,
1117                  create a psymtab for it */
1118               full_name_string = &vt_bits[(long) qFD[curr_fd].sbFile];
1119               start_adr = CURR_FILE_START;
1120               end_adr = CURR_FILE_END;
1121               start_sym = CURR_FILE_ISYM;
1122
1123               /* Check if there are any procedures not handled until now, that
1124                  begin before the start address of this file, and if so, adjust
1125                  this module's start address to include them.  This handles routines that
1126                  are in between file or module ranges for some reason (probably
1127                  indicates a compiler bug */
1128
1129               if (CURR_PROC_START < start_adr)
1130                 {
1131                   TELL_OBJFILE;
1132                   warning ("Found procedure \"%s\" [0x%x] that is not in any file or module.",
1133                            &vt_bits[(long) qPD[curr_pd].sbProc], curr_pd);
1134                   start_adr = CURR_PROC_START;
1135                   if (CURR_PROC_ISYM < start_sym)
1136                     start_sym = CURR_PROC_ISYM;
1137                 }
1138
1139               /* Sometimes (compiler bug -- COBOL) the module end address is higher
1140                  than the start address of the next module, so check for that and
1141                  adjust accordingly */
1142
1143               if (VALID_FILE (curr_fd + 1) && (FILE_START (curr_fd + 1) <= end_adr))
1144                 {
1145                   TELL_OBJFILE;
1146                   warning ("File \"%s\" [0x%x] has ending address after starting address of next file; adjusting ending address down.",
1147                            full_name_string, curr_fd);
1148                   end_adr = FILE_START (curr_fd + 1) - 1;       /* Is -4 (or -8 for 64-bit) better? */
1149                 }
1150               if (VALID_MODULE (curr_md) && (CURR_MODULE_START <= end_adr))
1151                 {
1152                   TELL_OBJFILE;
1153                   warning ("File \"%s\" [0x%x] has ending address after starting address of next module; adjusting ending address down.",
1154                            full_name_string, curr_fd);
1155                   end_adr = CURR_MODULE_START - 1;      /* Is -4 (or -8 for 64-bit) better? */
1156                 }
1157
1158
1159 #ifdef DUMPING
1160               if (dumping)
1161                 {
1162                   printf ("Make new psymtab for file %s (%x to %x).\n",
1163                           full_name_string, start_adr, end_adr);
1164                 }
1165 #endif
1166               /* Create the basic psymtab, connecting it in the list
1167                  for this objfile and pointing its symbol entries
1168                  to the current end of the symbol areas in the objfile.
1169
1170                  The "ldsymoff" parameter is the byte offset in the LNTT
1171                  of the first symbol in this file.  Some day we should
1172                  turn this into an index (fix in hp-symtab-read.c as well).
1173                  And it's not even the right byte offset, as we're using
1174                  the size of a union! FIXME!  */
1175               pst = hpread_start_psymtab (objfile,
1176                                           full_name_string,
1177                                           start_adr,    /* Low text address */
1178                               (start_sym * sizeof (struct dntt_type_block)),
1179               /* ldsymoff */
1180                                           global_syms,
1181                                           static_syms);
1182
1183               /* Set up to only enter each class referenced in this module once.  */
1184               class_entered = xmalloc (B_BYTES (pxdb_header_p->cd_entries));
1185               B_CLRALL (class_entered, pxdb_header_p->cd_entries);
1186
1187               /* Scan the procedure descriptors for procedures in the current
1188                  file, based on the starting addresses. */
1189
1190               syms_in_pst = scan_procs (&curr_pd, qPD, pxdb_header_p->pd_entries,
1191                                         start_adr, end_adr, pst, vt_bits, objfile);
1192
1193               /* Get ending symbol offset */
1194
1195               end_sym = 0;
1196               /* First check for starting index before previous psymtab */
1197               if (pst_syms_count && start_sym < pst_syms_array[pst_syms_count - 1].end)
1198                 {
1199                   end_sym = find_next_pst_start (start_sym);
1200                 }
1201               /* Look for next start index of a file or module, or procedure */
1202               if (!end_sym)
1203                 {
1204                   int next_file_isym = find_next_file_isym (start_sym, qFD, curr_fd + 1, pxdb_header_p);
1205                   int next_module_isym = find_next_module_isym (start_sym, qMD, curr_md, pxdb_header_p);
1206                   int next_proc_isym = find_next_proc_isym (start_sym, qPD, curr_pd, pxdb_header_p);
1207
1208                   if (next_file_isym && next_module_isym)
1209                     {
1210                       /* pick lower of next file or module start index */
1211                       end_sym = min (next_file_isym, next_module_isym);
1212                     }
1213                   else
1214                     {
1215                       /* one of them is zero, pick the other */
1216                       end_sym = max (next_file_isym, next_module_isym);
1217                     }
1218
1219                   /* As a precaution, check next procedure index too */
1220                   if (!end_sym)
1221                     end_sym = next_proc_isym;
1222                   else
1223                     end_sym = min (end_sym, next_proc_isym);
1224                 }
1225
1226               /* Couldn't find procedure, file, or module, use globals as default */
1227               if (!end_sym)
1228                 end_sym = pxdb_header_p->globals;
1229
1230 #ifdef DUMPING
1231               if (dumping)
1232                 {
1233                   printf ("File psymtab indices: %x to %x\n", start_sym, end_sym);
1234                 }
1235 #endif
1236
1237               pst = hpread_end_psymtab (pst,
1238                                         NULL,   /* psymtab_include_list */
1239                                         0,      /* includes_used        */
1240                                   end_sym * sizeof (struct dntt_type_block),
1241               /* byte index in LNTT of end 
1242                  = capping symbol offset   
1243                  = LDSYMOFF of nextfile */
1244                                         end_adr,        /* text high */
1245                                         NULL,   /* dependency_list */
1246                                         0);     /* dependencies_used */
1247
1248               record_pst_syms (start_sym, end_sym);
1249
1250               if (NULL == pst)
1251                 warning ("No symbols in psymtab for file \"%s\" [0x%x].", full_name_string, curr_fd);
1252
1253 #ifdef DUMPING
1254               if (dumping)
1255                 {
1256                   printf ("Made new psymtab for file %s (%x to %x), sym %x to %x.\n",
1257                           full_name_string, start_adr, end_adr, CURR_FILE_ISYM, end_sym);
1258                 }
1259 #endif
1260               /* Prepare for the next psymtab. */
1261               global_syms = objfile->global_psymbols.next;
1262               static_syms = objfile->static_psymbols.next;
1263               xfree (class_entered);
1264
1265               curr_fd++;
1266             }                   /* Psymtab for file */
1267           else
1268             {
1269               /* We have a module for which we create a psymtab */
1270
1271               mod_name_string = &vt_bits[(long) qMD[curr_md].sbMod];
1272
1273               /* We will include the code ranges of any files that happen to
1274                  overlap with this module */
1275
1276               /* So, first pick the lower of the file's and module's start addresses */
1277               start_adr = CURR_MODULE_START;
1278               if (VALID_CURR_FILE)
1279                 {
1280                   if (CURR_FILE_START < CURR_MODULE_START)
1281                     {
1282                       TELL_OBJFILE;
1283                       warning ("File \"%s\" [0x%x] crosses beginning of module \"%s\".",
1284                                &vt_bits[(long) qFD[curr_fd].sbFile],
1285                                curr_fd, mod_name_string);
1286
1287                       start_adr = CURR_FILE_START;
1288                     }
1289                 }
1290
1291               /* Also pick the lower of the file's and the module's start symbol indices */
1292               start_sym = CURR_MODULE_ISYM;
1293               if (VALID_CURR_FILE && (CURR_FILE_ISYM < CURR_MODULE_ISYM))
1294                 start_sym = CURR_FILE_ISYM;
1295
1296               /* For the end address, we scan through the files till we find one
1297                  that overlaps the current module but ends beyond it; if no such file exists we
1298                  simply use the module's start address.  
1299                  (Note, if file entries themselves overlap
1300                  we take the longest overlapping extension beyond the end of the module...)
1301                  We assume that modules never overlap. */
1302
1303               end_adr = CURR_MODULE_END;
1304
1305               if (VALID_CURR_FILE)
1306                 {
1307                   while (VALID_CURR_FILE && (CURR_FILE_START < end_adr))
1308                     {
1309
1310 #ifdef DUMPING
1311                       if (dumping)
1312                         printf ("Maybe skipping file %s which overlaps with module %s\n",
1313                                 &vt_bits[(long) qFD[curr_fd].sbFile], mod_name_string);
1314 #endif
1315                       if (CURR_FILE_END > end_adr)
1316                         {
1317                           TELL_OBJFILE;
1318                           warning ("File \"%s\" [0x%x] crosses end of module \"%s\".",
1319                                    &vt_bits[(long) qFD[curr_fd].sbFile],
1320                                    curr_fd, mod_name_string);
1321                           end_adr = CURR_FILE_END;
1322                         }
1323                       curr_fd++;
1324                     }
1325                   curr_fd--;    /* back up after going too far */
1326                 }
1327
1328               /* Sometimes (compiler bug -- COBOL) the module end address is higher
1329                  than the start address of the next module, so check for that and
1330                  adjust accordingly */
1331
1332               if (VALID_MODULE (curr_md + 1) && (MODULE_START (curr_md + 1) <= end_adr))
1333                 {
1334                   TELL_OBJFILE;
1335                   warning ("Module \"%s\" [0x%x] has ending address after starting address of next module; adjusting ending address down.",
1336                            mod_name_string, curr_md);
1337                   end_adr = MODULE_START (curr_md + 1) - 1;     /* Is -4 (or -8 for 64-bit) better? */
1338                 }
1339               if (VALID_FILE (curr_fd + 1) && (FILE_START (curr_fd + 1) <= end_adr))
1340                 {
1341                   TELL_OBJFILE;
1342                   warning ("Module \"%s\" [0x%x] has ending address after starting address of next file; adjusting ending address down.",
1343                            mod_name_string, curr_md);
1344                   end_adr = FILE_START (curr_fd + 1) - 1;       /* Is -4 (or -8 for 64-bit) better? */
1345                 }
1346
1347               /* Use one file to get the full name for the module.  This
1348                  situation can arise if there is executable code in a #include
1349                  file.  Each file with code in it gets a qFD.  Files which don't
1350                  contribute code don't get a qFD, even if they include files
1351                  which do, e.g.: 
1352
1353                  body.c:                    rtn.h:
1354                  int x;                     int main() {
1355                  #include "rtn.h"               return x;
1356                  }
1357
1358                  There will a qFD for "rtn.h",and a qMD for "body.c",
1359                  but no qMD for "rtn.h" or qFD for "body.c"!
1360
1361                  We pick the name of the last file to overlap with this
1362                  module.  C convention is to put include files first.  In a
1363                  perfect world, we could check names and use the file whose full
1364                  path name ends with the module name. */
1365
1366               if (VALID_CURR_FILE)
1367                 full_name_string = &vt_bits[(long) qFD[curr_fd].sbFile];
1368               else
1369                 full_name_string = mod_name_string;
1370
1371               /* Check if there are any procedures not handled until now, that
1372                  begin before the start address we have now, and if so, adjust
1373                  this psymtab's start address to include them.  This handles routines that
1374                  are in between file or module ranges for some reason (probably
1375                  indicates a compiler bug */
1376
1377               if (CURR_PROC_START < start_adr)
1378                 {
1379                   TELL_OBJFILE;
1380                   warning ("Found procedure \"%s\" [0x%x] that is not in any file or module.",
1381                            &vt_bits[(long) qPD[curr_pd].sbProc], curr_pd);
1382                   start_adr = CURR_PROC_START;
1383                   if (CURR_PROC_ISYM < start_sym)
1384                     start_sym = CURR_PROC_ISYM;
1385                 }
1386
1387 #ifdef DUMPING
1388               if (dumping)
1389                 {
1390                   printf ("Make new psymtab for module %s (%x to %x), using file %s\n",
1391                      mod_name_string, start_adr, end_adr, full_name_string);
1392                 }
1393 #endif
1394               /* Create the basic psymtab, connecting it in the list
1395                  for this objfile and pointing its symbol entries
1396                  to the current end of the symbol areas in the objfile.
1397
1398                  The "ldsymoff" parameter is the byte offset in the LNTT
1399                  of the first symbol in this file.  Some day we should
1400                  turn this into an index (fix in hp-symtab-read.c as well).
1401                  And it's not even the right byte offset, as we're using
1402                  the size of a union! FIXME!  */
1403               pst = hpread_start_psymtab (objfile,
1404                                           full_name_string,
1405                                           start_adr,    /* Low text address */
1406                               (start_sym * sizeof (struct dntt_type_block)),
1407               /* ldsymoff */
1408                                           global_syms,
1409                                           static_syms);
1410
1411               /* Set up to only enter each class referenced in this module once.  */
1412               class_entered = xmalloc (B_BYTES (pxdb_header_p->cd_entries));
1413               B_CLRALL (class_entered, pxdb_header_p->cd_entries);
1414
1415               /* Scan the procedure descriptors for procedures in the current
1416                  module, based on the starting addresses. */
1417
1418               syms_in_pst = scan_procs (&curr_pd, qPD, pxdb_header_p->pd_entries,
1419                                         start_adr, end_adr, pst, vt_bits, objfile);
1420
1421               /* Get ending symbol offset */
1422
1423               end_sym = 0;
1424               /* First check for starting index before previous psymtab */
1425               if (pst_syms_count && start_sym < pst_syms_array[pst_syms_count - 1].end)
1426                 {
1427                   end_sym = find_next_pst_start (start_sym);
1428                 }
1429               /* Look for next start index of a file or module, or procedure */
1430               if (!end_sym)
1431                 {
1432                   int next_file_isym = find_next_file_isym (start_sym, qFD, curr_fd + 1, pxdb_header_p);
1433                   int next_module_isym = find_next_module_isym (start_sym, qMD, curr_md + 1, pxdb_header_p);
1434                   int next_proc_isym = find_next_proc_isym (start_sym, qPD, curr_pd, pxdb_header_p);
1435
1436                   if (next_file_isym && next_module_isym)
1437                     {
1438                       /* pick lower of next file or module start index */
1439                       end_sym = min (next_file_isym, next_module_isym);
1440                     }
1441                   else
1442                     {
1443                       /* one of them is zero, pick the other */
1444                       end_sym = max (next_file_isym, next_module_isym);
1445                     }
1446
1447                   /* As a precaution, check next procedure index too */
1448                   if (!end_sym)
1449                     end_sym = next_proc_isym;
1450                   else
1451                     end_sym = min (end_sym, next_proc_isym);
1452                 }
1453
1454               /* Couldn't find procedure, file, or module, use globals as default */
1455               if (!end_sym)
1456                 end_sym = pxdb_header_p->globals;
1457
1458 #ifdef DUMPING
1459               if (dumping)
1460                 {
1461                   printf ("Module psymtab indices: %x to %x\n", start_sym, end_sym);
1462                 }
1463 #endif
1464
1465               pst = hpread_end_psymtab (pst,
1466                                         NULL,   /* psymtab_include_list */
1467                                         0,      /* includes_used        */
1468                                   end_sym * sizeof (struct dntt_type_block),
1469               /* byte index in LNTT of end 
1470                  = capping symbol offset   
1471                  = LDSYMOFF of nextfile */
1472                                         end_adr,        /* text high */
1473                                         NULL,   /* dependency_list      */
1474                                         0);     /* dependencies_used    */
1475
1476               record_pst_syms (start_sym, end_sym);
1477
1478               if (NULL == pst)
1479                 warning ("No symbols in psymtab for module \"%s\" [0x%x].", mod_name_string, curr_md);
1480
1481 #ifdef DUMPING
1482               if (dumping)
1483                 {
1484                   printf ("Made new psymtab for module %s (%x to %x), sym %x to %x.\n",
1485                           mod_name_string, start_adr, end_adr, CURR_MODULE_ISYM, end_sym);
1486                 }
1487 #endif
1488
1489               /* Prepare for the next psymtab. */
1490               global_syms = objfile->global_psymbols.next;
1491               static_syms = objfile->static_psymbols.next;
1492               xfree (class_entered);
1493
1494               curr_md++;
1495               curr_fd++;
1496             }                   /* psymtab for module */
1497         }                       /* psymtab for non-bogus file or module */
1498     }                           /* End of while loop over all files & modules */
1499
1500   /* There may be some routines after all files and modules -- these will get
1501      inserted in a separate new module of their own */
1502   if (VALID_CURR_PROC)
1503     {
1504       start_adr = CURR_PROC_START;
1505       end_adr = qPD[pxdb_header_p->pd_entries - 1].adrEnd;
1506       TELL_OBJFILE;
1507       warning ("Found functions beyond end of all files and modules [0x%x].", curr_pd);
1508 #ifdef DUMPING
1509       if (dumping)
1510         {
1511           printf ("Orphan functions at end, PD %d and beyond (%x to %x)\n",
1512                   curr_pd, start_adr, end_adr);
1513         }
1514 #endif
1515       pst = hpread_start_psymtab (objfile,
1516                                   "orphans",
1517                                   start_adr,    /* Low text address */
1518                          (CURR_PROC_ISYM * sizeof (struct dntt_type_block)),
1519       /* ldsymoff */
1520                                   global_syms,
1521                                   static_syms);
1522
1523       scan_procs (&curr_pd, qPD, pxdb_header_p->pd_entries,
1524                   start_adr, end_adr, pst, vt_bits, objfile);
1525
1526       pst = hpread_end_psymtab (pst,
1527                                 NULL,   /* psymtab_include_list */
1528                                 0,      /* includes_used */
1529                    pxdb_header_p->globals * sizeof (struct dntt_type_block),
1530       /* byte index in LNTT of end 
1531          = capping symbol offset   
1532          = LDSYMOFF of nextfile */
1533                                 end_adr,        /* text high  */
1534                                 NULL,   /* dependency_list */
1535                                 0);     /* dependencies_used */
1536     }
1537
1538
1539 #ifdef NEVER_NEVER
1540   /* Now build psts for non-module things (in the tail of
1541      the LNTT, after the last END MODULE entry).
1542
1543      If null psts were kept on the chain, this would be
1544      a solution.  FIXME */
1545   pst = hpread_start_psymtab (objfile,
1546                               "globals",
1547                               0,
1548                               (pxdb_header_p->globals
1549                                * sizeof (struct dntt_type_block)),
1550                               objfile->global_psymbols.next,
1551                               objfile->static_psymbols.next);
1552   hpread_end_psymtab (pst,
1553                       NULL, 0,
1554                       (max_LNTT_sym_index * sizeof (struct dntt_type_block)),
1555                       0,
1556                       NULL, 0);
1557 #endif
1558
1559   clear_pst_syms ();
1560
1561   return 1;
1562
1563 }                               /* End of hpread_quick_traverse. */
1564 \f
1565
1566 /* Get appropriate header, based on pxdb type. 
1567    Return value: 1 if ok, 0 if not */
1568 int
1569 hpread_get_header (struct objfile *objfile, PXDB_header_ptr pxdb_header_p)
1570 {
1571   asection *pinfo_section, *debug_section, *header_section;
1572
1573 #ifdef DUMPING
1574   /* Turn on for debugging information */
1575   static int dumping = 0;
1576 #endif
1577
1578   header_section = bfd_get_section_by_name (objfile->obfd, "$HEADER$");
1579   if (!header_section)
1580     {
1581       /* We don't have either PINFO or DEBUG sections.  But
1582          stuff like "libc.sl" has no debug info.  There's no
1583          need to warn the user of this, as it may be ok. The
1584          caller will figure it out and issue any needed
1585          messages. */
1586 #ifdef DUMPING
1587       if (dumping)
1588         printf ("==No debug info at all for %s.\n", objfile->name);
1589 #endif
1590
1591       return 0;
1592     }
1593
1594   /* We would like either a $DEBUG$ or $PINFO$ section.
1595      Once we know which, we can understand the header
1596      data (which we have defined to suit the more common
1597      $DEBUG$ case). */
1598   debug_section = bfd_get_section_by_name (objfile->obfd, "$DEBUG$");
1599   pinfo_section = bfd_get_section_by_name (objfile->obfd, "$PINFO$");
1600   if (debug_section)
1601     {
1602       /* The expected case: normal pxdb header. */
1603       bfd_get_section_contents (objfile->obfd, header_section,
1604                                 pxdb_header_p, 0, sizeof (PXDB_header));
1605
1606       if (!pxdb_header_p->pxdbed)
1607         {
1608           /* This shouldn't happen if we check in "symfile.c". */
1609           return 0;
1610         }                       /* DEBUG section */
1611     }
1612
1613   else if (pinfo_section)
1614     {
1615       /* The DOC case; we need to translate this into a
1616          regular header. */
1617       DOC_info_PXDB_header doc_header;
1618
1619 #ifdef DUMPING
1620       if (dumping)
1621         {
1622           printf ("==OOps, PINFO, let's try to handle this, %s.\n", objfile->name);
1623         }
1624 #endif
1625
1626       bfd_get_section_contents (objfile->obfd,
1627                                 header_section,
1628                                 &doc_header, 0,
1629                                 sizeof (DOC_info_PXDB_header));
1630
1631       if (!doc_header.pxdbed)
1632         {
1633           /* This shouldn't happen if we check in "symfile.c". */
1634           warning ("File \"%s\" not processed by pxdb!", objfile->name);
1635           return 0;
1636         }
1637
1638       /* Copy relevent fields to standard header passed in. */
1639       pxdb_header_p->pd_entries = doc_header.pd_entries;
1640       pxdb_header_p->fd_entries = doc_header.fd_entries;
1641       pxdb_header_p->md_entries = doc_header.md_entries;
1642       pxdb_header_p->pxdbed = doc_header.pxdbed;
1643       pxdb_header_p->bighdr = doc_header.bighdr;
1644       pxdb_header_p->sa_header = doc_header.sa_header;
1645       pxdb_header_p->inlined = doc_header.inlined;
1646       pxdb_header_p->globals = doc_header.globals;
1647       pxdb_header_p->time = doc_header.time;
1648       pxdb_header_p->pg_entries = doc_header.pg_entries;
1649       pxdb_header_p->functions = doc_header.functions;
1650       pxdb_header_p->files = doc_header.files;
1651       pxdb_header_p->cd_entries = doc_header.cd_entries;
1652       pxdb_header_p->aa_entries = doc_header.aa_entries;
1653       pxdb_header_p->oi_entries = doc_header.oi_entries;
1654       pxdb_header_p->version = doc_header.version;
1655     }                           /* PINFO section */
1656
1657   else
1658     {
1659 #ifdef DUMPING
1660       if (dumping)
1661         printf ("==No debug info at all for %s.\n", objfile->name);
1662 #endif
1663
1664       return 0;
1665
1666     }
1667
1668   return 1;
1669 }                               /* End of hpread_get_header */
1670 #endif /* QUICK_LOOK_UP */
1671 \f
1672
1673 /* Initialization for reading native HP C debug symbols from OBJFILE.
1674
1675    Its only purpose in life is to set up the symbol reader's private
1676    per-objfile data structures, and read in the raw contents of the debug
1677    sections (attaching pointers to the debug info into the private data
1678    structures).
1679
1680    Since BFD doesn't know how to read debug symbols in a format-independent
1681    way (and may never do so...), we have to do it ourselves.  Note we may
1682    be called on a file without native HP C debugging symbols.
1683
1684    FIXME, there should be a cleaner peephole into the BFD environment
1685    here. */
1686 void
1687 hpread_symfile_init (struct objfile *objfile)
1688 {
1689   asection *vt_section, *slt_section, *lntt_section, *gntt_section;
1690
1691   /* Allocate struct to keep track of the symfile */
1692   objfile->sym_private = (PTR)
1693     xmmalloc (objfile->md, sizeof (struct hpread_symfile_info));
1694   memset (objfile->sym_private, 0, sizeof (struct hpread_symfile_info));
1695
1696   /* We haven't read in any types yet.  */
1697   TYPE_VECTOR (objfile) = 0;
1698
1699   /* Read in data from the $GNTT$ subspace.  */
1700   gntt_section = bfd_get_section_by_name (objfile->obfd, "$GNTT$");
1701   if (!gntt_section)
1702     return;
1703
1704   GNTT (objfile)
1705     = obstack_alloc (&objfile->symbol_obstack,
1706                      bfd_section_size (objfile->obfd, gntt_section));
1707
1708   bfd_get_section_contents (objfile->obfd, gntt_section, GNTT (objfile),
1709                          0, bfd_section_size (objfile->obfd, gntt_section));
1710
1711   GNTT_SYMCOUNT (objfile)
1712     = bfd_section_size (objfile->obfd, gntt_section)
1713     / sizeof (struct dntt_type_block);
1714
1715   /* Read in data from the $LNTT$ subspace.   Also keep track of the number
1716      of LNTT symbols.
1717
1718      FIXME: this could be moved into the psymtab-to-symtab expansion
1719      code, and save startup time.  At the moment this data is
1720      still used, though.  We'd need a way to tell hp-symtab-read.c
1721      whether or not to load the LNTT. */
1722   lntt_section = bfd_get_section_by_name (objfile->obfd, "$LNTT$");
1723   if (!lntt_section)
1724     return;
1725
1726   LNTT (objfile)
1727     = obstack_alloc (&objfile->symbol_obstack,
1728                      bfd_section_size (objfile->obfd, lntt_section));
1729
1730   bfd_get_section_contents (objfile->obfd, lntt_section, LNTT (objfile),
1731                          0, bfd_section_size (objfile->obfd, lntt_section));
1732
1733   LNTT_SYMCOUNT (objfile)
1734     = bfd_section_size (objfile->obfd, lntt_section)
1735     / sizeof (struct dntt_type_block);
1736
1737   /* Read in data from the $SLT$ subspace.  $SLT$ contains information
1738      on source line numbers.  */
1739   slt_section = bfd_get_section_by_name (objfile->obfd, "$SLT$");
1740   if (!slt_section)
1741     return;
1742
1743   SLT (objfile) =
1744     obstack_alloc (&objfile->symbol_obstack,
1745                    bfd_section_size (objfile->obfd, slt_section));
1746
1747   bfd_get_section_contents (objfile->obfd, slt_section, SLT (objfile),
1748                           0, bfd_section_size (objfile->obfd, slt_section));
1749
1750   /* Read in data from the $VT$ subspace.  $VT$ contains things like
1751      names and constants.  Keep track of the number of symbols in the VT.  */
1752   vt_section = bfd_get_section_by_name (objfile->obfd, "$VT$");
1753   if (!vt_section)
1754     return;
1755
1756   VT_SIZE (objfile) = bfd_section_size (objfile->obfd, vt_section);
1757
1758   VT (objfile) =
1759     (char *) obstack_alloc (&objfile->symbol_obstack,
1760                             VT_SIZE (objfile));
1761
1762   bfd_get_section_contents (objfile->obfd, vt_section, VT (objfile),
1763                             0, VT_SIZE (objfile));
1764 }
1765
1766 /* Scan and build partial symbols for a symbol file.
1767
1768    The minimal symbol table (either SOM or HP a.out) has already been
1769    read in; all we need to do is setup partial symbols based on the
1770    native debugging information.
1771
1772    Note that the minimal table is produced by the linker, and has
1773    only global routines in it; the psymtab is based on compiler-
1774    generated debug information and has non-global
1775    routines in it as well as files and class information.
1776
1777    We assume hpread_symfile_init has been called to initialize the
1778    symbol reader's private data structures.
1779
1780    MAINLINE is true if we are reading the main symbol table (as
1781    opposed to a shared lib or dynamically loaded file). */
1782
1783 void
1784 hpread_build_psymtabs (struct objfile *objfile, int mainline)
1785 {
1786
1787 #ifdef DUMPING
1788   /* Turn this on to get debugging output. */
1789   static int dumping = 0;
1790 #endif
1791
1792   char *namestring;
1793   int past_first_source_file = 0;
1794   struct cleanup *old_chain;
1795
1796   int hp_symnum, symcount, i;
1797   int scan_start = 0;
1798
1799   union dnttentry *dn_bufp;
1800   unsigned long valu;
1801   char *p;
1802   int texthigh = 0;
1803   int have_name = 0;
1804
1805   /* Current partial symtab */
1806   struct partial_symtab *pst;
1807
1808   /* List of current psymtab's include files */
1809   char **psymtab_include_list;
1810   int includes_allocated;
1811   int includes_used;
1812
1813   /* Index within current psymtab dependency list */
1814   struct partial_symtab **dependency_list;
1815   int dependencies_used, dependencies_allocated;
1816
1817   /* Just in case the stabs reader left turds lying around.  */
1818   free_pending_blocks ();
1819   make_cleanup (really_free_pendings, 0);
1820
1821   pst = (struct partial_symtab *) 0;
1822
1823   /* We shouldn't use alloca, instead use malloc/free.  Doing so avoids
1824      a number of problems with cross compilation and creating useless holes
1825      in the stack when we have to allocate new entries.  FIXME.  */
1826
1827   includes_allocated = 30;
1828   includes_used = 0;
1829   psymtab_include_list = (char **) alloca (includes_allocated *
1830                                            sizeof (char *));
1831
1832   dependencies_allocated = 30;
1833   dependencies_used = 0;
1834   dependency_list =
1835     (struct partial_symtab **) alloca (dependencies_allocated *
1836                                        sizeof (struct partial_symtab *));
1837
1838   old_chain = make_cleanup_free_objfile (objfile);
1839
1840   last_source_file = 0;
1841
1842 #ifdef QUICK_LOOK_UP
1843   {
1844     /* Begin code for new-style loading of quick look-up tables. */
1845
1846     /* elz: this checks whether the file has beeen processed by pxdb.
1847        If not we would like to try to read the psymbols in
1848        anyway, but it turns out to be not so easy. So this could 
1849        actually be commented out, but I leave it in, just in case
1850        we decide to add support for non-pxdb-ed stuff in the future. */
1851     PXDB_header pxdb_header;
1852     int found_modules_in_program;
1853
1854     if (hpread_get_header (objfile, &pxdb_header))
1855       {
1856         /* Build a minimal table.  No types, no global variables,
1857            no include files.... */
1858 #ifdef DUMPING
1859         if (dumping)
1860           printf ("\nNew method for %s\n", objfile->name);
1861 #endif
1862
1863         /* elz: quick_traverse returns true if it found
1864            some modules in the main source file, other
1865            than those in end.c
1866            In C and C++, all the files have MODULES entries
1867            in the LNTT, and the quick table traverse is all 
1868            based on finding these MODULES entries. Without 
1869            those it cannot work. 
1870            It happens that F77 programs don't have MODULES
1871            so the quick traverse gets confused. F90 programs
1872            have modules, and the quick method still works.
1873            So, if modules (other than those in end.c) are
1874            not found we give up on the quick table stuff, 
1875            and fall back on the slower method  */
1876         found_modules_in_program = hpread_quick_traverse (objfile,
1877                                                           GNTT (objfile),
1878                                                           VT (objfile),
1879                                                           &pxdb_header);
1880
1881         discard_cleanups (old_chain);
1882
1883         /* Set up to scan the global section of the LNTT.
1884
1885            This field is not always correct: if there are
1886            no globals, it will point to the last record in
1887            the regular LNTT, which is usually an END MODULE.
1888
1889            Since it might happen that there could be a file
1890            with just one global record, there's no way to
1891            tell other than by looking at the record, so that's
1892            done below. */
1893         if (found_modules_in_program)
1894           scan_start = pxdb_header.globals;
1895       }
1896 #ifdef DUMPING
1897     else
1898       {
1899         if (dumping)
1900           printf ("\nGoing on to old method for %s\n", objfile->name);
1901       }
1902 #endif
1903   }
1904 #endif /* QUICK_LOOK_UP */
1905
1906   /* Make two passes, one over the GNTT symbols, the other for the
1907      LNTT symbols.
1908
1909      JB comment: above isn't true--they only make one pass, over
1910      the LNTT.  */
1911   for (i = 0; i < 1; i++)
1912     {
1913       int within_function = 0;
1914
1915       if (i)
1916         symcount = GNTT_SYMCOUNT (objfile);
1917       else
1918         symcount = LNTT_SYMCOUNT (objfile);
1919
1920
1921       for (hp_symnum = scan_start; hp_symnum < symcount; hp_symnum++)
1922         {
1923           QUIT;
1924           if (i)
1925             dn_bufp = hpread_get_gntt (hp_symnum, objfile);
1926           else
1927             dn_bufp = hpread_get_lntt (hp_symnum, objfile);
1928
1929           if (dn_bufp->dblock.extension)
1930             continue;
1931
1932           /* Only handle things which are necessary for minimal symbols.
1933              everything else is ignored.  */
1934           switch (dn_bufp->dblock.kind)
1935             {
1936             case DNTT_TYPE_SRCFILE:
1937               {
1938 #ifdef QUICK_LOOK_UP
1939                 if (scan_start == hp_symnum
1940                     && symcount == hp_symnum + 1)
1941                   {
1942                     /* If there are NO globals in an executable,
1943                        PXDB's index to the globals will point to
1944                        the last record in the file, which 
1945                        could be this record. (this happened for F77 libraries)
1946                        ignore it and be done! */
1947                     continue;
1948                   }
1949 #endif /* QUICK_LOOK_UP */
1950
1951                 /* A source file of some kind.  Note this may simply
1952                    be an included file.  */
1953                 SET_NAMESTRING (dn_bufp, &namestring, objfile);
1954
1955                 /* Check if this is the source file we are already working
1956                    with.  */
1957                 if (pst && !strcmp (namestring, pst->filename))
1958                   continue;
1959
1960                 /* Check if this is an include file, if so check if we have
1961                    already seen it.  Add it to the include list */
1962                 p = strrchr (namestring, '.');
1963                 if (!strcmp (p, ".h"))
1964                   {
1965                     int j, found;
1966
1967                     found = 0;
1968                     for (j = 0; j < includes_used; j++)
1969                       if (!strcmp (namestring, psymtab_include_list[j]))
1970                         {
1971                           found = 1;
1972                           break;
1973                         }
1974                     if (found)
1975                       continue;
1976
1977                     /* Add it to the list of includes seen so far and
1978                        allocate more include space if necessary.  */
1979                     psymtab_include_list[includes_used++] = namestring;
1980                     if (includes_used >= includes_allocated)
1981                       {
1982                         char **orig = psymtab_include_list;
1983
1984                         psymtab_include_list = (char **)
1985                           alloca ((includes_allocated *= 2) *
1986                                   sizeof (char *));
1987                         memcpy ((PTR) psymtab_include_list, (PTR) orig,
1988                                 includes_used * sizeof (char *));
1989                       }
1990                     continue;
1991                   }
1992
1993                 if (pst)
1994                   {
1995                     if (!have_name)
1996                       {
1997                         pst->filename = (char *)
1998                           obstack_alloc (&pst->objfile->psymbol_obstack,
1999                                          strlen (namestring) + 1);
2000                         strcpy (pst->filename, namestring);
2001                         have_name = 1;
2002                         continue;
2003                       }
2004                     continue;
2005                   }
2006
2007                 /* This is a bonafide new source file.
2008                    End the current partial symtab and start a new one.  */
2009
2010                 if (pst && past_first_source_file)
2011                   {
2012                     hpread_end_psymtab (pst, psymtab_include_list,
2013                                         includes_used,
2014                                         (hp_symnum
2015                                          * sizeof (struct dntt_type_block)),
2016                                         texthigh,
2017                                         dependency_list, dependencies_used);
2018                     pst = (struct partial_symtab *) 0;
2019                     includes_used = 0;
2020                     dependencies_used = 0;
2021                   }
2022                 else
2023                   past_first_source_file = 1;
2024
2025                 valu = hpread_get_textlow (i, hp_symnum, objfile, symcount);
2026                 valu += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2027                 pst = hpread_start_psymtab (objfile,
2028                                             namestring, valu,
2029                                             (hp_symnum
2030                                          * sizeof (struct dntt_type_block)),
2031                                             objfile->global_psymbols.next,
2032                                             objfile->static_psymbols.next);
2033                 texthigh = valu;
2034                 have_name = 1;
2035                 continue;
2036               }
2037
2038             case DNTT_TYPE_MODULE:
2039               /* A source file.  It's still unclear to me what the
2040                  real difference between a DNTT_TYPE_SRCFILE and DNTT_TYPE_MODULE
2041                  is supposed to be.  */
2042
2043               /* First end the previous psymtab */
2044               if (pst)
2045                 {
2046                   hpread_end_psymtab (pst, psymtab_include_list, includes_used,
2047                                       ((hp_symnum - 1)
2048                                        * sizeof (struct dntt_type_block)),
2049                                       texthigh,
2050                                       dependency_list, dependencies_used);
2051                   pst = (struct partial_symtab *) 0;
2052                   includes_used = 0;
2053                   dependencies_used = 0;
2054                   have_name = 0;
2055                 }
2056
2057               /* Now begin a new module and a new psymtab for it */
2058               SET_NAMESTRING (dn_bufp, &namestring, objfile);
2059               valu = hpread_get_textlow (i, hp_symnum, objfile, symcount);
2060               valu += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2061               if (!pst)
2062                 {
2063                   pst = hpread_start_psymtab (objfile,
2064                                               namestring, valu,
2065                                               (hp_symnum
2066                                          * sizeof (struct dntt_type_block)),
2067                                               objfile->global_psymbols.next,
2068                                               objfile->static_psymbols.next);
2069                   texthigh = valu;
2070                   have_name = 0;
2071                 }
2072               continue;
2073
2074             case DNTT_TYPE_FUNCTION:
2075             case DNTT_TYPE_ENTRY:
2076               /* The beginning of a function.  DNTT_TYPE_ENTRY may also denote
2077                  a secondary entry point.  */
2078               valu = dn_bufp->dfunc.hiaddr + ANOFFSET (objfile->section_offsets,
2079                                                        SECT_OFF_TEXT (objfile));
2080               if (valu > texthigh)
2081                 texthigh = valu;
2082               valu = dn_bufp->dfunc.lowaddr +
2083                 ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2084               SET_NAMESTRING (dn_bufp, &namestring, objfile);
2085               if (dn_bufp->dfunc.global)
2086                 add_psymbol_to_list (namestring, strlen (namestring),
2087                                      VAR_NAMESPACE, LOC_BLOCK,
2088                                      &objfile->global_psymbols, valu,
2089                                      0, language_unknown, objfile);
2090               else
2091                 add_psymbol_to_list (namestring, strlen (namestring),
2092                                      VAR_NAMESPACE, LOC_BLOCK,
2093                                      &objfile->static_psymbols, valu,
2094                                      0, language_unknown, objfile);
2095               within_function = 1;
2096               continue;
2097
2098             case DNTT_TYPE_DOC_FUNCTION:
2099               valu = dn_bufp->ddocfunc.hiaddr + ANOFFSET (objfile->section_offsets,
2100                                                           SECT_OFF_TEXT (objfile));
2101               if (valu > texthigh)
2102                 texthigh = valu;
2103               valu = dn_bufp->ddocfunc.lowaddr +
2104                 ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2105               SET_NAMESTRING (dn_bufp, &namestring, objfile);
2106               if (dn_bufp->ddocfunc.global)
2107                 add_psymbol_to_list (namestring, strlen (namestring),
2108                                      VAR_NAMESPACE, LOC_BLOCK,
2109                                      &objfile->global_psymbols, valu,
2110                                      0, language_unknown, objfile);
2111               else
2112                 add_psymbol_to_list (namestring, strlen (namestring),
2113                                      VAR_NAMESPACE, LOC_BLOCK,
2114                                      &objfile->static_psymbols, valu,
2115                                      0, language_unknown, objfile);
2116               within_function = 1;
2117               continue;
2118
2119             case DNTT_TYPE_BEGIN:
2120             case DNTT_TYPE_END:
2121               /* We don't check MODULE end here, because there can be
2122                  symbols beyond the module end which properly belong to the
2123                  current psymtab -- so we wait till the next MODULE start */
2124
2125
2126 #ifdef QUICK_LOOK_UP
2127               if (scan_start == hp_symnum
2128                   && symcount == hp_symnum + 1)
2129                 {
2130                   /* If there are NO globals in an executable,
2131                      PXDB's index to the globals will point to
2132                      the last record in the file, which is
2133                      probably an END MODULE, i.e. this record.
2134                      ignore it and be done! */
2135                   continue;
2136                 }
2137 #endif /* QUICK_LOOK_UP */
2138
2139               /* Scope block begin/end.  We only care about function
2140                  and file blocks right now.  */
2141
2142               if ((dn_bufp->dend.endkind == DNTT_TYPE_FUNCTION) ||
2143                   (dn_bufp->dend.endkind == DNTT_TYPE_DOC_FUNCTION))
2144                 within_function = 0;
2145               continue;
2146
2147             case DNTT_TYPE_SVAR:
2148             case DNTT_TYPE_DVAR:
2149             case DNTT_TYPE_TYPEDEF:
2150             case DNTT_TYPE_TAGDEF:
2151               {
2152                 /* Variables, typedefs an the like.  */
2153                 enum address_class storage;
2154                 namespace_enum namespace;
2155
2156                 /* Don't add locals to the partial symbol table.  */
2157                 if (within_function
2158                     && (dn_bufp->dblock.kind == DNTT_TYPE_SVAR
2159                         || dn_bufp->dblock.kind == DNTT_TYPE_DVAR))
2160                   continue;
2161
2162                 /* TAGDEFs go into the structure namespace.  */
2163                 if (dn_bufp->dblock.kind == DNTT_TYPE_TAGDEF)
2164                   namespace = STRUCT_NAMESPACE;
2165                 else
2166                   namespace = VAR_NAMESPACE;
2167
2168                 /* What kind of "storage" does this use?  */
2169                 if (dn_bufp->dblock.kind == DNTT_TYPE_SVAR)
2170                   storage = LOC_STATIC;
2171                 else if (dn_bufp->dblock.kind == DNTT_TYPE_DVAR
2172                          && dn_bufp->ddvar.regvar)
2173                   storage = LOC_REGISTER;
2174                 else if (dn_bufp->dblock.kind == DNTT_TYPE_DVAR)
2175                   storage = LOC_LOCAL;
2176                 else
2177                   storage = LOC_UNDEF;
2178
2179                 SET_NAMESTRING (dn_bufp, &namestring, objfile);
2180                 if (!pst)
2181                   {
2182                     pst = hpread_start_psymtab (objfile,
2183                                                 "globals", 0,
2184                                                 (hp_symnum
2185                                          * sizeof (struct dntt_type_block)),
2186                                               objfile->global_psymbols.next,
2187                                              objfile->static_psymbols.next);
2188                   }
2189
2190                 /* Compute address of the data symbol */
2191                 valu = dn_bufp->dsvar.location;
2192                 /* Relocate in case it's in a shared library */
2193                 if (storage == LOC_STATIC)
2194                   valu += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2195
2196                 /* Luckily, dvar, svar, typedef, and tagdef all
2197                    have their "global" bit in the same place, so it works
2198                    (though it's bad programming practice) to reference
2199                    "dsvar.global" even though we may be looking at
2200                    any of the above four types. */
2201                 if (dn_bufp->dsvar.global)
2202                   {
2203                     add_psymbol_to_list (namestring, strlen (namestring),
2204                                          namespace, storage,
2205                                          &objfile->global_psymbols,
2206                                          valu,
2207                                          0, language_unknown, objfile);
2208                   }
2209                 else
2210                   {
2211                     add_psymbol_to_list (namestring, strlen (namestring),
2212                                          namespace, storage,
2213                                          &objfile->static_psymbols,
2214                                          valu,
2215                                          0, language_unknown, objfile);
2216                   }
2217
2218                 /* For TAGDEF's, the above code added the tagname to the
2219                    struct namespace. This will cause tag "t" to be found
2220                    on a reference of the form "(struct t) x". But for
2221                    C++ classes, "t" will also be a typename, which we
2222                    want to find on a reference of the form "ptype t".
2223                    Therefore, we also add "t" to the var namespace.
2224                    Do the same for enum's due to the way aCC generates
2225                    debug info for these (see more extended comment
2226                    in hp-symtab-read.c).
2227                    We do the same for templates, so that "ptype t"
2228                    where "t" is a template also works. */
2229                 if (dn_bufp->dblock.kind == DNTT_TYPE_TAGDEF &&
2230                   dn_bufp->dtype.type.dnttp.index < LNTT_SYMCOUNT (objfile))
2231                   {
2232                     int global = dn_bufp->dtag.global;
2233                     /* Look ahead to see if it's a C++ class */
2234                     dn_bufp = hpread_get_lntt (dn_bufp->dtype.type.dnttp.index, objfile);
2235                     if (dn_bufp->dblock.kind == DNTT_TYPE_CLASS ||
2236                         dn_bufp->dblock.kind == DNTT_TYPE_ENUM ||
2237                         dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
2238                       {
2239                         if (global)
2240                           {
2241                             add_psymbol_to_list (namestring, strlen (namestring),
2242                                                  VAR_NAMESPACE, storage,
2243                                                  &objfile->global_psymbols,
2244                                                  dn_bufp->dsvar.location,
2245                                               0, language_unknown, objfile);
2246                           }
2247                         else
2248                           {
2249                             add_psymbol_to_list (namestring, strlen (namestring),
2250                                                  VAR_NAMESPACE, storage,
2251                                                  &objfile->static_psymbols,
2252                                                  dn_bufp->dsvar.location,
2253                                               0, language_unknown, objfile);
2254                           }
2255                       }
2256                   }
2257               }
2258               continue;
2259
2260             case DNTT_TYPE_MEMENUM:
2261             case DNTT_TYPE_CONST:
2262               /* Constants and members of enumerated types.  */
2263               SET_NAMESTRING (dn_bufp, &namestring, objfile);
2264               if (!pst)
2265                 {
2266                   pst = hpread_start_psymtab (objfile,
2267                                               "globals", 0,
2268                                               (hp_symnum
2269                                          * sizeof (struct dntt_type_block)),
2270                                               objfile->global_psymbols.next,
2271                                               objfile->static_psymbols.next);
2272                 }
2273               if (dn_bufp->dconst.global)
2274                 add_psymbol_to_list (namestring, strlen (namestring),
2275                                      VAR_NAMESPACE, LOC_CONST,
2276                                      &objfile->global_psymbols, 0,
2277                                      0, language_unknown, objfile);
2278               else
2279                 add_psymbol_to_list (namestring, strlen (namestring),
2280                                      VAR_NAMESPACE, LOC_CONST,
2281                                      &objfile->static_psymbols, 0,
2282                                      0, language_unknown, objfile);
2283               continue;
2284             default:
2285               continue;
2286             }
2287         }
2288     }
2289
2290   /* End any pending partial symbol table. */
2291   if (pst)
2292     {
2293       hpread_end_psymtab (pst, psymtab_include_list, includes_used,
2294                           hp_symnum * sizeof (struct dntt_type_block),
2295                           0, dependency_list, dependencies_used);
2296     }
2297
2298   discard_cleanups (old_chain);
2299 }
2300
2301 /* Perform any local cleanups required when we are done with a particular
2302    objfile.  I.E, we are in the process of discarding all symbol information
2303    for an objfile, freeing up all memory held for it, and unlinking the
2304    objfile struct from the global list of known objfiles. */
2305
2306 void
2307 hpread_symfile_finish (struct objfile *objfile)
2308 {
2309   if (objfile->sym_private != NULL)
2310     {
2311       xmfree (objfile->md, objfile->sym_private);
2312     }
2313 }
2314 \f
2315
2316 /* The remaining functions are all for internal use only.  */
2317
2318 /* Various small functions to get entries in the debug symbol sections.  */
2319
2320 union dnttentry *
2321 hpread_get_lntt (int index, struct objfile *objfile)
2322 {
2323   return (union dnttentry *)
2324     &(LNTT (objfile)[(index * sizeof (struct dntt_type_block))]);
2325 }
2326
2327 static union dnttentry *
2328 hpread_get_gntt (int index, struct objfile *objfile)
2329 {
2330   return (union dnttentry *)
2331     &(GNTT (objfile)[(index * sizeof (struct dntt_type_block))]);
2332 }
2333
2334 union sltentry *
2335 hpread_get_slt (int index, struct objfile *objfile)
2336 {
2337   return (union sltentry *) &(SLT (objfile)[index * sizeof (union sltentry)]);
2338 }
2339
2340 /* Get the low address associated with some symbol (typically the start
2341    of a particular source file or module).  Since that information is not
2342    stored as part of the DNTT_TYPE_MODULE or DNTT_TYPE_SRCFILE symbol we
2343    must infer it from the existence of DNTT_TYPE_FUNCTION symbols.  */
2344
2345 static unsigned long
2346 hpread_get_textlow (int global, int index, struct objfile *objfile,
2347                     int symcount)
2348 {
2349   union dnttentry *dn_bufp;
2350   struct minimal_symbol *msymbol;
2351
2352   /* Look for a DNTT_TYPE_FUNCTION symbol.  */
2353   if (index < symcount)         /* symcount is the number of symbols in */
2354     {                           /*   the dbinfo, LNTT table */
2355       do
2356         {
2357           if (global)
2358             dn_bufp = hpread_get_gntt (index++, objfile);
2359           else
2360             dn_bufp = hpread_get_lntt (index++, objfile);
2361         }
2362       while (dn_bufp->dblock.kind != DNTT_TYPE_FUNCTION
2363              && dn_bufp->dblock.kind != DNTT_TYPE_DOC_FUNCTION
2364              && dn_bufp->dblock.kind != DNTT_TYPE_END
2365              && index < symcount);
2366     }
2367
2368   /* Avoid going past a DNTT_TYPE_END when looking for a DNTT_TYPE_FUNCTION.  This
2369      might happen when a sourcefile has no functions.  */
2370   if (dn_bufp->dblock.kind == DNTT_TYPE_END)
2371     return 0;
2372
2373   /* Avoid going past the end of the LNTT file */
2374   if (index == symcount)
2375     return 0;
2376
2377   /* The minimal symbols are typically more accurate for some reason.  */
2378   if (dn_bufp->dblock.kind == DNTT_TYPE_FUNCTION)
2379     msymbol = lookup_minimal_symbol (dn_bufp->dfunc.name + VT (objfile), NULL,
2380                                      objfile);
2381   else                          /* must be a DNTT_TYPE_DOC_FUNCTION */
2382     msymbol = lookup_minimal_symbol (dn_bufp->ddocfunc.name + VT (objfile), NULL,
2383                                      objfile);
2384
2385   if (msymbol)
2386     return SYMBOL_VALUE_ADDRESS (msymbol);
2387   else
2388     return dn_bufp->dfunc.lowaddr;
2389 }
2390
2391 /* Allocate and partially fill a partial symtab.  It will be
2392    completely filled at the end of the symbol list.
2393
2394    SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2395    is the address relative to which its symbols are (incremental) or 0
2396    (normal). */
2397
2398 static struct partial_symtab *
2399 hpread_start_psymtab (struct objfile *objfile, char *filename,
2400                       CORE_ADDR textlow, int ldsymoff,
2401                       struct partial_symbol **global_syms,
2402                       struct partial_symbol **static_syms)
2403 {
2404   int offset = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2405   extern void hpread_psymtab_to_symtab ();
2406   struct partial_symtab *result =
2407   start_psymtab_common (objfile, objfile->section_offsets,
2408                         filename, textlow, global_syms, static_syms);
2409
2410   result->textlow += offset;
2411   result->read_symtab_private = (char *)
2412     obstack_alloc (&objfile->psymbol_obstack, sizeof (struct symloc));
2413   LDSYMOFF (result) = ldsymoff;
2414   result->read_symtab = hpread_psymtab_to_symtab;
2415
2416   return result;
2417 }
2418 \f
2419
2420 /* Close off the current usage of PST.  
2421    Returns PST or NULL if the partial symtab was empty and thrown away.
2422
2423    capping_symbol_offset  --Byte index in LNTT or GNTT of the
2424    last symbol processed during the build
2425    of the previous pst.
2426
2427    FIXME:  List variables and peculiarities of same.  */
2428
2429 static struct partial_symtab *
2430 hpread_end_psymtab (struct partial_symtab *pst, char **include_list,
2431                     int num_includes, int capping_symbol_offset,
2432                     CORE_ADDR capping_text,
2433                     struct partial_symtab **dependency_list,
2434                     int number_dependencies)
2435 {
2436   int i;
2437   struct objfile *objfile = pst->objfile;
2438   int offset = ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (objfile));
2439
2440 #ifdef DUMPING
2441   /* Turn on to see what kind of a psymtab we've built. */
2442   static int dumping = 0;
2443 #endif
2444
2445   if (capping_symbol_offset != -1)
2446     LDSYMLEN (pst) = capping_symbol_offset - LDSYMOFF (pst);
2447   else
2448     LDSYMLEN (pst) = 0;
2449   pst->texthigh = capping_text + offset;
2450
2451   pst->n_global_syms =
2452     objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
2453   pst->n_static_syms =
2454     objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
2455
2456 #ifdef DUMPING
2457   if (dumping)
2458     {
2459       printf ("\nPst %s, LDSYMOFF %x (%x), LDSYMLEN %x (%x), globals %d, statics %d\n",
2460               pst->filename,
2461               LDSYMOFF (pst),
2462               LDSYMOFF (pst) / sizeof (struct dntt_type_block),
2463               LDSYMLEN (pst),
2464               LDSYMLEN (pst) / sizeof (struct dntt_type_block),
2465               pst->n_global_syms, pst->n_static_syms);
2466     }
2467 #endif
2468
2469   pst->number_of_dependencies = number_dependencies;
2470   if (number_dependencies)
2471     {
2472       pst->dependencies = (struct partial_symtab **)
2473         obstack_alloc (&objfile->psymbol_obstack,
2474                     number_dependencies * sizeof (struct partial_symtab *));
2475       memcpy (pst->dependencies, dependency_list,
2476               number_dependencies * sizeof (struct partial_symtab *));
2477     }
2478   else
2479     pst->dependencies = 0;
2480
2481   for (i = 0; i < num_includes; i++)
2482     {
2483       struct partial_symtab *subpst =
2484       allocate_psymtab (include_list[i], objfile);
2485
2486       subpst->section_offsets = pst->section_offsets;
2487       subpst->read_symtab_private =
2488         (char *) obstack_alloc (&objfile->psymbol_obstack,
2489                                 sizeof (struct symloc));
2490       LDSYMOFF (subpst) =
2491         LDSYMLEN (subpst) =
2492         subpst->textlow =
2493         subpst->texthigh = 0;
2494
2495       /* We could save slight bits of space by only making one of these,
2496          shared by the entire set of include files.  FIXME-someday.  */
2497       subpst->dependencies = (struct partial_symtab **)
2498         obstack_alloc (&objfile->psymbol_obstack,
2499                        sizeof (struct partial_symtab *));
2500       subpst->dependencies[0] = pst;
2501       subpst->number_of_dependencies = 1;
2502
2503       subpst->globals_offset =
2504         subpst->n_global_syms =
2505         subpst->statics_offset =
2506         subpst->n_static_syms = 0;
2507
2508       subpst->readin = 0;
2509       subpst->symtab = 0;
2510       subpst->read_symtab = pst->read_symtab;
2511     }
2512
2513   sort_pst_symbols (pst);
2514
2515   /* If there is already a psymtab or symtab for a file of this name, remove it.
2516      (If there is a symtab, more drastic things also happen.)
2517      This happens in VxWorks.  */
2518   free_named_symtabs (pst->filename);
2519
2520   if (num_includes == 0
2521       && number_dependencies == 0
2522       && pst->n_global_syms == 0
2523       && pst->n_static_syms == 0)
2524     {
2525       /* Throw away this psymtab, it's empty.  We can't deallocate it, since
2526          it is on the obstack, but we can forget to chain it on the list. 
2527          Empty psymtabs happen as a result of header files which don't have
2528          any symbols in them.  There can be a lot of them.  But this check
2529          is wrong, in that a psymtab with N_SLINE entries but nothing else
2530          is not empty, but we don't realize that.  Fixing that without slowing
2531          things down might be tricky.
2532          It's also wrong if we're using the quick look-up tables, as
2533          we can get empty psymtabs from modules with no routines in
2534          them. */
2535
2536       discard_psymtab (pst);
2537
2538       /* Indicate that psymtab was thrown away.  */
2539       pst = (struct partial_symtab *) NULL;
2540
2541     }
2542   return pst;
2543 }
2544
2545 \f
2546 /* Get the nesting depth for the source line identified by INDEX.  */
2547
2548 static unsigned long
2549 hpread_get_scope_start (sltpointer index, struct objfile *objfile)
2550 {
2551   union sltentry *sl_bufp;
2552
2553   sl_bufp = hpread_get_slt (index, objfile);
2554   return sl_bufp->sspec.backptr.dnttp.index;
2555 }
2556
2557 /* Get the source line number the the line identified by INDEX.  */
2558
2559 static unsigned long
2560 hpread_get_line (sltpointer index, struct objfile *objfile)
2561 {
2562   union sltentry *sl_bufp;
2563
2564   sl_bufp = hpread_get_slt (index, objfile);
2565   return sl_bufp->snorm.line;
2566 }
2567
2568 /* Find the code address associated with a given sltpointer */
2569
2570 static CORE_ADDR
2571 hpread_get_location (sltpointer index, struct objfile *objfile)
2572 {
2573   union sltentry *sl_bufp;
2574   int i;
2575
2576   /* code location of special sltentrys is determined from context */
2577   sl_bufp = hpread_get_slt (index, objfile);
2578
2579   if (sl_bufp->snorm.sltdesc == SLT_END)
2580     {
2581       /* find previous normal sltentry and get address */
2582       for (i = 0; ((sl_bufp->snorm.sltdesc != SLT_NORMAL) &&
2583                    (sl_bufp->snorm.sltdesc != SLT_NORMAL_OFFSET) &&
2584                    (sl_bufp->snorm.sltdesc != SLT_EXIT)); i++)
2585         sl_bufp = hpread_get_slt (index - i, objfile);
2586       if (sl_bufp->snorm.sltdesc == SLT_NORMAL_OFFSET)
2587         return sl_bufp->snormoff.address;
2588       else
2589         return sl_bufp->snorm.address;
2590     }
2591
2592   /* find next normal sltentry and get address */
2593   for (i = 0; ((sl_bufp->snorm.sltdesc != SLT_NORMAL) &&
2594                (sl_bufp->snorm.sltdesc != SLT_NORMAL_OFFSET) &&
2595                (sl_bufp->snorm.sltdesc != SLT_EXIT)); i++)
2596     sl_bufp = hpread_get_slt (index + i, objfile);
2597   if (sl_bufp->snorm.sltdesc == SLT_NORMAL_OFFSET)
2598     return sl_bufp->snormoff.address;
2599   else
2600     return sl_bufp->snorm.address;
2601 }
2602 \f
2603
2604 /* Return 1 if an HP debug symbol of type KIND has a name associated with
2605  * it, else return 0. (This function is not currently used, but I'll
2606  * leave it here in case it proves useful later on. - RT).
2607  */
2608
2609 int
2610 hpread_has_name (enum dntt_entry_type kind)
2611 {
2612   switch (kind)
2613     {
2614     case DNTT_TYPE_SRCFILE:
2615     case DNTT_TYPE_MODULE:
2616     case DNTT_TYPE_FUNCTION:
2617     case DNTT_TYPE_DOC_FUNCTION:
2618     case DNTT_TYPE_ENTRY:
2619     case DNTT_TYPE_IMPORT:
2620     case DNTT_TYPE_LABEL:
2621     case DNTT_TYPE_FPARAM:
2622     case DNTT_TYPE_SVAR:
2623     case DNTT_TYPE_DVAR:
2624     case DNTT_TYPE_CONST:
2625     case DNTT_TYPE_TYPEDEF:
2626     case DNTT_TYPE_TAGDEF:
2627     case DNTT_TYPE_MEMENUM:
2628     case DNTT_TYPE_FIELD:
2629     case DNTT_TYPE_SA:
2630     case DNTT_TYPE_BLOCKDATA:
2631     case DNTT_TYPE_MEMFUNC:
2632     case DNTT_TYPE_DOC_MEMFUNC:
2633       return 1;
2634
2635     case DNTT_TYPE_BEGIN:
2636     case DNTT_TYPE_END:
2637     case DNTT_TYPE_POINTER:
2638     case DNTT_TYPE_ENUM:
2639     case DNTT_TYPE_SET:
2640     case DNTT_TYPE_ARRAY:
2641     case DNTT_TYPE_STRUCT:
2642     case DNTT_TYPE_UNION:
2643     case DNTT_TYPE_VARIANT:
2644     case DNTT_TYPE_FILE:
2645     case DNTT_TYPE_FUNCTYPE:
2646     case DNTT_TYPE_SUBRANGE:
2647     case DNTT_TYPE_WITH:
2648     case DNTT_TYPE_COMMON:
2649     case DNTT_TYPE_COBSTRUCT:
2650     case DNTT_TYPE_XREF:
2651     case DNTT_TYPE_MACRO:
2652     case DNTT_TYPE_CLASS_SCOPE:
2653     case DNTT_TYPE_REFERENCE:
2654     case DNTT_TYPE_PTRMEM:
2655     case DNTT_TYPE_PTRMEMFUNC:
2656     case DNTT_TYPE_CLASS:
2657     case DNTT_TYPE_GENFIELD:
2658     case DNTT_TYPE_VFUNC:
2659     case DNTT_TYPE_MEMACCESS:
2660     case DNTT_TYPE_INHERITANCE:
2661     case DNTT_TYPE_FRIEND_CLASS:
2662     case DNTT_TYPE_FRIEND_FUNC:
2663     case DNTT_TYPE_MODIFIER:
2664     case DNTT_TYPE_OBJECT_ID:
2665     case DNTT_TYPE_TEMPLATE:
2666     case DNTT_TYPE_TEMPLATE_ARG:
2667     case DNTT_TYPE_FUNC_TEMPLATE:
2668     case DNTT_TYPE_LINK:
2669       /* DNTT_TYPE_DYN_ARRAY_DESC ? */
2670       /* DNTT_TYPE_DESC_SUBRANGE ? */
2671       /* DNTT_TYPE_BEGIN_EXT ? */
2672       /* DNTT_TYPE_INLN ? */
2673       /* DNTT_TYPE_INLN_LIST ? */
2674       /* DNTT_TYPE_ALIAS ? */
2675     default:
2676       return 0;
2677     }
2678 }
2679
2680 /* Do the dirty work of reading in the full symbol from a partial symbol
2681    table.  */
2682
2683 static void
2684 hpread_psymtab_to_symtab_1 (struct partial_symtab *pst)
2685 {
2686   struct cleanup *old_chain;
2687   int i;
2688
2689   /* Get out quick if passed junk.  */
2690   if (!pst)
2691     return;
2692
2693   /* Complain if we've already read in this symbol table.  */
2694   if (pst->readin)
2695     {
2696       fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in."
2697                           "  Shouldn't happen.\n",
2698                           pst->filename);
2699       return;
2700     }
2701
2702   /* Read in all partial symtabs on which this one is dependent */
2703   for (i = 0; i < pst->number_of_dependencies; i++)
2704     if (!pst->dependencies[i]->readin)
2705       {
2706         /* Inform about additional files that need to be read in.  */
2707         if (info_verbose)
2708           {
2709             fputs_filtered (" ", gdb_stdout);
2710             wrap_here ("");
2711             fputs_filtered ("and ", gdb_stdout);
2712             wrap_here ("");
2713             printf_filtered ("%s...", pst->dependencies[i]->filename);
2714             wrap_here ("");     /* Flush output */
2715             gdb_flush (gdb_stdout);
2716           }
2717         hpread_psymtab_to_symtab_1 (pst->dependencies[i]);
2718       }
2719
2720   /* If it's real...  */
2721   if (LDSYMLEN (pst))
2722     {
2723       /* Init stuff necessary for reading in symbols */
2724       buildsym_init ();
2725       old_chain = make_cleanup (really_free_pendings, 0);
2726
2727       pst->symtab =
2728         hpread_expand_symtab (pst->objfile, LDSYMOFF (pst), LDSYMLEN (pst),
2729                               pst->textlow, pst->texthigh - pst->textlow,
2730                               pst->section_offsets, pst->filename);
2731       sort_symtab_syms (pst->symtab);
2732
2733       do_cleanups (old_chain);
2734     }
2735
2736   pst->readin = 1;
2737 }
2738
2739 /* Read in all of the symbols for a given psymtab for real.
2740    Be verbose about it if the user wants that.  */
2741
2742 void
2743 hpread_psymtab_to_symtab (struct partial_symtab *pst)
2744 {
2745   /* Get out quick if given junk.  */
2746   if (!pst)
2747     return;
2748
2749   /* Sanity check.  */
2750   if (pst->readin)
2751     {
2752       fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in."
2753                           "  Shouldn't happen.\n",
2754                           pst->filename);
2755       return;
2756     }
2757
2758   /* elz: setting the flag to indicate that the code of the target
2759      was compiled using an HP compiler (aCC, cc) 
2760      the processing_acc_compilation variable is declared in the 
2761      file buildsym.h, the HP_COMPILED_TARGET is defined to be equal
2762      to 3 in the file tm_hppa.h */
2763
2764   processing_gcc_compilation = 0;
2765
2766   if (LDSYMLEN (pst) || pst->number_of_dependencies)
2767     {
2768       /* Print the message now, before reading the string table,
2769          to avoid disconcerting pauses.  */
2770       if (info_verbose)
2771         {
2772           printf_filtered ("Reading in symbols for %s...", pst->filename);
2773           gdb_flush (gdb_stdout);
2774         }
2775
2776       hpread_psymtab_to_symtab_1 (pst);
2777
2778       /* Match with global symbols.  This only needs to be done once,
2779          after all of the symtabs and dependencies have been read in.   */
2780       scan_file_globals (pst->objfile);
2781
2782       /* Finish up the debug error message.  */
2783       if (info_verbose)
2784         printf_filtered ("done.\n");
2785     }
2786 }
2787
2788 /* Read in a defined section of a specific object file's symbols.
2789
2790    DESC is the file descriptor for the file, positioned at the
2791    beginning of the symtab
2792    SYM_OFFSET is the offset within the file of
2793    the beginning of the symbols we want to read
2794    SYM_SIZE is the size of the symbol info to read in.
2795    TEXT_OFFSET is the beginning of the text segment we are reading symbols for
2796    TEXT_SIZE is the size of the text segment read in.
2797    SECTION_OFFSETS are the relocation offsets which get added to each symbol. */
2798
2799 static struct symtab *
2800 hpread_expand_symtab (struct objfile *objfile, int sym_offset, int sym_size,
2801                       CORE_ADDR text_offset, int text_size,
2802                       struct section_offsets *section_offsets, char *filename)
2803 {
2804   char *namestring;
2805   union dnttentry *dn_bufp;
2806   unsigned max_symnum;
2807   int at_module_boundary = 0;
2808   /* 1 => at end, -1 => at beginning */
2809
2810   int sym_index = sym_offset / sizeof (struct dntt_type_block);
2811
2812   current_objfile = objfile;
2813   subfile_stack = 0;
2814
2815   last_source_file = 0;
2816
2817   /* Demangling style -- if EDG style already set, don't change it,
2818      as HP style causes some problems with the KAI EDG compiler */
2819   if (current_demangling_style != edg_demangling)
2820     {
2821       /* Otherwise, ensure that we are using HP style demangling */
2822       set_demangling_style (HP_DEMANGLING_STYLE_STRING);
2823     }
2824
2825   dn_bufp = hpread_get_lntt (sym_index, objfile);
2826   if (!((dn_bufp->dblock.kind == (unsigned char) DNTT_TYPE_SRCFILE) ||
2827         (dn_bufp->dblock.kind == (unsigned char) DNTT_TYPE_MODULE)))
2828     {
2829       start_symtab ("globals", NULL, 0);
2830       record_debugformat ("HP");
2831     }
2832
2833   /* The psymtab builder (hp-psymtab-read.c) is the one that
2834    * determined the "sym_size" argument (i.e. how many DNTT symbols
2835    * are in this symtab), which we use to compute "max_symnum"
2836    * (point in DNTT to which we read). 
2837    *
2838    * Perhaps this should be changed so that 
2839    * process_one_debug_symbol() "knows" when
2840    * to stop reading (based on reading from the MODULE to the matching
2841    * END), and take out this reliance on a #-syms being passed in...
2842    * (I'm worried about the reliability of this number). But I'll
2843    * leave it as-is, for now. - RT
2844    *
2845    * The change above has been made. I've left the "for" loop control
2846    * in to prepare for backing this out again. -JB
2847    */
2848   max_symnum = sym_size / sizeof (struct dntt_type_block);
2849   /* No reason to multiply on pst side and divide on sym side... FIXME */
2850
2851   /* Read in and process each debug symbol within the specified range.
2852    */
2853   for (symnum = 0;
2854        symnum < max_symnum;
2855        symnum++)
2856     {
2857       QUIT;                     /* Allow this to be interruptable */
2858       dn_bufp = hpread_get_lntt (sym_index + symnum, objfile);
2859
2860       if (dn_bufp->dblock.extension)
2861         continue;
2862
2863       /* Yow!  We call SET_NAMESTRING on things without names!  */
2864       SET_NAMESTRING (dn_bufp, &namestring, objfile);
2865
2866       hpread_process_one_debug_symbol (dn_bufp, namestring, section_offsets,
2867                                        objfile, text_offset, text_size,
2868                                        filename, symnum + sym_index,
2869                                        &at_module_boundary
2870         );
2871
2872       /* OLD COMMENTS: This routine is only called for psts.  All psts
2873        * correspond to MODULES.  If we ever do lazy-reading of globals
2874        * from the LNTT, then there will be a pst which ends when the
2875        * LNTT ends, and not at an END MODULE entry.  Then we'll have
2876        * to re-visit this break.  
2877
2878        if( at_end_of_module )
2879        break;
2880
2881        */
2882
2883       /* We no longer break out of the loop when we reach the end of a
2884          module. The reason is that with CTTI, the compiler can generate
2885          function symbols (for template function instantiations) which are not
2886          in any module; typically they show up beyond a module's end, and
2887          before the next module's start.  We include them in the current
2888          module.  However, we still don't trust the MAX_SYMNUM value from
2889          the psymtab, so we break out if we enter a new module. */
2890
2891       if (at_module_boundary == -1)
2892         break;
2893     }
2894
2895   current_objfile = NULL;
2896   hp_som_som_object_present = 1;        /* Indicate we've processed an HP SOM SOM file */
2897
2898   return end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT (objfile));
2899 }
2900 \f
2901
2902
2903
2904 /* Convert basic types from HP debug format into GDB internal format.  */
2905
2906 static int
2907 hpread_type_translate (dnttpointer typep)
2908 {
2909   if (!typep.dntti.immediate)
2910     {
2911       error ("error in hpread_type_translate\n.");
2912       return FT_VOID;
2913     }
2914
2915   switch (typep.dntti.type)
2916     {
2917     case HP_TYPE_BOOLEAN:
2918     case HP_TYPE_BOOLEAN_S300_COMPAT:
2919     case HP_TYPE_BOOLEAN_VAX_COMPAT:
2920       return FT_BOOLEAN;
2921     case HP_TYPE_CHAR:          /* C signed char, C++ plain char */
2922
2923     case HP_TYPE_WIDE_CHAR:
2924       return FT_CHAR;
2925     case HP_TYPE_INT:
2926       if (typep.dntti.bitlength <= 8)
2927         return FT_SIGNED_CHAR;  /* C++ signed char */
2928       if (typep.dntti.bitlength <= 16)
2929         return FT_SHORT;
2930       if (typep.dntti.bitlength <= 32)
2931         return FT_INTEGER;
2932       return FT_LONG_LONG;
2933     case HP_TYPE_LONG:
2934       if (typep.dntti.bitlength <= 8)
2935         return FT_SIGNED_CHAR;  /* C++ signed char. */
2936       return FT_LONG;
2937     case HP_TYPE_UNSIGNED_LONG:
2938       if (typep.dntti.bitlength <= 8)
2939         return FT_UNSIGNED_CHAR;        /* C/C++ unsigned char */
2940       if (typep.dntti.bitlength <= 16)
2941         return FT_UNSIGNED_SHORT;
2942       if (typep.dntti.bitlength <= 32)
2943         return FT_UNSIGNED_LONG;
2944       return FT_UNSIGNED_LONG_LONG;
2945     case HP_TYPE_UNSIGNED_INT:
2946       if (typep.dntti.bitlength <= 8)
2947         return FT_UNSIGNED_CHAR;
2948       if (typep.dntti.bitlength <= 16)
2949         return FT_UNSIGNED_SHORT;
2950       if (typep.dntti.bitlength <= 32)
2951         return FT_UNSIGNED_INTEGER;
2952       return FT_UNSIGNED_LONG_LONG;
2953     case HP_TYPE_REAL:
2954     case HP_TYPE_REAL_3000:
2955     case HP_TYPE_DOUBLE:
2956       if (typep.dntti.bitlength == 64)
2957         return FT_DBL_PREC_FLOAT;
2958       if (typep.dntti.bitlength == 128)
2959         return FT_EXT_PREC_FLOAT;
2960       return FT_FLOAT;
2961     case HP_TYPE_COMPLEX:
2962     case HP_TYPE_COMPLEXS3000:
2963       if (typep.dntti.bitlength == 128)
2964         return FT_DBL_PREC_COMPLEX;
2965       if (typep.dntti.bitlength == 192)
2966         return FT_EXT_PREC_COMPLEX;
2967       return FT_COMPLEX;
2968     case HP_TYPE_VOID:
2969       return FT_VOID;
2970     case HP_TYPE_STRING200:
2971     case HP_TYPE_LONGSTRING200:
2972     case HP_TYPE_FTN_STRING_SPEC:
2973     case HP_TYPE_MOD_STRING_SPEC:
2974     case HP_TYPE_MOD_STRING_3000:
2975     case HP_TYPE_FTN_STRING_S300_COMPAT:
2976     case HP_TYPE_FTN_STRING_VAX_COMPAT:
2977       return FT_STRING;
2978     case HP_TYPE_TEMPLATE_ARG:
2979       return FT_TEMPLATE_ARG;
2980     case HP_TYPE_TEXT:
2981     case HP_TYPE_FLABEL:
2982     case HP_TYPE_PACKED_DECIMAL:
2983     case HP_TYPE_ANYPOINTER:
2984     case HP_TYPE_GLOBAL_ANYPOINTER:
2985     case HP_TYPE_LOCAL_ANYPOINTER:
2986     default:
2987       warning ("hpread_type_translate: unhandled type code.\n");
2988       return FT_VOID;
2989     }
2990 }
2991
2992 /* Given a position in the DNTT, return a pointer to the 
2993  * already-built "struct type" (if any), for the type defined 
2994  * at that position.
2995  */
2996
2997 static struct type **
2998 hpread_lookup_type (dnttpointer hp_type, struct objfile *objfile)
2999 {
3000   unsigned old_len;
3001   int index = hp_type.dnttp.index;
3002   int size_changed = 0;
3003
3004   /* The immediate flag indicates this doesn't actually point to
3005    * a type DNTT.
3006    */
3007   if (hp_type.dntti.immediate)
3008     return NULL;
3009
3010   /* For each objfile, we maintain a "type vector".
3011    * This an array of "struct type *"'s with one pointer per DNTT index.
3012    * Given a DNTT index, we look in this array to see if we have
3013    * already processed this DNTT and if it is a type definition.
3014    * If so, then we can locate a pointer to the already-built
3015    * "struct type", and not build it again.
3016    * 
3017    * The need for this arises because our DNTT-walking code wanders
3018    * around. In particular, it will encounter the same type multiple
3019    * times (once for each object of that type). We don't want to 
3020    * built multiple "struct type"'s for the same thing.
3021    *
3022    * Having said this, I should point out that this type-vector is
3023    * an expensive way to keep track of this. If most DNTT entries are 
3024    * 3 words, the type-vector will be 1/3 the size of the DNTT itself.
3025    * Alternative solutions:
3026    * - Keep a compressed or hashed table. Less memory, but more expensive
3027    *   to search and update.
3028    * - (Suggested by JB): Overwrite the DNTT entry itself
3029    *   with the info. Create a new type code "ALREADY_BUILT", and modify
3030    *   the DNTT to have that type code and point to the already-built entry.
3031    * -RT
3032    */
3033
3034   if (index < LNTT_SYMCOUNT (objfile))
3035     {
3036       if (index >= TYPE_VECTOR_LENGTH (objfile))
3037         {
3038           old_len = TYPE_VECTOR_LENGTH (objfile);
3039
3040           /* See if we need to allocate a type-vector. */
3041           if (old_len == 0)
3042             {
3043               TYPE_VECTOR_LENGTH (objfile) = LNTT_SYMCOUNT (objfile) + GNTT_SYMCOUNT (objfile);
3044               TYPE_VECTOR (objfile) = (struct type **)
3045                 xmmalloc (objfile->md, TYPE_VECTOR_LENGTH (objfile) * sizeof (struct type *));
3046               memset (&TYPE_VECTOR (objfile)[old_len], 0,
3047                       (TYPE_VECTOR_LENGTH (objfile) - old_len) *
3048                       sizeof (struct type *));
3049             }
3050
3051           /* See if we need to resize type-vector. With my change to
3052            * initially allocate a correct-size type-vector, this code
3053            * should no longer trigger.
3054            */
3055           while (index >= TYPE_VECTOR_LENGTH (objfile))
3056             {
3057               TYPE_VECTOR_LENGTH (objfile) *= 2;
3058               size_changed = 1;
3059             }
3060           if (size_changed)
3061             {
3062               TYPE_VECTOR (objfile) = (struct type **)
3063                 xmrealloc (objfile->md,
3064                            (char *) TYPE_VECTOR (objfile),
3065                    (TYPE_VECTOR_LENGTH (objfile) * sizeof (struct type *)));
3066
3067               memset (&TYPE_VECTOR (objfile)[old_len], 0,
3068                       (TYPE_VECTOR_LENGTH (objfile) - old_len) *
3069                       sizeof (struct type *));
3070             }
3071
3072         }
3073       return &TYPE_VECTOR (objfile)[index];
3074     }
3075   else
3076     return NULL;
3077 }
3078
3079 /* Possibly allocate a GDB internal type so we can internalize HP_TYPE.
3080    Note we'll just return the address of a GDB internal type if we already
3081    have it lying around.  */
3082
3083 static struct type *
3084 hpread_alloc_type (dnttpointer hp_type, struct objfile *objfile)
3085 {
3086   struct type **type_addr;
3087
3088   type_addr = hpread_lookup_type (hp_type, objfile);
3089   if (*type_addr == 0)
3090     {
3091       *type_addr = alloc_type (objfile);
3092
3093       /* A hack - if we really are a C++ class symbol, then this default
3094        * will get overriden later on.
3095        */
3096       TYPE_CPLUS_SPECIFIC (*type_addr)
3097         = (struct cplus_struct_type *) &cplus_struct_default;
3098     }
3099
3100   return *type_addr;
3101 }
3102
3103 /* Read a native enumerated type and return it in GDB internal form.  */
3104
3105 static struct type *
3106 hpread_read_enum_type (dnttpointer hp_type, union dnttentry *dn_bufp,
3107                        struct objfile *objfile)
3108 {
3109   struct type *type;
3110   struct pending **symlist, *osyms, *syms;
3111   struct pending *local_list = NULL;
3112   int o_nsyms, nsyms = 0;
3113   dnttpointer mem;
3114   union dnttentry *memp;
3115   char *name;
3116   long n;
3117   struct symbol *sym;
3118
3119   /* Allocate a GDB type. If we've already read in this enum type,
3120    * it'll return the already built GDB type, so stop here.
3121    * (Note: I added this check, to conform with what's done for 
3122    *  struct, union, class.
3123    *  I assume this is OK. - RT)
3124    */
3125   type = hpread_alloc_type (hp_type, objfile);
3126   if (TYPE_CODE (type) == TYPE_CODE_ENUM)
3127     return type;
3128
3129   /* HP C supports "sized enums", where a specifier such as "short" or
3130      "char" can be used to get enums of different sizes. So don't assume
3131      an enum is always 4 bytes long. pai/1997-08-21 */
3132   TYPE_LENGTH (type) = dn_bufp->denum.bitlength / 8;
3133
3134   symlist = &file_symbols;
3135   osyms = *symlist;
3136   o_nsyms = osyms ? osyms->nsyms : 0;
3137
3138   /* Get a name for each member and add it to our list of members.  
3139    * The list of "mem" SOM records we are walking should all be
3140    * SOM type DNTT_TYPE_MEMENUM (not checked).
3141    */
3142   mem = dn_bufp->denum.firstmem;
3143   while (mem.word && mem.word != DNTTNIL)
3144     {
3145       memp = hpread_get_lntt (mem.dnttp.index, objfile);
3146
3147       name = VT (objfile) + memp->dmember.name;
3148       sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
3149                                              sizeof (struct symbol));
3150       memset (sym, 0, sizeof (struct symbol));
3151       SYMBOL_NAME (sym) = obsavestring (name, strlen (name),
3152                                         &objfile->symbol_obstack);
3153       SYMBOL_CLASS (sym) = LOC_CONST;
3154       SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3155       SYMBOL_VALUE (sym) = memp->dmember.value;
3156       add_symbol_to_list (sym, symlist);
3157       nsyms++;
3158       mem = memp->dmember.nextmem;
3159     }
3160
3161   /* Now that we know more about the enum, fill in more info.  */
3162   TYPE_CODE (type) = TYPE_CODE_ENUM;
3163   TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
3164   TYPE_NFIELDS (type) = nsyms;
3165   TYPE_FIELDS (type) = (struct field *)
3166     obstack_alloc (&objfile->type_obstack, sizeof (struct field) * nsyms);
3167
3168   /* Find the symbols for the members and put them into the type.
3169      The symbols can be found in the symlist that we put them on
3170      to cause them to be defined.  osyms contains the old value
3171      of that symlist; everything up to there was defined by us.
3172
3173      Note that we preserve the order of the enum constants, so
3174      that in something like "enum {FOO, LAST_THING=FOO}" we print
3175      FOO, not LAST_THING.  */
3176   for (syms = *symlist, n = 0; syms; syms = syms->next)
3177     {
3178       int j = 0;
3179       if (syms == osyms)
3180         j = o_nsyms;
3181       for (; j < syms->nsyms; j++, n++)
3182         {
3183           struct symbol *xsym = syms->symbol[j];
3184           SYMBOL_TYPE (xsym) = type;
3185           TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
3186           TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
3187           TYPE_FIELD_BITSIZE (type, n) = 0;
3188         }
3189       if (syms == osyms)
3190         break;
3191     }
3192
3193   return type;
3194 }
3195
3196 /* Read and internalize a native function debug symbol.  */
3197
3198 static struct type *
3199 hpread_read_function_type (dnttpointer hp_type, union dnttentry *dn_bufp,
3200                            struct objfile *objfile, int newblock)
3201 {
3202   struct type *type, *type1;
3203   struct pending *syms;
3204   struct pending *local_list = NULL;
3205   int nsyms = 0;
3206   dnttpointer param;
3207   union dnttentry *paramp;
3208   char *name;
3209   long n;
3210   struct symbol *sym;
3211   int record_args = 1;
3212
3213   /* See if we've already read in this type.  */
3214   type = hpread_alloc_type (hp_type, objfile);
3215   if (TYPE_CODE (type) == TYPE_CODE_FUNC)
3216     {
3217       record_args = 0;          /* already read in, don't modify type */
3218     }
3219   else
3220     {
3221       /* Nope, so read it in and store it away.  */
3222       if (dn_bufp->dblock.kind == DNTT_TYPE_FUNCTION ||
3223           dn_bufp->dblock.kind == DNTT_TYPE_MEMFUNC)
3224         type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunc.retval,
3225                                                           objfile));
3226       else if (dn_bufp->dblock.kind == DNTT_TYPE_FUNCTYPE)
3227         type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunctype.retval,
3228                                                           objfile));
3229       else                      /* expect DNTT_TYPE_FUNC_TEMPLATE */
3230         type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunc_template.retval,
3231                                                           objfile));
3232       memcpy ((char *) type, (char *) type1, sizeof (struct type));
3233
3234       /* Mark it -- in the middle of processing */
3235       TYPE_FLAGS (type) |= TYPE_FLAG_INCOMPLETE;
3236     }
3237
3238   /* Now examine each parameter noting its type, location, and a
3239      wealth of other information.  */
3240   if (dn_bufp->dblock.kind == DNTT_TYPE_FUNCTION ||
3241       dn_bufp->dblock.kind == DNTT_TYPE_MEMFUNC)
3242     param = dn_bufp->dfunc.firstparam;
3243   else if (dn_bufp->dblock.kind == DNTT_TYPE_FUNCTYPE)
3244     param = dn_bufp->dfunctype.firstparam;
3245   else                          /* expect DNTT_TYPE_FUNC_TEMPLATE */
3246     param = dn_bufp->dfunc_template.firstparam;
3247   while (param.word && param.word != DNTTNIL)
3248     {
3249       paramp = hpread_get_lntt (param.dnttp.index, objfile);
3250       nsyms++;
3251       param = paramp->dfparam.nextparam;
3252
3253       /* Get the name.  */
3254       name = VT (objfile) + paramp->dfparam.name;
3255       sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
3256                                              sizeof (struct symbol));
3257       (void) memset (sym, 0, sizeof (struct symbol));
3258       SYMBOL_NAME (sym) = obsavestring (name, strlen (name),
3259                                         &objfile->symbol_obstack);
3260
3261       /* Figure out where it lives.  */
3262       if (paramp->dfparam.regparam)
3263         SYMBOL_CLASS (sym) = LOC_REGPARM;
3264       else if (paramp->dfparam.indirect)
3265         SYMBOL_CLASS (sym) = LOC_REF_ARG;
3266       else
3267         SYMBOL_CLASS (sym) = LOC_ARG;
3268       SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3269       if (paramp->dfparam.copyparam)
3270         {
3271           SYMBOL_VALUE (sym) = paramp->dfparam.location;
3272 #ifdef HPREAD_ADJUST_STACK_ADDRESS
3273           SYMBOL_VALUE (sym)
3274             += HPREAD_ADJUST_STACK_ADDRESS (CURRENT_FUNCTION_VALUE (objfile));
3275 #endif
3276           /* This is likely a pass-by-invisible reference parameter,
3277              Hack on the symbol class to make GDB happy.  */
3278           /* ??rehrauer: This appears to be broken w/r/t to passing
3279              C values of type float and struct.  Perhaps this ought
3280              to be highighted as a special case, but for now, just
3281              allowing these to be LOC_ARGs seems to work fine.
3282            */
3283 #if 0
3284           SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
3285 #endif
3286         }
3287       else
3288         SYMBOL_VALUE (sym) = paramp->dfparam.location;
3289
3290       /* Get its type.  */
3291       SYMBOL_TYPE (sym) = hpread_type_lookup (paramp->dfparam.type, objfile);
3292       /* Add it to the symbol list.  */
3293       /* Note 1 (RT) At the moment, add_symbol_to_list() is also being
3294        * called on FPARAM symbols from the process_one_debug_symbol()
3295        * level... so parameters are getting added twice! (this shows
3296        * up in the symbol dump you get from "maint print symbols ...").
3297        * Note 2 (RT) I took out the processing of FPARAM from the 
3298        * process_one_debug_symbol() level, so at the moment parameters are only
3299        * being processed here. This seems to have no ill effect.
3300        */
3301       /* Note 3 (pai/1997-08-11) I removed the add_symbol_to_list() which put
3302          each fparam on the local_symbols list from here.  Now we use the
3303          local_list to which fparams are added below, and set the param_symbols
3304          global to point to that at the end of this routine. */
3305       /* elz: I added this new list of symbols which is local to the function.
3306          this list is the one which is actually used to build the type for the
3307          function rather than the gloabal list pointed to by symlist.
3308          Using a global list to keep track of the parameters is wrong, because 
3309          this function is called recursively if one parameter happend to be
3310          a function itself with more parameters in it. Adding parameters to the
3311          same global symbol list would not work!      
3312          Actually it did work in case of cc compiled programs where you do 
3313          not check the parameter lists of the arguments. */
3314       add_symbol_to_list (sym, &local_list);
3315
3316     }
3317
3318   /* If type was read in earlier, don't bother with modifying
3319      the type struct */
3320   if (!record_args)
3321     goto finish;
3322
3323   /* Note how many parameters we found.  */
3324   TYPE_NFIELDS (type) = nsyms;
3325   TYPE_FIELDS (type) = (struct field *)
3326     obstack_alloc (&objfile->type_obstack,
3327                    sizeof (struct field) * nsyms);
3328
3329   /* Find the symbols for the parameters and 
3330      use them to fill parameter-type information into the function-type.
3331      The parameter symbols can be found in the local_list that we just put them on. */
3332   /* Note that we preserve the order of the parameters, so
3333      that in something like "enum {FOO, LAST_THING=FOO}" we print
3334      FOO, not LAST_THING.  */
3335
3336   /* get the parameters types from the local list not the global list
3337      so that the type can be correctly constructed for functions which
3338      have function as parameters */
3339   for (syms = local_list, n = 0; syms; syms = syms->next)
3340     {
3341       int j = 0;
3342       for (j = 0; j < syms->nsyms; j++, n++)
3343         {
3344           struct symbol *xsym = syms->symbol[j];
3345           TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
3346           TYPE_FIELD_TYPE (type, n) = SYMBOL_TYPE (xsym);
3347           TYPE_FIELD_ARTIFICIAL (type, n) = 0;
3348           TYPE_FIELD_BITSIZE (type, n) = 0;
3349         }
3350     }
3351   /* Mark it as having been processed */
3352   TYPE_FLAGS (type) &= ~(TYPE_FLAG_INCOMPLETE);
3353
3354   /* Check whether we need to fix-up a class type with this function's type */
3355   if (fixup_class && (fixup_method == type))
3356     {
3357       fixup_class_method_type (fixup_class, fixup_method, objfile);
3358       fixup_class = NULL;
3359       fixup_method = NULL;
3360     }
3361
3362   /* Set the param list of this level of the context stack
3363      to our local list.  Do this only if this function was
3364      called for creating a new block, and not if it was called
3365      simply to get the function type. This prevents recursive
3366      invocations from trashing param_symbols. */
3367 finish:
3368   if (newblock)
3369     param_symbols = local_list;
3370
3371   return type;
3372 }
3373
3374
3375 /* Read and internalize a native DOC function debug symbol.  */
3376 /* This is almost identical to hpread_read_function_type(), except
3377  * for references to dn_bufp->ddocfunc instead of db_bufp->dfunc.
3378  * Since debug information for DOC functions is more likely to be
3379  * volatile, please leave it this way.
3380  */
3381 static struct type *
3382 hpread_read_doc_function_type (dnttpointer hp_type, union dnttentry *dn_bufp,
3383                                struct objfile *objfile, int newblock)
3384 {
3385   struct type *type, *type1;
3386   struct pending *syms;
3387   struct pending *local_list = NULL;
3388   int nsyms = 0;
3389   dnttpointer param;
3390   union dnttentry *paramp;
3391   char *name;
3392   long n;
3393   struct symbol *sym;
3394   int record_args = 1;
3395
3396   /* See if we've already read in this type.  */
3397   type = hpread_alloc_type (hp_type, objfile);
3398   if (TYPE_CODE (type) == TYPE_CODE_FUNC)
3399     {
3400       record_args = 0;          /* already read in, don't modify type */
3401     }
3402   else
3403     {
3404       /* Nope, so read it in and store it away.  */
3405       if (dn_bufp->dblock.kind == DNTT_TYPE_DOC_FUNCTION ||
3406           dn_bufp->dblock.kind == DNTT_TYPE_DOC_MEMFUNC)
3407         type1 = lookup_function_type (hpread_type_lookup (dn_bufp->ddocfunc.retval,
3408                                                           objfile));
3409       memcpy ((char *) type, (char *) type1, sizeof (struct type));
3410
3411       /* Mark it -- in the middle of processing */
3412       TYPE_FLAGS (type) |= TYPE_FLAG_INCOMPLETE;
3413     }
3414
3415   /* Now examine each parameter noting its type, location, and a
3416      wealth of other information.  */
3417   if (dn_bufp->dblock.kind == DNTT_TYPE_DOC_FUNCTION ||
3418       dn_bufp->dblock.kind == DNTT_TYPE_DOC_MEMFUNC)
3419     param = dn_bufp->ddocfunc.firstparam;
3420   while (param.word && param.word != DNTTNIL)
3421     {
3422       paramp = hpread_get_lntt (param.dnttp.index, objfile);
3423       nsyms++;
3424       param = paramp->dfparam.nextparam;
3425
3426       /* Get the name.  */
3427       name = VT (objfile) + paramp->dfparam.name;
3428       sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
3429                                              sizeof (struct symbol));
3430       (void) memset (sym, 0, sizeof (struct symbol));
3431       SYMBOL_NAME (sym) = name;
3432
3433       /* Figure out where it lives.  */
3434       if (paramp->dfparam.regparam)
3435         SYMBOL_CLASS (sym) = LOC_REGPARM;
3436       else if (paramp->dfparam.indirect)
3437         SYMBOL_CLASS (sym) = LOC_REF_ARG;
3438       else
3439         SYMBOL_CLASS (sym) = LOC_ARG;
3440       SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3441       if (paramp->dfparam.copyparam)
3442         {
3443           SYMBOL_VALUE (sym) = paramp->dfparam.location;
3444 #ifdef HPREAD_ADJUST_STACK_ADDRESS
3445           SYMBOL_VALUE (sym)
3446             += HPREAD_ADJUST_STACK_ADDRESS (CURRENT_FUNCTION_VALUE (objfile));
3447 #endif
3448           /* This is likely a pass-by-invisible reference parameter,
3449              Hack on the symbol class to make GDB happy.  */
3450           /* ??rehrauer: This appears to be broken w/r/t to passing
3451              C values of type float and struct.  Perhaps this ought
3452              to be highighted as a special case, but for now, just
3453              allowing these to be LOC_ARGs seems to work fine.
3454            */
3455 #if 0
3456           SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
3457 #endif
3458         }
3459       else
3460         SYMBOL_VALUE (sym) = paramp->dfparam.location;
3461
3462       /* Get its type.  */
3463       SYMBOL_TYPE (sym) = hpread_type_lookup (paramp->dfparam.type, objfile);
3464       /* Add it to the symbol list.  */
3465       /* Note 1 (RT) At the moment, add_symbol_to_list() is also being
3466        * called on FPARAM symbols from the process_one_debug_symbol()
3467        * level... so parameters are getting added twice! (this shows
3468        * up in the symbol dump you get from "maint print symbols ...").
3469        * Note 2 (RT) I took out the processing of FPARAM from the 
3470        * process_one_debug_symbol() level, so at the moment parameters are only
3471        * being processed here. This seems to have no ill effect.
3472        */
3473       /* Note 3 (pai/1997-08-11) I removed the add_symbol_to_list() which put
3474          each fparam on the local_symbols list from here.  Now we use the
3475          local_list to which fparams are added below, and set the param_symbols
3476          global to point to that at the end of this routine. */
3477
3478       /* elz: I added this new list of symbols which is local to the function.
3479          this list is the one which is actually used to build the type for the
3480          function rather than the gloabal list pointed to by symlist.
3481          Using a global list to keep track of the parameters is wrong, because 
3482          this function is called recursively if one parameter happend to be
3483          a function itself with more parameters in it. Adding parameters to the
3484          same global symbol list would not work!      
3485          Actually it did work in case of cc compiled programs where you do not check the
3486          parameter lists of the arguments.  */
3487       add_symbol_to_list (sym, &local_list);
3488     }
3489
3490   /* If type was read in earlier, don't bother with modifying
3491      the type struct */
3492   if (!record_args)
3493     goto finish;
3494
3495   /* Note how many parameters we found.  */
3496   TYPE_NFIELDS (type) = nsyms;
3497   TYPE_FIELDS (type) = (struct field *)
3498     obstack_alloc (&objfile->type_obstack,
3499                    sizeof (struct field) * nsyms);
3500
3501   /* Find the symbols for the parameters and 
3502      use them to fill parameter-type information into the function-type.
3503      The parameter symbols can be found in the local_list that we just put them on. */
3504   /* Note that we preserve the order of the parameters, so
3505      that in something like "enum {FOO, LAST_THING=FOO}" we print
3506      FOO, not LAST_THING.  */
3507
3508   /* get the parameters types from the local list not the global list
3509      so that the type can be correctly constructed for functions which
3510      have function as parameters
3511    */
3512   for (syms = local_list, n = 0; syms; syms = syms->next)
3513     {
3514       int j = 0;
3515       for (j = 0; j < syms->nsyms; j++, n++)
3516         {
3517           struct symbol *xsym = syms->symbol[j];
3518           TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
3519           TYPE_FIELD_TYPE (type, n) = SYMBOL_TYPE (xsym);
3520           TYPE_FIELD_ARTIFICIAL (type, n) = 0;
3521           TYPE_FIELD_BITSIZE (type, n) = 0;
3522         }
3523     }
3524
3525   /* Mark it as having been processed */
3526   TYPE_FLAGS (type) &= ~(TYPE_FLAG_INCOMPLETE);
3527
3528   /* Check whether we need to fix-up a class type with this function's type */
3529   if (fixup_class && (fixup_method == type))
3530     {
3531       fixup_class_method_type (fixup_class, fixup_method, objfile);
3532       fixup_class = NULL;
3533       fixup_method = NULL;
3534     }
3535
3536   /* Set the param list of this level of the context stack
3537      to our local list.  Do this only if this function was
3538      called for creating a new block, and not if it was called
3539      simply to get the function type. This prevents recursive
3540      invocations from trashing param_symbols. */
3541 finish:
3542   if (newblock)
3543     param_symbols = local_list;
3544
3545   return type;
3546 }
3547
3548
3549
3550 /* A file-level variable which keeps track of the current-template
3551  * being processed. Set in hpread_read_struct_type() while processing
3552  * a template type. Referred to in hpread_get_nth_templ_arg().
3553  * Yes, this is a kludge, but it arises from the kludge that already
3554  * exists in symtab.h, namely the fact that they encode
3555  * "template argument n" with fundamental type FT_TEMPLATE_ARG and
3556  * bitlength n. This means that deep in processing fundamental types
3557  * I need to ask the question "what template am I in the middle of?".
3558  * The alternative to stuffing a global would be to pass an argument
3559  * down the chain of calls just for this purpose.
3560  * 
3561  * There may be problems handling nested templates... tough.
3562  */
3563 static struct type *current_template = NULL;
3564
3565 /* Read in and internalize a structure definition.  
3566  * This same routine is called for struct, union, and class types.
3567  * Also called for templates, since they build a very similar
3568  * type entry as for class types.
3569  */
3570
3571 static struct type *
3572 hpread_read_struct_type (dnttpointer hp_type, union dnttentry *dn_bufp,
3573                          struct objfile *objfile)
3574 {
3575   /* The data members get linked together into a list of struct nextfield's */
3576   struct nextfield
3577     {
3578       struct nextfield *next;
3579       struct field field;
3580       unsigned char attributes; /* store visibility and virtuality info */
3581 #define ATTR_VIRTUAL 1
3582 #define ATTR_PRIVATE 2
3583 #define ATTR_PROTECT 3
3584     };
3585
3586
3587   /* The methods get linked together into a list of struct next_fn_field's */
3588   struct next_fn_field
3589     {
3590       struct next_fn_field *next;
3591       struct fn_fieldlist field;
3592       struct fn_field fn_field;
3593       int num_fn_fields;
3594     };
3595
3596   /* The template args get linked together into a list of struct next_template's */
3597   struct next_template
3598     {
3599       struct next_template *next;
3600       struct template_arg arg;
3601     };
3602
3603   /* The template instantiations get linked together into a list of these... */
3604   struct next_instantiation
3605     {
3606       struct next_instantiation *next;
3607       struct type *t;
3608     };
3609
3610   struct type *type;
3611   struct type *baseclass;
3612   struct type *memtype;
3613   struct nextfield *list = 0, *tmp_list = 0;
3614   struct next_fn_field *fn_list = 0;
3615   struct next_fn_field *fn_p;
3616   struct next_template *t_new, *t_list = 0;
3617   struct nextfield *new;
3618   struct next_fn_field *fn_new;
3619   struct next_instantiation *i_new, *i_list = 0;
3620   int n, nfields = 0, n_fn_fields = 0, n_fn_fields_total = 0;
3621   int n_base_classes = 0, n_templ_args = 0;
3622   int ninstantiations = 0;
3623   dnttpointer field, fn_field, parent;
3624   union dnttentry *fieldp, *fn_fieldp, *parentp;
3625   int i;
3626   int static_member = 0;
3627   int const_member = 0;
3628   int volatile_member = 0;
3629   unsigned long vtbl_offset;
3630   int need_bitvectors = 0;
3631   char *method_name = NULL;
3632   char *method_alias = NULL;
3633
3634
3635   /* Is it something we've already dealt with?  */
3636   type = hpread_alloc_type (hp_type, objfile);
3637   if ((TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
3638       (TYPE_CODE (type) == TYPE_CODE_UNION) ||
3639       (TYPE_CODE (type) == TYPE_CODE_CLASS) ||
3640       (TYPE_CODE (type) == TYPE_CODE_TEMPLATE))
3641     return type;
3642
3643   /* Get the basic type correct.  */
3644   if (dn_bufp->dblock.kind == DNTT_TYPE_STRUCT)
3645     {
3646       TYPE_CODE (type) = TYPE_CODE_STRUCT;
3647       TYPE_LENGTH (type) = dn_bufp->dstruct.bitlength / 8;
3648     }
3649   else if (dn_bufp->dblock.kind == DNTT_TYPE_UNION)
3650     {
3651       TYPE_CODE (type) = TYPE_CODE_UNION;
3652       TYPE_LENGTH (type) = dn_bufp->dunion.bitlength / 8;
3653     }
3654   else if (dn_bufp->dblock.kind == DNTT_TYPE_CLASS)
3655     {
3656       TYPE_CODE (type) = TYPE_CODE_CLASS;
3657       TYPE_LENGTH (type) = dn_bufp->dclass.bitlength / 8;
3658
3659       /* Overrides the TYPE_CPLUS_SPECIFIC(type) with allocated memory
3660        * rather than &cplus_struct_default.
3661        */
3662       allocate_cplus_struct_type (type);
3663
3664       /* Fill in declared-type.
3665        * (The C++ compiler will emit TYPE_CODE_CLASS 
3666        * for all 3 of "class", "struct"
3667        * "union", and we have to look at the "class_decl" field if we
3668        * want to know how it was really declared)
3669        */
3670       /* (0==class, 1==union, 2==struct) */
3671       TYPE_DECLARED_TYPE (type) = dn_bufp->dclass.class_decl;
3672     }
3673   else if (dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
3674     {
3675       /* Get the basic type correct.  */
3676       TYPE_CODE (type) = TYPE_CODE_TEMPLATE;
3677       allocate_cplus_struct_type (type);
3678       TYPE_DECLARED_TYPE (type) = DECLARED_TYPE_TEMPLATE;
3679     }
3680   else
3681     return type;
3682
3683
3684   TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
3685
3686   /* For classes, read the parent list.
3687    * Question (RT): Do we need to do this for templates also?
3688    */
3689   if (dn_bufp->dblock.kind == DNTT_TYPE_CLASS)
3690     {
3691
3692       /* First read the parent-list (classes from which we derive fields) */
3693       parent = dn_bufp->dclass.parentlist;
3694       while (parent.word && parent.word != DNTTNIL)
3695         {
3696           parentp = hpread_get_lntt (parent.dnttp.index, objfile);
3697
3698           /* "parentp" should point to a DNTT_TYPE_INHERITANCE record */
3699
3700           /* Get space to record the next field/data-member. */
3701           new = (struct nextfield *) alloca (sizeof (struct nextfield));
3702           new->next = list;
3703           list = new;
3704
3705           FIELD_BITSIZE (list->field) = 0;
3706
3707           /* The "classname" field is actually a DNTT pointer to the base class */
3708           baseclass = hpread_type_lookup (parentp->dinheritance.classname,
3709                                           objfile);
3710           FIELD_TYPE (list->field) = baseclass;
3711
3712           list->field.name = type_name_no_tag (FIELD_TYPE (list->field));
3713
3714           list->attributes = 0;
3715
3716           /* Check for virtuality of base, and set the
3717            * offset of the base subobject within the object.
3718            * (Offset set to -1 for virtual bases (for now).)
3719            */
3720           if (parentp->dinheritance.Virtual)
3721             {
3722               B_SET (&(list->attributes), ATTR_VIRTUAL);
3723               parentp->dinheritance.offset = -1;
3724             }
3725           else
3726             FIELD_BITPOS (list->field) = parentp->dinheritance.offset;
3727
3728           /* Check visibility */
3729           switch (parentp->dinheritance.visibility)
3730             {
3731             case 1:
3732               B_SET (&(list->attributes), ATTR_PROTECT);
3733               break;
3734             case 2:
3735               B_SET (&(list->attributes), ATTR_PRIVATE);
3736               break;
3737             }
3738
3739           n_base_classes++;
3740           nfields++;
3741
3742           parent = parentp->dinheritance.next;
3743         }
3744     }
3745
3746   /* For templates, read the template argument list.
3747    * This must be done before processing the member list, because
3748    * the member list may refer back to this. E.g.:
3749    *   template <class T1, class T2> class q2 {
3750    *     public:
3751    *     T1 a;
3752    *     T2 b;
3753    *   };
3754    * We need to read the argument list "T1", "T2" first.
3755    */
3756   if (dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
3757     {
3758       /* Kludge alert: This stuffs a global "current_template" which
3759        * is referred to by hpread_get_nth_templ_arg(). The global
3760        * is cleared at the end of this routine.
3761        */
3762       current_template = type;
3763
3764       /* Read in the argument list */
3765       field = dn_bufp->dtemplate.arglist;
3766       while (field.word && field.word != DNTTNIL)
3767         {
3768           /* Get this template argument */
3769           fieldp = hpread_get_lntt (field.dnttp.index, objfile);
3770           if (fieldp->dblock.kind != DNTT_TYPE_TEMPLATE_ARG)
3771             {
3772               warning ("Invalid debug info: Template argument entry is of wrong kind");
3773               break;
3774             }
3775           /* Bump the count */
3776           n_templ_args++;
3777           /* Allocate and fill in a struct next_template */
3778           t_new = (struct next_template *) alloca (sizeof (struct next_template));
3779           t_new->next = t_list;
3780           t_list = t_new;
3781           t_list->arg.name = VT (objfile) + fieldp->dtempl_arg.name;
3782           t_list->arg.type = hpread_read_templ_arg_type (field, fieldp,
3783                                                  objfile, t_list->arg.name);
3784           /* Walk to the next template argument */
3785           field = fieldp->dtempl_arg.nextarg;
3786         }
3787     }
3788
3789   TYPE_NTEMPLATE_ARGS (type) = n_templ_args;
3790
3791   if (n_templ_args > 0)
3792     TYPE_TEMPLATE_ARGS (type) = (struct template_arg *)
3793       obstack_alloc (&objfile->type_obstack, sizeof (struct template_arg) * n_templ_args);
3794   for (n = n_templ_args; t_list; t_list = t_list->next)
3795     {
3796       n -= 1;
3797       TYPE_TEMPLATE_ARG (type, n) = t_list->arg;
3798     }
3799
3800   /* Next read in and internalize all the fields/members.  */
3801   if (dn_bufp->dblock.kind == DNTT_TYPE_STRUCT)
3802     field = dn_bufp->dstruct.firstfield;
3803   else if (dn_bufp->dblock.kind == DNTT_TYPE_UNION)
3804     field = dn_bufp->dunion.firstfield;
3805   else if (dn_bufp->dblock.kind == DNTT_TYPE_CLASS)
3806     field = dn_bufp->dclass.memberlist;
3807   else if (dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
3808     field = dn_bufp->dtemplate.memberlist;
3809   else
3810     field.word = DNTTNIL;
3811
3812   while (field.word && field.word != DNTTNIL)
3813     {
3814       fieldp = hpread_get_lntt (field.dnttp.index, objfile);
3815
3816       /* At this point "fieldp" may point to either a DNTT_TYPE_FIELD
3817        * or a DNTT_TYPE_GENFIELD record. 
3818        */
3819       vtbl_offset = 0;
3820       static_member = 0;
3821       const_member = 0;
3822       volatile_member = 0;
3823
3824       if (fieldp->dblock.kind == DNTT_TYPE_GENFIELD)
3825         {
3826
3827           /* The type will be GENFIELD if the field is a method or
3828            * a static member (or some other cases -- see below)
3829            */
3830
3831           /* Follow a link to get to the record for the field. */
3832           fn_field = fieldp->dgenfield.field;
3833           fn_fieldp = hpread_get_lntt (fn_field.dnttp.index, objfile);
3834
3835           /* Virtual funcs are indicated by a VFUNC which points to the
3836            * real entry
3837            */
3838           if (fn_fieldp->dblock.kind == DNTT_TYPE_VFUNC)
3839             {
3840               vtbl_offset = fn_fieldp->dvfunc.vtbl_offset;
3841               fn_field = fn_fieldp->dvfunc.funcptr;
3842               fn_fieldp = hpread_get_lntt (fn_field.dnttp.index, objfile);
3843             }
3844
3845           /* A function's entry may be preceded by a modifier which
3846            * labels it static/constant/volatile.
3847            */
3848           if (fn_fieldp->dblock.kind == DNTT_TYPE_MODIFIER)
3849             {
3850               static_member = fn_fieldp->dmodifier.m_static;
3851               const_member = fn_fieldp->dmodifier.m_const;
3852               volatile_member = fn_fieldp->dmodifier.m_volatile;
3853               fn_field = fn_fieldp->dmodifier.type;
3854               fn_fieldp = hpread_get_lntt (fn_field.dnttp.index, objfile);
3855             }
3856
3857           /* Check whether we have a method */
3858           if ((fn_fieldp->dblock.kind == DNTT_TYPE_MEMFUNC) ||
3859               (fn_fieldp->dblock.kind == DNTT_TYPE_FUNCTION) ||
3860               (fn_fieldp->dblock.kind == DNTT_TYPE_DOC_MEMFUNC) ||
3861               (fn_fieldp->dblock.kind == DNTT_TYPE_DOC_FUNCTION))
3862             {
3863               /* Method found */
3864
3865               short ix = 0;
3866
3867               /* Look up function type of method */
3868               memtype = hpread_type_lookup (fn_field, objfile);
3869
3870               /* Methods can be seen before classes in the SOM records.
3871                  If we are processing this class because it's a parameter of a
3872                  method, at this point the method's type is actually incomplete;
3873                  we'll have to fix it up later; mark the class for this. */
3874
3875               if (TYPE_INCOMPLETE (memtype))
3876                 {
3877                   TYPE_FLAGS (type) |= TYPE_FLAG_INCOMPLETE;
3878                   if (fixup_class)
3879                     warning ("Two classes to fix up for method??  Type information may be incorrect for some classes.");
3880                   if (fixup_method)
3881                     warning ("Two methods to be fixed up at once?? Type information may be incorrect for some classes.");
3882                   fixup_class = type;   /* remember this class has to be fixed up */
3883                   fixup_method = memtype;       /* remember the method type to be used in fixup */
3884                 }
3885
3886               /* HP aCC generates operator names without the "operator" keyword, and
3887                  generates null strings as names for operators that are 
3888                  user-defined type conversions to basic types (e.g. operator int ()).
3889                  So try to reconstruct name as best as possible. */
3890
3891               method_name = (char *) (VT (objfile) + fn_fieldp->dfunc.name);
3892               method_alias = (char *) (VT (objfile) + fn_fieldp->dfunc.alias);
3893
3894               if (!method_name ||       /* no name */
3895                   !*method_name ||      /* or null name */
3896                   cplus_mangle_opname (method_name, DMGL_ANSI))         /* or name is an operator like "<" */
3897                 {
3898                   char *tmp_name = cplus_demangle (method_alias, DMGL_ANSI);
3899                   char *op_string = strstr (tmp_name, "operator");
3900                   method_name = xmalloc (strlen (op_string) + 1);       /* don't overwrite VT! */
3901                   strcpy (method_name, op_string);
3902                 }
3903
3904               /* First check if a method of the same name has already been seen. */
3905               fn_p = fn_list;
3906               while (fn_p)
3907                 {
3908                   if (STREQ (fn_p->field.name, method_name))
3909                     break;
3910                   fn_p = fn_p->next;
3911                 }
3912
3913               /* If no such method was found, allocate a new entry in the list */
3914               if (!fn_p)
3915                 {
3916                   /* Get space to record this member function */
3917                   /* Note: alloca used; this will disappear on routine exit */
3918                   fn_new = (struct next_fn_field *) alloca (sizeof (struct next_fn_field));
3919                   fn_new->next = fn_list;
3920                   fn_list = fn_new;
3921
3922                   /* Fill in the fields of the struct nextfield */
3923
3924                   /* Record the (unmangled) method name */
3925                   fn_list->field.name = method_name;
3926                   /* Initial space for overloaded methods */
3927                   /* Note: xmalloc is used; this will persist after this routine exits */
3928                   fn_list->field.fn_fields = (struct fn_field *) xmalloc (5 * (sizeof (struct fn_field)));
3929                   fn_list->field.length = 1;    /* Init # of overloaded instances */
3930                   fn_list->num_fn_fields = 5;   /* # of entries for which space allocated */
3931                   fn_p = fn_list;
3932                   ix = 0;       /* array index for fn_field */
3933                   /* Bump the total count of the distinctly named methods */
3934                   n_fn_fields++;
3935                 }
3936               else
3937                 /* Another overloaded instance of an already seen method name */
3938                 {
3939                   if (++(fn_p->field.length) > fn_p->num_fn_fields)
3940                     {
3941                       /* Increase space allocated for overloaded instances */
3942                       fn_p->field.fn_fields
3943                         = (struct fn_field *) xrealloc (fn_p->field.fn_fields,
3944                       (fn_p->num_fn_fields + 5) * sizeof (struct fn_field));
3945                       fn_p->num_fn_fields += 5;
3946                     }
3947                   ix = fn_p->field.length - 1;  /* array index for fn_field */
3948                 }
3949
3950               /* "physname" is intended to be the name of this overloaded instance. */
3951               if ((fn_fieldp->dfunc.language == HP_LANGUAGE_CPLUSPLUS) &&
3952                   method_alias &&
3953                   *method_alias)        /* not a null string */
3954                 fn_p->field.fn_fields[ix].physname = method_alias;
3955               else
3956                 fn_p->field.fn_fields[ix].physname = method_name;
3957               /* What's expected here is the function type */
3958               /* But mark it as NULL if the method was incompletely processed
3959                  We'll fix this up later when the method is fully processed */
3960               if (TYPE_INCOMPLETE (memtype))
3961                 {
3962                   fn_p->field.fn_fields[ix].type = NULL;
3963                   fn_p->field.fn_fields[ix].args = NULL;
3964                 }
3965               else
3966                 {
3967                   fn_p->field.fn_fields[ix].type = memtype;
3968
3969                   /* The argument list */
3970                   fn_p->field.fn_fields[ix].type->type_specific.arg_types =
3971                     (struct type **) obstack_alloc (&objfile->type_obstack,
3972                            sizeof (struct type *) * (memtype->nfields + 1));
3973                   for (i = 0; i < memtype->nfields; i++)
3974                     fn_p->field.fn_fields[ix].type->type_specific.arg_types[i] = memtype->fields[i].type;
3975                   /* void termination */
3976                   fn_p->field.fn_fields[ix].type->type_specific.arg_types[memtype->nfields] = builtin_type_void;
3977
3978                   /* pai: It's not clear why this args field has to be set.  Perhaps
3979                    * it should be eliminated entirely. */
3980                   fn_p->field.fn_fields[ix].args =
3981                     (struct type **) obstack_alloc (&objfile->type_obstack,
3982                            sizeof (struct type *) * (memtype->nfields + 1));
3983                   for (i = 0; i < memtype->nfields; i++)
3984                     fn_p->field.fn_fields[ix].args[i] = memtype->fields[i].type;
3985                   /* null-terminated, unlike arg_types above e */
3986                   fn_p->field.fn_fields[ix].args[memtype->nfields] = NULL;
3987                 }
3988               /* For virtual functions, fill in the voffset field with the
3989                * virtual table offset. (This is just copied over from the
3990                * SOM record; not sure if it is what GDB expects here...).
3991                * But if the function is a static method, set it to 1.
3992                * 
3993                * Note that we have to add 1 because 1 indicates a static
3994                * method, and 0 indicates a non-static, non-virtual method */
3995
3996               if (static_member)
3997                 fn_p->field.fn_fields[ix].voffset = VOFFSET_STATIC;
3998               else
3999                 fn_p->field.fn_fields[ix].voffset = vtbl_offset ? vtbl_offset + 1 : 0;
4000
4001               /* Also fill in the fcontext field with the current
4002                * class. (The latter isn't quite right: should be the baseclass
4003                * that defines the virtual function... Note we do have
4004                * a variable "baseclass" that we could stuff into the fcontext
4005                * field, but "baseclass" isn't necessarily right either,
4006                * since the virtual function could have been defined more
4007                * than one level up).
4008                */
4009
4010               if (vtbl_offset != 0)
4011                 fn_p->field.fn_fields[ix].fcontext = type;
4012               else
4013                 fn_p->field.fn_fields[ix].fcontext = NULL;
4014
4015               /* Other random fields pertaining to this method */
4016               fn_p->field.fn_fields[ix].is_const = const_member;
4017               fn_p->field.fn_fields[ix].is_volatile = volatile_member;  /* ?? */
4018               switch (fieldp->dgenfield.visibility)
4019                 {
4020                 case 1:
4021                   fn_p->field.fn_fields[ix].is_protected = 1;
4022                   fn_p->field.fn_fields[ix].is_private = 0;
4023                   break;
4024                 case 2:
4025                   fn_p->field.fn_fields[ix].is_protected = 0;
4026                   fn_p->field.fn_fields[ix].is_private = 1;
4027                   break;
4028                 default:        /* public */
4029                   fn_p->field.fn_fields[ix].is_protected = 0;
4030                   fn_p->field.fn_fields[ix].is_private = 0;
4031                 }
4032               fn_p->field.fn_fields[ix].is_stub = 0;
4033
4034               /* HP aCC emits both MEMFUNC and FUNCTION entries for a method;
4035                  if the class points to the FUNCTION, there is usually separate
4036                  code for the method; but if we have a MEMFUNC, the method has
4037                  been inlined (and there is usually no FUNCTION entry)
4038                  FIXME Not sure if this test is accurate. pai/1997-08-22 */
4039               if ((fn_fieldp->dblock.kind == DNTT_TYPE_MEMFUNC) ||
4040                   (fn_fieldp->dblock.kind == DNTT_TYPE_DOC_MEMFUNC))
4041                 fn_p->field.fn_fields[ix].is_inlined = 1;
4042               else
4043                 fn_p->field.fn_fields[ix].is_inlined = 0;
4044
4045               fn_p->field.fn_fields[ix].dummy = 0;
4046
4047               /* Bump the total count of the member functions */
4048               n_fn_fields_total++;
4049
4050             }
4051           else if (fn_fieldp->dblock.kind == DNTT_TYPE_SVAR)
4052             {
4053               /* This case is for static data members of classes */
4054
4055               /* pai:: FIXME -- check that "staticmem" bit is set */
4056
4057               /* Get space to record this static member */
4058               new = (struct nextfield *) alloca (sizeof (struct nextfield));
4059               new->next = list;
4060               list = new;
4061
4062               list->field.name = VT (objfile) + fn_fieldp->dsvar.name;
4063               FIELD_BITSIZE (list->field) = -1;         /* indicates static member */
4064               SET_FIELD_PHYSNAME (list->field, 0);      /* initialize to empty */
4065               memtype = hpread_type_lookup (fn_fieldp->dsvar.type, objfile);
4066
4067               FIELD_TYPE (list->field) = memtype;
4068               list->attributes = 0;
4069               switch (fieldp->dgenfield.visibility)
4070                 {
4071                 case 1:
4072                   B_SET (&(list->attributes), ATTR_PROTECT);
4073                   break;
4074                 case 2:
4075                   B_SET (&(list->attributes), ATTR_PRIVATE);
4076                   break;
4077                 }
4078               nfields++;
4079             }
4080
4081           else if (fn_fieldp->dblock.kind == DNTT_TYPE_FIELD)
4082             {
4083               /* FIELDs follow GENFIELDs for fields of anonymous unions.
4084                  Code below is replicated from the case for FIELDs further
4085                  below, except that fieldp is replaced by fn_fieldp */
4086               if (!fn_fieldp->dfield.a_union)
4087                 warning ("Debug info inconsistent: FIELD of anonymous union doesn't have a_union bit set");
4088               /* Get space to record the next field/data-member. */
4089               new = (struct nextfield *) alloca (sizeof (struct nextfield));
4090               new->next = list;
4091               list = new;
4092
4093               list->field.name = VT (objfile) + fn_fieldp->dfield.name;
4094               FIELD_BITPOS (list->field) = fn_fieldp->dfield.bitoffset;
4095               if (fn_fieldp->dfield.bitlength % 8)
4096                 list->field.bitsize = fn_fieldp->dfield.bitlength;
4097               else
4098                 list->field.bitsize = 0;
4099
4100               memtype = hpread_type_lookup (fn_fieldp->dfield.type, objfile);
4101               list->field.type = memtype;
4102               list->attributes = 0;
4103               switch (fn_fieldp->dfield.visibility)
4104                 {
4105                 case 1:
4106                   B_SET (&(list->attributes), ATTR_PROTECT);
4107                   break;
4108                 case 2:
4109                   B_SET (&(list->attributes), ATTR_PRIVATE);
4110                   break;
4111                 }
4112               nfields++;
4113             }
4114           else if (fn_fieldp->dblock.kind == DNTT_TYPE_SVAR)
4115             {
4116               /* Field of anonymous union; union is not inside a class */
4117               if (!fn_fieldp->dsvar.a_union)
4118                 warning ("Debug info inconsistent: SVAR field in anonymous union doesn't have a_union bit set");
4119               /* Get space to record the next field/data-member. */
4120               new = (struct nextfield *) alloca (sizeof (struct nextfield));
4121               new->next = list;
4122               list = new;
4123
4124               list->field.name = VT (objfile) + fn_fieldp->dsvar.name;
4125               FIELD_BITPOS (list->field) = 0;   /* FIXME is this always true? */
4126               FIELD_BITSIZE (list->field) = 0;  /* use length from type */
4127               memtype = hpread_type_lookup (fn_fieldp->dsvar.type, objfile);
4128               list->field.type = memtype;
4129               list->attributes = 0;
4130               /* No info to set visibility -- always public */
4131               nfields++;
4132             }
4133           else if (fn_fieldp->dblock.kind == DNTT_TYPE_DVAR)
4134             {
4135               /* Field of anonymous union; union is not inside a class */
4136               if (!fn_fieldp->ddvar.a_union)
4137                 warning ("Debug info inconsistent: DVAR field in anonymous union doesn't have a_union bit set");
4138               /* Get space to record the next field/data-member. */
4139               new = (struct nextfield *) alloca (sizeof (struct nextfield));
4140               new->next = list;
4141               list = new;
4142
4143               list->field.name = VT (objfile) + fn_fieldp->ddvar.name;
4144               FIELD_BITPOS (list->field) = 0;   /* FIXME is this always true? */
4145               FIELD_BITSIZE (list->field) = 0;  /* use length from type */
4146               memtype = hpread_type_lookup (fn_fieldp->ddvar.type, objfile);
4147               list->field.type = memtype;
4148               list->attributes = 0;
4149               /* No info to set visibility -- always public */
4150               nfields++;
4151             }
4152           else
4153             {                   /* Not a method, nor a static data member, nor an anon union field */
4154
4155               /* This case is for miscellaneous type entries (local enums,
4156                  local function templates, etc.) that can be present
4157                  inside a class. */
4158
4159               /* Enums -- will be handled by other code that takes care
4160                  of DNTT_TYPE_ENUM; here we see only DNTT_TYPE_MEMENUM so
4161                  it's not clear we could have handled them here at all. */
4162               /* FUNC_TEMPLATE: is handled by other code (?). */
4163               /* MEMACCESS: modified access for inherited member. Not
4164                  sure what to do with this, ignoriing it at present. */
4165
4166               /* What other entries can appear following a GENFIELD which
4167                  we do not handle above?  (MODIFIER, VFUNC handled above.) */
4168
4169               if ((fn_fieldp->dblock.kind != DNTT_TYPE_MEMACCESS) &&
4170                   (fn_fieldp->dblock.kind != DNTT_TYPE_MEMENUM) &&
4171                   (fn_fieldp->dblock.kind != DNTT_TYPE_FUNC_TEMPLATE))
4172                 warning ("Internal error: Unexpected debug record kind %d found following DNTT_GENFIELD",
4173                          fn_fieldp->dblock.kind);
4174             }
4175           /* walk to the next FIELD or GENFIELD */
4176           field = fieldp->dgenfield.nextfield;
4177
4178         }
4179       else if (fieldp->dblock.kind == DNTT_TYPE_FIELD)
4180         {
4181
4182           /* Ordinary structure/union/class field */
4183           struct type *anon_union_type;
4184
4185           /* Get space to record the next field/data-member. */
4186           new = (struct nextfield *) alloca (sizeof (struct nextfield));
4187           new->next = list;
4188           list = new;
4189
4190           list->field.name = VT (objfile) + fieldp->dfield.name;
4191
4192
4193           /* A FIELD by itself (without a GENFIELD) can also be a static member */
4194           if (fieldp->dfield.staticmem)
4195             {
4196               FIELD_BITPOS (list->field) = -1;
4197               FIELD_BITSIZE (list->field) = 0;
4198             }
4199           else
4200             /* Non-static data member */
4201             {
4202               FIELD_BITPOS (list->field) = fieldp->dfield.bitoffset;
4203               if (fieldp->dfield.bitlength % 8)
4204                 FIELD_BITSIZE (list->field) = fieldp->dfield.bitlength;
4205               else
4206                 FIELD_BITSIZE (list->field) = 0;
4207             }
4208
4209           memtype = hpread_type_lookup (fieldp->dfield.type, objfile);
4210           FIELD_TYPE (list->field) = memtype;
4211           list->attributes = 0;
4212           switch (fieldp->dfield.visibility)
4213             {
4214             case 1:
4215               B_SET (&(list->attributes), ATTR_PROTECT);
4216               break;
4217             case 2:
4218               B_SET (&(list->attributes), ATTR_PRIVATE);
4219               break;
4220             }
4221           nfields++;
4222
4223
4224           /* Note 1: First, we have to check if the current field is an anonymous
4225              union. If it is, then *its* fields are threaded along in the
4226              nextfield chain. :-( This was supposed to help debuggers, but is
4227              really just a nuisance since we deal with anonymous unions anyway by
4228              checking that the name is null.  So anyway, we skip over the fields
4229              of the anonymous union. pai/1997-08-22 */
4230           /* Note 2: In addition, the bitoffsets for the fields of the anon union
4231              are relative to the enclosing struct, *NOT* relative to the anon
4232              union!  This is an even bigger nuisance -- we have to go in and munge
4233              the anon union's type information appropriately. pai/1997-08-22 */
4234
4235           /* Both tasks noted above are done by a separate function.  This takes us
4236              to the next FIELD or GENFIELD, skipping anon unions, and recursively
4237              processing intermediate types. */
4238           field = hpread_get_next_skip_over_anon_unions (1, field, &fieldp, objfile);
4239
4240         }
4241       else
4242         {
4243           /* neither field nor genfield ?? is this possible?? */
4244           /* pai:: FIXME walk to the next -- how? */
4245           warning ("Internal error: unexpected DNTT kind %d encountered as field of struct",
4246                    fieldp->dblock.kind);
4247           warning ("Skipping remaining fields of struct");
4248           break;                /* get out of loop of fields */
4249         }
4250     }
4251
4252   /* If it's a template, read in the instantiation list */
4253   if (dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
4254     {
4255       ninstantiations = 0;
4256       field = dn_bufp->dtemplate.expansions;
4257       while (field.word && field.word != DNTTNIL)
4258         {
4259           fieldp = hpread_get_lntt (field.dnttp.index, objfile);
4260
4261           /* The expansions or nextexp should point to a tagdef */
4262           if (fieldp->dblock.kind != DNTT_TYPE_TAGDEF)
4263             break;
4264
4265           i_new = (struct next_instantiation *) alloca (sizeof (struct next_instantiation));
4266           i_new->next = i_list;
4267           i_list = i_new;
4268           i_list->t = hpread_type_lookup (field, objfile);
4269           ninstantiations++;
4270
4271           /* And the "type" field of that should point to a class */
4272           field = fieldp->dtag.type;
4273           fieldp = hpread_get_lntt (field.dnttp.index, objfile);
4274           if (fieldp->dblock.kind != DNTT_TYPE_CLASS)
4275             break;
4276
4277           /* Get the next expansion */
4278           field = fieldp->dclass.nextexp;
4279         }
4280     }
4281   TYPE_NINSTANTIATIONS (type) = ninstantiations;
4282   if (ninstantiations > 0)
4283     TYPE_INSTANTIATIONS (type) = (struct type **)
4284       obstack_alloc (&objfile->type_obstack, sizeof (struct type *) * ninstantiations);
4285   for (n = ninstantiations; i_list; i_list = i_list->next)
4286     {
4287       n -= 1;
4288       TYPE_INSTANTIATION (type, n) = i_list->t;
4289     }
4290
4291
4292   /* Copy the field-list to GDB's symbol table */
4293   TYPE_NFIELDS (type) = nfields;
4294   TYPE_N_BASECLASSES (type) = n_base_classes;
4295   TYPE_FIELDS (type) = (struct field *)
4296     obstack_alloc (&objfile->type_obstack, sizeof (struct field) * nfields);
4297   /* Copy the saved-up fields into the field vector.  */
4298   for (n = nfields, tmp_list = list; tmp_list; tmp_list = tmp_list->next)
4299     {
4300       n -= 1;
4301       TYPE_FIELD (type, n) = tmp_list->field;
4302     }
4303
4304   /* Copy the "function-field-list" (i.e., the list of member
4305    * functions in the class) to GDB's symbol table 
4306    */
4307   TYPE_NFN_FIELDS (type) = n_fn_fields;
4308   TYPE_NFN_FIELDS_TOTAL (type) = n_fn_fields_total;
4309   TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
4310     obstack_alloc (&objfile->type_obstack, sizeof (struct fn_fieldlist) * n_fn_fields);
4311   for (n = n_fn_fields; fn_list; fn_list = fn_list->next)
4312     {
4313       n -= 1;
4314       TYPE_FN_FIELDLIST (type, n) = fn_list->field;
4315     }
4316
4317   /* pai:: FIXME -- perhaps each bitvector should be created individually */
4318   for (n = nfields, tmp_list = list; tmp_list; tmp_list = tmp_list->next)
4319     {
4320       n -= 1;
4321       if (tmp_list->attributes)
4322         {
4323           need_bitvectors = 1;
4324           break;
4325         }
4326     }
4327
4328   if (need_bitvectors)
4329     {
4330       /* pai:: this step probably redundant */
4331       ALLOCATE_CPLUS_STRUCT_TYPE (type);
4332
4333       TYPE_FIELD_VIRTUAL_BITS (type) =
4334         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4335       B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), nfields);
4336
4337       TYPE_FIELD_PRIVATE_BITS (type) =
4338         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4339       B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
4340
4341       TYPE_FIELD_PROTECTED_BITS (type) =
4342         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4343       B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
4344
4345       /* this field vector isn't actually used with HP aCC */
4346       TYPE_FIELD_IGNORE_BITS (type) =
4347         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4348       B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
4349
4350       while (nfields-- > 0)
4351         {
4352           if (B_TST (&(list->attributes), ATTR_VIRTUAL))
4353             SET_TYPE_FIELD_VIRTUAL (type, nfields);
4354           if (B_TST (&(list->attributes), ATTR_PRIVATE))
4355             SET_TYPE_FIELD_PRIVATE (type, nfields);
4356           if (B_TST (&(list->attributes), ATTR_PROTECT))
4357             SET_TYPE_FIELD_PROTECTED (type, nfields);
4358
4359           list = list->next;
4360         }
4361     }
4362   else
4363     {
4364       TYPE_FIELD_VIRTUAL_BITS (type) = NULL;
4365       TYPE_FIELD_PROTECTED_BITS (type) = NULL;
4366       TYPE_FIELD_PRIVATE_BITS (type) = NULL;
4367     }
4368
4369   if (has_vtable (type))
4370     {
4371       /* Allocate space for class runtime information */
4372       TYPE_RUNTIME_PTR (type) = (struct runtime_info *) xmalloc (sizeof (struct runtime_info));
4373       /* Set flag for vtable */
4374       TYPE_VTABLE (type) = 1;
4375       /* The first non-virtual base class with a vtable. */
4376       TYPE_PRIMARY_BASE (type) = primary_base_class (type);
4377       /* The virtual base list. */
4378       TYPE_VIRTUAL_BASE_LIST (type) = virtual_base_list (type);
4379     }
4380   else
4381     TYPE_RUNTIME_PTR (type) = NULL;
4382
4383   /* If this is a local type (C++ - declared inside a function), record file name & line # */
4384   if (hpread_get_scope_depth (dn_bufp, objfile, 1 /* no need for real depth */ ))
4385     {
4386       TYPE_LOCALTYPE_PTR (type) = (struct local_type_info *) xmalloc (sizeof (struct local_type_info));
4387       TYPE_LOCALTYPE_FILE (type) = (char *) xmalloc (strlen (current_subfile->name) + 1);
4388       strcpy (TYPE_LOCALTYPE_FILE (type), current_subfile->name);
4389       if (current_subfile->line_vector && (current_subfile->line_vector->nitems > 0))
4390         TYPE_LOCALTYPE_LINE (type) = current_subfile->line_vector->item[current_subfile->line_vector->nitems - 1].line;
4391       else
4392         TYPE_LOCALTYPE_LINE (type) = 0;
4393     }
4394   else
4395     TYPE_LOCALTYPE_PTR (type) = NULL;
4396
4397   /* Clear the global saying what template we are in the middle of processing */
4398   current_template = NULL;
4399
4400   /* Fix up any cv-qualified versions of this type.  */
4401   finish_cv_type (type);
4402
4403   return type;
4404 }
4405
4406 /* Adjust the physnames for each static member of a struct
4407    or class type to be something like "A::x"; then various
4408    other pieces of code that do a lookup_symbol on the phyname
4409    work correctly.
4410    TYPE is a pointer to the struct/class type
4411    NAME is a char * (string) which is the class/struct name
4412    Void return */
4413
4414 static void
4415 fix_static_member_physnames (struct type *type, char *class_name,
4416                              struct objfile *objfile)
4417 {
4418   int i;
4419
4420   /* We fix the member names only for classes or structs */
4421   if (TYPE_CODE (type) != TYPE_CODE_STRUCT)
4422     return;
4423
4424   for (i = 0; i < TYPE_NFIELDS (type); i++)
4425     if (TYPE_FIELD_STATIC (type, i))
4426       {
4427         if (TYPE_FIELD_STATIC_PHYSNAME (type, i))
4428           return;               /* physnames are already set */
4429
4430         SET_FIELD_PHYSNAME (type->fields[i],
4431                             obstack_alloc (&objfile->type_obstack,
4432              strlen (class_name) + strlen (TYPE_FIELD_NAME (type, i)) + 3));
4433         strcpy (TYPE_FIELD_STATIC_PHYSNAME (type, i), class_name);
4434         strcat (TYPE_FIELD_STATIC_PHYSNAME (type, i), "::");
4435         strcat (TYPE_FIELD_STATIC_PHYSNAME (type, i), TYPE_FIELD_NAME (type, i));
4436       }
4437 }
4438
4439 /* Fix-up the type structure for a CLASS so that the type entry
4440  * for a method (previously marked with a null type in hpread_read_struct_type()
4441  * is set correctly to METHOD.
4442  * OBJFILE is as for other such functions. 
4443  * Void return. */
4444
4445 static void
4446 fixup_class_method_type (struct type *class, struct type *method,
4447                          struct objfile *objfile)
4448 {
4449   int i, j, k;
4450
4451   if (!class || !method || !objfile)
4452     return;
4453
4454   /* Only for types that have methods */
4455   if ((TYPE_CODE (class) != TYPE_CODE_CLASS) &&
4456       (TYPE_CODE (class) != TYPE_CODE_UNION))
4457     return;
4458
4459   /* Loop over all methods and find the one marked with a NULL type */
4460   for (i = 0; i < TYPE_NFN_FIELDS (class); i++)
4461     for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (class, i); j++)
4462       if (TYPE_FN_FIELD_TYPE (TYPE_FN_FIELDLIST1 (class, i), j) == NULL)
4463         {
4464           /* Set the method type */
4465           TYPE_FN_FIELD_TYPE (TYPE_FN_FIELDLIST1 (class, i), j) = method;
4466           /* The argument list */
4467           (TYPE_FN_FIELD_TYPE (TYPE_FN_FIELDLIST1 (class, i), j))->type_specific.arg_types
4468             = (struct type **) obstack_alloc (&objfile->type_obstack,
4469                             sizeof (struct type *) * (method->nfields + 1));
4470           for (k = 0; k < method->nfields; k++)
4471             (TYPE_FN_FIELD_TYPE (TYPE_FN_FIELDLIST1 (class, i), j))->type_specific.arg_types[k] = method->fields[k].type;
4472           /* void termination */
4473           (TYPE_FN_FIELD_TYPE (TYPE_FN_FIELDLIST1 (class, i), j))->type_specific.arg_types[method->nfields] = builtin_type_void;
4474
4475           /* pai: It's not clear why this args field has to be set.  Perhaps
4476            * it should be eliminated entirely. */
4477           (TYPE_FN_FIELD (TYPE_FN_FIELDLIST1 (class, i), j)).args
4478             = (struct type **) obstack_alloc (&objfile->type_obstack,
4479                             sizeof (struct type *) * (method->nfields + 1));
4480           for (k = 0; k < method->nfields; k++)
4481             (TYPE_FN_FIELD (TYPE_FN_FIELDLIST1 (class, i), j)).args[k] = method->fields[k].type;
4482           /* null-terminated, unlike arg_types above */
4483           (TYPE_FN_FIELD (TYPE_FN_FIELDLIST1 (class, i), j)).args[method->nfields] = NULL;
4484
4485           /* Break out of both loops -- only one method to fix up in a class */
4486           goto finish;
4487         }
4488
4489 finish:
4490   TYPE_FLAGS (class) &= ~TYPE_FLAG_INCOMPLETE;
4491 }
4492
4493
4494 /* If we're in the middle of processing a template, get a pointer
4495  * to the Nth template argument.
4496  * An example may make this clearer:
4497  *   template <class T1, class T2> class q2 {
4498  *     public:
4499  *     T1 a;
4500  *     T2 b;
4501  *   };
4502  * The type for "a" will be "first template arg" and
4503  * the type for "b" will be "second template arg".
4504  * We need to look these up in order to fill in "a" and "b"'s type.
4505  * This is called from hpread_type_lookup().
4506  */
4507 static struct type *
4508 hpread_get_nth_template_arg (struct objfile *objfile, int n)
4509 {
4510   if (current_template != NULL)
4511     return TYPE_TEMPLATE_ARG (current_template, n).type;
4512   else
4513     return lookup_fundamental_type (objfile, FT_TEMPLATE_ARG);
4514 }
4515
4516 /* Read in and internalize a TEMPL_ARG (template arg) symbol.  */
4517
4518 static struct type *
4519 hpread_read_templ_arg_type (dnttpointer hp_type, union dnttentry *dn_bufp,
4520                             struct objfile *objfile, char *name)
4521 {
4522   struct type *type;
4523
4524   /* See if it's something we've already deal with.  */
4525   type = hpread_alloc_type (hp_type, objfile);
4526   if (TYPE_CODE (type) == TYPE_CODE_TEMPLATE_ARG)
4527     return type;
4528
4529   /* Nope.  Fill in the appropriate fields.  */
4530   TYPE_CODE (type) = TYPE_CODE_TEMPLATE_ARG;
4531   TYPE_LENGTH (type) = 0;
4532   TYPE_NFIELDS (type) = 0;
4533   TYPE_NAME (type) = name;
4534   return type;
4535 }
4536
4537 /* Read in and internalize a set debug symbol.  */
4538
4539 static struct type *
4540 hpread_read_set_type (dnttpointer hp_type, union dnttentry *dn_bufp,
4541                       struct objfile *objfile)
4542 {
4543   struct type *type;
4544
4545   /* See if it's something we've already deal with.  */
4546   type = hpread_alloc_type (hp_type, objfile);
4547   if (TYPE_CODE (type) == TYPE_CODE_SET)
4548     return type;
4549
4550   /* Nope.  Fill in the appropriate fields.  */
4551   TYPE_CODE (type) = TYPE_CODE_SET;
4552   TYPE_LENGTH (type) = dn_bufp->dset.bitlength / 8;
4553   TYPE_NFIELDS (type) = 0;
4554   TYPE_TARGET_TYPE (type) = hpread_type_lookup (dn_bufp->dset.subtype,
4555                                                 objfile);
4556   return type;
4557 }
4558
4559 /* Read in and internalize an array debug symbol.  */
4560
4561 static struct type *
4562 hpread_read_array_type (dnttpointer hp_type, union dnttentry *dn_bufp,
4563                         struct objfile *objfile)
4564 {
4565   struct type *type;
4566
4567   /* Allocate an array type symbol.
4568    * Why no check for already-read here, like in the other
4569    * hpread_read_xxx_type routines?  Because it kept us 
4570    * from properly determining the size of the array!  
4571    */
4572   type = hpread_alloc_type (hp_type, objfile);
4573
4574   TYPE_CODE (type) = TYPE_CODE_ARRAY;
4575
4576   /* Although the hp-symtab.h does not *require* this to be the case,
4577    * GDB is assuming that "arrayisbytes" and "elemisbytes" be consistent.
4578    * I.e., express both array-length and element-length in bits,
4579    * or express both array-length and element-length in bytes.
4580    */
4581   if (!((dn_bufp->darray.arrayisbytes && dn_bufp->darray.elemisbytes) ||
4582         (!dn_bufp->darray.arrayisbytes && !dn_bufp->darray.elemisbytes)))
4583     {
4584       warning ("error in hpread_array_type.\n");
4585       return NULL;
4586     }
4587   else if (dn_bufp->darray.arraylength == 0x7fffffff)
4588     {
4589       /* The HP debug format represents char foo[]; as an array with
4590        * length 0x7fffffff.  Internally GDB wants to represent this
4591        *  as an array of length zero.  
4592        */
4593       TYPE_LENGTH (type) = 0;
4594     }
4595   else if (dn_bufp->darray.arrayisbytes)
4596     TYPE_LENGTH (type) = dn_bufp->darray.arraylength;
4597   else                          /* arraylength is in bits */
4598     TYPE_LENGTH (type) = dn_bufp->darray.arraylength / 8;
4599
4600   TYPE_TARGET_TYPE (type) = hpread_type_lookup (dn_bufp->darray.elemtype,
4601                                                 objfile);
4602
4603   /* The one "field" is used to store the subscript type */
4604   /* Since C and C++ multi-dimensional arrays are simply represented
4605    * as: array of array of ..., we only need one subscript-type
4606    * per array. This subscript type is typically a subrange of integer.
4607    * If this gets extended to support languages like Pascal, then
4608    * we need to fix this to represent multi-dimensional arrays properly.
4609    */
4610   TYPE_NFIELDS (type) = 1;
4611   TYPE_FIELDS (type) = (struct field *)
4612     obstack_alloc (&objfile->type_obstack, sizeof (struct field));
4613   TYPE_FIELD_TYPE (type, 0) = hpread_type_lookup (dn_bufp->darray.indextype,
4614                                                   objfile);
4615   return type;
4616 }
4617
4618 /* Read in and internalize a subrange debug symbol.  */
4619 static struct type *
4620 hpread_read_subrange_type (dnttpointer hp_type, union dnttentry *dn_bufp,
4621                            struct objfile *objfile)
4622 {
4623   struct type *type;
4624
4625   /* Is it something we've already dealt with.  */
4626   type = hpread_alloc_type (hp_type, objfile);
4627   if (TYPE_CODE (type) == TYPE_CODE_RANGE)
4628     return type;
4629
4630   /* Nope, internalize it.  */
4631   TYPE_CODE (type) = TYPE_CODE_RANGE;
4632   TYPE_LENGTH (type) = dn_bufp->dsubr.bitlength / 8;
4633   TYPE_NFIELDS (type) = 2;
4634   TYPE_FIELDS (type)
4635     = (struct field *) obstack_alloc (&objfile->type_obstack,
4636                                       2 * sizeof (struct field));
4637
4638   if (dn_bufp->dsubr.dyn_low)
4639     TYPE_FIELD_BITPOS (type, 0) = 0;
4640   else
4641     TYPE_FIELD_BITPOS (type, 0) = dn_bufp->dsubr.lowbound;
4642
4643   if (dn_bufp->dsubr.dyn_high)
4644     TYPE_FIELD_BITPOS (type, 1) = -1;
4645   else
4646     TYPE_FIELD_BITPOS (type, 1) = dn_bufp->dsubr.highbound;
4647   TYPE_TARGET_TYPE (type) = hpread_type_lookup (dn_bufp->dsubr.subtype,
4648                                                 objfile);
4649   return type;
4650 }
4651
4652 /* struct type * hpread_type_lookup(hp_type, objfile)
4653  *   Arguments:
4654  *     hp_type: A pointer into the DNTT specifying what type we
4655  *              are about to "look up"., or else [for fundamental types
4656  *              like int, float, ...] an "immediate" structure describing
4657  *              the type.
4658  *     objfile: ?
4659  *   Return value: A pointer to a "struct type" (representation of a
4660  *                 type in GDB's internal symbol table - see gdbtypes.h)
4661  *   Routine description:
4662  *     There are a variety of places when scanning the DNTT when we
4663  *     need to interpret a "type" field. The simplest and most basic 
4664  *     example is when we're processing the symbol table record
4665  *     for a data symbol (a SVAR or DVAR record). That has
4666  *     a "type" field specifying the type of the data symbol. That
4667  *     "type" field is either an "immediate" type specification (for the
4668  *     fundamental types) or a DNTT pointer (for more complicated types). 
4669  *     For the more complicated types, we may or may not have already
4670  *     processed the pointed-to type. (Multiple data symbols can of course
4671  *     share the same type).
4672  *     The job of hpread_type_lookup() is to process this "type" field.
4673  *     Most of the real work is done in subroutines. Here we interpret
4674  *     the immediate flag. If not immediate, chase the DNTT pointer to
4675  *     find our way to the SOM record describing the type, switch on
4676  *     the SOM kind, and then call an appropriate subroutine depending
4677  *     on what kind of type we are constructing. (e.g., an array type,
4678  *     a struct/class type, etc).
4679  */
4680 static struct type *
4681 hpread_type_lookup (dnttpointer hp_type, struct objfile *objfile)
4682 {
4683   union dnttentry *dn_bufp;
4684   struct type *tmp_type;
4685
4686   /* First see if it's a simple builtin type.  */
4687   if (hp_type.dntti.immediate)
4688     {
4689       /* If this is a template argument, the argument number is
4690        * encoded in the bitlength. All other cases, just return
4691        * GDB's representation of this fundamental type.
4692        */
4693       if (hp_type.dntti.type == HP_TYPE_TEMPLATE_ARG)
4694         return hpread_get_nth_template_arg (objfile, hp_type.dntti.bitlength);
4695       else
4696         return lookup_fundamental_type (objfile,
4697                                         hpread_type_translate (hp_type));
4698     }
4699
4700   /* Not a builtin type.  We'll have to read it in.  */
4701   if (hp_type.dnttp.index < LNTT_SYMCOUNT (objfile))
4702     dn_bufp = hpread_get_lntt (hp_type.dnttp.index, objfile);
4703   else
4704     /* This is a fancy way of returning NULL */
4705     return lookup_fundamental_type (objfile, FT_VOID);
4706
4707   switch (dn_bufp->dblock.kind)
4708     {
4709     case DNTT_TYPE_SRCFILE:
4710     case DNTT_TYPE_MODULE:
4711     case DNTT_TYPE_ENTRY:
4712     case DNTT_TYPE_BEGIN:
4713     case DNTT_TYPE_END:
4714     case DNTT_TYPE_IMPORT:
4715     case DNTT_TYPE_LABEL:
4716     case DNTT_TYPE_FPARAM:
4717     case DNTT_TYPE_SVAR:
4718     case DNTT_TYPE_DVAR:
4719     case DNTT_TYPE_CONST:
4720     case DNTT_TYPE_MEMENUM:
4721     case DNTT_TYPE_VARIANT:
4722     case DNTT_TYPE_FILE:
4723     case DNTT_TYPE_WITH:
4724     case DNTT_TYPE_COMMON:
4725     case DNTT_TYPE_COBSTRUCT:
4726     case DNTT_TYPE_XREF:
4727     case DNTT_TYPE_SA:
4728     case DNTT_TYPE_MACRO:
4729     case DNTT_TYPE_BLOCKDATA:
4730     case DNTT_TYPE_CLASS_SCOPE:
4731     case DNTT_TYPE_MEMACCESS:
4732     case DNTT_TYPE_INHERITANCE:
4733     case DNTT_TYPE_OBJECT_ID:
4734     case DNTT_TYPE_FRIEND_CLASS:
4735     case DNTT_TYPE_FRIEND_FUNC:
4736       /* These are not types - something went wrong.  */
4737       /* This is a fancy way of returning NULL */
4738       return lookup_fundamental_type (objfile, FT_VOID);
4739
4740     case DNTT_TYPE_FUNCTION:
4741       /* We wind up here when dealing with class member functions 
4742        * (called from hpread_read_struct_type(), i.e. when processing
4743        * the class definition itself).
4744        */
4745       return hpread_read_function_type (hp_type, dn_bufp, objfile, 0);
4746
4747     case DNTT_TYPE_DOC_FUNCTION:
4748       return hpread_read_doc_function_type (hp_type, dn_bufp, objfile, 0);
4749
4750     case DNTT_TYPE_TYPEDEF:
4751       {
4752         /* A typedef - chase it down by making a recursive call */
4753         struct type *structtype = hpread_type_lookup (dn_bufp->dtype.type,
4754                                                       objfile);
4755
4756         /* The following came from the base hpread.c that we inherited.
4757          * It is WRONG so I have commented it out. - RT
4758          *...
4759
4760          char *suffix;
4761          suffix = VT (objfile) + dn_bufp->dtype.name;
4762          TYPE_NAME (structtype) = suffix;
4763
4764          * ... further explanation ....
4765          *
4766          * What we have here is a typedef pointing to a typedef.
4767          * E.g.,
4768          * typedef int foo;
4769          * typedef foo fum;
4770          *
4771          * What we desire to build is (these are pictures
4772          * of "struct type"'s): 
4773          *
4774          *  +---------+     +----------+     +------------+
4775          *  | typedef |     | typedef  |     | fund. type |
4776          *  |     type| ->  |      type| ->  |            |
4777          *  | "fum"   |     | "foo"    |     | "int"      |
4778          *  +---------+     +----------+     +------------+
4779          *
4780          * What this commented-out code is doing is smashing the
4781          * name of pointed-to-type to be the same as the pointed-from
4782          * type. So we wind up with something like:
4783          *
4784          *  +---------+     +----------+     +------------+
4785          *  | typedef |     | typedef  |     | fund. type |
4786          *  |     type| ->  |      type| ->  |            |
4787          *  | "fum"   |     | "fum"    |     | "fum"      |
4788          *  +---------+     +----------+     +------------+
4789          * 
4790          */
4791
4792         return structtype;
4793       }
4794
4795     case DNTT_TYPE_TAGDEF:
4796       {
4797         /* Just a little different from above.  We have to tack on
4798          * an identifier of some kind (struct, union, enum, class, etc).  
4799          */
4800         struct type *structtype = hpread_type_lookup (dn_bufp->dtype.type,
4801                                                       objfile);
4802         char *prefix, *suffix;
4803         suffix = VT (objfile) + dn_bufp->dtype.name;
4804
4805         /* Lookup the next type in the list.  It should be a structure,
4806          * union, class, enum, or template type.  
4807          * We will need to attach that to our name.  
4808          */
4809         if (dn_bufp->dtype.type.dnttp.index < LNTT_SYMCOUNT (objfile))
4810           dn_bufp = hpread_get_lntt (dn_bufp->dtype.type.dnttp.index, objfile);
4811         else
4812           {
4813             complain (&hpread_type_lookup_complaint);
4814             return NULL;
4815           }
4816
4817         if (dn_bufp->dblock.kind == DNTT_TYPE_STRUCT)
4818           {
4819             prefix = "struct ";
4820           }
4821         else if (dn_bufp->dblock.kind == DNTT_TYPE_UNION)
4822           {
4823             prefix = "union ";
4824           }
4825         else if (dn_bufp->dblock.kind == DNTT_TYPE_CLASS)
4826           {
4827             /* Further field for CLASS saying how it was really declared */
4828             /* 0==class, 1==union, 2==struct */
4829             if (dn_bufp->dclass.class_decl == 0)
4830               prefix = "class ";
4831             else if (dn_bufp->dclass.class_decl == 1)
4832               prefix = "union ";
4833             else if (dn_bufp->dclass.class_decl == 2)
4834               prefix = "struct ";
4835             else
4836               prefix = "";
4837           }
4838         else if (dn_bufp->dblock.kind == DNTT_TYPE_ENUM)
4839           {
4840             prefix = "enum ";
4841           }
4842         else if (dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
4843           {
4844             prefix = "template ";
4845           }
4846         else
4847           {
4848             prefix = "";
4849           }
4850
4851         /* Build the correct name.  */
4852         structtype->name
4853           = (char *) obstack_alloc (&objfile->type_obstack,
4854                                     strlen (prefix) + strlen (suffix) + 1);
4855         TYPE_NAME (structtype) = strcpy (TYPE_NAME (structtype), prefix);
4856         TYPE_NAME (structtype) = strcat (TYPE_NAME (structtype), suffix);
4857         TYPE_TAG_NAME (structtype) = suffix;
4858
4859         /* For classes/structs, we have to set the static member "physnames"
4860            to point to strings like "Class::Member" */
4861         if (TYPE_CODE (structtype) == TYPE_CODE_STRUCT)
4862           fix_static_member_physnames (structtype, suffix, objfile);
4863
4864         return structtype;
4865       }
4866
4867     case DNTT_TYPE_POINTER:
4868       /* Pointer type - call a routine in gdbtypes.c that constructs
4869        * the appropriate GDB type.
4870        */
4871       return make_pointer_type (
4872                                  hpread_type_lookup (dn_bufp->dptr.pointsto,
4873                                                      objfile),
4874                                  NULL);
4875
4876     case DNTT_TYPE_REFERENCE:
4877       /* C++ reference type - call a routine in gdbtypes.c that constructs
4878        * the appropriate GDB type.
4879        */
4880       return make_reference_type (
4881                            hpread_type_lookup (dn_bufp->dreference.pointsto,
4882                                                objfile),
4883                                    NULL);
4884
4885     case DNTT_TYPE_ENUM:
4886       return hpread_read_enum_type (hp_type, dn_bufp, objfile);
4887     case DNTT_TYPE_SET:
4888       return hpread_read_set_type (hp_type, dn_bufp, objfile);
4889     case DNTT_TYPE_SUBRANGE:
4890       return hpread_read_subrange_type (hp_type, dn_bufp, objfile);
4891     case DNTT_TYPE_ARRAY:
4892       return hpread_read_array_type (hp_type, dn_bufp, objfile);
4893     case DNTT_TYPE_STRUCT:
4894     case DNTT_TYPE_UNION:
4895       return hpread_read_struct_type (hp_type, dn_bufp, objfile);
4896     case DNTT_TYPE_FIELD:
4897       return hpread_type_lookup (dn_bufp->dfield.type, objfile);
4898
4899     case DNTT_TYPE_FUNCTYPE:
4900       /* Here we want to read the function SOMs and return a 
4901        * type for it. We get here, for instance, when processing
4902        * pointer-to-function type.
4903        */
4904       return hpread_read_function_type (hp_type, dn_bufp, objfile, 0);
4905
4906     case DNTT_TYPE_PTRMEM:
4907       /* Declares a C++ pointer-to-data-member type. 
4908        * The "pointsto" field defines the class,
4909        * while the "memtype" field defines the pointed-to-type.
4910        */
4911       {
4912         struct type *ptrmemtype;
4913         struct type *class_type;
4914         struct type *memtype;
4915         memtype = hpread_type_lookup (dn_bufp->dptrmem.memtype,
4916                                       objfile),
4917           class_type = hpread_type_lookup (dn_bufp->dptrmem.pointsto,
4918                                            objfile),
4919           ptrmemtype = alloc_type (objfile);
4920         smash_to_member_type (ptrmemtype, class_type, memtype);
4921         return make_pointer_type (ptrmemtype, NULL);
4922       }
4923       break;
4924
4925     case DNTT_TYPE_PTRMEMFUNC:
4926       /* Defines a C++ pointer-to-function-member type. 
4927        * The "pointsto" field defines the class,
4928        * while the "memtype" field defines the pointed-to-type.
4929        */
4930       {
4931         struct type *ptrmemtype;
4932         struct type *class_type;
4933         struct type *functype;
4934         struct type *retvaltype;
4935         int nargs;
4936         int i;
4937         struct type **args_type;
4938         class_type = hpread_type_lookup (dn_bufp->dptrmem.pointsto,
4939                                          objfile);
4940         functype = hpread_type_lookup (dn_bufp->dptrmem.memtype,
4941                                        objfile);
4942         retvaltype = TYPE_TARGET_TYPE (functype);
4943         nargs = TYPE_NFIELDS (functype);
4944         args_type = (struct type **) xmalloc ((nargs + 1) * sizeof (struct type *));
4945         for (i = 0; i < nargs; i++)
4946           {
4947             args_type[i] = TYPE_FIELD_TYPE (functype, i);
4948           }
4949         args_type[nargs] = NULL;
4950         ptrmemtype = alloc_type (objfile);
4951         smash_to_method_type (ptrmemtype, class_type, retvaltype, args_type);
4952         return make_pointer_type (ptrmemtype, NULL);
4953       }
4954       break;
4955
4956     case DNTT_TYPE_CLASS:
4957       return hpread_read_struct_type (hp_type, dn_bufp, objfile);
4958
4959     case DNTT_TYPE_GENFIELD:
4960       /* Chase pointer from GENFIELD to FIELD, and make recursive
4961        * call on that.
4962        */
4963       return hpread_type_lookup (dn_bufp->dgenfield.field, objfile);
4964
4965     case DNTT_TYPE_VFUNC:
4966       /* C++ virtual function.
4967        * We get here in the course of processing a class type which
4968        * contains virtual functions. Just go through another level
4969        * of indirection to get to the pointed-to function SOM.
4970        */
4971       return hpread_type_lookup (dn_bufp->dvfunc.funcptr, objfile);
4972
4973     case DNTT_TYPE_MODIFIER:
4974       /* Check the modifiers and then just make a recursive call on
4975        * the "type" pointed to by the modifier DNTT.
4976        * 
4977        * pai:: FIXME -- do we ever want to handle "m_duplicate" and
4978        * "m_void" modifiers?  Is static_flag really needed here?
4979        * (m_static used for methods of classes, elsewhere).
4980        */
4981       tmp_type = make_cv_type (dn_bufp->dmodifier.m_const,
4982                                dn_bufp->dmodifier.m_volatile,
4983                       hpread_type_lookup (dn_bufp->dmodifier.type, objfile),
4984                                0);
4985       return tmp_type;
4986
4987
4988     case DNTT_TYPE_MEMFUNC:
4989       /* Member function. Treat like a function.
4990        * I think we get here in the course of processing a 
4991        * pointer-to-member-function type...
4992        */
4993       return hpread_read_function_type (hp_type, dn_bufp, objfile, 0);
4994
4995     case DNTT_TYPE_DOC_MEMFUNC:
4996       return hpread_read_doc_function_type (hp_type, dn_bufp, objfile, 0);
4997
4998     case DNTT_TYPE_TEMPLATE:
4999       /* Template - sort of the header for a template definition,
5000        * which like a class, points to a member list and also points
5001        * to a TEMPLATE_ARG list of type-arguments.
5002        */
5003       return hpread_read_struct_type (hp_type, dn_bufp, objfile);
5004
5005     case DNTT_TYPE_TEMPLATE_ARG:
5006       {
5007         char *name;
5008         /* The TEMPLATE record points to an argument list of
5009          * TEMPLATE_ARG records, each of which describes one
5010          * of the type-arguments. 
5011          */
5012         name = VT (objfile) + dn_bufp->dtempl_arg.name;
5013         return hpread_read_templ_arg_type (hp_type, dn_bufp, objfile, name);
5014       }
5015
5016     case DNTT_TYPE_FUNC_TEMPLATE:
5017       /* We wind up here when processing a TEMPLATE type, 
5018        * if the template has member function(s).
5019        * Treat it like a FUNCTION.
5020        */
5021       return hpread_read_function_type (hp_type, dn_bufp, objfile, 0);
5022
5023     case DNTT_TYPE_LINK:
5024       /* The LINK record is used to link up templates with instantiations.
5025        * There is no type associated with the LINK record per se.
5026        */
5027       return lookup_fundamental_type (objfile, FT_VOID);
5028
5029       /* Also not yet handled... */
5030       /* case DNTT_TYPE_DYN_ARRAY_DESC: */
5031       /* case DNTT_TYPE_DESC_SUBRANGE: */
5032       /* case DNTT_TYPE_BEGIN_EXT: */
5033       /* case DNTT_TYPE_INLN: */
5034       /* case DNTT_TYPE_INLN_LIST: */
5035       /* case DNTT_TYPE_ALIAS: */
5036     default:
5037       /* A fancy way of returning NULL */
5038       return lookup_fundamental_type (objfile, FT_VOID);
5039     }
5040 }
5041
5042 static sltpointer
5043 hpread_record_lines (struct subfile *subfile, sltpointer s_idx,
5044                      sltpointer e_idx, struct objfile *objfile,
5045                      CORE_ADDR offset)
5046 {
5047   union sltentry *sl_bufp;
5048
5049   while (s_idx <= e_idx)
5050     {
5051       sl_bufp = hpread_get_slt (s_idx, objfile);
5052       /* Only record "normal" entries in the SLT.  */
5053       if (sl_bufp->snorm.sltdesc == SLT_NORMAL
5054           || sl_bufp->snorm.sltdesc == SLT_EXIT)
5055         record_line (subfile, sl_bufp->snorm.line,
5056                      sl_bufp->snorm.address + offset);
5057       else if (sl_bufp->snorm.sltdesc == SLT_NORMAL_OFFSET)
5058         record_line (subfile, sl_bufp->snormoff.line,
5059                      sl_bufp->snormoff.address + offset);
5060       s_idx++;
5061     }
5062   return e_idx;
5063 }
5064
5065 /* Given a function "f" which is a member of a class, find
5066  * the classname that it is a member of. Used to construct
5067  * the name (e.g., "c::f") which GDB will put in the
5068  * "demangled name" field of the function's symbol.
5069  * Called from hpread_process_one_debug_symbol()
5070  * If "f" is not a member function, return NULL.
5071  */
5072 char *
5073 class_of (struct type *functype)
5074 {
5075   struct type *first_param_type;
5076   char *first_param_name;
5077   struct type *pointed_to_type;
5078   char *class_name;
5079
5080   /* Check that the function has a first argument "this",
5081    * and that "this" is a pointer to a class. If not,
5082    * functype is not a member function, so return NULL.
5083    */
5084   if (TYPE_NFIELDS (functype) == 0)
5085     return NULL;
5086   first_param_name = TYPE_FIELD_NAME (functype, 0);
5087   if (first_param_name == NULL)
5088     return NULL;                /* paranoia */
5089   if (strcmp (first_param_name, "this"))
5090     return NULL;
5091   first_param_type = TYPE_FIELD_TYPE (functype, 0);
5092   if (first_param_type == NULL)
5093     return NULL;                /* paranoia */
5094   if (TYPE_CODE (first_param_type) != TYPE_CODE_PTR)
5095     return NULL;
5096
5097   /* Get the thing that "this" points to, check that
5098    * it's a class, and get its class name.
5099    */
5100   pointed_to_type = TYPE_TARGET_TYPE (first_param_type);
5101   if (pointed_to_type == NULL)
5102     return NULL;                /* paranoia */
5103   if (TYPE_CODE (pointed_to_type) != TYPE_CODE_CLASS)
5104     return NULL;
5105   class_name = TYPE_NAME (pointed_to_type);
5106   if (class_name == NULL)
5107     return NULL;                /* paranoia */
5108
5109   /* The class name may be of the form "class c", in which case
5110    * we want to strip off the leading "class ".
5111    */
5112   if (strncmp (class_name, "class ", 6) == 0)
5113     class_name += 6;
5114
5115   return class_name;
5116 }
5117
5118 /* Internalize one native debug symbol. 
5119  * Called in a loop from hpread_expand_symtab(). 
5120  * Arguments:
5121  *   dn_bufp: 
5122  *   name: 
5123  *   section_offsets:
5124  *   objfile:
5125  *   text_offset: 
5126  *   text_size: 
5127  *   filename: 
5128  *   index:             Index of this symbol
5129  *   at_module_boundary_p Pointer to boolean flag to control caller's loop.
5130  */
5131
5132 static void
5133 hpread_process_one_debug_symbol (union dnttentry *dn_bufp, char *name,
5134                                  struct section_offsets *section_offsets,
5135                                  struct objfile *objfile, CORE_ADDR text_offset,
5136                                  int text_size, char *filename, int index,
5137                                  int *at_module_boundary_p)
5138 {
5139   unsigned long desc;
5140   int type;
5141   CORE_ADDR valu;
5142   int offset = ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
5143   int data_offset = ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
5144   union dnttentry *dn_temp;
5145   dnttpointer hp_type;
5146   struct symbol *sym;
5147   struct context_stack *new;
5148   char *class_scope_name;
5149
5150   /* Allocate one GDB debug symbol and fill in some default values. */
5151   sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
5152                                          sizeof (struct symbol));
5153   memset (sym, 0, sizeof (struct symbol));
5154   SYMBOL_NAME (sym) = obsavestring (name, strlen (name), &objfile->symbol_obstack);
5155   SYMBOL_LANGUAGE (sym) = language_auto;
5156   SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
5157   SYMBOL_LINE (sym) = 0;
5158   SYMBOL_VALUE (sym) = 0;
5159   SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5160
5161   /* Just a trick in case the SOM debug symbol is a type definition.
5162    * There are routines that are set up to build a GDB type symbol, given
5163    * a SOM dnttpointer. So we set up a dummy SOM dnttpointer "hp_type".
5164    * This allows us to call those same routines.
5165    */
5166   hp_type.dnttp.extension = 1;
5167   hp_type.dnttp.immediate = 0;
5168   hp_type.dnttp.global = 0;
5169   hp_type.dnttp.index = index;
5170
5171   /* This "type" is the type of SOM record.
5172    * Switch on SOM type.
5173    */
5174   type = dn_bufp->dblock.kind;
5175   switch (type)
5176     {
5177     case DNTT_TYPE_SRCFILE:
5178       /* This type of symbol indicates from which source file or
5179        * include file any following data comes. It may indicate:
5180        *
5181        * o   The start of an entirely new source file (and thus
5182        *     a new module)
5183        *
5184        * o   The start of a different source file due to #include
5185        *
5186        * o   The end of an include file and the return to the original
5187        *     file. Thus if "foo.c" includes "bar.h", we see first
5188        *     a SRCFILE for foo.c, then one for bar.h, and then one for
5189        *     foo.c again.
5190        *
5191        * If it indicates the start of a new module then we must
5192        * finish the symbol table of the previous module 
5193        * (if any) and start accumulating a new symbol table.  
5194        */
5195
5196       valu = text_offset;
5197       if (!last_source_file)
5198         {
5199           /*
5200            * A note on "last_source_file": this is a char* pointing
5201            * to the actual file name.  "start_symtab" sets it,
5202            * "end_symtab" clears it.
5203            *
5204            * So if "last_source_file" is NULL, then either this is
5205            * the first record we are looking at, or a previous call
5206            * to "end_symtab()" was made to close out the previous
5207            * module.  Since we're now quitting the scan loop when we
5208            * see a MODULE END record, we should never get here, except
5209            * in the case that we're not using the quick look-up tables
5210            * and have to use the old system as a fall-back.
5211            */
5212           start_symtab (name, NULL, valu);
5213           record_debugformat ("HP");
5214           SL_INDEX (objfile) = dn_bufp->dsfile.address;
5215         }
5216
5217       else
5218         {
5219           /* Either a new include file, or a SRCFILE record
5220            * saying we are back in the main source (or out of
5221            * a nested include file) again.
5222            */
5223           SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5224                                                     SL_INDEX (objfile),
5225                                                     dn_bufp->dsfile.address,
5226                                                     objfile, offset);
5227         }
5228
5229       /* A note on "start_subfile".  This routine will check
5230        * the name we pass it and look for an existing subfile
5231        * of that name.  There's thus only one sub-file for the
5232        * actual source (e.g. for "foo.c" in foo.c), despite the
5233        * fact that we'll see lots of SRCFILE entries for foo.c
5234        * inside foo.c.
5235        */
5236       start_subfile (name, NULL);
5237       break;
5238
5239     case DNTT_TYPE_MODULE:
5240       /*
5241        * We no longer ignore DNTT_TYPE_MODULE symbols.  The module 
5242        * represents the meaningful semantic structure of a compilation
5243        * unit.  We expect to start the psymtab-to-symtab expansion
5244        * looking at a MODULE entry, and to end it at the corresponding
5245        * END MODULE entry.
5246        *
5247        *--Begin outdated comments
5248        * 
5249        * This record signifies the start of a new source module
5250        * In C/C++ there is no explicit "module" construct in the language,
5251        * but each compilation unit is implicitly a module and they
5252        * do emit the DNTT_TYPE_MODULE records.
5253        * The end of the module is marked by a matching DNTT_TYPE_END record.
5254        *
5255        * The reason GDB gets away with ignoring the DNTT_TYPE_MODULE record 
5256        * is it notices the DNTT_TYPE_END record for the previous 
5257        * module (see comments under DNTT_TYPE_END case), and then treats
5258        * the next DNTT_TYPE_SRCFILE record as if it were the module-start record.
5259        * (i.e., it makes a start_symtab() call).
5260        * This scheme seems a little convoluted, but I'll leave it 
5261        * alone on the principle "if it ain't broke don't fix
5262        * it". (RT).
5263        *
5264        *-- End outdated comments
5265        */
5266
5267       valu = text_offset;
5268       if (!last_source_file)
5269         {
5270           /* Start of a new module. We know this because "last_source_file"
5271            * is NULL, which can only happen the first time or if we just 
5272            * made a call to end_symtab() to close out the previous module.
5273            */
5274           start_symtab (name, NULL, valu);
5275           SL_INDEX (objfile) = dn_bufp->dmodule.address;
5276         }
5277       else
5278         {
5279           /* This really shouldn't happen if we're using the quick
5280            * look-up tables, as it would mean we'd scanned past an
5281            * END MODULE entry.  But if we're not using the tables,
5282            * we started the module on the SRCFILE entry, so it's ok.
5283            * For now, accept this.
5284            */
5285           /* warning( "Error expanding psymtab, missed module end, found entry for %s",
5286            *           name );
5287            */
5288           *at_module_boundary_p = -1;
5289         }
5290
5291       start_subfile (name, NULL);
5292       break;
5293
5294     case DNTT_TYPE_FUNCTION:
5295     case DNTT_TYPE_ENTRY:
5296       /* A function or secondary entry point.  */
5297       valu = dn_bufp->dfunc.lowaddr + offset;
5298
5299       /* Record lines up to this point. */
5300       SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5301                                                 SL_INDEX (objfile),
5302                                                 dn_bufp->dfunc.address,
5303                                                 objfile, offset);
5304
5305       WITHIN_FUNCTION (objfile) = 1;
5306       CURRENT_FUNCTION_VALUE (objfile) = valu;
5307
5308       /* Stack must be empty now.  */
5309       if (context_stack_depth != 0)
5310         complain (&lbrac_unmatched_complaint, (char *) symnum);
5311       new = push_context (0, valu);
5312
5313       /* Built a type for the function. This includes processing
5314        * the symbol records for the function parameters.
5315        */
5316       SYMBOL_CLASS (sym) = LOC_BLOCK;
5317       SYMBOL_TYPE (sym) = hpread_read_function_type (hp_type, dn_bufp, objfile, 1);
5318
5319       /* The "SYMBOL_NAME" field is expected to be the mangled name
5320        * (if any), which we get from the "alias" field of the SOM record
5321        * if that exists.
5322        */
5323       if ((dn_bufp->dfunc.language == HP_LANGUAGE_CPLUSPLUS) &&
5324           dn_bufp->dfunc.alias &&       /* has an alias */
5325           *(char *) (VT (objfile) + dn_bufp->dfunc.alias))      /* not a null string */
5326         SYMBOL_NAME (sym) = VT (objfile) + dn_bufp->dfunc.alias;
5327       else
5328         SYMBOL_NAME (sym) = VT (objfile) + dn_bufp->dfunc.name;
5329
5330       /* Special hack to get around HP compilers' insistence on
5331        * reporting "main" as "_MAIN_" for C/C++ */
5332       if ((strcmp (SYMBOL_NAME (sym), "_MAIN_") == 0) &&
5333           (strcmp (VT (objfile) + dn_bufp->dfunc.name, "main") == 0))
5334         SYMBOL_NAME (sym) = VT (objfile) + dn_bufp->dfunc.name;
5335
5336       /* The SYMBOL_CPLUS_DEMANGLED_NAME field is expected to
5337        * be the demangled name.
5338        */
5339       if (dn_bufp->dfunc.language == HP_LANGUAGE_CPLUSPLUS)
5340         {
5341           /* SYMBOL_INIT_DEMANGLED_NAME is a macro which winds up
5342            * calling the demangler in libiberty (cplus_demangle()) to
5343            * do the job. This generally does the job, even though
5344            * it's intended for the GNU compiler and not the aCC compiler
5345            * Note that SYMBOL_INIT_DEMANGLED_NAME calls the
5346            * demangler with arguments DMGL_PARAMS | DMGL_ANSI.
5347            * Generally, we don't want params when we display
5348            * a demangled name, but when I took out the DMGL_PARAMS,
5349            * some things broke, so I'm leaving it in here, and
5350            * working around the issue in stack.c. - RT
5351            */
5352           SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
5353           if ((SYMBOL_NAME (sym) == VT (objfile) + dn_bufp->dfunc.alias) &&
5354               (!SYMBOL_CPLUS_DEMANGLED_NAME (sym)))
5355             {
5356
5357               /* Well, the symbol name is mangled, but the
5358                * demangler in libiberty failed so the demangled
5359                * field is still NULL. Try to
5360                * do the job ourselves based on the "name" field
5361                * in the SOM record. A complication here is that
5362                * the name field contains only the function name
5363                * (like "f"), whereas we want the class qualification
5364                * (as in "c::f"). Try to reconstruct that.
5365                */
5366               char *basename;
5367               char *classname;
5368               char *dem_name;
5369               basename = VT (objfile) + dn_bufp->dfunc.name;
5370               classname = class_of (SYMBOL_TYPE (sym));
5371               if (classname)
5372                 {
5373                   dem_name = xmalloc (strlen (basename) + strlen (classname) + 3);
5374                   strcpy (dem_name, classname);
5375                   strcat (dem_name, "::");
5376                   strcat (dem_name, basename);
5377                   SYMBOL_CPLUS_DEMANGLED_NAME (sym) = dem_name;
5378                   SYMBOL_LANGUAGE (sym) = language_cplus;
5379                 }
5380             }
5381         }
5382
5383       /* Add the function symbol to the list of symbols in this blockvector */
5384       if (dn_bufp->dfunc.global)
5385         add_symbol_to_list (sym, &global_symbols);
5386       else
5387         add_symbol_to_list (sym, &file_symbols);
5388       new->name = sym;
5389
5390       /* Search forward to the next BEGIN and also read
5391        * in the line info up to that point. 
5392        * Not sure why this is needed.
5393        * In HP FORTRAN this code is harmful since there   
5394        * may not be a BEGIN after the FUNCTION.
5395        * So I made it C/C++ specific. - RT
5396        */
5397       if (dn_bufp->dfunc.language == HP_LANGUAGE_C ||
5398           dn_bufp->dfunc.language == HP_LANGUAGE_CPLUSPLUS)
5399         {
5400           while (dn_bufp->dblock.kind != DNTT_TYPE_BEGIN)
5401             {
5402               dn_bufp = hpread_get_lntt (++index, objfile);
5403               if (dn_bufp->dblock.extension)
5404                 continue;
5405             }
5406           SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5407                                                     SL_INDEX (objfile),
5408                                                     dn_bufp->dbegin.address,
5409                                                     objfile, offset);
5410           SYMBOL_LINE (sym) = hpread_get_line (dn_bufp->dbegin.address, objfile);
5411         }
5412       record_line (current_subfile, SYMBOL_LINE (sym), valu);
5413       break;
5414
5415     case DNTT_TYPE_DOC_FUNCTION:
5416       valu = dn_bufp->ddocfunc.lowaddr + offset;
5417
5418       /* Record lines up to this point. */
5419       SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5420                                                 SL_INDEX (objfile),
5421                                                 dn_bufp->ddocfunc.address,
5422                                                 objfile, offset);
5423
5424       WITHIN_FUNCTION (objfile) = 1;
5425       CURRENT_FUNCTION_VALUE (objfile) = valu;
5426       /* Stack must be empty now.  */
5427       if (context_stack_depth != 0)
5428         complain (&lbrac_unmatched_complaint, (char *) symnum);
5429       new = push_context (0, valu);
5430
5431       /* Built a type for the function. This includes processing
5432        * the symbol records for the function parameters.
5433        */
5434       SYMBOL_CLASS (sym) = LOC_BLOCK;
5435       SYMBOL_TYPE (sym) = hpread_read_doc_function_type (hp_type, dn_bufp, objfile, 1);
5436
5437       /* The "SYMBOL_NAME" field is expected to be the mangled name
5438        * (if any), which we get from the "alias" field of the SOM record
5439        * if that exists.
5440        */
5441       if ((dn_bufp->ddocfunc.language == HP_LANGUAGE_CPLUSPLUS) &&
5442           dn_bufp->ddocfunc.alias &&    /* has an alias */
5443           *(char *) (VT (objfile) + dn_bufp->ddocfunc.alias))   /* not a null string */
5444         SYMBOL_NAME (sym) = VT (objfile) + dn_bufp->ddocfunc.alias;
5445       else
5446         SYMBOL_NAME (sym) = VT (objfile) + dn_bufp->ddocfunc.name;
5447
5448       /* Special hack to get around HP compilers' insistence on
5449        * reporting "main" as "_MAIN_" for C/C++ */
5450       if ((strcmp (SYMBOL_NAME (sym), "_MAIN_") == 0) &&
5451           (strcmp (VT (objfile) + dn_bufp->ddocfunc.name, "main") == 0))
5452         SYMBOL_NAME (sym) = VT (objfile) + dn_bufp->ddocfunc.name;
5453
5454       if (dn_bufp->ddocfunc.language == HP_LANGUAGE_CPLUSPLUS)
5455         {
5456
5457           /* SYMBOL_INIT_DEMANGLED_NAME is a macro which winds up
5458            * calling the demangler in libiberty (cplus_demangle()) to
5459            * do the job. This generally does the job, even though
5460            * it's intended for the GNU compiler and not the aCC compiler
5461            * Note that SYMBOL_INIT_DEMANGLED_NAME calls the
5462            * demangler with arguments DMGL_PARAMS | DMGL_ANSI.
5463            * Generally, we don't want params when we display
5464            * a demangled name, but when I took out the DMGL_PARAMS,
5465            * some things broke, so I'm leaving it in here, and
5466            * working around the issue in stack.c. - RT 
5467            */
5468           SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
5469
5470           if ((SYMBOL_NAME (sym) == VT (objfile) + dn_bufp->ddocfunc.alias) &&
5471               (!SYMBOL_CPLUS_DEMANGLED_NAME (sym)))
5472             {
5473
5474               /* Well, the symbol name is mangled, but the
5475                * demangler in libiberty failed so the demangled
5476                * field is still NULL. Try to
5477                * do the job ourselves based on the "name" field
5478                * in the SOM record. A complication here is that
5479                * the name field contains only the function name
5480                * (like "f"), whereas we want the class qualification
5481                * (as in "c::f"). Try to reconstruct that.
5482                */
5483               char *basename;
5484               char *classname;
5485               char *dem_name;
5486               basename = VT (objfile) + dn_bufp->ddocfunc.name;
5487               classname = class_of (SYMBOL_TYPE (sym));
5488               if (classname)
5489                 {
5490                   dem_name = xmalloc (strlen (basename) + strlen (classname) + 3);
5491                   strcpy (dem_name, classname);
5492                   strcat (dem_name, "::");
5493                   strcat (dem_name, basename);
5494                   SYMBOL_CPLUS_DEMANGLED_NAME (sym) = dem_name;
5495                   SYMBOL_LANGUAGE (sym) = language_cplus;
5496                 }
5497             }
5498         }
5499
5500       /* Add the function symbol to the list of symbols in this blockvector */
5501       if (dn_bufp->ddocfunc.global)
5502         add_symbol_to_list (sym, &global_symbols);
5503       else
5504         add_symbol_to_list (sym, &file_symbols);
5505       new->name = sym;
5506
5507       /* Search forward to the next BEGIN and also read
5508        * in the line info up to that point. 
5509        * Not sure why this is needed.
5510        * In HP FORTRAN this code is harmful since there   
5511        * may not be a BEGIN after the FUNCTION.
5512        * So I made it C/C++ specific. - RT
5513        */
5514       if (dn_bufp->ddocfunc.language == HP_LANGUAGE_C ||
5515           dn_bufp->ddocfunc.language == HP_LANGUAGE_CPLUSPLUS)
5516         {
5517           while (dn_bufp->dblock.kind != DNTT_TYPE_BEGIN)
5518             {
5519               dn_bufp = hpread_get_lntt (++index, objfile);
5520               if (dn_bufp->dblock.extension)
5521                 continue;
5522             }
5523           SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5524                                                     SL_INDEX (objfile),
5525                                                     dn_bufp->dbegin.address,
5526                                                     objfile, offset);
5527           SYMBOL_LINE (sym) = hpread_get_line (dn_bufp->dbegin.address, objfile);
5528         }
5529       record_line (current_subfile, SYMBOL_LINE (sym), valu);
5530       break;
5531
5532     case DNTT_TYPE_BEGIN:
5533       /* Begin a new scope. */
5534       if (context_stack_depth == 1 /* this means we're at function level */  &&
5535           context_stack[0].name != NULL /* this means it's a function */  &&
5536           context_stack[0].depth == 0   /* this means it's the first BEGIN 
5537                                            we've seen after the FUNCTION */
5538         )
5539         {
5540           /* This is the first BEGIN after a FUNCTION.
5541            * We ignore this one, since HP compilers always insert
5542            * at least one BEGIN, i.e. it's:
5543            * 
5544            *     FUNCTION
5545            *     argument symbols
5546            *     BEGIN
5547            *     local symbols
5548            *        (possibly nested BEGIN ... END's if there are inner { } blocks)
5549            *     END
5550            *     END
5551            *
5552            * By ignoring this first BEGIN, the local symbols get treated
5553            * as belonging to the function scope, and "print func::local_sym"
5554            * works (which is what we want).
5555            */
5556
5557           /* All we do here is increase the depth count associated with
5558            * the FUNCTION entry in the context stack. This ensures that
5559            * the next BEGIN we see (if any), representing a real nested { }
5560            * block, will get processed.
5561            */
5562
5563           context_stack[0].depth++;
5564
5565         }
5566       else
5567         {
5568
5569           /* Record lines up to this SLT pointer. */
5570           SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5571                                                     SL_INDEX (objfile),
5572                                                     dn_bufp->dbegin.address,
5573                                                     objfile, offset);
5574           /* Calculate start address of new scope */
5575           valu = hpread_get_location (dn_bufp->dbegin.address, objfile);
5576           valu += offset;       /* Relocate for dynamic loading */
5577           /* We use the scope start DNTT index as nesting depth identifier! */
5578           desc = hpread_get_scope_start (dn_bufp->dbegin.address, objfile);
5579           new = push_context (desc, valu);
5580         }
5581       break;
5582
5583     case DNTT_TYPE_END:
5584       /* End a scope.  */
5585
5586       /* Valid end kinds are:
5587        *  MODULE
5588        *  FUNCTION
5589        *  WITH
5590        *  COMMON
5591        *  BEGIN
5592        *  CLASS_SCOPE
5593        */
5594
5595       SL_INDEX (objfile) = hpread_record_lines (current_subfile,
5596                                                 SL_INDEX (objfile),
5597                                                 dn_bufp->dend.address,
5598                                                 objfile, offset);
5599       switch (dn_bufp->dend.endkind)
5600         {
5601         case DNTT_TYPE_MODULE:
5602           /* Ending a module ends the symbol table for that module.  
5603            * Calling end_symtab() has the side effect of clearing the
5604            * last_source_file pointer, which in turn signals 
5605            * process_one_debug_symbol() to treat the next DNTT_TYPE_SRCFILE
5606            * record as a module-begin.
5607            */
5608           valu = text_offset + text_size + offset;
5609
5610           /* Tell our caller that we're done with expanding the
5611            * debug information for a module.
5612            */
5613           *at_module_boundary_p = 1;
5614
5615           /* Don't do this, as our caller will do it!
5616
5617            *      (void) end_symtab (valu, objfile, 0);
5618            */
5619           break;
5620
5621         case DNTT_TYPE_FUNCTION:
5622           /* Ending a function, well, ends the function's scope.  */
5623           dn_temp = hpread_get_lntt (dn_bufp->dend.beginscope.dnttp.index,
5624                                      objfile);
5625           valu = dn_temp->dfunc.hiaddr + offset;
5626           /* Insert func params into local list */
5627           merge_symbol_lists (&param_symbols, &local_symbols);
5628           new = pop_context ();
5629           /* Make a block for the local symbols within.  */
5630           finish_block (new->name, &local_symbols, new->old_blocks,
5631                         new->start_addr, valu, objfile);
5632           WITHIN_FUNCTION (objfile) = 0;        /* This may have to change for Pascal */
5633           local_symbols = new->locals;
5634           param_symbols = new->params;
5635           break;
5636
5637         case DNTT_TYPE_BEGIN:
5638           if (context_stack_depth == 1 &&
5639               context_stack[0].name != NULL &&
5640               context_stack[0].depth == 1)
5641             {
5642               /* This is the END corresponding to the
5643                * BEGIN which we ignored - see DNTT_TYPE_BEGIN case above.
5644                */
5645               context_stack[0].depth--;
5646             }
5647           else
5648             {
5649               /* Ending a local scope.  */
5650               valu = hpread_get_location (dn_bufp->dend.address, objfile);
5651               /* Why in the hell is this needed?  */
5652               valu += offset + 9;       /* Relocate for dynamic loading */
5653               new = pop_context ();
5654               desc = dn_bufp->dend.beginscope.dnttp.index;
5655               if (desc != new->depth)
5656                 complain (&lbrac_mismatch_complaint, (char *) symnum);
5657
5658               /* Make a block for the local symbols within.  */
5659               finish_block (new->name, &local_symbols, new->old_blocks,
5660                             new->start_addr, valu, objfile);
5661               local_symbols = new->locals;
5662               param_symbols = new->params;
5663             }
5664           break;
5665
5666         case DNTT_TYPE_WITH:
5667           /* Since we ignore the DNTT_TYPE_WITH that starts the scope,
5668            * we can ignore the DNTT_TYPE_END that ends it.
5669            */
5670           break;
5671
5672         case DNTT_TYPE_COMMON:
5673           /* End a FORTRAN common block. We don't currently handle these */
5674           complain (&hpread_unhandled_end_common_complaint);
5675           break;
5676
5677         case DNTT_TYPE_CLASS_SCOPE:
5678
5679           /* pai: FIXME Not handling nested classes for now -- must
5680              * maintain a stack */
5681           class_scope_name = NULL;
5682
5683 #if 0
5684           /* End a class scope */
5685           valu = hpread_get_location (dn_bufp->dend.address, objfile);
5686           /* Why in the hell is this needed?  */
5687           valu += offset + 9;   /* Relocate for dynamic loading */
5688           new = pop_context ();
5689           desc = dn_bufp->dend.beginscope.dnttp.index;
5690           if (desc != new->depth)
5691             complain (&lbrac_mismatch_complaint, (char *) symnum);
5692           /* Make a block for the local symbols within.  */
5693           finish_block (new->name, &local_symbols, new->old_blocks,
5694                         new->start_addr, valu, objfile);
5695           local_symbols = new->locals;
5696           param_symbols = new->params;
5697 #endif
5698           break;
5699
5700         default:
5701           complain (&hpread_unexpected_end_complaint);
5702           break;
5703         }
5704       break;
5705
5706       /* DNTT_TYPE_IMPORT is not handled */
5707
5708     case DNTT_TYPE_LABEL:
5709       SYMBOL_NAMESPACE (sym) = LABEL_NAMESPACE;
5710       break;
5711
5712     case DNTT_TYPE_FPARAM:
5713       /* Function parameters.  */
5714       /* Note 1: This code was present in the 4.16 sources, and then
5715          removed, because fparams are handled in
5716          hpread_read_function_type().  However, while fparam symbols
5717          are indeed handled twice, this code here cannot be removed
5718          because then they don't get added to the local symbol list of
5719          the function's code block, which leads to a failure to look
5720          up locals, "this"-relative member names, etc.  So I've put
5721          this code back in. pai/1997-07-21 */
5722       /* Note 2: To fix a defect, we stopped adding FPARAMS to local_symbols
5723          in hpread_read_function_type(), so FPARAMS had to be handled
5724          here.  I changed the location to be the appropriate argument
5725          kinds rather than LOC_LOCAL. pai/1997-08-08 */
5726       /* Note 3: Well, the fix in Note 2 above broke argument printing
5727          in traceback frames, and further it makes assumptions about the
5728          order of the FPARAM entries from HP compilers (cc and aCC in particular
5729          generate them in reverse orders -- fixing one breaks for the other).
5730          So I've added code in hpread_read_function_type() to add fparams
5731          to a param_symbols list for the current context level.  These are
5732          then merged into local_symbols when a function end is reached.
5733          pai/1997-08-11 */
5734
5735       break;                    /* do nothing; handled in hpread_read_function_type() */
5736
5737 #if 0                           /* Old code */
5738       if (dn_bufp->dfparam.regparam)
5739         SYMBOL_CLASS (sym) = LOC_REGISTER;
5740       else if (dn_bufp->dfparam.indirect)
5741         SYMBOL_CLASS (sym) = LOC_REF_ARG;
5742       else
5743         SYMBOL_CLASS (sym) = LOC_ARG;
5744       SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
5745       if (dn_bufp->dfparam.copyparam)
5746         {
5747           SYMBOL_VALUE (sym) = dn_bufp->dfparam.location;
5748 #ifdef HPREAD_ADJUST_STACK_ADDRESS
5749           SYMBOL_VALUE (sym)
5750             += HPREAD_ADJUST_STACK_ADDRESS (CURRENT_FUNCTION_VALUE (objfile));
5751 #endif
5752         }
5753       else
5754         SYMBOL_VALUE (sym) = dn_bufp->dfparam.location;
5755       SYMBOL_TYPE (sym) = hpread_type_lookup (dn_bufp->dfparam.type, objfile);
5756       add_symbol_to_list (sym, &fparam_symbols);
5757       break;
5758 #endif
5759
5760     case DNTT_TYPE_SVAR:
5761       /* Static variables.  */
5762       SYMBOL_CLASS (sym) = LOC_STATIC;
5763
5764       /* Note: There is a case that arises with globals in shared
5765        * libraries where we need to set the address to LOC_INDIRECT.
5766        * This case is if you have a global "g" in one library, and
5767        * it is referenced "extern <type> g;" in another library.
5768        * If we're processing the symbols for the referencing library,
5769        * we'll see a global "g", but in this case the address given
5770        * in the symbol table contains a pointer to the real "g".
5771        * We use the storage class LOC_INDIRECT to indicate this. RT
5772        */
5773       if (is_in_import_list (SYMBOL_NAME (sym), objfile))
5774         SYMBOL_CLASS (sym) = LOC_INDIRECT;
5775
5776       SYMBOL_VALUE_ADDRESS (sym) = dn_bufp->dsvar.location + data_offset;
5777       SYMBOL_TYPE (sym) = hpread_type_lookup (dn_bufp->dsvar.type, objfile);
5778
5779       if (dn_bufp->dsvar.global)
5780         add_symbol_to_list (sym, &global_symbols);
5781
5782       else if (WITHIN_FUNCTION (objfile))
5783         add_symbol_to_list (sym, &local_symbols);
5784
5785       else
5786         add_symbol_to_list (sym, &file_symbols);
5787
5788       if (dn_bufp->dsvar.thread_specific)
5789         {
5790           /* Thread-local variable.
5791            */
5792           SYMBOL_CLASS (sym) = LOC_THREAD_LOCAL_STATIC;
5793           SYMBOL_BASEREG (sym) = CR27_REGNUM;
5794
5795           if (objfile->flags & OBJF_SHARED)
5796             {
5797               /*
5798                * This variable is not only thread local but
5799                * in a shared library.
5800                *
5801                * Alas, the shared lib structures are private
5802                * to "somsolib.c".  But C lets us point to one.
5803                */
5804               struct so_list *so;
5805
5806               if (objfile->obj_private == NULL)
5807                 error ("Internal error in reading shared library information.");
5808
5809               so = ((obj_private_data_t *) (objfile->obj_private))->so_info;
5810               if (so == NULL)
5811                 error ("Internal error in reading shared library information.");
5812
5813               /* Thread-locals in shared libraries do NOT have the
5814                * standard offset ("data_offset"), so we re-calculate
5815                * where to look for this variable, using a call-back
5816                * to interpret the private shared-library data.
5817                */
5818               SYMBOL_VALUE_ADDRESS (sym) = dn_bufp->dsvar.location +
5819                 so_lib_thread_start_addr (so);
5820             }
5821         }
5822       break;
5823
5824     case DNTT_TYPE_DVAR:
5825       /* Dynamic variables.  */
5826       if (dn_bufp->ddvar.regvar)
5827         SYMBOL_CLASS (sym) = LOC_REGISTER;
5828       else
5829         SYMBOL_CLASS (sym) = LOC_LOCAL;
5830
5831       SYMBOL_VALUE (sym) = dn_bufp->ddvar.location;
5832 #ifdef HPREAD_ADJUST_STACK_ADDRESS
5833       SYMBOL_VALUE (sym)
5834         += HPREAD_ADJUST_STACK_ADDRESS (CURRENT_FUNCTION_VALUE (objfile));
5835 #endif
5836       SYMBOL_TYPE (sym) = hpread_type_lookup (dn_bufp->ddvar.type, objfile);
5837       if (dn_bufp->ddvar.global)
5838         add_symbol_to_list (sym, &global_symbols);
5839       else if (WITHIN_FUNCTION (objfile))
5840         add_symbol_to_list (sym, &local_symbols);
5841       else
5842         add_symbol_to_list (sym, &file_symbols);
5843       break;
5844
5845     case DNTT_TYPE_CONST:
5846       /* A constant (pascal?).  */
5847       SYMBOL_CLASS (sym) = LOC_CONST;
5848       SYMBOL_VALUE (sym) = dn_bufp->dconst.location;
5849       SYMBOL_TYPE (sym) = hpread_type_lookup (dn_bufp->dconst.type, objfile);
5850       if (dn_bufp->dconst.global)
5851         add_symbol_to_list (sym, &global_symbols);
5852       else if (WITHIN_FUNCTION (objfile))
5853         add_symbol_to_list (sym, &local_symbols);
5854       else
5855         add_symbol_to_list (sym, &file_symbols);
5856       break;
5857
5858     case DNTT_TYPE_TYPEDEF:
5859       /* A typedef. We do want to process these, since a name is
5860        * added to the namespace for the typedef'ed name.
5861        */
5862       SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
5863       SYMBOL_TYPE (sym) = hpread_type_lookup (dn_bufp->dtype.type, objfile);
5864       if (dn_bufp->dtype.global)
5865         add_symbol_to_list (sym, &global_symbols);
5866       else if (WITHIN_FUNCTION (objfile))
5867         add_symbol_to_list (sym, &local_symbols);
5868       else
5869         add_symbol_to_list (sym, &file_symbols);
5870       break;
5871
5872     case DNTT_TYPE_TAGDEF:
5873       {
5874         int global = dn_bufp->dtag.global;
5875         /* Structure, union, enum, template, or class tag definition */
5876         /* We do want to process these, since a name is
5877          * added to the namespace for the tag name (and if C++ class,
5878          * for the typename also).
5879          */
5880         SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
5881
5882         /* The tag contains in its "type" field a pointer to the
5883          * DNTT_TYPE_STRUCT, DNTT_TYPE_UNION, DNTT_TYPE_ENUM, 
5884          * DNTT_TYPE_CLASS or DNTT_TYPE_TEMPLATE
5885          * record that actually defines the type.
5886          */
5887         SYMBOL_TYPE (sym) = hpread_type_lookup (dn_bufp->dtype.type, objfile);
5888         TYPE_NAME (sym->type) = SYMBOL_NAME (sym);
5889         TYPE_TAG_NAME (sym->type) = SYMBOL_NAME (sym);
5890         if (dn_bufp->dtag.global)
5891           add_symbol_to_list (sym, &global_symbols);
5892         else if (WITHIN_FUNCTION (objfile))
5893           add_symbol_to_list (sym, &local_symbols);
5894         else
5895           add_symbol_to_list (sym, &file_symbols);
5896
5897         /* If this is a C++ class, then we additionally 
5898          * need to define a typedef for the
5899          * class type. E.g., so that the name "c" becomes visible as
5900          * a type name when the user says "class c { ... }".
5901          * In order to figure this out, we need to chase down the "type"
5902          * field to get to the DNTT_TYPE_CLASS record. 
5903          *
5904          * We also add the typename for ENUM. Though this isn't
5905          * strictly correct, it is necessary because of the debug info
5906          * generated by the aCC compiler, in which we cannot
5907          * distinguish between:
5908          *   enum e { ... };
5909          * and
5910          *   typedef enum { ... } e;
5911          * I.e., the compiler emits the same debug info for the above
5912          * two cases, in both cases "e" appearing as a tagdef.
5913          * Therefore go ahead and generate the typename so that
5914          * "ptype e" will work in the above cases.
5915          *
5916          * We also add the typename for TEMPLATE, so as to allow "ptype t"
5917          * when "t" is a template name. 
5918          */
5919         if (dn_bufp->dtype.type.dnttp.index < LNTT_SYMCOUNT (objfile))
5920           dn_bufp = hpread_get_lntt (dn_bufp->dtag.type.dnttp.index, objfile);
5921         else
5922           {
5923             complain (&hpread_tagdef_complaint);
5924             return;
5925           }
5926         if (dn_bufp->dblock.kind == DNTT_TYPE_CLASS ||
5927             dn_bufp->dblock.kind == DNTT_TYPE_ENUM ||
5928             dn_bufp->dblock.kind == DNTT_TYPE_TEMPLATE)
5929           {
5930             struct symbol *newsym;
5931
5932             newsym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
5933                                                     sizeof (struct symbol));
5934             memset (newsym, 0, sizeof (struct symbol));
5935             SYMBOL_NAME (newsym) = name;
5936             SYMBOL_LANGUAGE (newsym) = language_auto;
5937             SYMBOL_NAMESPACE (newsym) = VAR_NAMESPACE;
5938             SYMBOL_LINE (newsym) = 0;
5939             SYMBOL_VALUE (newsym) = 0;
5940             SYMBOL_CLASS (newsym) = LOC_TYPEDEF;
5941             SYMBOL_TYPE (newsym) = sym->type;
5942             if (global)
5943               add_symbol_to_list (newsym, &global_symbols);
5944             else if (WITHIN_FUNCTION (objfile))
5945               add_symbol_to_list (newsym, &local_symbols);
5946             else
5947               add_symbol_to_list (newsym, &file_symbols);
5948           }
5949       }
5950       break;
5951
5952     case DNTT_TYPE_POINTER:
5953       /* Declares a pointer type. Should not be necessary to do anything
5954        * with the type at this level; these are processed
5955        * at the hpread_type_lookup() level. 
5956        */
5957       break;
5958
5959     case DNTT_TYPE_ENUM:
5960       /* Declares an enum type. Should not be necessary to do anything
5961        * with the type at this level; these are processed
5962        * at the hpread_type_lookup() level. 
5963        */
5964       break;
5965
5966     case DNTT_TYPE_MEMENUM:
5967       /* Member of enum */
5968       /* Ignored at this level, but hpread_read_enum_type() will take
5969        * care of walking the list of enumeration members.
5970        */
5971       break;
5972
5973     case DNTT_TYPE_SET:
5974       /* Declares a set type. Should not be necessary to do anything
5975        * with the type at this level; these are processed
5976        * at the hpread_type_lookup() level. 
5977        */
5978       break;
5979
5980     case DNTT_TYPE_SUBRANGE:
5981       /* Declares a subrange type. Should not be necessary to do anything
5982        * with the type at this level; these are processed
5983        * at the hpread_type_lookup() level. 
5984        */
5985       break;
5986
5987     case DNTT_TYPE_ARRAY:
5988       /* Declares an array type. Should not be necessary to do anything
5989        * with the type at this level; these are processed
5990        * at the hpread_type_lookup() level. 
5991        */
5992       break;
5993
5994     case DNTT_TYPE_STRUCT:
5995     case DNTT_TYPE_UNION:
5996       /* Declares an struct/union type. 
5997        * Should not be necessary to do anything
5998        * with the type at this level; these are processed
5999        * at the hpread_type_lookup() level. 
6000        */
6001       break;
6002
6003     case DNTT_TYPE_FIELD:
6004       /* Structure/union/class field */
6005       /* Ignored at this level, but hpread_read_struct_type() will take
6006        * care of walking the list of structure/union/class members.
6007        */
6008       break;
6009
6010       /* DNTT_TYPE_VARIANT is not handled by GDB */
6011
6012       /* DNTT_TYPE_FILE is not handled by GDB */
6013
6014     case DNTT_TYPE_FUNCTYPE:
6015       /* Function type */
6016       /* Ignored at this level, handled within hpread_type_lookup() */
6017       break;
6018
6019     case DNTT_TYPE_WITH:
6020       /* This is emitted within methods to indicate "with <class>" 
6021        * scoping rules (i.e., indicate that the class data members
6022        * are directly visible).
6023        * However, since GDB already infers this by looking at the
6024        * "this" argument, interpreting the DNTT_TYPE_WITH 
6025        * symbol record is unnecessary.
6026        */
6027       break;
6028
6029     case DNTT_TYPE_COMMON:
6030       /* FORTRAN common. Not yet handled. */
6031       complain (&hpread_unhandled_common_complaint);
6032       break;
6033
6034       /* DNTT_TYPE_COBSTRUCT is not handled by GDB.  */
6035       /* DNTT_TYPE_XREF is not handled by GDB.  */
6036       /* DNTT_TYPE_SA is not handled by GDB.  */
6037       /* DNTT_TYPE_MACRO is not handled by GDB */
6038
6039     case DNTT_TYPE_BLOCKDATA:
6040       /* Not sure what this is - part of FORTRAN support maybe? 
6041        * Anyway, not yet handled.
6042        */
6043       complain (&hpread_unhandled_blockdata_complaint);
6044       break;
6045
6046     case DNTT_TYPE_CLASS_SCOPE:
6047
6048
6049
6050       /* The compiler brackets member functions with a CLASS_SCOPE/END
6051        * pair of records, presumably to put them in a different scope
6052        * from the module scope where they are normally defined.
6053        * E.g., in the situation:
6054        *   void f() { ... }
6055        *   void c::f() { ...}
6056        * The member function "c::f" will be bracketed by a CLASS_SCOPE/END.
6057        * This causes "break f" at the module level to pick the
6058        * the file-level function f(), not the member function
6059        * (which needs to be referenced via "break c::f"). 
6060        * 
6061        * Here we record the class name to generate the demangled names of
6062        * member functions later.
6063        *
6064        * FIXME Not being used now for anything -- cplus_demangle seems
6065        * enough for getting the class-qualified names of functions. We
6066        * may need this for handling nested classes and types.  */
6067
6068       /* pai: FIXME Not handling nested classes for now -- need to
6069        * maintain a stack */
6070
6071       dn_temp = hpread_get_lntt (dn_bufp->dclass_scope.type.dnttp.index, objfile);
6072       if (dn_temp->dblock.kind == DNTT_TYPE_TAGDEF)
6073         class_scope_name = VT (objfile) + dn_temp->dtag.name;
6074       else
6075         class_scope_name = NULL;
6076
6077 #if 0
6078
6079       /* Begin a new scope.  */
6080       SL_INDEX (objfile) = hpread_record_lines (current_subfile,
6081                                                 SL_INDEX (objfile),
6082                                               dn_bufp->dclass_scope.address,
6083                                                 objfile, offset);
6084       valu = hpread_get_location (dn_bufp->dclass_scope.address, objfile);
6085       valu += offset;           /* Relocate for dynamic loading */
6086       desc = hpread_get_scope_start (dn_bufp->dclass_scope.address, objfile);
6087       /* We use the scope start DNTT index as the nesting depth identifier! */
6088       new = push_context (desc, valu);
6089 #endif
6090       break;
6091
6092     case DNTT_TYPE_REFERENCE:
6093       /* Declares a C++ reference type. Should not be necessary to do anything
6094        * with the type at this level; these are processed
6095        * at the hpread_type_lookup() level.
6096        */
6097       break;
6098
6099     case DNTT_TYPE_PTRMEM:
6100       /* Declares a C++ pointer-to-data-member type. This does not
6101        * need to be handled at this level; being a type description it
6102        * is instead handled at the hpread_type_lookup() level.
6103        */
6104       break;
6105
6106     case DNTT_TYPE_PTRMEMFUNC:
6107       /* Declares a C++ pointer-to-function-member type. This does not
6108        * need to be handled at this level; being a type description it
6109        * is instead handled at the hpread_type_lookup() level.
6110        */
6111       break;
6112
6113     case DNTT_TYPE_CLASS:
6114       /* Declares a class type. 
6115        * Should not be necessary to do anything
6116        * with the type at this level; these are processed
6117        * at the hpread_type_lookup() level. 
6118        */
6119       break;
6120
6121     case DNTT_TYPE_GENFIELD:
6122       /* I believe this is used for class member functions */
6123       /* Ignored at this level, but hpread_read_struct_type() will take
6124        * care of walking the list of class members.
6125        */
6126       break;
6127
6128     case DNTT_TYPE_VFUNC:
6129       /* Virtual function */
6130       /* This does not have to be handled at this level; handled in
6131        * the course of processing class symbols.
6132        */
6133       break;
6134
6135     case DNTT_TYPE_MEMACCESS:
6136       /* DDE ignores this symbol table record.
6137        * It has something to do with "modified access" to class members.
6138        * I'll assume we can safely ignore it too.
6139        */
6140       break;
6141
6142     case DNTT_TYPE_INHERITANCE:
6143       /* These don't have to be handled here, since they are handled
6144        * within hpread_read_struct_type() in the process of constructing
6145        * a class type.
6146        */
6147       break;
6148
6149     case DNTT_TYPE_FRIEND_CLASS:
6150     case DNTT_TYPE_FRIEND_FUNC:
6151       /* These can safely be ignored, as GDB doesn't need this
6152        * info. DDE only uses it in "describe". We may later want
6153        * to extend GDB's "ptype" to give this info, but for now
6154        * it seems safe enough to ignore it.
6155        */
6156       break;
6157
6158     case DNTT_TYPE_MODIFIER:
6159       /* Intended to supply "modified access" to a type */
6160       /* From the way DDE handles this, it looks like it always
6161        * modifies a type. Therefore it is safe to ignore it at this
6162        * level, and handle it in hpread_type_lookup().
6163        */
6164       break;
6165
6166     case DNTT_TYPE_OBJECT_ID:
6167       /* Just ignore this - that's all DDE does */
6168       break;
6169
6170     case DNTT_TYPE_MEMFUNC:
6171       /* Member function */
6172       /* This does not have to be handled at this level; handled in
6173        * the course of processing class symbols.
6174        */
6175       break;
6176
6177     case DNTT_TYPE_DOC_MEMFUNC:
6178       /* Member function */
6179       /* This does not have to be handled at this level; handled in
6180        * the course of processing class symbols.
6181        */
6182       break;
6183
6184     case DNTT_TYPE_TEMPLATE:
6185       /* Template - sort of the header for a template definition,
6186        * which like a class, points to a member list and also points
6187        * to a TEMPLATE_ARG list of type-arguments.
6188        * We do not need to process TEMPLATE records at this level though.
6189        */
6190       break;
6191
6192     case DNTT_TYPE_TEMPLATE_ARG:
6193       /* The TEMPLATE record points to an argument list of
6194        * TEMPLATE_ARG records, each of which describes one
6195        * of the type-arguments.
6196        * We do not need to process TEMPLATE_ARG records at this level though.
6197        */
6198       break;
6199
6200     case DNTT_TYPE_FUNC_TEMPLATE:
6201       /* This will get emitted for member functions of templates.
6202        * But we don't need to process this record at this level though,
6203        * we will process it in the course of processing a TEMPLATE
6204        * record.
6205        */
6206       break;
6207
6208     case DNTT_TYPE_LINK:
6209       /* The LINK record is used to link up templates with instantiations. */
6210       /* It is not clear why this is needed, and furthermore aCC does
6211        * not appear to generate this, so I think we can safely ignore it. - RT
6212        */
6213       break;
6214
6215       /* DNTT_TYPE_DYN_ARRAY_DESC is not handled by GDB */
6216       /* DNTT_TYPE_DESC_SUBRANGE is not handled by GDB */
6217       /* DNTT_TYPE_BEGIN_EXT is not handled by GDB */
6218       /* DNTT_TYPE_INLN is not handled by GDB */
6219       /* DNTT_TYPE_INLN_LIST is not handled by GDB */
6220       /* DNTT_TYPE_ALIAS is not handled by GDB */
6221
6222     default:
6223       break;
6224     }
6225 }
6226
6227 /* Get nesting depth for a DNTT entry.
6228  * DN_BUFP points to a DNTT entry.
6229  * OBJFILE is the object file.
6230  * REPORT_NESTED is a flag; if 0, real nesting depth is
6231  * reported, if it is 1, the function simply returns a 
6232  * non-zero value if the nesting depth is anything > 0.
6233  * 
6234  * Return value is an integer.  0 => not a local type / name
6235  * positive return => type or name is local to some 
6236  * block or function.
6237  */
6238
6239
6240 /* elz: ATTENTION: FIXME: NOTE: WARNING!!!!
6241    this function now returns 0 right away. It was taking too much time
6242    at start up. Now, though, the local types are not handled correctly.
6243  */
6244
6245
6246 static int
6247 hpread_get_scope_depth (union dnttentry *dn_bufp, struct objfile *objfile,
6248                         int report_nested)
6249 {
6250   register int index;
6251   register union dnttentry *dn_tmp;
6252   register short depth = 0;
6253 /****************************/
6254   return 0;
6255 /****************************/
6256
6257   index = (((char *) dn_bufp) - LNTT (objfile)) / (sizeof (struct dntt_type_block));
6258
6259   while (--index >= 0)
6260     {
6261       dn_tmp = hpread_get_lntt (index, objfile);
6262       switch (dn_tmp->dblock.kind)
6263         {
6264         case DNTT_TYPE_MODULE:
6265           return depth;
6266         case DNTT_TYPE_END:
6267           /* index is signed int; dnttp.index is 29-bit unsigned int! */
6268           index = (int) dn_tmp->dend.beginscope.dnttp.index;
6269           break;
6270         case DNTT_TYPE_BEGIN:
6271         case DNTT_TYPE_FUNCTION:
6272         case DNTT_TYPE_DOC_FUNCTION:
6273         case DNTT_TYPE_WITH:
6274         case DNTT_TYPE_COMMON:
6275         case DNTT_TYPE_CLASS_SCOPE:
6276           depth++;
6277           if (report_nested)
6278             return 1;
6279           break;
6280         default:
6281           break;
6282         }
6283     }
6284   return depth;
6285 }
6286
6287 /* Adjust the bitoffsets for all fields of an anonymous union of
6288    type TYPE by negative BITS.  This handles HP aCC's hideous habit
6289    of giving members of anonymous unions bit offsets relative to the
6290    enclosing structure instead of relative to the union itself. */
6291
6292 static void
6293 hpread_adjust_bitoffsets (struct type *type, int bits)
6294 {
6295   register int i;
6296
6297   /* This is done only for unions; caller had better check that
6298      it is an anonymous one. */
6299   if (TYPE_CODE (type) != TYPE_CODE_UNION)
6300     return;
6301
6302   /* Adjust each field; since this is a union, there are no base
6303      classes. Also no static membes.  Also, no need for recursion as
6304      the members of this union if themeselves structs or unions, have
6305      the correct bitoffsets; if an anonymous union is a member of this
6306      anonymous union, the code in hpread_read_struct_type() will
6307      adjust for that. */
6308
6309   for (i = 0; i < TYPE_NFIELDS (type); i++)
6310     TYPE_FIELD_BITPOS (type, i) -= bits;
6311 }
6312
6313 /* Because of quirks in HP compilers' treatment of anonymous unions inside
6314    classes, we have to chase through a chain of threaded FIELD entries.
6315    If we encounter an anonymous union in the chain, we must recursively skip over
6316    that too.
6317
6318    This function does a "next" in the chain of FIELD entries, but transparently
6319    skips over anonymous unions' fields (recursively).
6320
6321    Inputs are the number of times to do "next" at the top level, the dnttpointer
6322    (FIELD) and entry pointer (FIELDP) for the dntt record corresponding to it,
6323    and the ubiquitous objfile parameter. (Note: FIELDP is a **.)  Return value
6324    is a dnttpointer for the new field after all the skipped ones */
6325
6326 static dnttpointer
6327 hpread_get_next_skip_over_anon_unions (int skip_fields, dnttpointer field,
6328                                        union dnttentry **fieldp,
6329                                        struct objfile *objfile)
6330 {
6331   struct type *anon_type;
6332   register int i;
6333   int bitoffset;
6334   char *name;
6335
6336   for (i = 0; i < skip_fields; i++)
6337     {
6338       /* Get type of item we're looking at now; recursively processes the types
6339          of these intermediate items we skip over, so they aren't lost. */
6340       anon_type = hpread_type_lookup ((*fieldp)->dfield.type, objfile);
6341       anon_type = CHECK_TYPEDEF (anon_type);
6342       bitoffset = (*fieldp)->dfield.bitoffset;
6343       name = VT (objfile) + (*fieldp)->dfield.name;
6344       /* First skip over one item to avoid stack death on recursion */
6345       field = (*fieldp)->dfield.nextfield;
6346       *fieldp = hpread_get_lntt (field.dnttp.index, objfile);
6347       /* Do we have another anonymous union? If so, adjust the bitoffsets
6348          of its members and skip over its members. */
6349       if ((TYPE_CODE (anon_type) == TYPE_CODE_UNION) &&
6350           (!name || STREQ (name, "")))
6351         {
6352           hpread_adjust_bitoffsets (anon_type, bitoffset);
6353           field = hpread_get_next_skip_over_anon_unions (TYPE_NFIELDS (anon_type), field, fieldp, objfile);
6354         }
6355     }
6356   return field;
6357 }