* gdb.texinfo (Target Commands): Fix typo.
[deliverable/binutils-gdb.git] / gdb / somread.c
CommitLineData
c906108c 1/* Read HP PA/Risc object files for GDB.
28e7fd62 2 Copyright (C) 1991-2013 Free Software Foundation, Inc.
c906108c
SS
3 Written by Fred Fish at Cygnus Support.
4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
21#include "bfd.h"
b2259038 22#include "som/aout.h"
c906108c
SS
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"
ccefe4c4 34#include "psymtab.h"
c906108c 35
17fe2d6e 36#include "solib-som.h"
c906108c 37
7f86f058 38/* Read the symbol table of a SOM file.
c906108c 39
c5aa993b
JM
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
7f86f058 43 function and data symbols to the minimal symbol table. */
c906108c
SS
44
45static void
fba45db2
KB
46som_symtab_read (bfd *abfd, struct objfile *objfile,
47 struct section_offsets *section_offsets)
c906108c 48{
5e2b427d 49 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
50 unsigned int number_of_symbols;
51 int val, dynamic;
52 char *stringtab;
53 asection *shlib_info;
b2259038 54 struct som_external_symbol_dictionary_record *buf, *bufp, *endbufp;
c906108c 55 char *symname;
b2259038 56 CONST int symsize = sizeof (struct som_external_symbol_dictionary_record);
c906108c
SS
57 CORE_ADDR text_offset, data_offset;
58
59
60 text_offset = ANOFFSET (section_offsets, 0);
61 data_offset = ANOFFSET (section_offsets, 1);
62
63 number_of_symbols = bfd_get_symcount (abfd);
64
f31b3751
JB
65 /* Allocate a buffer to read in the debug info.
66 We avoid using alloca because the memory size could be so large
67 that we could hit the stack size limit. */
68 buf = xmalloc (symsize * number_of_symbols);
69 make_cleanup (xfree, buf);
c906108c 70 bfd_seek (abfd, obj_som_sym_filepos (abfd), SEEK_SET);
3a42e9d0 71 val = bfd_bread (buf, symsize * number_of_symbols, abfd);
c906108c 72 if (val != symsize * number_of_symbols)
8a3fe4f8 73 error (_("Couldn't read symbol dictionary!"));
c906108c 74
f31b3751
JB
75 /* Allocate a buffer to read in the som stringtab section of
76 the debugging info. Again, we avoid using alloca because
77 the data could be so large that we could potentially hit
78 the stack size limitat. */
79 stringtab = xmalloc (obj_som_stringtab_size (abfd));
80 make_cleanup (xfree, stringtab);
c906108c 81 bfd_seek (abfd, obj_som_str_filepos (abfd), SEEK_SET);
3a42e9d0 82 val = bfd_bread (stringtab, obj_som_stringtab_size (abfd), abfd);
c906108c 83 if (val != obj_som_stringtab_size (abfd))
8a3fe4f8 84 error (_("Can't read in HP string table."));
c906108c
SS
85
86 /* We need to determine if objfile is a dynamic executable (so we
87 can do the right thing for ST_ENTRY vs ST_CODE symbols).
88
89 There's nothing in the header which easily allows us to do
3fa41cdb
JL
90 this.
91
92 This code used to rely upon the existence of a $SHLIB_INFO$
93 section to make this determination. HP claims that it is
94 more accurate to check for a nonzero text offset, but they
95 have not provided any information about why that test is
96 more accurate. */
c906108c
SS
97 dynamic = (text_offset != 0);
98
99 endbufp = buf + number_of_symbols;
100 for (bufp = buf; bufp < endbufp; ++bufp)
101 {
102 enum minimal_symbol_type ms_type;
b2259038
TT
103 unsigned int flags = bfd_getb32 (bufp->flags);
104 unsigned int symbol_type
105 = (flags >> SOM_SYMBOL_TYPE_SH) & SOM_SYMBOL_TYPE_MASK;
106 unsigned int symbol_scope
107 = (flags >> SOM_SYMBOL_SCOPE_SH) & SOM_SYMBOL_SCOPE_MASK;
108 CORE_ADDR symbol_value = bfd_getb32 (bufp->symbol_value);
c906108c
SS
109
110 QUIT;
111
b2259038 112 switch (symbol_scope)
c906108c
SS
113 {
114 case SS_UNIVERSAL:
115 case SS_EXTERNAL:
b2259038 116 switch (symbol_type)
c906108c
SS
117 {
118 case ST_SYM_EXT:
119 case ST_ARG_EXT:
120 continue;
121
122 case ST_CODE:
123 case ST_PRI_PROG:
124 case ST_SEC_PROG:
125 case ST_MILLICODE:
b2259038 126 symname = bfd_getb32 (bufp->name) + stringtab;
c906108c 127 ms_type = mst_text;
b2259038
TT
128 symbol_value += text_offset;
129 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
130 break;
131
132 case ST_ENTRY:
b2259038 133 symname = bfd_getb32 (bufp->name) + stringtab;
c906108c 134 /* For a dynamic executable, ST_ENTRY symbols are
c5aa993b
JM
135 the stubs, while the ST_CODE symbol is the real
136 function. */
c906108c
SS
137 if (dynamic)
138 ms_type = mst_solib_trampoline;
139 else
140 ms_type = mst_text;
b2259038
TT
141 symbol_value += text_offset;
142 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
143 break;
144
145 case ST_STUB:
b2259038 146 symname = bfd_getb32 (bufp->name) + stringtab;
c906108c 147 ms_type = mst_solib_trampoline;
b2259038
TT
148 symbol_value += text_offset;
149 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
150 break;
151
152 case ST_DATA:
b2259038
TT
153 symname = bfd_getb32 (bufp->name) + stringtab;
154 symbol_value += data_offset;
c906108c
SS
155 ms_type = mst_data;
156 break;
157 default:
158 continue;
159 }
160 break;
161
162#if 0
163 /* SS_GLOBAL and SS_LOCAL are two names for the same thing (!). */
164 case SS_GLOBAL:
165#endif
166 case SS_LOCAL:
b2259038 167 switch (symbol_type)
c906108c
SS
168 {
169 case ST_SYM_EXT:
170 case ST_ARG_EXT:
171 continue;
172
173 case ST_CODE:
b2259038 174 symname = bfd_getb32 (bufp->name) + stringtab;
c906108c 175 ms_type = mst_file_text;
b2259038
TT
176 symbol_value += text_offset;
177 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
178
179 check_strange_names:
180 /* Utah GCC 2.5, FSF GCC 2.6 and later generate correct local
c5aa993b
JM
181 label prefixes for stabs, constant data, etc. So we need
182 only filter out L$ symbols which are left in due to
183 limitations in how GAS generates SOM relocations.
184
185 When linking in the HPUX C-library the HP linker has
186 the nasty habit of placing section symbols from the literal
187 subspaces in the middle of the program's text. Filter
188 those out as best we can. Check for first and last character
c378eb4e 189 being '$'.
c5aa993b
JM
190
191 And finally, the newer HP compilers emit crud like $PIC_foo$N
192 in some circumstance (PIC code I guess). It's also claimed
193 that they emit D$ symbols too. What stupidity. */
c906108c 194 if ((symname[0] == 'L' && symname[1] == '$')
c5aa993b 195 || (symname[0] == '$' && symname[strlen (symname) - 1] == '$')
c906108c 196 || (symname[0] == 'D' && symname[1] == '$')
b887c273 197 || (strncmp (symname, "L0\001", 3) == 0)
c906108c
SS
198 || (strncmp (symname, "$PIC", 4) == 0))
199 continue;
200 break;
201
202 case ST_PRI_PROG:
203 case ST_SEC_PROG:
204 case ST_MILLICODE:
b2259038 205 symname = bfd_getb32 (bufp->name) + stringtab;
c906108c 206 ms_type = mst_file_text;
b2259038
TT
207 symbol_value += text_offset;
208 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
209 break;
210
211 case ST_ENTRY:
b2259038 212 symname = bfd_getb32 (bufp->name) + stringtab;
3fa41cdb
JL
213 /* SS_LOCAL symbols in a shared library do not have
214 export stubs, so we do not have to worry about
215 using mst_file_text vs mst_solib_trampoline here like
216 we do for SS_UNIVERSAL and SS_EXTERNAL symbols above. */
217 ms_type = mst_file_text;
b2259038
TT
218 symbol_value += text_offset;
219 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
220 break;
221
222 case ST_STUB:
b2259038 223 symname = bfd_getb32 (bufp->name) + stringtab;
c906108c 224 ms_type = mst_solib_trampoline;
b2259038
TT
225 symbol_value += text_offset;
226 symbol_value = gdbarch_addr_bits_remove (gdbarch, symbol_value);
c906108c
SS
227 break;
228
229
230 case ST_DATA:
b2259038
TT
231 symname = bfd_getb32 (bufp->name) + stringtab;
232 symbol_value += data_offset;
c906108c
SS
233 ms_type = mst_file_data;
234 goto check_strange_names;
235
236 default:
237 continue;
238 }
239 break;
240
c5aa993b
JM
241 /* This can happen for common symbols when -E is passed to the
242 final link. No idea _why_ that would make the linker force
243 common symbols to have an SS_UNSAT scope, but it does.
c906108c 244
c5aa993b
JM
245 This also happens for weak symbols, but their type is
246 ST_DATA. */
c906108c 247 case SS_UNSAT:
b2259038 248 switch (symbol_type)
c906108c 249 {
c5aa993b
JM
250 case ST_STORAGE:
251 case ST_DATA:
b2259038
TT
252 symname = bfd_getb32 (bufp->name) + stringtab;
253 symbol_value += data_offset;
c5aa993b
JM
254 ms_type = mst_data;
255 break;
256
257 default:
258 continue;
c906108c
SS
259 }
260 break;
261
262 default:
263 continue;
264 }
265
b2259038
TT
266 if (bfd_getb32 (bufp->name) > obj_som_stringtab_size (abfd))
267 error (_("Invalid symbol data; bad HP string table offset: %s"),
268 plongest (bfd_getb32 (bufp->name)));
c906108c 269
b2259038 270 prim_record_minimal_symbol (symname, symbol_value, ms_type, objfile);
c906108c
SS
271 }
272}
273
274/* Scan and build partial symbols for a symbol file.
275 We have been initialized by a call to som_symfile_init, which
276 currently does nothing.
277
278 SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
279 in each section. This is ignored, as it isn't needed for SOM.
280
c906108c
SS
281 This function only does the minimum work necessary for letting the
282 user "name" things symbolically; it does not read the entire symtab.
283 Instead, it reads the external and static symbols and puts them in partial
284 symbol tables. When more extensive information is requested of a
285 file, the corresponding partial symbol table is mutated into a full
286 fledged symbol table by going back and reading the symbols
287 for real.
288
289 We look for sections with specific names, to tell us what debug
290 format to look for: FIXME!!!
291
292 somstab_build_psymtabs() handles STABS symbols.
293
294 Note that SOM files have a "minimal" symbol table, which is vaguely
295 reminiscent of a COFF symbol table, but has only the minimal information
296 necessary for linking. We process this also, and use the information to
297 build gdb's minimal symbol table. This gives us some minimal debugging
298 capability even for files compiled without -g. */
299
300static void
f4352531 301som_symfile_read (struct objfile *objfile, int symfile_flags)
c906108c
SS
302{
303 bfd *abfd = objfile->obfd;
304 struct cleanup *back_to;
305
c906108c 306 init_minimal_symbol_collection ();
56e290f4 307 back_to = make_cleanup_discard_minimal_symbols ();
c906108c 308
c378eb4e 309 /* Process the normal SOM symbol table first.
c906108c 310 This reads in the DNTT and string table, but doesn't
c378eb4e
MS
311 actually scan the DNTT. It does scan the linker symbol
312 table and thus build up a "minimal symbol table". */
c5aa993b 313
96baa820 314 som_symtab_read (abfd, objfile, objfile->section_offsets);
c906108c 315
7134143f 316 /* Install any minimal symbols that have been collected as the current
c378eb4e 317 minimal symbols for this objfile.
7134143f 318 Further symbol-reading is done incrementally, file-by-file,
c378eb4e
MS
319 in a step known as "psymtab-to-symtab" expansion. hp-symtab-read.c
320 contains the code to do the actual DNTT scanning and symtab building. */
7134143f
DJ
321 install_minimal_symbols (objfile);
322 do_cleanups (back_to);
323
c906108c 324 /* Now read information from the stabs debug sections.
4897bfb9 325 This is emitted by gcc. */
c67a9c90 326 stabsect_build_psymtabs (objfile,
c906108c 327 "$GDB_SYMBOLS$", "$GDB_STRINGS$", "$TEXT$");
c906108c
SS
328}
329
330/* Initialize anything that needs initializing when a completely new symbol
331 file is specified (not just adding some symbols from another file, e.g. a
332 shared library).
333
334 We reinitialize buildsym, since we may be reading stabs from a SOM file. */
335
336static void
fba45db2 337som_new_init (struct objfile *ignore)
c906108c
SS
338{
339 stabsread_new_init ();
340 buildsym_new_init ();
341}
342
343/* Perform any local cleanups required when we are done with a particular
c378eb4e 344 objfile. I.e, we are in the process of discarding all symbol information
c906108c 345 for an objfile, freeing up all memory held for it, and unlinking the
c378eb4e 346 objfile struct from the global list of known objfiles. */
c906108c
SS
347
348static void
fba45db2 349som_symfile_finish (struct objfile *objfile)
c906108c 350{
c906108c
SS
351}
352
353/* SOM specific initialization routine for reading symbols. */
354
355static void
fba45db2 356som_symfile_init (struct objfile *objfile)
c906108c
SS
357{
358 /* SOM objects may be reordered, so set OBJF_REORDERED. If we
359 find this causes a significant slowdown in gdb then we could
360 set it in the debug symbol readers only when necessary. */
361 objfile->flags |= OBJF_REORDERED;
c906108c
SS
362}
363
364/* SOM specific parsing routine for section offsets.
365
366 Plain and simple for now. */
367
d4f3574e 368static void
fba45db2 369som_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs)
c906108c 370{
c906108c 371 int i;
0aa9cf96 372 CORE_ADDR text_addr;
c906108c 373
a39a16c4 374 objfile->num_sections = bfd_count_sections (objfile->obfd);
d4f3574e 375 objfile->section_offsets = (struct section_offsets *)
8b92e4d5 376 obstack_alloc (&objfile->objfile_obstack,
a39a16c4 377 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
c906108c 378
b8fbeb18 379 /* FIXME: ezannoni 2000-04-20 The section names in SOM are not
c378eb4e
MS
380 .text, .data, etc, but $TEXT$, $DATA$,... We should initialize
381 SET_OFF_* from bfd. (See default_symfile_offsets()). But I don't
b8fbeb18 382 know the correspondence between SOM sections and GDB's idea of
c378eb4e
MS
383 section names. So for now we default to what is was before these
384 changes. */
b8fbeb18
EZ
385 objfile->sect_index_text = 0;
386 objfile->sect_index_data = 1;
387 objfile->sect_index_bss = 2;
388 objfile->sect_index_rodata = 3;
389
c906108c 390 /* First see if we're a shared library. If so, get the section
2acceee2 391 offsets from the library, else get them from addrs. */
d4f3574e 392 if (!som_solib_section_offsets (objfile, objfile->section_offsets))
c906108c 393 {
b8fbeb18
EZ
394 /* Note: Here is OK to compare with ".text" because this is the
395 name that gdb itself gives to that section, not the SOM
c378eb4e 396 name. */
8d498949 397 for (i = 0; i < addrs->num_sections && addrs->other[i].name; i++)
0aa9cf96
EZ
398 if (strcmp (addrs->other[i].name, ".text") == 0)
399 break;
400 text_addr = addrs->other[i].addr;
401
a39a16c4 402 for (i = 0; i < objfile->num_sections; i++)
f0a58b0b 403 (objfile->section_offsets)->offsets[i] = text_addr;
c906108c 404 }
c906108c 405}
c5aa993b 406\f
c906108c
SS
407
408
c906108c
SS
409/* Register that we are able to handle SOM object file formats. */
410
00b5771c 411static const struct sym_fns som_sym_fns =
c906108c
SS
412{
413 bfd_target_som_flavour,
3e43a32a
MS
414 som_new_init, /* init anything gbl to entire symtab */
415 som_symfile_init, /* read initial info, setup for sym_read() */
416 som_symfile_read, /* read a symbol file into symtab */
b11896a5 417 NULL, /* sym_read_psymbols */
3e43a32a
MS
418 som_symfile_finish, /* finished with file, cleanup */
419 som_symfile_offsets, /* Translate ext. to int. relocation */
420 default_symfile_segments, /* Get segment information from a file. */
421 NULL,
422 default_symfile_relocate, /* Relocate a debug section. */
55aa24fb 423 NULL, /* sym_get_probes */
00b5771c 424 &psym_functions
c906108c
SS
425};
426
b2259038
TT
427initialize_file_ftype _initialize_somread;
428
c906108c 429void
fba45db2 430_initialize_somread (void)
c906108c
SS
431{
432 add_symtab_fns (&som_sym_fns);
433}
This page took 1.297306 seconds and 4 git commands to generate.