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