]>
Commit | Line | Data |
---|---|---|
4646aa9d AC |
1 | /* Work with executable files, for GDB, the GNU debugger. |
2 | ||
ecd75fc8 | 3 | Copyright (C) 2003-2014 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 | ||
23 | #include "target.h" | |
6c95b8df | 24 | #include "progspace.h" |
e6ca34fc | 25 | #include "memrange.h" |
4646aa9d | 26 | |
0542c86d | 27 | struct target_section; |
4646aa9d AC |
28 | struct target_ops; |
29 | struct bfd; | |
76ad5e1e | 30 | struct objfile; |
4646aa9d | 31 | |
954a7fba | 32 | extern struct target_ops exec_ops; |
4646aa9d | 33 | |
6c95b8df PA |
34 | #define exec_bfd current_program_space->ebfd |
35 | #define exec_bfd_mtime current_program_space->ebfd_mtime | |
1f0c4988 | 36 | #define exec_filename current_program_space->pspace_exec_filename |
6c95b8df | 37 | |
4646aa9d AC |
38 | /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR. |
39 | Returns 0 if OK, 1 on error. */ | |
40 | ||
0542c86d PA |
41 | extern int build_section_table (struct bfd *, struct target_section **, |
42 | struct target_section **); | |
4646aa9d | 43 | |
07b82ea5 PA |
44 | /* Resize the section table held by TABLE, by NUM_ADDED. Returns the |
45 | old size. */ | |
46 | ||
47 | extern int resize_section_table (struct target_section_table *, int); | |
48 | ||
e6ca34fc PA |
49 | /* Appends all read-only memory ranges found in the target section |
50 | table defined by SECTIONS and SECTIONS_END, starting at (and | |
51 | intersected with) MEMADDR for LEN bytes. Returns the augmented | |
52 | VEC. */ | |
53 | ||
54 | extern VEC(mem_range_s) * | |
55 | section_table_available_memory (VEC(mem_range_s) *ranges, | |
424447ee | 56 | CORE_ADDR memaddr, ULONGEST len, |
e6ca34fc PA |
57 | struct target_section *sections, |
58 | struct target_section *sections_end); | |
59 | ||
4b477ade PA |
60 | /* Read or write from mappable sections of BFD executable files. |
61 | ||
62 | Request to transfer up to LEN 8-bit bytes of the target sections | |
348f8c02 PA |
63 | defined by SECTIONS and SECTIONS_END. The OFFSET specifies the |
64 | starting address. | |
4b477ade PA |
65 | If SECTION_NAME is not NULL, only access sections with that same |
66 | name. | |
348f8c02 | 67 | |
4b477ade PA |
68 | Return the number of bytes actually transfered, or zero when no |
69 | data is available for the requested range. | |
348f8c02 PA |
70 | |
71 | This function is intended to be used from target_xfer_partial | |
72 | implementations. See target_read and target_write for more | |
73 | information. | |
74 | ||
75 | One, and only one, of readbuf or writebuf must be non-NULL. */ | |
76 | ||
9b409511 YQ |
77 | extern enum target_xfer_status |
78 | section_table_xfer_memory_partial (gdb_byte *, | |
79 | const gdb_byte *, | |
80 | ULONGEST, ULONGEST, ULONGEST *, | |
81 | struct target_section *, | |
82 | struct target_section *, | |
83 | const char *); | |
348f8c02 | 84 | |
c1bd25fd DJ |
85 | /* Set the loaded address of a section. */ |
86 | extern void exec_set_section_address (const char *, int, CORE_ADDR); | |
87 | ||
046ac79f | 88 | /* Remove all target sections owned by OWNER. */ |
07b82ea5 | 89 | |
046ac79f | 90 | extern void remove_target_sections (void *owner); |
07b82ea5 PA |
91 | |
92 | /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the | |
93 | current set of target sections. */ | |
94 | ||
046ac79f | 95 | extern void add_target_sections (void *owner, |
ed9eebaf | 96 | struct target_section *sections, |
07b82ea5 PA |
97 | struct target_section *sections_end); |
98 | ||
76ad5e1e NB |
99 | /* Add the sections of OBJFILE to the current set of target sections. |
100 | * OBJFILE owns the new target sections. */ | |
101 | ||
102 | extern void add_target_sections_of_objfile (struct objfile *objfile); | |
103 | ||
07b82ea5 PA |
104 | /* Prints info about all sections defined in the TABLE. ABFD is |
105 | special cased --- it's filename is omitted; if it is the executable | |
106 | file, its entry point is printed. */ | |
107 | ||
108 | extern void print_section_info (struct target_section_table *table, | |
109 | bfd *abfd); | |
110 | ||
6c95b8df | 111 | extern void exec_close (void); |
07b82ea5 | 112 | |
4646aa9d | 113 | #endif |