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