summaryrefslogtreecommitdiff
path: root/gdb/m88k-tdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/m88k-tdep.c')
-rw-r--r--gdb/m88k-tdep.c332
1 files changed, 172 insertions, 160 deletions
diff --git a/gdb/m88k-tdep.c b/gdb/m88k-tdep.c
index 2ac433526c7..4ca3d68c3e9 100644
--- a/gdb/m88k-tdep.c
+++ b/gdb/m88k-tdep.c
@@ -1,21 +1,22 @@
/* Target-machine dependent code for Motorola 88000 series, for GDB.
Copyright 1988, 1990, 1991, 1994, 1995 Free Software Foundation, Inc.
-This file is part of GDB.
+ This file is part of GDB.
-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 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.
+ 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
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
#include "defs.h"
#include "frame.h"
@@ -65,8 +66,8 @@ frame_chain (thisframe)
frame_find_saved_regs (thisframe, (struct frame_saved_regs *) 0);
/* NOTE: this depends on frame_find_saved_regs returning the VALUE, not
- the ADDRESS, of SP_REGNUM. It also depends on the cache of
- frame_find_saved_regs results. */
+ the ADDRESS, of SP_REGNUM. It also depends on the cache of
+ frame_find_saved_regs results. */
if (thisframe->fsr->regs[SP_REGNUM])
return thisframe->fsr->regs[SP_REGNUM];
else
@@ -80,8 +81,8 @@ frameless_function_invocation (frame)
frame_find_saved_regs (frame, (struct frame_saved_regs *) 0);
/* NOTE: this depends on frame_find_saved_regs returning the VALUE, not
- the ADDRESS, of SP_REGNUM. It also depends on the cache of
- frame_find_saved_regs results. */
+ the ADDRESS, of SP_REGNUM. It also depends on the cache of
+ frame_find_saved_regs results. */
if (frame->fsr->regs[SP_REGNUM])
return 0; /* Frameful -- return addr saved somewhere */
else
@@ -93,8 +94,8 @@ init_extra_frame_info (fromleaf, frame)
int fromleaf;
struct frame_info *frame;
{
- frame->fsr = 0; /* Not yet allocated */
- frame->args_pointer = 0; /* Unknown */
+ frame->fsr = 0; /* Not yet allocated */
+ frame->args_pointer = 0; /* Unknown */
frame->locals_pointer = 0; /* Unknown */
}
@@ -117,17 +118,17 @@ init_extra_frame_info (fromleaf, frame)
derived from examination of the source to gcc 1.95, particularly
the routine output_prologue () in config/out-m88k.c.
- subu r31,r31,n # stack pointer update
+ subu r31,r31,n # stack pointer update
- (st rn,r31,offset)? # save incoming regs
+ (st rn,r31,offset)? # save incoming regs
(st.d rn,r31,offset)?
- (addu r30,r31,n)? # frame pointer update
+ (addu r30,r31,n)? # frame pointer update
- (pic sequence)? # PIC code prologue
+ (pic sequence)? # PIC code prologue
- (or rn,rm,0)? # Move parameters to other regs
-*/
+ (or rn,rm,0)? # Move parameters to other regs
+ */
/* Macros for extracting fields from instructions. */
@@ -146,7 +147,8 @@ init_extra_frame_info (fromleaf, frame)
* the state of certain machine registers and where the stack frame lives.
*/
-enum prologue_insn_action {
+enum prologue_insn_action
+{
PIA_SKIP, /* don't care what the instruction does */
PIA_NOTE_ST, /* note register stored and where */
PIA_NOTE_STD, /* note pair of registers stored and where */
@@ -155,41 +157,43 @@ enum prologue_insn_action {
PIA_NOTE_PROLOGUE_END, /* no more prologue */
};
-struct prologue_insns {
+struct prologue_insns
+ {
unsigned long insn;
unsigned long mask;
enum prologue_insn_action action;
-};
+ };
-struct prologue_insns prologue_insn_tbl[] = {
+struct prologue_insns prologue_insn_tbl[] =
+{
/* Various register move instructions */
- { 0x58000000, 0xf800ffff, PIA_SKIP }, /* or/or.u with immed of 0 */
- { 0xf4005800, 0xfc1fffe0, PIA_SKIP }, /* or rd, r0, rs */
- { 0xf4005800, 0xfc00ffff, PIA_SKIP }, /* or rd, rs, r0 */
+ {0x58000000, 0xf800ffff, PIA_SKIP}, /* or/or.u with immed of 0 */
+ {0xf4005800, 0xfc1fffe0, PIA_SKIP}, /* or rd, r0, rs */
+ {0xf4005800, 0xfc00ffff, PIA_SKIP}, /* or rd, rs, r0 */
/* Stack pointer setup: "subu sp, sp, n" where n is a multiple of 8 */
- { 0x67ff0000, 0xffff0007, PIA_NOTE_SP_ADJUSTMENT },
+ {0x67ff0000, 0xffff0007, PIA_NOTE_SP_ADJUSTMENT},
/* Frame pointer assignment: "addu r30, r31, n" */
- { 0x63df0000, 0xffff0000, PIA_NOTE_FP_ASSIGNMENT },
+ {0x63df0000, 0xffff0000, PIA_NOTE_FP_ASSIGNMENT},
/* Store to stack instructions; either "st rx, sp, n" or "st.d rx, sp, n" */
- { 0x241f0000, 0xfc1f0000, PIA_NOTE_ST }, /* st rx, sp, n */
- { 0x201f0000, 0xfc1f0000, PIA_NOTE_STD }, /* st.d rs, sp, n */
+ {0x241f0000, 0xfc1f0000, PIA_NOTE_ST}, /* st rx, sp, n */
+ {0x201f0000, 0xfc1f0000, PIA_NOTE_STD}, /* st.d rs, sp, n */
/* Instructions needed for setting up r25 for pic code. */
- { 0x5f200000, 0xffff0000, PIA_SKIP }, /* or.u r25, r0, offset_high */
- { 0xcc000002, 0xffffffff, PIA_SKIP }, /* bsr.n Lab */
- { 0x5b390000, 0xffff0000, PIA_SKIP }, /* or r25, r25, offset_low */
- { 0xf7396001, 0xffffffff, PIA_SKIP }, /* Lab: addu r25, r25, r1 */
+ {0x5f200000, 0xffff0000, PIA_SKIP}, /* or.u r25, r0, offset_high */
+ {0xcc000002, 0xffffffff, PIA_SKIP}, /* bsr.n Lab */
+ {0x5b390000, 0xffff0000, PIA_SKIP}, /* or r25, r25, offset_low */
+ {0xf7396001, 0xffffffff, PIA_SKIP}, /* Lab: addu r25, r25, r1 */
/* Various branch or jump instructions which have a delay slot -- these
do not form part of the prologue, but the instruction in the delay
slot might be a store instruction which should be noted. */
- { 0xc4000000, 0xe4000000, PIA_NOTE_PROLOGUE_END },
- /* br.n, bsr.n, bb0.n, or bb1.n */
- { 0xec000000, 0xfc000000, PIA_NOTE_PROLOGUE_END }, /* bcnd.n */
- { 0xf400c400, 0xfffff7e0, PIA_NOTE_PROLOGUE_END } /* jmp.n or jsr.n */
+ {0xc4000000, 0xe4000000, PIA_NOTE_PROLOGUE_END},
+ /* br.n, bsr.n, bb0.n, or bb1.n */
+ {0xec000000, 0xfc000000, PIA_NOTE_PROLOGUE_END}, /* bcnd.n */
+ {0xf400c400, 0xfffff7e0, PIA_NOTE_PROLOGUE_END} /* jmp.n or jsr.n */
};
@@ -219,17 +223,18 @@ next_insn (memaddr, pword1)
/* Read a register from frames called by us (or from the hardware regs). */
static int
-read_next_frame_reg(frame, regno)
+read_next_frame_reg (frame, regno)
struct frame_info *frame;
int regno;
{
- for (; frame; frame = frame->next) {
+ for (; frame; frame = frame->next)
+ {
if (regno == SP_REGNUM)
return FRAME_FP (frame);
else if (frame->fsr->regs[regno])
- return read_memory_integer(frame->fsr->regs[regno], 4);
- }
- return read_register(regno);
+ return read_memory_integer (frame->fsr->regs[regno], 4);
+ }
+ return read_register (regno);
}
/* Examine the prologue of a function. `ip' points to the first instruction.
@@ -264,51 +269,52 @@ examine_prologue (ip, limit, frame_sp, fsr, fi)
while (next_ip)
{
- struct prologue_insns *pip;
+ struct prologue_insns *pip;
- for (pip=prologue_insn_tbl; (insn & pip->mask) != pip->insn; )
- if (++pip >= prologue_insn_tbl + sizeof prologue_insn_tbl)
- goto end_of_prologue_found; /* not a prologue insn */
+ for (pip = prologue_insn_tbl; (insn & pip->mask) != pip->insn;)
+ if (++pip >= prologue_insn_tbl + sizeof prologue_insn_tbl)
+ goto end_of_prologue_found; /* not a prologue insn */
switch (pip->action)
{
- case PIA_NOTE_ST:
- case PIA_NOTE_STD:
- if (sp_offset != -1) {
- src = ST_SRC (insn);
- offset = ST_OFFSET (insn);
- must_adjust[src] = 1;
- fsr->regs[src++] = offset; /* Will be adjusted later */
- if (pip->action == PIA_NOTE_STD && src < 32)
- {
- offset += 4;
- must_adjust[src] = 1;
- fsr->regs[src++] = offset;
- }
+ case PIA_NOTE_ST:
+ case PIA_NOTE_STD:
+ if (sp_offset != -1)
+ {
+ src = ST_SRC (insn);
+ offset = ST_OFFSET (insn);
+ must_adjust[src] = 1;
+ fsr->regs[src++] = offset; /* Will be adjusted later */
+ if (pip->action == PIA_NOTE_STD && src < 32)
+ {
+ offset += 4;
+ must_adjust[src] = 1;
+ fsr->regs[src++] = offset;
+ }
}
- else
- goto end_of_prologue_found;
- break;
- case PIA_NOTE_SP_ADJUSTMENT:
- if (sp_offset == -1)
- sp_offset = -SUBU_OFFSET (insn);
- else
- goto end_of_prologue_found;
- break;
- case PIA_NOTE_FP_ASSIGNMENT:
- if (fp_offset == -1)
- fp_offset = ADDU_OFFSET (insn);
- else
- goto end_of_prologue_found;
- break;
- case PIA_NOTE_PROLOGUE_END:
- if (!prologue_end)
- prologue_end = ip;
- break;
- case PIA_SKIP:
- default :
- /* Do nothing */
- break;
+ else
+ goto end_of_prologue_found;
+ break;
+ case PIA_NOTE_SP_ADJUSTMENT:
+ if (sp_offset == -1)
+ sp_offset = -SUBU_OFFSET (insn);
+ else
+ goto end_of_prologue_found;
+ break;
+ case PIA_NOTE_FP_ASSIGNMENT:
+ if (fp_offset == -1)
+ fp_offset = ADDU_OFFSET (insn);
+ else
+ goto end_of_prologue_found;
+ break;
+ case PIA_NOTE_PROLOGUE_END:
+ if (!prologue_end)
+ prologue_end = ip;
+ break;
+ case PIA_SKIP:
+ default:
+ /* Do nothing */
+ break;
}
ip = next_ip;
@@ -317,8 +323,8 @@ examine_prologue (ip, limit, frame_sp, fsr, fi)
end_of_prologue_found:
- if (prologue_end)
- ip = prologue_end;
+ if (prologue_end)
+ ip = prologue_end;
/* We're done with the prologue. If we don't care about the stack
frame itself, just return. (Note that fsr->regs has been trashed,
@@ -330,16 +336,16 @@ end_of_prologue_found:
/*
OK, now we have:
- sp_offset original (before any alloca calls) displacement of SP
- (will be negative).
+ sp_offset original (before any alloca calls) displacement of SP
+ (will be negative).
- fp_offset displacement from original SP to the FP for this frame
- or -1.
+ fp_offset displacement from original SP to the FP for this frame
+ or -1.
- fsr->regs[0..31] displacement from original SP to the stack
- location where reg[0..31] is stored.
+ fsr->regs[0..31] displacement from original SP to the stack
+ location where reg[0..31] is stored.
- must_adjust[0..31] set if corresponding offset was set.
+ must_adjust[0..31] set if corresponding offset was set.
If alloca has been called between the function prologue and the current
IP, then the current SP (frame_sp) will not be the original SP as set by
@@ -350,24 +356,30 @@ end_of_prologue_found:
Then, we figure out where the arguments and locals are, and relocate the
offsets in fsr->regs to absolute addresses. */
- if (fp_offset != -1) {
- /* We have a frame pointer, so get it, and base our calc's on it. */
- frame_fp = (CORE_ADDR) read_next_frame_reg (fi->next, ACTUAL_FP_REGNUM);
- frame_sp = frame_fp - fp_offset;
- } else {
- /* We have no frame pointer, therefore frame_sp is still the same value
- as set by prologue. But where is the frame itself? */
- if (must_adjust[SRP_REGNUM]) {
- /* Function header saved SRP (r1), the return address. Frame starts
- 4 bytes down from where it was saved. */
- frame_fp = frame_sp + fsr->regs[SRP_REGNUM] - 4;
- fi->locals_pointer = frame_fp;
- } else {
- /* Function header didn't save SRP (r1), so we are in a leaf fn or
- are otherwise confused. */
- frame_fp = -1;
+ if (fp_offset != -1)
+ {
+ /* We have a frame pointer, so get it, and base our calc's on it. */
+ frame_fp = (CORE_ADDR) read_next_frame_reg (fi->next, ACTUAL_FP_REGNUM);
+ frame_sp = frame_fp - fp_offset;
+ }
+ else
+ {
+ /* We have no frame pointer, therefore frame_sp is still the same value
+ as set by prologue. But where is the frame itself? */
+ if (must_adjust[SRP_REGNUM])
+ {
+ /* Function header saved SRP (r1), the return address. Frame starts
+ 4 bytes down from where it was saved. */
+ frame_fp = frame_sp + fsr->regs[SRP_REGNUM] - 4;
+ fi->locals_pointer = frame_fp;
+ }
+ else
+ {
+ /* Function header didn't save SRP (r1), so we are in a leaf fn or
+ are otherwise confused. */
+ frame_fp = -1;
+ }
}
- }
/* The locals are relative to the FP (whether it exists as an allocated
register, or just as an assumed offset from the SP) */
@@ -382,14 +394,14 @@ end_of_prologue_found:
for (src = 0; src < 32; src++)
if (must_adjust[src])
fsr->regs[src] += frame_sp;
-
+
/* The saved value of the SP is always known. */
/* (we hope...) */
- if (fsr->regs[SP_REGNUM] != 0
- && fsr->regs[SP_REGNUM] != frame_sp - sp_offset)
- fprintf_unfiltered(gdb_stderr, "Bad saved SP value %x != %x, offset %x!\n",
- fsr->regs[SP_REGNUM],
- frame_sp - sp_offset, sp_offset);
+ if (fsr->regs[SP_REGNUM] != 0
+ && fsr->regs[SP_REGNUM] != frame_sp - sp_offset)
+ fprintf_unfiltered (gdb_stderr, "Bad saved SP value %x != %x, offset %x!\n",
+ fsr->regs[SP_REGNUM],
+ frame_sp - sp_offset, sp_offset);
fsr->regs[SP_REGNUM] = frame_sp - sp_offset;
@@ -402,7 +414,7 @@ end_of_prologue_found:
CORE_ADDR
m88k_skip_prologue (ip)
- CORE_ADDR (ip);
+CORE_ADDR (ip);
{
struct frame_saved_regs saved_regs_dummy;
struct symtab_and_line sal;
@@ -412,7 +424,7 @@ m88k_skip_prologue (ip)
limit = (sal.end) ? sal.end : 0xffffffff;
return (examine_prologue (ip, limit, (CORE_ADDR) 0, &saved_regs_dummy,
- (struct frame_info *)0 ));
+ (struct frame_info *) 0));
}
/* Put here the code to store, into a struct frame_saved_regs,
@@ -442,26 +454,26 @@ frame_find_saved_regs (fi, fsr)
fi->fsr = cache_fsr;
/* Find the start and end of the function prologue. If the PC
- is in the function prologue, we only consider the part that
- has executed already. In the case where the PC is not in
- the function prologue, we set limit to two instructions beyond
- where the prologue ends in case if any of the prologue instructions
- were moved into a delay slot of a branch instruction. */
-
+ is in the function prologue, we only consider the part that
+ has executed already. In the case where the PC is not in
+ the function prologue, we set limit to two instructions beyond
+ where the prologue ends in case if any of the prologue instructions
+ were moved into a delay slot of a branch instruction. */
+
ip = get_pc_function_start (fi->pc);
sal = find_pc_line (ip, 0);
- limit = (sal.end && sal.end < fi->pc) ? sal.end + 2 * BYTES_PER_88K_INSN
- : fi->pc;
+ limit = (sal.end && sal.end < fi->pc) ? sal.end + 2 * BYTES_PER_88K_INSN
+ : fi->pc;
/* This will fill in fields in *fi as well as in cache_fsr. */
#ifdef SIGTRAMP_FRAME_FIXUP
if (fi->signal_handler_caller)
- SIGTRAMP_FRAME_FIXUP(fi->frame);
+ SIGTRAMP_FRAME_FIXUP (fi->frame);
#endif
examine_prologue (ip, limit, fi->frame, cache_fsr, fi);
#ifdef SIGTRAMP_SP_FIXUP
if (fi->signal_handler_caller && fi->fsr->regs[SP_REGNUM])
- SIGTRAMP_SP_FIXUP(fi->fsr->regs[SP_REGNUM]);
+ SIGTRAMP_SP_FIXUP (fi->fsr->regs[SP_REGNUM]);
#endif
}
@@ -480,7 +492,7 @@ frame_locals_address (fi)
{
struct frame_saved_regs fsr;
- if (fi->args_pointer) /* Cached value is likely there. */
+ if (fi->args_pointer) /* Cached value is likely there. */
return fi->args_pointer;
/* Nope, generate it. */
@@ -518,7 +530,7 @@ CORE_ADDR
frame_saved_pc (frame)
struct frame_info *frame;
{
- return read_next_frame_reg(frame, SRP_REGNUM);
+ return read_next_frame_reg (frame, SRP_REGNUM);
}
@@ -537,7 +549,7 @@ write_word (sp, word)
}
void
-m88k_push_dummy_frame()
+m88k_push_dummy_frame ()
{
register CORE_ADDR sp = read_register (SP_REGNUM);
register int rn;
@@ -545,25 +557,25 @@ m88k_push_dummy_frame()
sp -= DUMMY_FRAME_SIZE; /* allocate a bunch of space */
- for (rn = 0, offset = 0; rn <= SP_REGNUM; rn++, offset+=4)
- write_word (sp+offset, read_register(rn));
-
- write_word (sp+offset, read_register (SXIP_REGNUM));
+ for (rn = 0, offset = 0; rn <= SP_REGNUM; rn++, offset += 4)
+ write_word (sp + offset, read_register (rn));
+
+ write_word (sp + offset, read_register (SXIP_REGNUM));
offset += 4;
- write_word (sp+offset, read_register (SNIP_REGNUM));
+ write_word (sp + offset, read_register (SNIP_REGNUM));
offset += 4;
- write_word (sp+offset, read_register (SFIP_REGNUM));
+ write_word (sp + offset, read_register (SFIP_REGNUM));
offset += 4;
- write_word (sp+offset, read_register (PSR_REGNUM));
+ write_word (sp + offset, read_register (PSR_REGNUM));
offset += 4;
- write_word (sp+offset, read_register (FPSR_REGNUM));
+ write_word (sp + offset, read_register (FPSR_REGNUM));
offset += 4;
- write_word (sp+offset, read_register (FPCR_REGNUM));
+ write_word (sp + offset, read_register (FPCR_REGNUM));
offset += 4;
write_register (SP_REGNUM, sp);
@@ -584,39 +596,39 @@ pop_frame ()
if (PC_IN_CALL_DUMMY (read_pc (), read_register (SP_REGNUM), FRAME_FP (fi)))
{
/* FIXME: I think get_frame_saved_regs should be handling this so
- that we can deal with the saved registers properly (e.g. frame
- 1 is a call dummy, the user types "frame 2" and then "print $ps"). */
+ that we can deal with the saved registers properly (e.g. frame
+ 1 is a call dummy, the user types "frame 2" and then "print $ps"). */
register CORE_ADDR sp = read_register (ACTUAL_FP_REGNUM);
int offset;
- for (regnum = 0, offset = 0; regnum <= SP_REGNUM; regnum++, offset+=4)
- (void) write_register (regnum, read_memory_integer (sp+offset, 4));
-
- write_register (SXIP_REGNUM, read_memory_integer (sp+offset, 4));
+ for (regnum = 0, offset = 0; regnum <= SP_REGNUM; regnum++, offset += 4)
+ (void) write_register (regnum, read_memory_integer (sp + offset, 4));
+
+ write_register (SXIP_REGNUM, read_memory_integer (sp + offset, 4));
offset += 4;
- write_register (SNIP_REGNUM, read_memory_integer (sp+offset, 4));
+ write_register (SNIP_REGNUM, read_memory_integer (sp + offset, 4));
offset += 4;
- write_register (SFIP_REGNUM, read_memory_integer (sp+offset, 4));
+ write_register (SFIP_REGNUM, read_memory_integer (sp + offset, 4));
offset += 4;
- write_register (PSR_REGNUM, read_memory_integer (sp+offset, 4));
+ write_register (PSR_REGNUM, read_memory_integer (sp + offset, 4));
offset += 4;
- write_register (FPSR_REGNUM, read_memory_integer (sp+offset, 4));
+ write_register (FPSR_REGNUM, read_memory_integer (sp + offset, 4));
offset += 4;
- write_register (FPCR_REGNUM, read_memory_integer (sp+offset, 4));
+ write_register (FPCR_REGNUM, read_memory_integer (sp + offset, 4));
offset += 4;
}
- else
+ else
{
- for (regnum = FP_REGNUM ; regnum > 0 ; regnum--)
- if (fsr.regs[regnum])
- write_register (regnum,
- read_memory_integer (fsr.regs[regnum], 4));
+ for (regnum = FP_REGNUM; regnum > 0; regnum--)
+ if (fsr.regs[regnum])
+ write_register (regnum,
+ read_memory_integer (fsr.regs[regnum], 4));
write_pc (frame_saved_pc (frame));
}
reinit_frame_cache ();