gdb: fix vfork with multiple threads
[deliverable/binutils-gdb.git] / gdb / minsyms.c
CommitLineData
c906108c 1/* GDB routines for manipulating the minimal symbol tables.
3666a048 2 Copyright (C) 1992-2021 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"
268a13a5 53#include "gdbsupport/symbol.h"
b5ec771e 54#include <algorithm>
deeeba55 55#include "safe-ctype.h"
d55c9a68 56#include "gdbsupport/parallel-for.h"
328d42d8 57#include "inferior.h"
d55c9a68
TT
58
59#if CXX_STD_THREAD
60#include <mutex>
61#endif
c906108c 62
17d305ef
TV
63/* Return true if MINSYM is a cold clone symbol.
64 Recognize f.i. these symbols (mangled/demangled):
65 - _ZL3foov.cold
66 foo() [clone .cold]
67 - _ZL9do_rpo_vnP8functionP8edge_defP11bitmap_headbb.cold.138
68 do_rpo_vn(function*, edge_def*, bitmap_head*, bool, bool) \
69 [clone .cold.138]. */
70
71static bool
72msymbol_is_cold_clone (minimal_symbol *minsym)
73{
74 const char *name = minsym->natural_name ();
75 size_t name_len = strlen (name);
76 if (name_len < 1)
77 return false;
78
79 const char *last = &name[name_len - 1];
80 if (*last != ']')
81 return false;
82
83 const char *suffix = " [clone .cold";
84 size_t suffix_len = strlen (suffix);
85 const char *found = strstr (name, suffix);
86 if (found == nullptr)
87 return false;
88
89 const char *start = &found[suffix_len];
90 if (*start == ']')
91 return true;
92
93 if (*start != '.')
94 return false;
95
96 const char *p;
97 for (p = start + 1; p <= last; ++p)
98 {
99 if (*p >= '0' && *p <= '9')
100 continue;
101 break;
102 }
103
104 if (p == last)
105 return true;
106
107 return false;
108}
109
bf223d3e
PA
110/* See minsyms.h. */
111
112bool
4024cf2b
PA
113msymbol_is_function (struct objfile *objfile, minimal_symbol *minsym,
114 CORE_ADDR *func_address_p)
bf223d3e 115{
4024cf2b
PA
116 CORE_ADDR msym_addr = MSYMBOL_VALUE_ADDRESS (objfile, minsym);
117
118 switch (minsym->type)
bf223d3e 119 {
4024cf2b
PA
120 case mst_slot_got_plt:
121 case mst_data:
122 case mst_bss:
123 case mst_abs:
124 case mst_file_data:
125 case mst_file_bss:
f50776aa 126 case mst_data_gnu_ifunc:
4024cf2b 127 {
08feed99 128 struct gdbarch *gdbarch = objfile->arch ();
328d42d8
SM
129 CORE_ADDR pc = gdbarch_convert_from_func_ptr_addr
130 (gdbarch, msym_addr, current_inferior ()->top_target ());
4024cf2b
PA
131 if (pc != msym_addr)
132 {
133 if (func_address_p != NULL)
134 *func_address_p = pc;
135 return true;
136 }
137 return false;
138 }
17d305ef
TV
139 case mst_file_text:
140 /* Ignore function symbol that is not a function entry. */
141 if (msymbol_is_cold_clone (minsym))
142 return false;
143 /* fallthru */
bf223d3e 144 default:
4024cf2b
PA
145 if (func_address_p != NULL)
146 *func_address_p = msym_addr;
147 return true;
bf223d3e
PA
148 }
149}
150
c906108c 151/* Accumulate the minimal symbols for each objfile in bunches of BUNCH_SIZE.
79e7ae11 152 At the end, copy them all into one newly allocated array. */
c906108c
SS
153
154#define BUNCH_SIZE 127
155
156struct msym_bunch
c5aa993b
JM
157 {
158 struct msym_bunch *next;
159 struct minimal_symbol contents[BUNCH_SIZE];
160 };
c906108c 161
b19686e0 162/* See minsyms.h. */
9227b5eb
JB
163
164unsigned int
165msymbol_hash_iw (const char *string)
166{
167 unsigned int hash = 0;
b8d56208 168
9227b5eb
JB
169 while (*string && *string != '(')
170 {
f1735a53 171 string = skip_spaces (string);
9227b5eb 172 if (*string && *string != '(')
375f3d86 173 {
59d7bcaf 174 hash = SYMBOL_HASH_NEXT (hash, *string);
375f3d86
DJ
175 ++string;
176 }
9227b5eb 177 }
261397f8 178 return hash;
9227b5eb
JB
179}
180
b19686e0 181/* See minsyms.h. */
9227b5eb
JB
182
183unsigned int
184msymbol_hash (const char *string)
185{
186 unsigned int hash = 0;
b8d56208 187
9227b5eb 188 for (; *string; ++string)
59d7bcaf 189 hash = SYMBOL_HASH_NEXT (hash, *string);
261397f8 190 return hash;
9227b5eb
JB
191}
192
193/* Add the minimal symbol SYM to an objfile's minsym hash table, TABLE. */
984ac464 194static void
9227b5eb 195add_minsym_to_hash_table (struct minimal_symbol *sym,
f29d7f6b
CB
196 struct minimal_symbol **table,
197 unsigned int hash_value)
9227b5eb
JB
198{
199 if (sym->hash_next == NULL)
200 {
f29d7f6b 201 unsigned int hash = hash_value % MINIMAL_SYMBOL_HASH_SIZE;
b8d56208 202
9227b5eb
JB
203 sym->hash_next = table[hash];
204 table[hash] = sym;
205 }
206}
207
0729fd50
DB
208/* Add the minimal symbol SYM to an objfile's minsym demangled hash table,
209 TABLE. */
210static void
211add_minsym_to_demangled_hash_table (struct minimal_symbol *sym,
f29d7f6b
CB
212 struct objfile *objfile,
213 unsigned int hash_value)
0729fd50
DB
214{
215 if (sym->demangled_hash_next == NULL)
216 {
c1b5c1eb 217 objfile->per_bfd->demangled_hash_languages.set (sym->language ());
b5ec771e
PA
218
219 struct minimal_symbol **table
220 = objfile->per_bfd->msymbol_demangled_hash;
f29d7f6b 221 unsigned int hash_index = hash_value % MINIMAL_SYMBOL_HASH_SIZE;
b5ec771e
PA
222 sym->demangled_hash_next = table[hash_index];
223 table[hash_index] = sym;
224 }
225}
b8d56208 226
b5ec771e
PA
227/* Worker object for lookup_minimal_symbol. Stores temporary results
228 while walking the symbol tables. */
229
230struct found_minimal_symbols
231{
232 /* External symbols are best. */
233 bound_minimal_symbol external_symbol {};
234
235 /* File-local symbols are next best. */
236 bound_minimal_symbol file_symbol {};
237
238 /* Symbols for shared library trampolines are next best. */
239 bound_minimal_symbol trampoline_symbol {};
240
241 /* Called when a symbol name matches. Check if the minsym is a
242 better type than what we had already found, and record it in one
243 of the members fields if so. Returns true if we collected the
244 real symbol, in which case we can stop searching. */
245 bool maybe_collect (const char *sfile, objfile *objf,
246 minimal_symbol *msymbol);
247};
248
249/* See declaration above. */
250
251bool
252found_minimal_symbols::maybe_collect (const char *sfile,
253 struct objfile *objfile,
254 minimal_symbol *msymbol)
255{
256 switch (MSYMBOL_TYPE (msymbol))
257 {
258 case mst_file_text:
259 case mst_file_data:
260 case mst_file_bss:
261 if (sfile == NULL
262 || filename_cmp (msymbol->filename, sfile) == 0)
263 {
264 file_symbol.minsym = msymbol;
265 file_symbol.objfile = objfile;
266 }
267 break;
268
269 case mst_solib_trampoline:
270
271 /* If a trampoline symbol is found, we prefer to keep
272 looking for the *real* symbol. If the actual symbol
273 is not found, then we'll use the trampoline
274 entry. */
275 if (trampoline_symbol.minsym == NULL)
276 {
277 trampoline_symbol.minsym = msymbol;
278 trampoline_symbol.objfile = objfile;
279 }
280 break;
281
282 case mst_unknown:
283 default:
284 external_symbol.minsym = msymbol;
285 external_symbol.objfile = objfile;
286 /* We have the real symbol. No use looking further. */
287 return true;
288 }
289
290 /* Keep looking. */
291 return false;
292}
293
294/* Walk the mangled name hash table, and pass each symbol whose name
295 matches LOOKUP_NAME according to NAMECMP to FOUND. */
296
297static void
298lookup_minimal_symbol_mangled (const char *lookup_name,
299 const char *sfile,
300 struct objfile *objfile,
301 struct minimal_symbol **table,
302 unsigned int hash,
303 int (*namecmp) (const char *, const char *),
304 found_minimal_symbols &found)
305{
306 for (minimal_symbol *msymbol = table[hash];
307 msymbol != NULL;
308 msymbol = msymbol->hash_next)
309 {
c9d95fa3 310 const char *symbol_name = msymbol->linkage_name ();
b5ec771e
PA
311
312 if (namecmp (symbol_name, lookup_name) == 0
313 && found.maybe_collect (sfile, objfile, msymbol))
314 return;
315 }
316}
317
318/* Walk the demangled name hash table, and pass each symbol whose name
319 matches LOOKUP_NAME according to MATCHER to FOUND. */
320
321static void
322lookup_minimal_symbol_demangled (const lookup_name_info &lookup_name,
323 const char *sfile,
324 struct objfile *objfile,
325 struct minimal_symbol **table,
326 unsigned int hash,
327 symbol_name_matcher_ftype *matcher,
328 found_minimal_symbols &found)
329{
330 for (minimal_symbol *msymbol = table[hash];
331 msymbol != NULL;
332 msymbol = msymbol->demangled_hash_next)
333 {
c9d95fa3 334 const char *symbol_name = msymbol->search_name ();
b5ec771e
PA
335
336 if (matcher (symbol_name, lookup_name, NULL)
337 && found.maybe_collect (sfile, objfile, msymbol))
338 return;
0729fd50
DB
339 }
340}
341
c906108c
SS
342/* Look through all the current minimal symbol tables and find the
343 first minimal symbol that matches NAME. If OBJF is non-NULL, limit
72a5efb3
DJ
344 the search to that objfile. If SFILE is non-NULL, the only file-scope
345 symbols considered will be from that source file (global symbols are
346 still preferred). Returns a pointer to the minimal symbol that
c906108c
SS
347 matches, or NULL if no match is found.
348
349 Note: One instance where there may be duplicate minimal symbols with
350 the same name is when the symbol tables for a shared library and the
351 symbol tables for an executable contain global symbols with the same
d73f140a
JB
352 names (the dynamic linker deals with the duplication).
353
354 It's also possible to have minimal symbols with different mangled
355 names, but identical demangled names. For example, the GNU C++ v3
356 ABI requires the generation of two (or perhaps three) copies of
357 constructor functions --- "in-charge", "not-in-charge", and
358 "allocate" copies; destructors may be duplicated as well.
359 Obviously, there must be distinct mangled names for each of these,
360 but the demangled names are all the same: S::S or S::~S. */
c906108c 361
3b7344d5
TT
362struct bound_minimal_symbol
363lookup_minimal_symbol (const char *name, const char *sfile,
364 struct objfile *objf)
c906108c 365{
b5ec771e 366 found_minimal_symbols found;
c906108c 367
b5ec771e 368 unsigned int mangled_hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
9227b5eb 369
b5ec771e
PA
370 auto *mangled_cmp
371 = (case_sensitivity == case_sensitive_on
372 ? strcmp
373 : strcasecmp);
71c25dea 374
c906108c 375 if (sfile != NULL)
9f37bbcc 376 sfile = lbasename (sfile);
c906108c 377
b5ec771e 378 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
71c25dea 379
bf227d61 380 for (objfile *objfile : current_program_space->objfiles ())
c906108c 381 {
bf227d61
TT
382 if (found.external_symbol.minsym != NULL)
383 break;
384
56e3f43c 385 if (objf == NULL || objf == objfile
15d123c9 386 || objf == objfile->separate_debug_objfile_backlink)
c906108c 387 {
b5ec771e
PA
388 if (symbol_lookup_debug)
389 {
390 fprintf_unfiltered (gdb_stdlog,
391 "lookup_minimal_symbol (%s, %s, %s)\n",
392 name, sfile != NULL ? sfile : "NULL",
393 objfile_debug_name (objfile));
394 }
395
9227b5eb
JB
396 /* Do two passes: the first over the ordinary hash table,
397 and the second over the demangled hash table. */
b5ec771e
PA
398 lookup_minimal_symbol_mangled (name, sfile, objfile,
399 objfile->per_bfd->msymbol_hash,
400 mangled_hash, mangled_cmp, found);
cc485e62 401
b5ec771e
PA
402 /* If not found, try the demangled hash table. */
403 if (found.external_symbol.minsym == NULL)
c906108c 404 {
b5ec771e
PA
405 /* Once for each language in the demangled hash names
406 table (usually just zero or one languages). */
1b7a07cb 407 for (unsigned iter = 0; iter < nr_languages; ++iter)
c906108c 408 {
1b7a07cb
TT
409 if (!objfile->per_bfd->demangled_hash_languages.test (iter))
410 continue;
411 enum language lang = (enum language) iter;
412
b5ec771e
PA
413 unsigned int hash
414 = (lookup_name.search_name_hash (lang)
415 % MINIMAL_SYMBOL_HASH_SIZE);
416
417 symbol_name_matcher_ftype *match
c9debfb9
AB
418 = language_def (lang)->get_symbol_name_matcher
419 (lookup_name);
b5ec771e
PA
420 struct minimal_symbol **msymbol_demangled_hash
421 = objfile->per_bfd->msymbol_demangled_hash;
422
423 lookup_minimal_symbol_demangled (lookup_name, sfile, objfile,
424 msymbol_demangled_hash,
425 hash, match, found);
426
427 if (found.external_symbol.minsym != NULL)
428 break;
9227b5eb 429 }
c906108c
SS
430 }
431 }
432 }
71c25dea 433
c906108c 434 /* External symbols are best. */
b5ec771e 435 if (found.external_symbol.minsym != NULL)
cc485e62
DE
436 {
437 if (symbol_lookup_debug)
438 {
b5ec771e
PA
439 minimal_symbol *minsym = found.external_symbol.minsym;
440
cc485e62 441 fprintf_unfiltered (gdb_stdlog,
b5ec771e
PA
442 "lookup_minimal_symbol (...) = %s (external)\n",
443 host_address_to_string (minsym));
cc485e62 444 }
b5ec771e 445 return found.external_symbol;
cc485e62 446 }
c906108c
SS
447
448 /* File-local symbols are next best. */
b5ec771e 449 if (found.file_symbol.minsym != NULL)
cc485e62
DE
450 {
451 if (symbol_lookup_debug)
452 {
b5ec771e
PA
453 minimal_symbol *minsym = found.file_symbol.minsym;
454
cc485e62 455 fprintf_unfiltered (gdb_stdlog,
b5ec771e
PA
456 "lookup_minimal_symbol (...) = %s (file-local)\n",
457 host_address_to_string (minsym));
cc485e62 458 }
b5ec771e 459 return found.file_symbol;
cc485e62 460 }
c906108c
SS
461
462 /* Symbols for shared library trampolines are next best. */
b5ec771e 463 if (found.trampoline_symbol.minsym != NULL)
cc485e62 464 {
b5ec771e
PA
465 if (symbol_lookup_debug)
466 {
467 minimal_symbol *minsym = found.trampoline_symbol.minsym;
468
469 fprintf_unfiltered (gdb_stdlog,
470 "lookup_minimal_symbol (...) = %s (trampoline)\n",
471 host_address_to_string (minsym));
472 }
473
474 return found.trampoline_symbol;
cc485e62 475 }
b5ec771e
PA
476
477 /* Not found. */
478 if (symbol_lookup_debug)
479 fprintf_unfiltered (gdb_stdlog, "lookup_minimal_symbol (...) = NULL\n");
480 return {};
7c7b6655
TT
481}
482
483/* See minsyms.h. */
c906108c 484
7c7b6655
TT
485struct bound_minimal_symbol
486lookup_bound_minimal_symbol (const char *name)
487{
3b7344d5 488 return lookup_minimal_symbol (name, NULL, NULL);
c906108c
SS
489}
490
268a13a5 491/* See gdbsupport/symbol.h. */
bd9269f7
GB
492
493int
494find_minimal_symbol_address (const char *name, CORE_ADDR *addr,
495 struct objfile *objfile)
496{
497 struct bound_minimal_symbol sym
498 = lookup_minimal_symbol (name, NULL, objfile);
499
500 if (sym.minsym != NULL)
501 *addr = BMSYMBOL_VALUE_ADDRESS (sym);
502
503 return sym.minsym == NULL;
504}
505
8825213e
PA
506/* Get the lookup name form best suitable for linkage name
507 matching. */
508
509static const char *
510linkage_name_str (const lookup_name_info &lookup_name)
511{
512 /* Unlike most languages (including C++), Ada uses the
513 encoded/linkage name as the search name recorded in symbols. So
514 if debugging in Ada mode, prefer the Ada-encoded name. This also
515 makes Ada's verbatim match syntax ("<...>") work, because
516 "lookup_name.name()" includes the "<>"s, while
517 "lookup_name.ada().lookup_name()" is the encoded name with "<>"s
518 stripped. */
519 if (current_language->la_language == language_ada)
520 return lookup_name.ada ().lookup_name ().c_str ();
521
e0802d59 522 return lookup_name.c_str ();
8825213e
PA
523}
524
b19686e0 525/* See minsyms.h. */
f8eba3c6
TT
526
527void
41c1efc6
TT
528iterate_over_minimal_symbols
529 (struct objfile *objf, const lookup_name_info &lookup_name,
ca31ab1d 530 gdb::function_view<bool (struct minimal_symbol *)> callback)
f8eba3c6 531{
f8eba3c6 532 /* The first pass is over the ordinary hash table. */
f8eba3c6 533 {
8825213e 534 const char *name = linkage_name_str (lookup_name);
b5ec771e
PA
535 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
536 auto *mangled_cmp
537 = (case_sensitivity == case_sensitive_on
538 ? strcmp
539 : strcasecmp);
540
541 for (minimal_symbol *iter = objf->per_bfd->msymbol_hash[hash];
542 iter != NULL;
543 iter = iter->hash_next)
544 {
c9d95fa3 545 if (mangled_cmp (iter->linkage_name (), name) == 0)
ca31ab1d
PA
546 if (callback (iter))
547 return;
b5ec771e 548 }
f8eba3c6
TT
549 }
550
b5ec771e
PA
551 /* The second pass is over the demangled table. Once for each
552 language in the demangled hash names table (usually just zero or
553 one). */
1b7a07cb 554 for (unsigned liter = 0; liter < nr_languages; ++liter)
f8eba3c6 555 {
1b7a07cb
TT
556 if (!objf->per_bfd->demangled_hash_languages.test (liter))
557 continue;
558
559 enum language lang = (enum language) liter;
b5ec771e
PA
560 const language_defn *lang_def = language_def (lang);
561 symbol_name_matcher_ftype *name_match
c9debfb9 562 = lang_def->get_symbol_name_matcher (lookup_name);
b5ec771e
PA
563
564 unsigned int hash
565 = lookup_name.search_name_hash (lang) % MINIMAL_SYMBOL_HASH_SIZE;
566 for (minimal_symbol *iter = objf->per_bfd->msymbol_demangled_hash[hash];
567 iter != NULL;
568 iter = iter->demangled_hash_next)
c9d95fa3 569 if (name_match (iter->search_name (), lookup_name, NULL))
ca31ab1d
PA
570 if (callback (iter))
571 return;
f8eba3c6
TT
572 }
573}
574
b19686e0 575/* See minsyms.h. */
c5aa993b 576
4b610737
TT
577bound_minimal_symbol
578lookup_minimal_symbol_linkage (const char *name, struct objfile *objf)
579{
580 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
581
582 for (objfile *objfile : objf->separate_debug_objfiles ())
583 {
584 for (minimal_symbol *msymbol = objfile->per_bfd->msymbol_hash[hash];
585 msymbol != NULL;
586 msymbol = msymbol->hash_next)
587 {
c9d95fa3 588 if (strcmp (msymbol->linkage_name (), name) == 0
4b610737
TT
589 && (MSYMBOL_TYPE (msymbol) == mst_data
590 || MSYMBOL_TYPE (msymbol) == mst_bss))
591 return {msymbol, objfile};
592 }
593 }
594
595 return {};
596}
597
598/* See minsyms.h. */
599
3b7344d5 600struct bound_minimal_symbol
5520a790 601lookup_minimal_symbol_text (const char *name, struct objfile *objf)
c906108c 602{
c906108c 603 struct minimal_symbol *msymbol;
3b7344d5
TT
604 struct bound_minimal_symbol found_symbol = { NULL, NULL };
605 struct bound_minimal_symbol found_file_symbol = { NULL, NULL };
c906108c 606
72a5efb3
DJ
607 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
608
bf227d61 609 for (objfile *objfile : current_program_space->objfiles ())
c906108c 610 {
bf227d61
TT
611 if (found_symbol.minsym != NULL)
612 break;
613
56e3f43c 614 if (objf == NULL || objf == objfile
15d123c9 615 || objf == objfile->separate_debug_objfile_backlink)
c906108c 616 {
34643a32 617 for (msymbol = objfile->per_bfd->msymbol_hash[hash];
3b7344d5 618 msymbol != NULL && found_symbol.minsym == NULL;
72a5efb3 619 msymbol = msymbol->hash_next)
c906108c 620 {
c9d95fa3 621 if (strcmp (msymbol->linkage_name (), name) == 0 &&
0875794a
JK
622 (MSYMBOL_TYPE (msymbol) == mst_text
623 || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
624 || MSYMBOL_TYPE (msymbol) == mst_file_text))
c906108c
SS
625 {
626 switch (MSYMBOL_TYPE (msymbol))
627 {
628 case mst_file_text:
3b7344d5
TT
629 found_file_symbol.minsym = msymbol;
630 found_file_symbol.objfile = objfile;
c906108c
SS
631 break;
632 default:
3b7344d5
TT
633 found_symbol.minsym = msymbol;
634 found_symbol.objfile = objfile;
c906108c
SS
635 break;
636 }
637 }
638 }
639 }
640 }
641 /* External symbols are best. */
3b7344d5 642 if (found_symbol.minsym)
c906108c
SS
643 return found_symbol;
644
645 /* File-local symbols are next best. */
3b7344d5 646 return found_file_symbol;
c906108c
SS
647}
648
b19686e0 649/* See minsyms.h. */
907fc202
UW
650
651struct minimal_symbol *
652lookup_minimal_symbol_by_pc_name (CORE_ADDR pc, const char *name,
653 struct objfile *objf)
654{
907fc202
UW
655 struct minimal_symbol *msymbol;
656
657 unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
658
bf227d61 659 for (objfile *objfile : current_program_space->objfiles ())
907fc202
UW
660 {
661 if (objf == NULL || objf == objfile
15d123c9 662 || objf == objfile->separate_debug_objfile_backlink)
907fc202 663 {
34643a32 664 for (msymbol = objfile->per_bfd->msymbol_hash[hash];
907fc202
UW
665 msymbol != NULL;
666 msymbol = msymbol->hash_next)
667 {
77e371c0 668 if (MSYMBOL_VALUE_ADDRESS (objfile, msymbol) == pc
c9d95fa3 669 && strcmp (msymbol->linkage_name (), name) == 0)
907fc202
UW
670 return msymbol;
671 }
672 }
673 }
674
675 return NULL;
676}
677
77e371c0
TT
678/* A helper function that makes *PC section-relative. This searches
679 the sections of OBJFILE and if *PC is in a section, it subtracts
680 the section offset and returns true. Otherwise it returns
681 false. */
682
683static int
684frob_address (struct objfile *objfile, CORE_ADDR *pc)
685{
686 struct obj_section *iter;
687
688 ALL_OBJFILE_OSECTIONS (objfile, iter)
689 {
0c1bcd23 690 if (*pc >= iter->addr () && *pc < iter->endaddr ())
77e371c0 691 {
0c1bcd23 692 *pc -= iter->offset ();
77e371c0
TT
693 return 1;
694 }
695 }
696
697 return 0;
698}
699
6ae50267
PA
700/* Helper for lookup_minimal_symbol_by_pc_section. Convert a
701 lookup_msym_prefer to a minimal_symbol_type. */
702
703static minimal_symbol_type
704msym_prefer_to_msym_type (lookup_msym_prefer prefer)
705{
706 switch (prefer)
707 {
708 case lookup_msym_prefer::TEXT:
709 return mst_text;
710 case lookup_msym_prefer::TRAMPOLINE:
711 return mst_solib_trampoline;
712 case lookup_msym_prefer::GNU_IFUNC:
713 return mst_text_gnu_ifunc;
714 }
715
716 /* Assert here instead of in a default switch case above so that
717 -Wswitch warns if a new enumerator is added. */
718 gdb_assert_not_reached ("unhandled lookup_msym_prefer");
719}
720
733d0a67
AB
721/* See minsyms.h.
722
00878c6e
PP
723 Note that we need to look through ALL the minimal symbol tables
724 before deciding on the symbol that comes closest to the specified PC.
725 This is because objfiles can overlap, for example objfile A has .text
726 at 0x100 and .data at 0x40000 and objfile B has .text at 0x234 and
733d0a67 727 .data at 0x40048. */
2eaf8d2a 728
20944a6e
PA
729bound_minimal_symbol
730lookup_minimal_symbol_by_pc_section (CORE_ADDR pc_in, struct obj_section *section,
733d0a67
AB
731 lookup_msym_prefer prefer,
732 bound_minimal_symbol *previous)
c906108c
SS
733{
734 int lo;
735 int hi;
fe978cb0 736 int newobj;
c906108c
SS
737 struct minimal_symbol *msymbol;
738 struct minimal_symbol *best_symbol = NULL;
7cbd4a93
TT
739 struct objfile *best_objfile = NULL;
740 struct bound_minimal_symbol result;
c906108c 741
733d0a67
AB
742 if (previous != nullptr)
743 {
744 previous->minsym = nullptr;
745 previous->objfile = nullptr;
746 }
747
20944a6e
PA
748 if (section == NULL)
749 {
750 section = find_pc_section (pc_in);
751 if (section == NULL)
752 return {};
753 }
754
6ae50267 755 minimal_symbol_type want_type = msym_prefer_to_msym_type (prefer);
00878c6e
PP
756
757 /* We can not require the symbol found to be in section, because
96225718
DJ
758 e.g. IRIX 6.5 mdebug relies on this code returning an absolute
759 symbol - but find_pc_section won't return an absolute section and
760 hence the code below would skip over absolute symbols. We can
761 still take advantage of the call to find_pc_section, though - the
762 object file still must match. In case we have separate debug
763 files, search both the file and its separate debug file. There's
764 no telling which one will have the minimal symbols. */
765
00878c6e 766 gdb_assert (section != NULL);
96225718 767
bde09ab7 768 for (objfile *objfile : section->objfile->separate_debug_objfiles ())
c906108c 769 {
77e371c0
TT
770 CORE_ADDR pc = pc_in;
771
741d7538 772 /* If this objfile has a minimal symbol table, go search it
dda83cd7 773 using a binary search. */
c906108c 774
34643a32 775 if (objfile->per_bfd->minimal_symbol_count > 0)
c906108c 776 {
29e8a844
DJ
777 int best_zero_sized = -1;
778
dda83cd7 779 msymbol = objfile->per_bfd->msymbols.get ();
c906108c 780 lo = 0;
34643a32 781 hi = objfile->per_bfd->minimal_symbol_count - 1;
c906108c
SS
782
783 /* This code assumes that the minimal symbols are sorted by
784 ascending address values. If the pc value is greater than or
785 equal to the first symbol's address, then some symbol in this
786 minimal symbol table is a suitable candidate for being the
787 "best" symbol. This includes the last real symbol, for cases
788 where the pc value is larger than any address in this vector.
789
790 By iterating until the address associated with the current
791 hi index (the endpoint of the test interval) is less than
792 or equal to the desired pc value, we accomplish two things:
793 (1) the case where the pc value is larger than any minimal
794 symbol address is trivially solved, (2) the address associated
30baf67b 795 with the hi index is always the one we want when the iteration
c906108c
SS
796 terminates. In essence, we are iterating the test interval
797 down until the pc value is pushed out of it from the high end.
798
025bb325 799 Warning: this code is trickier than it would appear at first. */
c906108c 800
77e371c0
TT
801 if (frob_address (objfile, &pc)
802 && pc >= MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[lo]))
c906108c 803 {
77e371c0 804 while (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi]) > pc)
c906108c 805 {
025bb325
MS
806 /* pc is still strictly less than highest address. */
807 /* Note "new" will always be >= lo. */
fe978cb0
PA
808 newobj = (lo + hi) / 2;
809 if ((MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[newobj]) >= pc)
810 || (lo == newobj))
c906108c 811 {
fe978cb0 812 hi = newobj;
c906108c
SS
813 }
814 else
815 {
fe978cb0 816 lo = newobj;
c906108c
SS
817 }
818 }
819
820 /* If we have multiple symbols at the same address, we want
dda83cd7
SM
821 hi to point to the last one. That way we can find the
822 right symbol if it has an index greater than hi. */
34643a32 823 while (hi < objfile->per_bfd->minimal_symbol_count - 1
77e371c0
TT
824 && (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
825 == MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi + 1])))
c906108c
SS
826 hi++;
827
29e8a844
DJ
828 /* Skip various undesirable symbols. */
829 while (hi >= 0)
830 {
831 /* Skip any absolute symbols. This is apparently
832 what adb and dbx do, and is needed for the CM-5.
833 There are two known possible problems: (1) on
834 ELF, apparently end, edata, etc. are absolute.
835 Not sure ignoring them here is a big deal, but if
836 we want to use them, the fix would go in
837 elfread.c. (2) I think shared library entry
838 points on the NeXT are absolute. If we want
839 special handling for this it probably should be
840 triggered by a special mst_abs_or_lib or some
841 such. */
842
712f90be 843 if (MSYMBOL_TYPE (&msymbol[hi]) == mst_abs)
29e8a844
DJ
844 {
845 hi--;
846 continue;
847 }
848
849 /* If SECTION was specified, skip any symbol from
850 wrong section. */
851 if (section
852 /* Some types of debug info, such as COFF,
853 don't fill the bfd_section member, so don't
854 throw away symbols on those platforms. */
ebbc3a7d 855 && msymbol[hi].obj_section (objfile) != nullptr
714835d5 856 && (!matching_obj_sections
ebbc3a7d 857 (msymbol[hi].obj_section (objfile),
e27d198c 858 section)))
29e8a844
DJ
859 {
860 hi--;
861 continue;
862 }
863
2eaf8d2a
DJ
864 /* If we are looking for a trampoline and this is a
865 text symbol, or the other way around, check the
177b42fe 866 preceding symbol too. If they are otherwise
2eaf8d2a
DJ
867 identical prefer that one. */
868 if (hi > 0
20944a6e 869 && MSYMBOL_TYPE (&msymbol[hi]) != want_type
2eaf8d2a
DJ
870 && MSYMBOL_TYPE (&msymbol[hi - 1]) == want_type
871 && (MSYMBOL_SIZE (&msymbol[hi])
872 == MSYMBOL_SIZE (&msymbol[hi - 1]))
77e371c0
TT
873 && (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
874 == MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi - 1]))
ebbc3a7d
AB
875 && (msymbol[hi].obj_section (objfile)
876 == msymbol[hi - 1].obj_section (objfile)))
2eaf8d2a
DJ
877 {
878 hi--;
879 continue;
880 }
881
29e8a844
DJ
882 /* If the minimal symbol has a zero size, save it
883 but keep scanning backwards looking for one with
884 a non-zero size. A zero size may mean that the
885 symbol isn't an object or function (e.g. a
886 label), or it may just mean that the size was not
887 specified. */
5506f9f6 888 if (MSYMBOL_SIZE (&msymbol[hi]) == 0)
29e8a844 889 {
5506f9f6
KB
890 if (best_zero_sized == -1)
891 best_zero_sized = hi;
29e8a844
DJ
892 hi--;
893 continue;
894 }
895
f7a6bb70
DJ
896 /* If we are past the end of the current symbol, try
897 the previous symbol if it has a larger overlapping
898 size. This happens on i686-pc-linux-gnu with glibc;
899 the nocancel variants of system calls are inside
900 the cancellable variants, but both have sizes. */
901 if (hi > 0
902 && MSYMBOL_SIZE (&msymbol[hi]) != 0
77e371c0 903 && pc >= (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
f7a6bb70 904 + MSYMBOL_SIZE (&msymbol[hi]))
77e371c0 905 && pc < (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi - 1])
f7a6bb70
DJ
906 + MSYMBOL_SIZE (&msymbol[hi - 1])))
907 {
908 hi--;
909 continue;
910 }
911
29e8a844
DJ
912 /* Otherwise, this symbol must be as good as we're going
913 to get. */
914 break;
915 }
916
917 /* If HI has a zero size, and best_zero_sized is set,
918 then we had two or more zero-sized symbols; prefer
919 the first one we found (which may have a higher
920 address). Also, if we ran off the end, be sure
921 to back up. */
922 if (best_zero_sized != -1
923 && (hi < 0 || MSYMBOL_SIZE (&msymbol[hi]) == 0))
924 hi = best_zero_sized;
925
926 /* If the minimal symbol has a non-zero size, and this
927 PC appears to be outside the symbol's contents, then
928 refuse to use this symbol. If we found a zero-sized
929 symbol with an address greater than this symbol's,
930 use that instead. We assume that if symbols have
931 specified sizes, they do not overlap. */
932
933 if (hi >= 0
934 && MSYMBOL_SIZE (&msymbol[hi]) != 0
77e371c0 935 && pc >= (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
29e8a844
DJ
936 + MSYMBOL_SIZE (&msymbol[hi])))
937 {
938 if (best_zero_sized != -1)
939 hi = best_zero_sized;
940 else
733d0a67
AB
941 {
942 /* If needed record this symbol as the closest
943 previous symbol. */
944 if (previous != nullptr)
945 {
946 if (previous->minsym == nullptr
947 || (MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi])
948 > MSYMBOL_VALUE_RAW_ADDRESS
949 (previous->minsym)))
950 {
951 previous->minsym = &msymbol[hi];
952 previous->objfile = objfile;
953 }
954 }
955 /* Go on to the next object file. */
956 continue;
957 }
29e8a844
DJ
958 }
959
c906108c 960 /* The minimal symbol indexed by hi now is the best one in this
dda83cd7
SM
961 objfile's minimal symbol table. See if it is the best one
962 overall. */
c906108c 963
c906108c
SS
964 if (hi >= 0
965 && ((best_symbol == NULL) ||
77e371c0
TT
966 (MSYMBOL_VALUE_RAW_ADDRESS (best_symbol) <
967 MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[hi]))))
c906108c
SS
968 {
969 best_symbol = &msymbol[hi];
7cbd4a93 970 best_objfile = objfile;
c906108c
SS
971 }
972 }
973 }
974 }
7cbd4a93
TT
975
976 result.minsym = best_symbol;
977 result.objfile = best_objfile;
978 return result;
c906108c
SS
979}
980
b19686e0 981/* See minsyms.h. */
c906108c 982
7cbd4a93 983struct bound_minimal_symbol
fba45db2 984lookup_minimal_symbol_by_pc (CORE_ADDR pc)
c906108c 985{
20944a6e 986 return lookup_minimal_symbol_by_pc_section (pc, NULL);
c906108c 987}
0d5392b8 988
0875794a
JK
989/* Return non-zero iff PC is in an STT_GNU_IFUNC function resolver. */
990
ececd218 991bool
0875794a
JK
992in_gnu_ifunc_stub (CORE_ADDR pc)
993{
20944a6e
PA
994 bound_minimal_symbol msymbol
995 = lookup_minimal_symbol_by_pc_section (pc, NULL,
996 lookup_msym_prefer::GNU_IFUNC);
7cbd4a93 997 return msymbol.minsym && MSYMBOL_TYPE (msymbol.minsym) == mst_text_gnu_ifunc;
0875794a
JK
998}
999
07be84bf
JK
1000/* See elf_gnu_ifunc_resolve_addr for its real implementation. */
1001
1002static CORE_ADDR
1003stub_gnu_ifunc_resolve_addr (struct gdbarch *gdbarch, CORE_ADDR pc)
1004{
1005 error (_("GDB cannot resolve STT_GNU_IFUNC symbol at address %s without "
1006 "the ELF support compiled in."),
1007 paddress (gdbarch, pc));
1008}
1009
1010/* See elf_gnu_ifunc_resolve_name for its real implementation. */
1011
ececd218 1012static bool
07be84bf
JK
1013stub_gnu_ifunc_resolve_name (const char *function_name,
1014 CORE_ADDR *function_address_p)
1015{
1016 error (_("GDB cannot resolve STT_GNU_IFUNC symbol \"%s\" without "
1017 "the ELF support compiled in."),
1018 function_name);
1019}
1020
0e30163f
JK
1021/* See elf_gnu_ifunc_resolver_stop for its real implementation. */
1022
1023static void
1024stub_gnu_ifunc_resolver_stop (struct breakpoint *b)
1025{
1026 internal_error (__FILE__, __LINE__,
1027 _("elf_gnu_ifunc_resolver_stop cannot be reached."));
1028}
1029
1030/* See elf_gnu_ifunc_resolver_return_stop for its real implementation. */
1031
1032static void
1033stub_gnu_ifunc_resolver_return_stop (struct breakpoint *b)
1034{
1035 internal_error (__FILE__, __LINE__,
1036 _("elf_gnu_ifunc_resolver_return_stop cannot be reached."));
1037}
1038
07be84bf
JK
1039/* See elf_gnu_ifunc_fns for its real implementation. */
1040
1041static const struct gnu_ifunc_fns stub_gnu_ifunc_fns =
1042{
1043 stub_gnu_ifunc_resolve_addr,
1044 stub_gnu_ifunc_resolve_name,
0e30163f
JK
1045 stub_gnu_ifunc_resolver_stop,
1046 stub_gnu_ifunc_resolver_return_stop,
07be84bf
JK
1047};
1048
1049/* A placeholder for &elf_gnu_ifunc_fns. */
1050
1051const struct gnu_ifunc_fns *gnu_ifunc_fns_p = &stub_gnu_ifunc_fns;
1052
c906108c 1053\f
c5aa993b 1054
025bb325 1055/* Return leading symbol character for a BFD. If BFD is NULL,
c906108c
SS
1056 return the leading symbol character from the main objfile. */
1057
c906108c 1058static int
fba45db2 1059get_symbol_leading_char (bfd *abfd)
c906108c
SS
1060{
1061 if (abfd != NULL)
1062 return bfd_get_symbol_leading_char (abfd);
a42d7dd8
TT
1063 if (current_program_space->symfile_object_file != NULL)
1064 {
1065 objfile *objf = current_program_space->symfile_object_file;
1066 if (objf->obfd != NULL)
1067 return bfd_get_symbol_leading_char (objf->obfd);
1068 }
c906108c
SS
1069 return 0;
1070}
1071
b19686e0 1072/* See minsyms.h. */
c906108c 1073
d25e8719 1074minimal_symbol_reader::minimal_symbol_reader (struct objfile *obj)
8dddcb8f
TT
1075: m_objfile (obj),
1076 m_msym_bunch (NULL),
1077 /* Note that presetting m_msym_bunch_index to BUNCH_SIZE causes the
b19686e0
TT
1078 first call to save a minimal symbol to allocate the memory for
1079 the first bunch. */
8dddcb8f
TT
1080 m_msym_bunch_index (BUNCH_SIZE),
1081 m_msym_count (0)
1082{
c906108c
SS
1083}
1084
873a915e
TT
1085/* Discard the currently collected minimal symbols, if any. If we wish
1086 to save them for later use, we must have already copied them somewhere
79e7ae11 1087 else before calling this function. */
873a915e
TT
1088
1089minimal_symbol_reader::~minimal_symbol_reader ()
1090{
1091 struct msym_bunch *next;
1092
8dddcb8f 1093 while (m_msym_bunch != NULL)
873a915e 1094 {
8dddcb8f
TT
1095 next = m_msym_bunch->next;
1096 xfree (m_msym_bunch);
1097 m_msym_bunch = next;
873a915e
TT
1098 }
1099}
1100
b19686e0
TT
1101/* See minsyms.h. */
1102
c906108c 1103void
8dddcb8f 1104minimal_symbol_reader::record (const char *name, CORE_ADDR address,
ce6c454e 1105 enum minimal_symbol_type ms_type)
c906108c
SS
1106{
1107 int section;
1108
1109 switch (ms_type)
1110 {
1111 case mst_text:
0875794a 1112 case mst_text_gnu_ifunc:
c906108c
SS
1113 case mst_file_text:
1114 case mst_solib_trampoline:
8dddcb8f 1115 section = SECT_OFF_TEXT (m_objfile);
c906108c
SS
1116 break;
1117 case mst_data:
f50776aa 1118 case mst_data_gnu_ifunc:
c906108c 1119 case mst_file_data:
8dddcb8f 1120 section = SECT_OFF_DATA (m_objfile);
c906108c
SS
1121 break;
1122 case mst_bss:
1123 case mst_file_bss:
8dddcb8f 1124 section = SECT_OFF_BSS (m_objfile);
c906108c
SS
1125 break;
1126 default:
1127 section = -1;
1128 }
1129
8dddcb8f 1130 record_with_info (name, address, ms_type, section);
c906108c
SS
1131}
1132
e08b849e
SM
1133/* Convert an enumerator of type minimal_symbol_type to its string
1134 representation. */
1135
1136static const char *
1137mst_str (minimal_symbol_type t)
1138{
1139#define MST_TO_STR(x) case x: return #x;
1140 switch (t)
1141 {
1142 MST_TO_STR (mst_unknown);
1143 MST_TO_STR (mst_text);
1144 MST_TO_STR (mst_text_gnu_ifunc);
1145 MST_TO_STR (mst_slot_got_plt);
1146 MST_TO_STR (mst_data);
1147 MST_TO_STR (mst_bss);
1148 MST_TO_STR (mst_abs);
1149 MST_TO_STR (mst_solib_trampoline);
1150 MST_TO_STR (mst_file_text);
1151 MST_TO_STR (mst_file_data);
1152 MST_TO_STR (mst_file_bss);
1153
1154 default:
1155 return "mst_???";
1156 }
1157#undef MST_TO_STR
1158}
1159
b19686e0 1160/* See minsyms.h. */
c906108c
SS
1161
1162struct minimal_symbol *
31edb802 1163minimal_symbol_reader::record_full (gdb::string_view name,
ce6c454e
TT
1164 bool copy_name, CORE_ADDR address,
1165 enum minimal_symbol_type ms_type,
1166 int section)
c906108c 1167{
fe978cb0 1168 struct msym_bunch *newobj;
52f0bd74 1169 struct minimal_symbol *msymbol;
c906108c 1170
66337bb1
CV
1171 /* Don't put gcc_compiled, __gnu_compiled_cplus, and friends into
1172 the minimal symbols, because if there is also another symbol
1173 at the same address (e.g. the first function of the file),
1174 lookup_minimal_symbol_by_pc would have no way of getting the
1175 right one. */
1176 if (ms_type == mst_file_text && name[0] == 'g'
31edb802
CB
1177 && (name == GCC_COMPILED_FLAG_SYMBOL
1178 || name == GCC2_COMPILED_FLAG_SYMBOL))
66337bb1
CV
1179 return (NULL);
1180
1181 /* It's safe to strip the leading char here once, since the name
025bb325 1182 is also stored stripped in the minimal symbol table. */
8dddcb8f 1183 if (name[0] == get_symbol_leading_char (m_objfile->obfd))
31edb802 1184 name = name.substr (1);
66337bb1 1185
61012eef 1186 if (ms_type == mst_file_text && startswith (name, "__gnu_compiled"))
66337bb1 1187 return (NULL);
c906108c 1188
e08b849e 1189 if (symtab_create_debug >= 2)
31edb802 1190 printf_unfiltered ("Recording minsym: %-21s %18s %4d %.*s\n",
dda83cd7 1191 mst_str (ms_type), hex_string (address), section,
31edb802 1192 (int) name.size (), name.data ());
e08b849e 1193
8dddcb8f 1194 if (m_msym_bunch_index == BUNCH_SIZE)
c906108c 1195 {
fe978cb0 1196 newobj = XCNEW (struct msym_bunch);
8dddcb8f
TT
1197 m_msym_bunch_index = 0;
1198 newobj->next = m_msym_bunch;
1199 m_msym_bunch = newobj;
c906108c 1200 }
8dddcb8f 1201 msymbol = &m_msym_bunch->contents[m_msym_bunch_index];
d3ecddab
CB
1202 msymbol->set_language (language_auto,
1203 &m_objfile->per_bfd->storage_obstack);
5a79c107
TT
1204
1205 if (copy_name)
4d4eaa30
CB
1206 msymbol->m_name = obstack_strndup (&m_objfile->per_bfd->storage_obstack,
1207 name.data (), name.size ());
5a79c107 1208 else
4d4eaa30 1209 msymbol->m_name = name.data ();
2de7ced7 1210
40c1a007 1211 SET_MSYMBOL_VALUE_ADDRESS (msymbol, address);
a52d653e 1212 msymbol->set_section_index (section);
714835d5 1213
c906108c 1214 MSYMBOL_TYPE (msymbol) = ms_type;
9227b5eb 1215
34643a32
TT
1216 /* If we already read minimal symbols for this objfile, then don't
1217 ever allocate a new one. */
8dddcb8f 1218 if (!m_objfile->per_bfd->minsyms_read)
5f6cac40 1219 {
8dddcb8f
TT
1220 m_msym_bunch_index++;
1221 m_objfile->per_bfd->n_minsyms++;
5f6cac40 1222 }
8dddcb8f 1223 m_msym_count++;
c906108c
SS
1224 return msymbol;
1225}
1226
6fb08628
CB
1227/* Compare two minimal symbols by address and return true if FN1's address
1228 is less than FN2's, so that we sort into unsigned numeric order.
c906108c
SS
1229 Within groups with the same address, sort by name. */
1230
6fb08628
CB
1231static inline bool
1232minimal_symbol_is_less_than (const minimal_symbol &fn1,
1233 const minimal_symbol &fn2)
c906108c 1234{
6fb08628 1235 if (MSYMBOL_VALUE_RAW_ADDRESS (&fn1) < MSYMBOL_VALUE_RAW_ADDRESS (&fn2))
c906108c 1236 {
6fb08628 1237 return true; /* addr 1 is less than addr 2. */
c906108c 1238 }
6fb08628 1239 else if (MSYMBOL_VALUE_RAW_ADDRESS (&fn1) > MSYMBOL_VALUE_RAW_ADDRESS (&fn2))
c906108c 1240 {
6fb08628 1241 return false; /* addr 1 is greater than addr 2. */
c906108c 1242 }
c5aa993b
JM
1243 else
1244 /* addrs are equal: sort by name */
c906108c 1245 {
c9d95fa3
CB
1246 const char *name1 = fn1.linkage_name ();
1247 const char *name2 = fn2.linkage_name ();
c906108c
SS
1248
1249 if (name1 && name2) /* both have names */
6fb08628 1250 return strcmp (name1, name2) < 0;
c906108c 1251 else if (name2)
6fb08628 1252 return true; /* fn1 has no name, so it is "less". */
025bb325 1253 else if (name1) /* fn2 has no name, so it is "less". */
6fb08628 1254 return false;
c906108c 1255 else
6fb08628 1256 return false; /* Neither has a name, so they're equal. */
c906108c
SS
1257 }
1258}
1259
c906108c
SS
1260/* Compact duplicate entries out of a minimal symbol table by walking
1261 through the table and compacting out entries with duplicate addresses
1262 and matching names. Return the number of entries remaining.
1263
1264 On entry, the table resides between msymbol[0] and msymbol[mcount].
1265 On exit, it resides between msymbol[0] and msymbol[result_count].
1266
1267 When files contain multiple sources of symbol information, it is
1268 possible for the minimal symbol table to contain many duplicate entries.
1269 As an example, SVR4 systems use ELF formatted object files, which
1270 usually contain at least two different types of symbol tables (a
1271 standard ELF one and a smaller dynamic linking table), as well as
1272 DWARF debugging information for files compiled with -g.
1273
1274 Without compacting, the minimal symbol table for gdb itself contains
1275 over a 1000 duplicates, about a third of the total table size. Aside
1276 from the potential trap of not noticing that two successive entries
1277 identify the same location, this duplication impacts the time required
1278 to linearly scan the table, which is done in a number of places. So we
1279 just do one linear scan here and toss out the duplicates.
1280
c906108c
SS
1281 Since the different sources of information for each symbol may
1282 have different levels of "completeness", we may have duplicates
1283 that have one entry with type "mst_unknown" and the other with a
1284 known type. So if the one we are leaving alone has type mst_unknown,
1285 overwrite its type with the type from the one we are compacting out. */
1286
1287static int
fba45db2
KB
1288compact_minimal_symbols (struct minimal_symbol *msymbol, int mcount,
1289 struct objfile *objfile)
c906108c
SS
1290{
1291 struct minimal_symbol *copyfrom;
1292 struct minimal_symbol *copyto;
1293
1294 if (mcount > 0)
1295 {
1296 copyfrom = copyto = msymbol;
1297 while (copyfrom < msymbol + mcount - 1)
1298 {
77e371c0
TT
1299 if (MSYMBOL_VALUE_RAW_ADDRESS (copyfrom)
1300 == MSYMBOL_VALUE_RAW_ADDRESS ((copyfrom + 1))
a52d653e
AB
1301 && (copyfrom->section_index ()
1302 == (copyfrom + 1)->section_index ())
c9d95fa3
CB
1303 && strcmp (copyfrom->linkage_name (),
1304 (copyfrom + 1)->linkage_name ()) == 0)
c906108c 1305 {
c5aa993b 1306 if (MSYMBOL_TYPE ((copyfrom + 1)) == mst_unknown)
c906108c
SS
1307 {
1308 MSYMBOL_TYPE ((copyfrom + 1)) = MSYMBOL_TYPE (copyfrom);
1309 }
1310 copyfrom++;
1311 }
1312 else
afbb8d7a 1313 *copyto++ = *copyfrom++;
c906108c
SS
1314 }
1315 *copyto++ = *copyfrom++;
1316 mcount = copyto - msymbol;
1317 }
1318 return (mcount);
1319}
1320
808590ec
CB
1321static void
1322clear_minimal_symbol_hash_tables (struct objfile *objfile)
1323{
1324 for (size_t i = 0; i < MINIMAL_SYMBOL_HASH_SIZE; i++)
1325 {
1326 objfile->per_bfd->msymbol_hash[i] = 0;
1327 objfile->per_bfd->msymbol_demangled_hash[i] = 0;
1328 }
1329}
1330
e76b2246
CB
1331/* This struct is used to store values we compute for msymbols on the
1332 background threads but don't need to keep around long term. */
1333struct computed_hash_values
1334{
1335 /* Length of the linkage_name of the symbol. */
1336 size_t name_length;
1337 /* Hash code (using fast_hash) of the linkage_name. */
1338 hashval_t mangled_name_hash;
f29d7f6b
CB
1339 /* The msymbol_hash of the linkage_name. */
1340 unsigned int minsym_hash;
1341 /* The msymbol_hash of the search_name. */
1342 unsigned int minsym_demangled_hash;
e76b2246
CB
1343};
1344
afbb8d7a
KB
1345/* Build (or rebuild) the minimal symbol hash tables. This is necessary
1346 after compacting or sorting the table since the entries move around
025bb325 1347 thus causing the internal minimal_symbol pointers to become jumbled. */
afbb8d7a
KB
1348
1349static void
f29d7f6b
CB
1350build_minimal_symbol_hash_tables
1351 (struct objfile *objfile,
1352 const std::vector<computed_hash_values>& hash_values)
afbb8d7a
KB
1353{
1354 int i;
1355 struct minimal_symbol *msym;
1356
808590ec 1357 /* (Re)insert the actual entries. */
f29d7f6b
CB
1358 int mcount = objfile->per_bfd->minimal_symbol_count;
1359 for ((i = 0,
042d75e4 1360 msym = objfile->per_bfd->msymbols.get ());
f29d7f6b
CB
1361 i < mcount;
1362 i++, msym++)
afbb8d7a
KB
1363 {
1364 msym->hash_next = 0;
f29d7f6b
CB
1365 add_minsym_to_hash_table (msym, objfile->per_bfd->msymbol_hash,
1366 hash_values[i].minsym_hash);
afbb8d7a
KB
1367
1368 msym->demangled_hash_next = 0;
c9d95fa3 1369 if (msym->search_name () != msym->linkage_name ())
f29d7f6b
CB
1370 add_minsym_to_demangled_hash_table
1371 (msym, objfile, hash_values[i].minsym_demangled_hash);
afbb8d7a
KB
1372 }
1373}
1374
c906108c
SS
1375/* Add the minimal symbols in the existing bunches to the objfile's official
1376 minimal symbol table. In most cases there is no minimal symbol table yet
1377 for this objfile, and the existing bunches are used to create one. Once
1378 in a while (for shared libraries for example), we add symbols (e.g. common
79e7ae11 1379 symbols) to an existing objfile. */
c906108c
SS
1380
1381void
d25e8719 1382minimal_symbol_reader::install ()
c906108c 1383{
52f0bd74
AC
1384 int mcount;
1385 struct msym_bunch *bunch;
1386 struct minimal_symbol *msymbols;
c906108c 1387 int alloc_count;
c906108c 1388
d25e8719 1389 if (m_objfile->per_bfd->minsyms_read)
34643a32
TT
1390 return;
1391
8dddcb8f 1392 if (m_msym_count > 0)
c906108c 1393 {
45cfd468
DE
1394 if (symtab_create_debug)
1395 {
1396 fprintf_unfiltered (gdb_stdlog,
1397 "Installing %d minimal symbols of objfile %s.\n",
8dddcb8f 1398 m_msym_count, objfile_name (m_objfile));
45cfd468
DE
1399 }
1400
79e7ae11 1401 /* Allocate enough space, into which we will gather the bunches
dda83cd7
SM
1402 of new and existing minimal symbols, sort them, and then
1403 compact out the duplicate entries. Once we have a final
1404 table, we will give back the excess space. */
c906108c 1405
741d7538 1406 alloc_count = m_msym_count + m_objfile->per_bfd->minimal_symbol_count;
042d75e4
TT
1407 gdb::unique_xmalloc_ptr<minimal_symbol>
1408 msym_holder (XNEWVEC (minimal_symbol, alloc_count));
1409 msymbols = msym_holder.get ();
c906108c
SS
1410
1411 /* Copy in the existing minimal symbols, if there are any. */
1412
d25e8719 1413 if (m_objfile->per_bfd->minimal_symbol_count)
042d75e4
TT
1414 memcpy (msymbols, m_objfile->per_bfd->msymbols.get (),
1415 m_objfile->per_bfd->minimal_symbol_count
1416 * sizeof (struct minimal_symbol));
c906108c
SS
1417
1418 /* Walk through the list of minimal symbol bunches, adding each symbol
dda83cd7
SM
1419 to the new contiguous array of symbols. Note that we start with the
1420 current, possibly partially filled bunch (thus we use the current
1421 msym_bunch_index for the first bunch we copy over), and thereafter
1422 each bunch is full. */
c5aa993b 1423
d25e8719 1424 mcount = m_objfile->per_bfd->minimal_symbol_count;
c5aa993b 1425
8dddcb8f 1426 for (bunch = m_msym_bunch; bunch != NULL; bunch = bunch->next)
c906108c 1427 {
0de2420c
TT
1428 memcpy (&msymbols[mcount], &bunch->contents[0],
1429 m_msym_bunch_index * sizeof (struct minimal_symbol));
1430 mcount += m_msym_bunch_index;
8dddcb8f 1431 m_msym_bunch_index = BUNCH_SIZE;
c906108c
SS
1432 }
1433
1434 /* Sort the minimal symbols by address. */
c5aa993b 1435
6fb08628 1436 std::sort (msymbols, msymbols + mcount, minimal_symbol_is_less_than);
c5aa993b 1437
c906108c 1438 /* Compact out any duplicates, and free up whatever space we are
dda83cd7 1439 no longer using. */
c5aa993b 1440
d25e8719 1441 mcount = compact_minimal_symbols (msymbols, mcount, m_objfile);
042d75e4
TT
1442 msym_holder.reset (XRESIZEVEC (struct minimal_symbol,
1443 msym_holder.release (),
1444 mcount));
c906108c 1445
c906108c 1446 /* Attach the minimal symbol table to the specified objfile.
dda83cd7
SM
1447 The strings themselves are also located in the storage_obstack
1448 of this objfile. */
c906108c 1449
808590ec
CB
1450 if (m_objfile->per_bfd->minimal_symbol_count != 0)
1451 clear_minimal_symbol_hash_tables (m_objfile);
1452
d25e8719 1453 m_objfile->per_bfd->minimal_symbol_count = mcount;
042d75e4 1454 m_objfile->per_bfd->msymbols = std::move (msym_holder);
c906108c 1455
d55c9a68
TT
1456#if CXX_STD_THREAD
1457 /* Mutex that is used when modifying or accessing the demangled
1458 hash table. */
1459 std::mutex demangled_mutex;
1460#endif
1461
e76b2246
CB
1462 std::vector<computed_hash_values> hash_values (mcount);
1463
5a79c107 1464 msymbols = m_objfile->per_bfd->msymbols.get ();
d55c9a68
TT
1465 gdb::parallel_for_each
1466 (&msymbols[0], &msymbols[mcount],
1467 [&] (minimal_symbol *start, minimal_symbol *end)
1468 {
1469 for (minimal_symbol *msym = start; msym < end; ++msym)
1470 {
e76b2246 1471 size_t idx = msym - msymbols;
4d4eaa30 1472 hash_values[idx].name_length = strlen (msym->linkage_name ());
d55c9a68
TT
1473 if (!msym->name_set)
1474 {
4d4eaa30 1475 /* This will be freed later, by compute_and_set_names. */
d55c9a68 1476 char *demangled_name
4d4eaa30 1477 = symbol_find_demangled_name (msym, msym->linkage_name ());
ff985671
TT
1478 msym->set_demangled_name
1479 (demangled_name, &m_objfile->per_bfd->storage_obstack);
d55c9a68
TT
1480 msym->name_set = 1;
1481 }
62e77f56 1482 /* This mangled_name_hash computation has to be outside of
4d4eaa30 1483 the name_set check, or compute_and_set_names below will
62e77f56
CB
1484 be called with an invalid hash value. */
1485 hash_values[idx].mangled_name_hash
4d4eaa30
CB
1486 = fast_hash (msym->linkage_name (),
1487 hash_values[idx].name_length);
f29d7f6b
CB
1488 hash_values[idx].minsym_hash
1489 = msymbol_hash (msym->linkage_name ());
1490 /* We only use this hash code if the search name differs
1491 from the linkage name. See the code in
1492 build_minimal_symbol_hash_tables. */
1493 if (msym->search_name () != msym->linkage_name ())
1494 hash_values[idx].minsym_demangled_hash
c1b5c1eb 1495 = search_name_hash (msym->language (), msym->search_name ());
d55c9a68
TT
1496 }
1497 {
1498 /* To limit how long we hold the lock, we only acquire it here
dda83cd7 1499 and not while we demangle the names above. */
d55c9a68
TT
1500#if CXX_STD_THREAD
1501 std::lock_guard<std::mutex> guard (demangled_mutex);
1502#endif
1503 for (minimal_symbol *msym = start; msym < end; ++msym)
1504 {
e76b2246 1505 size_t idx = msym - msymbols;
4d4eaa30
CB
1506 msym->compute_and_set_names
1507 (gdb::string_view (msym->linkage_name (),
1508 hash_values[idx].name_length),
e76b2246
CB
1509 false,
1510 m_objfile->per_bfd,
1511 hash_values[idx].mangled_name_hash);
d55c9a68
TT
1512 }
1513 }
1514 });
5a79c107 1515
f29d7f6b 1516 build_minimal_symbol_hash_tables (m_objfile, hash_values);
c906108c
SS
1517 }
1518}
1519
c9630d9c
TT
1520/* Check if PC is in a shared library trampoline code stub.
1521 Return minimal symbol for the trampoline entry or NULL if PC is not
1522 in a trampoline code stub. */
c906108c 1523
c9630d9c 1524static struct minimal_symbol *
fba45db2 1525lookup_solib_trampoline_symbol_by_pc (CORE_ADDR pc)
c906108c 1526{
20944a6e
PA
1527 bound_minimal_symbol msymbol
1528 = lookup_minimal_symbol_by_pc_section (pc, NULL,
1529 lookup_msym_prefer::TRAMPOLINE);
c906108c 1530
7cbd4a93
TT
1531 if (msymbol.minsym != NULL
1532 && MSYMBOL_TYPE (msymbol.minsym) == mst_solib_trampoline)
1533 return msymbol.minsym;
c906108c
SS
1534 return NULL;
1535}
1536
1537/* If PC is in a shared library trampoline code stub, return the
1538 address of the `real' function belonging to the stub.
1539 Return 0 if PC is not in a trampoline code stub or if the real
1540 function is not found in the minimal symbol table.
1541
1542 We may fail to find the right function if a function with the
1543 same name is defined in more than one shared library, but this
025bb325 1544 is considered bad programming style. We could return 0 if we find
c906108c
SS
1545 a duplicate function in case this matters someday. */
1546
1547CORE_ADDR
52f729a7 1548find_solib_trampoline_target (struct frame_info *frame, CORE_ADDR pc)
c906108c 1549{
c906108c
SS
1550 struct minimal_symbol *tsymbol = lookup_solib_trampoline_symbol_by_pc (pc);
1551
1552 if (tsymbol != NULL)
1553 {
2030c079 1554 for (objfile *objfile : current_program_space->objfiles ())
5325b9bf 1555 {
7932255d 1556 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf
TT
1557 {
1558 /* Also handle minimal symbols pointing to function
1559 descriptors. */
1560 if ((MSYMBOL_TYPE (msymbol) == mst_text
1561 || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
1562 || MSYMBOL_TYPE (msymbol) == mst_data
1563 || MSYMBOL_TYPE (msymbol) == mst_data_gnu_ifunc)
c9d95fa3
CB
1564 && strcmp (msymbol->linkage_name (),
1565 tsymbol->linkage_name ()) == 0)
5325b9bf
TT
1566 {
1567 CORE_ADDR func;
b8d56208 1568
5325b9bf
TT
1569 /* Ignore data symbols that are not function
1570 descriptors. */
1571 if (msymbol_is_function (objfile, msymbol, &func))
1572 return func;
1573 }
1574 }
1575 }
c906108c
SS
1576 }
1577 return 0;
1578}
50e65b17
TT
1579
1580/* See minsyms.h. */
1581
1582CORE_ADDR
1583minimal_symbol_upper_bound (struct bound_minimal_symbol minsym)
1584{
50e65b17
TT
1585 short section;
1586 struct obj_section *obj_section;
1587 CORE_ADDR result;
20dc7e9b 1588 struct minimal_symbol *iter, *msymbol;
50e65b17
TT
1589
1590 gdb_assert (minsym.minsym != NULL);
1591
1592 /* If the minimal symbol has a size, use it. Otherwise use the
1593 lesser of the next minimal symbol in the same section, or the end
1594 of the section, as the end of the function. */
1595
1596 if (MSYMBOL_SIZE (minsym.minsym) != 0)
77e371c0 1597 return BMSYMBOL_VALUE_ADDRESS (minsym) + MSYMBOL_SIZE (minsym.minsym);
50e65b17
TT
1598
1599 /* Step over other symbols at this same address, and symbols in
1600 other sections, to find the next symbol in this section with a
1601 different address. */
1602
20dc7e9b
PW
1603 struct minimal_symbol *past_the_end
1604 = (minsym.objfile->per_bfd->msymbols.get ()
1605 + minsym.objfile->per_bfd->minimal_symbol_count);
50e65b17 1606 msymbol = minsym.minsym;
a52d653e 1607 section = msymbol->section_index ();
20dc7e9b 1608 for (iter = msymbol + 1; iter != past_the_end; ++iter)
50e65b17 1609 {
20dc7e9b 1610 if ((MSYMBOL_VALUE_RAW_ADDRESS (iter)
77e371c0 1611 != MSYMBOL_VALUE_RAW_ADDRESS (msymbol))
a52d653e 1612 && iter->section_index () == section)
50e65b17
TT
1613 break;
1614 }
1615
1db66e34 1616 obj_section = minsym.obj_section ();
20dc7e9b
PW
1617 if (iter != past_the_end
1618 && (MSYMBOL_VALUE_ADDRESS (minsym.objfile, iter)
0c1bcd23 1619 < obj_section->endaddr ()))
20dc7e9b 1620 result = MSYMBOL_VALUE_ADDRESS (minsym.objfile, iter);
50e65b17
TT
1621 else
1622 /* We got the start address from the last msymbol in the objfile.
1623 So the end address is the end of the section. */
0c1bcd23 1624 result = obj_section->endaddr ();
50e65b17
TT
1625
1626 return result;
1627}
This page took 1.997421 seconds and 4 git commands to generate.