2002-01-26 18:19:35 +01:00
|
|
|
/*
|
2002-07-30 11:07:00 +02:00
|
|
|
* Copyright (c) 1983, 1993, 1998
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2002-01-26 18:19:35 +01:00
|
|
|
*
|
2002-07-30 11:07:00 +02:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2002-01-26 18:19:35 +01:00
|
|
|
*/
|
|
|
|
#include "gprof.h"
|
2002-01-31 13:56:08 +01:00
|
|
|
#include "search_list.h"
|
|
|
|
#include "source.h"
|
|
|
|
#include "symtab.h"
|
2002-01-26 18:19:35 +01:00
|
|
|
#include "cg_arcs.h"
|
|
|
|
#include "corefile.h"
|
|
|
|
#include "hist.h"
|
|
|
|
|
|
|
|
static Sym indirect_child;
|
|
|
|
|
* 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
|
|
|
void mips_find_call (Sym *, bfd_vma, bfd_vma);
|
2002-01-26 18:19:35 +01: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
|
|
|
mips_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
|
2002-01-26 18:19:35 +01:00
|
|
|
{
|
|
|
|
bfd_vma pc, dest_pc;
|
|
|
|
unsigned int op;
|
|
|
|
int offset;
|
|
|
|
Sym *child;
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean inited = FALSE;
|
2002-01-26 18:19:35 +01:00
|
|
|
|
|
|
|
if (!inited)
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
inited = TRUE;
|
2002-01-26 18:19:35 +01:00
|
|
|
sym_init (&indirect_child);
|
|
|
|
indirect_child.name = _("<indirect child>");
|
|
|
|
indirect_child.cg.prop.fract = 1.0;
|
|
|
|
indirect_child.cg.cyc.head = &indirect_child;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG (CALLDEBUG, printf (_("[find_call] %s: 0x%lx to 0x%lx\n"),
|
|
|
|
parent->name, (unsigned long) p_lowpc,
|
|
|
|
(unsigned long) p_highpc));
|
|
|
|
for (pc = p_lowpc; pc < p_highpc; pc += 4)
|
|
|
|
{
|
* hist.h (struct histogram)
(histograms, num_histograms): New.
* hist.c (find_histogram, find_histogram_for_pc)
(read_histogram_header): New.
(s_lowpc, s_highpc, lowpc, highpc, hist_num_bins)
(hist_sample): Remove.
(hist_read_rec): Use the above, and handle multiple
histogram records with disjoint address ranges.
(hist_write_hist): Support several histogram records.
(scale_and_align_entries): Adjust for multiple histograms.
(hist_assign_samples_1): New.
(hist_assign_samples): Use the above.
(hist_clip_symbol_address): New.
* hist.h (hist_check_address)
(hist_clip_symbol_address): Declare.
* gmon_io.c (gmon_out_read, gmon_out_write): Adjust handling
of legacy format for multiple histogram changes.
* corefile.c (find_call): Check for core_text_space and
clip symbol address range here.
* vax.c (vax_find_call): Don't check for
core_text_space, or clip the symbol's address range here.
Use hist_check_address to check call's target address.
* sparc.c: Likewise.
* tahoe.c: Likewise.
* i386.c: Likewise.
* mips.c: Likewise. Also use core_text_sect->vma as the base
address for code accesses, just like other machine-specific
routines do.
* gprof.texi: Adjust for the new logic.
2007-04-10 09:57:31 +02:00
|
|
|
op = bfd_get_32 (core_bfd, ((unsigned char *)core_text_space
|
|
|
|
+ pc - core_text_sect->vma));
|
2002-01-26 18:19:35 +01:00
|
|
|
if ((op & 0xfc000000) == 0x0c000000)
|
|
|
|
{
|
|
|
|
/* This is a "jal" instruction. Check that the destination
|
|
|
|
is the address of a function. */
|
|
|
|
DBG (CALLDEBUG,
|
|
|
|
printf (_("[find_call] 0x%lx: jal"), (unsigned long) pc));
|
|
|
|
offset = (op & 0x03ffffff) << 2;
|
2002-02-01 09:24:16 +01:00
|
|
|
dest_pc = (pc & ~(bfd_vma) 0xfffffff) | offset;
|
* hist.h (struct histogram)
(histograms, num_histograms): New.
* hist.c (find_histogram, find_histogram_for_pc)
(read_histogram_header): New.
(s_lowpc, s_highpc, lowpc, highpc, hist_num_bins)
(hist_sample): Remove.
(hist_read_rec): Use the above, and handle multiple
histogram records with disjoint address ranges.
(hist_write_hist): Support several histogram records.
(scale_and_align_entries): Adjust for multiple histograms.
(hist_assign_samples_1): New.
(hist_assign_samples): Use the above.
(hist_clip_symbol_address): New.
* hist.h (hist_check_address)
(hist_clip_symbol_address): Declare.
* gmon_io.c (gmon_out_read, gmon_out_write): Adjust handling
of legacy format for multiple histogram changes.
* corefile.c (find_call): Check for core_text_space and
clip symbol address range here.
* vax.c (vax_find_call): Don't check for
core_text_space, or clip the symbol's address range here.
Use hist_check_address to check call's target address.
* sparc.c: Likewise.
* tahoe.c: Likewise.
* i386.c: Likewise.
* mips.c: Likewise. Also use core_text_sect->vma as the base
address for code accesses, just like other machine-specific
routines do.
* gprof.texi: Adjust for the new logic.
2007-04-10 09:57:31 +02:00
|
|
|
if (hist_check_address (dest_pc))
|
2002-01-26 18:19:35 +01:00
|
|
|
{
|
|
|
|
child = sym_lookup (&symtab, dest_pc);
|
2009-02-12 13:47:39 +01:00
|
|
|
if (child)
|
2002-01-26 18:19:35 +01:00
|
|
|
{
|
2009-02-12 13:47:39 +01:00
|
|
|
DBG (CALLDEBUG,
|
|
|
|
printf (" 0x%lx\t; name=%s, addr=0x%lx",
|
|
|
|
(unsigned long) dest_pc, child->name,
|
|
|
|
(unsigned long) child->addr));
|
|
|
|
if (child->addr == dest_pc)
|
|
|
|
{
|
|
|
|
DBG (CALLDEBUG, printf ("\n"));
|
|
|
|
/* a hit: */
|
|
|
|
arc_add (parent, child, (unsigned long) 0);
|
|
|
|
continue;
|
|
|
|
}
|
2002-01-26 18:19:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Something funny going on. */
|
|
|
|
DBG (CALLDEBUG, printf ("\tbut it's a botch\n"));
|
|
|
|
}
|
|
|
|
else if ((op & 0xfc00f83f) == 0x0000f809)
|
|
|
|
{
|
|
|
|
/* This is a "jalr" instruction (indirect call). */
|
|
|
|
DBG (CALLDEBUG,
|
|
|
|
printf (_("[find_call] 0x%lx: jalr\n"), (unsigned long) pc));
|
|
|
|
arc_add (parent, &indirect_child, (unsigned long) 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|