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