* coffread.c (record_minimal_symbol): Update.
[deliverable/binutils-gdb.git] / gdb / somread.c
1 /* Read HP PA/Risc object files for GDB.
2 Copyright (C) 1991-2013 Free Software Foundation, Inc.
3 Written by Fred Fish at Cygnus Support.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "bfd.h"
22 #include "som/aout.h"
23 #include "symtab.h"
24 #include "symfile.h"
25 #include "objfiles.h"
26 #include "buildsym.h"
27 #include "stabsread.h"
28 #include "gdb-stabs.h"
29 #include "complaints.h"
30 #include "gdb_string.h"
31 #include "demangle.h"
32 #include "som.h"
33 #include "libhppa.h"
34 #include "psymtab.h"
35
36 #include "solib-som.h"
37
38 /* Read the symbol table of a SOM file.
39
40 Given an open bfd, a base address to relocate symbols to, and a
41 flag that specifies whether or not this bfd is for an executable
42 or not (may be shared library for example), add all the global
43 function and data symbols to the minimal symbol table. */
44
45 static void
46 som_symtab_read (bfd *abfd, struct objfile *objfile,
47 struct section_offsets *section_offsets)
48 {
49 struct gdbarch *gdbarch = get_objfile_arch (objfile);
50 unsigned int number_of_symbols;
51 int val, dynamic;
52 char *stringtab;
53 asection *shlib_info;
54 struct som_external_symbol_dictionary_record *buf, *bufp, *endbufp;
55 char *symname;
56 CONST int symsize = sizeof (struct som_external_symbol_dictionary_record);
57
58
59 #define text_offset ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile))
60 #define data_offset ANOFFSET (section_offsets, SECT_OFF_DATA (objfile))
61
62 number_of_symbols = bfd_get_symcount (abfd);
63
64 /* Allocate a buffer to read in the debug info.
65 We avoid using alloca because the memory size could be so large
66 that we could hit the stack size limit. */
67 buf = xmalloc (symsize * number_of_symbols);
68 make_cleanup (xfree, buf);
69 bfd_seek (abfd, obj_som_sym_filepos (abfd), SEEK_SET);
70 val = bfd_bread (buf, symsize * number_of_symbols, abfd);
71 if (val != symsize * number_of_symbols)
72 error (_("Couldn't read symbol dictionary!"));
73
74 /* Allocate a buffer to read in the som stringtab section of
75 the debugging info. Again, we avoid using alloca because
76 the data could be so large that we could potentially hit
77 the stack size limitat. */
78 stringtab = xmalloc (obj_som_stringtab_size (abfd));
79 make_cleanup (xfree, stringtab);
80 bfd_seek (abfd, obj_som_str_filepos (abfd), SEEK_SET);
81 val = bfd_bread (stringtab, obj_som_stringtab_size (abfd), abfd);
82 if (val != obj_som_stringtab_size (abfd))
83 error (_("Can't read in HP string table."));
84
85 /* We need to determine if objfile is a dynamic executable (so we
86 can do the right thing for ST_ENTRY vs ST_CODE symbols).
87
88 There's nothing in the header which easily allows us to do
89 this.
90
91 This code used to rely upon the existence of a $SHLIB_INFO$
92 section to make this determination. HP claims that it is
93 more accurate to check for a nonzero text offset, but they
94 have not provided any information about why that test is
95 more accurate. */
96 dynamic = (text_offset != 0);
97
98 endbufp = buf + number_of_symbols;
99 for (bufp = buf; bufp < endbufp; ++bufp)
100 {
101 enum minimal_symbol_type ms_type;
102 unsigned int flags = bfd_getb32 (bufp->flags);
103 unsigned int symbol_type
104 = (flags >> SOM_SYMBOL_TYPE_SH) & SOM_SYMBOL_TYPE_MASK;
105 unsigned int symbol_scope
106 = (flags >> SOM_SYMBOL_SCOPE_SH) & SOM_SYMBOL_SCOPE_MASK;
107 CORE_ADDR symbol_value = bfd_getb32 (bufp->symbol_value);
108 asection *section = NULL;
109
110 QUIT;
111
112 /* Compute the section. */
113 switch (symbol_scope)
114 {
115 case SS_EXTERNAL:
116 if (symbol_type != ST_STORAGE)
117 section = bfd_und_section_ptr;
118 else
119 section = bfd_com_section_ptr;
120 break;
121
122 case SS_UNSAT:
123 if (symbol_type != ST_STORAGE)
124 section = bfd_und_section_ptr;
125 else
126 section = bfd_com_section_ptr;
127 break;
128
129 case SS_UNIVERSAL:
130 section = bfd_section_from_som_symbol (abfd, bufp);
131 break;
132
133 case SS_LOCAL:
134 section = bfd_section_from_som_symbol (abfd, bufp);
135 break;
136 }
137
138 switch (symbol_scope)
139 {
140 case SS_UNIVERSAL:
141 case SS_EXTERNAL:
142 switch (symbol_type)
143 {
144 case ST_SYM_EXT:
145 case ST_ARG_EXT:
146 continue;
147
148 case ST_CODE:
149 case ST_PRI_PROG:
150 case ST_SEC_PROG:
151 case ST_MILLICODE:
152 symname = bfd_getb32 (bufp->name) + stringtab;
153 ms_type = mst_text;
154 symbol_value += text_offset;
155 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
156 break;
157
158 case ST_ENTRY:
159 symname = bfd_getb32 (bufp->name) + stringtab;
160 /* For a dynamic executable, ST_ENTRY symbols are
161 the stubs, while the ST_CODE symbol is the real
162 function. */
163 if (dynamic)
164 ms_type = mst_solib_trampoline;
165 else
166 ms_type = mst_text;
167 symbol_value += text_offset;
168 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
169 break;
170
171 case ST_STUB:
172 symname = bfd_getb32 (bufp->name) + stringtab;
173 ms_type = mst_solib_trampoline;
174 symbol_value += text_offset;
175 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
176 break;
177
178 case ST_DATA:
179 symname = bfd_getb32 (bufp->name) + stringtab;
180 symbol_value += data_offset;
181 ms_type = mst_data;
182 break;
183 default:
184 continue;
185 }
186 break;
187
188 #if 0
189 /* SS_GLOBAL and SS_LOCAL are two names for the same thing (!). */
190 case SS_GLOBAL:
191 #endif
192 case SS_LOCAL:
193 switch (symbol_type)
194 {
195 case ST_SYM_EXT:
196 case ST_ARG_EXT:
197 continue;
198
199 case ST_CODE:
200 symname = bfd_getb32 (bufp->name) + stringtab;
201 ms_type = mst_file_text;
202 symbol_value += text_offset;
203 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
204
205 check_strange_names:
206 /* Utah GCC 2.5, FSF GCC 2.6 and later generate correct local
207 label prefixes for stabs, constant data, etc. So we need
208 only filter out L$ symbols which are left in due to
209 limitations in how GAS generates SOM relocations.
210
211 When linking in the HPUX C-library the HP linker has
212 the nasty habit of placing section symbols from the literal
213 subspaces in the middle of the program's text. Filter
214 those out as best we can. Check for first and last character
215 being '$'.
216
217 And finally, the newer HP compilers emit crud like $PIC_foo$N
218 in some circumstance (PIC code I guess). It's also claimed
219 that they emit D$ symbols too. What stupidity. */
220 if ((symname[0] == 'L' && symname[1] == '$')
221 || (symname[0] == '$' && symname[strlen (symname) - 1] == '$')
222 || (symname[0] == 'D' && symname[1] == '$')
223 || (strncmp (symname, "L0\001", 3) == 0)
224 || (strncmp (symname, "$PIC", 4) == 0))
225 continue;
226 break;
227
228 case ST_PRI_PROG:
229 case ST_SEC_PROG:
230 case ST_MILLICODE:
231 symname = bfd_getb32 (bufp->name) + stringtab;
232 ms_type = mst_file_text;
233 symbol_value += text_offset;
234 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
235 break;
236
237 case ST_ENTRY:
238 symname = bfd_getb32 (bufp->name) + stringtab;
239 /* SS_LOCAL symbols in a shared library do not have
240 export stubs, so we do not have to worry about
241 using mst_file_text vs mst_solib_trampoline here like
242 we do for SS_UNIVERSAL and SS_EXTERNAL symbols above. */
243 ms_type = mst_file_text;
244 symbol_value += text_offset;
245 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
246 break;
247
248 case ST_STUB:
249 symname = bfd_getb32 (bufp->name) + stringtab;
250 ms_type = mst_solib_trampoline;
251 symbol_value += text_offset;
252 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
253 break;
254
255
256 case ST_DATA:
257 symname = bfd_getb32 (bufp->name) + stringtab;
258 symbol_value += data_offset;
259 ms_type = mst_file_data;
260 goto check_strange_names;
261
262 default:
263 continue;
264 }
265 break;
266
267 /* This can happen for common symbols when -E is passed to the
268 final link. No idea _why_ that would make the linker force
269 common symbols to have an SS_UNSAT scope, but it does.
270
271 This also happens for weak symbols, but their type is
272 ST_DATA. */
273 case SS_UNSAT:
274 switch (symbol_type)
275 {
276 case ST_STORAGE:
277 case ST_DATA:
278 symname = bfd_getb32 (bufp->name) + stringtab;
279 symbol_value += data_offset;
280 ms_type = mst_data;
281 break;
282
283 default:
284 continue;
285 }
286 break;
287
288 default:
289 continue;
290 }
291
292 if (bfd_getb32 (bufp->name) > obj_som_stringtab_size (abfd))
293 error (_("Invalid symbol data; bad HP string table offset: %s"),
294 plongest (bfd_getb32 (bufp->name)));
295
296 if (bfd_is_const_section (section))
297 {
298 struct obj_section *iter;
299
300 ALL_OBJFILE_OSECTIONS (objfile, iter)
301 {
302 if (bfd_is_const_section (iter->the_bfd_section))
303 continue;
304
305 if (obj_section_addr (iter) <= symbol_value
306 && symbol_value < obj_section_endaddr (iter))
307 {
308 section = iter->the_bfd_section;
309 break;
310 }
311 }
312 }
313
314 prim_record_minimal_symbol_and_info (symname, symbol_value, ms_type,
315 gdb_bfd_section_index (objfile->obfd,
316 section),
317 objfile);
318 }
319 }
320
321 /* Scan and build partial symbols for a symbol file.
322 We have been initialized by a call to som_symfile_init, which
323 currently does nothing.
324
325 SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
326 in each section. This is ignored, as it isn't needed for SOM.
327
328 This function only does the minimum work necessary for letting the
329 user "name" things symbolically; it does not read the entire symtab.
330 Instead, it reads the external and static symbols and puts them in partial
331 symbol tables. When more extensive information is requested of a
332 file, the corresponding partial symbol table is mutated into a full
333 fledged symbol table by going back and reading the symbols
334 for real.
335
336 We look for sections with specific names, to tell us what debug
337 format to look for.
338
339 somstab_build_psymtabs() handles STABS symbols.
340
341 Note that SOM files have a "minimal" symbol table, which is vaguely
342 reminiscent of a COFF symbol table, but has only the minimal information
343 necessary for linking. We process this also, and use the information to
344 build gdb's minimal symbol table. This gives us some minimal debugging
345 capability even for files compiled without -g. */
346
347 static void
348 som_symfile_read (struct objfile *objfile, int symfile_flags)
349 {
350 bfd *abfd = objfile->obfd;
351 struct cleanup *back_to;
352
353 init_minimal_symbol_collection ();
354 back_to = make_cleanup_discard_minimal_symbols ();
355
356 /* Process the normal SOM symbol table first.
357 This reads in the DNTT and string table, but doesn't
358 actually scan the DNTT. It does scan the linker symbol
359 table and thus build up a "minimal symbol table". */
360
361 som_symtab_read (abfd, objfile, objfile->section_offsets);
362
363 /* Install any minimal symbols that have been collected as the current
364 minimal symbols for this objfile.
365 Further symbol-reading is done incrementally, file-by-file,
366 in a step known as "psymtab-to-symtab" expansion. hp-symtab-read.c
367 contains the code to do the actual DNTT scanning and symtab building. */
368 install_minimal_symbols (objfile);
369 do_cleanups (back_to);
370
371 /* Now read information from the stabs debug sections.
372 This is emitted by gcc. */
373 stabsect_build_psymtabs (objfile,
374 "$GDB_SYMBOLS$", "$GDB_STRINGS$", "$TEXT$");
375 }
376
377 /* Initialize anything that needs initializing when a completely new symbol
378 file is specified (not just adding some symbols from another file, e.g. a
379 shared library).
380
381 We reinitialize buildsym, since we may be reading stabs from a SOM file. */
382
383 static void
384 som_new_init (struct objfile *ignore)
385 {
386 stabsread_new_init ();
387 buildsym_new_init ();
388 }
389
390 /* Perform any local cleanups required when we are done with a particular
391 objfile. I.e, we are in the process of discarding all symbol information
392 for an objfile, freeing up all memory held for it, and unlinking the
393 objfile struct from the global list of known objfiles. */
394
395 static void
396 som_symfile_finish (struct objfile *objfile)
397 {
398 }
399
400 /* SOM specific initialization routine for reading symbols. */
401
402 static void
403 som_symfile_init (struct objfile *objfile)
404 {
405 /* SOM objects may be reordered, so set OBJF_REORDERED. If we
406 find this causes a significant slowdown in gdb then we could
407 set it in the debug symbol readers only when necessary. */
408 objfile->flags |= OBJF_REORDERED;
409 }
410
411 /* An object of this type is passed to find_section_offset. */
412
413 struct find_section_offset_arg
414 {
415 /* The objfile. */
416
417 struct objfile *objfile;
418
419 /* Flags to invert. */
420
421 flagword invert;
422
423 /* Flags to look for. */
424
425 flagword flags;
426
427 /* A text section with non-zero size, if any. */
428
429 asection *best_section;
430
431 /* An empty text section, if any. */
432
433 asection *empty_section;
434 };
435
436 /* A callback for bfd_map_over_sections that tries to find a section
437 with particular flags in an objfile. */
438
439 static void
440 find_section_offset (bfd *abfd, asection *sect, void *arg)
441 {
442 struct find_section_offset_arg *info = arg;
443 flagword aflag;
444
445 aflag = bfd_get_section_flags (abfd, sect);
446
447 aflag ^= info->invert;
448
449 if ((aflag & info->flags) == info->flags)
450 {
451 if (bfd_section_size (abfd, sect) > 0)
452 {
453 if (info->best_section == NULL)
454 info->best_section = sect;
455 }
456 else
457 {
458 if (info->empty_section == NULL)
459 info->empty_section = sect;
460 }
461 }
462 }
463
464 /* Set a section index from a BFD. */
465
466 static void
467 set_section_index (struct objfile *objfile, flagword invert, flagword flags,
468 int *index_ptr)
469 {
470 struct find_section_offset_arg info;
471
472 info.objfile = objfile;
473 info.best_section = NULL;
474 info.empty_section = NULL;
475 info.invert = invert;
476 info.flags = flags;
477 bfd_map_over_sections (objfile->obfd, find_section_offset, &info);
478
479 if (info.best_section)
480 *index_ptr = info.best_section->index;
481 else if (info.empty_section)
482 *index_ptr = info.empty_section->index;
483 }
484
485 /* SOM specific parsing routine for section offsets.
486
487 Plain and simple for now. */
488
489 static void
490 som_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs)
491 {
492 int i;
493 CORE_ADDR text_addr;
494 asection *sect;
495
496 objfile->num_sections = bfd_count_sections (objfile->obfd);
497 objfile->section_offsets = (struct section_offsets *)
498 obstack_alloc (&objfile->objfile_obstack,
499 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
500
501 set_section_index (objfile, 0, SEC_ALLOC | SEC_CODE,
502 &objfile->sect_index_text);
503 set_section_index (objfile, 0, SEC_ALLOC | SEC_DATA,
504 &objfile->sect_index_data);
505 set_section_index (objfile, SEC_LOAD, SEC_ALLOC | SEC_LOAD,
506 &objfile->sect_index_bss);
507 set_section_index (objfile, 0, SEC_ALLOC | SEC_READONLY,
508 &objfile->sect_index_rodata);
509
510 /* First see if we're a shared library. If so, get the section
511 offsets from the library, else get them from addrs. */
512 if (!som_solib_section_offsets (objfile, objfile->section_offsets))
513 {
514 /* Note: Here is OK to compare with ".text" because this is the
515 name that gdb itself gives to that section, not the SOM
516 name. */
517 for (i = 0; i < addrs->num_sections; i++)
518 if (strcmp (addrs->other[i].name, ".text") == 0)
519 break;
520 text_addr = addrs->other[i].addr;
521
522 for (i = 0; i < objfile->num_sections; i++)
523 (objfile->section_offsets)->offsets[i] = text_addr;
524 }
525 }
526 \f
527
528
529 /* Register that we are able to handle SOM object file formats. */
530
531 static const struct sym_fns som_sym_fns =
532 {
533 bfd_target_som_flavour,
534 som_new_init, /* init anything gbl to entire symtab */
535 som_symfile_init, /* read initial info, setup for sym_read() */
536 som_symfile_read, /* read a symbol file into symtab */
537 NULL, /* sym_read_psymbols */
538 som_symfile_finish, /* finished with file, cleanup */
539 som_symfile_offsets, /* Translate ext. to int. relocation */
540 default_symfile_segments, /* Get segment information from a file. */
541 NULL,
542 default_symfile_relocate, /* Relocate a debug section. */
543 NULL, /* sym_get_probes */
544 &psym_functions
545 };
546
547 initialize_file_ftype _initialize_somread;
548
549 void
550 _initialize_somread (void)
551 {
552 add_symtab_fns (&som_sym_fns);
553 }
This page took 0.04262 seconds and 5 git commands to generate.