]>
Commit | Line | Data |
---|---|---|
4646aa9d AC |
1 | /* Work with executable files, for GDB, the GNU debugger. |
2 | ||
0b302171 | 3 | Copyright (C) 2003, 2007-2012 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; | |
30 | ||
954a7fba | 31 | extern struct target_ops exec_ops; |
4646aa9d | 32 | |
6c95b8df PA |
33 | #define exec_bfd current_program_space->ebfd |
34 | #define exec_bfd_mtime current_program_space->ebfd_mtime | |
35 | ||
4646aa9d AC |
36 | /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR. |
37 | Returns 0 if OK, 1 on error. */ | |
38 | ||
0542c86d PA |
39 | extern int build_section_table (struct bfd *, struct target_section **, |
40 | struct target_section **); | |
4646aa9d | 41 | |
07b82ea5 PA |
42 | /* Resize the section table held by TABLE, by NUM_ADDED. Returns the |
43 | old size. */ | |
44 | ||
45 | extern int resize_section_table (struct target_section_table *, int); | |
46 | ||
e6ca34fc PA |
47 | /* Appends all read-only memory ranges found in the target section |
48 | table defined by SECTIONS and SECTIONS_END, starting at (and | |
49 | intersected with) MEMADDR for LEN bytes. Returns the augmented | |
50 | VEC. */ | |
51 | ||
52 | extern VEC(mem_range_s) * | |
53 | section_table_available_memory (VEC(mem_range_s) *ranges, | |
424447ee | 54 | CORE_ADDR memaddr, ULONGEST len, |
e6ca34fc PA |
55 | struct target_section *sections, |
56 | struct target_section *sections_end); | |
57 | ||
4b477ade PA |
58 | /* Read or write from mappable sections of BFD executable files. |
59 | ||
60 | Request to transfer up to LEN 8-bit bytes of the target sections | |
348f8c02 PA |
61 | defined by SECTIONS and SECTIONS_END. The OFFSET specifies the |
62 | starting address. | |
4b477ade PA |
63 | If SECTION_NAME is not NULL, only access sections with that same |
64 | name. | |
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 | ||
75 | extern int section_table_xfer_memory_partial (gdb_byte *, const gdb_byte *, | |
76 | ULONGEST, LONGEST, | |
0542c86d | 77 | struct target_section *, |
07b82ea5 PA |
78 | struct target_section *, |
79 | const char *); | |
348f8c02 | 80 | |
c1bd25fd DJ |
81 | /* Set the loaded address of a section. */ |
82 | extern void exec_set_section_address (const char *, int, CORE_ADDR); | |
83 | ||
07b82ea5 PA |
84 | /* Remove all target sections taken from ABFD. */ |
85 | ||
86 | extern void remove_target_sections (bfd *abfd); | |
87 | ||
88 | /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the | |
89 | current set of target sections. */ | |
90 | ||
91 | extern void add_target_sections (struct target_section *sections, | |
92 | struct target_section *sections_end); | |
93 | ||
94 | /* Prints info about all sections defined in the TABLE. ABFD is | |
95 | special cased --- it's filename is omitted; if it is the executable | |
96 | file, its entry point is printed. */ | |
97 | ||
98 | extern void print_section_info (struct target_section_table *table, | |
99 | bfd *abfd); | |
100 | ||
6c95b8df | 101 | extern void exec_close (void); |
07b82ea5 | 102 | |
4646aa9d | 103 | #endif |