Fix a segfault caused by under-allocating an array.
[deliverable/binutils-gdb.git] / gdb / os9kread.c
CommitLineData
c906108c
SS
1/* Read os9/os9k symbol tables and convert to internal format, for GDB.
2 Copyright 1986, 87, 88, 89, 90, 91, 92, 93, 94, 96, 1998
3 Free Software Foundation, Inc.
4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b
JM
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. */
c906108c
SS
21
22/* This module provides three functions: os9k_symfile_init,
23 which initializes to read a symbol file; os9k_new_init, which
24 discards existing cached information when all symbols are being
25 discarded; and os9k_symfile_read, which reads a symbol table
26 from a file.
27
28 os9k_symfile_read only does the minimum work necessary for letting the
29 user "name" things symbolically; it does not read the entire symtab.
30 Instead, it reads the external and static symbols and puts them in partial
31 symbol tables. When more extensive information is requested of a
32 file, the corresponding partial symbol table is mutated into a full
33 fledged symbol table by going back and reading the symbols
34 for real. os9k_psymtab_to_symtab() is the function that does this */
35
36#include "defs.h"
37#include "gdb_string.h"
38#include <stdio.h>
39
40#if defined(USG) || defined(__CYGNUSCLIB__)
41#include <sys/types.h>
42#include <fcntl.h>
43#endif
44
45#include "obstack.h"
46#include "gdb_stat.h"
47#include <ctype.h>
48#include "symtab.h"
49#include "breakpoint.h"
50#include "command.h"
51#include "target.h"
52#include "gdbcore.h" /* for bfd stuff */
c5aa993b 53#include "libaout.h" /* FIXME Secret internal BFD stuff for a.out */
c906108c
SS
54#include "symfile.h"
55#include "objfiles.h"
56#include "buildsym.h"
57#include "gdb-stabs.h"
58#include "demangle.h"
59#include "language.h" /* Needed inside partial-stab.h */
60#include "complaints.h"
61#include "os9k.h"
62#include "stabsread.h"
63
a14ed312 64extern void _initialize_os9kread (void);
392a587b 65
c906108c
SS
66/* Each partial symbol table entry contains a pointer to private data for the
67 read_symtab() function to use when expanding a partial symbol table entry
68 to a full symbol table entry.
69
70 For dbxread this structure contains the offset within the file symbol table
71 of first local symbol for this file, and count of the section
72 of the symbol table devoted to this file's symbols (actually, the section
73 bracketed may contain more than just this file's symbols). It also contains
74 further information needed to locate the symbols if they are in an ELF file.
75
76 If ldsymcnt is 0, the only reason for this thing's existence is the
77 dependency list. Nothing else will happen when it is read in. */
78
79#define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
80#define LDSYMCNT(p) (((struct symloc *)((p)->read_symtab_private))->ldsymnum)
81
c5aa993b
JM
82struct symloc
83 {
84 int ldsymoff;
85 int ldsymnum;
86 };
c906108c
SS
87
88/* Remember what we deduced to be the source language of this psymtab. */
89static enum language psymtab_language = language_unknown;
90
91/* keep partial symbol table file nested depth */
92static int psymfile_depth = 0;
93
94/* keep symbol table file nested depth */
95static int symfile_depth = 0;
96
97/* Nonzero means give verbose info on gdb action. From main.c. */
98extern int info_verbose;
99
100extern int previous_stab_code;
101
102/* Name of last function encountered. Used in Solaris to approximate
103 object file boundaries. */
104static char *last_function_name;
105
106/* Complaints about the symbols we have encountered. */
107extern struct complaint lbrac_complaint;
108
109extern struct complaint unknown_symtype_complaint;
110
111extern struct complaint unknown_symchar_complaint;
112
113extern struct complaint lbrac_rbrac_complaint;
114
115extern struct complaint repeated_header_complaint;
116
117extern struct complaint repeated_header_name_complaint;
118
119#if 0
120static struct complaint lbrac_unmatched_complaint =
c5aa993b 121{"unmatched Increment Block Entry before symtab pos %d", 0, 0};
c906108c
SS
122
123static struct complaint lbrac_mismatch_complaint =
c5aa993b 124{"IBE/IDE symbol mismatch at symtab pos %d", 0, 0};
c906108c
SS
125#endif
126\f
127/* Local function prototypes */
128
a14ed312 129static void read_minimal_symbols (struct objfile *);
c906108c 130
a14ed312 131static void os9k_read_ofile_symtab (struct partial_symtab *);
c906108c 132
a14ed312 133static void os9k_psymtab_to_symtab (struct partial_symtab *);
c906108c 134
a14ed312 135static void os9k_psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 136
a14ed312 137static void read_os9k_psymtab (struct objfile *, CORE_ADDR, int);
c906108c 138
a14ed312 139static int fill_sym (FILE *, bfd *);
c906108c 140
a14ed312 141static void os9k_symfile_init (struct objfile *);
c906108c 142
a14ed312 143static void os9k_new_init (struct objfile *);
c906108c 144
a14ed312 145static void os9k_symfile_read (struct objfile *, int);
c906108c 146
a14ed312 147static void os9k_symfile_finish (struct objfile *);
c906108c
SS
148
149static void
a14ed312
KB
150os9k_process_one_symbol (int, int, CORE_ADDR, char *,
151 struct section_offsets *, struct objfile *);
c906108c 152
a14ed312
KB
153static struct partial_symtab *os9k_start_psymtab (struct objfile *, char *,
154 CORE_ADDR, int, int,
155 struct partial_symbol **,
156 struct partial_symbol **);
c906108c 157
a14ed312
KB
158static struct partial_symtab *os9k_end_psymtab (struct partial_symtab *,
159 char **, int, int, CORE_ADDR,
160 struct partial_symtab **,
161 int);
c906108c 162
a14ed312 163static void record_minimal_symbol (char *, CORE_ADDR, int, struct objfile *);
c906108c
SS
164\f
165#define HANDLE_RBRAC(val) \
166 if ((val) > pst->texthigh) pst->texthigh = (val);
167
168#define SWAP_STBHDR(hdrp, abfd) \
169 { \
170 (hdrp)->fmtno = bfd_get_16(abfd, (unsigned char *)&(hdrp)->fmtno); \
171 (hdrp)->crc = bfd_get_32(abfd, (unsigned char *)&(hdrp)->crc); \
172 (hdrp)->offset = bfd_get_32(abfd, (unsigned char *)&(hdrp)->offset); \
173 (hdrp)->nsym = bfd_get_32(abfd, (unsigned char *)&(hdrp)->nsym); \
174 }
175#define SWAP_STBSYM(symp, abfd) \
176 { \
177 (symp)->value = bfd_get_32(abfd, (unsigned char *)&(symp)->value); \
178 (symp)->type = bfd_get_16(abfd, (unsigned char *)&(symp)->type); \
179 (symp)->stroff = bfd_get_32(abfd, (unsigned char *)&(symp)->stroff); \
180 }
181#define N_DATA 0
182#define N_BSS 1
183#define N_RDATA 2
184#define N_IDATA 3
185#define N_TEXT 4
186#define N_ABS 6
187
188static void
fba45db2
KB
189record_minimal_symbol (char *name, CORE_ADDR address, int type,
190 struct objfile *objfile)
c906108c
SS
191{
192 enum minimal_symbol_type ms_type;
193
194 switch (type)
195 {
196 case N_TEXT:
c5aa993b 197 ms_type = mst_text;
b8fbeb18 198 address += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b 199 break;
c906108c 200 case N_DATA:
c5aa993b
JM
201 ms_type = mst_data;
202 break;
c906108c 203 case N_BSS:
c5aa993b
JM
204 ms_type = mst_bss;
205 break;
c906108c 206 case N_RDATA:
c5aa993b
JM
207 ms_type = mst_bss;
208 break;
209 case N_IDATA:
210 ms_type = mst_data;
211 break;
c906108c 212 case N_ABS:
c5aa993b
JM
213 ms_type = mst_abs;
214 break;
c906108c 215 default:
c5aa993b
JM
216 ms_type = mst_unknown;
217 break;
218 }
c906108c
SS
219
220 prim_record_minimal_symbol (name, address, ms_type, objfile);
221}
222
223/* read and process .stb file and store in minimal symbol table */
224typedef char mhhdr[80];
c5aa993b
JM
225struct stbhdr
226 {
227 mhhdr comhdr;
228 char *name;
229 short fmtno;
230 int crc;
231 int offset;
232 int nsym;
233 char *pad;
234 };
235struct stbsymbol
236 {
237 int value;
238 short type;
239 int stroff;
240 };
c906108c
SS
241#define STBSYMSIZE 10
242
243static void
fba45db2 244read_minimal_symbols (struct objfile *objfile)
c906108c 245{
c5aa993b
JM
246 FILE *fp;
247 bfd *abfd;
248 struct stbhdr hdr;
249 struct stbsymbol sym;
250 int ch, i, j, off;
251 char buf[64], buf1[128];
252
c906108c 253 fp = objfile->auxf1;
c5aa993b
JM
254 if (fp == NULL)
255 return;
c906108c 256 abfd = objfile->obfd;
c5aa993b 257 fread (&hdr.comhdr[0], sizeof (mhhdr), 1, fp);
c906108c 258 i = 0;
c5aa993b
JM
259 ch = getc (fp);
260 while (ch != -1)
261 {
262 buf[i] = (char) ch;
263 i++;
264 if (ch == 0)
265 break;
266 ch = getc (fp);
267 };
268 if (i % 2)
269 ch = getc (fp);
c906108c
SS
270 hdr.name = &buf[0];
271
c5aa993b
JM
272 fread (&hdr.fmtno, sizeof (hdr.fmtno), 1, fp);
273 fread (&hdr.crc, sizeof (hdr.crc), 1, fp);
274 fread (&hdr.offset, sizeof (hdr.offset), 1, fp);
275 fread (&hdr.nsym, sizeof (hdr.nsym), 1, fp);
276 SWAP_STBHDR (&hdr, abfd);
277
c906108c 278 /* read symbols */
c5aa993b 279 init_minimal_symbol_collection ();
c906108c 280 off = hdr.offset;
c5aa993b
JM
281 for (i = hdr.nsym; i > 0; i--)
282 {
283 fseek (fp, (long) off, 0);
284 fread (&sym.value, sizeof (sym.value), 1, fp);
285 fread (&sym.type, sizeof (sym.type), 1, fp);
286 fread (&sym.stroff, sizeof (sym.stroff), 1, fp);
287 SWAP_STBSYM (&sym, abfd);
288 fseek (fp, (long) sym.stroff, 0);
289 j = 0;
290 ch = getc (fp);
291 while (ch != -1)
292 {
293 buf1[j] = (char) ch;
294 j++;
295 if (ch == 0)
296 break;
297 ch = getc (fp);
298 };
d4f3574e 299 record_minimal_symbol (buf1, sym.value, sym.type & 7, objfile);
c5aa993b 300 off += STBSYMSIZE;
c906108c 301 };
c906108c
SS
302 install_minimal_symbols (objfile);
303 return;
304}
305\f
306/* Scan and build partial symbols for a symbol file.
307 We have been initialized by a call to os9k_symfile_init, which
308 put all the relevant info into a "struct os9k_symfile_info",
309 hung off the objfile structure.
310
c906108c
SS
311 MAINLINE is true if we are reading the main symbol
312 table (as opposed to a shared lib or dynamically loaded file). */
313
314static void
96baa820 315os9k_symfile_read (objfile, mainline)
c906108c 316 struct objfile *objfile;
c5aa993b 317 int mainline; /* FIXME comments above */
c906108c
SS
318{
319 bfd *sym_bfd;
320 struct cleanup *back_to;
321
322 sym_bfd = objfile->obfd;
323 /* If we are reinitializing, or if we have never loaded syms yet, init */
c5aa993b
JM
324 if (mainline || objfile->global_psymbols.size == 0 ||
325 objfile->static_psymbols.size == 0)
c906108c
SS
326 init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
327
328 free_pending_blocks ();
a0b3c4fd 329 back_to = make_cleanup (really_free_pendings, 0);
c906108c 330
56e290f4 331 make_cleanup_discard_minimal_symbols ();
d4f3574e 332 read_minimal_symbols (objfile);
c906108c
SS
333
334 /* Now that the symbol table data of the executable file are all in core,
335 process them and define symbols accordingly. */
d4f3574e 336 read_os9k_psymtab (objfile,
c906108c
SS
337 DBX_TEXT_ADDR (objfile),
338 DBX_TEXT_SIZE (objfile));
339
340 do_cleanups (back_to);
341}
342
343/* Initialize anything that needs initializing when a completely new
344 symbol file is specified (not just adding some symbols from another
345 file, e.g. a shared library). */
346
347static void
fba45db2 348os9k_new_init (struct objfile *ignore)
c906108c
SS
349{
350 stabsread_new_init ();
351 buildsym_new_init ();
352 psymfile_depth = 0;
353/*
c5aa993b
JM
354 init_header_files ();
355 */
c906108c
SS
356}
357
358/* os9k_symfile_init ()
359 It is passed a struct objfile which contains, among other things,
360 the BFD for the file whose symbols are being read, and a slot for a pointer
361 to "private data" which we fill with goodies.
362
363 Since BFD doesn't know how to read debug symbols in a format-independent
364 way (and may never do so...), we have to do it ourselves. We will never
365 be called unless this is an a.out (or very similar) file.
366 FIXME, there should be a cleaner peephole into the BFD environment here. */
367
368static void
fba45db2 369os9k_symfile_init (struct objfile *objfile)
c906108c
SS
370{
371 bfd *sym_bfd = objfile->obfd;
372 char *name = bfd_get_filename (sym_bfd);
373 char dbgname[512], stbname[512];
374 FILE *symfile = 0;
375 FILE *minfile = 0;
376 asection *text_sect;
377
c5aa993b
JM
378 strcpy (dbgname, name);
379 strcat (dbgname, ".dbg");
380 strcpy (stbname, name);
381 strcat (stbname, ".stb");
c906108c 382
c5aa993b
JM
383 if ((symfile = fopen (dbgname, "r")) == NULL)
384 {
385 warning ("Symbol file %s not found", dbgname);
386 }
c906108c
SS
387 objfile->auxf2 = symfile;
388
c5aa993b
JM
389 if ((minfile = fopen (stbname, "r")) == NULL)
390 {
391 warning ("Symbol file %s not found", stbname);
392 }
c906108c
SS
393 objfile->auxf1 = minfile;
394
395 /* Allocate struct to keep track of the symfile */
396 objfile->sym_stab_info = (struct dbx_symfile_info *)
c5aa993b 397 xmmalloc (objfile->md, sizeof (struct dbx_symfile_info));
c906108c
SS
398 DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
399
400 text_sect = bfd_get_section_by_name (sym_bfd, ".text");
401 if (!text_sect)
402 error ("Can't find .text section in file");
403 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
404 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
405
c5aa993b
JM
406 DBX_SYMBOL_SIZE (objfile) = 0; /* variable size symbol */
407 DBX_SYMCOUNT (objfile) = 0; /* used to be bfd_get_symcount(sym_bfd) */
408 DBX_SYMTAB_OFFSET (objfile) = 0; /* used to be SYMBOL_TABLE_OFFSET */
c906108c
SS
409}
410
411/* Perform any local cleanups required when we are done with a particular
412 objfile. I.E, we are in the process of discarding all symbol information
413 for an objfile, freeing up all memory held for it, and unlinking the
414 objfile struct from the global list of known objfiles. */
415
416static void
fba45db2 417os9k_symfile_finish (struct objfile *objfile)
c906108c
SS
418{
419 if (objfile->sym_stab_info != NULL)
420 {
c5aa993b 421 mfree (objfile->md, objfile->sym_stab_info);
c906108c
SS
422 }
423/*
c5aa993b
JM
424 free_header_files ();
425 */
c906108c 426}
c906108c 427\f
c5aa993b
JM
428
429struct st_dbghdr
430{
c906108c
SS
431 int sync;
432 short rev;
433 int crc;
434 short os;
435 short cpu;
436};
437#define SYNC (int)0xefbefeca
438
439#define SWAP_DBGHDR(hdrp, abfd) \
440 { \
441 (hdrp)->sync = bfd_get_32(abfd, (unsigned char *)&(hdrp)->sync); \
442 (hdrp)->rev = bfd_get_16(abfd, (unsigned char *)&(hdrp)->rev); \
443 (hdrp)->crc = bfd_get_32(abfd, (unsigned char *)&(hdrp)->crc); \
444 (hdrp)->os = bfd_get_16(abfd, (unsigned char *)&(hdrp)->os); \
445 (hdrp)->cpu = bfd_get_16(abfd, (unsigned char *)&(hdrp)->cpu); \
446 }
447
448#define N_SYM_CMPLR 0
449#define N_SYM_SLINE 1
450#define N_SYM_SYM 2
451#define N_SYM_LBRAC 3
452#define N_SYM_RBRAC 4
453#define N_SYM_SE 5
454
c5aa993b
JM
455struct internal_symstruct
456 {
457 short n_type;
458 short n_desc;
459 long n_value;
460 char *n_strx;
461 };
c906108c
SS
462static struct internal_symstruct symbol;
463static struct internal_symstruct *symbuf = &symbol;
464static char strbuf[4096];
465static struct st_dbghdr dbghdr;
466static short cmplrid;
467
468#define VER_PRE_ULTRAC ((short)4)
469#define VER_ULTRAC ((short)5)
470
471static int
fba45db2 472fill_sym (FILE *dbg_file, bfd *abfd)
c906108c 473{
c5aa993b
JM
474 short si, nmask;
475 long li;
476 int ii;
477 char *p;
c906108c 478
c5aa993b 479 int nbytes = fread (&si, sizeof (si), 1, dbg_file);
c906108c
SS
480 if (nbytes == 0)
481 return 0;
482 if (nbytes < 0)
483 perror_with_name ("reading .dbg file.");
484 symbuf->n_desc = 0;
485 symbuf->n_value = 0;
486 symbuf->n_strx = NULL;
c5aa993b 487 symbuf->n_type = bfd_get_16 (abfd, (unsigned char *) &si);
c906108c
SS
488 symbuf->n_type = 0xf & symbuf->n_type;
489 switch (symbuf->n_type)
490 {
491 case N_SYM_CMPLR:
c5aa993b
JM
492 fread (&si, sizeof (si), 1, dbg_file);
493 symbuf->n_desc = bfd_get_16 (abfd, (unsigned char *) &si);
c906108c
SS
494 cmplrid = symbuf->n_desc & 0xff;
495 break;
496 case N_SYM_SLINE:
c5aa993b
JM
497 fread (&li, sizeof (li), 1, dbg_file);
498 symbuf->n_value = bfd_get_32 (abfd, (unsigned char *) &li);
499 fread (&li, sizeof (li), 1, dbg_file);
500 li = bfd_get_32 (abfd, (unsigned char *) &li);
501 symbuf->n_strx = (char *) (li >> 12);
c906108c
SS
502 symbuf->n_desc = li & 0xfff;
503 break;
504 case N_SYM_SYM:
c5aa993b
JM
505 fread (&li, sizeof (li), 1, dbg_file);
506 symbuf->n_value = bfd_get_32 (abfd, (unsigned char *) &li);
c906108c 507 si = 0;
c5aa993b
JM
508 do
509 {
510 ii = getc (dbg_file);
511 strbuf[si++] = (char) ii;
512 }
513 while (ii != 0 || si % 2 != 0);
c906108c
SS
514 symbuf->n_strx = strbuf;
515 p = (char *) strchr (strbuf, ':');
c5aa993b
JM
516 if (!p)
517 break;
c906108c
SS
518 if ((p[1] == 'F' || p[1] == 'f') && cmplrid == VER_PRE_ULTRAC)
519 {
c5aa993b
JM
520 fread (&si, sizeof (si), 1, dbg_file);
521 nmask = bfd_get_16 (abfd, (unsigned char *) &si);
522 for (ii = 0; ii < nmask; ii++)
523 fread (&si, sizeof (si), 1, dbg_file);
c906108c
SS
524 }
525 break;
526 case N_SYM_LBRAC:
c5aa993b
JM
527 fread (&li, sizeof (li), 1, dbg_file);
528 symbuf->n_value = bfd_get_32 (abfd, (unsigned char *) &li);
c906108c
SS
529 break;
530 case N_SYM_RBRAC:
c5aa993b
JM
531 fread (&li, sizeof (li), 1, dbg_file);
532 symbuf->n_value = bfd_get_32 (abfd, (unsigned char *) &li);
c906108c
SS
533 break;
534 case N_SYM_SE:
535 break;
536 }
c5aa993b 537 return 1;
c906108c
SS
538}
539\f
540/* Given pointers to an a.out symbol table in core containing dbx
541 style data, setup partial_symtab's describing each source file for
542 which debugging information is available.
d4f3574e 543 SYMFILE_NAME is the name of the file we are reading from. */
c906108c
SS
544
545static void
fba45db2 546read_os9k_psymtab (struct objfile *objfile, CORE_ADDR text_addr, int text_size)
c906108c 547{
c5aa993b 548 register struct internal_symstruct *bufp = 0; /* =0 avoids gcc -Wall glitch */
c906108c
SS
549 register char *namestring;
550 int past_first_source_file = 0;
551 CORE_ADDR last_o_file_start = 0;
552#if 0
553 struct cleanup *back_to;
554#endif
555 bfd *abfd;
556 FILE *fp;
557
558 /* End of the text segment of the executable file. */
559 static CORE_ADDR end_of_text_addr;
560
561 /* Current partial symtab */
562 static struct partial_symtab *pst = 0;
563
564 /* List of current psymtab's include files */
565 char **psymtab_include_list;
566 int includes_allocated;
567 int includes_used;
568
569 /* Index within current psymtab dependency list */
570 struct partial_symtab **dependency_list;
571 int dependencies_used, dependencies_allocated;
572
573 includes_allocated = 30;
574 includes_used = 0;
575 psymtab_include_list = (char **) alloca (includes_allocated *
576 sizeof (char *));
577
578 dependencies_allocated = 30;
579 dependencies_used = 0;
580 dependency_list =
581 (struct partial_symtab **) alloca (dependencies_allocated *
582 sizeof (struct partial_symtab *));
583
584 last_source_file = NULL;
585
586#ifdef END_OF_TEXT_DEFAULT
587 end_of_text_addr = END_OF_TEXT_DEFAULT;
588#else
b8fbeb18 589 end_of_text_addr = text_addr + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile))
c5aa993b 590 + text_size; /* Relocate */
c906108c
SS
591#endif
592
593 abfd = objfile->obfd;
c5aa993b
JM
594 fp = objfile->auxf2;
595 if (!fp)
596 return;
597
598 fread (&dbghdr.sync, sizeof (dbghdr.sync), 1, fp);
599 fread (&dbghdr.rev, sizeof (dbghdr.rev), 1, fp);
600 fread (&dbghdr.crc, sizeof (dbghdr.crc), 1, fp);
601 fread (&dbghdr.os, sizeof (dbghdr.os), 1, fp);
602 fread (&dbghdr.cpu, sizeof (dbghdr.cpu), 1, fp);
603 SWAP_DBGHDR (&dbghdr, abfd);
c906108c
SS
604
605 symnum = 0;
c5aa993b 606 while (1)
c906108c 607 {
c5aa993b
JM
608 int ret;
609 long cursymoffset;
c906108c
SS
610
611 /* Get the symbol for this run and pull out some info */
c5aa993b
JM
612 QUIT; /* allow this to be interruptable */
613 cursymoffset = ftell (objfile->auxf2);
614 ret = fill_sym (objfile->auxf2, abfd);
615 if (ret <= 0)
616 break;
617 else
618 symnum++;
c906108c
SS
619 bufp = symbuf;
620
621 /* Special case to speed up readin. */
c5aa993b
JM
622 if (bufp->n_type == (short) N_SYM_SLINE)
623 continue;
c906108c
SS
624
625#define CUR_SYMBOL_VALUE bufp->n_value
626 /* partial-stab.h */
627
628 switch (bufp->n_type)
629 {
c5aa993b 630 char *p;
c906108c
SS
631
632 case N_SYM_CMPLR:
633 continue;
634
635 case N_SYM_SE:
b8fbeb18 636 CUR_SYMBOL_VALUE += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
637 if (psymfile_depth == 1 && pst)
638 {
639 os9k_end_psymtab (pst, psymtab_include_list, includes_used,
c5aa993b
JM
640 symnum, CUR_SYMBOL_VALUE,
641 dependency_list, dependencies_used);
c906108c
SS
642 pst = (struct partial_symtab *) 0;
643 includes_used = 0;
644 dependencies_used = 0;
645 }
c5aa993b 646 psymfile_depth--;
c906108c
SS
647 continue;
648
c5aa993b 649 case N_SYM_SYM: /* Typedef or automatic variable. */
c906108c 650 namestring = bufp->n_strx;
c5aa993b
JM
651 p = (char *) strchr (namestring, ':');
652 if (!p)
653 continue; /* Not a debugging symbol. */
c906108c
SS
654
655 /* Main processing section for debugging symbols which
656 the initial read through the symbol tables needs to worry
657 about. If we reach this point, the symbol which we are
658 considering is definitely one we are interested in.
659 p must also contain the (valid) index into the namestring
660 which indicates the debugging type symbol. */
661
662 switch (p[1])
663 {
c5aa993b 664 case 'S':
c906108c
SS
665 {
666 unsigned long valu;
c5aa993b 667 enum language tmp_language;
c906108c
SS
668 char *str, *p;
669 int n;
c5aa993b 670
c906108c
SS
671 valu = CUR_SYMBOL_VALUE;
672 if (valu)
b8fbeb18 673 valu += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
674 past_first_source_file = 1;
675
c5aa993b
JM
676 p = strchr (namestring, ':');
677 if (p)
678 n = p - namestring;
679 else
680 n = strlen (namestring);
681 str = alloca (n + 1);
682 strncpy (str, namestring, n);
683 str[n] = '\0';
c906108c 684
c5aa993b 685 if (psymfile_depth == 0)
c906108c 686 {
c5aa993b 687 if (!pst)
d4f3574e 688 pst = os9k_start_psymtab (objfile,
c5aa993b
JM
689 str, valu,
690 cursymoffset,
691 symnum - 1,
692 objfile->global_psymbols.next,
693 objfile->static_psymbols.next);
c906108c 694 }
c5aa993b
JM
695 else
696 { /* this is a include file */
697 tmp_language = deduce_language_from_filename (str);
698 if (tmp_language != language_unknown
699 && (tmp_language != language_c
700 || psymtab_language != language_cplus))
701 psymtab_language = tmp_language;
c906108c 702
c5aa993b
JM
703/*
704 if (pst && STREQ (str, pst->filename))
705 continue;
706 {
707 register int i;
708 for (i = 0; i < includes_used; i++)
709 if (STREQ (str, psymtab_include_list[i]))
710 {
711 i = -1;
712 break;
713 }
714 if (i == -1)
715 continue;
716 }
717 */
718
719 psymtab_include_list[includes_used++] = str;
720 if (includes_used >= includes_allocated)
721 {
722 char **orig = psymtab_include_list;
723
724 psymtab_include_list = (char **)
725 alloca ((includes_allocated *= 2) * sizeof (char *));
726 memcpy ((PTR) psymtab_include_list, (PTR) orig,
727 includes_used * sizeof (char *));
728 }
c906108c 729
c5aa993b
JM
730 }
731 psymfile_depth++;
c906108c
SS
732 continue;
733 }
734
735 case 'v':
736 add_psymbol_to_list (namestring, p - namestring,
737 VAR_NAMESPACE, LOC_STATIC,
738 &objfile->static_psymbols,
739 0, CUR_SYMBOL_VALUE,
740 psymtab_language, objfile);
741 continue;
742 case 'V':
743 add_psymbol_to_list (namestring, p - namestring,
744 VAR_NAMESPACE, LOC_STATIC,
745 &objfile->global_psymbols,
746 0, CUR_SYMBOL_VALUE,
747 psymtab_language, objfile);
748 continue;
749
750 case 'T':
751 if (p != namestring) /* a name is there, not just :T... */
752 {
753 add_psymbol_to_list (namestring, p - namestring,
754 STRUCT_NAMESPACE, LOC_TYPEDEF,
755 &objfile->static_psymbols,
756 CUR_SYMBOL_VALUE, 0,
757 psymtab_language, objfile);
758 if (p[2] == 't')
759 {
760 /* Also a typedef with the same name. */
761 add_psymbol_to_list (namestring, p - namestring,
762 VAR_NAMESPACE, LOC_TYPEDEF,
763 &objfile->static_psymbols,
c5aa993b 764 CUR_SYMBOL_VALUE, 0, psymtab_language,
c906108c
SS
765 objfile);
766 p += 1;
767 }
768 /* The semantics of C++ state that "struct foo { ... }"
769 also defines a typedef for "foo". Unfortuantely, cfront
770 never makes the typedef when translating from C++ to C.
771 We make the typedef here so that "ptype foo" works as
772 expected for cfront translated code. */
773 else if (psymtab_language == language_cplus)
c5aa993b 774 {
c906108c
SS
775 /* Also a typedef with the same name. */
776 add_psymbol_to_list (namestring, p - namestring,
777 VAR_NAMESPACE, LOC_TYPEDEF,
778 &objfile->static_psymbols,
c5aa993b 779 CUR_SYMBOL_VALUE, 0, psymtab_language,
c906108c 780 objfile);
c5aa993b 781 }
c906108c
SS
782 }
783 goto check_enum;
784 case 't':
785 if (p != namestring) /* a name is there, not just :T... */
786 {
787 add_psymbol_to_list (namestring, p - namestring,
788 VAR_NAMESPACE, LOC_TYPEDEF,
789 &objfile->static_psymbols,
790 CUR_SYMBOL_VALUE, 0,
791 psymtab_language, objfile);
792 }
793 check_enum:
794 /* If this is an enumerated type, we need to
c5aa993b
JM
795 add all the enum constants to the partial symbol
796 table. This does not cover enums without names, e.g.
797 "enum {a, b} c;" in C, but fortunately those are
798 rare. There is no way for GDB to find those from the
799 enum type without spending too much time on it. Thus
800 to solve this problem, the compiler needs to put out the
801 enum in a nameless type. GCC2 does this. */
c906108c
SS
802
803 /* We are looking for something of the form
c5aa993b
JM
804 <name> ":" ("t" | "T") [<number> "="] "e" <size>
805 {<constant> ":" <value> ","} ";". */
c906108c
SS
806
807 /* Skip over the colon and the 't' or 'T'. */
808 p += 2;
809 /* This type may be given a number. Also, numbers can come
c5aa993b 810 in pairs like (0,26). Skip over it. */
c906108c
SS
811 while ((*p >= '0' && *p <= '9')
812 || *p == '(' || *p == ',' || *p == ')'
813 || *p == '=')
814 p++;
815
816 if (*p++ == 'e')
817 {
818 /* We have found an enumerated type. skip size */
c5aa993b
JM
819 while (*p >= '0' && *p <= '9')
820 p++;
c906108c
SS
821 /* According to comments in read_enum_type
822 a comma could end it instead of a semicolon.
823 I don't know where that happens.
824 Accept either. */
825 while (*p && *p != ';' && *p != ',')
826 {
827 char *q;
828
829 /* Check for and handle cretinous dbx symbol name
c5aa993b
JM
830 continuation!
831 if (*p == '\\')
832 p = next_symbol_text (objfile);
833 */
c906108c
SS
834
835 /* Point to the character after the name
c5aa993b 836 of the enum constant. */
c906108c
SS
837 for (q = p; *q && *q != ':'; q++)
838 ;
839 /* Note that the value doesn't matter for
c5aa993b 840 enum constants in psymtabs, just in symtabs. */
c906108c
SS
841 add_psymbol_to_list (p, q - p,
842 VAR_NAMESPACE, LOC_CONST,
843 &objfile->static_psymbols, 0,
844 0, psymtab_language, objfile);
845 /* Point past the name. */
846 p = q;
847 /* Skip over the value. */
848 while (*p && *p != ',')
849 p++;
850 /* Advance past the comma. */
851 if (*p)
852 p++;
853 }
854 }
855 continue;
856 case 'c':
857 /* Constant, e.g. from "const" in Pascal. */
858 add_psymbol_to_list (namestring, p - namestring,
859 VAR_NAMESPACE, LOC_CONST,
c5aa993b 860 &objfile->static_psymbols, CUR_SYMBOL_VALUE,
c906108c
SS
861 0, psymtab_language, objfile);
862 continue;
863
864 case 'f':
b8fbeb18 865 CUR_SYMBOL_VALUE += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
866 if (pst && pst->textlow == 0)
867 pst->textlow = CUR_SYMBOL_VALUE;
c906108c
SS
868
869 add_psymbol_to_list (namestring, p - namestring,
870 VAR_NAMESPACE, LOC_BLOCK,
c5aa993b 871 &objfile->static_psymbols, CUR_SYMBOL_VALUE,
c906108c
SS
872 0, psymtab_language, objfile);
873 continue;
874
875 case 'F':
b8fbeb18 876 CUR_SYMBOL_VALUE += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
877 if (pst && pst->textlow == 0)
878 pst->textlow = CUR_SYMBOL_VALUE;
c906108c
SS
879
880 add_psymbol_to_list (namestring, p - namestring,
881 VAR_NAMESPACE, LOC_BLOCK,
c5aa993b 882 &objfile->global_psymbols, CUR_SYMBOL_VALUE,
c906108c
SS
883 0, psymtab_language, objfile);
884 continue;
885
886 case 'p':
887 case 'l':
c5aa993b 888 case 's':
c906108c
SS
889 continue;
890
891 case ':':
892 /* It is a C++ nested symbol. We don't need to record it
c5aa993b
JM
893 (I don't think); if we try to look up foo::bar::baz,
894 then symbols for the symtab containing foo should get
895 read in, I think. */
c906108c 896 /* Someone says sun cc puts out symbols like
c5aa993b
JM
897 /foo/baz/maclib::/usr/local/bin/maclib,
898 which would get here with a symbol type of ':'. */
c906108c
SS
899 continue;
900
901 default:
902 /* Unexpected symbol descriptor. The second and subsequent stabs
c5aa993b
JM
903 of a continued stab can show up here. The question is
904 whether they ever can mimic a normal stab--it would be
905 nice if not, since we certainly don't want to spend the
906 time searching to the end of every string looking for
907 a backslash. */
c906108c
SS
908
909 complain (&unknown_symchar_complaint, p[1]);
910 continue;
911 }
912
913 case N_SYM_RBRAC:
b8fbeb18 914 CUR_SYMBOL_VALUE += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 915#ifdef HANDLE_RBRAC
c5aa993b 916 HANDLE_RBRAC (CUR_SYMBOL_VALUE);
c906108c
SS
917 continue;
918#endif
919 case N_SYM_LBRAC:
920 continue;
921
922 default:
923 /* If we haven't found it yet, ignore it. It's probably some
924 new type we don't know about yet. */
925 complain (&unknown_symtype_complaint,
926 local_hex_string ((unsigned long) bufp->n_type));
927 continue;
928 }
929 }
930
931 DBX_SYMCOUNT (objfile) = symnum;
932
933 /* If there's stuff to be cleaned up, clean it up. */
934 if (DBX_SYMCOUNT (objfile) > 0
935/*FIXME, does this have a bug at start address 0? */
936 && last_o_file_start
c5aa993b
JM
937 && objfile->ei.entry_point < bufp->n_value
938 && objfile->ei.entry_point >= last_o_file_start)
c906108c 939 {
c5aa993b
JM
940 objfile->ei.entry_file_lowpc = last_o_file_start;
941 objfile->ei.entry_file_highpc = bufp->n_value;
c906108c
SS
942 }
943
944 if (pst)
945 {
946 os9k_end_psymtab (pst, psymtab_include_list, includes_used,
c5aa993b
JM
947 symnum, end_of_text_addr,
948 dependency_list, dependencies_used);
c906108c
SS
949 }
950/*
c5aa993b
JM
951 do_cleanups (back_to);
952 */
c906108c
SS
953}
954
955/* Allocate and partially fill a partial symtab. It will be
956 completely filled at the end of the symbol list.
957
958 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
959 is the address relative to which its symbols are (incremental) or 0
960 (normal). */
961
962
963static struct partial_symtab *
fba45db2
KB
964os9k_start_psymtab (struct objfile *objfile, char *filename, CORE_ADDR textlow,
965 int ldsymoff, int ldsymcnt,
966 struct partial_symbol **global_syms,
967 struct partial_symbol **static_syms)
c906108c
SS
968{
969 struct partial_symtab *result =
d4f3574e 970 start_psymtab_common (objfile, objfile->section_offsets,
c5aa993b 971 filename, textlow, global_syms, static_syms);
c906108c
SS
972
973 result->read_symtab_private = (char *)
c5aa993b 974 obstack_alloc (&objfile->psymbol_obstack, sizeof (struct symloc));
c906108c 975
c5aa993b
JM
976 LDSYMOFF (result) = ldsymoff;
977 LDSYMCNT (result) = ldsymcnt;
c906108c
SS
978 result->read_symtab = os9k_psymtab_to_symtab;
979
980 /* Deduce the source language from the filename for this psymtab. */
981 psymtab_language = deduce_language_from_filename (filename);
982 return result;
983}
984
985/* Close off the current usage of PST.
986 Returns PST or NULL if the partial symtab was empty and thrown away.
987 FIXME: List variables and peculiarities of same. */
988
989static struct partial_symtab *
990os9k_end_psymtab (pst, include_list, num_includes, capping_symbol_cnt,
c5aa993b 991 capping_text, dependency_list, number_dependencies)
c906108c
SS
992 struct partial_symtab *pst;
993 char **include_list;
994 int num_includes;
995 int capping_symbol_cnt;
996 CORE_ADDR capping_text;
997 struct partial_symtab **dependency_list;
998 int number_dependencies;
999 /* struct partial_symbol *capping_global, *capping_static; */
1000{
1001 int i;
1002 struct partial_symtab *p1;
c5aa993b 1003 struct objfile *objfile = pst->objfile;
c906108c
SS
1004
1005 if (capping_symbol_cnt != -1)
c5aa993b 1006 LDSYMCNT (pst) = capping_symbol_cnt - LDSYMCNT (pst);
c906108c
SS
1007
1008 /* Under Solaris, the N_SO symbols always have a value of 0,
1009 instead of the usual address of the .o file. Therefore,
1010 we have to do some tricks to fill in texthigh and textlow.
1011 The first trick is in partial-stab.h: if we see a static
1012 or global function, and the textlow for the current pst
1013 is still 0, then we use that function's address for
1014 the textlow of the pst.
1015
1016 Now, to fill in texthigh, we remember the last function seen
1017 in the .o file (also in partial-stab.h). Also, there's a hack in
1018 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
1019 to here via the misc_info field. Therefore, we can fill in
1020 a reliable texthigh by taking the address plus size of the
1021 last function in the file.
1022
1023 Unfortunately, that does not cover the case where the last function
1024 in the file is static. See the paragraph below for more comments
1025 on this situation.
1026
1027 Finally, if we have a valid textlow for the current file, we run
1028 down the partial_symtab_list filling in previous texthighs that
1029 are still unknown. */
1030
c5aa993b
JM
1031 if (pst->texthigh == 0 && last_function_name)
1032 {
1033 char *p;
1034 int n;
1035 struct minimal_symbol *minsym;
1036
1037 p = strchr (last_function_name, ':');
1038 if (p == NULL)
1039 p = last_function_name;
1040 n = p - last_function_name;
1041 p = alloca (n + 1);
1042 strncpy (p, last_function_name, n);
1043 p[n] = 0;
1044
1045 minsym = lookup_minimal_symbol (p, NULL, objfile);
1046
1047 if (minsym)
1048 {
1049 pst->texthigh = SYMBOL_VALUE_ADDRESS (minsym) + (long) MSYMBOL_INFO (minsym);
1050 }
1051 else
1052 {
1053 /* This file ends with a static function, and it's
1054 difficult to imagine how hard it would be to track down
1055 the elf symbol. Luckily, most of the time no one will notice,
1056 since the next file will likely be compiled with -g, so
1057 the code below will copy the first fuction's start address
1058 back to our texthigh variable. (Also, if this file is the
1059 last one in a dynamically linked program, texthigh already
1060 has the right value.) If the next file isn't compiled
1061 with -g, then the last function in this file winds up owning
1062 all of the text space up to the next -g file, or the end (minus
1063 shared libraries). This only matters for single stepping,
1064 and even then it will still work, except that it will single
1065 step through all of the covered functions, instead of setting
1066 breakpoints around them as it usualy does. This makes it
1067 pretty slow, but at least it doesn't fail.
1068
1069 We can fix this with a fairly big change to bfd, but we need
1070 to coordinate better with Cygnus if we want to do that. FIXME. */
1071 }
1072 last_function_name = NULL;
c906108c 1073 }
c906108c
SS
1074
1075 /* this test will be true if the last .o file is only data */
1076 if (pst->textlow == 0)
1077 pst->textlow = pst->texthigh;
1078
1079 /* If we know our own starting text address, then walk through all other
1080 psymtabs for this objfile, and if any didn't know their ending text
1081 address, set it to our starting address. Take care to not set our
1082 own ending address to our starting address, nor to set addresses on
1083 `dependency' files that have both textlow and texthigh zero. */
c5aa993b
JM
1084 if (pst->textlow)
1085 {
1086 ALL_OBJFILE_PSYMTABS (objfile, p1)
1087 {
1088 if (p1->texthigh == 0 && p1->textlow != 0 && p1 != pst)
1089 {
1090 p1->texthigh = pst->textlow;
1091 /* if this file has only data, then make textlow match texthigh */
1092 if (p1->textlow == 0)
1093 p1->textlow = p1->texthigh;
1094 }
c906108c
SS
1095 }
1096 }
c906108c
SS
1097
1098 /* End of kludge for patching Solaris textlow and texthigh. */
1099
1100 pst->n_global_syms =
1101 objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
1102 pst->n_static_syms =
1103 objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
1104
1105 pst->number_of_dependencies = number_dependencies;
1106 if (number_dependencies)
1107 {
1108 pst->dependencies = (struct partial_symtab **)
1109 obstack_alloc (&objfile->psymbol_obstack,
c5aa993b 1110 number_dependencies * sizeof (struct partial_symtab *));
c906108c 1111 memcpy (pst->dependencies, dependency_list,
c5aa993b 1112 number_dependencies * sizeof (struct partial_symtab *));
c906108c
SS
1113 }
1114 else
1115 pst->dependencies = 0;
1116
1117 for (i = 0; i < num_includes; i++)
1118 {
1119 struct partial_symtab *subpst =
c5aa993b 1120 allocate_psymtab (include_list[i], objfile);
c906108c
SS
1121
1122 subpst->section_offsets = pst->section_offsets;
1123 subpst->read_symtab_private =
c5aa993b
JM
1124 (char *) obstack_alloc (&objfile->psymbol_obstack,
1125 sizeof (struct symloc));
1126 LDSYMOFF (subpst) =
1127 LDSYMCNT (subpst) =
1128 subpst->textlow =
1129 subpst->texthigh = 0;
c906108c
SS
1130
1131 /* We could save slight bits of space by only making one of these,
c5aa993b 1132 shared by the entire set of include files. FIXME-someday. */
c906108c
SS
1133 subpst->dependencies = (struct partial_symtab **)
1134 obstack_alloc (&objfile->psymbol_obstack,
1135 sizeof (struct partial_symtab *));
1136 subpst->dependencies[0] = pst;
1137 subpst->number_of_dependencies = 1;
1138
1139 subpst->globals_offset =
1140 subpst->n_global_syms =
c5aa993b
JM
1141 subpst->statics_offset =
1142 subpst->n_static_syms = 0;
c906108c
SS
1143
1144 subpst->readin = 0;
1145 subpst->symtab = 0;
1146 subpst->read_symtab = pst->read_symtab;
1147 }
1148
1149 sort_pst_symbols (pst);
1150
1151 /* If there is already a psymtab or symtab for a file of this name,
1152 remove it.
1153 (If there is a symtab, more drastic things also happen.)
1154 This happens in VxWorks. */
1155 free_named_symtabs (pst->filename);
1156
1157 if (num_includes == 0
c5aa993b
JM
1158 && number_dependencies == 0
1159 && pst->n_global_syms == 0
1160 && pst->n_static_syms == 0)
1161 {
1162 /* Throw away this psymtab, it's empty. We can't deallocate it, since
1163 it is on the obstack, but we can forget to chain it on the list. */
1164 /* Indicate that psymtab was thrown away. */
c906108c 1165
c5aa993b 1166 discard_psymtab (pst);
c906108c 1167
c5aa993b
JM
1168 pst = (struct partial_symtab *) NULL;
1169 }
c906108c
SS
1170 return pst;
1171}
1172\f
1173static void
fba45db2 1174os9k_psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c
SS
1175{
1176 struct cleanup *old_chain;
1177 int i;
c5aa993b 1178
c906108c
SS
1179 if (!pst)
1180 return;
1181
1182 if (pst->readin)
1183 {
1184 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
c5aa993b 1185 pst->filename);
c906108c
SS
1186 return;
1187 }
1188
1189 /* Read in all partial symtabs on which this one is dependent */
1190 for (i = 0; i < pst->number_of_dependencies; i++)
1191 if (!pst->dependencies[i]->readin)
1192 {
1193 /* Inform about additional files that need to be read in. */
1194 if (info_verbose)
1195 {
1196 fputs_filtered (" ", gdb_stdout);
1197 wrap_here ("");
1198 fputs_filtered ("and ", gdb_stdout);
1199 wrap_here ("");
1200 printf_filtered ("%s...", pst->dependencies[i]->filename);
c5aa993b 1201 wrap_here (""); /* Flush output */
c906108c
SS
1202 gdb_flush (gdb_stdout);
1203 }
1204 os9k_psymtab_to_symtab_1 (pst->dependencies[i]);
1205 }
1206
c5aa993b 1207 if (LDSYMCNT (pst)) /* Otherwise it's a dummy */
c906108c
SS
1208 {
1209 /* Init stuff necessary for reading in symbols */
1210 stabsread_init ();
1211 buildsym_init ();
a0b3c4fd 1212 old_chain = make_cleanup (really_free_pendings, 0);
c906108c
SS
1213
1214 /* Read in this file's symbols */
1215 os9k_read_ofile_symtab (pst);
1216 sort_symtab_syms (pst->symtab);
1217 do_cleanups (old_chain);
1218 }
1219
1220 pst->readin = 1;
1221}
1222
1223/* Read in all of the symbols for a given psymtab for real.
1224 Be verbose about it if the user wants that. */
1225
1226static void
fba45db2 1227os9k_psymtab_to_symtab (struct partial_symtab *pst)
c906108c
SS
1228{
1229 bfd *sym_bfd;
1230
1231 if (!pst)
1232 return;
1233
1234 if (pst->readin)
1235 {
1236 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
c5aa993b 1237 pst->filename);
c906108c
SS
1238 return;
1239 }
1240
c5aa993b 1241 if (LDSYMCNT (pst) || pst->number_of_dependencies)
c906108c
SS
1242 {
1243 /* Print the message now, before reading the string table,
c5aa993b 1244 to avoid disconcerting pauses. */
c906108c
SS
1245 if (info_verbose)
1246 {
1247 printf_filtered ("Reading in symbols for %s...", pst->filename);
1248 gdb_flush (gdb_stdout);
1249 }
1250
1251 sym_bfd = pst->objfile->obfd;
1252 os9k_psymtab_to_symtab_1 (pst);
1253
1254 /* Match with global symbols. This only needs to be done once,
1255 after all of the symtabs and dependencies have been read in. */
1256 scan_file_globals (pst->objfile);
1257
1258 /* Finish up the debug error message. */
1259 if (info_verbose)
1260 printf_filtered ("done.\n");
1261 }
1262}
1263
1264/* Read in a defined section of a specific object file's symbols. */
1265static void
fba45db2 1266os9k_read_ofile_symtab (struct partial_symtab *pst)
c906108c
SS
1267{
1268 register struct internal_symstruct *bufp;
1269 unsigned char type;
1270 unsigned max_symnum;
1271 register bfd *abfd;
1272 struct objfile *objfile;
1273 int sym_offset; /* Offset to start of symbols to read */
1274 CORE_ADDR text_offset; /* Start of text segment for symbols */
1275 int text_size; /* Size of text segment for symbols */
c906108c
SS
1276 FILE *dbg_file;
1277
1278 objfile = pst->objfile;
c5aa993b
JM
1279 sym_offset = LDSYMOFF (pst);
1280 max_symnum = LDSYMCNT (pst);
c906108c
SS
1281 text_offset = pst->textlow;
1282 text_size = pst->texthigh - pst->textlow;
c906108c
SS
1283
1284 current_objfile = objfile;
1285 subfile_stack = NULL;
1286 last_source_file = NULL;
1287
1288 abfd = objfile->obfd;
1289 dbg_file = objfile->auxf2;
1290
1291#if 0
1292 /* It is necessary to actually read one symbol *before* the start
1293 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1294 occurs before the N_SO symbol.
1295 Detecting this in read_dbx_symtab
1296 would slow down initial readin, so we look for it here instead. */
c5aa993b 1297 if (!processing_acc_compilation && sym_offset >= (int) symbol_size)
c906108c
SS
1298 {
1299 fseek (objefile->auxf2, sym_offset, SEEK_CUR);
c5aa993b 1300 fill_sym (objfile->auxf2, abfd);
c906108c
SS
1301 bufp = symbuf;
1302
1303 processing_gcc_compilation = 0;
1304 if (bufp->n_type == N_TEXT)
1305 {
1306 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1307 processing_gcc_compilation = 1;
1308 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1309 processing_gcc_compilation = 2;
1310 }
1311
1312 /* Try to select a C++ demangling based on the compilation unit
c5aa993b 1313 producer. */
c906108c
SS
1314
1315 if (processing_gcc_compilation)
1316 {
1317 if (AUTO_DEMANGLING)
1318 {
1319 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1320 }
1321 }
1322 }
1323 else
1324 {
1325 /* The N_SO starting this symtab is the first symbol, so we
c5aa993b
JM
1326 better not check the symbol before it. I'm not this can
1327 happen, but it doesn't hurt to check for it. */
c906108c
SS
1328 bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
1329 processing_gcc_compilation = 0;
1330 }
1331#endif /* 0 */
1332
c5aa993b 1333 fseek (dbg_file, (long) sym_offset, 0);
c906108c 1334/*
c5aa993b
JM
1335 if (bufp->n_type != (unsigned char)N_SYM_SYM)
1336 error("First symbol in segment of executable not a source symbol");
1337 */
c906108c
SS
1338
1339 for (symnum = 0; symnum < max_symnum; symnum++)
1340 {
1341 QUIT; /* Allow this to be interruptable */
c5aa993b 1342 fill_sym (dbg_file, abfd);
c906108c
SS
1343 bufp = symbuf;
1344 type = bufp->n_type;
1345
c5aa993b 1346 os9k_process_one_symbol ((int) type, (int) bufp->n_desc,
d4f3574e 1347 (CORE_ADDR) bufp->n_value, bufp->n_strx, pst->section_offsets, objfile);
c906108c
SS
1348
1349 /* We skip checking for a new .o or -l file; that should never
1350 happen in this routine. */
1351#if 0
c5aa993b
JM
1352 else
1353 if (type == N_TEXT)
c906108c
SS
1354 {
1355 /* I don't think this code will ever be executed, because
1356 the GCC_COMPILED_FLAG_SYMBOL usually is right before
1357 the N_SO symbol which starts this source file.
1358 However, there is no reason not to accept
1359 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
1360
1361 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1362 processing_gcc_compilation = 1;
1363 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1364 processing_gcc_compilation = 2;
1365
1366 if (AUTO_DEMANGLING)
1367 {
1368 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1369 }
1370 }
c5aa993b
JM
1371 else if (type & N_EXT || type == (unsigned char) N_TEXT
1372 || type == (unsigned char) N_NBTEXT
1373 )
1374 {
c906108c
SS
1375 /* Global symbol: see if we came across a dbx defintion for
1376 a corresponding symbol. If so, store the value. Remove
1377 syms from the chain when their values are stored, but
1378 search the whole chain, as there may be several syms from
1379 different files with the same name. */
1380 /* This is probably not true. Since the files will be read
1381 in one at a time, each reference to a global symbol will
1382 be satisfied in each file as it appears. So we skip this
1383 section. */
1384 ;
c5aa993b 1385 }
c906108c
SS
1386#endif /* 0 */
1387 }
1388
1389 current_objfile = NULL;
1390
1391 /* In a Solaris elf file, this variable, which comes from the
1392 value of the N_SO symbol, will still be 0. Luckily, text_offset,
1393 which comes from pst->textlow is correct. */
1394 if (last_source_start_addr == 0)
1395 last_source_start_addr = text_offset;
b8fbeb18 1396 pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT (objfile));
c906108c
SS
1397 end_stabs ();
1398}
c906108c 1399\f
c5aa993b 1400
c906108c
SS
1401/* This handles a single symbol from the symbol-file, building symbols
1402 into a GDB symtab. It takes these arguments and an implicit argument.
1403
1404 TYPE is the type field of the ".stab" symbol entry.
1405 DESC is the desc field of the ".stab" entry.
1406 VALU is the value field of the ".stab" entry.
1407 NAME is the symbol name, in our address space.
1408 SECTION_OFFSETS is a set of amounts by which the sections of this object
c5aa993b
JM
1409 file were relocated when it was loaded into memory.
1410 All symbols that refer
1411 to memory locations need to be offset by these amounts.
c906108c 1412 OBJFILE is the object file from which we are reading symbols.
c5aa993b 1413 It is used in end_symtab. */
c906108c
SS
1414
1415static void
fba45db2
KB
1416os9k_process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
1417 struct section_offsets *section_offsets,
1418 struct objfile *objfile)
c906108c
SS
1419{
1420 register struct context_stack *new;
1421 /* The stab type used for the definition of the last function.
1422 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
1423 static int function_stab_type = 0;
1424
1425#if 0
1426 /* Something is wrong if we see real data before
1427 seeing a source file name. */
c5aa993b 1428 if (last_source_file == NULL && type != (unsigned char) N_SO)
c906108c
SS
1429 {
1430 /* Ignore any symbols which appear before an N_SO symbol.
c5aa993b
JM
1431 Currently no one puts symbols there, but we should deal
1432 gracefully with the case. A complain()t might be in order,
1433 but this should not be an error (). */
c906108c
SS
1434 return;
1435 }
1436#endif /* 0 */
1437
1438 switch (type)
1439 {
1440 case N_SYM_LBRAC:
1441 /* On most machines, the block addresses are relative to the
c5aa993b 1442 N_SO, the linker did not relocate them (sigh). */
b8fbeb18 1443 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1444 new = push_context (desc, valu);
1445 break;
1446
1447 case N_SYM_RBRAC:
b8fbeb18 1448 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b 1449 new = pop_context ();
c906108c
SS
1450
1451#if !defined (OS9K_VARIABLES_INSIDE_BLOCK)
1452#define OS9K_VARIABLES_INSIDE_BLOCK(desc, gcc_p) 1
1453#endif
1454
c5aa993b 1455 if (!OS9K_VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
c906108c
SS
1456 local_symbols = new->locals;
1457
1458 if (context_stack_depth > 1)
1459 {
1460 /* This is not the outermost LBRAC...RBRAC pair in the function,
1461 its local symbols preceded it, and are the ones just recovered
1462 from the context stack. Define the block for them (but don't
1463 bother if the block contains no symbols. Should we complain
1464 on blocks without symbols? I can't think of any useful purpose
1465 for them). */
1466 if (local_symbols != NULL)
1467 {
1468 /* Muzzle a compiler bug that makes end < start. (which
c5aa993b 1469 compilers? Is this ever harmful?). */
c906108c
SS
1470 if (new->start_addr > valu)
1471 {
1472 complain (&lbrac_rbrac_complaint);
1473 new->start_addr = valu;
1474 }
1475 /* Make a block for the local symbols within. */
1476 finish_block (0, &local_symbols, new->old_blocks,
1477 new->start_addr, valu, objfile);
1478 }
1479 }
1480 else
1481 {
1482 if (context_stack_depth == 0)
1483 {
1484 within_function = 0;
1485 /* Make a block for the local symbols within. */
1486 finish_block (new->name, &local_symbols, new->old_blocks,
c5aa993b 1487 new->start_addr, valu, objfile);
c906108c
SS
1488 }
1489 else
1490 {
1491 /* attach local_symbols to the end of new->locals */
c5aa993b
JM
1492 if (!new->locals)
1493 new->locals = local_symbols;
1494 else
1495 {
1496 struct pending *p;
c906108c 1497
c5aa993b
JM
1498 p = new->locals;
1499 while (p->next)
1500 p = p->next;
1501 p->next = local_symbols;
1502 }
c906108c
SS
1503 }
1504 }
1505
c5aa993b 1506 if (OS9K_VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
c906108c
SS
1507 /* Now pop locals of block just finished. */
1508 local_symbols = new->locals;
1509 break;
1510
1511
1512 case N_SYM_SLINE:
1513 /* This type of "symbol" really just records
c5aa993b
JM
1514 one line-number -- core-address correspondence.
1515 Enter it in the line list for this symbol table. */
c906108c 1516 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
b8fbeb18 1517 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c 1518 /* FIXME: loses if sizeof (char *) > sizeof (int) */
c5aa993b 1519 record_line (current_subfile, (int) name, valu);
c906108c
SS
1520 break;
1521
c5aa993b
JM
1522 /* The following symbol types need to have the appropriate offset added
1523 to their value; then we process symbol definitions in the name. */
c906108c
SS
1524 case N_SYM_SYM:
1525
1526 if (name)
1527 {
1528 char deftype;
1529 char *dirn, *n;
1530 char *p = strchr (name, ':');
1531 if (p == NULL)
1532 deftype = '\0';
1533 else
1534 deftype = p[1];
1535
1536
1537 switch (deftype)
1538 {
1539 case 'S':
b8fbeb18 1540 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1541 n = strrchr (name, '/');
1542 if (n != NULL)
1543 {
1544 *n = '\0';
1545 n++;
1546 dirn = name;
1547 }
1548 else
1549 {
1550 n = name;
1551 dirn = NULL;
1552 }
c906108c 1553 *p = '\0';
c5aa993b
JM
1554 if (symfile_depth++ == 0)
1555 {
1556 if (last_source_file)
1557 {
b8fbeb18 1558 end_symtab (valu, objfile, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1559 end_stabs ();
1560 }
1561 start_stabs ();
1562 os9k_stabs = 1;
1563 start_symtab (n, dirn, valu);
1564 record_debugformat ("OS9");
1565 }
1566 else
1567 {
1568 push_subfile ();
1569 start_subfile (n, dirn != NULL ? dirn : current_subfile->dirname);
c906108c 1570 }
c906108c
SS
1571 break;
1572
1573 case 'f':
1574 case 'F':
b8fbeb18 1575 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1576 function_stab_type = type;
1577
1578 within_function = 1;
1579 new = push_context (0, valu);
1580 new->name = define_symbol (valu, name, desc, type, objfile);
1581 break;
1582
1583 case 'V':
1584 case 'v':
b8fbeb18 1585 valu += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
c906108c
SS
1586 define_symbol (valu, name, desc, type, objfile);
1587 break;
1588
1589 default:
1590 define_symbol (valu, name, desc, type, objfile);
1591 break;
1592 }
1593 }
1594 break;
1595
1596 case N_SYM_SE:
c5aa993b
JM
1597 if (--symfile_depth != 0)
1598 start_subfile (pop_subfile (), current_subfile->dirname);
c906108c
SS
1599 break;
1600
1601 default:
1602 complain (&unknown_symtype_complaint,
c5aa993b 1603 local_hex_string ((unsigned long) type));
c906108c
SS
1604 /* FALLTHROUGH */
1605 break;
1606
1607 case N_SYM_CMPLR:
1608 break;
1609 }
1610 previous_stab_code = type;
1611}
1612
1613static struct sym_fns os9k_sym_fns =
1614{
1615 bfd_target_os9k_flavour,
c5aa993b
JM
1616 os9k_new_init, /* sym_new_init: init anything gbl to entire symtab */
1617 os9k_symfile_init, /* sym_init: read initial info, setup for sym_read() */
1618 os9k_symfile_read, /* sym_read: read a symbol file into symtab */
1619 os9k_symfile_finish, /* sym_finish: finished with file, cleanup */
96baa820 1620 default_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */
c5aa993b 1621 NULL /* next: pointer to next struct sym_fns */
c906108c
SS
1622};
1623
1624void
fba45db2 1625_initialize_os9kread (void)
c906108c 1626{
c5aa993b 1627 add_symtab_fns (&os9k_sym_fns);
c906108c 1628}
This page took 0.250916 seconds and 4 git commands to generate.