diff options
author | John Gilmore <gnu@cygnus> | 1991-09-13 07:22:01 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-09-13 07:22:01 +0000 |
commit | 7730bd5acd72be89de4d1d5a956d46e691c8b745 (patch) | |
tree | 5f957054c6cfef011efb464de73a14b97ff6fc92 /gdb/exec.c | |
parent | f74ff50fabdbee184c32a668bf62f8fa42926739 (diff) | |
download | gdb-7730bd5acd72be89de4d1d5a956d46e691c8b745.zip gdb-7730bd5acd72be89de4d1d5a956d46e691c8b745.tar.gz gdb-7730bd5acd72be89de4d1d5a956d46e691c8b745.tar.bz2 |
* exec.c (exec_command): If NEED_TEXT_START_END, define the
variables and set them based on the exec file.
* am29k-tdep.c: declare text_start.
* valops.c (call_function_by_hand): declare text_end.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r-- | gdb/exec.c | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -50,6 +50,13 @@ bfd *exec_bfd = NULL; int write_files = 0; +/* Text start and end addresses (KLUDGE) if needed */ + +#if NEED_TEXT_START_END +CORE_ADDR text_start = 0; +CORE_ADDR text_end = 0; +#endif + /* Forward decl */ extern struct target_ops exec_ops; @@ -137,6 +144,18 @@ exec_file_command (filename, from_tty) error ("Can't find the file sections in `%s': %s", exec_bfd->filename, bfd_errmsg (bfd_error)); +#if NEED_TEXT_START_END + /* This is a KLUDGE (FIXME) because a few places in a few ports + (29K springs to mind) need this info for now. */ + { + struct section_table *p; + for (p = exec_ops.sections; p < exec_ops.sections_end; p++) + if (!strcmp (".text", bfd_section_name (p->bfd, p->sec_ptr)) + text_start = p->addr; + text_end = p->endaddr; + } +#endif + validate_files (); push_target (&exec_ops); |