1991-03-29 00:28:29 +08:00
|
|
|
/* Extract registers from a "standard" core file, for GDB.
|
|
|
|
Copyright (C) 1988-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
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1991-03-29 00:28:29 +08:00
|
|
|
|
|
|
|
/* core.c is supposed to be the more machine-independent aspects of this;
|
|
|
|
this file is more machine-specific. */
|
|
|
|
|
1992-03-04 07:26:26 +08:00
|
|
|
#include "defs.h"
|
1991-11-23 04:44:50 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
1991-03-29 00:28:29 +08:00
|
|
|
#include "gdbcore.h"
|
* Makefile.in (c-exp.tab.o): Remove notice about shift/reduce conflicts
which no longer occur.
gcc -Wall lint:
* findvar.c (symbol_read_needs_frame), corelow.c (ignore),
inflow.c (gdb_has_a_terminal): Make sure to return a value.
* regex.h: Declare re_set_syntax.
* printcmd.c: Include valprint.h.
* infcmd.c, exec.c, maint.c, core.c: Include language.h.
* maint.c: Include expression.h.
* infrun.c, fork-child.c, corelow.c, inflow.c: Include thread.h.
* inftarg.c: Include command.h.
* coredep.c: Include value.h.
* c-exp.y, m2-exp.y, ch-exp.y: Include bfd.h, symfile.h and objfiles.h.
* ch-typeprint.c: Include typeprint.h.
* ch-valprint.c: Include c-lang.h.
* nlmread.c: Include buildsym.h.
* environ.c: Include gdbcore.h. Only include defs.h once.
(set_in_environ): Cast const char * to char * when passing to
set_gnutarget.
Remove unused variables:
* printcmd.c (printf_command): args_to_vprintf.
* coffread.c (coff_symfile_init): strsection.
Move variables to within the #ifdefs where they are used:
* symtab.c (gdb_mangle_name): opname.
* inftarg.c (child_attach): pid and exec_file.
* inftarg.c (child_detach): siggnal.
* objfiles.c (allocate_objfile): mapto, md, and fd.
* objfiles.c (free_objfile): mmfd.
* infrun.c (wait_for_inferior): Include BPSTAT_WHAT_LAST in switch.
* infrun.c (wait_for_inferior): Remove unused same_pid label.
* inferior.h: Declare set_sigint_trap and clear_sigint_trap.
* parser-defs.h: Declare write_exp_elt_block.
* stabsread.h: Declare elfstab_offset_sections and
coffstab_build_psymtabs.
1993-10-22 04:41:50 +08:00
|
|
|
#include "value.h" /* For supply_register. */
|
1994-07-26 02:55:22 +08:00
|
|
|
#include "inferior.h" /* For ARCH_NUM_REGS. */
|
1991-03-29 00:28:29 +08:00
|
|
|
|
1991-10-17 13:57:51 +08:00
|
|
|
/* These are needed on various systems to expand REGISTER_U_ADDR. */
|
1991-10-26 07:10:12 +08:00
|
|
|
#ifndef USG
|
1991-03-29 00:28:29 +08:00
|
|
|
#include <sys/dir.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/user.h>
|
1993-03-02 09:56:22 +08:00
|
|
|
#ifndef NO_PTRACE_H
|
|
|
|
# ifdef PTRACE_IN_WRONG_PLACE
|
|
|
|
# include <ptrace.h>
|
|
|
|
# else /* !PTRACE_IN_WRONG_PLACE */
|
|
|
|
# include <sys/ptrace.h>
|
|
|
|
# endif /* !PTRACE_IN_WRONG_PLACE */
|
|
|
|
#endif /* NO_PTRACE_H */
|
1991-09-17 16:10:16 +08:00
|
|
|
#endif
|
1991-03-29 00:28:29 +08:00
|
|
|
|
1994-07-17 08:00:36 +08:00
|
|
|
#ifndef CORE_REGISTER_ADDR
|
|
|
|
#define CORE_REGISTER_ADDR(regno, regptr) register_addr(regno, regptr)
|
|
|
|
#endif /* CORE_REGISTER_ADDR */
|
|
|
|
|
1993-07-23 03:49:44 +08:00
|
|
|
#ifdef NEED_SYS_CORE_H
|
|
|
|
#include <sys/core.h>
|
|
|
|
#endif
|
|
|
|
|
1991-03-29 00:28:29 +08:00
|
|
|
/* Extract the register values out of the core file and store
|
1991-10-17 03:42:05 +08:00
|
|
|
them where `read_register' will find them.
|
|
|
|
|
|
|
|
CORE_REG_SECT points to the register values themselves, read into memory.
|
|
|
|
CORE_REG_SIZE is the size of that area.
|
|
|
|
WHICH says which set of registers we are handling (0 = int, 2 = float
|
|
|
|
on machines where they are discontiguous).
|
|
|
|
REG_ADDR is the offset from u.u_ar0 to the register values relative to
|
|
|
|
core_reg_sect. This is used with old-fashioned core files to
|
|
|
|
locate the registers in a large upage-plus-stack ".reg" section.
|
|
|
|
Original upage address X is at location core_reg_sect+x+reg_addr.
|
|
|
|
*/
|
1991-03-29 00:28:29 +08:00
|
|
|
|
|
|
|
void
|
1991-10-17 03:42:05 +08:00
|
|
|
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
|
1991-03-29 00:28:29 +08:00
|
|
|
char *core_reg_sect;
|
|
|
|
unsigned core_reg_size;
|
1991-10-17 03:42:05 +08:00
|
|
|
int which;
|
|
|
|
unsigned reg_addr;
|
1991-03-29 00:28:29 +08:00
|
|
|
{
|
|
|
|
register int regno;
|
|
|
|
register unsigned int addr;
|
|
|
|
int bad_reg = -1;
|
1991-10-17 03:42:05 +08:00
|
|
|
register reg_ptr = -reg_addr; /* Original u.u_ar0 is -reg_addr. */
|
1994-07-17 08:00:36 +08:00
|
|
|
int numregs = ARCH_NUM_REGS;
|
1991-10-17 03:42:05 +08:00
|
|
|
|
|
|
|
/* If u.u_ar0 was an absolute address in the core file, relativize it now,
|
|
|
|
so we can use it as an offset into core_reg_sect. When we're done,
|
|
|
|
"register 0" will be at core_reg_sect+reg_ptr, and we can use
|
1994-07-17 08:00:36 +08:00
|
|
|
CORE_REGISTER_ADDR to offset to the other registers. If this is a modern
|
1991-10-17 03:42:05 +08:00
|
|
|
core file without a upage, reg_ptr will be zero and this is all a big
|
|
|
|
NOP. */
|
|
|
|
if (reg_ptr > core_reg_size)
|
|
|
|
reg_ptr -= KERNEL_U_ADDR;
|
1991-03-29 00:28:29 +08:00
|
|
|
|
1994-07-17 08:00:36 +08:00
|
|
|
for (regno = 0; regno < numregs; regno++)
|
1991-03-29 00:28:29 +08:00
|
|
|
{
|
1994-07-17 08:00:36 +08:00
|
|
|
addr = CORE_REGISTER_ADDR (regno, reg_ptr);
|
1991-03-29 00:28:29 +08:00
|
|
|
if (addr >= core_reg_size) {
|
|
|
|
if (bad_reg < 0)
|
|
|
|
bad_reg = regno;
|
|
|
|
} else {
|
|
|
|
supply_register (regno, core_reg_sect + addr);
|
|
|
|
}
|
|
|
|
}
|
1991-12-05 20:20:18 +08:00
|
|
|
if (bad_reg >= 0)
|
1991-03-29 00:28:29 +08:00
|
|
|
{
|
|
|
|
error ("Register %s not found in core file.", reg_names[bad_reg]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef REGISTER_U_ADDR
|
|
|
|
|
|
|
|
/* Return the address in the core dump or inferior of register REGNO.
|
|
|
|
BLOCKEND is the address of the end of the user structure. */
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
register_addr (regno, blockend)
|
|
|
|
int regno;
|
|
|
|
int blockend;
|
|
|
|
{
|
|
|
|
int addr;
|
|
|
|
|
1994-07-17 08:00:36 +08:00
|
|
|
if (regno < 0 || regno >= ARCH_NUM_REGS)
|
1991-03-29 00:28:29 +08:00
|
|
|
error ("Invalid register number %d.", regno);
|
|
|
|
|
|
|
|
REGISTER_U_ADDR (addr, blockend, regno);
|
|
|
|
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* REGISTER_U_ADDR */
|