gdb: Add gen_return_address for powerpc.
[deliverable/binutils-gdb.git] / gdb / gdbcore.h
CommitLineData
c906108c 1/* Machine independent variables that describe the core file under GDB.
00e32a35 2
618f726f 3 Copyright (C) 1986-2016 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
SS
19
20/* Interface routines for core, executable, etc. */
21
22#if !defined (GDBCORE_H)
23#define GDBCORE_H 1
24
da3331ec 25struct type;
9eefc95f 26struct regcache;
da3331ec 27
c906108c 28#include "bfd.h"
6c95b8df 29#include "exec.h"
578d3588 30#include "target.h"
c906108c
SS
31
32/* Return the name of the executable file as a string.
33 ERR nonzero means get error if there is none specified;
34 otherwise return 0 in that case. */
35
a14ed312 36extern char *get_exec_file (int err);
c906108c
SS
37
38/* Nonzero if there is a core file. */
39
a14ed312 40extern int have_core_file_p (void);
c906108c 41
c906108c
SS
42/* Report a memory error with error(). */
43
9b409511 44extern void memory_error (enum target_xfer_status status, CORE_ADDR memaddr);
578d3588
PA
45
46/* The string 'memory_error' would use as exception message. Space
47 for the result is malloc'd, caller must free. */
48
9b409511 49extern char *memory_error_message (enum target_xfer_status err,
578d3588 50 struct gdbarch *gdbarch, CORE_ADDR memaddr);
c906108c
SS
51
52/* Like target_read_memory, but report an error if can't read. */
53
45aa4659 54extern void read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len);
c906108c 55
4e5d721f
DE
56/* Like target_read_stack, but report an error if can't read. */
57
45aa4659 58extern void read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len);
4e5d721f 59
0865b04a
YQ
60/* Like target_read_code, but report an error if can't read. */
61
62extern void read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len);
63
c906108c
SS
64/* Read an integer from debugged memory, given address and number of
65 bytes. */
66
e17a4113
UW
67extern LONGEST read_memory_integer (CORE_ADDR memaddr,
68 int len, enum bfd_endian byte_order);
69extern int safe_read_memory_integer (CORE_ADDR memaddr, int len,
3e43a32a
MS
70 enum bfd_endian byte_order,
71 LONGEST *return_value);
c906108c
SS
72
73/* Read an unsigned integer from debugged memory, given address and
74 number of bytes. */
75
e17a4113 76extern ULONGEST read_memory_unsigned_integer (CORE_ADDR memaddr,
3e43a32a
MS
77 int len,
78 enum bfd_endian byte_order);
c906108c 79
0865b04a
YQ
80/* Read an integer from debugged code memory, given address,
81 number of bytes, and byte order for code. */
82
83extern LONGEST read_code_integer (CORE_ADDR memaddr, int len,
84 enum bfd_endian byte_order);
85
86/* Read an unsigned integer from debugged code memory, given address,
87 number of bytes, and byte order for code. */
88
89extern ULONGEST read_code_unsigned_integer (CORE_ADDR memaddr,
90 int len,
91 enum bfd_endian byte_order);
92
0963b4bd
MS
93/* Read a null-terminated string from the debuggee's memory, given
94 address, a buffer into which to place the string, and the maximum
95 available space. */
0d540cdf 96
a14ed312 97extern void read_memory_string (CORE_ADDR, char *, int);
c906108c 98
0d540cdf 99/* Read the pointer of type TYPE at ADDR, and return the address it
0963b4bd 100 represents. */
0d540cdf 101
570b8f7c 102CORE_ADDR read_memory_typed_address (CORE_ADDR addr, struct type *type);
0d540cdf 103
cb6f16cf
SM
104/* Same as target_write_memory, but report an error if can't
105 write. */
c906108c 106
45aa4659
JK
107extern void write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
108 ssize_t len);
c906108c 109
972daa01
YQ
110/* Same as write_memory, but notify 'memory_changed' observers. */
111
112extern void write_memory_with_notification (CORE_ADDR memaddr,
113 const bfd_byte *myaddr,
114 ssize_t len);
115
c26e4683
JB
116/* Store VALUE at ADDR in the inferior as a LEN-byte unsigned integer. */
117extern void write_memory_unsigned_integer (CORE_ADDR addr, int len,
e17a4113
UW
118 enum bfd_endian byte_order,
119 ULONGEST value);
c26e4683
JB
120
121/* Store VALUE at ADDR in the inferior as a LEN-byte unsigned integer. */
122extern void write_memory_signed_integer (CORE_ADDR addr, int len,
e17a4113 123 enum bfd_endian byte_order,
c26e4683 124 LONGEST value);
c906108c
SS
125\f
126/* Hook for `exec_file_command' command to call. */
127
5f08566b 128extern void (*deprecated_exec_file_display_hook) (const char *filename);
c906108c
SS
129
130/* Hook for "file_command", which is more useful than above
3a9a986f 131 (because it is invoked AFTER symbols are read, not before). */
c906108c 132
9a4105ab 133extern void (*deprecated_file_changed_hook) (char *filename);
c906108c 134
5f08566b 135extern void specify_exec_file_hook (void (*hook) (const char *filename));
c906108c 136
6c95b8df 137/* Binary File Diddler for the core file. */
c906108c
SS
138
139extern bfd *core_bfd;
c04ea773 140
c0edd9ed
JK
141extern struct target_ops *core_target;
142
c906108c
SS
143/* Whether to open exec and core files read-only or read-write. */
144
145extern int write_files;
146
a14ed312 147extern void core_file_command (char *filename, int from_tty);
c906108c 148
5f08566b 149extern void exec_file_attach (const char *filename, int from_tty);
c906108c 150
a10de604
GB
151/* If the filename of the main executable is unknown, attempt to
152 determine it. If a filename is determined, proceed as though
153 it was just specified with the "file" command. Do nothing if
154 the filename of the main executable is already known. */
155
156extern void exec_file_locate_attach (int pid, int from_tty);
157
1adeb98a 158extern void exec_file_clear (int from_tty);
c906108c 159
a14ed312 160extern void validate_files (void);
c906108c 161
c906108c
SS
162/* The current default bfd target. */
163
164extern char *gnutarget;
165
a14ed312 166extern void set_gnutarget (char *);
c906108c
SS
167
168/* Structure to keep track of core register reading functions for
169 various core file types. */
170
c5aa993b
JM
171struct core_fns
172 {
c906108c 173
2acceee2
JM
174 /* BFD flavour that a core file handler is prepared to read. This
175 can be used by the handler's core tasting function as a first
176 level filter to reject BFD's that don't have the right
0963b4bd 177 flavour. */
c906108c 178
c5aa993b 179 enum bfd_flavour core_flavour;
c906108c 180
2acceee2
JM
181 /* Core file handler function to call to recognize corefile
182 formats that BFD rejects. Some core file format just don't fit
183 into the BFD model, or may require other resources to identify
184 them, that simply aren't available to BFD (such as symbols from
185 another file). Returns nonzero if the handler recognizes the
0963b4bd 186 format, zero otherwise. */
2acceee2 187
507f3c78 188 int (*check_format) (bfd *);
2acceee2
JM
189
190 /* Core file handler function to call to ask if it can handle a
191 given core file format or not. Returns zero if it can't,
0963b4bd 192 nonzero otherwise. */
2acceee2 193
507f3c78 194 int (*core_sniffer) (struct core_fns *, bfd *);
2acceee2 195
9eefc95f
UW
196 /* Extract the register values out of the core file and supply them
197 into REGCACHE.
c906108c 198
c5aa993b
JM
199 CORE_REG_SECT points to the register values themselves, read into
200 memory.
c906108c 201
c5aa993b 202 CORE_REG_SIZE is the size of that area.
c906108c 203
de57eccd
JM
204 WHICH says which set of registers we are handling:
205 0 --- integer registers
206 2 --- floating-point registers, on machines where they are
207 discontiguous
208 3 --- extended floating-point registers, on machines where
209 these are present in yet a third area. (GNU/Linux uses
210 this to get at the SSE registers.)
c906108c 211
c5aa993b
JM
212 REG_ADDR is the offset from u.u_ar0 to the register values relative to
213 core_reg_sect. This is used with old-fashioned core files to locate the
214 registers in a large upage-plus-stack ".reg" section. Original upage
0963b4bd 215 address X is at location core_reg_sect+x+reg_addr. */
c906108c 216
9eefc95f
UW
217 void (*core_read_registers) (struct regcache *regcache,
218 char *core_reg_sect,
507f3c78
KB
219 unsigned core_reg_size,
220 int which, CORE_ADDR reg_addr);
c906108c 221
00e32a35
AC
222 /* Finds the next struct core_fns. They are allocated and
223 initialized in whatever module implements the functions pointed
224 to; an initializer calls deprecated_add_core_fns to add them to
225 the global chain. */
c906108c 226
c5aa993b 227 struct core_fns *next;
c906108c 228
c5aa993b 229 };
c906108c 230
00e32a35
AC
231/* NOTE: cagney/2004-04-05: Replaced by "regset.h" and
232 regset_from_core_section(). */
233extern void deprecated_add_core_fns (struct core_fns *cf);
a14ed312
KB
234extern int default_core_sniffer (struct core_fns *cf, bfd * abfd);
235extern int default_check_format (bfd * abfd);
c906108c 236
c5aa993b 237#endif /* !defined (GDBCORE_H) */
This page took 1.160003 seconds and 4 git commands to generate.