Commit | Line | Data |
---|---|---|
4646aa9d AC |
1 | /* Work with executable files, for GDB, the GNU debugger. |
2 | ||
3666a048 | 3 | Copyright (C) 2003-2021 Free Software Foundation, Inc. |
4646aa9d AC |
4 | |
5 | This file is part of GDB. | |
6 | ||
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 |
4646aa9d AC |
10 | (at your option) any later version. |
11 | ||
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. | |
16 | ||
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/>. */ |
4646aa9d AC |
19 | |
20 | #ifndef EXEC_H | |
21 | #define EXEC_H | |
22 | ||
4de283e4 | 23 | #include "target.h" |
d55e5aa6 | 24 | #include "progspace.h" |
4de283e4 | 25 | #include "memrange.h" |
ecf45d2c | 26 | #include "symfile-add-flags.h" |
4646aa9d | 27 | |
0542c86d | 28 | struct target_section; |
4646aa9d AC |
29 | struct target_ops; |
30 | struct bfd; | |
76ad5e1e | 31 | struct objfile; |
4646aa9d | 32 | |
2d128614 | 33 | /* Builds a section table, given args BFD. */ |
4646aa9d | 34 | |
2d128614 | 35 | extern target_section_table build_section_table (struct bfd *); |
4646aa9d | 36 | |
5b6d1e4f PA |
37 | /* The current inferior is a child vforked and its program space is |
38 | shared with its parent. This pushes the exec target on the | |
39 | current/child inferior's target stack if there are sections in the | |
40 | program space's section table. */ | |
41 | ||
42 | extern void exec_on_vfork (); | |
43 | ||
1ca49d37 YQ |
44 | /* Read from mappable read-only sections of BFD executable files. |
45 | Return TARGET_XFER_OK, if read is successful. Return | |
46 | TARGET_XFER_EOF if read is done. Return TARGET_XFER_E_IO | |
47 | otherwise. */ | |
48 | ||
49 | extern enum target_xfer_status | |
50 | exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset, | |
51 | ULONGEST len, ULONGEST *xfered_len); | |
52 | ||
4b477ade PA |
53 | /* Read or write from mappable sections of BFD executable files. |
54 | ||
55 | Request to transfer up to LEN 8-bit bytes of the target sections | |
348f8c02 PA |
56 | defined by SECTIONS and SECTIONS_END. The OFFSET specifies the |
57 | starting address. | |
e56cb451 KB |
58 | |
59 | The MATCH_CB predicate is optional; when provided it will be called | |
60 | for each section under consideration. When MATCH_CB evaluates as | |
61 | true, the section remains under consideration; a false result | |
62 | removes it from consideration for performing the memory transfers | |
63 | noted above. See memory_xfer_partial_1() in target.c for an | |
64 | example. | |
348f8c02 | 65 | |
4b477ade PA |
66 | Return the number of bytes actually transfered, or zero when no |
67 | data is available for the requested range. | |
348f8c02 PA |
68 | |
69 | This function is intended to be used from target_xfer_partial | |
70 | implementations. See target_read and target_write for more | |
71 | information. | |
72 | ||
73 | One, and only one, of readbuf or writebuf must be non-NULL. */ | |
74 | ||
9b409511 YQ |
75 | extern enum target_xfer_status |
76 | section_table_xfer_memory_partial (gdb_byte *, | |
77 | const gdb_byte *, | |
78 | ULONGEST, ULONGEST, ULONGEST *, | |
bb2a6777 | 79 | const target_section_table &, |
e56cb451 KB |
80 | gdb::function_view<bool |
81 | (const struct target_section *)> match_cb | |
dda83cd7 | 82 | = nullptr); |
348f8c02 | 83 | |
1ee79381 YQ |
84 | /* Read from mappable read-only sections of BFD executable files. |
85 | Similar to exec_read_partial_read_only, but return | |
bc113b4e | 86 | TARGET_XFER_UNAVAILABLE if data is unavailable. */ |
1ee79381 YQ |
87 | |
88 | extern enum target_xfer_status | |
89 | section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset, | |
90 | ULONGEST len, ULONGEST *xfered_len); | |
91 | ||
c1bd25fd DJ |
92 | /* Set the loaded address of a section. */ |
93 | extern void exec_set_section_address (const char *, int, CORE_ADDR); | |
94 | ||
07b82ea5 PA |
95 | /* Prints info about all sections defined in the TABLE. ABFD is |
96 | special cased --- it's filename is omitted; if it is the executable | |
97 | file, its entry point is printed. */ | |
98 | ||
d7a78e5c | 99 | extern void print_section_info (target_section_table *table, |
07b82ea5 PA |
100 | bfd *abfd); |
101 | ||
ecf45d2c SL |
102 | /* Helper function that attempts to open the symbol file at EXEC_FILE_HOST. |
103 | If successful, it proceeds to add the symbol file as the main symbol file. | |
104 | ||
105 | ADD_FLAGS is passed on to the function adding the symbol file. */ | |
106 | extern void try_open_exec_file (const char *exec_file_host, | |
107 | struct inferior *inf, | |
108 | symfile_add_flags add_flags); | |
4646aa9d | 109 | #endif |