diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-06-18 15:46:38 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-06-18 15:46:38 +0000 |
commit | 31d99776c73d6fca13163da59c852b0fa99f89b8 (patch) | |
tree | 4dace09d40a34a22c8a02adcc688ae8c991973bb /gdb/doc | |
parent | d856f2ddfa3d037987610ecc0edbf75f31296971 (diff) | |
download | gdb-31d99776c73d6fca13163da59c852b0fa99f89b8.zip gdb-31d99776c73d6fca13163da59c852b0fa99f89b8.tar.gz gdb-31d99776c73d6fca13163da59c852b0fa99f89b8.tar.bz2 |
* coffread.c (coff_sym_fns): Add default_symfile_segments.
* dbxread.c (start_psymtab): Check HAVE_ELF.
(aout_sym_fns): Likewise.
* elfread.c (elf_symfile_segments): New.
(elf_sym_fns): Add elf_symfile_segments.
* mipsread.c (ecoff_sym_fns): Add default_symfile_segments.
* remote.c (get_offsets): Use symfile_map_offsets_to_segments.
Skip if there is no symfile_objfile. Handle TextSeg and DataSeg.
* somread.c (som_sym_fns): Use default_symfile_segments.
* symfile.c (find_sym_fns): Take a BFD and return the sym_fns.
(init_objfile_sect_indices): Call symfile_find_segment_sections.
(default_symfile_segments): New function.
(syms_from_objfile): Update call to find_sym_fns.
(symfile_get_segment_data, free_symfile_segment_data): New.
(symfile_map_offsets_to_segments): New.
(symfile_find_segment_sections): New.
* symfile.h (struct symfile_segment_data): New.
(struct sym_fns): Add sym_segments.
(default_symfile_segments, symfile_get_segment_data)
(free_symfile_segment_data): New prototypes.
(symfile_map_offsets_to_segments): Likewise.
* xcoffread.c (xcoff_sym_fns): Add default_symfile_segments.
* Makefile.in (COMMON_OBS): Remove elfread.o.
(elf_internal_h): New.
(elfread.o): Update.
* configure.ac: Add elfread.o to COMMON_OBS if bfd/elf.o was
compiled.
* config.in, configure: Regenerated.
* NEWS: Mention qOffsets changes.
* gdb.texinfo (General Query Packets): Document qOffsets changes.
* Makefile.def: Add dependency from configure-gdb to all-bfd.
* Makefile.in: Regenerated.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 27 |
2 files changed, 26 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 8f7e732..a3192a3 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2007-06-18 Daniel Jacobowitz <dan@codesourcery.com> + + * gdb.texinfo (General Query Packets): Document qOffsets changes. + 2007-06-13 Daniel Jacobowitz <dan@codesourcery.com> * gdb.texinfo (Target Description Format): Add version attribute diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 230a6ca..3772786 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -23433,14 +23433,31 @@ digits). See @code{remote.c:parse_threadlist_response()}. @item qOffsets @cindex section offsets, remote request @cindex @samp{qOffsets} packet -Get section offsets that the target used when re-locating the downloaded -image. @emph{Note: while a @code{Bss} offset is included in the -response, @value{GDBN} ignores this and instead applies the @code{Data} -offset to the @code{Bss} section.} +Get section offsets that the target used when relocating the downloaded +image. Reply: @table @samp -@item Text=@var{xxx};Data=@var{yyy};Bss=@var{zzz} +@item Text=@var{xxx};Data=@var{yyy}@r{[};Bss=@var{zzz}@r{]} +Relocate the @code{Text} section by @var{xxx} from its original address. +Relocate the @code{Data} section by @var{yyy} from its original address. +If the object file format provides segment information (e.g.@: @sc{elf} +@samp{PT_LOAD} program headers), @value{GDBN} will relocate entire +segments by the supplied offsets. + +@emph{Note: while a @code{Bss} offset may be included in the response, +@value{GDBN} ignores this and instead applies the @code{Data} offset +to the @code{Bss} section.} + +@item TextSeg=@var{xxx}@r{[};DataSeg=@var{yyy}@r{]} +Relocate the first segment of the object file, which conventionally +contains program code, to a starting address of @var{xxx}. If +@samp{DataSeg} is specified, relocate the second segment, which +conventionally contains modifiable data, to a starting address of +@var{yyy}. @value{GDBN} will report an error if the object file +does not contain segment information, or does not contain at least +as many segments as mentioned in the reply. Extra segments are +kept at fixed offsets relative to the last relocated segment. @end table @item qP @var{mode} @var{threadid} |