1999-05-03 09:29:11 +02:00
|
|
|
/*
|
2001-03-14 04:14:56 +01:00
|
|
|
* Copyright (c) 1983, 2001 Regents of the University of California.
|
1999-05-03 09:29:11 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that: (1) source distributions retain this entire copyright
|
|
|
|
* notice and comment, and (2) distributions including binaries display
|
|
|
|
* the following acknowledgement: ``This product includes software
|
|
|
|
* developed by the University of California, Berkeley and its contributors''
|
|
|
|
* in the documentation or other materials provided with the distribution
|
|
|
|
* and in all advertising materials mentioning features or use of this
|
|
|
|
* software. 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 ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
#include "gprof.h"
|
2002-01-31 13:56:08 +01:00
|
|
|
#include "search_list.h"
|
|
|
|
#include "source.h"
|
|
|
|
#include "symtab.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "cg_arcs.h"
|
|
|
|
#include "corefile.h"
|
|
|
|
#include "hist.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* opcode of the `callf' instruction
|
|
|
|
*/
|
|
|
|
#define CALLF 0xfe
|
|
|
|
|
|
|
|
/*
|
|
|
|
* register for pc relative addressing
|
|
|
|
*/
|
|
|
|
#define PC 0xf
|
|
|
|
|
|
|
|
enum tahoe_opermodes
|
|
|
|
{
|
|
|
|
literal, indexed, reg, regdef, autodec, autoinc, autoincdef,
|
|
|
|
bytedisp, bytedispdef, worddisp, worddispdef, longdisp, longdispdef,
|
|
|
|
immediate, absolute, byterel, bytereldef, wordrel, wordreldef,
|
|
|
|
longrel, longreldef
|
|
|
|
};
|
|
|
|
typedef enum tahoe_opermodes tahoe_operandenum;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A symbol to be the child of indirect callf:
|
|
|
|
*/
|
2002-01-27 03:43:52 +01:00
|
|
|
static Sym indirectchild;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-01-27 03:43:52 +01:00
|
|
|
static tahoe_operandenum tahoe_operandmode PARAMS ((unsigned char *));
|
|
|
|
static char *tahoe_operandname PARAMS ((tahoe_operandenum));
|
|
|
|
static long tahoe_operandlength PARAMS ((unsigned char *));
|
2002-01-31 13:56:08 +01:00
|
|
|
static bfd_signed_vma tahoe_offset PARAMS ((unsigned char *));
|
2001-08-09 16:57:42 +02:00
|
|
|
void tahoe_find_call PARAMS ((Sym *, bfd_vma, bfd_vma));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-01-27 03:43:52 +01:00
|
|
|
static tahoe_operandenum
|
1999-05-03 09:29:11 +02:00
|
|
|
tahoe_operandmode (modep)
|
|
|
|
unsigned char *modep;
|
|
|
|
{
|
2002-01-31 13:56:08 +01:00
|
|
|
long usesreg = *modep & 0xf;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-01-31 13:56:08 +01:00
|
|
|
switch ((*modep >> 4) & 0xf)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
return literal;
|
|
|
|
case 4:
|
|
|
|
return indexed;
|
|
|
|
case 5:
|
|
|
|
return reg;
|
|
|
|
case 6:
|
|
|
|
return regdef;
|
|
|
|
case 7:
|
|
|
|
return autodec;
|
|
|
|
case 8:
|
|
|
|
return usesreg != 0xe ? autoinc : immediate;
|
|
|
|
case 9:
|
|
|
|
return usesreg != PC ? autoincdef : absolute;
|
|
|
|
case 10:
|
|
|
|
return usesreg != PC ? bytedisp : byterel;
|
|
|
|
case 11:
|
|
|
|
return usesreg != PC ? bytedispdef : bytereldef;
|
|
|
|
case 12:
|
|
|
|
return usesreg != PC ? worddisp : wordrel;
|
|
|
|
case 13:
|
|
|
|
return usesreg != PC ? worddispdef : wordreldef;
|
|
|
|
case 14:
|
|
|
|
return usesreg != PC ? longdisp : longrel;
|
|
|
|
case 15:
|
|
|
|
return usesreg != PC ? longdispdef : longreldef;
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2002-01-27 03:43:52 +01:00
|
|
|
static char *
|
1999-05-03 09:29:11 +02:00
|
|
|
tahoe_operandname (mode)
|
|
|
|
tahoe_operandenum mode;
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case literal:
|
|
|
|
return "literal";
|
|
|
|
case indexed:
|
|
|
|
return "indexed";
|
|
|
|
case reg:
|
|
|
|
return "register";
|
|
|
|
case regdef:
|
|
|
|
return "register deferred";
|
|
|
|
case autodec:
|
|
|
|
return "autodecrement";
|
|
|
|
case autoinc:
|
|
|
|
return "autoincrement";
|
|
|
|
case autoincdef:
|
|
|
|
return "autoincrement deferred";
|
|
|
|
case bytedisp:
|
|
|
|
return "byte displacement";
|
|
|
|
case bytedispdef:
|
|
|
|
return "byte displacement deferred";
|
|
|
|
case byterel:
|
|
|
|
return "byte relative";
|
|
|
|
case bytereldef:
|
|
|
|
return "byte relative deferred";
|
|
|
|
case worddisp:
|
|
|
|
return "word displacement";
|
|
|
|
case worddispdef:
|
|
|
|
return "word displacement deferred";
|
|
|
|
case wordrel:
|
|
|
|
return "word relative";
|
|
|
|
case wordreldef:
|
|
|
|
return "word relative deferred";
|
|
|
|
case immediate:
|
|
|
|
return "immediate";
|
|
|
|
case absolute:
|
|
|
|
return "absolute";
|
|
|
|
case longdisp:
|
|
|
|
return "long displacement";
|
|
|
|
case longdispdef:
|
|
|
|
return "long displacement deferred";
|
|
|
|
case longrel:
|
|
|
|
return "long relative";
|
|
|
|
case longreldef:
|
|
|
|
return "long relative deferred";
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2002-01-27 03:43:52 +01:00
|
|
|
static long
|
1999-05-03 09:29:11 +02:00
|
|
|
tahoe_operandlength (modep)
|
|
|
|
unsigned char *modep;
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (tahoe_operandmode (modep))
|
|
|
|
{
|
|
|
|
case literal:
|
|
|
|
case reg:
|
|
|
|
case regdef:
|
|
|
|
case autodec:
|
|
|
|
case autoinc:
|
|
|
|
case autoincdef:
|
|
|
|
return 1;
|
|
|
|
case bytedisp:
|
|
|
|
case bytedispdef:
|
|
|
|
case byterel:
|
|
|
|
case bytereldef:
|
|
|
|
return 2;
|
|
|
|
case worddisp:
|
|
|
|
case worddispdef:
|
|
|
|
case wordrel:
|
|
|
|
case wordreldef:
|
|
|
|
return 3;
|
|
|
|
case immediate:
|
|
|
|
case absolute:
|
|
|
|
case longdisp:
|
|
|
|
case longdispdef:
|
|
|
|
case longrel:
|
|
|
|
case longreldef:
|
|
|
|
return 5;
|
|
|
|
case indexed:
|
|
|
|
return 1 + tahoe_operandlength (modep + 1);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2002-01-31 13:56:08 +01:00
|
|
|
static bfd_signed_vma
|
|
|
|
tahoe_offset (modep)
|
|
|
|
unsigned char *modep;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
tahoe_operandenum mode = tahoe_operandmode (modep);
|
|
|
|
|
2002-01-31 13:56:08 +01:00
|
|
|
++modep; /* skip over the mode */
|
1999-05-03 09:29:11 +02:00
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
fprintf (stderr, "[reladdr] not relative address\n");
|
2002-01-31 13:56:08 +01:00
|
|
|
return 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
case byterel:
|
2002-01-31 13:56:08 +01:00
|
|
|
return 1 + bfd_get_signed_8 (core_bfd, modep);
|
1999-05-03 09:29:11 +02:00
|
|
|
case wordrel:
|
2002-01-31 13:56:08 +01:00
|
|
|
return 2 + bfd_get_signed_16 (core_bfd, modep);
|
1999-05-03 09:29:11 +02:00
|
|
|
case longrel:
|
2002-01-31 13:56:08 +01:00
|
|
|
return 4 + bfd_get_signed_32 (core_bfd, modep);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tahoe_find_call (parent, p_lowpc, p_highpc)
|
|
|
|
Sym *parent;
|
|
|
|
bfd_vma p_lowpc;
|
|
|
|
bfd_vma p_highpc;
|
|
|
|
{
|
|
|
|
unsigned char *instructp;
|
|
|
|
long length;
|
|
|
|
Sym *child;
|
|
|
|
tahoe_operandenum mode;
|
|
|
|
tahoe_operandenum firstmode;
|
2002-01-31 13:56:08 +01:00
|
|
|
bfd_vma pc, destpc;
|
2002-02-01 02:18:06 +01:00
|
|
|
static boolean inited = false;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (!inited)
|
|
|
|
{
|
2002-02-01 02:18:06 +01:00
|
|
|
inited = true;
|
1999-05-03 09:29:11 +02:00
|
|
|
sym_init (&indirectchild);
|
|
|
|
indirectchild.cg.prop.fract = 1.0;
|
|
|
|
indirectchild.cg.cyc.head = &indirectchild;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (core_text_space == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (p_lowpc < s_lowpc)
|
|
|
|
{
|
|
|
|
p_lowpc = s_lowpc;
|
|
|
|
}
|
|
|
|
if (p_highpc > s_highpc)
|
|
|
|
{
|
|
|
|
p_highpc = s_highpc;
|
|
|
|
}
|
|
|
|
DBG (CALLDEBUG, printf ("[findcall] %s: 0x%lx to 0x%lx\n",
|
1999-07-01 00:38:30 +02:00
|
|
|
parent->name, (unsigned long) p_lowpc,
|
|
|
|
(unsigned long) p_highpc));
|
2002-01-31 13:56:08 +01:00
|
|
|
for (pc = p_lowpc; pc < p_highpc; pc += length)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
length = 1;
|
2002-01-31 13:56:08 +01:00
|
|
|
instructp = ((unsigned char *) core_text_space
|
|
|
|
+ pc - core_text_sect->vma);
|
|
|
|
if ((*instructp & 0xff) == CALLF)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* maybe a callf, better check it out.
|
|
|
|
* skip the count of the number of arguments.
|
|
|
|
*/
|
2000-02-22 08:25:46 +01:00
|
|
|
DBG (CALLDEBUG, printf ("[findcall]\t0x%lx:callf",
|
2002-01-31 13:56:08 +01:00
|
|
|
(unsigned long) pc));
|
1999-05-03 09:29:11 +02:00
|
|
|
firstmode = tahoe_operandmode (instructp + length);
|
|
|
|
switch (firstmode)
|
|
|
|
{
|
|
|
|
case literal:
|
|
|
|
case immediate:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto botched;
|
|
|
|
}
|
|
|
|
length += tahoe_operandlength (instructp + length);
|
|
|
|
mode = tahoe_operandmode (instructp + length);
|
|
|
|
DBG (CALLDEBUG,
|
|
|
|
printf ("\tfirst operand is %s", tahoe_operandname (firstmode));
|
|
|
|
printf ("\tsecond operand is %s\n", tahoe_operandname (mode));
|
|
|
|
);
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case regdef:
|
|
|
|
case bytedispdef:
|
|
|
|
case worddispdef:
|
|
|
|
case longdispdef:
|
|
|
|
case bytereldef:
|
|
|
|
case wordreldef:
|
|
|
|
case longreldef:
|
|
|
|
/*
|
|
|
|
* indirect call: call through pointer
|
|
|
|
* either *d(r) as a parameter or local
|
|
|
|
* (r) as a return value
|
|
|
|
* *f as a global pointer
|
|
|
|
* [are there others that we miss?,
|
|
|
|
* e.g. arrays of pointers to functions???]
|
|
|
|
*/
|
|
|
|
arc_add (parent, &indirectchild, (unsigned long) 0);
|
|
|
|
length += tahoe_operandlength (instructp + length);
|
|
|
|
continue;
|
|
|
|
case byterel:
|
|
|
|
case wordrel:
|
|
|
|
case longrel:
|
|
|
|
/*
|
|
|
|
* regular pc relative addressing
|
2001-03-14 04:14:56 +01:00
|
|
|
* check that this is the address of
|
1999-05-03 09:29:11 +02:00
|
|
|
* a function.
|
|
|
|
*/
|
2002-01-31 13:56:08 +01:00
|
|
|
destpc = pc + tahoe_offset (instructp + length);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (destpc >= s_lowpc && destpc <= s_highpc)
|
|
|
|
{
|
|
|
|
child = sym_lookup (&symtab, destpc);
|
|
|
|
DBG (CALLDEBUG,
|
1999-07-01 00:38:30 +02:00
|
|
|
printf ("[findcall]\tdestpc 0x%lx",
|
|
|
|
(unsigned long) destpc);
|
1999-05-03 09:29:11 +02:00
|
|
|
printf (" child->name %s", child->name);
|
1999-07-01 00:38:30 +02:00
|
|
|
printf (" child->addr 0x%lx\n",
|
|
|
|
(unsigned long) child->addr);
|
1999-05-03 09:29:11 +02:00
|
|
|
);
|
|
|
|
if (child->addr == destpc)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* a hit
|
|
|
|
*/
|
|
|
|
arc_add (parent, child, (unsigned long) 0);
|
|
|
|
length += tahoe_operandlength (instructp + length);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
goto botched;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* else:
|
|
|
|
* it looked like a callf,
|
|
|
|
* but it wasn't to anywhere.
|
|
|
|
*/
|
|
|
|
goto botched;
|
|
|
|
default:
|
|
|
|
botched:
|
|
|
|
/*
|
|
|
|
* something funny going on.
|
|
|
|
*/
|
|
|
|
DBG (CALLDEBUG, printf ("[findcall]\tbut it's a botch\n"));
|
|
|
|
length = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|