* gdbserver/{remote-gutils.c remote-server.c Makefile.in
[deliverable/binutils-gdb.git] / gdb / coffread.c
CommitLineData
bd5635a1 1/* Read coff symbol tables and convert to internal format, for GDB.
d8ce1326 2 Contributed by David D. Johnson, Brown University (ddj@cs.brown.edu).
f2c365f5
JK
3 Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993
4 Free Software Foundation, Inc.
bd5635a1
RP
5
6This file is part of GDB.
7
99a7de40 8This program is free software; you can redistribute it and/or modify
bd5635a1 9it under the terms of the GNU General Public License as published by
99a7de40
JG
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
bd5635a1 12
99a7de40 13This program is distributed in the hope that it will be useful,
bd5635a1
RP
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
99a7de40
JG
19along with this program; if not, write to the Free Software
20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
f2c365f5 21
bd5635a1 22#include "defs.h"
bd5635a1 23#include "symtab.h"
318bf84f 24#include "gdbtypes.h"
bd5635a1
RP
25#include "breakpoint.h"
26#include "bfd.h"
bd5635a1 27#include "symfile.h"
3624c875 28#include "objfiles.h"
318bf84f 29#include "buildsym.h"
51b80b00 30#include "complaints.h"
bd5635a1 31#include <obstack.h>
318bf84f 32
bd5635a1
RP
33#include <string.h>
34
de9bef49 35#include "libbfd.h" /* FIXME secret internal data from BFD */
f5f0679a 36#include "coff/internal.h" /* Internal format of COFF symbols in BFD */
63989338
JG
37#include "libcoff.h" /* FIXME secret internal data from BFD */
38
de9bef49
JG
39/* Translate an external name string into a user-visible name. */
40#define EXTERNAL_NAME(string, abfd) \
41 (string[0] == bfd_get_symbol_leading_char(abfd)? string+1: string)
42
8714ff35
JK
43/* To be an sdb debug type, type must have at least a basic or primary
44 derived type. Using this rather than checking against T_NULL is
ab8f22a9
JK
45 said to prevent core dumps if we try to operate on Michael Bloom
46 dbx-in-coff file. */
8714ff35
JK
47
48#define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
49
d8ce1326
JG
50/*
51 * Convert from an sdb register number to an internal gdb register number.
52 * This should be defined in tm.h, if REGISTER_NAMES is not set up
53 * to map one to one onto the sdb register numbers.
54 */
55#ifndef SDB_REG_TO_REGNUM
56# define SDB_REG_TO_REGNUM(value) (value)
57#endif
58
bd5635a1
RP
59/* Core address of start and end of text of current source file.
60 This comes from a ".text" symbol where x_nlinno > 0. */
61
62static CORE_ADDR cur_src_start_addr;
63static CORE_ADDR cur_src_end_addr;
64
65/* Core address of the end of the first object file. */
66static CORE_ADDR first_object_file_end;
67
bd5635a1
RP
68/* The addresses of the symbol table stream and number of symbols
69 of the object file we are reading (as copied into core). */
70
71static FILE *nlist_stream_global;
72static int nlist_nsyms_global;
73
bd5635a1
RP
74/* Vector of line number information. */
75
76static struct linetable *line_vector;
77
78/* Index of next entry to go in line_vector_index. */
79
80static int line_vector_index;
81
82/* Last line number recorded in the line vector. */
83
84static int prev_line_number;
85
86/* Number of elements allocated for line_vector currently. */
87
88static int line_vector_length;
89
d8ce1326
JG
90/* Pointers to scratch storage, used for reading raw symbols and auxents. */
91
92static char *temp_sym;
93static char *temp_aux;
94
95/* Local variables that hold the shift and mask values for the
96 COFF file that we are currently reading. These come back to us
97 from BFD, and are referenced by their macro names, as well as
98 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
99 macros from ../internalcoff.h . */
100
101static unsigned local_n_btmask;
102static unsigned local_n_btshft;
103static unsigned local_n_tmask;
104static unsigned local_n_tshift;
105
106#define N_BTMASK local_n_btmask
107#define N_BTSHFT local_n_btshft
108#define N_TMASK local_n_tmask
109#define N_TSHIFT local_n_tshift
110
111/* Local variables that hold the sizes in the file of various COFF structures.
112 (We only need to know this to read them from the file -- BFD will then
113 translate the data in them, into `internal_xxx' structs in the right
114 byte order, alignment, etc.) */
115
116static unsigned local_linesz;
117static unsigned local_symesz;
118static unsigned local_auxesz;
119
120
bd5635a1
RP
121/* Chain of typedefs of pointers to empty struct/union types.
122 They are chained thru the SYMBOL_VALUE_CHAIN. */
123
bd5635a1
RP
124static struct symbol *opaque_type_chain[HASHSIZE];
125
126/* Record the symbols defined for each context in a list.
127 We don't create a struct block for the context until we
128 know how long to make it. */
129
318bf84f 130struct coff_pending
bd5635a1 131{
318bf84f 132 struct coff_pending *next;
bd5635a1
RP
133 struct symbol *symbol;
134};
135
136/* Here are the three lists that symbols are put on. */
137
318bf84f 138struct coff_pending *coff_file_symbols; /* static at top level, and types */
bd5635a1 139
85f0a848 140struct coff_pending *coff_global_symbols; /* global functions and variables */
bd5635a1 141
85f0a848 142struct coff_pending *coff_local_symbols; /* everything local to lexical context */
bd5635a1
RP
143
144/* List of unclosed lexical contexts
145 (that will become blocks, eventually). */
146
318bf84f 147struct coff_context_stack
bd5635a1 148{
318bf84f
FF
149 struct coff_context_stack *next;
150 struct coff_pending *locals;
bd5635a1
RP
151 struct pending_block *old_blocks;
152 struct symbol *name;
153 CORE_ADDR start_addr;
154 int depth;
155};
156
318bf84f 157struct coff_context_stack *coff_context_stack;
bd5635a1
RP
158
159/* Nonzero if within a function (so symbols should be local,
160 if nothing says specifically). */
161
162int within_function;
163
d8ce1326
JG
164#if 0
165/* The type of the function we are currently reading in. This is
166 used by define_symbol to record the type of arguments to a function. */
167
168struct type *in_function_type;
169#endif
170
bd5635a1
RP
171struct pending_block *pending_blocks;
172
bd5635a1
RP
173/* Complaints about various problems in the file being read */
174
175struct complaint ef_complaint =
176 {"Unmatched .ef symbol(s) ignored starting at symnum %d", 0, 0};
177
7e258d18
PB
178struct complaint bf_no_aux_complaint =
179 {"`.bf' symbol %d has no aux entry", 0, 0};
180
181struct complaint ef_no_aux_complaint =
182 {"`.ef' symbol %d has no aux entry", 0, 0};
e64fbb3a 183
63989338
JG
184struct complaint lineno_complaint =
185 {"Line number pointer %d lower than start of line numbers", 0, 0};
186
7e258d18
PB
187struct complaint unexpected_type_complaint =
188 {"Unexpected type for symbol %s", 0, 0};
189
190struct complaint bad_sclass_complaint =
191 {"Bad n_sclass for symbol %s", 0, 0};
318bf84f 192
f70be3e4
JG
193struct complaint misordered_blocks_complaint =
194 {"Blocks out of order at address %x", 0, 0};
195
196struct complaint tagndx_bad_complaint =
197 {"Symbol table entry for %s has bad tagndx value", 0, 0};
198
de9bef49
JG
199struct complaint eb_complaint =
200 {"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
201
318bf84f
FF
202/* Simplified internal version of coff symbol table information */
203
204struct coff_symbol {
205 char *c_name;
206 int c_symnum; /* symbol number of this entry */
207 int c_naux; /* 0 if syment only, 1 if syment + auxent, etc */
208 long c_value;
209 int c_sclass;
210 int c_secnum;
211 unsigned int c_type;
212};
213
214static struct type *
215coff_read_struct_type PARAMS ((int, int, int));
216
217static struct type *
218decode_base_type PARAMS ((struct coff_symbol *, unsigned int,
219 union internal_auxent *));
220
221static struct type *
222decode_type PARAMS ((struct coff_symbol *, unsigned int,
223 union internal_auxent *));
224
225static struct type *
226decode_function_type PARAMS ((struct coff_symbol *, unsigned int,
227 union internal_auxent *));
228
229static struct type *
230coff_read_enum_type PARAMS ((int, int, int));
231
232static struct blockvector *
233make_blockvector PARAMS ((struct objfile *));
234
235static struct symbol *
236process_coff_symbol PARAMS ((struct coff_symbol *, union internal_auxent *,
237 struct objfile *));
238
f70be3e4
JG
239static void
240patch_opaque_types PARAMS ((struct symtab *));
318bf84f
FF
241
242static void
243patch_type PARAMS ((struct type *, struct type *));
244
245static void
246enter_linenos PARAMS ((long, int, int));
247
248static int
249init_lineno PARAMS ((int, long, int));
250
251static char *
252getfilename PARAMS ((union internal_auxent *));
253
254static char *
255getsymname PARAMS ((struct internal_syment *));
256
257static void
258free_stringtab PARAMS ((void));
259
260static int
261init_stringtab PARAMS ((int, long));
262
263static void
264read_one_sym PARAMS ((struct coff_symbol *, struct internal_syment *,
265 union internal_auxent *));
266
267static void
f70be3e4 268read_coff_symtab PARAMS ((long, int, struct objfile *));
318bf84f
FF
269
270static void
80d68b1d 271find_linenos PARAMS ((bfd *, sec_ptr, PTR));
318bf84f
FF
272
273static void
80d68b1d 274coff_symfile_init PARAMS ((struct objfile *));
318bf84f
FF
275
276static void
80d68b1d 277coff_new_init PARAMS ((struct objfile *));
318bf84f
FF
278
279static void
85f0a848 280coff_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
80d68b1d
FF
281
282static void
283coff_symfile_finish PARAMS ((struct objfile *));
318bf84f
FF
284
285static void
f70be3e4 286record_minimal_symbol PARAMS ((char *, CORE_ADDR, enum minimal_symbol_type));
318bf84f
FF
287
288static void
289coff_end_symtab PARAMS ((struct objfile *));
290
291static void
292complete_symtab PARAMS ((char *, CORE_ADDR, unsigned int));
293
294static void
295coff_start_symtab PARAMS ((void));
296
297static void
298coff_record_line PARAMS ((int, CORE_ADDR));
299
300static void
301coff_finish_block PARAMS ((struct symbol *, struct coff_pending **,
302 struct pending_block *, CORE_ADDR, CORE_ADDR,
303 struct objfile *));
304
305static void
306coff_add_symbol_to_list PARAMS ((struct symbol *, struct coff_pending **));
307
308static struct type *
309coff_alloc_type PARAMS ((int));
310
311static struct type **
312coff_lookup_type PARAMS ((int));
313
bd5635a1
RP
314\f
315/* Look up a coff type-number index. Return the address of the slot
316 where the type for that index is stored.
317 The type-number is in INDEX.
318
319 This can be used for finding the type associated with that index
320 or for associating a new type with the index. */
321
322static struct type **
323coff_lookup_type (index)
324 register int index;
325{
326 if (index >= type_vector_length)
327 {
328 int old_vector_length = type_vector_length;
329
330 type_vector_length *= 2;
f2c365f5 331 if (index /* is still */ >= type_vector_length) {
bd5635a1
RP
332 type_vector_length = index * 2;
333 }
159a075e 334 type_vector = (struct type **)
318bf84f
FF
335 xrealloc ((char *) type_vector,
336 type_vector_length * sizeof (struct type *));
4ed3a9ea 337 memset (&type_vector[old_vector_length], 0,
bd5635a1
RP
338 (type_vector_length - old_vector_length) * sizeof(struct type *));
339 }
159a075e 340 return &type_vector[index];
bd5635a1
RP
341}
342
343/* Make sure there is a type allocated for type number index
344 and return the type object.
345 This can create an empty (zeroed) type object. */
346
347static struct type *
348coff_alloc_type (index)
349 int index;
350{
351 register struct type **type_addr = coff_lookup_type (index);
352 register struct type *type = *type_addr;
353
354 /* If we are referring to a type not known at all yet,
355 allocate an empty type for it.
356 We will fill it in later if we find out how. */
318bf84f 357 if (type == NULL)
bd5635a1 358 {
318bf84f 359 type = alloc_type (current_objfile);
bd5635a1
RP
360 *type_addr = type;
361 }
362 return type;
363}
364\f
365/* maintain the lists of symbols and blocks */
366
367/* Add a symbol to one of the lists of symbols. */
368static void
318bf84f 369coff_add_symbol_to_list (symbol, listhead)
bd5635a1 370 struct symbol *symbol;
318bf84f 371 struct coff_pending **listhead;
bd5635a1 372{
318bf84f
FF
373 register struct coff_pending *link
374 = (struct coff_pending *) xmalloc (sizeof (struct coff_pending));
bd5635a1
RP
375
376 link->next = *listhead;
377 link->symbol = symbol;
378 *listhead = link;
379}
380
381/* Take one of the lists of symbols and make a block from it.
382 Put the block on the list of pending blocks. */
383
384static void
318bf84f 385coff_finish_block (symbol, listhead, old_blocks, start, end, objfile)
bd5635a1 386 struct symbol *symbol;
318bf84f 387 struct coff_pending **listhead;
bd5635a1
RP
388 struct pending_block *old_blocks;
389 CORE_ADDR start, end;
318bf84f 390 struct objfile *objfile;
bd5635a1 391{
318bf84f 392 register struct coff_pending *next, *next1;
bd5635a1
RP
393 register struct block *block;
394 register struct pending_block *pblock;
395 struct pending_block *opblock;
396 register int i;
397
398 /* Count the length of the list of symbols. */
399
400 for (next = *listhead, i = 0; next; next = next->next, i++);
401
402 block = (struct block *)
318bf84f 403 obstack_alloc (&objfile->symbol_obstack, sizeof (struct block) + (i - 1) * sizeof (struct symbol *));
bd5635a1
RP
404
405 /* Copy the symbols into the block. */
406
407 BLOCK_NSYMS (block) = i;
408 for (next = *listhead; next; next = next->next)
409 BLOCK_SYM (block, --i) = next->symbol;
410
411 BLOCK_START (block) = start;
412 BLOCK_END (block) = end;
413 BLOCK_SUPERBLOCK (block) = 0; /* Filled in when containing block is made */
414
415 /* Put the block in as the value of the symbol that names it. */
416
417 if (symbol)
418 {
419 SYMBOL_BLOCK_VALUE (symbol) = block;
420 BLOCK_FUNCTION (block) = symbol;
421 }
422 else
423 BLOCK_FUNCTION (block) = 0;
424
425 /* Now free the links of the list, and empty the list. */
426
427 for (next = *listhead; next; next = next1)
428 {
429 next1 = next->next;
f70be3e4 430 free ((PTR)next);
bd5635a1
RP
431 }
432 *listhead = 0;
433
434 /* Install this block as the superblock
435 of all blocks made since the start of this scope
436 that don't have superblocks yet. */
437
438 opblock = 0;
439 for (pblock = pending_blocks; pblock != old_blocks; pblock = pblock->next)
440 {
441 if (BLOCK_SUPERBLOCK (pblock->block) == 0)
442 BLOCK_SUPERBLOCK (pblock->block) = block;
443 opblock = pblock;
444 }
445
446 /* Record this block on the list of all blocks in the file.
447 Put it after opblock, or at the beginning if opblock is 0.
448 This puts the block in the list after all its subblocks. */
449
450 pblock = (struct pending_block *) xmalloc (sizeof (struct pending_block));
451 pblock->block = block;
452 if (opblock)
453 {
454 pblock->next = opblock->next;
455 opblock->next = pblock;
456 }
457 else
458 {
459 pblock->next = pending_blocks;
460 pending_blocks = pblock;
461 }
462}
463
464static struct blockvector *
318bf84f
FF
465make_blockvector (objfile)
466 struct objfile *objfile;
bd5635a1
RP
467{
468 register struct pending_block *next, *next1;
469 register struct blockvector *blockvector;
470 register int i;
471
472 /* Count the length of the list of blocks. */
473
474 for (next = pending_blocks, i = 0; next; next = next->next, i++);
475
476 blockvector = (struct blockvector *)
318bf84f 477 obstack_alloc (&objfile->symbol_obstack, sizeof (struct blockvector) + (i - 1) * sizeof (struct block *));
bd5635a1
RP
478
479 /* Copy the blocks into the blockvector.
480 This is done in reverse order, which happens to put
481 the blocks into the proper order (ascending starting address).
318bf84f 482 coff_finish_block has hair to insert each block into the list
bd5635a1
RP
483 after its subblocks in order to make sure this is true. */
484
485 BLOCKVECTOR_NBLOCKS (blockvector) = i;
486 for (next = pending_blocks; next; next = next->next)
487 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
488
489 /* Now free the links of the list, and empty the list. */
490
491 for (next = pending_blocks; next; next = next1)
492 {
493 next1 = next->next;
f70be3e4 494 free ((PTR)next);
bd5635a1
RP
495 }
496 pending_blocks = 0;
497
498 return blockvector;
499}
500
501/* Manage the vector of line numbers. */
502
e1ce8aa5 503static void
318bf84f 504coff_record_line (line, pc)
bd5635a1
RP
505 int line;
506 CORE_ADDR pc;
507{
508 struct linetable_entry *e;
509 /* Make sure line vector is big enough. */
510
511 if (line_vector_index + 2 >= line_vector_length)
512 {
513 line_vector_length *= 2;
514 line_vector = (struct linetable *)
318bf84f 515 xrealloc ((char *) line_vector, sizeof (struct linetable)
bd5635a1
RP
516 + (line_vector_length
517 * sizeof (struct linetable_entry)));
518 }
519
520 e = line_vector->item + line_vector_index++;
521 e->line = line; e->pc = pc;
522}
523\f
524/* Start a new symtab for a new source file.
525 This is called when a COFF ".file" symbol is seen;
526 it indicates the start of data for one original source file. */
527
528static void
318bf84f 529coff_start_symtab ()
bd5635a1 530{
318bf84f
FF
531 coff_file_symbols = 0;
532 coff_global_symbols = 0;
533 coff_context_stack = 0;
bd5635a1 534 within_function = 0;
85f0a848 535 last_source_file = NULL;
bd5635a1 536
cadbb07a 537 /* Initialize the source file line number information for this file. */
bd5635a1 538
cadbb07a 539 if (line_vector) /* Unlikely, but maybe possible? */
f70be3e4 540 free ((PTR)line_vector);
bd5635a1
RP
541 line_vector_index = 0;
542 line_vector_length = 1000;
543 prev_line_number = -2; /* Force first line number to be explicit */
544 line_vector = (struct linetable *)
545 xmalloc (sizeof (struct linetable)
546 + line_vector_length * sizeof (struct linetable_entry));
547}
548
549/* Save the vital information from when starting to read a file,
550 for use when closing off the current file.
551 NAME is the file name the symbols came from, START_ADDR is the first
552 text address for the file, and SIZE is the number of bytes of text. */
553
554static void
555complete_symtab (name, start_addr, size)
556 char *name;
557 CORE_ADDR start_addr;
558 unsigned int size;
559{
560 last_source_file = savestring (name, strlen (name));
561 cur_src_start_addr = start_addr;
562 cur_src_end_addr = start_addr + size;
563
3624c875
FF
564 if (current_objfile -> ei.entry_point >= cur_src_start_addr &&
565 current_objfile -> ei.entry_point < cur_src_end_addr)
bd5635a1 566 {
3624c875
FF
567 current_objfile -> ei.entry_file_lowpc = cur_src_start_addr;
568 current_objfile -> ei.entry_file_highpc = cur_src_end_addr;
bd5635a1
RP
569 }
570}
571
572/* Finish the symbol definitions for one main source file,
573 close off all the lexical contexts for that file
574 (creating struct block's for them), then make the
575 struct symtab for that file and put it in the list of all such. */
576
577static void
318bf84f 578coff_end_symtab (objfile)
a048c8f5 579 struct objfile *objfile;
bd5635a1
RP
580{
581 register struct symtab *symtab;
318bf84f 582 register struct coff_context_stack *cstk;
bd5635a1
RP
583 register struct blockvector *blockvector;
584 register struct linetable *lv;
585
586 /* Finish the lexical context of the last function in the file. */
587
318bf84f 588 if (coff_context_stack)
bd5635a1 589 {
318bf84f
FF
590 cstk = coff_context_stack;
591 coff_context_stack = 0;
bd5635a1 592 /* Make a block for the local symbols within. */
318bf84f
FF
593 coff_finish_block (cstk->name, &coff_local_symbols, cstk->old_blocks,
594 cstk->start_addr, cur_src_end_addr, objfile);
f70be3e4 595 free ((PTR)cstk);
bd5635a1
RP
596 }
597
598 /* Ignore a file that has no functions with real debugging info. */
318bf84f 599 if (pending_blocks == 0 && coff_file_symbols == 0 && coff_global_symbols == 0)
bd5635a1 600 {
f70be3e4 601 free ((PTR)line_vector);
bd5635a1
RP
602 line_vector = 0;
603 line_vector_length = -1;
85f0a848 604 last_source_file = NULL;
bd5635a1
RP
605 return;
606 }
607
f70be3e4
JG
608 /* It is unfortunate that in amdcoff, pending blocks might not be ordered
609 in this stage. Especially, blocks for static functions will show up at
610 the end. We need to sort them, so tools like `find_pc_function' and
611 `find_pc_block' can work reliably. */
612 if (pending_blocks) {
613 /* FIXME! Remove this horrid bubble sort and use qsort!!! */
614 int swapped;
615 do {
616 struct pending_block *pb, *pbnext;
617
618 pb = pending_blocks, pbnext = pb->next;
619 swapped = 0;
620
621 while ( pbnext ) {
622
623 /* swap blocks if unordered! */
624
625 if (BLOCK_START(pb->block) < BLOCK_START(pbnext->block)) {
626 struct block *tmp = pb->block;
51b80b00 627 complain (&misordered_blocks_complaint, BLOCK_START (pb->block));
f70be3e4
JG
628 pb->block = pbnext->block;
629 pbnext->block = tmp;
630 swapped = 1;
631 }
632 pb = pbnext;
633 pbnext = pbnext->next;
634 }
635 } while (swapped);
636 }
637
a6e2b424
JG
638 /* Create the two top-level blocks for this file (STATIC_BLOCK and
639 GLOBAL_BLOCK). */
318bf84f
FF
640 coff_finish_block (0, &coff_file_symbols, 0, cur_src_start_addr, cur_src_end_addr, objfile);
641 coff_finish_block (0, &coff_global_symbols, 0, cur_src_start_addr, cur_src_end_addr, objfile);
bd5635a1
RP
642
643 /* Create the blockvector that points to all the file's blocks. */
318bf84f 644 blockvector = make_blockvector (objfile);
bd5635a1
RP
645
646 /* Now create the symtab object for this source file. */
a048c8f5 647 symtab = allocate_symtab (last_source_file, objfile);
bd5635a1
RP
648
649 /* Fill in its components. */
650 symtab->blockvector = blockvector;
651 symtab->free_code = free_linetable;
d8ce1326 652 symtab->free_ptr = 0;
bd5635a1 653 symtab->filename = last_source_file;
b203fc18 654 symtab->dirname = NULL;
bd5635a1
RP
655 lv = line_vector;
656 lv->nitems = line_vector_index;
657 symtab->linetable = (struct linetable *)
318bf84f 658 xrealloc ((char *) lv, (sizeof (struct linetable)
bd5635a1 659 + lv->nitems * sizeof (struct linetable_entry)));
b203fc18 660
a6e2b424
JG
661 free_named_symtabs (symtab->filename);
662
bd5635a1
RP
663 /* Reinitialize for beginning of new file. */
664 line_vector = 0;
665 line_vector_length = -1;
85f0a848 666 last_source_file = NULL;
bd5635a1
RP
667}
668\f
669static void
f70be3e4 670record_minimal_symbol (name, address, type)
bd5635a1
RP
671 char *name;
672 CORE_ADDR address;
f70be3e4 673 enum minimal_symbol_type type;
bd5635a1 674{
318bf84f 675 /* We don't want TDESC entry points in the minimal symbol table */
bd5635a1 676 if (name[0] == '@') return;
e140f1da 677
318bf84f
FF
678 /* mst_text isn't true, but apparently COFF doesn't tell us what it really
679 is, so this guess is more useful than mst_unknown. */
680 prim_record_minimal_symbol (savestring (name, strlen (name)),
bd5635a1 681 address,
f70be3e4 682 type);
bd5635a1
RP
683}
684\f
685/* coff_symfile_init ()
686 is the coff-specific initialization routine for reading symbols.
3624c875 687 It is passed a struct objfile which contains, among other things,
bd5635a1
RP
688 the BFD for the file whose symbols are being read, and a slot for
689 a pointer to "private data" which we fill with cookies and other
690 treats for coff_symfile_read ().
691
692 We will only be called if this is a COFF or COFF-like file.
693 BFD handles figuring out the format of the file, and code in symtab.c
694 uses BFD's determination to vector to us.
695
696 The ultimate result is a new symtab (or, FIXME, eventually a psymtab). */
697
698struct coff_symfile_info {
699 file_ptr min_lineno_offset; /* Where in file lowest line#s are */
700 file_ptr max_lineno_offset; /* 1+last byte of line#s in file */
701};
702
d8ce1326
JG
703static int text_bfd_scnum;
704
9bba3334 705static void
80d68b1d
FF
706coff_symfile_init (objfile)
707 struct objfile *objfile;
bd5635a1 708{
d8ce1326 709 asection *section;
80d68b1d 710 bfd *abfd = objfile->obfd;
bd5635a1
RP
711
712 /* Allocate struct to keep track of the symfile */
80d68b1d
FF
713 objfile -> sym_private = xmmalloc (objfile -> md,
714 sizeof (struct coff_symfile_info));
bd5635a1 715
3624c875
FF
716 init_entry_point_info (objfile);
717
718 /* Save the section number for the text section */
f70be3e4
JG
719 section = bfd_get_section_by_name(abfd,".text");
720 if (section)
3624c875 721 text_bfd_scnum = section->index;
bd5635a1 722 else
3624c875 723 text_bfd_scnum = -1;
bd5635a1
RP
724}
725
726/* This function is called for every section; it finds the outer limits
727 of the line table (minimum and maximum file offset) so that the
728 mainline code can read the whole thing for efficiency. */
729
e1ce8aa5 730/* ARGSUSED */
bd5635a1
RP
731static void
732find_linenos (abfd, asect, vpinfo)
733 bfd *abfd;
734 sec_ptr asect;
318bf84f 735 PTR vpinfo;
bd5635a1
RP
736{
737 struct coff_symfile_info *info;
738 int size, count;
739 file_ptr offset, maxoff;
740
741/* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
742 count = asect->lineno_count;
743/* End of warning */
744
745 if (count == 0)
746 return;
d8ce1326 747 size = count * local_linesz;
bd5635a1
RP
748
749 info = (struct coff_symfile_info *)vpinfo;
750/* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
751 offset = asect->line_filepos;
752/* End of warning */
753
754 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
755 info->min_lineno_offset = offset;
756
757 maxoff = offset + size;
758 if (maxoff > info->max_lineno_offset)
759 info->max_lineno_offset = maxoff;
760}
761
762
e1ce8aa5
JK
763/* The BFD for this file -- only good while we're actively reading
764 symbols into a psymtab or a symtab. */
765
766static bfd *symfile_bfd;
767
bd5635a1
RP
768/* Read a symbol file, after initialization by coff_symfile_init. */
769/* FIXME! Addr and Mainline are not used yet -- this will not work for
770 shared libraries or add_file! */
771
61a7292f 772/* ARGSUSED */
9bba3334 773static void
85f0a848 774coff_symfile_read (objfile, section_offsets, mainline)
80d68b1d 775 struct objfile *objfile;
85f0a848 776 struct section_offsets *section_offsets;
bd5635a1
RP
777 int mainline;
778{
80d68b1d
FF
779 struct coff_symfile_info *info;
780 bfd *abfd = objfile->obfd;
d8ce1326 781 coff_data_type *cdata = coff_data (abfd);
bd5635a1
RP
782 char *name = bfd_get_filename (abfd);
783 int desc;
784 register int val;
785 int num_symbols;
786 int symtab_offset;
787 int stringtab_offset;
788
80d68b1d 789 info = (struct coff_symfile_info *) objfile -> sym_private;
bd5635a1
RP
790 symfile_bfd = abfd; /* Kludge for swap routines */
791
792/* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
d8ce1326 793 desc = fileno ((FILE *)(abfd->iostream)); /* File descriptor */
bd5635a1 794 num_symbols = bfd_get_symcount (abfd); /* How many syms */
d8ce1326
JG
795 symtab_offset = cdata->sym_filepos; /* Symbol table file offset */
796 stringtab_offset = symtab_offset + /* String table file offset */
797 num_symbols * cdata->local_symesz;
798
799 /* Set a few file-statics that give us specific information about
800 the particular COFF file format we're reading. */
801 local_linesz = cdata->local_linesz;
802 local_n_btmask = cdata->local_n_btmask;
803 local_n_btshft = cdata->local_n_btshft;
804 local_n_tmask = cdata->local_n_tmask;
805 local_n_tshift = cdata->local_n_tshift;
806 local_linesz = cdata->local_linesz;
807 local_symesz = cdata->local_symesz;
808 local_auxesz = cdata->local_auxesz;
809
810 /* Allocate space for raw symbol and aux entries, based on their
811 space requirements as reported by BFD. */
812 temp_sym = (char *) xmalloc
813 (cdata->local_symesz + cdata->local_auxesz);
814 temp_aux = temp_sym + cdata->local_symesz;
815 make_cleanup (free_current_contents, &temp_sym);
bd5635a1
RP
816/* End of warning */
817
bd5635a1
RP
818 /* Read the line number table, all at once. */
819 info->min_lineno_offset = 0;
820 info->max_lineno_offset = 0;
f70be3e4 821 bfd_map_over_sections (abfd, find_linenos, (PTR)info);
bd5635a1
RP
822
823 val = init_lineno (desc, info->min_lineno_offset,
824 info->max_lineno_offset - info->min_lineno_offset);
825 if (val < 0)
826 error ("\"%s\": error reading line numbers\n", name);
827
828 /* Now read the string table, all at once. */
829
830 val = init_stringtab (desc, stringtab_offset);
831 if (val < 0)
a048c8f5 832 error ("\"%s\": can't get string table", name);
bd5635a1
RP
833 make_cleanup (free_stringtab, 0);
834
318bf84f
FF
835 init_minimal_symbol_collection ();
836 make_cleanup (discard_minimal_symbols, 0);
bd5635a1
RP
837
838 /* Now that the executable file is positioned at symbol table,
839 process it and define symbols accordingly. */
840
f70be3e4 841 read_coff_symtab ((long)symtab_offset, num_symbols, objfile);
bd5635a1
RP
842
843 /* Sort symbols alphabetically within each block. */
844
845 sort_all_symtab_syms ();
846
318bf84f
FF
847 /* Install any minimal symbols that have been collected as the current
848 minimal symbols for this objfile. */
bd5635a1 849
80d68b1d 850 install_minimal_symbols (objfile);
bd5635a1
RP
851}
852
9bba3334 853static void
f70be3e4
JG
854coff_new_init (ignore)
855 struct objfile *ignore;
bd5635a1 856{
a048c8f5 857 /* Nothin' to do */
bd5635a1 858}
80d68b1d
FF
859
860/* Perform any local cleanups required when we are done with a particular
861 objfile. I.E, we are in the process of discarding all symbol information
862 for an objfile, freeing up all memory held for it, and unlinking the
863 objfile struct from the global list of known objfiles. */
864
865static void
866coff_symfile_finish (objfile)
867 struct objfile *objfile;
868{
869 if (objfile -> sym_private != NULL)
870 {
871 mfree (objfile -> md, objfile -> sym_private);
872 }
873}
874
bd5635a1 875\f
bd5635a1
RP
876/* Given pointers to a symbol table in coff style exec file,
877 analyze them and create struct symtab's describing the symbols.
878 NSYMS is the number of symbols in the symbol table.
879 We read them one at a time using read_one_sym (). */
880
881static void
f70be3e4
JG
882read_coff_symtab (symtab_offset, nsyms, objfile)
883 long symtab_offset;
bd5635a1 884 int nsyms;
a048c8f5 885 struct objfile *objfile;
bd5635a1 886{
bd5635a1 887 FILE *stream;
318bf84f 888 register struct coff_context_stack *new;
bd5635a1
RP
889 struct coff_symbol coff_symbol;
890 register struct coff_symbol *cs = &coff_symbol;
dcc35536
JG
891 static struct internal_syment main_sym;
892 static union internal_auxent main_aux;
bd5635a1 893 struct coff_symbol fcn_cs_saved;
dcc35536
JG
894 static struct internal_syment fcn_sym_saved;
895 static union internal_auxent fcn_aux_saved;
f70be3e4
JG
896 struct symtab *s;
897
bd5635a1
RP
898 /* A .file is open. */
899 int in_source_file = 0;
900 int num_object_files = 0;
901 int next_file_symnum = -1;
902
903 /* Name of the current file. */
904 char *filestring = "";
f70be3e4
JG
905 int depth = 0;
906 int fcn_first_line = 0;
907 int fcn_last_line = 0;
908 int fcn_start_addr = 0;
909 long fcn_line_ptr = 0;
bd5635a1 910 struct cleanup *old_chain;
f70be3e4 911 int val;
bd5635a1 912
de9bef49 913 stream = bfd_cache_lookup(objfile->obfd);
f70be3e4
JG
914 if (!stream)
915 perror_with_name(objfile->name);
bd5635a1 916
f2c365f5 917 /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
fc312cc6
JK
918 it's hard to know I've really worked around it. The fix should be
919 harmless, anyway). The symptom of the bug is that the first
920 fread (in read_one_sym), will (in my example) actually get data
921 from file offset 268, when the fseek was to 264 (and ftell shows
922 264). This causes all hell to break loose. I was unable to
923 reproduce this on a short test program which operated on the same
924 file, performing (I think) the same sequence of operations.
925
926 It stopped happening when I put in this rewind().
927
928 FIXME: Find out if this has been reported to Sun, whether it has
929 been fixed in a later release, etc. */
930
f2c365f5
JK
931 rewind (stream);
932
f70be3e4
JG
933 /* Position to read the symbol table. */
934 val = fseek (stream, (long)symtab_offset, 0);
935 if (val < 0)
936 perror_with_name (objfile->name);
bd5635a1 937
de9bef49 938 /* This cleanup will be discarded below if we succeed. */
a048c8f5 939 old_chain = make_cleanup (free_objfile, objfile);
a048c8f5 940
318bf84f 941 current_objfile = objfile;
bd5635a1
RP
942 nlist_stream_global = stream;
943 nlist_nsyms_global = nsyms;
85f0a848 944 last_source_file = NULL;
4ed3a9ea 945 memset (opaque_type_chain, 0, sizeof opaque_type_chain);
bd5635a1 946
cadbb07a 947 if (type_vector) /* Get rid of previous one */
f70be3e4 948 free ((PTR)type_vector);
bd5635a1 949 type_vector_length = 160;
159a075e
SG
950 type_vector = (struct type **)
951 xmalloc (type_vector_length * sizeof (struct type *));
4ed3a9ea 952 memset (type_vector, 0, type_vector_length * sizeof (struct type *));
bd5635a1 953
318bf84f 954 coff_start_symtab ();
bd5635a1
RP
955
956 symnum = 0;
957 while (symnum < nsyms)
958 {
959 QUIT; /* Make this command interruptable. */
960 read_one_sym (cs, &main_sym, &main_aux);
961
962#ifdef SEM
963 temp_sem_val = cs->c_name[0] << 24 | cs->c_name[1] << 16 |
964 cs->c_name[2] << 8 | cs->c_name[3];
965 if (int_sem_val == temp_sem_val)
966 last_coffsem = (int) strtol (cs->c_name+4, (char **) NULL, 10);
967#endif
968
969 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
970 {
971 if (last_source_file)
318bf84f 972 coff_end_symtab (objfile);
bd5635a1 973
318bf84f 974 coff_start_symtab ();
bd5635a1
RP
975 complete_symtab ("_globals_", 0, first_object_file_end);
976 /* done with all files, everything from here on out is globals */
977 }
978
979 /* Special case for file with type declarations only, no text. */
8714ff35
JK
980 if (!last_source_file && SDB_TYPE (cs->c_type)
981 && cs->c_secnum == N_DEBUG)
bd5635a1
RP
982 complete_symtab (filestring, 0, 0);
983
984 /* Typedefs should not be treated as symbol definitions. */
985 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
986 {
318bf84f 987 /* record as a minimal symbol. if we get '.bf' next,
bd5635a1
RP
988 * then we undo this step
989 */
f70be3e4 990 record_minimal_symbol (cs->c_name, cs->c_value, mst_text);
bd5635a1
RP
991
992 fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
993 fcn_start_addr = cs->c_value;
994 fcn_cs_saved = *cs;
995 fcn_sym_saved = main_sym;
996 fcn_aux_saved = main_aux;
997 continue;
998 }
999
1000 switch (cs->c_sclass)
1001 {
1002 case C_EFCN:
1003 case C_EXTDEF:
1004 case C_ULABEL:
1005 case C_USTATIC:
1006 case C_LINE:
1007 case C_ALIAS:
1008 case C_HIDDEN:
7e258d18 1009 complain (&bad_sclass_complaint, cs->c_name);
bd5635a1
RP
1010 break;
1011
1012 case C_FILE:
1013 /*
1014 * c_value field contains symnum of next .file entry in table
1015 * or symnum of first global after last .file.
1016 */
1017 next_file_symnum = cs->c_value;
1018 filestring = getfilename (&main_aux);
1019 /*
1020 * Complete symbol table for last object file
1021 * containing debugging information.
1022 */
1023 if (last_source_file)
1024 {
318bf84f
FF
1025 coff_end_symtab (objfile);
1026 coff_start_symtab ();
bd5635a1
RP
1027 }
1028 in_source_file = 1;
1029 break;
1030
1031 case C_STAT:
1032 if (cs->c_name[0] == '.') {
c653bc6d 1033 if (STREQ (cs->c_name, ".text")) {
d8ce1326
JG
1034 /* FIXME: don't wire in ".text" as section name
1035 or symbol name! */
bd5635a1
RP
1036 if (++num_object_files == 1) {
1037 /* last address of startup file */
1038 first_object_file_end = cs->c_value +
1039 main_aux.x_scn.x_scnlen;
1040 }
1041 /* Check for in_source_file deals with case of
1042 a file with debugging symbols
1043 followed by a later file with no symbols. */
1044 if (in_source_file)
1045 complete_symtab (filestring, cs->c_value,
1046 main_aux.x_scn.x_scnlen);
1047 in_source_file = 0;
1048 }
1049 /* flush rest of '.' symbols */
1050 break;
1051 }
8714ff35 1052 else if (!SDB_TYPE (cs->c_type)
bd5635a1
RP
1053 && cs->c_name[0] == 'L'
1054 && (strncmp (cs->c_name, "LI%", 3) == 0
8714ff35 1055 || strncmp (cs->c_name, "LF%", 3) == 0
bd5635a1
RP
1056 || strncmp (cs->c_name,"LC%",3) == 0
1057 || strncmp (cs->c_name,"LP%",3) == 0
1058 || strncmp (cs->c_name,"LPB%",4) == 0
1059 || strncmp (cs->c_name,"LBB%",4) == 0
1060 || strncmp (cs->c_name,"LBE%",4) == 0
1061 || strncmp (cs->c_name,"LPBX%",5) == 0))
1062 /* At least on a 3b1, gcc generates swbeg and string labels
1063 that look like this. Ignore them. */
1064 break;
1065 /* fall in for static symbols that don't start with '.' */
1066 case C_EXT:
8714ff35 1067 if (!SDB_TYPE (cs->c_type)) {
d8ce1326
JG
1068 /* FIXME: This is BOGUS Will Robinson!
1069 Coff should provide the SEC_CODE flag for executable sections,
1070 then if we could look up sections by section number we
1071 could see if the flags indicate SEC_CODE. If so, then
318bf84f
FF
1072 record this symbol as a function in the minimal symbol table.
1073 But why are absolute syms recorded as functions, anyway? */
d8ce1326 1074 if (cs->c_secnum <= text_bfd_scnum+1) {/* text or abs */
f70be3e4
JG
1075 record_minimal_symbol (cs->c_name, cs->c_value,
1076 mst_text);
bd5635a1
RP
1077 break;
1078 } else {
f70be3e4
JG
1079 record_minimal_symbol (cs->c_name, cs->c_value,
1080 mst_data);
1081 break;
bd5635a1
RP
1082 }
1083 }
4ed3a9ea 1084 process_coff_symbol (cs, &main_aux, objfile);
bd5635a1
RP
1085 break;
1086
1087 case C_FCN:
c653bc6d 1088 if (STREQ (cs->c_name, ".bf"))
bd5635a1
RP
1089 {
1090 within_function = 1;
1091
1092 /* value contains address of first non-init type code */
1093 /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
1094 contains line number of '{' } */
e64fbb3a 1095 if (cs->c_naux != 1)
51b80b00 1096 complain (&bf_no_aux_complaint, cs->c_symnum);
bd5635a1
RP
1097 fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1098
318bf84f
FF
1099 new = (struct coff_context_stack *)
1100 xmalloc (sizeof (struct coff_context_stack));
bd5635a1
RP
1101 new->depth = depth = 0;
1102 new->next = 0;
318bf84f 1103 coff_context_stack = new;
bd5635a1
RP
1104 new->locals = 0;
1105 new->old_blocks = pending_blocks;
1106 new->start_addr = fcn_start_addr;
1107 fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
1108 new->name = process_coff_symbol (&fcn_cs_saved,
318bf84f 1109 &fcn_aux_saved, objfile);
bd5635a1 1110 }
c653bc6d 1111 else if (STREQ (cs->c_name, ".ef"))
bd5635a1
RP
1112 {
1113 /* the value of .ef is the address of epilogue code;
1114 * not useful for gdb
1115 */
1116 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1117 contains number of lines to '}' */
318bf84f 1118 new = coff_context_stack;
bd5635a1
RP
1119 if (new == 0)
1120 {
51b80b00 1121 complain (&ef_complaint, cs->c_symnum);
bd5635a1
RP
1122 within_function = 0;
1123 break;
1124 }
e64fbb3a 1125 if (cs->c_naux != 1) {
51b80b00 1126 complain (&ef_no_aux_complaint, cs->c_symnum);
e64fbb3a
JG
1127 fcn_last_line = 0x7FFFFFFF;
1128 } else {
1129 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1130 }
bd5635a1
RP
1131 enter_linenos (fcn_line_ptr, fcn_first_line, fcn_last_line);
1132
318bf84f 1133 coff_finish_block (new->name, &coff_local_symbols, new->old_blocks,
bd5635a1
RP
1134 new->start_addr,
1135#if defined (FUNCTION_EPILOGUE_SIZE)
1136 /* This macro should be defined only on
1137 machines where the
1138 fcn_aux_saved.x_sym.x_misc.x_fsize
1139 field is always zero.
1140 So use the .bf record information that
1141 points to the epilogue and add the size
1142 of the epilogue. */
318bf84f 1143 cs->c_value + FUNCTION_EPILOGUE_SIZE,
bd5635a1
RP
1144#else
1145 fcn_cs_saved.c_value +
318bf84f 1146 fcn_aux_saved.x_sym.x_misc.x_fsize,
bd5635a1 1147#endif
318bf84f 1148 objfile
bd5635a1 1149 );
318bf84f 1150 coff_context_stack = 0;
bd5635a1 1151 within_function = 0;
f70be3e4 1152 free ((PTR)new);
bd5635a1
RP
1153 }
1154 break;
1155
1156 case C_BLOCK:
c653bc6d 1157 if (STREQ (cs->c_name, ".bb"))
bd5635a1 1158 {
318bf84f
FF
1159 new = (struct coff_context_stack *)
1160 xmalloc (sizeof (struct coff_context_stack));
bd5635a1
RP
1161 depth++;
1162 new->depth = depth;
318bf84f
FF
1163 new->next = coff_context_stack;
1164 coff_context_stack = new;
1165 new->locals = coff_local_symbols;
bd5635a1
RP
1166 new->old_blocks = pending_blocks;
1167 new->start_addr = cs->c_value;
1168 new->name = 0;
318bf84f 1169 coff_local_symbols = 0;
bd5635a1 1170 }
c653bc6d 1171 else if (STREQ (cs->c_name, ".eb"))
bd5635a1 1172 {
318bf84f 1173 new = coff_context_stack;
bd5635a1 1174 if (new == 0 || depth != new->depth)
de9bef49
JG
1175 {
1176 complain (&eb_complaint, (char *)symnum);
1177 break;
1178 }
318bf84f 1179 if (coff_local_symbols && coff_context_stack->next)
bd5635a1
RP
1180 {
1181 /* Make a block for the local symbols within. */
318bf84f
FF
1182 coff_finish_block (0, &coff_local_symbols, new->old_blocks,
1183 new->start_addr, cs->c_value, objfile);
bd5635a1
RP
1184 }
1185 depth--;
318bf84f
FF
1186 coff_local_symbols = new->locals;
1187 coff_context_stack = new->next;
f70be3e4 1188 free ((PTR)new);
bd5635a1
RP
1189 }
1190 break;
bd5635a1
RP
1191
1192 default:
4ed3a9ea 1193 process_coff_symbol (cs, &main_aux, objfile);
bd5635a1
RP
1194 break;
1195 }
1196 }
1197
1198 if (last_source_file)
318bf84f 1199 coff_end_symtab (objfile);
bd5635a1 1200 fclose (stream);
f70be3e4
JG
1201
1202 /* Patch up any opaque types (references to types that are not defined
1203 in the file where they are referenced, e.g. "struct foo *bar"). */
1204 ALL_OBJFILE_SYMTABS (objfile, s)
1205 patch_opaque_types (s);
1206
bd5635a1 1207 discard_cleanups (old_chain);
318bf84f 1208 current_objfile = NULL;
bd5635a1
RP
1209}
1210\f
1211/* Routines for reading headers and symbols from executable. */
1212
1213#ifdef FIXME
1214/* Move these XXXMAGIC symbol defns into BFD! */
1215
1216/* Read COFF file header, check magic number,
1217 and return number of symbols. */
1218read_file_hdr (chan, file_hdr)
1219 int chan;
1220 FILHDR *file_hdr;
1221{
1222 lseek (chan, 0L, 0);
1223 if (myread (chan, (char *)file_hdr, FILHSZ) < 0)
1224 return -1;
1225
1226 switch (file_hdr->f_magic)
1227 {
1228#ifdef MC68MAGIC
1229 case MC68MAGIC:
1230#endif
1231#ifdef NS32GMAGIC
1232 case NS32GMAGIC:
1233 case NS32SMAGIC:
1234#endif
1235#ifdef I386MAGIC
1236 case I386MAGIC:
1237#endif
1238#ifdef CLIPPERMAGIC
1239 case CLIPPERMAGIC:
1240#endif
1241#if defined (MC68KWRMAGIC) \
1242 && (!defined (MC68MAGIC) || MC68KWRMAGIC != MC68MAGIC)
1243 case MC68KWRMAGIC:
1244#endif
1245#ifdef MC68KROMAGIC
1246 case MC68KROMAGIC:
1247 case MC68KPGMAGIC:
1248#endif
1249#ifdef MC88DGMAGIC
1250 case MC88DGMAGIC:
1251#endif
1252#ifdef MC88MAGIC
1253 case MC88MAGIC:
1254#endif
1255#ifdef I960ROMAGIC
1256 case I960ROMAGIC: /* Intel 960 */
1257#endif
1258#ifdef I960RWMAGIC
1259 case I960RWMAGIC: /* Intel 960 */
1260#endif
1261 return file_hdr->f_nsyms;
1262
1263 default:
1264#ifdef BADMAG
1265 if (BADMAG(file_hdr))
1266 return -1;
1267 else
1268 return file_hdr->f_nsyms;
1269#else
1270 return -1;
1271#endif
1272 }
1273}
1274#endif
1275
dcc35536
JG
1276/* Read the next symbol, swap it, and return it in both internal_syment
1277 form, and coff_symbol form. Also return its first auxent, if any,
1278 in internal_auxent form, and skip any other auxents. */
bd5635a1
RP
1279
1280static void
1281read_one_sym (cs, sym, aux)
1282 register struct coff_symbol *cs;
dcc35536
JG
1283 register struct internal_syment *sym;
1284 register union internal_auxent *aux;
bd5635a1 1285{
bd5635a1
RP
1286 int i;
1287
1288 cs->c_symnum = symnum;
d8ce1326
JG
1289 fread (temp_sym, local_symesz, 1, nlist_stream_global);
1290 bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *)sym);
e64fbb3a
JG
1291 cs->c_naux = sym->n_numaux & 0xff;
1292 if (cs->c_naux >= 1)
bd5635a1 1293 {
d8ce1326
JG
1294 fread (temp_aux, local_auxesz, 1, nlist_stream_global);
1295 bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
1296 (char *)aux);
bd5635a1
RP
1297 /* If more than one aux entry, read past it (only the first aux
1298 is important). */
e64fbb3a 1299 for (i = 1; i < cs->c_naux; i++)
d8ce1326 1300 fread (temp_aux, local_auxesz, 1, nlist_stream_global);
bd5635a1
RP
1301 }
1302 cs->c_name = getsymname (sym);
1303 cs->c_value = sym->n_value;
1304 cs->c_sclass = (sym->n_sclass & 0xff);
1305 cs->c_secnum = sym->n_scnum;
1306 cs->c_type = (unsigned) sym->n_type;
8714ff35
JK
1307 if (!SDB_TYPE (cs->c_type))
1308 cs->c_type = 0;
bd5635a1 1309
e64fbb3a 1310 symnum += 1 + cs->c_naux;
bd5635a1
RP
1311}
1312\f
1313/* Support for string table handling */
1314
1315static char *stringtab = NULL;
1316
1317static int
1318init_stringtab (chan, offset)
1319 int chan;
1320 long offset;
1321{
1322 long length;
1323 int val;
1324 unsigned char lengthbuf[4];
1325
1326 if (stringtab)
1327 {
1328 free (stringtab);
1329 stringtab = NULL;
1330 }
1331
1332 if (lseek (chan, offset, 0) < 0)
1333 return -1;
1334
1335 val = myread (chan, (char *)lengthbuf, sizeof lengthbuf);
dcc35536 1336 length = bfd_h_get_32 (symfile_bfd, lengthbuf);
bd5635a1
RP
1337
1338 /* If no string table is needed, then the file may end immediately
1339 after the symbols. Just return with `stringtab' set to null. */
1340 if (val != sizeof length || length < sizeof length)
1341 return 0;
1342
1343 stringtab = (char *) xmalloc (length);
1344 if (stringtab == NULL)
1345 return -1;
1346
4ed3a9ea 1347 memcpy (stringtab, &length, sizeof length);
bd5635a1
RP
1348 if (length == sizeof length) /* Empty table -- just the count */
1349 return 0;
1350
1351 val = myread (chan, stringtab + sizeof length, length - sizeof length);
1352 if (val != length - sizeof length || stringtab[length - 1] != '\0')
1353 return -1;
1354
1355 return 0;
1356}
1357
1358static void
1359free_stringtab ()
1360{
1361 if (stringtab)
1362 free (stringtab);
1363 stringtab = NULL;
1364}
1365
1366static char *
1367getsymname (symbol_entry)
dcc35536 1368 struct internal_syment *symbol_entry;
bd5635a1
RP
1369{
1370 static char buffer[SYMNMLEN+1];
1371 char *result;
1372
dcc35536 1373 if (symbol_entry->_n._n_n._n_zeroes == 0)
bd5635a1 1374 {
dcc35536 1375 result = stringtab + symbol_entry->_n._n_n._n_offset;
bd5635a1
RP
1376 }
1377 else
1378 {
dcc35536 1379 strncpy (buffer, symbol_entry->_n._n_name, SYMNMLEN);
bd5635a1
RP
1380 buffer[SYMNMLEN] = '\0';
1381 result = buffer;
1382 }
1383 return result;
1384}
1385
c653bc6d
JG
1386/* Extract the file name from the aux entry of a C_FILE symbol. Return
1387 only the last component of the name. Result is in static storage and
1388 is only good for temporary use. */
1389
bd5635a1
RP
1390static char *
1391getfilename (aux_entry)
dcc35536 1392 union internal_auxent *aux_entry;
bd5635a1
RP
1393{
1394 static char buffer[BUFSIZ];
1395 register char *temp;
1396 char *result;
bd5635a1 1397
bd5635a1
RP
1398 if (aux_entry->x_file.x_n.x_zeroes == 0)
1399 strcpy (buffer, stringtab + aux_entry->x_file.x_n.x_offset);
1400 else
bd5635a1 1401 {
bd5635a1 1402 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
bd5635a1
RP
1403 buffer[FILNMLEN] = '\0';
1404 }
1405 result = buffer;
318bf84f 1406 if ((temp = strrchr (result, '/')) != NULL)
bd5635a1
RP
1407 result = temp + 1;
1408 return (result);
1409}
1410\f
1411/* Support for line number handling */
1412static char *linetab = NULL;
1413static long linetab_offset;
1414static unsigned long linetab_size;
1415
dcc35536
JG
1416/* Read in all the line numbers for fast lookups later. Leave them in
1417 external (unswapped) format in memory; we'll swap them as we enter
1418 them into GDB's data structures. */
bd5635a1
RP
1419
1420static int
1421init_lineno (chan, offset, size)
1422 int chan;
1423 long offset;
1424 int size;
1425{
1426 int val;
bd5635a1 1427
61a7292f
SG
1428 linetab_offset = offset;
1429 linetab_size = size;
1430
1431 if (size == 0)
1432 return 0;
1433
bd5635a1
RP
1434 if (lseek (chan, offset, 0) < 0)
1435 return -1;
1436
e64fbb3a
JG
1437 /* Allocate the desired table, plus a sentinel */
1438 linetab = (char *) xmalloc (size + local_linesz);
bd5635a1
RP
1439
1440 val = myread (chan, linetab, size);
1441 if (val != size)
1442 return -1;
1443
e64fbb3a 1444 /* Terminate it with an all-zero sentinel record */
4ed3a9ea 1445 memset (linetab + size, 0, local_linesz);
e64fbb3a 1446
bd5635a1
RP
1447 make_cleanup (free, linetab); /* Be sure it gets de-allocated. */
1448 return 0;
1449}
1450
1451#if !defined (L_LNNO32)
1452#define L_LNNO32(lp) ((lp)->l_lnno)
1453#endif
1454
1455static void
1456enter_linenos (file_offset, first_line, last_line)
1457 long file_offset;
1458 register int first_line;
1459 register int last_line;
1460{
1461 register char *rawptr;
dcc35536 1462 struct internal_lineno lptr;
bd5635a1
RP
1463
1464 if (file_offset < linetab_offset)
1465 {
51b80b00 1466 complain (&lineno_complaint, file_offset);
63989338
JG
1467 if (file_offset > linetab_size) /* Too big to be an offset? */
1468 return;
1469 file_offset += linetab_offset; /* Try reading at that linetab offset */
bd5635a1
RP
1470 }
1471
1472 rawptr = &linetab[file_offset - linetab_offset];
1473
1474 /* skip first line entry for each function */
d8ce1326 1475 rawptr += local_linesz;
bd5635a1
RP
1476 /* line numbers start at one for the first line of the function */
1477 first_line--;
1478
dcc35536 1479 for (;;) {
d8ce1326
JG
1480 bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
1481 rawptr += local_linesz;
e64fbb3a 1482 /* The next function, or the sentinel, will have L_LNNO32 zero; we exit. */
dcc35536 1483 if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
318bf84f 1484 coff_record_line (first_line + L_LNNO32 (&lptr), lptr.l_addr.l_paddr);
dcc35536
JG
1485 else
1486 break;
1487 }
bd5635a1
RP
1488}
1489\f
bd5635a1
RP
1490static void
1491patch_type (type, real_type)
1492 struct type *type;
1493 struct type *real_type;
1494{
1495 register struct type *target = TYPE_TARGET_TYPE (type);
1496 register struct type *real_target = TYPE_TARGET_TYPE (real_type);
1497 int field_size = TYPE_NFIELDS (real_target) * sizeof (struct field);
1498
1499 TYPE_LENGTH (target) = TYPE_LENGTH (real_target);
1500 TYPE_NFIELDS (target) = TYPE_NFIELDS (real_target);
85f0a848 1501 TYPE_FIELDS (target) = (struct field *) TYPE_ALLOC (target, field_size);
bd5635a1 1502
4ed3a9ea 1503 memcpy (TYPE_FIELDS (target), TYPE_FIELDS (real_target), field_size);
bd5635a1
RP
1504
1505 if (TYPE_NAME (real_target))
1506 {
1507 if (TYPE_NAME (target))
1508 free (TYPE_NAME (target));
58ae87f6 1509 TYPE_NAME (target) = concat (TYPE_NAME (real_target), NULL);
bd5635a1
RP
1510 }
1511}
1512
7e258d18 1513/* Patch up all appropriate typedef symbols in the opaque_type_chains
f70be3e4 1514 so that they can be used to print out opaque data structures properly. */
bd5635a1 1515
f70be3e4
JG
1516static void
1517patch_opaque_types (s)
318bf84f 1518 struct symtab *s;
318bf84f
FF
1519{
1520 register struct block *b;
1521 register int i;
1522 register struct symbol *real_sym;
1523
1524 /* Go through the per-file symbols only */
1525 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
1526 for (i = BLOCK_NSYMS (b) - 1; i >= 0; i--)
bd5635a1 1527 {
318bf84f
FF
1528 /* Find completed typedefs to use to fix opaque ones.
1529 Remove syms from the chain when their types are stored,
1530 but search the whole chain, as there may be several syms
1531 from different files with the same name. */
1532 real_sym = BLOCK_SYM (b, i);
1533 if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF &&
1534 SYMBOL_NAMESPACE (real_sym) == VAR_NAMESPACE &&
1535 TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR &&
1536 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
bd5635a1 1537 {
318bf84f
FF
1538 register char *name = SYMBOL_NAME (real_sym);
1539 register int hash = hashname (name);
1540 register struct symbol *sym, *prev;
1541
1542 prev = 0;
1543 for (sym = opaque_type_chain[hash]; sym;)
bd5635a1 1544 {
318bf84f 1545 if (name[0] == SYMBOL_NAME (sym)[0] &&
c653bc6d 1546 STREQ (name + 1, SYMBOL_NAME (sym) + 1))
bd5635a1 1547 {
318bf84f 1548 if (prev)
bd5635a1 1549 {
318bf84f 1550 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
bd5635a1
RP
1551 }
1552 else
1553 {
318bf84f 1554 opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
bd5635a1 1555 }
318bf84f
FF
1556
1557 patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
1558
1559 if (prev)
1560 {
1561 sym = SYMBOL_VALUE_CHAIN (prev);
1562 }
1563 else
1564 {
1565 sym = opaque_type_chain[hash];
1566 }
1567 }
1568 else
1569 {
1570 prev = sym;
1571 sym = SYMBOL_VALUE_CHAIN (sym);
bd5635a1
RP
1572 }
1573 }
1574 }
1575 }
1576}
1577\f
bd5635a1 1578static struct symbol *
318bf84f 1579process_coff_symbol (cs, aux, objfile)
bd5635a1 1580 register struct coff_symbol *cs;
dcc35536 1581 register union internal_auxent *aux;
318bf84f 1582 struct objfile *objfile;
bd5635a1
RP
1583{
1584 register struct symbol *sym
c653bc6d
JG
1585 = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
1586 sizeof (struct symbol));
bd5635a1 1587 char *name;
318bf84f 1588 struct type *temptype;
bd5635a1 1589
4ed3a9ea 1590 memset (sym, 0, sizeof (struct symbol));
bd5635a1 1591 name = cs->c_name;
de9bef49 1592 name = EXTERNAL_NAME (name, objfile->obfd);
c653bc6d
JG
1593 SYMBOL_NAME (sym) = obstack_copy0 (&objfile->symbol_obstack, name,
1594 strlen (name));
bd5635a1
RP
1595
1596 /* default assumptions */
1597 SYMBOL_VALUE (sym) = cs->c_value;
1598 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1599
1600 if (ISFCN (cs->c_type))
1601 {
d8ce1326
JG
1602#if 0
1603 /* FIXME: This has NOT been tested. The DBX version has.. */
1604 /* Generate a template for the type of this function. The
1605 types of the arguments will be added as we read the symbol
1606 table. */
1607 struct type *new = (struct type *)
318bf84f 1608 obstack_alloc (&objfile->symbol_obstack, sizeof (struct type));
d8ce1326 1609
4ed3a9ea 1610 memcpy (new, lookup_function_type (decode_function_type (cs, cs->c_type, aux)),
51b57ded 1611 sizeof(struct type));
d8ce1326
JG
1612 SYMBOL_TYPE (sym) = new;
1613 in_function_type = SYMBOL_TYPE(sym);
1614#else
1615 SYMBOL_TYPE(sym) =
1616 lookup_function_type (decode_function_type (cs, cs->c_type, aux));
1617#endif
1618
bd5635a1
RP
1619 SYMBOL_CLASS (sym) = LOC_BLOCK;
1620 if (cs->c_sclass == C_STAT)
318bf84f 1621 coff_add_symbol_to_list (sym, &coff_file_symbols);
bd5635a1 1622 else if (cs->c_sclass == C_EXT)
318bf84f 1623 coff_add_symbol_to_list (sym, &coff_global_symbols);
bd5635a1
RP
1624 }
1625 else
1626 {
1627 SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux);
1628 switch (cs->c_sclass)
1629 {
1630 case C_NULL:
1631 break;
1632
1633 case C_AUTO:
1634 SYMBOL_CLASS (sym) = LOC_LOCAL;
318bf84f 1635 coff_add_symbol_to_list (sym, &coff_local_symbols);
bd5635a1
RP
1636 break;
1637
1638 case C_EXT:
1639 SYMBOL_CLASS (sym) = LOC_STATIC;
1640 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
318bf84f 1641 coff_add_symbol_to_list (sym, &coff_global_symbols);
bd5635a1
RP
1642 break;
1643
1644 case C_STAT:
1645 SYMBOL_CLASS (sym) = LOC_STATIC;
1646 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1647 if (within_function) {
1648 /* Static symbol of local scope */
318bf84f 1649 coff_add_symbol_to_list (sym, &coff_local_symbols);
bd5635a1
RP
1650 }
1651 else {
1652 /* Static symbol at top level of file */
318bf84f 1653 coff_add_symbol_to_list (sym, &coff_file_symbols);
bd5635a1
RP
1654 }
1655 break;
1656
d8ce1326
JG
1657#ifdef C_GLBLREG /* AMD coff */
1658 case C_GLBLREG:
1659#endif
bd5635a1
RP
1660 case C_REG:
1661 SYMBOL_CLASS (sym) = LOC_REGISTER;
d8ce1326 1662 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
318bf84f 1663 coff_add_symbol_to_list (sym, &coff_local_symbols);
bd5635a1
RP
1664 break;
1665
1666 case C_LABEL:
1667 break;
1668
1669 case C_ARG:
1670 SYMBOL_CLASS (sym) = LOC_ARG;
d8ce1326 1671#if 0
7e258d18 1672 /* FIXME: This has not been tested. */
d8ce1326
JG
1673 /* Add parameter to function. */
1674 add_param_to_type(&in_function_type,sym);
1675#endif
318bf84f 1676 coff_add_symbol_to_list (sym, &coff_local_symbols);
f2c365f5 1677#if !defined (BELIEVE_PCC_PROMOTION) && (TARGET_BYTE_ORDER == BIG_ENDIAN)
bd5635a1 1678 /* If PCC says a parameter is a short or a char,
f2c365f5
JK
1679 aligned on an int boundary, realign it to the "little end"
1680 of the int. */
318bf84f
FF
1681 temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
1682 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
f2c365f5
JK
1683 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1684 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (temptype))
318bf84f 1685 {
f2c365f5
JK
1686 SYMBOL_VALUE (sym) += TYPE_LENGTH (temptype)
1687 - TYPE_LENGTH (SYMBOL_TYPE (sym));
318bf84f 1688 }
bd5635a1
RP
1689#endif
1690 break;
1691
1692 case C_REGPARM:
1693 SYMBOL_CLASS (sym) = LOC_REGPARM;
d8ce1326 1694 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
318bf84f 1695 coff_add_symbol_to_list (sym, &coff_local_symbols);
bd5635a1 1696#if !defined (BELIEVE_PCC_PROMOTION)
f2c365f5
JK
1697 /* FIXME: This should retain the current type, since it's just
1698 a register value. gnu@adobe, 26Feb93 */
bd5635a1
RP
1699 /* If PCC says a parameter is a short or a char,
1700 it is really an int. */
318bf84f
FF
1701 temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
1702 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1703 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
1704 {
1705 SYMBOL_TYPE (sym) = TYPE_UNSIGNED (SYMBOL_TYPE (sym))
1706 ? lookup_fundamental_type (current_objfile,
1707 FT_UNSIGNED_INTEGER)
1708 : temptype;
1709 }
bd5635a1
RP
1710#endif
1711 break;
1712
1713 case C_TPDEF:
1714 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1715 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1716
1717 /* If type has no name, give it one */
318bf84f
FF
1718 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1719 TYPE_NAME (SYMBOL_TYPE (sym)) = concat (SYMBOL_NAME (sym), NULL);
bd5635a1
RP
1720
1721 /* Keep track of any type which points to empty structured type,
f70be3e4
JG
1722 so it can be filled from a definition from another file. A
1723 simple forward reference (TYPE_CODE_UNDEF) is not an
1724 empty structured type, though; the forward references
1725 work themselves out via the magic of coff_lookup_type. */
bd5635a1 1726 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR &&
f70be3e4
JG
1727 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0 &&
1728 TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
1729 TYPE_CODE_UNDEF)
bd5635a1
RP
1730 {
1731 register int i = hashname (SYMBOL_NAME (sym));
1732
1733 SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
1734 opaque_type_chain[i] = sym;
1735 }
318bf84f 1736 coff_add_symbol_to_list (sym, &coff_file_symbols);
bd5635a1
RP
1737 break;
1738
1739 case C_STRTAG:
1740 case C_UNTAG:
1741 case C_ENTAG:
1742 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1743 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
318bf84f 1744 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
bd5635a1
RP
1745 TYPE_NAME (SYMBOL_TYPE (sym))
1746 = concat ("",
1747 (cs->c_sclass == C_ENTAG
1748 ? "enum "
1749 : (cs->c_sclass == C_STRTAG
1750 ? "struct " : "union ")),
58ae87f6 1751 SYMBOL_NAME (sym), NULL);
318bf84f 1752 coff_add_symbol_to_list (sym, &coff_file_symbols);
bd5635a1
RP
1753 break;
1754
1755 default:
1756 break;
1757 }
1758 }
1759 return sym;
1760}
1761\f
1762/* Decode a coff type specifier;
1763 return the type that is meant. */
1764
1765static
1766struct type *
1767decode_type (cs, c_type, aux)
1768 register struct coff_symbol *cs;
1769 unsigned int c_type;
dcc35536 1770 register union internal_auxent *aux;
bd5635a1
RP
1771{
1772 register struct type *type = 0;
1773 unsigned int new_c_type;
1774
1775 if (c_type & ~N_BTMASK)
1776 {
1777 new_c_type = DECREF (c_type);
1778 if (ISPTR (c_type))
1779 {
1780 type = decode_type (cs, new_c_type, aux);
1781 type = lookup_pointer_type (type);
1782 }
1783 else if (ISFCN (c_type))
1784 {
1785 type = decode_type (cs, new_c_type, aux);
1786 type = lookup_function_type (type);
1787 }
1788 else if (ISARY (c_type))
1789 {
1790 int i, n;
1791 register unsigned short *dim;
a8a69e63 1792 struct type *base_type, *index_type, *range_type;
bd5635a1
RP
1793
1794 /* Define an array type. */
1795 /* auxent refers to array, not base type */
6988f5c0 1796 if (aux->x_sym.x_tagndx.l == 0)
e64fbb3a 1797 cs->c_naux = 0;
bd5635a1
RP
1798
1799 /* shift the indices down */
1800 dim = &aux->x_sym.x_fcnary.x_ary.x_dimen[0];
1801 i = 1;
1802 n = dim[0];
1803 for (i = 0; *dim && i < DIMNUM - 1; i++, dim++)
1804 *dim = *(dim + 1);
1805 *dim = 0;
1806
bd5635a1 1807 base_type = decode_type (cs, new_c_type, aux);
85f0a848 1808 index_type = lookup_fundamental_type (current_objfile, FT_INTEGER);
a8a69e63
FF
1809 range_type =
1810 create_range_type ((struct type *) NULL, index_type, 0, n - 1);
1811 type =
1812 create_array_type ((struct type *) NULL, base_type, range_type);
bd5635a1
RP
1813 }
1814 return type;
1815 }
1816
f70be3e4
JG
1817 /* Reference to existing type. This only occurs with the
1818 struct, union, and enum types. EPI a29k coff
1819 fakes us out by producing aux entries with a nonzero
1820 x_tagndx for definitions of structs, unions, and enums, so we
117f631e
ILT
1821 have to check the c_sclass field. SCO 3.2v4 cc gets confused
1822 with pointers to pointers to defined structs, and generates
1823 negative x_tagndx fields. */
e64fbb3a 1824 if (cs->c_naux > 0 && aux->x_sym.x_tagndx.l != 0)
bd5635a1 1825 {
117f631e
ILT
1826 if (cs->c_sclass != C_STRTAG
1827 && cs->c_sclass != C_UNTAG
1828 && cs->c_sclass != C_ENTAG
1829 && aux->x_sym.x_tagndx.l >= 0)
f70be3e4
JG
1830 {
1831 type = coff_alloc_type (aux->x_sym.x_tagndx.l);
1832 return type;
1833 } else {
1834 complain (&tagndx_bad_complaint, cs->c_name);
1835 /* And fall through to decode_base_type... */
1836 }
bd5635a1
RP
1837 }
1838
1839 return decode_base_type (cs, BTYPE (c_type), aux);
1840}
1841
1842/* Decode a coff type specifier for function definition;
1843 return the type that the function returns. */
1844
1845static
1846struct type *
1847decode_function_type (cs, c_type, aux)
1848 register struct coff_symbol *cs;
1849 unsigned int c_type;
dcc35536 1850 register union internal_auxent *aux;
bd5635a1 1851{
6988f5c0 1852 if (aux->x_sym.x_tagndx.l == 0)
e64fbb3a 1853 cs->c_naux = 0; /* auxent refers to function, not base type */
bd5635a1
RP
1854
1855 return decode_type (cs, DECREF (c_type), aux);
1856}
1857\f
1858/* basic C types */
1859
1860static
1861struct type *
1862decode_base_type (cs, c_type, aux)
1863 register struct coff_symbol *cs;
1864 unsigned int c_type;
dcc35536 1865 register union internal_auxent *aux;
bd5635a1
RP
1866{
1867 struct type *type;
1868
1869 switch (c_type)
1870 {
1871 case T_NULL:
1872 /* shows up with "void (*foo)();" structure members */
318bf84f 1873 return lookup_fundamental_type (current_objfile, FT_VOID);
bd5635a1 1874
8aa13b87
JK
1875#if 0
1876/* DGUX actually defines both T_ARG and T_VOID to the same value. */
bd5635a1
RP
1877#ifdef T_ARG
1878 case T_ARG:
1879 /* Shows up in DGUX, I think. Not sure where. */
318bf84f 1880 return lookup_fundamental_type (current_objfile, FT_VOID); /* shouldn't show up here */
bd5635a1 1881#endif
8aa13b87 1882#endif /* 0 */
bd5635a1
RP
1883
1884#ifdef T_VOID
1885 case T_VOID:
1886 /* Intel 960 COFF has this symbol and meaning. */
318bf84f 1887 return lookup_fundamental_type (current_objfile, FT_VOID);
bd5635a1
RP
1888#endif
1889
1890 case T_CHAR:
318bf84f 1891 return lookup_fundamental_type (current_objfile, FT_CHAR);
bd5635a1
RP
1892
1893 case T_SHORT:
318bf84f 1894 return lookup_fundamental_type (current_objfile, FT_SHORT);
bd5635a1
RP
1895
1896 case T_INT:
318bf84f 1897 return lookup_fundamental_type (current_objfile, FT_INTEGER);
bd5635a1
RP
1898
1899 case T_LONG:
318bf84f 1900 return lookup_fundamental_type (current_objfile, FT_LONG);
bd5635a1
RP
1901
1902 case T_FLOAT:
318bf84f 1903 return lookup_fundamental_type (current_objfile, FT_FLOAT);
bd5635a1
RP
1904
1905 case T_DOUBLE:
318bf84f 1906 return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
bd5635a1
RP
1907
1908 case T_STRUCT:
e64fbb3a 1909 if (cs->c_naux != 1)
bd5635a1
RP
1910 {
1911 /* anonymous structure type */
1912 type = coff_alloc_type (cs->c_symnum);
1913 TYPE_CODE (type) = TYPE_CODE_STRUCT;
58ae87f6 1914 TYPE_NAME (type) = concat ("struct ", "<opaque>", NULL);
be8303da 1915 INIT_CPLUS_SPECIFIC(type);
bd5635a1
RP
1916 TYPE_LENGTH (type) = 0;
1917 TYPE_FIELDS (type) = 0;
1918 TYPE_NFIELDS (type) = 0;
1919 }
1920 else
1921 {
318bf84f 1922 type = coff_read_struct_type (cs->c_symnum,
bd5635a1 1923 aux->x_sym.x_misc.x_lnsz.x_size,
be8303da 1924 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
bd5635a1
RP
1925 }
1926 return type;
1927
1928 case T_UNION:
e64fbb3a 1929 if (cs->c_naux != 1)
bd5635a1
RP
1930 {
1931 /* anonymous union type */
1932 type = coff_alloc_type (cs->c_symnum);
58ae87f6 1933 TYPE_NAME (type) = concat ("union ", "<opaque>", NULL);
be8303da 1934 INIT_CPLUS_SPECIFIC(type);
f1d77e90 1935 TYPE_LENGTH (type) = 0;
bd5635a1
RP
1936 TYPE_LENGTH (type) = 0;
1937 TYPE_FIELDS (type) = 0;
1938 TYPE_NFIELDS (type) = 0;
1939 }
1940 else
1941 {
318bf84f 1942 type = coff_read_struct_type (cs->c_symnum,
bd5635a1 1943 aux->x_sym.x_misc.x_lnsz.x_size,
be8303da 1944 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
bd5635a1
RP
1945 }
1946 TYPE_CODE (type) = TYPE_CODE_UNION;
1947 return type;
1948
1949 case T_ENUM:
318bf84f 1950 return coff_read_enum_type (cs->c_symnum,
bd5635a1 1951 aux->x_sym.x_misc.x_lnsz.x_size,
be8303da 1952 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
bd5635a1
RP
1953
1954 case T_MOE:
1955 /* shouldn't show up here */
1956 break;
1957
1958 case T_UCHAR:
318bf84f 1959 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
bd5635a1
RP
1960
1961 case T_USHORT:
318bf84f 1962 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
bd5635a1
RP
1963
1964 case T_UINT:
318bf84f 1965 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
bd5635a1
RP
1966
1967 case T_ULONG:
318bf84f 1968 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG);
bd5635a1 1969 }
7e258d18 1970 complain (&unexpected_type_complaint, cs->c_name);
318bf84f 1971 return lookup_fundamental_type (current_objfile, FT_VOID);
bd5635a1
RP
1972}
1973\f
1974/* This page contains subroutines of read_type. */
1975
1976/* Read the description of a structure (or union type)
1977 and return an object describing the type. */
1978
1979static struct type *
318bf84f 1980coff_read_struct_type (index, length, lastsym)
bd5635a1
RP
1981 int index;
1982 int length;
1983 int lastsym;
1984{
1985 struct nextfield
1986 {
1987 struct nextfield *next;
1988 struct field field;
1989 };
1990
1991 register struct type *type;
1992 register struct nextfield *list = 0;
1993 struct nextfield *new;
1994 int nfields = 0;
1995 register int n;
1996 char *name;
bd5635a1
RP
1997 struct coff_symbol member_sym;
1998 register struct coff_symbol *ms = &member_sym;
dcc35536
JG
1999 struct internal_syment sub_sym;
2000 union internal_auxent sub_aux;
bd5635a1
RP
2001 int done = 0;
2002
2003 type = coff_alloc_type (index);
2004 TYPE_CODE (type) = TYPE_CODE_STRUCT;
be8303da 2005 INIT_CPLUS_SPECIFIC(type);
bd5635a1
RP
2006 TYPE_LENGTH (type) = length;
2007
2008 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2009 {
2010 read_one_sym (ms, &sub_sym, &sub_aux);
2011 name = ms->c_name;
de9bef49 2012 name = EXTERNAL_NAME (name, current_objfile->obfd);
bd5635a1
RP
2013
2014 switch (ms->c_sclass)
2015 {
2016 case C_MOS:
2017 case C_MOU:
2018
2019 /* Get space to record the next field's data. */
2020 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2021 new->next = list;
2022 list = new;
2023
2024 /* Save the data. */
2025 list->field.name = savestring (name, strlen (name));
2026 list->field.type = decode_type (ms, ms->c_type, &sub_aux);
2027 list->field.bitpos = 8 * ms->c_value;
2028 list->field.bitsize = 0;
2029 nfields++;
2030 break;
2031
2032 case C_FIELD:
2033
2034 /* Get space to record the next field's data. */
2035 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2036 new->next = list;
2037 list = new;
2038
2039 /* Save the data. */
2040 list->field.name = savestring (name, strlen (name));
2041 list->field.type = decode_type (ms, ms->c_type, &sub_aux);
2042 list->field.bitpos = ms->c_value;
2043 list->field.bitsize = sub_aux.x_sym.x_misc.x_lnsz.x_size;
2044 nfields++;
2045 break;
2046
2047 case C_EOS:
2048 done = 1;
2049 break;
2050 }
2051 }
2052 /* Now create the vector of fields, and record how big it is. */
2053
2054 TYPE_NFIELDS (type) = nfields;
2055 TYPE_FIELDS (type) = (struct field *)
85f0a848 2056 TYPE_ALLOC (type, sizeof (struct field) * nfields);
bd5635a1
RP
2057
2058 /* Copy the saved-up fields into the field vector. */
2059
2060 for (n = nfields; list; list = list->next)
2061 TYPE_FIELD (type, --n) = list->field;
2062
2063 return type;
2064}
2065\f
2066/* Read a definition of an enumeration type,
2067 and create and return a suitable type object.
2068 Also defines the symbols that represent the values of the type. */
2069
61a7292f 2070/* ARGSUSED */
bd5635a1 2071static struct type *
318bf84f 2072coff_read_enum_type (index, length, lastsym)
bd5635a1
RP
2073 int index;
2074 int length;
2075 int lastsym;
2076{
2077 register struct symbol *sym;
2078 register struct type *type;
2079 int nsyms = 0;
2080 int done = 0;
318bf84f 2081 struct coff_pending **symlist;
bd5635a1
RP
2082 struct coff_symbol member_sym;
2083 register struct coff_symbol *ms = &member_sym;
dcc35536
JG
2084 struct internal_syment sub_sym;
2085 union internal_auxent sub_aux;
318bf84f 2086 struct coff_pending *osyms, *syms;
bd5635a1
RP
2087 register int n;
2088 char *name;
bd5635a1
RP
2089
2090 type = coff_alloc_type (index);
2091 if (within_function)
318bf84f 2092 symlist = &coff_local_symbols;
bd5635a1 2093 else
318bf84f 2094 symlist = &coff_file_symbols;
bd5635a1
RP
2095 osyms = *symlist;
2096
2097 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2098 {
2099 read_one_sym (ms, &sub_sym, &sub_aux);
2100 name = ms->c_name;
de9bef49 2101 name = EXTERNAL_NAME (name, current_objfile->obfd);
bd5635a1
RP
2102
2103 switch (ms->c_sclass)
2104 {
2105 case C_MOE:
2106 sym = (struct symbol *) xmalloc (sizeof (struct symbol));
4ed3a9ea 2107 memset (sym, 0, sizeof (struct symbol));
bd5635a1
RP
2108
2109 SYMBOL_NAME (sym) = savestring (name, strlen (name));
2110 SYMBOL_CLASS (sym) = LOC_CONST;
2111 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2112 SYMBOL_VALUE (sym) = ms->c_value;
318bf84f 2113 coff_add_symbol_to_list (sym, symlist);
bd5635a1
RP
2114 nsyms++;
2115 break;
2116
2117 case C_EOS:
2118 /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
2119 up the count of how many symbols to read. So stop
2120 on .eos. */
2121 done = 1;
2122 break;
2123 }
2124 }
2125
2126 /* Now fill in the fields of the type-structure. */
2127
f2c365f5
JK
2128 if (length > 0)
2129 TYPE_LENGTH (type) = length;
2130 else
2131 TYPE_LENGTH (type) = TARGET_INT_BIT / TARGET_CHAR_BIT; /* Assume ints */
bd5635a1
RP
2132 TYPE_CODE (type) = TYPE_CODE_ENUM;
2133 TYPE_NFIELDS (type) = nsyms;
2134 TYPE_FIELDS (type) = (struct field *)
85f0a848 2135 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
bd5635a1
RP
2136
2137 /* Find the symbols for the values and put them into the type.
2138 The symbols can be found in the symlist that we put them on
2139 to cause them to be defined. osyms contains the old value
2140 of that symlist; everything up to there was defined by us. */
2141
2142 for (syms = *symlist, n = nsyms; syms != osyms; syms = syms->next)
2143 {
2144 SYMBOL_TYPE (syms->symbol) = type;
2145 TYPE_FIELD_NAME (type, --n) = SYMBOL_NAME (syms->symbol);
2146 TYPE_FIELD_VALUE (type, n) = 0;
2147 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (syms->symbol);
2148 TYPE_FIELD_BITSIZE (type, n) = 0;
2149 }
d8ce1326
JG
2150 /* Is this Modula-2's BOOLEAN type? Flag it as such if so. */
2151 if(TYPE_NFIELDS(type) == 2 &&
c653bc6d
JG
2152 ((STREQ(TYPE_FIELD_NAME(type,0),"TRUE") &&
2153 STREQ(TYPE_FIELD_NAME(type,1),"FALSE")) ||
2154 (STREQ(TYPE_FIELD_NAME(type,1),"TRUE") &&
2155 STREQ(TYPE_FIELD_NAME(type,0),"FALSE"))))
d8ce1326 2156 TYPE_CODE(type) = TYPE_CODE_BOOL;
bd5635a1
RP
2157 return type;
2158}
2159
85f0a848
FF
2160/* Fake up support for relocating symbol addresses. FIXME. */
2161
2162struct section_offsets coff_symfile_faker = {0};
2163
2164struct section_offsets *
2165coff_symfile_offsets (objfile, addr)
2166 struct objfile *objfile;
2167 CORE_ADDR addr;
2168{
2169 return &coff_symfile_faker;
2170}
2171
bd5635a1
RP
2172/* Register our ability to parse symbols for coff BFD files */
2173
2174static struct sym_fns coff_sym_fns =
2175{
80d68b1d
FF
2176 "coff", /* sym_name: name or name prefix of BFD target type */
2177 4, /* sym_namelen: number of significant sym_name chars */
2178 coff_new_init, /* sym_new_init: init anything gbl to entire symtab */
2179 coff_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2180 coff_symfile_read, /* sym_read: read a symbol file into symtab */
2181 coff_symfile_finish, /* sym_finish: finished with file, cleanup */
85f0a848 2182 coff_symfile_offsets, /* sym_offsets: xlate external to internal form */
80d68b1d 2183 NULL /* next: pointer to next struct sym_fns */
bd5635a1
RP
2184};
2185
2186void
2187_initialize_coffread ()
2188{
2189 add_symtab_fns(&coff_sym_fns);
2190}
This page took 0.18985 seconds and 4 git commands to generate.