]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gprof/corefile.c
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gprof / corefile.c
CommitLineData
ef368dac
NC
1/* corefile.c
2
d87bef3a 3 Copyright (C) 1999-2023 Free Software Foundation, Inc.
ef368dac
NC
4
5 This file is part of GNU Binutils.
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
651dbc76 9 the Free Software Foundation; either version 3 of the License, or
ef368dac
NC
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, write to the Free Software
44eb1801
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
ef368dac 21\f
252b5132 22#include "gprof.h"
ecba005f 23#include "libiberty.h"
aee9ba6f 24#include "filenames.h"
6d9c411a
AM
25#include "search_list.h"
26#include "source.h"
252b5132 27#include "symtab.h"
b3296dc5 28#include "hist.h"
6d9c411a 29#include "corefile.h"
3289fe0c 30#include "safe-ctype.h"
c6165913 31#include <limits.h> /* For UINT_MAX. */
252b5132
RH
32
33bfd *core_bfd;
9e972ca0
BE
34static int core_num_syms;
35static asymbol **core_syms;
252b5132 36asection *core_text_sect;
0e27a8f6 37void * core_text_space;
252b5132 38
9e972ca0 39static int min_insn_size;
252b5132
RH
40int offset_to_code;
41
42/* For mapping symbols to specific .o files during file ordering. */
0e27a8f6 43struct function_map * symbol_map;
252b5132
RH
44unsigned int symbol_map_count;
45
3e8f6abf
BE
46static void read_function_mappings (const char *);
47static int core_sym_class (asymbol *);
faa7a260 48static bool get_src_info
3e8f6abf 49 (bfd_vma, const char **, const char **, int *);
1355568a 50
3e8f6abf
BE
51extern void i386_find_call (Sym *, bfd_vma, bfd_vma);
52extern void alpha_find_call (Sym *, bfd_vma, bfd_vma);
53extern void vax_find_call (Sym *, bfd_vma, bfd_vma);
3e8f6abf
BE
54extern void sparc_find_call (Sym *, bfd_vma, bfd_vma);
55extern void mips_find_call (Sym *, bfd_vma, bfd_vma);
cd2ae971 56extern void aarch64_find_call (Sym *, bfd_vma, bfd_vma);
252b5132 57
74335607
BE
58static void
59parse_error (const char *filename)
60{
61 fprintf (stderr, _("%s: unable to parse mapping file %s.\n"), whoami, filename);
62 done (1);
63}
64
e7e981d6
NC
65/* Compare two function_map structs based on function name.
66 We want to sort in ascending order. */
67
68static int
69cmp_symbol_map (const void * l, const void * r)
70{
d165016d 71 return strcmp (((struct function_map *) l)->function_name,
e7e981d6
NC
72 ((struct function_map *) r)->function_name);
73}
74
38334d6d
NC
75#define BUFSIZE (1024)
76/* This is BUFSIZE - 1 as a string. Suitable for use in fprintf/sscanf format strings. */
77#define STR_BUFSIZE "1023"
78
252b5132 79static void
3e8f6abf 80read_function_mappings (const char *filename)
252b5132 81{
e7e981d6 82 FILE * file = fopen (filename, "r");
38334d6d 83 char dummy[BUFSIZE];
252b5132 84 int count = 0;
e7e981d6 85 unsigned int i;
252b5132
RH
86
87 if (!file)
88 {
89 fprintf (stderr, _("%s: could not open %s.\n"), whoami, filename);
90 done (1);
91 }
92
93 /* First parse the mapping file so we know how big we need to
94 make our tables. We also do some sanity checks at this
95 time. */
96 while (!feof (file))
97 {
98 int matches;
99
38334d6d 100 matches = fscanf (file, "%" STR_BUFSIZE "[^\n:]", dummy);
252b5132 101 if (!matches)
74335607 102 parse_error (filename);
252b5132
RH
103
104 /* Just skip messages about files with no symbols. */
105 if (!strncmp (dummy, "No symbols in ", 14))
106 {
74335607
BE
107 matches = fscanf (file, "\n");
108 if (matches == EOF)
109 parse_error (filename);
252b5132
RH
110 continue;
111 }
112
113 /* Don't care what else is on this line at this point. */
38334d6d 114 matches = fscanf (file, "%" STR_BUFSIZE "[^\n]\n", dummy);
74335607
BE
115 if (!matches)
116 parse_error (filename);
252b5132
RH
117 count++;
118 }
119
120 /* Now we know how big we need to make our table. */
121 symbol_map = ((struct function_map *)
122 xmalloc (count * sizeof (struct function_map)));
123
124 /* Rewind the input file so we can read it again. */
125 rewind (file);
126
127 /* Read each entry and put it into the table. */
128 count = 0;
129 while (!feof (file))
130 {
131 int matches;
132 char *tmp;
133
38334d6d 134 matches = fscanf (file, "%" STR_BUFSIZE "[^\n:]", dummy);
252b5132 135 if (!matches)
74335607 136 parse_error (filename);
252b5132
RH
137
138 /* Just skip messages about files with no symbols. */
139 if (!strncmp (dummy, "No symbols in ", 14))
140 {
74335607
BE
141 matches = fscanf (file, "\n");
142 if (matches == EOF)
143 parse_error (filename);
252b5132
RH
144 continue;
145 }
146
147 /* dummy has the filename, go ahead and copy it. */
1e9cc1c2 148 symbol_map[count].file_name = (char *) xmalloc (strlen (dummy) + 1);
252b5132
RH
149 strcpy (symbol_map[count].file_name, dummy);
150
151 /* Now we need the function name. */
38334d6d 152 matches = fscanf (file, "%" STR_BUFSIZE "[^\n]\n", dummy);
74335607
BE
153 if (!matches)
154 parse_error (filename);
252b5132 155 tmp = strrchr (dummy, ' ') + 1;
1e9cc1c2 156 symbol_map[count].function_name = (char *) xmalloc (strlen (tmp) + 1);
252b5132
RH
157 strcpy (symbol_map[count].function_name, tmp);
158 count++;
159 }
160
161 /* Record the size of the map table for future reference. */
162 symbol_map_count = count;
252b5132 163
e7e981d6 164 for (i = 0; i < symbol_map_count; ++i)
aee9ba6f
KT
165 if (i == 0
166 || filename_cmp (symbol_map[i].file_name, symbol_map[i - 1].file_name))
e7e981d6
NC
167 symbol_map[i].is_first = 1;
168
169 qsort (symbol_map, symbol_map_count, sizeof (struct function_map), cmp_symbol_map);
5af84f93
NC
170
171 fclose (file);
e7e981d6 172}
ef368dac 173
252b5132 174void
e7e981d6 175core_init (const char * aout_name)
252b5132 176{
37b1bfcd 177 int core_sym_bytes;
2f041bf7
AM
178 asymbol *synthsyms;
179 long synth_count;
180
1355568a 181 core_bfd = bfd_openr (aout_name, 0);
252b5132
RH
182
183 if (!core_bfd)
184 {
1355568a 185 perror (aout_name);
252b5132
RH
186 done (1);
187 }
188
9420801e
AM
189 core_bfd->flags |= BFD_DECOMPRESS;
190
252b5132
RH
191 if (!bfd_check_format (core_bfd, bfd_object))
192 {
11010f5a 193 fprintf (stderr, _("%s: %s: not in executable format\n"), whoami, aout_name);
252b5132
RH
194 done (1);
195 }
196
ef368dac 197 /* Get core's text section. */
252b5132
RH
198 core_text_sect = bfd_get_section_by_name (core_bfd, ".text");
199 if (!core_text_sect)
200 {
201 core_text_sect = bfd_get_section_by_name (core_bfd, "$CODE$");
202 if (!core_text_sect)
203 {
204 fprintf (stderr, _("%s: can't find .text section in %s\n"),
1355568a 205 whoami, aout_name);
252b5132
RH
206 done (1);
207 }
208 }
209
ef368dac 210 /* Read core's symbol table. */
252b5132 211
ef368dac 212 /* This will probably give us more than we need, but that's ok. */
37b1bfcd
BE
213 core_sym_bytes = bfd_get_symtab_upper_bound (core_bfd);
214 if (core_sym_bytes < 0)
252b5132 215 {
1355568a 216 fprintf (stderr, "%s: %s: %s\n", whoami, aout_name,
252b5132
RH
217 bfd_errmsg (bfd_get_error ()));
218 done (1);
219 }
220
37b1bfcd 221 core_syms = (asymbol **) xmalloc (core_sym_bytes);
252b5132 222 core_num_syms = bfd_canonicalize_symtab (core_bfd, core_syms);
0eee5820 223
252b5132
RH
224 if (core_num_syms < 0)
225 {
1355568a 226 fprintf (stderr, "%s: %s: %s\n", whoami, aout_name,
252b5132
RH
227 bfd_errmsg (bfd_get_error ()));
228 done (1);
229 }
230
2f041bf7
AM
231 synth_count = bfd_get_synthetic_symtab (core_bfd, core_num_syms, core_syms,
232 0, NULL, &synthsyms);
233 if (synth_count > 0)
234 {
235 asymbol **symp;
236 long new_size;
237 long i;
238
239 new_size = (core_num_syms + synth_count + 1) * sizeof (*core_syms);
1e9cc1c2 240 core_syms = (asymbol **) xrealloc (core_syms, new_size);
2f041bf7
AM
241 symp = core_syms + core_num_syms;
242 core_num_syms += synth_count;
243 for (i = 0; i < synth_count; i++)
244 *symp++ = synthsyms + i;
245 *symp = 0;
246 }
247
252b5132
RH
248 min_insn_size = 1;
249 offset_to_code = 0;
250
251 switch (bfd_get_arch (core_bfd))
252 {
253 case bfd_arch_vax:
252b5132
RH
254 offset_to_code = 2;
255 break;
256
257 case bfd_arch_alpha:
258 min_insn_size = 4;
259 break;
260
261 default:
262 break;
263 }
264
265 if (function_mapping_file)
266 read_function_mappings (function_mapping_file);
267}
268
ef368dac 269/* Read in the text space of an a.out file. */
252b5132 270
252b5132 271void
3e8f6abf 272core_get_text_space (bfd *cbfd)
252b5132 273{
fd361982 274 core_text_space = malloc (bfd_section_size (core_text_sect));
252b5132
RH
275
276 if (!core_text_space)
277 {
fdcf7d43 278 fprintf (stderr, _("%s: ran out room for %lu bytes of text space\n"),
fd361982 279 whoami, (unsigned long) bfd_section_size (core_text_sect));
252b5132
RH
280 done (1);
281 }
0eee5820 282
1355568a 283 if (!bfd_get_section_contents (cbfd, core_text_sect, core_text_space,
fd361982 284 0, bfd_section_size (core_text_sect)))
252b5132
RH
285 {
286 bfd_perror ("bfd_get_section_contents");
287 free (core_text_space);
288 core_text_space = 0;
289 }
0eee5820 290
252b5132 291 if (!core_text_space)
ef368dac 292 fprintf (stderr, _("%s: can't do -c\n"), whoami);
252b5132
RH
293}
294
295
296void
3e8f6abf 297find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
252b5132 298{
b3296dc5
VP
299 if (core_text_space == 0)
300 return;
301
302 hist_clip_symbol_address (&p_lowpc, &p_highpc);
303
252b5132
RH
304 switch (bfd_get_arch (core_bfd))
305 {
306 case bfd_arch_i386:
307 i386_find_call (parent, p_lowpc, p_highpc);
308 break;
309
310 case bfd_arch_alpha:
311 alpha_find_call (parent, p_lowpc, p_highpc);
312 break;
313
314 case bfd_arch_vax:
315 vax_find_call (parent, p_lowpc, p_highpc);
316 break;
317
318 case bfd_arch_sparc:
319 sparc_find_call (parent, p_lowpc, p_highpc);
320 break;
321
ec0806ec
JT
322 case bfd_arch_mips:
323 mips_find_call (parent, p_lowpc, p_highpc);
324 break;
325
cd2ae971
AM
326 case bfd_arch_aarch64:
327 aarch64_find_call (parent, p_lowpc, p_highpc);
328 break;
329
252b5132
RH
330 default:
331 fprintf (stderr, _("%s: -c not supported on architecture %s\n"),
332 whoami, bfd_printable_name(core_bfd));
333
334 /* Don't give the error more than once. */
faa7a260 335 ignore_direct_calls = false;
252b5132
RH
336 }
337}
338
ef368dac 339/* Return class of symbol SYM. The returned class can be any of:
0eee5820
AM
340 0 -> symbol is not interesting to us
341 'T' -> symbol is a global name
342 't' -> symbol is a local (static) name. */
ef368dac 343
252b5132 344static int
3e8f6abf 345core_sym_class (asymbol *sym)
252b5132
RH
346{
347 symbol_info syminfo;
348 const char *name;
349 char sym_prefix;
350 int i;
351
352 if (sym->section == NULL || (sym->flags & BSF_DEBUGGING) != 0)
ef368dac 353 return 0;
252b5132 354
ef368dac
NC
355 /* Must be a text symbol, and static text symbols
356 don't qualify if ignore_static_funcs set. */
252b5132
RH
357 if (ignore_static_funcs && (sym->flags & BSF_LOCAL))
358 {
359 DBG (AOUTDEBUG, printf ("[core_sym_class] %s: not a function\n",
360 sym->name));
361 return 0;
362 }
363
364 bfd_get_symbol_info (core_bfd, sym, &syminfo);
365 i = syminfo.type;
366
367 if (i == 'T')
ef368dac 368 return i; /* It's a global symbol. */
252b5132
RH
369
370 if (i == 'W')
ef368dac
NC
371 /* Treat weak symbols as text symbols. FIXME: a weak symbol may
372 also be a data symbol. */
373 return 'T';
252b5132
RH
374
375 if (i != 't')
376 {
ef368dac 377 /* Not a static text symbol. */
252b5132
RH
378 DBG (AOUTDEBUG, printf ("[core_sym_class] %s is of class %c\n",
379 sym->name, i));
380 return 0;
381 }
382
ef368dac 383 /* Do some more filtering on static function-names. */
252b5132 384 if (ignore_static_funcs)
ef368dac
NC
385 return 0;
386
387 /* Can't zero-length name or funny characters in name, where
388 `funny' includes: `.' (.o file names) and `$' (Pascal labels). */
252b5132 389 if (!sym->name || sym->name[0] == '\0')
ef368dac 390 return 0;
252b5132
RH
391
392 for (name = sym->name; *name; ++name)
393 {
3289fe0c
NC
394 if (*name == '$')
395 return 0;
396
f36485f0 397 while (*name == '.')
183e4ed8 398 {
f36485f0
NC
399 /* Allow both nested subprograms (which end with ".NNN", where N is
400 a digit) and GCC cloned functions (which contain ".clone").
401 Allow for multiple iterations of both - apparently GCC can clone
402 clones and subprograms. */
403 int digit_seen = 0;
d165016d
AM
404#define CLONE_NAME ".clone."
405#define CLONE_NAME_LEN strlen (CLONE_NAME)
406#define CONSTPROP_NAME ".constprop."
407#define CONSTPROP_NAME_LEN strlen (CONSTPROP_NAME)
408
f36485f0
NC
409 if (strlen (name) > CLONE_NAME_LEN
410 && strncmp (name, CLONE_NAME, CLONE_NAME_LEN) == 0)
411 name += CLONE_NAME_LEN - 1;
183e4ed8 412
d165016d
AM
413 else if (strlen (name) > CONSTPROP_NAME_LEN
414 && strncmp (name, CONSTPROP_NAME, CONSTPROP_NAME_LEN) == 0)
415 name += CONSTPROP_NAME_LEN - 1;
416
183e4ed8 417 for (name++; *name; name++)
f36485f0
NC
418 if (digit_seen && *name == '.')
419 break;
420 else if (ISDIGIT (*name))
421 digit_seen = 1;
422 else
183e4ed8 423 return 0;
183e4ed8 424 }
ef368dac 425 }
0eee5820 426
ef368dac
NC
427 /* On systems where the C compiler adds an underscore to all
428 names, static names without underscores seem usually to be
429 labels in hand written assembler in the library. We don't want
430 these names. This is certainly necessary on a Sparc running
431 SunOS 4.1 (try profiling a program that does a lot of
432 division). I don't know whether it has harmful side effects on
433 other systems. Perhaps it should be made configurable. */
252b5132 434 sym_prefix = bfd_get_symbol_leading_char (core_bfd);
0eee5820 435
252b5132 436 if ((sym_prefix && sym_prefix != sym->name[0])
ef368dac 437 /* GCC may add special symbols to help gdb figure out the file
0eee5820 438 language. We want to ignore these, since sometimes they mask
ef368dac 439 the real function. (dj@ctron) */
252b5132
RH
440 || !strncmp (sym->name, "__gnu_compiled", 14)
441 || !strncmp (sym->name, "___gnu_compiled", 15))
442 {
443 return 0;
444 }
445
ef368dac
NC
446 /* If the object file supports marking of function symbols, then
447 we can zap anything that doesn't have BSF_FUNCTION set. */
252b5132
RH
448 if (ignore_non_functions && (sym->flags & BSF_FUNCTION) == 0)
449 return 0;
450
ef368dac 451 return 't'; /* It's a static text symbol. */
252b5132
RH
452}
453
ef368dac 454/* Get whatever source info we can get regarding address ADDR. */
252b5132 455
faa7a260
AM
456static bool
457get_src_info (bfd_vma addr, const char **filename, const char **name,
458 int *line_num)
252b5132
RH
459{
460 const char *fname = 0, *func_name = 0;
461 int l = 0;
462
463 if (bfd_find_nearest_line (core_bfd, core_text_sect, core_syms,
464 addr - core_text_sect->vma,
465 &fname, &func_name, (unsigned int *) &l)
466 && fname && func_name && l)
467 {
468 DBG (AOUTDEBUG, printf ("[get_src_info] 0x%lx -> %s:%d (%s)\n",
fdcf7d43 469 (unsigned long) addr, fname, l, func_name));
252b5132
RH
470 *filename = fname;
471 *name = func_name;
472 *line_num = l;
faa7a260 473 return true;
252b5132
RH
474 }
475 else
476 {
477 DBG (AOUTDEBUG, printf ("[get_src_info] no info for 0x%lx (%s:%d,%s)\n",
0af1713e
AM
478 (unsigned long) addr,
479 fname ? fname : "<unknown>", l,
252b5132 480 func_name ? func_name : "<unknown>"));
faa7a260 481 return false;
252b5132
RH
482 }
483}
484
38334d6d
NC
485static char buf[BUFSIZE];
486static char address[BUFSIZE];
487static char name[BUFSIZE];
488
0e27a8f6
NC
489/* Return number of symbols in a symbol-table file. */
490
00927233 491static unsigned int
0e27a8f6
NC
492num_of_syms_in (FILE * f)
493{
0e27a8f6 494 char type;
00927233 495 unsigned int num = 0;
d165016d 496
0e27a8f6
NC
497 while (!feof (f) && fgets (buf, BUFSIZE - 1, f))
498 {
38334d6d 499 if (sscanf (buf, "%" STR_BUFSIZE "s %c %" STR_BUFSIZE "s", address, &type, name) == 3)
0e27a8f6 500 if (type == 't' || type == 'T')
c6165913
NC
501 {
502 /* PR 20499 - prevent integer overflow computing argument to xmalloc. */
503 if (++num >= UINT_MAX / sizeof (Sym))
504 return -1U;
505 }
0e27a8f6
NC
506 }
507
0e27a8f6
NC
508 return num;
509}
510
511/* Read symbol table from a file. */
512
513void
514core_create_syms_from (const char * sym_table_file)
515{
0e27a8f6 516 char type;
0e27a8f6
NC
517 bfd_vma min_vma = ~(bfd_vma) 0;
518 bfd_vma max_vma = 0;
519 FILE * f;
520
521 f = fopen (sym_table_file, "r");
522 if (!f)
523 {
524 fprintf (stderr, _("%s: could not open %s.\n"), whoami, sym_table_file);
525 done (1);
526 }
527
528 /* Pass 1 - determine upper bound on number of function names. */
529 symtab.len = num_of_syms_in (f);
530
531 if (symtab.len == 0)
532 {
533 fprintf (stderr, _("%s: file `%s' has no symbols\n"), whoami, sym_table_file);
534 done (1);
535 }
c6165913 536 else if (symtab.len == -1U)
00927233 537 {
c6165913
NC
538 fprintf (stderr, _("%s: file `%s' has too many symbols\n"),
539 whoami, sym_table_file);
00927233
NC
540 done (1);
541 }
0e27a8f6
NC
542
543 symtab.base = (Sym *) xmalloc (symtab.len * sizeof (Sym));
544
545 /* Pass 2 - create symbols. */
546 symtab.limit = symtab.base;
547
548 if (fseek (f, 0, SEEK_SET) != 0)
549 {
550 perror (sym_table_file);
551 done (1);
552 }
553
1ad40a04 554 while (!feof (f) && fgets (buf, BUFSIZE - 1, f))
0e27a8f6 555 {
38334d6d
NC
556 if (sscanf (buf, "%" STR_BUFSIZE "s %c %" STR_BUFSIZE "s", address, &type, name) != 3)
557 continue;
558 if (type != 't' && type != 'T')
559 continue;
4ca0333f 560
0e27a8f6
NC
561 sym_init (symtab.limit);
562
b8281767
AM
563 uint64_t addr;
564 sscanf (address, "%" SCNx64, &addr);
565 symtab.limit->addr = addr;
0e27a8f6
NC
566
567 symtab.limit->name = (char *) xmalloc (strlen (name) + 1);
568 strcpy ((char *) symtab.limit->name, name);
569 symtab.limit->mapped = 0;
faa7a260
AM
570 symtab.limit->is_func = true;
571 symtab.limit->is_bb_head = true;
0e27a8f6
NC
572 symtab.limit->is_static = (type == 't');
573 min_vma = MIN (symtab.limit->addr, min_vma);
574 max_vma = MAX (symtab.limit->addr, max_vma);
575
576 ++symtab.limit;
577 }
578 fclose (f);
579
580 symtab.len = symtab.limit - symtab.base;
581 symtab_finalize (&symtab);
0e27a8f6
NC
582}
583
e7e981d6
NC
584static int
585search_mapped_symbol (const void * l, const void * r)
586{
587 return strcmp ((const char *) l, ((const struct function_map *) r)->function_name);
588}
589
ef368dac
NC
590/* Read in symbol table from core.
591 One symbol per function is entered. */
252b5132 592
252b5132 593void
e7e981d6 594core_create_function_syms (void)
252b5132 595{
e7e981d6 596 bfd_vma min_vma = ~ (bfd_vma) 0;
1355568a 597 bfd_vma max_vma = 0;
96d56e9f 598 int cxxclass;
e7e981d6 599 long i;
ca25b5ba 600 struct function_map * found = NULL;
02f2d833
AM
601 int core_has_func_syms = 0;
602
603 switch (core_bfd->xvec->flavour)
604 {
605 default:
606 break;
607 case bfd_target_coff_flavour:
608 case bfd_target_ecoff_flavour:
609 case bfd_target_xcoff_flavour:
610 case bfd_target_elf_flavour:
02f2d833
AM
611 case bfd_target_som_flavour:
612 core_has_func_syms = 1;
613 }
252b5132 614
ef368dac 615 /* Pass 1 - determine upper bound on number of function names. */
252b5132 616 symtab.len = 0;
0eee5820 617
252b5132
RH
618 for (i = 0; i < core_num_syms; ++i)
619 {
620 if (!core_sym_class (core_syms[i]))
ef368dac 621 continue;
252b5132 622
e7e981d6 623 /* Don't create a symtab entry for a function that has
252b5132
RH
624 a mapping to a file, unless it's the first function
625 in the file. */
ca25b5ba
TG
626 if (symbol_map_count != 0)
627 {
628 /* Note: some systems (SunOS 5.8) crash if bsearch base argument
629 is NULL. */
630 found = (struct function_map *) bsearch
631 (core_syms[i]->name, symbol_map, symbol_map_count,
632 sizeof (struct function_map), search_mapped_symbol);
633 }
e7e981d6 634 if (found == NULL || found->is_first)
0eee5820 635 ++symtab.len;
252b5132
RH
636 }
637
638 if (symtab.len == 0)
639 {
640 fprintf (stderr, _("%s: file `%s' has no symbols\n"), whoami, a_out_name);
641 done (1);
642 }
643
d401d98a 644 symtab.base = (Sym *) xmalloc (symtab.len * sizeof (Sym));
252b5132 645
ef368dac 646 /* Pass 2 - create symbols. */
252b5132 647 symtab.limit = symtab.base;
0eee5820 648
252b5132
RH
649 for (i = 0; i < core_num_syms; ++i)
650 {
c3fcc31e
AM
651 asection *sym_sec;
652
96d56e9f 653 cxxclass = core_sym_class (core_syms[i]);
0eee5820 654
96d56e9f 655 if (!cxxclass)
252b5132
RH
656 {
657 DBG (AOUTDEBUG,
658 printf ("[core_create_function_syms] rejecting: 0x%lx %s\n",
fdcf7d43
ILT
659 (unsigned long) core_syms[i]->value,
660 core_syms[i]->name));
252b5132
RH
661 continue;
662 }
0eee5820 663
ca25b5ba
TG
664 if (symbol_map_count != 0)
665 {
666 /* Note: some systems (SunOS 5.8) crash if bsearch base argument
667 is NULL. */
668 found = (struct function_map *) bsearch
669 (core_syms[i]->name, symbol_map, symbol_map_count,
670 sizeof (struct function_map), search_mapped_symbol);
671 }
e7e981d6 672 if (found && ! found->is_first)
252b5132
RH
673 continue;
674
675 sym_init (symtab.limit);
676
ef368dac 677 /* Symbol offsets are always section-relative. */
c3fcc31e
AM
678 sym_sec = core_syms[i]->section;
679 symtab.limit->addr = core_syms[i]->value;
680 if (sym_sec)
fd361982 681 symtab.limit->addr += bfd_section_vma (sym_sec);
0eee5820 682
e7e981d6 683 if (found)
252b5132 684 {
e7e981d6 685 symtab.limit->name = found->file_name;
252b5132
RH
686 symtab.limit->mapped = 1;
687 }
688 else
689 {
690 symtab.limit->name = core_syms[i]->name;
691 symtab.limit->mapped = 0;
692 }
693
ef368dac 694 /* Lookup filename and line number, if we can. */
252b5132 695 {
e7e981d6
NC
696 const char * filename;
697 const char * func_name;
0eee5820 698
e7e981d6
NC
699 if (get_src_info (symtab.limit->addr, & filename, & func_name,
700 & symtab.limit->line_num))
252b5132
RH
701 {
702 symtab.limit->file = source_file_lookup_path (filename);
703
704 /* FIXME: Checking __osf__ here does not work with a cross
0eee5820 705 gprof. */
252b5132 706#ifdef __osf__
ef368dac
NC
707 /* Suppress symbols that are not function names. This is
708 useful to suppress code-labels and aliases.
0eee5820 709
ef368dac
NC
710 This is known to be useful under DEC's OSF/1. Under SunOS 4.x,
711 labels do not appear in the symbol table info, so this isn't
712 necessary. */
252b5132
RH
713
714 if (strcmp (symtab.limit->name, func_name) != 0)
715 {
ef368dac
NC
716 /* The symbol's address maps to a different name, so
717 it can't be a function-entry point. This happens
718 for labels, for example. */
252b5132
RH
719 DBG (AOUTDEBUG,
720 printf ("[core_create_function_syms: rej %s (maps to %s)\n",
721 symtab.limit->name, func_name));
722 continue;
723 }
724#endif
725 }
726 }
727
02f2d833
AM
728 symtab.limit->is_func = (!core_has_func_syms
729 || (core_syms[i]->flags & BSF_FUNCTION) != 0);
faa7a260 730 symtab.limit->is_bb_head = true;
0eee5820 731
96d56e9f 732 if (cxxclass == 't')
faa7a260 733 symtab.limit->is_static = true;
252b5132 734
8e1a114b
DB
735 /* Keep track of the minimum and maximum vma addresses used by all
736 symbols. When computing the max_vma, use the ending address of the
737 section containing the symbol, if available. */
252b5132 738 min_vma = MIN (symtab.limit->addr, min_vma);
c3fcc31e 739 if (sym_sec)
fd361982
AM
740 max_vma = MAX (bfd_section_vma (sym_sec)
741 + bfd_section_size (sym_sec) - 1,
c3fcc31e 742 max_vma);
8e1a114b
DB
743 else
744 max_vma = MAX (symtab.limit->addr, max_vma);
252b5132 745
252b5132
RH
746 DBG (AOUTDEBUG, printf ("[core_create_function_syms] %ld %s 0x%lx\n",
747 (long) (symtab.limit - symtab.base),
fdcf7d43
ILT
748 symtab.limit->name,
749 (unsigned long) symtab.limit->addr));
252b5132
RH
750 ++symtab.limit;
751 }
752
252b5132
RH
753 symtab.len = symtab.limit - symtab.base;
754 symtab_finalize (&symtab);
755}
756
ef368dac
NC
757/* Read in symbol table from core.
758 One symbol per line of source code is entered. */
252b5132 759
252b5132 760void
e7e981d6 761core_create_line_syms (void)
252b5132
RH
762{
763 char *prev_name, *prev_filename;
1355568a
AM
764 unsigned int prev_name_len, prev_filename_len;
765 bfd_vma vma, min_vma = ~(bfd_vma) 0, max_vma = 0;
d401d98a 766 Sym *prev, dummy, *sym;
252b5132
RH
767 const char *filename;
768 int prev_line_num;
769 Sym_Table ltab;
bb02f434 770 bfd_vma vma_high;
0eee5820 771
ef368dac
NC
772 /* Create symbols for functions as usual. This is necessary in
773 cases where parts of a program were not compiled with -g. For
774 those parts we still want to get info at the function level. */
37b1bfcd 775 core_create_function_syms ();
252b5132 776
37b1bfcd 777 /* Pass 1: count the number of symbols. */
ef368dac
NC
778
779 /* To find all line information, walk through all possible
780 text-space addresses (one by one!) and get the debugging
781 info for each address. When the debugging info changes,
782 it is time to create a new symbol.
0eee5820 783
ef368dac 784 Of course, this is rather slow and it would be better if
37b1bfcd 785 BFD would provide an iterator for enumerating all line infos. */
13acb58d
AM
786 prev_name_len = 1024;
787 prev_filename_len = 1024;
1e9cc1c2
NC
788 prev_name = (char *) xmalloc (prev_name_len);
789 prev_filename = (char *) xmalloc (prev_filename_len);
252b5132
RH
790 ltab.len = 0;
791 prev_line_num = 0;
0eee5820 792
fd361982 793 vma_high = core_text_sect->vma + bfd_section_size (core_text_sect);
37b1bfcd 794 for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
252b5132 795 {
1355568a 796 unsigned int len;
252b5132 797
252b5132
RH
798 if (!get_src_info (vma, &filename, &dummy.name, &dummy.line_num)
799 || (prev_line_num == dummy.line_num
800 && prev_name != NULL
801 && strcmp (prev_name, dummy.name) == 0
aee9ba6f 802 && filename_cmp (prev_filename, filename) == 0))
ef368dac 803 continue;
252b5132
RH
804
805 ++ltab.len;
806 prev_line_num = dummy.line_num;
807
808 len = strlen (dummy.name);
809 if (len >= prev_name_len)
810 {
811 prev_name_len = len + 1024;
812 free (prev_name);
1e9cc1c2 813 prev_name = (char *) xmalloc (prev_name_len);
252b5132 814 }
0eee5820 815
252b5132 816 strcpy (prev_name, dummy.name);
252b5132 817 len = strlen (filename);
0eee5820 818
252b5132
RH
819 if (len >= prev_filename_len)
820 {
821 prev_filename_len = len + 1024;
822 free (prev_filename);
1e9cc1c2 823 prev_filename = (char *) xmalloc (prev_filename_len);
252b5132 824 }
0eee5820 825
252b5132
RH
826 strcpy (prev_filename, filename);
827
828 min_vma = MIN (vma, min_vma);
829 max_vma = MAX (vma, max_vma);
830 }
831
832 free (prev_name);
833 free (prev_filename);
834
ef368dac 835 /* Make room for function symbols, too. */
252b5132
RH
836 ltab.len += symtab.len;
837 ltab.base = (Sym *) xmalloc (ltab.len * sizeof (Sym));
838 ltab.limit = ltab.base;
839
ef368dac 840 /* Pass 2 - create symbols. */
252b5132
RH
841
842 /* We now set is_static as we go along, rather than by running
843 through the symbol table at the end.
844
845 The old way called symtab_finalize before the is_static pass,
846 causing a problem since symtab_finalize uses is_static as part of
847 its address conflict resolution algorithm. Since global symbols
576a6e4d 848 were preferred over static symbols, and all line symbols were
252b5132
RH
849 global at that point, static function names that conflicted with
850 their own line numbers (static, but labeled as global) were
851 rejected in favor of the line num.
852
853 This was not the desired functionality. We always want to keep
854 our function symbols and discard any conflicting line symbols.
855 Perhaps symtab_finalize should be modified to make this
856 distinction as well, but the current fix works and the code is a
857 lot cleaner now. */
252b5132 858 prev = 0;
0eee5820 859
37b1bfcd 860 for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
252b5132
RH
861 {
862 sym_init (ltab.limit);
0eee5820 863
37b1bfcd 864 if (!get_src_info (vma, &filename, &ltab.limit->name, &ltab.limit->line_num)
252b5132
RH
865 || (prev && prev->line_num == ltab.limit->line_num
866 && strcmp (prev->name, ltab.limit->name) == 0
aee9ba6f 867 && filename_cmp (prev->file->name, filename) == 0))
ef368dac 868 continue;
252b5132 869
ef368dac 870 /* Make name pointer a malloc'ed string. */
252b5132
RH
871 ltab.limit->name = xstrdup (ltab.limit->name);
872 ltab.limit->file = source_file_lookup_path (filename);
873
37b1bfcd 874 ltab.limit->addr = vma;
252b5132
RH
875
876 /* Set is_static based on the enclosing function, using either:
0eee5820
AM
877 1) the previous symbol, if it's from the same function, or
878 2) a symtab lookup. */
252b5132
RH
879 if (prev && ltab.limit->file == prev->file &&
880 strcmp (ltab.limit->name, prev->name) == 0)
881 {
882 ltab.limit->is_static = prev->is_static;
883 }
884 else
885 {
886 sym = sym_lookup(&symtab, ltab.limit->addr);
d401d98a
AM
887 if (sym)
888 ltab.limit->is_static = sym->is_static;
252b5132
RH
889 }
890
891 prev = ltab.limit;
892
4a607dcc
ILT
893 DBG (AOUTDEBUG, printf ("[core_create_line_syms] %lu %s 0x%lx\n",
894 (unsigned long) (ltab.limit - ltab.base),
895 ltab.limit->name,
fdcf7d43 896 (unsigned long) ltab.limit->addr));
252b5132
RH
897 ++ltab.limit;
898 }
899
ef368dac 900 /* Copy in function symbols. */
252b5132
RH
901 memcpy (ltab.limit, symtab.base, symtab.len * sizeof (Sym));
902 ltab.limit += symtab.len;
903
904 if ((unsigned int) (ltab.limit - ltab.base) != ltab.len)
905 {
906 fprintf (stderr,
907 _("%s: somebody miscounted: ltab.len=%d instead of %ld\n"),
908 whoami, ltab.len, (long) (ltab.limit - ltab.base));
909 done (1);
910 }
911
ef368dac 912 /* Finalize ltab and make it symbol table. */
252b5132
RH
913 symtab_finalize (&ltab);
914 free (symtab.base);
915 symtab = ltab;
252b5132 916}