2000-07-24 22:59:04 +02:00
|
|
|
|
/* sym_ids.c
|
|
|
|
|
|
2005-03-03 13:05:13 +01:00
|
|
|
|
Copyright 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
|
2000-07-24 22:59:04 +02:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Binutils.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-09 08:55:25 +02:00
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
2000-07-24 22:59:04 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "libiberty.h"
|
2001-09-19 07:33:36 +02:00
|
|
|
|
#include "safe-ctype.h"
|
2002-01-31 13:56:08 +01:00
|
|
|
|
#include "gprof.h"
|
|
|
|
|
#include "search_list.h"
|
|
|
|
|
#include "source.h"
|
|
|
|
|
#include "symtab.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "cg_arcs.h"
|
|
|
|
|
#include "sym_ids.h"
|
|
|
|
|
|
2005-04-23 19:13:31 +02:00
|
|
|
|
static struct sym_id
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct sym_id *next;
|
2000-07-24 22:59:04 +02:00
|
|
|
|
char *spec; /* Parsing modifies this. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Table_Id which_table;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean has_right;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct match
|
|
|
|
|
{
|
2000-07-24 22:59:04 +02:00
|
|
|
|
int prev_index; /* Index of prev match. */
|
|
|
|
|
Sym *prev_match; /* Previous match. */
|
|
|
|
|
Sym *first_match; /* Chain of all matches. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Sym sym;
|
|
|
|
|
}
|
|
|
|
|
left, right;
|
|
|
|
|
}
|
|
|
|
|
*id_list;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void parse_spec
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
(char *, Sym *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void parse_id
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
(struct sym_id *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean match
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
(Sym *, Sym *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void extend_match
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
(struct match *, Sym *, Sym_Table *, bfd_boolean);
|
2002-02-01 09:24:16 +01:00
|
|
|
|
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Sym_Table syms[NUM_TABLES];
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2005-04-23 19:13:31 +02:00
|
|
|
|
static const char *table_name[] =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
"INCL_GRAPH", "EXCL_GRAPH",
|
|
|
|
|
"INCL_ARCS", "EXCL_ARCS",
|
|
|
|
|
"INCL_FLAT", "EXCL_FLAT",
|
|
|
|
|
"INCL_TIME", "EXCL_TIME",
|
|
|
|
|
"INCL_ANNO", "EXCL_ANNO",
|
|
|
|
|
"INCL_EXEC", "EXCL_EXEC"
|
|
|
|
|
};
|
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* This is the table in which we keep all the syms that match
|
|
|
|
|
the right half of an arc id. It is NOT sorted according
|
|
|
|
|
to the addresses, because it is accessed only through
|
|
|
|
|
the left half's CHILDREN pointers (so it's crucial not
|
|
|
|
|
to reorder this table once pointers into it exist). */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static Sym_Table right_ids;
|
|
|
|
|
|
|
|
|
|
static Source_File non_existent_file =
|
|
|
|
|
{
|
1999-07-11 22:06:47 +02:00
|
|
|
|
0, "<non-existent-file>", 0, 0, 0, NULL
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
sym_id_add (const char *spec, Table_Id which_table)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct sym_id *id;
|
|
|
|
|
int len = strlen (spec);
|
|
|
|
|
|
|
|
|
|
id = (struct sym_id *) xmalloc (sizeof (*id) + len + 1);
|
|
|
|
|
memset (id, 0, sizeof (*id));
|
|
|
|
|
|
|
|
|
|
id->spec = (char *) id + sizeof (*id);
|
|
|
|
|
strcpy (id->spec, spec);
|
|
|
|
|
id->which_table = which_table;
|
|
|
|
|
|
|
|
|
|
id->next = id_list;
|
|
|
|
|
id_list = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* A spec has the syntax FILENAME:(FUNCNAME|LINENUM). As a convenience
|
|
|
|
|
to the user, a spec without a colon is interpreted as:
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
|
|
|
|
(i) a FILENAME if it contains a dot
|
|
|
|
|
(ii) a FUNCNAME if it starts with a non-digit character
|
|
|
|
|
(iii) a LINENUM if it starts with a digit
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
A FUNCNAME containing a dot can be specified by :FUNCNAME, a
|
|
|
|
|
FILENAME not containing a dot can be specified by FILENAME. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
parse_spec (char *spec, Sym *sym)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *colon;
|
|
|
|
|
|
|
|
|
|
sym_init (sym);
|
|
|
|
|
colon = strrchr (spec, ':');
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (colon)
|
|
|
|
|
{
|
|
|
|
|
*colon = '\0';
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (colon > spec)
|
|
|
|
|
{
|
|
|
|
|
sym->file = source_file_lookup_name (spec);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!sym->file)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
sym->file = &non_existent_file;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
spec = colon + 1;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (strlen (spec))
|
|
|
|
|
{
|
2001-09-19 07:33:36 +02:00
|
|
|
|
if (ISDIGIT (spec[0]))
|
2000-07-24 22:59:04 +02:00
|
|
|
|
sym->line_num = atoi (spec);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-07-24 22:59:04 +02:00
|
|
|
|
sym->name = spec;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (strlen (spec))
|
|
|
|
|
{
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* No colon: spec is a filename if it contains a dot. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (strchr (spec, '.'))
|
|
|
|
|
{
|
|
|
|
|
sym->file = source_file_lookup_name (spec);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!sym->file)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
sym->file = &non_existent_file;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-09-19 07:33:36 +02:00
|
|
|
|
else if (ISDIGIT (*spec))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
sym->line_num = atoi (spec);
|
|
|
|
|
}
|
|
|
|
|
else if (strlen (spec))
|
|
|
|
|
{
|
|
|
|
|
sym->name = spec;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* A symbol id has the syntax SPEC[/SPEC], where SPEC is is defined
|
|
|
|
|
by parse_spec(). */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
parse_id (struct sym_id *id)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *slash;
|
|
|
|
|
|
|
|
|
|
DBG (IDDEBUG, printf ("[parse_id] %s -> ", id->spec));
|
|
|
|
|
|
|
|
|
|
slash = strchr (id->spec, '/');
|
|
|
|
|
if (slash)
|
|
|
|
|
{
|
|
|
|
|
parse_spec (slash + 1, &id->right.sym);
|
|
|
|
|
*slash = '\0';
|
2002-11-30 09:39:46 +01:00
|
|
|
|
id->has_right = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
parse_spec (id->spec, &id->left.sym);
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
if (debug_level & IDDEBUG)
|
|
|
|
|
{
|
|
|
|
|
printf ("%s:", id->left.sym.file ? id->left.sym.file->name : "*");
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (id->left.sym.name)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
printf ("%s", id->left.sym.name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (id->left.sym.line_num)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
printf ("%d", id->left.sym.line_num);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-07-24 22:59:04 +02:00
|
|
|
|
printf ("*");
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (id->has_right)
|
|
|
|
|
{
|
|
|
|
|
printf ("/%s:",
|
|
|
|
|
id->right.sym.file ? id->right.sym.file->name : "*");
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (id->right.sym.name)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
printf ("%s", id->right.sym.name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (id->right.sym.line_num)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
printf ("%d", id->right.sym.line_num);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-07-24 22:59:04 +02:00
|
|
|
|
printf ("*");
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
printf ("\n");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Return TRUE iff PATTERN matches SYM. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
match (Sym *pattern, Sym *sym)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return (pattern->file ? pattern->file == sym->file : TRUE)
|
|
|
|
|
&& (pattern->line_num ? pattern->line_num == sym->line_num : TRUE)
|
2000-05-26 15:11:57 +02:00
|
|
|
|
&& (pattern->name
|
|
|
|
|
? strcmp (pattern->name,
|
|
|
|
|
sym->name+(discard_underscores && sym->name[0] == '_')) == 0
|
2002-11-30 09:39:46 +01:00
|
|
|
|
: TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
extend_match (struct match *m, Sym *sym, Sym_Table *tab, bfd_boolean second_pass)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (m->prev_match != sym - 1)
|
|
|
|
|
{
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Discontinuity: add new match to table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (second_pass)
|
|
|
|
|
{
|
|
|
|
|
tab->base[tab->len] = *sym;
|
|
|
|
|
m->prev_index = tab->len;
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Link match into match's chain. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
tab->base[tab->len].next = m->first_match;
|
|
|
|
|
m->first_match = &tab->base[tab->len];
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
++tab->len;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Extend match to include this symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (second_pass)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
tab->base[m->prev_index].end_addr = sym->end_addr;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
m->prev_match = sym;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Go through sym_id list produced by option processing and fill
|
|
|
|
|
in the various symbol tables indicating what symbols should
|
|
|
|
|
be displayed or suppressed for the various kinds of outputs.
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
This can potentially produce huge tables and in particulars
|
|
|
|
|
tons of arcs, but this happens only if the user makes silly
|
|
|
|
|
requests---you get what you ask for! */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
void
|
2002-02-01 09:24:16 +01:00
|
|
|
|
sym_id_parse ()
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
Sym *sym, *left, *right;
|
|
|
|
|
struct sym_id *id;
|
|
|
|
|
Sym_Table *tab;
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Convert symbol ids into Syms, so we can deal with them more easily. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (id = id_list; id; id = id->next)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
parse_id (id);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* First determine size of each table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (sym = symtab.base; sym < symtab.limit; ++sym)
|
|
|
|
|
{
|
|
|
|
|
for (id = id_list; id; id = id->next)
|
|
|
|
|
{
|
|
|
|
|
if (match (&id->left.sym, sym))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
extend_match (&id->left, sym, &syms[id->which_table], FALSE);
|
2000-07-24 22:59:04 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (id->has_right && match (&id->right.sym, sym))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
extend_match (&id->right, sym, &right_ids, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Create tables of appropriate size and reset lengths. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (tab = syms; tab < &syms[NUM_TABLES]; ++tab)
|
|
|
|
|
{
|
|
|
|
|
if (tab->len)
|
|
|
|
|
{
|
|
|
|
|
tab->base = (Sym *) xmalloc (tab->len * sizeof (Sym));
|
|
|
|
|
tab->limit = tab->base + tab->len;
|
|
|
|
|
tab->len = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (right_ids.len)
|
|
|
|
|
{
|
|
|
|
|
right_ids.base = (Sym *) xmalloc (right_ids.len * sizeof (Sym));
|
|
|
|
|
right_ids.limit = right_ids.base + right_ids.len;
|
|
|
|
|
right_ids.len = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Make a second pass through symtab, creating syms as necessary. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (sym = symtab.base; sym < symtab.limit; ++sym)
|
|
|
|
|
{
|
|
|
|
|
for (id = id_list; id; id = id->next)
|
|
|
|
|
{
|
|
|
|
|
if (match (&id->left.sym, sym))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
extend_match (&id->left, sym, &syms[id->which_table], TRUE);
|
2000-07-24 22:59:04 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (id->has_right && match (&id->right.sym, sym))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
extend_match (&id->right, sym, &right_ids, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Go through ids creating arcs as needed. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (id = id_list; id; id = id->next)
|
|
|
|
|
{
|
|
|
|
|
if (id->has_right)
|
|
|
|
|
{
|
|
|
|
|
for (left = id->left.first_match; left; left = left->next)
|
|
|
|
|
{
|
|
|
|
|
for (right = id->right.first_match; right; right = right->next)
|
|
|
|
|
{
|
|
|
|
|
DBG (IDDEBUG,
|
|
|
|
|
printf (
|
|
|
|
|
"[sym_id_parse]: arc %s:%s(%lx-%lx) -> %s:%s(%lx-%lx) to %s\n",
|
|
|
|
|
left->file ? left->file->name : "*",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
left->name ? left->name : "*",
|
|
|
|
|
(unsigned long) left->addr,
|
|
|
|
|
(unsigned long) left->end_addr,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
right->file ? right->file->name : "*",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
right->name ? right->name : "*",
|
|
|
|
|
(unsigned long) right->addr,
|
|
|
|
|
(unsigned long) right->end_addr,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
table_name[id->which_table]));
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arc_add (left, right, (unsigned long) 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Finally, we can sort the tables and we're done. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (tab = &syms[0]; tab < &syms[NUM_TABLES]; ++tab)
|
|
|
|
|
{
|
|
|
|
|
DBG (IDDEBUG, printf ("[sym_id_parse] syms[%s]:\n",
|
|
|
|
|
table_name[tab - &syms[0]]));
|
|
|
|
|
symtab_finalize (tab);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Symbol tables storing the FROM symbols of arcs do not necessarily
|
|
|
|
|
have distinct address ranges. For example, somebody might request
|
|
|
|
|
-k /_mcount to suppress any arcs into _mcount, while at the same
|
|
|
|
|
time requesting -k a/b. Fortunately, those symbol tables don't get
|
|
|
|
|
very big (the user has to type them!), so a linear search is probably
|
|
|
|
|
tolerable. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean
|
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c,
cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h,
gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h,
i386.c, mips.c, search_list.c, search_list.h, source.c, source.h,
sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c,
utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
2004-05-26 06:55:55 +02:00
|
|
|
|
sym_id_arc_is_present (Sym_Table *sym_tab, Sym *from, Sym *to)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
Sym *sym;
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
for (sym = sym_tab->base; sym < sym_tab->limit; ++sym)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (from->addr >= sym->addr && from->addr <= sym->end_addr
|
|
|
|
|
&& arc_lookup (sym, to))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|