1991-03-28 16:28:29 +00:00
|
|
|
|
/* Print i386 instructions for GDB, the GNU debugger.
|
1993-03-19 00:18:55 +00:00
|
|
|
|
Copyright 1986, 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
1991-06-04 07:31:55 +00:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
1991-03-28 16:28:29 +00:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1991-06-04 07:31:55 +00:00
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
1991-06-04 07:31:55 +00:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
1991-03-28 16:28:29 +00:00
|
|
|
|
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
|
1991-06-04 07:31:55 +00:00
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
1992-03-03 23:26:26 +00:00
|
|
|
|
#include "defs.h"
|
1993-03-19 00:18:55 +00:00
|
|
|
|
#include "dis-asm.h"
|
1992-03-03 23:26:26 +00:00
|
|
|
|
|
1993-03-19 00:18:55 +00:00
|
|
|
|
|
1993-03-31 21:43:25 +00:00
|
|
|
|
/* Print the instruction at address MEMADDR in debugged memory,
|
1993-03-19 00:18:55 +00:00
|
|
|
|
on STREAM. Returns length of the instruction, in bytes. */
|
* dbxread.c, i386-pinsn.c, i386-tdep.c, regex.c, solib.c, symmisc.c,
symtab.h, tm-i386v4.h, valprint.c, values.c: Lint.
* breakpoint.c, c-exp.y, coffread.c, command.c, environ.c, eval.c,
findvar.c, infcmd.c, infptrace.c, infrun.c, m2-exp.y, parse.c,
putenv.c, solib.c, sparc-xdep.c, symtab.c, tm-i386v.h, tm-sparc.h,
utils.c, valarith.c, valops.c, valprint.c, values.c:
Replace bcopy() use with memcpy(), which is more standard and can
take advantage of gcc's builtin functions for increased performance.
* breakpoint.c, buildsym.c, coffread.c, dbxread.c, i386-tdep.c,
ieee-float.c, infcmd.c, sparc-tdep.c, stack.c, symtab.c, symtab.h,
target.c, values.c:
Replace bzero() use with memset(), which is more standard and can
take advantage of gcc's builtin functions for increased performance.
* i386-tdep.c, main.c, valprint.c:
Replace bcmp() use with memcmp(), which is more standard and can
take advantage of gcc's builtin functions for increased performance.
1992-06-29 23:34:38 +00:00
|
|
|
|
|
|
|
|
|
int
|
1991-03-28 16:28:29 +00:00
|
|
|
|
print_insn (memaddr, stream)
|
|
|
|
|
CORE_ADDR memaddr;
|
|
|
|
|
FILE *stream;
|
|
|
|
|
{
|
1993-03-19 00:18:55 +00:00
|
|
|
|
disassemble_info info;
|
|
|
|
|
|
|
|
|
|
GDB_INIT_DISASSEMBLE_INFO(info, stream);
|
|
|
|
|
|
1993-03-31 21:43:25 +00:00
|
|
|
|
return print_insn_i386 (memaddr, &info);
|
1991-03-28 16:28:29 +00:00
|
|
|
|
}
|