1991-03-29 00:28:29 +08:00
|
|
|
|
/* Interface to bare machine for GDB running as kernel debugger.
|
|
|
|
|
Copyright (C) 1986, 1989, 1991 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
1991-06-04 16:31:55 +09:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
1991-03-29 00:28:29 +08:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1991-06-04 16:31:55 +09:00
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1991-03-29 00:28:29 +08:00
|
|
|
|
|
1991-06-04 16:31:55 +09:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
1991-03-29 00:28:29 +08: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 16:31:55 +09:00
|
|
|
|
along with this program; if not, write to the Free Software
|
1995-08-02 11:41:12 +08:00
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1991-03-29 00:28:29 +08:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sys/types.h>
|
* configure.in: Check for working mmap, ansi headers, string.h,
strings.h, and memory.h.
* configure: Regenerated.
* gdb_stat.h: New file, "portable" <sys/stat.h>.
* gdb_string.h: New file, "portable" <string.h>.
* altos-xdep.c, arm-tdep.c, arm-xdep.c, convex-tdep.c,
convex-xdep.c, coredep.c, cxux-nat.c, dbxread.c, exec.c,
gould-xdep.c, hppa-tdep.c, i386aix-nat.c, i386b-nat.c,
i386mach-nat.c, i386v-nat.c, infptrace.c, m88k-nat.c, main.c,
mdebugread.c, objfiles.c, os9kread.c, procfs.c, pyr-xdep.c,
rs6000-nat.c, source.c, standalone.c, stuff.c, sun386-nat.c,
symfile.c, symm-nat.c, symm-tdep.c, symtab.c, top.c, ultra3-nat.c,
ultra3-xdep.c, umax-xdep.c, xcoffread.c: Include "gdb_stat.h"
instead of <sys/stat.h>.
* alpha-tdep.c, breakpoint.c, buildsym.c, c-typeprint.c,
ch-typeprint.c, coffread.c, command.c, core-sol2.c, core-svr4.c,
core.c, corelow.c, cp-valprint.c, dbxread.c, dcache.c, demangle.c,
dpx2-nat.c, dstread.c, dwarfread.c, elfread.c, environ.c, eval.c,
exec.c, f-lang.c, f-typeprint.c, f-valprint.c, findvar.c,
fork-child.c, gdbtypes.c, hpread.c, i386-tdep.c, infcmd.c,
inflow.c, infptrace.c, infrun.c, irix5-nat.c, language.c,
m2-typeprint.c, main.c, mdebugread.c, minsyms.c, mipsread.c,
monitor.c, nlmread.c, objfiles.c, os9kread.c, osfsolib.c, parse.c,
printcmd.c, procfs.c, regex.c, remote-adapt.c, remote-arc.c,
remote-array.c, remote-bug.c, remote-e7000.c, remote-eb.c,
remote-es.c, remote-hms.c, remote-mm.c, remote-os9k.c,
remote-pa.c, remote-sim.c, remote-st.c, remote-udi.c,
remote-utils.c, remote-vx.c, remote-vx29k.c, remote-vx68.c,
remote-vx960.c, remote-vxmips.c, remote-vxsparc.c, remote.c,
solib.c, somread.c, source.c, stabsread.c, stack.c, symfile.c,
symmisc.c, symtab.c, target.c, top.c, typeprint.c, utils.c,
valarith.c, valops.c, valprint.c, values.c, xcoffread.c: Include
"gdb_string.h" instead of <string.h>.
* gdbtk.c: Likewise.
* config/xm-sysv4.h, i386/xm-ptx.h, m68k/xm-sun3os4.h,
sparc/xm-sun4os4.h (HAVE_MMAP): Removed.
* config/xm-lynx.h, config/i386/xm-ptx.h,
config/m68k/nm-apollo68b.h, config/m68k/xm-hp300hpux.h,
config/mips/xm-irix3.h, config/mips/xm-mips.h,
config/mips/xm-news-mips.h, config/mips/xm-riscos.h,
config/pa/hppah.h, config/rs6000/xm-rs6000.h,
config/sparc/xm-sun4os4.h, config/sparc/xm-sun4sol2.h,
config/vax/xm-vaxbsd.h, config/vax/xm-vaxult.h,
config/vax/xm-vaxult2.h (MEM_FNS_DECLARED): Removed.
* config/mips/xm-irix3.h, config/mips/xm-mips.h,
config/pa/xm-hppah.h (memcpy, memset): Removed declarations.
1995-08-02 04:14:27 +08:00
|
|
|
|
#include "gdb_stat.h"
|
1991-03-29 00:28:29 +08:00
|
|
|
|
|
|
|
|
|
#if defined (SIGTSTP) && defined (SIGIO)
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
#endif /* SIGTSTP and SIGIO defined (must be 4.2) */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "signals.h"
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "wait.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Random system calls, mostly no-ops to prevent link problems */
|
|
|
|
|
|
|
|
|
|
ioctl (desc, code, arg)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
int (* signal ()) ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
kill ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
getpid ()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sigsetmask ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
chdir ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
char *
|
1991-11-22 09:29:29 +08:00
|
|
|
|
getcwd (buf, len)
|
1991-03-29 00:28:29 +08:00
|
|
|
|
char *buf;
|
1991-11-22 09:29:29 +08:00
|
|
|
|
unsigned int len;
|
1991-03-29 00:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
buf[0] = '/';
|
|
|
|
|
buf[1] = 0;
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Used to check for existence of .gdbinit. Say no. */
|
|
|
|
|
|
|
|
|
|
access ()
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exit ()
|
|
|
|
|
{
|
|
|
|
|
error ("Fatal error; restarting.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Reading "files". The contents of some files are written into kdb's
|
|
|
|
|
data area before it is run. These files are used to contain the
|
|
|
|
|
symbol table for kdb to load, and the source files (in case the
|
|
|
|
|
kdb user wants to print them). The symbols are stored in a file
|
|
|
|
|
named "kdb-symbols" in a.out format (except that all the text and
|
|
|
|
|
data have been stripped to save room).
|
|
|
|
|
|
|
|
|
|
The files are stored in the following format:
|
|
|
|
|
int number of bytes of data for this file, including these four.
|
|
|
|
|
char[] name of the file, ending with a null.
|
|
|
|
|
padding to multiple of 4 boundary.
|
|
|
|
|
char[] file contents. The length can be deduced from what was
|
|
|
|
|
specified before. There is no terminating null here.
|
|
|
|
|
|
|
|
|
|
If the int at the front is zero, it means there are no more files.
|
|
|
|
|
|
|
|
|
|
Opening a file in kdb returns a nonzero value to indicate success,
|
|
|
|
|
but the value does not matter. Only one file can be open, and only
|
|
|
|
|
for reading. All the primitives for input from the file know
|
|
|
|
|
which file is open and ignore what is specified for the descriptor
|
|
|
|
|
or for the stdio stream.
|
|
|
|
|
|
|
|
|
|
Input with fgetc can be done either on the file that is open
|
|
|
|
|
or on stdin (which reads from the terminal through tty_input () */
|
|
|
|
|
|
|
|
|
|
/* Address of data for the files stored in format described above. */
|
|
|
|
|
char *files_start;
|
|
|
|
|
|
|
|
|
|
/* The file stream currently open: */
|
|
|
|
|
|
|
|
|
|
char *sourcebeg; /* beginning of contents */
|
|
|
|
|
int sourcesize; /* size of contents */
|
|
|
|
|
char *sourceptr; /* current read pointer */
|
|
|
|
|
int sourceleft; /* number of bytes to eof */
|
|
|
|
|
|
|
|
|
|
/* "descriptor" for the file now open.
|
|
|
|
|
Incremented at each close.
|
|
|
|
|
If specified descriptor does not match this,
|
|
|
|
|
it means the program is trying to use a closed descriptor.
|
|
|
|
|
We report an error for that. */
|
|
|
|
|
|
|
|
|
|
int sourcedesc;
|
|
|
|
|
|
|
|
|
|
open (filename, modes)
|
|
|
|
|
char *filename;
|
|
|
|
|
int modes;
|
|
|
|
|
{
|
|
|
|
|
register char *next;
|
|
|
|
|
|
|
|
|
|
if (modes)
|
|
|
|
|
{
|
|
|
|
|
errno = EROFS;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sourceptr)
|
|
|
|
|
{
|
|
|
|
|
errno = EMFILE;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (next - files_start; * (int *) next;
|
|
|
|
|
next += * (int *) next)
|
|
|
|
|
{
|
* defs.h (STRCMP, STREQ, STREQN): New macros.
* defs.h (demangle_and_match): Remove prototype.
* dwarfread.c (STREQ, STREQN): Remove macros, replaced with STREQ
and STREQN defined in defs.h.
* dwarfread.c (set_cu_language): For completely unknown languages,
try to deduce the language from the filename. Retain behavior
that for known languages we don't know how to handle, we use
language_unknown.
* dwarfread.c (enum_type, symthesize_typedef): Initialize language
and demangled name fields in symbol.
* dwarfread.c, mipsread.c, partial-stab.h: For all usages of
ADD_PSYMBOL_TO_LIST, add language and objfile parameters.
* dwarfread.c (new_symbol): Attempt to demangle C++ symbol names
and cache the results in SYMBOL_DEMANGLED_NAME for the symbol.
* elfread.c (STREQ): Remove macro, use STREQ defined in defs.h.
Replace usages throughout.
* elfread.c (demangle.h): Include.
* elfread.c (record_minimal_symbol): Remove prototype and function.
* gdbtypes.h, symtab.h (B_SET, B_CLR, B_TST, B_TYPE, B_BYTES,
B_CLRALL): Moved from symtab.h to gdbtypes.h.
* infcmd.c (jump_command): Remove code to demangle name and add
it to a cleanup list. Now just use SYMBOL_DEMANGLED_NAME.
* minsyms.c (demangle.h): Include.
* minsyms.c (lookup_minimal_symbol): Indent comment to match code.
* minsyms.c (install_minimal_symbols): Attempt to demangle symbol
names as C++ names, and cache them in SYMBOL_DEMANGLED_NAME.
* mipsread.c (psymtab_language): Add static variable.
* stabsread.c (demangle.h): Include.
* stabsread.c (define_symbol): Attempt to demangle C++ symbol
names and cache them in the SYMBOL_DEMANGLED_NAME field.
* stack.c (return_command): Remove explicit demangling of name
and use of cleanups. Just use SYMBOL_DEMANGLED_NAME.
* symfile.c (demangle.h): Include.
* symfile.c (add_psymbol_to_list, add_psymbol_addr_to_list): Fix
to match macros in symfile.h and allow them to be compiled
if INLINE_ADD_PSYMBOL is not true.
* symfile.h (INLINE_ADD_PSYMBOL): Default to true if not set.
* symfile.h (ADD_PSYMBOL_*): Add language and objfile parameters.
Add code to demangle and cache C++ symbol names. Use macro form
if INLINE_ADD_PSYMBOL is true, otherwise use C function form.
* symmisc.c (add_psymbol_to_list, add_psymbol_addr_to_list):
Remove, also defined in symfile.c, which we already fixed.
* symtab.c (expensive_mangler): Remove prototype and function.
* symtab.c (find_methods): Remove physnames parameter and fix
prototype to match.
* symtab.c (completion_list_add_symbol): Name changed to
completion_list_add_name.
* symtab.c (COMPLETION_LIST_ADD_SYMBOL): New macro, adds both
the normal symbol name and the cached C++ demangled name.
* symtab.c (lookup_demangled_partial_symbol,
lookup_demangled_block_symbol): Remove prototypes and functions.
* symtab.c (lookup_symbol): Remove use of expensive_mangler,
use lookup_block_symbol instead of lookup_demangled_block_symbol.
Remove code to try demangling names and matching them.
* symtab.c (lookup_partial_symbol, lookup_block_symbol):
Fix to try matching the cached demangled name if no match is
found using the regular symbol name.
* symtab.c (find_methods): Remove unused physnames array.
* symtab.c (name_match, NAME_MATCH): Remove function and macro,
replaced with SYMBOL_MATCHES_REGEXP from symtab.h.
* symtab.c (completion_list_add_symbol): Rewrite to use cached
C++ demangled symbol names.
* symtab.h: Much reformatting of structures and such to add
whitespace to make them more readable, and make them more
consistent with other gdb structure definitions.
* symtab.h (general_symbol_info): New struct containing fields
common to all symbols.
* symtab.h (SYMBOL_LANGUAGE, SYMBOL_DEMANGLED_NAME,
SYMBOL_SOURCE_NAME, SYMBOL_LINKAGE_NAME, SYMBOL_MATCHES_NAME,
SYMBOL_MATCHES_REGEXP, MSYMBOL_INFO, MSYMBOL_TYPE): New macros.
* symtab. (struct minimal_symbol, struct partial_symbol, struct
symbol): Use general_symbol_info struct.
* utils.c (demangle_and_match): Remove, no longer used.
* valops.c (demangle.h): Include.
* xcoffexec.c (eq): Remove macro, replace usages with STREQ.
* blockframe.c, breakpoint.c, c-exp.y, c-valprint.c, dbxread.c,
infcmd.c, m2-exp.y, minsyms.c, objfiles.h, solib.c, stack.c,
symmisc.c, symtab.c, valops.c: Replace references to minimal
symbol fields with appropriate macros.
* breakpoint.c, buildsym.c, c-exp.y, c-typeprint.c, c-valprint.c,
coffread.c, command.c, convex-tdep.c, cp-valprint.c, dbxread.c,
demangle.c, elfread.c, energize.c, environ.c, exec.c,
gdbtypes.c, i960-tdep.c, infrun.c, infrun-hacked.c, language.c,
main.c, minsyms.c, mipsread.c, partial-stab.h, remote-es1800.c,
remote-nindy.c, remote-udi.c, rs6000-tdep.c, solib.c, source.c,
sparc-pinsn.c, stabsread.c, standalone.c, state.c, stuff.c,
symfile.c, symmisc.c, symtab.c, symtab.h, tm-sysv4.h,
tm-ultra3.h, values.c, xcoffexec.c, xcoffread.c: Replace strcmp
and strncmp usages with STREQ, STREQN, or STRCMP as appropriate.
* breakpoint.c, buildsym.c, c-typeprint.c, expprint.c, findvar.c,
mipsread.c, printcmd.c, source.c, stabsread.c, stack.c,
symmisc.c, tm-29k.h, valops.c, values.c: Replace SYMBOL_NAME
references with SYMBOL_SOURCE_NAME or SYMBOL_LINKAGE_NAME as
appropriate.
* buildsym.c (start_subfile, patch_subfile_names): Default the
source language to what can be deduced from the filename.
* buildsym.c (end_symtab): Update the source language in the
allocated symtab to match what we have been using.
* buildsym.h (struct subfile): Add a language field.
* c-typeprint.c (c_print_type): Remove code to do explicit
demangling.
* dbxread.c (psymtab_language): Add static variable.
* dbxread.c (start_psymtab): Initialize psymtab_language using
deduce_language_from_filename.
1992-12-23 14:34:57 +08:00
|
|
|
|
if (!STRCMP (next + 4, filename))
|
1991-03-29 00:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
sourcebeg = next + 4 + strlen (next + 4) + 1;
|
|
|
|
|
sourcebeg = (char *) (((int) sourcebeg + 3) & (-4));
|
|
|
|
|
sourceptr = sourcebeg;
|
|
|
|
|
sourcesize = next + * (int *) next - sourceptr;
|
|
|
|
|
sourceleft = sourcesize;
|
|
|
|
|
return sourcedesc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close (desc)
|
|
|
|
|
int desc;
|
|
|
|
|
{
|
|
|
|
|
sourceptr = 0;
|
|
|
|
|
sourcedesc++;
|
|
|
|
|
/* Don't let sourcedesc get big enough to be confused with stdin. */
|
|
|
|
|
if (sourcedesc == 100)
|
|
|
|
|
sourcedesc = 5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FILE *
|
|
|
|
|
fopen (filename, modes)
|
|
|
|
|
char *filename;
|
|
|
|
|
char *modes;
|
|
|
|
|
{
|
|
|
|
|
return (FILE *) open (filename, *modes == 'w');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FILE *
|
|
|
|
|
fdopen (desc)
|
|
|
|
|
int desc;
|
|
|
|
|
{
|
|
|
|
|
return (FILE *) desc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fclose (desc)
|
|
|
|
|
int desc;
|
|
|
|
|
{
|
|
|
|
|
close (desc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fstat (desc, statbuf)
|
|
|
|
|
struct stat *statbuf;
|
|
|
|
|
{
|
|
|
|
|
if (desc != sourcedesc)
|
|
|
|
|
{
|
|
|
|
|
errno = EBADF;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
statbuf->st_size = sourcesize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
myread (desc, destptr, size, filename)
|
|
|
|
|
int desc;
|
|
|
|
|
char *destptr;
|
|
|
|
|
int size;
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
int len = min (sourceleft, size);
|
|
|
|
|
|
|
|
|
|
if (desc != sourcedesc)
|
|
|
|
|
{
|
|
|
|
|
errno = EBADF;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
1993-10-26 05:15:53 +08:00
|
|
|
|
memcpy (destptr, sourceptr, len);
|
1991-03-29 00:28:29 +08:00
|
|
|
|
sourceleft -= len;
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
fread (bufp, numelts, eltsize, stream)
|
|
|
|
|
{
|
|
|
|
|
register int elts = min (numelts, sourceleft / eltsize);
|
|
|
|
|
register int len = elts * eltsize;
|
|
|
|
|
|
|
|
|
|
if (stream != sourcedesc)
|
|
|
|
|
{
|
|
|
|
|
errno = EBADF;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
1993-10-26 05:15:53 +08:00
|
|
|
|
memcpy (bufp, sourceptr, len);
|
1991-03-29 00:28:29 +08:00
|
|
|
|
sourceleft -= len;
|
|
|
|
|
return elts;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
fgetc (desc)
|
|
|
|
|
int desc;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (desc == (int) stdin)
|
|
|
|
|
return tty_input ();
|
|
|
|
|
|
|
|
|
|
if (desc != sourcedesc)
|
|
|
|
|
{
|
|
|
|
|
errno = EBADF;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sourceleft-- <= 0)
|
|
|
|
|
return EOF;
|
|
|
|
|
return *sourceptr++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lseek (desc, pos)
|
|
|
|
|
int desc;
|
|
|
|
|
int pos;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (desc != sourcedesc)
|
|
|
|
|
{
|
|
|
|
|
errno = EBADF;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pos < 0 || pos > sourcesize)
|
|
|
|
|
{
|
|
|
|
|
errno = EINVAL;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sourceptr = sourcebeg + pos;
|
|
|
|
|
sourceleft = sourcesize - pos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Output in kdb can go only to the terminal, so the stream
|
|
|
|
|
specified may be ignored. */
|
|
|
|
|
|
|
|
|
|
printf (a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
|
|
|
|
{
|
|
|
|
|
char buffer[1024];
|
|
|
|
|
sprintf (buffer, a1, a2, a3, a4, a5, a6, a7, a8, a9);
|
|
|
|
|
display_string (buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fprintf (ign, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
|
|
|
|
{
|
|
|
|
|
char buffer[1024];
|
|
|
|
|
sprintf (buffer, a1, a2, a3, a4, a5, a6, a7, a8, a9);
|
|
|
|
|
display_string (buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fwrite (buf, numelts, size, stream)
|
|
|
|
|
register char *buf;
|
|
|
|
|
int numelts, size;
|
|
|
|
|
{
|
|
|
|
|
register int i = numelts * size;
|
|
|
|
|
while (i-- > 0)
|
|
|
|
|
fputc (*buf++, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fputc (c, ign)
|
|
|
|
|
{
|
|
|
|
|
char buf[2];
|
|
|
|
|
buf[0] = c;
|
|
|
|
|
buf[1] = 0;
|
|
|
|
|
display_string (buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* sprintf refers to this, but loading this from the
|
|
|
|
|
library would cause fflush to be loaded from it too.
|
|
|
|
|
In fact there should be no need to call this (I hope). */
|
|
|
|
|
|
|
|
|
|
_flsbuf ()
|
|
|
|
|
{
|
|
|
|
|
error ("_flsbuf was actually called.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fflush (ign)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Entries into core and inflow, needed only to make things link ok. */
|
|
|
|
|
|
|
|
|
|
exec_file_command ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
core_file_command ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
get_exec_file (err)
|
|
|
|
|
int err;
|
|
|
|
|
{
|
|
|
|
|
/* Makes one printout look reasonable; value does not matter otherwise. */
|
|
|
|
|
return "run";
|
|
|
|
|
}
|
|
|
|
|
|
* tm-sparc.h, tm-sysv4.h, solib.h: Move shared lib definitions
into solib.h.
* sparc-pinsn.c, sparc-tdep.c, standalonec, sun3-xdep.c,
sun386-xdep.c, symm-xdep.c, target.c, ultra3-xdep.c, utils.c,
value.h: Prototypes for static functions; lint.
* gdbtypes.h: Empty file to ease transition.
1992-02-21 11:35:37 +08:00
|
|
|
|
/* Nonzero if there is a core file. */
|
|
|
|
|
|
1991-03-29 00:28:29 +08:00
|
|
|
|
have_core_file_p ()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kill_command ()
|
|
|
|
|
{
|
|
|
|
|
inferior_pid = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
terminal_inferior ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
terminal_ours ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
terminal_init_inferior ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
write_inferior_register ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
read_inferior_register ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
read_memory (memaddr, myaddr, len)
|
|
|
|
|
CORE_ADDR memaddr;
|
|
|
|
|
char *myaddr;
|
|
|
|
|
int len;
|
|
|
|
|
{
|
1993-10-26 05:15:53 +08:00
|
|
|
|
memcpy (myaddr, memaddr, len);
|
1991-03-29 00:28:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Always return 0 indicating success. */
|
|
|
|
|
|
|
|
|
|
write_memory (memaddr, myaddr, len)
|
|
|
|
|
CORE_ADDR memaddr;
|
|
|
|
|
char *myaddr;
|
|
|
|
|
int len;
|
|
|
|
|
{
|
1993-10-26 05:15:53 +08:00
|
|
|
|
memcpy (memaddr, myaddr, len);
|
1991-03-29 00:28:29 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static REGISTER_TYPE saved_regs[NUM_REGS];
|
|
|
|
|
|
|
|
|
|
REGISTER_TYPE
|
|
|
|
|
read_register (regno)
|
|
|
|
|
int regno;
|
|
|
|
|
{
|
|
|
|
|
if (regno < 0 || regno >= NUM_REGS)
|
|
|
|
|
error ("Register number %d out of range.", regno);
|
|
|
|
|
return saved_regs[regno];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
write_register (regno, value)
|
|
|
|
|
int regno;
|
|
|
|
|
REGISTER_TYPE value;
|
|
|
|
|
{
|
|
|
|
|
if (regno < 0 || regno >= NUM_REGS)
|
|
|
|
|
error ("Register number %d out of range.", regno);
|
|
|
|
|
saved_regs[regno] = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* System calls needed in relation to running the "inferior". */
|
|
|
|
|
|
|
|
|
|
vfork ()
|
|
|
|
|
{
|
|
|
|
|
/* Just appear to "succeed". Say the inferior's pid is 1. */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* These are called by code that normally runs in the inferior
|
|
|
|
|
that has just been forked. That code never runs, when standalone,
|
|
|
|
|
and these definitions are so it will link without errors. */
|
|
|
|
|
|
|
|
|
|
ptrace ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
setpgrp ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
execle ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
_exit ()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
/* Malloc calls these. */
|
|
|
|
|
|
|
|
|
|
malloc_warning (str)
|
|
|
|
|
char *str;
|
|
|
|
|
{
|
|
|
|
|
printf ("\n%s.\n\n", str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *next_free;
|
|
|
|
|
char *memory_limit;
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
sbrk (amount)
|
|
|
|
|
int amount;
|
|
|
|
|
{
|
|
|
|
|
if (next_free + amount > memory_limit)
|
|
|
|
|
return (char *) -1;
|
|
|
|
|
next_free += amount;
|
|
|
|
|
return next_free - amount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Various ways malloc might ask where end of memory is. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
ulimit ()
|
|
|
|
|
{
|
|
|
|
|
return memory_limit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
vlimit ()
|
|
|
|
|
{
|
|
|
|
|
return memory_limit - next_free;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getrlimit (addr)
|
|
|
|
|
struct rlimit *addr;
|
|
|
|
|
{
|
|
|
|
|
addr->rlim_cur = memory_limit - next_free;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Context switching to and from program being debugged. */
|
|
|
|
|
|
|
|
|
|
/* GDB calls here to run the user program.
|
|
|
|
|
The frame pointer for this function is saved in
|
|
|
|
|
gdb_stack by save_frame_pointer; then we restore
|
|
|
|
|
all of the user program's registers, including PC and PS. */
|
|
|
|
|
|
|
|
|
|
static int fault_code;
|
|
|
|
|
static REGISTER_TYPE gdb_stack;
|
|
|
|
|
|
|
|
|
|
resume ()
|
|
|
|
|
{
|
|
|
|
|
REGISTER_TYPE restore[NUM_REGS];
|
|
|
|
|
|
|
|
|
|
PUSH_FRAME_PTR;
|
|
|
|
|
save_frame_pointer ();
|
|
|
|
|
|
1993-10-26 05:15:53 +08:00
|
|
|
|
memcpy (restore, saved_regs, sizeof restore);
|
1991-03-29 00:28:29 +08:00
|
|
|
|
POP_REGISTERS;
|
|
|
|
|
/* Control does not drop through here! */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
save_frame_pointer (val)
|
|
|
|
|
CORE_ADDR val;
|
|
|
|
|
{
|
|
|
|
|
gdb_stack = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fault handlers call here, running in the user program stack.
|
|
|
|
|
They must first push a fault code,
|
|
|
|
|
old PC, old PS, and any other info about the fault.
|
|
|
|
|
The exact format is machine-dependent and is known only
|
|
|
|
|
in the definition of PUSH_REGISTERS. */
|
|
|
|
|
|
|
|
|
|
fault ()
|
|
|
|
|
{
|
|
|
|
|
/* Transfer all registers and fault code to the stack
|
|
|
|
|
in canonical order: registers in order of GDB register number,
|
|
|
|
|
followed by fault code. */
|
|
|
|
|
PUSH_REGISTERS;
|
|
|
|
|
|
|
|
|
|
/* Transfer them to saved_regs and fault_code. */
|
|
|
|
|
save_registers ();
|
|
|
|
|
|
|
|
|
|
restore_gdb ();
|
|
|
|
|
/* Control does not reach here */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
restore_gdb ()
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR new_fp = gdb_stack;
|
|
|
|
|
/* Switch to GDB's stack */
|
|
|
|
|
POP_FRAME_PTR;
|
|
|
|
|
/* Return from the function `resume'. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming register contents and fault code have been pushed on the stack as
|
|
|
|
|
arguments to this function, copy them into the standard place
|
|
|
|
|
for the program's registers while GDB is running. */
|
|
|
|
|
|
|
|
|
|
save_registers (firstreg)
|
|
|
|
|
int firstreg;
|
|
|
|
|
{
|
1993-10-26 05:15:53 +08:00
|
|
|
|
memcpy (saved_regs, &firstreg, sizeof saved_regs);
|
1991-03-29 00:28:29 +08:00
|
|
|
|
fault_code = (&firstreg)[NUM_REGS];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store into the structure such as `wait' would return
|
|
|
|
|
the information on why the program faulted,
|
|
|
|
|
converted into a machine-independent signal number. */
|
|
|
|
|
|
|
|
|
|
static int fault_table[] = FAULT_TABLE;
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
wait (w)
|
|
|
|
|
WAITTYPE *w;
|
|
|
|
|
{
|
|
|
|
|
WSETSTOP (*w, fault_table[fault_code / FAULT_CODE_UNITS]);
|
|
|
|
|
return inferior_pid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate a big space in which files for kdb to read will be stored.
|
|
|
|
|
Whatever is left is where malloc can allocate storage.
|
|
|
|
|
|
|
|
|
|
Initialize it, so that there will be space in the executable file
|
|
|
|
|
for it. Then the files can be put into kdb by writing them into
|
|
|
|
|
kdb's executable file. */
|
|
|
|
|
|
|
|
|
|
/* The default size is as much space as we expect to be available
|
|
|
|
|
for kdb to use! */
|
|
|
|
|
|
|
|
|
|
#ifndef HEAP_SIZE
|
|
|
|
|
#define HEAP_SIZE 400000
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
char heap[HEAP_SIZE] = {0};
|
|
|
|
|
|
|
|
|
|
#ifndef STACK_SIZE
|
|
|
|
|
#define STACK_SIZE 100000
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
int kdb_stack_beg[STACK_SIZE / sizeof (int)];
|
|
|
|
|
int kdb_stack_end;
|
|
|
|
|
|
|
|
|
|
_initialize_standalone ()
|
|
|
|
|
{
|
|
|
|
|
register char *next;
|
|
|
|
|
|
|
|
|
|
/* Find start of data on files. */
|
|
|
|
|
|
|
|
|
|
files_start = heap;
|
|
|
|
|
|
|
|
|
|
/* Find the end of the data on files. */
|
|
|
|
|
|
|
|
|
|
for (next - files_start; * (int *) next;
|
|
|
|
|
next += * (int *) next)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
/* That is where free storage starts for sbrk to give out. */
|
|
|
|
|
next_free = next;
|
|
|
|
|
|
|
|
|
|
memory_limit = heap + sizeof heap;
|
|
|
|
|
}
|
|
|
|
|
|