GDB (xrefs)
/tmp/gdb-8.1/gdb/exec.h
Go to the documentation of this file.
1 /* Work with executable files, for GDB, the GNU debugger.
2 
3  Copyright (C) 2003-2018 Free Software Foundation, Inc.
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
9  the Free Software Foundation; either version 3 of the License, or
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
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 #ifndef EXEC_H
21 #define EXEC_H
22 
23 #include "target.h"
24 #include "progspace.h"
25 #include "memrange.h"
26 #include "symfile-add-flags.h"
27 
28 struct target_section;
29 struct target_ops;
30 struct bfd;
31 struct objfile;
32 
33 #define exec_bfd current_program_space->ebfd
34 #define exec_bfd_mtime current_program_space->ebfd_mtime
35 #define exec_filename current_program_space->pspace_exec_filename
36 
37 /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
38  Returns 0 if OK, 1 on error. */
39 
40 extern int build_section_table (struct bfd *, struct target_section **,
41  struct target_section **);
42 
43 /* Remove all entries from TABLE. */
44 
45 extern void clear_section_table (struct target_section_table *table);
46 
47 /* Read from mappable read-only sections of BFD executable files.
48  Return TARGET_XFER_OK, if read is successful. Return
49  TARGET_XFER_EOF if read is done. Return TARGET_XFER_E_IO
50  otherwise. */
51 
52 extern enum target_xfer_status
54  ULONGEST len, ULONGEST *xfered_len);
55 
56 /* Read or write from mappable sections of BFD executable files.
57 
58  Request to transfer up to LEN 8-bit bytes of the target sections
59  defined by SECTIONS and SECTIONS_END. The OFFSET specifies the
60  starting address.
61  If SECTION_NAME is not NULL, only access sections with that same
62  name.
63 
64  Return the number of bytes actually transfered, or zero when no
65  data is available for the requested range.
66 
67  This function is intended to be used from target_xfer_partial
68  implementations. See target_read and target_write for more
69  information.
70 
71  One, and only one, of readbuf or writebuf must be non-NULL. */
72 
73 extern enum target_xfer_status
75  const gdb_byte *,
77  struct target_section *,
78  struct target_section *,
79  const char *);
80 
81 /* Read from mappable read-only sections of BFD executable files.
82  Similar to exec_read_partial_read_only, but return
83  TARGET_XFER_UNAVAILABLE if data is unavailable. */
84 
85 extern enum target_xfer_status
87  ULONGEST len, ULONGEST *xfered_len);
88 
89 /* Set the loaded address of a section. */
90 extern void exec_set_section_address (const char *, int, CORE_ADDR);
91 
92 /* Remove all target sections owned by OWNER. */
93 
94 extern void remove_target_sections (void *owner);
95 
96 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
97  current set of target sections. */
98 
99 extern void add_target_sections (void *owner,
100  struct target_section *sections,
101  struct target_section *sections_end);
102 
103 /* Add the sections of OBJFILE to the current set of target sections.
104  * OBJFILE owns the new target sections. */
105 
106 extern void add_target_sections_of_objfile (struct objfile *objfile);
107 
108 /* Prints info about all sections defined in the TABLE. ABFD is
109  special cased --- it's filename is omitted; if it is the executable
110  file, its entry point is printed. */
111 
112 extern void print_section_info (struct target_section_table *table,
113  bfd *abfd);
114 
115 extern void exec_close (void);
116 
117 /* Helper function that attempts to open the symbol file at EXEC_FILE_HOST.
118  If successful, it proceeds to add the symbol file as the main symbol file.
119 
120  ADD_FLAGS is passed on to the function adding the symbol file. */
121 extern void try_open_exec_file (const char *exec_file_host,
122  struct inferior *inf,
123  symfile_add_flags add_flags);
124 #endif
bfd_vma CORE_ADDR
Definition: common-types.h:41
void add_target_sections(void *owner, struct target_section *sections, struct target_section *sections_end)
Definition: exec.c:531
void remove_target_sections(void *owner)
Definition: exec.c:607
void exec_close(void)
Definition: exec.c:83
enum target_xfer_status exec_read_partial_read_only(gdb_byte *readbuf, ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
Definition: exec.c:650
enum target_xfer_status section_table_xfer_memory_partial(gdb_byte *, const gdb_byte *, ULONGEST, ULONGEST, ULONGEST *, struct target_section *, struct target_section *, const char *)
Definition: exec.c:776
void add_target_sections_of_objfile(struct objfile *objfile)
Definition: exec.c:561
target_xfer_status
Definition: target.h:206
struct obj_section * sections
Definition: objfiles.h:423
Definition: gnu-nat.c:174
void clear_section_table(struct target_section_table *table)
Definition: exec.c:472
enum target_xfer_status section_table_read_available_memory(gdb_byte *readbuf, ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
Definition: exec.c:736
bfd_byte gdb_byte
Definition: common-types.h:38
int offset
Definition: agent.c:65
void try_open_exec_file(const char *exec_file_host, struct inferior *inf, symfile_add_flags add_flags)
Definition: exec.c:133
unsigned long long ULONGEST
Definition: common-types.h:53
void exec_set_section_address(const char *, int, CORE_ADDR)
Definition: exec.c:1002
void print_section_info(struct target_section_table *table, bfd *abfd)
Definition: exec.c:878
struct obj_section * sections_end
Definition: objfiles.h:424
int build_section_table(struct bfd *, struct target_section **, struct target_section **)
Definition: exec.c:509