2 * Copyright (c) 1983, 1993, 2001
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include "search_list.h"
38 * opcode of the `callf' instruction
43 * register for pc relative addressing
49 literal
, indexed
, reg
, regdef
, autodec
, autoinc
, autoincdef
,
50 bytedisp
, bytedispdef
, worddisp
, worddispdef
, longdisp
, longdispdef
,
51 immediate
, absolute
, byterel
, bytereldef
, wordrel
, wordreldef
,
54 typedef enum tahoe_opermodes tahoe_operandenum
;
57 * A symbol to be the child of indirect callf:
59 static Sym indirectchild
;
61 static tahoe_operandenum tahoe_operandmode
PARAMS ((unsigned char *));
62 static char *tahoe_operandname
PARAMS ((tahoe_operandenum
));
63 static long tahoe_operandlength
PARAMS ((unsigned char *));
64 static bfd_signed_vma tahoe_offset
PARAMS ((unsigned char *));
65 void tahoe_find_call
PARAMS ((Sym
*, bfd_vma
, bfd_vma
));
67 static tahoe_operandenum
68 tahoe_operandmode (modep
)
71 long usesreg
= *modep
& 0xf;
73 switch ((*modep
>> 4) & 0xf)
89 return usesreg
!= 0xe ? autoinc
: immediate
;
91 return usesreg
!= PC
? autoincdef
: absolute
;
93 return usesreg
!= PC
? bytedisp
: byterel
;
95 return usesreg
!= PC
? bytedispdef
: bytereldef
;
97 return usesreg
!= PC
? worddisp
: wordrel
;
99 return usesreg
!= PC
? worddispdef
: wordreldef
;
101 return usesreg
!= PC
? longdisp
: longrel
;
103 return usesreg
!= PC
? longdispdef
: longreldef
;
110 tahoe_operandname (mode
)
111 tahoe_operandenum mode
;
123 return "register deferred";
125 return "autodecrement";
127 return "autoincrement";
129 return "autoincrement deferred";
131 return "byte displacement";
133 return "byte displacement deferred";
135 return "byte relative";
137 return "byte relative deferred";
139 return "word displacement";
141 return "word displacement deferred";
143 return "word relative";
145 return "word relative deferred";
151 return "long displacement";
153 return "long displacement deferred";
155 return "long relative";
157 return "long relative deferred";
164 tahoe_operandlength (modep
)
165 unsigned char *modep
;
168 switch (tahoe_operandmode (modep
))
195 return 1 + tahoe_operandlength (modep
+ 1);
201 static bfd_signed_vma
203 unsigned char *modep
;
205 tahoe_operandenum mode
= tahoe_operandmode (modep
);
207 ++modep
; /* skip over the mode */
211 fprintf (stderr
, "[reladdr] not relative address\n");
214 return 1 + bfd_get_signed_8 (core_bfd
, modep
);
216 return 2 + bfd_get_signed_16 (core_bfd
, modep
);
218 return 4 + bfd_get_signed_32 (core_bfd
, modep
);
223 tahoe_find_call (parent
, p_lowpc
, p_highpc
)
228 unsigned char *instructp
;
231 tahoe_operandenum mode
;
232 tahoe_operandenum firstmode
;
234 static bfd_boolean inited
= FALSE
;
239 sym_init (&indirectchild
);
240 indirectchild
.cg
.prop
.fract
= 1.0;
241 indirectchild
.cg
.cyc
.head
= &indirectchild
;
244 if (core_text_space
== 0)
248 if (p_lowpc
< s_lowpc
)
252 if (p_highpc
> s_highpc
)
256 DBG (CALLDEBUG
, printf ("[findcall] %s: 0x%lx to 0x%lx\n",
257 parent
->name
, (unsigned long) p_lowpc
,
258 (unsigned long) p_highpc
));
259 for (pc
= p_lowpc
; pc
< p_highpc
; pc
+= length
)
262 instructp
= ((unsigned char *) core_text_space
263 + pc
- core_text_sect
->vma
);
264 if ((*instructp
& 0xff) == CALLF
)
267 * maybe a callf, better check it out.
268 * skip the count of the number of arguments.
270 DBG (CALLDEBUG
, printf ("[findcall]\t0x%lx:callf",
271 (unsigned long) pc
));
272 firstmode
= tahoe_operandmode (instructp
+ length
);
281 length
+= tahoe_operandlength (instructp
+ length
);
282 mode
= tahoe_operandmode (instructp
+ length
);
284 printf ("\tfirst operand is %s", tahoe_operandname (firstmode
));
285 printf ("\tsecond operand is %s\n", tahoe_operandname (mode
));
297 * indirect call: call through pointer
298 * either *d(r) as a parameter or local
299 * (r) as a return value
300 * *f as a global pointer
301 * [are there others that we miss?,
302 * e.g. arrays of pointers to functions???]
304 arc_add (parent
, &indirectchild
, (unsigned long) 0);
305 length
+= tahoe_operandlength (instructp
+ length
);
311 * regular pc relative addressing
312 * check that this is the address of
315 destpc
= pc
+ tahoe_offset (instructp
+ length
);
316 if (destpc
>= s_lowpc
&& destpc
<= s_highpc
)
318 child
= sym_lookup (&symtab
, destpc
);
320 printf ("[findcall]\tdestpc 0x%lx",
321 (unsigned long) destpc
);
322 printf (" child->name %s", child
->name
);
323 printf (" child->addr 0x%lx\n",
324 (unsigned long) child
->addr
);
326 if (child
->addr
== destpc
)
331 arc_add (parent
, child
, (unsigned long) 0);
332 length
+= tahoe_operandlength (instructp
+ length
);
339 * it looked like a callf,
340 * but it wasn't to anywhere.
346 * something funny going on.
348 DBG (CALLDEBUG
, printf ("[findcall]\tbut it's a botch\n"));