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