* regcache.c (registers_changed_ptid): Don't explictly always
[deliverable/binutils-gdb.git] / gdb / exec.h
CommitLineData
4646aa9d
AC
1/* Work with executable files, for GDB, the GNU debugger.
2
7b6bb8da
JB
3 Copyright (C) 2003, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
4646aa9d
AC
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
4646aa9d
AC
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4646aa9d
AC
20
21#ifndef EXEC_H
22#define EXEC_H
23
24#include "target.h"
6c95b8df 25#include "progspace.h"
4646aa9d 26
0542c86d 27struct target_section;
4646aa9d
AC
28struct target_ops;
29struct bfd;
30
954a7fba 31extern 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
39extern 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
45extern int resize_section_table (struct target_section_table *, int);
46
4b477ade
PA
47/* Read or write from mappable sections of BFD executable files.
48
49 Request to transfer up to LEN 8-bit bytes of the target sections
348f8c02
PA
50 defined by SECTIONS and SECTIONS_END. The OFFSET specifies the
51 starting address.
4b477ade
PA
52 If SECTION_NAME is not NULL, only access sections with that same
53 name.
348f8c02 54
4b477ade
PA
55 Return the number of bytes actually transfered, or zero when no
56 data is available for the requested range.
348f8c02
PA
57
58 This function is intended to be used from target_xfer_partial
59 implementations. See target_read and target_write for more
60 information.
61
62 One, and only one, of readbuf or writebuf must be non-NULL. */
63
64extern int section_table_xfer_memory_partial (gdb_byte *, const gdb_byte *,
65 ULONGEST, LONGEST,
0542c86d 66 struct target_section *,
07b82ea5
PA
67 struct target_section *,
68 const char *);
348f8c02 69
c1bd25fd
DJ
70/* Set the loaded address of a section. */
71extern void exec_set_section_address (const char *, int, CORE_ADDR);
72
07b82ea5
PA
73/* Remove all target sections taken from ABFD. */
74
75extern void remove_target_sections (bfd *abfd);
76
77/* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
78 current set of target sections. */
79
80extern void add_target_sections (struct target_section *sections,
81 struct target_section *sections_end);
82
83/* Prints info about all sections defined in the TABLE. ABFD is
84 special cased --- it's filename is omitted; if it is the executable
85 file, its entry point is printed. */
86
87extern void print_section_info (struct target_section_table *table,
88 bfd *abfd);
89
6c95b8df 90extern void exec_close (void);
07b82ea5 91
4646aa9d 92#endif
This page took 0.752825 seconds and 4 git commands to generate.