2003-10-23 03:01:55 +00:00
|
|
|
/* Work with executable files, for GDB, the GNU debugger.
|
|
|
|
|
2009-01-03 05:58:08 +00:00
|
|
|
Copyright (C) 2003, 2007, 2008, 2009 Free Software Foundation, Inc.
|
2003-10-23 03:01:55 +00:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 18:08:50 +00:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-10-23 03:01:55 +00:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 18:08:50 +00:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2003-10-23 03:01:55 +00:00
|
|
|
|
|
|
|
#ifndef EXEC_H
|
|
|
|
#define EXEC_H
|
|
|
|
|
|
|
|
#include "target.h"
|
|
|
|
|
2009-05-22 23:49:14 +00:00
|
|
|
struct target_section;
|
2003-10-23 03:01:55 +00:00
|
|
|
struct target_ops;
|
|
|
|
struct bfd;
|
|
|
|
|
2004-01-12 20:33:21 +00:00
|
|
|
extern struct target_ops exec_ops;
|
2003-10-23 03:01:55 +00:00
|
|
|
|
|
|
|
/* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
|
|
|
|
Returns 0 if OK, 1 on error. */
|
|
|
|
|
2009-05-22 23:49:14 +00:00
|
|
|
extern int build_section_table (struct bfd *, struct target_section **,
|
|
|
|
struct target_section **);
|
2003-10-23 03:01:55 +00:00
|
|
|
|
2009-05-22 03:01:45 +00:00
|
|
|
/* Request to transfer up to LEN 8-bit bytes of the target sections
|
|
|
|
defined by SECTIONS and SECTIONS_END. The OFFSET specifies the
|
|
|
|
starting address.
|
|
|
|
|
|
|
|
Return the number of bytes actually transfered, or non-positive
|
|
|
|
when no data is available for the requested range.
|
|
|
|
|
|
|
|
This function is intended to be used from target_xfer_partial
|
|
|
|
implementations. See target_read and target_write for more
|
|
|
|
information.
|
|
|
|
|
|
|
|
One, and only one, of readbuf or writebuf must be non-NULL. */
|
|
|
|
|
|
|
|
extern int section_table_xfer_memory_partial (gdb_byte *, const gdb_byte *,
|
|
|
|
ULONGEST, LONGEST,
|
2009-05-22 23:49:14 +00:00
|
|
|
struct target_section *,
|
|
|
|
struct target_section *);
|
2009-05-22 03:01:45 +00:00
|
|
|
|
2005-06-13 16:15:40 +00:00
|
|
|
/* Set the loaded address of a section. */
|
|
|
|
extern void exec_set_section_address (const char *, int, CORE_ADDR);
|
|
|
|
|
2003-10-23 03:01:55 +00:00
|
|
|
#endif
|