windows-nat: Don't change current_event.dwThreadId in handle_output_debug_string()
[deliverable/binutils-gdb.git] / gdb / core-regset.c
CommitLineData
c906108c 1/* Machine independent GDB support for core files on systems using "regsets".
94ba74a9 2
32d0add0 3 Copyright (C) 1993-2015 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
94ba74a9
MK
20/* This file is used by most systems that use ELF for their core
21 dumps. This includes most systems that have SVR4-ish variant of
22 /proc. For these systems, the registers are laid out the same way
23 in core files as in the gregset_t and fpregset_t structures that
24 are used in the interaction with /proc (Irix 4 is an exception and
25 therefore doesn't use this file). Quite a few systems without a
26 SVR4-ish /proc define these structures too, and can make use of
27 this code too. */
c906108c
SS
28
29#include "defs.h"
94ba74a9
MK
30#include "command.h"
31#include "gdbcore.h"
32#include "inferior.h"
33#include "target.h"
7f7fe91e 34#include "regcache.h"
c906108c 35
94ba74a9 36#include <fcntl.h>
c906108c
SS
37#include <time.h>
38#ifdef HAVE_SYS_PROCFS_H
39#include <sys/procfs.h>
40#endif
c906108c 41
94ba74a9 42/* Prototypes for supply_gregset etc. */
c60c0f5f
MS
43#include "gregset.h"
44
94ba74a9 45/* Provide registers to GDB from a core file.
c906108c 46
94ba74a9
MK
47 CORE_REG_SECT points to an array of bytes, which are the contents
48 of a `note' from a core file which BFD thinks might contain
49 register contents. CORE_REG_SIZE is its size.
c906108c 50
94ba74a9
MK
51 WHICH says which register set corelow suspects this is:
52 0 --- the general-purpose register set, in gregset_t format
53 2 --- the floating-point register set, in fpregset_t format
c906108c 54
94ba74a9 55 REG_ADDR is ignored. */
c906108c
SS
56
57static void
9eefc95f 58fetch_core_registers (struct regcache *regcache,
aff410f1
MS
59 char *core_reg_sect,
60 unsigned core_reg_size,
61 int which,
89727b6f 62 CORE_ADDR reg_addr)
c906108c 63{
455ecc72
DJ
64 gdb_gregset_t gregset;
65 gdb_fpregset_t fpregset;
b48516f9
L
66 gdb_gregset_t *gregset_p = &gregset;
67 gdb_fpregset_t *fpregset_p = &fpregset;
c906108c 68
94ba74a9 69 switch (which)
c906108c 70 {
94ba74a9 71 case 0:
c906108c 72 if (core_reg_size != sizeof (gregset))
8a3fe4f8 73 warning (_("Wrong size gregset in core file."));
c906108c
SS
74 else
75 {
94ba74a9 76 memcpy (&gregset, core_reg_sect, sizeof (gregset));
b48516f9 77 supply_gregset (regcache, (const gdb_gregset_t *) gregset_p);
c906108c 78 }
94ba74a9
MK
79 break;
80
81 case 2:
c906108c 82 if (core_reg_size != sizeof (fpregset))
8a3fe4f8 83 warning (_("Wrong size fpregset in core file."));
c906108c
SS
84 else
85 {
94ba74a9 86 memcpy (&fpregset, core_reg_sect, sizeof (fpregset));
8f4f3fbe 87 if (gdbarch_fp0_regnum (get_regcache_arch (regcache)) >= 0)
aff410f1
MS
88 supply_fpregset (regcache,
89 (const gdb_fpregset_t *) fpregset_p);
c906108c 90 }
94ba74a9
MK
91 break;
92
93 default:
94 /* We've covered all the kinds of registers we know about here,
95 so this must be something we wouldn't know what to do with
96 anyway. Just ignore it. */
97 break;
c906108c 98 }
c906108c 99}
c906108c 100\f
c5aa993b 101
94ba74a9
MK
102/* Register that we are able to handle ELF core file formats using
103 standard procfs "regset" structures. */
c906108c
SS
104
105static struct core_fns regset_core_fns =
106{
2acceee2
JM
107 bfd_target_elf_flavour, /* core_flavour */
108 default_check_format, /* check_format */
109 default_core_sniffer, /* core_sniffer */
110 fetch_core_registers, /* core_read_registers */
111 NULL /* next */
c906108c
SS
112};
113
94ba74a9
MK
114/* Provide a prototype to silence -Wmissing-prototypes. */
115extern void _initialize_core_regset (void);
116
c906108c 117void
fba45db2 118_initialize_core_regset (void)
c906108c 119{
00e32a35 120 deprecated_add_core_fns (&regset_core_fns);
c906108c 121}
This page took 1.027977 seconds and 4 git commands to generate.