1998-10-16 Jason Molenda (jsm@bugshack.cygnus.com)
[deliverable/binutils-gdb.git] / gdb / core-aout.c
CommitLineData
dd3b648e 1/* Extract registers from a "standard" core file, for GDB.
24418cfb 2 Copyright (C) 1988-1998 Free Software Foundation, Inc.
dd3b648e
RP
3
4This file is part of GDB.
5
99a7de40 6This program is free software; you can redistribute it and/or modify
dd3b648e 7it under the terms of the GNU General Public License as published by
99a7de40
JG
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
dd3b648e 10
99a7de40 11This program is distributed in the hope that it will be useful,
dd3b648e
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
99a7de40 17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
dd3b648e 19
a1df8e78
FF
20/* Typically used on systems that have a.out format executables.
21 corefile.c is supposed to contain the more machine-independent
22 aspects of reading registers from core files, while this file is
23 more machine specific. */
dd3b648e 24
d747e0af 25#include "defs.h"
4ff3dfab
JM
26
27#ifdef HAVE_PTRACE_H
28# include <ptrace.h>
29#else
30# ifdef HAVE_SYS_PTRACE_H
31# include <sys/ptrace.h>
32# endif
33#endif
34
3ae444f8
JG
35#include <sys/types.h>
36#include <sys/param.h>
dd3b648e 37#include "gdbcore.h"
100f92e2 38#include "value.h" /* For supply_register. */
9a989b1f 39#include "inferior.h" /* For ARCH_NUM_REGS. */
dd3b648e 40
b53d3945 41/* These are needed on various systems to expand REGISTER_U_ADDR. */
159a075e 42#ifndef USG
dd3b648e
RP
43#include <sys/dir.h>
44#include <sys/file.h>
2b576293 45#include "gdb_stat.h"
dd3b648e 46#include <sys/user.h>
2b88cafe 47#endif
dd3b648e 48
62a5dabc
SS
49#ifndef CORE_REGISTER_ADDR
50#define CORE_REGISTER_ADDR(regno, regptr) register_addr(regno, regptr)
51#endif /* CORE_REGISTER_ADDR */
52
073c6b2b
ILT
53#ifdef NEED_SYS_CORE_H
54#include <sys/core.h>
55#endif
56
948a9d92 57static void fetch_core_registers PARAMS ((char *, unsigned, int, CORE_ADDR));
b607efe7 58
24418cfb
JM
59void _initialize_core_aout PARAMS ((void));
60
dd3b648e 61/* Extract the register values out of the core file and store
45e60270
JG
62 them where `read_register' will find them.
63
64 CORE_REG_SECT points to the register values themselves, read into memory.
65 CORE_REG_SIZE is the size of that area.
66 WHICH says which set of registers we are handling (0 = int, 2 = float
67 on machines where they are discontiguous).
68 REG_ADDR is the offset from u.u_ar0 to the register values relative to
69 core_reg_sect. This is used with old-fashioned core files to
70 locate the registers in a large upage-plus-stack ".reg" section.
71 Original upage address X is at location core_reg_sect+x+reg_addr.
72 */
dd3b648e 73
a1df8e78 74static void
45e60270 75fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
dd3b648e
RP
76 char *core_reg_sect;
77 unsigned core_reg_size;
45e60270 78 int which;
d9951af4 79 CORE_ADDR reg_addr;
dd3b648e 80{
d9951af4
SG
81 int regno;
82 CORE_ADDR addr;
dd3b648e 83 int bad_reg = -1;
d9951af4 84 CORE_ADDR reg_ptr = -reg_addr; /* Original u.u_ar0 is -reg_addr. */
62a5dabc 85 int numregs = ARCH_NUM_REGS;
45e60270
JG
86
87 /* If u.u_ar0 was an absolute address in the core file, relativize it now,
88 so we can use it as an offset into core_reg_sect. When we're done,
89 "register 0" will be at core_reg_sect+reg_ptr, and we can use
62a5dabc 90 CORE_REGISTER_ADDR to offset to the other registers. If this is a modern
45e60270
JG
91 core file without a upage, reg_ptr will be zero and this is all a big
92 NOP. */
d9951af4 93 if (reg_ptr > core_reg_size)
45e60270 94 reg_ptr -= KERNEL_U_ADDR;
dd3b648e 95
62a5dabc 96 for (regno = 0; regno < numregs; regno++)
dd3b648e 97 {
62a5dabc 98 addr = CORE_REGISTER_ADDR (regno, reg_ptr);
d9951af4
SG
99 if (addr >= core_reg_size
100 && bad_reg < 0)
101 bad_reg = regno;
102 else
103 supply_register (regno, core_reg_sect + addr);
dd3b648e 104 }
d9951af4 105
299ee4e6 106 if (bad_reg >= 0)
d9951af4 107 error ("Register %s not found in core file.", reg_names[bad_reg]);
dd3b648e
RP
108}
109
110
111#ifdef REGISTER_U_ADDR
112
113/* Return the address in the core dump or inferior of register REGNO.
114 BLOCKEND is the address of the end of the user structure. */
115
d9951af4 116CORE_ADDR
dd3b648e
RP
117register_addr (regno, blockend)
118 int regno;
d9951af4 119 CORE_ADDR blockend;
dd3b648e 120{
d9951af4 121 CORE_ADDR addr;
dd3b648e 122
62a5dabc 123 if (regno < 0 || regno >= ARCH_NUM_REGS)
dd3b648e
RP
124 error ("Invalid register number %d.", regno);
125
126 REGISTER_U_ADDR (addr, blockend, regno);
127
128 return addr;
129}
130
131#endif /* REGISTER_U_ADDR */
a1df8e78
FF
132
133\f
134/* Register that we are able to handle aout (trad-core) file formats. */
135
136static struct core_fns aout_core_fns =
137{
138 bfd_target_unknown_flavour,
139 fetch_core_registers,
140 NULL
141};
142
143void
144_initialize_core_aout ()
145{
146 add_core_fns (&aout_core_fns);
147}
This page took 0.322085 seconds and 4 git commands to generate.