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