]>
Commit | Line | Data |
---|---|---|
9b280a7f | 1 | /* Read AIX xcoff symbol tables and convert to internal format, for GDB. |
436d4143 | 2 | Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996 |
9b280a7f | 3 | Free Software Foundation, Inc. |
e38e0312 JG |
4 | Derived from coffread.c, dbxread.c, and a lot of hacking. |
5 | Contributed by IBM Corporation. | |
6 | ||
7 | This file is part of GDB. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 2 of the License, or | |
12 | (at your option) any later version. | |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
20 | along with this program; if not, write to the Free Software | |
6c9638b4 | 21 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
e38e0312 | 22 | |
dd469789 JG |
23 | #include "defs.h" |
24 | #include "bfd.h" | |
25 | ||
e38e0312 JG |
26 | #include <sys/types.h> |
27 | #include <fcntl.h> | |
28 | #include <ctype.h> | |
2b576293 | 29 | #include "gdb_string.h" |
e38e0312 | 30 | |
e38e0312 | 31 | #include <sys/param.h> |
5e4d4b0f | 32 | #ifndef NO_SYS_FILE |
e38e0312 | 33 | #include <sys/file.h> |
5e4d4b0f | 34 | #endif |
2b576293 | 35 | #include "gdb_stat.h" |
e38e0312 | 36 | |
a367db89 | 37 | #include "coff/internal.h" |
27ad511f | 38 | #include "libcoff.h" /* FIXME, internal data from BFD */ |
a367db89 | 39 | #include "coff/rs6000.h" |
27ad511f | 40 | |
e38e0312 | 41 | #include "symtab.h" |
1ab3bf1b | 42 | #include "gdbtypes.h" |
e38e0312 | 43 | #include "symfile.h" |
5e2e79f8 | 44 | #include "objfiles.h" |
e38e0312 | 45 | #include "buildsym.h" |
d07734e3 | 46 | #include "stabsread.h" |
df1e1074 PS |
47 | #include "expression.h" |
48 | #include "language.h" /* Needed inside partial-stab.h */ | |
dd469789 | 49 | #include "complaints.h" |
e38e0312 | 50 | |
a81ce07d JK |
51 | #include "gdb-stabs.h" |
52 | ||
73262420 | 53 | /* For interface with stabsread.c. */ |
c41e08c4 | 54 | #include "aout/stab_gnu.h" |
1eeba686 | 55 | |
a367db89 JK |
56 | /* For interface with partial-stab.h. */ |
57 | #define N_UNDF 0 /* Undefined symbol */ | |
58 | #undef N_ABS | |
59 | #define N_ABS 2 | |
60 | #define N_TEXT 4 /* Text sym -- defined at offset in text seg */ | |
61 | #define N_DATA 6 /* Data sym -- defined at offset in data seg */ | |
62 | #define N_BSS 8 /* BSS sym -- defined at offset in zero'd seg */ | |
63 | #define N_COMM 0x12 /* Common symbol (visible after shared lib dynlink) */ | |
64 | #define N_FN 0x1f /* File name of .o file */ | |
65 | #define N_FN_SEQ 0x0C /* N_FN from Sequent compilers (sigh) */ | |
66 | /* Note: N_EXT can only be usefully OR-ed with N_UNDF, N_ABS, N_TEXT, | |
67 | N_DATA, or N_BSS. When the low-order bit of other types is set, | |
68 | (e.g. N_WARNING versus N_FN), they are two different types. */ | |
69 | #define N_EXT 1 /* External symbol (as opposed to local-to-this-file) */ | |
70 | #define N_INDR 0x0a | |
71 | ||
72 | /* The following symbols refer to set elements. | |
73 | All the N_SET[ATDB] symbols with the same name form one set. | |
74 | Space is allocated for the set in the text section, and each set | |
75 | elements value is stored into one word of the space. | |
76 | The first word of the space is the length of the set (number of elements). | |
77 | ||
78 | The address of the set is made into an N_SETV symbol | |
79 | whose name is the same as the name of the set. | |
80 | This symbol acts like a N_DATA global symbol | |
81 | in that it can satisfy undefined external references. */ | |
82 | ||
83 | /* These appear as input to LD, in a .o file. */ | |
84 | #define N_SETA 0x14 /* Absolute set element symbol */ | |
85 | #define N_SETT 0x16 /* Text set element symbol */ | |
86 | #define N_SETD 0x18 /* Data set element symbol */ | |
87 | #define N_SETB 0x1A /* Bss set element symbol */ | |
88 | ||
89 | /* This is output from LD. */ | |
90 | #define N_SETV 0x1C /* Pointer to set vector in data area. */ | |
062cb0d3 FF |
91 | |
92 | /* Hook for recording the toc offset value of a symbol table into | |
93 | the ldinfo structure. */ | |
94 | ||
95 | void (*xcoff_add_toc_to_loadinfo_hook) PARAMS ((unsigned long)) = NULL; | |
96 | ||
97 | /* Hook for recording how to call xcoff_init_loadinfo for a native | |
98 | rs6000 config only. */ | |
99 | ||
100 | void (*xcoff_init_loadinfo_hook) PARAMS ((void)) = NULL; | |
101 | ||
a367db89 | 102 | \f |
bbb053fd JK |
103 | /* We put a pointer to this structure in the read_symtab_private field |
104 | of the psymtab. */ | |
a367db89 JK |
105 | |
106 | struct symloc { | |
107 | ||
108 | /* First symbol number for this file. */ | |
109 | ||
110 | int first_symnum; | |
111 | ||
112 | /* Number of symbols in the section of the symbol table devoted to | |
113 | this file's symbols (actually, the section bracketed may contain | |
114 | more than just this file's symbols). If numsyms is 0, the only | |
115 | reason for this thing's existence is the dependency list. Nothing | |
116 | else will happen when it is read in. */ | |
117 | ||
118 | int numsyms; | |
119 | ||
120 | /* Position of the start of the line number information for this psymtab. */ | |
121 | unsigned int lineno_off; | |
122 | }; | |
123 | ||
124 | /* Remember what we deduced to be the source language of this psymtab. */ | |
125 | ||
126 | static enum language psymtab_language = language_unknown; | |
127 | ||
128 | \f | |
e38e0312 JG |
129 | /* Simplified internal version of coff symbol table information */ |
130 | ||
131 | struct coff_symbol { | |
132 | char *c_name; | |
133 | int c_symnum; /* symbol number of this entry */ | |
d4a0983a | 134 | int c_naux; /* 0 if syment only, 1 if syment + auxent */ |
e38e0312 | 135 | long c_value; |
ef5b809c | 136 | unsigned char c_sclass; |
e38e0312 JG |
137 | int c_secnum; |
138 | unsigned int c_type; | |
139 | }; | |
140 | ||
e38e0312 JG |
141 | /* last function's saved coff symbol `cs' */ |
142 | ||
143 | static struct coff_symbol fcn_cs_saved; | |
144 | ||
145 | static bfd *symfile_bfd; | |
146 | ||
147 | /* Core address of start and end of text of current source file. | |
148 | This is calculated from the first function seen after a C_FILE | |
149 | symbol. */ | |
150 | ||
818de002 | 151 | |
e38e0312 JG |
152 | static CORE_ADDR cur_src_end_addr; |
153 | ||
154 | /* Core address of the end of the first object file. */ | |
155 | ||
156 | static CORE_ADDR first_object_file_end; | |
157 | ||
e38e0312 JG |
158 | /* initial symbol-table-debug-string vector length */ |
159 | ||
160 | #define INITIAL_STABVECTOR_LENGTH 40 | |
161 | ||
e38e0312 JG |
162 | /* Nonzero if within a function (so symbols should be local, |
163 | if nothing says specifically). */ | |
164 | ||
165 | int within_function; | |
166 | ||
a367db89 JK |
167 | /* Size of a COFF symbol. I think it is always 18, so I'm not sure |
168 | there is any reason not to just use a #define, but might as well | |
169 | ask BFD for the size and store it here, I guess. */ | |
e38e0312 JG |
170 | |
171 | static unsigned local_symesz; | |
172 | ||
e38e0312 JG |
173 | struct coff_symfile_info { |
174 | file_ptr min_lineno_offset; /* Where in file lowest line#s are */ | |
175 | file_ptr max_lineno_offset; /* 1+last byte of line#s in file */ | |
a367db89 JK |
176 | |
177 | /* Pointer to the string table. */ | |
178 | char *strtbl; | |
179 | ||
180 | /* Pointer to debug section. */ | |
181 | char *debugsec; | |
182 | ||
183 | /* Pointer to the a.out symbol table. */ | |
184 | char *symtbl; | |
185 | ||
186 | /* Number of symbols in symtbl. */ | |
187 | int symtbl_num_syms; | |
e38e0312 JG |
188 | }; |
189 | ||
dd469789 JG |
190 | static struct complaint storclass_complaint = |
191 | {"Unexpected storage class: %d", 0, 0}; | |
192 | ||
193 | static struct complaint bf_notfound_complaint = | |
194 | {"line numbers off, `.bf' symbol not found", 0, 0}; | |
e38e0312 | 195 | |
df1e1074 PS |
196 | static struct complaint ef_complaint = |
197 | {"Mismatched .ef symbol ignored starting at symnum %d", 0, 0}; | |
198 | ||
199 | static struct complaint eb_complaint = | |
200 | {"Mismatched .eb symbol ignored starting at symnum %d", 0, 0}; | |
f8203ed0 | 201 | |
1ab3bf1b | 202 | static void |
818de002 PB |
203 | enter_line_range PARAMS ((struct subfile *, unsigned, unsigned, |
204 | CORE_ADDR, CORE_ADDR, unsigned *)); | |
1ab3bf1b | 205 | |
1ab3bf1b | 206 | static void |
d5931d79 | 207 | init_stringtab PARAMS ((bfd *, file_ptr, struct objfile *)); |
1ab3bf1b JG |
208 | |
209 | static void | |
9b280a7f | 210 | xcoff_symfile_init PARAMS ((struct objfile *)); |
80d68b1d FF |
211 | |
212 | static void | |
9b280a7f | 213 | xcoff_new_init PARAMS ((struct objfile *)); |
80d68b1d | 214 | |
1ab3bf1b | 215 | static void |
9b280a7f | 216 | xcoff_symfile_finish PARAMS ((struct objfile *)); |
1ab3bf1b | 217 | |
fe0b60b2 | 218 | static struct section_offsets * |
9b280a7f | 219 | xcoff_symfile_offsets PARAMS ((struct objfile *, CORE_ADDR)); |
2670f34d | 220 | |
1ab3bf1b JG |
221 | static void |
222 | find_linenos PARAMS ((bfd *, sec_ptr, PTR)); | |
223 | ||
e8abe489 | 224 | static char * |
a367db89 | 225 | coff_getfilename PARAMS ((union internal_auxent *, struct objfile *)); |
e8abe489 | 226 | |
3c02636b JK |
227 | static void |
228 | read_symbol PARAMS ((struct internal_syment *, int)); | |
229 | ||
1ab3bf1b | 230 | static int |
c84a96d7 | 231 | read_symbol_lineno PARAMS ((int)); |
1ab3bf1b JG |
232 | |
233 | static int | |
c84a96d7 | 234 | read_symbol_nvalue PARAMS ((int)); |
1ab3bf1b JG |
235 | |
236 | static struct symbol * | |
237 | process_xcoff_symbol PARAMS ((struct coff_symbol *, struct objfile *)); | |
238 | ||
239 | static void | |
a367db89 | 240 | read_xcoff_symtab PARAMS ((struct partial_symtab *)); |
1ab3bf1b | 241 | |
1ab3bf1b JG |
242 | static void |
243 | add_stab_to_list PARAMS ((char *, struct pending_stabs **)); | |
244 | ||
a81ce07d | 245 | \f |
a367db89 JK |
246 | /* Translate from a COFF section number (target_index) to a SECT_OFF_* |
247 | code. */ | |
248 | static int secnum_to_section PARAMS ((int, struct objfile *)); | |
a81ce07d JK |
249 | |
250 | struct find_targ_sec_arg { | |
251 | int targ_index; | |
252 | int *resultp; | |
253 | }; | |
254 | ||
255 | static void find_targ_sec PARAMS ((bfd *, asection *, void *)); | |
256 | ||
257 | static void find_targ_sec (abfd, sect, obj) | |
258 | bfd *abfd; | |
259 | asection *sect; | |
260 | PTR obj; | |
261 | { | |
262 | struct find_targ_sec_arg *args = (struct find_targ_sec_arg *)obj; | |
263 | if (sect->target_index == args->targ_index) | |
264 | { | |
265 | /* This is the section. Figure out what SECT_OFF_* code it is. */ | |
266 | if (bfd_get_section_flags (abfd, sect) & SEC_CODE) | |
267 | *args->resultp = SECT_OFF_TEXT; | |
268 | else if (bfd_get_section_flags (abfd, sect) & SEC_LOAD) | |
269 | *args->resultp = SECT_OFF_DATA; | |
270 | else | |
271 | *args->resultp = SECT_OFF_BSS; | |
272 | } | |
273 | } | |
274 | ||
275 | /* Return the section number (SECT_OFF_*) that CS points to. */ | |
276 | static int | |
a367db89 JK |
277 | secnum_to_section (secnum, objfile) |
278 | int secnum; | |
a81ce07d JK |
279 | struct objfile *objfile; |
280 | { | |
281 | int off = SECT_OFF_TEXT; | |
282 | struct find_targ_sec_arg args; | |
a367db89 | 283 | args.targ_index = secnum; |
a81ce07d JK |
284 | args.resultp = &off; |
285 | bfd_map_over_sections (objfile->obfd, find_targ_sec, &args); | |
286 | return off; | |
287 | } | |
a81ce07d | 288 | \f |
e38e0312 JG |
289 | /* add a given stab string into given stab vector. */ |
290 | ||
291 | static void | |
292 | add_stab_to_list (stabname, stabvector) | |
293 | char *stabname; | |
294 | struct pending_stabs **stabvector; | |
295 | { | |
296 | if ( *stabvector == NULL) { | |
297 | *stabvector = (struct pending_stabs *) | |
298 | xmalloc (sizeof (struct pending_stabs) + | |
299 | INITIAL_STABVECTOR_LENGTH * sizeof (char*)); | |
300 | (*stabvector)->count = 0; | |
301 | (*stabvector)->length = INITIAL_STABVECTOR_LENGTH; | |
302 | } | |
303 | else if ((*stabvector)->count >= (*stabvector)->length) { | |
304 | (*stabvector)->length += INITIAL_STABVECTOR_LENGTH; | |
305 | *stabvector = (struct pending_stabs *) | |
1ab3bf1b | 306 | xrealloc ((char *) *stabvector, sizeof (struct pending_stabs) + |
e38e0312 JG |
307 | (*stabvector)->length * sizeof (char*)); |
308 | } | |
309 | (*stabvector)->stab [(*stabvector)->count++] = stabname; | |
310 | } | |
194d98c6 JK |
311 | \f |
312 | /* Linenos are processed on a file-by-file basis. | |
313 | ||
314 | Two reasons: | |
315 | ||
316 | 1) xlc (IBM's native c compiler) postpones static function code | |
317 | emission to the end of a compilation unit. This way it can | |
318 | determine if those functions (statics) are needed or not, and | |
319 | can do some garbage collection (I think). This makes line | |
320 | numbers and corresponding addresses unordered, and we end up | |
321 | with a line table like: | |
322 | ||
323 | ||
324 | lineno addr | |
325 | foo() 10 0x100 | |
326 | 20 0x200 | |
327 | 30 0x300 | |
328 | ||
329 | foo3() 70 0x400 | |
330 | 80 0x500 | |
331 | 90 0x600 | |
332 | ||
333 | static foo2() | |
334 | 40 0x700 | |
335 | 50 0x800 | |
336 | 60 0x900 | |
337 | ||
338 | and that breaks gdb's binary search on line numbers, if the | |
339 | above table is not sorted on line numbers. And that sort | |
340 | should be on function based, since gcc can emit line numbers | |
341 | like: | |
342 | ||
343 | 10 0x100 - for the init/test part of a for stmt. | |
344 | 20 0x200 | |
345 | 30 0x300 | |
346 | 10 0x400 - for the increment part of a for stmt. | |
e38e0312 | 347 | |
194d98c6 | 348 | arrange_linetable() will do this sorting. |
e38e0312 | 349 | |
194d98c6 | 350 | 2) aix symbol table might look like: |
818de002 | 351 | |
194d98c6 JK |
352 | c_file // beginning of a new file |
353 | .bi // beginning of include file | |
354 | .ei // end of include file | |
355 | .bi | |
356 | .ei | |
818de002 | 357 | |
194d98c6 JK |
358 | basically, .bi/.ei pairs do not necessarily encapsulate |
359 | their scope. They need to be recorded, and processed later | |
360 | on when we come the end of the compilation unit. | |
361 | Include table (inclTable) and process_linenos() handle | |
362 | that. */ | |
818de002 PB |
363 | |
364 | /* compare line table entry addresses. */ | |
365 | ||
194d98c6 | 366 | static int |
818de002 | 367 | compare_lte (lte1, lte2) |
194d98c6 | 368 | struct linetable_entry *lte1, *lte2; |
818de002 PB |
369 | { |
370 | return lte1->pc - lte2->pc; | |
371 | } | |
372 | ||
3f37b696 FF |
373 | /* Given a line table with function entries are marked, arrange its functions |
374 | in ascending order and strip off function entry markers and return it in | |
818de002 | 375 | a newly created table. If the old one is good enough, return the old one. */ |
c438b3af JK |
376 | /* FIXME: I think all this stuff can be replaced by just passing |
377 | sort_linevec = 1 to end_symtab. */ | |
818de002 PB |
378 | |
379 | static struct linetable * | |
380 | arrange_linetable (oldLineTb) | |
a367db89 | 381 | struct linetable *oldLineTb; /* old linetable */ |
818de002 PB |
382 | { |
383 | int ii, jj, | |
384 | newline, /* new line count */ | |
385 | function_count; /* # of functions */ | |
386 | ||
387 | struct linetable_entry *fentry; /* function entry vector */ | |
388 | int fentry_size; /* # of function entries */ | |
389 | struct linetable *newLineTb; /* new line table */ | |
390 | ||
391 | #define NUM_OF_FUNCTIONS 20 | |
392 | ||
393 | fentry_size = NUM_OF_FUNCTIONS; | |
394 | fentry = (struct linetable_entry*) | |
ecfd2b60 | 395 | xmalloc (fentry_size * sizeof (struct linetable_entry)); |
818de002 PB |
396 | |
397 | for (function_count=0, ii=0; ii <oldLineTb->nitems; ++ii) { | |
398 | ||
399 | if (oldLineTb->item[ii].line == 0) { /* function entry found. */ | |
400 | ||
401 | if (function_count >= fentry_size) { /* make sure you have room. */ | |
402 | fentry_size *= 2; | |
403 | fentry = (struct linetable_entry*) | |
ecfd2b60 | 404 | xrealloc (fentry, fentry_size * sizeof (struct linetable_entry)); |
818de002 PB |
405 | } |
406 | fentry[function_count].line = ii; | |
407 | fentry[function_count].pc = oldLineTb->item[ii].pc; | |
408 | ++function_count; | |
409 | } | |
410 | } | |
411 | ||
412 | if (function_count == 0) { | |
413 | free (fentry); | |
414 | return oldLineTb; | |
415 | } | |
416 | else if (function_count > 1) | |
417 | qsort (fentry, function_count, sizeof(struct linetable_entry), compare_lte); | |
418 | ||
419 | /* allocate a new line table. */ | |
ecfd2b60 JK |
420 | newLineTb = (struct linetable *) |
421 | xmalloc | |
422 | (sizeof (struct linetable) + | |
423 | (oldLineTb->nitems - function_count) * sizeof (struct linetable_entry)); | |
818de002 PB |
424 | |
425 | /* if line table does not start with a function beginning, copy up until | |
426 | a function begin. */ | |
427 | ||
428 | newline = 0; | |
429 | if (oldLineTb->item[0].line != 0) | |
430 | for (newline=0; | |
431 | newline < oldLineTb->nitems && oldLineTb->item[newline].line; ++newline) | |
432 | newLineTb->item[newline] = oldLineTb->item[newline]; | |
433 | ||
434 | /* Now copy function lines one by one. */ | |
435 | ||
436 | for (ii=0; ii < function_count; ++ii) { | |
437 | for (jj = fentry[ii].line + 1; | |
438 | jj < oldLineTb->nitems && oldLineTb->item[jj].line != 0; | |
439 | ++jj, ++newline) | |
440 | newLineTb->item[newline] = oldLineTb->item[jj]; | |
441 | } | |
442 | free (fentry); | |
443 | newLineTb->nitems = oldLineTb->nitems - function_count; | |
444 | return newLineTb; | |
445 | } | |
446 | ||
818de002 PB |
447 | /* include file support: C_BINCL/C_EINCL pairs will be kept in the |
448 | following `IncludeChain'. At the end of each symtab (end_symtab), | |
449 | we will determine if we should create additional symtab's to | |
450 | represent if (the include files. */ | |
451 | ||
452 | ||
453 | typedef struct _inclTable { | |
454 | char *name; /* include filename */ | |
2aefe6e4 JK |
455 | |
456 | /* Offsets to the line table. end points to the last entry which is | |
457 | part of this include file. */ | |
458 | int begin, end; | |
459 | ||
818de002 PB |
460 | struct subfile *subfile; |
461 | unsigned funStartLine; /* start line # of its function */ | |
462 | } InclTable; | |
463 | ||
464 | #define INITIAL_INCLUDE_TABLE_LENGTH 20 | |
465 | static InclTable *inclTable; /* global include table */ | |
466 | static int inclIndx; /* last entry to table */ | |
467 | static int inclLength; /* table length */ | |
468 | static int inclDepth; /* nested include depth */ | |
469 | ||
7f4c8595 | 470 | static void allocate_include_entry PARAMS ((void)); |
818de002 PB |
471 | |
472 | static void | |
473 | record_include_begin (cs) | |
474 | struct coff_symbol *cs; | |
475 | { | |
818de002 | 476 | if (inclDepth) |
486b440e JK |
477 | { |
478 | /* In xcoff, we assume include files cannot be nested (not in .c files | |
479 | of course, but in corresponding .s files.). */ | |
480 | ||
67240bb8 JK |
481 | /* This can happen with old versions of GCC. |
482 | GCC 2.3.3-930426 does not exhibit this on a test case which | |
483 | a user said produced the message for him. */ | |
b646b438 | 484 | static struct complaint msg = {"Nested C_BINCL symbols", 0, 0}; |
486b440e JK |
485 | complain (&msg); |
486 | } | |
818de002 PB |
487 | ++inclDepth; |
488 | ||
7f4c8595 | 489 | allocate_include_entry (); |
818de002 PB |
490 | |
491 | inclTable [inclIndx].name = cs->c_name; | |
492 | inclTable [inclIndx].begin = cs->c_value; | |
493 | } | |
494 | ||
818de002 PB |
495 | static void |
496 | record_include_end (cs) | |
497 | struct coff_symbol *cs; | |
498 | { | |
499 | InclTable *pTbl; | |
500 | ||
501 | if (inclDepth == 0) | |
486b440e | 502 | { |
b646b438 | 503 | static struct complaint msg = {"Mismatched C_BINCL/C_EINCL pair", 0, 0}; |
486b440e JK |
504 | complain (&msg); |
505 | } | |
818de002 | 506 | |
7f4c8595 SS |
507 | allocate_include_entry (); |
508 | ||
818de002 PB |
509 | pTbl = &inclTable [inclIndx]; |
510 | pTbl->end = cs->c_value; | |
511 | ||
512 | --inclDepth; | |
513 | ++inclIndx; | |
514 | } | |
515 | ||
7f4c8595 SS |
516 | static void |
517 | allocate_include_entry () | |
518 | { | |
519 | if (inclTable == NULL) | |
520 | { | |
521 | inclTable = (InclTable *) | |
522 | xmalloc (sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH); | |
523 | memset (inclTable, | |
524 | '\0', sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH); | |
525 | inclLength = INITIAL_INCLUDE_TABLE_LENGTH; | |
526 | inclIndx = 0; | |
527 | } | |
528 | else if (inclIndx >= inclLength) | |
529 | { | |
530 | inclLength += INITIAL_INCLUDE_TABLE_LENGTH; | |
531 | inclTable = (InclTable *) | |
532 | xrealloc (inclTable, sizeof (InclTable) * inclLength); | |
533 | memset (inclTable + inclLength - INITIAL_INCLUDE_TABLE_LENGTH, | |
534 | '\0', sizeof (InclTable)*INITIAL_INCLUDE_TABLE_LENGTH); | |
535 | } | |
536 | } | |
818de002 | 537 | |
a367db89 JK |
538 | /* Global variable to pass the psymtab down to all the routines involved |
539 | in psymtab to symtab processing. */ | |
540 | static struct partial_symtab *this_symtab_psymtab; | |
541 | ||
7f4c8595 SS |
542 | /* given the start and end addresses of a compilation unit (or a csect, |
543 | at times) process its lines and create appropriate line vectors. */ | |
818de002 PB |
544 | |
545 | static void | |
546 | process_linenos (start, end) | |
a367db89 | 547 | CORE_ADDR start, end; |
818de002 | 548 | { |
818de002 | 549 | int offset, ii; |
a367db89 JK |
550 | file_ptr max_offset = |
551 | ((struct coff_symfile_info *)this_symtab_psymtab->objfile->sym_private) | |
552 | ->max_lineno_offset; | |
818de002 | 553 | |
5cba5d26 JK |
554 | /* subfile structure for the main compilation unit. */ |
555 | struct subfile main_subfile; | |
818de002 | 556 | |
5cba5d26 JK |
557 | /* In the main source file, any time we see a function entry, we |
558 | reset this variable to function's absolute starting line number. | |
559 | All the following line numbers in the function are relative to | |
560 | this, and we record absolute line numbers in record_line(). */ | |
818de002 | 561 | |
df1e1074 | 562 | unsigned int main_source_baseline = 0; |
818de002 | 563 | |
818de002 | 564 | unsigned *firstLine; |
818de002 | 565 | |
a367db89 JK |
566 | offset = |
567 | ((struct symloc *)this_symtab_psymtab->read_symtab_private)->lineno_off; | |
568 | if (offset == 0) | |
818de002 PB |
569 | goto return_after_cleanup; |
570 | ||
4ed97c9a | 571 | memset (&main_subfile, '\0', sizeof (main_subfile)); |
818de002 PB |
572 | |
573 | if (inclIndx == 0) | |
556f3d90 PB |
574 | /* All source lines were in the main source file. None in include files. */ |
575 | ||
818de002 PB |
576 | enter_line_range (&main_subfile, offset, 0, start, end, |
577 | &main_source_baseline); | |
578 | ||
5cba5d26 JK |
579 | else |
580 | { | |
581 | /* There was source with line numbers in include files. */ | |
582 | main_source_baseline = 0; | |
583 | for (ii=0; ii < inclIndx; ++ii) | |
584 | { | |
585 | struct subfile *tmpSubfile; | |
818de002 | 586 | |
5cba5d26 JK |
587 | /* If there is main file source before include file, enter it. */ |
588 | if (offset < inclTable[ii].begin) | |
589 | { | |
590 | enter_line_range | |
591 | (&main_subfile, offset, inclTable[ii].begin - LINESZ, | |
592 | start, 0, &main_source_baseline); | |
593 | } | |
818de002 | 594 | |
5cba5d26 | 595 | /* Have a new subfile for the include file. */ |
818de002 | 596 | |
5cba5d26 JK |
597 | tmpSubfile = inclTable[ii].subfile = |
598 | (struct subfile *) xmalloc (sizeof (struct subfile)); | |
818de002 | 599 | |
5cba5d26 JK |
600 | memset (tmpSubfile, '\0', sizeof (struct subfile)); |
601 | firstLine = &(inclTable[ii].funStartLine); | |
818de002 | 602 | |
5cba5d26 JK |
603 | /* Enter include file's lines now. */ |
604 | enter_line_range (tmpSubfile, inclTable[ii].begin, | |
605 | inclTable[ii].end, start, 0, firstLine); | |
818de002 | 606 | |
d2fee216 | 607 | if (offset <= inclTable[ii].end) |
fc564b18 | 608 | offset = inclTable[ii].end + LINESZ; |
5cba5d26 | 609 | } |
818de002 | 610 | |
5cba5d26 JK |
611 | /* All the include files' line have been processed at this point. Now, |
612 | enter remaining lines of the main file, if any left. */ | |
a367db89 | 613 | if (offset < max_offset + 1 - LINESZ) |
5cba5d26 JK |
614 | { |
615 | enter_line_range (&main_subfile, offset, 0, start, end, | |
616 | &main_source_baseline); | |
617 | } | |
818de002 PB |
618 | } |
619 | ||
5cba5d26 JK |
620 | /* Process main file's line numbers. */ |
621 | if (main_subfile.line_vector) | |
622 | { | |
623 | struct linetable *lineTb, *lv; | |
818de002 | 624 | |
5cba5d26 | 625 | lv = main_subfile.line_vector; |
818de002 | 626 | |
5cba5d26 JK |
627 | /* Line numbers are not necessarily ordered. xlc compilation will |
628 | put static function to the end. */ | |
818de002 | 629 | |
5cba5d26 JK |
630 | lineTb = arrange_linetable (lv); |
631 | if (lv == lineTb) | |
632 | { | |
633 | current_subfile->line_vector = (struct linetable *) | |
634 | xrealloc (lv, (sizeof (struct linetable) | |
635 | + lv->nitems * sizeof (struct linetable_entry))); | |
636 | } | |
637 | else | |
638 | { | |
639 | free (lv); | |
640 | current_subfile->line_vector = lineTb; | |
641 | } | |
818de002 | 642 | |
5cba5d26 JK |
643 | current_subfile->line_vector_length = |
644 | current_subfile->line_vector->nitems; | |
818de002 | 645 | } |
818de002 | 646 | |
5cba5d26 | 647 | /* Now, process included files' line numbers. */ |
818de002 | 648 | |
5cba5d26 JK |
649 | for (ii=0; ii < inclIndx; ++ii) |
650 | { | |
651 | if ((inclTable[ii].subfile)->line_vector) /* Useless if!!! FIXMEmgo */ | |
652 | { | |
653 | struct linetable *lineTb, *lv; | |
818de002 | 654 | |
5cba5d26 | 655 | lv = (inclTable[ii].subfile)->line_vector; |
818de002 | 656 | |
5cba5d26 JK |
657 | /* Line numbers are not necessarily ordered. xlc compilation will |
658 | put static function to the end. */ | |
818de002 | 659 | |
5cba5d26 | 660 | lineTb = arrange_linetable (lv); |
818de002 | 661 | |
5cba5d26 | 662 | push_subfile (); |
818de002 | 663 | |
5cba5d26 JK |
664 | /* For the same include file, we might want to have more than one |
665 | subfile. This happens if we have something like: | |
818de002 | 666 | |
818de002 PB |
667 | ...... |
668 | #include "foo.h" | |
669 | ...... | |
670 | #include "foo.h" | |
671 | ...... | |
672 | ||
5cba5d26 JK |
673 | while foo.h including code in it. (stupid but possible) |
674 | Since start_subfile() looks at the name and uses an | |
675 | existing one if finds, we need to provide a fake name and | |
676 | fool it. */ | |
677 | ||
678 | #if 0 | |
679 | start_subfile (inclTable[ii].name, (char*)0); | |
680 | #else | |
681 | { | |
682 | /* Pick a fake name that will produce the same results as this | |
683 | one when passed to deduce_language_from_filename. Kludge on | |
684 | top of kludge. */ | |
685 | char *fakename = strrchr (inclTable[ii].name, '.'); | |
686 | if (fakename == NULL) | |
687 | fakename = " ?"; | |
688 | start_subfile (fakename, (char*)0); | |
689 | free (current_subfile->name); | |
690 | } | |
691 | current_subfile->name = strdup (inclTable[ii].name); | |
692 | #endif | |
818de002 | 693 | |
5cba5d26 JK |
694 | if (lv == lineTb) |
695 | { | |
696 | current_subfile->line_vector = | |
697 | (struct linetable *) xrealloc | |
698 | (lv, (sizeof (struct linetable) | |
818de002 PB |
699 | + lv->nitems * sizeof (struct linetable_entry))); |
700 | ||
5cba5d26 JK |
701 | } |
702 | else | |
703 | { | |
704 | free (lv); | |
705 | current_subfile->line_vector = lineTb; | |
706 | } | |
818de002 | 707 | |
5cba5d26 JK |
708 | current_subfile->line_vector_length = |
709 | current_subfile->line_vector->nitems; | |
710 | start_subfile (pop_subfile (), (char*)0); | |
711 | } | |
818de002 | 712 | } |
818de002 | 713 | |
5cba5d26 | 714 | return_after_cleanup: |
818de002 | 715 | |
5cba5d26 | 716 | /* We don't want to keep alloc/free'ing the global include file table. */ |
818de002 PB |
717 | inclIndx = 0; |
718 | ||
5cba5d26 | 719 | /* Start with a fresh subfile structure for the next file. */ |
4ed97c9a | 720 | memset (&main_subfile, '\0', sizeof (struct subfile)); |
818de002 PB |
721 | } |
722 | ||
723 | void | |
724 | aix_process_linenos () | |
725 | { | |
726 | /* process line numbers and enter them into line vector */ | |
727 | process_linenos (last_source_start_addr, cur_src_end_addr); | |
728 | } | |
729 | ||
730 | ||
e38e0312 JG |
731 | /* Enter a given range of lines into the line vector. |
732 | can be called in the following two ways: | |
818de002 | 733 | enter_line_range (subfile, beginoffset, endoffset, startaddr, 0, firstLine) or |
2aefe6e4 JK |
734 | enter_line_range (subfile, beginoffset, 0, startaddr, endaddr, firstLine) |
735 | ||
736 | endoffset points to the last line table entry that we should pay | |
737 | attention to. */ | |
e38e0312 JG |
738 | |
739 | static void | |
a367db89 JK |
740 | enter_line_range (subfile, beginoffset, endoffset, startaddr, endaddr, |
741 | firstLine) | |
742 | struct subfile *subfile; | |
743 | unsigned beginoffset, endoffset; /* offsets to line table */ | |
744 | CORE_ADDR startaddr, endaddr; | |
745 | unsigned *firstLine; | |
e38e0312 | 746 | { |
a367db89 JK |
747 | unsigned int curoffset; |
748 | CORE_ADDR addr; | |
749 | struct external_lineno ext_lnno; | |
750 | struct internal_lineno int_lnno; | |
751 | unsigned int limit_offset; | |
752 | bfd *abfd; | |
818de002 | 753 | |
a367db89 JK |
754 | if (endoffset == 0 && startaddr == 0 && endaddr == 0) |
755 | return; | |
756 | curoffset = beginoffset; | |
757 | limit_offset = | |
758 | ((struct coff_symfile_info *)this_symtab_psymtab->objfile->sym_private) | |
759 | ->max_lineno_offset; | |
e38e0312 | 760 | |
a367db89 | 761 | if (endoffset != 0) |
2aefe6e4 | 762 | { |
a367db89 JK |
763 | if (endoffset >= limit_offset) |
764 | { | |
765 | static struct complaint msg = | |
766 | {"Bad line table offset in C_EINCL directive", 0, 0}; | |
767 | complain (&msg); | |
768 | return; | |
769 | } | |
770 | limit_offset = endoffset; | |
2aefe6e4 | 771 | } |
a367db89 JK |
772 | else |
773 | limit_offset -= 1; | |
774 | abfd = this_symtab_psymtab->objfile->obfd; | |
e38e0312 | 775 | |
a367db89 JK |
776 | while (curoffset <= limit_offset) |
777 | { | |
778 | bfd_seek (abfd, curoffset, SEEK_SET); | |
779 | bfd_read (&ext_lnno, sizeof (struct external_lineno), 1, abfd); | |
780 | bfd_coff_swap_lineno_in (abfd, &ext_lnno, &int_lnno); | |
e38e0312 | 781 | |
a367db89 JK |
782 | /* Find the address this line represents. */ |
783 | addr = (int_lnno.l_lnno | |
784 | ? int_lnno.l_addr.l_paddr | |
785 | : read_symbol_nvalue (int_lnno.l_addr.l_symndx)); | |
786 | addr += ANOFFSET (this_symtab_psymtab->objfile->section_offsets, | |
787 | SECT_OFF_TEXT); | |
e38e0312 | 788 | |
a367db89 JK |
789 | if (addr < startaddr || (endaddr && addr >= endaddr)) |
790 | return; | |
e38e0312 | 791 | |
a367db89 JK |
792 | if (int_lnno.l_lnno == 0) |
793 | { | |
794 | *firstLine = read_symbol_lineno (int_lnno.l_addr.l_symndx); | |
795 | record_line (subfile, 0, addr); | |
796 | --(*firstLine); | |
797 | } | |
798 | else | |
799 | record_line (subfile, *firstLine + int_lnno.l_lnno, addr); | |
800 | curoffset += LINESZ; | |
e38e0312 | 801 | } |
818de002 PB |
802 | } |
803 | ||
818de002 | 804 | |
e38e0312 JG |
805 | /* Save the vital information for use when closing off the current file. |
806 | NAME is the file name the symbols came from, START_ADDR is the first | |
807 | text address for the file, and SIZE is the number of bytes of text. */ | |
808 | ||
809 | #define complete_symtab(name, start_addr) { \ | |
810 | last_source_file = savestring (name, strlen (name)); \ | |
818de002 | 811 | last_source_start_addr = start_addr; \ |
e38e0312 JG |
812 | } |
813 | ||
814 | ||
815 | /* Refill the symbol table input buffer | |
816 | and set the variables that control fetching entries from it. | |
817 | Reports an error if no data available. | |
818 | This function can read past the end of the symbol table | |
819 | (into the string table) but this does no harm. */ | |
820 | ||
821 | /* Reading symbol table has to be fast! Keep the followings as macros, rather | |
822 | than functions. */ | |
823 | ||
a367db89 | 824 | #define RECORD_MINIMAL_SYMBOL(NAME, ADDR, TYPE, SECTION, OBJFILE) \ |
e38e0312 JG |
825 | { \ |
826 | char *namestr; \ | |
a81ce07d JK |
827 | namestr = (NAME); \ |
828 | if (namestr[0] == '.') ++namestr; \ | |
3c02636b | 829 | prim_record_minimal_symbol_and_info (namestr, (ADDR), (TYPE), \ |
8d60affd | 830 | (char *)NULL, (SECTION), (OBJFILE)); \ |
818de002 | 831 | misc_func_recorded = 1; \ |
e38e0312 JG |
832 | } |
833 | ||
834 | ||
9b280a7f | 835 | /* xcoff has static blocks marked in `.bs', `.es' pairs. They cannot be |
e38e0312 JG |
836 | nested. At any given time, a symbol can only be in one static block. |
837 | This is the base address of current static block, zero if non exists. */ | |
838 | ||
839 | static int static_block_base = 0; | |
840 | ||
3c02636b JK |
841 | /* Section number for the current static block. */ |
842 | ||
843 | static int static_block_section = -1; | |
844 | ||
e38e0312 JG |
845 | /* true if space for symbol name has been allocated. */ |
846 | ||
847 | static int symname_alloced = 0; | |
848 | ||
34d265dc JK |
849 | /* Next symbol to read. Pointer into raw seething symbol table. */ |
850 | ||
851 | static char *raw_symbol; | |
852 | ||
853 | /* This is the function which stabsread.c calls to get symbol | |
854 | continuations. */ | |
855 | static char * | |
2dd30c72 FF |
856 | xcoff_next_symbol_text (objfile) |
857 | struct objfile *objfile; | |
34d265dc JK |
858 | { |
859 | struct internal_syment symbol; | |
860 | static struct complaint msg = | |
861 | {"Unexpected symbol continuation", 0, 0}; | |
963dbabe | 862 | char *retval; |
2dd30c72 FF |
863 | /* FIXME: is this the same as the passed arg? */ |
864 | objfile = this_symtab_psymtab->objfile; | |
34d265dc | 865 | |
a367db89 | 866 | bfd_coff_swap_sym_in (objfile->obfd, raw_symbol, &symbol); |
afbdbbd7 | 867 | if (symbol.n_zeroes) |
963dbabe JK |
868 | { |
869 | complain (&msg); | |
870 | ||
871 | /* Return something which points to '\0' and hope the symbol reading | |
872 | code does something reasonable. */ | |
873 | retval = ""; | |
874 | } | |
afbdbbd7 | 875 | else if (symbol.n_sclass & 0x80) |
963dbabe | 876 | { |
a367db89 JK |
877 | retval = |
878 | ((struct coff_symfile_info *)objfile->sym_private)->debugsec | |
879 | + symbol.n_offset; | |
880 | raw_symbol += | |
881 | coff_data (objfile->obfd)->local_symesz; | |
963dbabe JK |
882 | ++symnum; |
883 | } | |
34d265dc | 884 | else |
963dbabe JK |
885 | { |
886 | complain (&msg); | |
887 | ||
888 | /* Return something which points to '\0' and hope the symbol reading | |
889 | code does something reasonable. */ | |
890 | retval = ""; | |
891 | } | |
892 | return retval; | |
34d265dc JK |
893 | } |
894 | ||
a367db89 | 895 | /* Read symbols for a given partial symbol table. */ |
e38e0312 | 896 | |
1ab3bf1b | 897 | static void |
a367db89 JK |
898 | read_xcoff_symtab (pst) |
899 | struct partial_symtab *pst; | |
e38e0312 | 900 | { |
a367db89 | 901 | struct objfile *objfile = pst->objfile; |
e38e0312 | 902 | bfd *abfd = objfile->obfd; |
e38e0312 | 903 | char *raw_auxptr; /* Pointer to first raw aux entry for sym */ |
a367db89 JK |
904 | char *strtbl = ((struct coff_symfile_info *)objfile->sym_private)->strtbl; |
905 | char *debugsec = | |
906 | ((struct coff_symfile_info *)objfile->sym_private)->debugsec; | |
818de002 | 907 | |
e38e0312 | 908 | struct internal_syment symbol[1]; |
6657a0c7 | 909 | union internal_auxent main_aux; |
e38e0312 JG |
910 | struct coff_symbol cs[1]; |
911 | CORE_ADDR file_start_addr = 0; | |
912 | CORE_ADDR file_end_addr = 0; | |
913 | ||
914 | int next_file_symnum = -1; | |
a367db89 | 915 | unsigned int max_symnum; |
e38e0312 JG |
916 | int just_started = 1; |
917 | int depth = 0; | |
df1e1074 | 918 | int fcn_start_addr = 0; |
e38e0312 | 919 | |
1eeba686 PB |
920 | struct coff_symbol fcn_stab_saved; |
921 | ||
e38e0312 JG |
922 | /* fcn_cs_saved is global because process_xcoff_symbol needs it. */ |
923 | union internal_auxent fcn_aux_saved; | |
924 | struct context_stack *new; | |
925 | ||
926 | char *filestring = " _start_ "; /* Name of the current file. */ | |
818de002 PB |
927 | |
928 | char *last_csect_name; /* last seen csect's name and value */ | |
929 | CORE_ADDR last_csect_val; | |
3c02636b | 930 | int last_csect_sec; |
e38e0312 | 931 | |
a367db89 | 932 | this_symtab_psymtab = pst; |
1ab3bf1b | 933 | |
a81ce07d JK |
934 | /* Get the appropriate COFF "constants" related to the file we're |
935 | handling. */ | |
e38e0312 JG |
936 | local_symesz = coff_data (abfd)->local_symesz; |
937 | ||
d07734e3 | 938 | last_source_file = NULL; |
818de002 PB |
939 | last_csect_name = 0; |
940 | last_csect_val = 0; | |
e38e0312 | 941 | |
d07734e3 | 942 | start_stabs (); |
e38e0312 | 943 | start_symtab (filestring, (char *)NULL, file_start_addr); |
a367db89 JK |
944 | symnum = ((struct symloc *)pst->read_symtab_private)->first_symnum; |
945 | max_symnum = | |
946 | symnum + ((struct symloc *)pst->read_symtab_private)->numsyms; | |
e38e0312 JG |
947 | first_object_file_end = 0; |
948 | ||
a367db89 JK |
949 | raw_symbol = |
950 | ((struct coff_symfile_info *) objfile->sym_private)->symtbl | |
951 | + symnum * local_symesz; | |
34d265dc | 952 | |
a367db89 | 953 | while (symnum < max_symnum) |
a81ce07d | 954 | { |
e38e0312 | 955 | |
a81ce07d | 956 | QUIT; /* make this command interruptable. */ |
e38e0312 | 957 | |
a81ce07d JK |
958 | /* READ_ONE_SYMBOL (symbol, cs, symname_alloced); */ |
959 | /* read one symbol into `cs' structure. After processing the | |
960 | whole symbol table, only string table will be kept in memory, | |
961 | symbol table and debug section of xcoff will be freed. Thus | |
962 | we can mark symbols with names in string table as | |
963 | `alloced'. */ | |
964 | { | |
965 | int ii; | |
966 | ||
967 | /* Swap and align the symbol into a reasonable C structure. */ | |
968 | bfd_coff_swap_sym_in (abfd, raw_symbol, symbol); | |
969 | ||
970 | cs->c_symnum = symnum; | |
971 | cs->c_naux = symbol->n_numaux; | |
972 | if (symbol->n_zeroes) | |
786757a9 | 973 | { |
a81ce07d JK |
974 | symname_alloced = 0; |
975 | /* We must use the original, unswapped, name here so the name field | |
976 | pointed to by cs->c_name will persist throughout xcoffread. If | |
977 | we use the new field, it gets overwritten for each symbol. */ | |
978 | cs->c_name = ((struct external_syment *)raw_symbol)->e.e_name; | |
979 | /* If it's exactly E_SYMNMLEN characters long it isn't | |
980 | '\0'-terminated. */ | |
981 | if (cs->c_name[E_SYMNMLEN - 1] != '\0') | |
982 | { | |
983 | char *p; | |
984 | p = obstack_alloc (&objfile->symbol_obstack, E_SYMNMLEN + 1); | |
985 | strncpy (p, cs->c_name, E_SYMNMLEN); | |
986 | p[E_SYMNMLEN] = '\0'; | |
987 | cs->c_name = p; | |
988 | symname_alloced = 1; | |
989 | } | |
990 | } | |
991 | else if (symbol->n_sclass & 0x80) | |
992 | { | |
993 | cs->c_name = debugsec + symbol->n_offset; | |
994 | symname_alloced = 0; | |
995 | } | |
996 | else | |
997 | { | |
998 | /* in string table */ | |
999 | cs->c_name = strtbl + (int)symbol->n_offset; | |
786757a9 JK |
1000 | symname_alloced = 1; |
1001 | } | |
a81ce07d JK |
1002 | cs->c_value = symbol->n_value; |
1003 | cs->c_sclass = symbol->n_sclass; | |
1004 | cs->c_secnum = symbol->n_scnum; | |
1005 | cs->c_type = (unsigned)symbol->n_type; | |
e38e0312 | 1006 | |
a81ce07d JK |
1007 | raw_symbol += coff_data (abfd)->local_symesz; |
1008 | ++symnum; | |
e38e0312 | 1009 | |
a81ce07d JK |
1010 | /* Save addr of first aux entry. */ |
1011 | raw_auxptr = raw_symbol; | |
e38e0312 | 1012 | |
a81ce07d JK |
1013 | /* Skip all the auxents associated with this symbol. */ |
1014 | for (ii = symbol->n_numaux; ii; --ii) | |
1015 | { | |
1016 | raw_symbol += coff_data (abfd)->local_auxesz; | |
1017 | ++symnum; | |
1018 | } | |
e38e0312 | 1019 | } |
e38e0312 | 1020 | |
a81ce07d JK |
1021 | /* if symbol name starts with ".$" or "$", ignore it. */ |
1022 | if (cs->c_name[0] == '$' | |
1023 | || (cs->c_name[1] == '$' && cs->c_name[0] == '.')) | |
1024 | continue; | |
e38e0312 | 1025 | |
a81ce07d | 1026 | if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE) |
d07734e3 | 1027 | { |
a81ce07d JK |
1028 | if (last_source_file) |
1029 | { | |
a367db89 | 1030 | pst->symtab = |
436d4143 | 1031 | end_symtab (cur_src_end_addr, objfile, SECT_OFF_TEXT); |
a81ce07d JK |
1032 | end_stabs (); |
1033 | } | |
e38e0312 | 1034 | |
a81ce07d JK |
1035 | start_stabs (); |
1036 | start_symtab ("_globals_", (char *)NULL, (CORE_ADDR)0); | |
1037 | cur_src_end_addr = first_object_file_end; | |
1038 | /* done with all files, everything from here on is globals */ | |
1039 | } | |
e38e0312 | 1040 | |
a81ce07d JK |
1041 | /* if explicitly specified as a function, treat is as one. */ |
1042 | if (ISFCN(cs->c_type) && cs->c_sclass != C_TPDEF) | |
1043 | { | |
1044 | bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass, | |
1045 | 0, cs->c_naux, &main_aux); | |
1046 | goto function_entry_point; | |
1047 | } | |
e38e0312 | 1048 | |
a81ce07d JK |
1049 | if ((cs->c_sclass == C_EXT || cs->c_sclass == C_HIDEXT) |
1050 | && cs->c_naux == 1) | |
1051 | { | |
1052 | /* Dealing with a symbol with a csect entry. */ | |
e38e0312 | 1053 | |
a81ce07d JK |
1054 | #define CSECT(PP) ((PP)->x_csect) |
1055 | #define CSECT_LEN(PP) (CSECT(PP).x_scnlen.l) | |
1056 | #define CSECT_ALIGN(PP) (SMTYP_ALIGN(CSECT(PP).x_smtyp)) | |
1057 | #define CSECT_SMTYP(PP) (SMTYP_SMTYP(CSECT(PP).x_smtyp)) | |
1058 | #define CSECT_SCLAS(PP) (CSECT(PP).x_smclas) | |
e38e0312 | 1059 | |
a81ce07d JK |
1060 | /* Convert the auxent to something we can access. */ |
1061 | bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass, | |
1062 | 0, cs->c_naux, &main_aux); | |
e38e0312 | 1063 | |
a81ce07d JK |
1064 | switch (CSECT_SMTYP (&main_aux)) |
1065 | { | |
e38e0312 | 1066 | |
a81ce07d JK |
1067 | case XTY_ER: |
1068 | /* Ignore all external references. */ | |
1069 | continue; | |
e38e0312 | 1070 | |
a81ce07d JK |
1071 | case XTY_SD: |
1072 | /* A section description. */ | |
e38e0312 | 1073 | { |
a81ce07d JK |
1074 | switch (CSECT_SCLAS (&main_aux)) |
1075 | { | |
1076 | ||
1077 | case XMC_PR: | |
1078 | { | |
1079 | ||
1080 | /* A program csect is seen. We have to allocate one | |
1081 | symbol table for each program csect. Normally gdb | |
1082 | prefers one symtab for each source file. In case | |
1083 | of AIX, one source file might include more than one | |
1084 | [PR] csect, and they don't have to be adjacent in | |
1085 | terms of the space they occupy in memory. Thus, one | |
1086 | single source file might get fragmented in the | |
1087 | memory and gdb's file start and end address | |
1088 | approach does not work! GCC (and I think xlc) seem | |
1089 | to put all the code in the unnamed program csect. */ | |
1090 | ||
1091 | if (last_csect_name) | |
1092 | { | |
a81ce07d JK |
1093 | complete_symtab (filestring, file_start_addr); |
1094 | cur_src_end_addr = file_end_addr; | |
436d4143 | 1095 | end_symtab (file_end_addr, objfile, SECT_OFF_TEXT); |
a81ce07d JK |
1096 | end_stabs (); |
1097 | start_stabs (); | |
1098 | /* Give all csects for this source file the same | |
1099 | name. */ | |
1100 | start_symtab (filestring, NULL, (CORE_ADDR)0); | |
1101 | } | |
1102 | ||
1103 | /* If this is the very first csect seen, | |
1104 | basically `__start'. */ | |
1105 | if (just_started) | |
1106 | { | |
1107 | first_object_file_end | |
1108 | = cs->c_value + CSECT_LEN (&main_aux); | |
1109 | just_started = 0; | |
1110 | } | |
1111 | ||
a367db89 JK |
1112 | file_start_addr = |
1113 | cs->c_value + ANOFFSET (objfile->section_offsets, | |
1114 | SECT_OFF_TEXT); | |
1115 | file_end_addr = file_start_addr + CSECT_LEN (&main_aux); | |
a81ce07d JK |
1116 | |
1117 | if (cs->c_name && cs->c_name[0] == '.') | |
1118 | { | |
1119 | last_csect_name = cs->c_name; | |
1120 | last_csect_val = cs->c_value; | |
a367db89 | 1121 | last_csect_sec = secnum_to_section (cs->c_secnum, objfile); |
a81ce07d JK |
1122 | } |
1123 | } | |
a81ce07d JK |
1124 | continue; |
1125 | ||
df1e1074 PS |
1126 | /* All other symbols are put into the minimal symbol |
1127 | table only. */ | |
a81ce07d | 1128 | |
df1e1074 PS |
1129 | case XMC_RW: |
1130 | continue; | |
a81ce07d JK |
1131 | |
1132 | case XMC_TC0: | |
a81ce07d JK |
1133 | continue; |
1134 | ||
1135 | case XMC_TC: | |
a367db89 | 1136 | continue; |
e38e0312 | 1137 | |
a81ce07d JK |
1138 | default: |
1139 | /* Ignore the symbol. */ | |
1140 | continue; | |
818de002 | 1141 | } |
e38e0312 | 1142 | } |
e38e0312 JG |
1143 | break; |
1144 | ||
a81ce07d JK |
1145 | case XTY_LD: |
1146 | ||
1147 | switch (CSECT_SCLAS (&main_aux)) | |
1148 | { | |
1149 | case XMC_PR: | |
1150 | /* a function entry point. */ | |
1151 | function_entry_point: | |
a81ce07d | 1152 | |
a81ce07d JK |
1153 | fcn_start_addr = cs->c_value; |
1154 | ||
1155 | /* save the function header info, which will be used | |
1156 | when `.bf' is seen. */ | |
1157 | fcn_cs_saved = *cs; | |
1158 | fcn_aux_saved = main_aux; | |
a81ce07d JK |
1159 | continue; |
1160 | ||
1161 | case XMC_GL: | |
1162 | /* shared library function trampoline code entry point. */ | |
a81ce07d JK |
1163 | continue; |
1164 | ||
1165 | case XMC_DS: | |
1166 | /* The symbols often have the same names as debug symbols for | |
1167 | functions, and confuse lookup_symbol. */ | |
1168 | continue; | |
1169 | ||
1170 | default: | |
1171 | /* xlc puts each variable in a separate csect, so we get | |
1172 | an XTY_SD for each variable. But gcc puts several | |
1173 | variables in a csect, so that each variable only gets | |
df1e1074 PS |
1174 | an XTY_LD. This will typically be XMC_RW; I suspect |
1175 | XMC_RO and XMC_BS might be possible too. | |
1176 | These variables are put in the minimal symbol table | |
1177 | only. */ | |
1178 | continue; | |
a81ce07d | 1179 | } |
df1e1074 PS |
1180 | break; |
1181 | ||
1182 | case XTY_CM: | |
1183 | /* Common symbols are put into the minimal symbol table only. */ | |
1184 | continue; | |
e38e0312 | 1185 | |
a81ce07d JK |
1186 | default: |
1187 | break; | |
e38e0312 | 1188 | } |
a81ce07d | 1189 | } |
e38e0312 | 1190 | |
a81ce07d JK |
1191 | switch (cs->c_sclass) |
1192 | { | |
e38e0312 | 1193 | |
a81ce07d | 1194 | case C_FILE: |
818de002 | 1195 | |
a81ce07d JK |
1196 | /* c_value field contains symnum of next .file entry in table |
1197 | or symnum of first global after last .file. */ | |
818de002 | 1198 | |
a81ce07d | 1199 | next_file_symnum = cs->c_value; |
818de002 | 1200 | |
a81ce07d JK |
1201 | /* Complete symbol table for last object file containing |
1202 | debugging information. */ | |
818de002 | 1203 | |
a81ce07d JK |
1204 | /* Whether or not there was a csect in the previous file, we |
1205 | have to call `end_stabs' and `start_stabs' to reset | |
1206 | type_vector, line_vector, etc. structures. */ | |
818de002 | 1207 | |
a81ce07d JK |
1208 | complete_symtab (filestring, file_start_addr); |
1209 | cur_src_end_addr = file_end_addr; | |
436d4143 | 1210 | end_symtab (file_end_addr, objfile, SECT_OFF_TEXT); |
a81ce07d | 1211 | end_stabs (); |
818de002 | 1212 | |
a81ce07d JK |
1213 | /* XCOFF, according to the AIX 3.2 documentation, puts the filename |
1214 | in cs->c_name. But xlc 1.3.0.2 has decided to do things the | |
1215 | standard COFF way and put it in the auxent. We use the auxent if | |
1216 | the symbol is ".file" and an auxent exists, otherwise use the symbol | |
1217 | itself. Simple enough. */ | |
1218 | if (!strcmp (cs->c_name, ".file") && cs->c_naux > 0) | |
1219 | { | |
1220 | bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass, | |
1221 | 0, cs->c_naux, &main_aux); | |
a367db89 | 1222 | filestring = coff_getfilename (&main_aux, objfile); |
818de002 | 1223 | } |
a81ce07d JK |
1224 | else |
1225 | filestring = cs->c_name; | |
d4cedfe4 | 1226 | |
a81ce07d JK |
1227 | start_stabs (); |
1228 | start_symtab (filestring, (char *)NULL, (CORE_ADDR)0); | |
1229 | last_csect_name = 0; | |
507e4004 | 1230 | |
a81ce07d JK |
1231 | /* reset file start and end addresses. A compilation unit with no text |
1232 | (only data) should have zero file boundaries. */ | |
1233 | file_start_addr = file_end_addr = 0; | |
e38e0312 | 1234 | break; |
e38e0312 | 1235 | |
a81ce07d JK |
1236 | case C_FUN: |
1237 | fcn_stab_saved = *cs; | |
1238 | break; | |
e38e0312 | 1239 | |
a81ce07d JK |
1240 | case C_FCN: |
1241 | if (STREQ (cs->c_name, ".bf")) | |
1242 | { | |
a367db89 JK |
1243 | CORE_ADDR off = ANOFFSET (objfile->section_offsets, |
1244 | SECT_OFF_TEXT); | |
a81ce07d JK |
1245 | bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass, |
1246 | 0, cs->c_naux, &main_aux); | |
818de002 | 1247 | |
a81ce07d | 1248 | within_function = 1; |
818de002 | 1249 | |
a367db89 | 1250 | new = push_context (0, fcn_start_addr + off); |
e38e0312 | 1251 | |
a81ce07d | 1252 | new->name = define_symbol |
a367db89 JK |
1253 | (fcn_cs_saved.c_value + off, |
1254 | fcn_stab_saved.c_name, 0, 0, objfile); | |
a81ce07d | 1255 | if (new->name != NULL) |
a367db89 | 1256 | SYMBOL_SECTION (new->name) = SECT_OFF_TEXT; |
a81ce07d JK |
1257 | } |
1258 | else if (STREQ (cs->c_name, ".ef")) | |
1259 | { | |
e38e0312 | 1260 | |
a81ce07d JK |
1261 | bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass, |
1262 | 0, cs->c_naux, &main_aux); | |
1263 | ||
1264 | /* The value of .ef is the address of epilogue code; | |
1265 | not useful for gdb. */ | |
1266 | /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno | |
1267 | contains number of lines to '}' */ | |
1268 | ||
df1e1074 PS |
1269 | if (context_stack_depth <= 0) |
1270 | { /* We attempted to pop an empty context stack */ | |
1271 | complain (&ef_complaint, cs->c_symnum); | |
1272 | within_function = 0; | |
1273 | break; | |
1274 | } | |
a81ce07d | 1275 | new = pop_context (); |
f8203ed0 JK |
1276 | /* Stack must be empty now. */ |
1277 | if (context_stack_depth > 0 || new == NULL) | |
1278 | { | |
1279 | complain (&ef_complaint, cs->c_symnum); | |
1280 | within_function = 0; | |
1281 | break; | |
1282 | } | |
a81ce07d JK |
1283 | |
1284 | finish_block (new->name, &local_symbols, new->old_blocks, | |
1285 | new->start_addr, | |
a367db89 JK |
1286 | (fcn_cs_saved.c_value |
1287 | + fcn_aux_saved.x_sym.x_misc.x_fsize | |
1288 | + ANOFFSET (objfile->section_offsets, | |
1289 | SECT_OFF_TEXT)), | |
1290 | objfile); | |
a81ce07d JK |
1291 | within_function = 0; |
1292 | } | |
1293 | break; | |
818de002 | 1294 | |
a81ce07d JK |
1295 | case C_BSTAT: |
1296 | /* Begin static block. */ | |
1297 | { | |
1298 | struct internal_syment symbol; | |
af8b7906 | 1299 | |
a81ce07d JK |
1300 | read_symbol (&symbol, cs->c_value); |
1301 | static_block_base = symbol.n_value; | |
a367db89 JK |
1302 | static_block_section = |
1303 | secnum_to_section (symbol.n_scnum, objfile); | |
a81ce07d JK |
1304 | } |
1305 | break; | |
af8b7906 | 1306 | |
a81ce07d JK |
1307 | case C_ESTAT: |
1308 | /* End of static block. */ | |
1309 | static_block_base = 0; | |
1310 | static_block_section = -1; | |
1311 | break; | |
e38e0312 | 1312 | |
a81ce07d JK |
1313 | case C_ARG: |
1314 | case C_REGPARM: | |
f8203ed0 | 1315 | case C_REG: |
a81ce07d JK |
1316 | case C_TPDEF: |
1317 | case C_STRTAG: | |
1318 | case C_UNTAG: | |
1319 | case C_ENTAG: | |
f8203ed0 JK |
1320 | { |
1321 | static struct complaint msg = | |
1322 | {"Unrecognized storage class %d.", 0, 0}; | |
1323 | complain (&msg, cs->c_sclass); | |
1324 | } | |
a81ce07d | 1325 | break; |
e38e0312 | 1326 | |
a81ce07d JK |
1327 | case C_LABEL: |
1328 | case C_NULL: | |
1329 | /* Ignore these. */ | |
1330 | break; | |
e38e0312 | 1331 | |
a81ce07d | 1332 | case C_HIDEXT: |
df1e1074 | 1333 | case C_STAT: |
a81ce07d | 1334 | break; |
e38e0312 | 1335 | |
a81ce07d JK |
1336 | case C_BINCL: |
1337 | /* beginning of include file */ | |
1338 | /* In xlc output, C_BINCL/C_EINCL pair doesn't show up in sorted | |
1339 | order. Thus, when wee see them, we might not know enough info | |
1340 | to process them. Thus, we'll be saving them into a table | |
1341 | (inclTable) and postpone their processing. */ | |
e38e0312 | 1342 | |
a81ce07d JK |
1343 | record_include_begin (cs); |
1344 | break; | |
e38e0312 | 1345 | |
a81ce07d JK |
1346 | case C_EINCL: |
1347 | /* End of include file. */ | |
1348 | /* See the comment after case C_BINCL. */ | |
1349 | record_include_end (cs); | |
1350 | break; | |
1eeba686 | 1351 | |
a81ce07d JK |
1352 | case C_BLOCK: |
1353 | if (STREQ (cs->c_name, ".bb")) | |
1354 | { | |
1355 | depth++; | |
a367db89 JK |
1356 | new = push_context (depth, |
1357 | (cs->c_value | |
1358 | + ANOFFSET (objfile->section_offsets, | |
1359 | SECT_OFF_TEXT))); | |
a81ce07d JK |
1360 | } |
1361 | else if (STREQ (cs->c_name, ".eb")) | |
1362 | { | |
df1e1074 PS |
1363 | if (context_stack_depth <= 0) |
1364 | { /* We attempted to pop an empty context stack */ | |
1365 | complain (&eb_complaint, cs->c_symnum); | |
1366 | break; | |
1367 | } | |
a81ce07d | 1368 | new = pop_context (); |
f8203ed0 JK |
1369 | if (depth-- != new->depth) |
1370 | { | |
df1e1074 | 1371 | complain (&eb_complaint, cs->c_symnum); |
f8203ed0 JK |
1372 | break; |
1373 | } | |
a81ce07d JK |
1374 | if (local_symbols && context_stack_depth > 0) |
1375 | { | |
1376 | /* Make a block for the local symbols within. */ | |
1377 | finish_block (new->name, &local_symbols, new->old_blocks, | |
a367db89 JK |
1378 | new->start_addr, |
1379 | (cs->c_value | |
1380 | + ANOFFSET (objfile->section_offsets, | |
1381 | SECT_OFF_TEXT)), | |
1382 | objfile); | |
a81ce07d JK |
1383 | } |
1384 | local_symbols = new->locals; | |
1385 | } | |
1386 | break; | |
e38e0312 | 1387 | |
a81ce07d JK |
1388 | default: |
1389 | process_xcoff_symbol (cs, objfile); | |
1390 | break; | |
e38e0312 | 1391 | } |
e38e0312 JG |
1392 | } |
1393 | ||
e38e0312 | 1394 | if (last_source_file) |
d07734e3 | 1395 | { |
a367db89 JK |
1396 | struct symtab *s; |
1397 | ||
1398 | complete_symtab (filestring, file_start_addr); | |
1399 | cur_src_end_addr = file_end_addr; | |
436d4143 | 1400 | s = end_symtab (file_end_addr, objfile, SECT_OFF_TEXT); |
a367db89 JK |
1401 | /* When reading symbols for the last C_FILE of the objfile, try |
1402 | to make sure that we set pst->symtab to the symtab for the | |
1403 | file, not to the _globals_ symtab. I'm not sure whether this | |
1404 | actually works right or when/if it comes up. */ | |
1405 | if (pst->symtab == NULL) | |
1406 | pst->symtab = s; | |
d07734e3 FF |
1407 | end_stabs (); |
1408 | } | |
e38e0312 JG |
1409 | } |
1410 | ||
1411 | #define SYMBOL_DUP(SYMBOL1, SYMBOL2) \ | |
1412 | (SYMBOL2) = (struct symbol *) \ | |
1ab3bf1b | 1413 | obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol)); \ |
e38e0312 JG |
1414 | *(SYMBOL2) = *(SYMBOL1); |
1415 | ||
1416 | ||
1417 | #define SYMNAME_ALLOC(NAME, ALLOCED) \ | |
ace4b8d7 | 1418 | (ALLOCED) ? (NAME) : obsavestring ((NAME), strlen (NAME), &objfile->symbol_obstack); |
e38e0312 JG |
1419 | |
1420 | ||
a81ce07d JK |
1421 | static struct type *func_symbol_type; |
1422 | static struct type *var_symbol_type; | |
1423 | ||
e38e0312 JG |
1424 | /* process one xcoff symbol. */ |
1425 | ||
1426 | static struct symbol * | |
1ab3bf1b | 1427 | process_xcoff_symbol (cs, objfile) |
e38e0312 | 1428 | register struct coff_symbol *cs; |
1ab3bf1b | 1429 | struct objfile *objfile; |
e38e0312 JG |
1430 | { |
1431 | struct symbol onesymbol; | |
1432 | register struct symbol *sym = &onesymbol; | |
1433 | struct symbol *sym2 = NULL; | |
df1e1074 | 1434 | char *name, *pp; |
e38e0312 | 1435 | |
a367db89 JK |
1436 | int sec; |
1437 | CORE_ADDR off; | |
1438 | ||
1439 | if (cs->c_secnum < 0) | |
1440 | { | |
1441 | /* The value is a register number, offset within a frame, etc., | |
1442 | and does not get relocated. */ | |
1443 | off = 0; | |
1444 | sec = -1; | |
1445 | } | |
1446 | else | |
1447 | { | |
1448 | sec = secnum_to_section (cs->c_secnum, objfile); | |
1449 | off = ANOFFSET (objfile->section_offsets, sec); | |
1450 | } | |
1451 | ||
e38e0312 JG |
1452 | name = cs->c_name; |
1453 | if (name[0] == '.') | |
1454 | ++name; | |
1455 | ||
4ed97c9a | 1456 | memset (sym, '\0', sizeof (struct symbol)); |
e38e0312 JG |
1457 | |
1458 | /* default assumptions */ | |
a367db89 | 1459 | SYMBOL_VALUE (sym) = cs->c_value + off; |
e38e0312 | 1460 | SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE; |
a367db89 | 1461 | SYMBOL_SECTION (sym) = secnum_to_section (cs->c_secnum, objfile); |
e38e0312 | 1462 | |
a81ce07d JK |
1463 | if (ISFCN (cs->c_type)) |
1464 | { | |
1465 | /* At this point, we don't know the type of the function. This | |
1466 | will be patched with the type from its stab entry later on in | |
1467 | patch_block_stabs (), unless the file was compiled without -g. */ | |
e38e0312 | 1468 | |
a81ce07d JK |
1469 | SYMBOL_NAME (sym) = SYMNAME_ALLOC (name, symname_alloced); |
1470 | SYMBOL_TYPE (sym) = func_symbol_type; | |
e38e0312 | 1471 | |
a81ce07d JK |
1472 | SYMBOL_CLASS (sym) = LOC_BLOCK; |
1473 | SYMBOL_DUP (sym, sym2); | |
e38e0312 | 1474 | |
a81ce07d JK |
1475 | if (cs->c_sclass == C_EXT) |
1476 | add_symbol_to_list (sym2, &global_symbols); | |
1477 | else if (cs->c_sclass == C_HIDEXT || cs->c_sclass == C_STAT) | |
1478 | add_symbol_to_list (sym2, &file_symbols); | |
1479 | } | |
1480 | else | |
e38e0312 | 1481 | { |
a81ce07d JK |
1482 | /* In case we can't figure out the type, provide default. */ |
1483 | SYMBOL_TYPE (sym) = var_symbol_type; | |
1484 | ||
1485 | switch (cs->c_sclass) | |
1486 | { | |
818de002 | 1487 | #if 0 |
df1e1074 PS |
1488 | /* The values of functions and global symbols are now resolved |
1489 | via the global_sym_chain in stabsread.c. */ | |
a81ce07d JK |
1490 | case C_FUN: |
1491 | if (fcn_cs_saved.c_sclass == C_EXT) | |
1492 | add_stab_to_list (name, &global_stabs); | |
1493 | else | |
1494 | add_stab_to_list (name, &file_stabs); | |
1495 | break; | |
e38e0312 | 1496 | |
a81ce07d JK |
1497 | case C_GSYM: |
1498 | add_stab_to_list (name, &global_stabs); | |
1499 | break; | |
df1e1074 | 1500 | #endif |
e38e0312 | 1501 | |
a81ce07d JK |
1502 | case C_BCOMM: |
1503 | common_block_start (cs->c_name, objfile); | |
1504 | break; | |
9438d642 | 1505 | |
a81ce07d JK |
1506 | case C_ECOMM: |
1507 | common_block_end (objfile); | |
1508 | break; | |
9438d642 | 1509 | |
a81ce07d JK |
1510 | default: |
1511 | complain (&storclass_complaint, cs->c_sclass); | |
1512 | /* FALLTHROUGH */ | |
9438d642 | 1513 | |
a81ce07d JK |
1514 | case C_DECL: |
1515 | case C_PSYM: | |
1516 | case C_RPSYM: | |
1517 | case C_ECOML: | |
a367db89 JK |
1518 | case C_LSYM: |
1519 | case C_RSYM: | |
df1e1074 | 1520 | case C_GSYM: |
1eeba686 | 1521 | |
a367db89 JK |
1522 | { |
1523 | sym = define_symbol (cs->c_value + off, cs->c_name, 0, 0, objfile); | |
1524 | if (sym != NULL) | |
1525 | { | |
1526 | SYMBOL_SECTION (sym) = sec; | |
1527 | } | |
1528 | return sym; | |
1529 | } | |
e38e0312 | 1530 | |
a81ce07d | 1531 | case C_STSYM: |
1eeba686 | 1532 | |
a81ce07d JK |
1533 | /* For xlc (not GCC), the 'V' symbol descriptor is used for |
1534 | all statics and we need to distinguish file-scope versus | |
1535 | function-scope using within_function. We do this by | |
1536 | changing the string we pass to define_symbol to use 'S' | |
1537 | where we need to, which is not necessarily super-clean, | |
1538 | but seems workable enough. */ | |
91cc45da | 1539 | |
a81ce07d JK |
1540 | if (*name == ':' || (pp = (char *) strchr(name, ':')) == NULL) |
1541 | return NULL; | |
91cc45da | 1542 | |
a81ce07d JK |
1543 | ++pp; |
1544 | if (*pp == 'V' && !within_function) | |
1545 | *pp = 'S'; | |
a367db89 JK |
1546 | sym = define_symbol ((cs->c_value |
1547 | + ANOFFSET (objfile->section_offsets, | |
1548 | static_block_section)), | |
1549 | cs->c_name, 0, 0, objfile); | |
a81ce07d JK |
1550 | if (sym != NULL) |
1551 | { | |
1552 | SYMBOL_VALUE (sym) += static_block_base; | |
1553 | SYMBOL_SECTION (sym) = static_block_section; | |
1554 | } | |
1555 | return sym; | |
e38e0312 | 1556 | |
1eeba686 | 1557 | } |
e38e0312 | 1558 | } |
e38e0312 JG |
1559 | return sym2; |
1560 | } | |
1561 | ||
e8abe489 PS |
1562 | /* Extract the file name from the aux entry of a C_FILE symbol. Return |
1563 | only the last component of the name. Result is in static storage and | |
1564 | is only good for temporary use. */ | |
1565 | ||
1566 | static char * | |
a367db89 JK |
1567 | coff_getfilename (aux_entry, objfile) |
1568 | union internal_auxent *aux_entry; | |
1569 | struct objfile *objfile; | |
e8abe489 PS |
1570 | { |
1571 | static char buffer[BUFSIZ]; | |
1572 | register char *temp; | |
1573 | char *result; | |
1574 | ||
1575 | if (aux_entry->x_file.x_n.x_zeroes == 0) | |
a367db89 JK |
1576 | strcpy (buffer, |
1577 | ((struct coff_symfile_info *)objfile->sym_private)->strtbl | |
1578 | + aux_entry->x_file.x_n.x_offset); | |
e8abe489 PS |
1579 | else |
1580 | { | |
1581 | strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN); | |
1582 | buffer[FILNMLEN] = '\0'; | |
1583 | } | |
1584 | result = buffer; | |
1585 | ||
1586 | /* FIXME: We should not be throwing away the information about what | |
1587 | directory. It should go into dirname of the symtab, or some such | |
1588 | place. */ | |
1589 | if ((temp = strrchr (result, '/')) != NULL) | |
1590 | result = temp + 1; | |
1591 | return (result); | |
1592 | } | |
1593 | ||
3c02636b JK |
1594 | /* Set *SYMBOL to symbol number symno in symtbl. */ |
1595 | static void | |
1596 | read_symbol (symbol, symno) | |
1597 | struct internal_syment *symbol; | |
e38e0312 JG |
1598 | int symno; |
1599 | { | |
a367db89 JK |
1600 | int nsyms = |
1601 | ((struct coff_symfile_info *)this_symtab_psymtab->objfile->sym_private) | |
1602 | ->symtbl_num_syms; | |
1603 | char *stbl = | |
1604 | ((struct coff_symfile_info *)this_symtab_psymtab->objfile->sym_private) | |
1605 | ->symtbl; | |
1606 | if (symno < 0 || symno >= nsyms) | |
c84a96d7 | 1607 | { |
b646b438 | 1608 | static struct complaint msg = |
c84a96d7 JK |
1609 | {"Invalid symbol offset", 0, 0}; |
1610 | complain (&msg); | |
3c02636b JK |
1611 | symbol->n_value = 0; |
1612 | symbol->n_scnum = -1; | |
1613 | return; | |
c84a96d7 | 1614 | } |
a367db89 JK |
1615 | bfd_coff_swap_sym_in (this_symtab_psymtab->objfile->obfd, |
1616 | stbl + (symno*local_symesz), | |
1617 | symbol); | |
3c02636b JK |
1618 | } |
1619 | ||
1620 | /* Get value corresponding to symbol number symno in symtbl. */ | |
1621 | ||
1622 | static int | |
1623 | read_symbol_nvalue (symno) | |
1624 | int symno; | |
1625 | { | |
1626 | struct internal_syment symbol[1]; | |
1627 | ||
1628 | read_symbol (symbol, symno); | |
e38e0312 JG |
1629 | return symbol->n_value; |
1630 | } | |
1631 | ||
1632 | ||
c84a96d7 JK |
1633 | /* Find the address of the function corresponding to symno, where |
1634 | symno is the symbol pointed to by the linetable. */ | |
1635 | ||
e38e0312 | 1636 | static int |
c84a96d7 | 1637 | read_symbol_lineno (symno) |
a367db89 | 1638 | int symno; |
e38e0312 | 1639 | { |
a367db89 JK |
1640 | int nsyms = |
1641 | ((struct coff_symfile_info *)this_symtab_psymtab->objfile->sym_private) | |
1642 | ->symtbl_num_syms; | |
1643 | char *stbl = | |
1644 | ((struct coff_symfile_info *)this_symtab_psymtab->objfile->sym_private) | |
1645 | ->symtbl; | |
e38e0312 JG |
1646 | struct internal_syment symbol[1]; |
1647 | union internal_auxent main_aux[1]; | |
1648 | ||
a367db89 JK |
1649 | if (symno < 0) |
1650 | { | |
1651 | complain (&bf_notfound_complaint); | |
1652 | return 0; | |
1653 | } | |
1654 | ||
c84a96d7 JK |
1655 | /* Note that just searching for a short distance (e.g. 50 symbols) |
1656 | is not enough, at least in the following case. | |
1657 | ||
1658 | .extern foo | |
1659 | [many .stabx entries] | |
1660 | [a few functions, referring to foo] | |
1661 | .globl foo | |
1662 | .bf | |
e38e0312 | 1663 | |
c84a96d7 JK |
1664 | What happens here is that the assembler moves the .stabx entries |
1665 | to right before the ".bf" for foo, but the symbol for "foo" is before | |
1666 | all the stabx entries. See PR gdb/2222. */ | |
a367db89 JK |
1667 | |
1668 | /* Maintaining a table of .bf entries might be preferable to this search. | |
1669 | If I understand things correctly it would need to be done only for | |
1670 | the duration of a single psymtab to symtab conversion. */ | |
1671 | while (symno < nsyms) | |
1672 | { | |
1673 | bfd_coff_swap_sym_in (symfile_bfd, | |
1674 | stbl + (symno * local_symesz), symbol); | |
1675 | if (symbol->n_sclass == C_FCN && STREQ (symbol->n_name, ".bf")) | |
1676 | goto gotit; | |
1677 | symno += symbol->n_numaux + 1; | |
1678 | } | |
e38e0312 | 1679 | |
e9916390 | 1680 | complain (&bf_notfound_complaint); |
e38e0312 JG |
1681 | return 0; |
1682 | ||
1683 | gotit: | |
1684 | /* take aux entry and return its lineno */ | |
1685 | symno++; | |
a367db89 JK |
1686 | bfd_coff_swap_aux_in (this_symtab_psymtab->objfile->obfd, |
1687 | stbl + symno * local_symesz, | |
bf8d9d28 ILT |
1688 | symbol->n_type, symbol->n_sclass, |
1689 | 0, symbol->n_numaux, main_aux); | |
e38e0312 JG |
1690 | |
1691 | return main_aux->x_sym.x_misc.x_lnsz.x_lnno; | |
1692 | } | |
1693 | ||
1694 | /* Support for line number handling */ | |
1695 | ||
1696 | /* This function is called for every section; it finds the outer limits | |
1697 | * of the line table (minimum and maximum file offset) so that the | |
1698 | * mainline code can read the whole thing for efficiency. | |
1699 | */ | |
1700 | static void | |
a367db89 JK |
1701 | find_linenos (abfd, asect, vpinfo) |
1702 | bfd *abfd; | |
1703 | sec_ptr asect; | |
1704 | PTR vpinfo; | |
e38e0312 JG |
1705 | { |
1706 | struct coff_symfile_info *info; | |
1707 | int size, count; | |
1708 | file_ptr offset, maxoff; | |
1709 | ||
1710 | count = asect->lineno_count; | |
1711 | ||
2e4964ad | 1712 | if (!STREQ (asect->name, ".text") || count == 0) |
e38e0312 JG |
1713 | return; |
1714 | ||
a367db89 JK |
1715 | size = count * coff_data (abfd)->local_linesz; |
1716 | info = (struct coff_symfile_info *)vpinfo; | |
e38e0312 JG |
1717 | offset = asect->line_filepos; |
1718 | maxoff = offset + size; | |
1719 | ||
1720 | if (offset < info->min_lineno_offset || info->min_lineno_offset == 0) | |
1721 | info->min_lineno_offset = offset; | |
1722 | ||
1723 | if (maxoff > info->max_lineno_offset) | |
1724 | info->max_lineno_offset = maxoff; | |
1725 | } | |
a367db89 JK |
1726 | \f |
1727 | static void xcoff_psymtab_to_symtab_1 PARAMS ((struct partial_symtab *)); | |
e38e0312 | 1728 | |
a367db89 JK |
1729 | static void |
1730 | xcoff_psymtab_to_symtab_1 (pst) | |
1731 | struct partial_symtab *pst; | |
e38e0312 | 1732 | { |
a367db89 JK |
1733 | struct cleanup *old_chain; |
1734 | int i; | |
1735 | ||
1736 | if (!pst) | |
1737 | return; | |
1738 | ||
1739 | if (pst->readin) | |
1740 | { | |
1741 | fprintf_unfiltered | |
1742 | (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n", | |
1743 | pst->filename); | |
1744 | return; | |
1745 | } | |
e38e0312 | 1746 | |
a367db89 JK |
1747 | /* Read in all partial symtabs on which this one is dependent */ |
1748 | for (i = 0; i < pst->number_of_dependencies; i++) | |
1749 | if (!pst->dependencies[i]->readin) | |
1750 | { | |
1751 | /* Inform about additional files that need to be read in. */ | |
1752 | if (info_verbose) | |
1753 | { | |
1754 | fputs_filtered (" ", gdb_stdout); | |
1755 | wrap_here (""); | |
1756 | fputs_filtered ("and ", gdb_stdout); | |
1757 | wrap_here (""); | |
1758 | printf_filtered ("%s...", pst->dependencies[i]->filename); | |
1759 | wrap_here (""); /* Flush output */ | |
1760 | gdb_flush (gdb_stdout); | |
1761 | } | |
1762 | xcoff_psymtab_to_symtab_1 (pst->dependencies[i]); | |
1763 | } | |
0eb22669 | 1764 | |
a367db89 JK |
1765 | if (((struct symloc *)pst->read_symtab_private)->numsyms != 0) |
1766 | { | |
1767 | /* Init stuff necessary for reading in symbols. */ | |
1768 | stabsread_init (); | |
1769 | buildsym_init (); | |
1770 | old_chain = make_cleanup (really_free_pendings, 0); | |
e38e0312 | 1771 | |
a367db89 JK |
1772 | read_xcoff_symtab (pst); |
1773 | sort_symtab_syms (pst->symtab); | |
e38e0312 | 1774 | |
a367db89 JK |
1775 | do_cleanups (old_chain); |
1776 | } | |
e38e0312 | 1777 | |
a367db89 | 1778 | pst->readin = 1; |
e38e0312 | 1779 | } |
0eb22669 | 1780 | |
a367db89 JK |
1781 | static void xcoff_psymtab_to_symtab PARAMS ((struct partial_symtab *)); |
1782 | ||
1783 | /* Read in all of the symbols for a given psymtab for real. | |
1784 | Be verbose about it if the user wants that. */ | |
1785 | ||
0eb22669 | 1786 | static void |
a367db89 JK |
1787 | xcoff_psymtab_to_symtab (pst) |
1788 | struct partial_symtab *pst; | |
0eb22669 | 1789 | { |
a367db89 JK |
1790 | bfd *sym_bfd; |
1791 | ||
1792 | if (!pst) | |
1793 | return; | |
1794 | ||
1795 | if (pst->readin) | |
1796 | { | |
1797 | fprintf_unfiltered | |
1798 | (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n", | |
1799 | pst->filename); | |
1800 | return; | |
1801 | } | |
1802 | ||
1803 | if (((struct symloc *)pst->read_symtab_private)->numsyms != 0 | |
1804 | || pst->number_of_dependencies) | |
1805 | { | |
1806 | /* Print the message now, before reading the string table, | |
1807 | to avoid disconcerting pauses. */ | |
1808 | if (info_verbose) | |
1809 | { | |
1810 | printf_filtered ("Reading in symbols for %s...", pst->filename); | |
1811 | gdb_flush (gdb_stdout); | |
1812 | } | |
1813 | ||
1814 | sym_bfd = pst->objfile->obfd; | |
1815 | ||
1816 | next_symbol_text_func = xcoff_next_symbol_text; | |
1817 | ||
1818 | xcoff_psymtab_to_symtab_1 (pst); | |
1819 | ||
1820 | /* Match with global symbols. This only needs to be done once, | |
1821 | after all of the symtabs and dependencies have been read in. */ | |
1822 | scan_file_globals (pst->objfile); | |
1823 | ||
1824 | /* Finish up the debug error message. */ | |
1825 | if (info_verbose) | |
1826 | printf_filtered ("done.\n"); | |
1827 | } | |
1828 | } | |
93fe4e33 | 1829 | \f |
1ab3bf1b | 1830 | static void |
9b280a7f | 1831 | xcoff_new_init (objfile) |
80d68b1d | 1832 | struct objfile *objfile; |
e38e0312 | 1833 | { |
df1e1074 PS |
1834 | stabsread_new_init (); |
1835 | buildsym_new_init (); | |
e38e0312 JG |
1836 | } |
1837 | ||
a367db89 | 1838 | /* Do initialization in preparation for reading symbols from OBJFILE. |
dd469789 JG |
1839 | |
1840 | We will only be called if this is an XCOFF or XCOFF-like file. | |
1841 | BFD handles figuring out the format of the file, and code in symfile.c | |
a367db89 | 1842 | uses BFD's determination to vector to us. */ |
dd469789 | 1843 | |
1ab3bf1b | 1844 | static void |
9b280a7f | 1845 | xcoff_symfile_init (objfile) |
a367db89 | 1846 | struct objfile *objfile; |
e38e0312 | 1847 | { |
e38e0312 | 1848 | /* Allocate struct to keep track of the symfile */ |
80d68b1d FF |
1849 | objfile -> sym_private = xmmalloc (objfile -> md, |
1850 | sizeof (struct coff_symfile_info)); | |
436d4143 JL |
1851 | |
1852 | /* XCOFF objects may be reordered, so set OBJF_REORDERED. If we | |
1853 | find this causes a significant slowdown in gdb then we could | |
1854 | set it in the debug symbol readers only when necessary. */ | |
1855 | objfile->flags |= OBJF_REORDERED; | |
1856 | ||
5e2e79f8 | 1857 | init_entry_point_info (objfile); |
e38e0312 JG |
1858 | } |
1859 | ||
80d68b1d FF |
1860 | /* Perform any local cleanups required when we are done with a particular |
1861 | objfile. I.E, we are in the process of discarding all symbol information | |
1862 | for an objfile, freeing up all memory held for it, and unlinking the | |
1863 | objfile struct from the global list of known objfiles. */ | |
1864 | ||
1865 | static void | |
9b280a7f | 1866 | xcoff_symfile_finish (objfile) |
80d68b1d FF |
1867 | struct objfile *objfile; |
1868 | { | |
1869 | if (objfile -> sym_private != NULL) | |
1870 | { | |
1871 | mfree (objfile -> md, objfile -> sym_private); | |
1872 | } | |
1873 | ||
a367db89 | 1874 | /* Start with a fresh include table for the next objfile. */ |
80d68b1d FF |
1875 | if (inclTable) |
1876 | { | |
1877 | free (inclTable); | |
1878 | inclTable = NULL; | |
1879 | } | |
1880 | inclIndx = inclLength = inclDepth = 0; | |
1881 | } | |
1882 | ||
e38e0312 | 1883 | |
a367db89 JK |
1884 | static void |
1885 | init_stringtab (abfd, offset, objfile) | |
e38e0312 | 1886 | bfd *abfd; |
d5931d79 | 1887 | file_ptr offset; |
1ab3bf1b | 1888 | struct objfile *objfile; |
e38e0312 JG |
1889 | { |
1890 | long length; | |
1891 | int val; | |
1892 | unsigned char lengthbuf[4]; | |
a367db89 | 1893 | char *strtbl; |
e38e0312 | 1894 | |
a367db89 | 1895 | ((struct coff_symfile_info *)objfile->sym_private)->strtbl = NULL; |
e38e0312 | 1896 | |
987622b5 | 1897 | if (bfd_seek (abfd, offset, SEEK_SET) < 0) |
a367db89 JK |
1898 | error ("cannot seek to string table in %s: %s", |
1899 | bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ())); | |
1900 | ||
1901 | val = bfd_read ((char *)lengthbuf, 1, sizeof lengthbuf, abfd); | |
1902 | length = bfd_h_get_32 (abfd, lengthbuf); | |
e38e0312 JG |
1903 | |
1904 | /* If no string table is needed, then the file may end immediately | |
a367db89 | 1905 | after the symbols. Just return with `strtbl' set to NULL. */ |
e38e0312 | 1906 | |
a367db89 JK |
1907 | if (val != sizeof lengthbuf || length < sizeof lengthbuf) |
1908 | return; | |
e38e0312 JG |
1909 | |
1910 | /* Allocate string table from symbol_obstack. We will need this table | |
1911 | as long as we have its symbol table around. */ | |
1912 | ||
a367db89 JK |
1913 | strtbl = (char *) obstack_alloc (&objfile->symbol_obstack, length); |
1914 | ((struct coff_symfile_info *)objfile->sym_private)->strtbl = strtbl; | |
e38e0312 | 1915 | |
df1e1074 PS |
1916 | /* Copy length buffer, the first byte is usually zero and is |
1917 | used for stabs with a name length of zero. */ | |
1918 | memcpy (strtbl, lengthbuf, sizeof lengthbuf); | |
a367db89 JK |
1919 | if (length == sizeof lengthbuf) |
1920 | return; | |
e38e0312 | 1921 | |
a367db89 JK |
1922 | val = bfd_read (strtbl + sizeof lengthbuf, 1, length - sizeof lengthbuf, |
1923 | abfd); | |
e38e0312 | 1924 | |
a367db89 JK |
1925 | if (val != length - sizeof lengthbuf) |
1926 | error ("cannot read string table from %s: %s", | |
1927 | bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ())); | |
1928 | if (strtbl[length - 1] != '\0') | |
1929 | error ("bad symbol file: string table does not end with null character"); | |
e38e0312 | 1930 | |
a367db89 | 1931 | return; |
e38e0312 | 1932 | } |
a367db89 JK |
1933 | \f |
1934 | /* If we have not yet seen a function for this psymtab, this is 0. If we | |
1935 | have seen one, it is the offset in the line numbers of the line numbers | |
1936 | for the psymtab. */ | |
1937 | static unsigned int first_fun_line_offset; | |
e38e0312 | 1938 | |
a367db89 JK |
1939 | static struct partial_symtab *xcoff_start_psymtab |
1940 | PARAMS ((struct objfile *, struct section_offsets *, char *, int, | |
2ad5709f | 1941 | struct partial_symbol **, struct partial_symbol **)); |
a367db89 JK |
1942 | |
1943 | /* Allocate and partially fill a partial symtab. It will be | |
1944 | completely filled at the end of the symbol list. | |
1945 | ||
1946 | SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR | |
1947 | is the address relative to which its symbols are (incremental) or 0 | |
1948 | (normal). */ | |
1949 | ||
1950 | static struct partial_symtab * | |
1951 | xcoff_start_psymtab (objfile, section_offsets, | |
1952 | filename, first_symnum, global_syms, static_syms) | |
1953 | struct objfile *objfile; | |
1954 | struct section_offsets *section_offsets; | |
1955 | char *filename; | |
1956 | int first_symnum; | |
2ad5709f FF |
1957 | struct partial_symbol **global_syms; |
1958 | struct partial_symbol **static_syms; | |
e38e0312 | 1959 | { |
a367db89 JK |
1960 | struct partial_symtab *result = |
1961 | start_psymtab_common (objfile, section_offsets, | |
1962 | filename, | |
1963 | /* We fill in textlow later. */ | |
1964 | 0, | |
1965 | global_syms, static_syms); | |
1966 | ||
1967 | result->read_symtab_private = (char *) | |
1968 | obstack_alloc (&objfile -> psymbol_obstack, sizeof (struct symloc)); | |
1969 | ((struct symloc *)result->read_symtab_private)->first_symnum = first_symnum; | |
1970 | result->read_symtab = xcoff_psymtab_to_symtab; | |
1971 | ||
1972 | /* Deduce the source language from the filename for this psymtab. */ | |
1973 | psymtab_language = deduce_language_from_filename (filename); | |
1974 | ||
1975 | return result; | |
1976 | } | |
e38e0312 | 1977 | |
a367db89 JK |
1978 | static struct partial_symtab *xcoff_end_psymtab |
1979 | PARAMS ((struct partial_symtab *, char **, int, int, | |
68aadb90 | 1980 | struct partial_symtab **, int, int)); |
e38e0312 | 1981 | |
a367db89 JK |
1982 | /* Close off the current usage of PST. |
1983 | Returns PST, or NULL if the partial symtab was empty and thrown away. | |
e38e0312 | 1984 | |
a367db89 | 1985 | CAPPING_SYMBOL_NUMBER is the end of pst (exclusive). |
e38e0312 | 1986 | |
a367db89 JK |
1987 | INCLUDE_LIST, NUM_INCLUDES, DEPENDENCY_LIST, and NUMBER_DEPENDENCIES |
1988 | are the information for includes and dependencies. */ | |
e38e0312 | 1989 | |
a367db89 JK |
1990 | static struct partial_symtab * |
1991 | xcoff_end_psymtab (pst, include_list, num_includes, capping_symbol_number, | |
68aadb90 | 1992 | dependency_list, number_dependencies, textlow_not_set) |
a367db89 JK |
1993 | struct partial_symtab *pst; |
1994 | char **include_list; | |
1995 | int num_includes; | |
1996 | int capping_symbol_number; | |
1997 | struct partial_symtab **dependency_list; | |
1998 | int number_dependencies; | |
68aadb90 | 1999 | int textlow_not_set; |
a367db89 JK |
2000 | { |
2001 | int i; | |
2002 | struct objfile *objfile = pst -> objfile; | |
2003 | ||
2004 | if (capping_symbol_number != -1) | |
2005 | ((struct symloc *)pst->read_symtab_private)->numsyms = | |
2006 | capping_symbol_number | |
2007 | - ((struct symloc *)pst->read_symtab_private)->first_symnum; | |
2008 | ((struct symloc *)pst->read_symtab_private)->lineno_off = | |
2009 | first_fun_line_offset; | |
2010 | first_fun_line_offset = 0; | |
2011 | pst->n_global_syms = | |
2012 | objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset); | |
2013 | pst->n_static_syms = | |
2014 | objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset); | |
2015 | ||
2016 | pst->number_of_dependencies = number_dependencies; | |
2017 | if (number_dependencies) | |
2018 | { | |
2019 | pst->dependencies = (struct partial_symtab **) | |
2020 | obstack_alloc (&objfile->psymbol_obstack, | |
2021 | number_dependencies * sizeof (struct partial_symtab *)); | |
2022 | memcpy (pst->dependencies, dependency_list, | |
2023 | number_dependencies * sizeof (struct partial_symtab *)); | |
2024 | } | |
2025 | else | |
2026 | pst->dependencies = 0; | |
2027 | ||
2028 | for (i = 0; i < num_includes; i++) | |
2029 | { | |
2030 | struct partial_symtab *subpst = | |
2031 | allocate_psymtab (include_list[i], objfile); | |
2032 | ||
2033 | subpst->section_offsets = pst->section_offsets; | |
2034 | subpst->read_symtab_private = | |
2035 | (char *) obstack_alloc (&objfile->psymbol_obstack, | |
2036 | sizeof (struct symloc)); | |
2037 | ((struct symloc *)subpst->read_symtab_private)->first_symnum = 0; | |
2038 | ((struct symloc *)subpst->read_symtab_private)->numsyms = 0; | |
2039 | subpst->textlow = 0; | |
2040 | subpst->texthigh = 0; | |
2041 | ||
2042 | /* We could save slight bits of space by only making one of these, | |
2043 | shared by the entire set of include files. FIXME-someday. */ | |
2044 | subpst->dependencies = (struct partial_symtab **) | |
2045 | obstack_alloc (&objfile->psymbol_obstack, | |
2046 | sizeof (struct partial_symtab *)); | |
2047 | subpst->dependencies[0] = pst; | |
2048 | subpst->number_of_dependencies = 1; | |
2049 | ||
2050 | subpst->globals_offset = | |
2051 | subpst->n_global_syms = | |
2052 | subpst->statics_offset = | |
2053 | subpst->n_static_syms = 0; | |
2054 | ||
2055 | subpst->readin = 0; | |
2056 | subpst->symtab = 0; | |
2057 | subpst->read_symtab = pst->read_symtab; | |
2058 | } | |
2059 | ||
2060 | sort_pst_symbols (pst); | |
2061 | ||
2062 | /* If there is already a psymtab or symtab for a file of this name, | |
2063 | remove it. (If there is a symtab, more drastic things also | |
2064 | happen.) This happens in VxWorks. */ | |
2065 | free_named_symtabs (pst->filename); | |
2066 | ||
2067 | if (num_includes == 0 | |
2068 | && number_dependencies == 0 | |
2069 | && pst->n_global_syms == 0 | |
2070 | && pst->n_static_syms == 0) | |
2071 | { | |
2072 | /* Throw away this psymtab, it's empty. We can't deallocate it, since | |
2073 | it is on the obstack, but we can forget to chain it on the list. */ | |
2074 | /* Empty psymtabs happen as a result of header files which don't have | |
df1e1074 | 2075 | any symbols in them. There can be a lot of them. */ |
a367db89 JK |
2076 | struct partial_symtab *prev_pst; |
2077 | ||
2078 | /* First, snip it out of the psymtab chain */ | |
2079 | ||
2080 | if (pst->objfile->psymtabs == pst) | |
2081 | pst->objfile->psymtabs = pst->next; | |
2082 | else | |
2083 | for (prev_pst = pst->objfile->psymtabs; prev_pst; prev_pst = pst->next) | |
2084 | if (prev_pst->next == pst) | |
2085 | prev_pst->next = pst->next; | |
2086 | ||
2087 | /* Next, put it on a free list for recycling */ | |
2088 | ||
2089 | pst->next = pst->objfile->free_psymtabs; | |
2090 | pst->objfile->free_psymtabs = pst; | |
2091 | ||
2092 | /* Indicate that psymtab was thrown away. */ | |
2093 | pst = (struct partial_symtab *)NULL; | |
2094 | } | |
2095 | return pst; | |
2096 | } | |
2097 | ||
2098 | static void swap_sym PARAMS ((struct internal_syment *, | |
2099 | union internal_auxent *, char **, char **, | |
2100 | unsigned int *, | |
2101 | struct objfile *)); | |
2102 | ||
2103 | /* Swap raw symbol at *RAW and put the name in *NAME, the symbol in | |
2104 | *SYMBOL, the first auxent in *AUX. Advance *RAW and *SYMNUMP over | |
2105 | the symbol and its auxents. */ | |
2106 | ||
2107 | static void | |
2108 | swap_sym (symbol, aux, name, raw, symnump, objfile) | |
2109 | struct internal_syment *symbol; | |
2110 | union internal_auxent *aux; | |
2111 | char **name; | |
2112 | char **raw; | |
2113 | unsigned int *symnump; | |
2114 | struct objfile *objfile; | |
2115 | { | |
2116 | bfd_coff_swap_sym_in (objfile->obfd, *raw, symbol); | |
2117 | if (symbol->n_zeroes) | |
2118 | { | |
2119 | /* If it's exactly E_SYMNMLEN characters long it isn't | |
2120 | '\0'-terminated. */ | |
2121 | if (symbol->n_name[E_SYMNMLEN - 1] != '\0') | |
2122 | { | |
2123 | /* FIXME: wastes memory for symbols which we don't end up putting | |
2124 | into the minimal symbols. */ | |
2125 | char *p; | |
2126 | p = obstack_alloc (&objfile->psymbol_obstack, E_SYMNMLEN + 1); | |
2127 | strncpy (p, symbol->n_name, E_SYMNMLEN); | |
2128 | p[E_SYMNMLEN] = '\0'; | |
2129 | *name = p; | |
2130 | } | |
2131 | else | |
2132 | /* Point to the unswapped name as that persists as long as the | |
2133 | objfile does. */ | |
2134 | *name = ((struct external_syment *)*raw)->e.e_name; | |
2135 | } | |
2136 | else if (symbol->n_sclass & 0x80) | |
2137 | { | |
2138 | *name = ((struct coff_symfile_info *)objfile->sym_private)->debugsec | |
2139 | + symbol->n_offset; | |
2140 | } | |
2141 | else | |
2142 | { | |
2143 | *name = ((struct coff_symfile_info *)objfile->sym_private)->strtbl | |
2144 | + symbol->n_offset; | |
2145 | } | |
2146 | ++*symnump; | |
2147 | *raw += coff_data (objfile->obfd)->local_symesz; | |
2148 | if (symbol->n_numaux > 0) | |
2149 | { | |
2150 | bfd_coff_swap_aux_in (objfile->obfd, *raw, symbol->n_type, | |
2151 | symbol->n_sclass, 0, symbol->n_numaux, aux); | |
2152 | ||
2153 | *symnump += symbol->n_numaux; | |
2154 | *raw += coff_data (objfile->obfd)->local_symesz * symbol->n_numaux; | |
2155 | } | |
e38e0312 JG |
2156 | } |
2157 | ||
2158 | static void | |
a367db89 JK |
2159 | scan_xcoff_symtab (section_offsets, objfile) |
2160 | struct section_offsets *section_offsets; | |
2161 | struct objfile *objfile; | |
e38e0312 | 2162 | { |
a367db89 | 2163 | int toc_offset = 0; /* toc offset value in data section. */ |
df1e1074 | 2164 | char *filestring = NULL; |
a367db89 JK |
2165 | |
2166 | char *namestring; | |
a367db89 | 2167 | int past_first_source_file = 0; |
a367db89 JK |
2168 | bfd *abfd; |
2169 | unsigned int nsyms; | |
2170 | ||
2171 | /* Current partial symtab */ | |
2172 | struct partial_symtab *pst; | |
2173 | ||
2174 | /* List of current psymtab's include files */ | |
2175 | char **psymtab_include_list; | |
2176 | int includes_allocated; | |
2177 | int includes_used; | |
2178 | ||
2179 | /* Index within current psymtab dependency list */ | |
2180 | struct partial_symtab **dependency_list; | |
2181 | int dependencies_used, dependencies_allocated; | |
2182 | ||
2183 | char *sraw_symbol; | |
2184 | struct internal_syment symbol; | |
2185 | union internal_auxent main_aux; | |
2186 | unsigned int ssymnum; | |
2187 | ||
2188 | char *last_csect_name = NULL; /* last seen csect's name and value */ | |
df1e1074 PS |
2189 | CORE_ADDR last_csect_val = 0; |
2190 | int last_csect_sec = 0; | |
2191 | int misc_func_recorded = 0; /* true if any misc. function */ | |
3a179be1 | 2192 | int textlow_not_set = 1; |
a367db89 JK |
2193 | |
2194 | pst = (struct partial_symtab *) 0; | |
2195 | ||
2196 | includes_allocated = 30; | |
2197 | includes_used = 0; | |
2198 | psymtab_include_list = (char **) alloca (includes_allocated * | |
2199 | sizeof (char *)); | |
2200 | ||
2201 | dependencies_allocated = 30; | |
2202 | dependencies_used = 0; | |
2203 | dependency_list = | |
2204 | (struct partial_symtab **) alloca (dependencies_allocated * | |
2205 | sizeof (struct partial_symtab *)); | |
2206 | ||
2207 | last_source_file = NULL; | |
2208 | ||
2209 | abfd = objfile->obfd; | |
2210 | ||
2211 | sraw_symbol = ((struct coff_symfile_info *)objfile->sym_private)->symtbl; | |
2212 | nsyms = ((struct coff_symfile_info *)objfile->sym_private)->symtbl_num_syms; | |
2213 | ssymnum = 0; | |
2214 | while (ssymnum < nsyms) | |
2215 | { | |
df1e1074 | 2216 | int sclass = ((struct external_syment *)sraw_symbol)->e_sclass[0] & 0xff; |
a367db89 JK |
2217 | /* This is the type we pass to partial-stab.h. A less kludgy solution |
2218 | would be to break out partial-stab.h into its various parts--shuffle | |
2219 | off the DBXREAD_ONLY stuff to dbxread.c, and make separate | |
2220 | pstab-norm.h (for most types), pstab-sol.h (for N_SOL), etc. */ | |
2221 | int stype; | |
2222 | ||
2223 | QUIT; | |
2224 | ||
2225 | switch (sclass) | |
2226 | { | |
2227 | case C_EXT: | |
2228 | case C_HIDEXT: | |
2229 | { | |
2230 | /* The CSECT auxent--always the last auxent. */ | |
2231 | union internal_auxent csect_aux; | |
2232 | unsigned int symnum_before = ssymnum; | |
2233 | ||
2234 | swap_sym (&symbol, &main_aux, &namestring, &sraw_symbol, | |
2235 | &ssymnum, objfile); | |
2236 | if (symbol.n_numaux > 1) | |
2237 | { | |
2238 | bfd_coff_swap_aux_in | |
2239 | (objfile->obfd, | |
2240 | sraw_symbol - coff_data(abfd)->local_symesz, | |
2241 | symbol.n_type, | |
2242 | symbol.n_sclass, | |
2243 | symbol.n_numaux - 1, | |
2244 | symbol.n_numaux, | |
2245 | &csect_aux); | |
2246 | } | |
2247 | else | |
2248 | csect_aux = main_aux; | |
2249 | ||
df1e1074 PS |
2250 | /* If symbol name starts with ".$" or "$", ignore it. */ |
2251 | if (namestring[0] == '$' | |
2252 | || (namestring[0] == '.' && namestring[1] == '$')) | |
2253 | break; | |
2254 | ||
a367db89 JK |
2255 | switch (csect_aux.x_csect.x_smtyp & 0x7) |
2256 | { | |
2257 | case XTY_SD: | |
2258 | switch (csect_aux.x_csect.x_smclas) | |
2259 | { | |
2260 | case XMC_PR: | |
2261 | if (last_csect_name) | |
2262 | { | |
2263 | /* If no misc. function recorded in the last | |
2264 | seen csect, enter it as a function. This | |
2265 | will take care of functions like strcmp() | |
2266 | compiled by xlc. */ | |
2267 | ||
2268 | if (!misc_func_recorded) | |
2269 | { | |
2270 | RECORD_MINIMAL_SYMBOL | |
2271 | (last_csect_name, last_csect_val, | |
2272 | mst_text, last_csect_sec, | |
2273 | objfile); | |
2274 | } | |
2275 | ||
2276 | if (pst != NULL) | |
2277 | { | |
2278 | /* We have to allocate one psymtab for | |
2279 | each program csect, because their text | |
2280 | sections need not be adjacent. */ | |
2281 | xcoff_end_psymtab | |
68aadb90 FF |
2282 | (pst, psymtab_include_list, includes_used, |
2283 | symnum_before, dependency_list, | |
2284 | dependencies_used, textlow_not_set); | |
a367db89 JK |
2285 | includes_used = 0; |
2286 | dependencies_used = 0; | |
2287 | /* Give all psymtabs for this source file the same | |
2288 | name. */ | |
2289 | pst = xcoff_start_psymtab | |
2290 | (objfile, section_offsets, | |
2291 | filestring, | |
2292 | symnum_before, | |
2293 | objfile->global_psymbols.next, | |
2294 | objfile->static_psymbols.next); | |
2295 | } | |
2296 | } | |
2297 | if (namestring && namestring[0] == '.') | |
2298 | { | |
2299 | last_csect_name = namestring; | |
2300 | last_csect_val = symbol.n_value; | |
2301 | last_csect_sec = | |
2302 | secnum_to_section (symbol.n_scnum, objfile); | |
2303 | } | |
2304 | if (pst != NULL) | |
2305 | { | |
2306 | CORE_ADDR highval = | |
2307 | symbol.n_value + csect_aux.x_csect.x_scnlen.l; | |
2308 | if (highval > pst->texthigh) | |
2309 | pst->texthigh = highval; | |
2310 | if (pst->textlow == 0 || symbol.n_value < pst->textlow) | |
2311 | pst->textlow = symbol.n_value; | |
2312 | } | |
2313 | misc_func_recorded = 0; | |
2314 | break; | |
df1e1074 | 2315 | |
a367db89 | 2316 | case XMC_RW: |
df1e1074 PS |
2317 | /* Data variables are recorded in the minimal symbol |
2318 | table, except for section symbols. */ | |
2319 | if (*namestring != '.') | |
2320 | prim_record_minimal_symbol_and_info | |
2321 | (namestring, symbol.n_value, | |
2322 | sclass == C_HIDEXT ? mst_file_data : mst_data, | |
2323 | NULL, secnum_to_section (symbol.n_scnum, objfile), | |
2324 | objfile); | |
a367db89 | 2325 | break; |
df1e1074 | 2326 | |
a367db89 JK |
2327 | case XMC_TC0: |
2328 | if (toc_offset) | |
2329 | warning ("More than one XMC_TC0 symbol found."); | |
2330 | toc_offset = symbol.n_value; | |
2331 | break; | |
df1e1074 | 2332 | |
a367db89 JK |
2333 | case XMC_TC: |
2334 | /* These symbols tell us where the TOC entry for a | |
2335 | variable is, not the variable itself. */ | |
2336 | break; | |
df1e1074 | 2337 | |
a367db89 JK |
2338 | default: |
2339 | break; | |
2340 | } | |
2341 | break; | |
2342 | ||
2343 | case XTY_LD: | |
2344 | switch (csect_aux.x_csect.x_smclas) | |
2345 | { | |
2346 | case XMC_PR: | |
df1e1074 PS |
2347 | /* A function entry point. */ |
2348 | ||
2349 | if (first_fun_line_offset == 0 && symbol.n_numaux > 1) | |
2350 | first_fun_line_offset = | |
2351 | main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr; | |
2352 | RECORD_MINIMAL_SYMBOL | |
2353 | (namestring, symbol.n_value, | |
2354 | sclass == C_HIDEXT ? mst_file_text : mst_text, | |
2355 | secnum_to_section (symbol.n_scnum, objfile), | |
2356 | objfile); | |
a367db89 | 2357 | break; |
df1e1074 | 2358 | |
a367db89 JK |
2359 | case XMC_GL: |
2360 | /* shared library function trampoline code entry | |
2361 | point. */ | |
2362 | ||
2363 | /* record trampoline code entries as | |
2364 | mst_solib_trampoline symbol. When we lookup mst | |
2365 | symbols, we will choose mst_text over | |
2366 | mst_solib_trampoline. */ | |
2367 | RECORD_MINIMAL_SYMBOL | |
2368 | (namestring, symbol.n_value, | |
2369 | mst_solib_trampoline, | |
2370 | secnum_to_section (symbol.n_scnum, objfile), | |
2371 | objfile); | |
2372 | break; | |
2373 | ||
2374 | case XMC_DS: | |
2375 | /* The symbols often have the same names as | |
2376 | debug symbols for functions, and confuse | |
2377 | lookup_symbol. */ | |
2378 | break; | |
2379 | ||
2380 | default: | |
2381 | ||
2382 | /* xlc puts each variable in a separate csect, | |
2383 | so we get an XTY_SD for each variable. But | |
2384 | gcc puts several variables in a csect, so | |
2385 | that each variable only gets an XTY_LD. We | |
2386 | still need to record them. This will | |
2387 | typically be XMC_RW; I suspect XMC_RO and | |
2388 | XMC_BS might be possible too. */ | |
df1e1074 PS |
2389 | if (*namestring != '.') |
2390 | prim_record_minimal_symbol_and_info | |
2391 | (namestring, symbol.n_value, | |
2392 | sclass == C_HIDEXT ? mst_file_data : mst_data, | |
2393 | NULL, secnum_to_section (symbol.n_scnum, objfile), | |
2394 | objfile); | |
2395 | break; | |
2396 | } | |
2397 | break; | |
a367db89 | 2398 | |
df1e1074 PS |
2399 | case XTY_CM: |
2400 | switch (csect_aux.x_csect.x_smclas) | |
2401 | { | |
2402 | case XMC_RW: | |
2403 | case XMC_BS: | |
2404 | /* Common variables are recorded in the minimal symbol | |
2405 | table, except for section symbols. */ | |
2406 | if (*namestring != '.') | |
2407 | prim_record_minimal_symbol_and_info | |
2408 | (namestring, symbol.n_value, | |
2409 | sclass == C_HIDEXT ? mst_file_bss : mst_bss, | |
2410 | NULL, secnum_to_section (symbol.n_scnum, objfile), | |
2411 | objfile); | |
a367db89 JK |
2412 | break; |
2413 | } | |
df1e1074 PS |
2414 | break; |
2415 | ||
a367db89 JK |
2416 | default: |
2417 | break; | |
2418 | } | |
2419 | } | |
2420 | break; | |
2421 | case C_FILE: | |
2422 | { | |
2423 | unsigned int symnum_before; | |
2424 | ||
2425 | symnum_before = ssymnum; | |
2426 | swap_sym (&symbol, &main_aux, &namestring, &sraw_symbol, | |
2427 | &ssymnum, objfile); | |
2428 | ||
2429 | /* See if the last csect needs to be recorded. */ | |
2430 | ||
2431 | if (last_csect_name && !misc_func_recorded) | |
2432 | { | |
2433 | ||
2434 | /* If no misc. function recorded in the last seen csect, enter | |
2435 | it as a function. This will take care of functions like | |
2436 | strcmp() compiled by xlc. */ | |
2437 | ||
2438 | RECORD_MINIMAL_SYMBOL | |
2439 | (last_csect_name, last_csect_val, | |
2440 | mst_text, last_csect_sec, objfile); | |
2441 | } | |
2442 | ||
2443 | if (pst) | |
2444 | { | |
2445 | xcoff_end_psymtab (pst, psymtab_include_list, includes_used, | |
68aadb90 FF |
2446 | symnum_before, dependency_list, |
2447 | dependencies_used, textlow_not_set); | |
a367db89 JK |
2448 | includes_used = 0; |
2449 | dependencies_used = 0; | |
2450 | } | |
2451 | first_fun_line_offset = 0; | |
2452 | ||
2453 | /* XCOFF, according to the AIX 3.2 documentation, puts the | |
2454 | filename in cs->c_name. But xlc 1.3.0.2 has decided to | |
2455 | do things the standard COFF way and put it in the auxent. | |
2456 | We use the auxent if the symbol is ".file" and an auxent | |
2457 | exists, otherwise use the symbol itself. */ | |
2458 | if (!strcmp (namestring, ".file") && symbol.n_numaux > 0) | |
2459 | { | |
2460 | filestring = coff_getfilename (&main_aux, objfile); | |
2461 | } | |
2462 | else | |
2463 | filestring = namestring; | |
2464 | ||
2465 | pst = xcoff_start_psymtab (objfile, section_offsets, | |
2466 | filestring, | |
2467 | symnum_before, | |
2468 | objfile->global_psymbols.next, | |
2469 | objfile->static_psymbols.next); | |
2470 | last_csect_name = NULL; | |
2471 | } | |
2472 | break; | |
2473 | ||
2474 | default: | |
2475 | { | |
2476 | static struct complaint msg = | |
2477 | {"Storage class %d not recognized during scan", 0, 0}; | |
2478 | complain (&msg, sclass); | |
2479 | } | |
2480 | /* FALLTHROUGH */ | |
2481 | ||
2482 | /* C_FCN is .bf and .ef symbols. I think it is sufficient | |
2483 | to handle only the C_FUN and C_EXT. */ | |
2484 | case C_FCN: | |
2485 | ||
2486 | case C_BSTAT: | |
2487 | case C_ESTAT: | |
2488 | case C_ARG: | |
2489 | case C_REGPARM: | |
2490 | case C_REG: | |
2491 | case C_TPDEF: | |
2492 | case C_STRTAG: | |
2493 | case C_UNTAG: | |
2494 | case C_ENTAG: | |
2495 | case C_LABEL: | |
2496 | case C_NULL: | |
2497 | ||
2498 | /* C_EINCL means we are switching back to the main file. But there | |
2499 | is no reason to care; the only thing we want to know about | |
2500 | includes is the names of all the included (.h) files. */ | |
2501 | case C_EINCL: | |
2502 | ||
2503 | case C_BLOCK: | |
2504 | ||
2505 | /* I don't think C_STAT is used in xcoff; C_HIDEXT appears to be | |
2506 | used instead. */ | |
2507 | case C_STAT: | |
2508 | ||
2509 | /* I don't think the name of the common block (as opposed to the | |
2510 | variables within it) is something which is user visible | |
2511 | currently. */ | |
2512 | case C_BCOMM: | |
2513 | case C_ECOMM: | |
2514 | ||
2515 | case C_PSYM: | |
2516 | case C_RPSYM: | |
2517 | ||
2518 | /* I think we can ignore C_LSYM; types on xcoff seem to use C_DECL | |
2519 | so C_LSYM would appear to be only for locals. */ | |
2520 | case C_LSYM: | |
2521 | ||
2522 | case C_AUTO: | |
2523 | case C_RSYM: | |
2524 | { | |
2525 | /* We probably could save a few instructions by assuming that | |
2526 | C_LSYM, C_PSYM, etc., never have auxents. */ | |
2527 | int naux1 = | |
2528 | ((struct external_syment *)sraw_symbol)->e_numaux[0] + 1; | |
2529 | ssymnum += naux1; | |
2530 | sraw_symbol += sizeof (struct external_syment) * naux1; | |
2531 | } | |
2532 | break; | |
2533 | ||
2534 | case C_BINCL: | |
2535 | stype = N_SOL; | |
2536 | goto pstab; | |
2537 | ||
2538 | case C_FUN: | |
2539 | /* The value of the C_FUN is not the address of the function (it | |
2540 | appears to be the address before linking), but as long as it | |
2541 | is smaller than the actual address, then find_pc_partial_function | |
2542 | will use the minimal symbols instead. I hope. */ | |
2543 | ||
2544 | case C_GSYM: | |
2545 | case C_ECOML: | |
2546 | case C_DECL: | |
2547 | case C_STSYM: | |
2548 | stype = N_LSYM; | |
2549 | pstab:; | |
2550 | swap_sym (&symbol, &main_aux, &namestring, &sraw_symbol, | |
2551 | &ssymnum, objfile); | |
2552 | #define CUR_SYMBOL_TYPE stype | |
2553 | #define CUR_SYMBOL_VALUE symbol.n_value | |
2554 | ||
2555 | /* START_PSYMTAB and END_PSYMTAB are never used, because they are only | |
2556 | called from DBXREAD_ONLY or N_SO code. Likewise for the symnum | |
2557 | variable. */ | |
2558 | #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms) 0 | |
68aadb90 | 2559 | #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)\ |
a367db89 JK |
2560 | do {} while (0) |
2561 | /* We have already set the namestring. */ | |
df1e1074 | 2562 | #define SET_NAMESTRING() /* */ |
a367db89 JK |
2563 | |
2564 | #include "partial-stab.h" | |
2565 | } | |
2566 | } | |
a367db89 JK |
2567 | |
2568 | if (pst) | |
2569 | { | |
2570 | xcoff_end_psymtab (pst, psymtab_include_list, includes_used, | |
68aadb90 FF |
2571 | ssymnum, dependency_list, |
2572 | dependencies_used, textlow_not_set); | |
a367db89 JK |
2573 | } |
2574 | ||
2575 | /* Record the toc offset value of this symbol table into ldinfo structure. | |
2576 | If no XMC_TC0 is found, toc_offset should be zero. Another place to obtain | |
2577 | this information would be file auxiliary header. */ | |
2578 | ||
062cb0d3 FF |
2579 | if (xcoff_add_toc_to_loadinfo_hook != NULL) |
2580 | (*xcoff_add_toc_to_loadinfo_hook) ((unsigned long) toc_offset); | |
e38e0312 JG |
2581 | } |
2582 | ||
a367db89 JK |
2583 | /* Scan and build partial symbols for a symbol file. |
2584 | We have been initialized by a call to dbx_symfile_init, which | |
2585 | put all the relevant info into a "struct dbx_symfile_info", | |
2586 | hung off the objfile structure. | |
e38e0312 | 2587 | |
a367db89 JK |
2588 | SECTION_OFFSETS contains offsets relative to which the symbols in the |
2589 | various sections are (depending where the sections were actually loaded). | |
2590 | MAINLINE is true if we are reading the main symbol | |
2591 | table (as opposed to a shared lib or dynamically loaded file). */ | |
e38e0312 | 2592 | |
1ab3bf1b | 2593 | static void |
a367db89 JK |
2594 | xcoff_initial_scan (objfile, section_offsets, mainline) |
2595 | struct objfile *objfile; | |
2596 | struct section_offsets *section_offsets; | |
2597 | int mainline; /* FIXME comments above */ | |
e38e0312 | 2598 | { |
a367db89 JK |
2599 | bfd *abfd; |
2600 | int val; | |
2601 | struct cleanup *back_to; | |
d5931d79 JG |
2602 | int num_symbols; /* # of symbols */ |
2603 | file_ptr symtab_offset; /* symbol table and */ | |
2604 | file_ptr stringtab_offset; /* string table file offsets */ | |
80d68b1d | 2605 | struct coff_symfile_info *info; |
e38e0312 | 2606 | char *name; |
a367db89 JK |
2607 | unsigned int size; |
2608 | ||
a367db89 | 2609 | /* Initialize load info structure. */ |
062cb0d3 FF |
2610 | if (mainline && xcoff_init_loadinfo_hook != NULL) |
2611 | (*xcoff_init_loadinfo_hook) (); | |
e38e0312 | 2612 | |
80d68b1d FF |
2613 | info = (struct coff_symfile_info *) objfile -> sym_private; |
2614 | symfile_bfd = abfd = objfile->obfd; | |
2615 | name = objfile->name; | |
e38e0312 JG |
2616 | |
2617 | num_symbols = bfd_get_symcount (abfd); /* # of symbols */ | |
2618 | symtab_offset = obj_sym_filepos (abfd); /* symbol table file offset */ | |
2619 | stringtab_offset = symtab_offset + | |
2620 | num_symbols * coff_data(abfd)->local_symesz; | |
2621 | ||
2622 | info->min_lineno_offset = 0; | |
2623 | info->max_lineno_offset = 0; | |
2624 | bfd_map_over_sections (abfd, find_linenos, info); | |
2625 | ||
9d61147e JK |
2626 | if (num_symbols > 0) |
2627 | { | |
a367db89 JK |
2628 | /* Read the string table. */ |
2629 | init_stringtab (abfd, stringtab_offset, objfile); | |
e38e0312 | 2630 | |
a367db89 JK |
2631 | /* Read the .debug section, if present. */ |
2632 | { | |
2633 | sec_ptr secp; | |
2634 | bfd_size_type length; | |
2635 | char *debugsec = NULL; | |
2636 | ||
2637 | secp = bfd_get_section_by_name (abfd, ".debug"); | |
2638 | if (secp) | |
2639 | { | |
2640 | length = bfd_section_size (abfd, secp); | |
2641 | if (length) | |
2642 | { | |
2643 | debugsec = | |
2644 | (char *) obstack_alloc (&objfile->symbol_obstack, length); | |
2645 | ||
2646 | if (!bfd_get_section_contents (abfd, secp, debugsec, | |
2647 | (file_ptr) 0, length)) | |
2648 | { | |
2649 | error ("Error reading .debug section of `%s': %s", | |
2650 | name, bfd_errmsg (bfd_get_error ())); | |
2651 | } | |
2652 | } | |
2653 | } | |
2654 | ((struct coff_symfile_info *)objfile->sym_private)->debugsec = | |
2655 | debugsec; | |
9d61147e JK |
2656 | } |
2657 | } | |
e38e0312 | 2658 | |
a367db89 JK |
2659 | /* Read the symbols. We keep them in core because we will want to |
2660 | access them randomly in read_symbol*. */ | |
987622b5 | 2661 | val = bfd_seek (abfd, symtab_offset, SEEK_SET); |
e38e0312 | 2662 | if (val < 0) |
a367db89 JK |
2663 | error ("Error reading symbols from %s: %s", |
2664 | name, bfd_errmsg (bfd_get_error ())); | |
2665 | size = coff_data (abfd)->local_symesz * num_symbols; | |
2666 | ((struct coff_symfile_info *)objfile->sym_private)->symtbl = | |
2667 | obstack_alloc (&objfile->symbol_obstack, size); | |
2668 | ((struct coff_symfile_info *)objfile->sym_private)->symtbl_num_syms = | |
2669 | num_symbols; | |
2670 | ||
2671 | val = bfd_read (((struct coff_symfile_info *)objfile->sym_private)->symtbl, | |
2672 | size, 1, abfd); | |
2673 | if (val != size) | |
2674 | perror_with_name ("reading symbol table"); | |
2675 | ||
2676 | /* If we are reinitializing, or if we have never loaded syms yet, init */ | |
2677 | if (mainline | |
2678 | || objfile->global_psymbols.size == 0 | |
2679 | || objfile->static_psymbols.size == 0) | |
2680 | /* I'm not sure how how good num_symbols is; the rule of thumb in | |
2681 | init_psymbol_list was developed for a.out. On the one hand, | |
2682 | num_symbols includes auxents. On the other hand, it doesn't | |
2683 | include N_SLINE. */ | |
2684 | init_psymbol_list (objfile, num_symbols); | |
e38e0312 | 2685 | |
a367db89 JK |
2686 | pending_blocks = 0; |
2687 | back_to = make_cleanup (really_free_pendings, 0); | |
e38e0312 | 2688 | |
1ab3bf1b JG |
2689 | init_minimal_symbol_collection (); |
2690 | make_cleanup (discard_minimal_symbols, 0); | |
e38e0312 | 2691 | |
a367db89 JK |
2692 | /* Now that the symbol table data of the executable file are all in core, |
2693 | process them and define symbols accordingly. */ | |
e38e0312 | 2694 | |
a367db89 | 2695 | scan_xcoff_symtab (section_offsets, objfile); |
e38e0312 | 2696 | |
1ab3bf1b JG |
2697 | /* Install any minimal symbols that have been collected as the current |
2698 | minimal symbols for this objfile. */ | |
2699 | ||
80d68b1d | 2700 | install_minimal_symbols (objfile); |
0eb22669 PS |
2701 | |
2702 | do_cleanups (back_to); | |
e38e0312 | 2703 | } |
a367db89 | 2704 | \f |
e2adc41a | 2705 | static struct section_offsets * |
9b280a7f | 2706 | xcoff_symfile_offsets (objfile, addr) |
2670f34d JG |
2707 | struct objfile *objfile; |
2708 | CORE_ADDR addr; | |
2709 | { | |
2710 | struct section_offsets *section_offsets; | |
2711 | int i; | |
3c02636b | 2712 | |
e2adc41a | 2713 | objfile->num_sections = SECT_OFF_MAX; |
2670f34d | 2714 | section_offsets = (struct section_offsets *) |
3c02636b JK |
2715 | obstack_alloc |
2716 | (&objfile -> psymbol_obstack, | |
2717 | sizeof (struct section_offsets) | |
e2adc41a | 2718 | + sizeof (section_offsets->offsets) * objfile->num_sections); |
2670f34d | 2719 | |
1d7e34e1 JK |
2720 | /* syms_from_objfile kindly subtracts from addr the bfd_section_vma |
2721 | of the .text section. This strikes me as wrong--whether the | |
2722 | offset to be applied to symbol reading is relative to the start | |
2723 | address of the section depends on the symbol format. In any | |
2724 | event, this whole "addr" concept is pretty broken (it doesn't | |
2725 | handle any section but .text sensibly), so just ignore the addr | |
a367db89 JK |
2726 | parameter and use 0. rs6000-nat.c will set the correct section |
2727 | offsets via objfile_relocate. */ | |
e2adc41a | 2728 | for (i = 0; i < objfile->num_sections; ++i) |
38fb211b | 2729 | ANOFFSET (section_offsets, i) = 0; |
e2adc41a | 2730 | |
2670f34d JG |
2731 | return section_offsets; |
2732 | } | |
0eed42de JK |
2733 | |
2734 | /* Register our ability to parse symbols for xcoff BFD files. */ | |
e38e0312 | 2735 | |
9b280a7f | 2736 | static struct sym_fns xcoff_sym_fns = |
e38e0312 | 2737 | { |
0eed42de JK |
2738 | |
2739 | /* Because the bfd uses coff_flavour, we need to specially kludge | |
e2adc41a JK |
2740 | the flavour. It is possible that coff and xcoff should be merged as |
2741 | they do have fundamental similarities (for example, the extra storage | |
2742 | classes used for stabs could presumably be recognized in any COFF file). | |
2743 | However, in addition to obvious things like all the csect hair, there are | |
2744 | some subtler differences between xcoffread.c and coffread.c, notably | |
2745 | the fact that coffread.c has no need to read in all the symbols, but | |
2746 | xcoffread.c reads all the symbols and does in fact randomly access them | |
a367db89 | 2747 | (in C_BSTAT and line number processing). */ |
0eed42de | 2748 | |
52912aac | 2749 | (enum bfd_flavour)-1, |
0eed42de | 2750 | |
9b280a7f JG |
2751 | xcoff_new_init, /* sym_new_init: init anything gbl to entire symtab */ |
2752 | xcoff_symfile_init, /* sym_init: read initial info, setup for sym_read() */ | |
a367db89 | 2753 | xcoff_initial_scan, /* sym_read: read a symbol file into symtab */ |
9b280a7f JG |
2754 | xcoff_symfile_finish, /* sym_finish: finished with file, cleanup */ |
2755 | xcoff_symfile_offsets, /* sym_offsets: xlate offsets ext->int form */ | |
80d68b1d | 2756 | NULL /* next: pointer to next struct sym_fns */ |
e38e0312 JG |
2757 | }; |
2758 | ||
2759 | void | |
2760 | _initialize_xcoffread () | |
2761 | { | |
9b280a7f | 2762 | add_symtab_fns(&xcoff_sym_fns); |
e5eeaaf8 | 2763 | |
a81ce07d JK |
2764 | func_symbol_type = init_type (TYPE_CODE_FUNC, 1, 0, |
2765 | "<function, no debug info>", NULL); | |
2766 | TYPE_TARGET_TYPE (func_symbol_type) = builtin_type_int; | |
2767 | var_symbol_type = | |
2768 | init_type (TYPE_CODE_INT, TARGET_INT_BIT / HOST_CHAR_BIT, 0, | |
2769 | "<variable, no debug info>", NULL); | |
e38e0312 | 2770 | } |