1992-02-06 20:03:31 +00:00
|
|
|
/* Target-machine dependent code for Hitachi H8/300, for GDB.
|
|
|
|
Copyright (C) 1988, 1990, 1991 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
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 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
|
1995-08-02 03:41:12 +00:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
/*
|
1992-02-06 20:03:31 +00:00
|
|
|
Contributed by Steve Chamberlain
|
1993-01-03 22:36:04 +00:00
|
|
|
sac@cygnus.com
|
1992-02-06 20:03:31 +00:00
|
|
|
*/
|
|
|
|
|
1992-01-24 02:37:13 +00:00
|
|
|
#include "defs.h"
|
1992-02-06 20:03:31 +00:00
|
|
|
#include "frame.h"
|
|
|
|
#include "obstack.h"
|
|
|
|
#include "symtab.h"
|
1994-09-03 00:32:08 +00:00
|
|
|
#include "dis-asm.h"
|
1993-08-02 22:54:01 +00:00
|
|
|
#include "gdbcmd.h"
|
|
|
|
#include "gdbtypes.h"
|
1996-04-22 22:31:10 +00:00
|
|
|
#include "gdbcore.h"
|
|
|
|
#include "gdb_string.h"
|
|
|
|
#include "value.h"
|
|
|
|
|
1993-08-02 22:54:01 +00:00
|
|
|
|
1993-02-12 16:07:36 +00:00
|
|
|
#undef NUM_REGS
|
|
|
|
#define NUM_REGS 11
|
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
#define UNSIGNED_SHORT(X) ((X) & 0xffff)
|
1992-01-24 02:37:13 +00:00
|
|
|
|
|
|
|
/* an easy to debug H8 stack frame looks like:
|
1993-01-03 22:36:04 +00:00
|
|
|
0x6df6 push r6
|
|
|
|
0x0d76 mov.w r7,r6
|
|
|
|
0x6dfn push reg
|
|
|
|
0x7905 nnnn mov.w #n,r5 or 0x1b87 subs #2,sp
|
|
|
|
0x1957 sub.w r5,sp
|
1992-01-24 02:37:13 +00:00
|
|
|
|
|
|
|
*/
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1996-05-23 21:35:09 +00:00
|
|
|
#define IS_PUSH(x) ((x & 0xfff0)==0x6df0)
|
1993-01-03 22:36:04 +00:00
|
|
|
#define IS_PUSH_FP(x) (x == 0x6df6)
|
1996-05-23 21:35:09 +00:00
|
|
|
#define IS_MOVE_FP(x) (x == 0x0d76 || x == 0x0ff6)
|
|
|
|
#define IS_MOV_SP_FP(x) (x == 0x0d76 || x == 0x0ff6)
|
1992-02-06 20:03:31 +00:00
|
|
|
#define IS_SUB2_SP(x) (x==0x1b87)
|
1996-05-23 21:35:09 +00:00
|
|
|
#define IS_SUB4_SP(x) (x==0x1b97)
|
|
|
|
#define IS_SUBL_SP(x) (x==0x7a37)
|
1992-02-06 20:03:31 +00:00
|
|
|
#define IS_MOVK_R5(x) (x==0x7905)
|
1993-01-03 22:36:04 +00:00
|
|
|
#define IS_SUB_R5SP(x) (x==0x1957)
|
1993-07-15 21:53:51 +00:00
|
|
|
|
1996-04-22 22:31:10 +00:00
|
|
|
/* Local function declarations. */
|
|
|
|
|
1993-07-15 21:53:51 +00:00
|
|
|
static CORE_ADDR examine_prologue ();
|
1996-04-22 22:31:10 +00:00
|
|
|
static void set_machine_hook PARAMS ((char *filename));
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
void frame_find_saved_regs ();
|
|
|
|
CORE_ADDR
|
|
|
|
h8300_skip_prologue (start_pc)
|
|
|
|
CORE_ADDR start_pc;
|
1992-01-16 23:52:05 +00:00
|
|
|
{
|
1993-01-03 22:36:04 +00:00
|
|
|
short int w;
|
1996-05-23 21:35:09 +00:00
|
|
|
int adjust = 0;
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-06-09 00:47:13 +00:00
|
|
|
w = read_memory_unsigned_integer (start_pc, 2);
|
1996-05-23 21:35:09 +00:00
|
|
|
if (w == 0x0100)
|
|
|
|
{
|
|
|
|
w = read_memory_unsigned_integer (start_pc + 2, 2);
|
|
|
|
adjust = 2;
|
|
|
|
}
|
|
|
|
|
1992-01-24 02:37:13 +00:00
|
|
|
/* Skip past all push insns */
|
1993-01-03 22:36:04 +00:00
|
|
|
while (IS_PUSH_FP (w))
|
|
|
|
{
|
1996-05-23 21:35:09 +00:00
|
|
|
start_pc += 2 + adjust;
|
1993-06-09 00:47:13 +00:00
|
|
|
w = read_memory_unsigned_integer (start_pc, 2);
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
1992-01-16 23:52:05 +00:00
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
/* Skip past a move to FP */
|
1993-01-03 22:36:04 +00:00
|
|
|
if (IS_MOVE_FP (w))
|
|
|
|
{
|
|
|
|
start_pc += 2;
|
1993-06-09 00:47:13 +00:00
|
|
|
w = read_memory_unsigned_integer (start_pc, 2);
|
1992-02-06 20:03:31 +00:00
|
|
|
}
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
/* Skip the stack adjust */
|
1992-01-16 23:52:05 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
if (IS_MOVK_R5 (w))
|
|
|
|
{
|
|
|
|
start_pc += 2;
|
1993-06-09 00:47:13 +00:00
|
|
|
w = read_memory_unsigned_integer (start_pc, 2);
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
if (IS_SUB_R5SP (w))
|
|
|
|
{
|
|
|
|
start_pc += 2;
|
1993-06-09 00:47:13 +00:00
|
|
|
w = read_memory_unsigned_integer (start_pc, 2);
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
1996-05-23 21:35:09 +00:00
|
|
|
while (IS_SUB2_SP (w) || IS_SUB4_SP (w))
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
|
|
|
start_pc += 2;
|
1993-06-09 00:47:13 +00:00
|
|
|
w = read_memory_unsigned_integer (start_pc, 2);
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1996-05-23 21:35:09 +00:00
|
|
|
if (IS_SUBL_SP (w))
|
|
|
|
start_pc += 6;
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
return start_pc;
|
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1992-01-24 02:37:13 +00:00
|
|
|
int
|
General cleanup and simplication of disassembler interface.
* a29k-pinsn.c, arm-pinsn.c, convex-pinsn.c, gould-pinsn.c,
hppa-pinsn.c, i386-pinsn.c, i960-pinsn.c, m68k-pinsn.c,
m88k-pinsn.c, mips-pinsn.c, ns32k-pinsn.c, pyr-pinsn.c,
rs6000-pinsn.c, sparc-pinsn.c, tahoe-pinsn.c, vax-pinsn.c: Remove.
* gould-tdep.c, ns32k-tdep.c, tahoe-tdep.c, vax-tdep.c: New files,
had been -pinsn.c files.
* Makefile.in (ALLDEPFILES): Remove removed files.
(a29k-pinsn.o, arm-pinsn.o, convex-pinsn.o, gould-pinsn.o,
hppa-pinsn.o, i386-pinsn.o, i960-pinsn.o, m68k-pinsn.o,
m88k-pinsn.o, mips-pinsn.o, ns32k-pinsn.o, pyr-pinsn.o,
rs6000-pinsn.o, sparc-pinsn.o, tahoe-pinsn.o, vax-pinsn.o):
Remove compile actions.
* arm-tdep.o, gould-tdep.o, ns32k-tdep.o, tahoe-tdep.o,
vax-tdep.o: Add compile actions.
* defs.h (tm_print_insn): New global.
* a29k-tdep.c (gdb_print_insn_a29k): New function.
(_initialize_a29k_tdep): Rename from _initialize_29k,
set tm_print_insn.
* alpha-tdep.c (print_insn): Remove.
(_initialize_alpha_tdep): Set tm_print_insn.
* arm-tdep.c (arm_print_insn): New function, was print_insn
in arm-pinsn.c.
* convex-tdep.c (convex_print_insn): New function, was print_insn
in convex-pinsn.c.
* h8300-tdep.c (print_insn): Remove.
(gdb_print_insn_h8300): New function.
(_initialize_h8300_tdep): New function.
* h8500-tdep.c (print_insn): Remove.
(_initialize_h8500_tdep): New function.
* hppa-tdep.c (_initialize_hppa_tdep): Set tm_print_insn.
* i386-tdep.c (_initialize_i386_tdep): New function.
* i960-tdep.c (mem, next_insn): New functions, were in
i960-pinsn.c.
(_initialize_i960_tdep): Set tm_print_insn.
* m68k-tdep.c (_initialize_m68k_tdep): New function.
* m88k-tdep.c (_initialize_m88k_tdep): New function.
* mips-tdep.c (gdb_print_insn_mips): New function.
(_initialize_mips_tdep): Set tm_print_insn.
* pyr-tdep.c (pyr_print_insn): New function, was print_insn
in pyr-pinsn.c.
* rs6000-tdep.c (_initialize_rs6000_tdep): New function.
* sh-tdep.c (print_insn): Remove.
(gdb_print_insn_sh): New function.
(_initialize_sh_tdep): Set tm_print_insn.
* sparc-tdep.c (_initialize_sparc_tdep): New function.
* w65-tdep.c (print_insn): Remove.
(_initialize_w65_tdep): New function.
* z8k-tdep.c (print_insn): Remove.
(gdb_print_insn_z8k): New function.
(_initialize_z8k_tdep): Set tm_print_insn.
* printcmd.c (print_insn): New function, generic disassembler.
* config/*/*.mt (TDEPFILES): Remove refs to *-pinsn.o.
* defs.h (query_hook, error_hook): Fix prototypes.
1995-01-17 04:36:51 +00:00
|
|
|
gdb_print_insn_h8300 (memaddr, info)
|
|
|
|
bfd_vma memaddr;
|
|
|
|
disassemble_info *info;
|
1992-01-16 23:52:05 +00:00
|
|
|
{
|
1996-06-18 23:29:39 +00:00
|
|
|
if (h8300smode)
|
|
|
|
return print_insn_h8300s (memaddr, info);
|
1996-07-05 18:43:31 +00:00
|
|
|
else if (h8300hmode)
|
1995-01-19 03:16:42 +00:00
|
|
|
return print_insn_h8300h (memaddr, info);
|
1993-07-08 15:32:38 +00:00
|
|
|
else
|
1995-01-19 03:16:42 +00:00
|
|
|
return print_insn_h8300 (memaddr, info);
|
1992-01-16 23:52:05 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
/* Given a GDB frame, determine the address of the calling function's frame.
|
|
|
|
This will be used to create a new GDB frame struct, and then
|
|
|
|
INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
|
|
|
|
|
|
|
|
For us, the frame address is its stack pointer value, so we look up
|
|
|
|
the function prologue to determine the caller's sp value, and return it. */
|
|
|
|
|
Replace useless FRAME, FRAME_ADDR types with struct frame_info *
and CORE_ADDR, respectively.
* frame.h (FRAME, FRAME_INFO_ID, FRAME_ADDR): Remove.
* blockframe.c (get_frame_info): Remove.
* a29k-tdep.c, alpha-tdep.c, blockframe.c, breakpoint.c,
breakpoint.h, energize.c, findvar.c, gdbtk.c, gould-pinsn.c,
h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, i386-tdep.c, i960-tdep.c,
infcmd.c, inferior.h, infrun.c, m68k-tdep.c, m88k-tdep.c,
mips-tdep.c, nindy-tdep.c, printcmd.c, pyr-tdep.c, rs6000-tdep.c,
sh-tdep.c, sparc-tdep.c, stack.c, valops.c, z8k-tdep.c,
config/a29k/tm-a29k.h, config/alpha/tm-alpha.h,
config/gould/tm-pn.h, config/h8300/tm-h8300.h,
config/h8500/tm-h8500.h, config/mips/tm-mips.h,
config/ns32k/tm-merlin.h, config/ns32k/tm-umax.h,
config/pyr/tm-pyr.h, config/sparc/tm-sparc.h): Replace FRAME with
struct frame_info * everywhere, replace FRAME_ADDR with CORE_ADDR,
rename variables consistently (using `frame' or `fi'), remove
calls to get_frame_info and FRAME_INFO_ID, remove comments about
FRAME and FRAME_ADDR cruftiness.
1994-11-04 01:19:29 +00:00
|
|
|
CORE_ADDR
|
|
|
|
h8300_frame_chain (thisframe)
|
|
|
|
struct frame_info *thisframe;
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
|
|
|
frame_find_saved_regs (thisframe, (struct frame_saved_regs *) 0);
|
1993-01-03 22:36:04 +00:00
|
|
|
return thisframe->fsr->regs[SP_REGNUM];
|
1992-02-06 20:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Put here the code to store, into a struct frame_saved_regs,
|
|
|
|
the addresses of the saved registers of frame described by FRAME_INFO.
|
|
|
|
This includes special registers such as pc and fp saved in special
|
|
|
|
ways in the stack frame. sp is even more special:
|
|
|
|
the address we return for it IS the sp for the next frame.
|
|
|
|
|
|
|
|
We cache the result of doing this in the frame_cache_obstack, since
|
|
|
|
it is fairly expensive. */
|
|
|
|
|
|
|
|
void
|
|
|
|
frame_find_saved_regs (fi, fsr)
|
|
|
|
struct frame_info *fi;
|
|
|
|
struct frame_saved_regs *fsr;
|
|
|
|
{
|
|
|
|
register struct frame_saved_regs *cache_fsr;
|
|
|
|
extern struct obstack frame_cache_obstack;
|
|
|
|
CORE_ADDR ip;
|
|
|
|
struct symtab_and_line sal;
|
|
|
|
CORE_ADDR limit;
|
|
|
|
|
|
|
|
if (!fi->fsr)
|
|
|
|
{
|
|
|
|
cache_fsr = (struct frame_saved_regs *)
|
1993-01-03 22:36:04 +00:00
|
|
|
obstack_alloc (&frame_cache_obstack,
|
|
|
|
sizeof (struct frame_saved_regs));
|
1993-09-01 21:56:42 +00:00
|
|
|
memset (cache_fsr, '\0', sizeof (struct frame_saved_regs));
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
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. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
ip = get_pc_function_start (fi->pc);
|
|
|
|
sal = find_pc_line (ip, 0);
|
1993-01-03 22:36:04 +00:00
|
|
|
limit = (sal.end && sal.end < fi->pc) ? sal.end : fi->pc;
|
1992-02-06 20:03:31 +00:00
|
|
|
|
|
|
|
/* This will fill in fields in *fi as well as in cache_fsr. */
|
|
|
|
examine_prologue (ip, limit, fi->frame, cache_fsr, fi);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fsr)
|
|
|
|
*fsr = *fi->fsr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
|
|
|
|
is not the address of a valid instruction, the address of the next
|
|
|
|
instruction beyond ADDR otherwise. *PWORD1 receives the first word
|
|
|
|
of the instruction.*/
|
|
|
|
|
|
|
|
CORE_ADDR
|
1993-01-03 22:36:04 +00:00
|
|
|
NEXT_PROLOGUE_INSN (addr, lim, pword1)
|
|
|
|
CORE_ADDR addr;
|
|
|
|
CORE_ADDR lim;
|
1993-07-10 05:03:22 +00:00
|
|
|
INSN_WORD *pword1;
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
1993-07-10 01:35:53 +00:00
|
|
|
char buf[2];
|
1993-01-03 22:36:04 +00:00
|
|
|
if (addr < lim + 8)
|
|
|
|
{
|
1993-07-10 01:35:53 +00:00
|
|
|
read_memory (addr, buf, 2);
|
|
|
|
*pword1 = extract_signed_integer (buf, 2);
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
return addr + 2;
|
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Examine the prologue of a function. `ip' points to the first instruction.
|
1993-01-03 22:36:04 +00:00
|
|
|
`limit' is the limit of the prologue (e.g. the addr of the first
|
1992-02-06 20:03:31 +00:00
|
|
|
linenumber, or perhaps the program counter if we're stepping through).
|
1993-01-03 22:36:04 +00:00
|
|
|
`frame_sp' is the stack pointer value in use in this frame.
|
1992-02-06 20:03:31 +00:00
|
|
|
`fsr' is a pointer to a frame_saved_regs structure into which we put
|
1993-01-03 22:36:04 +00:00
|
|
|
info about the registers saved by this frame.
|
1992-02-06 20:03:31 +00:00
|
|
|
`fi' is a struct frame_info pointer; we fill in various fields in it
|
|
|
|
to reflect the offsets of the arg pointer and the locals pointer. */
|
|
|
|
|
|
|
|
static CORE_ADDR
|
|
|
|
examine_prologue (ip, limit, after_prolog_fp, fsr, fi)
|
|
|
|
register CORE_ADDR ip;
|
|
|
|
register CORE_ADDR limit;
|
Replace useless FRAME, FRAME_ADDR types with struct frame_info *
and CORE_ADDR, respectively.
* frame.h (FRAME, FRAME_INFO_ID, FRAME_ADDR): Remove.
* blockframe.c (get_frame_info): Remove.
* a29k-tdep.c, alpha-tdep.c, blockframe.c, breakpoint.c,
breakpoint.h, energize.c, findvar.c, gdbtk.c, gould-pinsn.c,
h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, i386-tdep.c, i960-tdep.c,
infcmd.c, inferior.h, infrun.c, m68k-tdep.c, m88k-tdep.c,
mips-tdep.c, nindy-tdep.c, printcmd.c, pyr-tdep.c, rs6000-tdep.c,
sh-tdep.c, sparc-tdep.c, stack.c, valops.c, z8k-tdep.c,
config/a29k/tm-a29k.h, config/alpha/tm-alpha.h,
config/gould/tm-pn.h, config/h8300/tm-h8300.h,
config/h8500/tm-h8500.h, config/mips/tm-mips.h,
config/ns32k/tm-merlin.h, config/ns32k/tm-umax.h,
config/pyr/tm-pyr.h, config/sparc/tm-sparc.h): Replace FRAME with
struct frame_info * everywhere, replace FRAME_ADDR with CORE_ADDR,
rename variables consistently (using `frame' or `fi'), remove
calls to get_frame_info and FRAME_INFO_ID, remove comments about
FRAME and FRAME_ADDR cruftiness.
1994-11-04 01:19:29 +00:00
|
|
|
CORE_ADDR after_prolog_fp;
|
1992-02-06 20:03:31 +00:00
|
|
|
struct frame_saved_regs *fsr;
|
|
|
|
struct frame_info *fi;
|
|
|
|
{
|
|
|
|
register CORE_ADDR next_ip;
|
|
|
|
int r;
|
|
|
|
int have_fp = 0;
|
|
|
|
INSN_WORD insn_word;
|
1993-07-08 15:32:38 +00:00
|
|
|
/* Number of things pushed onto stack, starts at 2/4, 'cause the
|
|
|
|
PC is already there */
|
1993-08-02 22:54:01 +00:00
|
|
|
unsigned int reg_save_depth = h8300hmode ? 4 : 2;
|
1992-02-06 20:03:31 +00:00
|
|
|
|
|
|
|
unsigned int auto_depth = 0; /* Number of bytes of autos */
|
|
|
|
|
1993-03-09 01:56:53 +00:00
|
|
|
char in_frame[11]; /* One for each reg */
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1996-05-23 21:35:09 +00:00
|
|
|
int adjust = 0;
|
|
|
|
|
1993-03-09 01:56:53 +00:00
|
|
|
memset (in_frame, 1, 11);
|
1993-02-12 16:07:36 +00:00
|
|
|
for (r = 0; r < 8; r++)
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
|
|
|
fsr->regs[r] = 0;
|
|
|
|
}
|
|
|
|
if (after_prolog_fp == 0)
|
|
|
|
{
|
|
|
|
after_prolog_fp = read_register (SP_REGNUM);
|
|
|
|
}
|
1996-05-23 21:35:09 +00:00
|
|
|
if (ip == 0 || ip & (h8300hmode ? ~0xffffff : ~0xffff))
|
1993-01-03 22:36:04 +00:00
|
|
|
return 0;
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1996-05-23 21:35:09 +00:00
|
|
|
if (insn_word == 0x0100)
|
|
|
|
{
|
|
|
|
insn_word = read_memory_unsigned_integer (ip + 2, 2);
|
|
|
|
adjust = 2;
|
|
|
|
}
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
/* Skip over any fp push instructions */
|
|
|
|
fsr->regs[6] = after_prolog_fp;
|
|
|
|
while (next_ip && IS_PUSH_FP (insn_word))
|
|
|
|
{
|
1996-05-23 21:35:09 +00:00
|
|
|
ip = next_ip + adjust;
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
in_frame[insn_word & 0x7] = reg_save_depth;
|
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
1996-05-23 21:35:09 +00:00
|
|
|
reg_save_depth += 2 + adjust;
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
|
|
|
|
/* Is this a move into the fp */
|
1993-01-03 22:36:04 +00:00
|
|
|
if (next_ip && IS_MOV_SP_FP (insn_word))
|
|
|
|
{
|
|
|
|
ip = next_ip;
|
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
|
|
|
have_fp = 1;
|
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
|
|
|
|
/* Skip over any stack adjustment, happens either with a number of
|
|
|
|
sub#2,sp or a mov #x,r5 sub r5,sp */
|
|
|
|
|
1996-05-23 21:35:09 +00:00
|
|
|
if (next_ip && (IS_SUB2_SP (insn_word) || IS_SUB4_SP (insn_word)))
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
1996-05-23 21:35:09 +00:00
|
|
|
while (next_ip && (IS_SUB2_SP (insn_word) || IS_SUB4_SP (insn_word)))
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
1996-05-23 21:35:09 +00:00
|
|
|
auto_depth += IS_SUB2_SP (insn_word) ? 2 : 4;
|
1993-01-03 22:36:04 +00:00
|
|
|
ip = next_ip;
|
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (next_ip && IS_MOVK_R5 (insn_word))
|
|
|
|
{
|
|
|
|
ip = next_ip;
|
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
|
|
|
auto_depth += insn_word;
|
|
|
|
|
|
|
|
next_ip = NEXT_PROLOGUE_INSN (next_ip, limit, &insn_word);
|
|
|
|
auto_depth += insn_word;
|
|
|
|
}
|
1996-05-23 21:35:09 +00:00
|
|
|
if (next_ip && IS_SUBL_SP (insn_word))
|
|
|
|
{
|
|
|
|
ip = next_ip;
|
|
|
|
auto_depth += read_memory_unsigned_integer (ip, 4);
|
|
|
|
ip += 4;
|
|
|
|
|
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
1996-05-23 21:35:09 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
/* Work out which regs are stored where */
|
|
|
|
while (next_ip && IS_PUSH (insn_word))
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
|
|
|
ip = next_ip;
|
1993-01-03 22:36:04 +00:00
|
|
|
next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn_word);
|
|
|
|
fsr->regs[r] = after_prolog_fp + auto_depth;
|
|
|
|
auto_depth += 2;
|
1992-02-06 20:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The args are always reffed based from the stack pointer */
|
1993-01-03 22:36:04 +00:00
|
|
|
fi->args_pointer = after_prolog_fp;
|
1992-02-06 20:03:31 +00:00
|
|
|
/* Locals are always reffed based from the fp */
|
1993-01-03 22:36:04 +00:00
|
|
|
fi->locals_pointer = after_prolog_fp;
|
1992-02-06 20:03:31 +00:00
|
|
|
/* The PC is at a known place */
|
1996-05-23 21:35:09 +00:00
|
|
|
fi->from_pc = read_memory_unsigned_integer (after_prolog_fp + BINWORD, BINWORD);
|
1992-02-06 20:03:31 +00:00
|
|
|
|
|
|
|
/* Rememeber any others too */
|
|
|
|
in_frame[PC_REGNUM] = 0;
|
1993-01-03 22:36:04 +00:00
|
|
|
|
|
|
|
if (have_fp)
|
|
|
|
/* We keep the old FP in the SP spot */
|
1993-07-04 22:07:17 +00:00
|
|
|
fsr->regs[SP_REGNUM] = read_memory_unsigned_integer (fsr->regs[6], BINWORD);
|
1993-01-03 22:36:04 +00:00
|
|
|
else
|
|
|
|
fsr->regs[SP_REGNUM] = after_prolog_fp + auto_depth;
|
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
return (ip);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
init_extra_frame_info (fromleaf, fi)
|
|
|
|
int fromleaf;
|
|
|
|
struct frame_info *fi;
|
|
|
|
{
|
|
|
|
fi->fsr = 0; /* Not yet allocated */
|
|
|
|
fi->args_pointer = 0; /* Unknown */
|
|
|
|
fi->locals_pointer = 0; /* Unknown */
|
|
|
|
fi->from_pc = 0;
|
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1992-02-06 20:03:31 +00:00
|
|
|
/* Return the saved PC from this frame.
|
|
|
|
|
|
|
|
If the frame has a memory copy of SRP_REGNUM, use that. If not,
|
|
|
|
just use the register SRP_REGNUM itself. */
|
|
|
|
|
|
|
|
CORE_ADDR
|
|
|
|
frame_saved_pc (frame)
|
Replace useless FRAME, FRAME_ADDR types with struct frame_info *
and CORE_ADDR, respectively.
* frame.h (FRAME, FRAME_INFO_ID, FRAME_ADDR): Remove.
* blockframe.c (get_frame_info): Remove.
* a29k-tdep.c, alpha-tdep.c, blockframe.c, breakpoint.c,
breakpoint.h, energize.c, findvar.c, gdbtk.c, gould-pinsn.c,
h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, i386-tdep.c, i960-tdep.c,
infcmd.c, inferior.h, infrun.c, m68k-tdep.c, m88k-tdep.c,
mips-tdep.c, nindy-tdep.c, printcmd.c, pyr-tdep.c, rs6000-tdep.c,
sh-tdep.c, sparc-tdep.c, stack.c, valops.c, z8k-tdep.c,
config/a29k/tm-a29k.h, config/alpha/tm-alpha.h,
config/gould/tm-pn.h, config/h8300/tm-h8300.h,
config/h8500/tm-h8500.h, config/mips/tm-mips.h,
config/ns32k/tm-merlin.h, config/ns32k/tm-umax.h,
config/pyr/tm-pyr.h, config/sparc/tm-sparc.h): Replace FRAME with
struct frame_info * everywhere, replace FRAME_ADDR with CORE_ADDR,
rename variables consistently (using `frame' or `fi'), remove
calls to get_frame_info and FRAME_INFO_ID, remove comments about
FRAME and FRAME_ADDR cruftiness.
1994-11-04 01:19:29 +00:00
|
|
|
struct frame_info *frame;
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
|
|
|
return frame->from_pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
CORE_ADDR
|
|
|
|
frame_locals_address (fi)
|
|
|
|
struct frame_info *fi;
|
|
|
|
{
|
1993-01-03 22:36:04 +00:00
|
|
|
if (!fi->locals_pointer)
|
|
|
|
{
|
|
|
|
struct frame_saved_regs ignore;
|
|
|
|
|
|
|
|
get_frame_saved_regs (fi, &ignore);
|
1992-02-06 20:03:31 +00:00
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
return fi->locals_pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the address of the argument block for the frame
|
|
|
|
described by FI. Returns 0 if the address is unknown. */
|
|
|
|
|
|
|
|
CORE_ADDR
|
|
|
|
frame_args_address (fi)
|
|
|
|
struct frame_info *fi;
|
|
|
|
{
|
1993-01-03 22:36:04 +00:00
|
|
|
if (!fi->args_pointer)
|
|
|
|
{
|
|
|
|
struct frame_saved_regs ignore;
|
|
|
|
|
|
|
|
get_frame_saved_regs (fi, &ignore);
|
|
|
|
|
|
|
|
}
|
1992-02-06 20:03:31 +00:00
|
|
|
|
|
|
|
return fi->args_pointer;
|
|
|
|
}
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
void
|
|
|
|
h8300_pop_frame ()
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
|
|
|
unsigned regnum;
|
|
|
|
struct frame_saved_regs fsr;
|
Replace useless FRAME, FRAME_ADDR types with struct frame_info *
and CORE_ADDR, respectively.
* frame.h (FRAME, FRAME_INFO_ID, FRAME_ADDR): Remove.
* blockframe.c (get_frame_info): Remove.
* a29k-tdep.c, alpha-tdep.c, blockframe.c, breakpoint.c,
breakpoint.h, energize.c, findvar.c, gdbtk.c, gould-pinsn.c,
h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, i386-tdep.c, i960-tdep.c,
infcmd.c, inferior.h, infrun.c, m68k-tdep.c, m88k-tdep.c,
mips-tdep.c, nindy-tdep.c, printcmd.c, pyr-tdep.c, rs6000-tdep.c,
sh-tdep.c, sparc-tdep.c, stack.c, valops.c, z8k-tdep.c,
config/a29k/tm-a29k.h, config/alpha/tm-alpha.h,
config/gould/tm-pn.h, config/h8300/tm-h8300.h,
config/h8500/tm-h8500.h, config/mips/tm-mips.h,
config/ns32k/tm-merlin.h, config/ns32k/tm-umax.h,
config/pyr/tm-pyr.h, config/sparc/tm-sparc.h): Replace FRAME with
struct frame_info * everywhere, replace FRAME_ADDR with CORE_ADDR,
rename variables consistently (using `frame' or `fi'), remove
calls to get_frame_info and FRAME_INFO_ID, remove comments about
FRAME and FRAME_ADDR cruftiness.
1994-11-04 01:19:29 +00:00
|
|
|
struct frame_info *frame = get_current_frame ();
|
1992-02-06 20:03:31 +00:00
|
|
|
|
Replace useless FRAME, FRAME_ADDR types with struct frame_info *
and CORE_ADDR, respectively.
* frame.h (FRAME, FRAME_INFO_ID, FRAME_ADDR): Remove.
* blockframe.c (get_frame_info): Remove.
* a29k-tdep.c, alpha-tdep.c, blockframe.c, breakpoint.c,
breakpoint.h, energize.c, findvar.c, gdbtk.c, gould-pinsn.c,
h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, i386-tdep.c, i960-tdep.c,
infcmd.c, inferior.h, infrun.c, m68k-tdep.c, m88k-tdep.c,
mips-tdep.c, nindy-tdep.c, printcmd.c, pyr-tdep.c, rs6000-tdep.c,
sh-tdep.c, sparc-tdep.c, stack.c, valops.c, z8k-tdep.c,
config/a29k/tm-a29k.h, config/alpha/tm-alpha.h,
config/gould/tm-pn.h, config/h8300/tm-h8300.h,
config/h8500/tm-h8500.h, config/mips/tm-mips.h,
config/ns32k/tm-merlin.h, config/ns32k/tm-umax.h,
config/pyr/tm-pyr.h, config/sparc/tm-sparc.h): Replace FRAME with
struct frame_info * everywhere, replace FRAME_ADDR with CORE_ADDR,
rename variables consistently (using `frame' or `fi'), remove
calls to get_frame_info and FRAME_INFO_ID, remove comments about
FRAME and FRAME_ADDR cruftiness.
1994-11-04 01:19:29 +00:00
|
|
|
get_frame_saved_regs (frame, &fsr);
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-02-12 16:07:36 +00:00
|
|
|
for (regnum = 0; regnum < 8; regnum++)
|
1992-02-06 20:03:31 +00:00
|
|
|
{
|
1996-05-15 14:28:34 +00:00
|
|
|
/* Don't forget SP_REGNUM is a frame_saved_regs struct is the
|
|
|
|
actual value we want, not the address of the value we want. */
|
|
|
|
if (fsr.regs[regnum] && regnum != SP_REGNUM)
|
1996-04-22 22:31:10 +00:00
|
|
|
write_register (regnum, read_memory_integer(fsr.regs[regnum], BINWORD));
|
1996-05-15 14:28:34 +00:00
|
|
|
else if (fsr.regs[regnum] && regnum == SP_REGNUM)
|
|
|
|
write_register (regnum, fsr.regs[regnum]);
|
1992-02-06 20:03:31 +00:00
|
|
|
}
|
1996-05-15 14:28:34 +00:00
|
|
|
|
|
|
|
/* Don't forget the update the PC too! */
|
|
|
|
write_pc (frame->from_pc);
|
|
|
|
flush_cached_frames ();
|
1992-02-06 20:03:31 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-08-02 22:54:01 +00:00
|
|
|
|
|
|
|
struct cmd_list_element *setmemorylist;
|
|
|
|
|
|
|
|
static void
|
|
|
|
h8300_command(args, from_tty)
|
|
|
|
{
|
|
|
|
extern int h8300hmode;
|
|
|
|
h8300hmode = 0;
|
1996-06-18 23:29:39 +00:00
|
|
|
h8300smode = 0;
|
1993-08-02 22:54:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
h8300h_command(args, from_tty)
|
|
|
|
{
|
|
|
|
extern int h8300hmode;
|
|
|
|
h8300hmode = 1;
|
1996-06-18 23:29:39 +00:00
|
|
|
h8300smode = 0;
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
h8300s_command(args, from_tty)
|
|
|
|
{
|
|
|
|
extern int h8300smode;
|
|
|
|
extern int h8300hmode;
|
|
|
|
h8300smode = 1;
|
|
|
|
h8300hmode = 1;
|
1993-08-02 22:54:01 +00:00
|
|
|
}
|
1996-06-18 23:29:39 +00:00
|
|
|
|
1993-08-02 22:54:01 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
set_machine (args, from_tty)
|
|
|
|
char *args;
|
|
|
|
int from_tty;
|
|
|
|
{
|
1996-06-18 23:29:39 +00:00
|
|
|
printf_unfiltered ("\"set machine\" must be followed by h8300, h8300h");
|
|
|
|
printf_unfiltered ("or h8300s");
|
1993-11-01 22:25:23 +00:00
|
|
|
help_list (setmemorylist, "set memory ", -1, gdb_stdout);
|
1993-08-02 22:54:01 +00:00
|
|
|
}
|
|
|
|
|
1996-04-22 22:31:10 +00:00
|
|
|
/* set_machine_hook is called as the exec file is being opened, but
|
|
|
|
before the symbol file is opened. This allows us to set the
|
|
|
|
h8300hmode flag based on the machine type specified in the exec
|
|
|
|
file. This in turn will cause subsequently defined pointer types
|
|
|
|
to be 16 or 32 bits as appropriate for the machine. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_machine_hook (filename)
|
|
|
|
char *filename;
|
|
|
|
{
|
1996-06-18 23:29:39 +00:00
|
|
|
if (bfd_get_mach (exec_bfd) == bfd_mach_h8300s)
|
|
|
|
{
|
|
|
|
h8300smode = 1;
|
|
|
|
h8300hmode = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (bfd_get_mach (exec_bfd) == bfd_mach_h8300h)
|
|
|
|
{
|
|
|
|
h8300smode = 0;
|
|
|
|
h8300hmode = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
h8300smode = 0;
|
|
|
|
h8300hmode = 0;
|
|
|
|
}
|
1996-04-22 22:31:10 +00:00
|
|
|
}
|
|
|
|
|
1993-08-02 22:54:01 +00:00
|
|
|
void
|
|
|
|
_initialize_h8300m ()
|
|
|
|
{
|
|
|
|
add_prefix_cmd ("machine", no_class, set_machine,
|
|
|
|
"set the machine type", &setmemorylist, "set machine ", 0,
|
|
|
|
&setlist);
|
|
|
|
|
|
|
|
add_cmd ("h8300", class_support, h8300_command,
|
|
|
|
"Set machine to be H8/300.", &setmemorylist);
|
|
|
|
|
|
|
|
add_cmd ("h8300h", class_support, h8300h_command,
|
|
|
|
"Set machine to be H8/300H.", &setmemorylist);
|
1996-04-22 22:31:10 +00:00
|
|
|
|
1996-06-18 23:29:39 +00:00
|
|
|
add_cmd ("h8300s", class_support, h8300s_command,
|
|
|
|
"Set machine to be H8/300S.", &setmemorylist);
|
|
|
|
|
1996-04-22 22:31:10 +00:00
|
|
|
/* Add a hook to set the machine type when we're loading a file. */
|
|
|
|
|
|
|
|
specify_exec_file_hook(set_machine_hook);
|
1993-08-02 22:54:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
void
|
|
|
|
print_register_hook (regno)
|
|
|
|
{
|
|
|
|
if (regno == 8)
|
|
|
|
{
|
|
|
|
/* CCR register */
|
|
|
|
int C, Z, N, V;
|
1993-12-12 00:00:53 +00:00
|
|
|
unsigned char b[4];
|
1993-01-03 22:36:04 +00:00
|
|
|
unsigned char l;
|
|
|
|
read_relative_register_raw_bytes (regno, b);
|
1993-12-12 00:00:53 +00:00
|
|
|
l = b[REGISTER_VIRTUAL_SIZE(8) -1];
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("\t");
|
|
|
|
printf_unfiltered ("I-%d - ", (l & 0x80) != 0);
|
|
|
|
printf_unfiltered ("H-%d - ", (l & 0x20) != 0);
|
1993-01-03 22:36:04 +00:00
|
|
|
N = (l & 0x8) != 0;
|
|
|
|
Z = (l & 0x4) != 0;
|
|
|
|
V = (l & 0x2) != 0;
|
|
|
|
C = (l & 0x1) != 0;
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("N-%d ", N);
|
|
|
|
printf_unfiltered ("Z-%d ", Z);
|
|
|
|
printf_unfiltered ("V-%d ", V);
|
|
|
|
printf_unfiltered ("C-%d ", C);
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((C | Z) == 0)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("u> ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((C | Z) == 1)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("u<= ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((C == 0))
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("u>= ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if (C == 1)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("u< ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if (Z == 0)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("!= ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if (Z == 1)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("== ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((N ^ V) == 0)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered (">= ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((N ^ V) == 1)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("< ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((Z | (N ^ V)) == 0)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("> ");
|
1993-01-03 22:36:04 +00:00
|
|
|
if ((Z | (N ^ V)) == 1)
|
1993-11-01 22:25:23 +00:00
|
|
|
printf_unfiltered ("<= ");
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
}
|
1993-08-02 22:54:01 +00:00
|
|
|
|
General cleanup and simplication of disassembler interface.
* a29k-pinsn.c, arm-pinsn.c, convex-pinsn.c, gould-pinsn.c,
hppa-pinsn.c, i386-pinsn.c, i960-pinsn.c, m68k-pinsn.c,
m88k-pinsn.c, mips-pinsn.c, ns32k-pinsn.c, pyr-pinsn.c,
rs6000-pinsn.c, sparc-pinsn.c, tahoe-pinsn.c, vax-pinsn.c: Remove.
* gould-tdep.c, ns32k-tdep.c, tahoe-tdep.c, vax-tdep.c: New files,
had been -pinsn.c files.
* Makefile.in (ALLDEPFILES): Remove removed files.
(a29k-pinsn.o, arm-pinsn.o, convex-pinsn.o, gould-pinsn.o,
hppa-pinsn.o, i386-pinsn.o, i960-pinsn.o, m68k-pinsn.o,
m88k-pinsn.o, mips-pinsn.o, ns32k-pinsn.o, pyr-pinsn.o,
rs6000-pinsn.o, sparc-pinsn.o, tahoe-pinsn.o, vax-pinsn.o):
Remove compile actions.
* arm-tdep.o, gould-tdep.o, ns32k-tdep.o, tahoe-tdep.o,
vax-tdep.o: Add compile actions.
* defs.h (tm_print_insn): New global.
* a29k-tdep.c (gdb_print_insn_a29k): New function.
(_initialize_a29k_tdep): Rename from _initialize_29k,
set tm_print_insn.
* alpha-tdep.c (print_insn): Remove.
(_initialize_alpha_tdep): Set tm_print_insn.
* arm-tdep.c (arm_print_insn): New function, was print_insn
in arm-pinsn.c.
* convex-tdep.c (convex_print_insn): New function, was print_insn
in convex-pinsn.c.
* h8300-tdep.c (print_insn): Remove.
(gdb_print_insn_h8300): New function.
(_initialize_h8300_tdep): New function.
* h8500-tdep.c (print_insn): Remove.
(_initialize_h8500_tdep): New function.
* hppa-tdep.c (_initialize_hppa_tdep): Set tm_print_insn.
* i386-tdep.c (_initialize_i386_tdep): New function.
* i960-tdep.c (mem, next_insn): New functions, were in
i960-pinsn.c.
(_initialize_i960_tdep): Set tm_print_insn.
* m68k-tdep.c (_initialize_m68k_tdep): New function.
* m88k-tdep.c (_initialize_m88k_tdep): New function.
* mips-tdep.c (gdb_print_insn_mips): New function.
(_initialize_mips_tdep): Set tm_print_insn.
* pyr-tdep.c (pyr_print_insn): New function, was print_insn
in pyr-pinsn.c.
* rs6000-tdep.c (_initialize_rs6000_tdep): New function.
* sh-tdep.c (print_insn): Remove.
(gdb_print_insn_sh): New function.
(_initialize_sh_tdep): Set tm_print_insn.
* sparc-tdep.c (_initialize_sparc_tdep): New function.
* w65-tdep.c (print_insn): Remove.
(_initialize_w65_tdep): New function.
* z8k-tdep.c (print_insn): Remove.
(gdb_print_insn_z8k): New function.
(_initialize_z8k_tdep): Set tm_print_insn.
* printcmd.c (print_insn): New function, generic disassembler.
* config/*/*.mt (TDEPFILES): Remove refs to *-pinsn.o.
* defs.h (query_hook, error_hook): Fix prototypes.
1995-01-17 04:36:51 +00:00
|
|
|
void
|
|
|
|
_initialize_h8300_tdep ()
|
|
|
|
{
|
|
|
|
tm_print_insn = gdb_print_insn_h8300;
|
|
|
|
}
|