]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/exec.h
build_section_table cannot fail
[thirdparty/binutils-gdb.git] / gdb / exec.h
CommitLineData
4646aa9d
AC
1/* Work with executable files, for GDB, the GNU debugger.
2
b811d2c2 3 Copyright (C) 2003-2020 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 28struct target_section;
4646aa9d
AC
29struct target_ops;
30struct bfd;
76ad5e1e 31struct objfile;
4646aa9d 32
6c95b8df
PA
33#define exec_bfd current_program_space->ebfd
34#define exec_bfd_mtime current_program_space->ebfd_mtime
1f0c4988 35#define exec_filename current_program_space->pspace_exec_filename
6c95b8df 36
2d128614 37/* Builds a section table, given args BFD. */
4646aa9d 38
2d128614 39extern target_section_table build_section_table (struct bfd *);
4646aa9d 40
a5b1fd27 41/* Remove all entries from TABLE. */
07b82ea5 42
a5b1fd27 43extern void clear_section_table (struct target_section_table *table);
07b82ea5 44
5b6d1e4f
PA
45/* The current inferior is a child vforked and its program space is
46 shared with its parent. This pushes the exec target on the
47 current/child inferior's target stack if there are sections in the
48 program space's section table. */
49
50extern void exec_on_vfork ();
51
1ca49d37
YQ
52/* Read from mappable read-only sections of BFD executable files.
53 Return TARGET_XFER_OK, if read is successful. Return
54 TARGET_XFER_EOF if read is done. Return TARGET_XFER_E_IO
55 otherwise. */
56
57extern enum target_xfer_status
58 exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset,
59 ULONGEST len, ULONGEST *xfered_len);
60
4b477ade
PA
61/* Read or write from mappable sections of BFD executable files.
62
63 Request to transfer up to LEN 8-bit bytes of the target sections
348f8c02
PA
64 defined by SECTIONS and SECTIONS_END. The OFFSET specifies the
65 starting address.
e56cb451
KB
66
67 The MATCH_CB predicate is optional; when provided it will be called
68 for each section under consideration. When MATCH_CB evaluates as
69 true, the section remains under consideration; a false result
70 removes it from consideration for performing the memory transfers
71 noted above. See memory_xfer_partial_1() in target.c for an
72 example.
348f8c02 73
4b477ade
PA
74 Return the number of bytes actually transfered, or zero when no
75 data is available for the requested range.
348f8c02
PA
76
77 This function is intended to be used from target_xfer_partial
78 implementations. See target_read and target_write for more
79 information.
80
81 One, and only one, of readbuf or writebuf must be non-NULL. */
82
9b409511
YQ
83extern enum target_xfer_status
84 section_table_xfer_memory_partial (gdb_byte *,
85 const gdb_byte *,
86 ULONGEST, ULONGEST, ULONGEST *,
bb2a6777 87 const target_section_table &,
e56cb451
KB
88 gdb::function_view<bool
89 (const struct target_section *)> match_cb
90 = nullptr);
348f8c02 91
1ee79381
YQ
92/* Read from mappable read-only sections of BFD executable files.
93 Similar to exec_read_partial_read_only, but return
bc113b4e 94 TARGET_XFER_UNAVAILABLE if data is unavailable. */
1ee79381
YQ
95
96extern enum target_xfer_status
97 section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset,
98 ULONGEST len, ULONGEST *xfered_len);
99
c1bd25fd
DJ
100/* Set the loaded address of a section. */
101extern void exec_set_section_address (const char *, int, CORE_ADDR);
102
046ac79f 103/* Remove all target sections owned by OWNER. */
07b82ea5 104
046ac79f 105extern void remove_target_sections (void *owner);
07b82ea5
PA
106
107/* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
108 current set of target sections. */
109
046ac79f 110extern void add_target_sections (void *owner,
bb2a6777 111 const target_section_table &sections);
07b82ea5 112
76ad5e1e
NB
113/* Add the sections of OBJFILE to the current set of target sections.
114 * OBJFILE owns the new target sections. */
115
116extern void add_target_sections_of_objfile (struct objfile *objfile);
117
07b82ea5
PA
118/* Prints info about all sections defined in the TABLE. ABFD is
119 special cased --- it's filename is omitted; if it is the executable
120 file, its entry point is printed. */
121
122extern void print_section_info (struct target_section_table *table,
123 bfd *abfd);
124
6c95b8df 125extern void exec_close (void);
07b82ea5 126
ecf45d2c
SL
127/* Helper function that attempts to open the symbol file at EXEC_FILE_HOST.
128 If successful, it proceeds to add the symbol file as the main symbol file.
129
130 ADD_FLAGS is passed on to the function adding the symbol file. */
131extern void try_open_exec_file (const char *exec_file_host,
132 struct inferior *inf,
133 symfile_add_flags add_flags);
4646aa9d 134#endif