]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/minsyms.c
Introduce target_{stop,continue}_ptid
[thirdparty/binutils-gdb.git] / gdb / minsyms.c
CommitLineData
c906108c 1/* GDB routines for manipulating the minimal symbol tables.
ecd75fc8 2 Copyright (C) 1992-2014 Free Software Foundation, Inc.
c906108c
SS
3 Contributed by Cygnus Support, using pieces from other GDB modules.
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
21/* This file contains support routines for creating, manipulating, and
22 destroying minimal symbol tables.
23
24 Minimal symbol tables are used to hold some very basic information about
25 all defined global symbols (text, data, bss, abs, etc). The only two
26 required pieces of information are the symbol's name and the address
27 associated with that symbol.
28
29 In many cases, even if a file was compiled with no special options for
30 debugging at all, as long as was not stripped it will contain sufficient
31 information to build useful minimal symbol tables using this structure.
c5aa993b 32
c906108c
SS
33 Even when a file contains enough debugging information to build a full
34 symbol table, these minimal symbols are still useful for quickly mapping
35 between names and addresses, and vice versa. They are also sometimes used
025bb325 36 to figure out what full symbol table entries need to be read in. */
c906108c
SS
37
38
39#include "defs.h"
9227b5eb 40#include <ctype.h>
c906108c
SS
41#include "symtab.h"
42#include "bfd.h"
0ba1096a 43#include "filenames.h"
c906108c
SS
44#include "symfile.h"
45#include "objfiles.h"
46#include "demangle.h"
7ed49443
JB
47#include "value.h"
48#include "cp-abi.h"
42848c96 49#include "target.h"
71c25dea
TT
50#include "cp-support.h"
51#include "language.h"
529480d0 52#include "cli/cli-utils.h"
c906108c
SS
53
54/* Accumulate the minimal symbols for each objfile in bunches of BUNCH_SIZE.
55 At the end, copy them all into one newly allocated location on an objfile's
34643a32 56 per-BFD storage obstack. */
c906108c
SS
57
58#define BUNCH_SIZE 127
59
60struct msym_bunch
c5aa993b
JM
61 {
62 struct msym_bunch *next;
63 struct minimal_symbol contents[BUNCH_SIZE];
64 };
c906108c
SS
65
66/* Bunch currently being filled up.
67 The next field points to chain of filled bunches. */
68
69static struct msym_bunch *msym_bunch;
70
71/* Number of slots filled in current bunch. */
72
73static int msym_bunch_index;
74
75/* Total number of minimal symbols recorded so far for the objfile. */
76
77static int msym_count;
78
b19686e0 79/* See minsyms.h. */
9227b5eb
JB
80
81unsigned int
82msymbol_hash_iw (const char *string)
83{
84 unsigned int hash = 0;
b8d56208 85
9227b5eb
JB
86 while (*string && *string != '(')
87 {
529480d0 88 string = skip_spaces_const (string);
9227b5eb 89 if (*string && *string != '(')
375f3d86 90 {
59d7bcaf 91 hash = SYMBOL_HASH_NEXT (hash, *string);
375f3d86
DJ
92 ++string;
93 }
9227b5eb 94 }
261397f8 95 return hash;
9227b5eb
JB
96}
97
b19686e0 98/* See minsyms.h. */
9227b5eb
JB
99
100unsigned int
101msymbol_hash (const char *string)
102{
103 unsigned int hash = 0;
b8d56208 104
9227b5eb 105 for (; *string; ++string)
59d7bcaf 106 hash = SYMBOL_HASH_NEXT (hash, *string);
261397f8 107 return hash;
9227b5eb
JB
108}
109
110/* Add the minimal symbol SYM to an objfile's minsym hash table, TABLE. */
984ac464 111static void
9227b5eb
JB
112add_minsym_to_hash_table (struct minimal_symbol *sym,
113 struct minimal_symbol **table)
114{
115 if (sym->hash_next == NULL)
116 {
f56f77c1 117 unsigned int hash
efd66ac6 118 = msymbol_hash (MSYMBOL_LINKAGE_NAME (sym)) % MINIMAL_SYMBOL_HASH_SIZE;
b8d56208 119
9227b5eb
JB
120 sym->hash_next = table[hash];
121 table[hash] = sym;
122 }
123}
124
0729fd50
DB
125/* Add the minimal symbol SYM to an objfile's minsym demangled hash table,
126 TABLE. */
127static void
128add_minsym_to_demangled_hash_table (struct minimal_symbol *sym,
129 struct minimal_symbol **table)
130{
131 if (sym->demangled_hash_next == NULL)
132 {
efd66ac6 133 unsigned int hash = msymbol_hash_iw (MSYMBOL_SEARCH_NAME (sym))
3e43a32a 134 % MINIMAL_SYMBOL_HASH_SIZE;
b8d56208 135
0729fd50
DB
136 sym->demangled_hash_next = table[hash];
137 table[hash] = sym;
138 }
139}
140
c906108c
SS
141/* Look through all the current minimal symbol tables and find the
142 first minimal symbol that matches NAME. If OBJF is non-NULL, limit
72a5efb3
DJ
143 the search to that objfile. If SFILE is non-NULL, the only file-scope
144 symbols considered will be from that source file (global symbols are
145 still preferred). Returns a pointer to the minimal symbol that
c906108c
SS
146 matches, or NULL if no match is found.
147
148 Note: One instance where there may be duplicate minimal symbols with
149 the same name is when the symbol tables for a shared library and the
150 symbol tables for an executable contain global symbols with the same
d73f140a
JB
151 names (the dynamic linker deals with the duplication).
152
153 It's also possible to have minimal symbols with different mangled
154 names, but identical demangled names. For example, the GNU C++ v3
155 ABI requires the generation of two (or perhaps three) copies of
156 constructor functions --- "in-charge", "not-in-charge", and
157 "allocate" copies; destructors may be duplicated as well.
158 Obviously, there must be distinct mangled names for each of these,
159 but the demangled names are all the same: S::S or S::~S. */
c906108c 160
3b7344d5
TT
161struct bound_minimal_symbol
162lookup_minimal_symbol (const char *name, const char *sfile,
163 struct objfile *objf)
c906108c
SS
164{
165 struct objfile *objfile;
7c7b6655
TT
166 struct bound_minimal_symbol found_symbol = { NULL, NULL };
167 struct bound_minimal_symbol found_file_symbol = { NULL, NULL };
168 struct bound_minimal_symbol trampoline_symbol = { NULL, NULL };
c906108c 169
261397f8
DJ
170 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
171 unsigned int dem_hash = msymbol_hash_iw (name) % MINIMAL_SYMBOL_HASH_SIZE;
9227b5eb 172
71c25dea
TT
173 int needtofreename = 0;
174 const char *modified_name;
175
c906108c 176 if (sfile != NULL)
9f37bbcc 177 sfile = lbasename (sfile);
c906108c 178
025bb325 179 /* For C++, canonicalize the input name. */
71c25dea
TT
180 modified_name = name;
181 if (current_language->la_language == language_cplus)
182 {
183 char *cname = cp_canonicalize_string (name);
b8d56208 184
71c25dea
TT
185 if (cname)
186 {
187 modified_name = cname;
188 needtofreename = 1;
189 }
190 }
191
c906108c 192 for (objfile = object_files;
7c7b6655 193 objfile != NULL && found_symbol.minsym == NULL;
c5aa993b 194 objfile = objfile->next)
c906108c 195 {
7c7b6655
TT
196 struct minimal_symbol *msymbol;
197
56e3f43c 198 if (objf == NULL || objf == objfile
15d123c9 199 || objf == objfile->separate_debug_objfile_backlink)
c906108c 200 {
9227b5eb
JB
201 /* Do two passes: the first over the ordinary hash table,
202 and the second over the demangled hash table. */
0729fd50 203 int pass;
9227b5eb 204
7c7b6655 205 for (pass = 1; pass <= 2 && found_symbol.minsym == NULL; pass++)
c906108c 206 {
0729fd50
DB
207 /* Select hash list according to pass. */
208 if (pass == 1)
34643a32 209 msymbol = objfile->per_bfd->msymbol_hash[hash];
0729fd50 210 else
34643a32 211 msymbol = objfile->per_bfd->msymbol_demangled_hash[dem_hash];
0729fd50 212
7c7b6655 213 while (msymbol != NULL && found_symbol.minsym == NULL)
c906108c 214 {
3567439c
DJ
215 int match;
216
217 if (pass == 1)
71c25dea 218 {
559a7a62
JK
219 int (*cmp) (const char *, const char *);
220
221 cmp = (case_sensitivity == case_sensitive_on
222 ? strcmp : strcasecmp);
efd66ac6 223 match = cmp (MSYMBOL_LINKAGE_NAME (msymbol),
559a7a62 224 modified_name) == 0;
71c25dea 225 }
3567439c 226 else
71c25dea 227 {
559a7a62 228 /* The function respects CASE_SENSITIVITY. */
efd66ac6 229 match = MSYMBOL_MATCHES_SEARCH_NAME (msymbol,
71c25dea
TT
230 modified_name);
231 }
232
3567439c 233 if (match)
c906108c 234 {
0729fd50
DB
235 switch (MSYMBOL_TYPE (msymbol))
236 {
237 case mst_file_text:
238 case mst_file_data:
239 case mst_file_bss:
6314a349 240 if (sfile == NULL
0ba1096a 241 || filename_cmp (msymbol->filename, sfile) == 0)
7c7b6655
TT
242 {
243 found_file_symbol.minsym = msymbol;
244 found_file_symbol.objfile = objfile;
245 }
0729fd50
DB
246 break;
247
248 case mst_solib_trampoline:
249
250 /* If a trampoline symbol is found, we prefer to
025bb325 251 keep looking for the *real* symbol. If the
0729fd50 252 actual symbol is not found, then we'll use the
025bb325 253 trampoline entry. */
7c7b6655
TT
254 if (trampoline_symbol.minsym == NULL)
255 {
256 trampoline_symbol.minsym = msymbol;
257 trampoline_symbol.objfile = objfile;
258 }
0729fd50
DB
259 break;
260
261 case mst_unknown:
262 default:
7c7b6655
TT
263 found_symbol.minsym = msymbol;
264 found_symbol.objfile = objfile;
0729fd50
DB
265 break;
266 }
c906108c 267 }
9227b5eb 268
0729fd50
DB
269 /* Find the next symbol on the hash chain. */
270 if (pass == 1)
271 msymbol = msymbol->hash_next;
272 else
273 msymbol = msymbol->demangled_hash_next;
9227b5eb 274 }
c906108c
SS
275 }
276 }
277 }
71c25dea
TT
278
279 if (needtofreename)
280 xfree ((void *) modified_name);
281
c906108c 282 /* External symbols are best. */
7c7b6655 283 if (found_symbol.minsym != NULL)
c906108c
SS
284 return found_symbol;
285
286 /* File-local symbols are next best. */
7c7b6655 287 if (found_file_symbol.minsym != NULL)
c906108c
SS
288 return found_file_symbol;
289
290 /* Symbols for shared library trampolines are next best. */
7c7b6655
TT
291 return trampoline_symbol;
292}
293
294/* See minsyms.h. */
c906108c 295
7c7b6655
TT
296struct bound_minimal_symbol
297lookup_bound_minimal_symbol (const char *name)
298{
3b7344d5 299 return lookup_minimal_symbol (name, NULL, NULL);
c906108c
SS
300}
301
b19686e0 302/* See minsyms.h. */
f8eba3c6
TT
303
304void
305iterate_over_minimal_symbols (struct objfile *objf, const char *name,
306 void (*callback) (struct minimal_symbol *,
307 void *),
308 void *user_data)
309{
310 unsigned int hash;
311 struct minimal_symbol *iter;
312 int (*cmp) (const char *, const char *);
313
314 /* The first pass is over the ordinary hash table. */
315 hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
34643a32 316 iter = objf->per_bfd->msymbol_hash[hash];
f8eba3c6
TT
317 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
318 while (iter)
319 {
efd66ac6 320 if (cmp (MSYMBOL_LINKAGE_NAME (iter), name) == 0)
f8eba3c6
TT
321 (*callback) (iter, user_data);
322 iter = iter->hash_next;
323 }
324
325 /* The second pass is over the demangled table. */
326 hash = msymbol_hash_iw (name) % MINIMAL_SYMBOL_HASH_SIZE;
34643a32 327 iter = objf->per_bfd->msymbol_demangled_hash[hash];
f8eba3c6
TT
328 while (iter)
329 {
efd66ac6 330 if (MSYMBOL_MATCHES_SEARCH_NAME (iter, name))
f8eba3c6
TT
331 (*callback) (iter, user_data);
332 iter = iter->demangled_hash_next;
333 }
334}
335
b19686e0 336/* See minsyms.h. */
c5aa993b 337
3b7344d5 338struct bound_minimal_symbol
5520a790 339lookup_minimal_symbol_text (const char *name, struct objfile *objf)
c906108c
SS
340{
341 struct objfile *objfile;
342 struct minimal_symbol *msymbol;
3b7344d5
TT
343 struct bound_minimal_symbol found_symbol = { NULL, NULL };
344 struct bound_minimal_symbol found_file_symbol = { NULL, NULL };
c906108c 345
72a5efb3
DJ
346 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
347
c906108c 348 for (objfile = object_files;
3b7344d5 349 objfile != NULL && found_symbol.minsym == NULL;
c5aa993b 350 objfile = objfile->next)
c906108c 351 {
56e3f43c 352 if (objf == NULL || objf == objfile
15d123c9 353 || objf == objfile->separate_debug_objfile_backlink)
c906108c 354 {
34643a32 355 for (msymbol = objfile->per_bfd->msymbol_hash[hash];
3b7344d5 356 msymbol != NULL && found_symbol.minsym == NULL;
72a5efb3 357 msymbol = msymbol->hash_next)
c906108c 358 {
efd66ac6 359 if (strcmp (MSYMBOL_LINKAGE_NAME (msymbol), name) == 0 &&
0875794a
JK
360 (MSYMBOL_TYPE (msymbol) == mst_text
361 || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
362 || MSYMBOL_TYPE (msymbol) == mst_file_text))
c906108c
SS
363 {
364 switch (MSYMBOL_TYPE (msymbol))
365 {
366 case mst_file_text:
3b7344d5
TT
367 found_file_symbol.minsym = msymbol;
368 found_file_symbol.objfile = objfile;
c906108c
SS
369 break;
370 default:
3b7344d5
TT
371 found_symbol.minsym = msymbol;
372 found_symbol.objfile = objfile;
c906108c
SS
373 break;
374 }
375 }
376 }
377 }
378 }
379 /* External symbols are best. */
3b7344d5 380 if (found_symbol.minsym)
c906108c
SS
381 return found_symbol;
382
383 /* File-local symbols are next best. */
3b7344d5 384 return found_file_symbol;
c906108c
SS
385}
386
b19686e0 387/* See minsyms.h. */
907fc202
UW
388
389struct minimal_symbol *
390lookup_minimal_symbol_by_pc_name (CORE_ADDR pc, const char *name,
391 struct objfile *objf)
392{
393 struct objfile *objfile;
394 struct minimal_symbol *msymbol;
395
396 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
397
398 for (objfile = object_files;
399 objfile != NULL;
400 objfile = objfile->next)
401 {
402 if (objf == NULL || objf == objfile
15d123c9 403 || objf == objfile->separate_debug_objfile_backlink)
907fc202 404 {
34643a32 405 for (msymbol = objfile->per_bfd->msymbol_hash[hash];
907fc202
UW
406 msymbol != NULL;
407 msymbol = msymbol->hash_next)
408 {
77e371c0 409 if (MSYMBOL_VALUE_ADDRESS (objfile, msymbol) == pc
efd66ac6 410 && strcmp (MSYMBOL_LINKAGE_NAME (msymbol), name) == 0)
907fc202
UW
411 return msymbol;
412 }
413 }
414 }
415
416 return NULL;
417}
418
b19686e0 419/* See minsyms.h. */
c5aa993b 420
3b7344d5 421struct bound_minimal_symbol
aa1ee363 422lookup_minimal_symbol_solib_trampoline (const char *name,
aa1ee363 423 struct objfile *objf)
c906108c
SS
424{
425 struct objfile *objfile;
426 struct minimal_symbol *msymbol;
3b7344d5 427 struct bound_minimal_symbol found_symbol = { NULL, NULL };
c906108c 428
72a5efb3
DJ
429 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
430
c906108c 431 for (objfile = object_files;
3b7344d5 432 objfile != NULL;
c5aa993b 433 objfile = objfile->next)
c906108c 434 {
56e3f43c 435 if (objf == NULL || objf == objfile
15d123c9 436 || objf == objfile->separate_debug_objfile_backlink)
c906108c 437 {
34643a32 438 for (msymbol = objfile->per_bfd->msymbol_hash[hash];
3b7344d5 439 msymbol != NULL;
72a5efb3 440 msymbol = msymbol->hash_next)
c906108c 441 {
efd66ac6 442 if (strcmp (MSYMBOL_LINKAGE_NAME (msymbol), name) == 0 &&
c906108c 443 MSYMBOL_TYPE (msymbol) == mst_solib_trampoline)
3b7344d5
TT
444 {
445 found_symbol.objfile = objfile;
446 found_symbol.minsym = msymbol;
447 return found_symbol;
448 }
c906108c
SS
449 }
450 }
451 }
452
3b7344d5 453 return found_symbol;
c906108c
SS
454}
455
77e371c0
TT
456/* A helper function that makes *PC section-relative. This searches
457 the sections of OBJFILE and if *PC is in a section, it subtracts
458 the section offset and returns true. Otherwise it returns
459 false. */
460
461static int
462frob_address (struct objfile *objfile, CORE_ADDR *pc)
463{
464 struct obj_section *iter;
465
466 ALL_OBJFILE_OSECTIONS (objfile, iter)
467 {
468 if (*pc >= obj_section_addr (iter) && *pc < obj_section_endaddr (iter))
469 {
470 *pc -= obj_section_offset (iter);
471 return 1;
472 }
473 }
474
475 return 0;
476}
477
c906108c
SS
478/* Search through the minimal symbol table for each objfile and find
479 the symbol whose address is the largest address that is still less
00878c6e
PP
480 than or equal to PC, and matches SECTION (which is not NULL).
481 Returns a pointer to the minimal symbol if such a symbol is found,
482 or NULL if PC is not in a suitable range.
483 Note that we need to look through ALL the minimal symbol tables
484 before deciding on the symbol that comes closest to the specified PC.
485 This is because objfiles can overlap, for example objfile A has .text
486 at 0x100 and .data at 0x40000 and objfile B has .text at 0x234 and
487 .data at 0x40048.
c906108c 488
2eaf8d2a
DJ
489 If WANT_TRAMPOLINE is set, prefer mst_solib_trampoline symbols when
490 there are text and trampoline symbols at the same address.
491 Otherwise prefer mst_text symbols. */
492
7cbd4a93 493static struct bound_minimal_symbol
77e371c0 494lookup_minimal_symbol_by_pc_section_1 (CORE_ADDR pc_in,
714835d5 495 struct obj_section *section,
2eaf8d2a 496 int want_trampoline)
c906108c
SS
497{
498 int lo;
499 int hi;
500 int new;
501 struct objfile *objfile;
502 struct minimal_symbol *msymbol;
503 struct minimal_symbol *best_symbol = NULL;
7cbd4a93
TT
504 struct objfile *best_objfile = NULL;
505 struct bound_minimal_symbol result;
2eaf8d2a 506 enum minimal_symbol_type want_type, other_type;
c906108c 507
2eaf8d2a
DJ
508 want_type = want_trampoline ? mst_solib_trampoline : mst_text;
509 other_type = want_trampoline ? mst_text : mst_solib_trampoline;
00878c6e
PP
510
511 /* We can not require the symbol found to be in section, because
96225718
DJ
512 e.g. IRIX 6.5 mdebug relies on this code returning an absolute
513 symbol - but find_pc_section won't return an absolute section and
514 hence the code below would skip over absolute symbols. We can
515 still take advantage of the call to find_pc_section, though - the
516 object file still must match. In case we have separate debug
517 files, search both the file and its separate debug file. There's
518 no telling which one will have the minimal symbols. */
519
00878c6e 520 gdb_assert (section != NULL);
96225718 521
15d123c9
TG
522 for (objfile = section->objfile;
523 objfile != NULL;
524 objfile = objfile_separate_debug_iterate (section->objfile, objfile))
c906108c 525 {
77e371c0
TT
526 CORE_ADDR pc = pc_in;
527
c906108c 528 /* If this objfile has a minimal symbol table, go search it using
c5aa993b
JM
529 a binary search. Note that a minimal symbol table always consists
530 of at least two symbols, a "real" symbol and the terminating
531 "null symbol". If there are no real symbols, then there is no
025bb325 532 minimal symbol table at all. */
c906108c 533
34643a32 534 if (objfile->per_bfd->minimal_symbol_count > 0)
c906108c 535 {
29e8a844
DJ
536 int best_zero_sized = -1;
537
34643a32 538 msymbol = objfile->per_bfd->msymbols;
c906108c 539 lo = 0;
34643a32 540 hi = objfile->per_bfd->minimal_symbol_count - 1;
c906108c
SS
541
542 /* This code assumes that the minimal symbols are sorted by
543 ascending address values. If the pc value is greater than or
544 equal to the first symbol's address, then some symbol in this
545 minimal symbol table is a suitable candidate for being the
546 "best" symbol. This includes the last real symbol, for cases
547 where the pc value is larger than any address in this vector.
548
549 By iterating until the address associated with the current
550 hi index (the endpoint of the test interval) is less than
551 or equal to the desired pc value, we accomplish two things:
552 (1) the case where the pc value is larger than any minimal
553 symbol address is trivially solved, (2) the address associated
554 with the hi index is always the one we want when the interation
555 terminates. In essence, we are iterating the test interval
556 down until the pc value is pushed out of it from the high end.
557
025bb325 558 Warning: this code is trickier than it would appear at first. */
c906108c 559
77e371c0
TT
560 if (frob_address (objfile, &pc)
561 && pc >= MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[lo]))
c906108c 562 {
77e371c0 563 while (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi]) > pc)
c906108c 564 {
025bb325
MS
565 /* pc is still strictly less than highest address. */
566 /* Note "new" will always be >= lo. */
c906108c 567 new = (lo + hi) / 2;
77e371c0
TT
568 if ((MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[new]) >= pc)
569 || (lo == new))
c906108c
SS
570 {
571 hi = new;
572 }
573 else
574 {
575 lo = new;
576 }
577 }
578
579 /* If we have multiple symbols at the same address, we want
c5aa993b
JM
580 hi to point to the last one. That way we can find the
581 right symbol if it has an index greater than hi. */
34643a32 582 while (hi < objfile->per_bfd->minimal_symbol_count - 1
77e371c0
TT
583 && (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
584 == MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi + 1])))
c906108c
SS
585 hi++;
586
29e8a844
DJ
587 /* Skip various undesirable symbols. */
588 while (hi >= 0)
589 {
590 /* Skip any absolute symbols. This is apparently
591 what adb and dbx do, and is needed for the CM-5.
592 There are two known possible problems: (1) on
593 ELF, apparently end, edata, etc. are absolute.
594 Not sure ignoring them here is a big deal, but if
595 we want to use them, the fix would go in
596 elfread.c. (2) I think shared library entry
597 points on the NeXT are absolute. If we want
598 special handling for this it probably should be
599 triggered by a special mst_abs_or_lib or some
600 such. */
601
712f90be 602 if (MSYMBOL_TYPE (&msymbol[hi]) == mst_abs)
29e8a844
DJ
603 {
604 hi--;
605 continue;
606 }
607
608 /* If SECTION was specified, skip any symbol from
609 wrong section. */
610 if (section
611 /* Some types of debug info, such as COFF,
612 don't fill the bfd_section member, so don't
613 throw away symbols on those platforms. */
efd66ac6 614 && MSYMBOL_OBJ_SECTION (objfile, &msymbol[hi]) != NULL
714835d5 615 && (!matching_obj_sections
efd66ac6 616 (MSYMBOL_OBJ_SECTION (objfile, &msymbol[hi]),
e27d198c 617 section)))
29e8a844
DJ
618 {
619 hi--;
620 continue;
621 }
622
2eaf8d2a
DJ
623 /* If we are looking for a trampoline and this is a
624 text symbol, or the other way around, check the
177b42fe 625 preceding symbol too. If they are otherwise
2eaf8d2a
DJ
626 identical prefer that one. */
627 if (hi > 0
628 && MSYMBOL_TYPE (&msymbol[hi]) == other_type
629 && MSYMBOL_TYPE (&msymbol[hi - 1]) == want_type
630 && (MSYMBOL_SIZE (&msymbol[hi])
631 == MSYMBOL_SIZE (&msymbol[hi - 1]))
77e371c0
TT
632 && (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
633 == MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi - 1]))
efd66ac6
TT
634 && (MSYMBOL_OBJ_SECTION (objfile, &msymbol[hi])
635 == MSYMBOL_OBJ_SECTION (objfile, &msymbol[hi - 1])))
2eaf8d2a
DJ
636 {
637 hi--;
638 continue;
639 }
640
29e8a844
DJ
641 /* If the minimal symbol has a zero size, save it
642 but keep scanning backwards looking for one with
643 a non-zero size. A zero size may mean that the
644 symbol isn't an object or function (e.g. a
645 label), or it may just mean that the size was not
646 specified. */
647 if (MSYMBOL_SIZE (&msymbol[hi]) == 0
648 && best_zero_sized == -1)
649 {
650 best_zero_sized = hi;
651 hi--;
652 continue;
653 }
654
f7a6bb70
DJ
655 /* If we are past the end of the current symbol, try
656 the previous symbol if it has a larger overlapping
657 size. This happens on i686-pc-linux-gnu with glibc;
658 the nocancel variants of system calls are inside
659 the cancellable variants, but both have sizes. */
660 if (hi > 0
661 && MSYMBOL_SIZE (&msymbol[hi]) != 0
77e371c0 662 && pc >= (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
f7a6bb70 663 + MSYMBOL_SIZE (&msymbol[hi]))
77e371c0 664 && pc < (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi - 1])
f7a6bb70
DJ
665 + MSYMBOL_SIZE (&msymbol[hi - 1])))
666 {
667 hi--;
668 continue;
669 }
670
29e8a844
DJ
671 /* Otherwise, this symbol must be as good as we're going
672 to get. */
673 break;
674 }
675
676 /* If HI has a zero size, and best_zero_sized is set,
677 then we had two or more zero-sized symbols; prefer
678 the first one we found (which may have a higher
679 address). Also, if we ran off the end, be sure
680 to back up. */
681 if (best_zero_sized != -1
682 && (hi < 0 || MSYMBOL_SIZE (&msymbol[hi]) == 0))
683 hi = best_zero_sized;
684
685 /* If the minimal symbol has a non-zero size, and this
686 PC appears to be outside the symbol's contents, then
687 refuse to use this symbol. If we found a zero-sized
688 symbol with an address greater than this symbol's,
689 use that instead. We assume that if symbols have
690 specified sizes, they do not overlap. */
691
692 if (hi >= 0
693 && MSYMBOL_SIZE (&msymbol[hi]) != 0
77e371c0 694 && pc >= (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
29e8a844
DJ
695 + MSYMBOL_SIZE (&msymbol[hi])))
696 {
697 if (best_zero_sized != -1)
698 hi = best_zero_sized;
699 else
700 /* Go on to the next object file. */
701 continue;
702 }
703
c906108c 704 /* The minimal symbol indexed by hi now is the best one in this
c5aa993b 705 objfile's minimal symbol table. See if it is the best one
025bb325 706 overall. */
c906108c 707
c906108c
SS
708 if (hi >= 0
709 && ((best_symbol == NULL) ||
77e371c0
TT
710 (MSYMBOL_VALUE_RAW_ADDRESS (best_symbol) <
711 MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi]))))
c906108c
SS
712 {
713 best_symbol = &msymbol[hi];
7cbd4a93 714 best_objfile = objfile;
c906108c
SS
715 }
716 }
717 }
718 }
7cbd4a93
TT
719
720 result.minsym = best_symbol;
721 result.objfile = best_objfile;
722 return result;
c906108c
SS
723}
724
7cbd4a93 725struct bound_minimal_symbol
714835d5 726lookup_minimal_symbol_by_pc_section (CORE_ADDR pc, struct obj_section *section)
2eaf8d2a 727{
00878c6e
PP
728 if (section == NULL)
729 {
730 /* NOTE: cagney/2004-01-27: This was using find_pc_mapped_section to
731 force the section but that (well unless you're doing overlay
732 debugging) always returns NULL making the call somewhat useless. */
733 section = find_pc_section (pc);
734 if (section == NULL)
7cbd4a93
TT
735 {
736 struct bound_minimal_symbol result;
737
738 memset (&result, 0, sizeof (result));
739 return result;
740 }
00878c6e 741 }
2eaf8d2a
DJ
742 return lookup_minimal_symbol_by_pc_section_1 (pc, section, 0);
743}
744
b19686e0 745/* See minsyms.h. */
c906108c 746
7cbd4a93 747struct bound_minimal_symbol
fba45db2 748lookup_minimal_symbol_by_pc (CORE_ADDR pc)
c906108c 749{
7cbd4a93
TT
750 struct obj_section *section = find_pc_section (pc);
751
752 if (section == NULL)
753 {
754 struct bound_minimal_symbol result;
755
756 memset (&result, 0, sizeof (result));
757 return result;
758 }
759 return lookup_minimal_symbol_by_pc_section_1 (pc, section, 0);
c906108c 760}
0d5392b8 761
0875794a
JK
762/* Return non-zero iff PC is in an STT_GNU_IFUNC function resolver. */
763
764int
765in_gnu_ifunc_stub (CORE_ADDR pc)
766{
7cbd4a93 767 struct bound_minimal_symbol msymbol = lookup_minimal_symbol_by_pc (pc);
0875794a 768
7cbd4a93 769 return msymbol.minsym && MSYMBOL_TYPE (msymbol.minsym) == mst_text_gnu_ifunc;
0875794a
JK
770}
771
07be84bf
JK
772/* See elf_gnu_ifunc_resolve_addr for its real implementation. */
773
774static CORE_ADDR
775stub_gnu_ifunc_resolve_addr (struct gdbarch *gdbarch, CORE_ADDR pc)
776{
777 error (_("GDB cannot resolve STT_GNU_IFUNC symbol at address %s without "
778 "the ELF support compiled in."),
779 paddress (gdbarch, pc));
780}
781
782/* See elf_gnu_ifunc_resolve_name for its real implementation. */
783
784static int
785stub_gnu_ifunc_resolve_name (const char *function_name,
786 CORE_ADDR *function_address_p)
787{
788 error (_("GDB cannot resolve STT_GNU_IFUNC symbol \"%s\" without "
789 "the ELF support compiled in."),
790 function_name);
791}
792
0e30163f
JK
793/* See elf_gnu_ifunc_resolver_stop for its real implementation. */
794
795static void
796stub_gnu_ifunc_resolver_stop (struct breakpoint *b)
797{
798 internal_error (__FILE__, __LINE__,
799 _("elf_gnu_ifunc_resolver_stop cannot be reached."));
800}
801
802/* See elf_gnu_ifunc_resolver_return_stop for its real implementation. */
803
804static void
805stub_gnu_ifunc_resolver_return_stop (struct breakpoint *b)
806{
807 internal_error (__FILE__, __LINE__,
808 _("elf_gnu_ifunc_resolver_return_stop cannot be reached."));
809}
810
07be84bf
JK
811/* See elf_gnu_ifunc_fns for its real implementation. */
812
813static const struct gnu_ifunc_fns stub_gnu_ifunc_fns =
814{
815 stub_gnu_ifunc_resolve_addr,
816 stub_gnu_ifunc_resolve_name,
0e30163f
JK
817 stub_gnu_ifunc_resolver_stop,
818 stub_gnu_ifunc_resolver_return_stop,
07be84bf
JK
819};
820
821/* A placeholder for &elf_gnu_ifunc_fns. */
822
823const struct gnu_ifunc_fns *gnu_ifunc_fns_p = &stub_gnu_ifunc_fns;
824
b19686e0 825/* See minsyms.h. */
0d5392b8 826
7cbd4a93
TT
827struct bound_minimal_symbol
828lookup_minimal_symbol_and_objfile (const char *name)
0d5392b8 829{
7cbd4a93 830 struct bound_minimal_symbol result;
0d5392b8
TT
831 struct objfile *objfile;
832 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
833
834 ALL_OBJFILES (objfile)
835 {
836 struct minimal_symbol *msym;
837
34643a32 838 for (msym = objfile->per_bfd->msymbol_hash[hash];
0d5392b8
TT
839 msym != NULL;
840 msym = msym->hash_next)
841 {
efd66ac6 842 if (strcmp (MSYMBOL_LINKAGE_NAME (msym), name) == 0)
0d5392b8 843 {
7cbd4a93
TT
844 result.minsym = msym;
845 result.objfile = objfile;
846 return result;
0d5392b8
TT
847 }
848 }
849 }
850
7cbd4a93
TT
851 memset (&result, 0, sizeof (result));
852 return result;
0d5392b8 853}
c906108c 854\f
c5aa993b 855
025bb325 856/* Return leading symbol character for a BFD. If BFD is NULL,
c906108c
SS
857 return the leading symbol character from the main objfile. */
858
c906108c 859static int
fba45db2 860get_symbol_leading_char (bfd *abfd)
c906108c
SS
861{
862 if (abfd != NULL)
863 return bfd_get_symbol_leading_char (abfd);
864 if (symfile_objfile != NULL && symfile_objfile->obfd != NULL)
865 return bfd_get_symbol_leading_char (symfile_objfile->obfd);
866 return 0;
867}
868
b19686e0 869/* See minsyms.h. */
c906108c
SS
870
871void
fba45db2 872init_minimal_symbol_collection (void)
c906108c
SS
873{
874 msym_count = 0;
875 msym_bunch = NULL;
b19686e0
TT
876 /* Note that presetting msym_bunch_index to BUNCH_SIZE causes the
877 first call to save a minimal symbol to allocate the memory for
878 the first bunch. */
c906108c
SS
879 msym_bunch_index = BUNCH_SIZE;
880}
881
b19686e0
TT
882/* See minsyms.h. */
883
c906108c 884void
fba45db2
KB
885prim_record_minimal_symbol (const char *name, CORE_ADDR address,
886 enum minimal_symbol_type ms_type,
887 struct objfile *objfile)
c906108c
SS
888{
889 int section;
890
891 switch (ms_type)
892 {
893 case mst_text:
0875794a 894 case mst_text_gnu_ifunc:
c906108c
SS
895 case mst_file_text:
896 case mst_solib_trampoline:
b8fbeb18 897 section = SECT_OFF_TEXT (objfile);
c906108c
SS
898 break;
899 case mst_data:
900 case mst_file_data:
b8fbeb18 901 section = SECT_OFF_DATA (objfile);
c906108c
SS
902 break;
903 case mst_bss:
904 case mst_file_bss:
b8fbeb18 905 section = SECT_OFF_BSS (objfile);
c906108c
SS
906 break;
907 default:
908 section = -1;
909 }
910
911 prim_record_minimal_symbol_and_info (name, address, ms_type,
e6dc44a8 912 section, objfile);
c906108c
SS
913}
914
b19686e0 915/* See minsyms.h. */
c906108c
SS
916
917struct minimal_symbol *
04a679b8
TT
918prim_record_minimal_symbol_full (const char *name, int name_len, int copy_name,
919 CORE_ADDR address,
920 enum minimal_symbol_type ms_type,
921 int section,
04a679b8 922 struct objfile *objfile)
c906108c 923{
714835d5 924 struct obj_section *obj_section;
52f0bd74
AC
925 struct msym_bunch *new;
926 struct minimal_symbol *msymbol;
c906108c 927
66337bb1
CV
928 /* Don't put gcc_compiled, __gnu_compiled_cplus, and friends into
929 the minimal symbols, because if there is also another symbol
930 at the same address (e.g. the first function of the file),
931 lookup_minimal_symbol_by_pc would have no way of getting the
932 right one. */
933 if (ms_type == mst_file_text && name[0] == 'g'
934 && (strcmp (name, GCC_COMPILED_FLAG_SYMBOL) == 0
935 || strcmp (name, GCC2_COMPILED_FLAG_SYMBOL) == 0))
936 return (NULL);
937
938 /* It's safe to strip the leading char here once, since the name
025bb325 939 is also stored stripped in the minimal symbol table. */
66337bb1 940 if (name[0] == get_symbol_leading_char (objfile->obfd))
04a679b8
TT
941 {
942 ++name;
943 --name_len;
944 }
66337bb1
CV
945
946 if (ms_type == mst_file_text && strncmp (name, "__gnu_compiled", 14) == 0)
947 return (NULL);
c906108c
SS
948
949 if (msym_bunch_index == BUNCH_SIZE)
950 {
fc270c35 951 new = XCNEW (struct msym_bunch);
c906108c 952 msym_bunch_index = 0;
c5aa993b 953 new->next = msym_bunch;
c906108c
SS
954 msym_bunch = new;
955 }
c5aa993b 956 msymbol = &msym_bunch->contents[msym_bunch_index];
34643a32
TT
957 MSYMBOL_SET_LANGUAGE (msymbol, language_auto,
958 &objfile->per_bfd->storage_obstack);
efd66ac6 959 MSYMBOL_SET_NAMES (msymbol, name, name_len, copy_name, objfile);
2de7ced7 960
40c1a007 961 SET_MSYMBOL_VALUE_ADDRESS (msymbol, address);
efd66ac6 962 MSYMBOL_SECTION (msymbol) = section;
714835d5 963
c906108c 964 MSYMBOL_TYPE (msymbol) = ms_type;
b887350f
TT
965 MSYMBOL_TARGET_FLAG_1 (msymbol) = 0;
966 MSYMBOL_TARGET_FLAG_2 (msymbol) = 0;
d9eaeb59
JB
967 /* Do not use the SET_MSYMBOL_SIZE macro to initialize the size,
968 as it would also set the has_size flag. */
969 msymbol->size = 0;
9227b5eb 970
a79dea61 971 /* The hash pointers must be cleared! If they're not,
025bb325 972 add_minsym_to_hash_table will NOT add this msymbol to the hash table. */
9227b5eb
JB
973 msymbol->hash_next = NULL;
974 msymbol->demangled_hash_next = NULL;
975
34643a32
TT
976 /* If we already read minimal symbols for this objfile, then don't
977 ever allocate a new one. */
978 if (!objfile->per_bfd->minsyms_read)
5f6cac40
TT
979 {
980 msym_bunch_index++;
981 objfile->per_bfd->n_minsyms++;
982 }
c906108c 983 msym_count++;
c906108c
SS
984 return msymbol;
985}
986
b19686e0 987/* See minsyms.h. */
04a679b8
TT
988
989struct minimal_symbol *
990prim_record_minimal_symbol_and_info (const char *name, CORE_ADDR address,
991 enum minimal_symbol_type ms_type,
992 int section,
04a679b8
TT
993 struct objfile *objfile)
994{
995 return prim_record_minimal_symbol_full (name, strlen (name), 1,
e6dc44a8
TT
996 address, ms_type,
997 section, objfile);
04a679b8
TT
998}
999
c906108c 1000/* Compare two minimal symbols by address and return a signed result based
025bb325 1001 on unsigned comparisons, so that we sort into unsigned numeric order.
c906108c
SS
1002 Within groups with the same address, sort by name. */
1003
1004static int
12b9c64f 1005compare_minimal_symbols (const void *fn1p, const void *fn2p)
c906108c 1006{
52f0bd74
AC
1007 const struct minimal_symbol *fn1;
1008 const struct minimal_symbol *fn2;
c906108c
SS
1009
1010 fn1 = (const struct minimal_symbol *) fn1p;
1011 fn2 = (const struct minimal_symbol *) fn2p;
1012
77e371c0 1013 if (MSYMBOL_VALUE_RAW_ADDRESS (fn1) < MSYMBOL_VALUE_RAW_ADDRESS (fn2))
c906108c 1014 {
025bb325 1015 return (-1); /* addr 1 is less than addr 2. */
c906108c 1016 }
77e371c0 1017 else if (MSYMBOL_VALUE_RAW_ADDRESS (fn1) > MSYMBOL_VALUE_RAW_ADDRESS (fn2))
c906108c 1018 {
025bb325 1019 return (1); /* addr 1 is greater than addr 2. */
c906108c 1020 }
c5aa993b
JM
1021 else
1022 /* addrs are equal: sort by name */
c906108c 1023 {
efd66ac6
TT
1024 const char *name1 = MSYMBOL_LINKAGE_NAME (fn1);
1025 const char *name2 = MSYMBOL_LINKAGE_NAME (fn2);
c906108c
SS
1026
1027 if (name1 && name2) /* both have names */
1028 return strcmp (name1, name2);
1029 else if (name2)
025bb325
MS
1030 return 1; /* fn1 has no name, so it is "less". */
1031 else if (name1) /* fn2 has no name, so it is "less". */
c906108c
SS
1032 return -1;
1033 else
025bb325 1034 return (0); /* Neither has a name, so they're equal. */
c906108c
SS
1035 }
1036}
1037
1038/* Discard the currently collected minimal symbols, if any. If we wish
1039 to save them for later use, we must have already copied them somewhere
1040 else before calling this function.
1041
1042 FIXME: We could allocate the minimal symbol bunches on their own
1043 obstack and then simply blow the obstack away when we are done with
025bb325 1044 it. Is it worth the extra trouble though? */
c906108c 1045
56e290f4
AC
1046static void
1047do_discard_minimal_symbols_cleanup (void *arg)
c906108c 1048{
52f0bd74 1049 struct msym_bunch *next;
c906108c
SS
1050
1051 while (msym_bunch != NULL)
1052 {
c5aa993b 1053 next = msym_bunch->next;
b8c9b27d 1054 xfree (msym_bunch);
c906108c
SS
1055 msym_bunch = next;
1056 }
1057}
1058
b19686e0
TT
1059/* See minsyms.h. */
1060
56e290f4
AC
1061struct cleanup *
1062make_cleanup_discard_minimal_symbols (void)
1063{
1064 return make_cleanup (do_discard_minimal_symbols_cleanup, 0);
1065}
1066
1067
9227b5eb 1068
c906108c
SS
1069/* Compact duplicate entries out of a minimal symbol table by walking
1070 through the table and compacting out entries with duplicate addresses
1071 and matching names. Return the number of entries remaining.
1072
1073 On entry, the table resides between msymbol[0] and msymbol[mcount].
1074 On exit, it resides between msymbol[0] and msymbol[result_count].
1075
1076 When files contain multiple sources of symbol information, it is
1077 possible for the minimal symbol table to contain many duplicate entries.
1078 As an example, SVR4 systems use ELF formatted object files, which
1079 usually contain at least two different types of symbol tables (a
1080 standard ELF one and a smaller dynamic linking table), as well as
1081 DWARF debugging information for files compiled with -g.
1082
1083 Without compacting, the minimal symbol table for gdb itself contains
1084 over a 1000 duplicates, about a third of the total table size. Aside
1085 from the potential trap of not noticing that two successive entries
1086 identify the same location, this duplication impacts the time required
1087 to linearly scan the table, which is done in a number of places. So we
1088 just do one linear scan here and toss out the duplicates.
1089
1090 Note that we are not concerned here about recovering the space that
1091 is potentially freed up, because the strings themselves are allocated
34643a32 1092 on the storage_obstack, and will get automatically freed when the symbol
c906108c
SS
1093 table is freed. The caller can free up the unused minimal symbols at
1094 the end of the compacted region if their allocation strategy allows it.
1095
1096 Also note we only go up to the next to last entry within the loop
1097 and then copy the last entry explicitly after the loop terminates.
1098
1099 Since the different sources of information for each symbol may
1100 have different levels of "completeness", we may have duplicates
1101 that have one entry with type "mst_unknown" and the other with a
1102 known type. So if the one we are leaving alone has type mst_unknown,
1103 overwrite its type with the type from the one we are compacting out. */
1104
1105static int
fba45db2
KB
1106compact_minimal_symbols (struct minimal_symbol *msymbol, int mcount,
1107 struct objfile *objfile)
c906108c
SS
1108{
1109 struct minimal_symbol *copyfrom;
1110 struct minimal_symbol *copyto;
1111
1112 if (mcount > 0)
1113 {
1114 copyfrom = copyto = msymbol;
1115 while (copyfrom < msymbol + mcount - 1)
1116 {
77e371c0
TT
1117 if (MSYMBOL_VALUE_RAW_ADDRESS (copyfrom)
1118 == MSYMBOL_VALUE_RAW_ADDRESS ((copyfrom + 1))
1119 && MSYMBOL_SECTION (copyfrom) == MSYMBOL_SECTION (copyfrom + 1)
efd66ac6
TT
1120 && strcmp (MSYMBOL_LINKAGE_NAME (copyfrom),
1121 MSYMBOL_LINKAGE_NAME ((copyfrom + 1))) == 0)
c906108c 1122 {
c5aa993b 1123 if (MSYMBOL_TYPE ((copyfrom + 1)) == mst_unknown)
c906108c
SS
1124 {
1125 MSYMBOL_TYPE ((copyfrom + 1)) = MSYMBOL_TYPE (copyfrom);
1126 }
1127 copyfrom++;
1128 }
1129 else
afbb8d7a 1130 *copyto++ = *copyfrom++;
c906108c
SS
1131 }
1132 *copyto++ = *copyfrom++;
1133 mcount = copyto - msymbol;
1134 }
1135 return (mcount);
1136}
1137
afbb8d7a
KB
1138/* Build (or rebuild) the minimal symbol hash tables. This is necessary
1139 after compacting or sorting the table since the entries move around
025bb325 1140 thus causing the internal minimal_symbol pointers to become jumbled. */
afbb8d7a
KB
1141
1142static void
1143build_minimal_symbol_hash_tables (struct objfile *objfile)
1144{
1145 int i;
1146 struct minimal_symbol *msym;
1147
025bb325 1148 /* Clear the hash tables. */
afbb8d7a
KB
1149 for (i = 0; i < MINIMAL_SYMBOL_HASH_SIZE; i++)
1150 {
34643a32
TT
1151 objfile->per_bfd->msymbol_hash[i] = 0;
1152 objfile->per_bfd->msymbol_demangled_hash[i] = 0;
afbb8d7a
KB
1153 }
1154
025bb325 1155 /* Now, (re)insert the actual entries. */
34643a32
TT
1156 for ((i = objfile->per_bfd->minimal_symbol_count,
1157 msym = objfile->per_bfd->msymbols);
afbb8d7a
KB
1158 i > 0;
1159 i--, msym++)
1160 {
1161 msym->hash_next = 0;
34643a32 1162 add_minsym_to_hash_table (msym, objfile->per_bfd->msymbol_hash);
afbb8d7a
KB
1163
1164 msym->demangled_hash_next = 0;
efd66ac6 1165 if (MSYMBOL_SEARCH_NAME (msym) != MSYMBOL_LINKAGE_NAME (msym))
afbb8d7a 1166 add_minsym_to_demangled_hash_table (msym,
34643a32 1167 objfile->per_bfd->msymbol_demangled_hash);
afbb8d7a
KB
1168 }
1169}
1170
c906108c
SS
1171/* Add the minimal symbols in the existing bunches to the objfile's official
1172 minimal symbol table. In most cases there is no minimal symbol table yet
1173 for this objfile, and the existing bunches are used to create one. Once
1174 in a while (for shared libraries for example), we add symbols (e.g. common
1175 symbols) to an existing objfile.
1176
1177 Because of the way minimal symbols are collected, we generally have no way
1178 of knowing what source language applies to any particular minimal symbol.
1179 Specifically, we have no way of knowing if the minimal symbol comes from a
1180 C++ compilation unit or not. So for the sake of supporting cached
1181 demangled C++ names, we have no choice but to try and demangle each new one
1182 that comes in. If the demangling succeeds, then we assume it is a C++
1183 symbol and set the symbol's language and demangled name fields
1184 appropriately. Note that in order to avoid unnecessary demanglings, and
1185 allocating obstack space that subsequently can't be freed for the demangled
1186 names, we mark all newly added symbols with language_auto. After
1187 compaction of the minimal symbols, we go back and scan the entire minimal
1188 symbol table looking for these new symbols. For each new symbol we attempt
1189 to demangle it, and if successful, record it as a language_cplus symbol
1190 and cache the demangled form on the symbol obstack. Symbols which don't
1191 demangle are marked as language_unknown symbols, which inhibits future
025bb325 1192 attempts to demangle them if we later add more minimal symbols. */
c906108c
SS
1193
1194void
fba45db2 1195install_minimal_symbols (struct objfile *objfile)
c906108c 1196{
52f0bd74
AC
1197 int bindex;
1198 int mcount;
1199 struct msym_bunch *bunch;
1200 struct minimal_symbol *msymbols;
c906108c 1201 int alloc_count;
c906108c 1202
34643a32
TT
1203 if (objfile->per_bfd->minsyms_read)
1204 return;
1205
c906108c
SS
1206 if (msym_count > 0)
1207 {
45cfd468
DE
1208 if (symtab_create_debug)
1209 {
1210 fprintf_unfiltered (gdb_stdlog,
1211 "Installing %d minimal symbols of objfile %s.\n",
4262abfb 1212 msym_count, objfile_name (objfile));
45cfd468
DE
1213 }
1214
c906108c 1215 /* Allocate enough space in the obstack, into which we will gather the
c5aa993b
JM
1216 bunches of new and existing minimal symbols, sort them, and then
1217 compact out the duplicate entries. Once we have a final table,
1218 we will give back the excess space. */
c906108c 1219
34643a32
TT
1220 alloc_count = msym_count + objfile->per_bfd->minimal_symbol_count + 1;
1221 obstack_blank (&objfile->per_bfd->storage_obstack,
c906108c
SS
1222 alloc_count * sizeof (struct minimal_symbol));
1223 msymbols = (struct minimal_symbol *)
34643a32 1224 obstack_base (&objfile->per_bfd->storage_obstack);
c906108c
SS
1225
1226 /* Copy in the existing minimal symbols, if there are any. */
1227
34643a32
TT
1228 if (objfile->per_bfd->minimal_symbol_count)
1229 memcpy ((char *) msymbols, (char *) objfile->per_bfd->msymbols,
1230 objfile->per_bfd->minimal_symbol_count * sizeof (struct minimal_symbol));
c906108c
SS
1231
1232 /* Walk through the list of minimal symbol bunches, adding each symbol
c5aa993b
JM
1233 to the new contiguous array of symbols. Note that we start with the
1234 current, possibly partially filled bunch (thus we use the current
1235 msym_bunch_index for the first bunch we copy over), and thereafter
025bb325 1236 each bunch is full. */
c5aa993b 1237
34643a32 1238 mcount = objfile->per_bfd->minimal_symbol_count;
c5aa993b
JM
1239
1240 for (bunch = msym_bunch; bunch != NULL; bunch = bunch->next)
c906108c
SS
1241 {
1242 for (bindex = 0; bindex < msym_bunch_index; bindex++, mcount++)
66337bb1 1243 msymbols[mcount] = bunch->contents[bindex];
c906108c
SS
1244 msym_bunch_index = BUNCH_SIZE;
1245 }
1246
1247 /* Sort the minimal symbols by address. */
c5aa993b 1248
c906108c
SS
1249 qsort (msymbols, mcount, sizeof (struct minimal_symbol),
1250 compare_minimal_symbols);
c5aa993b 1251
c906108c 1252 /* Compact out any duplicates, and free up whatever space we are
c5aa993b
JM
1253 no longer using. */
1254
9227b5eb 1255 mcount = compact_minimal_symbols (msymbols, mcount, objfile);
c906108c 1256
34643a32 1257 obstack_blank (&objfile->per_bfd->storage_obstack,
c5aa993b 1258 (mcount + 1 - alloc_count) * sizeof (struct minimal_symbol));
c906108c 1259 msymbols = (struct minimal_symbol *)
34643a32 1260 obstack_finish (&objfile->per_bfd->storage_obstack);
c906108c
SS
1261
1262 /* We also terminate the minimal symbol table with a "null symbol",
c5aa993b
JM
1263 which is *not* included in the size of the table. This makes it
1264 easier to find the end of the table when we are handed a pointer
1265 to some symbol in the middle of it. Zero out the fields in the
1266 "null symbol" allocated at the end of the array. Note that the
1267 symbol count does *not* include this null symbol, which is why it
025bb325 1268 is indexed by mcount and not mcount-1. */
c906108c 1269
a83e9154 1270 memset (&msymbols[mcount], 0, sizeof (struct minimal_symbol));
c906108c
SS
1271
1272 /* Attach the minimal symbol table to the specified objfile.
34643a32 1273 The strings themselves are also located in the storage_obstack
c5aa993b 1274 of this objfile. */
c906108c 1275
34643a32
TT
1276 objfile->per_bfd->minimal_symbol_count = mcount;
1277 objfile->per_bfd->msymbols = msymbols;
c906108c 1278
afbb8d7a
KB
1279 /* Now build the hash tables; we can't do this incrementally
1280 at an earlier point since we weren't finished with the obstack
1281 yet. (And if the msymbol obstack gets moved, all the internal
025bb325 1282 pointers to other msymbols need to be adjusted.) */
afbb8d7a 1283 build_minimal_symbol_hash_tables (objfile);
c906108c
SS
1284 }
1285}
1286
c35384fb
TT
1287/* See minsyms.h. */
1288
1289void
1290terminate_minimal_symbol_table (struct objfile *objfile)
1291{
34643a32
TT
1292 if (! objfile->per_bfd->msymbols)
1293 objfile->per_bfd->msymbols
1294 = ((struct minimal_symbol *)
1295 obstack_alloc (&objfile->per_bfd->storage_obstack,
1296 sizeof (struct minimal_symbol)));
c35384fb
TT
1297
1298 {
1299 struct minimal_symbol *m
34643a32 1300 = &objfile->per_bfd->msymbols[objfile->per_bfd->minimal_symbol_count];
c35384fb
TT
1301
1302 memset (m, 0, sizeof (*m));
1303 /* Don't rely on these enumeration values being 0's. */
1304 MSYMBOL_TYPE (m) = mst_unknown;
34643a32
TT
1305 MSYMBOL_SET_LANGUAGE (m, language_unknown,
1306 &objfile->per_bfd->storage_obstack);
c35384fb
TT
1307 }
1308}
1309
c9630d9c
TT
1310/* Check if PC is in a shared library trampoline code stub.
1311 Return minimal symbol for the trampoline entry or NULL if PC is not
1312 in a trampoline code stub. */
c906108c 1313
c9630d9c 1314static struct minimal_symbol *
fba45db2 1315lookup_solib_trampoline_symbol_by_pc (CORE_ADDR pc)
c906108c 1316{
2eaf8d2a 1317 struct obj_section *section = find_pc_section (pc);
7cbd4a93 1318 struct bound_minimal_symbol msymbol;
2eaf8d2a
DJ
1319
1320 if (section == NULL)
1321 return NULL;
714835d5 1322 msymbol = lookup_minimal_symbol_by_pc_section_1 (pc, section, 1);
c906108c 1323
7cbd4a93
TT
1324 if (msymbol.minsym != NULL
1325 && MSYMBOL_TYPE (msymbol.minsym) == mst_solib_trampoline)
1326 return msymbol.minsym;
c906108c
SS
1327 return NULL;
1328}
1329
1330/* If PC is in a shared library trampoline code stub, return the
1331 address of the `real' function belonging to the stub.
1332 Return 0 if PC is not in a trampoline code stub or if the real
1333 function is not found in the minimal symbol table.
1334
1335 We may fail to find the right function if a function with the
1336 same name is defined in more than one shared library, but this
025bb325 1337 is considered bad programming style. We could return 0 if we find
c906108c
SS
1338 a duplicate function in case this matters someday. */
1339
1340CORE_ADDR
52f729a7 1341find_solib_trampoline_target (struct frame_info *frame, CORE_ADDR pc)
c906108c
SS
1342{
1343 struct objfile *objfile;
1344 struct minimal_symbol *msymbol;
1345 struct minimal_symbol *tsymbol = lookup_solib_trampoline_symbol_by_pc (pc);
1346
1347 if (tsymbol != NULL)
1348 {
1349 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b 1350 {
0875794a
JK
1351 if ((MSYMBOL_TYPE (msymbol) == mst_text
1352 || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc)
efd66ac6
TT
1353 && strcmp (MSYMBOL_LINKAGE_NAME (msymbol),
1354 MSYMBOL_LINKAGE_NAME (tsymbol)) == 0)
77e371c0 1355 return MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
42848c96
UW
1356
1357 /* Also handle minimal symbols pointing to function descriptors. */
1358 if (MSYMBOL_TYPE (msymbol) == mst_data
efd66ac6
TT
1359 && strcmp (MSYMBOL_LINKAGE_NAME (msymbol),
1360 MSYMBOL_LINKAGE_NAME (tsymbol)) == 0)
42848c96
UW
1361 {
1362 CORE_ADDR func;
b8d56208 1363
42848c96
UW
1364 func = gdbarch_convert_from_func_ptr_addr
1365 (get_objfile_arch (objfile),
77e371c0 1366 MSYMBOL_VALUE_ADDRESS (objfile, msymbol),
42848c96
UW
1367 &current_target);
1368
1369 /* Ignore data symbols that are not function descriptors. */
77e371c0 1370 if (func != MSYMBOL_VALUE_ADDRESS (objfile, msymbol))
42848c96
UW
1371 return func;
1372 }
c5aa993b 1373 }
c906108c
SS
1374 }
1375 return 0;
1376}
50e65b17
TT
1377
1378/* See minsyms.h. */
1379
1380CORE_ADDR
1381minimal_symbol_upper_bound (struct bound_minimal_symbol minsym)
1382{
1383 int i;
1384 short section;
1385 struct obj_section *obj_section;
1386 CORE_ADDR result;
1387 struct minimal_symbol *msymbol;
1388
1389 gdb_assert (minsym.minsym != NULL);
1390
1391 /* If the minimal symbol has a size, use it. Otherwise use the
1392 lesser of the next minimal symbol in the same section, or the end
1393 of the section, as the end of the function. */
1394
1395 if (MSYMBOL_SIZE (minsym.minsym) != 0)
77e371c0 1396 return BMSYMBOL_VALUE_ADDRESS (minsym) + MSYMBOL_SIZE (minsym.minsym);
50e65b17
TT
1397
1398 /* Step over other symbols at this same address, and symbols in
1399 other sections, to find the next symbol in this section with a
1400 different address. */
1401
1402 msymbol = minsym.minsym;
efd66ac6
TT
1403 section = MSYMBOL_SECTION (msymbol);
1404 for (i = 1; MSYMBOL_LINKAGE_NAME (msymbol + i) != NULL; i++)
50e65b17 1405 {
77e371c0
TT
1406 if ((MSYMBOL_VALUE_RAW_ADDRESS (msymbol + i)
1407 != MSYMBOL_VALUE_RAW_ADDRESS (msymbol))
efd66ac6 1408 && MSYMBOL_SECTION (msymbol + i) == section)
50e65b17
TT
1409 break;
1410 }
1411
efd66ac6
TT
1412 obj_section = MSYMBOL_OBJ_SECTION (minsym.objfile, minsym.minsym);
1413 if (MSYMBOL_LINKAGE_NAME (msymbol + i) != NULL
77e371c0 1414 && (MSYMBOL_VALUE_ADDRESS (minsym.objfile, msymbol + i)
efd66ac6 1415 < obj_section_endaddr (obj_section)))
77e371c0 1416 result = MSYMBOL_VALUE_ADDRESS (minsym.objfile, msymbol + i);
50e65b17
TT
1417 else
1418 /* We got the start address from the last msymbol in the objfile.
1419 So the end address is the end of the section. */
1420 result = obj_section_endaddr (obj_section);
1421
1422 return result;
1423}