2013-10-31 15:18:10 +01:00
|
|
|
|
2013-11-20 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Caching Target Data): Update doc for
|
|
|
|
|
per-address-space dcache.
|
|
|
|
|
|
2013-10-31 13:49:49 +01:00
|
|
|
|
2013-11-20 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Data): Rename menu item.
|
|
|
|
|
(Caching Remote Data): Rename to ...
|
|
|
|
|
(Caching Target Data): ... it. Update.
|
|
|
|
|
|
2013-11-14 11:57:01 +01:00
|
|
|
|
2013-11-18 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Document the new
|
|
|
|
|
"language-option" entry in the output of the "-list-features"
|
|
|
|
|
command.
|
|
|
|
|
|
2013-11-04 20:38:10 +01:00
|
|
|
|
2013-11-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Variables): Note gdb rules for ambiguous cases.
|
|
|
|
|
Add example.
|
|
|
|
|
|
2013-11-14 22:03:06 +01:00
|
|
|
|
2013-11-14 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): Replace "as" with "in".
|
|
|
|
|
|
GDB/MI: Add new "--language LANG" command option.
Frontend sometimes need to evaluate expressions that are
language-specific. For instance, Eclipse uses the following
expression to determine the size of an address on the target:
-data-evaluate-expression "sizeof (void*)"
Unfortunately, if the main of the program being debugged is not C,
this may not work. For instance, if the main is in Ada, you get...
-data-evaluate-expression "sizeof (void*)"
^error,msg="No definition of \"sizeof\" in current context."
... and apparently decides to stop the debugging session as a result.
The recommendation sent was to specifically set the language to C
before trying to evaluate the expression. Something such as:
1. save current language
2. set language c
3. -data-evaluate-expression "sizeof (void*)"
4. Restore language
This has the same disadvantages as the ones outlined in the "Context
Management" section of the GDB/MI documentation regarding setting
the current thread or the current frame, thus recommending the use of
general command-line switches such as --frame, or --thread instead.
This patch follows the same steps for the language, adding a similar
new command option: --language LANG. Example of use:
-data-evaluate-expression --language c "sizeof (void*)"
^done,value="4"
gdb/ChangeLog:
* mi/mi-parse.h (struct mi_parse) <language>: New field.
* mi/mi-main.c (mi_cmd_execute): Temporarily set language to
PARSE->LANGUAGE during command execution, if set.
* mi/mi-parse.c: Add "language.h" #include.
(mi_parse): Add parsing of "--language" command option.
* NEWS: Add entry mentioning the new "--language" command option.
gdb/testsuite/ChangeLog:
* gdb.mi/mi-language.exp: New file.
gdb/doc/ChangeLog:
* gdb.texinfo (Show): Add xref anchor for "show language" command.
(Context management): Place current subsection text into its own
subsubsection. Add new subsubsection describing the "--language"
command option.
2013-11-11 06:21:44 +01:00
|
|
|
|
2013-11-14 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Show): Add xref anchor for "show language" command.
|
|
|
|
|
(Context management): Place current subsection text into its own
|
|
|
|
|
subsubsection. Add new subsubsection describing the "--language"
|
|
|
|
|
command option.
|
|
|
|
|
|
2013-11-12 10:43:44 +01:00
|
|
|
|
2013-11-13 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Delete
|
|
|
|
|
the documentation of "info-ada-exceptions" in the output
|
|
|
|
|
of the "-list-features" command. Add the documentation
|
|
|
|
|
of the "ada-exception" entry instead.
|
|
|
|
|
|
2013-11-12 04:31:04 +01:00
|
|
|
|
2013-11-12 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
2013-11-12 10:43:44 +01:00
|
|
|
|
|
2013-11-12 04:31:04 +01:00
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Fix the first
|
|
|
|
|
word of a couple of sentences to start with a capital letter.
|
|
|
|
|
|
2013-11-08 11:21:14 +01:00
|
|
|
|
2013-11-12 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ada): Add entry in menu for new "Ada Exceptions" node.
|
|
|
|
|
(Ada Exceptions): New node.
|
|
|
|
|
(GDB/MI): Add entry in menu for new "GDB/MI Ada Exceptions
|
|
|
|
|
Commands" node.
|
|
|
|
|
(GDB/MI Ada Exceptions Commands): New node.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Document new "info-ada-exceptions"
|
|
|
|
|
field in the output of the "-list-features" command.
|
|
|
|
|
* NEWS: Add entry for the new "info exceptions" CLI command,
|
|
|
|
|
and for the new "-info-ada-exceptions" GDB/MI command.
|
|
|
|
|
|
2013-11-11 20:49:45 +01:00
|
|
|
|
2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbol Tables In Python): Add linetable method entry.
|
|
|
|
|
(Line Tables In Python): New node.
|
|
|
|
|
|
2013-11-08 20:47:08 +01:00
|
|
|
|
2013-11-08 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Update text for
|
|
|
|
|
"set debug dwarf2-read".
|
|
|
|
|
|
2013-11-08 19:43:23 +01:00
|
|
|
|
2013-11-08 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Update text for
|
|
|
|
|
"set debug symtab-create".
|
|
|
|
|
|
2013-11-07 13:32:31 +01:00
|
|
|
|
2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands In Python): Document COMPLETE_EXPRESSION
|
|
|
|
|
constant.
|
|
|
|
|
|
2013-11-07 13:04:45 +01:00
|
|
|
|
2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): Document temporary
|
|
|
|
|
option in breakpoint constructor, and add documentation to the
|
|
|
|
|
temporary attribute.
|
|
|
|
|
|
2013-10-09 16:10:14 +02:00
|
|
|
|
2013-11-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Update doc about the
|
|
|
|
|
output of "-var-info-expression".
|
|
|
|
|
|
2013-11-06 13:26:55 +01:00
|
|
|
|
2013-11-06 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting) <set/show startup-with-shell>: Mention
|
|
|
|
|
non-interactive mode.
|
|
|
|
|
(Environment) <shell startup files warning>: Mention
|
|
|
|
|
non-interactive mode. Mention .zshenv for Z shell, and talk about
|
|
|
|
|
BASH_ENV instead of .bashrc for BASH.
|
|
|
|
|
|
2013-10-29 17:32:17 +01:00
|
|
|
|
2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands to Specify Files): Add description
|
|
|
|
|
of the remove-symbol-file command.
|
|
|
|
|
* observer.texi: New free_objfile event
|
|
|
|
|
|
2013-10-24 17:10:05 +02:00
|
|
|
|
2013-10-24 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting): Document set/show startup-with-shell.
|
|
|
|
|
|
2013-10-11 16:06:40 +02:00
|
|
|
|
2013-10-11 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Shared Library GDB/MI Catchpoint Commands):
|
|
|
|
|
New subsection inside which the "-catch-load" and "-catch-unload"
|
|
|
|
|
commands documentation is now placed.
|
|
|
|
|
(Ada Exception GDB/MI Catchpoint Commands): New subsection
|
|
|
|
|
documenting the "-catch-assert" and "-catch-exception" new
|
|
|
|
|
GDB/MI commands.
|
|
|
|
|
|
2013-10-10 08:00:41 +02:00
|
|
|
|
2013-10-10 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Connecting): Remove unnecessary @w{}.
|
|
|
|
|
|
2013-10-10 07:50:20 +02:00
|
|
|
|
2013-10-10 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
2013-10-11 06:50:26 +02:00
|
|
|
|
* gdb.texinfo (Connecting): Replace "set remotebaud" by "set
|
|
|
|
|
serial baud".
|
|
|
|
|
(Remote Configuration): Replace "set remotebaud" by "set serial
|
|
|
|
|
baud". Replace "show remotebaud" by "show serial baud".
|
2013-10-10 07:50:20 +02:00
|
|
|
|
|
2013-10-07 13:13:08 +02:00
|
|
|
|
2013-10-07 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR breakpoints/11568
|
|
|
|
|
* gdb.texinfo (Thread-Specific Breakpoints): Mention what happens
|
|
|
|
|
when the thread is removed from the thread list.
|
|
|
|
|
|
2013-10-07 07:34:11 +02:00
|
|
|
|
2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience Variables): Document $_exitsignal.
|
|
|
|
|
Update entry for $_exitcode.
|
|
|
|
|
|
2013-10-04 10:35:31 +02:00
|
|
|
|
2013-10-04 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Program Execution): Document "-exec-run"'s
|
|
|
|
|
new "--start" option.
|
|
|
|
|
|
Print registers not saved in the frame as "<not saved>" instead of "<optimized out>".
Currently, in some scenarios, GDB prints <optimized out> when printing
outer frame registers. An <optimized out> register is a confusing
concept. What this really means is that the register is
call-clobbered, or IOW, not saved by the callee. This patch makes GDB
say that instead.
Before patch:
(gdb) p/x $rax $1 = <optimized out>
(gdb) info registers rax
rax <optimized out>
After patch:
(gdb) p/x $rax
$1 = <not saved>
(gdb) info registers rax
rax <not saved>
However, if for some reason the debug info describes a variable as
being in such a register (**), we still want to print <optimized out>
when printing the variable. IOW, <not saved> is reserved for
inspecting registers at the machine level. The patch uses
lval_register+optimized_out to encode the not saved registers, and
makes it so that optimized out variables always end up in
!lval_register values.
** See <https://sourceware.org/ml/gdb-patches/2012-08/msg00787.html>.
Current/recent enough GCC doesn't mark variables/arguments as being in
call-clobbered registers in the ranges corresponding to function
calls, while older GCCs did. Newer GCCs will just not say where the
variable is, so GDB will end up realizing the variable is optimized
out.
frame_unwind_got_optimized creates not_lval optimized out registers,
so by default, in most cases, we'll see <optimized out>.
value_of_register is the function eval.c uses for evaluating
OP_REGISTER (again, $pc, etc.), and related bits. It isn't used for
anything else. This function makes sure to return lval_register
values. The patch makes "info registers" and the MI equivalent use it
too. I think it just makes a lot of sense, as this makes it so that
when printing machine registers ($pc, etc.), we go through a central
function.
We're likely to need a different encoding at some point, if/when we
support partially saved registers. Even then, I think
value_of_register will still be the spot to tag the intention to print
machine register values differently.
value_from_register however may also return optimized out
lval_register values, so at a couple places where we're computing a
variable's location from a dwarf expression, we convert the resulting
value away from lval_register to a regular optimized out value.
Tested on x86_64 Fedora 17
gdb/
2013-10-02 Pedro Alves <palves@redhat.com>
* cp-valprint.c (cp_print_value_fields): Adjust calls to
val_print_optimized_out.
* jv-valprint.c (java_print_value_fields): Likewise.
* p-valprint.c (pascal_object_print_value_fields): Likewise.
* dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
<DWARF_VALUE_REGISTER>: If the register was not saved, return a
new optimized out value.
* findvar.c (address_from_register): Likewise.
* frame.c (put_frame_register): Tweak error string to say the
register was not saved, rather than optimized out.
* infcmd.c (default_print_one_register_info): Adjust call to
val_print_optimized_out. Use value_of_register instead of
get_frame_register_value.
* mi/mi-main.c (output_register): Use value_of_register instead of
get_frame_register_value.
* valprint.c (valprint_check_validity): Likewise.
(val_print_optimized_out): New value parameter. If the value is
lval_register, print <not saved> instead.
(value_check_printable, val_print_scalar_formatted): Adjust calls
to val_print_optimized_out.
* valprint.h (val_print_optimized_out): New value parameter.
* value.c (struct value) <optimized_out>: Extend comment.
(error_value_optimized_out): New function.
(require_not_optimized_out): Use it. Use a different string for
lval_register values.
* value.h (error_value_optimized_out): New declaration.
* NEWS: Mention <not saved>.
gdb/testsuite/
2013-10-02 Pedro Alves <palves@redhat.com>
* gdb.dwarf2/dw2-reg-undefined.exp <pattern_rax_rbx_rcx_print,
pattern_rax_rbx_rcx_info>: Set to "<not saved>".
* gdb.mi/mi-reg-undefined.exp (opt_out_pattern): Delete.
(not_saved_pattern): New.
Replace use of the former with the latter.
gdb/doc/
2013-10-02 Pedro Alves <palves@redhat.com>
* gdb.texinfo (Registers): Expand description of saved registers
in frames. Explain <not saved>.
2013-10-02 18:15:46 +02:00
|
|
|
|
2013-10-02 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Registers): Expand description of saved registers
|
|
|
|
|
in frames. Explain <not saved>.
|
|
|
|
|
|
2013-09-26 01:17:12 +02:00
|
|
|
|
2013-09-25 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document set/show debug symfile.
|
|
|
|
|
|
2013-09-16 20:00:34 +02:00
|
|
|
|
2013-09-16 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
Remove the internals manual gdbint.texinfo.
|
|
|
|
|
* Makefile.in (INFO_DEPS): Remove gdbint.info.
|
|
|
|
|
(PDFFILES): Remove gdbint.pdf.
|
|
|
|
|
(HTMLFILES): Remove gdbint/index.html.
|
|
|
|
|
(HTMLFILES_INSTALL): Remove gdbint.
|
|
|
|
|
(GDBINT_DOC_FILES): Remove.
|
|
|
|
|
(dvi): Remove gdbint.dvi.
|
|
|
|
|
(ps): Remove gdbint.ps.
|
|
|
|
|
* gdbint.texinfo: Remove file.
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Remove reference to gdbint.
|
|
|
|
|
|
Based on the discussion at:
<https://sourceware.org/ml/gdb-patches/2013-09/msg00301.html>
<https://sourceware.org/ml/gdb-patches/2013-09/msg00383.html>
This patch adds a new convenience function called $_isvoid, whose
only purpose is to check whether an expression is void or not.
This became necessary because the new convenience variable
$_exitsignal (not yet approved) has a mutual exclusive behavior
with $_exitcode, i.e., when one is "defined" (i.e., non-void),
the other is cleared (i.e., becomes void). Doug wanted a way to
identify which variable to use, and checking for voidness is the
obvious solution.
It is worth mentioning that my first attempt, after a conversation with
Doug, was to actually implement a new $_isdefined() convenience
function. I would do that (for convenience variables) by calling
lookup_only_internalvar. However, I found a few problems:
- Whenever I called $_isdefined ($variable), $variable became defined
(with a void value), and $_isdefined always returned true.
- Then, I tried to implement $_isdefined ("variable"), and do the "$" +
"variable" inside GDB, thus making it impossible for GDB to create the
convenience variable. However, it was hard to extract the string
without having to mess with values and their idiossincrasies.
Therefore, I decided to abandon this attempt (specially because I
didn't want to spend too much time struggling with it).
Anyway, after talking to Doug again we decided that it would be easier
to implement $_isvoid, and this will probably help in cases like
<http://stackoverflow.com/questions/3744554/testing-if-a-gdb-convenience-variable-is-defined>.
I wrote a NEWS entry for it, and some new lines on the documentation.
gdb/
2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
* NEWS: Mention new convenience function $_isvoid.
* value.c (isvoid_internal_fn): New function.
(_initialize_values): Add new convenience function $_isvoid.
gdb/doc/
2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
* gdb.texinfo (Convenience Functions): Mention new convenience
function $_isvoid.
gdb/testsuite/
2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
* gdb.base/gdbvars.c (foo_void): New function.
(foo_int): Likewise.
* gdb.base/gdbvars.exp (test_convenience_functions): New
function. Call it.
2013-09-16 19:47:30 +02:00
|
|
|
|
2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience Functions): Mention new convenience
|
|
|
|
|
function $_isvoid.
|
|
|
|
|
|
2013-09-13 16:17:31 +02:00
|
|
|
|
2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Decimal Floating Point format): Mention S/390.
|
|
|
|
|
(Standard Target Features): Add new node to menu.
|
|
|
|
|
(S/390 and System z Features): New node.
|
|
|
|
|
|
2013-09-13 10:04:02 +02:00
|
|
|
|
2013-09-13 Sanimir Agovic <sanimir.agovic@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Use
|
|
|
|
|
-list-target-features in the example.
|
|
|
|
|
|
2013-09-11 10:31:44 +02:00
|
|
|
|
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MiniDebugInfo): Prepare file debug and use it to create
|
|
|
|
|
mini_debuginfo. Strip binary before adding mini_debuginfo to it.
|
|
|
|
|
|
2013-09-11 10:29:46 +02:00
|
|
|
|
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Sync documentation with gdb.base/gnu-debugdata.exp.
|
|
|
|
|
* gdb.texinfo (MiniDebugInfo): Add comment and "D" in the example.
|
|
|
|
|
|
2013-09-11 10:28:04 +02:00
|
|
|
|
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MiniDebugInfo): Fix two trailing dots.
|
|
|
|
|
|
Add options to skip unavailable locals
This is the patch to add new option '--skip-unavailable' to MI
commands '-stack-list-{locals, arguments, variables}'. This patch
extends list_args_or_locals to add a new parameter 'skip_unavailable',
and don't list locals or arguments if values are unavailable and
'skip_unavailable' is true.
This is inspecting a trace frame (tfind mode), where only a few
locals have been collected.
-stack-list-locals, no switch vs new switch:
-stack-list-locals --simple-values
^done,locals=[{name="array",type="unsigned char [2]"},{name="i",type="int",value="<unavailable>"}]
-stack-list-locals --skip-unavailable --simple-values
^done,locals=[{name="array",type="unsigned char [2]"}]
-stack-list-arguments, no switch vs new switch:
-stack-list-arguments --simple-values
^done,stack-args=[frame={level="0",args=[{name="j",type="int",value="4"},{name="s",type="char *",value="<unavailable>"}]},frame={level="1",args=[]}]
-stack-list-arguments --skip-unavailable --simple-values
^done,stack-args=[frame={level="0",args=[{name="j",type="int",value="4"}]},frame={level="1",args=[]}]
-stack-list-variables, no switch vs new switch:
-stack-list-variables --simple-values
^done,variables=[{name="j",arg="1",type="int",value="4"},{name="s",arg="1",type="char *",value="<unavailable>"},{name="array",type="unsigned char [2]"},{name="i",type="int",value="<unavailable>"}]
-stack-list-variables --skip-unavailable --simple-values
^done,variables=[{name="j",arg="1",type="int",value="4"},{name="array",type="unsigned char [2]"}]
tests are added to test these new options.
gdb:
2013-08-27 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
(parse_no_frames_option): Remove.
(mi_cmd_stack_list_locals): Handle --skip-unavailable.
(mi_cmd_stack_list_args): Adjust.
(mi_cmd_stack_list_variables): Handle --skip-unavailable.
(list_arg_or_local): Add new parameter 'skip_unavailable'. Return
early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
Caller update.
(list_args_or_locals): New parameter 'skip_unavailable'.
Handle it.
* valprint.c (scalar_type_p): Rename to ...
(val_print_scalar_type_p): ... this. Make extern.
(val_print, value_check_printable): Adjust.
* valprint.h (val_print_scalar_type_p): Declare.
* value.c (value_entirely_unavailable): New function.
* value.h (value_entirely_unavailable): Declare.
* NEWS: Mention the new option "--skip-unavailable" to MI
commands '-stack-list-locals', '-stack-list-arguments' and
'-stack-list-variables'.
gdb/doc:
2013-08-27 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* gdb.texinfo (GDB/MI Stack Manipulation) <-stack-list-locals>:
Document new --skip-unavailable option.
<-stack-list-variables>: Document new --skip-unavailable option.
gdb/testsuite:
2013-08-27 Yao Qi <yao@codesourcery.com>
* gdb.trace/entry-values.exp: Test unavailable entry value is
not shown when option '--skip-unavailable' is specified.
* gdb.trace/mi-trace-unavailable.exp (test_trace_unavailable):
Add tests for new option '--skip-unavailable'.
2013-08-27 07:20:57 +02:00
|
|
|
|
2013-08-27 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation) <-stack-list-locals>:
|
|
|
|
|
Document new --skip-unavailable option.
|
|
|
|
|
<-stack-list-variables>: Document new --skip-unavailable option.
|
|
|
|
|
|
2013-08-26 20:41:31 +02:00
|
|
|
|
2013-08-26 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): "maint print objfiles" now takes
|
|
|
|
|
an optional regexp.
|
|
|
|
|
|
introduce parallel mode
This introduces parallel mode for the test suite.
It doesn't fully work yet in the sense that if you do a fully parallel
run, you will encounter some file-name clashes, but this has to start
somewhere, and it seemed best to add some infrastructure now, so that
you can follow along and test subsequent patches if you care to.
This patch has two parts.
First, it checks for the GDB_PARALLEL variable. If this is set (say,
on the runtest command line), then the test suite assumes "parallel
mode". In this mode, files are put into a subdirectory named after
the test. That is, for DIR/TEST.exp, the outputs are put into
./outputs/DIR/TEST/.
This first part has various follow-on changes coming in subsequent
patches. This is why the code in this patch also makes "temp" and
"cache" directories.
Second, this adds an "inotify" mode. If you have the inotifywait
command (part of inotify-tools), you can set the GDB_INOTIFY variable.
This will tell the test suite to watch for changes outside of the
allowed output directories.
This mode is useful for debugging the test suite, as it issues a
report whenever a possibly parallel-unsafe file open is done.
2013-08-13 Tom Tromey <tromey@redhat.com>
Yao Qi <yao@codesourcery.com>
* lib/cache.exp (gdb_do_cache): Handle GDB_PARALLEL.
* lib/gdb.exp: Handle GDB_PARALLEL.
(default_gdb_version): Kill inotify_pid if it exists.
(default_gdb_exit): Emit warning if the inotify log is not
empty.
(standard_output_file): Respect GDB_PARALLEL.
(standard_temp_file): Likewise.
(gdb_init): Start inotifywait if requested.
* gdbint.texinfo (Testsuite): Use @table, not @itemize.
Document GDB_PARALLEL and GDB_INOTIFY.
2013-08-13 18:12:04 +02:00
|
|
|
|
2013-08-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Use @table, not @itemize.
|
|
|
|
|
Document GDB_PARALLEL and GDB_INOTIFY.
|
|
|
|
|
|
2013-08-09 23:31:57 +02:00
|
|
|
|
2013-08-09 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* LRS: Remove file, describes a long-abandoned live-range
|
|
|
|
|
splitting extension to stabs.
|
|
|
|
|
|
2013-07-25 12:16:08 +02:00
|
|
|
|
2013-07-25 Andrew Burgess <aburgess@broadcom.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Output Formats): Mention the new 'z' formatter.
|
|
|
|
|
|
2013-07-17 22:35:11 +02:00
|
|
|
|
2013-07-17 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Document "print raw frame-arguments".
|
|
|
|
|
|
2013-07-02 18:58:32 +02:00
|
|
|
|
2013-07-02 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Commands): Don't mention "target nrom".
|
|
|
|
|
|
2013-06-28 20:59:51 +02:00
|
|
|
|
2013-06-28 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (version.subst): Use version.in, not
|
|
|
|
|
common/version.in.
|
|
|
|
|
* gdbint.texinfo (Versions and Branches, Releasing GDB):
|
|
|
|
|
Likewise.
|
|
|
|
|
|
2013-06-27 21:17:27 +02:00
|
|
|
|
2013-06-27 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms) <Stepping over runtime loader
|
|
|
|
|
dynamic symbol resolution code>: New section, based on infrun.c
|
|
|
|
|
comment.
|
|
|
|
|
|
2013-06-26 18:04:05 +02:00
|
|
|
|
2013-06-26 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Versions and Branches): Use common/version.in.
|
|
|
|
|
Update.
|
|
|
|
|
(Releasing GDB): Likewise.
|
|
|
|
|
|
2013-06-26 10:17:27 +02:00
|
|
|
|
2013-06-26 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Tracepoint Commands): Document
|
|
|
|
|
-trace-frame-collected.
|
|
|
|
|
|
2013-06-26 10:01:57 +02:00
|
|
|
|
2013-06-26 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Traceframe Info Format): Document tvar element
|
|
|
|
|
and its attributes.
|
|
|
|
|
|
2013-06-25 15:01:28 +02:00
|
|
|
|
2013-06-25 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Document 'gdb,predefined_tsv'.
|
|
|
|
|
|
don't keep a gdb-specific date
Right now there are two nightly commits to update a file in the tree
with the current date. One commit is for BFD, one is for gdb.
It seems unnecessary to me to do this twice. We can make do with a
single such commit.
This patch changes gdb in a minimal way to reuse the BFD date -- it
extracts it from bfd/version.h and changes version.in to use the
placeholder string "DATE" for those times when a date is wanted.
I propose removing the cron job that updates the version on trunk, and
then check in this patch.
For release branches, we can keep the cron job, but just tell it to
rewrite bfd/version.h. I believe this is a simple change in the
crontab -- the script will work just fine on this file.
This also moves version.in and version.h into common/, to reflect
their shared status; and updates gdbserver to use version.h besides.
* common/create-version.sh: New file.
* Makefile.in (version.c): Use bfd/version.h, common/version.in,
create-version.sh.
(HFILES_NO_SRCDIR): Use common/version.h.
* version.in: Move to ...
* common/version.in: ... here. Replace date with "DATE".
* version.h: Move to ...
* common/version.h: ... here.
gdbserver:
* Makefile.in (version.c): Use bfd/version.h, common/version.in,
create-version.sh.
(version.o): Remove.
* gdbreplay.c: Include version.h.
(version, host_name): Don't declare.
* server.h: Include version.h.
(version, host_name): Don't declare.
doc:
* Makefile.in (POD2MAN1, POD2MAN5): Use version.subst.
(GDBvn.texi): Use version.subst.
(version.subst): New target.
(mostlyclean): Remove version.subst.
2013-06-24 17:06:27 +02:00
|
|
|
|
2013-06-24 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (POD2MAN1, POD2MAN5): Use version.subst.
|
|
|
|
|
(GDBvn.texi): Use version.subst.
|
|
|
|
|
(version.subst): New target.
|
|
|
|
|
(mostlyclean): Remove version.subst.
|
|
|
|
|
|
2013-06-20 02:39:11 +02:00
|
|
|
|
2013-06-20 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Data Manipulation)
|
|
|
|
|
<-data-list-register-values>: Document the --skip-unavailable
|
|
|
|
|
option.
|
|
|
|
|
|
2013-06-07 02:33:25 +02:00
|
|
|
|
2013-06-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Add kindex and cindex for
|
|
|
|
|
'maint print msymbols'.
|
|
|
|
|
|
2013-06-06 07:16:06 +02:00
|
|
|
|
2013-06-05 Simon Marchi <simon.marchi@ericsson.com> (tiny change)
|
2013-06-05 16:11:47 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Miscellaneous gdb/mi Commands): Fix -add-inferior
|
|
|
|
|
response field name (thread-group to inferior).
|
|
|
|
|
|
2013-06-04 15:07:45 +02:00
|
|
|
|
2013-06-04 Gary Benson <gbenson@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets/qSupported): Added
|
|
|
|
|
"qXfer:libraries-svr4:read" and "augmented-libraries-svr4-read".
|
|
|
|
|
to the table of currently defined stub features.
|
|
|
|
|
Added a more detailed entry for "augmented-libraries-svr4-read".
|
|
|
|
|
(General Query Packets/qXfer:libraries-svr4:read): Documented
|
|
|
|
|
the augmented form of this packet.
|
|
|
|
|
|
2013-05-24 06:50:26 +02:00
|
|
|
|
2013-05-23 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (System-wide Configuration Scripts): Renames
|
|
|
|
|
"Installed System-wide Configuration Scripts". Add associated
|
|
|
|
|
@menu block.
|
|
|
|
|
|
range stepping: gdb
This patch teaches GDB to take advantage of target-assisted range
stepping. It adds a new 'r ADDR1,ADDR2' action to vCont (vCont;r),
meaning, "step once, and keep stepping as long as the thread is in the
[ADDR1,ADDR2) range".
Rationale:
When user issues the "step" command on the following line of source,
a = b + c + d * e - a;
GDB single-steps every single instruction until the program reaches a
new different line. E.g., on x86_64, that line compiles to:
0x08048434 <+65>: mov 0x1c(%esp),%eax
0x08048438 <+69>: mov 0x30(%esp),%edx
0x0804843c <+73>: add %eax,%edx
0x0804843e <+75>: mov 0x18(%esp),%eax
0x08048442 <+79>: imul 0x2c(%esp),%eax
0x08048447 <+84>: add %edx,%eax
0x08048449 <+86>: sub 0x34(%esp),%eax
0x0804844d <+90>: mov %eax,0x34(%esp)
0x08048451 <+94>: mov 0x1c(%esp),%eax
and the following is the RSP traffic between GDB and GDBserver:
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:3c840408;thread:p2e13.2e13;core:1;
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:3e840408;thread:p2e13.2e13;core:2;
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:42840408;thread:p2e13.2e13;core:2;
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:47840408;thread:p2e13.2e13;core:0;
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:49840408;thread:p2e13.2e13;core:0;
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:4d840408;thread:p2e13.2e13;core:0;
--> vCont;s:p2e13.2e13;c
<-- T0505:68efffbf;04:30efffbf;08:51840408;thread:p2e13.2e13;core:0;
IOW, a lot of roundtrips between GDB and GDBserver.
If we add a new command to the RSP, meaning "keep stepping and don't
report a stop until the program goes out of the [0x08048434,
0x08048451) address range", then the RSP traffic can be reduced down
to:
--> vCont;r8048434,8048451:p2db0.2db0;c
<-- T0505:68efffbf;04:30efffbf;08:51840408;thread:p2db0.2db0;core:1;
As number of packets is reduced dramatically, the performance of
stepping source lines is much improved.
In case something is wrong with range stepping on the stub side, the
debug info or even gdb, this adds a "set/show range-stepping" command
to be able to turn range stepping off.
gdb/
2013-05-23 Yao Qi <yao@codesourcery.com>
Pedro Alves <palves@redhat.com>
* gdbthread.h (struct thread_control_state) <may_range_step>: New
field.
* infcmd.c (step_once, until_next_command): Enable range stepping.
* infrun.c (displaced_step_prepare): Disable range stepping.
(resume): Disable range stepping if stepping over a breakpoint or
we have software watchpoints. If range stepping is enabled,
assert the thread is in the stepping range.
(clear_proceed_status_thread): Clear may_range_step.
(handle_inferior_event): Disable range stepping as soon as we know
the thread that hit the event. Re-enable it whenever we're going
to step with a step range.
* remote.c (struct vCont_action_support) <r>: New field.
(use_range_stepping): New global.
(remote_vcont_probe): Handle 'r' action.
(append_resumption): Append an 'r' action if the thread may range
step.
(show_range_stepping): New function.
(set_range_stepping): New function.
(_initialize_remote): Call add_setshow_boolean_cmd to register the
'set range-stepping' and 'show range-stepping' commands.
* NEWS: Mention range stepping, the new vCont;r action, and the
new "set/show range-stepping" commands.
gdb/doc/
2013-05-23 Yao Qi <yao@codesourcery.com>
Pedro Alves <palves@redhat.com>
* gdb.texinfo (Packets): Document 'vCont;r'.
(Continuing and Stepping): Document target-assisted range
stepping, and the 'set range-stepping' and 'show range-stepping'
commands.
2013-05-23 19:15:35 +02:00
|
|
|
|
2013-05-23 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Document 'vCont;r'.
|
|
|
|
|
(Continuing and Stepping): Document target-assisted range
|
|
|
|
|
stepping, and the 'set range-stepping' and 'show range-stepping'
|
|
|
|
|
commands.
|
|
|
|
|
|
2013-05-23 08:00:53 +02:00
|
|
|
|
2013-05-23 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Installed System-wide Configuration Scripts):
|
|
|
|
|
Add subsection describing the scripts now available under
|
|
|
|
|
the data-dir's system-gdbbinit subdirectory.
|
|
|
|
|
* NEWS: Add entry announcing the availability of system-wide
|
|
|
|
|
configuration scripts for ElinOS and Wind River Linux.
|
|
|
|
|
|
2013-05-21 06:18:55 +02:00
|
|
|
|
2013-05-21 Hui Zhu <hui@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Describe the
|
|
|
|
|
"-dprintf-insert" command.
|
|
|
|
|
|
2013-05-17 20:09:06 +02:00
|
|
|
|
2013-05-17 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Update doc for
|
|
|
|
|
"maint check-psymtabs". Add doc for "maint check-symtabs",
|
|
|
|
|
"maint expand-symtabs".
|
|
|
|
|
|
2013-05-15 09:04:12 +02:00
|
|
|
|
2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Process Record and Replay): Document the
|
|
|
|
|
"record goto" command and its sub-commands.
|
|
|
|
|
|
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* stack.c (backtrace_command_1): Add "no-filters", and Python frame
filter logic.
(backtrace_command): Add "no-filters" option parsing.
(_initialize_stack): Alter help to reflect "no-filters" option.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
(SUBDIR_PYTHON_SRCS): Add py-framefilter.c
(py-frame.o): Add target
* data-directory/Makefile.in (PYTHON_DIR): Add Python frame
filter files.
* python/python.h: Add new frame filter constants, and flag enum.
(apply_frame_filter): Add definition.
* python/python.c (apply_frame_filter): New non-Python
enabled function.
* python/py-utils.c (py_xdecref): New function.
(make_cleanup_py_xdecref): Ditto.
* python/py-objfile.c: Declare frame_filters dictionary.
(objfpy_dealloc): Add frame_filters dealloc.
(objfpy_new): Initialize frame_filters attribute.
(objfile_to_objfile_object): Ditto.
(objfpy_get_frame_filters): New function.
(objfpy_set_frame_filters): New function.
* python/py-progspace.c: Declare frame_filters dictionary.
(pspy_dealloc): Add frame_filters dealloc.
(pspy_new): Initialize frame_filters attribute.
(pspacee_to_pspace_object): Ditto.
(pspy_get_frame_filters): New function.
(pspy_set_frame_filters): New function.
* python/py-framefilter.c: New file.
* python/lib/gdb/command/frame_filters.py: New file.
* python/lib/gdb/frames.py: New file.
* python/lib/gdb/__init__.py: Initialize global frame_filters
dictionary
* python/lib/gdb/FrameDecorator.py: New file.
* python/lib/gdb/FrameIterator.py: New file.
* mi/mi-cmds.c (mi_cmds): Add frame filters command.
* mi/mi-cmds.h: Declare.
* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
--no-frame-filter logic, and Python frame filter logic.
(stack_enable_frame_filters): New function.
(parse_no_frame_option): Ditto.
(mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
filter logic.
(mi_cmd_stack_list_locals): Ditto.
(mi_cmd_stack_list_args): Ditto.
(mi_cmd_stack_list_variables): Ditto.
* NEWS: Add frame filter note.
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* gdb.python/py-framefilter.py: New File.
* gdb.python/py-framefilter-mi.exp: Ditto.
* gdb.python/py-framefilter.c: Ditto.
* gdb.python/py-framefilter-mi.exp: Ditto.
* gdb.python/py-framefilter-mi.c: Ditto,
* gdb.python/py-framefilter-gdb.py.in: Ditto.
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Backtrace): Add "no-filter" argument.
(Python API): Add Frame Filters API, Frame Wrapper API,
Writing a Frame Filter/Wrapper, Managing Management of Frame
Filters chapter entries.
(Frame Filters API): New Node.
(Frame Wrapper API): New Node.
(Writing a Frame Filter): New Node.
(Managing Frame Filters): New Node.
(Progspaces In Python): Add note about frame_filters attribute.
(Objfiles in Python): Ditto.
(GDB/MI Stack Manipulation): Add -enable-frame-filters command,
@anchors and --no-frame-filters option to -stack-list-variables,
-stack-list-frames, -stack-list-locals and -stack-list-arguments
commands.
2013-05-10 12:26:03 +02:00
|
|
|
|
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Add "no-filter" argument.
|
|
|
|
|
(Python API): Add Frame Filters API, Frame Wrapper API,
|
|
|
|
|
Writing a Frame Filter/Wrapper, Managing Management of Frame
|
|
|
|
|
Filters chapter entries.
|
|
|
|
|
(Frame Filters API): New Node.
|
|
|
|
|
(Frame Wrapper API): New Node.
|
|
|
|
|
(Writing a Frame Filter): New Node.
|
|
|
|
|
(Managing Frame Filters): New Node.
|
|
|
|
|
(Progspaces In Python): Add note about frame_filters attribute.
|
|
|
|
|
(Objfiles in Python): Ditto.
|
|
|
|
|
(GDB/MI Stack Manipulation): Add -enable-frame-filters command,
|
|
|
|
|
@anchors and --no-frame-filters option to -stack-list-variables,
|
|
|
|
|
-stack-list-frames, -stack-list-locals and -stack-list-arguments
|
|
|
|
|
commands.
|
|
|
|
|
|
2013-05-08 07:50:47 +02:00
|
|
|
|
2013-05-08 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Add "AIX Shared Library
|
|
|
|
|
Support" subsection documenting the XML format used to transfer
|
|
|
|
|
shared library info on AIX.
|
|
|
|
|
|
2013-05-08 07:40:44 +02:00
|
|
|
|
2013-05-08 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Add documentation of
|
|
|
|
|
"set debug aix-solib" and "show debug aix-solib" commands.
|
|
|
|
|
|
2013-05-07 03:09:29 +02:00
|
|
|
|
2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Nios II): New section.
|
|
|
|
|
(Nios II Features): New section.
|
|
|
|
|
|
Reimplement shared library support on ppc-aix...
... using the target_so_ops framework.
gdb/ChangeLog:
* target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
* features/library-list-aix.dtd: New file.
* solib-aix.h, solib-aix.c: New file.
* rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
(rs6000_find_toc_address_hook): Delete.
(rs6000_push_dummy_call): Rewrite code setting the TOC value.
(rs6000_aix_init_osabi): Register solib_aix_so_ops.
* rs6000-nat.c: Remove "xcoffsolib.h" include. Include
"xml-utils.h".
(map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
(vmap_symtab, fixup_breakpoints): Delete.
(rs6000_xfer_shared_libraries): New function.
(rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
(vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
(xcoff_relocate_symtab, xcoff_relocate_core): Delete.
(rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
(rs6000_xfer_shared_library): New function.
(find_toc_address): Delete.
(_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
* rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
* xcoffread.c (record_minimal_symbol): Reloate symbol address
before creating minimal symbol. Adjust function description
accordingly.
(scan_xcoff_symtab): Replace call to
prim_record_minimal_symbol_and_info by call to
record_minimal_symbol.
(xcoff_symfile_offsets): Reimplement mostly as a wrapper
around default_symfile_offsets.
* configure.tgt: Add solib-aix.o to gdb_target_obs for
powerpc-aix targets.
* config/rs6000/nm-rs6000.h: Delete.
* config/powerpc/aix.mh (NAT_FILE): Delete.
(NATDEPFILES): Remove xcoffsolib.o.
* Makefile.in (XMLFILES): Add library-list-aix.dtd.
(ALL_TARGET_OBS): Add solib-aix.o.
(HFILES_NO_SRCDIR): Remove xcoffsolib.h and
config/rs6000/nm-rs6000.h. Add solib-aix.h.
(ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
* xcoffsolib.h, xcoffsolib.c: Delete.
* solib.c (reload_shared_libraries): Remove reference to
SOLIB_CREATE_INFERIOR_HOOK.
* breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
(disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
(momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
comment.
* corelow.c (deprecated_core_resize_section_table): Delete.
* exec.c: Remove include of xcoffsolib.h".
(map_vmap, vmap): Delete.
(exec_close_1): Remove references to vmap.
(exec_file_attach): Remove vmap handling code, and reference
to DEPRECATED_IBM6000_TARGET.
(bfdsec_to_vmap): Delete.
(exec_files_info): Remove block of code handling VMAP.
* infcmd.c (post_create_inferior): Remove reference to
SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
* infrun.c (follow_exec): Remove reference to
SOLIB_CREATE_INFERIOR_HOOK.
* stack.c (print_frame): Remove reference to PC_SOLIB.
* solib-dsbt.c (dsbt_current_sos): Adjust comment.
(dsbt_relocate_main_executable): Likewise.
* solib-frv.c (frv_current_sos): Likewise.
gdb/doc/ChangeLog:
* gdbint.texinfo (Algorithms): Remove entries documenting
DEPRECATED_IBM6000_TARGET, SOLIB_ADD, and
SOLIB_CREATE_INFERIOR_HOOK.
2013-05-06 16:15:50 +02:00
|
|
|
|
2013-05-06 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): Remove entries documenting
|
|
|
|
|
DEPRECATED_IBM6000_TARGET, SOLIB_ADD, and
|
|
|
|
|
SOLIB_CREATE_INFERIOR_HOOK.
|
|
|
|
|
|
2013-04-29 19:32:43 +02:00
|
|
|
|
2013-04-29 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/14204:
|
|
|
|
|
* gdb.texinfo (Python API): Fix menu entry.
|
|
|
|
|
(Blocks In Python): Fix subsubsection text. Rewrite intro.
|
|
|
|
|
Define global and static block. Add example. Clarify
|
|
|
|
|
block relationship for inline functions.
|
|
|
|
|
|
2013-04-29 19:30:26 +02:00
|
|
|
|
2013-04-29 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python API): Mention Python help and keyword
|
|
|
|
|
arguments. Move pagination text to Basic Python.
|
|
|
|
|
(Basic Python): Put pagination text here. Document
|
|
|
|
|
close-on-exec, SIGCHLD, and SIGINT.
|
|
|
|
|
|
2013-04-19 20:41:32 +02:00
|
|
|
|
2013-04-19 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Misc Guidelines) <Compiler Warnings>: Write
|
|
|
|
|
"signedness" instead of "signness".
|
|
|
|
|
|
2013-04-19 20:32:54 +02:00
|
|
|
|
2013-04-19 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Misc Guidelines) <Compiler Warnings>: Replace
|
|
|
|
|
-Wno-pointer-sign text with text on -Wpointer-sign.
|
|
|
|
|
|
2013-04-16 17:44:32 +02:00
|
|
|
|
2013-04-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Mention earliest version of
|
|
|
|
|
GCC that has the SDT probe points.
|
|
|
|
|
|
2013-04-15 20:13:01 +02:00
|
|
|
|
2013-04-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Document regexp syntax for
|
|
|
|
|
exception catchpoints.
|
|
|
|
|
|
2013-04-15 20:09:02 +02:00
|
|
|
|
2013-04-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Document $_exception.
|
|
|
|
|
(Convenience Vars): Mention $_exception.
|
|
|
|
|
|
2013-04-15 19:27:44 +02:00
|
|
|
|
2013-04-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Reorganize exception
|
|
|
|
|
catchpoints. Document "catch rethrow".
|
|
|
|
|
(Debugging C Plus Plus): Mention "catch rethrow".
|
|
|
|
|
|
2013-04-15 19:20:39 +02:00
|
|
|
|
2013-04-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Remove obsolete text.
|
|
|
|
|
|
2013-04-12 22:45:31 +02:00
|
|
|
|
2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading safe path): Add quick -iex using command
|
|
|
|
|
line below the sample output.
|
|
|
|
|
|
2013-04-12 10:57:07 +02:00
|
|
|
|
2013-04-12 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Document '-configuration'.
|
|
|
|
|
(Help): Document "show configuration".
|
|
|
|
|
(Bug Reporting): Add requirements to include the configuration
|
|
|
|
|
details in bug reports.
|
|
|
|
|
|
gdb/
* Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
(generated_files): Add gcore.
(install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
HAVE_NATIVE_GCORE_HOST.
(gcore): New.
* NEWS (Changes since GDB 7.6): Mention newly installed gcore.
* config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
Add HAVE_NATIVE_GCORE_HOST.
* configure: Regenerate.
* configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
AC_CONFIG_FILES for gcore.
* configure.tgt: Add gdb_have_gcore to the initial comment. Set
gdb_have_gcore.
* gdb_gcore.sh: Rename to ...
* gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
and GCORE_TRANSFORM_NAME substitutions.
gdb/doc/
* Makefile.in (MAN1S): Add gcore.1.
Remove "Host, target, and site specific Makefile fragments" comment.
(@host_makefile_frag@, HAVE_NATIVE_GCORE_TARGET): New.
(install-man1, uninstall-man1): Conditionalize gcore.1.
(gcore.1): New.
* gdb.texinfo (Man Pages): Add gcore man.
(gcore man): New node.
2013-04-11 16:13:44 +02:00
|
|
|
|
2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (MAN1S): Add gcore.1.
|
|
|
|
|
Remove "Host, target, and site specific Makefile fragments" comment.
|
|
|
|
|
(@host_makefile_frag@, HAVE_NATIVE_GCORE_TARGET): New.
|
|
|
|
|
(install-man1, uninstall-man1): Conditionalize gcore.1.
|
|
|
|
|
(gcore.1): New.
|
|
|
|
|
* gdb.texinfo (Man Pages): Add gcore man.
|
|
|
|
|
(gcore man): New node.
|
|
|
|
|
|
Accept "set foo unlimited" in integer/uinteger/zuinteger_unlimited commands.
Currently, several commands take "0" or "-1" to mean "unlimited".
"show" knows when to print "unlimited":
(gdb) show height
Number of lines gdb thinks are in a page is 45.
(gdb) set height 0
(gdb) show height
Number of lines gdb thinks are in a page is unlimited.
However, the user can't herself specify "unlimited" directly:
(gdb) set height unlimited
No symbol table is loaded. Use the "file" command.
(gdb)
This patch addresses that, by adjusting the set handler for all
integer/uinteger/zuinteger_unlimited commands to accept literal
"unlimited". It also installs a completer. Presently, we complete on
symbols by default, and at
<http://sourceware.org/ml/gdb-patches/2013-03/msg00864.html> I've
shown a WIP prototype that tried to keep that half working in these
commands. In the end, it turned out to be more complicated than
justifiable, IMO. It's super rare to want to pass the value of a
variable/symbol in the program to a GDB set/show knob. That'll still
work, it's just that we won't assist with completion anymore. This
patch just sticks with the simple, and completes on "unlimited", and
nothing else. This simplification means that
"set he<tab><tab>"
is all it takes to get to:
"set height unlimited"
The patch then goes through all integer/uinteger/zuinteger_unlimited
commands in the tree, and updates both the online help and the manual
to mention that "unlimited" is accepted in addition to 0/-1. In the
cases where the command had no online help text at all, this adds it.
I've tried to make the texts read in a way that "unlimited" is
suggested before "0" or "-1" is.
Tested on x86_64 Fedora 17.
gdb/
2013-04-10 Pedro Alves <palves@redhat.com>
* cli/cli-decode.c (integer_unlimited_completer): New function.
(add_setshow_integer_cmd, add_setshow_uinteger_cmd)
(add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
completer.
* cli/cli-setshow.c: Include "cli/cli-utils.h".
(is_unlimited_literal): New function.
(do_set_command): Handle literal "unlimited" arguments.
* frame.c (_initialize_frame) <set backtrace limit>: Document
"unlimited".
* printcmd.c (_initialize_printcmd) <set print
max-symbolic-offset>: Add help text.
* record-full.c (_initialize_record_full) <set record full
insn-number-max>: Likewise.
* record.c (_initialize_record) <set record
instruction-history-size, set record function-call-history-size>:
Add help text.
* ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
help text.
* tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
Likewise.
* source.c (_initialize_source) <set listsize>: Add help text.
* utils.c (initialize_utils) <set height, set width>: Likewise.
<set pagination>: Mention "set height unlimited".
* valprint.c (_initialize_valprint) <set print elements, set print
repeats>: Document "unlimited".
gdb/doc/
2013-04-10 Pedro Alves <palves@redhat.com>
* gdb.texinfo (Process Record and Replay): Document that "set
record full insn-number-max", "set record
instruction-history-size" and "set record
function-call-history-size" accept "unlimited".
(Backtrace): Document that "set backtrace limit" accepts
"unlimited".
(List): Document that "set listsize" accepts "unlimited".
(Print Settings)" Document that "set print max-symbolic-offset",
"set print elements" and "set print repeats" accept "unlimited".
(Starting and Stopping Trace Experiments): Document that "set
trace-buffer-size" accepts "unlimited".
(Remote Configuration): Document that "set tcp connect-timeout"
accepts "unlimited".
(Command History): Document that "set history size" accepts
"unlimited".
(Screen Size): Document that "set height" and "set width" accepts
"unlimited". Adjust "set pagination"'s description to suggest
"set height unlimited" instead of "set height 0".
gdb/testsuite/
2013-04-10 Pedro Alves <palves@redhat.com>
* gdb.base/completion.exp: Test "set height", "set listsize" and
"set trace-buffer-size" completion.
* gdb.base/setshow.exp: Test "set height unlimited".
* gdb.trace/trace-buffer-size.exp: Test "set trace-buffer-size
unlimited".
2013-04-10 17:11:12 +02:00
|
|
|
|
2013-04-10 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Process Record and Replay): Document that "set
|
|
|
|
|
record full insn-number-max", "set record
|
|
|
|
|
instruction-history-size" and "set record
|
|
|
|
|
function-call-history-size" accept "unlimited".
|
|
|
|
|
(Backtrace): Document that "set backtrace limit" accepts
|
|
|
|
|
"unlimited".
|
|
|
|
|
(List): Document that "set listsize" accepts "unlimited".
|
|
|
|
|
(Print Settings)" Document that "set print max-symbolic-offset",
|
|
|
|
|
"set print elements" and "set print repeats" accept "unlimited".
|
|
|
|
|
(Starting and Stopping Trace Experiments): Document that "set
|
|
|
|
|
trace-buffer-size" accepts "unlimited".
|
|
|
|
|
(Remote Configuration): Document that "set tcp connect-timeout"
|
|
|
|
|
accepts "unlimited".
|
|
|
|
|
(Command History): Document that "set history size" accepts
|
|
|
|
|
"unlimited".
|
|
|
|
|
(Screen Size): Document that "set height" and "set width" accepts
|
|
|
|
|
"unlimited". Adjust "set pagination"'s description to suggest
|
|
|
|
|
"set height unlimited" instead of "set height 0".
|
|
|
|
|
|
gdb/
2013-04-10 Hui Zhu <hui@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* configure.ac: Check libbabeltrace is installed.
* config.in: Regenerate.
* configure: Regenerate.
* Makefile.in (LIBBABELTRACE): New.
(CLIBS): Add LIBBABELTRACE.
* ctf.c: Include "exec.h".
(CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
(CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
(ctf_save_metadata_header): Define new type aliases in
metadata.
(ctf_write_header): Define event type "tsv_def" and "tp_def"
in metadata. Start a new faked packet for trace status.
(ctf_write_status): Write trace status to CTF.
(ctf_write_uploaded_tsv): Write TSV to CTF.
(ctf_write_uploaded_tp): Write tracepoint definition to CTF.
(ctf_write_definition_end): End the faked packet.
(ctx, ctf_iter, trace_dirname): New.
(start_pos): New variable.
(ctf_destroy, ctf_open_dir, ctf_open): New.
(SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
macros.
(ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
(ctf_fetch_registers, ctf_xfer_partial): New.
(ctf_get_trace_state_variable_value): New.
(ctf_get_tpnum_from_frame_event): New.
(ctf_get_traceframe_address): New.
(ctf_trace_find, ctf_has_stack): New.
(ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
(ctf_get_trace_status, ctf_read_status): New.
(_initialize_ctf): New.
* tracepoint.c (get_tracepoint_number): New
(get_uploaded_tsv): Remove 'static'.
(struct traceframe_info, trace_regblock_size): Move it to ...
* tracepoint.h: ... here.
(get_tracepoint_number): Declare it.
(get_uploaded_tsv): Declare it.
* NEWS: Mention new configure option.
gdb/doc/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.texinfo (Trace Files): Add "target ctf".
gdb/testsuite/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.trace/actions.exp: Save trace data to CTF.
Change to ctf target if GDB supports, read CTF data in ctf
target, and check the actions of tracepoints.
* gdb.trace/while-stepping.exp: Likewise.
* gdb.trace/report.exp: Test GDB saves trace data to CTF
format and read CTF trace file if GDB supports.
* gdb.trace/tstatus.exp: Save trace data to CTF. If ctf
target is supported, change to ctf target, read trace data and
check output of command "tstatus".
* gdb.trace/tsv.exp: Save trace frame to CTF. If GDB supports,
read CTF data by target ctf and call check_tsv.
2013-04-10 11:42:57 +02:00
|
|
|
|
2013-04-10 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Trace Files): Add "target ctf".
|
|
|
|
|
|
2013-04-06 17:52:06 +02:00
|
|
|
|
2013-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (POD2MAN1, POD2MAN5): Replace $(VERSION) by ../version.in.
|
|
|
|
|
|
2013-04-07 08:04:58 +02:00
|
|
|
|
* Makefile.in (install-man1, install-man5, uninstall-man1)
|
|
|
|
|
(uninstall-man5): Replace $(MANS) by $(MAN1S) and $(MAN5S) respectively.
|
|
|
|
|
|
2013-04-07 08:20:19 +02:00
|
|
|
|
* Makefile.in (gdb.1, gdbserver.1, gdbinit.5): Use $(srcdir).
|
|
|
|
|
|
2013-04-06 10:58:53 +02:00
|
|
|
|
2013-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdbserver man): Rename tty to comm. Swap --attach
|
|
|
|
|
parameters order. Remove "On some targets" for --attach. Document the
|
|
|
|
|
--multi parameter and extended-remote command. Document all the
|
|
|
|
|
options.
|
|
|
|
|
|
2013-04-05 22:02:58 +02:00
|
|
|
|
2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb man): Mention option -p. Include Fortran to
|
|
|
|
|
the list of supported languages.
|
|
|
|
|
|
gdb/
Convert man pages to texinfo, new gdbinit.5 texinfo page.
* Makefile.in (gdb.z): Remove.
(install-only): Remove $(man1dir) and gdb.1 installation.
* gdb.1: Remove.
gdb/gdbserver/
Convert man pages to texinfo, new gdbinit.5 texinfo page.
* Makefile.in (install-only): Remove $(man1dir) and gdbserver.1
installation.
* gdbserver.1: Remove.
gdb/doc/
Convert man pages to texinfo, new gdbinit.5 texinfo page.
* Makefile.in (mandir, man1dir, man5dir, SYSTEM_GDBINIT, MANCONF,
(TEXI2POD, POD2MAN1, POD2MAN5, MAN1S, MAN5S, MANS, man): New.
(diststuff): Add man.
(install-man, install-man1, install-man5, uninstall-man, uninstall-man1)
(uninstall-man5): New.
(STAGESTUFF): Add *.1 and *.5.
(GDBvn.texi): Add SYSTEM_GDBINIT.
(gdb.1, gdbserver.1, gdbinit.5): New.
(maintainer-clean realclean): Add $(MANS).
(install): Add install-man.
(uninstall): Add uninstall-man.
* gdb.texinfo (@include gdb-cfg.texi): Wrap it by @c man begin INCLUDE.
(@copying): Wrap it by @c man begin COPYRIGHT.
(Top): Add Man Pages.
(Man Pages, gdb man, gdbserver man, gdbinit man): New.
2013-04-05 22:01:33 +02:00
|
|
|
|
2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Convert man pages to texinfo, new gdbinit.5 texinfo page.
|
|
|
|
|
* Makefile.in (mandir, man1dir, man5dir, SYSTEM_GDBINIT, MANCONF,
|
|
|
|
|
(TEXI2POD, POD2MAN1, POD2MAN5, MAN1S, MAN5S, MANS, man): New.
|
|
|
|
|
(diststuff): Add man.
|
|
|
|
|
(install-man, install-man1, install-man5, uninstall-man, uninstall-man1)
|
|
|
|
|
(uninstall-man5): New.
|
|
|
|
|
(STAGESTUFF): Add *.1 and *.5.
|
|
|
|
|
(GDBvn.texi): Add SYSTEM_GDBINIT.
|
|
|
|
|
(gdb.1, gdbserver.1, gdbinit.5): New.
|
|
|
|
|
(maintainer-clean realclean): Add $(MANS).
|
|
|
|
|
(install): Add install-man.
|
|
|
|
|
(uninstall): Add uninstall-man.
|
|
|
|
|
* gdb.texinfo (@include gdb-cfg.texi): Wrap it by @c man begin INCLUDE.
|
|
|
|
|
(@copying): Wrap it by @c man begin COPYRIGHT.
|
|
|
|
|
(Top): Add Man Pages.
|
|
|
|
|
(Man Pages, gdb man, gdbserver man, gdbinit man): New.
|
|
|
|
|
|
2013-04-02 19:52:08 +02:00
|
|
|
|
2013-04-02 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document "set/show debug
|
|
|
|
|
aarch64", "set/show debug coff-pe-read" and "set/show debug
|
|
|
|
|
mach-o".
|
|
|
|
|
|
2013-04-02 19:48:49 +02:00
|
|
|
|
2013-04-02 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration) <set remote @var{name}-packet
|
|
|
|
|
table>: Add entry for "trace-buffer-size".
|
|
|
|
|
|
2013-03-28 22:58:03 +01:00
|
|
|
|
2013-03-28 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration) <set remote @var{name}-packet
|
|
|
|
|
table>: Add entry for "trace-status".
|
|
|
|
|
|
2013-03-28 22:07:56 +01:00
|
|
|
|
2013-03-28 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Use @enumerate, not "@table
|
|
|
|
|
@bullet", which is invalid (makeinfo 5.1 barfs).
|
|
|
|
|
|
Fix PR gdb/15294: list with unlimited listsize broken
Currently, "set listsize -1" is supposed to mean "unlimited" source
lines, but, alas, it doesn't actually work:
(gdb) set listsize -1
(gdb) show listsize
Number of source lines gdb will list by default is unlimited.
(gdb) list 1
(gdb) list 1
(gdb) list 1
(gdb) set listsize 10
(gdb) list 1
1 /* Main function for CLI gdb.
2 Copyright (C) 2002-2013 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
Before this patch:
http://sourceware.org/ml/gdb-patches/2012-08/msg00367.html
was applied, the "set listsize" command was a var_integer command, and
"unlimited" was set with 0. Internally, var_integer maps 0 to INT_MAX
case var_integer:
{
...
if (val == 0 && c->var_type == var_integer)
val = INT_MAX;
The change in that patch to zuinteger_unlimited command, meant that -1
is left as -1 in the command's control variable (lines_to_list), and
the code in source.c isn't expecting that -- it only expects positive
numbers.
I previously suggested fixing the code and keeping the new behavior,
but I found that "set listsize 0" is currently used in the wild, and
we do have a bunch of other commands where "0" means unlimited, so I'm
thinking that changing this command alone in isolation is not a good
idea.
So I now strongly prefer reverting back the behavior in 7.6 to the
same behavior the command has had since 2006 (0==unlimited, -1=error).
Before that, set listsize -1 would be accepted as unlimited as well.
After 7.6 is out, in mainline, we can get back to reconsidering
changing this command's behavior, if there's a real need for being
able to suppress output. For now, let's play it safe.
The "list line 1 with unlimited listsize" test in list.exp was
originally written years and years ago expecting 0 to mean "no
output", but GDB never actually worked that way, even when the tests
were written, so the tests had been xfailed then. This patch now
adjusts the test to the new behavior, so that the test actually
passes, and the xfail is removed.
gdb/
2013-03-28 Pedro Alves <palves@redhat.com>
PR gdb/15294
* source.c (_initialize_source): Change back "set listsize" to an
integer command.
gdb/testsuite/
2013-03-28 Pedro Alves <palves@redhat.com>
PR gdb/15294
* gdb.base/list.exp (set_listsize): Adjust to accept $arg == 0 to
mean unlimited instead of $arg < 0.
(test_listsize): Remove "listsize of 0 suppresses output" test.
Test that "set listsize 0" ends up with an unlimited listsize.
gdb/doc/
2013-03-28 Pedro Alves <palves@redhat.com>
PR gdb/15294
* gdb.texinfo (List) <set listsize>: Adjust to document that
listsize 0 means no limit, and remove mention of -1.
2013-03-28 12:57:47 +01:00
|
|
|
|
2013-03-28 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR gdb/15294
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (List) <set listsize>: Adjust to document that
|
|
|
|
|
listsize 0 means no limit, and remove mention of -1.
|
|
|
|
|
|
2013-03-22 01:58:53 +01:00
|
|
|
|
2013-03-22 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Embedded Processors): Remove menu item
|
|
|
|
|
"OpenRISC 1000".
|
|
|
|
|
(OpenRISC 1000): Remove.
|
|
|
|
|
|
New commands "mt set per-command {space,time,symtab} {on,off}".
* NEWS: Add entry.
* event-top.c: #include "maint.h".
* main.c: #include "maint.h".
* maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
timeval-utils.h, maint.h, cli/cli-setshow.h.
(per_command_time, per_command_space): New static globals.
(per_command_symtab): New static global.
(per_command_setlist, per_command_showlist): New static globals.
(struct cmd_stats): Move here from utils.c.
(set_per_command_time): Renamed from set_display_time in utils.c
and moved here. All callers updated.
(set_per_command_space): Renamed from set_display_space in utils.c
and moved here. All callers updated.
(count_symtabs_and_blocks): New function.
(report_command_stats): Moved here from utils.c. Add support for
printing symtab stats. Only print data if enabled before command
executed.
(make_command_stats_cleanup): Ditto.
(sert_per_command_cmd, show_per_command_cmd): New functions.
(_initialize_maint_cmds): Add new commands
mt set per-command {space,time,symtab} {on,off}.
* maint.h: New file.
* top.c: #include "maint.h".
* utils.c (reset_prompt_for_continue_wait_time): New function.
(get_prompt_for_continue_wait_time): New function.
* utils.h (reset_prompt_for_continue_wait_time): Declare
(get_prompt_for_continue_wait_time): Declare.
(make_command_stats_cleanup): Moved to maint.h.
(set_display_time, set_display_space): Moved to maint.h and renamed
to set_per_command_time, set_per_command_space.
* cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
parse_binary_operation and made non-static. Don't call error,
just return an error marker. All callers updated.
* cli/cli-setshow.h (parse_cli_boolean_value): Declare.
doc/
* gdb.texinfo (Maintenance Commands): Add docs for
"mt set per-command {space,time,symtab} {on,off}".
testsuite/
* gdb.base/maint.exp: Update tests for per-command stats.
2013-03-21 18:37:30 +01:00
|
|
|
|
2013-03-21 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Add docs for
|
|
|
|
|
"mt set per-command {space,time,symtab} {on,off}".
|
|
|
|
|
|
2013-03-14 10:02:30 +01:00
|
|
|
|
2013-03-14 Hui Zhu <hui@codesourcery.com>
|
|
|
|
|
Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Trace Files): Add "tsave -ctf".
|
|
|
|
|
|
2013-03-13 18:55:50 +01:00
|
|
|
|
2013-03-13 Keith Seitz <keiths@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Add missing ')' for
|
|
|
|
|
"maint agent" reference to Dynamic printf.
|
|
|
|
|
|
2013-03-11 20:43:53 +01:00
|
|
|
|
2013-03-11 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Don't use colon in index
|
|
|
|
|
entries visible to Info format.
|
|
|
|
|
|
2013-03-11 09:55:36 +01:00
|
|
|
|
2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Process Record and Replay): Document record
|
|
|
|
|
changes.
|
|
|
|
|
|
2013-03-11 09:36:57 +01:00
|
|
|
|
2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Requirements): List qXfer:btrace:read requiring expat.
|
|
|
|
|
(General Query Packets): Describe Qbtrace:bts, Qbtrace:off, and
|
|
|
|
|
qXfer:btrace:read.
|
|
|
|
|
|
2013-03-09 12:01:01 +01:00
|
|
|
|
2013-03-09 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets, Tracepoint Packets): Don't
|
|
|
|
|
use colons in @anchor and @cindex entries.
|
|
|
|
|
|
2013-03-09 13:05:20 +01:00
|
|
|
|
2013-03-09 Hafiz Abid Qadeer <abidh@codesourcery.com>
|
2013-03-09 11:21:42 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (QTBuffer:size): Add cindex and anchor.
|
|
|
|
|
|
2013-03-09 13:05:20 +01:00
|
|
|
|
2013-03-08 Stan Shebs <stan@codesourcery.com>
|
2013-03-08 16:06:39 +01:00
|
|
|
|
Hafiz Abid Qadeer <abidh@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting and Stopping Trace Experiments): Document
|
|
|
|
|
trace-buffer-size set and show commands.
|
|
|
|
|
(Tracepoint Packets): Document QTBuffer:size.
|
|
|
|
|
(General Query Packets): Document QTBuffer:size.
|
|
|
|
|
|
2013-02-21 20:08:10 +01:00
|
|
|
|
2013-02-21 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove bad @syncodeindex.
|
|
|
|
|
(Values From Inferior, Types In Python, Inferiors In Python)
|
|
|
|
|
(Events In Python, Threads In Python, Frames In Python, Blocks In
|
|
|
|
|
Python, Symbols In Python, Symbol Tables In Python): Remove
|
|
|
|
|
@tables.
|
|
|
|
|
(Packets, General Query Packets, Tracepoint Packets)
|
|
|
|
|
(Host I/O Packets): Use @w{} for empty @item.
|
|
|
|
|
|
2013-02-21 02:46:57 +01:00
|
|
|
|
2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Architectures In Python): Add description about
|
|
|
|
|
the new method gdb.Architecture.disassemble.
|
|
|
|
|
|
2013-02-15 10:47:50 +01:00
|
|
|
|
2013-02-15 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
Hafiz Abid Qadeer <abidh@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Tracepoint Commands) <-trace-status>:
|
|
|
|
|
Document the "trace-file" field.
|
|
|
|
|
|
2013-02-07 21:38:23 +01:00
|
|
|
|
2013-02-07 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code): Clarify argument to disassemble
|
|
|
|
|
command.
|
|
|
|
|
|
2013-02-06 15:45:20 +01:00
|
|
|
|
2013-02-06 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document new MI
|
|
|
|
|
notification "=tsv-modified". Update the document of MI
|
|
|
|
|
notification "=tsv-created".
|
|
|
|
|
* observer.texi (GDB Observers): New observer tsv_modified.
|
|
|
|
|
Update observer tsv_created and tsv_delete.
|
|
|
|
|
|
2013-02-05 14:59:08 +01:00
|
|
|
|
2013-02-05 Yufeng Zhang <yufeng.zhang@arm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (AArch64 Features): New section; document
|
|
|
|
|
org.gnu.gdb.aarch64.core and org.gnu.gdb.aarch64.fpu.
|
|
|
|
|
(Architectures): Add new AArch64 section to document AArch64
|
|
|
|
|
architecture specific commands.
|
|
|
|
|
(ABI): Add description of the new OS ABI "Newlib" and its influence
|
|
|
|
|
on the longjmp handling.
|
|
|
|
|
|
2013-02-03 17:09:33 +01:00
|
|
|
|
2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
|
|
|
|
|
Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Added description of 'filename-display'
|
|
|
|
|
variable in 'set/show backtrace' section.
|
|
|
|
|
|
2013-01-31 17:06:47 +01:00
|
|
|
|
2013-01-31 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Commands): Fix typo.
|
|
|
|
|
|
2013-01-23 20:59:13 +01:00
|
|
|
|
2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* doc/gdb.texinfo (Architectures In Python): New sub-sub-section
|
|
|
|
|
describing the gdb.Architecture class.
|
|
|
|
|
(Frames In Python): Add description about the new method
|
|
|
|
|
gdb.Frame.architecture().
|
|
|
|
|
|
2013-01-23 19:47:51 +01:00
|
|
|
|
2013-01-23 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Section Format): Document .gdb_index version 8.
|
|
|
|
|
|
2013-01-22 00:58:00 +01:00
|
|
|
|
2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Document new
|
|
|
|
|
'thread-groups' field when printing a breakpoint in MI.
|
|
|
|
|
|
2013-01-17 15:17:16 +01:00
|
|
|
|
2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
|
|
|
|
|
* gdb.texinfo (Using JIT Debug Info Readers): Change documentation
|
|
|
|
|
to reflect that jit-reader-load now supports absolute file-names.
|
|
|
|
|
|
2013-01-16 18:31:40 +01:00
|
|
|
|
2013-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Document "catch signal".
|
|
|
|
|
(Signals): Likewise.
|
|
|
|
|
|
2013-01-16 18:27:53 +01:00
|
|
|
|
2013-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Information): Document
|
|
|
|
|
"catch-type" field.
|
|
|
|
|
(GDB/MI Catchpoint Commands): Add "catch-type" to examples.
|
|
|
|
|
|
2013-01-07 17:40:39 +01:00
|
|
|
|
2013-01-07 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Don't mention -epoch.
|
|
|
|
|
(Data, Emacs): Remove obsolete comments.
|
|
|
|
|
|
2013-01-02 16:00:34 +01:00
|
|
|
|
2013-01-02 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Output Records): Update menu.
|
|
|
|
|
(GDB/MI Breakpoint Information): New node.
|
|
|
|
|
(GDB/MI Breakpoint Commands) <-break-info>: Link to new node.
|
|
|
|
|
<-break-insert>: Likewise.
|
|
|
|
|
|
2012-12-31 04:00:11 +01:00
|
|
|
|
2012-12-31 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Non-Stop): Move paragraphs to ...
|
|
|
|
|
(Packets): Move "vStopped" packet to ...
|
|
|
|
|
(Notification Packets): ... here. Describe the components
|
|
|
|
|
of notification. Add a table of supported notifications.
|
|
|
|
|
Add an example on the process of he async notification.
|
|
|
|
|
|
2012-12-25 09:03:33 +01:00
|
|
|
|
2012-12-25 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Data Manipulation) (fullname): Make it always
|
|
|
|
|
present.
|
|
|
|
|
(GDB/MI File Commands) (-file-list-exec-source-files): Make the
|
|
|
|
|
fullname output always present.
|
|
|
|
|
|
2012-12-22 18:51:11 +01:00
|
|
|
|
2012-12-23 Pierre Muller <muller@sourceware.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Function prototypes): Require use of "extern"
|
|
|
|
|
modifier for function prototypes in headers.
|
|
|
|
|
|
2012-12-19 09:19:59 +01:00
|
|
|
|
2012-12-19 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* refcard.tex: Update copyright notice to GPL v3 or later.
|
|
|
|
|
Update contact info.
|
|
|
|
|
|
2012-12-16 20:00:04 +01:00
|
|
|
|
2012-12-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding Standards) (C Usage): New rule for 0 vs. NULL.
|
|
|
|
|
|
2012-12-15 05:06:40 +01:00
|
|
|
|
2012-12-15 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document 'set debug
|
|
|
|
|
notification' and 'show debug notification'.
|
|
|
|
|
|
2012-12-15 03:19:21 +01:00
|
|
|
|
2012-12-15 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Listing Tracepoints): New item and example about
|
|
|
|
|
'installed on target' output.
|
|
|
|
|
Add more in the example about 'installed on target'.
|
|
|
|
|
(GDB/MI Breakpoint Commands): Doc about 'installed field.
|
|
|
|
|
|
2012-12-14 16:30:38 +01:00
|
|
|
|
2012-12-14 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (SVR4 Process Information): Mention core files.
|
|
|
|
|
|
2012-12-12 22:23:29 +01:00
|
|
|
|
2012-12-12 Mircea Gherzan <mircea.gherzan@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Catchpoint Commands): New section.
|
|
|
|
|
|
2012-12-11 12:32:39 +01:00
|
|
|
|
2012-12-11 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove all mentions of Unixware throughout.
|
|
|
|
|
|
2012-12-09 19:39:59 +01:00
|
|
|
|
2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Remove CC_HAS_LONG_LONG.
|
|
|
|
|
|
2012-11-29 18:49:20 +01:00
|
|
|
|
2012-11-29 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (SVR4 Process Information): Document missing
|
|
|
|
|
"info proc" subcommands.
|
|
|
|
|
|
2012-11-29 07:24:24 +01:00
|
|
|
|
2012-11-29 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR gdb/1477.
|
|
|
|
|
* gdb.texinfo (Print Settings): Correct the default 'demangle-style'
|
|
|
|
|
to 'auto' instead of 'gnu'.
|
|
|
|
|
|
2012-11-26 20:23:56 +01:00
|
|
|
|
2012-11-26 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MiniDebugInfo): New node.
|
|
|
|
|
(GDB Files): Update.
|
|
|
|
|
|
2012-11-16 20:43:39 +01:00
|
|
|
|
2012-11-16 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (System-wide configuration): If the system-wide init
|
|
|
|
|
file lives in the data-directory, and --data-directory is provided,
|
|
|
|
|
look for it there.
|
|
|
|
|
|
2012-11-15 22:25:43 +01:00
|
|
|
|
2012-11-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Signaling): Fix typo.
|
|
|
|
|
|
2012-11-13 22:19:11 +01:00
|
|
|
|
2012-11-13 Giuseppe Montalto <giuseppe.montalto@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Data Manipulation): Document new optional
|
|
|
|
|
parameter "count" of -data-write-memory-bytes, and add an example.
|
|
|
|
|
|
* NEWS: Update.
* data-directory/Makefile.in (PYTHON_FILES): Add
type_printers.py.
* python/lib/gdb/command/type_printers.py: New file.
* python/lib/gdb/command/types.py (TypePrinter): New class.
(_get_some_type_recognizers, get_type_recognizers,
apply_type_recognizers, register_type_printer): New
functions.
* python/py-objfile.c (objfile_object) <type_printers>: New
field.
(objfpy_dealloc): Decref new field.
(objfpy_new): Set new field.
(objfpy_get_type_printers, objfpy_set_type_printers): New
functions.
(objfile_to_objfile_object): Set new field.
(objfile_getset): Add "type_printers".
* python/py-progspace.c (pspace_object) <type_printers>: New
field.
(pspy_dealloc): Decref new field.
(pspy_new): Set new field.
(pspy_get_type_printers, pspy_set_type_printers): New functions.
(pspace_to_pspace_object): Set new field.
(pspace_getset): Add "type_printers".
* python/python.c (start_type_printers, apply_type_printers,
free_type_printers): New functions.
(_initialize_python): Set gdb.type_printers.
* python/python.h (start_type_printers, apply_type_printers,
free_type_printers): Declare.
* typeprint.c (type_print_raw_options, default_ptype_flags):
Update for new fields.
(do_free_global_table, create_global_typedef_table,
find_global_typedef): New functions.
(find_typedef_in_hash): Use find_global_typedef.
(whatis_exp): Use create_global_typedef_table. Change cleanup
handling.
* typeprint.h (struct type_print_options) <global_typedefs,
global_printers>: New fields.
doc
* gdb.texinfo (Symbols): Document "info type-printers",
"enable type-printer" and "disable type-printer".
(Python API): Add new node to menu.
(Type Printing API): New node.
(Progspaces In Python): Document type_printers field.
(Objfiles In Python): Likewise.
(gdb.types) <get_type_recognizers, apply_type_recognizers,
register_type_printer, TypePrinter>: Document.
testsuite
* gdb.base/completion.exp: Update for "info type-printers".
* gdb.python/py-typeprint.cc: New file.
* gdb.python/py-typeprint.exp: New file.
* gdb.python/py-typeprint.py: New file.
2012-11-12 18:41:59 +01:00
|
|
|
|
2012-11-12 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Document "info type-printers",
|
|
|
|
|
"enable type-printer" and "disable type-printer".
|
|
|
|
|
(Python API): Add new node to menu.
|
|
|
|
|
(Type Printing API): New node.
|
|
|
|
|
(Progspaces In Python): Document type_printers field.
|
|
|
|
|
(Objfiles In Python): Likewise.
|
|
|
|
|
(gdb.types) <get_type_recognizers, apply_type_recognizers,
|
|
|
|
|
register_type_printer, TypePrinter>: Document.
|
|
|
|
|
|
* NEWS: Update.
* c-typeprint.c (c_type_print_base): Handle print_method and
print_typedefs flags.
* gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
* python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
options.
* typeprint.c (type_print_raw_options, default_ptype_flags):
Update for new field.s
(whatis_exp): Parse flags. Use LA_PRINT_TYPE.
(setprinttypelist, showprinttypelist, print_methods,
print_typedefs): New globals.
(set_print_type, show_print_type, set_print_type_methods,
show_print_type_methods, set_print_type_typedefs,
show_print_type_typedefs): New functions.
(_initialize_typeprint): Update documentation. Add "print
type methods" and "print type typedefs" parameters.
* typeprint.h (struct type_print_options) <print_methods,
print_typedefs>: New fields.
doc
* gdb.texinfo (Symbols): Document "set print type methods",
"set print type typedefs", and flags to ptype and whatis.
2012-11-12 18:26:21 +01:00
|
|
|
|
2012-11-12 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Document "set print type methods",
|
|
|
|
|
"set print type typedefs", and flags to ptype and whatis.
|
|
|
|
|
|
2012-11-09 14:23:33 +01:00
|
|
|
|
2012-11-09 Andrew Burgess <aburgess@broadcom.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Data Manipulation): Add fullname field to
|
|
|
|
|
the example -data-disassemble output. Extend the description of
|
|
|
|
|
the -data-disassemble results to document all fields. Document
|
|
|
|
|
the cli disassemble command as being related to -data-disassemble.
|
|
|
|
|
|
2012-11-09 04:06:29 +01:00
|
|
|
|
2012-11-09 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR gdb/14777.
|
|
|
|
|
* gdb.texinfo (OS Information): Remove doc on command
|
|
|
|
|
'info udot'.
|
|
|
|
|
|
2012-11-08 23:26:31 +01:00
|
|
|
|
2012-11-08 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Startup): Minor rewording, and clarify scope of
|
|
|
|
|
gdb.ini warning for Windows port.
|
|
|
|
|
|
2012-11-08 05:05:16 +01:00
|
|
|
|
2012-11-08 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Search): Add kindex for 'fo'.
|
|
|
|
|
|
2012-11-05 20:36:38 +01:00
|
|
|
|
2012-11-05 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/14802:
|
|
|
|
|
* gdb.texinfo (Functions In Python): Add example.
|
|
|
|
|
|
2012-11-03 13:14:47 +01:00
|
|
|
|
2012-11-03 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Remove observer
|
|
|
|
|
'tracepoint_modified', 'tracepoint_created' and
|
|
|
|
|
'tracepoint_deleted'.
|
|
|
|
|
|
2012-10-26 20:18:55 +02:00
|
|
|
|
2012-10-26 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Use @itemx for QAgent.
|
|
|
|
|
|
2012-10-25 18:16:06 +02:00
|
|
|
|
2012-10-25 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Use @itemx.
|
|
|
|
|
|
2012-10-17 02:53:24 +02:00
|
|
|
|
2012-10-17 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Update observer
|
|
|
|
|
'memory_changed'.
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document for
|
|
|
|
|
"memory-changed" notification.
|
|
|
|
|
|
2012-10-15 23:45:04 +02:00
|
|
|
|
2012-10-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Document -nh.
|
|
|
|
|
Elaborate on docs for -nx.
|
|
|
|
|
|
2012-09-26 04:06:55 +02:00
|
|
|
|
2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (memory_changed): Expand parameter LEN to ssize_t.
|
|
|
|
|
|
2012-09-21 03:46:46 +02:00
|
|
|
|
2012-09-21 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document notification
|
|
|
|
|
'record-started' and 'record-stopped'.
|
|
|
|
|
* observer.texi (GDB Observers): New observer 'record-changed'.
|
|
|
|
|
|
2012-09-19 13:07:01 +02:00
|
|
|
|
2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document the removal of SH's 'regs' command.
|
|
|
|
|
|
2012-09-18 22:14:56 +02:00
|
|
|
|
2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (jump): Mention new alias `j' for `jump'.
|
|
|
|
|
|
2012-09-18 14:09:28 +02:00
|
|
|
|
2012-09-18 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document new MI
|
|
|
|
|
notifications '=tsv-created' and '=tsv-deleted'.
|
|
|
|
|
* observer.texi (GDB Observers): New observer tsv_created and
|
|
|
|
|
tsv_deleted.
|
|
|
|
|
|
2012-09-18 13:33:43 +02:00
|
|
|
|
2012-09-18 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): New observer 'traceframe_changed'.
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Mention new MI notification
|
|
|
|
|
'=traceframe-changed'.
|
|
|
|
|
|
2012-09-17 10:42:14 +02:00
|
|
|
|
2012-09-17 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (List): Describe the meaning of 0 and -1 in
|
|
|
|
|
'set listsize'.
|
|
|
|
|
|
2012-09-13 19:35:35 +02:00
|
|
|
|
2012-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Defining Other Architecture Features): Clarify *pcptr
|
|
|
|
|
encoding for gdbarch_breakpoint_from_pc, bp_addr for
|
|
|
|
|
gdbarch_push_dummy_call and bp_addr for gdbarch_push_dummy_code.
|
|
|
|
|
|
2012-08-27 18:50:54 +02:00
|
|
|
|
2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (objfile-gdb.py file): New paragraph for .exe stripping.
|
|
|
|
|
|
2012-08-24 17:23:59 +02:00
|
|
|
|
2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
|
|
|
|
|
|
|
|
|
|
Document how to return from "python-interactive" to GDB.
|
|
|
|
|
* gdb.texinfo (Python Commands): Update documentation.
|
|
|
|
|
|
|
|
|
|
2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
|
|
|
|
|
|
|
|
|
|
Add a new "python-interactive" command that starts a standard
|
|
|
|
|
Python interactive prompt with "pi" as alias, and add "py" as
|
|
|
|
|
an alias to "python".
|
|
|
|
|
* gdb.texinfo (Python Commands): Document the new commands.
|
|
|
|
|
|
2012-08-22 19:31:45 +02:00
|
|
|
|
2012-08-22 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Remove documentation for
|
|
|
|
|
SIGWINCH_HANDLER and SIGWINCH_HANDLER_BODY.
|
|
|
|
|
|
2012-08-17 19:37:03 +02:00
|
|
|
|
2012-08-17 Keith Seitz <keiths@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR c++/13356
|
|
|
|
|
* gdb.texinfo (Type and Range Checking): Remove warning.
|
|
|
|
|
Remove spurious commas.
|
|
|
|
|
Update text and examples for re-implementation of set/show
|
|
|
|
|
check type.
|
|
|
|
|
(C and C++ Type and Range Checks): Likewise.
|
|
|
|
|
|
2012-08-16 09:36:28 +02:00
|
|
|
|
2012-08-16 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types In Python): Mention gdb.TYPE_CODE_BITSTRING
|
|
|
|
|
is deprecated.
|
|
|
|
|
|
2012-08-13 16:31:00 +02:00
|
|
|
|
2012-08-13 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience Vars): Update text for "show convenience"
|
|
|
|
|
to include functions.
|
|
|
|
|
|
2012-08-10 22:26:00 +02:00
|
|
|
|
2012-08-10 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience Funs): New node.
|
|
|
|
|
(Types In Python): Document Type.vector.
|
|
|
|
|
|
2012-08-09 14:53:46 +02:00
|
|
|
|
2012-08-09 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi: New observer command_param_changed.
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Doc for '=cmd-param-changed'.
|
|
|
|
|
|
2012-08-07 18:49:38 +02:00
|
|
|
|
2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Debugging GDB): In section
|
|
|
|
|
'Debugging @value{GDBN} with itself' change .gdbinit for gdb-gdb.gdb.
|
|
|
|
|
Mention also gdb-gdb.py.
|
|
|
|
|
|
2012-08-07 03:11:02 +02:00
|
|
|
|
2012-08-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
Revert the folloing patch:
|
|
|
|
|
2012-08-06 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Add kindex for 'set
|
|
|
|
|
remote hardware-watchpoint-limit' and 'set
|
|
|
|
|
remote hardware-breakpoint-limit'.
|
|
|
|
|
|
2012-08-06 19:13:27 +02:00
|
|
|
|
2012-08-06 Nathaniel Flath <flat0103@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Working Directory): Added information about new
|
|
|
|
|
default argument for 'cd' command.
|
|
|
|
|
|
2012-08-06 16:28:45 +02:00
|
|
|
|
2012-08-06 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Add kindex for 'set
|
|
|
|
|
remote hardware-watchpoint-limit' and 'set
|
|
|
|
|
remote hardware-breakpoint-limit'.
|
|
|
|
|
|
2012-08-06 16:21:10 +02:00
|
|
|
|
2012-08-06 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
Fix PR14371.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Fix the doc for
|
|
|
|
|
'=breakpoint-deleted'.
|
|
|
|
|
|
2012-08-02 11:27:15 +02:00
|
|
|
|
2012-08-02 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Native): Remove node Neutrino.
|
|
|
|
|
|
2012-07-27 10:09:14 +02:00
|
|
|
|
2012-07-27 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (IPA Protocol Commands): Document new command
|
|
|
|
|
'close'.
|
|
|
|
|
|
2012-07-25 17:47:09 +02:00
|
|
|
|
2012-07-25 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document maint info bfds.
|
|
|
|
|
|
2012-07-20 19:38:05 +02:00
|
|
|
|
2012-07-20 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Delete --use-deprecated-index-sections.
|
|
|
|
|
(Index Files): Document how to control the use of deprecated index
|
|
|
|
|
sections.
|
|
|
|
|
(Index Section Format): Replace --use-deprecated-index-sections with
|
|
|
|
|
"set use-deprecated-index-sections on".
|
|
|
|
|
|
2012-07-12 09:56:50 +02:00
|
|
|
|
2012-07-12 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove @syncodeindex directives that put all the
|
|
|
|
|
indices into a single node "Index". Instead, join function and
|
|
|
|
|
variable indices into a single index, separate from the concept
|
|
|
|
|
index. Requested in
|
|
|
|
|
http://sourceware.org/ml/gdb-patches/2012-07/msg00146.html.
|
|
|
|
|
(Top): Update the top-level menu: instead of one "Index" there are
|
|
|
|
|
now separate entries "Concept Index" and "Function and Variable
|
|
|
|
|
Index".
|
|
|
|
|
(Concept Index, Function and Variable Index): New nodes.
|
|
|
|
|
(Index): Node deleted.
|
|
|
|
|
|
2012-07-05 03:08:24 +02:00
|
|
|
|
2012-07-05 Hui Zhu <hui_zhu@mentor.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Change help for "maint agent"
|
|
|
|
|
and "maint agent-eval".
|
|
|
|
|
|
2012-07-03 18:22:42 +02:00
|
|
|
|
2012-07-03 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Separate the index into 2 indices, cp and fn, to
|
|
|
|
|
avoid file-name clashes between Index.html and index.html on
|
|
|
|
|
case-insensitive filesystems. See the discussion starting in
|
|
|
|
|
http://sourceware.org/ml/gdb-patches/2012-06/msg00457.html for the
|
|
|
|
|
details of the problem.
|
|
|
|
|
(Top): Update the master menu for the above.
|
|
|
|
|
(Concept Index, Command and Variable Index): New nodes, instead of
|
|
|
|
|
the old "Index" node that was deleted. All cross-references
|
|
|
|
|
updated.
|
|
|
|
|
|
2012-07-02 17:29:39 +02:00
|
|
|
|
2012-07-02 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Dynamic Printf): Mention agent style and
|
|
|
|
|
disconnected dprintf.
|
|
|
|
|
(Maintenance Commands): Describe maint agent-printf.
|
|
|
|
|
(General Query Packets): Mention BreakpointCommands feature.
|
|
|
|
|
(Packets): Document commands extension to Z0 packet.
|
|
|
|
|
* agentexpr.texi (Bytecode Descriptions): Document printf
|
|
|
|
|
bytecode.
|
|
|
|
|
|
2012-07-02 14:05:01 +02:00
|
|
|
|
2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Change -ix and -iex commands that apply
|
|
|
|
|
only after gdbinit files.
|
|
|
|
|
(Startup): Move -iex and -iex commands down after gdbinit files.
|
|
|
|
|
|
2012-07-02 12:57:34 +02:00
|
|
|
|
2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading safe path): Note the shell wildcard
|
|
|
|
|
possibility.
|
|
|
|
|
|
2012-06-29 15:39:02 +02:00
|
|
|
|
2012-06-29 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Section Format): Update for version 7.
|
|
|
|
|
|
2012-06-29 01:44:26 +02:00
|
|
|
|
2012-06-28 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Miscellaneous GDB/MI Commands): Update -info-os
|
|
|
|
|
example, add note about title column.
|
|
|
|
|
|
2012-06-27 02:21:21 +02:00
|
|
|
|
2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbol Tables In Python): Add description about
|
|
|
|
|
the new 'last' attribute of gdb.Symtab_and line.
|
|
|
|
|
|
2012-06-27 01:51:32 +02:00
|
|
|
|
2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbol Tables In Python): Correct the description
|
|
|
|
|
of the 'pc' attribute of gdb.Symtab_and_line.
|
|
|
|
|
|
2012-06-26 22:14:03 +02:00
|
|
|
|
2012-06-26 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document debug options dwarf2-read
|
|
|
|
|
and symtab-create.
|
|
|
|
|
|
2012-06-25 22:51:30 +02:00
|
|
|
|
2012-06-25 Keith Seitz <keiths@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Remove "-r" option
|
|
|
|
|
from example. Remove "rbreak" from list of corresponding
|
|
|
|
|
gdb commands.
|
|
|
|
|
|
2012-06-24 00:23:47 +02:00
|
|
|
|
2012-06-23 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Section Format): Document version 7 format.
|
|
|
|
|
|
2012-06-22 10:37:49 +02:00
|
|
|
|
2012-06-22 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add missing cindex for some packets.
|
|
|
|
|
|
2012-06-20 22:11:06 +02:00
|
|
|
|
2012-06-20 Keith Seitz <keiths@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Re-order options
|
|
|
|
|
for -break-insert and document -p.
|
|
|
|
|
|
2012-06-20 06:02:22 +02:00
|
|
|
|
2012-06-20 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors In Python): Replace "gdb.read_memory"
|
|
|
|
|
and "gdb.write_memory" with "Inferior.read_memory" and
|
|
|
|
|
"Inferior.write_memory".
|
|
|
|
|
|
2012-06-15 11:21:37 +02:00
|
|
|
|
2012-06-15 Patrice Dumas <pertusus@free.fr> (tiny change)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Summary): Add a link to "Free Documentation".
|
|
|
|
|
(Free Documentation): Add @node line.
|
|
|
|
|
(Continuing and Stepping) <advance location>: Use @item instead of
|
|
|
|
|
@itemx.
|
|
|
|
|
(Reverse Execution) <set exec-direction reverse>: Use @item instead of
|
|
|
|
|
@itemx.
|
|
|
|
|
(Embedded Processors): Put the link to "PA" to its correct place,
|
|
|
|
|
according to document structure.
|
|
|
|
|
(Python API): Put the link to "Lazy Strings In Python" to its
|
|
|
|
|
correct place.
|
|
|
|
|
(Index): Use @@ in @tex block to get a literal @.
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix the @subtitle line.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Top): Put the link to "Symbol Types Index" to its
|
|
|
|
|
correct place.
|
|
|
|
|
|
2012-06-08 15:05:55 +02:00
|
|
|
|
2012-06-08 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (In-Process Agent): Add 'In-Process Agent
|
|
|
|
|
Protocol'.
|
|
|
|
|
(In-Process Agent Protocol, IPA Protocol Objects)
|
|
|
|
|
(IPA Protocol Commands): New nodes.
|
|
|
|
|
(Tracepoint Packets): Add anchors.
|
|
|
|
|
|
2012-06-06 20:03:54 +02:00
|
|
|
|
2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document the deprecation of SH's 'regs' command.
|
|
|
|
|
|
2012-06-06 10:20:12 +02:00
|
|
|
|
2012-06-06 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update copyright year.
|
|
|
|
|
|
2012-05-24 02:33:47 +02:00
|
|
|
|
2012-05-23 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
Kwok Cheung Yeung <kcy@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Miscellaneous GDB/MI Commands): Document -info-os.
|
|
|
|
|
|
2012-05-20 22:35:19 +02:00
|
|
|
|
2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): New anchor debug-file-directory.
|
|
|
|
|
Mention also --with-separate-debug-dir.
|
|
|
|
|
(Auto-loading): Prepend $debugdir in the sample output.
|
|
|
|
|
(Auto-loading safe path): Likewise. Mention also $debugdir for the
|
|
|
|
|
auto-load safe-path variable.
|
|
|
|
|
(objfile-gdb.py file): Remove the extra debug-file-directory paragraph.
|
|
|
|
|
Mention also $debugdir for 'set auto-load scripts-directory'.
|
|
|
|
|
|
2012-05-19 10:50:59 +02:00
|
|
|
|
2012-05-19 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Continuing and Stepping, Selection, Byte Order)
|
|
|
|
|
(MIPS Embedded, MIPS, MIPS Register packet Format)
|
|
|
|
|
(Target Descriptions, MIPS Features): Use @acronym{MIPS} where
|
|
|
|
|
appropriate.
|
|
|
|
|
|
gdb/
* NEWS: Add microMIPS support and "set mips compression",
"show mips compression" commands.
* mips-tdep.h (mips_isa): New enum.
(gdbarch_tdep): Add mips_isa.
(mips_pc_is_mips16): Update prototype.
(mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
* mips-tdep.c (mips_compression_mips16): New variable.
(mips_compression_micromips): Likewise.
(mips_compression_strings): Likewise.
(mips_compression_string): Likewise.
(is_mips16_isa, is_micromips_isa): New functions.
(is_mips16_addr): Rename to...
(is_compact_addr): ... this.
(unmake_mips16_addr): Likewise to...
(unmake_compact_addr): ... this.
(make_mips16_addr): Likewise to...
(make_compact_addr): ... this.
(is_mips_addr, is_mips16_addr, is_micromips_addr): New
functions.
(mips_elf_make_msymbol_special): Handle microMIPS code.
(msymbol_is_special): Rename to...
(msymbol_is_mips16): ... this.
(mips_make_symbol_special, mips_pc_is_mips16): Update
accordingly.
(msymbol_is_mips, msymbol_is_micromips): New functions.
(mips16_to_32_reg): Rename to...
(mips_reg3_to_reg): ... this.
(mips_pc_is_mips, mips_pc_is_micromips): New functions.
(mips_pc_isa): Likewise.
(mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
code.
(mips_fetch_instruction): Pass return status instead of printing
an error message if requested. Handle microMIPS code. Bail out
on an invalid ISA.
(micromips_op): New macro.
(b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
(b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
(b6s4_op, b7s3_reg): Likewise.
(b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
(b6s10_ext, b11s5_reg, b12s4_op): Likewise.
(mips_insn_size): New function.
(mips32_next_pc): Update mips_fetch_instruction call.
(micromips_relative_offset7): New function.
(micromips_relative_offset10): Likewise.
(micromips_relative_offset16): Likewise.
(micromips_pc_insn_size): Likewise.
(micromips_bc1_pc): Likewise.
(micromips_next_pc): Likewise.
(unpack_mips16): Update mips_fetch_instruction call.
(extended_mips16_next_pc): Update according to change to
mips16_to_32_reg.
(mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
code.
(mips16_scan_prologue): Update mips_fetch_instruction call.
Update according to change to mips16_to_32_reg.
(mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
(mips_insn16_frame_base_sniffer): Likewise.
(micromips_decode_imm9): New function.
(micromips_scan_prologue): Likewise.
(mips_micro_frame_cache): Likewise.
(mips_micro_frame_this_id): Likewise.
(mips_micro_frame_prev_register): Likewise.
(mips_micro_frame_sniffer): Likewise.
(mips_micro_frame_unwind): New variable.
(mips_micro_frame_base_address): New function.
(mips_micro_frame_base): New variable.
(mips_micro_frame_base_sniffer): New function.
(mips32_scan_prologue): Update mips_fetch_instruction call.
(mips_insn32_frame_sniffer): Check for the standard MIPS ISA
rather than for MIPS16.
(mips_insn32_frame_base_sniffer): Likewise.
(mips_addr_bits_remove): Handle microMIPS code.
(deal_with_atomic_sequence): Rename to...
(mips_deal_with_atomic_sequence): ... this. Update the type
of the variable used to hold an instruction. Remove the ISA bit
check. Update mips_fetch_instruction call.
(micromips_deal_with_atomic_sequence): New function.
(deal_with_atomic_sequence): Likewise.
(mips_about_to_return): Handle microMIPS code. Update
mips_fetch_instruction call.
(heuristic_proc_start): Check for the standard MIPS ISA rather
than for MIPS16. Update mips_pc_is_mips16 and
mips_fetch_instruction calls. Handle microMIPS code.
(mips_push_dummy_code): Handle microMIPS code.
(mips_eabi_push_dummy_call): Likewise.
(mips_o32_return_value): Update mips_pc_is_mips16 call.
(mips_o64_push_dummy_call): Handle microMIPS code.
(mips_o64_return_value): Update mips_pc_is_mips16 call.
(is_delayed): Remove function.
(mips_single_step_through_delay): Replace the call to is_delayed
with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
Handle microMIPS code.
(mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
microMIPS code.
(mips32_in_function_epilogue_p): Update mips_fetch_instruction
call.
(micromips_in_function_epilogue_p): New function.
(mips16_in_function_epilogue_p): Update mips_fetch_instruction
call.
(mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
Handle microMIPS.
(gdb_print_insn_mips): Likewise.
(mips_breakpoint_from_pc): Likewise.
(mips_remote_breakpoint_from_pc): New function.
(mips32_instruction_has_delay_slot): Simplify making use of the
updated mips_fetch_instruction interface.
(micromips_instruction_has_delay_slot): New function.
(mips16_instruction_has_delay_slot): Simplify making use of the
updated mips_fetch_instruction interface.
(mips_adjust_breakpoint_address): Check for the standard MIPS
ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
calls. Handle microMIPS code.
(mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
(mips_skip_trampoline_code): Handle microMIPS code.
(global_mips_compression): New function.
(mips_gdbarch_init): Handle the compressed ISA setting from ELF
file flags. Register the microMIPS remote breakpoint handler
and heuristic frame unwinder.
(show_mips_compression): New function.
(_initialize_mips_tdep): Add the "set mips compression" and
"show mips compression" commands.
gdb/doc/
* gdb.texinfo (MIPS): Document "set mips compression" and "show
mips compression".
(MIPS Breakpoint Kinds): New subsubsection.
2012-05-19 01:46:40 +02:00
|
|
|
|
2012-05-18 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
Maciej W. Rozycki <macro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS): Document "set mips compression" and "show
|
|
|
|
|
mips compression".
|
|
|
|
|
(MIPS Breakpoint Kinds): New subsubsection.
|
|
|
|
|
|
2012-05-19 01:45:13 +02:00
|
|
|
|
2012-05-18 Eli Zaretskii <eliz@gnu.org>
|
2012-05-19 01:12:31 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Architecture-Specific Protocol Details): Define
|
|
|
|
|
nodes for subsections. Add @acronym mark-ups and adjust
|
|
|
|
|
formatting.
|
|
|
|
|
|
2012-05-18 19:47:31 +02:00
|
|
|
|
2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Rename $ddir to $datadir.
|
|
|
|
|
* gdb.texinfo (Auto-loading, Auto-loading safe path)
|
|
|
|
|
(objfile-gdb.py file): Rename $ddir to $datadir.
|
|
|
|
|
|
2012-05-18 17:31:42 +02:00
|
|
|
|
2012-05-18 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Document 'set print symbol'.
|
|
|
|
|
|
2012-05-14 17:38:41 +02:00
|
|
|
|
2012-05-14 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Dynamic Printf): New subsection.
|
|
|
|
|
|
2012-05-13 13:33:44 +02:00
|
|
|
|
2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Add description about the function
|
|
|
|
|
gdb.find_pc_line
|
|
|
|
|
|
2012-05-12 16:20:31 +02:00
|
|
|
|
2012-05-12 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): Use plural form for global
|
|
|
|
|
debugging information directory.
|
|
|
|
|
|
2012-05-12 00:24:24 +02:00
|
|
|
|
2012-05-11 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
Kwok Cheung Yeung <kcy@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Operating System Auxiliary Information): Document new
|
|
|
|
|
'info os' subcommands.
|
|
|
|
|
|
2012-05-11 20:23:11 +02:00
|
|
|
|
2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading, Init File in the Current Directory)
|
|
|
|
|
(libthread_db.so.1 file, objfile-gdb.gdb file, objfile-gdb.py file)
|
|
|
|
|
(dotdebug_gdb_scripts section): Add reference
|
|
|
|
|
to 'Auto-loading safe path'.
|
|
|
|
|
|
2012-05-11 20:20:26 +02:00
|
|
|
|
2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Implement multi-component --with-auto-load-dir.
|
|
|
|
|
* gdb.texinfo (Auto-loading): New references
|
|
|
|
|
for 'set auto-load scripts-directory'
|
|
|
|
|
and 'show auto-load scripts-directory'.
|
|
|
|
|
(Auto-loading safe path): Describe the new default. Move $ddir
|
|
|
|
|
substituation reference to 'objfile-gdb.py file'.
|
|
|
|
|
(objfile-gdb.py file): Describe script-name alias. Change real-name to
|
|
|
|
|
script-name. Describe new 'set auto-load scripts-directory'
|
|
|
|
|
and 'show auto-load scripts-directory'.
|
|
|
|
|
|
2012-05-11 20:13:26 +02:00
|
|
|
|
2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Provide $ddir substitution for --with-auto-load-safe-path.
|
|
|
|
|
* gdb.texinfo (Auto-loading): Replace /usr/local by $ddir/auto-load.
|
|
|
|
|
(Auto-loading safe path): Likewise. Mention the default value,
|
|
|
|
|
$ddir substitution, --with-auto-load-safe-path and
|
|
|
|
|
--without-auto-load-safe-path.
|
|
|
|
|
* observer.texi (gdb_datadir_changed): New.
|
|
|
|
|
|
2012-05-09 20:15:58 +02:00
|
|
|
|
2012-05-09 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading): Wrap too long lines in @smallexample.
|
|
|
|
|
Twice.
|
|
|
|
|
|
2012-05-09 21:29:25 +02:00
|
|
|
|
* gdb.texinfo (Separate Debug Files, Auto-loading safe path): Replace
|
|
|
|
|
directory separator by path separator.
|
|
|
|
|
|
2012-05-06 17:31:04 +02:00
|
|
|
|
2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading safe path): Make 'directories'
|
|
|
|
|
for 'set auto-load safe-path' optional. Mention if it is omitted.
|
|
|
|
|
Change disabling security protection condition to "/", twice.
|
|
|
|
|
|
2012-05-03 09:07:26 +02:00
|
|
|
|
2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbol Tables In Python): Add documentation about
|
|
|
|
|
the new methods global_block and static_block on gdb.Symtab
|
|
|
|
|
objects.
|
|
|
|
|
|
2012-05-02 19:27:50 +02:00
|
|
|
|
2012-05-02 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Blocks In Python): Add a note saying that future
|
|
|
|
|
improvements to GDB and its infrastructure can move symbols
|
|
|
|
|
across blocks within a symbol table.
|
|
|
|
|
|
2012-04-29 08:45:02 +02:00
|
|
|
|
2012-04-29 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Architectures): Remove menu entry `A29K'.
|
|
|
|
|
(A29K): Remove.
|
|
|
|
|
|
2012-04-27 22:52:06 +02:00
|
|
|
|
2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Static Probe Points): New entry, explaining SystemTap
|
|
|
|
|
and generic static probe support on GDB.
|
|
|
|
|
|
2012-04-25 16:07:23 +02:00
|
|
|
|
2012-04-25 Doug Evans <dje@google.com>
|
|
|
|
|
|
2012-04-25 18:13:17 +02:00
|
|
|
|
* gdb.texinfo (Go): Fix thinko.
|
|
|
|
|
|
2012-04-25 16:07:23 +02:00
|
|
|
|
* gdb.texinfo (Supported Languages): Add Go.
|
|
|
|
|
(Go): New node.
|
|
|
|
|
|
2012-04-25 12:59:10 +02:00
|
|
|
|
2012-04-25 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): New section `Board settings'.
|
|
|
|
|
|
2012-04-23 19:20:56 +02:00
|
|
|
|
2012-04-23 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading safe path): Remove trailing [@dots{}].
|
|
|
|
|
Three times.
|
|
|
|
|
|
2012-04-23 19:26:01 +02:00
|
|
|
|
* gdb.texinfo (Auto-loading safe path): Add trailing @dots{}.
|
|
|
|
|
Three times.
|
|
|
|
|
|
2012-04-22 17:49:21 +02:00
|
|
|
|
2012-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading safe path): Replace @itemize @bullet
|
|
|
|
|
by @table @asis. Fix formatting of one item.
|
|
|
|
|
|
2012-04-18 09:03:58 +02:00
|
|
|
|
2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading verbose mode): Fix smallexample typo.
|
|
|
|
|
|
2012-04-17 17:56:21 +02:00
|
|
|
|
2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
New option "set debug auto-load".
|
|
|
|
|
* gdb.texinfo (Auto-loading): New menu item for auto-load verbose mode.
|
|
|
|
|
(auto-load verbose mode): New node.
|
|
|
|
|
|
2012-04-17 17:54:35 +02:00
|
|
|
|
2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
New option "set auto-load safe-path".
|
|
|
|
|
* gdb.texinfo (Auto-loading): Extend the "show auto-load"
|
|
|
|
|
and "info auto-load" examples for safe-path. Put there also references
|
|
|
|
|
for "set auto-load safe-path" and "show auto-load safe-path".
|
|
|
|
|
New menu item for Auto-loading safe path.
|
|
|
|
|
(Auto-loading safe path): New node.
|
|
|
|
|
(Python Auto-loading): Update the expected output from "Missing"
|
|
|
|
|
to "No".
|
|
|
|
|
|
gdb/
auto-load: Implementation.
* NEWS: New descriptions for "info auto-load",
"info auto-load gdb-scripts", "info auto-load python-scripts",
"info auto-load local-gdbinit" and "info auto-load libthread-db".
Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
and "show auto-load-scripts". New description for "set auto-load",
"show auto-load", "set auto-load gdb-scripts",
"show auto-load gdb-scripts", "set auto-load python-scripts",
"show auto-load python-scripts", "set auto-load local-gdbinit",
"show auto-load local-gdbinit", "set auto-load libthread-db" and
"show auto-load libthread-db".
* auto-load.c: Remove include python/python-internal.h. Add includes
exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
cli/cli-setshow.h.
(GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
(auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
(gdbpy_global_auto_load): Rename to ...
(global_auto_load): ... here.
(auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
(auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
(script_language_gdb, source_gdb_script_for_objfile): New.
(struct loaded_script): New field language.
(hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
LANGUAGE.
(maybe_add_script): Add parameter language. Drop redundant
entry.full_path initialization. Initialize entry.language and
(*slot)->language.
(auto_load_objfile_script): Change parameter suffix to language.
Remove the call of maybe_add_script.
Call language->source_script_for_objfile.
(load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
New.
(collect_matching_scripts): Adjust it for
struct collect_matching_scripts_data.
(auto_load_info_scripts_pattern_nl): New variable.
(info_auto_load_scripts): Rename to ...
(auto_load_info_scripts): ... here, add parameter language. Adjust it
for struct collect_matching_scripts_data.
(info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
(set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
(auto_load_show_cmdlist_get, info_auto_load_cmd)
(auto_load_info_cmdlist_get): New.
(_initialize_auto_load): Move add_info of "auto-load-scripts" to
python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
"info auto-load gdb-scripts", "set auto-load local-gdbinit" and
"info auto-load local-gdbinit".
* auto-load.h (struct script_language): New.
(gdbpy_global_auto_load): Rename to ...
(global_auto_load): ... here.
(auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
(auto_load_local_gdbinit_loaded): New declarations.
(maybe_add_script): New parameter language.
(auto_load_objfile_script): Change parameter suffix to language.
(load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
(auto_load_info_scripts, auto_load_set_cmdlist_get)
(auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
declarations.
* linux-thread-db.c: Include auto-load.h and ctype.h.
(auto_load_thread_db, show_auto_load_thread_db): New.
(struct thread_db_info): New field filename.
(delete_thread_db_info): Call xfree for FILENAME.
(try_thread_db_load): Initialize FILENAME.
(try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
if !AUTO_LOAD_THREAD_DB.
(info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
(_initialize_thread_db): Install auto_load_thread_db
as "set auto-load libthread-db" and install info_auto_load_libthread_db
as "info auto-load libthread-db".
* main.c (captured_main): Rename gdbpy_global_auto_load to
global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
AUTO_LOAD_LOCAL_GDBINIT_LOADED.
(print_gdb_help): Extend the help for 'local init file'.
* python/py-auto-load.c: Remove a comment about gdb scripts extension.
(GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
(auto_load_scripts): Rename to ...
(auto_load_python_scripts): ... here, update the comment.
(gdbpy_load_auto_script_for_objfile): New declaration.
(show_auto_load_python_scripts, script_language_python)
(gdbpy_load_auto_script_for_objfile): New.
(source_section_scripts): Refactor the code.
(load_auto_scripts_for_objfile): Rename to ...
(gdbpy_load_auto_scripts_for_objfile): ... here, update the
auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
(info_auto_load_python_scripts): New.
(gdbpy_initialize_auto_load): New variables cmd and cmd_name.
Rename "set auto-load-scripts" to "set auto-load python-scripts".
Register "set auto-load-scripts" as its deprecated alias. Register
"info auto-load python-scripts". Register "info auto-load-scripts" as
its deprecated alias.
(load_auto_scripts_for_objfile): Rename to ...
(gdbpy_load_auto_scripts_for_objfile): ... here.
* python/python.h (load_auto_scripts_for_objfile): Rename to ...
(gdbpy_load_auto_scripts_for_objfile): ... here.
gdb/doc/
auto-load: Implementation.
* gdb.texinfo (Mode Options): New anchor for -nx.
(Startup): New anchors for Option -init-eval-command,
Home Directory Init File
and Init File in the Current Directory during Startup.
Mention set auto-load local-gdbinit with a reference.
Change the sample code to "set auto-load python-scripts".
(Threads): New anchor set libthread-db-search-path.
Provide references to libthread_db.so.1 file.
(Controlling GDB): New menu item for Auto-loading.
(Auto-loading, Init File in the Current Directory)
(libthread_db.so.1 file, objfile-gdb.gdb file): New nodes.
(Python): Rename the menu item Auto-loading to Python Auto-loading.
(Writing a Pretty-Printer, Objfiles In Python): Update the renamed
reference.
(Auto-loading): Rename to ...
(Python Auto-loading): ... here. Change "set auto-load-scripts" to
"set auto-load python-scripts", new anchor for it. Change
"show auto-load-scripts" to "show auto-load python-scripts", new anchor
for it. Change "info auto-load-scripts"
to "info auto-load python-scripts", new anchor for it. Change "scripts"
to "Python scripts".
gdb/testsuite/
auto-load: Implementation.
* gdb.base/help.exp (test set height): Increase the height.
* gdb.python/py-objfile-script.exp (info auto-load-scripts): Change
to ...
(info auto-load python-scripts): ... here.
* gdb.python/py-section-script.exp (info auto-load-scripts *): Change
to ...
(info auto-load python-scripts *): ... here.
2012-04-17 17:51:48 +02:00
|
|
|
|
2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
auto-load: Implementation.
|
|
|
|
|
* gdb.texinfo (Mode Options): New anchor for -nx.
|
|
|
|
|
(Startup): New anchors for Option -init-eval-command,
|
|
|
|
|
Home Directory Init File
|
|
|
|
|
and Init File in the Current Directory during Startup.
|
|
|
|
|
Mention set auto-load local-gdbinit with a reference.
|
|
|
|
|
Change the sample code to "set auto-load python-scripts".
|
|
|
|
|
(Threads): New anchor set libthread-db-search-path.
|
|
|
|
|
Provide references to libthread_db.so.1 file.
|
|
|
|
|
(Controlling GDB): New menu item for Auto-loading.
|
|
|
|
|
(Auto-loading, Init File in the Current Directory)
|
|
|
|
|
(libthread_db.so.1 file, objfile-gdb.gdb file): New nodes.
|
|
|
|
|
(Python): Rename the menu item Auto-loading to Python Auto-loading.
|
|
|
|
|
(Writing a Pretty-Printer, Objfiles In Python): Update the renamed
|
|
|
|
|
reference.
|
|
|
|
|
(Auto-loading): Rename to ...
|
|
|
|
|
(Python Auto-loading): ... here. Change "set auto-load-scripts" to
|
|
|
|
|
"set auto-load python-scripts", new anchor for it. Change
|
|
|
|
|
"show auto-load-scripts" to "show auto-load python-scripts", new anchor
|
|
|
|
|
for it. Change "info auto-load-scripts"
|
|
|
|
|
to "info auto-load python-scripts", new anchor for it. Change "scripts"
|
|
|
|
|
to "Python scripts".
|
|
|
|
|
|
2012-04-14 14:18:50 +02:00
|
|
|
|
2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
|
|
|
|
|
|
|
|
|
|
PR mi/13393
|
|
|
|
|
* gdb.texinfo (Print Settings): Extend the description for "set print
|
|
|
|
|
object".
|
|
|
|
|
(GDB/MI Variable Objects): Extend the description for -var-create and
|
|
|
|
|
-var-list-children.
|
|
|
|
|
|
2012-04-11 07:50:44 +02:00
|
|
|
|
2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Examining Data): Document the 'explore' command.
|
|
|
|
|
|
2012-03-28 23:31:46 +02:00
|
|
|
|
2012-03-28 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Document what happens
|
|
|
|
|
to the children of a varobj and its update range when -var-update
|
|
|
|
|
returns that the varobj's type changed.
|
|
|
|
|
|
2012-03-27 22:44:13 +02:00
|
|
|
|
2012-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading): Move @menu to the end of @node.
|
|
|
|
|
Create two new links fir 'objfile-gdb.py file'
|
|
|
|
|
and 'dotdebug_gdb_scripts section'.
|
|
|
|
|
|
2012-03-27 22:15:20 +02:00
|
|
|
|
2012-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading): Rename node reference
|
|
|
|
|
'.debug_gdb_scripts section' to 'dotdebug_gdb_scripts section'.
|
|
|
|
|
Twice.
|
|
|
|
|
(.debug_gdb_scripts section): Rename the node ...
|
|
|
|
|
(dotdebug_gdb_scripts section): ... here.
|
|
|
|
|
(Maintenance Commands): Also rename this node reference.
|
|
|
|
|
|
2012-03-22 09:10:44 +01:00
|
|
|
|
2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python API/Values From Inferior): Add description
|
|
|
|
|
about the new method Value.referenced_value. Add description on
|
|
|
|
|
how Value.dereference is different (and similar) to
|
|
|
|
|
Value.referenced_value.
|
|
|
|
|
|
2012-03-19 19:19:26 +01:00
|
|
|
|
2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Describe --init-command=FILE, -ix and
|
|
|
|
|
--init-eval-command=COMMAND, -iex.
|
|
|
|
|
(Startup): Describe -iex and -ix. Simplify the example
|
|
|
|
|
for "set auto-load-scripts off".
|
|
|
|
|
|
2012-03-16 17:47:34 +01:00
|
|
|
|
2012-03-16 Gary Benson <gbenson@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR breakpoints/10738
|
|
|
|
|
* gdb.texinfo (Inline Functions): Remove the now-unnecessary @item
|
|
|
|
|
stating that GDB cannot set breakpoints on inlined functions.
|
|
|
|
|
(Mode Options): Document --use-deprecated-index-sections.
|
|
|
|
|
(Index Section Format): Document new index section version format.
|
|
|
|
|
|
2012-03-15 16:43:18 +01:00
|
|
|
|
2012-03-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging C Plus Plus): Document "info vtbl".
|
|
|
|
|
|
2012-03-13 22:02:40 +01:00
|
|
|
|
2012-03-13 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Help): Change apropos example to use "alias" instead
|
|
|
|
|
of "reload".
|
|
|
|
|
(Symbols): Delete docs for set/show symbol-reloading.
|
|
|
|
|
* gdbint.texinfo (Defining Other Architecture Features): Delete
|
|
|
|
|
SYMBOL_RELOADING_DEFAULT.
|
|
|
|
|
* refcard.tex: Delete reference to symbol-reloading.
|
|
|
|
|
|
2012-03-07 20:25:39 +01:00
|
|
|
|
2012-03-07 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document new
|
|
|
|
|
QProgramSignals packet.
|
|
|
|
|
* gdb.texinfo (Remote configuration): Mention
|
|
|
|
|
"program-signals-packet".
|
|
|
|
|
|
2012-03-05 12:37:33 +01:00
|
|
|
|
2012-03-05 Tristan Gingold <gingold@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document xfer:uib:read.
|
|
|
|
|
|
2012-03-03 04:32:46 +01:00
|
|
|
|
2012-03-03 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (In-Process Agent): New node.
|
|
|
|
|
Document new commands.
|
|
|
|
|
(General Query Packets): Add packet `QAgent'.
|
|
|
|
|
|
gdb/
* features/mips-dsp.xml: New file.
* features/mips64-dsp.xml: New file.
* features/mips-dsp-linux.xml: New file.
* features/mips64-dsp-linux.xml: New file.
* features/Makefile (WHICH): Add mips-dsp-linux and
mips64-dsp-linux.
(mips-dsp-expedite, mips64-dsp-expedite): New variables.
* features/mips-dsp-linux.c: New file.
* features/mips64-dsp-linux.c: New file.
* regformats/mips-dsp-linux.dat: New file.
* regformats/mips64-dsp-linux.dat: New file.
* mips-linux-nat.c (mips_linux_register_addr): Handle DSP
registers.
(mips64_linux_register_addr): Likewise.
(mips64_linux_regsets_fetch_registers): Likewise.
(mips64_linux_regsets_store_registers): Likewise.
(mips64_linux_fetch_registers): Update call to
mips64_linux_regsets_fetch_registers.
(mips64_linux_store_registers): Update call to
mips64_linux_regsets_store_registers.
(mips_linux_read_description): Probe for DSP registers.
(_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
and initialize_tdesc_mips64_dsp_linux.
* mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
Remove padding of no longer used embedded register slots.
* mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
(MIPS_RESTART_REGNUM): Redefine enum value.
* mips-tdep.c (mips_generic_reg_names): Remove trailing null
strings.
(mips_tx39_reg_names): Likewise.
(mips_linux_reg_names): New array of register names for Linux
targets.
(mips_register_name): Check for a null pointer in
mips_processor_reg_names and return an empty string.
(mips_register_type): Exclude embedded registers for the IRIX
and Linux ABIs.
(mips_pseudo_register_type): Likewise. Use dynamic numbers to
refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
DSP registers.
(mips_stab_reg_to_regnum): Handle DSP accumulators.
(mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
(mips_gdbarch_init): Likewise. Initialize internal register
indices for the Linux ABI. Use dynamic numbers to refer to
registers, as applicable, while parsing the target description.
* mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
gdb/doc/
* gdb.texinfo (MIPS Features): Add org.gnu.gdb.mips.dsp.
gdb/gdbserver/
* linux-low.h (linux_target_ops): Add regset_bitmap member.
* linux-low.c (use_linux_regsets): New macro.
[!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
[!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
(linux_register_in_regsets): New function.
(usr_fetch_inferior_registers): Skip registers covered by
regsets.
(usr_store_inferior_registers): Likewise.
(usr_fetch_inferior_registers): New macro.
(usr_store_inferior_registers): Likewise.
(linux_fetch_registers): Handle mixed regset/non-regset targets.
(linux_store_registers): Likewise.
* linux-mips-low.c (init_registers_mips_dsp_linux): New
prototype.
(init_registers_mips64_dsp_linux): Likewise.
(init_registers_mips_linux): New macro.
(init_registers_mips_dsp_linux): Likewise.
(mips_dsp_num_regs): Likewise.
(DSP_BASE, DSP_CONTROL): New fallback macros.
(mips_base_regs): New macro.
(mips_regmap): Use it. Fix the size.
(mips_dsp_regmap): New variable.
(mips_dsp_regset_bitmap): Likewise.
(mips_arch_setup): New function.
(mips_cannot_fetch_register): Use the_low_target.regmap rather
than mips_regmap.
(mips_cannot_store_register): Likewise.
(the_low_target): Update .arch_setup, .num_regs and .regmap
initializers. Add .regset_bitmap initializer.
* linux-arm-low.c (the_low_target): Add .regset_bitmap
initializer.
* linux-bfin-low.c (the_low_target): Likewise.
* linux-cris-low.c (the_low_target): Likewise.
* linux-crisv32-low.c (the_low_target): Likewise.
* linux-ia64-low.c (the_low_target): Likewise.
* linux-m32r-low.c (the_low_target): Likewise.
* linux-m68k-low.c (the_low_target): Likewise.
* linux-ppc-low.c (the_low_target): Likewise.
* linux-s390-low.c (the_low_target): Likewise.
* linux-sh-low.c (the_low_target): Likewise.
* linux-sparc-low.c (the_low_target): Likewise.
* linux-tic6x-low.c (the_low_target): Likewise.
* linux-x86-low.c (the_low_target): Likewise.
* linux-xtensa-low.c (the_low_target): Likewise.
* configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
srv_xmlfiles.
* Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
(mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
gdb/testsuite/
* gdb.xml/tdesc-regs.exp: Add "mips-dsp.xml" to the list of MIPS
core registers.
2012-03-01 23:19:48 +01:00
|
|
|
|
2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS Features): Add org.gnu.gdb.mips.dsp.
|
|
|
|
|
|
2012-03-01 20:30:25 +01:00
|
|
|
|
2012-03-01 Scott J. Goldman <scottjg@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands In Python): Put example python macro in
|
|
|
|
|
COMMAND_USER category rather than COMMAND_OBSCURE.
|
|
|
|
|
Document gdb.COMMAND_USER.
|
|
|
|
|
(User-defined Commands): Update documentation to clarify
|
|
|
|
|
"set/show max-user-call-depth" and "show user" don't apply to python
|
|
|
|
|
commands. Update documentation to clarify "help user-defined" may
|
|
|
|
|
also include python commands defined as COMMAND_USER.
|
|
|
|
|
|
2012-02-25 14:54:25 +01:00
|
|
|
|
2012-02-25 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Startup): Add option -ex description to the option -x
|
|
|
|
|
description.
|
|
|
|
|
|
2012-02-24 16:08:18 +01:00
|
|
|
|
2012-02-24 Luis Machado <lgustavo@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Setting Breakpoints): Mention and explain the
|
|
|
|
|
condition-evaluation breakpoint parameter.
|
|
|
|
|
Mention condition-evaluation mode being shown in "info break".
|
|
|
|
|
(Break Conditions): Add description for target-side
|
|
|
|
|
conditional breakpoints.
|
|
|
|
|
(Remote Configuration): Mention conditional-breakpoints-packet.
|
|
|
|
|
(Packets): Add cond-expr parameter to Z0/Z1 packets and explain
|
|
|
|
|
cond-expr.
|
|
|
|
|
(General Query Packets): Mention new ConditionalBreakpoint feature.
|
|
|
|
|
|
2012-02-22 19:39:28 +01:00
|
|
|
|
2012-02-22 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Blocks In Python): Clarify block iteration.
|
|
|
|
|
|
2012-02-17 20:52:33 +01:00
|
|
|
|
2012-02-17 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/10753:
|
|
|
|
|
* gdb.texinfo (objfile-gdb.py file): Fix location of auto-load
|
|
|
|
|
directory.
|
|
|
|
|
|
2012-02-15 00:28:15 +01:00
|
|
|
|
2012-02-14 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Disabling Breakpoints): Document enable count.
|
|
|
|
|
|
2012-02-13 19:09:59 +01:00
|
|
|
|
2012-02-13 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS boards): Refer to mips-elf instead of
|
|
|
|
|
mips-idt-ecoff.
|
|
|
|
|
|
2012-02-10 02:24:58 +01:00
|
|
|
|
2012-02-09 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols In Python): Add missing `@end defvar'.
|
|
|
|
|
|
2012-02-07 20:47:16 +01:00
|
|
|
|
2012-02-07 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols In Python): Document Symbol.needs_frame and
|
|
|
|
|
Symbol.value.
|
|
|
|
|
|
2012-02-07 20:42:27 +01:00
|
|
|
|
2012-02-07 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols In Python): Document Symbol.line.
|
|
|
|
|
|
2012-01-27 10:22:59 +01:00
|
|
|
|
2012-01-27 Thomas Schwinge <thomas@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.textinfo (Packets): Move vCont paragraph to the correct place.
|
|
|
|
|
|
2012-01-24 22:39:18 +01:00
|
|
|
|
2012-01-24 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Document "catch load" and "catch
|
|
|
|
|
unload".
|
|
|
|
|
(Files): Mention new catch commands.
|
|
|
|
|
(GDB/MI Async Records): Likewise.
|
|
|
|
|
|
2012-01-24 16:13:30 +01:00
|
|
|
|
2012-01-24 Gary Benson <gbenson@redhat.com>
|
|
|
|
|
|
|
|
|
|
Delete #if 0'd out code.
|
|
|
|
|
* gdb.texinfo (Frame Info): Remove "info catch".
|
|
|
|
|
|
2012-01-20 10:47:32 +01:00
|
|
|
|
2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Document
|
|
|
|
|
"set remote hostio-readlink-packet" command.
|
|
|
|
|
(General Query Packets): Document vFile:readlink packet.
|
|
|
|
|
|
2012-01-16 21:40:53 +01:00
|
|
|
|
2012-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Specify Location): Document relative file name
|
|
|
|
|
handling.
|
|
|
|
|
|
2012-01-16 20:44:16 +01:00
|
|
|
|
2012-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb.printing): Document FlagEnumerationPrinter.
|
|
|
|
|
|
2012-01-13 15:31:55 +01:00
|
|
|
|
2012-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding Standards): Require braces for two lines of
|
|
|
|
|
code.
|
|
|
|
|
|
2012-01-11 11:34:21 +01:00
|
|
|
|
2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Variables): Document use of :: for non-static
|
|
|
|
|
variables.
|
|
|
|
|
|
2012-01-05 10:41:03 +01:00
|
|
|
|
2012-01-05 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Start of New Year Procedure): Update
|
|
|
|
|
to replace use of copyright.sh by use of copyright.py.
|
|
|
|
|
|
2012-01-02 03:28:59 +01:00
|
|
|
|
2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Remove the gdbtui binary.
|
|
|
|
|
* all-cfg.texi (GDBTUI): Remove.
|
|
|
|
|
* gdb.texinfo (Mode Options): Remove the GDBTUI reference.
|
|
|
|
|
(TUI): Remove GDBTUI pindex. Remove the GDBTUI reference.
|
|
|
|
|
* gdbint.texinfo (Testsuite): Replace `gdbtui' by `gdb -tui'.
|
|
|
|
|
|
2011-12-23 18:06:16 +01:00
|
|
|
|
2011-12-23 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
Introduce gdb.FinishBreakpoint in Python.
|
|
|
|
|
* gdb.texinfo (Finish Breakpoints in Python): New subsection.
|
|
|
|
|
(Python API): Add menu entry for Finish Breakpoints.
|
|
|
|
|
|
2011-12-19 14:37:34 +01:00
|
|
|
|
2011-12-19 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Describe KFAIL and XFAIL in Writing
|
|
|
|
|
tests.
|
|
|
|
|
|
2011-12-16 20:06:38 +01:00
|
|
|
|
2011-12-16 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server): Document -/stdio argument to gdbserver.
|
|
|
|
|
|
2011-12-16 16:55:40 +01:00
|
|
|
|
2011-12-16 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
2011-12-16 17:15:46 +01:00
|
|
|
|
* gdb.texinfo (Python Commands): Remove "maint set/show print
|
2011-12-16 16:55:40 +01:00
|
|
|
|
stack". Add documentation for "set/show python print-stack".
|
|
|
|
|
|
2011-12-14 15:46:24 +01:00
|
|
|
|
2011-12-14 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Implementing a Remote Stub): Explain that you
|
|
|
|
|
should transfer control to the stub in the startup code instead of
|
|
|
|
|
in main. Mention the need to get past the initial breakpoint.
|
|
|
|
|
|
the "ambiguous linespec" series
gdb
2011-12-06 Joel Brobecker <brobecker@acacore.com>
* language.h (struct language_defn): Add new component
la_symbol_name_compare.
* symfile.h (struct quick_symbol_functions): Update the profile
of parameter "name_matcher" for the expand_symtabs_matching
method. Update the documentation accordingly.
* ada-lang.h (ada_name_for_lookup): Add declaration.
* ada-lang.c (ada_name_for_lookup): New function, extracted out
from ada_iterate_over_symbols.
(ada_iterate_over_symbols): Do not encode symbol name anymore.
(ada_expand_partial_symbol_name): Adjust profile.
(ada_language_defn): Add value for la_symbol_name_compare field.
* linespec.c: #include "ada-lang.h".
(iterate_name_matcher): Add language parameter. Replace call
to strcmp_iw by call to language->la_symbol_name_compare.
(decode_variable): Encode COPY if current language is Ada.
* dwarf2read.c (dw2_expand_symtabs_matching): Adjust profile
of name_matcher parameter. Adjust call to name_matcher.
* psymtab.c (expand_symtabs_matching_via_partial): Likewise.
(expand_partial_symbol_names): Update profile of parameter "fun".
* psymtab.h (expand_partial_symbol_names): Update profile of
parameter "fun".
* symtab.c (demangle_for_lookup): Update function documentation.
(search_symbols_name_matches): Add language parameter.
(expand_partial_symbol_name): Likewise.
* c-lang.c (c_language_defn, cplus_language_defn)
(asm_language_defn, minimal_language_defn): Add value for
la_symbol_name_compare field.
* d-lang.c (d_language_defn): Likewise.
* f-lang.c (f_language_defn): Ditto.
* jv-lang.c (java_language_defn): Ditto.
* m2-lang.c (m2_language_defn): Ditto.
* objc-lang.c (objc_language_defn): Ditto.
* opencl-lang.c (opencl_language_defn): Ditto.
* p-lang.c (pascal_language_defn): Ditto.
* language.c (unknown_language_defn, auto_language_defn)
(local_language_defn): Ditto.
2011-12-06 Tom Tromey <tromey@redhat.com>
* linespec.c (iterate_over_all_matching_symtabs): Use
LA_ITERATE_OVER_SYMBOLS.
(lookup_prefix_sym, add_matching_symbols_to_info): Likewise.
(find_function_symbols, decode_variable): Remove Ada special
case.
* language.h (struct language_defn) <la_iterate_over_symbols>: New
field.
(LA_ITERATE_OVER_SYMBOLS): New macro.
* language.c (unknown_language_defn, auto_language_defn)
(local_language_defn): Update.
* c-lang.c (c_language_defn, cplus_language_defn)
(asm_language_defn, minimal_language_defn): Update.
* d-lang.c (d_language_defn): Update.
* f-lang.c (f_language_defn): Update.
* jv-lang.c (java_language_defn): Update.
* m2-lang.c (m2_language_defn): Update.
* objc-lang.c (objc_language_defn): Update.
* opencl-lang.c (opencl_language_defn): Update.
* p-lang.c (pascal_language_defn): Update.
* ada-lang.c (ada_iterate_over_symbols): New function.
(ada_language_defn): Update.
2011-12-06 Tom Tromey <tromey@redhat.com>
Joel Brobecker <brobecker@acacore.com>
PR breakpoints/13105, PR objc/8341, PR objc/8343, PR objc/8366,
PR objc/8535, PR breakpoints/11657, PR breakpoints/11970,
PR breakpoints/12023, PR breakpoints/12334, PR breakpoints/12856,
PR shlibs/8929, PR shlibs/7393:
* python/py-type.c (compare_maybe_null_strings): Rename from
compare_strings.
(check_types_equal): Update.
* utils.c (compare_strings): New function.
* tui/tui-winsource.c (tui_update_breakpoint_info): Update for
location changes.
* tracepoint.c (scope_info): Update.
(trace_find_line_command): Use DECODE_LINE_FUNFIRSTLINE.
* symtab.h (iterate_over_minimal_symbols)
(iterate_over_some_symtabs, iterate_over_symtabs)
(find_pcs_for_symtab_line, iterate_over_symbols)
(demangle_for_lookup): Declare.
(expand_line_sal): Remove.
* symtab.c (iterate_over_some_symtabs, iterate_over_symtabs)
(lookup_symtab_callback): New functions.
(lookup_symtab): Rewrite.
(demangle_for_lookup): New function, extract from
lookup_symbol_in_language.
(lookup_symbol_in_language): Use it.
(iterate_over_symbols): New function.
(find_line_symtab): Update.
(find_pcs_for_symtab_line): New functions.
(find_line_common): Add 'start' argument.
(decode_line_spec): Update. Change argument to 'flags', change
interpretation.
(append_expanded_sal): Remove.
(append_exact_match_to_sals): Remove.
(expand_line_sal): Remove.
* symfile.h (struct quick_symbol_functions) <lookup_symtab>:
Remove.
<map_symtabs_matching_filename>: New field.
* stack.c (func_command): Only look in the current program space.
Use DECODE_LINE_FUNFIRSTLINE.
* source.c (line_info): Set pspace on sal. Check program space in
the loop. Use DECODE_LINE_LIST_MODE.
(select_source_symtab): Use DECODE_LINE_FUNFIRSTLINE.
* solib-target.c: Remove DEF_VEC_I(CORE_ADDR).
* python/python.c (gdbpy_decode_line): Update.
* psymtab.c (partial_map_expand_apply): New function.
(partial_map_symtabs_matching_filename): Rename from
lookup_partial_symbol. Update arguments.
(lookup_symtab_via_partial_symtab): Remove.
(psym_functions): Update.
* objc-lang.h (parse_selector, parse_method): Don't declare.
(find_imps): Update.
* objc-lang.c (parse_selector, parse_method): Now static.
(find_methods): Change arguments. Fill in a vector of symbol
names.
(uniquify_strings): New function.
(find_imps): Change arguments.
* minsyms.c (iterate_over_minimal_symbols): New function.
* linespec.h (enum decode_line_flags): New.
(struct linespec_sals): New.
(struct linespec_result) <canonical>: Remove.
<pre_expanded, addr_string, sals>: New fields.
(destroy_linespec_result, make_cleanup_destroy_linespec_result)
(decode_line_full): Declare.
(decode_line_1): Update.
* linespec.c (struct address_entry, struct linespec_state, struct
collect_info): New types.
(add_sal_to_sals_basic, add_sal_to_sals, hash_address_entry)
(eq_address_entry, maybe_add_address): New functions.
(total_number_of_methods): Remove.
(iterate_name_matcher, iterate_over_all_matching_symtabs): New
functions.
(find_methods): Change arguments. Don't canonicalize input.
Simplify logic.
(add_matching_methods, add_constructors)
(build_canonical_line_spec): Remove.
(filter_results, convert_results_to_lsals): New functions.
(decode_line_2): Change arguments. Rewrite for new data
structures.
(decode_line_internal): Rename from decode_line_1. Change
arguments. Add cleanups. Update for new data structures.
(linespec_state_constructor, linespec_state_destructor)
(decode_line_full, decode_line_1): New functions.
(decode_indirect): Change arguments. Update.
(locate_first_half): Use skip_spaces.
(decode_objc): Change arguments. Update for new data structures.
Simplify logic.
(decode_compound): Change arguments. Add cleanups. Remove
fallback code, replace with error.
(struct decode_compound_collector): New type.
(collect_one_symbol): New function.
(lookup_prefix_sym): Change arguments. Update.
(compare_symbol_name, add_all_symbol_names_from_pspace)
(find_superclass_methods ): New functions.
(find_method): Rewrite.
(struct symtab_collector): New type.
(add_symtabs_to_list, collect_symtabs_from_filename): New
functions.
(symtabs_from_filename): Change API. Rename from
symtab_from_filename.
(collect_function_symbols): New function.
(find_function_symbols): Change API. Rename from
find_function_symbol. Rewrite.
(decode_all_digits): Change arguments. Rewrite.
(decode_dollar): Change arguments. Use decode_variable.
(decode_label): Change arguments. Rewrite.
(collect_symbols): New function.
(minsym_found): Change arguments. Rewrite.
(check_minsym, search_minsyms_for_name)
(add_matching_symbols_to_info): New function.
(decode_variable): Change arguments. Iterate over all symbols.
(symbol_found): Remove.
(symbol_to_sal): New function.
(init_linespec_result, destroy_linespec_result)
(cleanup_linespec_result, make_cleanup_destroy_linespec_result):
New functions.
(decode_digits_list_mode, decode_digits_ordinary): New functions.
* dwarf2read.c (dw2_map_expand_apply): New function.
(dw2_map_symtabs_matching_filename): Rename from
dw2_lookup_symtab. Change arguments.
(dwarf2_gdb_index_functions): Update.
* dwarf2loc.c: Remove DEF_VEC_I(CORE_ADDR).
* defs.h (compare_strings): Declare.
* cli/cli-cmds.c (compare_strings): Move to utils.c.
(edit_command, list_command): Use DECODE_LINE_LIST_MODE. Call
filter_sals.
(compare_symtabs, filter_sals): New functions.
* breakpoint.h (struct bp_location) <line_number, source_file>:
New fields.
(struct breakpoint) <line_number, source_file>: Remove.
<filter>: New field.
* breakpoint.c (print_breakpoint_location, init_raw_breakpoint)
(momentary_breakpoint_from_master, add_location_to_breakpoint):
Update for changes to locations.
(init_breakpoint_sal): Add 'filter' argument. Set 'filter' on
breakpoint.
(create_breakpoint_sal): Add 'filter' argument.
(remove_sal, expand_line_sal_maybe): Remove.
(create_breakpoints_sal): Remove 'sals' argument. Handle
pre-expanded sals and the filter.
(parse_breakpoint_sals): Use decode_line_full.
(check_fast_tracepoint_sals): Use get_sal_arch.
(create_breakpoint): Create a linespec_sals. Update.
(break_range_command): Use decode_line_full. Update.
(until_break_command): Update.
(clear_command): Update match conditions for linespec.c changes.
Use DECODE_LINE_LIST_MODE.
(say_where): Update for changes to locations.
(bp_location_dtor): Free 'source_file'.
(base_breakpoint_dtor): Free 'filter'. Don't free 'source_file'.
(update_static_tracepoint): Update for changes to locations.
(update_breakpoint_locations): Disable ranged breakpoint if too
many locations match. Update.
(addr_string_to_sals): Use decode_line_full. Resolve all sal
PCs.
(breakpoint_re_set_default): Don't call expand_line_sal_maybe.
(decode_line_spec_1): Update. Change argument name to 'flags',
change interpretation.
* block.h (block_containing_function): Declare.
* block.c (block_containing_function): New function.
* skip.c (skip_function_command): Update.
(skip_re_set): Update.
* infcmd.c (jump_command): Use DECODE_LINE_FUNFIRSTLINE.
* mi/mi-main.c (mi_cmd_trace_find): Use DECODE_LINE_FUNFIRSTLINE.
* NEWS: Add entry.
2011-12-06 Tom Tromey <tromey@redhat.com>
* elfread.c (elf_gnu_ifunc_resolver_return_stop): Allow
breakpoint's pspace to be NULL.
* breakpoint.h (struct breakpoint) <pspace>: Update comment.
* breakpoint.c (init_raw_breakpoint): Conditionally set
breakpoint's pspace.
(init_breakpoint_sal): Don't set breakpoint's pspace.
(prepare_re_set_context): Conditionally switch program space.
(addr_string_to_sals): Check executing_startup on location's
program space.
2011-12-06 Tom Tromey <tromey@redhat.com>
* breakpoint.h (enum enable_state) <bp_startup_disabled>: Remove.
* breakpoint.c (should_be_inserted): Explicitly check if program
space is executing startup.
(describe_other_breakpoints): Update.
(disable_breakpoints_before_startup): Change executing_startup
earlier. Remove loop.
(enable_breakpoints_after_startup): Likewise.
(init_breakpoint_sal): Don't use bp_startup_disabled.
(create_breakpoint): Don't use bp_startup_disabled.
(update_global_location_list): Use should_be_inserted.
(bkpt_re_set): Update.
gdb/testsuite
2011-12-06 Joel Brobecker <brobecker@acacore.com>
* gdb.ada/fullname_bp.exp: Add tests for other valid linespecs
involving a fully qualified function name.
2011-12-06 Tom Tromey <tromey@redhat.com>
* gdb.ada/homonym.exp: Add three breakpoint tests.
2011-12-06 Tom Tromey <tromey@redhat.com>
* gdb.base/solib-weak.exp (do_test): Remove kfail.
* gdb.trace/tracecmd.exp: Disable pending breakpoints earlier.
* gdb.objc/objcdecode.exp: Update for output changes.
* gdb.linespec/linespec.exp: New file.
* gdb.linespec/lspec.cc: New file.
* gdb.linespec/lspec.h: New file.
* gdb.linespec/body.h: New file.
* gdb.linespec/base/two/thefile.cc: New file.
* gdb.linespec/base/one/thefile.cc: New file.
* gdb.linespec/Makefile.in: New file.
* gdb.cp/templates.exp (test_template_breakpoints): Update for
output changes.
* gdb.cp/re-set-overloaded.exp: Remove kfail.
* gdb.cp/ovldbreak.exp: Update for output changes. "all" test now
makes one breakpoint.
* gdb.cp/method2.exp (test_break): Update for output changes.
* gdb.cp/mb-templates.exp: Update for output changes.
* gdb.cp/mb-inline.exp: Update for output changes.
* gdb.cp/mb-ctor.exp: Update for output changes.
* gdb.cp/ovsrch.exp: Use fully-qualified names.
* gdb.base/solib-symbol.exp: Run to main later. Breakpoint now
has multiple matches.
* gdb.base/sepdebug.exp: Disable pending breakpoints. Update for
error message change.
* gdb.base/list.exp (test_list_filename_and_number): Update for
error message change.
* gdb.base/break.exp: Disable pending breakpoints. Update for
output changes.
* configure.ac: Add gdb.linespec.
* configure: Rebuild.
* Makefile.in (ALL_SUBDIRS): Add gdb.linespec.
gdb/doc
2011-12-06 Tom Tromey <tromey@redhat.com>
* gdb.texinfo (Set Breaks): Update for new behavior.
2011-12-06 19:54:43 +01:00
|
|
|
|
2011-12-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Update for new behavior.
|
|
|
|
|
|
2011-12-02 23:26:54 +01:00
|
|
|
|
2011-12-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Requirements, Remote Protocol): Reference also `Library
|
|
|
|
|
List Format for SVR4 Targets'.
|
|
|
|
|
(General Query Packets): New item qXfer:libraries-svr4:read.
|
|
|
|
|
(Library List Format for SVR4 Targets): New node.
|
|
|
|
|
|
2011-12-01 21:27:28 +01:00
|
|
|
|
2011-12-01 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Writing a Pretty-Printer): Use append method, not
|
|
|
|
|
add.
|
|
|
|
|
|
2011-11-22 22:25:19 +01:00
|
|
|
|
2011-11-22 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document new *stopped
|
|
|
|
|
reasons.
|
|
|
|
|
|
2011-11-21 00:59:49 +01:00
|
|
|
|
2011-11-20 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting and Stopping Trace Experiments): Document
|
|
|
|
|
note-related options and variables.
|
|
|
|
|
(Tracepoint Packets): Document packet changes.
|
|
|
|
|
|
2011-11-20 10:20:59 +01:00
|
|
|
|
2011-11-20 Sanjoy Das <sdas@igalia.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (JIT Interface): Add documentation on writing and
|
|
|
|
|
usind JIT debug info readers.
|
|
|
|
|
(Custom Debug Info, Using JIT Debug Info Readers, Writing JIT
|
|
|
|
|
Debug Info Readers): New nodes.
|
|
|
|
|
|
2011-11-18 02:21:35 +01:00
|
|
|
|
2011-11-18 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Create and Delete Tracepoints): Mention pending
|
|
|
|
|
tracepoint.
|
|
|
|
|
|
2011-11-15 18:40:02 +01:00
|
|
|
|
2011-11-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Document basenames-may-differ.
|
|
|
|
|
|
2011-11-15 06:06:35 +01:00
|
|
|
|
2011-11-14 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Shell Commands): Document "!".
|
|
|
|
|
|
2011-11-14 21:07:25 +01:00
|
|
|
|
2011-11-14 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
Kwok Cheung Yeung <kcy@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Create and Delete Tracepoints): Describe what is
|
|
|
|
|
needed to get shorter fast tracepoints.
|
|
|
|
|
(Tracepoint Packets): Document new qTMinFTPILen packet.
|
|
|
|
|
|
2011-11-14 16:18:54 +01:00
|
|
|
|
2011-11-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Create and Delete Tracepoints): Describe changed
|
|
|
|
|
behavior of tracepoint.
|
|
|
|
|
(General Query Packets): New feature InstallInTrace.
|
|
|
|
|
(Remote Configuration): Document "set remote
|
|
|
|
|
install-in-trace-packet".
|
|
|
|
|
|
2011-11-12 18:01:12 +01:00
|
|
|
|
2011-11-12 Matt Rice <ratmice@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (C Preprocessor Macros): Remove info definitions.
|
|
|
|
|
Add arguments to info macro.
|
|
|
|
|
|
2011-11-11 17:56:47 +01:00
|
|
|
|
2011-11-10 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Compilation): Don't mention -gdwarf-2. Link to GCC
|
|
|
|
|
manual.
|
|
|
|
|
(Variables): Don't mention -gdwarf-2. Link to Compilation node.
|
|
|
|
|
(Macros): Add a footnote.
|
|
|
|
|
(C): Remove paragraph about compiler options.
|
|
|
|
|
(C Constants): Mention wide character and string constants.
|
|
|
|
|
(C Plus Plus Expressions): Update compiler option advice. Mention
|
|
|
|
|
using declarations. Mention ADL. Remove old HP compiler
|
|
|
|
|
information.
|
|
|
|
|
|
2011-11-11 16:07:57 +01:00
|
|
|
|
2011-11-10 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR c++/9257:
|
|
|
|
|
* gdb.texinfo (Print Settings): Add an extra note about the need
|
|
|
|
|
for a vtable.
|
|
|
|
|
|
2011-11-08 22:34:18 +01:00
|
|
|
|
2011-11-08 Maciej W. Rozycki <macro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS): Remove duplicate "auto" reference from
|
|
|
|
|
"set mips abi" documentation.
|
|
|
|
|
|
2011-11-04 17:45:13 +01:00
|
|
|
|
2011-11-04 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Update docs of "maint time".
|
|
|
|
|
|
2011-11-03 15:32:49 +01:00
|
|
|
|
2011-11-03 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Stopping): Add menu entry.
|
|
|
|
|
(Continuing and Stepping): Restore @node. Use @section, not
|
|
|
|
|
@subsection.
|
|
|
|
|
|
2011-11-03 01:16:45 +01:00
|
|
|
|
2011-11-03 Maciej W. Rozycki <macro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Skipping Over Functions and Files): Remove node
|
|
|
|
|
designation. Fix "Specify Location" cross-reference.
|
|
|
|
|
|
2011-11-03 00:44:21 +01:00
|
|
|
|
2011-11-02 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Action Lists): Document collect/s.
|
|
|
|
|
(General Query Packets): Describe tracenz feature.
|
|
|
|
|
* agentexpr.texi (Bytecode Descriptions): Describe tracenz.
|
|
|
|
|
|
2011-10-28 16:48:59 +02:00
|
|
|
|
2011-10-28 Paul Koning <paul_koning@dell.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb.types): Rename deepitems to deep_items.
|
|
|
|
|
|
2011-10-27 13:04:27 +02:00
|
|
|
|
2011-10-27 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo ((Frames In Python): Document
|
|
|
|
|
gdb.FRAME_UNWIND_FIRST_ERROR contant.
|
|
|
|
|
|
2011-10-26 17:10:38 +02:00
|
|
|
|
2011-10-26 Paul Koning <paul_koning@dell.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb.types): Document new deepitems function.
|
|
|
|
|
|
2011-10-25 20:35:19 +02:00
|
|
|
|
2011-10-25 Paul Koning <paul_koning@dell.com>
|
|
|
|
|
|
|
|
|
|
PR python/13327
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Add is_lazy attribute,
|
|
|
|
|
fetch_lazy method.
|
|
|
|
|
|
2011-10-20 14:31:30 +02:00
|
|
|
|
2011-10-20 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/12656
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Blocks In Python): Document is_static, is_global,
|
|
|
|
|
global_block, static_block function.
|
|
|
|
|
|
2011-10-19 19:51:01 +02:00
|
|
|
|
2011-10-19 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands In Python): Add missing "@"s.
|
|
|
|
|
|
2011-10-13 16:50:08 +02:00
|
|
|
|
2011-10-13 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
PR python/13285 Document named constants for frame unwind stop reasons
|
|
|
|
|
* gdb.texinfo (Frames In Python): Document gdb.FRAME_UNWIND_*
|
|
|
|
|
constants.
|
|
|
|
|
|
gdb/
Fix compatibility with texinfo versions older than 4.12.
* Makefile.in (MAKEINFO): Set to @MAKEINFO@.
(MAKEINFOFLAGS, MAKEINFO_EXTRA_FLAGS, MAKEINFO_CMD): New.
(MAKEHTMLFLAGS): Use MAKEINFO_CMD.
(FLAGS_TO_PASS): Add MAKEINFOFLAGS and MAKEINFO_EXTRA_FLAGS.
* configure: Regenerate.
* configure.ac (MAKEINFO): Find it, from libiberty/configure.ac.
(MAKEINFOFLAGS): Pre-set it to --split-size=5000000.
(MAKEINFO_EXTRA_FLAGS): New test for -DHAVE_MAKEINFO_CLICK.
gdb/doc/
Fix compatibility with texinfo versions older than 4.12.
* Makefile.in (MAKEINFO): Set to @MAKEINFO@.
(MAKEINFOFLAGS, MAKEINFO_EXTRA_FLAGS, MAKEINFO_CMD): New.
(MAKEHTMLFLAGS): Use MAKEINFO_CMD.
(gdb.info, gdbint.info, stabs.info, annotate.info): Use MAKEINFO_CMD.
* gdb.texinfo (Tail Call Frames): Convert @arrow{} to @click, when possible.
Make the conversion conditional on HAVE_MAKEINFO_CLICK, using variables
CALLSEQ1A, CALLSEQ1B, CALLSEQ2A and CALLSEQ2B.
2011-10-12 17:55:04 +02:00
|
|
|
|
2011-10-12 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Fix compatibility with texinfo versions older than 4.12.
|
|
|
|
|
* Makefile.in (MAKEINFO): Set to @MAKEINFO@.
|
|
|
|
|
(MAKEINFOFLAGS, MAKEINFO_EXTRA_FLAGS, MAKEINFO_CMD): New.
|
|
|
|
|
(MAKEHTMLFLAGS): Use MAKEINFO_CMD.
|
|
|
|
|
(gdb.info, gdbint.info, stabs.info, annotate.info): Use MAKEINFO_CMD.
|
|
|
|
|
* gdb.texinfo (Tail Call Frames): Convert @arrow{} to @click, when possible.
|
|
|
|
|
Make the conversion conditional on HAVE_MAKEINFO_CLICK, using variables
|
|
|
|
|
CALLSEQ1A, CALLSEQ1B, CALLSEQ2A and CALLSEQ2B.
|
|
|
|
|
|
2011-10-10 00:21:43 +02:00
|
|
|
|
2011-10-09 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Extending GDB): Document alias command.
|
|
|
|
|
|
2011-10-09 21:41:17 +02:00
|
|
|
|
2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
Support @entry in input expressions.
|
|
|
|
|
* gdb.texinfo (Variables): Describe @entry names suffix.
|
|
|
|
|
(Print Settings): Add anchor for `set print entry-values'.
|
|
|
|
|
|
gdb/
Display @entry parameter values (without references).
* dwarf2expr.c (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset):
New functions.
* dwarf2expr.h (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset):
New declarations.
* dwarf2loc.c (dwarf2_find_location_expression): Support location list
entry record.
(dwarf_entry_parameter_to_value, value_of_dwarf_reg_entry)
(value_of_dwarf_block_entry, locexpr_read_variable_at_entry): New
functions.
(dwarf2_locexpr_funcs): Install locexpr_read_variable_at_entry.
(loclist_read_variable_at_entry): New function.
(dwarf2_loclist_funcs): Install loclist_read_variable_at_entry.
* dwarf2read.c (read_call_site_scope): Support also DW_OP_fbreg in
DW_AT_location, call dwarf_block_to_sp_offset for it.
* frame.h (print_entry_values_no, print_entry_values_only)
(print_entry_values_preferred, print_entry_values_if_needed)
(print_entry_values_both, print_entry_values_compact)
(print_entry_values_default, print_entry_values): New declarations.
(struct frame_arg): New field entry_kind.
(read_frame_arg): New parameter entryargp.
* mi/mi-cmd-stack.c (list_arg_or_local): New gdb_assert for
arg->entry_kind. Optionally print the `@entry' suffix.
(list_args_or_locals): New variable entryarg, initialize it.
Initialize also entry_kind of arg and entryarg. Conditionalize
list_arg_or_local for arg, add list_arg_or_local for entryarg. Call
xfree for entryarg.error.
* stack.c (print_entry_values_no, print_entry_values_only)
(print_entry_values_preferred, print_entry_values_if_needed)
(print_entry_values_both, print_entry_values_compact)
(print_entry_values_default, print_entry_values_choices)
(print_entry_values): New variables.
(print_frame_arg): New gdb_assert for arg->entry_kind. Optionally
print the `@entry' suffix, possibly in combination for
print_entry_values_compact.
(read_frame_arg): New parameter entryargp, new variables entryval,
entryval_error and val_equal. Read in also entryargp, respect
print_entry_values, compare the values using val_equal, fill in also
argp->entry_kind (together with entryargp->entry_kind).
(print_frame_args): New variable entryarg, initialize it.
Conditionalize print_frame_arg for arg, add print_frame_arg for
entryarg. Call xfree for entryarg.error.
(_initialize_stack): Call add_setshow_enum_cmd for `entry-values'.
* symtab.h (struct symbol_computed_ops): New field
read_variable_at_entry.
gdb/doc/
Display @entry parameter values (without references).
* gdb.texinfo (Tail Call Frames): Add anchor. Add self tail call
example.
(Print Settings): New description of set print entry-values and show
print entry-values.
gdb/testsuite/
Display @entry parameter values (without references).
* gdb.arch/amd64-entry-value.cc (locexpr, stacktest, data, data2)
(different, validity, invalid): New functions.
(main): Call them.
* gdb.arch/amd64-entry-value.exp: New breakpoints breakhere_locexpr,
stacktest, breakhere_stacktest, different, breakhere_different,
breakhere_validity and breakhere_invalid.
(entry: bt): Update for @entry.
(entry_locexpr: *, entry_stack: *, entry_equal: *, entry_different: *)
(entry_validity: *, entry_invalid: *): Many new tests.
* gdb.base/break.exp
(run until breakpoint set at small function, optimized file): Accept
also the @entry suffix.
* gdb.mi/Makefile.in (PROGS): Add mi2-amd64-entry-value.
* gdb.mi/mi2-amd64-entry-value.c: New files.
* gdb.mi/mi2-amd64-entry-value.exp: New files.
2011-10-09 21:34:19 +02:00
|
|
|
|
2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
Display @entry parameter values (without references).
|
|
|
|
|
* gdb.texinfo (Tail Call Frames): Add anchor. Add self tail call
|
|
|
|
|
example.
|
|
|
|
|
(Print Settings): New description of set print entry-values and show
|
|
|
|
|
print entry-values.
|
|
|
|
|
|
gdb/
Recognize virtual tail call frames.
* Makefile.in (SFILES): Add dwarf2-frame-tailcall.c.
(HFILES_NO_SRCDIR): Add dwarf2-frame-tailcall.h.
(COMMON_OBS): Add dwarf2-frame-tailcall.o.
* dwarf2-frame-tailcall.c: New file.
* dwarf2-frame-tailcall.h: New file.
* dwarf2-frame.c: Include dwarf2-frame-tailcall.h.
(execute_cfa_program): New function comment. Return INSN_PTR. Reset
REGS.PREV only after CIE execution.
(struct dwarf2_frame_cache): New field tailcall_cache.
(dwarf2_frame_cache): New variables entry_pc, entry_cfa_sp_offset,
entry_cfa_sp_offset_p and instr. Execute FDE instructions in two
parts, try to find entry_cfa_sp_offset. Call
dwarf2_tailcall_sniffer_first.
(dwarf2_frame_prev_register): Call dwarf2_tailcall_prev_register_first
when appropriate.
(dwarf2_frame_dealloc_cache): New function.
(dwarf2_frame_sniffer): Preinitialize cache by dwarf2_frame_cache.
(dwarf2_frame_unwind): Install dwarf2_frame_dealloc_cache.
(dwarf2_signal_frame_unwind): Do not install dwarf2_frame_dealloc_cache.
(dwarf2_append_unwinders): Add dwarf2_tailcall_frame_unwind.
(dwarf2_frame_cfa): Support also dwarf2_tailcall_frame_unwind.
* dwarf2loc.c (func_addr_to_tail_call_list)
(tailcall_dump, call_sitep, VEC (call_sitep), chain_candidate)
(call_site_find_chain_1, call_site_find_chain): New.
* dwarf2loc.h (struct call_site_chain): New.
(call_site_find_chain): New declaration.
* frame.c (get_frame_address_in_block): Support also TAILCALL_FRAME.
* frame.h (enum frame_type): New entry TAILCALL_FRAME.
* python/py-frame.c (gdbpy_initialize_frames): Add TAILCALL_FRAME.
* stack.c (frame_info): Support also TAILCALL_FRAME.
gdb/doc/
Recognize virtual tail call frames.
* gdb.texinfo (Optimized Code): Add reference to Tail Call Frames.
(Tail Call Frames): New node.
(Frames In Python): Add gdb.TAILCALL_FRAME.
gdb/testsuite/
Recognize virtual tail call frames.
* gdb.arch/amd64-entry-value.cc (c, a, b, amb_z, amb_y, amb_x, amb)
(amb_b, amb_a): New.
(main): Call a and b.
* gdb.arch/amd64-entry-value.exp (tailcall: breakhere, tailcall: bt)
(tailcall: p i, tailcall: p j, set $sp0=$sp, up, p $sp0 == $sp, frame 3)
(p $sp0 + sizeof (void *) == $sp, ambiguous: breakhere, ambiguous: bt):
New tests.
2011-10-09 21:26:44 +02:00
|
|
|
|
2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
Recognize virtual tail call frames.
|
|
|
|
|
* gdb.texinfo (Optimized Code): Add reference to Tail Call Frames.
|
|
|
|
|
(Tail Call Frames): New node.
|
|
|
|
|
(Frames In Python): Add gdb.TAILCALL_FRAME.
|
|
|
|
|
|
2011-10-08 01:01:54 +02:00
|
|
|
|
2011-10-07 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb.printing): Document new `replace' arg to
|
|
|
|
|
register_pretty_printer.
|
|
|
|
|
|
2011-10-07 15:23:18 +02:00
|
|
|
|
2011-10-07 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/12930
|
|
|
|
|
PR python/12802
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): Clarify behavior in the
|
|
|
|
|
stop method.
|
|
|
|
|
|
2011-10-07 14:06:48 +02:00
|
|
|
|
2011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting your Program): "set disable-randomization"
|
|
|
|
|
is no longer Linux-specific.
|
|
|
|
|
(Remote Configuration): Document "set remote
|
|
|
|
|
disable-randomization-packet".
|
|
|
|
|
(General Query Packets): Document "QDisableRandomization" packet
|
|
|
|
|
and add it to "qSupported" list.
|
|
|
|
|
|
2011-10-07 09:51:20 +02:00
|
|
|
|
2011-10-07 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
Allow Python notification of new object-file loadings.
|
|
|
|
|
* gdb.texinfo (Events In Python): Document `gdb.NewObjFileEvent'
|
|
|
|
|
event type.
|
|
|
|
|
|
2011-10-04 10:04:13 +02:00
|
|
|
|
2011-10-04 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
PR python/12691: Add the inferior to Python exited event
|
|
|
|
|
* gdb.texinfo (Events In Python): Describe exited inferior attribute.
|
|
|
|
|
|
2011-10-03 23:39:03 +02:00
|
|
|
|
2011-10-03 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Minor
|
|
|
|
|
rephasing.
|
|
|
|
|
|
2011-10-03 23:38:51 +02:00
|
|
|
|
2011-10-03 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Ada Tasking Commands): New node.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Add `ada-task-info'
|
|
|
|
|
as possible feature returned by the `-list-features'
|
|
|
|
|
command.
|
|
|
|
|
|
2011-10-04 17:54:35 +02:00
|
|
|
|
2011-09-28 Paul Koning <paul_koning@dell.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb.Type): Document field access by dictionary
|
|
|
|
|
key syntax.
|
|
|
|
|
|
2011-09-29 04:25:49 +02:00
|
|
|
|
2011-09-28 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Update options for `add-symbol-file'.
|
|
|
|
|
Add one space after option `-s'. Remove @r{} markup.
|
|
|
|
|
|
2011-09-27 15:09:37 +02:00
|
|
|
|
2011-09-27 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Action Lists): Document $_ret.
|
|
|
|
|
|
2011-09-16 11:07:01 +02:00
|
|
|
|
2011-09-16 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Restrictions): Change *$esp@300
|
|
|
|
|
to *(unsigned char *)$esp@300.
|
|
|
|
|
|
2011-09-15 18:09:42 +02:00
|
|
|
|
2011-09-15 Paul Koning <paul_koning@dell.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Make style of Python functions and methods match
|
|
|
|
|
the syntax of Python. Also put class and module names explicitly
|
|
|
|
|
on function, member, and variable names, matching Python
|
|
|
|
|
documentation conventions.
|
|
|
|
|
|
2011-09-15 14:42:30 +02:00
|
|
|
|
2011-09-15 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
PR Python/12692 Add gdb.selected_inferior() to Python interface.
|
|
|
|
|
* gdb.texinfo (Inferiors In Python): Describe new
|
|
|
|
|
gdb.selected_inferior() function.
|
|
|
|
|
|
2011-09-15 14:27:20 +02:00
|
|
|
|
2011-09-15 Kevin Pouget <kevin.pouget@st.com>
|
|
|
|
|
|
|
|
|
|
Handle multiple breakpoint hits in Python interface:
|
|
|
|
|
* gdb.texinfo (Events In Python): New function documentation:
|
|
|
|
|
gdb.BreakpointEvent.breakpoints. Indicate that
|
|
|
|
|
gdb.BreakpointEvent.breakpoint is now deprecated.
|
|
|
|
|
|
2011-09-04 19:08:56 +02:00
|
|
|
|
2011-09-04 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Set EDITION to "Tenth" and change ISBN.
|
|
|
|
|
|
2011-08-25 19:59:49 +02:00
|
|
|
|
2011-08-25 Andrew Oakley <andrew@ado.is-a-geek.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types In Python): Document 'bitpos' for enums.
|
|
|
|
|
|
2011-08-17 12:41:22 +02:00
|
|
|
|
2011-08-17 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Prompt): Add set/show extended-prompt
|
|
|
|
|
documentation
|
|
|
|
|
(Basic Python): Add prompt_hook anchor.
|
|
|
|
|
(Python modules): Reword module text to reflect multiple modules.
|
|
|
|
|
(gdb.prompt): Document gdb.prompt module.
|
|
|
|
|
|
gdb/doc/
* gdb.texinfo (Standard Target Features): Document C6x features.
(TIC6x Features): New node.
gdb/
* features/Makefile (WHICH): Add tic6x-c64xp tic6x-c64x tic6x-c62x
tic6x-c64xp-linux tic6x-c64x-linux and tic6x-c62x-linux.
* features/tic6x-c6xp.xml, features/tic6x-core.xml: New.
* features/tic6x-gp.xml, features/tic6x-c62x.xml: New.
* features/tic6x-c64x.xml, features/tic6x-c64xp.xml: New.
* features/tic6x-c62x-linux.xml, features/tic6x-c64x-linux.xml: New.
* features/tic6x-c64xp-linux.xml: New.
* features/tic6x-c64xp.c, features/tic6x-c64x.c: Generated.
* features/tic6x-c62x.c, features/tic6x-c64xp-linux.c: Generated.
* features/tic6x-c64x-linux.c, features/tic6x-c62x-linux.c: Generated.
* regformats/tic6x-c62x.dat, regformats/tic6x-c64x.dat: Generated.
* regformats/tic6x-c64xp.dat, regformats/tic6x-c62x-linux.dat: Generated.
* regformats/tic6x-c64x-linux.dat, regformats/tic6x-c64xp-linux.dat: Generated.
* config/djgpp/fnchange.lst: Add features/tic6x-*.xml and
features/tic6x-*.c files.
Add regformats/tic6x-*.dat files.
2011-08-14 14:43:38 +02:00
|
|
|
|
2011-08-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
2011-08-14 15:03:13 +02:00
|
|
|
|
* gdb.texinfo (General Query Packets): Document qXfer:fdpic:read packet.
|
|
|
|
|
|
|
|
|
|
2011-08-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Standard Target Features): Document C6x features.
|
gdb/doc/
* gdb.texinfo (Standard Target Features): Document C6x features.
(TIC6x Features): New node.
gdb/
* features/Makefile (WHICH): Add tic6x-c64xp tic6x-c64x tic6x-c62x
tic6x-c64xp-linux tic6x-c64x-linux and tic6x-c62x-linux.
* features/tic6x-c6xp.xml, features/tic6x-core.xml: New.
* features/tic6x-gp.xml, features/tic6x-c62x.xml: New.
* features/tic6x-c64x.xml, features/tic6x-c64xp.xml: New.
* features/tic6x-c62x-linux.xml, features/tic6x-c64x-linux.xml: New.
* features/tic6x-c64xp-linux.xml: New.
* features/tic6x-c64xp.c, features/tic6x-c64x.c: Generated.
* features/tic6x-c62x.c, features/tic6x-c64xp-linux.c: Generated.
* features/tic6x-c64x-linux.c, features/tic6x-c62x-linux.c: Generated.
* regformats/tic6x-c62x.dat, regformats/tic6x-c64x.dat: Generated.
* regformats/tic6x-c64xp.dat, regformats/tic6x-c62x-linux.dat: Generated.
* regformats/tic6x-c64x-linux.dat, regformats/tic6x-c64xp-linux.dat: Generated.
* config/djgpp/fnchange.lst: Add features/tic6x-*.xml and
features/tic6x-*.c files.
Add regformats/tic6x-*.dat files.
2011-08-14 14:43:38 +02:00
|
|
|
|
(TIC6x Features): New node.
|
|
|
|
|
|
2011-08-13 00:21:57 +02:00
|
|
|
|
2011-08-12 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols In Python): Document symbol.type.
|
|
|
|
|
|
2011-08-09 14:45:40 +02:00
|
|
|
|
2011-08-09 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python): Document command and function
|
|
|
|
|
auto-loading.
|
|
|
|
|
|
2011-07-26 18:59:23 +02:00
|
|
|
|
2011-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (whatis, ptype): Highlight their differences. Describe
|
|
|
|
|
typedefs unrolling. Extend the sample code by an inner typedef and
|
|
|
|
|
outer typedefs unrolling.
|
|
|
|
|
|
2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
* NEWS: Mention dcache configuration.
* dcache.c (dcache_set_list, dcache_show_list): New variables.
(dcache_size, dcache_line_size): New variables.
(LINE_SIZE_MASK, XFORM, MASK): Adjust.
(struct dcache_block): Make it expandable.
(struct dcache_struct): New field.
(dcache_invalidate): Discard freelist upon dcache_line_size changes.
(dcache_hit, dcache_alloc, dcache_peek_byte): Adjust.
(dcache_poke_byte, dcache_print_line): Adjust.
(set_dcache_size, set_dcache_line_size): New functions.
(set_dcache_command, show_dcache_command): New functions.
(_initialize_dcache): Add new commands.
doc/ChangeLog:
2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
* gdb.texinfo (Caching Remote Data): Document {set,show} dcache
size and line-size.
2011-07-26 17:24:02 +02:00
|
|
|
|
2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Caching Remote Data): Document {set,show} dcache
|
|
|
|
|
size and line-size.
|
|
|
|
|
|
2011-07-21 17:13:30 +02:00
|
|
|
|
2011-07-21 Matt Rice <ratmice@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR macros/12999
|
|
|
|
|
* gdb.texinfo (Macros): Add info definitions and info macros commands.
|
|
|
|
|
Update text and cindex entries for info macro command.
|
|
|
|
|
|
2011-07-21 13:03:48 +02:00
|
|
|
|
2011-07-21 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Add before_prompt observer.
|
|
|
|
|
* gdb.texinfo (Basic Python): Add documentation for prompt
|
|
|
|
|
substitution.
|
|
|
|
|
|
2011-07-11 15:07:38 +02:00
|
|
|
|
2011-07-11 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/12438
|
|
|
|
|
* gdb.texinfo (Python Commands): Add deprecate note to maint
|
|
|
|
|
set/show python print-stack. Document set/show python
|
|
|
|
|
print-backtrace.
|
|
|
|
|
|
2011-07-05 06:35:00 +02:00
|
|
|
|
2011-07-05 Thiago Jung Bauermann <bauerman.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix typos.
|
|
|
|
|
|
2011-07-01 21:12:12 +02:00
|
|
|
|
2011-07-01 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document set debug
|
|
|
|
|
check-physname.
|
|
|
|
|
|
2011-06-29 19:30:01 +02:00
|
|
|
|
2011-06-29 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Document
|
|
|
|
|
breakpoint-notifications feature.
|
|
|
|
|
|
2011-06-29 18:28:22 +02:00
|
|
|
|
2011-06-29 Ulrich Weigand <ulrich.weigand@linaro.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Description): Remove warning about
|
|
|
|
|
possibly unstable format.
|
|
|
|
|
|
2011-06-03 17:32:44 +02:00
|
|
|
|
2011-06-03 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document 'exit-code' field.
|
|
|
|
|
(Events In Python): Note that exit_code is optional.
|
|
|
|
|
|
2011-05-17 15:29:38 +02:00
|
|
|
|
2011-05-17 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Protocol) <Overview>: Mention vCont is
|
|
|
|
|
required for multi-threading support.
|
|
|
|
|
(Remote Protocol) <Packets>: Mention that 'c', 's', 'C', 'S' and
|
|
|
|
|
Hc are deprecated for multi-threading debugging. Point readers at
|
|
|
|
|
the vCont packet.
|
|
|
|
|
|
2011-05-15 20:46:25 +02:00
|
|
|
|
2011-05-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto-loading): Document printing of missing scripts.
|
|
|
|
|
|
2011-05-13 19:31:07 +02:00
|
|
|
|
2011-05-13 Doug Evans <dje@google.com>
|
|
|
|
|
|
2011-05-14 00:36:07 +02:00
|
|
|
|
* gdb.texinfo (Threads): Document $sdir,$pdir.
|
|
|
|
|
(Server): Document $pdir exception.
|
|
|
|
|
|
2011-05-14 00:11:47 +02:00
|
|
|
|
* gdb.texinfo (Auto-loading): Document "info auto-load-scripts".
|
|
|
|
|
|
2011-05-14 00:09:57 +02:00
|
|
|
|
* gdb.texinfo (Threads): Clarify default value for
|
|
|
|
|
libthread-db-search-path.
|
2011-05-13 20:45:43 +02:00
|
|
|
|
|
2011-05-13 19:31:07 +02:00
|
|
|
|
* gdb.texinfo (Completion): Update example.
|
|
|
|
|
(Debugging Output): Delete `set/show debug lin-lwp-async'.
|
|
|
|
|
|
2011-05-12 14:09:17 +02:00
|
|
|
|
2011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document change in the behaviour of the enable and
|
|
|
|
|
disable GDB commands when applied to tracepoints.
|
|
|
|
|
Document the EnableDisableTracepoints remote stub feature.
|
|
|
|
|
Document QTEnable and QTDisable in the list of tracepoint packets.
|
|
|
|
|
|
2011-05-12 01:38:44 +02:00
|
|
|
|
2011-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (GDB_DOC_SOURCE_INCLUDES): Rename inc-hist.texinfo to
|
|
|
|
|
hsuser.texi.
|
|
|
|
|
* gdb.texinfo <!SYSTEM_READLINE>: Rename inc-hist.texinfo inclusion and
|
|
|
|
|
comment to hsuser.texi. Change rluser.texi name in the comment.
|
|
|
|
|
|
2011-05-10 18:53:23 +02:00
|
|
|
|
2011-05-10 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): If an empty path is provided for
|
|
|
|
|
libthread-db-search-path it is reset to its default value.
|
|
|
|
|
(Server): Ditto.
|
|
|
|
|
|
2011-05-09 23:49:57 +02:00
|
|
|
|
2011-05-09 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Requirements): Fix typo. Mention --with-iconv-bin.
|
|
|
|
|
|
2011-05-06 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
Implement support for PowerPC BookE masked watchpoints.
gdb/
* NEWS: Mention masked watchpoint support. Create "Changed commands"
section.
* breakpoint.h (struct breakpoint_ops) <works_in_software_mode>: New
method. Initialize to NULL in all existing breakpoint_ops instances.
(struct breakpoint) <hw_wp_mask>: New field.
* breakpoint.c (is_masked_watchpoint): Add prototype.
(update_watchpoint): Don't set b->val for masked watchpoints. Call
breakpoint's breakpoint_ops.works_in_software_mode if available.
(watchpoints_triggered): Handle the case of a hardware masked
watchpoint trigger.
(watchpoint_check): Likewise.
(works_in_software_mode_watchpoint): New function.
(insert_masked_watchpoint, remove_masked_watchpoint)
(resources_needed_masked_watchpoint)
(works_in_software_mode_masked_watchpoint, print_it_masked_watchpoint)
(print_one_detail_masked_watchpoint, print_mention_masked_watchpoint)
(print_recreate_masked_watchpoint, is_masked_watchpoint): New
functions.
(masked_watchpoint_breakpoint_ops): New structure.
(watch_command_1): Check for the existence of the `mask' parameter.
Set b->ops according to the type of hardware watchpoint being created.
* ppc-linux-nat.c (ppc_linux_insert_mask_watchpoint)
(ppc_linux_remove_mask_watchpoint)
(ppc_linux_masked_watch_num_registers): New functions.
(_initialize_ppc_linux_nat): Initialize to_insert_mask_watchpoint,
to_remove_mask_watchpoint and to_masked_watch_num_registers.
* target.c (update_current_target): Mention to_insert_mask_watchpoint,
to_remove_mask_watchpoint, and to_masked_watch_num_registers.
(target_insert_mask_watchpoint, target_remove_mask_watchpoint)
(target_masked_watch_num_registers): New functions.
* target.h (struct target_ops) <to_insert_mask_watchpoint>,
<to_remove_mask_watchpoint>, <to_masked_watch_num_registers>: New
methods.
(target_insert_mask_watchpoint, target_remove_mask_watchpoint)
(target_masked_watch_num_registers): Add prototypes.
gdb/doc/
* gdb.texinfo (Set Watchpoints): Document mask parameter.
(PowerPC Embedded): Mention support of masked watchpoints.
2011-05-06 20:46:33 +02:00
|
|
|
|
2011-05-06 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
Implement support for PowerPC BookE masked watchpoints.
|
|
|
|
|
* gdb.texinfo (Set Watchpoints): Document mask parameter.
|
|
|
|
|
(PowerPC Embedded): Mention support of masked watchpoints.
|
|
|
|
|
|
2011-05-03 17:18:10 +02:00
|
|
|
|
2011-05-03 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (In Memoriam): Replace litteral uses of `GDB' with
|
|
|
|
|
`@value{GDBN}'.
|
|
|
|
|
|
2011-05-03 17:09:01 +02:00
|
|
|
|
2011-05-03 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (titlepage): Remove dedication.
|
|
|
|
|
(In Memoriam): New appendix.
|
|
|
|
|
|
2011-04-27 22:03:04 +02:00
|
|
|
|
2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Section Format): Change the version to 5.
|
|
|
|
|
Describe the different formula.
|
|
|
|
|
|
2011-04-24 10:02:21 +02:00
|
|
|
|
2011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting and Stopping Trace Experiments): New anchor
|
|
|
|
|
for disconnected tracing.
|
|
|
|
|
(Multi-Process Mode for @code{gdbserver}): Mention --multi and
|
|
|
|
|
extended-remote relationship. Mention --once.
|
|
|
|
|
(TCP port allocation lifecycle of @code{gdbserver}): New.
|
|
|
|
|
|
2011-04-23 07:47:43 +02:00
|
|
|
|
2011-04-23 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server): Improve indexing. Index all optional
|
|
|
|
|
switches to gdbserver.
|
|
|
|
|
|
2011-04-20 20:05:26 +02:00
|
|
|
|
2011-04-20 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Section Format): New node.
|
|
|
|
|
(Top): Add new node to menu.
|
|
|
|
|
|
2011-04-20 19:54:08 +02:00
|
|
|
|
2011-04-20 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document `maint print
|
|
|
|
|
remote-registers'.
|
|
|
|
|
|
2011-04-20 15:22:50 +02:00
|
|
|
|
2011-04-20 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Trace File Format): Move node later.
|
|
|
|
|
|
2011-04-19 20:04:11 +02:00
|
|
|
|
2011-04-19 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Register Information Functions): Remove
|
|
|
|
|
duplicate "the".
|
|
|
|
|
* gdb.texinfo (Emacs): Remove duplicate "to".
|
|
|
|
|
(GDB/MI Variable Objects): Remove duplicate "the".
|
|
|
|
|
(General Query Packets): Likewise.
|
|
|
|
|
|
2011-04-02 06:31:43 +02:00
|
|
|
|
2011-04-02 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Output Records): Fix menu entry for
|
|
|
|
|
"GDB/MI Ada Exception Information" node.
|
|
|
|
|
|
2011-04-01 18:59:58 +02:00
|
|
|
|
2011-04-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Ada Exception Information): Document
|
|
|
|
|
the "exception-name" field in the *stopped async record.
|
|
|
|
|
|
2011-03-31 16:32:49 +02:00
|
|
|
|
2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
|
|
|
|
|
|
|
|
|
|
Implement support for PowerPC BookE ranged breakpoints.
|
|
|
|
|
* gdb.texinfo (PowerPC Embedded): Document ranged breakpoints.
|
|
|
|
|
|
2011-03-28 20:05:39 +02:00
|
|
|
|
2011-03-28 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Tracepoints): Fix typo.
|
|
|
|
|
|
2011-03-24 21:25:17 +01:00
|
|
|
|
2011-03-24 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Specify Location): Document `function:label'
|
|
|
|
|
linespec.
|
|
|
|
|
|
2011-03-18 09:44:47 +01:00
|
|
|
|
2011-03-18 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
2011-03-31 16:32:49 +02:00
|
|
|
|
PR python/12149
|
2011-03-18 09:44:47 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Update gdb.write and flush text.
|
|
|
|
|
|
2011-03-17 10:36:17 +01:00
|
|
|
|
2011-03-17 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Blocks In Python): Add is_valid method description.
|
|
|
|
|
(Inferiors In Python): Likewise.
|
|
|
|
|
(Threads In Python): Likewise.
|
|
|
|
|
(Symbols In Python): Likewise.
|
|
|
|
|
(Objfiles In Python): Likewise.
|
|
|
|
|
(Symbol Tables In Python): Likewise.
|
|
|
|
|
|
2011-03-15 15:05:38 +01:00
|
|
|
|
2011-03-15 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auto Display) <undisplay, enable display, disable
|
|
|
|
|
display>: Explain that the commands accept number ranges.
|
|
|
|
|
|
2011-03-14 17:09:55 +01:00
|
|
|
|
2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): Add description and example
|
|
|
|
|
of Python stop function operation.
|
|
|
|
|
|
2011-03-10 13:29:08 +01:00
|
|
|
|
2011-03-10 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Parameters In Python): Document get_set_string and
|
|
|
|
|
get_show_string methods.
|
|
|
|
|
|
2011-02-28 10:07:46 +01:00
|
|
|
|
2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Conditions): Fix missing parenthesis.
|
|
|
|
|
|
2011-02-28 10:28:21 +01:00
|
|
|
|
* gdb.texinfo (Starting and Stopping Trace Experiments): Fix
|
|
|
|
|
circular-trace-buffer name.
|
|
|
|
|
|
2011-02-28 05:08:51 +01:00
|
|
|
|
2011-02-28 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors and Programs): Fix small error introduced
|
|
|
|
|
in the previous change.
|
|
|
|
|
|
2011-02-27 21:57:16 +01:00
|
|
|
|
2011-02-27 Michael Snyder <msnyder@vmware.com>
|
2011-02-27 21:49:27 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors and Programs): Update commands to show
|
|
|
|
|
that they can accept multiple arguments.
|
|
|
|
|
|
2011-02-24 08:38:00 +01:00
|
|
|
|
2011-02-24 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
Revert the following patch (code patch was not approved):
|
|
|
|
|
2011-02-21 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
* agentexpr.texi (bytecode descriptions): add printf.
|
|
|
|
|
* gdb.texinfo (tracepoint action lists): add printf.
|
|
|
|
|
|
2011-02-24 00:33:12 +01:00
|
|
|
|
2011-02-23 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols In Python): Fix mention of C++, use C@t{++}.
|
|
|
|
|
|
2011-02-23 20:20:39 +01:00
|
|
|
|
2011-02-23 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Add @dots{} to arguments of info break.
|
|
|
|
|
(Set Watchpoints): Add @dots{} to argument of info watchpoints.
|
|
|
|
|
(Listing Tracepoints): Add @dots{} to argument of info tracepoints.
|
|
|
|
|
|
2011-02-22 23:48:12 +01:00
|
|
|
|
2011-02-22 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols In Python): Document lookup_global_symbol.
|
|
|
|
|
Clarify behaviour of lookup_symbol when `block' argument is omitted,
|
|
|
|
|
add description of result, fix @defun formatting.
|
|
|
|
|
|
2011-02-21 09:40:27 +01:00
|
|
|
|
2011-02-21 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi (Bytecode Descriptions): Add printf.
|
|
|
|
|
* gdb.texinfo (Tracepoint Action Lists): Add printf.
|
|
|
|
|
|
2011-02-18 21:55:45 +01:00
|
|
|
|
2011-02-18 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi (Bytecode Descriptions): Document pick and rot.
|
|
|
|
|
|
2011-02-15 22:17:53 +01:00
|
|
|
|
2011-02-14 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (threads): Document argument for "info threads" cmd.
|
|
|
|
|
Document new command "thread find".
|
|
|
|
|
|
2011-02-15 00:14:35 +01:00
|
|
|
|
2011-02-14 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Update example of new thread message.
|
|
|
|
|
|
2011-02-14 12:13:12 +01:00
|
|
|
|
2011-02-14 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Mention set/show remote
|
|
|
|
|
traceframe-info.
|
|
|
|
|
(Tools/Packages Optional for Building GDB): Mention that expat is
|
|
|
|
|
used for traceframe info.
|
|
|
|
|
(Remote Protocol) <Menu>: Add "Traceframe Info Format".
|
|
|
|
|
(General Query Packets) <qSupported>: Describe the
|
|
|
|
|
qXfer:traceframe-info:read feature.
|
|
|
|
|
(qXfer::read): Describe qXfer:traceframe-info:read.
|
|
|
|
|
(Traceframe Info Format): New section.
|
|
|
|
|
|
2011-02-04 20:10:12 +01:00
|
|
|
|
2011-02-04 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Formatting): Mention some formatting guidelines
|
|
|
|
|
for casts and unary operators.
|
|
|
|
|
|
2011-02-04 19:35:04 +01:00
|
|
|
|
2011-02-04 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document that symbols-loaded
|
|
|
|
|
is not useful.
|
|
|
|
|
|
2011-01-25 17:26:23 +01:00
|
|
|
|
2011-01-25 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: s/value optimized out/optimized out/g
|
|
|
|
|
|
2011-01-21 19:56:43 +01:00
|
|
|
|
2011-01-21 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Other Misc Settings): Rework part of the
|
|
|
|
|
documentation of the "set interactive mode" command.
|
|
|
|
|
|
2011-01-19 18:21:39 +01:00
|
|
|
|
2011-01-19 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Document thread name output and `thread
|
|
|
|
|
name' command.
|
|
|
|
|
(Threads In Python): Document Thread.name attribute.
|
|
|
|
|
(GDB/MI Thread Commands): Document thread attributes.
|
|
|
|
|
|
2011-01-12 16:02:12 +01:00
|
|
|
|
2011-01-12 Andrew Burgess <aburgess@broadcom.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Data Manipulation): Update to reflect
|
|
|
|
|
changes in mi/mi-cmd-disas.c
|
|
|
|
|
|
2011-01-12 15:30:45 +01:00
|
|
|
|
2011-01-12 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Remove duplicate text. Update examples.
|
|
|
|
|
Fix "thread apply" text.
|
|
|
|
|
|
2011-01-11 20:23:03 +01:00
|
|
|
|
2011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
Implement support for PowerPC BookE ranged watchpoints.
|
|
|
|
|
* gdb.texinfo (PowerPC Embedded): Document ranged watchpoints and
|
|
|
|
|
the "set powerpc exact-watchpoints" flag.
|
|
|
|
|
|
2011-01-07 16:47:21 +01:00
|
|
|
|
2011-01-07 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python API): Add descriptions to @menu items.
|
|
|
|
|
|
2011-01-06 22:10:53 +01:00
|
|
|
|
2011-01-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Frames In Python): Document gdb.newest_thread.
|
|
|
|
|
|
2011-01-06 20:56:44 +01:00
|
|
|
|
2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
2011-01-11 20:23:03 +01:00
|
|
|
|
* gdb.texinfo (Debugging Output): Document "set debug jit".
|
2011-01-06 20:56:44 +01:00
|
|
|
|
|
2011-01-06 19:34:16 +01:00
|
|
|
|
2011-01-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/12133:
|
|
|
|
|
* gdb.texinfo (Frames In Python): Document various frame
|
|
|
|
|
constants.
|
|
|
|
|
|
2011-01-05 06:09:55 +01:00
|
|
|
|
2011-01-05 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* doc/agentexpr.texi, doc/all-cfg.texi, doc/annotate.texinfo,
|
|
|
|
|
doc/gdb.texinfo, doc/gdbint.texinfo, doc/observer.texi,
|
|
|
|
|
doc/refcard.tex, doc/stabs.texinfo: Copyright year update.
|
|
|
|
|
|
2011-01-03 14:01:05 +01:00
|
|
|
|
2011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (diststuff): Remove gdb-cfg.texi and GDBvn.texi.
|
|
|
|
|
(clean): Add GDBvn.texi.
|
|
|
|
|
|
2010-12-29 09:01:32 +01:00
|
|
|
|
2010-12-29 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ada Glitches): Remove paragraph describing the
|
|
|
|
|
occasional case where the debugger prints an array address
|
|
|
|
|
instead of the array itself.
|
|
|
|
|
|
2010-12-23 21:29:17 +01:00
|
|
|
|
2010-12-23 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets) <read registers packet>: Document support
|
|
|
|
|
for registers that were not collected.
|
|
|
|
|
|
2010-12-15 18:28:00 +01:00
|
|
|
|
2010-12-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Startup): Document auto-loading of scripts during
|
|
|
|
|
startup.
|
|
|
|
|
(Auto-loading): Delete "maint set python auto-load on|off".
|
|
|
|
|
Add "set auto-load-scripts on|off".
|
|
|
|
|
|
2010-12-07 18:26:06 +01:00
|
|
|
|
2010-12-07 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Document -data-directory.
|
|
|
|
|
(Data Files): Add reference to -data-directory.
|
|
|
|
|
|
2010-11-30 00:20:58 +01:00
|
|
|
|
2010-11-29 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Pretty-Printer Introduction): Change
|
|
|
|
|
printer-name:subprinter-name to printer-name;subprinter-name.
|
|
|
|
|
|
2010-11-29 14:49:05 +01:00
|
|
|
|
2010-11-29 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/12199
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): Document "delete" method.
|
|
|
|
|
|
2010-11-23 15:39:16 +01:00
|
|
|
|
2010-11-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Top): Check SYSTEM_READLINE.
|
|
|
|
|
(Editing): Likewise.
|
|
|
|
|
(Command History): Likewise.
|
|
|
|
|
(TUI Keys): Likewise.
|
|
|
|
|
(Bug Reporting): Conditionally include rluser.texi and
|
|
|
|
|
inc-history.texinfo.
|
|
|
|
|
* Makefile.in (READLINE_TEXI_INCFLAG): New variable.
|
|
|
|
|
(GDB_DOC_SOURCE_INCLUDES): Add comment.
|
|
|
|
|
(GDBvn.texi): Set SYSTEM_READLINE when appropriate.
|
|
|
|
|
(gdb.dvi): Use READLINE_TEXI_INCFLAG.
|
|
|
|
|
(gdb.pdf): Likewise.
|
|
|
|
|
(gdb.info): Likewise.
|
|
|
|
|
(gdb/index.html): Likewise.
|
|
|
|
|
|
2010-11-23 15:37:26 +01:00
|
|
|
|
2010-11-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (Makefile): Run ../config.status.
|
|
|
|
|
(distclean): Update.
|
|
|
|
|
* configure: Remove.
|
|
|
|
|
* configure.ac: Remove.
|
|
|
|
|
|
2010-11-12 21:49:43 +01:00
|
|
|
|
2010-11-12 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Update. Add xref.
|
|
|
|
|
(Exception Handling): Document new exception classes.
|
|
|
|
|
(Types In Python): Update.
|
|
|
|
|
(Frames In Python): Update.
|
|
|
|
|
|
2010-11-11 15:11:56 +01:00
|
|
|
|
2010-11-11 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): Document "internal"
|
|
|
|
|
parameter, and visible attribute.
|
|
|
|
|
|
2010-11-05 17:55:40 +01:00
|
|
|
|
2010-11-05 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Source Path): Document "set directories".
|
|
|
|
|
|
2010-11-05 15:31:30 +01:00
|
|
|
|
2010-11-05 Ken Werner <ken.werner@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: (Summary) Add mention about OpenCL C language support.
|
|
|
|
|
(OpenCL C): New node.
|
|
|
|
|
|
New python module gdb.printing, and new commands info pretty-printer,
enable pretty-printer, disable pretty-printer.
* NEWS: Mention them.
* data-directory/Makefile.in (PYTHON_FILES): Add gdb/printing.py,
gdb/command/__init__.py, gdb/command/pretty_printers.py.
* python/lib/gdb/__init__.py: Install pretty-printer commands.
* python/lib/gdb/printing.py: New file.
* python/lib/gdb/command/__init__.py: New file.
* python/lib/gdb/command/pretty_printers.py: New file.
doc/
* gdb.texinfo (Pretty Printing): Expand into three sections,
introduction, example, and commands.
(Python API): Delete section Disabling Pretty-Printers, merge into
Selecting Pretty-Printers.
(Writing a Pretty-Printer): New section. Move the pretty-printer
example here, and reformat to match python coding style. Add a second
example using the gdb.printing module.
(Python modules): Add gdb.printing.
testsuite/
* gdb.python/py-pp-maint.c: New file.
* gdb.python/py-pp-maint.exp: New file.
* gdb.python/py-pp-maint.py: New file.
2010-11-02 23:44:13 +01:00
|
|
|
|
2010-11-02 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Pretty Printing): Expand into three sections,
|
|
|
|
|
introduction, example, and commands.
|
|
|
|
|
(Python API): Delete section Disabling Pretty-Printers, merge into
|
|
|
|
|
Selecting Pretty-Printers.
|
|
|
|
|
(Writing a Pretty-Printer): New section. Move the pretty-printer
|
|
|
|
|
example here, and reformat to match python coding style. Add a second
|
|
|
|
|
example using the gdb.printing module.
|
|
|
|
|
(Python modules): Add gdb.printing.
|
|
|
|
|
|
2010-10-30 06:39:47 +02:00
|
|
|
|
2010-10-29 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python): Fix long line.
|
|
|
|
|
|
2010-10-21 00:53:36 +02:00
|
|
|
|
2010-10-20 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Misc Guidelines): Renamed from Coding.
|
|
|
|
|
All references updated. Correct sections marked as subsections.
|
|
|
|
|
(Coding Standards): New chapter. Move the coding standard related
|
|
|
|
|
subsections here. Add section on Python coding standards.
|
|
|
|
|
|
2010-10-13 22:08:46 +02:00
|
|
|
|
2010-10-13 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python): Add "Python modules".
|
|
|
|
|
(Types in Python): Add reference to gdb.types section.
|
|
|
|
|
(Python modules): New node.
|
|
|
|
|
|
2010-10-11 17:46:09 +02:00
|
|
|
|
2010-10-11 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Add reference to "Types in
|
|
|
|
|
Python" from gdb.Value.type description.
|
|
|
|
|
|
2010-09-28 23:40:23 +02:00
|
|
|
|
2010-09-28 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ravenscar Profile): New node.
|
|
|
|
|
|
2010-09-22 17:51:43 +02:00
|
|
|
|
2010-09-22 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Mention Value.__init__.
|
|
|
|
|
|
2010-09-22 11:13:31 +02:00
|
|
|
|
2010-09-22 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Clarify that
|
|
|
|
|
value.dynamic_type works only in C++ programs with RTTI.
|
|
|
|
|
|
2010-09-15 21:31:59 +02:00
|
|
|
|
2010-09-15 Paul Bolle <pebolle@tiscali.nl>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Character Sets): Correctly reference host-charset
|
|
|
|
|
in example.
|
|
|
|
|
|
2010-09-13 20:27:04 +02:00
|
|
|
|
2010-09-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation) <-stack-list-frames>:
|
|
|
|
|
Document "fullname" and "from".
|
|
|
|
|
|
2010-09-01 21:03:54 +02:00
|
|
|
|
2010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Document new
|
|
|
|
|
feature `reverse' output by -list-target-features.
|
|
|
|
|
|
2010-08-31 16:45:41 +02:00
|
|
|
|
2010-08-31 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (i386 Features): Remove an extra "@item".
|
|
|
|
|
|
2010-08-30 22:28:31 +02:00
|
|
|
|
2010-08-30 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/11792:
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Document dynamic_type.
|
|
|
|
|
|
2010-08-24 17:56:15 +02:00
|
|
|
|
2010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (ARM Features): Document
|
|
|
|
|
org.gnu.gdb.arm.m-profile.
|
|
|
|
|
|
2010-08-23 22:29:19 +02:00
|
|
|
|
2010-08-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/11145:
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Document dynamic_cast and
|
|
|
|
|
reinterpret_cast methods.
|
|
|
|
|
|
2010-08-23 22:21:28 +02:00
|
|
|
|
2010-08-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/11915:
|
|
|
|
|
* gdb.texinfo (Types In Python): Document array method.
|
|
|
|
|
|
2010-08-18 19:58:48 +02:00
|
|
|
|
2010-08-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (PowerPC Embedded): Mention support for the DVC register.
|
|
|
|
|
|
2010-08-16 21:19:22 +02:00
|
|
|
|
2010-08-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Watchpoints): Document -location option.
|
|
|
|
|
|
2010-08-13 22:39:09 +02:00
|
|
|
|
2010-08-13 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (.debug_gdb_scripts section): Fix typo.
|
|
|
|
|
|
2010-08-13 15:22:44 +02:00
|
|
|
|
2010-08-13 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Data Manipulation): Document
|
|
|
|
|
-data-read-memory-raw and -data-write-memory-raw.
|
|
|
|
|
|
2010-08-11 22:54:12 +02:00
|
|
|
|
2010-08-11 Tom Tromey <tromey@redhat.com>
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Phil Muldoon <pmuldoon@redhat.com>
|
2010-08-11 22:54:12 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Describe post_event API.
|
|
|
|
|
|
2010-08-11 14:48:24 +02:00
|
|
|
|
2010-08-11 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Describe solib_address and
|
2010-08-27 14:02:20 +02:00
|
|
|
|
decode_line Python APIs
|
2010-08-11 14:48:24 +02:00
|
|
|
|
|
2010-08-10 22:25:30 +02:00
|
|
|
|
2010-08-10 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Pretty Printing API): Document
|
|
|
|
|
gdb.default_visualizer.
|
|
|
|
|
|
2010-08-10 20:35:53 +02:00
|
|
|
|
2010-08-10 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
Revert gdb-add-index addition:
|
|
|
|
|
* gdb.texinfo (Index Files): Don't document gdb-add-index.
|
|
|
|
|
|
2010-08-07 17:00:39 +02:00
|
|
|
|
2010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options) <-batch>
|
|
|
|
|
(Basic Python) <gdb.execute>: Describe setting width and height.
|
|
|
|
|
|
2010-07-31 17:34:41 +02:00
|
|
|
|
2010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Document 'debug libthread-db'.
|
|
|
|
|
|
2010-07-30 22:46:34 +02:00
|
|
|
|
2010-07-30 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Files): Mention gdb-add-index.
|
|
|
|
|
|
2010-07-30 16:32:02 +02:00
|
|
|
|
2010-07-30 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors and Programs): Update the introduce of
|
|
|
|
|
"detach inferior" and "kill inferior".
|
|
|
|
|
|
2010-07-27 22:33:40 +02:00
|
|
|
|
2010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code): Update description of two forms of
|
|
|
|
|
arguments, and add new example to demonstrate the new form.
|
|
|
|
|
|
2010-07-27 14:40:42 +02:00
|
|
|
|
2010-07-27 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Add value inferior function
|
|
|
|
|
call description.
|
|
|
|
|
|
2010-07-19 20:11:31 +02:00
|
|
|
|
2010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Active Targets): Fix wrong comma placement.
|
|
|
|
|
|
2010-07-19 19:51:25 +02:00
|
|
|
|
2010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
Make core files the process_stratum.
|
|
|
|
|
* gdb.texinfo (Active Targets): Remove core_stratum. Include
|
|
|
|
|
record_stratum example.
|
|
|
|
|
|
2010-07-13 22:51:34 +02:00
|
|
|
|
2010-07-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Index Files): New node.
|
|
|
|
|
|
2010-07-13 22:32:43 +02:00
|
|
|
|
2010-07-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Remove extra 'for'.
|
|
|
|
|
|
2010-07-13 22:07:44 +02:00
|
|
|
|
2010-07-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Specify Location): Document labels.
|
|
|
|
|
|
2010-07-01 19:40:04 +02:00
|
|
|
|
2010-07-01 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Create and Delete Tracepoints): Add more index
|
|
|
|
|
entries for fast tracepoints and static tracepoints.
|
|
|
|
|
|
2010-07-01 19:22:52 +02:00
|
|
|
|
2010-07-01 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets) <qfThreadInfo,
|
|
|
|
|
qsThreadInfo>: Spell out `l' as ell.
|
|
|
|
|
|
Static tracepoints support, and UST integration.
gdb/gdbserver/
* configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
* mem-break.c (uninsert_all_breakpoints)
(reinsert_all_breakpoints): New.
* mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
* tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
(gdb_agent_ust_loaded, helper_thread_id)
(gdb_agent_helper_thread_id): New macros.
(struct ipa_sym_addresses): Add addr_ust_loaded,
addr_helper_thread_id, addr_cmd_buf.
(symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
(in_process_agent_loaded_ust): New.
(write_e_ust_not_loaded): New.
(maybe_write_ipa_ust_not_loaded): New.
(struct collect_static_trace_data_action): New.
(enum tracepoint_type) <static_tracepoint>: New.
(struct tracepoint) <handle>: Mention static tracepoints.
(struct static_tracepoint_ctx): New.
(CMD_BUF_SIZE): New.
(add_tracepoint_action): Handle static tracepoint actions.
(unprobe_marker_at): New.
(clear_installed_tracepoints): Handle static tracepoints.
(cmd_qtdp): Handle static tracepoints.
(probe_marker_at): New.
(cmd_qtstart): Handle static tracepoints.
(response_tracepoint): Handle static tracepoints.
(cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
(handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
(get_context_regcache): Handle static tracepoints.
(do_action_at_tracepoint): Handle static tracepoint actions.
(traceframe_find_block_type): Handle static trace data blocks.
(traceframe_read_sdata): New.
(download_tracepoints): Download static tracepoint actions.
[HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
(GDB_PROBE_NAME): New.
(ust_ops): New.
(GET_UST_SYM): New.
(USTF): New.
(dlsym_ust): New.
(ust_marker_to_static_tracepoint): New.
(gdb_probe): New.
(collect_ust_data_at_tracepoint): New.
(gdb_ust_probe): New.
(UNIX_PATH_MAX, SOCK_DIR): New.
(gdb_ust_connect_sync_socket): New.
(resume_thread, stop_thread): New.
(run_inferior_command): New.
(init_named_socket): New.
(gdb_ust_socket_init): New.
(cstr_to_hexstr): New.
(next_st): New.
(first_marker, next_marker): New.
(response_ust_marker): New.
(cmd_qtfstm, cmd_qtsstm): New.
(unprobe_marker_at, probe_marker_at): New.
(cmd_qtstmat, gdb_ust_thread): New.
(gdb_ust_init): New.
(initialize_tracepoint_ftlib): Call gdb_ust_init.
* linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
(ST_REGENTRY): New.
(x86_64_st_collect_regmap): New.
(X86_64_NUM_ST_COLLECT_GREGS): New.
(AMD64_RIP_REGNUM): New.
(supply_static_tracepoint_registers): New.
* linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
(ST_REGENTRY): New.
(i386_st_collect_regmap): New.
(i386_NUM_ST_COLLECT_GREGS): New.
(supply_static_tracepoint_registers): New.
* server.c (handle_query): Handle qXfer:statictrace:read.
<qSupported>: Report support for StaticTracepoints, and
qXfer:statictrace:read features.
* server.h (traceframe_read_sdata)
(supply_static_tracepoint_registers): Declare.
* remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
(unpack_varlen_hex): Include in IPA build.
* Makefile.in (ustlibs, ustinc): New.
(IPA_OBJS): Add remote-utils-ipa.o.
($(IPA_LIB)): Link -ldl and -lpthread.
(UST_CFLAGS): New.
(IPAGENT_CFLAGS): Add UST_CFLAGS.
* config.in, configure: Regenerate.
gdb/
* NEWS: Mention new support for static tracepoints.
(New packets): Mention qTfSTM, qTsSTM, qTSTMat and
qXfer:statictrace:read.
(New features in the GDB remote stub, GDBserver): Mention static
tracepoints support using an UST based backend.
(New commands): Mention "info static-tracepoint-markers" and
"strace".
* breakpoint.c (is_marker_spec): New.
(is_tracepoint): Handle static tracepoints.
(validate_commands_for_breakpoint): Static tracepoints can't do
while-stepping.
(static_tracepoints_here): New.
(bpstat_what): Handle static tracepoints.
(print_one_breakpoint_location, allocate_bp_location, mention):
Ditto.
(create_breakpoint_sal): Ditto.
(decode_static_tracepoint_spec): New.
(create_breakpoint): Replace `hardwareflag', and `traceflag' with
`type_wanted'. Adjust. Handle static tracepoint marker
locations.
(break_command_1): Adjust.
(update_static_tracepoint): New.
(update_breakpoint_locations): Handle static tracepoints.
(breakpoint_re_set_one): Handle static tracepoint marker
locations.
(disable_command, enable_command): Handle static tracepoints.
(trace_command, ftrace_command): Adjust.
(strace_command): New.
(create_tracepoint_from_upload): Adjust.
(save_breakpoints): Handle static tracepoints.
(_initialize_breakpoint): Install the "strace" command.
* breakpoint.h (enum bptype): New bp_static_tracepoint type.
(struct breakpoint): New fields static_trace_marker_id and
static_trace_marker_id_idx.
(breakpoints_here_p): Declare.
(create_breakpoint): Adjust.
(static_tracepoints_here): Declare.
* remote.c (struct remote_state) <static_tracepoints>: New field.
(PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
(remote_static_tracepoint_marker_at): New.
(remote_static_tracepoint_markers_by_strid): New.
(remote_static_tracepoint_feature): New.
(remote_disconnected_tracing_feature): Handle "StaticTracepoints".
(remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
(remote_supports_static_tracepoints): New.
(remote_download_tracepoint): Download static tracepoints.
(init_remote_ops): Install remote_static_tracepoint_marker_at and
remote_static_tracepoint_markers_by_strid.
(_initialize_remote): Install set|show remote static-tracepoints,
and set|show remote read-sdata-object commands.
* target.c (update_current_target): Inherit and default
to_static_tracepoint_marker_at, and
to_static_tracepoint_markers_by_strid.
* target.h (static_tracepoint_marker): Forward declare.
(enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
(static_tracepoint_marker_p): New typedef.
(DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
(struct target_ops): New fields to_static_tracepoint_marker_at and
to_static_tracepoint_markers_by_strid.
(target_static_tracepoint_marker_at)
(target_static_tracepoint_markers_by_strid): New.
* tracepoint.c: Include source.h.
(validate_actionline): Handle $_sdata.
(struct collection_list): New field strace_data.
(add_static_trace_data): New.
(clear_collection_list): Clear strace_data.
(stringify_collection_list): Account for a possible static trace
data collection.
(encode_actions_1): Encode an $_sdata collection.
(parse_tracepoint_definition): Handle static tracepoints.
(parse_static_tracepoint_marker_definition): New.
(release_static_tracepoint_marker): New.
(print_one_static_tracepoint_marker): New.
(info_static_tracepoint_markers_command): New.
(sdata_make_value): New.
(_initialize_tracepoint): Create the $_sdata convenience variable.
Add the "info static-tracepoint-markers" command.
Mention $_sdata in the "collect" command's help output.
* tracepoint.h (struct static_tracepoint_marker): New.
(parse_static_tracepoint_marker_definition)
(release_static_tracepoint_marker): Declare.
* mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
* python/py-breakpoint.c (bppy_new): Adjust.
doc/
* gdb.texinfo (Convenience Variables): Document $_sdata.
(Commands to Set Tracepoints): Describe static tracepoints. Add
`Listing Static Tracepoint Markers' menu entry. Document
"strace".
(Tracepoint Action Lists): Document collecting $_sdata.
(Listing Static Tracepoint Markers): New subsection.
(Tracepoints support in gdbserver): Mention static tracepoints.
(remote packets, enabling and disabling): Mention
read-sdata-object.
(General Query Packets) <qSupported>: Document qXfer:sdata:read
and StaticTracepoint.
Mention qTfSTM, qTsSTM and qTSTMat as tracepoint packets.
Document qXfer:sdata:read.
(Tracepoint packets): Document qTfSTM, qTsSTM and qTSTMat.
2010-07-01 12:36:12 +02:00
|
|
|
|
2010-07-01 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience Variables): Document $_sdata.
|
|
|
|
|
(Commands to Set Tracepoints): Describe static tracepoints. Add
|
|
|
|
|
`Listing Static Tracepoint Markers' menu entry. Document
|
|
|
|
|
"strace".
|
|
|
|
|
(Tracepoint Action Lists): Document collecting $_sdata.
|
|
|
|
|
(Listing Static Tracepoint Markers): New subsection.
|
|
|
|
|
(Tracepoints support in gdbserver): Mention static tracepoints.
|
|
|
|
|
(remote packets, enabling and disabling): Mention
|
|
|
|
|
read-sdata-object.
|
|
|
|
|
(General Query Packets) <qSupported>: Document qXfer:sdata:read
|
|
|
|
|
and StaticTracepoint.
|
|
|
|
|
Mention qTfSTM, qTsSTM and qTSTMat as tracepoint packets.
|
|
|
|
|
Document qXfer:sdata:read.
|
|
|
|
|
(Tracepoint packets): Document qTfSTM, qTsSTM and qTSTMat.
|
|
|
|
|
|
2010-06-29 06:32:35 +02:00
|
|
|
|
2010-06-29 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads In Python): Fix unmatched @end table.
|
|
|
|
|
|
2010-06-28 23:16:04 +02:00
|
|
|
|
2010-06-28 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors In Python): New node.
|
|
|
|
|
* gdb.texinfo (Threads In Python): New node.
|
|
|
|
|
|
2010-06-28 21:54:04 +02:00
|
|
|
|
2010-06-28 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python): Document what the python directory is
|
|
|
|
|
and what its location is.
|
|
|
|
|
(Basic Python): Document the gdb.PYTHONDIR constant.
|
|
|
|
|
|
2010-06-25 20:15:18 +02:00
|
|
|
|
2010-06-25 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/10808:
|
|
|
|
|
* gdb.texinfo (Basic Python): Document new gdb.execute argument.
|
|
|
|
|
|
2010-06-24 08:12:15 +02:00
|
|
|
|
2010-06-24 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: (Commands for Controlled Output): Add
|
|
|
|
|
documentation for command "eval".
|
|
|
|
|
|
2010-06-22 07:03:19 +02:00
|
|
|
|
2010-06-21 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add explicit @node and @appendix for GFDL.
|
|
|
|
|
* annotate.texinfo: Ditto.
|
|
|
|
|
* gdbint.texinfo: Ditto.
|
|
|
|
|
* stabs.texinfo: Ditto.
|
|
|
|
|
|
2010-06-22 04:15:46 +02:00
|
|
|
|
2010-06-22 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: (Process Record and Replay): Add documentation
|
|
|
|
|
for command "set record memory-query".
|
|
|
|
|
|
2010-06-21 18:24:59 +02:00
|
|
|
|
2010-06-21 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Relicense under GFDL version 1.3.
|
|
|
|
|
* annotate.texinfo: Relicense under GFDL version 1.3.
|
|
|
|
|
* gdbint.texinfo: Relicense under GFDL version 1.3.
|
|
|
|
|
* stabs.texinfo: Relicense under GFDL version 1.3.
|
|
|
|
|
* fdl.texi: Update to version 1.3.
|
|
|
|
|
|
2010-06-18 19:44:40 +02:00
|
|
|
|
2010-06-18 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
2010-06-19 01:06:30 +02:00
|
|
|
|
* gdb.texinfo (Operating System Auxiliary Information): Describe
|
|
|
|
|
"info os" when no arguments given.
|
|
|
|
|
|
2010-06-18 19:44:40 +02:00
|
|
|
|
* gdb.texinfo (Debugging Programs with Multiple Threads): Describe
|
|
|
|
|
$_thread.
|
|
|
|
|
|
2010-06-18 10:16:15 +02:00
|
|
|
|
2010-06-18 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: (Process Record and Replay): Add documentation
|
|
|
|
|
for commands "record save" and "record restore".
|
|
|
|
|
|
2010-06-16 20:30:34 +02:00
|
|
|
|
2010-06-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Include information about the correct use
|
|
|
|
|
of addresses in the `watch' command.
|
|
|
|
|
|
2010-06-12 02:05:22 +02:00
|
|
|
|
2010-06-11 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Observer Mode): New section.
|
|
|
|
|
(General Query Packets): Document QAllow.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2010-06-04 20:18:28 +02:00
|
|
|
|
2010-06-04 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python API): New node `Disabling Pretty-Printers'.
|
|
|
|
|
|
2010-06-03 21:06:59 +02:00
|
|
|
|
2010-06-03 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Add subsection on command names.
|
|
|
|
|
|
2010-06-02 21:37:56 +02:00
|
|
|
|
2010-06-02 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document maint set dwarf2
|
|
|
|
|
always-disassemble.
|
|
|
|
|
|
gdb/gdbserver/
2010-06-01 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
* Makefile.in (IPA_DEPFILES, extra_libraries): New.
(all): Depend on $(extra_libraries).
(install-only): Install the IPA.
(IPA_OBJS, IPA_LIB): New.
(clean): Remove the IPA lib.
(IPAGENT_CFLAGS): New.
(tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
(regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
(linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
* linux-amd64-ipa.c, linux-i386-ipa.c: New files.
* configure.ac: Check for atomic builtins support in the compiler.
(IPA_DEPFILES, extra_libraries): Define.
* configure.srv (ipa_obj): Add description.
(ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
(i[34567]86-*-linux*): Set ipa_obj.
(x86_64-*-linux*): Set ipa_obj.
* linux-low.c (stabilizing_threads): New.
(supports_fast_tracepoints): New.
(linux_detach): Stabilize threads before detaching.
(handle_tracepoints): Handle internal tracing breakpoints. Assert
the lwp is either not stabilizing, or is moving out of a jump pad.
(linux_fast_tracepoint_collecting): New.
(maybe_move_out_of_jump_pad): New.
(enqueue_one_deferred_signal): New.
(dequeue_one_deferred_signal): New.
(linux_wait_for_event_1): If moving out of a jump pad, defer
pending signals to later.
(linux_stabilize_threads): New.
(linux_wait_1): Check if threads need moving out of jump pads, and
do it if so.
(stuck_in_jump_pad_callback): New.
(move_out_of_jump_pad_callback): New.
(lwp_running): New.
(linux_resume_one_lwp): Handle moving out of jump pads.
(linux_set_resume_request): Dequeue deferred signals.
(need_step_over_p): Also step over fast tracepoint jumps.
(start_step_over): Also uninsert fast tracepoint jumps.
(finish_step_over): Also reinsert fast tracepoint jumps.
(linux_install_fast_tracepoint_jump): New.
(linux_target_ops): Install linux_stabilize_threads and
linux_install_fast_tracepoint_jump_pad.
* linux-low.h (linux_target_ops) <get_thread_area,
install_fast_tracepoint_jump_pad>: New fields.
(struct lwp_info) <collecting_fast_tracepoint,
pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
(linux_get_thread_area): Declare.
* linux-x86-low.c (jump_insn): New.
(x86_get_thread_area): New.
(append_insns): New.
(push_opcode): New.
(amd64_install_fast_tracepoint_jump_pad): New.
(i386_install_fast_tracepoint_jump_pad): New.
(x86_install_fast_tracepoint_jump_pad): New.
(the_low_target): Install x86_get_thread_area and
x86_install_fast_tracepoint_jump_pad.
* mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
(struct fast_tracepoint_jump): New.
(fast_tracepoint_jump_insn): New.
(fast_tracepoint_jump_shadow): New.
(find_fast_tracepoint_jump_at): New.
(fast_tracepoint_jump_here): New.
(delete_fast_tracepoint_jump): New.
(set_fast_tracepoint_jump): New.
(uninsert_fast_tracepoint_jumps_at): New.
(reinsert_fast_tracepoint_jumps_at): New.
(set_breakpoint_at): Use write_inferior_memory.
(uninsert_raw_breakpoint): Use write_inferior_memory.
(check_mem_read): Mask out fast tracepoint jumps.
(check_mem_write): Mask out fast tracepoint jumps.
* mem-break.h (struct fast_tracepoint_jump): Forward declare.
(set_fast_tracepoint_jump): Declare.
(delete_fast_tracepoint_jump)
(fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
(reinsert_fast_tracepoint_jumps_at): Declare.
* regcache.c: Don't compile many functions when building the
in-process agent library.
(init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
the register buffer in the heap.
(free_register_cache): If the register buffer isn't owned by the
regcache, don't free it.
(set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
pre-existing register caches.
* remote-utils.c (convert_int_to_ascii): Constify `from' parameter
type.
(convert_ascii_to_int): : Constify `from' parameter type.
(decode_M_packet, decode_X_packet): Replace the `to' parameter by
a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
the needed buffer in-place.
(relocate_instruction): New.
* server.c (handle_query) <qSymbols>: If the target supports
tracepoints, give it a chance of looking up symbols. Report
support for fast tracepoints.
(handle_status): Stabilize threads.
(process_serial_event): Adjust.
* server.h (struct fast_tracepoint_jump): Forward declare.
(struct process_info) <fast_tracepoint_jumps>: New field.
(convert_ascii_to_int, convert_int_to_ascii): Adjust.
(decode_X_packet, decode_M_packet): Adjust.
(relocate_instruction): Declare.
(in_process_agent_loaded): Declare.
(tracepoint_look_up_symbols): Declare.
(struct fast_tpoint_collect_status): Declare.
(fast_tracepoint_collecting): Declare.
(force_unlock_trace_buffer): Declare.
(handle_tracepoint_bkpts): Declare.
(initialize_low_tracepoint)
(supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
* target.h (struct target_ops) <stabilize_threads,
install_fast_tracepoint_jump_pad>: New fields.
(stabilize_threads, install_fast_tracepoint_jump_pad): New.
* tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
[HAVE_STDINT_H]: Include stdint.h.
(trace_debug_1): Rename to ...
(trace_vdebug): ... this.
(trace_debug): Rename to ...
(trace_debug_1): ... this. Add `level' parameter.
(trace_debug): New.
(ATTR_USED, ATTR_NOINLINE): New.
(IP_AGENT_EXPORT): New.
(gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
(collecting, gdb_collect, stop_tracing, flush_trace_buffer)
(about_to_request_buffer_space, trace_buffer_is_full)
(stopping_tracepoint, expr_eval_result, error_tracepoint)
(tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
(trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
(traceframe_write_count, traceframes_created)
(trace_state_variables)
New renaming defines.
(struct ipa_sym_addresses): New.
(STRINGIZE_1, STRINGIZE, IPA_SYM): New.
(symbol_list): New.
(ipa_sym_addrs): New.
(all_tracepoint_symbols_looked_up): New.
(in_process_agent_loaded): New.
(write_e_ipa_not_loaded): New.
(maybe_write_ipa_not_loaded): New.
(tracepoint_look_up_symbols): New.
(debug_threads) [IN_PROCESS_AGENT]: New.
(read_inferior_memory) [IN_PROCESS_AGENT]: New.
(UNKNOWN_SIDE_EFFECTS): New.
(stop_tracing): New.
(flush_trace_buffer): New.
(stop_tracing_bkpt): New.
(flush_trace_buffer_bkpt): New.
(read_inferior_integer): New.
(read_inferior_uinteger): New.
(read_inferior_data_pointer): New.
(write_inferior_data_pointer): New.
(write_inferior_integer): New.
(write_inferior_uinteger): New.
(struct collect_static_trace_data_action): Delete.
(enum tracepoint_type): New.
(struct tracepoint) <type>: New field `type'.
<actions_str, step_actions, step_actions_str>: Only include in GDBserver.
<orig_size, obj_addr_on_target, adjusted_insn_addr>
<adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
(tracepoints): Use IP_AGENT_EXPORT.
(last_tracepoint): Don't include in the IPA.
(stopping_tracepoint): Use IP_AGENT_EXPORT.
(trace_buffer_is_full): Use IP_AGENT_EXPORT.
(alloced_trace_state_variables): New.
(trace_state_variables): Use IP_AGENT_EXPORT.
(traceframe_t): Delete unused variable.
(circular_trace_buffer): Don't include in the IPA.
(trace_buffer_start): Delete.
(struct trace_buffer_control): New.
(trace_buffer_free): Delete.
(struct ipa_trace_buffer_control): New.
(GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
(GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
New.
(trace_buffer_ctrl): New.
(TRACE_BUFFER_CTRL_CURR): New.
(trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
Reimplement as macros.
(trace_buffer_wrap): Delete.
(traceframe_write_count, traceframe_read_count)
(traceframes_created, tracing): Use IP_AGENT_EXPORT.
(struct tracepoint_hit_ctx) <type>: New field.
(struct fast_tracepoint_ctx): New.
(memory_barrier): New.
(cmpxchg): New.
(record_tracepoint_error): Update atomically in the IPA.
(clear_inferior_trace_buffer): New.
(about_to_request_buffer_space): New.
(trace_buffer_alloc): Handle GDBserver and inferior simulatenous
updating the same buffer.
(add_tracepoint): Default the tracepoint's type to trap
tracepoint, and orig_size to -1.
(get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
internal variables.
(create_trace_state_variable): New parameter `gdb'. Handle it.
(clear_installed_tracepoints): Clear fast tracepoint jumps.
(cmd_qtdp): Handle fast tracepoints.
(cmd_qtdv): Adjust.
(max_jump_pad_size): New.
(gdb_jump_pad_head): New.
(get_jump_space_head): New.
(claim_jump_space): New.
(sort_tracepoints): New.
(MAX_JUMP_SIZE): New.
(cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
IPA.
(stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
support. Upload fast traceframes, and delete internal IPA
breakpoints.
(stop_tracing_handler): New.
(flush_trace_buffer_handler): New.
(cmd_qtstop): Upload fast tracepoints.
(response_tracepoint): Handle fast tracepoints.
(tracepoint_finished_step): Upload fast traceframes. Set the
tracepoint hit context's tracepoint type.
(handle_tracepoint_bkpts): New.
(tracepoint_was_hit): Set the tracepoint hit context's tracepoint
type. Add comment about fast tracepoints.
(collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
non-existing action_str field.
(get_context_regcache): Handle fast tracepoints.
(do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
to the regcache.
(fast_tracepoint_from_jump_pad_address): New.
(fast_tracepoint_from_ipa_tpoint_address): New.
(collecting_t): New.
(force_unlock_trace_buffer): New.
(fast_tracepoint_collecting): New.
(collecting): New.
(gdb_collect): New.
(write_inferior_data_ptr): New.
(target_tp_heap): New.
(target_malloc): New.
(download_agent_expr): New.
(UALIGN): New.
(download_tracepoints): New.
(download_trace_state_variables): New.
(upload_fast_traceframes): New.
(IPA_FIRST_TRACEFRAME): New.
(IPA_NEXT_TRACEFRAME_1): New.
(IPA_NEXT_TRACEFRAME): New.
[IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
[IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
(gdb_jump_pad_buffer_end): New.
[IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
(initialize_tracepoint): Adjust.
[IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
buffer. Initialize the low module.
* utils.c (PREFIX, TOOLNAME): New.
(malloc_failure): Use PREFIX.
(error): In the IPA, an error causes an exit.
(fatal, warning): Use PREFIX.
(internal_error): Use TOOLNAME.
(NUMCELLS): Increase to 10.
* configure, config.in: Regenerate.
gdb/
2010-06-01 Pedro Alves <pedro@codesourcery.com>
* NEWS: Mention gdbserver fast tracepoints support.
gdb/doc/
2010-06-01 Pedro Alves <pedro@codesourcery.com>
* gdb.texinfo (Set Tracepoints): Mention tracepoints support in
gdbserver, and add cross reference.
(Tracepoints support in gdbserver): New subsection.
2010-06-01 15:20:52 +02:00
|
|
|
|
2010-06-01 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Tracepoints): Mention tracepoints support in
|
|
|
|
|
gdbserver, and add cross reference.
|
|
|
|
|
(Tracepoints support in gdbserver): New subsection.
|
|
|
|
|
|
2010-05-26 20:19:28 +02:00
|
|
|
|
2010-05-26 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets) <qSupported>: Describe the
|
|
|
|
|
`qRelocInsn' feature.
|
|
|
|
|
(Relocate instruction reply packet): New subsection
|
|
|
|
|
of `Tracepoint Packets'.
|
|
|
|
|
(Tracepoint Packets): Mention that packets QTDP and QTStart
|
|
|
|
|
support the qRelocInsn request, and add cross reference to new
|
|
|
|
|
subsection.
|
|
|
|
|
|
2010-05-25 17:27:17 +02:00
|
|
|
|
2010-05-25 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Exception Handling): Document gdb.GdbError.
|
|
|
|
|
(Commands In Python): Document gdb.string_to_argv.
|
|
|
|
|
|
gdb/
* cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
* command.h (error_no_arg): ... here. Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* defs.h (NORETURN, ATTR_NORETURN): Remove.
(perror_with_name, verror, error, error_stream, vfatal, fatal)
(internal_verror, internal_error, nomem): Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
(throw_vfatal, throw_error): Remove NORETURN.
(throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
* exceptions.h (throw_exception, throw_verror, throw_vfatal)
(throw_error, deprecated_throw_reason): Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
to ATTRIBUTE_NORETURN for prototype, for the definition only remove
NORETURN.
* remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
* remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
* target.c (tcomplain): Likewise.
* target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
* utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
(internal_error, perror_with_name, nomem): Remove NORETURN.
* xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
gdb/doc/
* gdbint.texinfo (Host Definition): Remove items NORETURN and
ATTR_NORETURN.
2010-05-03 01:52:14 +02:00
|
|
|
|
2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Remove items NORETURN and
|
|
|
|
|
ATTR_NORETURN.
|
|
|
|
|
|
2010-04-29 17:45:57 +02:00
|
|
|
|
2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
|
gdb/
* cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
* command.h (error_no_arg): ... here. Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* defs.h (NORETURN, ATTR_NORETURN): Remove.
(perror_with_name, verror, error, error_stream, vfatal, fatal)
(internal_verror, internal_error, nomem): Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
(throw_vfatal, throw_error): Remove NORETURN.
(throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
* exceptions.h (throw_exception, throw_verror, throw_vfatal)
(throw_error, deprecated_throw_reason): Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
to ATTRIBUTE_NORETURN for prototype, for the definition only remove
NORETURN.
* remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
* remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
* target.c (tcomplain): Likewise.
* target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
* utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
(internal_error, perror_with_name, nomem): Remove NORETURN.
* xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
gdb/doc/
* gdbint.texinfo (Host Definition): Remove items NORETURN and
ATTR_NORETURN.
2010-05-03 01:52:14 +02:00
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
2010-04-29 17:45:57 +02:00
|
|
|
|
|
gdb/
* cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
* command.h (error_no_arg): ... here. Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* defs.h (NORETURN, ATTR_NORETURN): Remove.
(perror_with_name, verror, error, error_stream, vfatal, fatal)
(internal_verror, internal_error, nomem): Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
(throw_vfatal, throw_error): Remove NORETURN.
(throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
* exceptions.h (throw_exception, throw_verror, throw_vfatal)
(throw_error, deprecated_throw_reason): Remove NORETURN, change
ATTR_NORETURN to ATTRIBUTE_NORETURN.
* linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
to ATTRIBUTE_NORETURN for prototype, for the definition only remove
NORETURN.
* remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
* remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
* target.c (tcomplain): Likewise.
* target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
* utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
(internal_error, perror_with_name, nomem): Remove NORETURN.
* xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
ATTRIBUTE_NORETURN.
gdb/doc/
* gdbint.texinfo (Host Definition): Remove items NORETURN and
ATTR_NORETURN.
2010-05-03 01:52:14 +02:00
|
|
|
|
* gdb.texinfo (Parameters In Python): New Node.
|
2010-04-29 17:45:57 +02:00
|
|
|
|
|
2010-04-29 16:45:39 +02:00
|
|
|
|
2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: (Summary) Add mention about D language support.
|
|
|
|
|
(Filenames): Add D suffixes.
|
|
|
|
|
(D): New node.
|
|
|
|
|
|
2010-04-26 14:01:44 +02:00
|
|
|
|
2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (CANNOT_STEP_HW_WATCHPOINTS): Remove explanation
|
|
|
|
|
of macro deleted from GDB code.
|
|
|
|
|
|
2010-04-24 15:12:56 +02:00
|
|
|
|
2010-04-24 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands to specify files): Describe what how GDB
|
|
|
|
|
looks up DOS-based filesystem paths on the system root. Document
|
|
|
|
|
the new `set/show target-file-system-kind' commands.
|
|
|
|
|
|
2010-04-23 20:03:31 +02:00
|
|
|
|
2010-04-23 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python): Move Auto-loading section here ...
|
|
|
|
|
(Python API): from here.
|
|
|
|
|
(Auto-loading): Add docs for .debug_gdb_scripts auto-loaded scripts.
|
|
|
|
|
(Maintenance Commands): Add docs for "maint print section-scripts".
|
|
|
|
|
|
2010-04-23 14:08:07 +02:00
|
|
|
|
2010-04-20 Chris Moller <cmoller@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Setting Breakpoints): Added description of
|
|
|
|
|
filename-qualified rbreak.
|
|
|
|
|
* refcard.tex (Breakpoints and Watchpoints): Added brief
|
|
|
|
|
description of filename-qualified rbreak.
|
|
|
|
|
|
2010-04-22 18:32:43 +02:00
|
|
|
|
2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Data): New @menu reference to Pretty Printing.
|
|
|
|
|
(Python API): Change the reference to Pretty Printing API.
|
|
|
|
|
(Pretty Printing): Move the user part under the Data node. Reformat
|
|
|
|
|
the sample output to 72 columns. Create a new reference to Pretty
|
|
|
|
|
Printing API. Rename the API part ...
|
|
|
|
|
(Pretty Printing API): To a new node name.
|
|
|
|
|
(Selecting Pretty-Printers, Progspaces In Python, Objfiles In Python)
|
|
|
|
|
(GDB/MI Variable Objects): Change references to Pretty Printing API.
|
|
|
|
|
|
2010-04-22 06:09:25 +02:00
|
|
|
|
2010-04-21 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Actions): Mention synonymy of actions
|
2010-08-27 14:02:20 +02:00
|
|
|
|
and commands.
|
2010-04-22 06:09:25 +02:00
|
|
|
|
(Listing Tracepoints): Update to reflect current behavior.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2010-04-22 01:21:04 +02:00
|
|
|
|
2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Examining memory): Update for change in string
|
|
|
|
|
display with explicit size.
|
|
|
|
|
|
2010-04-19 02:48:44 +02:00
|
|
|
|
2010-04-19 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR breakpoints/8554.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Save Breakpoints): New node.
|
|
|
|
|
(save-tracepoints): Rename to ...
|
|
|
|
|
(save tracepoints): ... this. Mention that `save-tracepoints' is
|
|
|
|
|
a deprecated alias to `save tracepoints'.
|
|
|
|
|
|
2010-04-16 09:49:37 +02:00
|
|
|
|
2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
|
|
|
|
|
|
2010-04-19 03:08:25 +02:00
|
|
|
|
* gdb.texinfo ($_tlb): Document new automatic convinience variable.
|
2010-04-16 09:49:37 +02:00
|
|
|
|
(info w32 thread-information-block): Document new command.
|
|
|
|
|
(qGetTIBAddress): Document new gdbserver query.
|
|
|
|
|
(maint set/show show-all-tib): Document new command.
|
|
|
|
|
|
2010-04-15 19:45:57 +02:00
|
|
|
|
2010-04-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
2010-04-15 21:54:13 +02:00
|
|
|
|
* gdb.texinfo (Python API): Add progspaces section.
|
|
|
|
|
(Selecting Pretty-Printers): Progspace pretty-printers are
|
|
|
|
|
searched too.
|
|
|
|
|
(Progspaces In Python): New section.
|
|
|
|
|
|
2010-04-15 19:45:57 +02:00
|
|
|
|
* gdb.texinfo (Command Files): Add docs for new "source -s" option.
|
|
|
|
|
|
2010-04-14 14:02:46 +02:00
|
|
|
|
2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Pretty Printing): Document behaviour when to_string
|
|
|
|
|
returns None.
|
|
|
|
|
|
2010-04-09 22:46:40 +02:00
|
|
|
|
2010-04-09 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb/mi Tracepoint Commands) <-trace-status>:
|
|
|
|
|
Describe the `frames-created' field, tweak grammar.
|
|
|
|
|
|
2010-04-09 17:22:09 +02:00
|
|
|
|
2010-04-09 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdb/mi Tracepoint Commands) <-trace-status>:
|
|
|
|
|
Describe the `circular' and `disconnected' fields.
|
|
|
|
|
|
2010-04-09 17:12:31 +02:00
|
|
|
|
2010-04-09 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (maint print registers): Mention unavailable and
|
|
|
|
|
invisible registers.
|
|
|
|
|
|
2010-04-09 11:41:43 +02:00
|
|
|
|
2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
2010-04-09 17:12:31 +02:00
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
2010-04-09 11:41:43 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints In Python): New Node.
|
|
|
|
|
|
2010-04-09 05:00:58 +02:00
|
|
|
|
2010-04-08 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Packets): Describe disconn and circular
|
|
|
|
|
trace status fields.
|
|
|
|
|
|
2010-04-09 00:32:38 +02:00
|
|
|
|
2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (i386 Features): Make org.gnu.gdb.i386.avx
|
|
|
|
|
optional. Make org.gnu.gdb.i386.avx requires
|
|
|
|
|
org.gnu.gdb.i386.avx.
|
|
|
|
|
|
2010-04-08 23:08:40 +02:00
|
|
|
|
2010-04-08 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Files): Document that gdb skips $cdir in
|
|
|
|
|
search path, and document that gdb only scans the search path if
|
|
|
|
|
the script's path doesn't specify a directory.
|
|
|
|
|
|
2010-04-05 19:14:57 +02:00
|
|
|
|
2010-04-05 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (maint show python auto-load): Fix typo.
|
|
|
|
|
|
2010-04-05 01:31:29 +02:00
|
|
|
|
2010-04-04 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
2010-04-05 01:47:16 +02:00
|
|
|
|
* gdb.texinfo (Setting Breakpoints): "info watch" no longer a synonym.
|
|
|
|
|
(Setting Watchpoints): Update description of "info watch".
|
|
|
|
|
(Disabling Breakpoints): Only "info break" lists all.
|
|
|
|
|
|
2010-04-05 01:31:29 +02:00
|
|
|
|
* gdb.texinfo (Tracepoint Restrictions): Document PC inference.
|
|
|
|
|
(tdump): Explain how tdump works.
|
|
|
|
|
|
2010-04-01 16:11:24 +02:00
|
|
|
|
2010-04-01 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Break Commands): Clarify `commands' changes, and
|
|
|
|
|
add cross reference.
|
|
|
|
|
|
2010-03-31 14:19:52 +02:00
|
|
|
|
2010-03-31 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Commands): Mention that in some cases, these
|
|
|
|
|
commands error out.
|
|
|
|
|
|
2010-03-30 20:37:03 +02:00
|
|
|
|
2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (i386 Features): Add org.gnu.gdb.i386.avx.
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Add xmlRegisters.
|
|
|
|
|
|
2010-03-30 01:47:28 +02:00
|
|
|
|
2010-03-29 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
Nathan Sidwell <nathan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Tracepoint Commands): Add notes about the
|
|
|
|
|
GDBN equivalent.
|
|
|
|
|
(Set Tracepoints): Remove mention that conditional tracepoints
|
|
|
|
|
don't exist.
|
|
|
|
|
(Tracepoint Actions): Clarify when while-stepping collection
|
|
|
|
|
happens, note that while-stepping does not automatically collect
|
|
|
|
|
$pc.
|
|
|
|
|
|
2010-03-30 01:45:06 +02:00
|
|
|
|
2010-03-29 Stan Shebs <stan@codesourcery.com>
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2010-03-30 01:45:06 +02:00
|
|
|
|
* gdb.texinfo (Tracepoint Packets): Describe QTDPsrc.
|
|
|
|
|
(General Query Packets): Describe TracepointSource.
|
|
|
|
|
|
2010-03-27 10:01:26 +01:00
|
|
|
|
2010-03-27 Matt Rice <ratmice@gmail.com>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* gdb.texinfo (ARM): Document arguments to "target sim".
|
|
|
|
|
(Set Catchpoints): Use @dots{} instead of @r{...}.
|
2010-03-27 10:01:26 +01:00
|
|
|
|
|
2010-03-26 14:35:06 +01:00
|
|
|
|
2010-03-26 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Packets): Remove mention that
|
|
|
|
|
terror:string may be plain text, and drop mention of X prefix.
|
|
|
|
|
|
2010-03-26 09:08:07 +01:00
|
|
|
|
2010-03-26 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Tracepoint Commands): Add comma after @xref.
|
|
|
|
|
|
2010-03-26 02:46:29 +01:00
|
|
|
|
2010-03-24 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Packets): Document trace error status.
|
|
|
|
|
|
2010-03-24 22:24:09 +01:00
|
|
|
|
2010-03-24 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR breakpoints/9352:
|
|
|
|
|
* gdb.texinfo (Break Commands): Update.
|
|
|
|
|
|
2010-03-23 23:10:08 +01:00
|
|
|
|
2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Tracepoint Commands): Document MI tracepoint
|
|
|
|
|
commands.
|
|
|
|
|
|
2010-03-18 22:23:35 +01:00
|
|
|
|
2010-03-16 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting and Stopping Trace Experiments): Describe
|
|
|
|
|
circular-trace-buffer.
|
|
|
|
|
(Tracepoint Packets): Describe QTBuffer, and details of the
|
|
|
|
|
qTStatus reply.
|
|
|
|
|
|
2010-03-12 20:15:52 +01:00
|
|
|
|
2010-03-12 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
Nathan Sidwell <nathan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Actions): Clarify that while-stepping is
|
|
|
|
|
doing instruction stepping.
|
|
|
|
|
(Tracepoint Restrictions): New node.
|
|
|
|
|
|
gdb
* xcoffread.c: Include psymtab.h.
(xcoff_sym_fns): Update.
* symtab.h (struct partial_symbol): Remove.
(PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
(struct partial_symtab): Remove.
(PSYMTAB_TO_SYMTAB): Remove.
(lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
(find_pc_sect_psymtab): Remove.
(find_pc_sect_symtab_via_partial): Declare.
(find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
(find_main_psymtab): Remove.
(find_main_filename): Declare.
(fixup_psymbol_section): Remove.
(fixup_section): Declare.
* symtab.c: Include psymtab.h.
(lookup_symtab): Use lookup_symtab method.
(lookup_partial_symtab): Remove.
(find_pc_sect_psymtab_closer): Remove.
(find_pc_sect_psymtab): Remove.
(find_pc_sect_symtab_via_partial): New function.
(find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
(fixup_section): No longer static.
(fixup_psymbol_section): Remove.
(lookup_symbol_aux): Use lookup_symbol_aux_quick.
(lookup_global_symbol_from_objfile): Likewise.
(lookup_symbol_aux_psymtabs): Remove.
(lookup_symbol_aux_quick): New function.
(lookup_symbol_global): Use lookup_symbol_aux_quick.
(lookup_partial_symbol): Remove.
(basic_lookup_transparent_type_quick): New function.
(basic_lookup_transparent_type): Use it.
(find_main_psymtab): Remove.
(find_main_filename): New function.
(find_pc_sect_symtab): Use find_pc_sect_symtab method.
(find_line_symtab): Use expand_symtabs_with_filename method.
(output_partial_symbol_filename): New function.
(sources_info): Use map_partial_symbol_filenames.
(struct search_symbols_data): New type.
(search_symbols_file_matches): New function.
(search_symbols_name_matches): Likewise.
(search_symbols): Use expand_symtabs_matching method.
(struct add_name_data): Rename from add_macro_name_data.
(add_macro_name): Update.
(add_partial_symbol_name): New function.
(default_make_symbol_completion_list): Use
map_partial_symbol_names.
(struct add_partial_symbol_name): New type.
(maybe_add_partial_symtab_filename): New function.
(make_source_files_completion_list): Use
map_partial_symbol_filenames.
(expand_line_sal): Use expand_symtabs_with_filename method.
* symmisc.c: Include psymtab.h.
(print_objfile_statistics): Use print_stats method.
(dump_objfile): Use dump method.
(dump_psymtab, maintenance_print_psymbols)
(maintenance_info_psymtabs, maintenance_check_symtabs)
(extend_psymbol_list): Remove.
* symfile.h (struct quick_symbol_functions): New struct.
(struct sym_fns) <qf>: New field.
(sort_pst_symbols): Remove.
(increment_reading_symtab): Declare.
* symfile.c: Include psymtab.h.
(compare_psymbols, sort_pst_symbols): Remove.
(psymtab_to_symtab): Remove.
(increment_reading_symtab): New function.
(symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
method.
(set_initial_language): Use find_main_filename.
(allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
(free_named_symtabs): Remove unused code.
(start_psymtab_common, add_psymbol_to_bcache)
(append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
Remove.
* stack.c: Include psymtab.h, symfile.h.
(backtrace_command_1): Use find_pc_sect_symtab_via_partial.
* source.h (psymtab_to_fullname): Don't declare.
* source.c: Include psymtab.h.
(select_source_symtab): Use find_last_source_symtab method.
(forget_cached_source_info): Use forget_cached_source_info
method.
(find_and_open_source): No longer static.
(psymtab_to_fullname): Remove.
* somread.c: Include psymtab.h.
(som_sym_fns): Update.
* psympriv.h: New file.
* psymtab.h: New file.
* psymtab.c: New file.
* objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
(ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
* objfiles.c: Include psymtab.h.
(objfile_relocate1): Use relocate method.
(objfile_has_partial_symbols): Use has_symbols method.
* mipsread.c: Include psymtab.h.
(ecoff_sym_fns): Update.
* mi/mi-cmd-file.c: Include psymtab.h.
(print_partial_file_name): New function.
(mi_cmd_file_list_exec_source_files): Use
map_partial_symbol_filenames.
* mdebugread.c: Include psympriv.h.
* machoread.c: Include psympriv.h.
(macho_sym_fns): Update.
* m2-exp.y (yylex): Use lookup_symtab.
* elfread.c: Include psympriv.h.
(elf_sym_fns): Update.
* dwarf2read.c: Include psympriv.h.
* dbxread.c: Include psympriv.h.
(aout_sym_fns): Update.
* cp-support.c: Include psymtab.h.
(read_in_psymtabs): Remove.
(make_symbol_overload_list_qualified): Use
expand_symtabs_for_function method.
* coffread.c: Include psympriv.h.
(coff_sym_fns): Update.
* blockframe.c: Include psymtab.h.
(find_pc_partial_function): Use find_pc_sect_symtab method.
* ada-lang.h (ada_update_initial_language): Update.
* ada-lang.c: Include psymtab.h.
(ada_update_initial_language): Remove 'main_pst' argument.
(ada_lookup_partial_symbol): Remove.
(struct ada_psym_data): New type.
(ada_add_psyms): New function.
(ada_add_non_local_symbols): Use map_ada_symtabs method.
(struct add_partial_datum): New type.
(ada_add_partial_symbol_completions): New function.
(ada_make_symbol_completion_list): Use map_partial_symbol_names.
(ada_exception_support_info_sniffer): Update.
* Makefile.in (SFILES): Add psymtab.c.
(COMMON_OBS): Add psymtab.o.
(HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
gdb/doc
* gdbint.texinfo (Symbol Handling): Update.
2010-03-10 19:20:08 +01:00
|
|
|
|
2010-03-10 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Symbol Handling): Update.
|
|
|
|
|
|
2010-03-08 20:20:38 +01:00
|
|
|
|
2010-03-08 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR cli/9591:
|
|
|
|
|
* gdb.texinfo (Mode Options): Mention lack of pagination and
|
|
|
|
|
confirmation with --batch.
|
|
|
|
|
(Screen Size): Mention --batch.
|
|
|
|
|
(Messages/Warnings): Likewise.
|
|
|
|
|
|
2010-03-05 21:18:19 +01:00
|
|
|
|
2010-03-05 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Document target_charset and
|
|
|
|
|
target_wide_charset.
|
|
|
|
|
|
2010-03-05 21:01:21 +01:00
|
|
|
|
2010-03-05 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Data): Link to pretty-printing.
|
|
|
|
|
(Output Formats): Likewise. Correct text.
|
|
|
|
|
|
* gdbtypes.c (append_composite_type_field_raw): New.
(append_composite_type_field_aligned): Use the new function.
* gdbtypes.h (append_composite_type_field_raw): Declare.
* target-descriptions.c (struct tdesc_type_field): Add start and end.
(struct tdesc_type_flag): New type.
(struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
kind. Add size to u.u. Add u.f for flags.
(tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
(tdesc_free_type): Likewise.
(tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
(tdesc_add_field): Handle TDESC_TYPE_STRUCT.
(tdesc_add_bitfield, tdesc_add_flag): New.
* target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
(tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
* xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
current_type. Add current_type_size and current_type_is_flags.
(tdesc_start_union): Clear the new fields.
(tdesc_start_struct, tdesc_start_flags): New.
(tdesc_start_field): Handle struct fields, including bitfields.
(field_attributes): Make type optional. Add start and end.
(union_children): Rename to struct_union_children.
(union_attributes): Rename to struct_union_attributes. Add optional
size.
(flags_attributes): New.
(feature_children): Add struct and flags.
* features/gdb-target.dtd: Add flags and struct to features.
Make field type optional. Add field start and end.
doc/
* gdb.texinfo (Types): Describe <struct> and <flags>.
testsuite/
* gdb.xml/extra-regs.xml: Add struct1, struct2, and flags
types. Add structreg, bitfields, and flags registers.
* gdb.xml/tdesc-regs.exp: Test structreg and bitfields
registers.
2010-03-01 18:19:23 +01:00
|
|
|
|
2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types): Describe <struct> and <flags>.
|
|
|
|
|
|
2010-02-28 22:56:50 +01:00
|
|
|
|
2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Frames In Python): Add block parameter and
|
|
|
|
|
description to read_var text.
|
|
|
|
|
|
2010-02-26 10:08:10 +01:00
|
|
|
|
2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
|
2010-03-30 17:45:16 +02:00
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
2010-02-26 10:08:10 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types In Python): Describe block argument in
|
|
|
|
|
template_argument and gdb.lookup_type.
|
|
|
|
|
|
2010-02-24 23:20:24 +01:00
|
|
|
|
2010-02-24 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cygwin Native): Fix typo.
|
|
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Frames In Python): Add block, find_sal, function
|
|
|
|
|
and select method descriptions.
|
|
|
|
|
(Python API): Add Blocks In Python, Symbols in Python and Symbol
|
|
|
|
|
Tables in Python to menu.
|
|
|
|
|
(Blocks In Python): New node.
|
|
|
|
|
(Symbols In Python): New node.
|
|
|
|
|
(Symbol Tables in Python): New node.
|
|
|
|
|
|
Multiexec MI
* breakpoint.c (clear_syscall_counts): Take struct inferior*.
* inferior.c (add_inferior_silent): Notify inferior_added
observer.
(delete_inferior_1): Notify inferior_removed observer.
(exit_inferior_1): Pass inferior, not pid, to observer.
(inferior_appeared): Likewise.
(add_inferior_with_spaces): New.
(add_inferior_command): Use the above.
* inferior.h (delete_inferior_1, add_inferior_with_spaces):
Declare.
* inflow.c (inflow_inferior_exit): Likewise.
* jit.c (jit_inferior_exit_hook): Likewise.
* mi/mi-cmds.c (mi_cmds): Register add-inferior and
remove-inferior.
* mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
* mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
(report_initial_inferior): New.
(mi_inferior_removed): Register the above. Make sure
inferior_added observer is called on the first inferior.
(mi_new_thread, mi_thread_exit): Thread group is now identified by
inferior number, not pid.
(mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
affected.
* mi/mi-main.c (current_context): New.
(proceed_thread_callback): Use typed closure.
Proceed everything if pid is 0. Most implementation split into
(proceed_thread): ... this.
(run_one_inferior): New.
(mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
Adjust for multiexec behaviour.
(mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
(mi_cmd_execute): Handle the 'thread-group' option here.
Do some extra checks.
* mi-parse.c (mi_parse): Handle the --all and --thread-group
options.
* mi-parse.h (struct mi_parse): New fields all and thread_group.
2010-02-24 08:51:46 +01:00
|
|
|
|
2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
Multiexec MI
|
|
|
|
|
|
|
|
|
|
gdb/
|
|
|
|
|
* breakpoint.c (clear_syscall_counts): Take struct inferior*.
|
|
|
|
|
|
|
|
|
|
gdb/doc/
|
|
|
|
|
* gdb.texinfo (GDB/MI Command Syntax): Document notification
|
|
|
|
|
changes.
|
|
|
|
|
(GDB/MI Program Execution): Document current behaviour of
|
|
|
|
|
--all and --thread-group.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Document -add-inferior and
|
|
|
|
|
-remove-inferior.
|
|
|
|
|
* observer.texi (inferior_added, inferior_removed): New
|
|
|
|
|
observers.
|
|
|
|
|
|
2010-02-19 20:14:38 +01:00
|
|
|
|
2010-02-19 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Getting Started): Fix @node.
|
|
|
|
|
(Debugging GDB): Likewise.
|
|
|
|
|
|
2010-02-13 05:57:11 +01:00
|
|
|
|
2010-02-13 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): New section "Testsuite Configuration",
|
|
|
|
|
documenting the gdb_test_timeout variable.
|
|
|
|
|
|
2010-02-12 22:35:54 +01:00
|
|
|
|
2010-02-12 Jakob Engblom <jakob@virtutech.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MI commands): Added documentation of --reverse
|
|
|
|
|
option to a set of MI commands. Restructured documentation of MI
|
|
|
|
|
commands --exec-continue to reflect the complexity of reverse
|
|
|
|
|
execution.
|
|
|
|
|
|
2010-02-12 17:15:24 +01:00
|
|
|
|
2010-02-12 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Using the Collected Data): Specify that the address
|
|
|
|
|
range of `tfind outsize' is exclusive, and that the address range
|
|
|
|
|
of `tfind range' is inclusive.
|
|
|
|
|
(Tracepoint Packets): Specify that the address range of
|
|
|
|
|
`QTFrame:range' is inclusive, and that the address range of
|
|
|
|
|
`QTFrame:outside' is exclusive
|
|
|
|
|
|
2010-02-12 11:34:47 +01:00
|
|
|
|
2010-02-12 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Result Records): Clarify ^running.
|
|
|
|
|
|
2010-02-10 19:57:21 +01:00
|
|
|
|
2010-02-10 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document set debug parser and
|
|
|
|
|
show debug parser.
|
|
|
|
|
|
2010-02-09 19:58:57 +01:00
|
|
|
|
2010-02-09 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Predefined Target Types): Add i387_ext,
|
|
|
|
|
i386_eflags and i386_mxcsr.
|
|
|
|
|
|
2010-02-08 20:43:19 +01:00
|
|
|
|
2010-02-08 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document i386 target features.
|
|
|
|
|
|
2010-02-05 19:30:44 +01:00
|
|
|
|
2010-02-05 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Add a new section to document the
|
|
|
|
|
various DejaGnu variables that may be overridden.
|
2010-02-05 22:51:38 +01:00
|
|
|
|
Document INTERNAL_GDBFLAGS.
|
2010-02-05 19:30:44 +01:00
|
|
|
|
|
2010-02-04 20:12:58 +01:00
|
|
|
|
2010-02-04 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR cli/8830:
|
|
|
|
|
* gdb.texinfo (Files): -readnow comes before the filename for file
|
|
|
|
|
and symbol-file.
|
|
|
|
|
|
2010-02-01 17:09:22 +01:00
|
|
|
|
2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Architecture-Specific Protocol Details): New section.
|
|
|
|
|
Document ARM breakpoint types.
|
|
|
|
|
(Register Packet Format): Move into the new section.
|
|
|
|
|
(Packets): Describe the KIND argument for Z0, z0, Z1, and z1 packets.
|
|
|
|
|
|
2010-01-21 05:34:52 +01:00
|
|
|
|
2010-01-21 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Adjust the documentation of this
|
|
|
|
|
switch to refer to the "source" command rather than partially
|
|
|
|
|
duplicating some of the relevant information.
|
|
|
|
|
(Extending GDB): Introduce and document the set/show script-extension
|
|
|
|
|
setting.
|
|
|
|
|
(Command Files): Add note explaining that the "source" command
|
|
|
|
|
is also used to evalute scripts written in other languages.
|
|
|
|
|
Remove the short slightly incorrect reference to sourcing Python
|
|
|
|
|
scripts.
|
|
|
|
|
(Python Commands): Document how to execute a Python script from GDB.
|
|
|
|
|
|
2010-01-19 11:31:51 +01:00
|
|
|
|
2010-01-19 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Files): Fix typo.
|
|
|
|
|
|
2010-01-18 07:28:47 +01:00
|
|
|
|
2010-01-18 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Document -x on .py files.
|
|
|
|
|
(Command Files): Document handling of Python scripts.
|
|
|
|
|
|
2010-01-18 05:26:44 +01:00
|
|
|
|
2010-01-18 Jie Zhang <jie.zhang@analog.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (ANNOTATE_DOC_BUILD_INCLUDES): Add GDBvn.texi.
|
|
|
|
|
|
Add trace file support.
* tracepoint.h (enum trace_stop_reason): New enum.
(struct trace_status): New struct.
(parse_trace_status): Declare.
(struct uploaded_tp): Move here from remote.c,
add fields for actions.
(struct uploaded_tsv): New struct.
* tracepoint.c (tfile_ops): New target vector.
(trace_fd): New global.
(tfile_open): New function.
(tfile_close): New function.
(tfile_files_info): New function.
(tfile_get_trace_status): New function.
(tfile_get_traceframe_address): New function.
(tfile_trace_find): New function.
(tfile_fetch_registers): New function.
(tfile_xfer_partial): New function.
(tfile_get_trace_state_variable_value): New function.
(init_tfile_ops): New function.
(_initialize_tracepoint): Call it, add tfile target.
(trace_status): New global.
(current_trace_status): New function.
(trace_running_p): Remove, change all users to get from
current_trace_status()->running.
(get_trace_status): Remove.
(trace_status_command): Call target_get_trace_status directly,
report more detail including tracing stop reasons.
(trace_find_command): Always allow tfind on a file.
(trace_find_pc_command): Ditto.
(trace_find_tracepoint_command): Ditto.
(trace_find_line_command): Ditto.
(trace_find_range_command): Ditto.
(trace_find_outside_command): Ditto.
(trace_frames_offset, cur_offset): Declare as off_t.
(trace_regblock_size): Rename from reg_size, update users.
(parse_trace_status): New function.
(tfile_interp_line): New function.
(disconnect_or_stop_tracing): Ensure current trace
status before asking what to do.
(stop_reason_names): New global.
(trace_save_command): New command.
(get_uploaded_tp): Move here from remote.c.
(find_matching_tracepoint): Ditto.
(merge_uploaded_tracepoints): New function.
(parse_trace_status): Use stop_reason_names.
(_initialize_tracepoint): Define tsave command.
* target.h (target_ops): New fields to_save_trace_data,
to_upload_tracepoints, to_upload_trace_state_variables,
to_get_raw_trace_data, change to_get_trace_status
to take a pointer to a status struct.
(target_save_trace_data): New macro.
(target_upload_tracepoints): New macro.
(target_upload_trace_state_variables): New macro.
(target_get_raw_trace_data): New macro.
* target.c (update_current_target): Add new methods, change
signature of to_get_trace_status.
* remote.c (hex2bin): Make globally visible.
(bin2hex): Ditto.
(remote_download_trace_state_variable): Download name also.
(remote_get_trace_status): Update parameter, use
parse_trace_status.
(remote_save_trace_data): New function.
(remote_upload_tracepoints): New function.
(remote_upload_trace_state_variables): New function.
(remote_get_raw_trace_data): New function.
(remote_start_remote): Use them.
(_initialize_remote_ops): Add operations.
* ax-gdb.c: Include breakpoint.h.
* breakpoint.c (create_tracepoint_from_upload): Use
break_command_really, return tracepoint, warn about unimplemented
parts.
* NEWS: Mention trace file addition.
* gdb.texinfo (Trace Files): New section.
(Tracepoint Packets): Document QTSave and qTBuffer.
(Trace File Format): New appendix.
* generic/gdbtk-bp.c (gdb_trace_status): Use current_trace_status.
* gdb.trace/tfile.c: New file.
* gdb.trace/tfile.exp: New file.
2010-01-15 23:37:20 +01:00
|
|
|
|
2010-01-15 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Trace Files): New section.
|
|
|
|
|
(Tracepoint Packets): Document QTSave and qTBuffer.
|
|
|
|
|
(Trace File Format): New appendix.
|
|
|
|
|
|
2010-01-14 09:03:37 +01:00
|
|
|
|
2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Document lazy_string value
|
|
|
|
|
method.
|
|
|
|
|
(Python API): Add Lazy strings menu item.
|
|
|
|
|
(Lazy Strings In Python): New node.
|
|
|
|
|
|
Implement core awareness.
* bcache.c (compare_ints): Remove
(print_percentage): Use compare_positive_ints.
* defs.h (compare_positive_ints): Declare.
* linux-nat.h (struct lin_lwp): New field core.
(linux_nat_core_of_thread_1): Declare.
* linux-nat.c (add_lwp): Init the 'core' field.
(linux_nat_wait_1): Record the core.
(linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
(linux_nat_add_target): Register the above.
* linux-thread-db.c (update_thread_core): New.
(thread_db_find_new_threads): Update core information for
every thread.
* remote.c (struct private_thread_info): New.
(free_private_thread_info, demand_private_info): New.
(PACKET_qXfer_threads, use_osdata_threads): New.
(struct thread_item, threads_parsing_context
(start_thread, end_thread, thread_attributes)
(thread_children, threads_children, threads_elements): New.
(remote_threads_info): Try qXfer:threads before anything
else.
(remote_protocol_packets): Register qXfer:threads.
(remote_open_1): Init use_osdata_threads.
(struct stop_reply): New field 'core'.
(remote_parse_stop_reply): Parse core number.
(process_stop_reply): Record core number.
(remote_xfer_partial): Handle qXfer:threads.
(remote_core_of_thread): New.
(init_remote_ops): Register remote_core_of_thread.
(_initialize_remote): Register qXfer:read.
* target.c (target_core_of_thread): New
* target.h (enum target_object): New value TARGET_OBJECT_THREADS.
(struct target_ops): New field to_core_of_threads.
(target_core_of_thread): Declare.
* gdbthread.h (struct thread_info): New field private_dtor.
* thread.c (print_thread_info): Report the core.
* ui-out.c (MAX_UI_OUT_LEVELS): Increase.
* utils.c (compare_positive_ints): New.
* features/threads.dtd: New.
* mi/mi-interp.c (mi_on_normal_stop): Report the core.
* mi/mi-main.c (struct collect_cores_data, collect_cores)
(do_nothing, free_vector_of_osdata_items)
(splay_tree_int_comparator, free_splay_tree): New.
(print_one_inferior_data): Implemented printing of selected
inferiors. Collect and print cores.
(output_cores): New.
(mi_cmd_list_thread_groups): Support --recurse. Permit specifying
thread groups together with --available.
2010-01-12 22:40:25 +01:00
|
|
|
|
2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Thread Information): New.
|
|
|
|
|
(GDB/MI Async Records): Document the core field in *stopped.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Expand -list-thread-groups
|
|
|
|
|
documentation
|
|
|
|
|
(Process list): Document that osdata document may contain
|
|
|
|
|
threads.
|
|
|
|
|
(Remote Serial Protocol): Document qXfer:threads.
|
|
|
|
|
|
2010-01-06 21:31:28 +01:00
|
|
|
|
2010-01-06 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting and Stopping Trace Experiments): Document
|
|
|
|
|
disconnected tracing.
|
|
|
|
|
(Tracepoint Packets): Document new protocol.
|
|
|
|
|
|
2010-01-06 05:20:27 +01:00
|
|
|
|
2010-01-05 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Create and Delete Tracepoints): Describe fast
|
|
|
|
|
tracepoints.
|
|
|
|
|
(Tracepoint Packets): Describe remote protocol for fast
|
|
|
|
|
tracepoints.
|
|
|
|
|
|
2010-01-01 12:38:33 +01:00
|
|
|
|
2010-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
Update the "Start of New Year Procedure".
|
|
|
|
|
* gdbint.texinfo: Add the list of files that need to be updated
|
|
|
|
|
manually. Minor reformatting.
|
|
|
|
|
|
2010-01-01 12:20:05 +01:00
|
|
|
|
2010-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* refcard.tex: Update copyright year in header and text.
|
|
|
|
|
|
2010-01-01 08:54:37 +01:00
|
|
|
|
2010-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: Add 2010 to the list of copyright years.
|
|
|
|
|
* annotate.texinfo: Likewise.
|
|
|
|
|
* gdb.texinfo: Likewise.
|
|
|
|
|
* gdbint.texinfo: Likewise.
|
|
|
|
|
* observer.texi: Likewise.
|
|
|
|
|
* stabs.texinfo: Likewise.
|
|
|
|
|
|
2009-12-31 18:47:43 +01:00
|
|
|
|
2009-12-31 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Actions): Describe teval.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-12-30 17:11:08 +01:00
|
|
|
|
2009-12-29 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Actions): Describe default-collect.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-12-29 00:39:10 +01:00
|
|
|
|
2009-12-28 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Trace State Variables): New section.
|
|
|
|
|
(Tracepoint Packets): Describe trace state variable packets.
|
|
|
|
|
* agentexpr.texi (Bytecode Descriptions): Describe trace state
|
|
|
|
|
variable bytecodes.
|
|
|
|
|
|
2009-12-28 22:29:53 +01:00
|
|
|
|
2009-12-28 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): "info variables" prints definitions, not
|
|
|
|
|
declarations.
|
|
|
|
|
|
2009-12-21 11:02:06 +01:00
|
|
|
|
2009-12-21 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Clarify that
|
|
|
|
|
-gdb-exit behaviour.
|
|
|
|
|
|
2009-12-21 08:30:10 +01:00
|
|
|
|
2009-12-20 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gpl.texi: Update to version 3 of the GPL.
|
|
|
|
|
|
2009-12-20 12:53:08 +01:00
|
|
|
|
2009-12-20 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Update copyright header.
|
|
|
|
|
* observer.texi: Fix the copyright header of the generated files.
|
|
|
|
|
|
2009-12-08 15:06:04 +01:00
|
|
|
|
2009-12-08 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types In Python): Describe range function.
|
|
|
|
|
|
2009-12-03 22:19:49 +01:00
|
|
|
|
2009-12-03 Richard Ward <richard.j.ward1@googlemail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types In Python): Describe "is_base_class".
|
|
|
|
|
|
2009-12-03 19:30:02 +01:00
|
|
|
|
2009-12-03 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Document gdb.parse_and_eval.
|
|
|
|
|
|
2009-12-02 20:29:42 +01:00
|
|
|
|
2009-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi: New memory_changed observer.
|
|
|
|
|
|
2009-12-01 23:15:27 +01:00
|
|
|
|
2009-12-01 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Reverse Execution): Fix typo.
|
|
|
|
|
|
2009-11-25 21:43:29 +01:00
|
|
|
|
2009-11-24 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR gdb/8704
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Thread-Specific Breakpoints): Thread specifiers
|
|
|
|
|
are allowed after the breakpoint condition.
|
|
|
|
|
|
2009-11-23 22:47:22 +01:00
|
|
|
|
2009-11-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/10782:
|
|
|
|
|
* gdb.texinfo (Types In Python): Document Type.pointer.
|
|
|
|
|
|
2009-11-23 19:44:11 +01:00
|
|
|
|
2009-11-23 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code): Adjust.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-11-11 16:08:50 +01:00
|
|
|
|
2009-11-11 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi (Tracing On Symmetrix): Delete section.
|
|
|
|
|
(Using Agent Expressions): Delete cross reference.
|
|
|
|
|
|
2009-11-07 20:46:57 +01:00
|
|
|
|
2009-11-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo, stabs.texinfo: Move the @setchapternewpage
|
|
|
|
|
and @settitle directives up to help makeinfo find them.
|
|
|
|
|
|
2009-11-02 15:59:53 +01:00
|
|
|
|
2009-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (set debug-file-directory, show debug-file-directory)
|
|
|
|
|
(Auto-loading): Use plural and note one can use multiple components now.
|
|
|
|
|
|
2009-11-01 20:54:24 +01:00
|
|
|
|
2009-11-01 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation): Make
|
|
|
|
|
-stack-list-arguments have the same documentation for parameter
|
|
|
|
|
as -stack-list-locals. Add comas.
|
|
|
|
|
|
2009-10-27 21:51:22 +01:00
|
|
|
|
2009-10-27 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
PR python/10781
|
2009-10-27 21:51:22 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Document cast method.
|
|
|
|
|
|
2009-10-23 02:49:33 +02:00
|
|
|
|
2009-10-22 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code): Mention function name in disasssembly
|
|
|
|
|
and adjust example.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-10-22 21:41:33 +02:00
|
|
|
|
2009-10-22 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Process Record and Replay): Document new form of
|
2010-08-27 14:02:20 +02:00
|
|
|
|
info record command. Also document the new save and restore
|
2009-10-22 21:41:33 +02:00
|
|
|
|
commands.
|
|
|
|
|
|
2009-10-21 20:02:27 +02:00
|
|
|
|
2009-10-21 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code): Mention current pc marker.
|
|
|
|
|
(Memory): Likewise.
|
|
|
|
|
|
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
Add base multi-executable/process support to GDB.
gdb/
* Makefile.in (SFILES): Add progspace.c.
(COMMON_OBS): Add progspace.o.
* progspace.h: New.
* progspace.c: New.
* breakpoint.h (struct bp_target_info) <placed_address_space>: New
field.
(struct bp_location) <pspace>: New field.
(struct breakpoint) <pspace>: New field.
(bpstat_stop_status, breakpoint_here_p)
(moribund_breakpoint_here_p, breakpoint_inserted_here_p)
(regular_breakpoint_inserted_here_p)
(software_breakpoint_inserted_here_p, breakpoint_thread_match)
(set_default_breakpoint): Adjust prototypes.
(remove_breakpoints_pid, breakpoint_program_space_exit): Declare.
(insert_single_step_breakpoint, deprecated_insert_raw_breakpoint):
Adjust prototypes.
* breakpoint.c (executing_startup): Delete.
(default_breakpoint_sspace): New.
(breakpoint_restore_shadows): Skip if the address space doesn't
match.
(update_watchpoint): Record the frame's program space in the
breakpoint location.
(insert_bp_location): Record the address space in target_info.
Adjust to pass the symbol space to solib_name_from_address.
(breakpoint_program_space_exit): New.
(insert_breakpoint_locations): Switch the symbol space and thread
when inserting breakpoints. Don't insert breakpoints in a vfork
parent waiting for vfork done if we're not attached to the vfork
child.
(remove_breakpoints_pid): New.
(reattach_breakpoints): Switch to a thread of PID. Ignore
breakpoints of other symbol spaces.
(create_internal_breakpoint): Store the symbol space in the sal.
(create_longjmp_master_breakpoint): Iterate over all symbol
spaces.
(update_breakpoints_after_exec): Ignore breakpoints for other
symbol spaces.
(remove_breakpoint): Rename to ...
(remove_breakpoint_1): ... this. Pass the breakpoints symbol
space to solib_name_from_address.
(remove_breakpoint): New.
(mark_breakpoints_out): Ignore breakpoints from other symbol
spaces.
(breakpoint_init_inferior): Ditto.
(breakpoint_here_p): Add an address space argument and adjust to
use breakpoint_address_match.
(moribund_breakpoint_here_p): Ditto.
(regular_breakpoint_inserted_here_p): Ditto.
(breakpoint_inserted_here_p): Ditto.
(software_breakpoint_inserted_here_p): Ditto.
(breakpoint_thread_match): Ditto.
(bpstat_check_location): Ditto.
(bpstat_stop_status): Ditto.
(print_breakpoint_location): If there's a location to print,
switch the current symbol space.
(print_one_breakpoint_location): Add `allflag' argument.
(print_one_breakpoint): Ditto. Adjust.
(do_captured_breakpoint_query): Adjust.
(breakpoint_1): Adjust.
(breakpoint_has_pc): Also match the symbol space.
(describe_other_breakpoints): Add a symbol space argument and
adjust.
(set_default_breakpoint): Add a symbol space argument. Set
default_breakpoint_sspace.
(breakpoint_address_match): New.
(check_duplicates_for): Add an address space argument, and adjust.
(set_raw_breakpoint): Record the symbol space in the location and
in the breakpoint.
(set_longjmp_breakpoint): Skip longjmp master breakpoints from
other symbol spaces.
(remove_thread_event_breakpoints, remove_solib_event_breakpoints)
(disable_breakpoints_in_shlibs): Skip breakpoints from other
symbol spaces.
(disable_breakpoints_in_unloaded_shlib): Match symbol spaces.
(create_catchpoint): Set the symbol space in the sal.
(disable_breakpoints_before_startup): Skip breakpoints from other
symbol spaces. Set executing_startup in the current symbol space.
(enable_breakpoints_after_startup): Clear executing_startup in the
current symbol space. Skip breakpoints from other symbol spaces.
(clone_momentary_breakpoint): Also copy the symbol space.
(add_location_to_breakpoint): Set the location's symbol space.
(bp_loc_is_permanent): Switch thread and symbol space.
(create_breakpoint): Adjust.
(expand_line_sal_maybe): Expand comment to mention symbol spaces.
Switch thread and symbol space when reading memory.
(parse_breakpoint_sals): Set the symbol space in the sal.
(break_command_really): Ditto.
(skip_prologue_sal): Switch and space.
(resolve_sal_pc): Ditto.
(watch_command_1): Record the symbol space in the sal.
(create_ada_exception_breakpoint): Adjust.
(clear_command): Adjust. Match symbol spaces.
(update_global_location_list): Use breakpoint_address_match.
(breakpoint_re_set_one): Switch thread and space.
(breakpoint_re_set): Save symbol space.
(breakpoint_re_set_thread): Also reset the symbol space.
(deprecated_insert_raw_breakpoint): Add an address space argument.
Adjust.
(insert_single_step_breakpoint): Ditto.
(single_step_breakpoint_inserted_here_p): Ditto.
(clear_syscall_counts): New.
(_initialize_breakpoint): Install it as inferior_exit observer.
* exec.h: Include "progspace.h".
(exec_bfd, exec_bfd_mtime): New defines.
(exec_close): Declare.
* exec.c: Include "gdbthread.h" and "progspace.h".
(exec_bfd, exec_bfd_mtime, current_target_sections_1): Delete.
(using_exec_ops): New.
(exec_close_1): Rename to exec_close, and make public.
(exec_close): Rename to exec_close_1, and adjust all callers. Add
description. Remove target sections and close executables from
all program spaces.
(exec_file_attach): Add comment.
(add_target_sections): Check on `using_exec_ops' to check if the
target should be pushed.
(remove_target_sections): Only unpush the target if there are no
more target sections in any symbol space.
* gdbcore.h: Include "exec.h".
(exec_bfd, exec_bfd_mtime): Remove declarations.
* frame.h (get_frame_program_space, get_frame_address_space)
(frame_unwind_program_space): Declare.
* frame.c (struct frame_info) <pspace, aspace>: New fields.
(create_sentinel_frame): Add program space argument. Set the
pspace and aspace fields of the frame object.
(get_current_frame, create_new_frame): Adjust.
(get_frame_program_space): New.
(frame_unwind_program_space): New.
(get_frame_address_space): New.
* stack.c (print_frame_info): Adjust.
(print_frame): Use the frame's program space.
* gdbthread.h (any_live_thread_of_process): Declare.
* thread.c (any_live_thread_of_process): New.
(switch_to_thread): Switch the program space as well.
(restore_selected_frame): Don't warn if trying to restore frame
level 0.
* inferior.h: Include "progspace.h".
(detach_fork): Declare.
(struct inferior) <removable, aspace, pspace>
<vfork_parent, vfork_child, pending_detach>
<waiting_for_vfork_done>: New fields.
<terminal_info>: Remove field.
<data, num_data>: New fields.
(register_inferior_data, register_inferior_data_with_cleanup)
(clear_inferior_data, set_inferior_data, inferior_data): Declare.
(exit_inferior, exit_inferior_silent, exit_inferior_num_silent)
(inferior_appeared): Declare.
(find_inferior_pid): Typo.
(find_inferior_id, find_inferior_for_program_space): Declare.
(set_current_inferior, save_current_inferior, prune_inferiors)
(number_of_inferiors): Declare.
(inferior_list): Declare.
* inferior.c: Include "gdbcore.h" and "symfile.h".
(inferior_list): Make public.
(delete_inferior_1): Always delete thread silently.
(find_inferior_id): Make public.
(current_inferior_): New.
(current_inferior): Use it.
(set_current_inferior): New.
(restore_inferior): New.
(save_current_inferior): New.
(free_inferior): Free the per-inferior data.
(add_inferior_silent): Allocate per-inferior data.
Call inferior_appeared.
(delete_threads_of_inferior): New.
(delete_inferior_1): Adjust interface to take an inferior pointer.
(delete_inferior): Adjust.
(delete_inferior_silent): Adjust.
(exit_inferior_1): New.
(exit_inferior): New.
(exit_inferior_silent): New.
(exit_inferior_num_silent): New.
(detach_inferior): Adjust.
(inferior_appeared): New.
(discard_all_inferiors): Adjust.
(find_inferior_id): Make public. Assert pid is not zero.
(find_inferior_for_program_space): New.
(have_inferiors): Check if we have any inferior with pid not zero.
(have_live_inferiors): Go over all pushed targets looking for
process_stratum.
(prune_inferiors): New.
(number_of_inferiors): New.
(print_inferior): Add executable column. Print vfork parent/child
relationships.
(inferior_command): Adjust to cope with not running inferiors.
(remove_inferior_command): New.
(add_inferior_command): New.
(clone_inferior_command): New.
(struct inferior_data): New.
(struct inferior_data_registration): New.
(struct inferior_data_registry): New.
(inferior_data_registry): New.
(register_inferior_data_with_cleanup): New.
(register_inferior_data): New.
(inferior_alloc_data): New.
(inferior_free_data): New.
(clear_inferior_data): New.
(set_inferior_data): New.
(inferior_data): New.
(initialize_inferiors): New.
(_initialize_inferiors): Register "add-inferior",
"remove-inferior" and "clone-inferior" commands.
* objfiles.h: Include "progspace.h".
(struct objfile) <pspace>: New field.
(symfile_objfile, object_files): Don't declare.
(ALL_PSPACE_OBJFILES): New.
(ALL_PSPACE_OBJFILES_SAFE): New.
(ALL_OBJFILES, ALL_OBJFILES_SAFE): Adjust.
(ALL_PSPACE_SYMTABS): New.
(ALL_PRIMARY_SYMTABS): Adjust.
(ALL_PSPACE_PRIMARY_SYMTABS): New.
(ALL_PSYMTABS): Adjust.
(ALL_PSPACE_PSYMTABS): New.
* objfiles.c (object_files, symfile_objfile): Delete.
(struct objfile_sspace_info): New.
(objfiles_pspace_data): New.
(objfiles_pspace_data_cleanup): New.
(get_objfile_pspace_data): New.
(objfiles_changed_p): Delete.
(allocate_objfile): Set the objfile's program space. Adjust to
reference objfiles_changed_p in pspace data.
(free_objfile): Adjust to reference objfiles_changed_p in pspace
data.
(objfile_relocate): Ditto.
(update_section_map): Add pspace argument. Adjust to iterate over
objfiles in the passed in pspace.
(find_pc_section): Delete sections and num_sections statics.
Adjust to refer to program space's objfiles_changed_p. Adjust to
refer to sections and num_sections store in the objfile's pspace
data.
(objfiles_changed): Adjust to reference objfiles_changed_p in
pspace data.
(_initialize_objfiles): New.
* linespec.c (decode_all_digits, decode_dollar): Set the sal's
program space.
* source.c (current_source_pspace): New.
(get_current_source_symtab_and_line): Set the sal's program space.
(set_current_source_symtab_and_line): Set current_source_pspace.
(select_source_symtab): Ditto. Use ALL_OBJFILES.
(forget_cached_source_info): Iterate over all program spaces.
* symfile.c (clear_symtab_users): Adjust.
* symmisc.c (print_symbol_bcache_statistics): Iterate over all
program spaces.
(print_objfile_statistics): Ditto.
(maintenance_print_msymbols): Ditto.
(maintenance_print_objfiles): Ditto.
(maintenance_info_symtabs): Ditto.
(maintenance_info_psymtabs): Ditto.
* symtab.h (SYMTAB_PSPACE): New.
(struct symtab_and_line) <pspace>: New field.
* symtab.c (init_sal): Clear the sal's program space.
(find_pc_sect_symtab): Set the sal's program space. Switch thread
and space.
(append_expanded_sal): Add program space argument. Iterate over
all program spaces.
(expand_line_sal): Iterate over all program spaces. Switch
program space.
* target.h (enum target_waitkind) <TARGET_WAITKIND_VFORK_DONE>: New.
(struct target_ops) <to_thread_address_space>: New field.
(target_thread_address_space): Define.
* target.c (target_detach): Only remove breakpoints from the
inferior we're detaching.
(target_thread_address_space): New.
* defs.h (initialize_progspace): Declare.
* top.c (gdb_init): Call it.
* solist.h (struct so_list) <sspace>: New field.
* solib.h (struct program_space): Forward declare.
(solib_name_from_address): Adjust prototype.
* solib.c (so_list_head): Replace with a macro referencing the
program space.
(update_solib_list): Set the so's program space.
(solib_name_from_address): Add a program space argument and adjust.
* solib-svr4.c (struct svr4_info) <pid>: Delete field.
<interp_text_sect_low, interp_text_sect_high, interp_plt_sect_low>
<interp_plt_sect_high>: New fields.
(svr4_info_p, svr4_info): Delete.
(solib_svr4_sspace_data): New.
(get_svr4_info): Rewrite.
(svr4_sspace_data_cleanup): New.
(open_symbol_file_object): Adjust.
(svr4_default_sos): Adjust.
(svr4_fetch_objfile_link_map): Adjust.
(interp_text_sect_low, interp_text_sect_high, interp_plt_sect_low)
(interp_plt_sect_high): Delete.
(svr4_in_dynsym_resolve_code): Adjust.
(enable_break): Adjust.
(svr4_clear_solib): Revert bit that removed the svr4_info here,
and reinstate clearing debug_base, debug_loader_offset_p,
debug_loader_offset and debug_loader_name.
(_initialize_svr4_solib): Register solib_svr4_pspace_data. Don't
install an inferior_exit observer anymore.
* printcmd.c (struct display) <pspace>: New field.
(display_command): Set the display's sspace.
(do_one_display): Match the display's sspace.
(display_uses_solib_p): Ditto.
* linux-fork.c (detach_fork): Moved to infrun.c.
(_initialize_linux_fork): Moved "detach-on-fork" command to
infrun.c.
* infrun.c (detach_fork): Moved from linux-fork.c.
(proceed_after_vfork_done): New.
(handle_vfork_child_exec_or_exit): New.
(follow_exec_mode_replace, follow_exec_mode_keep)
(follow_exec_mode_names, follow_exec_mode_string)
(show_follow_exec_mode_string): New.
(follow_exec): New. Reinstate the mark_breakpoints_out call.
Remove shared libraries before attaching new executable. If user
wants to keep the inferior, keep it.
(displaced_step_fixup): Adjust to pass an address space to the
breakpoints module.
(resume): Ditto.
(clear_proceed_status): In all-stop mode, always clear the proceed
status of all threads.
(prepare_to_proceed): Adjust to pass an address space to the
breakpoints module.
(proceed): Ditto.
(adjust_pc_after_break): Ditto.
(handle_inferior_event): When handling a process exit, switch the
program space to the inferior's that had exited. Call
handle_vfork_child_exec_or_exit. Adjust to pass an address space
to the breakpoints module. In non-stop mode, when following a
fork and detach-fork is off, also resume the other branch. Handle
TARGET_WAITKIND_VFORK_DONE. Set the program space in sals.
(normal_stop): Prune inferiors.
(_initialize_infrun): Install the new "follow-exec-mode" command.
"detach-on-fork" moved here.
* regcache.h (get_regcache_aspace): Declare.
* regcache.c (struct regcache) <aspace>: New field.
(regcache_xmalloc): Clear the aspace.
(get_regcache_aspace): New.
(regcache_cpy): Copy the aspace field.
(regcache_cpy_no_passthrough): Ditto.
(get_thread_regcache): Fetch the thread's address space from the
target, and store it in the regcache.
* infcall.c (call_function_by_hand): Set the sal's pspace.
* arch-utils.c (default_has_shared_address_space): New.
* arch-utils.h (default_has_shared_address_space): Declare.
* gdbarch.sh (has_shared_address_space): New.
* gdbarch.h, gdbarch.c: Regenerate.
* linux-tdep.c: Include auxv.h, target.h, elf/common.h.
(linux_has_shared_address_space): New.
(_initialize_linux_tdep): Declare.
* arm-tdep.c (arm_software_single_step): Pass the frame's address
space to insert_single_step_breakpoint.
* arm-linux-tdep.c (arm_linux_software_single_step): Pass the
frame's pspace to breakpoint functions.
* cris-tdep.c (crisv32_single_step_through_delay): Ditto.
(cris_software_single_step): Ditto.
* mips-tdep.c (deal_with_atomic_sequence): Add frame argument.
Pass the frame's pspace to breakpoint functions.
(mips_software_single_step): Adjust.
(mips_single_step_through_delay): Adjust.
* rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
* rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
* solib-irix.c (enable_break): Adjust to pass the current frame's
address space to breakpoint functions.
* sparc-tdep.c (sparc_software_single_step): Ditto.
* spu-tdep.c (spu_software_single_step): Ditto.
* alpha-tdep.c (alpha_software_single_step): Ditto.
* record.c (record_wait): Adjust to pass an address space to the
breakpoints module.
* fork-child.c (fork_inferior): Set the new inferior's program and
address spaces.
* inf-ptrace.c (inf_ptrace_follow_fork): Copy the parent's program
and address spaces.
(inf_ptrace_attach): Set the inferior's program and address spaces.
* linux-nat.c: Include "solib.h".
(linux_child_follow_fork): Manage parent and child's program and
address spaces. Clone the parent's program space if necessary.
Don't wait for the vfork to be done here. Refuse to resume if
following the vfork parent while leaving the child stopped.
(resume_callback): Don't resume a vfork parent.
(linux_nat_resume): Also check for pending events in the
lp->waitstatus field.
(linux_handle_extended_wait): Report TARGET_WAITKIND_VFORK_DONE
events to the core.
(stop_wait_callback): Don't wait for SIGSTOP on vfork parents.
(cancel_breakpoint): Adjust.
* linux-thread-db.c (thread_db_wait): Don't remove thread event
breakpoints here.
(thread_db_mourn_inferior): Don't mark breakpoints out here.
Remove thread event breakpoints after mourning.
* corelow.c: Include progspace.h.
(core_open): Set the inferior's program and address spaces.
* remote.c (remote_add_inferior): Set the new inferior's program
and address spaces.
(remote_start_remote): Update address spaces.
(extended_remote_create_inferior_1): Don't init the thread list if
we already debugging other inferiors.
* darwin-nat.c (darwin_attach): Set the new inferior's program and
address spaces.
* gnu-nat.c (gnu_attach): Ditto.
* go32-nat.c (go32_create_inferior): Ditto.
* inf-ttrace.c (inf_ttrace_follow_fork, inf_ttrace_attach): Ditto.
* monitor.c (monitor_open): Ditto.
* nto-procfs.c (procfs_attach, procfs_create_inferior): Ditto.
* procfs.c (do_attach): Ditto.
* windows-nat.c (do_initial_windows_stuff): Ditto.
* inflow.c (inferior_process_group)
(terminal_init_inferior_with_pgrp, terminal_inferior,
(terminal_ours_1, inflow_inferior_exit, copy_terminal_info)
(child_terminal_info, new_tty_postfork, set_sigint_trap): Adjust
to use per-inferior data instead of inferior->terminal_info.
(inflow_inferior_data): New.
(inflow_new_inferior): Delete.
(inflow_inferior_data_cleanup): New.
(get_inflow_inferior_data): New.
* mi/mi-interp.c (mi_new_inferior): Rename to...
(mi_inferior_appeared): ... this.
(mi_interpreter_init): Adjust.
* tui/tui-disasm.c: Include "progspace.h".
(tui_set_disassem_content): Pass an address space to
breakpoint_here_p.
* NEWS: Mention multi-program debugging support. Mention new
commands "add-inferior", "clone-inferior", "remove-inferior",
"maint info program-spaces", and new option "set
follow-exec-mode".
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
gdb/doc/
* observer.texi (new_inferior): Rename to...
(inferior_appeared): ... this.
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
gdb/testsuite/
* gdb.base/foll-vfork.exp: Adjust to spell out "follow-fork".
* gdb.base/foll-exec.exp: Adjust to expect a process id before
"Executing new program".
* gdb.base/foll-fork.exp: Adjust to spell out "follow-fork".
* gdb.base/multi-forks.exp: Ditto. Adjust to the inferior being
left listed after having been killed.
* gdb.base/attach.exp: Adjust to spell out "symbol-file".
* gdb.base/maint.exp: Adjust test.
* Makefile.in (ALL_SUBDIRS): Add gdb.multi.
* gdb.multi/Makefile.in: New.
* gdb.multi/base.exp: New.
* gdb.multi/goodbye.c: New.
* gdb.multi/hangout.c: New.
* gdb.multi/hello.c: New.
* gdb.multi/bkpt-multi-exec.c: New.
* gdb.multi/bkpt-multi-exec.exp: New.
* gdb.multi/crashme.c: New.
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
gdb/doc/
* gdb.texinfo (Inferiors): Rename node to ...
(Inferiors and Programs): ... this. Mention running multiple
programs in the same debug session.
<info inferiors>: Mention the new 'Executable' column if "info
inferiors". Update examples. Document the "add-inferior",
"clone-inferior", "remove-inferior" and "maint info
program-spaces" commands.
(Process): Rename node to...
(Forks): ... this. Document "set|show follow-exec-mode".
2009-10-19 11:51:43 +02:00
|
|
|
|
2009-10-19 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (new_inferior): Rename to...
|
|
|
|
|
(inferior_appeared): ... this.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors): Rename node to ...
|
|
|
|
|
(Inferiors and Programs): ... this. Mention running multiple
|
|
|
|
|
programs in the same debug session.
|
|
|
|
|
<info inferiors>: Mention the new 'Executable' column if "info
|
|
|
|
|
inferiors". Update examples. Document the "add-inferior",
|
|
|
|
|
"clone-inferior", "remove-inferior" and "maint info
|
|
|
|
|
program-spaces" commands.
|
|
|
|
|
(Process): Rename node to...
|
|
|
|
|
(Forks): ... this. Document "set|show follow-exec-mode".
|
|
|
|
|
|
2009-10-12 03:59:54 +02:00
|
|
|
|
2009-10-11 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (ReverseStep): Show default as "unsupported".
|
|
|
|
|
(ReverseContinue): Ditto.
|
|
|
|
|
|
2009-10-12 22:11:51 +02:00
|
|
|
|
2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server): Document libthread-db-search-path.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-10-08 15:08:26 +02:00
|
|
|
|
2009-10-08 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (i386_stopped_by_hwbp): Remove.
|
|
|
|
|
|
2009-10-06 20:02:36 +02:00
|
|
|
|
2009-10-06 Michael Eager <eager@eagercon.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Add self for Xilinx MicroBlaze.
|
|
|
|
|
(Embedded Processors): Add MicroBlaze.
|
|
|
|
|
(MicroBlaze): New. Describe Xilinx MicroBlaze
|
|
|
|
|
|
2009-10-04 19:37:57 +02:00
|
|
|
|
2009-10-04 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Protocol): Don't mention vCont;T.
|
|
|
|
|
|
2009-09-26 18:47:13 +02:00
|
|
|
|
2009-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cygwin Native): Mention support for Ctrl-BREAK.
|
|
|
|
|
|
2009-09-24 19:49:56 +02:00
|
|
|
|
2009-09-23 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (solib_unloaded): Document explicitly the fact that
|
|
|
|
|
this observer is called before the associated symbols are unloaded.
|
|
|
|
|
|
2009-09-19 12:46:20 +02:00
|
|
|
|
2009-09-19 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation): Document
|
|
|
|
|
-stack-list-variables.
|
|
|
|
|
|
2009-09-18 20:03:45 +02:00
|
|
|
|
2009-09-18 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): -enable-pretty-printing
|
|
|
|
|
is experimental.
|
|
|
|
|
|
2009-09-17 19:49:46 +02:00
|
|
|
|
2009-09-17 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (convenince variables): Mention
|
|
|
|
|
$_siginfo could be empty.
|
2009-09-18 20:03:45 +02:00
|
|
|
|
|
gdb
* varobj.h (varobj_update_result_t) <new>: New field.
(varobj_get_child_range, varobj_set_child_range): Declare.
(varobj_list_children): Update.
(varobj_enable_pretty_printing, varobj_has_more)
(varobj_pretty_printed_p): Declare.
* varobj.c (pretty_printing): New global.
(varobj_enable_pretty_printing): New function.
(struct varobj_root) <from, to, constructor, child_iter,
saved_item>: New fields.
(varobj_create): Don't call install_default_visualizer.
(instantiate_pretty_printer): Don't use value_copy.
(varobj_has_more): New function.
(restrict_range): New function.
(install_dynamic_child): Likewise.
(dynamic_varobj_has_child_method): Likewise.
(update_dynamic_varobj_children): Remove 'new_and_unchanged'
argument; add 'new', 'unchanged', 'from', and 'to' arguments.
Rewrite.
(varobj_get_num_children): Call update_dynamic_varobj_children.
(varobj_list_children): Add 'from' and 'to' arguments. Ignore
result of update_dynamic_varobj_children. Don't call
install_default_visualizer. Restrict result range.
(varobj_add_child): Don't call install_default_visualizer.
(varobj_pretty_printed_p): New function.
(install_visualizer): Rewrite. Move earlier in file.
(install_default_visualizer): Likewise.
(construct_visualizer): New function.
(install_new_value_visualizer): Likewise.
(install_new_value): Don't call release_value. Special case
pretty-printed objects. Use value_incref. Rearrange "changed"
logic.
(varobj_get_child_range): New function.
(varobj_set_child_range): Likewise.
(varobj_set_visualizer): Rewrite.
(varobj_update): Rewrite pretty-printing logic.
(new_variable): Initialize new fields.
(free_variable): Destroy new fields.
(value_of_root): Copy 'from' and 'to'.
(my_value_of_variable): Handle pretty-printers.
(value_get_print_value): Rework pretty-printing logic.
(cplus_describe_child): Don't use release_value.
* mi/mi-cmds.h (mi_cmd_enable_pretty_printing)
(mi_cmd_var_set_update_range): Declare.
* mi/mi-cmds.c (mi_cmds): Add enable-pretty-printing and
var-set-update-range.
* mi/mi-cmd-var.c (print_varobj): Update. Emit "dynamic"
attribute.
(mi_cmd_var_create): Emit "has_more" attribute.
(mi_cmd_var_set_format): Plug memory leak.
(mi_print_value_p): Replace 'type' argument with 'var'. Handle
pretty-printed varobjs.
(mi_cmd_var_list_children): Accept 'from' and 'to' arguments.
Emit "has_more" attribute.
(mi_cmd_var_evaluate_expression): Plug memory leak.
(mi_cmd_var_assign): Likewise.
(varobj_update_one): Likewise. Emit "dynamic", "has_more", and
"new_children" attributes.
(mi_cmd_enable_pretty_printing): New function.
(mi_cmd_var_set_update_range): Likewise.
gdb/doc
* gdb.texinfo (GDB/MI Variable Objects): Document
-enable-pretty-printing, -var-set-update-range, dynamic varobjs.
Expand -var-update documentation.
gdb/testsuite
* lib/mi-support.exp (mi_create_varobj): Update.
(mi_create_floating_varobj): Likewise.
(mi_create_dynamic_varobj): New proc.
(mi_varobj_update): Update.
(mi_varobj_update_with_type_change): Likewise.
(mi_varobj_update_kv_helper): New proc.
(mi_varobj_update_dynamic_helper): Rewrite.
(mi_varobj_update_dynamic): New proc.
(mi_list_varobj_children): Update.
(mi_list_varobj_children_range): Add 'from' and 'to' arguments.
* gdb.python/python-prettyprint.py (pp_outer): New class.
(pp_nullstr): Likewise.
(lookup_function): Register new printers.
* gdb.python/python-prettyprint.c (struct substruct): New type.
(struct outerstruct): Likewise.
(substruct_test): New function.
(struct nullstr): New type.
(string_1, string_2): New globals.
(main): Add new tests.
* gdb.python/python-mi.exp: Added regression tests.
* gdb.mi/mi2-var-display.exp: Update.
* gdb.mi/mi2-var-cmd.exp: Update.
* gdb.mi/mi2-var-child.exp: Update.
* gdb.mi/mi2-var-block.exp: Update.
* gdb.mi/mi-var-invalidate.exp: Update.
* gdb.mi/mi-var-display.exp: Update.
* gdb.mi/mi-var-cmd.exp: Update.
* gdb.mi/mi-var-child.exp: Update.
* gdb.mi/mi-var-block.exp: Update.
* gdb.mi/mi-break.exp: Update.
* gdb.mi/gdb701.exp: Update.
2009-09-15 20:51:26 +02:00
|
|
|
|
2009-09-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Document
|
|
|
|
|
-enable-pretty-printing, -var-set-update-range, dynamic varobjs.
|
|
|
|
|
Expand -var-update documentation.
|
|
|
|
|
|
2009-09-15 05:30:08 +02:00
|
|
|
|
2009-09-14 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Documentation about the catch syscall
|
|
|
|
|
feature.
|
|
|
|
|
|
2009-09-13 18:28:29 +02:00
|
|
|
|
2009-09-13 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Unwinding the Frame ID): Reference outer_frame_id.
|
|
|
|
|
|
2009-09-10 23:03:07 +02:00
|
|
|
|
2009-09-10 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (qSupported): Mention new ReverseContinue and
|
|
|
|
|
ReverseStep replies to the qSupported query.
|
|
|
|
|
|
2009-09-10 20:57:15 +02:00
|
|
|
|
2009-09-10 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
Add documentation for set/show interactive-mode.
|
|
|
|
|
* gdb.texinfo (Other Misc Settings): New node.
|
|
|
|
|
|
2009-09-01 20:48:58 +02:00
|
|
|
|
2009-09-01 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Caching Data of Remote Targets): Add note on
|
|
|
|
|
non-stop mode's affect on remote caching.
|
|
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
|
2009-08-31 Jacob Potter <jdpotter@google.com>
|
|
|
|
|
Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Caching Data of Remote Targets): Update text.
|
|
|
|
|
Mark `set/show remotecache' options as obsolete.
|
|
|
|
|
Document new `set/show stack-cache' option.
|
|
|
|
|
Update text for `info dcache'.
|
|
|
|
|
|
2009-08-27 23:56:38 +02:00
|
|
|
|
2009-08-27 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Delete `set print symbol-loading'.
|
|
|
|
|
(Files): Add note on new optional regex arg to `info sharedlibrary'.
|
|
|
|
|
|
2009-08-26 06:16:38 +02:00
|
|
|
|
2009-08-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Fix confusing sentence
|
|
|
|
|
about autoconf.
|
|
|
|
|
|
2009-08-25 17:24:12 +02:00
|
|
|
|
2009-08-25 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Multiple Inferiors): Add "info inferiors"
|
|
|
|
|
small example, and describe its columns. Replace "inferior-id" by
|
|
|
|
|
"infno" throughout.
|
|
|
|
|
|
2009-08-22 18:56:56 +02:00
|
|
|
|
2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
Cleanups after the update to Autoconf 2.64, Automake 1.11.
/:
* README-maintainer-mode: Point directly to upstream locations
for autoconf, automake, libtool, gettext, instead of copies on
sources.redhat.com. Document required versions.
* configure.ac: Do not substitute datarootdir, htmldir,
pdfdir, docdir. Do not process --with-datarootdir,
--with-htmldir, --with-pdfdir, --with-docdir.
* configure: Regenerate.
gdb/:
* CONTRIBUTE: Bump documented Autoconf version.
* configure.ac: Do not substitute datarootdir, htmldir,
pdfdir, docdir. Do not process --with-datarootdir,
--with-htmldir, --with-pdfdir, --with-docdir.
* configure: Regenerate.
gdb/doc/:
* gdbint.texinfo (Releasing GDB): Point to
README-maintainer-mode file for required autoconf version.
* configure.ac: Do not substitute datarootdir, htmldir,
pdfdir, docdir. Do not process --with-datarootdir,
--with-htmldir, --with-pdfdir, --with-docdir.
* configure: Regenerate.
gprof/:
* Makefile.am (pdf__strip_dir, install-pdf, install-pdf-am)
(install-pdf-recursive, html__strip_dir, install-html)
(install-html-am, install-html-recursive): Remove.
* Makefile.in: Regenerate.
opcodes/:
* Makefile.am (install-pdf, install-html): Remove.
* Makefile.in: Regenerate.
gas/:
* Makefile.am (install-pdf, install-pdf-recursive, install-html)
(install-html-recursive): Remove.
* Makefile.in: Regenerate.
* doc/Makefile.am (pdf__strip_dir, install-pdf, install-pdf-am)
(html__strip_dir, install-html, install-html-am): Remove.
* doc/Makefile.in: Regenerate.
ld/:
* Makefile.am (pdf__strip_dir, install-pdf, install-pdf-am)
(install-pdf-recursive, html__strip_dir, install-html)
(install-html-am, install-html-recursive): Remove.
* Makefile.in: Regenerate.
binutils/:
* Makefile.am (install-pdf, install-pdf-recursive, install-html)
(install-html-recursive): Remove.
* Makefile.in: Regenerate.
* doc/Makefile.am (pdf__strip_dir, install-pdf, install-pdf-am)
(html__strip_dir, install-html, install-html-am): Remove.
* doc/Makefile.in: Regenerate.
bfd/:
* Makefile.am (datarootdir, docdir, htmldor, pdfdir)
(install-pdf, install-pdf-recursive, install-html)
(install-html-recursive): Remove.
* Makefile.in: Regenerate.
bfd/doc/:
* Makefile.am (pdf__strip_dir, install-pdf, install-pdf-am)
(html__strip_dir, install-html, install-html-am): Remove.
* Makefile.in: Regenerate.
2009-08-22 19:08:11 +02:00
|
|
|
|
* gdbint.texinfo (Releasing GDB): Point to
|
|
|
|
|
README-maintainer-mode file for required autoconf version.
|
|
|
|
|
* configure.ac: Do not substitute datarootdir, htmldir,
|
|
|
|
|
pdfdir, docdir. Do not process --with-datarootdir,
|
|
|
|
|
--with-htmldir, --with-pdfdir, --with-docdir.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2009-08-22 18:56:56 +02:00
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2009-08-20 20:02:48 +02:00
|
|
|
|
2009-08-20 Reid Kleckner <reid@kleckner.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add chapter on JIT interface.
|
|
|
|
|
|
2009-08-07 01:06:54 +02:00
|
|
|
|
2009-08-07 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server Prefix): Explain that server prefix suppresses
|
2010-08-27 14:02:20 +02:00
|
|
|
|
confirmation request.
|
2009-08-07 01:06:54 +02:00
|
|
|
|
|
2009-08-05 19:47:09 +02:00
|
|
|
|
2009-08-05 Jeremy Bennett <jeremy.bennett@embecosm.com>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* gdb.texinfo (Separate Debug Files, Remote Protocol): Clarified
|
|
|
|
|
CRC definitions.
|
2009-08-05 19:47:09 +02:00
|
|
|
|
|
2009-08-03 14:39:01 +02:00
|
|
|
|
2009-08-03 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Document
|
2010-08-27 14:02:20 +02:00
|
|
|
|
-break-commands.
|
2009-08-03 14:39:01 +02:00
|
|
|
|
|
2009-07-31 17:35:38 +02:00
|
|
|
|
2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cell Broadband Engine SPU architecture): Document the
|
|
|
|
|
"set spu auto-flush-cache" and "show spu auto-flush-cache" commands.
|
|
|
|
|
|
2009-07-31 17:33:50 +02:00
|
|
|
|
2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cell Broadband Engine SPU architecture): Document the
|
|
|
|
|
"set spu stop-on-load" and "show spu stop-on-load" commands.
|
|
|
|
|
|
2009-07-31 16:39:12 +02:00
|
|
|
|
2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Descriptions): Document <compatible> element.
|
|
|
|
|
|
* NEWS: Mention ARM VFP support.
* target-descriptions.c (tdesc_register_type): Make public.
(tdesc_unnumbered_register): New function.
(tdesc_register_reggroup_p): Allow missing
pseudo_register_reggroup_p.
* target-descriptions.h (tdesc_register_type): Declare.
(tdesc_unnumbered_register): Declare.
* arm-tdep.c (arm_neon_quad_read, arm_neon_quad_write): New functions.
(arm_push_dummy_call): Use arm_neon_quad_write.
(arm_neon_double_type, arm_neon_quad_type): New functions.
(arm_register_type): Handle VFP and NEON registers. Override the
types of double-precision registers for NEON. Disable FPA registers
if they are not present.
(arm_dwarf_reg_to_regnum): Add current VFP and NEON register numbers.
(arm_return_value): Use arm_neon_quad_write and arm_neon_quad_read.
(arm_register_name): Handle VFP single and NEON quad registers.
(arm_pseudo_read, arm_pseudo_write): New functions.
(arm_gdbarch_init): Check for VFP and NEON in the target description.
Assign numbers to double-precision registers. Register VFP and NEON
pseudo registers. Remove a shadowed "i" variable.
* arm-tdep.h (enum gdb_regnum): Add ARM_D0_REGNUM and
ARM_D31_REGNUM.
(struct gdbarch_tdep): Add have_neon_pseudos, have_neon,
have_vfp_registers, have_vfp_pseudos, neon_double_type,
and neon_quad_type.
* features/Makefile: Make expedite settings only architecture
specific.
(WHICH): Add new ARM descriptions.
* features/arm-with-neon.xml, features/arm-with-vfpv2.c,
features/arm-with-vfpv3.c, features/arm-vfpv2.xml,
features/arm-vfpv3.xml, features/arm-with-vfpv2.xml,
features/arm-with-vfpv3.xml, features/arm-with-neon.c: New files.
* regformats/arm-with-neon.dat, regformats/arm-with-vfpv2.dat,
regformats/arm-with-vfpv3.dat: Generate.
doc/
* gdb.texinfo (ARM Features): Document org.gnu.gdb.arm.vfp and
org.gnu.gdb.arm.neon.
gdbserver/
* linux-low.c (linux_write_memory): Update debugging output.
* Makefile.in (clean): Add new descriptions.
(arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
(arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
* configure.srv: Add new files for arm*-*-linux*.
* linux-arm-low.c: Add new declarations.
(PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
(arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
(HWCAP_VFPv3D16): New.
(arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
instead of __IWMMXT__.
(arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
(arm_arch_setup): New.
(target_regsets): Remove #ifdef. Add VFP regset.
(the_low_target): Use arm_arch_setup.
testsuite/
* gdb.base/float.exp: Handle VFP registers.
2009-07-28 20:26:51 +02:00
|
|
|
|
2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (ARM Features): Document org.gnu.gdb.arm.vfp and
|
|
|
|
|
org.gnu.gdb.arm.neon.
|
|
|
|
|
|
2009-07-20 20:51:42 +02:00
|
|
|
|
2009-07-20 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Description Format): Mention the new <osabi>
|
|
|
|
|
optional element.
|
|
|
|
|
(subsection OS ABI): New subsection.
|
|
|
|
|
|
2009-07-14 23:40:34 +02:00
|
|
|
|
2009-07-14 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Conditions): New section.
|
|
|
|
|
(General Query Packets): Describe ConditionalTracepoints.
|
|
|
|
|
(Tracepoint Packets): Describe condition field.
|
|
|
|
|
(Maintenance Commands): Describe maint agent-eval.
|
|
|
|
|
* agentexpr.texi (Using Agent Expressions): Mention eval usage.
|
|
|
|
|
|
2009-07-11 16:09:16 +02:00
|
|
|
|
2009-07-11 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (disassemble): Add a new modifier /r
|
|
|
|
|
to "disassemble" command to make it print the raw instructions
|
|
|
|
|
in hex as well as in symbolic form.
|
|
|
|
|
|
2009-07-10 21:38:00 +02:00
|
|
|
|
2009-07-09 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Document parallel make check.
|
|
|
|
|
|
2009-07-10 20:48:41 +02:00
|
|
|
|
2009-07-09 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Document test transcripts.
|
|
|
|
|
|
2009-07-10 12:35:17 +02:00
|
|
|
|
2009-07-10 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Add length parameter
|
|
|
|
|
description.
|
|
|
|
|
|
2009-07-04 14:12:20 +02:00
|
|
|
|
2009-07-04 Chris Genly <chris@genly.us>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Document child definition
|
|
|
|
|
in -var-list-children. Fix example according to what the code
|
|
|
|
|
does.
|
|
|
|
|
|
gdb/
2009-07-02 Pedro Alves <pedro@codesourcery.com>
* linux-nat.c (linux_child_follow_fork): If we're staying attached
to the child process, enable event reporting on it. Don't handle
checkpoints here. Instead, add the child fork to the lwp thread
and inferior lists without clobbering the previous inferior. Let
the thread_db layer learn about a new child process, even if
following the parent.
(linux_nat_switch_fork): Delete lwps of the current inferior only,
instead of clearing the whole list. Use thread_change_ptid to
give the core the illusion the new checkpoint is still the same
inferior. Clear the register cache.
(linux_handle_extended_wait): Handle checkpoints here.
(linux_multi_process): Turn on.
* linux-fork.c (struct fork_info) <pc>: Remove field.
(init_fork_list): Do not delete the checkpoint from the inferior
list (it is not there).
(fork_load_infrun_state): Don't switch inferior_ptid here. Pass
the new checkpoint's ptid to linux_nat_switch_fork.
(fork_save_infrun_state): Make static. Don't stop the pc field of
fork_info, it's gone.
(linux_fork_mourn_inferior): Don't delete the checkpoint from the
inferior list, it's not there.
(linux_fork_detach): Ditto.
(delete_fork_command): Replace mention of fork/checkpoint by
checkpoint only.
(detach_fork_command): Likewise. Don't delete the checkpoint from
the inferior list.
(info_forks_command): Adjust.
(restore_detach_fork): Delete.
(checkpointing_pid): New.
(linux_fork_checkpointing_p): New.
(save_detach_fork): Delete.
(checkpoint_command): Delete temp_detach_fork. Don't remove
breakpoints, that's a nop. Store the pid of the process we're
checkpointing, and use make_cleanup_restore_integer to restore it.
Don't reinsert breakpoints here.
(process_command, fork_command): Delete.
(restart_command): Update comments to only mention checkpoints,
not forks.
(_initialize_linux_fork): Delete "fork", "process", "info forks"
commands.
* linux-fork.h (fork_save_infrun_state, fork_list): Delete
declarations.
(linux_fork_checkpointing_p): Declare.
* cli/cli-cmds.c (killlist): New.
* cli/cli-cmds.h (killlist): Declare.
* gdbcmd.h (killlist): Declare.
* inferior.c: Include "gdbthread.h".
(detach_inferior_command, kill_inferior_command)
(inferior_command): New.
(info_inferiors_command): Allow specifying a specific inferior id.
(_initialize_inferiors): Register "inferior", "kill inferior" and
"detach inferior" commands.
* infcmd.c (_initialize_infcmd): Make "kill" a prefix command.
* gdbthread.h (any_thread_of_process): Declare.
* thread.c (any_thread_of_process): New.
* NEWS: Mention multi-inferior debugging. Mention 'info
inferiors', 'inferior', 'detach inferior' and 'kill inferior' as
new commands.
(Removed commands): New section, mentioning that 'info forks',
'fork', 'process', 'delete fork' and 'detach fork' are now gone.
gdb/testsuite/
2009-07-02 Pedro Alves <pedro@codesourcery.com>
* gdb.base/multi-forks.exp: Only run detach-on-fork tests on
linux. Adjust to use "inferior", "info inferiors", "detach
inferior" and "kill inferior" instead of "restart", "info fork",
"detach fork" and "delete fork".
* gdb.base/ending-run.exp: Spell out "info".
* gdb.base/help.exp: Adjust to use test_prefix_command_help for
the "kill" command.
gdb/doc/
2009-07-02 Pedro Alves <pedro@codesourcery.com>
* gdb.texinfo (Debugging multiple inferiors): Document the
"inferior", "detach inferior" and "kill inferior" commands.
(Debugging Programs with Multiple Processes): Adjust to mention
generic "inferior" commands. Delete mention of "detach fork" and
"delete fork". Cross reference to "Debugging multiple inferiors"
section.
2009-07-02 23:57:28 +02:00
|
|
|
|
2009-07-02 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging multiple inferiors): Document the
|
|
|
|
|
"inferior", "detach inferior" and "kill inferior" commands.
|
|
|
|
|
(Debugging Programs with Multiple Processes): Adjust to mention
|
|
|
|
|
generic "inferior" commands. Delete mention of "detach fork" and
|
|
|
|
|
"delete fork". Cross reference to "Debugging multiple inferiors"
|
|
|
|
|
section.
|
|
|
|
|
|
* breakpoint.h (struct breakpoint): New member GDBARCH.
* breakpoint.c: Include "arch-utils.h".
(set_raw_breakpoint_without_location): Add GDBARCH parameter.
Use it to set breakpoint architecture.
(set_raw_breakpoint): Add GDBARCH parameter.
(create_internal_breakpoint): Likewise.
(create_catchpoint): Likewise.
(create_fork_vfork_event_catchpoint): Likewise.
(create_breakpoint): Likewise.
(create_breakpoints): Likewise.
(break_command_really): Likewise.
(create_ada_exception_breakpoint): Likewise.
Update local callers to pass architecture:
(create_internal_breakpoint): Update.
(create_overlay_event_breakpoint): Update.
(create_longjmp_master_breakpoint): Update.
(create_thread_event_breakpoint): Update.
(create_solib_event_breakpoint): Update.
(create_catchpoint): Update.
(create_fork_vfork_event_catchpoint): Update.
(set_momentary_breakpoint): Update.
(clone_momentary_breakpoint): Update.
(create_breakpoint): Update.
(create_breakpoints): Update.
(break_command_really): Update.
(break_command_1): Update.
(set_breakpoint): Update.
(watch_command_1): Update.
(catch_fork_command_1): Update.
(catch_exec_commnd_1): Update.
(handle_gnu_v3_exceptions): Update.
(create_ada_exception_breakpoint): Update.
(catch_ada_exception_command): Update.
(catch_assert_command): Update.
(trace_command): Update.
* breakpoint.h (struct bp_location): New member GDBARCH.
* breakpoint.c (get_sal_arch): New function.
(set_raw_breakpoint): Set location architecture.
(add_location_to_breakpoint): Likewise.
(clone_momentary_breakpoint): Likewise.
(watch_command_1): Likewise.
(update_watchpoint): Likewise.
(bp_loc_is_permanent): Use location architecture instead of
current_gdbarch.
(adjust_breakpoint_address): Add GDBARCH parameter; use it
instead of current_gdbarch.
Update callers of adjust_breakpoint_address to pass
breakpoint location architecture:
(set_raw_breakpoint): Update.
(watch_command_1): Update.
* tracepoint.c: (collect_symbol): Add GDBARCH parameter, use instead
of current_gdbarch.
(add_local_symbols): Add GDBARCH parameter. Pass to collect_symbol.
(encode_actions): Pass tracepoint architecture to add_local_symbols
(encode_actions): Use tracepoint architecture instead of
current_gdbarch. Pass it to add_local_symbols and collect_symbol.
* breakpoint.h (struct breakpoint_ops): Replace last_addr parameter
of print_one callback with last_loc.
* breakpoint.c (print_one_breakpoint_location): Replace last_addr
parameter with last_loc.
(print_one_breakpoint): Likewise.
(do_captured_breakpoint_query): Update call.
(breakpoint_1): Pass last_loc instead of last_addr to
print_one_breakpoint. Pass last location architecture instead of
current_gdbarch to set_next_address.
Update all implementations of the print_one callback:
* breakpoint.c (print_one_catch_fork): Update.
(print_one_catch_vfork): Update.
(print_one_catch_exec): Update.
(print_one_exception_catchpoint): Update.
* ada-lang.c (print_one_exception): Update.
(print_one_catch_exception): Update.
(print_one_catch_exception_unhandled): Update.
(print_one_catch_assert): Update.
* breakpoint.c (print_one_breakpoint_location): Add PRINT_ADDRESS_BITS
parameter. Use it instead of gdbarch_addr_bit (current_gdbarch).
(print_one_breakpoint): Add PRINT_ADDRESS_BITS parameter and pass it
to print_one_breakpoint_location.
(breakpoint_address_bits): New function.
(do_captured_breakpoint_query): Compute number of address bits to print
and pass it to print_one_breakpoint.
(breakpoint_1): Likewise. Use it instead of current_gdbarch.
* breakpoint.h (create_thread_event_breakpoint): Add GDBARCH.
* breakpoint.c (create_thread_event_breakpoint): Likewise.
Update callers to create_thread_event_breakpoint:
* aix-thread.c (pd_enable): Update.
* linux-thread-db.c (enable_thread_event): Update.
* breakpoint.h (create_solib_event_breakpoint): Add GDBARCH.
* breakpoint.c (create_solib_event_breakpoint): Likewise.
Update callers to create_solib_event_breakpoint:
* solib-frv.c (enable_break, enable_break2): Update.
* solib-pa64.c (pa64_solib_create_inferior_hook): Update.
* solib-som.c (som_solib_create_inferior_hook): Update.
* solib-darwin.c (darwin_solib_create_inferior_hook): Update.
* solib-svr4.c (enable_break): Update.
* breakpoint.h (insert_single_step_breakpoint): Add GDBARCH.
* breakpoint.c (insert_single_step_breakpoint): Likewise.
Update callers to insert_single_step_breakpoint:
* alpha-tdep.c (alpha_software_single_step): Update.
* arm-linux-tdep.c (arm_linux_software_single_step): Update.
* arm-tdep.c (arm_software_single_step): Update.
* cris-tdep.c (cris_software_single_step): Update.
* rs6000-aix-tdep.c (rs6000_software_single_step): Update.
* rs6000-tdep.c (ppc_deal_with_atomic_sequence): Update.
* sparc-tdep.c (sparc_software_single_step): Update.
* spu-tdep.c (spu_software_single_step): Update.
* mips-tdep.c (deal_with_atomic_sequence): Add GDBARCH parameter.
Pass it to insert_single_step_breakpoint.
(mips_software_single_step): Pass architecture to
deal_with_atomic_sequence and insert_single_step_breakpoint.
* breakpoint.h (deprecated_insert_raw_breakpoint): Add GDBARCH.
(deprecated_remove_raw_breakpoint): Likewise.
* breakpoint.c (deprecated_insert_raw_breakpoint): Add GDBARCH.
(deprecated_remove_raw_breakpoint): Likewise.
Update callers to deprecated_insert_raw_breakpoint and
deprecated_remove_raw_breakpoint:
* breakpoint.c (single_step_gdbarch): New static variable.
(insert_single_step_breakpoint): Pass GDBARCH parameter to
deprecated_insert_raw_breakpoint. Store it in single_step_gdbarch.
(remove_single_step_breakpoints): Pass architecture stored in
single_step_gdbarch to deprecated_remove_raw_breakpoint.
* rs6000-nat.c (exec_one_dummy_insn): Update.
* solib-irix.c (enable_break, disable_break): Update.
* procfs.c (procfs_mourn_inferior): Update.
(remove_dbx_link_breakpoint): Update.
* breakpoint.h (set_breakpoint): Add GDBARCH parameter.
(set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
* breakpoint.c (set_breakpoint): Add GDBARCH parameter.
(set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
Update callers to set_breakpoint, set_momentary_breakpoint and
set_momentary_breakpoint_at_pc:
* breakpoint.c (set_momentary_breakpoint_at_pc): Update.
(until_break_command): Update.
* infcall.c (call_function_by_hand): Update.
* infcmd.c (finish_backward, finish_forward): Update.
* infrun.c (insert_step_resume_breakpoint_at_sal): Add GDBARCH
parameter. Pass it to set_momentary_breakpoint.
(insert_longjmp_resume_breakpoint): Add GDBARCH parameter.
Pass it to set_momentary_breakpoint_at_pc.
(handle_inferior_event): Update.
(insert_step_resume_breakpoint_at_frame): Update.
(insert_step_resume_breakpoint_at_caller): Update..
* mi/mi-cmd-break.c: Include "arch-utils.h".
(mi_cmd_break_insert): Update.
* target.h (struct target_ops): Add GDBARCH parameter to
to_insert_breakpoint, to_remove_breakpoint, to_insert_hw_breakpoint,
and to_remove_hw_breakpoint members.
(target_insert_breakpoint, target_remove_breakpoint,
target_insert_hw_breakpoint, target_remove_hw_breakpoint): Add GDBARCH
parameter, pass to target routine.
(memory_remove_breakpoint, memory_insert_breakpoint): Add GDBARCH
parameter.
* target.c (debug_to_insert_breakpoint, debug_to_remove_breakpoint,
debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint): Add
GDBARCH parameter, pass to target routine.
(update_current_target): Update function signature.
* breakpoint.c (insert_bp_location, remove_breakpoint,
deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint):
Pass architecture to target_ routines.
Update all implementations of the target breakpoint routines to take
GDBARCH parameter and use it instead of GDBARCH as appropriate:
* corelow.c (ignore): Update.
* exec.c (ignore): Update.
* mem-break.c (memory_insert_breakpoint): Update.
(memory_remove_breakpoint): Update.
* monitor.c (monitor_insert_breakpoint): Update.
(monitor_remove_breakpoint): Update.
* record.c (record_insert_breakpoint): Update.
(record_beneath_to_insert_breakpoint): Update.
(record_remove_breakpoint): Update.
(record_beneath_to_remove_breakpoint): Update.
* remote.c (remote_insert_breakpoint): Update.
(remote_remove_breakpoint): Update.
(remote_insert_hw_breakpoint): Update.
(remote_remove_hw_breakpoint): Update.
* remote-m32r-sdi.c (m32r_insert_breakpoint): Update.
(m32r_remove_breakpoint): Update.
* remote-mips.c (mips_insert_breakpoint): Update.
(mips_remove_breakpoint): Update.
* i386-nat.c (i386_insert_hw_breakpoint): Update.
(i386_remove_hw_breakpoint): Update.
* nto-procfs.c (procfs_insert_breakpoint): Update.
(procfs_remove_breakpoint): Update.
(procfs_insert_hw_breakpoint): Update.
(procfs_remove_hw_breakpoint): Update.
doc/ChangeLog:
* gdbint.texi (Examples of Use of @code{ui_out} functions):
Update example code extrated from breakpoint.c.
2009-07-02 19:12:28 +02:00
|
|
|
|
2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
* defs.h (strlen_paddr, paddr, paddr_nz): Remove.
(paddress): Add GDBARCH parameter.
* utils.c (strlen_paddr, paddr, paddr_nz): Remove.
(paddress): Add GDBARCH parameter, use it instead of current_gdbarch.
* ui-out.h (ui_out_field_core_addr): Add GDBARCH parameter.
* ui-out.c (ui_out_field_core_addr): Add GDBARCH parameter,
use it instead of current_gdbarch.
Update calls to ui_out_field_core_addr to pass architecture:
* ada-lang.c (print_one_exception): Update.
* breakpoint.c (print_one_breakpoint_location,
print_one_exception_catchpoint): Update.
* disasm.c (dump_insns): Update.
* darwin-nat-info.c (darwin_debug_regions_recurse): Update.
* mi/mi-main.c (mi_cmd_data_read_memory): Update.
* mi/mi-symbol-cmds.c: Include "objfiles.h".
(mi_cmd_symbol_list_lines): Update.
* stack.c (print_frame_info, print_frame): Update.
Update callers of paddress to pass architecture:
* ada-tasks.c (info_task): Update.
* ada-valprint.c (ada_val_print_1): Update.
* annotate.c (annotate_source, annotate_frame_begin): Update.
* breakpoint.c (insert_bp_location, describe_other_breakpoints,
mention): Update.
* cli/cli-cmds.c (edit_command, list_command, print_disassembly):
Update.
* corefile.c (memory_error): Update.
* c-valprint.c (print_function_pointer_address, c_val_print): Update.
* disasm.c (dis_asm_print_address): Update.
* exec.c (print_section_info): Update.
* f-valprint.c (f_val_print): Update.
* infcmd.c: Include "arch-utils.h".
(jump_command, program_info): Update.
* linux-fork.c: Include "arch-utils.h".
(info_forks_command): Update.
* m2-valprint.c (print_function_pointer_address,
print_unpacked_pointer, print_variable_at_address,
m2_val_print): Update.
* m32r-rom.c (m32r_load_section, m32r_load, m32r_upload_command):
Update.
* printcmd.c (print_address, print_address_demangle, address_info):
Update.
* p-valprint.c (pascal_val_print): Update.
* source.c: Include "arch-utils.h".
(line_info): Update.
* stack.c (frame_info, print_block_frame_labels): Update.
* symfile.c (add_symbol_file_command, list_overlays_command): Update.
* symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1,
print_symbol, print_partial_symbols, maintenance_info_psymtabs,
maintenance_check_symtabs): Update.
* symtab.c (find_pc_sect_symtab): Update.
* target.c (deprecated_debug_xfer_memory): Update.
* tracepoint.c (scope_info): Update.
* tui/tui-stack.c (tui_make_status_line): Update.
* valprint.c (val_print_string): Update.
Update callers of paddr_nz to use paddress instead (keeping
user-visible output identical):
* alpha-tdep.c (alpha_heuristic_proc_start): Update.
* amd64-tdep.c (fixup_riprel, amd64_displaced_step_copy_insn,
amd64_displaced_step_fixup): Update.
* arch-utils.c (simple_displaced_step_copy_insn): Update.
* auxv.c (fprint_target_auxv): Update.
* breakpoint.c (insert_single_step_breakpoint): Update.
* buildsym.c (finish_block): Update.
* cli/cli-dump.c (restore_section_callback): Update.
* fbsd-nat.c (fbsd_find_memory_regions): Update.
* frame.c (frame_unwind_register_value): Update.
* gcore.c (gcore_create_callback): Update.
* hppa-tdep.c (hppa_frame_cache, hppa_skip_trampoline_code): Update.
* i386-tdep.c (i386_displaced_step_fixup, i386_record_modrm,
i386_record_lea_modrm_addr, i386_record_lea_modrm,
i386_process_record): Update.
* ia64-tdep.c (ia64_frame_this_id, ia64_sigtramp_frame_this_id,
ia64_libunwind_frame_this_id, ia64_libunwind_sigtramp_frame_this_id,
ia64_dummy_id, ia64_access_reg, ia64_access_rse_reg): Update.
* infrun.c (displaced_step_prepare, displaced_step_fixup,
handle_inferior_event, insert_step_resume_breakpoint_at_sal,
insert_longjmp_resume_breakpoint): Update.
* linux-nat.c (linux_nat_find_memory_regions): Update.
* linux-record.c (record_linux_system_call): Update.
* mips-tdep.c (heuristic_proc_start, mips_eabi_push_dummy_call,
mips_n32n64_push_dummy_call, mips_o32_push_dummy_call,
mips_o64_push_dummy_call): Update.
* monitor.c (monitor_error, monitor_remove_breakpoint): Update.
* record.c (record_arch_list_add_mem, record_wait,
record_xfer_partial): Update.
* remote-mips.c (mips_fetch_word, mips_check_lsi_error,
mips_common_breakpoint): Update.
* remote-sim.c (gdbsim_xfer_inferior_memory): Update.
* rs6000-tdep.c (ppc_displaced_step_fixup): Update.
* solib-som.c (som_current_sos): Update.
* symfile.c (load_progress, generic_load): Update.
* symfile-mem.c (add_vsyscall_page): Update.
* valops.c (value_fetch_lazy): Update.
* windows-tdep.c (windows_xfer_shared_library): Update.
Update callers of paddr_nz to use paddress instead (changing
user-visible output to make it more correct):
* dwarf2loc.c (locexpr_describe_location): Update.
* ia64-tdep.c (ia64_memory_insert_breakpoint,
ia64_memory_remove_breakpoint): Update.
* jv-valprint.c (java_value_print): Update.
* m32c-tdep.c (m32c_m16c_address_to_pointer): Update.
* monitor.c (monitor_read_memory): Update.
Update callers of paddr to use paddress instead (changing
user-visible output to make it more correct):
* arm-tdep.c (arm_push_dummy_call): Update.
* breakpoint.c (insert_bp_location, create_thread_event_breakpoint,
create_breakpoint): Update.
* darwin-nat-info.c (darwin_debug_regions): Update.
* dcache.c (dcache_info): Update.
* dsrec.c (load_srec, make_srec): Update.
* dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program,
dwarf2_frame_cache): Update.
* gcore.c (gcore_copy_callback): Update.
* gnu-nat.c (gnu_xfer_memory): Update.
* mips-linux-nat.c (mips_show_dr): Update.
* monitor.c (monitor_write_memory, monitor_insert_breakpoint,
monitor_remove_breakpoint): Update.
* remote.c (compare_sections_command): Update.
* remote-m32r-sdi.c (m32r_xfer_memory, m32r_insert_breakpoint,
m32r_remove_breakpoint, m32r_insert_watchpoint,
m32r_remove_watchpoint): Update.
* sol-thread.c (info_cb): Update.
* symfile.c (load_progress): Update.
Update callers of paddress or paddr_nz to use hex_string instead
(changes output of internal/error/debug messages only):
* dwarf2read.c (dump_die_shallow): Update.
* frame.c (fprint_field, fprint_frame, frame_pc_unwind,
get_frame_func, create_new_frame): Update.
* hppa-tdep.c (find_unwind_entry, unwind_command): Update.
* ia64-tdep.c (get_kernel_table, ia64_find_proc_info_x,
ia64_get_dyn_info_list): Update.
* maint.c (maintenance_translate_address): Update.
* mi/mi-cmd-var.c (mi_cmd_var_create): Update.
* target.c (target_flash_erase): Update.
Update callers of paddr/paddr_nz to use phex/phex_nz instead,
using an appropriate address size. Remove use of strlen_paddr.
* exec.c (exec_files_info): Update.
* i386-nat.c (i386_show_dr): Update.
* remote.c (remote_flash_erase): Update.
* m32r-rom.c (m32r_load_section): Update.
* monitor.c (monitor_vsprintf, monitor_store_register): Update.
* remote.c (remote_check_symbols, remote_search_memory): Update.
* remote-mips.c (mips_request, mips_common_breakpoint): Update.
* scm-valprint.c (scm_ipruk, scm_scmval_print): Update.
* sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Update.
* sh-tdep.c (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs,
sh2a_show_regs, sh2a_nofpu_show_regs, sh3e_show_regs,
sh3_dsp_show_regs, sh4_show_regs, sh4_nofpu_show_regs,
sh_dsp_show_regs): Update.
* xcoffsolib.c (sharedlibrary_command): Update.
* maint.c (maint_print_section_info): Add ADDR_SIZE parameter.
Use hex_string_custom instead of paddr.
(print_bfd_section_info): Pass address size.
(print_objfile_section_info): Likewise.
* annotate.h (annotate_source): Add GDBARCH parameter.
(annotate_frame_begin): Likewise.
* annotate.c (annotate_source): Add GDBARCH parameter.
(annotate_frame_begin): Likewise.
* source.c (identify_source_line): Update call to annotate_source.
* stack.c (print_frame_info, print_frame): Update call to
annotate_frame_begin.
* breakpoint.c (describe_other_breakpoints): Add GDBARCH parameter.
(create_breakpoint, create_ada_exception_breakpoint): Update call.
* stack.c (print_block_frame_labels): Add GDBARCH parameter.
(print_frame_label_vars): Update call.
* symmisc.c (print_partial_symbols): Add GDBARCH parameter.
(dump_psymtab): Update call to print_partial_symbols.
(struct print_symbol_args): Add GDBARCH member.
(dump_symtab_1): Set print_symbol_args architecture member.
(print_symbol): Use it.
* windows-tdep.h (windows_xfer_shared_library): Add GDBARCH
parameter.
* windows-tdep.c (windows_xfer_shared_library): Likewise.
* i386-cygwin-tdep.c (struct cpms_data): Add GDBARCH member.
(core_process_module_section): Pass architecture from cpms_data to
windows_xfer_shared_library.
(windows_core_xfer_shared_libraries): Initialize cmps_data
architecture member.
* windows-nat.c (windows_xfer_shared_libraries): Pass architecture
to windows_xfer_shared_library.
* defs.h (print_address): Add GDBARCH parameter.
* printcmd.c (print_address): Add GDBARCH parameter.
(print_scalar_formatted, do_examine): Update call.
* findcmd.c (find_command): Update call.
* tracepoint.c: Include "arch-utils.h".
(trace_find_line_command): Update call.
* tui/tui-disasm.c (tui_disassemble): Update call.
* value.h (print_address_demangle): Add GDBARCH parameter.
* printcmd.c (print_address_demangle): Add GDBARCH parameter.
* c-valprint.c (print_function_pointer_address, c_val_print):
Update call.
* f-valprint.c (f_val_print): Update call.
* gnu-v3-abi.c (gnuv3_print_method_ptr): Update call.
* jv-valprint.c (java_val_print): Update call.
* m2-valprint.c (print_function_pointer_address, m2_val_print):
Update call.
* p-valprint.c (pascal_val_print): Update call.
* disasm.c (gdb_disassemble_info): Install architecture into
di.application_data field.
testsuite/ChangeLog:
* gdb.threads/tls-shared.exp: Update to locexpr_describe_location
change to prefix TLS offset in hex with 0x.
doc/ChangeLog:
* gdbint.texinfo (Item Output Functions): Update signature
for ui_out_field_core_addr.
2009-07-02 19:21:10 +02:00
|
|
|
|
* gdbint.texinfo (Item Output Functions): Update signature
|
|
|
|
|
for ui_out_field_core_addr.
|
|
|
|
|
|
|
|
|
|
2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Examples of Use of @code{ui_out} functions):
|
* breakpoint.h (struct breakpoint): New member GDBARCH.
* breakpoint.c: Include "arch-utils.h".
(set_raw_breakpoint_without_location): Add GDBARCH parameter.
Use it to set breakpoint architecture.
(set_raw_breakpoint): Add GDBARCH parameter.
(create_internal_breakpoint): Likewise.
(create_catchpoint): Likewise.
(create_fork_vfork_event_catchpoint): Likewise.
(create_breakpoint): Likewise.
(create_breakpoints): Likewise.
(break_command_really): Likewise.
(create_ada_exception_breakpoint): Likewise.
Update local callers to pass architecture:
(create_internal_breakpoint): Update.
(create_overlay_event_breakpoint): Update.
(create_longjmp_master_breakpoint): Update.
(create_thread_event_breakpoint): Update.
(create_solib_event_breakpoint): Update.
(create_catchpoint): Update.
(create_fork_vfork_event_catchpoint): Update.
(set_momentary_breakpoint): Update.
(clone_momentary_breakpoint): Update.
(create_breakpoint): Update.
(create_breakpoints): Update.
(break_command_really): Update.
(break_command_1): Update.
(set_breakpoint): Update.
(watch_command_1): Update.
(catch_fork_command_1): Update.
(catch_exec_commnd_1): Update.
(handle_gnu_v3_exceptions): Update.
(create_ada_exception_breakpoint): Update.
(catch_ada_exception_command): Update.
(catch_assert_command): Update.
(trace_command): Update.
* breakpoint.h (struct bp_location): New member GDBARCH.
* breakpoint.c (get_sal_arch): New function.
(set_raw_breakpoint): Set location architecture.
(add_location_to_breakpoint): Likewise.
(clone_momentary_breakpoint): Likewise.
(watch_command_1): Likewise.
(update_watchpoint): Likewise.
(bp_loc_is_permanent): Use location architecture instead of
current_gdbarch.
(adjust_breakpoint_address): Add GDBARCH parameter; use it
instead of current_gdbarch.
Update callers of adjust_breakpoint_address to pass
breakpoint location architecture:
(set_raw_breakpoint): Update.
(watch_command_1): Update.
* tracepoint.c: (collect_symbol): Add GDBARCH parameter, use instead
of current_gdbarch.
(add_local_symbols): Add GDBARCH parameter. Pass to collect_symbol.
(encode_actions): Pass tracepoint architecture to add_local_symbols
(encode_actions): Use tracepoint architecture instead of
current_gdbarch. Pass it to add_local_symbols and collect_symbol.
* breakpoint.h (struct breakpoint_ops): Replace last_addr parameter
of print_one callback with last_loc.
* breakpoint.c (print_one_breakpoint_location): Replace last_addr
parameter with last_loc.
(print_one_breakpoint): Likewise.
(do_captured_breakpoint_query): Update call.
(breakpoint_1): Pass last_loc instead of last_addr to
print_one_breakpoint. Pass last location architecture instead of
current_gdbarch to set_next_address.
Update all implementations of the print_one callback:
* breakpoint.c (print_one_catch_fork): Update.
(print_one_catch_vfork): Update.
(print_one_catch_exec): Update.
(print_one_exception_catchpoint): Update.
* ada-lang.c (print_one_exception): Update.
(print_one_catch_exception): Update.
(print_one_catch_exception_unhandled): Update.
(print_one_catch_assert): Update.
* breakpoint.c (print_one_breakpoint_location): Add PRINT_ADDRESS_BITS
parameter. Use it instead of gdbarch_addr_bit (current_gdbarch).
(print_one_breakpoint): Add PRINT_ADDRESS_BITS parameter and pass it
to print_one_breakpoint_location.
(breakpoint_address_bits): New function.
(do_captured_breakpoint_query): Compute number of address bits to print
and pass it to print_one_breakpoint.
(breakpoint_1): Likewise. Use it instead of current_gdbarch.
* breakpoint.h (create_thread_event_breakpoint): Add GDBARCH.
* breakpoint.c (create_thread_event_breakpoint): Likewise.
Update callers to create_thread_event_breakpoint:
* aix-thread.c (pd_enable): Update.
* linux-thread-db.c (enable_thread_event): Update.
* breakpoint.h (create_solib_event_breakpoint): Add GDBARCH.
* breakpoint.c (create_solib_event_breakpoint): Likewise.
Update callers to create_solib_event_breakpoint:
* solib-frv.c (enable_break, enable_break2): Update.
* solib-pa64.c (pa64_solib_create_inferior_hook): Update.
* solib-som.c (som_solib_create_inferior_hook): Update.
* solib-darwin.c (darwin_solib_create_inferior_hook): Update.
* solib-svr4.c (enable_break): Update.
* breakpoint.h (insert_single_step_breakpoint): Add GDBARCH.
* breakpoint.c (insert_single_step_breakpoint): Likewise.
Update callers to insert_single_step_breakpoint:
* alpha-tdep.c (alpha_software_single_step): Update.
* arm-linux-tdep.c (arm_linux_software_single_step): Update.
* arm-tdep.c (arm_software_single_step): Update.
* cris-tdep.c (cris_software_single_step): Update.
* rs6000-aix-tdep.c (rs6000_software_single_step): Update.
* rs6000-tdep.c (ppc_deal_with_atomic_sequence): Update.
* sparc-tdep.c (sparc_software_single_step): Update.
* spu-tdep.c (spu_software_single_step): Update.
* mips-tdep.c (deal_with_atomic_sequence): Add GDBARCH parameter.
Pass it to insert_single_step_breakpoint.
(mips_software_single_step): Pass architecture to
deal_with_atomic_sequence and insert_single_step_breakpoint.
* breakpoint.h (deprecated_insert_raw_breakpoint): Add GDBARCH.
(deprecated_remove_raw_breakpoint): Likewise.
* breakpoint.c (deprecated_insert_raw_breakpoint): Add GDBARCH.
(deprecated_remove_raw_breakpoint): Likewise.
Update callers to deprecated_insert_raw_breakpoint and
deprecated_remove_raw_breakpoint:
* breakpoint.c (single_step_gdbarch): New static variable.
(insert_single_step_breakpoint): Pass GDBARCH parameter to
deprecated_insert_raw_breakpoint. Store it in single_step_gdbarch.
(remove_single_step_breakpoints): Pass architecture stored in
single_step_gdbarch to deprecated_remove_raw_breakpoint.
* rs6000-nat.c (exec_one_dummy_insn): Update.
* solib-irix.c (enable_break, disable_break): Update.
* procfs.c (procfs_mourn_inferior): Update.
(remove_dbx_link_breakpoint): Update.
* breakpoint.h (set_breakpoint): Add GDBARCH parameter.
(set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
* breakpoint.c (set_breakpoint): Add GDBARCH parameter.
(set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
Update callers to set_breakpoint, set_momentary_breakpoint and
set_momentary_breakpoint_at_pc:
* breakpoint.c (set_momentary_breakpoint_at_pc): Update.
(until_break_command): Update.
* infcall.c (call_function_by_hand): Update.
* infcmd.c (finish_backward, finish_forward): Update.
* infrun.c (insert_step_resume_breakpoint_at_sal): Add GDBARCH
parameter. Pass it to set_momentary_breakpoint.
(insert_longjmp_resume_breakpoint): Add GDBARCH parameter.
Pass it to set_momentary_breakpoint_at_pc.
(handle_inferior_event): Update.
(insert_step_resume_breakpoint_at_frame): Update.
(insert_step_resume_breakpoint_at_caller): Update..
* mi/mi-cmd-break.c: Include "arch-utils.h".
(mi_cmd_break_insert): Update.
* target.h (struct target_ops): Add GDBARCH parameter to
to_insert_breakpoint, to_remove_breakpoint, to_insert_hw_breakpoint,
and to_remove_hw_breakpoint members.
(target_insert_breakpoint, target_remove_breakpoint,
target_insert_hw_breakpoint, target_remove_hw_breakpoint): Add GDBARCH
parameter, pass to target routine.
(memory_remove_breakpoint, memory_insert_breakpoint): Add GDBARCH
parameter.
* target.c (debug_to_insert_breakpoint, debug_to_remove_breakpoint,
debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint): Add
GDBARCH parameter, pass to target routine.
(update_current_target): Update function signature.
* breakpoint.c (insert_bp_location, remove_breakpoint,
deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint):
Pass architecture to target_ routines.
Update all implementations of the target breakpoint routines to take
GDBARCH parameter and use it instead of GDBARCH as appropriate:
* corelow.c (ignore): Update.
* exec.c (ignore): Update.
* mem-break.c (memory_insert_breakpoint): Update.
(memory_remove_breakpoint): Update.
* monitor.c (monitor_insert_breakpoint): Update.
(monitor_remove_breakpoint): Update.
* record.c (record_insert_breakpoint): Update.
(record_beneath_to_insert_breakpoint): Update.
(record_remove_breakpoint): Update.
(record_beneath_to_remove_breakpoint): Update.
* remote.c (remote_insert_breakpoint): Update.
(remote_remove_breakpoint): Update.
(remote_insert_hw_breakpoint): Update.
(remote_remove_hw_breakpoint): Update.
* remote-m32r-sdi.c (m32r_insert_breakpoint): Update.
(m32r_remove_breakpoint): Update.
* remote-mips.c (mips_insert_breakpoint): Update.
(mips_remove_breakpoint): Update.
* i386-nat.c (i386_insert_hw_breakpoint): Update.
(i386_remove_hw_breakpoint): Update.
* nto-procfs.c (procfs_insert_breakpoint): Update.
(procfs_remove_breakpoint): Update.
(procfs_insert_hw_breakpoint): Update.
(procfs_remove_hw_breakpoint): Update.
doc/ChangeLog:
* gdbint.texi (Examples of Use of @code{ui_out} functions):
Update example code extrated from breakpoint.c.
2009-07-02 19:12:28 +02:00
|
|
|
|
Update example code extrated from breakpoint.c.
|
|
|
|
|
|
2009-06-28 20:53:12 +02:00
|
|
|
|
2009-06-28 Paul Pluzhnikov <ppluzhnikov@google.com>
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-06-28 20:53:12 +02:00
|
|
|
|
* gdb.texinfo (GDB/MI Program Context): @ignore unimplemented
|
|
|
|
|
MI commands.
|
|
|
|
|
(GDB/MI Symbol Query): Likewise.
|
|
|
|
|
(GDB/MI File Commands): Likewise.
|
|
|
|
|
(GDB/MI File Transfer Commands): Likewise.
|
|
|
|
|
(GDB/MI Target Manipulation): Likewise.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Likewise.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
gdb/
* NEWS: Document inlined function support.
* Makefile.in (SFILES): Add inline-frame.c.
(COMMON_OBS): Add inline-frame.o.
* block.c (contained_in): Rewrite to use lexical nesting.
(block_linkage_function): Skip inlined function blocks.
(block_inlined_p): New.
* block.h (struct block): Update comment.
(block_inlined_p): New prototype.
* blockframe.c (get_frame_block): Handle inlined functions.
(get_frame_function): Do not use block_linkage_function.
(block_innermost_frame): Use get_frame_block and contained_in.
* breakpoint.c (watchpoint_check): Remove extra reinit_frame_cache.
Skip over inlined functions. Simplify epilogue check.
(bpstat_check_breakpoint_conditions): Use get_stack_frame_id.
Update comments.
(set_momentary_breakpoint): Only accept non-inlined frames.
(watch_command_1): Use frame_unwind_caller_pc and
frame_unwind_caller_id instead of get_prev_frame.
(until_break_command): Likewise. Use get_stack_frame_id.
* buildsym.c (end_symtab): Set SYMBOL_SYMTAB for block functions.
* dwarf2loc.c (dwarf_expr_frame_base): Use block_linkage_function.
* dwarf2read.c (process_die): Handle DW_TAG_inlined_subroutine.
(read_func_scope, new_symbol): Likewise. Handle arguments specially
for inlined functions without call site information.
(inherit_abstract_dies): Allow tag mismatch for inlined subroutines.
(die_specification): Treat DW_AT_abstract_origin as a specification.
(read_type_die): Handle DW_TAG_inlined_subroutine.
* frame-unwind.c (frame_unwind_init): Add inline_frame_unwind.
* frame.c (fprint_frame_id): Print inline depth.
(fprint_frame_type): Handle INLINE_FRAME and SENTINEL_FRAME.
(skip_inlined_frames, get_stack_frame_id): New.
(frame_unwind_caller_id): Use skip_inlined_frames.
(frame_id_inlined_p): New.
(frame_id_eq): Make the logic match the comments. Add inline_depth
check.
(frame_id_inner): Handle inlined functions.
(frame_unwind_pc): New function, copied from frame_unwind_caller_pc.
(frame_unwind_caller_pc): Use skip_inlined_frames and frame_unwind_pc.
(get_prev_frame_1): Check for inline frames. Split out frame
allocation to get_prev_frame_raw.
(get_prev_frame_raw): New function.
(get_prev_frame): Handle inline frames.
(get_frame_pc): Use frame_unwind_pc.
(get_frame_address_in_block): Skip inlined frames on both sides.
(pc_notcurrent): Delete.
(find_frame_sal): Rewrite to handle inline call sites. Use
get_frame_address_in_block.
(deprecated_update_frame_pc_hack): Make static.
* frame.h: Update comments.
(struct frame_id): Add inline_depth.
(enum frame_type): Add INLINE_FRAME.
(frame_id_inlined_p, get_stack_frame_id): New prototypes.
* gdbthread.h (struct thread_info): Add step_stack_frame_id field.
* infcmd.c (set_step_frame): New function.
(step_once): Use set_step_frame. Handle inlined functions.
(until_next_command): Use set_step_frame.
(finish_backward), finish_forward): Use get_stack_frame_id.
(finish_command): Support inlined functions.
* inferior.h (set_step_info): New prototype.
* infrun.c (RESUME_ALL): Use minus_one_ptid.
(clear_proceed_status): Clear step_stack_frame_id.
(init_wait_for_inferior): Call clear_inline_frame_state.
(init_execution_control_state): Make static.
(set_step_info): New function.
(init_thread_stepping_state): Do not set the symtab or line here.
(stepped_in_from): New function.
(handle_inferior_event): Handle inlined functions. Use set_step_info.
(insert_step_resume_breakpoint_at_frame): Use get_stack_frame_id.
(struct inferior_status): Add step_stack_frame_id.
(save_inferior_status, restore_inferior_status): Save and restore
step_stack_frame_id.
* inline-frame.c, inline-frame.h: New files.
* minsyms.c (prim_record_minimal_symbol_and_info): Use XCALLOC.
* regcache.c (regcache_write_pc): Call reinit_frame_cache.
* s390-tdep.c (s390_prologue_frame_unwind_cache): Handle INLINE_FRAME.
* stack.c (frame_show_address): New.
(print_frame_info, print_frame): Use it.
(find_frame_funname): Use get_frame_function. Handle inlined blocks.
(frame_info): Mark inlined functions.
(backtrace_command_1): Use get_current_user_frame.
(print_frame_local_vars, print_frame_label_vars): Update comments.
(return_command): Refuse inlined functions.
* symtab.c (lookup_symbol_aux_local): Stop at inlined function
boundaries.
(find_function_start_sal): Avoid inlined functions.
(completion_list_add_fields): New function.
(default_make_symbol_completion_list): Use it. Use block_static_block
and block_global_block. Check for inlined functions.
(skip_prologue_using_sal): Avoid line number comparison across
inlining.
* symtab.h (struct symbol): Add is_inlined.
(SYMBOL_INLINED): New.
* target.c (target_resume): Call clear_inline_frame_state.
* valops.c (value_of_variable): Check block_inlined_p.
gdb/doc/
* gdb.texinfo (Debugging Optimized Code): New chapter.
(Compiling for Debugging): Reference it. Move some
text to the new section.
gdb/testsuite/
* gdb.base/break.exp: Add an XFAIL for gcc/36748.
* gdb.cp/annota2.exp: Accept frames-invalid in more places.
* gdb.opt/Makefile.in (EXECUTABLES): Update.
* gdb.opt/clobbered-registers-O2.exp: Update to GPL v3.
* gdb.opt/inline-bt.c, gdb.opt/inline-bt.exp,
gdb.opt/inline-cmds.c, gdb.opt/inline-cmds.exp,
gdb.opt/inline-locals.c, gdb.opt/inline-locals.exp,
gdb.opt/inline-markers.c: New files.
* lib/gdb.exp (skip_inline_frame_tests): New function.
(skip_inline_var_tests): New function.
2009-06-28 02:20:24 +02:00
|
|
|
|
2009-06-27 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Optimized Code): New chapter.
|
|
|
|
|
(Compiling for Debugging): Reference it. Move some
|
|
|
|
|
text to the new section.
|
|
|
|
|
|
2009-06-15 14:11:37 +02:00
|
|
|
|
2009-06-15 Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* doc/gdb.texinfo (Calling): Document
|
|
|
|
|
set-unwind-on-terminating-exception usage.
|
|
|
|
|
|
2009-06-11 13:57:46 +02:00
|
|
|
|
2009-06-11 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (All-Stop): Document new 'set schedule-multiple'
|
|
|
|
|
command.
|
|
|
|
|
|
2009-06-08 00:33:25 +02:00
|
|
|
|
2009-06-07 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete all
|
|
|
|
|
references.
|
|
|
|
|
|
2009-06-04 17:15:48 +02:00
|
|
|
|
2009-06-04 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Rename formal parameters to gdbarch function
|
|
|
|
|
protoypes from "current_gdbarch" to "gdbarch".
|
|
|
|
|
|
2009-05-28 18:49:55 +02:00
|
|
|
|
2009-05-28 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Change get_parameter to parameter.
|
|
|
|
|
|
2009-05-28 03:09:20 +02:00
|
|
|
|
2009-05-27 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Document "python"
|
|
|
|
|
feature.
|
|
|
|
|
(GDB/MI Variable Objects): Document -var-set-visualizer.
|
|
|
|
|
|
|
|
|
|
2009-04-02 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Document "python"
|
|
|
|
|
feature.
|
|
|
|
|
(GDB/MI Variable Objects): Document -var-set-visualizer.
|
|
|
|
|
|
2009-05-28 03:05:14 +02:00
|
|
|
|
2009-05-27 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Objfiles In Python): Reference pretty printing.
|
|
|
|
|
(Pretty Printing): New node.
|
|
|
|
|
(Selecting Pretty-Printers): Likewise.
|
|
|
|
|
(Python API): Update.
|
|
|
|
|
(Output Formats): Document /r format.
|
|
|
|
|
|
2009-05-28 02:47:20 +02:00
|
|
|
|
2009-05-27 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Types In Python): New node.
|
|
|
|
|
(Values From Inferior): "type" is now an attribute.
|
|
|
|
|
(Python API): Update.
|
|
|
|
|
|
2009-05-28 02:40:24 +02:00
|
|
|
|
2009-05-27 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
Phil Muldoon <pmuldoon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add @syncodeindex for `tp'.
|
|
|
|
|
(Python API): Update.
|
|
|
|
|
(Auto-loading): New node.
|
|
|
|
|
(Objfiles In Python): New node.
|
|
|
|
|
|
2009-05-15 18:53:45 +02:00
|
|
|
|
2009-05-15 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Document libthread-db-search-path.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2009-05-14 23:41:43 +02:00
|
|
|
|
2009-05-15 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI General Design): Break up into four nodes.
|
|
|
|
|
|
2009-05-12 18:51:13 +02:00
|
|
|
|
2009-05-12 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document 'set/show debug gnu-nat'. Replace 'maint
|
|
|
|
|
show-debug-regs' docs by 'maint set show-debug-regs' and 'maint
|
|
|
|
|
show show-debug-regs' docs.
|
|
|
|
|
|
2009-05-08 11:47:54 +02:00
|
|
|
|
2009-05-08 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Process Record and Replay): Add description of
|
|
|
|
|
reverse execution.
|
|
|
|
|
|
2009-05-07 20:40:44 +02:00
|
|
|
|
2009-05-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Adding support for debugging core files): New node.
|
|
|
|
|
(Native Debugging): Remove the ``Native core file Support'' section.
|
|
|
|
|
|
2009-05-01 11:11:25 +02:00
|
|
|
|
2009-05-01 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Process Record and Replay): Improve and clarify.
|
|
|
|
|
Add index entries.
|
|
|
|
|
|
2009-04-30 05:24:48 +02:00
|
|
|
|
2009-04-30 Hui Zhu <teawater@gmail.com>
|
2010-03-30 17:45:16 +02:00
|
|
|
|
Michael Snyder <msnyder@vmware.com>
|
2009-04-30 05:24:48 +02:00
|
|
|
|
|
2009-05-01 11:11:25 +02:00
|
|
|
|
* gdb.texinfo: (Process Record and Replay): Add documentation for
|
|
|
|
|
process record and replay.
|
2009-04-30 05:24:48 +02:00
|
|
|
|
|
2009-04-29 09:51:33 +02:00
|
|
|
|
2009-04-29 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Macros): Note command-line for `info macro'. Append
|
|
|
|
|
a new part on command-line defined macros.
|
|
|
|
|
|
2009-04-25 11:56:33 +02:00
|
|
|
|
2009-04-25 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code) <disassemble-next-line>: Improve and
|
|
|
|
|
clarify the wording.
|
|
|
|
|
|
2009-04-23 23:28:20 +02:00
|
|
|
|
2009-04-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Data Files): New node.
|
|
|
|
|
(GDB Files): Update menu.
|
|
|
|
|
|
2009-04-23 20:46:14 +02:00
|
|
|
|
2009-04-23 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Defining Other Architecture Features): Remove
|
2009-05-07 01:43:41 +02:00
|
|
|
|
entry for PROCESS_LINENUMBER_HOOK.
|
2009-04-23 20:46:14 +02:00
|
|
|
|
|
2009-04-22 19:24:59 +02:00
|
|
|
|
2009-04-22 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Program Execution): Document -exec-jump.
|
|
|
|
|
|
2009-04-22 08:09:18 +02:00
|
|
|
|
2009-04-22 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (disassemble-next-line): Set the default of
|
|
|
|
|
disassemble-next-line to off.
|
|
|
|
|
|
gdb:
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
--with-htmldir): New.
* configure: Regenerate.
gdb/doc:
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
--with-htmldir): New.
* configure: Regenerate.
* Makefile.in (datarootdir, docdir): Define.
(gdb.dvi, gdb.pdf): Use same -I options as for building gdb.info
instead of $(SET_TEXINPUTS).
(gdbint.dvi, gdbint.pdf): Use same -I options as for building
gdbint.info instead of $(SET_TEXINPUTS).
(gdbint/index.html): Use same -I options as for building
gdbint.info.
(stabs.dvi, stabs.pdf): Use same -I options as for building
stabs.info instead of $(SET_TEXINPUTS).
(stabs/index.html): Use same -I options as for building
stabs.info.
(annotate.dvi, annotate.pdf): Use same -I options as for building
annotate.info instead of $(SET_TEXINPUTS).
(annotate/index.html): Use same -I options as for building
annotate.info.
2009-04-21 22:13:08 +02:00
|
|
|
|
2009-04-21 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
|
|
|
|
|
--with-htmldir): New.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* Makefile.in (datarootdir, docdir): Define.
|
|
|
|
|
(gdb.dvi, gdb.pdf): Use same -I options as for building gdb.info
|
|
|
|
|
instead of $(SET_TEXINPUTS).
|
|
|
|
|
(gdbint.dvi, gdbint.pdf): Use same -I options as for building
|
|
|
|
|
gdbint.info instead of $(SET_TEXINPUTS).
|
|
|
|
|
(gdbint/index.html): Use same -I options as for building
|
|
|
|
|
gdbint.info.
|
|
|
|
|
(stabs.dvi, stabs.pdf): Use same -I options as for building
|
|
|
|
|
stabs.info instead of $(SET_TEXINPUTS).
|
|
|
|
|
(stabs/index.html): Use same -I options as for building
|
|
|
|
|
stabs.info.
|
|
|
|
|
(annotate.dvi, annotate.pdf): Use same -I options as for building
|
|
|
|
|
annotate.info instead of $(SET_TEXINPUTS).
|
|
|
|
|
(annotate/index.html): Use same -I options as for building
|
|
|
|
|
annotate.info.
|
|
|
|
|
|
2009-04-21 18:31:06 +02:00
|
|
|
|
2009-04-21 David Daney <ddaney@caviumnetworks.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (maint show-debug-regs): Remove mention of x86.
|
|
|
|
|
|
2009-04-21 12:13:05 +02:00
|
|
|
|
2009-04-21 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Source Path): Document --with-relocated-sources.
|
|
|
|
|
|
2009-04-18 19:11:02 +02:00
|
|
|
|
2009-04-18 Carlos O'Donell <carlos@codesourcery.com>
|
2010-03-30 17:45:16 +02:00
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
2009-04-18 19:11:02 +02:00
|
|
|
|
|
|
|
|
|
* Makefile.in (MAKEHTML): Set to makeinfo --html.
|
|
|
|
|
(MAKEHTMLFLAGS): Set to empty.
|
|
|
|
|
(html__strip_dir): Define.
|
|
|
|
|
(HTMLFILES): Define.
|
|
|
|
|
(HTMLFILES_INSTALL): Define.
|
|
|
|
|
(install-html): Copy new automake rule.
|
|
|
|
|
(html): Depend on $(HTMLFILES).
|
|
|
|
|
(gdb_toc.html): Rename to gdb/index.html.
|
|
|
|
|
(gdbint_toc.html): Rename to gdbint/index.html.
|
|
|
|
|
(stabs_toc.html): Rename to stabs/index.html.
|
|
|
|
|
(annotate_toc.html): Rename to annotate/index.html.
|
|
|
|
|
|
gdb:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
* configure: Regenerate.
* Makefile.in: Set datarootdir, docdir, htmldir, and pdfdir from
configure substitutions.
(FLAGS_TO_PASS): Add datarootdir, docdir, and htmldir.
gdb/doc:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Set pdfdir and htmldir from configure
substitutions.
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
* configure: Regenerate.
readline:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add html target. Add dummy install-html and
install-pdf targets.
sim:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add dummy install-pdf, html, and
install-html targets.
2009-04-17 19:44:05 +02:00
|
|
|
|
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Set pdfdir and htmldir from configure
|
|
|
|
|
substitutions.
|
|
|
|
|
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2009-04-16 19:42:00 +02:00
|
|
|
|
2009-04-16 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Remove entry for PROC_NAME_FMT.
|
|
|
|
|
This macro is no longer used.
|
|
|
|
|
|
2009-04-16 00:20:32 +02:00
|
|
|
|
2009-04-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Character Sets): Document default character set.
|
|
|
|
|
|
2009-04-14 20:18:41 +02:00
|
|
|
|
2009-04-14 Pierre Muller <muller@ics.u-strasbg.fr>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Change server name from sources.redhat.com to
|
|
|
|
|
sourceware.org throughout.
|
|
|
|
|
|
2009-04-09 22:11:57 +02:00
|
|
|
|
2009-04-09 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Rewrite a paragraph to avoid a warning
|
|
|
|
|
about a missing dot or coma after @xref.
|
|
|
|
|
|
2009-04-02 17:56:08 +02:00
|
|
|
|
2009-04-02 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Add a parameter in frame 1 of the first
|
|
|
|
|
example, and add a small explanation about it.
|
|
|
|
|
(Print Settings): Change the documentation of the "set print
|
|
|
|
|
frame-arguments" to reflect the fact that the default is now "scalars".
|
|
|
|
|
|
2009-04-02 17:54:50 +02:00
|
|
|
|
2009-04-02 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Add kindex for command "set
|
|
|
|
|
print frame-arguments".
|
|
|
|
|
|
2009-03-31 18:51:02 +02:00
|
|
|
|
2009-03-31 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ada Tasks): Add documentation about task-specific
|
|
|
|
|
breakpoints.
|
|
|
|
|
(Set Breaks): Add reference to thread-specific and task-specific
|
|
|
|
|
breakpoints.
|
|
|
|
|
|
2009-03-31 18:33:37 +02:00
|
|
|
|
2009-03-31 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ada Tasks): Remove the documentation about
|
|
|
|
|
the "Running" state, as this state has been eliminated.
|
|
|
|
|
Now all runnable tasks are shown as "Runnable".
|
|
|
|
|
|
2009-03-30 Stan Shebs <stan@codesourcery.com>
Make tracepoints into a type of breakpoint.
* breakpoint.h (enum bptype): Add bp_tracepoint.
(struct breakpoint): Add fields step_count, pass_count, actions.
(get_tracepoint, get_tracepoint_by_number): Declare.
(all_tracepoints): Declare.
* breakpoint.c: Include tracepoint.h, readline.h.
(ALL_TRACEPOINTS): Move here from tracepoint.c.
(tracepoint_count): Ditto.
(should_be_inserted): GDB does not insert tracepoints itself.
(print_it_typical): Add tracepoint case.
(bpstat_what): Ditto.
(print_one_breakpoint_location): Ditto, and add printing for
pass count, step count, and action list.
(user_settable_breakpoint): Add tracepoint case.
(allocate_bp_location): Ditto.
(set_breakpoint_location_function): Ditto.
(disable_breakpoints_in_shlibs): Ditto.
(mention): Ditto.
(break_command_really): Add argument traceflag, use to choose
basic breakpoint type.
(break_command_1): Pass extra argument.
(set_breakpoint, handle_gnu_v3_exceptions): Ditto.
(breakpoint_re_set_one): Add tracepoint case.
(disable_command, enable_command): Ditto.
(set_tracepoint_count): Move here from tracepoint.c.
(trace_command): Move here from tracepoint.c and use
break_command_really.
(tracepoints_info): Move here from tracepoint.c and call
breakpoints_info.
(enable_trace_command): Move here from tracepoint.c and call
enable_command.
(disable_trace_command): Move here from tracepoint.c and call
disable_command.
(delete_trace_command): Move here from tracepoint.c and call
delete_breakpoint.
(trace_pass_command): Move here from tracepoint.c.
(get_tracepoint_by_number): Ditto.
(tracepoint_save_command): Ditto.
(get_tracepoint): New function.
(all_tracepoints): New function.
(_initialize_breakpoint): Move tracepoint init from tracepoint.c,
deprecate "enable trace" and "disable trace" commands.
* tracepoint.h (struct tracepoint): Remove.
(tracepoint_chain): Remove decl.
(deprecated_create_tracepoint_hook): Remove decl.
(deprecated_delete_tracepoint_hook): Remove decl.
(deprecated_modify_tracepoint_hook): Remove decl.
(ALL_TRACEPOINTS, ALL_TRACEPOINTS_SAFE): Remove.
(free_actions): Update signature.
(validate_actionline): Update signature.
(end_actions_pseudocommand): Declare.
(while_stepping_pseudocommand): Declare.
* tracepoint.c: Include breakpoint.h.
(tracepoint_chain, tracepoint_count): Remove.
(free_actions, make_cleanup_free_actions): Update signature.
(trace_command, set_raw_tracepoint): Remove.
(trace_mention): Remove.
(tracepoints_info): Remove.
(tracepoint_operation, map_args_over_tracepoints): Remove.
(get_tracepoint_by_number): Remove.
(enable_trace_command, disable_trace_command): Remove.
(delete_trace_command, trace_pass_command): Remove.
(trace_actions_command, read_actions): Update signature.
(validate_actionline): Update signature, use bp loc.
(encode_actions): Ditto.
(download_tracepoint): New function, body of trace_start_command.
(trace_start_command): Call it, use all_tracepoints.
(tracepoint_save_command): Remove.
(tracepoint_dump_command): Use get_tracepoint.
(end_actions_pseudocommand): Make globally visible.
(while_stepping_pseudocommand): Ditto.
(_initialize_tracepoint): Move command definitions to breakpoint.c.
doc/
* gdb.texinfo (Tracepoints): Describe tracepoints as a
special case of breakpoints.
(Enable and Disable Tracepoints): Mention deprecation.
(Listing Tracepoints): Update description and example.
testsuite/
* gdb.trace/actions.exp: Update to match new info trace format.
* gdb.trace/deltrace.exp: Ditto.
* gdb.trace/infotrace.exp: Ditto.
* gdb.trace/passcount.exp: Ditto.
* gdb.trace/save-trace.exp: Ditto.
* gdb.trace/while-stepping.exp: Ditto.
* gdb.trace/tracecmd.exp: Ditto, plus don't allow pending option.
gdbtk/
* generic/gdbtk-bp.c (gdb_actions_command): Update to handle
tracepoints as breakpoints.
(gdb_get_tracepoint_info): Ditto, plus use get_tracepoint and
breakpoint locations.
(tracepoint_exists): Ditto, plus use all_tracepoints.
2009-03-31 07:08:37 +02:00
|
|
|
|
2009-03-30 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoints): Describe tracepoints as a
|
|
|
|
|
special case of breakpoints.
|
|
|
|
|
(Enable and Disable Tracepoints): Mention deprecation.
|
|
|
|
|
(Listing Tracepoints): Update description and example.
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
2009-03-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Frames in Python): New node.
|
|
|
|
|
(Python API): Update.
|
|
|
|
|
|
2009-03-29 23:11:11 +02:00
|
|
|
|
2009-03-29 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Change gdb.Value.address
|
|
|
|
|
from a method to an attribute.
|
|
|
|
|
|
2009-03-26 21:58:11 +01:00
|
|
|
|
2009-03-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Document is_optimized_out
|
|
|
|
|
attribute.
|
|
|
|
|
|
2009-03-25 22:53:11 +01:00
|
|
|
|
2009-03-25 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (thread_exit): Add "silent" parameter.
|
|
|
|
|
|
2009-03-22 19:06:07 +01:00
|
|
|
|
2009-03-22 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (about_to_proceed): New.
|
|
|
|
|
|
From Jeremy Bennett <jeremy.bennett@embecosm.com>:
* gdbint.texinfo (everywhere): Use braces {} in @deftypeXX type
field throughout to handle types with spaces in them. Fix typos
found by aspell.
(Summary, Requirements, Contributors): New first chapter,
"Summary" added, old Requirements section moved there, and new
section, "Contributors" added.
(Initializing a New Architecture, Register Representation)
(Frame Interpretation, Inferior Call Setup, Adding a New Target)
(Porting gdb): These sections extended and updated.
(Compiler Characteristics): This section (empty) deleted.
(Defining Other Architecture Features): This section renamed and
duplicate material removed from (formerly "Target Conditionals").
Use braces {} in @deftypeXX type field throughout to handle types
with spaces in them. Typos found by aspell fixed.
* stack_frame.svg: New file, source of image for gdbint.texinfo.
* stack_frame.pdf: Version of image for PDF output.
* stack_frame.png: Version of image for HTML output and for Emacs.
* stack_frame.txt: Version of image for Info output.
2009-03-21 11:24:35 +01:00
|
|
|
|
2009-03-21 Jeremy Bennett <jeremy.bennett@embecosm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (everywhere): Use braces {} in @deftypeXX type
|
|
|
|
|
field throughout to handle types with spaces in them. Fix typos
|
|
|
|
|
found by aspell.
|
|
|
|
|
(Summary, Requirements, Contributors): New first chapter,
|
|
|
|
|
"Summary" added, old Requirements section moved there, and new
|
|
|
|
|
section, "Contributors" added.
|
|
|
|
|
(Initializing a New Architecture, Register Representation)
|
|
|
|
|
(Frame Interpretation, Inferior Call Setup, Adding a New Target)
|
|
|
|
|
(Porting gdb): These sections extended and updated.
|
|
|
|
|
(Compiler Characteristics): This section (empty) deleted.
|
|
|
|
|
(Defining Other Architecture Features): This section renamed and
|
|
|
|
|
duplicate material removed from (formerly "Target Conditionals").
|
|
|
|
|
Use braces {} in @deftypeXX type field throughout to handle types
|
|
|
|
|
with spaces in them. Typos found by aspell fixed.
|
|
|
|
|
|
|
|
|
|
* stack_frame.svg: New file, source of image for gdbint.texinfo.
|
|
|
|
|
* stack_frame.pdf: Version of image for PDF output.
|
|
|
|
|
* stack_frame.png: Version of image for HTML output and for Emacs.
|
|
|
|
|
* stack_frame.txt: Version of image for Info output.
|
2009-03-21 15:35:04 +01:00
|
|
|
|
* stack_frame.eps: Version of image for TeX DVI output.
|
From Jeremy Bennett <jeremy.bennett@embecosm.com>:
* gdbint.texinfo (everywhere): Use braces {} in @deftypeXX type
field throughout to handle types with spaces in them. Fix typos
found by aspell.
(Summary, Requirements, Contributors): New first chapter,
"Summary" added, old Requirements section moved there, and new
section, "Contributors" added.
(Initializing a New Architecture, Register Representation)
(Frame Interpretation, Inferior Call Setup, Adding a New Target)
(Porting gdb): These sections extended and updated.
(Compiler Characteristics): This section (empty) deleted.
(Defining Other Architecture Features): This section renamed and
duplicate material removed from (formerly "Target Conditionals").
Use braces {} in @deftypeXX type field throughout to handle types
with spaces in them. Typos found by aspell fixed.
* stack_frame.svg: New file, source of image for gdbint.texinfo.
* stack_frame.pdf: Version of image for PDF output.
* stack_frame.png: Version of image for HTML output and for Emacs.
* stack_frame.txt: Version of image for Info output.
2009-03-21 11:24:35 +01:00
|
|
|
|
|
2009-03-21 09:33:14 +01:00
|
|
|
|
2009-03-21 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Character Sets): Fix last change.
|
|
|
|
|
|
2009-03-21 04:13:02 +01:00
|
|
|
|
2009-03-21 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Fix optional arguments
|
|
|
|
|
markup.
|
|
|
|
|
(Commands In Python): Adjust argument names of gdb.Command.__init__
|
|
|
|
|
to what the function accepts as keywords.
|
|
|
|
|
|
gdb/
2009-03-05 Tom Tromey <tromey@redhat.com>
Add support for convenience functions in Python.
* Makefile.in (SUBDIR_PYTHON_OBS): Add python-function.o.
(SUBDIR_PYTHON_SRCS): Add python-function.c.
(python-function.o): New target.
* eval.c: Include "python/python.h" and <ctype.h>.
(evaluate_subexp_standard): Handle values of type
TYPE_CODE_INTERNAL_FUNCTION.
* gdbtypes.h (type_code): Add TYPE_CODE_INTERNAL_FUNCTION.
* parse.c (write_exp_string): Remove duplicate word in comment.
* python/python-function.c: New file.
* python/python-internal.h (gdbpy_initialize_functions): Add
prototype.
* python/python.c (_initialize_python): Call
gdbpy_initialize_functions.
* valprint.c (value_check_printable): Handle values of type
TYPE_CODE_INTERNAL_FUNCTION.
* value.c: Include "cli/cli-decode.h".
(internal_function): New struct.
(functionlist, internal_fn_type): New static variables.
(lookup_only_internalvar,
lookup_internalvar): Add const qualifier to name argument.
(create_internalvar): Likewise. Initialize new field.
(set_internal_var): Fix typo in comment. Don't allow assignment
to canonical variable.
(value_create_internal_function, value_internal_function_name,
call_internal_function, function_command, function_destroyer,
add_internal_function): New functions.
(_initialize_values): Create `function' placeholder command.
Initialize internal_fn_type.
* value.h (lookup_only_internalvar, create_internalvar,
lookup_internalvar): Add const qualifier to name argument.
(internal_function_fn, add_internal_function, call_internal_function,
value_internal_function_name): Add prototypes.
(struct internalvar) <canonical>: New field.
gdb/doc/
2008-03-05 Tom Tromey <tromey@redhat.com>
* gdb.texinfo (Convenience Vars): Document convenience functions.
(Functions In Python): New node.
(Python API): Update.
gdb/testsuite/
2009-03-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
* gdb.python/python-function.exp: New file.
2009-03-21 04:03:56 +01:00
|
|
|
|
2008-03-20 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience Vars): Document convenience functions.
|
|
|
|
|
(Functions In Python): New node.
|
|
|
|
|
(Python API): Update.
|
|
|
|
|
|
gdb:
2009-03-19 Tom Tromey <tromey@redhat.com>
Julian Brown <julian@codesourcery.com>
PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
PR i18n/9401, PR exp/9613:
* NEWS: Update
* value.h (value_typed_string): Declare.
(val_print_string): Update.
* valprint.h (print_char_chars): Update.
* valprint.c (print_char_chars): Add type argument. Update.
(val_print_string): Likewise.
* valops.c (value_typed_string): New function.
* utils.c (host_char_to_target): New function.
(parse_escape): Use host_char_to_target, host_hex_value. Update.
Remove '^' case.
(no_control_char_error): Remove.
* typeprint.c (print_type_scalar): Update.
* scm-valprint.c (scm_scmval_print): Update.
* scm-lang.h (scm_printchar, scm_printstr): Update.
* scm-lang.c (scm_printchar): Add type argument.
(scm_printstr): Likewise.
* printcmd.c (print_formatted): Update.
(print_scalar_formatted): Update.
(printf_command) <wide_string_arg, wide_char_arg>: New constants.
Handle '%lc' and '%ls'.
* parser-defs.h (struct typed_stoken): New type.
(struct stoken_vector): Likewise.
(write_exp_string_vector): Declare.
* parse.c (write_exp_string_vector): New function.
* p-valprint.c (pascal_val_print): Update.
* p-lang.h (is_pascal_string_type, pascal_printchar,
pascal_printstr): Update.
* p-lang.c (is_pascal_string_type): Remove 'char_size' argument.
Add 'char_type' argument.
(pascal_emit_char): Add type argument.
(pascal_printchar): Likewise.
(pascal_printstr): Likewise.
* objc-lang.c (objc_emit_char): Add type argument.
(objc_printchar): Likewise.
(objc_printstr): Likewise.
* macroexp.c (get_character_constant): Handle unicode characters.
Use c_parse_escape.
(get_string_literal): Handle unicode strings. Use
c_parse_escape.
* m2-valprint.c (print_unpacked_pointer): Update.
(m2_print_array_contents): Update.
(m2_val_print): Update.
* m2-lang.c (m2_emit_char): Add type argument.
(m2_printchar): Likewise.
(m2_printstr): Likewise.
* language.h (struct language_defn) <la_printchar>: Add type
argument.
<la_printstr, la_emitchar>: Likewise.
(LA_PRINT_CHAR): Likewise.
(LA_PRINT_STRING): Likewise.
(LA_EMIT_CHAR): Likewise.
* language.c (unk_lang_emit_char): Add type argument.
(unk_lang_printchar): Likewise.
(unk_lang_printstr): Likewise.
* jv-valprint.c (java_val_print): Update.
* jv-lang.c (java_emit_char): Add type argument.
* f-valprint.c (f_val_print): Update.
* f-lang.c (f_emit_char): Add type argument.
(f_printchar): Likewise.
(f_printstr): Likewise.
* expprint.c (print_subexp_standard): Update.
* charset.h (target_wide_charset): Declare.
(c_target_char_has_backslash_escape, c_parse_backslash,
host_char_print_literally, host_char_to_target,
target_char_to_host, target_char_to_control_char): Remove.
(enum transliterations): New type.
(convert_between_encodings): Declare.
(HOST_ESCAPE_CHAR): New define.
(host_letter_to_control_character, host_hex_value): Declare.
(enum wchar_iterate_result): New enum.
(struct wchar_iterator): Declare.
(make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
wchar_push_back): Declare.
* charset-list.h: New file.
* c-valprint.c (textual_name): New function.
(textual_element_type): Handle wide character types.
(c_val_print): Pass original type to textual_element_type. Handle
wide character types.
(c_value_print): Use textual_element_type. Pass original type of
value to val_print.
* c-lang.h (enum c_string_type): New type.
(c_printchar, c_printstr): Update.
* c-lang.c (classify_type): New function.
(print_wchar): Likewise.
(c_emit_char): Add type argument. Handle wide characters.
(c_printchar): Likewise.
(c_printstr): Add type argument. Handle wide and multibyte
character sets.
(convert_ucn): New function.
(emit_numeric_character): Likewise.
(convert_octal): Likewise.
(convert_hex): Likewise.
(ADVANCE): New macro.
(convert_escape): New function.
(parse_one_string): Likewise.
(evaluate_subexp_c): Likewise.
(exp_descriptor_c): New global.
(c_language_defn): Use exp_descriptor_c.
(cplus_language_defn): Likewise.
(asm_language_defn): Likewise.
(minimal_language_defn): Likewise.
(charset_for_string_type): New function.
* c-exp.y (%union): Add 'svec' and 'tsval'.
(CHAR): New token.
(exp): Add CHAR production.
(string_exp): Rewrite.
(exp) <string_exp>: Rewrite.
(tempbuf): Now global.
(tempbuf_init): New global.
(parse_string_or_char): New function.
(yylex) <tempbuf>: Now global.
<tokptr, tempbufindex, tempbufsize, token_string, class_prefix>:
Remove.
Handle 'u', 'U', and 'L' prefixes. Call parse_string_or_char.
(c_parse_escape): New function.
* auxv.c (fprint_target_auxv): Update.
* ada-valprint.c (ada_emit_char): Add type argument.
(ada_printchar): Likewise.
(ada_print_scalar): Update.
(printstr): Add type argument. Update calls to ada_emit_char.
(ada_printstr): Add type argument.
(ada_val_print_array): Update.
(ada_val_print_1): Likewise.
* ada-lang.c (emit_char): Add type argument.
* ada-lang.h (ada_emit_char, ada_printchar, ada_printstr): Add
type arguments.
* gdb_locale.h: Include langinfo.h.
* charset.c (_initialize_charset): Set default host charset from
the locale. Don't register charsets. Add target-wide-charset
commands. Call find_charset_names.
(struct charset, struct translation): Remove.
(GDB_DEFAULT_HOST_CHARSET): Remove.
(GDB_DEFAULT_TARGET_WIDE_CHARSET): New define.
(target_wide_charset_name): New global.
(show_host_charset_name): Handle "auto".
(show_target_wide_charset_name): New function.
(host_charset_enum, target_charset_enum): Remove.
(charset_enum): New global.
(all_charsets, register_charset, lookup_charset, all_translations,
register_translation, lookup_translation): Remove.
(simple_charset, ascii_print_literally, ascii_to_control): Remove.
(iso_8859_print_literally, iso_8859_to_control,
iso_8859_family_charset): Remove.
(ebcdic_print_literally, ebcdic_to_control,
ebcdic_family_charset): Remove.
(struct cached_iconv, check_iconv_cache, cached_iconv_convert,
register_iconv_charsets): Remove.
(target_wide_charset_be_name, target_wide_charset_le_name): New
globals.
(identity_either_char_to_other): Remove.
(set_be_le_names, validate): New functions.
(backslashable, backslashed, represented): Remove.
(default_c_target_char_has_backslash_escape): Remove.
(default_c_parse_backslash, iconv_convert): Remove.
(ascii_to_iso_8859_1_table, ascii_to_ebcdic_us_table,
ascii_to_ibm1047_table, iso_8859_1_to_ascii_table,
iso_8859_1_to_ebcdic_us_table, iso_8859_1_to_ibm1047_table,
ebcdic_us_to_ascii_table, ebcdic_us_to_iso_8859_1_table,
ebcdic_us_to_ibm1047_table, ibm1047_to_ascii_table,
ibm1047_to_iso_8859_1_table, ibm1047_to_ebcdic_us_table): Remove.
(table_convert_char, table_translation, simple_table_translation):
Remove.
(current_host_charset, current_target_charset,
c_target_char_has_backslash_escape_func,
c_target_char_has_backslash_escape_baton): Remove.
(c_parse_backslash_func, c_parse_backslash_baton): Remove.
(host_char_to_target_func, host_char_to_target_baton): Remove.
(target_char_to_host_func, target_char_to_host_baton): Remove.
(cached_iconv_host_to_target, cached_iconv_target_to_host):
Remove.
(lookup_charset_or_error, check_valid_host_charset): Remove.
(set_host_and_target_charsets): Remove.
(set_host_charset, set_target_charset): Remove.
(set_host_charset_sfunc, set_target_charset_sfunc): Rewrite.
(set_target_wide_charset_sfunc): New function.
(show_charset): Print target wide character set.
(host_charset, target_charset): Rewrite.
(target_wide_charset): New function.
(c_target_char_has_backslash_escape): Remove.
(c_parse_backslash): Remove.
(host_letter_to_control_character): New function.
(host_char_print_literally): Remove.
(host_hex_value): New function.
(target_char_to_control_char): Remove.
(cleanup_iconv): New function.
(convert_between_encodings): New function.
(target_char_to_host): Remove.
(struct wchar_iterator): Define.
(make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
wchar_push_back): New functions.
(do_cleanup_iterator): New function.
(char_ptr): New typedef.
(charsets): New global.
(add_one, find_charset_names): New functions.
(default_charset_names): New global.
(auto_host_charset_name): Likewise.
* aclocal.m4, config.in, configure: Rebuild.
* configure.ac: Call AM_LANGINFO_CODESET.
(GDB_DEFAULT_HOST_CHARSET): Default to UTF-8.
(AM_ICONV): Invoke earlier.
* acinclude.m4: Include codeset.m4. Subst LIBICONV_INCLUDE and
LIBICONV_LIBDIR. Check for libiconv in build tree.
* Makefile.in (LIBICONV_LIBDIR, LIBICONV_INCLUDE): New macros.
(INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
(INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
* gdb_obstack.h (obstack_grow_wstr): New define.
* gdb_wchar.h: New file.
* defs.h: Include it.
gdb/testsuite:
* gdb.base/store.exp: Update for change to escape output.
* gdb.base/callfuncs.exp (fetch_all_registers): Update for change
to escape output.
* gdb.base/pointers.exp: Update for change to escape output.
* gdb.base/long_long.exp (gdb_test_long_long): Update for change
to escape output.
* gdb.base/constvars.exp (do_constvar_tests): Update for change to
escape output.
* gdb.base/call-rt-st.exp (print_struct_call): Update for change
to escape output.
* gdb.cp/ref-types.exp (gdb_start_again): Update for change to
escape output.
* gdb.base/setvar.exp: Update for change to escape output.
* lib/gdb.exp (default_gdb_start): Set LC_CTYPE to C.
* gdb.base/printcmds.exp (test_print_all_chars): Update for change
to escape output.
(test_print_string_constants): Likewise.
* gdb.base/charset.exp (valid_host_charset): Check size of
wchar_t. Handle UCS-2 and UCS-4. Add tests for wide and unicode
cases. Handle "auto"-related output.
* gdb.base/charset.c (char16_t, char32_t): New typedefs.
(uvar, Uvar): New globals.
gdb/doc:
* gdb.texinfo (Character Sets): Remove obsolete text. Document
set target-wide-charset.
(Requirements): Mention iconv.
2009-03-21 00:04:40 +01:00
|
|
|
|
2009-03-20 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Character Sets): Remove obsolete text. Document
|
|
|
|
|
set target-wide-charset.
|
|
|
|
|
(Requirements): Mention iconv.
|
|
|
|
|
|
2009-03-17 07:01:10 +01:00
|
|
|
|
2009-03-17 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Change the introduce of "disassemble-next-line".
|
|
|
|
|
|
2009-03-17 06:14:01 +01:00
|
|
|
|
2009-03-17 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add documentation for disassemble-next-line.
|
|
|
|
|
|
2009-03-16 04:34:45 +01:00
|
|
|
|
2009-03-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands In Python): Remove tindex entries.
|
|
|
|
|
|
2009-03-15 10:19:40 +01:00
|
|
|
|
2009-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Returning): New description for missing debug info.
|
|
|
|
|
|
2009-03-14 02:38:08 +01:00
|
|
|
|
2009-03-14 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Document query-attached.
|
2009-03-15 10:19:40 +01:00
|
|
|
|
(General Query Packets): Document qAttached.
|
2009-03-14 02:38:08 +01:00
|
|
|
|
|
2009-03-06 00:11:11 +01:00
|
|
|
|
2009-03-05 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Background Execution): Better describe the set
|
|
|
|
|
target-async command.
|
|
|
|
|
(Maintenance Commands): Delete description of the `maint set/show
|
|
|
|
|
linux-async' and `maint set/show remote-async' commands.
|
|
|
|
|
|
2009-02-18 20:45:45 +01:00
|
|
|
|
2009-02-18 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Add double-spaces
|
|
|
|
|
between sentences.
|
|
|
|
|
|
2009-02-18 08:28:34 +01:00
|
|
|
|
2009-02-18 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document the
|
|
|
|
|
=library-loaded and =library-unloaded notifications.
|
|
|
|
|
|
2009-02-17 20:52:27 +01:00
|
|
|
|
2009-02-17 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (test_notification): New observer.
|
|
|
|
|
|
2009-02-14 16:24:44 +01:00
|
|
|
|
2009-02-14 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2009-03-15 10:19:40 +01:00
|
|
|
|
* observer.texi: Add parameter 'print_frame' to normal_stop
|
|
|
|
|
observer.
|
2009-02-14 16:24:44 +01:00
|
|
|
|
|
2009-02-07 11:02:27 +01:00
|
|
|
|
2009-02-07 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Fix change from 2009-02-04.
|
|
|
|
|
(Commands In Python): Fix COMMAND_* constants in last change. Use
|
|
|
|
|
@kbd for interactive input. Add cross-references and index
|
|
|
|
|
entries.
|
|
|
|
|
|
2009-02-06 23:59:01 +01:00
|
|
|
|
2009-02-06 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Signals): Document $_siginfo.
|
|
|
|
|
(Convenience Variables): Mention $_siginfo.
|
|
|
|
|
(Remote Configuration): Document qXfer:siginfo:read,
|
|
|
|
|
qXfer:siginfo:write packets, and the read-siginfo-object,
|
|
|
|
|
write-siginfo-object commands.
|
|
|
|
|
|
2009-02-06 23:50:52 +01:00
|
|
|
|
2009-02-06 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Values): New chapter.
|
|
|
|
|
|
2009-02-06 22:33:59 +01:00
|
|
|
|
2009-02-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Python API): Add entry for Commands In Python.
|
|
|
|
|
(Commands In Python): New node.
|
|
|
|
|
|
2009-02-05 22:16:09 +01:00
|
|
|
|
2009-02-05 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Values From Inferior): Document Value.string.
|
|
|
|
|
|
2009-02-05 17:40:34 +01:00
|
|
|
|
2009-02-05 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Document execute's from_tty
|
|
|
|
|
argument.
|
|
|
|
|
|
2009-02-04 22:55:40 +01:00
|
|
|
|
2009-02-04 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Basic Python): Document gdb.history.
|
|
|
|
|
|
2009-01-30 19:43:05 +01:00
|
|
|
|
2009-01-30 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Thread Commands): Document the
|
|
|
|
|
'current-thread-id' field. Remove the example with zero threads,
|
|
|
|
|
since current GDB won't ever report that if there's inferior.
|
|
|
|
|
|
2009-01-30 19:28:01 +01:00
|
|
|
|
2009-01-30 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Document the -d
|
|
|
|
|
option to -break-insert.
|
|
|
|
|
|
2009-01-28 16:04:30 +01:00
|
|
|
|
2009-01-28 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
Jerome Guitton <guitton@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Startup): Document --with-system-gdbinit.
|
|
|
|
|
(System-wide configuration): New section.
|
|
|
|
|
|
2009-01-26 17:24:27 +01:00
|
|
|
|
2009-01-26 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR gdb/7580:
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document "maint set|show
|
|
|
|
|
internal-error|internal-warning quit|corefile ask|yes|no".
|
|
|
|
|
|
2009-01-26 17:16:48 +01:00
|
|
|
|
2009-01-26 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Using the `gdbserver' Program): Document
|
|
|
|
|
--remote-debug.
|
|
|
|
|
|
2009-01-23 22:43:56 +01:00
|
|
|
|
2009-01-23 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add nexti to list of commands that support
|
|
|
|
|
background execution.
|
|
|
|
|
|
2009-01-14 21:40:09 +01:00
|
|
|
|
2009-01-14 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Define, Hooks): Document prefix command support.
|
|
|
|
|
|
2009-01-14 12:47:07 +01:00
|
|
|
|
2009-01-14 Joseph Myers <joseph@codesourcery.com>
|
2010-03-30 17:45:16 +02:00
|
|
|
|
Carlos O'Donell <carlos@codesourcery.com>
|
2009-01-14 12:47:07 +01:00
|
|
|
|
|
|
|
|
|
Fixes for makeinfo --html.
|
|
|
|
|
|
|
|
|
|
* annotate.texinfo: Use @copying and @insertcopying. Use
|
|
|
|
|
@ifnottex in place of @ifinfo.
|
|
|
|
|
* gdb.texinfo: Use @copying and @insertcopying. Use @ifnottex in
|
|
|
|
|
place of @ifinfo. Use @ifnotinfo for one index entry.
|
|
|
|
|
* gdbint.texinfo: Use @copying and @insertcopying. Use @ifnottex
|
|
|
|
|
in place of @ifinfo.
|
|
|
|
|
* stabs.texinfo: Use @copying and @insertcopying. Use @ifnottex
|
|
|
|
|
in place of @ifinfo. Include contents at start unconditionally.
|
|
|
|
|
|
2009-01-13 20:05:53 +01:00
|
|
|
|
2009-01-13 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Remove @var{} around the
|
|
|
|
|
"spu" literal string.
|
|
|
|
|
|
2009-01-07 22:42:50 +01:00
|
|
|
|
2009-01-07 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Error in Breakpoints): Delete mention of "The same
|
|
|
|
|
program may be running in another process" errors.
|
|
|
|
|
* gdbint.texinfo (Native Conditionals): Delete
|
|
|
|
|
ONE_PROCESS_WRITETEXT description.
|
|
|
|
|
|
2009-01-07 05:42:45 +01:00
|
|
|
|
2009-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Start of New Year Procedure): Add the "coding"
|
|
|
|
|
emacs local variable to be placed at the end of the ChangeLog.
|
|
|
|
|
Add server.c and gdbreplay.c to the list of files where the
|
|
|
|
|
copyright year needs to be updated.
|
|
|
|
|
|
2009-01-06 18:07:08 +01:00
|
|
|
|
2009-01-06 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Document new
|
|
|
|
|
"set/show tcp auto-retry" and "set/show tcp connect-timeout"
|
|
|
|
|
commands.
|
|
|
|
|
|
2008-12-29 00:35:52 +01:00
|
|
|
|
2008-12-28 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (gdbarch_cannot_fetch_register): Don't mention
|
|
|
|
|
FETCH_INFERIOR_REGISTERS.
|
|
|
|
|
(Native Conditionals): Remove obsolete CHILD_PREPARE_TO_STORE,
|
|
|
|
|
FETCH_INFERIOR_REGISTERS descriptions. Remove
|
|
|
|
|
gdbarch_get_longjmp_target descrition, since already described in
|
|
|
|
|
Target Conditionals. Move gdbarch_fp0_regnum description to ...
|
|
|
|
|
(Target Conditionals): ... here.
|
|
|
|
|
|
2008-12-16 07:14:00 +01:00
|
|
|
|
2008-12-16 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Omissions from Ada): Add missing GDB prompt in
|
|
|
|
|
examples.
|
|
|
|
|
(Additions to Ada): Likewise. Add the missing opening and closing
|
|
|
|
|
parenthesis of the GDB prompt in one of the examples.
|
|
|
|
|
|
2008-12-14 19:30:25 +01:00
|
|
|
|
2008-12-14 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Omissions from Ada): Remove incorrect documentation
|
|
|
|
|
about the result of 'Address not being of type System.Address.
|
|
|
|
|
This problem has been fixed a while ago.
|
|
|
|
|
|
2008-12-02 09:01:15 +01:00
|
|
|
|
2008-12-02 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
MI non-stop and multiprocess docs.
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* gdb.texinfo (GDB/MI): New section 'GDB/MI General Design'
|
|
|
|
|
(GDB/MI Output Records): New section 'GDB/MI Frame Information'
|
|
|
|
|
Adjust documentation for *stopped, document =thread-created,
|
|
|
|
|
=thread-exited, =thread-group-created and =thread-group-exited.
|
|
|
|
|
(GDB/MI Thread Commands): Document the 'state' field in
|
|
|
|
|
-thread-info output.
|
|
|
|
|
(GDB/MI Program Execution): Mention --all and --thread-group
|
|
|
|
|
options.
|
|
|
|
|
(GDB/MI Variable Objects): Describe floating and fixed variable
|
|
|
|
|
objects.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Document -list-thread-groups.
|
2008-12-02 09:01:15 +01:00
|
|
|
|
|
2008-12-02 08:57:38 +01:00
|
|
|
|
2008-12-02 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* gdb.texinfo (Operating System Information): New appendix.
|
|
|
|
|
(Operating System Auxiliary Information): Document 'info os processes'
|
|
|
|
|
(Remote Configuration): Document 'osdata'
|
|
|
|
|
(General Query Packets): Document qXfer:osdata:read.
|
2008-12-02 08:57:38 +01:00
|
|
|
|
|
2008-11-27 10:23:01 +01:00
|
|
|
|
2008-11-27 Tristan Gingold <gingold@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Darwin): Document Darwin specific features.
|
|
|
|
|
|
2008-11-26 06:26:40 +01:00
|
|
|
|
2008-11-25 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Extend the
|
|
|
|
|
gdbarch_breakpoint_from_pc description.
|
|
|
|
|
|
2008-11-22 13:14:33 +01:00
|
|
|
|
2008-11-22 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (M68K Features): Fix typo.
|
|
|
|
|
|
2008-11-18 22:31:27 +01:00
|
|
|
|
2008-11-18 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Mention printing containing
|
|
|
|
|
image name in "info symbol".
|
|
|
|
|
(Maint translate-address): Likewise.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2008-11-18 21:43:12 +01:00
|
|
|
|
2008-11-18 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Remove the documentation of
|
|
|
|
|
commands "catch load" and "catch unload".
|
|
|
|
|
|
2008-11-17 17:43:34 +01:00
|
|
|
|
2008-11-17 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Async Records): Document
|
2010-03-30 17:45:16 +02:00
|
|
|
|
=thread-selected.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
|
2008-11-17 13:28:05 +01:00
|
|
|
|
2008-11-17 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* observer.texi (new_inferior, inferior_exit): New observers.
|
2008-11-17 13:28:05 +01:00
|
|
|
|
|
2008-10-27 12:37:40 +01:00
|
|
|
|
2008-10-27 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Adding a New Target): Don't mention TDEPFILES,
|
|
|
|
|
.mt files, TM_CLIBS or TM_CDEPS.
|
|
|
|
|
(x86 Watchpoints): Don't mention TDEPFILES.
|
|
|
|
|
|
2008-10-24 23:04:22 +02:00
|
|
|
|
2008-10-24 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Protocol): Add new nodes to menu.
|
|
|
|
|
(Overview): Mention notifications and non-stop mode behavior.
|
|
|
|
|
(Packets): Update documentation of ?, vAttach, vCont, and vRun
|
|
|
|
|
with non-stop mode behavior. Add vStopped description.
|
|
|
|
|
(Stop Reply Packets): Update list of packets that return
|
|
|
|
|
stop replies. Mention non-stop behavior.
|
|
|
|
|
(General Query Packets): Document QNonStop packet and associated
|
|
|
|
|
qSupported query response.
|
|
|
|
|
(Interrupts): Clarify multi-threaded behavior. Mention non-stop
|
|
|
|
|
behavior.
|
|
|
|
|
(Notification Packets): New section.
|
|
|
|
|
(Remote Non-Stop): New section.
|
|
|
|
|
(File-I/O Overview): Mention non-stop behavior.
|
|
|
|
|
|
2008-10-24 04:31:41 +02:00
|
|
|
|
2008-10-24 Hui Zhu <teawater@gmail.com>
|
|
|
|
|
Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (displaced-stepping): Describe the auto mode
|
|
|
|
|
setting, and say it's the default. This is now a mainstream
|
|
|
|
|
setting instead of a maintenance setting.
|
|
|
|
|
|
2008-10-24 01:11:21 +02:00
|
|
|
|
2008-10-23 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (thread_stop_requested): New.
|
|
|
|
|
|
2008-10-22 21:48:31 +02:00
|
|
|
|
2008-10-22 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ada Tasks, Ada Tasks and Core Files): New nodes.
|
|
|
|
|
(Patching): Replace incorrect usage of @samp by @kbd.
|
|
|
|
|
|
2008-10-17 21:44:17 +02:00
|
|
|
|
2008-10-17 Michael Snyder <msnyder@vmware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add documentation for reverse execution.
|
|
|
|
|
|
2008-10-16 05:54:00 +02:00
|
|
|
|
2008-10-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
2008-10-16 19:59:36 +02:00
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
2008-10-16 05:54:00 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo. (Values From Inferior): New subsubsection.
|
|
|
|
|
|
2008-10-07 00:23:18 +02:00
|
|
|
|
2008-10-06 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (set debug dwarf2-die): Document it.
|
|
|
|
|
|
2008-10-01 18:44:47 +02:00
|
|
|
|
2008-10-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (catch) [exception]: Document how to insert
|
|
|
|
|
a breakpoint on user-defined exceptions when the exception
|
|
|
|
|
name is identical to one of the language-defined ones.
|
|
|
|
|
|
2008-09-27 23:40:49 +02:00
|
|
|
|
2008-09-27 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Macros): Remove text about stringification,
|
|
|
|
|
varargs, and splicing.
|
|
|
|
|
|
2008-09-27 23:29:30 +02:00
|
|
|
|
2008-09-27 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Language Support): Remove text about omitting
|
|
|
|
|
support for a language.
|
|
|
|
|
|
2008-09-23 20:35:32 +02:00
|
|
|
|
2008-09-23 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (info dcache): Update.
|
|
|
|
|
|
2008-09-22 18:31:01 +02:00
|
|
|
|
2008-09-22 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Add info on thread-id syntax and
|
|
|
|
|
multiprocess extensions.
|
|
|
|
|
<D>: Document multiprocess form of packet.
|
|
|
|
|
<H>: Use thread-id syntax.
|
|
|
|
|
<T>: Likewise.
|
|
|
|
|
<vCont>: Likewise. Note this is required for multiprocess.
|
|
|
|
|
<vKill>: New packet.
|
|
|
|
|
(Stop Reply Packets) <T>: Use thread-id syntax.
|
|
|
|
|
<W>: Document multiprocess form of reply.
|
|
|
|
|
<X>: Likewise.
|
|
|
|
|
(General Query Packets) <qC>: Use thread-id syntax.
|
|
|
|
|
<qfThreadInfo>: Likewise.
|
|
|
|
|
<qGetTLSAddr>: Likewise.
|
|
|
|
|
<qP>: Likewise.
|
|
|
|
|
<qSupported>: Add "multiprocess" feature.
|
|
|
|
|
<qThreadExtraInfo>: Use thread-id syntax.
|
|
|
|
|
|
2008-09-22 17:12:19 +02:00
|
|
|
|
2008-09-22 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Inferiors): New section.
|
|
|
|
|
|
2008-09-12 12:39:03 +02:00
|
|
|
|
2008-09-12 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Mention NAT_GENERATED_FILES.
|
|
|
|
|
|
2008-09-11 16:27:00 +02:00
|
|
|
|
2008-09-11 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Remove documentation
|
|
|
|
|
for gdbarch_name_of_malloc.
|
|
|
|
|
|
2008-09-04 01:54:19 +02:00
|
|
|
|
2008-09-03 Angela Marie Thomas <angela@releasedominatrix.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Interrupts): Mention TCP interface for
|
|
|
|
|
sending BREAK.
|
|
|
|
|
|
2008-08-26 19:30:35 +02:00
|
|
|
|
2008-08-26 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands to Specify Files): Document "remote:"
|
|
|
|
|
argument prefix to "set sysroot".
|
|
|
|
|
|
2008-08-21 11:05:32 +02:00
|
|
|
|
2008-08-21 Paul N. Hilfinger <hilfinger@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Omissions from Ada): Describe new treatment of True
|
|
|
|
|
and False.
|
|
|
|
|
|
2008-08-20 06:57:32 +02:00
|
|
|
|
2008-08-20 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* gdb.textinfo (GDB/MI Miscellaneous Commands): Use @table
|
|
|
|
|
for possible features of -list-features.
|
2008-08-20 06:57:32 +02:00
|
|
|
|
|
2008-08-19 15:05:02 +02:00
|
|
|
|
2008-08-19 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2010-03-30 17:45:16 +02:00
|
|
|
|
* gdb.texinfo (Background execution): Adjust example
|
2008-08-19 15:05:02 +02:00
|
|
|
|
(GDB/MI Miscellaneous Commands): Document -list-target-features.
|
|
|
|
|
|
2008-08-19 14:31:35 +02:00
|
|
|
|
2008-08-19 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* doc/gdb.texinfo (PowerPC): Fix typo.
|
|
|
|
|
(PowerPC features): Fix typo.
|
|
|
|
|
|
2008-08-19 00:35:17 +02:00
|
|
|
|
2008-08-18 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (thread_ptid_changed): New.
|
|
|
|
|
|
2008-08-18 17:46:08 +02:00
|
|
|
|
2008-08-18 Luis Machado <luisgpm@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* doc/gdb.texinfo (PowerPC): Mention Extended FPR's for POWER7.
|
|
|
|
|
(PowerPC features): Mention feature set for VSX registers.
|
|
|
|
|
|
2008-08-14 04:34:08 +02:00
|
|
|
|
2008-08-13 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Ada Mode Intro): Improve the documentation regarding
|
|
|
|
|
the direct visibility of all names in user-written packages.
|
|
|
|
|
|
2008-08-13 15:58:45 +02:00
|
|
|
|
2008-08-13 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (breakpoint always-inserted) Describe the auto mode
|
|
|
|
|
setting, and make it the default.
|
|
|
|
|
(Non-Stop Mode): Remove "set breakpoints always-inserted 1" from
|
|
|
|
|
non-stop script example.
|
|
|
|
|
|
2008-08-12 22:12:04 +02:00
|
|
|
|
2008-08-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Raw and Virtual Register Representations): Fix
|
|
|
|
|
reference to the "Using Different Register and Memory Data
|
|
|
|
|
Representation" section.
|
|
|
|
|
|
2008-08-12 17:18:31 +02:00
|
|
|
|
2008-08-12 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Document set remote noack-packet.
|
|
|
|
|
(Remote Protocol): Add Packet Acknowledgment to menu.
|
|
|
|
|
(Overview): Mention +/- can be disabled, and point to new section
|
|
|
|
|
where this is discussed in detail.
|
|
|
|
|
(General Query Packets): Document QStartNoAckMode packet, and
|
|
|
|
|
corresponding qSupported reply.
|
|
|
|
|
(Packet Acknowledgment): New section.
|
|
|
|
|
|
2008-08-12 03:00:49 +02:00
|
|
|
|
2008-08-11 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Move paragraph about automatic thread
|
|
|
|
|
selection to All-Stop Mode subsection.
|
|
|
|
|
(Thread Stops): Reorganize existing material into subsections.
|
|
|
|
|
Add introductory blurb and menu.
|
|
|
|
|
(Non-Stop Mode): New subsection.
|
|
|
|
|
(Background Execution): New subsection.
|
|
|
|
|
(Maintenance Commands): Add cross-references from async mode
|
|
|
|
|
commands to the new Background Execution section.
|
|
|
|
|
|
2008-08-06 21:41:33 +02:00
|
|
|
|
2008-08-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Extending GDB): New chapter.
|
|
|
|
|
(Sequences): Demoted chapter, now a section under the new
|
|
|
|
|
Extending GDB chapter.
|
|
|
|
|
(Python): New section.
|
|
|
|
|
|
2008-08-01 03:09:00 +02:00
|
|
|
|
2008-07-31 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove FUNCTION_EPILOGUE_SIZE.
|
|
|
|
|
|
* gdbint.texinfo: General round of cleanup and minor
clarifications.
(Breakpoint Handling): Remove mention of BREAKPOINT macro.
(Longjmp Support): Update description to reflect how it is done
for targets without using native header.
(Symbol Handling): Add a little more general explanation.
(COFF, ELF): Mention stabs encapsulation.
(DWARF 3): New section.
(Adding a New Host): Scrub out some obsolete bits.
(Generic Host Support Files): Mention ser-pipe.c, ser-mingw.c.
(Host Conditionals): Remove descriptions of NO_STD_REGS,
HAVE_MMAP, HAVE_TERMIO, INT_MAX etc, LONGEST, HAVE_LONG_DOUBLE,
PRINTF_HAS_LONG_DOUBLE, SCANF_HAS_LONG_DOUBLE, L_SET, SEEK_CUR,
SEEK_SET, STOP_SIGNAL, USG.
(Raw and Virtual Register Representations): Ditto for
DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE,
DEPRECATED_REGISTER_VIRTUAL_TYPE, REGISTER_CONVERT_TO_TYPE.
(Target Conditionals): Ditto for DEPRECATED_FP_REGNUM,
DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN,
DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_INIT_SAVED_REGS,
DEPRECATED_FRAME_SAVED_PC, DEPRECATED_FUNCTION_START_OFFSET,
DEPRECATED_REGISTER_VIRTUAL_SIZE,
DEPRECATED_REGISTER_VIRTUAL_TYPE,
DEPRECATED_USE_STRUCT_CONVENTION.
Describe gdbarch_deprecated_fp_regnum.
Update description of gdbarch_print_insn.
(Adding a New Target): Scrub out obsolete bits.
(Obsolete Conditionals): Remove entire section.
2008-07-29 22:26:53 +02:00
|
|
|
|
2008-07-29 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: General round of cleanup and minor
|
|
|
|
|
clarifications.
|
|
|
|
|
(Breakpoint Handling): Remove mention of BREAKPOINT macro.
|
|
|
|
|
(Longjmp Support): Update description to reflect how it is done
|
|
|
|
|
for targets without using native header.
|
|
|
|
|
(Symbol Handling): Add a little more general explanation.
|
|
|
|
|
(COFF, ELF): Mention stabs encapsulation.
|
|
|
|
|
(DWARF 3): New section.
|
|
|
|
|
(Adding a New Host): Scrub out some obsolete bits.
|
|
|
|
|
(Generic Host Support Files): Mention ser-pipe.c, ser-mingw.c.
|
|
|
|
|
(Host Conditionals): Remove descriptions of NO_STD_REGS,
|
|
|
|
|
HAVE_MMAP, HAVE_TERMIO, INT_MAX etc, LONGEST, HAVE_LONG_DOUBLE,
|
|
|
|
|
PRINTF_HAS_LONG_DOUBLE, SCANF_HAS_LONG_DOUBLE, L_SET, SEEK_CUR,
|
|
|
|
|
SEEK_SET, STOP_SIGNAL, USG.
|
|
|
|
|
(Raw and Virtual Register Representations): Ditto for
|
|
|
|
|
DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE,
|
|
|
|
|
DEPRECATED_REGISTER_VIRTUAL_TYPE, REGISTER_CONVERT_TO_TYPE.
|
|
|
|
|
(Target Conditionals): Ditto for DEPRECATED_FP_REGNUM,
|
|
|
|
|
DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN,
|
|
|
|
|
DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_INIT_SAVED_REGS,
|
|
|
|
|
DEPRECATED_FRAME_SAVED_PC, DEPRECATED_FUNCTION_START_OFFSET,
|
|
|
|
|
DEPRECATED_REGISTER_VIRTUAL_SIZE,
|
|
|
|
|
DEPRECATED_REGISTER_VIRTUAL_TYPE,
|
|
|
|
|
DEPRECATED_USE_STRUCT_CONVENTION.
|
|
|
|
|
Describe gdbarch_deprecated_fp_regnum.
|
|
|
|
|
Update description of gdbarch_print_insn.
|
|
|
|
|
(Adding a New Target): Scrub out obsolete bits.
|
|
|
|
|
(Obsolete Conditionals): Remove entire section.
|
|
|
|
|
|
gdb:
* tui/tui-hooks.c: Include observer.h.
(tui_event_default, tui_old_event_hooks, tui_event_hooks):
Remove.
(tui_bp_created_observer, tui_bp_deleted_observer,
tui_bp_modified_observer): New globals.
(tui_install_hooks): Use observers, not events.
(tui_remove_hooks): Likewise.
* mi/mi-cmd-break.c: Include observer.h, not gdb-events.h.
(mi_breakpoint_observers_installed, mi_can_breakpoint_notify): New
globals.
(breakpoint_notify): Check mi_can_breakpoint_notify.
(breakpoint_hooks): Remove.
(mi_cmd_break_insert): Attach observers. Don't use events.
* tracepoint.c: Include observer.h, not gdb-events.h.
(tracepoint_operation, trace_pass_command): Notify observer.
* interps.c: Don't include gdb-events.h.
(clear_interpreter_hooks): Don't call clear_gdb_event_hooks.
* gdbarch.c: Rebuild.
* gdbarch.sh: Emit include for observer.h, not gdb-events.h.
(deprecated_current_gdbarch_select_hack): Notify observer.
* breakpoint.h: Don't include gdb-events.h.
* breakpoint.c: Don't include gdb-events.h.
(condition_command): Notify observer.
(commands_command): Likewise.
(commands_from_control_command): Likewise.
(mention, delete_breakpoint, set_ignore_count): Likewise.
(disable_breakpoint, do_enable_breakpoint): Likewise.
* Makefile.in (gdb_events_h): Remove.
(breakpoint_h): Update.
(COMMON_OBS): Remove gdb-events.o.
(gdb-events.o): Remove.
(breakpoint.o, gdbarch.o, interps.o, tracepoint.o, gdbtk-bp.o,
gdbtk-hooks.o, mi-cmd-break.o, tui-hooks.o): Update.
* gdb-events.c: Remove.
* gdb-events.h: Remove.
* gdb-events.sh: Remove.
gdb/doc:
* observer.texi (GDB Observers): Document new observers:
breakpoint_created, breakpoint_deleted, breakpoint_modified,
tracepoint_created, tracepoint_deleted, tracepoint_modified,
architecture_changed.
gdb/gdbtk:
* generic/gdbtk-hooks.c: Include observer.h, not gdb-events.h.
(gdbtk_add_hooks): Use observers, not events.
(gdbtk_architecture_changed): Add argument, for observer.
* generic/gdbtk-bp.c: Include observer.h.
(gdb_set_bp): Notify observer.
(gdb_set_bp_addr): Likewise.
2008-07-25 18:12:03 +02:00
|
|
|
|
2008-07-25 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Document new observers:
|
|
|
|
|
breakpoint_created, breakpoint_deleted, breakpoint_modified,
|
|
|
|
|
tracepoint_created, tracepoint_deleted, tracepoint_modified,
|
|
|
|
|
architecture_changed.
|
|
|
|
|
|
2008-07-22 04:10:14 +02:00
|
|
|
|
2008-07-21 Stan Shebs <stan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Refer to target_so_ops.in_dynsym_resolve_code
|
|
|
|
|
instead of IN_SOLIB_DYNSYM_RESOLVE_CODE.
|
|
|
|
|
|
2008-07-21 18:47:11 +02:00
|
|
|
|
2008-07-21 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Remove obsolete comment.
|
|
|
|
|
<executable_changed>: Remove argument.
|
|
|
|
|
|
2008-07-18 22:55:33 +02:00
|
|
|
|
2008-07-18 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Macros): Update. Use @code rather than @command.
|
|
|
|
|
|
2008-07-11 01:08:21 +02:00
|
|
|
|
2008-07-10 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* doc/gdb.texinfo: Document "set print symbol-loading on|off".
|
|
|
|
|
|
2008-07-10 11:31:00 +02:00
|
|
|
|
2008-07-10 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting): Document "set disable-randomization".
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
2008-07-07 Andreas Schwab <schwab@suse.de>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Target Manipulation): Fix last change.
|
|
|
|
|
|
2008-07-06 15:21:19 +02:00
|
|
|
|
2008-07-06 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Target Manipulation): Add
|
|
|
|
|
example of -target-attach.
|
|
|
|
|
|
2008-06-10 12:23:54 +02:00
|
|
|
|
2008-06-10 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (target_resumed): New observer.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (GDB/MI Output Records): Document *running.
|
2008-06-10 12:23:54 +02:00
|
|
|
|
|
2008-06-06 22:58:08 +02:00
|
|
|
|
2008-06-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Completion): Add field name example.
|
|
|
|
|
|
2008-06-06 15:15:43 +02:00
|
|
|
|
2008-06-06 Marc Khouzam <marc.khouzam@ericsson.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Program Context): Added example
|
|
|
|
|
to -exec-arguments
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2008-06-06 15:15:43 +02:00
|
|
|
|
2008-06-05 Nick Roberts <nickrob@snap.net.nz>
|
2008-06-06 02:41:22 +02:00
|
|
|
|
|
|
|
|
|
* annotate.texinfo (Multi-threaded Apps): Add entry for thread-changed
|
|
|
|
|
annotation.
|
|
|
|
|
|
2008-06-06 00:36:57 +02:00
|
|
|
|
2008-06-05 Vladimir Prus <vladimir@codesourcery.com>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
Nathan Sidwell <nathan@codesourcery.com>
|
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
2008-06-06 00:36:57 +02:00
|
|
|
|
|
|
|
|
|
* configure.ac: Include ../../config/acx.m4. Use ACX_PKGVERSION
|
|
|
|
|
and ACX_BUGURL.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* Makefile.in (PKGVERSION, BUGURL_TEXI): Define.
|
|
|
|
|
(GDBvn.texi): Define VERSION_PACKAGE, BUGURL and BUGURL_DEFAULT.
|
|
|
|
|
* gdb.texinfo: Use VERSION_PACKAGE and BUGURL. Remove
|
|
|
|
|
mailing-list-specific text about bug reporting unless
|
|
|
|
|
BUGURL_DEFAULT.
|
|
|
|
|
|
Replace 'target async' by 'maintenance set remote-async' and
'target remote' combination.
* remote.c (remote_async_wait): Merge into remote_wait, and
remove.
(remote_async_permitted, remote_async_permitted_set): New
variables.
(set_maintenance_remote_async_permitted)
(show_maintenance_remote_async_permitted): New functions.
(remote_async_ops, extended_async_remote_ops): Delete.
(remote_async_open, extended_remote_async_open): Delete.
(remote_open_1): Drop async_p parameter. Update callers. Replace
async_p with remote_async_permitted checks.
(extended_async_remote_attach): Delete.
(remote_resume, remote_async_resume): Merge and leave remote_resume.
(remote_async_terminal_inferior): Rename to...
(remote_terminal_inferior): ... this, and add
remote_async_termitted check.
(remote_async_terminal_ours): Rename to...
(remote_terminal_ours): ... this, and add remote_async_termitted
check.
(remote_wait, remote_async_wait): Merge and leave remote_wait
only.
(remote_kill, remote_async_kill): Merge and leave remote_kill
only.
(remote_async_mourn, extended_async_remote_mourn): Delete.
(extended_remote_create_inferior_1): Drop async_p parameter.
Update callers. Always use extended_remote_ops.
(extended_remote_async_create_inferior): Delete.
(remote_return_zero): Delete.
(init_remote_ops): Register remote_can_async_p, remote_async,
remote_async_mask, remote_terminal_inferior and
remote_terminal_ours.
(remote_can_async_p, remote_is_async_p): Check for
remote_async_permitted.
(init_remote_async_ops, init_extended_async_remote_ops): Remove.
(set_remote_cmd): Don't add async and extended-async targets.
(_initialize_remote): Add set/show remote-async maintenance
commands.
gdb/doc/
* gdb.texinfo (-target-select): Remove reference to target async.
(Maintenance Commands): Document "maint set/show remote-async".
2008-06-05 23:35:00 +02:00
|
|
|
|
2008-06-05 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (-target-select): Remove reference to target async.
|
|
|
|
|
(Maintenance Commands): Document "maint set/show remote-async".
|
|
|
|
|
|
2008-06-05 01:24:19 +02:00
|
|
|
|
2008-06-04 Marc Khouzam <marc.khouzam@ericsson.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI File Transfer Commands): Typo
|
|
|
|
|
in -target-file-get section.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2008-05-22 23:15:05 +02:00
|
|
|
|
2008-05-22 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
2008-05-22 23:21:41 +02:00
|
|
|
|
* gdb.texinfo (vAttach, vRun): Re-remove requirement of the stub
|
|
|
|
|
killing the inferior when it is already debugging a process.
|
2008-05-22 23:15:05 +02:00
|
|
|
|
|
2008-05-21 19:57:21 +02:00
|
|
|
|
2008-05-21 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Continuing and Stepping): Document the new "fin"
|
|
|
|
|
abbreviation for "finish".
|
|
|
|
|
|
2008-05-20 23:10:31 +02:00
|
|
|
|
2008-05-21 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* annotate.texinfo (Multi-threaded Apps): New node for new annotation.
|
|
|
|
|
|
* gdbarch.sh: Delete dwarf_reg_to_regnum.
* gdbarch.c, gdbarch.h: Regenerated.
* amd64-tdep.c, arm-tdep.c, h8300-tdep.c, hppa-linux-tdep.c,
hppa-tdep.c, i386-tdep.c, m32c-tdep.c, m68k-tdep.c, mips-tdep.c,
s390-tdep.c, xtensa-tdep.c: Do not set dwarf_reg_to_regnum.
* gdbint.texinfo (Target Conditionals): Delete entry for
gdbarch_dwarf_reg_to_regnum.
2008-05-16 02:27:24 +02:00
|
|
|
|
2008-05-15 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Delete entry for
|
|
|
|
|
gdbarch_dwarf_reg_to_regnum.
|
|
|
|
|
|
2008-05-09 19:02:03 +02:00
|
|
|
|
2008-05-09 Doug Evans <dje@google.com>
|
|
|
|
|
|
2008-05-09 20:08:56 +02:00
|
|
|
|
* gdb.texinfo: Document "find" command, qSearch:memory packet.
|
2008-05-09 19:02:03 +02:00
|
|
|
|
|
2008-05-05 23:14:37 +02:00
|
|
|
|
2008-05-05 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (disassemble): Document /m modifier.
|
|
|
|
|
|
2008-05-05 11:47:47 +02:00
|
|
|
|
2008-05-05 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Maintenance Commands): Clarify that "maint time"
|
|
|
|
|
will not report the time of commands that run the target.
|
2008-05-05 11:47:47 +02:00
|
|
|
|
|
2008-05-04 11:30:53 +02:00
|
|
|
|
2008-05-03 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Output Records): Add
|
|
|
|
|
missing semicolon.
|
|
|
|
|
|
2008-05-03 17:40:12 +02:00
|
|
|
|
2008-05-03 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Output Records):
|
|
|
|
|
Document =thread-create and =thread-exited.
|
|
|
|
|
|
2008-05-03 17:36:24 +02:00
|
|
|
|
2008-05-03 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Development and Front Ends):
|
2008-05-03 17:40:12 +02:00
|
|
|
|
Remove mention of dmi-discuss.
|
2008-05-03 17:36:24 +02:00
|
|
|
|
|
2008-05-03 17:10:42 +02:00
|
|
|
|
2008-05-03 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (thread_exit): New.
|
|
|
|
|
|
Implement displaced stepping.
gdb/
* gdbarch.sh (max_insn_length): New 'variable'.
(displaced_step_copy, displaced_step_fixup)
(displaced_step_free_closure, displaced_step_location): New
functions.
(struct displaced_step_closure): Add forward declaration.
* gdbarch.c, gdbarch.h: Regenerated.
* arch-utils.c: #include "objfiles.h".
(simple_displaced_step_copy_insn)
(simple_displaced_step_free_closure)
(displaced_step_at_entry_point): New functions.
* arch-utils.h (simple_displaced_step_copy_insn)
(simple_displaced_step_free_closure)
(displaced_step_at_entry_point): New prototypes.
* i386-tdep.c (I386_MAX_INSN_LEN): Rename to...
(I386_MAX_MATCHED_INSN_LEN): ... this.
(i386_absolute_jmp_p, i386_absolute_call_p)
(i386_ret_p, i386_call_p, i386_breakpoint_p, i386_syscall_p)
(i386_displaced_step_fixup): New functions.
(struct i386_insn, i386_match_insn): Update.
(i386_gdbarch_init): Set gdbarch_max_insn_length.
* i386-tdep.h (I386_MAX_INSN_LEN): New.
(i386_displaced_step_fixup): New prototype.
* i386-linux-tdep.c (i386_linux_init_abi): Include "arch-utils.h".
Register gdbarch_displaced_step_copy,
gdbarch_displaced_step_fixup, gdbarch_displaced_step_free_closure,
and gdbarch_displaced_step_location functions.
* infrun.c (debug_displaced): New variable.
(show_debug_displaced): New function.
(struct displaced_step_request): New struct.
(displaced_step_request_queue, displaced_step_ptid)
(displaced_step_gdbarch, displaced_step_closure)
(displaced_step_original, displaced_step_copy)
(displaced_step_saved_copy, can_use_displaced_stepping): New
variables.
(show_can_use_displaced_stepping, use_displaced_stepping)
(displaced_step_clear, cleanup_displaced_step_closure)
(displaced_step_dump_bytes, displaced_step_prepare)
(displaced_step_clear_cleanup, write_memory_ptid)
(displaced_step_fixup): New functions.
(resume): Call displaced_step_prepare.
(proceed): Call read_pc once, and remember the value. If using
displaced stepping, don't remove breakpoints.
(handle_inferior_event): Call displaced_step_fixup. Add some
debugging output. When we try to step over a breakpoint, but get
a signal to deliver to the thread instead, ensure the step-resume
breakpoint is actually inserted. If a thread hop is needed, and
displaced stepping is enabled, don't remove breakpoints.
(init_wait_for_inferior): Call displaced_step_clear.
(_initialize_infrun): Add "set debug displaced" command. Add
"maint set can-use-displaced-stepping" command. Clear
displaced_step_ptid.
* inferior.h (debug_displaced): Declare variable.
(displaced_step_dump_bytes): Declare function.
* Makefile.in (arch-utils.o, i386-linux-tdep.o): Update
dependencies.
gdb/testsuite/
* gdb.asm/asmsrc1.s: Add scratch space.
gdb/doc/
* gdb.texinfo (Debugging Output): Document "set/show debug
displaced".
(Maintenance Commands): Document "maint set/show
can-use-displaced-stepping".
2008-05-02 18:49:54 +02:00
|
|
|
|
2008-05-02 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document "set/show debug
|
|
|
|
|
displaced".
|
|
|
|
|
(Maintenance Commands): Document "maint set/show
|
|
|
|
|
can-use-displaced-stepping".
|
|
|
|
|
|
2008-05-02 18:00:36 +02:00
|
|
|
|
2008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (ARM): Document set/show arm fallback-mode
|
|
|
|
|
and set/show arm force-mode.
|
|
|
|
|
|
2008-05-02 13:07:25 +02:00
|
|
|
|
2008-05-02 Andreas Schwab <schwab@suse.de>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): Describe
|
|
|
|
|
target_watchpoint_addr_within_range.
|
|
|
|
|
|
Convert frame unwinders to use the current frame and
"struct value".
* frame.c (frame_debug): Make global.
(get_frame_id): Pass this frame to unwinder routines.
(frame_pc_unwind): Remove unused unwind->prev_pc support.
(do_frame_register_read): Do not discard the return value of
frame_register_read.
(frame_register_unwind): Remove debug messages. Use
frame_unwind_register_value.
(frame_unwind_register_value, get_frame_register_value): New
functions.
(create_new_frame, get_frame_base_address, get_frame_locals_address)
(get_frame_args_address, get_frame_type): Pass this frame to
unwinder routines.
(frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
functions.
* frame.h: Update comments.
(frame_debug, frame_unwind_register_value, get_frame_register_value)
(frame_prepare_for_sniffer): Declare.
* frame-unwind.h: Update comments and parameter names.
(default_frame_sniffer): Declare.
(frame_prev_register_ftype): Return a struct value *.
(struct frame_unwind): Remove prev_pc member.
(frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): Declare.
* frame-base.h: Update comments and parameter names.
* valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
if necessary. Add debugging output.
* sentinel-frame.c (sentinel_frame_prev_register)
(sentinel_frame_this_id): Update for new signature.
(sentinel_frame_prev_pc): Delete.
(sentinel_frame_unwinder): Remove prev_pc.
* ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
prev_pc.
* libunwind-frame.c (libunwind_frame_unwind): Likewise.
* frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
(frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder): New function.
(frame_unwind_find_by_frame): Take this frame. Only use sniffers
from unwinders. Use frame_prepare_for_sniffer.
(default_frame_sniffer, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): New functions.
* dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
(dummy_frame_prev_register, dummy_frame_this_id): Update for new
signature.
* gdbarch.sh: Replace unwind_dummy_id with dummy_id.
* gdbarch.c, gdbarch.c: Regenerated.
* frame-base.c (default_frame_base_address)
(default_frame_locals_address, default_frame_args_address): Update
for new signature.
(frame_base_find_by_frame): Pass this frame to unwinder routines.
* infcall.c (call_function_by_hand): Update comments.
* Makefile.in (frame-unwind.o): Update dependencies.
* gdbint.texinfo (Stack Frames): New chapter.
(Algorithms): Move Frames text to the new chapter.
(Target Conditionals): Delete SAVE_DUMMY_FRAME_TOS. Document
gdbarch_dummy_id instead of gdbarch_unwind_dummy_id.
2008-04-30 23:16:46 +02:00
|
|
|
|
2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Stack Frames): New chapter.
|
|
|
|
|
(Algorithms): Move Frames text to the new chapter.
|
|
|
|
|
(Target Conditionals): Delete SAVE_DUMMY_FRAME_TOS. Document
|
|
|
|
|
gdbarch_dummy_id instead of gdbarch_unwind_dummy_id.
|
|
|
|
|
|
2008-04-24 14:09:49 +02:00
|
|
|
|
2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (GDB/MI Output Syntax): Clarify that async
|
|
|
|
|
output does not necessary include any tokens.
|
2008-04-24 14:09:49 +02:00
|
|
|
|
|
2008-04-22 13:03:42 +02:00
|
|
|
|
2008-04-22 Corinna Vinschen <vinschen@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set SH Calling convention): New @item.
|
|
|
|
|
(Show SH Calling convention): Ditto.
|
|
|
|
|
|
2008-04-22 08:51:04 +02:00
|
|
|
|
2008-04-22 Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Fortran Operators): Describe '%' operator.
|
|
|
|
|
|
2008-04-20 11:06:44 +02:00
|
|
|
|
2008-04-20 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Mention that multiple location
|
|
|
|
|
breakpoints need line number info. Add index entries.
|
|
|
|
|
|
2008-04-20 02:03:25 +02:00
|
|
|
|
2008-04-19 Craig Silverstein <csilvers@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Requirements): Add an optional requirement on
|
|
|
|
|
zlib.
|
|
|
|
|
* gdbint.texinfo (Debugging File Formats): Add new subsection for
|
|
|
|
|
Compressed DWARF 2.
|
|
|
|
|
|
2008-04-16 15:14:18 +02:00
|
|
|
|
2008-04-16 Aleksandar Ristovski <aristovski@qnx.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Simple Examples): Added 'disp' field to the
|
|
|
|
|
sample output for 'stopped,reason="breakpoint-hit"' message.
|
|
|
|
|
(GDB/MI Program Execution): Likewise.
|
|
|
|
|
|
2008-04-09 15:29:55 +02:00
|
|
|
|
2008-04-09 Marc Khouzam <marc.khouzam@ericsson.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Add anchor to
|
2008-04-09 15:29:55 +02:00
|
|
|
|
-var-set-format. Add -f option to -var-evaluate-expression.
|
|
|
|
|
|
2008-04-03 23:51:12 +02:00
|
|
|
|
2008-04-03 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoint Menus): Delete. Contents moved inside
|
|
|
|
|
new node "Ambiguous Expressions". Replace references to this
|
|
|
|
|
node by references to "Ambiguous Expressions" throughout.
|
|
|
|
|
(Ambiguous Expressions): New node.
|
|
|
|
|
|
2008-03-26 19:37:47 +01:00
|
|
|
|
2008-03-26 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS Features, PowerPC Features): Add @node.
|
|
|
|
|
|
gdb/
* target.h (struct target_ops): Delete to_async_mask_value and add
to_async_mask.
(target_is_async_p, target_async): Formatting.
(target_async_mask_value): Delete.
(target_async_mask): Delete function declaration, and add new
target macro with the same name.
* target.c (update_current_target): Replace to_async_mask_value by
to_async_mask. Default to_async_mask to return_one.
(target_async_mask): Delete.
(find_default_can_async_p, find_default_is_async_p): New.
(init_dummy_target): register find_default_can_async_p and
find_default_is_async_p on the dummy target.
* linux-nat.c: Include inf-loop.h, event-loop.h and event-top.h.
(debug_linux_nat_async): New global.
(show_debug_linux_nat_async): New function.
(linux_nat_async_enabled, linux_nat_async_mask_value)
(linux_nat_event_pipe, linux_nat_num_queued_events)
(linux_nat_async_events_enabled): New globals.
(struct waitpid_result): New struct.
(waitpid_queue): New global.
(queued_waitpid, push_waitpid, drain_queued_events): New.
(my_waitpid): Call queued_waitpid.
(linux_child_follow_fork): Disable async events during the call.
(blocked_mask): Delete.
(sync_sigchld_action, async_sigchld_action): New globals.
(lin_lwp_attach_lwp): In sync mode, don't reblock SIGCHLD. In
async mode, block events during the call.
(linux_nat_create_inferior): New.
(linux_nat_attach): In sync mode, restore the mask states. In
async mode, wake the event loop immediatelly.
(detach_callback): Drain all queued events of the lwp we're
detaching from.
(linux_nat_detach): Block async mode, and drain events of the main
process.
(linux_nat_resume): If in async mode, mask async events during the
call. If short circuiting, force event loop to wake up. If
resuming, set target_executing, and register target events in the
event loop.
(pipe_to_local_event_queue, local_event_queue_to_pipe): New.
(linux_nat_wait): In async mode, block events during the call.
Only enable/disable passing SIGINT to the inferior in sync mode.
Get events from local waitpid queue. If no interesting events was
found, return to events loop. Reregister target events in the
event loop on exit. In sync mode, no need to reblock SIGCHLD.
(linux_nat_kill): Disable events on entry.
(linux_nat_mourn_inferior): In sync mode, don't restore the masks
here. Detach async mode from the event loop if there are no more
forks available, otherwise leave it on.
(sigchld_handler): Assure this is called only in sync mode.
(linux_async_permitted, linux_async_permitted_1): New globals.
(set_maintenance_linux_async_permitted)
(show_maintenance_linux_async_permitted): New functions.
(linux_nat_is_async_p, linux_nat_can_async_p)
(linux_nat_async_mask): New.
(linux_nat_event_pipe_pop, linux_nat_event_pipe_push): New.
(get_pending_events, async_sigchld_handler): New.
(linux_nat_async_events): New.
(async_terminal_is_ours): New global.
(linux_nat_terminal_inferior, linux_nat_terminal_ours): New.
(async_client_callback, async_client_context): New.
(linux_nat_async_file_handler, linux_nat_async)
(linux_nat_disable_async, linux_nat_enable_async): New.
(linux_nat_add_target): Register linux_nat_create_inferior,
linux_nat_can_async_p, linux_nat_is_async_p, linux_nat_async,
linux_nat_async_mask, linux_nat_terminal_inferior and
linux_nat_terminal_ours.
(_initialize_linux_nat): Remove local action variable, and update
code that used it to use sync_sigchld_action. Add new
"lin-lwp-async" debug set/show command. Put the "lin-lwp" debug
set/show command in the maintenance class. Add new "linux-async"
maintenance set/show command. Block SIGCHLD by default. Setup
async_sichld_action, and sync_sigchld_action. Install the default
async mode.
(lin_thread_get_thread_signals): Use a local sigset_t for blocking
the cancel signals.
* linux-thread-db.c (re_check_for_thread_db): New.
(clear_lwpid_callback): Handle TARGET_WAITKIND_IGNORE.
(thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
(thread_db_async_mask): New.
(init_thread_db_ops): Register thread_db_can_async_p,
thread_db_is_async_p, thread_db_async and thread_db_async_mask.
* remote.c (remote_async_mask_value): New.
(remote_return_zero): New.
(init_remote_ops): Register remote_return_zero as callbacks of
to_can_async_p and to_is_async_p.
(remote_can_async_p, remote_is_async_p, remote_async): Update to
use remote_async_mask_value.
(remote_async_mask): New.
(init_remote_async_ops): Remove to_async_mask_value setting and
register remote_async_mask as to_async_mask callback in
remote_async_ops.
* Makefile.in (linux-nat.o): Update.
gdb/doc/
* gdb.texinfo (Debugging Output): Document
"set/show debug lin-lwp-async".
(Maintenance Commands): Document "maint set/show linux-async".
2008-03-21 18:09:35 +01:00
|
|
|
|
2008-03-21 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document
|
|
|
|
|
"set/show debug lin-lwp-async".
|
|
|
|
|
(Maintenance Commands): Document "maint set/show linux-async".
|
|
|
|
|
|
2008-03-21 16:02:38 +01:00
|
|
|
|
2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Expressions): Update description of malloced arrays.
|
|
|
|
|
|
2008-03-15 14:53:25 +01:00
|
|
|
|
2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Thread Commands): Document
|
|
|
|
|
-thread-info. Remove -thread-list-all-threads.
|
|
|
|
|
|
2008-03-14 23:30:07 +01:00
|
|
|
|
2008-03-14 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Library List Format): Update to mention the
|
|
|
|
|
possibility to pass section addresses instead of segment
|
|
|
|
|
addresses.
|
|
|
|
|
|
2008-03-11 00:14:06 +01:00
|
|
|
|
2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting): Document "set exec-wrapper".
|
|
|
|
|
(Server): Document gdbserver --wrapper.
|
|
|
|
|
|
2008-03-03 14:24:12 +01:00
|
|
|
|
2008-03-03 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Watchpoints): Mention watchpoints on
|
|
|
|
|
unreadable memory. Delete obsolete SPARClite reference.
|
|
|
|
|
|
2008-02-28 17:26:18 +01:00
|
|
|
|
2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting): Mention always-running targets.
|
|
|
|
|
(Target Commands): Add an anchor for load.
|
|
|
|
|
(Connecting): Explain continue instead of run.
|
|
|
|
|
|
2008-02-27 21:59:38 +01:00
|
|
|
|
2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document "set debug timestamp".
|
|
|
|
|
|
2008-02-25 21:33:39 +01:00
|
|
|
|
2008-02-26 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Revert description of Enb column of
|
|
|
|
|
breakpoint table.
|
|
|
|
|
|
2008-02-19 22:36:54 +01:00
|
|
|
|
2008-02-19 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (vAttach, vRun): Remove requirement of the stub
|
|
|
|
|
killing the inferior when it is already debugging a process.
|
|
|
|
|
|
2008-02-13 06:05:29 +01:00
|
|
|
|
2008-02-13 Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Build Script): New section. Mention new build script
|
|
|
|
|
gdb_buildall.sh.
|
|
|
|
|
|
2008-02-03 19:55:27 +01:00
|
|
|
|
2008-02-01 Jim Blandy <jimb@red-bean.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Help): Summarize 'info args' correctly.
|
|
|
|
|
|
2008-01-31 14:38:49 +01:00
|
|
|
|
2008-01-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: (Decimal Floating Point): Mention pseudo-registers
|
|
|
|
|
available in PowerPC architecture.
|
|
|
|
|
(Embedded Processors): Change node name of PowerPC item in menu.
|
|
|
|
|
(PowerPC): Rename to...
|
|
|
|
|
(PowerPC Embedded): this.
|
|
|
|
|
(Architectures): Add new PowerPC item in menu.
|
|
|
|
|
(PowerPC): New node.
|
|
|
|
|
|
2008-01-30 14:14:40 +01:00
|
|
|
|
2008-01-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Multi-Process Mode for gdbserver): Use @kbd for
|
|
|
|
|
commands.
|
|
|
|
|
|
2008-01-30 14:11:15 +01:00
|
|
|
|
2008-01-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Setting Catchpoints): Mention features
|
|
|
|
|
supported on GNU/Linux.
|
|
|
|
|
|
2008-01-30 05:26:24 +01:00
|
|
|
|
2008-01-30 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI File Commands): Describe new output
|
|
|
|
|
field for MI command -file-list-exec-source-file.
|
|
|
|
|
|
* linux-low.c (linux_attach_lwp): Do not _exit after errors.
(linux_kill, linux_detach): Clean up the process list.
* remote-utils.c (remote_open): Improve port number parsing.
(putpkt_binary, input_interrupt): Only send interrupts if the target
is running.
* server.c (extended_protocol): Make static.
(attached): Define earlier.
(exit_requested, response_needed, program_argv): New variables.
(target_running): New.
(start_inferior): Clear attached here.
(attach_inferior): Set attached here.
(require_running): Define.
(handle_query): Use require_running and target_running. Implement
"monitor exit".
(handle_v_attach, handle_v_run): New.
(handle_v_requests): Use require_running. Handle vAttach and vRun.
(gdbserver_usage): Update.
(main): Redo argument parsing. Handle --debug and --multi. Handle
--attach along with other options or after the port. Save
program_argv. Support no initial program. Resynchronize
communication with GDB after an error. Handle "monitor exit".
Use require_running and target_running. Always allow the extended
protocol. Do not error out for Hc0 or Hc-1. Do not automatically
restart in extended mode.
* README: Refer to the GDB manual. Update --attach usage.
* remote.c (struct remote_state): Add cached_wait_status.
(remote_exec_file): New variable.
(PACKET_vAttach, PACKET_vRun): New constants.
(extended_remote_restart): Do not query for status.
(struct start_remote_args): New.
(remote_start_remote): Take it as a second argument. Check
whether the target is running. Issue an error for non-running
non-extended targets. Cache the wait status. Set inferior_ptid
here.
(remote_open_1): Prompt to disconnect non-running targets. Make
sure the target is marked running. Do not set inferior_ptid here.
Update call to remote_start_remote. Do not call remote_check_symbols
if the target is not running.
(remote_detach_1): Rename from remote_detach. Take an EXTENDED
argument. Handle a non-running target.
(remote_detach): Use it.
(extended_remote_detach): New.
(remote_disconnect): Fix typo. Use remoute_mourn_1.
(extended_remote_attach_1, extended_remote_attach)
(extended_async_remote_attach): New.
(remote_vcont_resume): Remove unused variable.
(remote_wait, remote_async_wait): Use any cached wait status.
(putpkt_binary, getpkt): Clear any cached wait status.
(extended_remoute_mourn_1): New.
(extended_remote_mourn): Use it.
(extended_async_remote_mourn, extended_remote_run): New.
(extended_remote_create_inferior_1): New.
(extended_remote_create_inferior): Use it.
(extended_remote_async_create_inferior): Likewise.
(remote_xfer_partial): Skip for non-executing targets.
(init_extended_remote_ops): Set to_detach and to_attach.
(init_extended_async_remote_ops): Likewise. Use
extended_async_remote_mourn.
(_initialize_remote): Register vAttach, vRun, and
set remote exec-file.
* NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
* gdb.server/ext-attach.c, gdb.server/ext-attach.exp,
gdb.server/ext-run.exp: New files.
* lib/gdbserver-support.exp (gdbserver_download): New.
(gdbserver_start): New. Update gdbserver expected
output.
(gdbserver_spawn): Use them.
(gdbserver_start_extended): New.
* gdb.texinfo (Using the `gdbserver' Program): Add security
warning. Rearrange into subsections and subsubsections. Document
--multi and --debug. Correct --with-sysroot typo. Update --attach
usage. Make load reference clearer. Document monitor exit.
(Remote Configuration): Document set remote exec-file, attach-packet,
and run-packet.
(Packets): Document vAttach and vRun.
2008-01-30 01:51:50 +01:00
|
|
|
|
2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Using the `gdbserver' Program): Add security
|
|
|
|
|
warning. Rearrange into subsections and subsubsections. Document
|
|
|
|
|
--multi and --debug. Correct --with-sysroot typo. Update --attach
|
|
|
|
|
usage. Make load reference clearer. Document monitor exit.
|
|
|
|
|
(Remote Configuration): Document set remote exec-file, attach-packet,
|
|
|
|
|
and run-packet.
|
|
|
|
|
(Packets): Document vAttach and vRun.
|
|
|
|
|
|
2008-02-09 14:39:06 +01:00
|
|
|
|
2008-01-29 Nick Roberts <nickrob@snap.net.nz>
|
2008-01-30 00:28:51 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Processes): Mention process command.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
detach-on-follow -> detach-on-fork.
|
2008-01-30 00:28:51 +01:00
|
|
|
|
|
2008-01-28 21:21:03 +01:00
|
|
|
|
2008-01-28 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Conditionals): Remove
|
|
|
|
|
SHELL_COMMAND_CONCAT and SHELL_FILE.
|
|
|
|
|
|
2008-02-09 14:39:06 +01:00
|
|
|
|
2008-01-26 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Specify Location): Improve wording.
|
|
|
|
|
|
2008-01-23 12:26:29 +01:00
|
|
|
|
2008-01-23 Chris Demetriou <cgd@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Threads): Document new "set print thread-events"
|
|
|
|
|
and "show print thread-events" commands.
|
|
|
|
|
|
2008-01-19 14:37:13 +01:00
|
|
|
|
2008-01-19 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Specify Location): New section.
|
|
|
|
|
(Delete Breaks, Edit, Set Breaks): Remove description of
|
|
|
|
|
locations. Instead, add a reference to "Specify Location".
|
|
|
|
|
(Machine Code, Jumping, Thread Stops, Continuing and Stepping)
|
|
|
|
|
(Symbols): Refer to "Specify Location" for the valid forms of
|
|
|
|
|
linespecs and locations.
|
|
|
|
|
|
2008-01-18 18:07:40 +01:00
|
|
|
|
2008-01-18 Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Replace the description of
|
|
|
|
|
BITS_BIG_ENDIAN with a description of gdbarch_bits_big_endian.
|
|
|
|
|
|
2008-01-12 09:36:10 +01:00
|
|
|
|
2008-01-12 Paul Hilfinger <hilfinger@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (C Operators): Remove incorrect parenthetical comment
|
|
|
|
|
about &&var, which is rejected by the expression parser.
|
|
|
|
|
|
2008-01-09 14:47:59 +01:00
|
|
|
|
2008-01-09 Luis Machado <luisgpm@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Output): Update documentation on using printf with DFP
|
|
|
|
|
types.
|
|
|
|
|
|
2008-01-07 23:35:36 +01:00
|
|
|
|
2008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (C and C++): Add Decimal Floating Point format
|
|
|
|
|
subsubsection.
|
|
|
|
|
(Decimal Floating Point format): New subsubsection.
|
|
|
|
|
|
2008-01-05 22:50:44 +01:00
|
|
|
|
2008-01-05 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Remove mention of the attempt to
|
|
|
|
|
open a core file with the -p option. Don't list -c as a valid
|
|
|
|
|
option to attach to a process.
|
|
|
|
|
|
2008-01-05 17:49:53 +01:00
|
|
|
|
2008-01-05 Pedro Alves <pedro@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Conditionals): Remove mention of
|
|
|
|
|
ALIGN_STACK_ON_ENTRY.
|
|
|
|
|
|
2008-01-05 16:12:56 +01:00
|
|
|
|
2008-01-05 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Start of New Year Procedure): Add item
|
|
|
|
|
describing how to update the source and documentation copyright
|
|
|
|
|
notices.
|
|
|
|
|
|
2007-12-18 19:11:09 +01:00
|
|
|
|
2007-12-18 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
2007-12-18 22:32:50 +01:00
|
|
|
|
* gdb.texinfo (Set Watchpoints): Integrate per-thread
|
2007-12-18 19:11:09 +01:00
|
|
|
|
watchpoint explanation into the main description of the watchpoint
|
|
|
|
|
command; update synopses of 'watch', 'rwatch', and 'awatch'
|
|
|
|
|
commands.
|
|
|
|
|
|
2007-12-18 12:06:12 +01:00
|
|
|
|
2007-12-18 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Miscellaneous gdb/mi Commands):
|
|
|
|
|
Document 'pending-breakpoints' feature of
|
|
|
|
|
-list-features.
|
|
|
|
|
|
2007-12-17 13:32:23 +01:00
|
|
|
|
2007-12-17 Luis Machado <luisgpm@br.ibm.com>
|
|
|
|
|
|
Convert frame unwinders to use the current frame and
"struct value".
* frame.c (frame_debug): Make global.
(get_frame_id): Pass this frame to unwinder routines.
(frame_pc_unwind): Remove unused unwind->prev_pc support.
(do_frame_register_read): Do not discard the return value of
frame_register_read.
(frame_register_unwind): Remove debug messages. Use
frame_unwind_register_value.
(frame_unwind_register_value, get_frame_register_value): New
functions.
(create_new_frame, get_frame_base_address, get_frame_locals_address)
(get_frame_args_address, get_frame_type): Pass this frame to
unwinder routines.
(frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
functions.
* frame.h: Update comments.
(frame_debug, frame_unwind_register_value, get_frame_register_value)
(frame_prepare_for_sniffer): Declare.
* frame-unwind.h: Update comments and parameter names.
(default_frame_sniffer): Declare.
(frame_prev_register_ftype): Return a struct value *.
(struct frame_unwind): Remove prev_pc member.
(frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): Declare.
* frame-base.h: Update comments and parameter names.
* valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
if necessary. Add debugging output.
* sentinel-frame.c (sentinel_frame_prev_register)
(sentinel_frame_this_id): Update for new signature.
(sentinel_frame_prev_pc): Delete.
(sentinel_frame_unwinder): Remove prev_pc.
* ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
prev_pc.
* libunwind-frame.c (libunwind_frame_unwind): Likewise.
* frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
(frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder): New function.
(frame_unwind_find_by_frame): Take this frame. Only use sniffers
from unwinders. Use frame_prepare_for_sniffer.
(default_frame_sniffer, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): New functions.
* dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
(dummy_frame_prev_register, dummy_frame_this_id): Update for new
signature.
* gdbarch.sh: Replace unwind_dummy_id with dummy_id.
* gdbarch.c, gdbarch.c: Regenerated.
* frame-base.c (default_frame_base_address)
(default_frame_locals_address, default_frame_args_address): Update
for new signature.
(frame_base_find_by_frame): Pass this frame to unwinder routines.
* infcall.c (call_function_by_hand): Update comments.
* Makefile.in (frame-unwind.o): Update dependencies.
* gdbint.texinfo (Stack Frames): New chapter.
(Algorithms): Move Frames text to the new chapter.
(Target Conditionals): Delete SAVE_DUMMY_FRAME_TOS. Document
gdbarch_dummy_id instead of gdbarch_unwind_dummy_id.
2008-04-30 23:16:46 +02:00
|
|
|
|
* gdb.texinfo: Add new parameter's description.
|
2007-12-17 13:32:23 +01:00
|
|
|
|
|
2007-12-16 23:57:06 +01:00
|
|
|
|
2007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Overview): Clarify run-length encoding
|
|
|
|
|
example. Remove the restriction on "+" and "-" characters.
|
|
|
|
|
|
2007-12-15 14:13:12 +01:00
|
|
|
|
2007-12-15 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Host I/O Packets): Fix xref syntax.
|
|
|
|
|
|
2007-12-14 19:15:47 +01:00
|
|
|
|
2007-12-14 Vladimir Prus <vladimir@codesourcery.com>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-12-14 19:15:47 +01:00
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Commands): Document
|
|
|
|
|
the -f option for -break-insert, remove -r option,
|
|
|
|
|
and clarify specification of location.
|
|
|
|
|
|
* remote.c (remote_cmdlist): New variable.
(PACKET_vFile_open, PACKET_vFile_pread, PACKET_vFile_pwrite)
(PACKET_vFile_close, PACKET_vFile_unlink): New constants.
(remote_buffer_add_string, remote_buffer_add_bytes)
(remote_buffer_add_int, remote_hostio_parse_result)
(remote_hostio_send_command, remote_hostio_open, remote_hostio_pwrite)
(remote_hostio_pread, remote_hostio_close, remote_hostio_unlink)
(remote_fileio_errno_to_host, remote_hostio_error, fclose_cleanup)
(remote_hostio_close_cleanup, remote_file_put, remote_file_get)
(remote_file_delete, remote_put_command, remote_get_command)
(remote_delete_command, remote_command): New functions.
(_initialize_remote): Register new packets and commands.
* Makefile.in (gdb_fileio_h): New variable.
(remote.o): Update.
(SUBDIR_MI_OBS): Add mi-cmd-target.o.
(SUBDIR_MI_SRCS): Add mi/mi-cmd-target.c.
(mi-cmd-target.o): New rule.
* mi/mi-cmd-target.c: New file.
* mi/mi-cmds.c (mi_cmds): Add target-file-delete, target-file-get,
and target-file-put.
* mi/mi-cmds.h (mi_cmd_target_file_get, mi_cmd_target_file_put)
(mi_cmd_target_file_delete): Declare.
* remote.h (remote_file_put, remote_file_get, remote_file_delete):
Declare.
* NEWS: Describe new file transfer support.
* gdb.texinfo (Debugging Programs with Multiple Processes): Correct
formatting.
(Remote Debugging): Add File Transfer section.
(Remote Configuration): Document Host I/O packets.
(GDB/MI): Add GDB/MI File Transfer Commands section.
(Remote Protocol): Add Host I/O Packets section.
(Packets): Add vFile.
* Makefile.in (OBS): Add hostio.o.
(hostio.o): New rule.
* server.h (handle_vFile): Declare.
* hostio.c: New file.
* server.c (handle_v_requests): Take packet_len and new_packet_len
for binary packets. Call handle_vFile.
(main): Update call to handle_v_requests.
* gdb.server/file-transfer.exp, gdb.server/transfer.txt,
gdb.mi/mi-file-transfer.exp: New.
2007-11-30 22:50:19 +01:00
|
|
|
|
2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Programs with Multiple Processes): Correct
|
|
|
|
|
formatting.
|
|
|
|
|
(Remote Debugging): Add File Transfer section.
|
|
|
|
|
(Remote Configuration): Document Host I/O packets.
|
|
|
|
|
(GDB/MI): Add GDB/MI File Transfer Commands section.
|
2007-12-15 14:13:12 +01:00
|
|
|
|
(Host I/O Packets): New section in "Remote Protocol".
|
* remote.c (remote_cmdlist): New variable.
(PACKET_vFile_open, PACKET_vFile_pread, PACKET_vFile_pwrite)
(PACKET_vFile_close, PACKET_vFile_unlink): New constants.
(remote_buffer_add_string, remote_buffer_add_bytes)
(remote_buffer_add_int, remote_hostio_parse_result)
(remote_hostio_send_command, remote_hostio_open, remote_hostio_pwrite)
(remote_hostio_pread, remote_hostio_close, remote_hostio_unlink)
(remote_fileio_errno_to_host, remote_hostio_error, fclose_cleanup)
(remote_hostio_close_cleanup, remote_file_put, remote_file_get)
(remote_file_delete, remote_put_command, remote_get_command)
(remote_delete_command, remote_command): New functions.
(_initialize_remote): Register new packets and commands.
* Makefile.in (gdb_fileio_h): New variable.
(remote.o): Update.
(SUBDIR_MI_OBS): Add mi-cmd-target.o.
(SUBDIR_MI_SRCS): Add mi/mi-cmd-target.c.
(mi-cmd-target.o): New rule.
* mi/mi-cmd-target.c: New file.
* mi/mi-cmds.c (mi_cmds): Add target-file-delete, target-file-get,
and target-file-put.
* mi/mi-cmds.h (mi_cmd_target_file_get, mi_cmd_target_file_put)
(mi_cmd_target_file_delete): Declare.
* remote.h (remote_file_put, remote_file_get, remote_file_delete):
Declare.
* NEWS: Describe new file transfer support.
* gdb.texinfo (Debugging Programs with Multiple Processes): Correct
formatting.
(Remote Debugging): Add File Transfer section.
(Remote Configuration): Document Host I/O packets.
(GDB/MI): Add GDB/MI File Transfer Commands section.
(Remote Protocol): Add Host I/O Packets section.
(Packets): Add vFile.
* Makefile.in (OBS): Add hostio.o.
(hostio.o): New rule.
* server.h (handle_vFile): Declare.
* hostio.c: New file.
* server.c (handle_v_requests): Take packet_len and new_packet_len
for binary packets. Call handle_vFile.
(main): Update call to handle_v_requests.
* gdb.server/file-transfer.exp, gdb.server/transfer.txt,
gdb.mi/mi-file-transfer.exp: New.
2007-11-30 22:50:19 +01:00
|
|
|
|
(Packets): Add vFile.
|
|
|
|
|
|
2007-11-17 12:56:02 +01:00
|
|
|
|
2007-11-17 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks, Disabling): Clarify behavior of
|
|
|
|
|
breakpoints with multiple locations.
|
|
|
|
|
(Breakpoint Menus): Improve wording.
|
|
|
|
|
(Output): Fix last change.
|
|
|
|
|
|
2007-11-17 01:54:18 +01:00
|
|
|
|
2007-11-17 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (Makefile): Do not depend on target_makefile_frag.
|
|
|
|
|
|
2007-11-15 19:43:23 +01:00
|
|
|
|
2007-11-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Update output of "maint info symtabs".
|
|
|
|
|
|
2007-11-15 07:14:26 +01:00
|
|
|
|
2007-11-15 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Conditionals): Remove
|
|
|
|
|
mention of CLEAR_SOLIB.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-11-12 06:20:36 +01:00
|
|
|
|
2007-11-11 Joel Brobecker <brobecker@adacore.com>
|
2007-11-12 06:19:17 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Add documentation for "set/show
|
|
|
|
|
print frame-arguments".
|
|
|
|
|
|
2007-11-05 12:32:31 +01:00
|
|
|
|
2007-11-05 Luis Machado <luisgpm@br.ibm.com>
|
|
|
|
|
|
2007-11-17 12:56:02 +01:00
|
|
|
|
* gdb.texinfo (Output): Update printf command's description.
|
2007-11-05 12:32:31 +01:00
|
|
|
|
|
2007-10-30 20:35:35 +01:00
|
|
|
|
2007-10-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (PowerPC): Document "set powerpc vector-abi" and "set
|
|
|
|
|
powerpc soft-float".
|
|
|
|
|
|
2007-10-24 23:05:36 +02:00
|
|
|
|
2007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Correct formatting. Mention Expat
|
|
|
|
|
requirement.
|
|
|
|
|
(Requirements for Building GDB): Expand the list of Expat
|
|
|
|
|
uses.
|
|
|
|
|
(Library List Format, Memory Map Format): Mention Expat.
|
|
|
|
|
(Target Descriptions): Update Expat wording.
|
|
|
|
|
|
2007-10-24 22:29:14 +02:00
|
|
|
|
2007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Register and Memory Data, Target Conditionals):
|
|
|
|
|
Document that gdbarch_convert_register_p should return zero for no-op
|
|
|
|
|
conversions.
|
|
|
|
|
|
2007-10-22 16:25:13 +02:00
|
|
|
|
2007-10-22 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
2007-10-24 22:29:14 +02:00
|
|
|
|
* gdbint.texi (Compiler Characteristics): Move documentation
|
2007-10-22 16:25:13 +02:00
|
|
|
|
of set_gdbarch_sofun_address_maybe_missing back to ...
|
|
|
|
|
(Target Conditionals): ... here to fix build break.
|
|
|
|
|
|
2007-10-19 14:26:35 +02:00
|
|
|
|
2007-10-19 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
2007-10-24 22:29:14 +02:00
|
|
|
|
* gdbint.texi (Target Conditionals): Remove documentation of
|
2007-10-19 14:26:35 +02:00
|
|
|
|
SOFUN_ADDRESS_MAYBE_MISSING, replaced by ...
|
|
|
|
|
(Compiler Characteristics): ... documentation of
|
|
|
|
|
set_gdbarch_sofun_address_maybe_missing.
|
|
|
|
|
|
2007-10-17 15:36:45 +02:00
|
|
|
|
2007-10-17 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Use
|
|
|
|
|
frame_unwind_register_unsigned in examples instead of
|
|
|
|
|
frame_unwind_unsigned_register.
|
|
|
|
|
|
* NEWS: Document target described register support for PowerPC.
* ppc-tdep.h: Remove ppc_spr constants.
(struct gdbarch_tdep): Remove regs, ppc_sr0_regnum, and
ppc_builtin_type_vec128 members.
(PPC_R0_REGNUM, PPC_F0_REGNUM, PPC_PC_REGNUM, PPC_MSR_REGNUM)
(PPC_CR_REGNUM, PPC_LR_REGNUM, PPC_CTR_REGNUM, PPC_XER_REGNUM)
(PPC_FPSCR_REGNUM, PPC_MQ_REGNUM, PPC_SPE_UPPER_GP0_REGNUM)
(PPC_SPE_ACC_REGNUM, PPC_SPE_FSCR_REGNUM, PPC_VR0_REGNUM)
(PPC_VSCR_REGNUM, PPC_VRSAVE_REGNUM, PPC_NUM_REGS): New constants.
* rs6000-tdep.c: Include preparsed descriptions.
(init_sim_regno_table): Do not iterate over pseudo registers.
Look up segment registers by name. Use sim_spr_register_name
for SPRs.
(rs6000_register_sim_regno): Call init_sim_regno_table here.
(rs6000_builtin_type_vec128): Delete.
(rs6000_register_name): Only handle SPE pseudo registers and upper
halves. Call tdesc_register_name for everything else.
(rs6000_register_type): Delete. Replace with...
(rs6000_pseudo_register_type): ...this new function. Only handle
SPE pseudo registers.
(rs6000_register_reggroup_p): Delete. Replace with...
(rs6000_pseudo_register_reggroup_p): ...this new function. Only
handle SPE pseudo registers.
(rs6000_convert_register_p): Use ppc_fp0_regnum instead of
"struct reg".
(rs6000_register_to_value, rs6000_value_to_register): Remove check
of reg->fpr.
(e500_register_reggroup_p): Delete.
(STR, R, R4, R8, R16, F, P8, R32, R64, R0, A4, S, S4, SN4, S64)
(COMMON_UISA_REGS, PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS)
(PPC_SEGMENT_REGS, PPC_OEA_SPRS, PPC_ALTIVEC_REGS, PPC_SPE_GP_REGS)
(PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): Delete macros.
(registers_powerpc, registers_403, registers_403GC, registers_505)
(registers_860, registers_601, registers_602, registers_603)
(registers_604, registers_750, registers_7400, registers_e500): Delete
variables.
(struct variant): Delete nregs, npregs, num_tot_regs, and regs. Add
tdesc.
(tot_num_registers, num_registers, num_pseudo_registers): Delete.
(variants): Delete outdated comment. Use standard target descriptions
instead of "struct reg" arrays.
(init_variants): Delete.
(rs6000_gdbarch_init): Do not guess word size from the BFD
architecture if we have a target description. Select a variant
before creating a new architecture. Use the variant's target
description if the target did not define a register layout.
Validate target-supplied registers. Reject mismatches. Use
fixed register numbers and new constants instead of magic
numbers. Call set_gdbarch_ps_regnum. Call tdesc_use_registers.
(_initialize_rs6000_tdep): Initialize the preparsed target
descriptions.
* target-descriptions.c (tdesc_predefined_types): Add int128 and
uint128.
(tdesc_find_register_early): New function.
(tdesc_numbered_register): Use it.
(tdesc_register_size): New function.
(tdesc_use_registers): Take a target_desc argument. Do not use
gdbarch_target_desc.
* target-descriptions.h (tdesc_use_registers): Update prototype
and comment.
(tdesc_register_size): New prototype.
* Makefile.in (powerpc_32_c, powerpc_403_c, powerpc_403gc_c)
(powerpc_505_c, powerpc_601_c, powerpc_602_c, powerpc_603_c)
(powerpc_604_c, powerpc_64_c, powerpc_7400_c, powerpc_750_c)
(powerpc_860_c, powerpc_e500_c, rs6000_c): New macros.
(rs6000-tdep.o): Update.
* arm-tdep.c (arm_gdbarch_init): Update call to tdesc_use_registers.
* m68k-tdep.c (m68k_gdbarch_init): Likewise.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* gdb.texinfo (Predefined Target Types): Add int128
and uint128.
(Standard Target Features): Add PowerPC features.
* gdb.xml/tdesc-regs.exp: Add PowerPC support.
* sim-ppc.h (sim_spr_register_name): New prototype.
* gdb-sim.c (regnum2spr): Rename to...
(sim_spr_register_name): ... this. Make global.
2007-10-15 21:45:31 +02:00
|
|
|
|
2007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Predefined Target Types): Add int128
|
|
|
|
|
and uint128.
|
|
|
|
|
(Standard Target Features): Add PowerPC features.
|
|
|
|
|
|
* target-descriptions.c (tdesc_predefined_types): New.
(tdesc_named_type): Use it.
(tdesc_type_id, maint_print_c_tdesc_cmd): New functions.
(_intialize_target_descriptions): Register "maint print c-tdesc".
* features/Makefile (XMLTOC, CFILES, GDB): New macros.
(cfiles, %.c): New rules.
* features/arm-with-iwmmxt.c, features/mips-linux.c,
features/mips64-linux.c: New generated files.
* arm-linux-nat.c: Include preparsed description instead of
"xml-support.h".
(super_xfer_partial, arm_linux_xfer_partial): Remove.
(arm_linux_read_description): New function.
(_initialize_arm_linux_nat): Set to_read_description instead of
to_xfer_partial. Initialize preparsed description.
* config/arm/linux.mh (TDEP_XML): Delete.
* mips-linux-nat.c: Include preparsed descriptions instead of
"xml-support.h".
(super_xfer_partial, mips_linux_xfer_partial): Remove.
(mips_linux_read_description): New function.
(_initialize_mips_linux_nat): Set to_read_description instead of
to_xfer_partial. Initialize preparsed description.
* config/mips/linux.mh (TDEP_XML): Delete.
* Makefile.in (XMLFILES): Remove $(TDEP_XML).
(features_headers, arm_with_iwmmxt_c, mips_linux_c)
(mips64_linux_c): New macros.
(arm-linux-nat.o, mips-linux-nat.o): Update.
* gdb.texinfo (Maintenance Commands): Document "maint print c-tdesc".
2007-10-15 21:19:18 +02:00
|
|
|
|
2007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document "maint print c-tdesc".
|
|
|
|
|
|
2007-10-13 02:06:54 +02:00
|
|
|
|
2007-10-12 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texi (Target Conditionals): Remove documentation
|
|
|
|
|
of and references to DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS,
|
|
|
|
|
gdbarch_extract_return_value, and gdbarch_store_return_value.
|
|
|
|
|
|
2007-10-12 17:30:05 +02:00
|
|
|
|
2007-10-12 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texi (Target Conditionals): Remove documentation of
|
|
|
|
|
and references to DEPRECATED_REG_STRUCT_HAS_ADDR.
|
|
|
|
|
|
2007-10-11 22:12:04 +02:00
|
|
|
|
2007-10-11 Kazu Hirata <kazu@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Mention that inaccessible-by-default is on by
|
|
|
|
|
default.
|
|
|
|
|
|
2007-10-11 21:01:43 +02:00
|
|
|
|
2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Remove VARIABLES_INSIDE_BLOCK.
|
|
|
|
|
|
2007-10-01 02:17:58 +02:00
|
|
|
|
2007-09-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Setting Watchpoints): Adjust warning text about
|
|
|
|
|
multi-threaded watchpoints.
|
|
|
|
|
* gdbint.texinfo (Watchpoints): Describe how watchpoints are
|
|
|
|
|
checked. Describe sticky notification. Expand description
|
|
|
|
|
of steppable and continuable watchpoints.
|
|
|
|
|
(Watchpoints and Threads): New subsection.
|
|
|
|
|
|
2007-09-28 08:24:20 +02:00
|
|
|
|
2007-09-28 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Setting Breakpoints): Revise
|
|
|
|
|
documentation for pending breakpoints. Document
|
|
|
|
|
breakpoints with multiple locations.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-09-16 16:59:31 +02:00
|
|
|
|
2007-09-19 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Miscellaneous gdb/mi Commands):
|
|
|
|
|
Document -list-features.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-09-15 10:54:26 +02:00
|
|
|
|
2007-09-15 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Output): Spell out which features of C's printf are
|
|
|
|
|
not supported by GDB's printf.
|
2007-09-15 11:49:36 +02:00
|
|
|
|
(Separate Debug Files): More accurate wording regarding build ID
|
|
|
|
|
and a reference to the ld manual rather than the Fedora wiki.
|
2007-09-15 10:54:26 +02:00
|
|
|
|
|
2007-09-05 02:51:49 +02:00
|
|
|
|
2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Output Formats): Update 'c' description. Describe 's'.
|
|
|
|
|
(Examining Memory): Update mentions of the 's' format.
|
|
|
|
|
(Automatic Display): Likewise.
|
|
|
|
|
|
2007-09-02 22:02:12 +02:00
|
|
|
|
2007-09-02 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update the FSF's Back-Cover Text.
|
|
|
|
|
|
2007-09-02 21:55:32 +02:00
|
|
|
|
2007-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): Cosmetic quoting removal.
|
|
|
|
|
Fixed the ``build ID'' name. New binaries build instructions for the
|
|
|
|
|
build ID inclusion. Explain how the commands are specific to the build
|
|
|
|
|
ID vs. debug link.
|
|
|
|
|
|
2007-09-01 12:28:25 +02:00
|
|
|
|
2007-09-01 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): Fix last change. Add
|
|
|
|
|
indexing for ``build ID'' support.
|
|
|
|
|
|
2007-09-01 10:17:13 +02:00
|
|
|
|
2007-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): Included a BUILD ID description.
|
|
|
|
|
Enlisted BUILD ID to the debug file searching example.
|
|
|
|
|
Included a BUILD ID `.note.gnu.build-id' section description.
|
|
|
|
|
Updated/added the debug files splitting instructions for OBJCOPY.
|
|
|
|
|
|
2007-08-31 20:52:05 +02:00
|
|
|
|
2007-08-31 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Variable Objects): Adjust docs
|
|
|
|
|
for -var-info-expression and document
|
|
|
|
|
-var-info-path-expression.
|
|
|
|
|
|
2007-08-20 21:31:11 +02:00
|
|
|
|
2007-08-20 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
2007-08-21 17:09:59 +02:00
|
|
|
|
* gdb.texinfo (Top): Dedicate manual to the memory of Fred Fish.
|
|
|
|
|
(title page): Include the dedication in the printed manual, as a
|
|
|
|
|
separate page after the copyright notice.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-08-20 21:31:11 +02:00
|
|
|
|
* gdb.texinfo (The F Reply Packet): Avoid confusing texi2html:
|
|
|
|
|
don't break a @var across a line.
|
|
|
|
|
|
2007-07-26 12:34:00 +02:00
|
|
|
|
2007-07-25 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (MAKEHTMLFLAGS): Also search the current directory
|
|
|
|
|
for include files.
|
|
|
|
|
|
2007-07-12 09:58:38 +02:00
|
|
|
|
2007-07-12 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server Prefix): New node. Adapt from existing node
|
2008-07-07 14:05:30 +02:00
|
|
|
|
in annotate.texinfo.
|
|
|
|
|
(Command History): Link to new node.
|
2007-07-12 09:58:38 +02:00
|
|
|
|
|
2007-07-05 14:22:32 +02:00
|
|
|
|
2007-07-05 Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (PC_LOAD_SEGMENT): Remove description.
|
|
|
|
|
|
2007-07-04 23:51:23 +02:00
|
|
|
|
2007-07-05 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Fix last change.
|
|
|
|
|
|
2007-07-03 Markus Deuling <deuling@de.ibm.com>
* gdb.texinfo: Replace following macros by their appropriate gdbarch
routines:
(TARGET_CHAR_SIGNED, CALL_DUMMY_LOCATION, CANNOT_FETCH_REGISTER)
(CANNOT_STORE_REGISTER, GET_LONGJMP_TARGET, POINTER_TO_ADDRESS)
(ADDRESS_TO_POINTER, INNER_THAN, FRAME_NUM_ARGS)
(HAVE_NONSTEPPABLE_WATCHPOINT, TARGET_SHORT_BIT, TARGET_INT_BIT)
(TARGET_LONG_BIT, TARGET_LONG_LONG_BIT, TARGET_FLOAT_BIT)
(TARGET_DOUBLE_BIT, TARGET_LONG_DOUBLE_BIT, TARGET_PTR_BIT
(TARGET_ADDR_BIT, SP_REGNUM, PC_REGNUM, PS_REGNUM, FP0_REGNUM)
(STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM, DWARF_REG_TO_REGNUM)
(SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM, BELIEVE_PCC_PROMOTION)
(CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
(POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, EXTRACT_RETURN_VALUE)
(STORE_RETURN_VALUE, SKIP_PROLOGUE, MEMORY_INSERT_BREAKPOINT)
(BREAKPOINT_FROM_PC, MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
(ADDR_BITS_REMOVE, TARGET_PRINT_INSN, SKIP_TRAMPOLINE_CODE)
(IN_SOLIB_RETURN_TRAMPOLINE, NAME_OF_MALLOC, ADDRESS_CLASS_TYPE_FLAGS)
(ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_TYPE_FLAGS_P).
(ADDRESS_CLASS_NAME_to_TYPE_FLAGS, ADJUST_BREAKPOINT_ADDRESS)
(PRINT_FLOAT_INFO, PRINT_VECTOR_INFO, INTEGER_TO_ADDRESS)
(SKIP_PERMANENT_BREAKPOINT, TARGET_VIRTUAL_FRAME_POINTER)
(SOFTWARE_SINGLE_STEP_P)
(push_dummy_call, stabs_argument_has_addr, unwind_sp, unwind_pc)
(print_registers_info, push_dummy_code, unwind_dummy_id): Rework
(REGISTER_CONVERT_TO_TYPE, END_OF_TEXT_DEFAULT, GDB_MULTI_ARCH)
(GDB_TARGET_IS_HPPA, DEPRECATED_GET_SAVED_REGISTER)
(SYMBOLS_CAN_START_WITH_DOLLAR, DEPRECATED_INIT_EXTRA_FRAME_INFO)
(DEPRECATED_INIT_FRAME_PC, DEPRECATED_SIGTRAMP_START)
(IN_SOLIB_CALL_TRAMPOLINE, NO_HIF_SUPPORT, REGISTER_CONVERTIBLE)
(DEPRECATED_REGISTER_RAW_SIZE, PARM_BOUNDARY, DEPRECATED_STACK_ALIGN)
(PROLOGUE_FIRSTLINE_OVERLAP, DEPRECATED_POP_FRAME, STEP_SKIPS_DELAY)
(TARGET_COMPLEX_BIT, TARGET_DOUBLE_COMPLEX_BIT)
(OS9K_VARIABLES_INSIDE_BLOCK, KERNEL_U_ADDR, KERNEL_U_ADDR_HPUX)
(REGISTER_U_ADDR, U_REGS_OFFSET, DEBUG_PTRACE): Remove description.
(Converting an existing Target Architecture to Multi-arch): Remove
section.
(gdbarch_unwind_pc, gdbarch_unwind_sp): Renew code example.
(gdbarch_addr_bits_remove): Add code example.
* gdb.texinfo: Replace REGISTER_NAME by gdbarch_register_name.
2007-07-03 14:21:22 +02:00
|
|
|
|
2007-07-03 Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Replace following macros by their appropriate gdbarch
|
|
|
|
|
routines:
|
|
|
|
|
(TARGET_CHAR_SIGNED, CALL_DUMMY_LOCATION, CANNOT_FETCH_REGISTER)
|
|
|
|
|
(CANNOT_STORE_REGISTER, GET_LONGJMP_TARGET, POINTER_TO_ADDRESS)
|
|
|
|
|
(ADDRESS_TO_POINTER, INNER_THAN, FRAME_NUM_ARGS)
|
|
|
|
|
(HAVE_NONSTEPPABLE_WATCHPOINT, TARGET_SHORT_BIT, TARGET_INT_BIT)
|
|
|
|
|
(TARGET_LONG_BIT, TARGET_LONG_LONG_BIT, TARGET_FLOAT_BIT)
|
|
|
|
|
(TARGET_DOUBLE_BIT, TARGET_LONG_DOUBLE_BIT, TARGET_PTR_BIT
|
|
|
|
|
(TARGET_ADDR_BIT, SP_REGNUM, PC_REGNUM, PS_REGNUM, FP0_REGNUM)
|
|
|
|
|
(STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM, DWARF_REG_TO_REGNUM)
|
|
|
|
|
(SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM, BELIEVE_PCC_PROMOTION)
|
|
|
|
|
(CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
|
|
|
|
|
(POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, EXTRACT_RETURN_VALUE)
|
|
|
|
|
(STORE_RETURN_VALUE, SKIP_PROLOGUE, MEMORY_INSERT_BREAKPOINT)
|
|
|
|
|
(BREAKPOINT_FROM_PC, MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
|
|
|
|
|
(ADDR_BITS_REMOVE, TARGET_PRINT_INSN, SKIP_TRAMPOLINE_CODE)
|
|
|
|
|
(IN_SOLIB_RETURN_TRAMPOLINE, NAME_OF_MALLOC, ADDRESS_CLASS_TYPE_FLAGS)
|
|
|
|
|
(ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_TYPE_FLAGS_P).
|
|
|
|
|
(ADDRESS_CLASS_NAME_to_TYPE_FLAGS, ADJUST_BREAKPOINT_ADDRESS)
|
|
|
|
|
(PRINT_FLOAT_INFO, PRINT_VECTOR_INFO, INTEGER_TO_ADDRESS)
|
|
|
|
|
(SKIP_PERMANENT_BREAKPOINT, TARGET_VIRTUAL_FRAME_POINTER)
|
|
|
|
|
(SOFTWARE_SINGLE_STEP_P)
|
|
|
|
|
|
|
|
|
|
(push_dummy_call, stabs_argument_has_addr, unwind_sp, unwind_pc)
|
|
|
|
|
(print_registers_info, push_dummy_code, unwind_dummy_id): Rework
|
|
|
|
|
|
|
|
|
|
(REGISTER_CONVERT_TO_TYPE, END_OF_TEXT_DEFAULT, GDB_MULTI_ARCH)
|
|
|
|
|
(GDB_TARGET_IS_HPPA, DEPRECATED_GET_SAVED_REGISTER)
|
|
|
|
|
(SYMBOLS_CAN_START_WITH_DOLLAR, DEPRECATED_INIT_EXTRA_FRAME_INFO)
|
|
|
|
|
(DEPRECATED_INIT_FRAME_PC, DEPRECATED_SIGTRAMP_START)
|
|
|
|
|
(IN_SOLIB_CALL_TRAMPOLINE, NO_HIF_SUPPORT, REGISTER_CONVERTIBLE)
|
|
|
|
|
(DEPRECATED_REGISTER_RAW_SIZE, PARM_BOUNDARY, DEPRECATED_STACK_ALIGN)
|
|
|
|
|
(PROLOGUE_FIRSTLINE_OVERLAP, DEPRECATED_POP_FRAME, STEP_SKIPS_DELAY)
|
|
|
|
|
(TARGET_COMPLEX_BIT, TARGET_DOUBLE_COMPLEX_BIT)
|
|
|
|
|
(OS9K_VARIABLES_INSIDE_BLOCK, KERNEL_U_ADDR, KERNEL_U_ADDR_HPUX)
|
|
|
|
|
(REGISTER_U_ADDR, U_REGS_OFFSET, DEBUG_PTRACE): Remove description.
|
|
|
|
|
|
|
|
|
|
(Converting an existing Target Architecture to Multi-arch): Remove
|
|
|
|
|
section.
|
|
|
|
|
|
|
|
|
|
(gdbarch_unwind_pc, gdbarch_unwind_sp): Renew code example.
|
|
|
|
|
(gdbarch_addr_bits_remove): Add code example.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Replace REGISTER_NAME by gdbarch_register_name.
|
|
|
|
|
|
2007-07-03 00:01:09 +02:00
|
|
|
|
2007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Document library-info-packet.
|
|
|
|
|
Add other missing entries. Adjust the table size to fit.
|
|
|
|
|
(Stop Reply Packets): Use @itemize instead of @enumerate. Document
|
|
|
|
|
stop reasons including the new "library" event.
|
|
|
|
|
(General Query Packets): Adjust table widths for qSupported. Mention
|
|
|
|
|
qXfer:libraries:read reply to qSupported and document the new packet.
|
|
|
|
|
(Library List Format): New section.
|
|
|
|
|
|
2007-07-01 11:13:05 +02:00
|
|
|
|
2007-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Attach): Fixed GDB exit inferior detachment.
|
|
|
|
|
|
2007-06-29 02:23:44 +02:00
|
|
|
|
2007-06-28 Michael Snyder <msnyder@svkmacdonelllnx>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Table, Tuple and List Functions) Fix typo.
|
|
|
|
|
|
2007-06-25 06:20:38 +02:00
|
|
|
|
2007-06-25 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Register and Memory Data): Break sections
|
|
|
|
|
into nodes and add a menu.
|
|
|
|
|
|
2007-06-21 17:18:51 +02:00
|
|
|
|
2007-06-21 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Examining Memory): Document the new behaviour.
|
|
|
|
|
|
2007-06-21 08:33:03 +02:00
|
|
|
|
2007-06-21 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Standard Target Features): Document
|
|
|
|
|
m68k features.
|
|
|
|
|
|
2007-06-18 17:46:38 +02:00
|
|
|
|
2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document qOffsets changes.
|
|
|
|
|
|
2007-06-13 21:22:35 +02:00
|
|
|
|
2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Description Format): Add version attribute
|
|
|
|
|
for <target>.
|
|
|
|
|
|
2007-06-13 20:47:58 +02:00
|
|
|
|
2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS Features): Document org.gnu.gdb.mips.linux.
|
|
|
|
|
|
2007-06-13 20:27:00 +02:00
|
|
|
|
2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS Features): New subsection.
|
|
|
|
|
|
2007-06-12 16:38:32 +02:00
|
|
|
|
2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document qXfer:spu:read
|
|
|
|
|
and qXfer:spu:write packets and mention them under qSupported.
|
|
|
|
|
|
2007-06-12 16:35:26 +02:00
|
|
|
|
2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
Markus Deuling <deuling@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Architectures): Add new SPU section to document
|
|
|
|
|
Cell Broadband Engine SPU architecture specific commands.
|
|
|
|
|
|
2007-06-09 12:08:16 +02:00
|
|
|
|
2007-06-09 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Editorial
|
|
|
|
|
comments.
|
|
|
|
|
|
2007-06-06 23:27:24 +02:00
|
|
|
|
2007-06-07 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Emacs): Describe GDB under Emacs 22.1.
|
|
|
|
|
|
2007-05-30 00:04:47 +02:00
|
|
|
|
2007-05-29 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Overview): Doc fix.
|
|
|
|
|
|
2007-05-22 12:57:12 +02:00
|
|
|
|
2007-05-22 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Document "set/show
|
|
|
|
|
remoteflow".
|
|
|
|
|
|
* NEWS: Mention removed "set mips stack-arg-size" and "set mips
saved-gpreg-size".
* mips-tdep.c (MIPS32_REGSIZE, MIPS64_REGSIZE): New constants.
(size_auto, size_32, size_64, size_enums, mips_abi_regsize_string)
(mips_stack_argsize_string, mips_stack_argsize): Delete.
(mips_abi_regsize): Simplify.
(mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
(mips_n32n64_return_value, mips_o32_push_dummy_call)
(mips_o32_return_value, mips_o64_push_dummy_call)
(mips_o64_return_value): Propogate constant register sizes. Use the
ABI register size instead of mips_stack_argsize.
(mips_dump_tdep): Don't print mips_stack_argsize.
(_initialize_mips_tdep): Remove saved-gpreg-size and stack-arg-size
settings.
* gdb.texinfo (MIPS): Remove documentation for set mips saved-gpreg-size,
show mips saved-gpreg-size, and set mips stack-arg-size.
2007-05-16 16:16:32 +02:00
|
|
|
|
2007-05-16 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
2007-05-30 00:04:47 +02:00
|
|
|
|
* gdb.texinfo (MIPS): Remove documentation for set mips
|
|
|
|
|
saved-gpreg-size, show mips saved-gpreg-size, and set mips
|
|
|
|
|
stack-arg-size.
|
* NEWS: Mention removed "set mips stack-arg-size" and "set mips
saved-gpreg-size".
* mips-tdep.c (MIPS32_REGSIZE, MIPS64_REGSIZE): New constants.
(size_auto, size_32, size_64, size_enums, mips_abi_regsize_string)
(mips_stack_argsize_string, mips_stack_argsize): Delete.
(mips_abi_regsize): Simplify.
(mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
(mips_n32n64_return_value, mips_o32_push_dummy_call)
(mips_o32_return_value, mips_o64_push_dummy_call)
(mips_o64_return_value): Propogate constant register sizes. Use the
ABI register size instead of mips_stack_argsize.
(mips_dump_tdep): Don't print mips_stack_argsize.
(_initialize_mips_tdep): Remove saved-gpreg-size and stack-arg-size
settings.
* gdb.texinfo (MIPS): Remove documentation for set mips saved-gpreg-size,
show mips saved-gpreg-size, and set mips stack-arg-size.
2007-05-16 16:16:32 +02:00
|
|
|
|
|
2007-05-14 19:53:07 +02:00
|
|
|
|
2007-05-14 Bob Wilson <bob.wilson@acm.org>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-05-14 19:53:07 +02:00
|
|
|
|
* all-cfg.texi (GDBTUI): New.
|
|
|
|
|
* gdb.texinfo (Mode Options): Use GDBTUI variable.
|
|
|
|
|
(TUI, TUI Overview, TUI Keys, TUI Single Key Mode, TUI Commands)
|
|
|
|
|
(TUI Configuration): Edit to improve clarity and fix problems of
|
|
|
|
|
both style and content.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-05-11 21:55:20 +02:00
|
|
|
|
2007-05-11 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): New observer "new_objfile".
|
|
|
|
|
|
2007-05-09 01:39:14 +02:00
|
|
|
|
2007-05-08 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Conditionals): Remove USE_PROC_FS.
|
|
|
|
|
|
2007-04-14 11:51:30 +02:00
|
|
|
|
2007-04-14 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Document
|
|
|
|
|
frozen variables objects.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
* mips-mdebug-tdep.c, mips-mdebug-tdep.h, ocd.c, ocd.h, ppc-bdm.c,
remote-e7000.c, remote-hms.c, remote-utils.c, remote-utils.h,
scm-exp.c, scm-lang.c, scm-lang.h, scm-tags.h, scm-valprint.c,
ser-e7kpc.c, sh3-rom.c, stop-gdb.c: Delete.
* Makefile.in: Remove references to deleted files.
* README: Do not mention deleted ROM monitor interfaces.
* defs.h (enum language): Delete language_scm.
* expprint.c (print_subexp_standard): Do not handle OP_EXPRSTRING.
(dump_subexp_body_standard): Likewise.
* parse.c (operator_length_standard): Likewise.
* expression.h (enum exp_opcode): Delete OP_EXPRSTRING.
* remote-mips.c: Do not include remote-utils.h.
* remote-sim.c: Likewise. Use remote_debug instead of sr_get_debug
throughout.
* value.c: Do not include scm-lang.h.
(unpack_long): Delete scm_unpack call.
* config/h8300/h8300.mt, config/mips/embed.mt,
config/powerpc/ppc-eabi.mt, config/powerpc/ppc-sim.mt,
config/sh/embed.mt, config/sh/linux.mt: Remove references to
deleted files.
* NEWS: Mention removed files.
* gdb.texinfo (Memory): Reference Remote Debugging chapter.
(Character Sets, Caching Data of Remote Targets): Likewise.
(Targets): Delete Remote node. Move its text...
(Debugging Remote Programs): ...to here. Delete description
of the "remote" command.
(Remote configuration): Delete description of "set remotedevice"
and "show remotedevice".
(Embedded Processors): Delete H8/300, H8/500, and SH nodes.
2007-04-13 16:17:47 +02:00
|
|
|
|
2007-04-13 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Memory): Reference Remote Debugging chapter.
|
|
|
|
|
(Character Sets, Caching Data of Remote Targets): Likewise.
|
|
|
|
|
(Targets): Delete Remote node. Move its text...
|
|
|
|
|
(Debugging Remote Programs): ...to here. Delete description
|
|
|
|
|
of the "remote" command.
|
|
|
|
|
(Remote configuration): Delete description of "set remotedevice"
|
|
|
|
|
and "show remotedevice".
|
|
|
|
|
(Embedded Processors): Delete H8/300, H8/500, and SH nodes.
|
|
|
|
|
|
* gdb.texinfo (Contributors, Continuing and Stepping)
(Fortran Defaults, HPPA, TUI, TUI Commands, Configure Options)
(General Query Packets, File-I/O Remote Protocol Extension)
(Protocol Basics, The F Reply Packet, Write)
(Protocol-specific Representation of Datatypes, Memory Transfer):
Fix hyphenation, punctuation and grammar problems.
(Cygwin Native): Likewise. Also fix misuse of @pxref and use
'section' instead of 'subsection' in the text.
(Non-debug DLL Symbols): Avoid 'subsubsection' in the text.
(i386): Remove period from section name.
(Installing GDB, Requirements, Running Configure, Separate Objdir)
(Config Names, Configure Options): Use @file{configure}.
2007-04-11 20:52:01 +02:00
|
|
|
|
2007-04-11 Bob Wilson <bob.wilson@acm.org>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Contributors, Continuing and Stepping)
|
|
|
|
|
(Fortran Defaults, HPPA, TUI, TUI Commands, Configure Options)
|
|
|
|
|
(General Query Packets, File-I/O Remote Protocol Extension)
|
|
|
|
|
(Protocol Basics, The F Reply Packet, Write)
|
|
|
|
|
(Protocol-specific Representation of Datatypes, Memory Transfer):
|
|
|
|
|
Fix hyphenation, punctuation and grammar problems.
|
|
|
|
|
(Cygwin Native): Likewise. Also fix misuse of @pxref and use
|
|
|
|
|
'section' instead of 'subsection' in the text.
|
|
|
|
|
(Non-debug DLL Symbols): Avoid 'subsubsection' in the text.
|
|
|
|
|
(i386): Remove period from section name.
|
* gdb.texinfo (Contributors, Continuing and Stepping)
(Fortran Defaults, HPPA, TUI, TUI Commands, Configure Options)
(General Query Packets, File-I/O Remote Protocol Extension)
(Protocol Basics, The F Reply Packet, Write)
(Protocol-specific Representation of Datatypes, Memory Transfer):
Fix hyphenation, punctuation and grammar problems.
(Cygwin Native): Likewise. Also fix misuse of @pxref and use
'section' instead of 'subsection' in the text.
(Non-debug DLL Symbols): Avoid 'subsubsection' in the text.
(i386): Remove period from section name.
(Installing GDB, Requirements, Running Configure, Separate Objdir)
(Config Names, Configure Options): Use @file{configure}.
2007-04-11 20:52:01 +02:00
|
|
|
|
(Installing GDB, Requirements, Running Configure, Separate Objdir)
|
|
|
|
|
(Config Names, Configure Options): Use @file{configure}.
|
|
|
|
|
|
2007-04-11 13:11:12 +02:00
|
|
|
|
2007-04-11 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Writing Tests): Mention gdb_test_multiple
|
|
|
|
|
and tab expansion.
|
|
|
|
|
|
2007-04-10 13:58:15 +02:00
|
|
|
|
2007-04-10 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SOM): Correct location of the SOM reader.
|
|
|
|
|
|
2007-04-02 19:31:40 +02:00
|
|
|
|
2007-04-02 Bob Wilson <bob.wilson@acm.org>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-04-02 19:31:40 +02:00
|
|
|
|
* gdb.texinfo: Consistently capitalize all significant words in
|
|
|
|
|
node names, chapter titles, section titles, and headings. Update
|
|
|
|
|
cross references to match.
|
|
|
|
|
(Starting and Stopping Trace Experiment): Make node name plural.
|
|
|
|
|
(Breakpoint related warnings): Hyphenate "Breakpoint-related".
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-31 00:50:33 +02:00
|
|
|
|
2007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (WinCE): Delete obsolete subsection.
|
|
|
|
|
|
* MAINTAINERS: Remove d10v entry.
* Makefile.in (SFILES): Remove dwarfread.c.
(COMMON_OBS): Remove dwarfread.o.
(gdb_sim_d10v_h, abug-rom.o, cpu32bug-rom.o, d10v-tdep.o, dwarfread.o)
(remote-est.o, rom68k-rom.o): Delete.
* NEWS: Mention removal of d10v, target abug, target cpu32bug,
target est, target rom68k, and DWARF 1.
* configure.tgt: Mark d10v as removed.
* dwarf2read.c: Doc update.
* elfread.c (struct elfinfo): Remove dboffset, dbsize, lnoffset,
and lnsize.
(elf_locate_sections): Do not set them.
(elf_symfile_read): Do not call dwarf_build_psymtabs.
* symfile.h (dwarf_build_psymtabs): Delete prototype.
* config/m68k/monitor.mt (TDEPFILES): Prune.
* abug-rom.c, cpu32bug-rom.c, d10v-tdep.c, dwarfread.c,
remote-est.c, rom68k-rom.c, config/d10v/d10v.mt: Delete.
* gdb.texinfo (M68K): Remove obsolete ROM monitors.
* gdbint.texinfo (DWARF 1): Delete section and other dwarfread.c
references.
* gdb.asm/asm-source.exp: Remove d10v case.
* lib/gdb.exp (skip_cplus_tests): Likewise.
* gdb.asm/d10v.inc: Deleted.
2007-03-30 19:21:48 +02:00
|
|
|
|
2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (M68K): Remove obsolete ROM monitors.
|
|
|
|
|
* gdbint.texinfo (DWARF 1): Delete section and other dwarfread.c
|
|
|
|
|
references.
|
|
|
|
|
|
2007-03-30 14:57:44 +02:00
|
|
|
|
2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Startup): Delete references to some alternate
|
|
|
|
|
names for .gdbinit.
|
|
|
|
|
(Thread): Remove LynxOS reference.
|
|
|
|
|
(Tandem ST2000): Delete target-specific documentation.
|
|
|
|
|
* gdbint.texinfo (Symbol Handling): Remove mention of NLM.
|
|
|
|
|
(Target Architecture Definition): Remove mention of GDB_OSABI_NETWARE
|
|
|
|
|
and GDB_OSABI_LYNXOS.
|
|
|
|
|
|
2007-03-30 03:18:17 +02:00
|
|
|
|
2007-03-29 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texi (Native Conditionals): Remove PTRACE_ARG3_TYPE.
|
|
|
|
|
|
2007-03-27 21:11:11 +02:00
|
|
|
|
2007-03-27 Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Remove mention of
|
|
|
|
|
DEPRECATED_REMOTE_BREAKPOINT, DEPRECATED_BIG_REMOTE_BREAKPOINT,
|
|
|
|
|
and DEPRECATED_LITTLE_REMOTE_BREAKPOINT.
|
|
|
|
|
|
2007-03-27 20:09:36 +02:00
|
|
|
|
2007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Add "pdfdir" installation
|
|
|
|
|
directory, PDFTEX macro, support for "install-pdf" target,
|
|
|
|
|
and rules for making a pdf version of refcard.texi.
|
|
|
|
|
* refcard.tex: Specify paper size for PDF output.
|
|
|
|
|
|
2007-03-26 23:28:20 +02:00
|
|
|
|
2007-03-26 Bob Wilson <bob.wilson@acm.org>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 23:28:20 +02:00
|
|
|
|
* gdb.texinfo (Omissions from Ada, Additions to Ada): Wrap long lines.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 17:51:17 +02:00
|
|
|
|
2007-03-26 Bob Wilson <bob.wilson@acm.org>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 17:51:17 +02:00
|
|
|
|
* gdb.texinfo (Invoking GDB): Use @value{GDBP}.
|
|
|
|
|
(Source Path, Character Sets, Macros, Define)
|
|
|
|
|
(GDB/MI Result Records, GDB/MI Simple Examples)
|
|
|
|
|
(GDB/MI Program Execution, GDB/MI File Commands)
|
|
|
|
|
(Maintenance Commands, Packets, File-I/O Overview): Use @value{GDBN}.
|
|
|
|
|
(Bug Reporting): Use @value{GCC}.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 17:49:46 +02:00
|
|
|
|
2007-03-26 Bob Wilson <bob.wilson@acm.org>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 17:49:46 +02:00
|
|
|
|
* gdb.texinfo (Help): Fix formatting of examples.
|
|
|
|
|
(Variables): Use @ifnotinfo instead of @iftex.
|
|
|
|
|
(Non-debug DLL symbols): Use @ref instead of @pxref.
|
|
|
|
|
(Sparclet File): Use @samp instead of quotes.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 17:43:40 +02:00
|
|
|
|
2007-03-26 Bob Wilson <bob.wilson@acm.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Variables, C): Update cross reference to GCC docs.
|
|
|
|
|
|
2007-03-26 17:41:43 +02:00
|
|
|
|
2007-03-26 Bob Wilson <bob.wilson@acm.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Top): Move TUI and Annotations menu entries to match
|
|
|
|
|
the order of the nodes.
|
|
|
|
|
(C Operators, C Constants, Debugging C): Remove extra menus.
|
|
|
|
|
(Method Names in Commands): Do not specify next/prev/up nodes.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2007-03-26 17:41:43 +02:00
|
|
|
|
2007-03-26 Bob Wilson <bob.wilson@acm.org>
|
2007-03-26 17:39:15 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Add missing parenthesis.
|
|
|
|
|
(Breakpoints, Special Fortran commands, PowerPC): Fix typos.
|
|
|
|
|
|
2007-02-26 21:10:18 +01:00
|
|
|
|
2007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Monitor commands for gdbserver): New subsection.
|
|
|
|
|
|
2007-02-26 20:18:53 +01:00
|
|
|
|
2007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
Convert frame unwinders to use the current frame and
"struct value".
* frame.c (frame_debug): Make global.
(get_frame_id): Pass this frame to unwinder routines.
(frame_pc_unwind): Remove unused unwind->prev_pc support.
(do_frame_register_read): Do not discard the return value of
frame_register_read.
(frame_register_unwind): Remove debug messages. Use
frame_unwind_register_value.
(frame_unwind_register_value, get_frame_register_value): New
functions.
(create_new_frame, get_frame_base_address, get_frame_locals_address)
(get_frame_args_address, get_frame_type): Pass this frame to
unwinder routines.
(frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
functions.
* frame.h: Update comments.
(frame_debug, frame_unwind_register_value, get_frame_register_value)
(frame_prepare_for_sniffer): Declare.
* frame-unwind.h: Update comments and parameter names.
(default_frame_sniffer): Declare.
(frame_prev_register_ftype): Return a struct value *.
(struct frame_unwind): Remove prev_pc member.
(frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): Declare.
* frame-base.h: Update comments and parameter names.
* valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
if necessary. Add debugging output.
* sentinel-frame.c (sentinel_frame_prev_register)
(sentinel_frame_this_id): Update for new signature.
(sentinel_frame_prev_pc): Delete.
(sentinel_frame_unwinder): Remove prev_pc.
* ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
prev_pc.
* libunwind-frame.c (libunwind_frame_unwind): Likewise.
* frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
(frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder): New function.
(frame_unwind_find_by_frame): Take this frame. Only use sniffers
from unwinders. Use frame_prepare_for_sniffer.
(default_frame_sniffer, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): New functions.
* dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
(dummy_frame_prev_register, dummy_frame_this_id): Update for new
signature.
* gdbarch.sh: Replace unwind_dummy_id with dummy_id.
* gdbarch.c, gdbarch.c: Regenerated.
* frame-base.c (default_frame_base_address)
(default_frame_locals_address, default_frame_args_address): Update
for new signature.
(frame_base_find_by_frame): Pass this frame to unwinder routines.
* infcall.c (call_function_by_hand): Update comments.
* Makefile.in (frame-unwind.o): Update dependencies.
* gdbint.texinfo (Stack Frames): New chapter.
(Algorithms): Move Frames text to the new chapter.
(Target Conditionals): Delete SAVE_DUMMY_FRAME_TOS. Document
gdbarch_dummy_id instead of gdbarch_unwind_dummy_id.
2008-04-30 23:16:46 +02:00
|
|
|
|
* gdb.texinfo (Standard Target Features): Mention
|
2007-02-26 20:18:53 +01:00
|
|
|
|
case insensitivity.
|
|
|
|
|
(ARM Features): Describe org.gnu.gdb.xscale.iwmmxt.
|
|
|
|
|
|
2007-02-18 09:03:18 +01:00
|
|
|
|
2007-02-18 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Top): Put Appendix A after numbered sections.
|
|
|
|
|
(Files): Add section name to argument list for pxref.
|
|
|
|
|
(Non-debug DLL symbols): Don't use `see' for pxref.
|
|
|
|
|
(Embedded Processors): Fix typo.
|
|
|
|
|
(GDB/MI Breakpoint Commands): Execution commands generate
|
|
|
|
|
*stopped not ^done.
|
|
|
|
|
|
2007-02-13 00:51:46 +01:00
|
|
|
|
2007-02-13 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Describe meanings of
|
|
|
|
|
values for in_scope. Mention that only root variables can be
|
|
|
|
|
updated.
|
|
|
|
|
(GDB/MI Development and Front Ends): Explain new values may be
|
|
|
|
|
added to existing fields.
|
|
|
|
|
|
* Makefile.in (arm-tdep.o, eval.o, target-descriptions.o)
(xml-tdesc.o): Update.
* xml-support.c: Add a comment.
(gdb_xml_enums_boolean): New variable.
(gdb_xml_parse_attr_enum): Use strcasecmp.
* xml-support.h (gdb_xml_enums_boolean): Declare.
* xml-tdesc.c (struct tdesc_parsing_data): Record current_feature,
next_regnum, and current_union.
(tdesc_start_feature, tdesc_start_reg, tdesc_start_union)
(tdesc_end_union, tdesc_start_field, tdesc_start_vector)
(field_attributes, union_children, reg_attributes, union_attributes)
(vector_attributes, feature_attributes, feature_children): New.
(target_children): Make static. Add <feature>.
(tdesc_elements): Make static.
* target-descriptions.c (struct tdesc_reg, tdesc_reg_p, type_p)
(struct tdesc_feature, tdesc_feature_p): New types.
(struct target_desc): Add features member.
(struct tdesc_arch_data, tdesc_data): New.
(target_find_description): Clarify error message. Warn about
ignored register descriptions.
(tdesc_has_registers, tdesc_find_feature, tdesc_feature_name)
(tdesc_named_type, tdesc_data_init, tdesc_data_alloc)
(tdesc_data_cleanup, tdesc_numbered_register)
(tdesc_numbered_register_choices, tdesc_find_register)
(tdesc_register_name, tdesc_register_type)
(tdesc_remote_register_number, tdesc_register_reggroup_p)
(set_tdesc_pseudo_register_name, set_tdesc_pseudo_register_type)
(set_tdesc_pseudo_register_reggroup_p, tdesc_use_registers)
(tdesc_free_reg, tdesc_create_reg, tdesc_free_feature)
(tdesc_create_feature, tdesc_record_type): New.
(free_target_description): Free features.
(_initialize_target_descriptions): Initialize tdesc_data.
* arch-utils.c (default_remote_register_number): New.
* arch-utils.h (default_remote_register_number): New prototype.
* target-descriptions.h (set_tdesc_pseudo_register_name)
(set_tdesc_pseudo_register_type, set_tdesc_pseudo_register_reggroup_p)
(tdesc_use_registers, tdesc_data_alloc, tdesc_data_cleanup)
(tdesc_numbered_register, tdesc_numbered_register_choices)
(tdesc_has_registers, tdesc_find_feature, tdesc_feature_name)
(tdesc_named_type, tdesc_create_feature, tdesc_record_type)
(tdesc_create_reg): Declare.
* gdbarch.sh (remote_register_number): New entry.
* gdbarch.c, gdbarch.h: Regenerate.
* remote.c (init_remote_state): Use gdbarch_remote_register_number.
* features/gdb-target.dtd: Add feature, reg, vector, union, and field.
* arm-tdep.c (arm_register_aliases): New.
(arm_register_name_strings): Rename to...
(arm_register_names): ...this. Make const. Delete the old version.
(current_option, arm_register_byte): Delete.
(set_disassembly_style): Simplify. Do not adjust arm_register_names.
(value_of_arm_user_reg): New.
(arm_gdbarch_init): Verify any described registers. Call
tdesc_use_registers. Don't use arm_register_byte. Create aliases
for standard register names.
(_initialize_arm_tdep): Do not adjust arm_register_names.
* user-regs.c (struct user_reg): Add baton member.
(append_user_reg, user_reg_add_builtin, user_regs_init)
(user_reg_add, value_of_user_reg): Use a baton for user
register functions.
* std-regs.c: Update.
* user-regs.h (user_reg_read_ftype, user_reg_add_builtin)
(user_reg_add): Add baton argument.
* NEWS: Mention target description register support.
* features/arm-core.xml, features/arm-fpa.xml: New.
* eval.c (evaluate_subexp_standard): Allow ptype $register
when the program is not running.
* gdb.texinfo (-target-disconnect): Use @smallexample.
(Requirements): Add anchor for Expat. Update description.
(Target Descriptions): Mention Expat.
(Target Description Format): Document new elements. Use
@smallexample.
(Predefined Target Types, Standard Target Features): New sections.
* doc/gdbint.texinfo (Target Descriptions): New section.
* gdb.xml/single-reg.xml, gdb.xml/tdesc-regs.exp,
gdb.xml/core-only.xml, gdb.xml/extra-regs.xml: New files.
2007-02-08 22:00:36 +01:00
|
|
|
|
2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (-target-disconnect): Use @smallexample.
|
|
|
|
|
(Requirements): Add anchor for Expat. Update description.
|
|
|
|
|
(Target Descriptions): Mention Expat.
|
|
|
|
|
(Target Description Format): Document new elements. Use
|
|
|
|
|
@smallexample.
|
|
|
|
|
(Predefined Target Types, Standard Target Features): New sections.
|
Convert frame unwinders to use the current frame and
"struct value".
* frame.c (frame_debug): Make global.
(get_frame_id): Pass this frame to unwinder routines.
(frame_pc_unwind): Remove unused unwind->prev_pc support.
(do_frame_register_read): Do not discard the return value of
frame_register_read.
(frame_register_unwind): Remove debug messages. Use
frame_unwind_register_value.
(frame_unwind_register_value, get_frame_register_value): New
functions.
(create_new_frame, get_frame_base_address, get_frame_locals_address)
(get_frame_args_address, get_frame_type): Pass this frame to
unwinder routines.
(frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
functions.
* frame.h: Update comments.
(frame_debug, frame_unwind_register_value, get_frame_register_value)
(frame_prepare_for_sniffer): Declare.
* frame-unwind.h: Update comments and parameter names.
(default_frame_sniffer): Declare.
(frame_prev_register_ftype): Return a struct value *.
(struct frame_unwind): Remove prev_pc member.
(frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): Declare.
* frame-base.h: Update comments and parameter names.
* valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
if necessary. Add debugging output.
* sentinel-frame.c (sentinel_frame_prev_register)
(sentinel_frame_this_id): Update for new signature.
(sentinel_frame_prev_pc): Delete.
(sentinel_frame_unwinder): Remove prev_pc.
* ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
prev_pc.
* libunwind-frame.c (libunwind_frame_unwind): Likewise.
* frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
(frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder): New function.
(frame_unwind_find_by_frame): Take this frame. Only use sniffers
from unwinders. Use frame_prepare_for_sniffer.
(default_frame_sniffer, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): New functions.
* dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
(dummy_frame_prev_register, dummy_frame_this_id): Update for new
signature.
* gdbarch.sh: Replace unwind_dummy_id with dummy_id.
* gdbarch.c, gdbarch.c: Regenerated.
* frame-base.c (default_frame_base_address)
(default_frame_locals_address, default_frame_args_address): Update
for new signature.
(frame_base_find_by_frame): Pass this frame to unwinder routines.
* infcall.c (call_function_by_hand): Update comments.
* Makefile.in (frame-unwind.o): Update dependencies.
* gdbint.texinfo (Stack Frames): New chapter.
(Algorithms): Move Frames text to the new chapter.
(Target Conditionals): Delete SAVE_DUMMY_FRAME_TOS. Document
gdbarch_dummy_id instead of gdbarch_unwind_dummy_id.
2008-04-30 23:16:46 +02:00
|
|
|
|
* gdbint.texinfo (Target Descriptions): New section.
|
* Makefile.in (arm-tdep.o, eval.o, target-descriptions.o)
(xml-tdesc.o): Update.
* xml-support.c: Add a comment.
(gdb_xml_enums_boolean): New variable.
(gdb_xml_parse_attr_enum): Use strcasecmp.
* xml-support.h (gdb_xml_enums_boolean): Declare.
* xml-tdesc.c (struct tdesc_parsing_data): Record current_feature,
next_regnum, and current_union.
(tdesc_start_feature, tdesc_start_reg, tdesc_start_union)
(tdesc_end_union, tdesc_start_field, tdesc_start_vector)
(field_attributes, union_children, reg_attributes, union_attributes)
(vector_attributes, feature_attributes, feature_children): New.
(target_children): Make static. Add <feature>.
(tdesc_elements): Make static.
* target-descriptions.c (struct tdesc_reg, tdesc_reg_p, type_p)
(struct tdesc_feature, tdesc_feature_p): New types.
(struct target_desc): Add features member.
(struct tdesc_arch_data, tdesc_data): New.
(target_find_description): Clarify error message. Warn about
ignored register descriptions.
(tdesc_has_registers, tdesc_find_feature, tdesc_feature_name)
(tdesc_named_type, tdesc_data_init, tdesc_data_alloc)
(tdesc_data_cleanup, tdesc_numbered_register)
(tdesc_numbered_register_choices, tdesc_find_register)
(tdesc_register_name, tdesc_register_type)
(tdesc_remote_register_number, tdesc_register_reggroup_p)
(set_tdesc_pseudo_register_name, set_tdesc_pseudo_register_type)
(set_tdesc_pseudo_register_reggroup_p, tdesc_use_registers)
(tdesc_free_reg, tdesc_create_reg, tdesc_free_feature)
(tdesc_create_feature, tdesc_record_type): New.
(free_target_description): Free features.
(_initialize_target_descriptions): Initialize tdesc_data.
* arch-utils.c (default_remote_register_number): New.
* arch-utils.h (default_remote_register_number): New prototype.
* target-descriptions.h (set_tdesc_pseudo_register_name)
(set_tdesc_pseudo_register_type, set_tdesc_pseudo_register_reggroup_p)
(tdesc_use_registers, tdesc_data_alloc, tdesc_data_cleanup)
(tdesc_numbered_register, tdesc_numbered_register_choices)
(tdesc_has_registers, tdesc_find_feature, tdesc_feature_name)
(tdesc_named_type, tdesc_create_feature, tdesc_record_type)
(tdesc_create_reg): Declare.
* gdbarch.sh (remote_register_number): New entry.
* gdbarch.c, gdbarch.h: Regenerate.
* remote.c (init_remote_state): Use gdbarch_remote_register_number.
* features/gdb-target.dtd: Add feature, reg, vector, union, and field.
* arm-tdep.c (arm_register_aliases): New.
(arm_register_name_strings): Rename to...
(arm_register_names): ...this. Make const. Delete the old version.
(current_option, arm_register_byte): Delete.
(set_disassembly_style): Simplify. Do not adjust arm_register_names.
(value_of_arm_user_reg): New.
(arm_gdbarch_init): Verify any described registers. Call
tdesc_use_registers. Don't use arm_register_byte. Create aliases
for standard register names.
(_initialize_arm_tdep): Do not adjust arm_register_names.
* user-regs.c (struct user_reg): Add baton member.
(append_user_reg, user_reg_add_builtin, user_regs_init)
(user_reg_add, value_of_user_reg): Use a baton for user
register functions.
* std-regs.c: Update.
* user-regs.h (user_reg_read_ftype, user_reg_add_builtin)
(user_reg_add): Add baton argument.
* NEWS: Mention target description register support.
* features/arm-core.xml, features/arm-fpa.xml: New.
* eval.c (evaluate_subexp_standard): Allow ptype $register
when the program is not running.
* gdb.texinfo (-target-disconnect): Use @smallexample.
(Requirements): Add anchor for Expat. Update description.
(Target Descriptions): Mention Expat.
(Target Description Format): Document new elements. Use
@smallexample.
(Predefined Target Types, Standard Target Features): New sections.
* doc/gdbint.texinfo (Target Descriptions): New section.
* gdb.xml/single-reg.xml, gdb.xml/tdesc-regs.exp,
gdb.xml/core-only.xml, gdb.xml/extra-regs.xml: New files.
2007-02-08 22:00:36 +01:00
|
|
|
|
|
* Makefile.in (XMLFILES): New.
(COMMON_OBS): Add xml-builtin.o.
(xml-builtin.c, stamp-xml): New rules.
(xml-tdesc.o): Update.
* features/feature_to_c.sh: New file.
* xml-support.c (MAX_XINCLUDE_DEPTH): Define.
(struct gdb_xml_parser): Add dtd_name and is_xinclude.
(gdb_xml_start_element): Initialize scope after possibly reallocating
scopes. Move cleanup later. Handle the XInclude description
specially.
(gdb_xml_end_element): Only parse the body if there is a current element.
Call XML_DefaultCurrent if there is no element.
(gdb_xml_fetch_external_entity, gdb_xml_use_dtd): New.
(struct xinclude_parsing_data, xinclude_start_include)
(xinclude_end_include, xml_xinclude_default)
(xml_xinclude_start_doctype, xml_xinclude_end_doctype)
(xml_xinclude_xml_decl, xml_xinclude_cleanup, xinclude_attributes)
(xinclude_elements, xml_process_xincludes, fetch_xml_builtin): New.
* xml-support.h (xml_fetch_another, xml_process_xincludes)
(fetch_xml_builtin, xml_builtin, gdb_xml_use_dtd): New declarations.
* xml-tdesc.c (tdesc_parse_xml): Add fetcher_baton argument. Expand
XInclude directives. Use the compiled in DTD.
(fetch_xml_from_file): Add baton argument. Treat it as a containing
directory name. Do not warn here.
(file_read_description_xml): Update call. Warn here instead. Pass
a dirname as baton.
(fetch_available_features_from_target): New.
(target_read_description_xml): Use it.
* features/gdb-target.dtd: Add copyright notice. Use xinclude.dtd
to handle XInclude.
* features/xinclude.dtd: New file.
* gdb.xml/bad-include.xml, gdb.xml/inc-2.xml, gdb.xml/inc-body.xml,
gdb.xml/includes.xml, gdb.xml/tdesc-xinclude.exp: New files.
* gdb.texinfo (Target Description Format): Add section on XInclude.
2007-02-07 23:48:06 +01:00
|
|
|
|
2007-02-07 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Description Format): Add section on XInclude.
|
|
|
|
|
|
2007-02-03 00:09:00 +01:00
|
|
|
|
2006-02-03 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Describe the new
|
|
|
|
|
command -enable-timings.
|
|
|
|
|
|
2007-02-02 20:48:50 +01:00
|
|
|
|
2007-02-02 Markus Deuling <deuling@de.ibm.com> (tiny change)
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdbint.texinfo (Operation System ABI Variant Handling): Update
|
2007-02-02 20:48:50 +01:00
|
|
|
|
descriptions for new/deleted elements in gdb_osabi. Add missing
|
|
|
|
|
description for function generic_elf_osabi_sniff_abi_tag_sections.
|
|
|
|
|
|
2007-01-29 17:37:34 +01:00
|
|
|
|
2007-01-29 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Add documentation for
|
|
|
|
|
the new "maint print target-stack" command.
|
|
|
|
|
|
2007-01-26 21:53:52 +01:00
|
|
|
|
2007-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
2007-02-02 20:48:50 +01:00
|
|
|
|
* gdb.texinfo: Describe CHAR array vs. string identification rules.
|
2007-01-26 21:53:52 +01:00
|
|
|
|
|
2007-01-26 09:57:09 +01:00
|
|
|
|
2007-01-26 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Compilation, Files, Bootstrapping, Bug Reporting):
|
|
|
|
|
Use @value{NGCC} instead of @value{GCC}.
|
|
|
|
|
|
2007-01-20 17:51:56 +01:00
|
|
|
|
2007-01-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: Fix typos.
|
|
|
|
|
* annotate.texinfo: Likewise.
|
|
|
|
|
* gdb.texinfo: Likewise.
|
|
|
|
|
* gdbint.texinfo: Likewise.
|
|
|
|
|
* observer.texi: Likewise.
|
|
|
|
|
* stabs.texinfo: Likewise.
|
|
|
|
|
|
2007-01-20 17:35:45 +01:00
|
|
|
|
2007-01-20 Markus Deuling <deuling@de.ibm.com> (tiny change)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Support Libraries): Remove mmalloc
|
|
|
|
|
entry. Describe readline library.
|
|
|
|
|
|
XML feature description support.
* NEWS: Mention target descriptions, "set tdesc filename",
"unset tdesc filename", "show tdesc filename", and
qXfer:features:read.
* arch-utils.c (choose_architecture_for_target): New function.
(gdbarch_info_fill): Call it.
* target-descriptions.c (struct property): Make members non-const.
(struct target_desc): Add arch member.
(target_description_filename): New variable.
(target_find_description): Try via XML first.
(tdesc_architecture): New.
(free_target_description, make_cleanup_free_target_description): New.
(set_tdesc_property): Call xstrdup.
(set_tdesc_architecture, tdesc_set_cmdlist, tdesc_show_cmdlist)
(tdesc_unset_cmdlist, unset_tdesc_cmd, unset_tdesc_filename_cmd)
(set_tdesc_cmd, show_tdesc_cmd, set_tdesc_filename_cmd)
(show_tdesc_filename_cmd, _initialize_target_descriptions): New.
* target-descriptions.h (tdesc_architecture)
(make_cleanup_free_target_description, set_tdesc_architecture): New
prototypes.
* Makefile.in (SFILES): Add xml-tdesc.c.
(COMMON_OBS): Add xml-tdesc.o.
(target-descriptions.o): Update.
(xml-tdesc.o): New rule.
* xml-tdesc.c, xml-tdesc.h: New files.
* remote.c (PACKET_qXfer_features): New enum.
(remote_protocol_features): Add qXfer:features:read.
(remote_xfer_partial): Handle TARGET_OBJECT_AVAILABLE_FEATURES.
(_initialize_remote): Register qXfer:features:read.
* target.h (enum target_object): Add TARGET_OBJECT_AVAILABLE_FEATURES.
* features/gdb-target.dtd: New file.
* linux-i386-low.c (the_low_target): Set arch_string.
* linux-x86-64-low.c (the_low_target): Likewise.
* linux-low.c (linux_arch_string): New.
(linux_target_ops): Add it.
* linux-low.h (struct linux_target_ops): Add arch_string.
* server.c (write_qxfer_response): Use const void * for DATA.
(get_features_xml): New.
(handle_query): Handle qXfer:features:read. Report it for qSupported.
* target.h (struct target_ops): Add arch_string method.
* gdb.texinfo (Target Descriptions): New section.
(General Query Packets): Add QPassSignals anchor. Mention
qXfer:features:read under qSupported. Expand mentions of
qXfer:memory-map:read and QPassSignals. Document
qXfer:features:read.
2007-01-09 23:55:10 +01:00
|
|
|
|
2007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Descriptions): New section.
|
|
|
|
|
(General Query Packets): Add QPassSignals anchor. Mention
|
|
|
|
|
qXfer:features:read under qSupported. Expand mentions of
|
|
|
|
|
qXfer:memory-map:read and QPassSignals. Document
|
|
|
|
|
qXfer:features:read.
|
|
|
|
|
|
2007-01-08 19:56:30 +01:00
|
|
|
|
2007-01-08 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Commands to specify files): Describe
|
|
|
|
|
"set sysroot" and "show sysroot".
|
|
|
|
|
(Using the `gdbserver' program): Lowercase argument
|
|
|
|
|
to @var. Expand description of setting up GDB on the
|
|
|
|
|
host.
|
|
|
|
|
|
2007-01-05 09:33:57 +01:00
|
|
|
|
2007-01-05 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Catchpoints): Add documentation for the new
|
|
|
|
|
catch exception, catch exception unhandled, and catch assert
|
|
|
|
|
commands.
|
|
|
|
|
|
* memory-map.c (struct_memory_map_parsing_data): Remove most
members. Make property_name an array.
(free_memory_map_parsing_data, memory_map_start_element)
(memory_map_end_element, memory_map_character_data): Delete.
(memory_map_start_memory, memory_map_end_memory)
(memory_map_start_property, memory_map_end_property): New functions.
(property_attributes, memory_children, memory_type_enum)
(memory_attributes, memory_map_children, memory_map_elements): New.
(parse_memory_map): Rewrite.
* xml-support.c (debug_xml): New.
(xml_get_required_attribute, xml_get_integer_attribute)
(xml_get_enum_value, free_xml_parser, make_cleanup_free_xml_parser):
Delete.
(struct scope_level, struct gdb_xml_parser, gdb_xml_body_text)
(gdb_xml_debug, gdb_xml_error, gdb_xml_values_cleanup)
(gdb_xml_start_element, gdb_xml_start_element_wrapper)
(gdb_xml_end_element, gdb_xml_end_element_wrapper, gdb_xml_cleanup)
(gdb_xml_create_parser_and_cleanup, gdb_xml_parse)
(gdb_xml_parse_ulongest, gdb_xml_parse_attr_ulongest)
(gdb_xml_parse_attr_enum, show_debug_xml, _initialize_xml_support):
New.
* xml-support.h (struct gdb_xml_value, gdb_xml_attribute_handler)
(enum gdb_xml_attribute_flag, struct gdb_xml_attribute)
(enum gdb_xml_element_flag, struct gdb_xml_element)
(gdb_xml_element_start_handler, gdb_xml_element_end_handler)
(struct gdb_xml_enum): New.
(gdb_xml_create_parser_and_cleanup, gdb_xml_parse, gdb_xml_debug)
(gdb_xml_error, gdb_xml_parse_attr_ulongest)
(gdb_xml_parse_attr_enum, gdb_xml_parse_ulongest): New prototypes.
(xml_get_required_attribute, xml_get_integer_attribute)
(xml_get_enum_value, make_cleanup_free_xml_parser): Delete prototypes.
* Makefile.in (xml_support_h, xml-support.o): Update.
* gdb.texinfo (Debugging Output): Document "set debug xml"
and "show debug xml".
2007-01-04 23:11:44 +01:00
|
|
|
|
2007-01-04 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document "set debug xml"
|
|
|
|
|
and "show debug xml".
|
|
|
|
|
|
2007-01-04 20:42:10 +01:00
|
|
|
|
2007-01-04 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Compiler Warnings): Update for -Wall use.
|
|
|
|
|
|
2007-01-01 15:04:18 +01:00
|
|
|
|
2007-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Start of New Year Procedure): Add missing item.
|
|
|
|
|
|
2006-12-08 13:58:36 +01:00
|
|
|
|
2006-12-08 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Wrap historical
|
|
|
|
|
note in @ignore, to be removed later if nobody complains.
|
|
|
|
|
|
2006-12-04 04:51:39 +01:00
|
|
|
|
2006-12-04 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Describe -c option
|
|
|
|
|
of -var-delete.
|
|
|
|
|
|
2006-11-22 11:43:34 +01:00
|
|
|
|
2006-11-22 Vladimir Prus <vladimir@codesourcery.com>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2006-11-22 11:43:34 +01:00
|
|
|
|
* gdb.texinfo (Setting breakpoints): Document
|
2008-07-07 14:05:30 +02:00
|
|
|
|
automatic software/hardware breakpoint usage and
|
|
|
|
|
the "set breakpoint auto-hw" command.
|
2006-11-22 11:43:34 +01:00
|
|
|
|
|
2006-11-21 17:50:16 +01:00
|
|
|
|
2006-11-21 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Memory Access Checking): New.
|
|
|
|
|
|
2006-11-16 16:08:25 +01:00
|
|
|
|
2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote configuration): Mention
|
|
|
|
|
"pass-signals-packet".
|
|
|
|
|
(General Query Packets): Document QPassSignals. Fix
|
|
|
|
|
a typo.
|
|
|
|
|
|
2006-11-14 22:53:59 +01:00
|
|
|
|
2006-11-14 Maxim Grigoriev <maxim@tensilica.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Add contributors of Xtensa port.
|
|
|
|
|
|
2006-11-14 22:40:19 +01:00
|
|
|
|
2006-11-14 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote configuration): Rewrite documentation for
|
|
|
|
|
packet configuration commands.
|
|
|
|
|
(OS Information): Adjust reference to qXfer:auxv:read.
|
|
|
|
|
(General Query Packets): Remove references to read-aux-vector-packet
|
|
|
|
|
and set remote get-thread-local-storage-address.
|
|
|
|
|
|
2006-11-10 20:20:37 +01:00
|
|
|
|
2006-11-10 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Add new
|
|
|
|
|
Initializing a New Architecture section.
|
|
|
|
|
|
2006-10-31 23:38:27 +01:00
|
|
|
|
2006-10-31 David Taylor <dtaylor@emc.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Macro define and undefine): New node describing
|
|
|
|
|
stabs for #define and #undef.
|
|
|
|
|
|
2006-10-28 00:23:21 +02:00
|
|
|
|
2006-10-27 Andreas Schwab <schwab@suse.de>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Processes): Rename "detach-fork" to "detach fork".
|
|
|
|
|
|
2006-10-21 14:50:16 +02:00
|
|
|
|
2006-10-21 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints, Set Watchpoints): Elaborate and
|
|
|
|
|
clarify on the possible meanings of ``expression'' watched by
|
|
|
|
|
watchpoints. Add indexing.
|
2006-10-21 15:06:04 +02:00
|
|
|
|
(Prompting, Errors, Invalidation, Annotations for Running)
|
|
|
|
|
(Source Annotations): Fix index entries by adding "annotation" to
|
|
|
|
|
them, to discriminate from index entries that point to the more
|
|
|
|
|
general topic descriptions.
|
2006-10-21 14:50:16 +02:00
|
|
|
|
|
2006-10-17 23:55:24 +02:00
|
|
|
|
2006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Vector Definition): Move most
|
|
|
|
|
content into Existing Targets. Add a menu.
|
|
|
|
|
(Existing Targets): New section, moved from Target Vector
|
|
|
|
|
Definition. Use @subsection.
|
|
|
|
|
(Managing Execution State): New section.
|
|
|
|
|
|
2006-10-17 23:08:17 +02:00
|
|
|
|
2006-10-16 Bob Wilson <bob.wilson@acm.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (ST2000): Use Ctrl- instead of C-.
|
|
|
|
|
|
* gdb.texinfo (Sample Session, Invocation, Quitting GDB)
(Command Syntax, Signals, Backtrace, Connecting)
(Remote configuration, Renesas Boards, Console I/O): Fix last
change: use Ctrl- instead of C-, except wrt Emacs.
(File-I/O Examples): Put Ctrl-c in @kbd.
(Cygwin Native, File-I/O Overview, The Ctrl-C message)
(Console I/O): Use @samp with Ctrl-.
2006-10-15 23:19:49 +02:00
|
|
|
|
2006-10-15 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Sample Session, Invocation, Quitting GDB)
|
|
|
|
|
(Command Syntax, Signals, Backtrace, Connecting)
|
|
|
|
|
(Remote configuration, Renesas Boards, Console I/O): Fix last
|
|
|
|
|
change: use Ctrl- instead of C-, except wrt Emacs.
|
|
|
|
|
(File-I/O Examples): Put Ctrl-c in @kbd.
|
|
|
|
|
(Cygwin Native, File-I/O Overview, The Ctrl-C message)
|
|
|
|
|
(Console I/O): Use @samp with Ctrl-.
|
2006-10-15 23:36:00 +02:00
|
|
|
|
(Signals, Set Breaks, Set Watchpoints): Document optional
|
|
|
|
|
arguments to `info signals' `handle', `info breakpoints', and
|
|
|
|
|
`info watchpoints'.
|
* gdb.texinfo (Sample Session, Invocation, Quitting GDB)
(Command Syntax, Signals, Backtrace, Connecting)
(Remote configuration, Renesas Boards, Console I/O): Fix last
change: use Ctrl- instead of C-, except wrt Emacs.
(File-I/O Examples): Put Ctrl-c in @kbd.
(Cygwin Native, File-I/O Overview, The Ctrl-C message)
(Console I/O): Use @samp with Ctrl-.
2006-10-15 23:19:49 +02:00
|
|
|
|
|
2006-10-14 20:34:03 +02:00
|
|
|
|
2006-10-14 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Fix last change.
|
|
|
|
|
|
2006-10-14 02:20:02 +02:00
|
|
|
|
2006-10-14 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Order correctly and add other cases.
|
|
|
|
|
|
2006-10-10 20:55:55 +02:00
|
|
|
|
2006-10-10 Bob Wilson <bob.wilson@acm.org>
|
|
|
|
|
|
* gdb.texinfo (Sample Session, Invocation, Quitting GDB)
(Command Syntax, Signals, Backtrace, Connecting)
(Remote configuration, Renesas Boards, Console I/O): Fix last
change: use Ctrl- instead of C-, except wrt Emacs.
(File-I/O Examples): Put Ctrl-c in @kbd.
(Cygwin Native, File-I/O Overview, The Ctrl-C message)
(Console I/O): Use @samp with Ctrl-.
2006-10-15 23:19:49 +02:00
|
|
|
|
* gdb.texinfo (Command Syntax, Connecting, Remote configuration)
|
|
|
|
|
(Renesas Boards, ST2000, TUI Keys, TUI Single Key Mode)
|
|
|
|
|
(TUI Commands, Emacs, Console I/O): Fix @key and @kbd usage.
|
2006-10-10 20:55:55 +02:00
|
|
|
|
|
2006-09-21 16:01:12 +02:00
|
|
|
|
2006-09-21 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Document vFlashErase,
|
|
|
|
|
vFlashWrite and vFlashDone packets.
|
|
|
|
|
(General Query Packets): Document qXfer:memory-map:read.
|
|
|
|
|
Add a new feature for qXfer:memory-map:read.
|
|
|
|
|
(Memory map format): New section.
|
|
|
|
|
(Target Commands): Mention that gdb can write flash.
|
|
|
|
|
|
gdb/
2006-09-21 Vladimir Prus <vladimir@codesourcery.com>
Daniel Jacobowitz <dan@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com>
* Makefile.in (SFILES): Add memory-map.c and xml-support.c.
(memory_map_h, xml_support_h): New.
(target_h): Add vec_h dependency.
(COMMON_OBS): Add memory-map.o and xml-support.o.
(memory-map.o, xml-support.o): New rules.
(remote.o): Update.
* exceptions.h (enum errors): Add XML_PARSE_ERROR.
* infcmd.c (run_command_1, attach_command): Call target_pre_inferior.
* memattr.c (default_mem_attrib): Initialize blocksize.
(target_mem_region_list, mem_use_target)
(target_mem_regions_valid, mem_region_cmp, mem_region_init)
(require_user_regions, require_target_regions)
(invalidate_target_mem_regions): New.
(create_mem_region): Use mem_region_init.
(mem_clear): Move higher.
(lookup_mem_region): Use require_target_regions.
(mem_command): Implement "mem auto".
(mem_info_command): Handle target-supplied regions and flash
attributes.
(mem_enable_command, mem_disable_command, mem_delete_command): Use
require_user_regions.
(_initialize_mem): Mention "mem auto" in help.
* memattr.h (enum mem_access_mode): Add MEM_FLASH.
(struct mem_attrib): Add blocksize.
(invalidate_target_mem_regions, mem_region_init, mem_region_cmp): New
prototypes.
* remote.c: Include "memory-map.h".
(PACKET_qXfer_memory_map): New enum value.
(remote_protocol_features): Add qXfer:memory-map:read.
(remote_xfer_partial): Handle memory maps.
(remote_memory_map): New.
(init_remote_ops, init_remote_async_ops): Set to_memory_map.
(_initialize_remote): Register qXfer:memory-map:read.
* target.c (update_current_target): Mention to_memory_map.
(target_memory_map, target_pre_inferior): New.
(target_preopen): Call target_pre_inferior.
* target.h: Include "vec.h".
(enum target_object): Add TARGET_OBJECT_MEMORY_MAP.
(struct target_ops): Add to_memory_map.
(target_memory_map, target_pre_inferior): New prototypes.
* memory-map.c, memory-map.h, xml-support.c, xml-support.h: New files.
gdb/doc/
2006-09-21 Vladimir Prus <vladimir@codesourcery.com>
Daniel Jacobowitz <dan@codesourcery.com>
* gdb.texinfo (Memory Region Attributes): Mention target-supplied
memory regions and "mem auto".
2006-09-21 15:54:03 +02:00
|
|
|
|
2006-09-21 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Memory Region Attributes): Mention target-supplied
|
|
|
|
|
memory regions and "mem auto".
|
|
|
|
|
|
2006-09-21 15:47:56 +02:00
|
|
|
|
2006-09-21 Nathan Sidwell <nathan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Array Containers): New section.
|
|
|
|
|
|
2006-09-17 19:03:51 +02:00
|
|
|
|
2006-09-17 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation): Mention that
|
|
|
|
|
-stack-list-arguments HIGH_FRAME argument can be larger then the
|
|
|
|
|
actual number of frames.
|
|
|
|
|
|
2006-09-07 18:40:19 +02:00
|
|
|
|
2006-09-07 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation): Mention that
|
2008-07-07 14:05:30 +02:00
|
|
|
|
-stack-list-locals HIGH_FRAME argument can be larger then the
|
|
|
|
|
actual number of frames.
|
2006-09-07 18:40:19 +02:00
|
|
|
|
|
2006-09-05 19:45:53 +02:00
|
|
|
|
2006-09-02 Bob Wilson <bob.wilson@acm.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets, Stop Reply Packets, General Query Packets,
|
|
|
|
|
Register Packet Format, Tracepoint Packets): Fix spelling errors.
|
|
|
|
|
|
2006-09-02 17:27:16 +02:00
|
|
|
|
2006-09-02 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Overall Structure): New section "Source Tree
|
|
|
|
|
Structure".
|
|
|
|
|
|
2006-08-17 20:47:49 +02:00
|
|
|
|
2006-08-17 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Stop Reply Packets): Note similarity of 'S' and 'T'
|
|
|
|
|
responses.
|
|
|
|
|
|
2006-08-09 00:18:22 +02:00
|
|
|
|
2006-08-08 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Source Path): Add documentation for new
|
|
|
|
|
substitute-path commands.
|
|
|
|
|
|
2006-08-08 22:26:23 +02:00
|
|
|
|
2006-08-08 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Installing GDB): Update menu. Move text to...
|
|
|
|
|
(Running Configure): ...here.
|
|
|
|
|
(Requirements): New node. Mention expat.
|
|
|
|
|
|
2006-08-08 17:48:08 +02:00
|
|
|
|
2006-08-08 Vladimir Prus <vladimir@codesourcery.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Target Commands): Remove
|
2006-08-08 17:48:08 +02:00
|
|
|
|
'set download-write-size' and 'show download-write-size'.
|
|
|
|
|
|
2006-08-02 05:31:21 +02:00
|
|
|
|
2006-08-01 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Member Type Descriptor): Correct example for
|
|
|
|
|
pointer to member types.
|
|
|
|
|
|
2006-07-21 16:46:56 +02:00
|
|
|
|
2006-07-21 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Optional warnings and messages): Add
|
|
|
|
|
'set/show trace-commands'.
|
|
|
|
|
(Command files): Add '-v' to source command.
|
|
|
|
|
|
2006-07-12 20:50:18 +02:00
|
|
|
|
2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (OS Information): Update qPart reference to
|
|
|
|
|
qXfer.
|
|
|
|
|
(Remote configuration): Likewise.
|
|
|
|
|
(Overview): Move @cindex to the start of a paragraph. Talk
|
|
|
|
|
about binary data encoding.
|
|
|
|
|
(Packets): Refer to the overview for the details of the X
|
|
|
|
|
packet encoding.
|
|
|
|
|
(General Query Packets): Remove qPart description. Add qXfer
|
|
|
|
|
description. Add an anchor to qSupported. Correct feature
|
|
|
|
|
table title. Add a new feature for qXfer:auxv:read.
|
|
|
|
|
(Interrupts): Add a missing parenthesis.
|
|
|
|
|
|
2006-07-05 21:03:47 +02:00
|
|
|
|
2006-07-05 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
Convert frame unwinders to use the current frame and
"struct value".
* frame.c (frame_debug): Make global.
(get_frame_id): Pass this frame to unwinder routines.
(frame_pc_unwind): Remove unused unwind->prev_pc support.
(do_frame_register_read): Do not discard the return value of
frame_register_read.
(frame_register_unwind): Remove debug messages. Use
frame_unwind_register_value.
(frame_unwind_register_value, get_frame_register_value): New
functions.
(create_new_frame, get_frame_base_address, get_frame_locals_address)
(get_frame_args_address, get_frame_type): Pass this frame to
unwinder routines.
(frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
functions.
* frame.h: Update comments.
(frame_debug, frame_unwind_register_value, get_frame_register_value)
(frame_prepare_for_sniffer): Declare.
* frame-unwind.h: Update comments and parameter names.
(default_frame_sniffer): Declare.
(frame_prev_register_ftype): Return a struct value *.
(struct frame_unwind): Remove prev_pc member.
(frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): Declare.
* frame-base.h: Update comments and parameter names.
* valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
if necessary. Add debugging output.
* sentinel-frame.c (sentinel_frame_prev_register)
(sentinel_frame_this_id): Update for new signature.
(sentinel_frame_prev_pc): Delete.
(sentinel_frame_unwinder): Remove prev_pc.
* ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
prev_pc.
* libunwind-frame.c (libunwind_frame_unwind): Likewise.
* frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
(frame_unwind_append_sniffer): Delete.
(frame_unwind_append_unwinder): New function.
(frame_unwind_find_by_frame): Take this frame. Only use sniffers
from unwinders. Use frame_prepare_for_sniffer.
(default_frame_sniffer, frame_unwind_got_optimized)
(frame_unwind_got_register, frame_unwind_got_memory)
(frame_unwind_got_constant, frame_unwind_got_address): New functions.
* dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
(dummy_frame_prev_register, dummy_frame_this_id): Update for new
signature.
* gdbarch.sh: Replace unwind_dummy_id with dummy_id.
* gdbarch.c, gdbarch.c: Regenerated.
* frame-base.c (default_frame_base_address)
(default_frame_locals_address, default_frame_args_address): Update
for new signature.
(frame_base_find_by_frame): Pass this frame to unwinder routines.
* infcall.c (call_function_by_hand): Update comments.
* Makefile.in (frame-unwind.o): Update dependencies.
* gdbint.texinfo (Stack Frames): New chapter.
(Algorithms): Move Frames text to the new chapter.
(Target Conditionals): Delete SAVE_DUMMY_FRAME_TOS. Document
gdbarch_dummy_id instead of gdbarch_unwind_dummy_id.
2008-04-30 23:16:46 +02:00
|
|
|
|
* gdb.texinfo (KOD): Remove node.
|
2006-07-05 21:03:47 +02:00
|
|
|
|
(GDB/MI Kod Commands): Remove commented out node.
|
|
|
|
|
|
2006-07-01 14:34:30 +02:00
|
|
|
|
2006-07-01 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Output Syntax, GDB/MI Simple Examples)
|
|
|
|
|
(GDB/MI Breakpoint Commands, GDB/MI Program Context)
|
|
|
|
|
(GDB/MI Thread Commands, GDB/MI Program Execution)
|
|
|
|
|
(GDB/MI Stack Manipulation, GDB/MI Variable Objects)
|
|
|
|
|
(GDB/MI Data Manipulation, GDB/MI Symbol Query)
|
|
|
|
|
(GDB/MI File Commands, GDB/MI Target Manipulation)
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Change (@value{GDBP})->(gdb),
|
|
|
|
|
since the MI prompt is hard-wired into the code.
|
|
|
|
|
|
2006-06-30 23:42:03 +02:00
|
|
|
|
2006-07-01 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Compatibility with CLI): Qualify more carefully.
|
|
|
|
|
(GDB/MI Simple Examples): Use @subheading for "A Bad Command".
|
|
|
|
|
(GDB/MI Data Manipulation): Remove description of unimplemented
|
|
|
|
|
display related commands as variable objects perform this function
|
|
|
|
|
and are superior: -display-delete, -display-disable,
|
|
|
|
|
-display-enable, -display-insert and -display-list. Move
|
|
|
|
|
-environment-cd, -environment-directory, -environment-path
|
|
|
|
|
and -environment-pwd to "Program Context".
|
|
|
|
|
(GDB/MI Program Control): Rename to "Program Execution". Move
|
|
|
|
|
-exec-arguments -exec-abort to...
|
|
|
|
|
(GDB/MI Program Context): ...here. New node split from "Data
|
|
|
|
|
Manipulation".
|
|
|
|
|
|
2006-06-21 15:57:21 +02:00
|
|
|
|
2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote configuration): Document set / show
|
|
|
|
|
remote supported-packets.
|
|
|
|
|
(General Query Packets): Document qSupported packet.
|
|
|
|
|
|
2006-06-10 20:45:26 +02:00
|
|
|
|
2006-06-10 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File-I/O overview): Copy edit for grammar, spelling,
|
|
|
|
|
and font markup.
|
|
|
|
|
(Protocol basics): Likewise.
|
|
|
|
|
(The F request packet): Likewise.
|
|
|
|
|
(The F reply packet): Likewise.
|
|
|
|
|
(Memory transfer): Move this node to be a subsubsection of
|
|
|
|
|
"Protocol specific representation of datatypes".
|
|
|
|
|
(The Ctrl-C message): More copy editing.
|
|
|
|
|
(Console I/O): Likewise.
|
|
|
|
|
(The isatty call): Delete this node, and merge its content into
|
|
|
|
|
the "isatty" node. Fixed references elsewhere.
|
|
|
|
|
(The system call): Delete this node, and merge its content into
|
|
|
|
|
the "system" node. Fixed references elsewhere.
|
|
|
|
|
(open): Reformat to use @table, and add appropriate font markup.
|
|
|
|
|
(close): Likewise.
|
|
|
|
|
(read): Likewise.
|
|
|
|
|
(write): Likewise.
|
|
|
|
|
(lseek): Likewise.
|
|
|
|
|
(rename): Likewise.
|
|
|
|
|
(unlink): Likewise.
|
|
|
|
|
(stat/fstat): Likewise.
|
|
|
|
|
(gettimeofday): Likewise.
|
|
|
|
|
(isatty): Likewise.
|
|
|
|
|
(system): Likewise, plus minor changes to fix confusing wording.
|
|
|
|
|
(Integral datatypes): Fix font markup.
|
|
|
|
|
(Pointer values): Likewise.
|
|
|
|
|
(struct stat): Fix markup to use @table, plus minor copy editing.
|
|
|
|
|
(struct timeval): Fix font markup, plus minor copy editing.
|
|
|
|
|
(Constants): Minor copy editing.
|
|
|
|
|
(Errno values): Add font markup.
|
|
|
|
|
(File-I/O Examples): Likewise.
|
|
|
|
|
|
2006-06-10 00:35:49 +02:00
|
|
|
|
2006-06-10 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI): Remove duplicate acknowledgements.
|
|
|
|
|
(GDB/MI Simple Examples): Move node up one level. Use real
|
|
|
|
|
examples.
|
|
|
|
|
(GDB/MI Compatibility with CLI): Update.
|
|
|
|
|
(GDB/MI Result Records): Add "connected" and "exit" result
|
|
|
|
|
classes.
|
|
|
|
|
(GDB/MI Stream Records): Clarify target output.
|
|
|
|
|
(GDB/MI Command Description Format): Modify example description.
|
|
|
|
|
(GDB/MI Breakpoint Table Commands): Rename to...
|
|
|
|
|
(GDB/MI Breakpoint Commands): ...this
|
|
|
|
|
(GDB/MI Breakpoint Commands): Add optional thread field.
|
|
|
|
|
(GDB/MI Program Control): Add an introduction. Move "Program
|
|
|
|
|
termination" examples into exec-run description.
|
|
|
|
|
(GDB/MI File Commands): Mention similar CLI commands.
|
|
|
|
|
(GDB/MI Miscellaneous Commands): Move to end. Mention "show version"
|
|
|
|
|
is similar to "-gdb-version".
|
|
|
|
|
|
2006-06-09 20:52:30 +02:00
|
|
|
|
2006-06-09 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Fix "(gdb)"=>"(@value{GDBP})".
|
|
|
|
|
|
2006-06-02 01:39:23 +02:00
|
|
|
|
2006-06-02 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Development and Front Ends): Use
|
|
|
|
|
sourceware.org for mailing lists.
|
2006-06-02 12:14:27 +02:00
|
|
|
|
(GDB/MI File Commands): New node split from Program Control.
|
2006-06-02 01:39:23 +02:00
|
|
|
|
|
2006-05-31 23:54:27 +02:00
|
|
|
|
2006-06-01 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
2006-06-02 12:14:27 +02:00
|
|
|
|
* gdb.texinfo (GDB/MI Development and Front Ends): New node.
|
2006-05-31 23:54:27 +02:00
|
|
|
|
|
2006-05-22 21:00:41 +02:00
|
|
|
|
2006-05-22 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cygwin Native): Fix last change.
|
|
|
|
|
|
2006-05-22 06:17:59 +02:00
|
|
|
|
2006-05-22 Christopher Faylor <cgf@timesys.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cygwin Native): Document set/show cygwin-exceptions.
|
|
|
|
|
|
2006-05-15 06:37:48 +02:00
|
|
|
|
2006-05-15 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): Correct spelling and punctuation.
|
|
|
|
|
(Releasing GDB, Testsuite): Remove details for including DejaGnu.
|
|
|
|
|
|
2006-05-14 17:09:51 +02:00
|
|
|
|
2006-05-14 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Recommend not starting
|
|
|
|
|
new packets with qC and clarify.
|
|
|
|
|
|
2006-05-13 21:07:28 +02:00
|
|
|
|
2006-05-13 Gaius Mulley <gaius@glam.ac.uk>
|
2006-05-13 18:03:04 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (M2 Types): New section.
|
2006-05-13 17:46:38 +02:00
|
|
|
|
|
2006-05-10 20:49:08 +02:00
|
|
|
|
2006-05-10 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: Add a copyright and license notice.
|
|
|
|
|
* observer.texi: Likewise, with GPL clause for function prototypes.
|
|
|
|
|
Remove trailing whitespace.
|
|
|
|
|
|
2006-05-06 00:48:14 +02:00
|
|
|
|
2006-05-05 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document conventions for
|
|
|
|
|
terminating packet names, and their violations.
|
|
|
|
|
|
2006-05-05 20:26:14 +02:00
|
|
|
|
2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (GDB_DOC_SOURCE_INCLUDES): Update for readline 5.1.
|
|
|
|
|
* gdb.texinfo: Likewise.
|
|
|
|
|
|
2006-05-05 19:29:38 +02:00
|
|
|
|
2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Configuration): Remove "set remotedebug"
|
|
|
|
|
and "show remotedebug".
|
|
|
|
|
(Debugging Output): Add additional index entries.
|
|
|
|
|
|
2006-04-28 01:03:42 +02:00
|
|
|
|
2006-04-27 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (delete-fork): Command renamed to "delete fork".
|
|
|
|
|
|
2006-04-23 01:12:03 +02:00
|
|
|
|
2006-04-22 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Credit frame unwinder contributors.
|
|
|
|
|
* gdbint.texinfo (Algorithms): Fix errors in frame documentation.
|
|
|
|
|
|
gdb/
* breakpoint.c (deprecated_read_memory_nobpt): Update to use
shadow_len.
(insert_bp_location, reattach_breakpoints, remove_breakpoint)
(delete_breakpoint): Update calls to changed methods.
(deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
(single_step_breakpoints, insert_single_step_breakpoint)
(remove_single_step_breakpoints): New.
* breakpoint.h (struct bp_target_info): New.
(struct bp_location): Replace shadow_contents with
target_info and overlay_target_info.
(deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
(insert_single_step_breakpoint, remove_single_step_breakpoints): New
prototypes.
* gdbarch.sh: Forward declare struct bp_target_info in gdbarch.h.
(memory_insert_breakpoint, memory_remove_breakpoint): Update second
argument.
* mem-break.c (default_memory_insert_breakpoint): Update. Set
placed_address, placed_size, and shadow_len.
(default_memory_remove_breakpoint): Update. Don't use
BREAKPOINT_FROM_PC.
(memory_insert_breakpoint, memory_remove_breakpoint): Update.
* target.c (update_current_target): Update prototypes for changed
functions.
(debug_to_insert_breakpoint, debug_to_remove_breakpoint)
(debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint):
Update.
* target.h: Forward declare struct bp_target_info.
(struct target_ops): Use a bp_target_info argument for
to_insert_breakpoint, to_remove_breakpoint,
to_insert_hw_breakpoint, and to_remove_hw_breakpoint.
(target_insert_breakpoint, target_remove_breakpoint)
(target_insert_hw_breakpoint, target_remove_hw_breakpoint)
(memory_insert_breakpoint, memory_remove_breakpoint)
(default_memory_insert_breakpoint, default_memory_remove_breakpoint):
Update.
* config/i386/nm-i386.h: Forward declare struct bp_target_info.
(i386_insert_hw_breakpoint, i386_remove_hw_breakpoint): Update.
(target_insert_hw_breakpoint, target_remove_hw_breakpoint): Likewise.
* gdbarch.c, gdbarch.h: Regenerated.
* alpha-tdep.c (alpha_software_single_step): Use
insert_single_step_breakpoint and remove_single_step_breakpoints.
Remove unused statics.
* arm-tdep.c (arm_software_single_step): Likewise. Add a note.
* cris-tdep.c (cris_software_single_step): Likewise.
* mips-tdep.c (mips_software_single_step): Likewise.
* rs6000-tdep.c (rs6000_software_single_step): Likewise.
* sparc-tdep.c (sparc_software_single_step): Likewise.
* wince.c (struct thread_info_struct): Remove step_prev.
(undoSStep): Use remove_single_step_breakpoints.
(wince_software_single_step): Use insert_single_step_breakpoint.
* corelow.c (ignore): Remove unneeded prototype. Update arguments.
* exec.c (ignore): Likewise.
* sol-thread.c (ignore): Likewise.
* procfs.c (dbx_link_shadow_contents): Delete.
(dbx_link_bpt): New.
(procfs_mourn_inferior): Remove it if necessary.
(remove_dbx_link_breakpoint): Use it.
(insert_dbx_link_bpt_in_file): Set it.
(procfs_init_inferior): Don't update dbx_link_bpt_addr.
* rs6000-nat.c (exec_one_dummy_insn): Use
deprecated_insert_raw_breakpoint and
deprecated_remove_raw_breakpoint.
* solib-irix.c (shadow_contents, breakpoint_addr): Delete.
(base_breakpoint): New.
(disable_break): Use it.
(enable_break): Set it.
* i386-nat.c (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint):
Update.
* ia64-tdep.c (ia64_memory_insert_breakpoint)
(ia64_memory_remove_breakpoint): Likewise.
* m32r-tdep.c (m32r_memory_insert_breakpoint)
(m32r_memory_remove_breakpoint): Likewise.
* monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
Likewise. Remove unnecessary prototypes. Use placed_address
and placed_size. Removed useless read from memory.
* nto-procfs.c (procfs_insert_breakpoint)
(procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
(procfs_remove_hw_breakpoint): Update.
* ocd.c (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
* ocd.h (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
* ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
* ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Likewise.
* remote-e7000.c (e7000_insert_breakpoint)
(e7000_remove_breakpoint): Likewise.
* remote-m32r-sdi.c (m32r_insert_breakpoint)
(m32r_remove_breakpoint): Likewise.
* remote-mips.c (mips_insert_breakpoint)
(mips_remove_breakpoint): Likewise.
* remote-rdp.c (remote_rdp_insert_breakpoint)
(remote_rdp_remove_breakpoint): Likewise.
(rdp_step): Use deprecated_insert_raw_breakpoint and
deprecated_remove_raw_breakpoint.
* remote-sds.c (sds_insert_breakpoint, sds_remove_breakpoint):
Update.
* remote-sim.c (gdbsim_insert_breakpoint, gdbsim_remove_breakpoint):
Delete.
(init_gdbsim_ops): Use memory_insert_breakpoint and
memory_remove_breakpoint.
* remote-st.c (st2000_insert_breakpoint)
(st2000_remove_breakpoint): Update. Remove unused
BREAKPOINT_FROM_PC.
* remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
Update. Use placed_address and placed_size.
(remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Likewise.
gdb/doc/
* gdbint.texinfo (x86 Watchpoints, Target Conditionals): Update insert
and remove breakpoint prototypes.
(Watchpoints): Move description of target_insert_hw_breakpoint and
target_remove_hw_breakpoint ...
(Breakpoints): ... to here. Document target_insert_breakpoint and
target_remove_breakpoint.
2006-04-18 21:20:08 +02:00
|
|
|
|
2006-04-18 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (x86 Watchpoints, Target Conditionals): Update insert
|
|
|
|
|
and remove breakpoint prototypes.
|
|
|
|
|
(Watchpoints): Move description of target_insert_hw_breakpoint and
|
|
|
|
|
target_remove_hw_breakpoint ...
|
|
|
|
|
(Breakpoints): ... to here. Document target_insert_breakpoint and
|
|
|
|
|
target_remove_breakpoint.
|
|
|
|
|
|
2006-04-18 02:17:55 +02:00
|
|
|
|
2006-04-17 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Note that 'addr' arguments to s, S, c,
|
|
|
|
|
and C packets are optional.
|
|
|
|
|
|
2006-04-14 20:31:32 +02:00
|
|
|
|
2006-04-14 Frederic Riss <frederic.riss@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Specifying source directories): Update the description
|
|
|
|
|
of the source file search to reflect the fact that the source path
|
|
|
|
|
always contains at least $cdir and $cwd.
|
|
|
|
|
|
2006-03-31 21:47:11 +02:00
|
|
|
|
2006-03-31 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update copyright dates.
|
|
|
|
|
|
2006-03-31 16:14:28 +02:00
|
|
|
|
2006-03-31 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Overview): Add an index entry to "empty response".
|
|
|
|
|
|
2006-03-28 21:19:16 +02:00
|
|
|
|
2006-03-28 Jim Blandy <jimb@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Prologue Analysis): New section.
|
|
|
|
|
|
2006-03-09 18:59:12 +01:00
|
|
|
|
2006-03-07 Jim Blandy <jimb@red-bean.com>
|
|
|
|
|
|
2006-03-09 22:44:27 +01:00
|
|
|
|
* gdb.texinfo (Connecting): Document 'target remote pipe'.
|
|
|
|
|
|
2006-03-09 22:42:31 +01:00
|
|
|
|
* gdb.texinfo (Target Commands): Update text describing how to
|
|
|
|
|
specify a target. Refer to the detailed section on remote
|
|
|
|
|
debugging, not the brief mention.
|
|
|
|
|
|
2006-03-09 18:59:12 +01:00
|
|
|
|
* gdb.texinfo (Connecting): Organize the different 'target remote'
|
|
|
|
|
connection methods into a table. Add a 'target remote' index
|
|
|
|
|
entry. (!!!)
|
|
|
|
|
|
2006-02-18 21:45:01 +01:00
|
|
|
|
2006-02-17 Fred Fish <fnf@specifix.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Update descriptions of 'whatis' and
|
|
|
|
|
'ptype' commands to reflect the fact that the only significant
|
|
|
|
|
difference between them is that ptype prints the complete type
|
|
|
|
|
description instead of just the name.
|
|
|
|
|
|
2006-02-13 09:34:11 +01:00
|
|
|
|
2006-02-13 Wu Zhou <woodzltc@cn.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Watchpoints): Delete
|
|
|
|
|
TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT.
|
|
|
|
|
|
2006-02-10 04:50:44 +01:00
|
|
|
|
2006-02-10 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Table Commands): Add fullname and
|
|
|
|
|
times fields where needed. Fix typos. Update general form given
|
|
|
|
|
for output of -break-insert.
|
|
|
|
|
(GDB/MI): Abbreviate some unnecessarily long fullnames.
|
|
|
|
|
|
2006-02-06 23:14:31 +01:00
|
|
|
|
2006-02-06 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Symbol Handling): Add a section
|
|
|
|
|
on memory management.
|
|
|
|
|
|
2006-02-06 22:55:06 +01:00
|
|
|
|
2006-02-06 Vladimir Prus <ghost@cs.msu.su>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoint table commands): Document the fullname
|
|
|
|
|
field in -break-list output.
|
|
|
|
|
|
2006-02-03 20:30:21 +01:00
|
|
|
|
2006-02-03 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cygwin Native): Fix typos. Clarify the types of
|
|
|
|
|
debugging information produced by the various "set debug..."
|
|
|
|
|
options.
|
|
|
|
|
|
gdb/
* Makefile.in (gdbtypes_h, gdbtypes.o, utils.o): Update.
* defs.h (hashtab_obstack_allocate, dummy_obstack_deallocate): Add
prototypes.
* dwarf2read.c (read_subroutine_type): Use TYPE_ZALLOC.
(hashtab_obstack_allocate, dummy_obstack_deallocate): Moved to...
* utils.c (hashtab_obstack_allocate, dummy_obstack_deallocate):
...here.
* gdbtypes.c: Include "hashtab.h".
(build_gdbtypes): Remove extra prototype.
(struct type_pair, type_pair_hash, type_pair_eq)
(create_copied_types_hash, copy_type_recursive): New.
* gdbtypes.h: Include "hashtab.h".
(TYPE_ZALLOC): New.
(create_copied_types_hash, copy_type_recursive): New prototypes.
* objfiles.c (free_objfile): Call preserve_values.
* symfile.c (reread_symbols): Likewise.
(clear_symtab_users): Remove calls to clear_value_history and
clear_internalvars.
* value.c (clear_value_history, clear_internalvars): Removed.
(preserve_one_value, preserve_values): New functions.
* value.h (clear_value_history, clear_internalvars): Removed.
(preserve_values): New prototype.
* tracepoint.c (_initialize_tracepoint): Do not initialize convenience
variables here.
gdb/doc/
* gdb.texinfo (Files): Remove obsolete bits from the description
of "symbol-file".
2006-02-02 00:14:11 +01:00
|
|
|
|
2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Remove obsolete bits from the description
|
|
|
|
|
of "symbol-file".
|
|
|
|
|
|
2006-01-25 22:15:42 +01:00
|
|
|
|
2006-01-25 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): Explain how to run selected tests.
|
|
|
|
|
|
2006-01-25 19:48:57 +01:00
|
|
|
|
2006-01-24 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Frames): Document the basics of GDB's register
|
|
|
|
|
unwinding model, and explain the existence of the "sentinel" frame.
|
|
|
|
|
|
2006-01-23 17:28:37 +01:00
|
|
|
|
2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Choosing files): Mention that -directory is used
|
|
|
|
|
for script files.
|
|
|
|
|
(Specifying source directories): Likewise.
|
|
|
|
|
(Command files): Explain how script files are found.
|
|
|
|
|
|
2006-01-21 22:14:10 +01:00
|
|
|
|
2006-01-21 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Describe how to get backtrace of all
|
|
|
|
|
the threads in a multi-threaded program.
|
|
|
|
|
(Threads): The threadno argument of "thread apply" can be a range
|
|
|
|
|
of numbers.
|
|
|
|
|
|
2006-01-20 22:58:16 +01:00
|
|
|
|
2006-01-18 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Add entry for -Wno-pointer-sign to list
|
|
|
|
|
of warning flags.
|
|
|
|
|
|
2006-01-13 16:49:03 +01:00
|
|
|
|
2006-01-13 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Sequences): Improve menu annotations.
|
|
|
|
|
(Define): Add index entries for arguments of user-defined
|
|
|
|
|
commands. Move the description of flow-control commands...
|
|
|
|
|
(Command Files): ...to here. Document loop_break and
|
|
|
|
|
loop_continue.
|
2006-01-13 21:11:47 +01:00
|
|
|
|
(Define, Command Files): Document `end' and add index entries for
|
|
|
|
|
it.
|
2006-01-13 16:49:03 +01:00
|
|
|
|
|
2006-01-04 20:31:27 +01:00
|
|
|
|
2006-01-04 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add documentation for linux-fork.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdbint.texinfo: Add internal documentation for checkpoints.
|
2006-01-04 20:31:27 +01:00
|
|
|
|
|
2006-01-02 10:47:18 +01:00
|
|
|
|
2006-01-02 Paul N. Hilfinger <hilfinger@gnat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Omissions from Ada): Document that there is now
|
|
|
|
|
limited aggregate support.
|
|
|
|
|
|
2005-12-28 21:05:49 +01:00
|
|
|
|
2005-12-28 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Registers): Describe how to refer to SSE and MMX
|
|
|
|
|
registers and the likes.
|
|
|
|
|
|
2005-12-24 16:22:36 +01:00
|
|
|
|
2005-12-24 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Commands, Bug Reporting, File Options)
|
|
|
|
|
(Symbols): Fix usage of "e.g.".
|
2005-12-24 16:28:44 +01:00
|
|
|
|
(Memory Region Attributes): Fix usage of "etc."
|
2005-12-24 16:22:36 +01:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (libgdb, Symbol Handling, Native Debugging)
|
|
|
|
|
(Coding): Fix usage of "e.g.".
|
|
|
|
|
|
2005-12-23 20:26:17 +01:00
|
|
|
|
2005-12-23 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* stabs.texinfo:
|
|
|
|
|
* refcard.tex:
|
2005-12-23 20:26:17 +01:00
|
|
|
|
* gpl.texi:
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdbint.texinfo:
|
|
|
|
|
* gdb.texinfo:
|
|
|
|
|
* gdb-cfg.texi:
|
2005-12-23 20:26:17 +01:00
|
|
|
|
* fdl.texi:
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* annotate.texinfo:
|
|
|
|
|
* all-cfg.texi:
|
2005-12-23 20:26:17 +01:00
|
|
|
|
* Makefile.in: Add (C) after Copyright. Update the FSF
|
|
|
|
|
address.
|
|
|
|
|
|
2005-12-03 13:44:31 +01:00
|
|
|
|
2005-12-03 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Connecting): Explain that `monitor' is a way to
|
|
|
|
|
extend GDB with commands for external monitor.
|
|
|
|
|
|
2005-12-02 12:44:19 +01:00
|
|
|
|
2005-12-02 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Convenience variables): Add init-if-undefined command.
|
|
|
|
|
|
2005-11-26 01:04:38 +01:00
|
|
|
|
2005-11-25 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Start of New Year Procedure): New chapter.
|
|
|
|
|
|
2005-11-23 01:03:15 +01:00
|
|
|
|
2005-11-21 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Packets): Document restrictions on
|
|
|
|
|
placement of 'R' actions in tracepoint action packets; document
|
|
|
|
|
dependence of 'X' and 'M' actions on a preceding 'R' action for
|
|
|
|
|
their registers.
|
|
|
|
|
|
2005-11-20 07:12:59 +01:00
|
|
|
|
2005-11-19 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Packets): New node.
|
|
|
|
|
(General Query Packets): Add entries for the tracepoint packets,
|
|
|
|
|
referring to the "Tracepoint Packets" node.
|
|
|
|
|
(Tracepoints): Add reference to "Tracepoint Packets".
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2005-11-18 23:17:09 +01:00
|
|
|
|
2005-11-18 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (set remotebreak): Add anchor.
|
|
|
|
|
(X packet): Likewise.
|
|
|
|
|
(Remote Protocol): Add new section `Interrupts' and new index
|
|
|
|
|
entry `interrupts (remote protocol)'.
|
|
|
|
|
|
2005-11-18 20:20:56 +01:00
|
|
|
|
2005-11-18 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Move information out of 'q' and 'Q'
|
|
|
|
|
entries into the General Query Packets section. Add a
|
|
|
|
|
cross-reference to that section. Drop description of replies, as
|
|
|
|
|
these are covered in the descriptions of each packet.
|
|
|
|
|
(General Query Packets): Add introductory text. Explain naming
|
|
|
|
|
conventions, and how the end of a name is recognized.
|
|
|
|
|
|
2005-11-17 20:08:38 +01:00
|
|
|
|
2005-11-17 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
2005-11-17 20:12:26 +01:00
|
|
|
|
* gdb.texinfo (Remote configuration): Fix typo in description of
|
2005-11-17 20:08:38 +01:00
|
|
|
|
"set remotebreak" command.
|
|
|
|
|
|
2005-11-16 11:34:33 +01:00
|
|
|
|
2005-11-16 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets, Stop Reply Packets)
|
|
|
|
|
(General Query Packets): Various formatting cleanups.
|
|
|
|
|
- Use @samp for packet contents.
|
|
|
|
|
- Drop summaries from packet @item lines; the same information appears
|
|
|
|
|
immediately below in the description.
|
|
|
|
|
- Delete paragraph breaks after packet @item commands, so that the
|
|
|
|
|
description appears directly to the right of the packet prototype
|
|
|
|
|
in the printed manual, if it fits.
|
|
|
|
|
- Place spaces in packet prototypes between @vars and non-@var
|
|
|
|
|
letters, and explain that they're just for formatting.
|
|
|
|
|
- Use @dots{} instead of '...'.
|
|
|
|
|
- Fix uses of @code where @var was needed.
|
|
|
|
|
- Replace "deprecated" markers with English text spelling out the
|
|
|
|
|
packet's status and the preferred alternatives.
|
|
|
|
|
- Remove "(reserved)" markers on 'A' and 'I' packets; it's unclear
|
|
|
|
|
what this ever meant.
|
|
|
|
|
- Remove "(draft)" markers on 'i' packets; nobody has commented on
|
|
|
|
|
this for a long time.
|
|
|
|
|
- Remove "(draft)" markers on 'z' and 'Z' packets; these have been
|
|
|
|
|
implemented several times, and have been in use for years.
|
|
|
|
|
|
2005-11-15 19:00:28 +01:00
|
|
|
|
2005-11-15 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
2005-11-16 07:24:52 +01:00
|
|
|
|
* gdb.texinfo (Packets): Add index entries for 'm' packet
|
|
|
|
|
disclaimers.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2005-11-15 20:58:30 +01:00
|
|
|
|
* gdb.texinfo (Packets): Clarify lack of restrictions on behavior
|
|
|
|
|
of stub when processing an 'm' packet.
|
|
|
|
|
|
2005-11-15 19:00:28 +01:00
|
|
|
|
* gdb.texinfo (Packets): Mention that packets beginning with
|
|
|
|
|
letters are reserved once, at the top, instead of actually listing
|
|
|
|
|
them all and saying "reserved".
|
|
|
|
|
|
2005-11-15 13:03:08 +01:00
|
|
|
|
2005-11-15 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (User-defined commands): Add $argc. Add missing 'end'.
|
|
|
|
|
Change @var{$arg0 to @code{$arg0.
|
|
|
|
|
|
2005-11-14 03:34:43 +01:00
|
|
|
|
2005-11-14 Wu Zhou <woodzltc@cn.ibm.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Fortran): Add some words about Fortran debugging.
|
|
|
|
|
|
2005-11-13 00:09:46 +01:00
|
|
|
|
2005-11-12 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Put packets in alphabetical
|
|
|
|
|
order. Remove extraneous 'z'.
|
|
|
|
|
|
2005-11-07 14:56:48 +01:00
|
|
|
|
2005-11-07 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Choosing files): Add --eval-command.
|
|
|
|
|
|
2005-11-04 12:49:12 +01:00
|
|
|
|
2005-11-04 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Choosing modes): Add --return-child-result.
|
|
|
|
|
|
|
|
|
|
|
2005-11-01 12:09:18 +01:00
|
|
|
|
2005-11-01 Andrew Stubbs <andrew.stubbs@st.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Choosing modes): Add --batch-silent.
|
|
|
|
|
|
2005-10-28 19:20:03 +02:00
|
|
|
|
2005-10-28 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Fix @pxref usage under
|
|
|
|
|
"The -var-update Command".
|
|
|
|
|
|
2005-10-04 00:26:54 +02:00
|
|
|
|
2005-10-03 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Add documentation for set/show
|
|
|
|
|
print array-indexes.
|
|
|
|
|
|
2005-09-18 05:28:18 +02:00
|
|
|
|
2005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Thank Andrew Cagney for releases
|
|
|
|
|
6.2 and 6.3.
|
|
|
|
|
|
2005-08-27 14:05:01 +02:00
|
|
|
|
2005-08-27 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Don't document --mapped, it's gone
|
|
|
|
|
since 19-Jan-2004.
|
|
|
|
|
(Files): Likewise.
|
2005-08-27 14:51:30 +02:00
|
|
|
|
(Variables, Symbols): Document the "<incomplete type>" message and
|
|
|
|
|
its reasons.
|
2005-08-27 14:05:01 +02:00
|
|
|
|
|
2005-08-01 20:31:28 +02:00
|
|
|
|
2005-08-01 Fred Fish <fnf@specifix.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (SETUP_ARBITRARY_FRAME): Remove obsolete reference.
|
|
|
|
|
|
2005-07-15 07:55:02 +02:00
|
|
|
|
2005-07-15 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Describe print-values
|
|
|
|
|
option for -var-list-children and -var-update.
|
|
|
|
|
(GDB/MI Stack Manipulation): Simplify description of
|
|
|
|
|
print-values option for -stack-list-locals.
|
|
|
|
|
(GDB/MI Command Description Format): Clarify.
|
|
|
|
|
(Mode Options): Spelling of superseded.
|
|
|
|
|
|
2005-07-12 16:48:56 +02:00
|
|
|
|
2005-07-12 Bob Rossi <bob@brasko.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Fix -inferior-tty-show
|
|
|
|
|
corresponding GDB command comment.
|
|
|
|
|
|
2005-07-06 16:54:37 +02:00
|
|
|
|
2005-07-06 Bob Rossi <bob@brasko.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Miscellaneous Commands): Add -inferior-tty-set
|
|
|
|
|
and -inferior-tty-show.
|
|
|
|
|
(Input/Output): Document "set/show inferior-tty" and tty alias.
|
|
|
|
|
|
2005-07-02 17:39:48 +02:00
|
|
|
|
2005-07-02 Nathan J. Williams <nathanw@wasabisystems.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Change description of 'D' packet to note
|
|
|
|
|
that GDB does wait for a response.
|
|
|
|
|
|
2005-06-22 08:15:43 +02:00
|
|
|
|
2005-06-22 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (History) Rename "Command History".
|
|
|
|
|
(Command History): Move node "Server Prefix" from section on
|
|
|
|
|
Annotations here.
|
|
|
|
|
|
2005-06-19 05:14:46 +02:00
|
|
|
|
2005-06-19 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation):
|
|
|
|
|
Re-instate -stack-info-frame with example. Say that it gets
|
|
|
|
|
info on selected frame, not current frame.
|
|
|
|
|
|
2005-06-18 13:39:36 +02:00
|
|
|
|
2005-06-18 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server): Clarify that `file' should be used before
|
|
|
|
|
connecting to the server.
|
|
|
|
|
(Files): Add an xref to the above description.
|
2005-06-18 14:10:55 +02:00
|
|
|
|
(Output Formats): More detailed description of the `c' format.
|
|
|
|
|
(Memory): List explicitly all the formats supported by `x'.
|
2005-06-18 14:18:25 +02:00
|
|
|
|
(Threads): Add an @cindex entry for "thread apply".
|
2005-06-18 14:36:06 +02:00
|
|
|
|
(Files): Document the possibility of loading unlinked object
|
2005-06-18 14:40:48 +02:00
|
|
|
|
files. Add more indexing for solib-absolute-prefix and
|
|
|
|
|
--with-sysroot.
|
2005-06-18 14:54:36 +02:00
|
|
|
|
(Machine Code): Document possible problems with locations in
|
|
|
|
|
shared libraries.
|
2005-06-18 15:12:04 +02:00
|
|
|
|
(Backtrace): Document that free-standing environments do not need
|
|
|
|
|
to have a `main' function.
|
2005-06-18 13:39:36 +02:00
|
|
|
|
|
2005-06-18 04:51:55 +02:00
|
|
|
|
2005-06-18 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation): Remove reference to
|
|
|
|
|
-stack-info-frame.
|
|
|
|
|
|
2005-06-07 17:32:38 +02:00
|
|
|
|
2005-06-07 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Note the original multi-arch
|
|
|
|
|
contributors.
|
|
|
|
|
|
2005-06-03 09:09:20 +02:00
|
|
|
|
2005-06-03 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Registers): Add index entries for the standard
|
|
|
|
|
registers.
|
|
|
|
|
(Frames): Add cross-reference from frame pointer description to
|
|
|
|
|
the Registers node.
|
|
|
|
|
(Annotations Overview): Fix the reference to GDB name.
|
|
|
|
|
|
2005-06-01 22:38:44 +02:00
|
|
|
|
2005-06-01 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Watchpoints): Remove @vindex entry for
|
|
|
|
|
can-use-hw-watchpoints.
|
|
|
|
|
|
2005-05-29 05:13:19 +02:00
|
|
|
|
2005-05-28 Bob Rossi <bob@brasko.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Out-of-band Records): Add bullet enumerating
|
|
|
|
|
the possible reasons why an exec async record would be returned to FE.
|
|
|
|
|
|
2005-05-26 21:28:23 +02:00
|
|
|
|
2005-05-26 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Note that Elena Zannoni, Fernando Nasser, and
|
|
|
|
|
Andrew Cagney implemented the original GDB/MI.
|
|
|
|
|
|
2005-05-23 12:41:33 +02:00
|
|
|
|
2005-05-23 Orjan Friberg <orjanf@axis.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (CRIS): Update the cris-version and cris-dwarf2-cfi
|
|
|
|
|
documentation. Add documentation for cris-mode.
|
|
|
|
|
|
2005-05-20 16:59:59 +02:00
|
|
|
|
2005-05-20 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Numbers): Explain the example and make the wording
|
|
|
|
|
more acurate.
|
|
|
|
|
|
2005-05-17 Daniel Jacobowitz <dan@codesourcery.com>
Dennis Brueni <dennis@slickedit.com>
gdb/
* stack.c (print_frame): In MI mode, output a fullname attribute
with the stack frame.
gdb/doc/
* gdb.texinfo (GDB/MI Breakpoint Table Commands)
(GDB/MI Data Manipulation, GDB/MI Program Control)
(GDB/MI Stack Manipulation): Update examples to include the fullname
attribute in stack frames.
gdb/testsuite/
* gdb.mi/mi-cli.exp, gdb.mi/mi-return.exp, gdb.mi/mi-stack.exp,
gdb.mi/mi-stepi.exp, gdb.mi/mi-syn-frame.exp, gdb.mi/mi-until.exp,
gdb.mi/mi-var-display.exp, gdb.mi/mi-watch.exp, gdb.mi/mi2-cli.exp,
gdb.mi/mi2-return.exp, gdb.mi/mi2-stack.exp,
gdb.mi/mi2-syn-frame.exp, gdb.mi/mi2-until.exp,
gdb.mi/mi2-var-display.exp: Expect fullname field in stack frames.
* lib/mi-support.exp (mi_runto, mi_execute_to_helper): Likewise.
2005-05-18 05:41:59 +02:00
|
|
|
|
2005-05-17 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
Dennis Brueni <dennis@slickedit.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Breakpoint Table Commands)
|
|
|
|
|
(GDB/MI Data Manipulation, GDB/MI Program Control)
|
|
|
|
|
(GDB/MI Stack Manipulation): Update examples to include the fullname
|
|
|
|
|
attribute in stack frames.
|
|
|
|
|
|
2005-05-12 11:05:45 +02:00
|
|
|
|
2005-05-12 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Startup): Fix last change. Treat gdb.ini like we
|
|
|
|
|
do with other non-standard names of init files.
|
|
|
|
|
|
2005-05-11 17:47:49 +02:00
|
|
|
|
2005-05-11 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Files): Move the description of the startup
|
|
|
|
|
from here...
|
|
|
|
|
(Startup): ...to this new subsection of the Invocation chapter.
|
|
|
|
|
Rearrange the description of init files more logically and add a
|
|
|
|
|
cross-reference to "Command Files". Document the special gdbinit
|
|
|
|
|
name for CISCO 68k. Expand the description of what GDB does
|
|
|
|
|
during startup.
|
|
|
|
|
(History): Add index entry for HISTSIZE.
|
|
|
|
|
|
2005-05-02 22:42:27 +02:00
|
|
|
|
2005-05-02 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Remove documentation for auto-solib-limit.
|
|
|
|
|
|
2005-05-01 23:27:44 +02:00
|
|
|
|
2005-05-02 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (SVR4 Process Information, The isatty call)
|
|
|
|
|
(The system call): Don't use foo(N) notation for man pages and
|
|
|
|
|
functions.
|
2005-05-02 22:28:48 +02:00
|
|
|
|
(Compilation, DJGPP Native): Improve wording.
|
2005-05-01 23:27:44 +02:00
|
|
|
|
|
2005-04-27 15:02:15 +02:00
|
|
|
|
2005-04-27 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Describe backtraces with arguments that
|
|
|
|
|
were optimized away.
|
|
|
|
|
|
2005-04-22 15:09:30 +02:00
|
|
|
|
2005-04-22 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote configuration): Document "set/show
|
|
|
|
|
get-thread-local-storage-address". Add cross-reference to the
|
|
|
|
|
description of the qGetTLSAddr packet.
|
|
|
|
|
(General Query Packets): Mention "set remote
|
|
|
|
|
get-thread-local-storage-address" and add a reference to its
|
|
|
|
|
description.
|
|
|
|
|
|
2005-04-18 15:28:22 +02:00
|
|
|
|
2005-04-19 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Describe 'bt full'.
|
|
|
|
|
|
2005-04-16 22:54:31 +02:00
|
|
|
|
2005-04-17 Nick Roberts <nickrob@snap.net.nz>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Fix typo.
|
|
|
|
|
(GDB/MI): Describe how to invoke GDB/MI.
|
|
|
|
|
|
2005-04-16 10:44:34 +02:00
|
|
|
|
2005-04-16 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (OS Information): Renamed from Auxiliary Vector; all
|
2005-04-16 11:14:28 +02:00
|
|
|
|
references changed. Add description of "info udot".
|
2005-04-16 10:44:34 +02:00
|
|
|
|
(Files): Document "set/show stop-on-solib-events".
|
|
|
|
|
(M32R/D): Document "set/show download-path", "set/show
|
|
|
|
|
board-address", "set/show server-address", "upload", "tload".
|
(M32R/D): Document "sdireset", "sdistatus", "debug_chaos",
"use_debug_dma",
"use_mon_code", "use_ib_break", "use_dbt_break".
(Debugging Output): Improve wording.
(Set Breaks): Add index entry for "hardware breakpoints".
(Renesas ICE): Document "e7000", "ftplogin", "ftpload", "drain",
and "set/show usehardbreakpoints".
(MIPS Embedded): Document "se/show syn-garbage-limit", "set/show
monitor-prompt", "set/show monitor-warnings", "pmon".
2005-04-16 14:03:31 +02:00
|
|
|
|
Document "sdireset", "sdistatus", "debug_chaos", "use_debug_dma",
|
|
|
|
|
"use_mon_code", "use_ib_break", "use_dbt_break".
|
2005-04-16 10:44:34 +02:00
|
|
|
|
(Maintenance Commands): Improve indexing.
|
|
|
|
|
(Target Commands): Document "set/show hash", "set/show debug
|
|
|
|
|
monitor".
|
|
|
|
|
(SVR4 Process Information): Document "info pidlist" and "info
|
|
|
|
|
meminfo". Document "set/show procfs-tarce" and "set/show
|
|
|
|
|
procfs-file". Document "proc-trace-*" and "proc-untrace-*".
|
|
|
|
|
(Symbols, The Print Command with Objective-C): Improve indexing.
|
|
|
|
|
(Objective-C): Add references to "info classes" and "info
|
|
|
|
|
selectors".
|
(Debugging Output): Document "set/show debug
solib-frv". Fix "set/show debugvarobj".
(Set Breaks): Add index entry for "hardware breakpoints".
(Renesas ICE): Document "e7000", "ftplogin", "ftpload", "drain",
and "set/show usehardbreakpoints".
(MIPS Embedded): Document "se/show syn-garbage-limit", "set/show
monitor-prompt", "set/show monitor-warnings", "pmon".
(ARM): Document "rdilogfile", "rdilogenable", "set/show
rdiromatzero", "set/show rdiheartbeat".
(PowerPC): Document SDS-specific commands "set/show sdstimeout",
"sds".
(Embedded Processors): Document the "sim" command.
(Remote): Document the "remote" command.
(DJGPP Native): Document the "info serial" command.
(Threads): Document "maint info sol-threads".
(Files): Document "nosharedlibrary", "add-symbol-file-from-memory".
(Set Breaks): Improve indexing.
(Command Syntax): Add a reference to dont-repeat.
(Define): Document "dont-repeat".
(TUI Commands): Document "tabset".
(WinCE): New subsection. Document "set/show remotedirectory",
"set/show remoteupload", "set/show remoteaddhost".
2005-04-16 16:27:50 +02:00
|
|
|
|
(Debugging Output): Improve wording. Document "set/show debug
|
|
|
|
|
solib-frv". Fix "set/show debugvarobj".
|
(M32R/D): Document "sdireset", "sdistatus", "debug_chaos",
"use_debug_dma",
"use_mon_code", "use_ib_break", "use_dbt_break".
(Debugging Output): Improve wording.
(Set Breaks): Add index entry for "hardware breakpoints".
(Renesas ICE): Document "e7000", "ftplogin", "ftpload", "drain",
and "set/show usehardbreakpoints".
(MIPS Embedded): Document "se/show syn-garbage-limit", "set/show
monitor-prompt", "set/show monitor-warnings", "pmon".
2005-04-16 14:03:31 +02:00
|
|
|
|
(Set Breaks): Add index entry for "hardware breakpoints".
|
|
|
|
|
(Renesas ICE): Document "e7000", "ftplogin", "ftpload", "drain",
|
|
|
|
|
and "set/show usehardbreakpoints".
|
|
|
|
|
(MIPS Embedded): Document "se/show syn-garbage-limit", "set/show
|
|
|
|
|
monitor-prompt", "set/show monitor-warnings", "pmon".
|
(Debugging Output): Document "set/show debug
solib-frv". Fix "set/show debugvarobj".
(Set Breaks): Add index entry for "hardware breakpoints".
(Renesas ICE): Document "e7000", "ftplogin", "ftpload", "drain",
and "set/show usehardbreakpoints".
(MIPS Embedded): Document "se/show syn-garbage-limit", "set/show
monitor-prompt", "set/show monitor-warnings", "pmon".
(ARM): Document "rdilogfile", "rdilogenable", "set/show
rdiromatzero", "set/show rdiheartbeat".
(PowerPC): Document SDS-specific commands "set/show sdstimeout",
"sds".
(Embedded Processors): Document the "sim" command.
(Remote): Document the "remote" command.
(DJGPP Native): Document the "info serial" command.
(Threads): Document "maint info sol-threads".
(Files): Document "nosharedlibrary", "add-symbol-file-from-memory".
(Set Breaks): Improve indexing.
(Command Syntax): Add a reference to dont-repeat.
(Define): Document "dont-repeat".
(TUI Commands): Document "tabset".
(WinCE): New subsection. Document "set/show remotedirectory",
"set/show remoteupload", "set/show remoteaddhost".
2005-04-16 16:27:50 +02:00
|
|
|
|
(ARM): Document "rdilogfile", "rdilogenable", "set/show
|
|
|
|
|
rdiromatzero", "set/show rdiheartbeat".
|
|
|
|
|
(PowerPC): Document SDS-specific commands "set/show sdstimeout",
|
|
|
|
|
"sds".
|
|
|
|
|
(Embedded Processors): Document the "sim" command.
|
|
|
|
|
(Remote): Document the "remote" command.
|
|
|
|
|
(DJGPP Native): Document the "info serial" command.
|
|
|
|
|
(Threads): Document "maint info sol-threads".
|
|
|
|
|
(Files): Document "nosharedlibrary", "add-symbol-file-from-memory".
|
|
|
|
|
(Set Breaks): Improve indexing.
|
|
|
|
|
(Command Syntax): Add a reference to dont-repeat.
|
|
|
|
|
(Define): Document "dont-repeat".
|
|
|
|
|
(TUI Commands): Document "tabset".
|
|
|
|
|
(WinCE): New subsection. Document "set/show remotedirectory",
|
|
|
|
|
"set/show remoteupload", "set/show remoteaddhost".
|
2005-04-16 10:44:34 +02:00
|
|
|
|
|
2005-04-15 13:53:52 +02:00
|
|
|
|
2005-04-15 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Hurd Native): New subsection, documents
|
|
|
|
|
Hurd-specific commands.
|
2005-04-15 18:43:54 +02:00
|
|
|
|
(Maintenance Commands): Add cross-reference to "Debugging Output".
|
2005-04-15 14:09:49 +02:00
|
|
|
|
(Debugging Output): Document "set/show debug lin-lwp".
|
2005-04-15 18:43:54 +02:00
|
|
|
|
(MIPS): Improve documentation of heuristic-fence-post. Document
|
|
|
|
|
"set/show mips abi", "set/show mips saved-gpreg-size", "set/show
|
|
|
|
|
mips stack-arg-size", "set/show mips mask-address", "set/show mips
|
|
|
|
|
remote-mips64-transfers-32bit-regs", "set/show debug mips".
|
2005-04-15 14:37:57 +02:00
|
|
|
|
(ARM): Document ARM-specific commands.
|
2005-04-15 18:43:54 +02:00
|
|
|
|
(AVR): New section. Document "info io_registers".
|
|
|
|
|
(CRIS): New section. Document "set/show cris-version" and
|
|
|
|
|
"set/show cris-dwarf2-cfi".
|
|
|
|
|
(HPPA): New section. Document "set/show debug hppa" and "maint
|
|
|
|
|
print unwind".
|
2005-04-16 11:14:28 +02:00
|
|
|
|
(Neutrino): New subsection. Document "set/show debug nto-debug".
|
2005-04-15 18:43:54 +02:00
|
|
|
|
(Super-H): New section. Document the "regs" command.
|
2005-04-16 10:44:34 +02:00
|
|
|
|
(Debugging Output): Document "set/show debug aix-thread".
|
2005-04-15 13:53:52 +02:00
|
|
|
|
|
* gdb.texinfo (Print Settings): Document "set/show print
pascal_static-members", "set print repeats", "show print
null-stop". Improve indexing. Fix documentation of "set print
union".
(Pascal): New section.
(Supported languages): Rename from "Support"; all references
updated. Add a menu item for Pascal.
(Numbers): Document "set radix.
(Screen Size): Document "set/show pagination".
(MIPS Embedded): Remove "set processor" documentation.
(Remote configuration): Document "set/show X/P/Z-packet",
"set/show read-aux-vector-packet", "set/show remote
symbol-lookup-packet", "set/show remote verbose-resume-packet",
"set/show remoteaddresssize", "set/show remotebaud", "set/show
remotedebug", "set/show remotebreak", "set/show remotedevice",
"set/show remotelogfile".
(Auxiliary Vector): Add reference to the description of the
read-aux-vector-packet setting.
(Set Watchpoints): Add a cross-reference to "set remote
hardware-breakpoint-limit".
(General Query Packets): Add indexing of requests and
cross-references to related commands in "Remote configuration".
(File-I/O Overview, The system call): Fix wording and typos.
(Thread Stops): Add index entries.
(Continuing and Stepping): Document "show step-mode".
(i386): New node. Document "set/show struct-convention".
(Files): Document "show trust-readonly-sections".
(Calling): Document "set/show unwindonsignal".
(Messages/Warnings): Add index entries.
(Maintenance Commands): Document "set/show watchdog".
(Annotations Overview): Document "show annotate".
(Set Watchpoints): Add index entries.
(Symbols): Fix doc of case-sensitive.
(ABI): Document "show coerce-float-to-double".
(Convenience Vars, Help): Improve indexing.
(Machine Code): Document "show disassembly-flavor".
(Debugging C plus plus): Document "show overload-resolution".
(Value History, Signaling): Add index entries.
* gdb.texinfo (Show): Move @kindex entries to their proper places.
(Processes): Fix wording.
(History, List, Logging output, Define, Symbols, Print Settings):
Improve indexing.
2005-04-09 17:37:20 +02:00
|
|
|
|
2005-04-09 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Document "set/show print
|
|
|
|
|
pascal_static-members", "set print repeats", "show print
|
|
|
|
|
null-stop". Improve indexing. Fix documentation of "set print
|
|
|
|
|
union".
|
|
|
|
|
(Pascal): New section.
|
|
|
|
|
(Supported languages): Rename from "Support"; all references
|
|
|
|
|
updated. Add a menu item for Pascal.
|
|
|
|
|
(Numbers): Document "set radix.
|
|
|
|
|
(Screen Size): Document "set/show pagination".
|
|
|
|
|
(MIPS Embedded): Remove "set processor" documentation.
|
|
|
|
|
(Remote configuration): Document "set/show X/P/Z-packet",
|
|
|
|
|
"set/show read-aux-vector-packet", "set/show remote
|
|
|
|
|
symbol-lookup-packet", "set/show remote verbose-resume-packet",
|
|
|
|
|
"set/show remoteaddresssize", "set/show remotebaud", "set/show
|
|
|
|
|
remotedebug", "set/show remotebreak", "set/show remotedevice",
|
|
|
|
|
"set/show remotelogfile".
|
|
|
|
|
(Auxiliary Vector): Add reference to the description of the
|
|
|
|
|
read-aux-vector-packet setting.
|
|
|
|
|
(Set Watchpoints): Add a cross-reference to "set remote
|
|
|
|
|
hardware-breakpoint-limit".
|
|
|
|
|
(General Query Packets): Add indexing of requests and
|
|
|
|
|
cross-references to related commands in "Remote configuration".
|
|
|
|
|
(File-I/O Overview, The system call): Fix wording and typos.
|
|
|
|
|
(Thread Stops): Add index entries.
|
|
|
|
|
(Continuing and Stepping): Document "show step-mode".
|
|
|
|
|
(i386): New node. Document "set/show struct-convention".
|
|
|
|
|
(Files): Document "show trust-readonly-sections".
|
|
|
|
|
(Calling): Document "set/show unwindonsignal".
|
|
|
|
|
(Messages/Warnings): Add index entries.
|
|
|
|
|
(Maintenance Commands): Document "set/show watchdog".
|
|
|
|
|
(Annotations Overview): Document "show annotate".
|
|
|
|
|
(Set Watchpoints): Add index entries.
|
|
|
|
|
(Symbols): Fix doc of case-sensitive.
|
|
|
|
|
(ABI): Document "show coerce-float-to-double".
|
|
|
|
|
(Convenience Vars, Help): Improve indexing.
|
|
|
|
|
(Machine Code): Document "show disassembly-flavor".
|
|
|
|
|
(Debugging C plus plus): Document "show overload-resolution".
|
|
|
|
|
(Value History, Signaling): Add index entries.
|
|
|
|
|
|
|
|
|
|
2005-04-08 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Show): Move @kindex entries to their proper places.
|
|
|
|
|
(Processes): Fix wording.
|
|
|
|
|
(History, List, Logging output, Define, Symbols, Print Settings):
|
|
|
|
|
Improve indexing.
|
|
|
|
|
|
2005-04-03 00:24:18 +02:00
|
|
|
|
2005-04-03 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Targets): Document "set/show architecture". Remove
|
|
|
|
|
redundant index entry for "target" command.
|
|
|
|
|
(Backtrace): Add index entries.
|
|
|
|
|
(Symbols, Fortran): Document the "set case-sensitive" command.
|
|
|
|
|
(DJGPP Native): Document "set com1base", "set com1irq", etc.
|
|
|
|
|
(Print Settings): Add index entry for "set demangle-style".
|
|
|
|
|
(Target Commands): Document "set download-write-size".
|
|
|
|
|
(Debugging Output): Document "set exec-done-display".
|
|
|
|
|
|
(Files): Fix the name and documentation of
add-shared-symbol-files. Document its alias assf. Update the
list of OSs where GDB supports shared libraries. Fix markup.
(Continuing and Stepping): Add reference to @var{location} in the
text.
(Dump/Restore Files): Fix reference to @{filename}.
(Help): Fix wording.
(Attach): Ditto.
(Set Watchpoints): Ditto.
(Backtrace): Remove redundant index entries. Improve index
entries.
(Delete Breaks): Fix wording.
(Memory): Document the compare-sections command.
(Memory Region Attributes): Improve wording.
(Disabling): Improve wording.
(Fortran): New subsection. Document the "info common" command.
(Help): Document aliases "info copying" and "info warranty".
(Caching Remote Data): New section. Document the "set/show
remotecache" and "info dcache" commands.
(Show): Fix wording of the documentation of the "set
extension-language" command.
(Signals): Add index entry for "info handle".
(Memory Region Attributes): Fix punctuation.
(Symbols): Change the arg name to "location" and refer to it in
the text. Fix wording of "info types" doc.
(Threads): Fix usage of @enumerate @item's.
(Listing Tracepoints): Add index entry for "info tp".
(Set Watchpoints): Add xref to "info break" description.
(Macros): Add an index entry for "macro exp1". Document the
"macro list" command.
(Maintenance Commands): Document "flushregs", "maint agent",
"maint check-symtabs", "maint cplus", "maint demangle", "maint
deprecate", "maint undeprecate", "maint dump-me", "maint packet",
"maint print architecture", "maint print objfiles", "maint print
statistics", "maint print type", "maint show-debug-regs", "maint
space", "maint time", and "maint translate-address".
(Connecting): Document the "monitor" command.
(Annotations Overview): Describe the "set annotate" command.
2005-04-02 19:48:36 +02:00
|
|
|
|
2005-04-02 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Fix the name and documentation of
|
|
|
|
|
add-shared-symbol-files. Document its alias assf. Update the
|
|
|
|
|
list of OSs where GDB supports shared libraries. Fix markup.
|
|
|
|
|
(Continuing and Stepping): Add reference to @var{location} in the
|
|
|
|
|
text.
|
|
|
|
|
(Dump/Restore Files): Fix reference to @{filename}.
|
|
|
|
|
(Help): Fix wording.
|
|
|
|
|
(Attach): Ditto.
|
|
|
|
|
(Set Watchpoints): Ditto.
|
|
|
|
|
(Backtrace): Remove redundant index entries. Improve index
|
|
|
|
|
entries.
|
|
|
|
|
(Delete Breaks): Fix wording.
|
|
|
|
|
(Memory): Document the compare-sections command.
|
|
|
|
|
(Memory Region Attributes): Improve wording.
|
|
|
|
|
(Disabling): Improve wording.
|
|
|
|
|
(Fortran): New subsection. Document the "info common" command.
|
|
|
|
|
(Help): Document aliases "info copying" and "info warranty".
|
|
|
|
|
(Caching Remote Data): New section. Document the "set/show
|
|
|
|
|
remotecache" and "info dcache" commands.
|
|
|
|
|
(Show): Fix wording of the documentation of the "set
|
|
|
|
|
extension-language" command.
|
|
|
|
|
(Signals): Add index entry for "info handle".
|
|
|
|
|
(Memory Region Attributes): Fix punctuation.
|
|
|
|
|
(Symbols): Change the arg name to "location" and refer to it in
|
|
|
|
|
the text. Fix wording of "info types" doc.
|
|
|
|
|
(Threads): Fix usage of @enumerate @item's.
|
|
|
|
|
(Listing Tracepoints): Add index entry for "info tp".
|
|
|
|
|
(Set Watchpoints): Add xref to "info break" description.
|
|
|
|
|
(Macros): Add an index entry for "macro exp1". Document the
|
|
|
|
|
"macro list" command.
|
|
|
|
|
(Maintenance Commands): Document "flushregs", "maint agent",
|
|
|
|
|
"maint check-symtabs", "maint cplus", "maint demangle", "maint
|
|
|
|
|
deprecate", "maint undeprecate", "maint dump-me", "maint packet",
|
|
|
|
|
"maint print architecture", "maint print objfiles", "maint print
|
|
|
|
|
statistics", "maint print type", "maint show-debug-regs", "maint
|
|
|
|
|
space", "maint time", and "maint translate-address".
|
|
|
|
|
(Connecting): Document the "monitor" command.
|
|
|
|
|
(Annotations Overview): Describe the "set annotate" command.
|
|
|
|
|
|
2005-04-02 10:32:31 +02:00
|
|
|
|
2005-04-01 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Watchpoints): Document can-use-hw-watchpoints.
|
|
|
|
|
Rearrange index entries and improve wording about support for
|
|
|
|
|
hardware watchpoints.
|
|
|
|
|
|
2005-03-10 14:12:33 +01:00
|
|
|
|
2005-03-10 Bob Rossi <bob@brasko.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update copyright
|
|
|
|
|
|
2005-02-09 20:06:08 +01:00
|
|
|
|
2005-02-09 Theodore A. Roth <troth@openavr.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Fix texinfo compile warning and
|
|
|
|
|
error.
|
|
|
|
|
|
2005-02-03 17:11:38 +01:00
|
|
|
|
2005-02-03 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document qGetTLSAddr packet.
|
|
|
|
|
|
2005-01-17 20:54:42 +01:00
|
|
|
|
2005-01-17 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix spelling, infinte -> infinite.
|
|
|
|
|
|
2005-01-12 21:48:08 +01:00
|
|
|
|
2005-01-08 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Document "solib_loaded".
|
|
|
|
|
|
2005-01-07 16:17:01 +01:00
|
|
|
|
2005-01-07 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
Index: ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
Index: doc/ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
Index: gdbserver/ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
Index: testsuite/ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
* gdb.stabs/configure.ac: Rename configure.in, require autoconf 2.59.
* gdb.stabs/configure: Re-generate.
* gdb.hp/configure.ac: Rename configure.in, require autoconf 2.59.
* gdb.hp/configure: Re-generate.
* gdb.hp/gdb.objdbg/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.objdbg/configure: Re-generate.
* gdb.hp/gdb.defects/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.defects/configure: Re-generate.
* gdb.hp/gdb.compat/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.compat/configure: Re-generate.
* gdb.hp/gdb.base-hp/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.base-hp/configure: Re-generate.
* gdb.hp/gdb.aCC/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.aCC/configure: Re-generate.
2005-01-07 22:53:26 +01:00
|
|
|
|
* configure.ac: Rename configure.in, require autoconf 2.59.
|
|
|
|
|
* configure: Re-generate.
|
|
|
|
|
|
2005-01-07 16:17:01 +01:00
|
|
|
|
* configure.in: Replace configdirs with multiple references to
|
|
|
|
|
AC_CONFIG_SUBDIRS.
|
|
|
|
|
* configure: Re-generate.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
|
2005-01-04 20:25:46 +01:00
|
|
|
|
2005-01-04 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Versions and Branches): Make the date (YYYYMMDD)
|
|
|
|
|
part of the version number.
|
|
|
|
|
|
2004-12-25 11:19:48 +01:00
|
|
|
|
2004-12-24 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): Remove description of
|
|
|
|
|
TARGET_DISABLE_HW_WATCHPOINTS and TARGET_ENABLE_HW_WATCHPOINTS.
|
|
|
|
|
|
2004-12-08 06:28:31 +01:00
|
|
|
|
2004-12-07 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Specify that thread ID's in
|
|
|
|
|
the 'qC' and 'qThreadInfo' packets are unsigned hexidecimal
|
|
|
|
|
numbers.
|
|
|
|
|
|
2004-12-07 12:06:04 +01:00
|
|
|
|
2004-12-07 Andreas Schwab <schwab@suse.de>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Document -l option.
|
|
|
|
|
|
2004-12-04 15:02:44 +01:00
|
|
|
|
2004-12-04 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): More accurate description of
|
|
|
|
|
STOPPED_BY_WATCHPOINT. Point out that target_stopped_data_address
|
|
|
|
|
is not needed unless data-read and data-access watchpoints are
|
|
|
|
|
supported. Add a description of how GDB checks whether the
|
|
|
|
|
inferior stopped because a watchpoint was hit.
|
|
|
|
|
|
2004-11-23 13:05:28 +01:00
|
|
|
|
2004-11-23 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Add cross-reference to description of
|
|
|
|
|
-readnow command-line switch.
|
|
|
|
|
|
2004-11-10 22:17:58 +01:00
|
|
|
|
2004-11-10 Randolph Chung <tausq@debian.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document set/show backtrace past-entry commands.
|
|
|
|
|
Rearrange index entries for set/show backtrace past-main.
|
|
|
|
|
|
2004-11-10 15:56:26 +01:00
|
|
|
|
2004-11-10 Jon Beniston <jon@beniston.com>
|
|
|
|
|
|
|
|
|
|
Committed by Andrew Cagney <cagney@gnu.org>.
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Remote Serial Protocol): Further describe
|
|
|
|
|
binary transfer escaping mechanism .
|
2004-11-10 15:56:26 +01:00
|
|
|
|
|
2004-11-08 18:25:49 +01:00
|
|
|
|
2004-11-08 Randolph Chung <tausq@debian.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (inferior_debugging info): Document "set debug infrun"
|
|
|
|
|
and "show debug infrun". Add index entries.
|
|
|
|
|
|
2004-10-23 15:52:37 +02:00
|
|
|
|
2004-10-23 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (SVR4 Process Information): Document subcommands of
|
|
|
|
|
"info proc" that are already implemented. Add index entries.
|
|
|
|
|
(Working Directory): Add a cross-reference to "info proc" command.
|
2004-10-23 16:11:33 +02:00
|
|
|
|
(Files): Add a tip for decreasing memory used for symtabs from
|
|
|
|
|
shared libraries.
|
2004-10-23 16:21:44 +02:00
|
|
|
|
(Starting): Fix whitespace; make "elaboration" stand out where it
|
|
|
|
|
is first used, and add an index entry for the term.
|
2004-10-23 16:34:54 +02:00
|
|
|
|
(Calling): Expand and elaborate text. Add "print". Add the
|
|
|
|
|
description of problems with weak aliases.
|
2004-10-23 17:05:29 +02:00
|
|
|
|
(Core File Generation): New section.
|
2004-10-23 15:52:37 +02:00
|
|
|
|
|
2004-10-12 21:14:31 +02:00
|
|
|
|
2004-10-12 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Versions and Branches): New chapter.
|
|
|
|
|
(Releasing GDB): Delete "Versions and Branches" section.
|
|
|
|
|
(Top): Add "Versions and Branches".
|
|
|
|
|
|
2004-10-08 21:19:05 +02:00
|
|
|
|
2004-10-08 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Editing, History): Add cross-references to the
|
|
|
|
|
included Readline and History user documentation. Remove
|
|
|
|
|
references to the symbol have-readline-appendices which is unused
|
|
|
|
|
and undefined.
|
|
|
|
|
(History): Fix indexing.
|
|
|
|
|
|
2004-10-08 17:34:31 +02:00
|
|
|
|
2004-10-08 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (target_stopped_data_address): Update to
|
|
|
|
|
new prototype.
|
|
|
|
|
(i386_stopped_data_address): Update prototype and description.
|
|
|
|
|
(i386_stopped_by_watchpoint): New function and description.
|
|
|
|
|
|
2004-10-03 12:10:35 +02:00
|
|
|
|
2004-10-03 Paul N. Hilfinger <hilfinger@gnat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Filenames): Add Ada suffixes.
|
|
|
|
|
(Ada) New section.
|
|
|
|
|
|
2004-09-27 21:23:25 +02:00
|
|
|
|
2004-09-27 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
Robert Picco <Robert.Picco@hp.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Document the "p" packet.
|
|
|
|
|
|
2004-09-21 23:06:37 +02:00
|
|
|
|
2004-09-21 Jason Molenda (jmolenda@apple.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Paths and Names of the Source Files): Document the
|
|
|
|
|
meaning of values in the 'desc' field of a SO stab.
|
|
|
|
|
|
gdb/doc/
* gdb.texinfo (Maintenance Commands): Document "maint set dwarf2
max-cache-age" and "maint show dwarf2 max-cache-age".
gdb/
* Makefile.in (dwarf2read.o): Update dependencies.
* dwarf2read.c: Include "command.h" and "gdbcmd.h".
(struct dwarf2_per_objfile): Add all_comp_units, n_comp_units,
and read_in_chain.
(struct dwarf2_cu): Add read_in_chain, per_cu, last_used,
mark, and has_form_ref_addr.
(struct dwarf2_per_cu_data): New.
(dwarf2_max_cache_age): New.
(dwarf2_build_psymtabs_hard): Free cached compilation units
after loading. Create and manage the list of compilation units.
Remove unnecessary NULL initialization. Fix indentation.
(psymtab_to_symtab_1): Initialize all of CU.
(dwarf2_read_abbrevs): Set has_form_ref_addr.
(find_partial_die): Use dwarf2_find_containing_comp_unit
and load_comp_unit.
(free_stack_comp_unit): Update comments. Clear the per-cu
pointer. Handle aging.
(dwarf2_find_containing_comp_unit, free_cached_comp_units)
(age_cached_comp_units, free_one_cached_comp_unit)
(dwarf2_mark, dwarf2_clear_marks, create_all_comp_units)
(load_comp_unit, dwarf2_find_comp_unit, free_one_comp_unit)
(set_dwarf2_cmdlist, show_dwarf2_cmdlist, set_dwarf2_cmd)
(show_dwarf2_cmd): New.
(_initialize_dwarf2_read): Provide "maint set dwarf2 max-cache-age"
and "maint show dwarf2 max-cache-age".
* gdbcmd.h (maintenance_set_cmdlist, maintenance_show_cmdlist): New
externs.
* maint.c (maintenance_set_cmdlist, maintenance_show_cmdlist): Make
global.
2004-09-21 00:26:21 +02:00
|
|
|
|
2004-09-20 Daniel Jacobowitz <dan@debian.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document "maint set dwarf2
|
|
|
|
|
max-cache-age" and "maint show dwarf2 max-cache-age".
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2004-09-16 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Add index entry for setting
|
|
|
|
|
breakpoints on overloaded C++ functions that are not members of
|
|
|
|
|
any classes. Add an example and an index entry for setting
|
|
|
|
|
breakpoints on all program functions.
|
|
|
|
|
(Character Sets, Macros, Overlay Commands)
|
|
|
|
|
(Non-debug DLL symbols, GDB/MI Output Syntax)
|
|
|
|
|
(Annotations Overview, Maintenance Commands, File-I/O Overview):
|
|
|
|
|
Use "(@value{GDBP})" instead of a literal "(gdb)".
|
|
|
|
|
|
2004-09-12 17:20:49 +02:00
|
|
|
|
2004-09-12 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Delete description of
|
|
|
|
|
FILES_INFO_HOOK.
|
|
|
|
|
|
2004-09-11 22:53:16 +02:00
|
|
|
|
2004-09-11 Paul Hilfinger <hilfinger@gnat.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdbint.texinfo (User Interface): Change local_hex_string_custom
|
|
|
|
|
to hex_string_custom (not historically correct, but more
|
2004-09-11 22:53:16 +02:00
|
|
|
|
understandable, given the current code).
|
|
|
|
|
|
2004-09-03 19:13:48 +02:00
|
|
|
|
2004-09-03 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Delete SVR4_SHARED_LIBS.
|
|
|
|
|
|
2004-09-01 19:59:37 +02:00
|
|
|
|
2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (solib_unloaded): New observer.
|
|
|
|
|
|
2004-08-24 21:58:24 +02:00
|
|
|
|
2004-08-24 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Add missing
|
|
|
|
|
comma.
|
|
|
|
|
|
2004-08-21 11:37:20 +02:00
|
|
|
|
2004-08-20 Michael Chastain <mec.gnu@mindspring.com>
|
|
|
|
|
|
|
|
|
|
* (Using the Testsuite): build != host is supported,
|
|
|
|
|
but some test scripts do not support build != host.
|
|
|
|
|
|
2004-08-14 23:11:43 +02:00
|
|
|
|
2004-08-14 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Delete description of
|
|
|
|
|
FCLOSE_PROVIDED and GETENV_PROVIDED.
|
|
|
|
|
|
2004-08-06 22:47:25 +02:00
|
|
|
|
2004-08-05 Mark Kettenis <kettenis@chello.nl>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Delete description of
|
|
|
|
|
NO_SYS_FILE.
|
|
|
|
|
(Native Debugging): Delete description of KERNEL_U_ADDR_BSD and
|
|
|
|
|
PTRACE_FP_BUG.
|
|
|
|
|
|
2004-08-05 16:12:40 +02:00
|
|
|
|
2004-08-05 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
reference to deprecated_read_fp.
|
|
|
|
|
|
2004-08-03 04:02:24 +02:00
|
|
|
|
2004-08-02 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of DEPRECATED_REGISTER_BYTES.
|
|
|
|
|
|
2004-07-30 21:23:54 +02:00
|
|
|
|
2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Source Path): Document the new behavior of
|
|
|
|
|
searching for the source files.
|
|
|
|
|
|
2004-07-17 14:25:40 +02:00
|
|
|
|
2004-07-17 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Edit): Fix markup of EDITOR and improve wording.
|
|
|
|
|
(Search, Expressions, Arrays, Variables, Data, Machine Code)
|
|
|
|
|
(Auto Display): Improve indexing.
|
|
|
|
|
|
2004-07-17 05:25:11 +02:00
|
|
|
|
2004-07-16 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Delete documentation on "-async" and
|
|
|
|
|
"-noasync".
|
|
|
|
|
|
2004-07-09 20:44:51 +02:00
|
|
|
|
2004-07-09 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix @kindex entries so that multiple commands that
|
|
|
|
|
have the same prefix have only their prefix in the index.
|
|
|
|
|
|
2004-07-05 17:31:35 +02:00
|
|
|
|
2004-07-03 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (BSD libkvm Interface): New node (section)
|
|
|
|
|
(Native): Add it to the menu.
|
|
|
|
|
|
2004-07-01 22:25:54 +02:00
|
|
|
|
2004-07-01 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Remove
|
|
|
|
|
PCC_SOL_BROKEN.
|
|
|
|
|
|
2004-06-30 22:01:23 +02:00
|
|
|
|
2004-06-24 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Remove
|
|
|
|
|
SUN_FIXED_LBRAC_BUG.
|
|
|
|
|
|
2004-06-29 01:59:29 +02:00
|
|
|
|
2004-06-26 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Replace xasprintf with xstrprintf.
|
|
|
|
|
|
2004-06-20 19:18:07 +02:00
|
|
|
|
2004-06-20 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
USE_STRUCT_CONVENTION.
|
|
|
|
|
|
2004-06-19 19:33:44 +02:00
|
|
|
|
2004-06-19 Michael Chastain <mec.gnu@mindspring.com>
|
|
|
|
|
|
|
|
|
|
gdb.texinfo (Bug Reporting): Mention session recording,
|
|
|
|
|
with the script command or Emacs.
|
|
|
|
|
|
2004-06-18 23:36:16 +02:00
|
|
|
|
2004-06-18 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
FUNCTION_START_OFFSET.
|
|
|
|
|
|
2004-06-15 00:26:34 +02:00
|
|
|
|
2004-06-14 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
Based on changes from Karl Berry.
|
|
|
|
|
* gdb.texinfo: Do not use @sc in a direntry.
|
|
|
|
|
* stabs.texinfo: Change @dircateogry to "Software development".
|
|
|
|
|
* gdbint.texinfo, gdb.texinfo, annotate.texinfo: Ditto.
|
|
|
|
|
|
2004-06-13 15:42:33 +02:00
|
|
|
|
2004-06-13 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of RETURN_VALUE_ON_STACK.
|
|
|
|
|
|
2004-06-09 15:33:54 +02:00
|
|
|
|
2004-06-09 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Restore "@table @code"
|
|
|
|
|
deleted by previous patch.
|
|
|
|
|
|
2004-06-08 21:58:15 +02:00
|
|
|
|
2004-06-08 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Debugging): Delete documentation on
|
|
|
|
|
ATTACH_DETACH.
|
|
|
|
|
|
2004-06-07 06:31:11 +02:00
|
|
|
|
2004-06-06 Randolph Chung <tausq@debian.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (push_dummy_call): Use @code{struct value}.
|
|
|
|
|
|
2004-06-07 04:12:59 +02:00
|
|
|
|
2004-06-06 Randolph Chung <tausq@debian.org>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (push_dummy_call): Update argument list to match
|
2004-06-07 04:12:59 +02:00
|
|
|
|
the new push_dummy_call method signature. Describe the function
|
|
|
|
|
argument.
|
|
|
|
|
|
2004-05-25 01:53:58 +02:00
|
|
|
|
2004-05-24 Joel Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Starting): Document new start command.
|
|
|
|
|
|
2004-05-21 18:04:03 +02:00
|
|
|
|
2004-05-21 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Document "inferior_created".
|
|
|
|
|
|
2004-05-08 22:16:34 +02:00
|
|
|
|
2004-05-08 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
2004-05-09 00:26:10 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of DO_DEFERRED_STORES.
|
|
|
|
|
|
2004-05-08 23:52:50 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
references to DEPRECATED_FIX_CALL_DUMMY.
|
|
|
|
|
|
2004-05-08 23:27:03 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of DEPRECATED_CALL_DUMMY_WORDS,
|
|
|
|
|
DEPRECATED_SIZEOF_CALL_DUMMY_WORDS, and CALL_DUMMY.
|
|
|
|
|
|
2004-05-08 22:48:52 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of DEPRECATED_PUSH_DUMMY_FRAME.
|
|
|
|
|
|
2004-05-08 22:16:34 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
reference to DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET.
|
|
|
|
|
|
2004-05-08 00:51:55 +02:00
|
|
|
|
2004-05-07 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Add "Debugging" section. Include
|
|
|
|
|
cross reference to "set/show debug observer".
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document "set/show debug
|
|
|
|
|
observer".
|
|
|
|
|
|
2004-05-01 18:52:30 +02:00
|
|
|
|
2004-05-01 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of DEPRECATED_PC_IN_SIGTRAMP.
|
|
|
|
|
|
2004-04-30 16:40:56 +02:00
|
|
|
|
2004-04-30 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
documentation for BELIEVE_PCC_PROMOTION_TYPE, no longer defined.
|
|
|
|
|
|
2004-04-30 09:38:50 +02:00
|
|
|
|
2004-04-30 Orjan Friberg <orjanf@axis.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Correct spelling.
|
|
|
|
|
|
2004-04-26 11:36:56 +02:00
|
|
|
|
2004-04-26 Orjan Friberg <orjanf@axis.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Add target_changed event.
|
|
|
|
|
|
2004-04-15 16:29:21 +02:00
|
|
|
|
2004-04-08 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Rework, provide generic observer
|
|
|
|
|
definitions and then a list of observable events.
|
|
|
|
|
|
2004-04-04 16:03:57 +02:00
|
|
|
|
2004-04-04 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Delete reference to
|
|
|
|
|
NO_SIGINTERRUPT.
|
|
|
|
|
|
2004-04-03 01:20:50 +02:00
|
|
|
|
2004-04-02 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
reference to DEPRECATED_CALL_DUMMY_LENGTH.
|
|
|
|
|
|
2004-03-28 14:22:55 +02:00
|
|
|
|
2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Commands): Document tui reg commands.
|
|
|
|
|
|
2004-03-26 17:15:57 +01:00
|
|
|
|
2004-03-26 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI): Delete reference to --enable-tui. Mention
|
|
|
|
|
"gdbtui".
|
|
|
|
|
(Mode Options): Mention "gdbtui". Use "Text" not "Terminal".
|
|
|
|
|
(Contributors): Mention both Text and Terminal User Interface.
|
|
|
|
|
|
2004-03-23 16:16:47 +01:00
|
|
|
|
2004-03-23 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
references to SIGTRAMP_START and SIGTRAMP_END.
|
|
|
|
|
|
2004-03-23 15:48:00 +01:00
|
|
|
|
2004-03-23 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
references to PC_IN_SIGTRAMP.
|
|
|
|
|
|
2004-03-19 18:43:34 +01:00
|
|
|
|
2004-03-19 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
reference to GDB_TARGET_IS_HPPA.
|
|
|
|
|
|
2004-03-18 21:13:34 +01:00
|
|
|
|
2004-03-18 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Update section on gdbarch_data,
|
|
|
|
|
describe pre_init and post_init.
|
|
|
|
|
|
2004-03-09 17:16:35 +01:00
|
|
|
|
2004-03-09 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Document values for "set debug
|
|
|
|
|
target".
|
|
|
|
|
|
2004-02-29 03:57:24 +01:00
|
|
|
|
2004-02-28 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Mention GDB 6.1 release engineer.
|
|
|
|
|
|
2004-02-27 00:21:23 +01:00
|
|
|
|
2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (breakpoints): Add information about the
|
|
|
|
|
new "set breakpoint pending" and "show breakpoint pending"
|
|
|
|
|
commands.
|
|
|
|
|
|
2004-02-26 21:52:08 +01:00
|
|
|
|
2004-02-26 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Document use of gdbarch_obstack_zalloc
|
|
|
|
|
in Per-architecture module data section.
|
|
|
|
|
|
2004-02-25 20:35:44 +01:00
|
|
|
|
2004-02-25 Roland McGrath <roland@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (General Query Packets): Document qPart:... packets.
|
|
|
|
|
|
2004-02-24 16:41:29 +01:00
|
|
|
|
2004-02-24 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* annotate.texinfo: Wrap fdl.texi include in raise/lower sections.
|
|
|
|
|
* gdb.texinfo, gdbint.texinfo, stabs.texinfo: Ditto.
|
|
|
|
|
* fdl.texi: Import Version 1.2, November 2002.
|
2004-02-25 20:35:44 +01:00
|
|
|
|
|
2004-02-17 15:54:32 +01:00
|
|
|
|
2004-02-17 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Note that "mi1" is deprecated.
|
|
|
|
|
|
2004-02-16 22:49:22 +01:00
|
|
|
|
2004-02-16 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
FRAMELESS_FUNCTION_INVOCATION.
|
|
|
|
|
|
2004-02-16 19:20:05 +01:00
|
|
|
|
2004-02-16 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Mention -Wunused-function.
|
|
|
|
|
|
2004-02-14 18:01:01 +01:00
|
|
|
|
2004-02-14 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of DEPRECATED_CALL_DUMMY_STACK_ADJUST.
|
|
|
|
|
|
2004-02-12 18:46:40 +01:00
|
|
|
|
2004-02-12 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Properly quote the name "C++".
|
|
|
|
|
* gdbint.texinfo: Ditto.
|
|
|
|
|
* stabs.texinfo: Ditto.
|
|
|
|
|
|
2004-02-11 16:11:35 +01:00
|
|
|
|
2004-02-11 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Support Libraries): Add doco about obstacks and
|
|
|
|
|
minimal information about libiberty.
|
|
|
|
|
|
2004-02-06 16:48:25 +01:00
|
|
|
|
2004-02-06 Michael Chastain <mec.gnu@mindspring.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auxiliary Vector): Fix thinko with @value{GDBN}.
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
2004-02-04 Roland McGrath <roland@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Auxiliary Vector): New node (section).
|
|
|
|
|
(Data): Add it to the menu.
|
|
|
|
|
|
2004-02-02 22:07:53 +01:00
|
|
|
|
2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints): Add information about pending
|
|
|
|
|
breakpoint support.
|
|
|
|
|
|
2004-01-27 00:07:01 +01:00
|
|
|
|
2004-01-26 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Overview): Delete references to the cisco protocol
|
|
|
|
|
including the "N" response.
|
|
|
|
|
|
2004-01-26 21:52:13 +01:00
|
|
|
|
2004-01-26 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
EXTRACT_STRUCT_VALUE_ADDRESS to
|
|
|
|
|
DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2004-01-24 12:37:29 +01:00
|
|
|
|
2004-01-24 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (KOD): Document "show os". Add index entries for
|
|
|
|
|
"set/show os" and "info cisco" commands.
|
|
|
|
|
|
2004-01-21 19:44:52 +01:00
|
|
|
|
2004-01-21 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): Prepend $(DESTDIR) to $(infodir).
|
|
|
|
|
|
2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
* MAINTAINERS: Delete mmalloc.
* Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
* NEWS: Mention removal of --with-malloc.
* acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
* config.in: Regenerate.
* configure: Regenerate.
* configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc, USE_MMALLOC, MMCHECK_FORCE.
* gdbinit.in: Remove mmalloc.
* utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
* config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
* config/i386/go32.mh: Likewise.
* config/i386/interix.mh: Likewise.
* config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
* gdbint.texinfo: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE,
MMAP_BASE_ADDRESS, MMAP_INCREMENT.
2004-01-20 10:29:18 +01:00
|
|
|
|
2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE,
|
|
|
|
|
MMAP_BASE_ADDRESS, MMAP_INCREMENT.
|
|
|
|
|
|
2004-01-20 01:51:13 +01:00
|
|
|
|
2004-01-19 Nick Roberts <nick@nick.uklinux.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Stack Manipulation): Describe extension to
|
|
|
|
|
-stack-list-locals.
|
|
|
|
|
(GDB/MI Variable Objects): Describe extension to
|
|
|
|
|
-var-list-children.
|
|
|
|
|
|
2004-01-17 22:56:00 +01:00
|
|
|
|
2004-01-17 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (DECR_PC_AFTER_HW_BREAK): Don't document.
|
|
|
|
|
|
2004-01-17 19:24:15 +01:00
|
|
|
|
2004-01-17 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
documentation on DEPRECATED_NPC_REGNUM.
|
|
|
|
|
|
2004-01-13 22:31:07 +01:00
|
|
|
|
2004-01-13 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update copyright year. Mention that set
|
|
|
|
|
follow-fork-mode is supported on GNU/Linux. Remove documentation of
|
|
|
|
|
"set follow-fork-mode ask".
|
|
|
|
|
|
2004-01-13 18:06:37 +01:00
|
|
|
|
2004-01-13 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Update copyright year.
|
|
|
|
|
(Coding): Add -Wunused-label to list of -Werror warnings.
|
|
|
|
|
|
2004-01-08 23:47:00 +01:00
|
|
|
|
2004-01-08 Jason Molenda <jmolenda@apple.com>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
Eli Zaretskii <eliz@gnu.org>
|
2004-01-08 23:47:00 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update copyright.
|
|
|
|
|
(Objective-C): "methodName" typeo fixed. Add @code/@var markup
|
|
|
|
|
around names, as appropriate. Minor syntax cleanup of
|
|
|
|
|
_NSPrintForDebugger explanation. Two spaces after periods.
|
|
|
|
|
GDBN used instead of lit. "gdb". Index entries added for
|
|
|
|
|
print-object and _NSPrintForDebugger. @noindent added in one spot.
|
|
|
|
|
|
2003-11-11 15:09:37 +01:00
|
|
|
|
2003-11-11 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Add dircategory and direntry commands.
|
|
|
|
|
* annotate.texinfo: Ditto.
|
|
|
|
|
|
2003-11-10 23:47:31 +01:00
|
|
|
|
2003-11-10 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace the
|
|
|
|
|
return_value method's "inval" and "outval" parameters with
|
|
|
|
|
"readbuf" and "writebuf".
|
|
|
|
|
|
2003-10-28 23:04:47 +01:00
|
|
|
|
2003-10-28 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (The F request packet, The F reply packet): Renamed
|
|
|
|
|
from "The `F' request packet" and "The `F' reply packet", to make
|
|
|
|
|
texi2dvi happy.
|
|
|
|
|
(File-I/O remote protocol extension): Update menu entries, too.
|
|
|
|
|
|
2003-10-27 14:59:08 +01:00
|
|
|
|
2003-10-26 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Thread Stops): Document the issue with
|
|
|
|
|
premature return from system calls in multi-threaded programs.
|
|
|
|
|
|
Index: mi/ChangeLog
2003-10-24 Andrew Cagney <cagney@redhat.com>
* tui-out.c: Fix "fortunatly"[sic].
Index: doc/ChangeLog
2003-10-24 Andrew Cagney <cagney@redhat.com>
* annotate.texinfo: Fix "fortunatly"[sic].
2003-10-24 Andrew Cagney <cagney@redhat.com>
* osabi.c (gdbarch_init_osabi): Fix typos, and "fortunatly"[sic].
* PROBLEMS, arch-utils.c, cli-out.c, command.h: Ditto.
* complaints.c, cris-tdep.c, disasm.c, dwarf2-frame.c: Ditto.
* frame.c, frame.h, infcall.c, infcmd.c, infrun.c: Ditto.
* kod.c, mips-tdep.c, regcache.c, regcache.h, remote.c: Ditto.
2003-10-24 19:37:04 +02:00
|
|
|
|
2003-10-24 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* annotate.texinfo: Fix "fortunatly"[sic].
|
|
|
|
|
|
2003-10-23 02:11:59 +02:00
|
|
|
|
2003-10-23 Kei Sakamoto <sakamoto.kei@renesas.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors to GDB): Replace "Renesas"
|
|
|
|
|
with "Hitachi" and "Mitsubishi".
|
|
|
|
|
|
2003-10-20 17:38:02 +02:00
|
|
|
|
2003-10-20 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
gdbarch_return_value. Add cross references from
|
|
|
|
|
USE_STRUCT_CONVENTION, EXTRACT_RETURN_VALUE, and
|
|
|
|
|
STORE_RETURN_VALUE, and from/to EXTRACT_STRUCT_VALUE_ADDRESS.
|
|
|
|
|
|
2003-10-18 14:28:05 +02:00
|
|
|
|
2003-10-18 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
regset_from_core_section.
|
2003-10-16 04:33:46 +02:00
|
|
|
|
|
|
|
|
|
2003-10-16 Kei Sakamot Sakamoto <sakamoto.kei@renesas.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (M32R/D): Mention m32rsdi target.
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
2003-10-15 Kevin Buettner <kevinb@redhat.com>
|
2003-10-15 19:55:02 +02:00
|
|
|
|
|
|
|
|
|
From Anthony Green <green@redhat.com>:
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Breakpoints related warnings): Insert into menu.
|
2003-10-15 19:55:02 +02:00
|
|
|
|
|
2003-10-14 22:23:29 +02:00
|
|
|
|
2003-10-14 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
2010-08-27 14:02:20 +02:00
|
|
|
|
* gdb.texinfo (Breakpoint related warnings): New node.
|
|
|
|
|
* gdbint.texinfo (ADJUST_BREAKPOINT_ADDRESS): Document.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2003-10-13 18:11:57 +02:00
|
|
|
|
2003-10-13 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Protocol): Document v and vCont.
|
|
|
|
|
|
2003-10-10 09:08:53 +02:00
|
|
|
|
2003-10-10 Kei Sakamoto <sakamoto.kei@renesas.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Replace "Hitachi" and "Mitsubishi" with "Renesas".
|
|
|
|
|
* gdbint.texinfo: Ditto.
|
|
|
|
|
|
2003-10-10 04:13:07 +02:00
|
|
|
|
2003-10-09 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
From 2003-09-18 David Anderson <davea@sgi.com>:
|
|
|
|
|
* gdb.texinfo (GDB/MI Symbol Query): Replace "comamnd" with
|
|
|
|
|
"command".
|
|
|
|
|
|
2003-10-03 22:56:43 +02:00
|
|
|
|
2003-10-03 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
IBM6000_TARGET. Mention that it implies an RS/6000 system and not
|
|
|
|
|
just target.
|
|
|
|
|
|
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_RAW_SIZE): Rename
REGISTER_RAW_SIZE.
* gdbarch.h, gdbarch.c: Re-generate.
* aix-thread.c, alpha-tdep.h, arm-tdep.c, core-sol2.c: Update.
* cris-tdep.c, dve3900-rom.c, findvar.c, frame.c: Update.
* hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c: Update.
* hpux-thread.c, i386gnu-nat.c, ia64-aix-nat.c: Update.
* ia64-linux-nat.c, ia64-tdep.c, infcmd.c, infptrace.c: Update.
* infrun.c, irix5-nat.c, lynx-nat.c, mips-linux-tdep.c: Update.
* mips-nat.c, mips-tdep.c, mipsv4-nat.c, mn10300-tdep.c: Update.
* monitor.c, ns32k-tdep.c, ppc-linux-nat.c, regcache.c: Update.
* remote-e7000.c, remote-mips.c, remote-sim.c: Update.
* remote-vxmips.c, remote-vxsparc.c, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, rs6000-tdep.c, s390-tdep.c: Update.
* sh64-tdep.c, sparc-nat.c, sparc-tdep.c, stack.c: Update.
* target.c, tracepoint.c, v850-tdep.c, v850ice.c, valops.c: Update.
* vax-tdep.c, vax-tdep.h, x86-64-tdep.c, xstormy16-tdep.c: Update.
* config/m68k/tm-delta68.h, config/m68k/tm-vx68.h: Update.
* config/sparc/tm-sparc.h, config/sparc/tm-sparclynx.h: Update.
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Rename
REGISTER_RAW_SIZE to DEPRECATED_REGISTER_RAW_SIZE.
* gdb.texinfo (Packets, Stop Reply Packets): Ditto.
* gdbint.texinfo (Target Architecture Definition): Rename
2003-10-02 Andrew Cagney <cagney@redhat.com>
* mi-main.c: Rename REGISTER_RAW_SIZE to
DEPRECATED_REGISTER_RAW_SIZE.
2003-10-02 22:28:31 +02:00
|
|
|
|
2003-10-02 Andrew Cagney <cagney@redhat.com>
|
2003-09-30 15:29:44 +02:00
|
|
|
|
|
2003-09-30 21:12:20 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_RAW_SIZE): Rename
REGISTER_RAW_SIZE.
* gdbarch.h, gdbarch.c: Re-generate.
* aix-thread.c, alpha-tdep.h, arm-tdep.c, core-sol2.c: Update.
* cris-tdep.c, dve3900-rom.c, findvar.c, frame.c: Update.
* hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c: Update.
* hpux-thread.c, i386gnu-nat.c, ia64-aix-nat.c: Update.
* ia64-linux-nat.c, ia64-tdep.c, infcmd.c, infptrace.c: Update.
* infrun.c, irix5-nat.c, lynx-nat.c, mips-linux-tdep.c: Update.
* mips-nat.c, mips-tdep.c, mipsv4-nat.c, mn10300-tdep.c: Update.
* monitor.c, ns32k-tdep.c, ppc-linux-nat.c, regcache.c: Update.
* remote-e7000.c, remote-mips.c, remote-sim.c: Update.
* remote-vxmips.c, remote-vxsparc.c, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, rs6000-tdep.c, s390-tdep.c: Update.
* sh64-tdep.c, sparc-nat.c, sparc-tdep.c, stack.c: Update.
* target.c, tracepoint.c, v850-tdep.c, v850ice.c, valops.c: Update.
* vax-tdep.c, vax-tdep.h, x86-64-tdep.c, xstormy16-tdep.c: Update.
* config/m68k/tm-delta68.h, config/m68k/tm-vx68.h: Update.
* config/sparc/tm-sparc.h, config/sparc/tm-sparclynx.h: Update.
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Rename
REGISTER_RAW_SIZE to DEPRECATED_REGISTER_RAW_SIZE.
* gdb.texinfo (Packets, Stop Reply Packets): Ditto.
* gdbint.texinfo (Target Architecture Definition): Rename
2003-10-02 Andrew Cagney <cagney@redhat.com>
* mi-main.c: Rename REGISTER_RAW_SIZE to
DEPRECATED_REGISTER_RAW_SIZE.
2003-10-02 22:28:31 +02:00
|
|
|
|
REGISTER_RAW_SIZE to DEPRECATED_REGISTER_RAW_SIZE.
|
|
|
|
|
* gdb.texinfo (Packets, Stop Reply Packets): Ditto.
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
|
|
|
|
|
2003-09-30 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
2003-09-30 21:12:20 +02:00
|
|
|
|
REGISTER_VIRTUAL_SIZE to DEPRECATED_REGISTER_VIRTUAL_SIZE.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
(Target Architecture Definition):
|
2003-09-30 21:12:20 +02:00
|
|
|
|
|
2003-09-30 15:29:44 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
REGISTER_VIRTUAL_TYPE to DEPRECATED_REGISTER_VIRTUAL_TYPE.
|
|
|
|
|
|
2003-09-29 22:18:51 +02:00
|
|
|
|
2003-09-29 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
2003-09-29 22:24:04 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
documentation for NEED_TEXT_START_END.
|
|
|
|
|
|
2003-09-29 22:18:51 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
NPC_REGNUM to DEPRECATED_NPC_REGNUM. Add cross reference to
|
|
|
|
|
TARGET_WRITE_PC.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2003-09-23 01:20:54 +02:00
|
|
|
|
2003-09-22 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite Organization): Change gdb.c++ to gdb.cp.
|
|
|
|
|
|
2003-09-22 02:49:51 +02:00
|
|
|
|
2003-09-21 Anthony Green <green@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Fix typos.
|
|
|
|
|
|
2003-09-21 21:23:15 +02:00
|
|
|
|
2003-09-21 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
stabs_argument_has_addr.
|
|
|
|
|
|
2003-09-19 00:39:21 +02:00
|
|
|
|
2003-09-18 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
documentation on REGISTER_NAMES.
|
|
|
|
|
|
2003-09-13 16:12:41 +02:00
|
|
|
|
2003-09-13 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
REG_STRUCT_HAS_ADDR with DEPRECATED_REG_STRUCT_HAS_ADDR.
|
|
|
|
|
|
2003-09-11 17:17:18 +02:00
|
|
|
|
2003-09-11 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
STACK_ALIGN with DEPRECATED_STACK_ALIGN.
|
|
|
|
|
|
2003-08-18 22:04:56 +02:00
|
|
|
|
2003-08-18 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
"frame_red_zone_size".
|
|
|
|
|
|
2003-08-09 17:10:09 +02:00
|
|
|
|
2003-08-09 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtrace): Replace "set/show backtrace-below-main"
|
|
|
|
|
with "set/show backtrace past-main" and "set/show backtrace
|
|
|
|
|
limit".
|
|
|
|
|
|
2003-08-08 19:30:37 +02:00
|
|
|
|
2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): Support DESTDIR.
|
|
|
|
|
(install-html): Likewise.
|
|
|
|
|
|
2003-08-08 03:58:00 +02:00
|
|
|
|
2003-08-07 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
Patch from Nick Roberts.
|
|
|
|
|
* gdb.texinfo (Using GDB under GNU Emacs): Fix/update key
|
|
|
|
|
bindings. Remove description of send-gdb-command.
|
|
|
|
|
|
Index: ChangeLog
2003-08-07 Andrew Cagney <cagney@redhat.com>
* interps.h (INTERP_MI2, INTERP_MI3): Define.
Index: doc/ChangeLog
2003-08-07 Andrew Cagney <cagney@redhat.com>
* gdb.texinfo (Mode Options): Mention that "mi2" was included in
GDB 6.0.
Index: mi/ChangeLog
2003-08-07 Andrew Cagney <cagney@redhat.com>
* mi-interp.c (_initialize_mi_interp): Register "mi2" and "mi3".
Make "mi" select "mi2".
Index: testsuite/gdb.mi/ChangeLog
2003-08-07 Andrew Cagney <cagney@redhat.com>
* mi2-basics.exp: Copy base MI .exp file, set MIFLAGS to -i=mi2.
* mi2-break.exp, mi2-cli.exp, mi2-console.exp: Ditto.
* mi2-disassemble.exp, mi2-eval.exp, mi2-file.exp: Ditto.
* mi2-hack-cli.exp, mi2-pthreads.exp, mi2-read-memory.exp: Ditto.
* mi2-regs.exp, mi2-return.exp, mi2-simplerun.exp: Ditto.
* mi2-stack.exp, mi2-stepi.exp, mi2-syn-frame.exp: Ditto.
* mi2-until.exp, mi2-var-block.exp, mi2-var-child.exp: Ditto.
* mi2-var-cmd.exp, mi2-var-display.exp, mi2-watch.exp: Ditto.
2003-08-07 19:47:42 +02:00
|
|
|
|
2003-08-07 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Mention that "mi2" was included in
|
|
|
|
|
GDB 6.0.
|
|
|
|
|
|
2003-08-06 17:13:10 +02:00
|
|
|
|
2003-08-06 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Mention that level three is the
|
|
|
|
|
highest available and that level 2 is deprecated.
|
|
|
|
|
(Annotations Overview): Mention annotation levels. Cross reference
|
|
|
|
|
to "Limitations of the Annotation Interface" in annotate.texi.
|
|
|
|
|
(TODO, Value Annotations, Frame Annotations): Delete section.
|
|
|
|
|
(Displays, Breakpoint Info): Delete.
|
|
|
|
|
|
2003-08-04 22:43:57 +02:00
|
|
|
|
2003-08-04 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: Delete @bye.
|
|
|
|
|
* Makefile.in (STABS_DOC_SOURCE_INCLUDES): Add "fdl.texi"
|
|
|
|
|
(stabs.info): Add $(srcdir) to include search path.
|
|
|
|
|
(html): Depend on "annotate_toc.html", and not "annotate.html".
|
|
|
|
|
* stabs.texinfo: Ditto. Include "fdl.texi".
|
|
|
|
|
* gdbint.texinfo: Update copyright statement's list of invariant
|
|
|
|
|
sections.
|
|
|
|
|
|
2003-07-30 06:14:38 +02:00
|
|
|
|
2003-07-28 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (INFO_DEPS): Add annotate.info.
|
|
|
|
|
(dvi, ps, html, pdf): Add annotate.
|
|
|
|
|
(ANNOTATE_DOC_SOURCE_INCLUDES): New macro.
|
|
|
|
|
(ANNOTATE_DOC_BUILD_INCLUDES): New macro.
|
|
|
|
|
(ANNOTATE_DOC_FILES): New macro.
|
|
|
|
|
(ANNOTATE_TEX_TMPS): New macro.
|
|
|
|
|
(annotate.info, annotate_toc.html): Specify dependencies.
|
|
|
|
|
(annotate.ps, annotate.pdf, annotate.dvi): Ditto.
|
|
|
|
|
* annotate.texinfo: Rename annotate.texi. Get building. Add
|
|
|
|
|
"Migrating to GDB/MI" and "Limitations of the Annotation
|
|
|
|
|
Interface" chapters. Mention why it is not part of the user
|
|
|
|
|
guide. Update copyright notice. Include "fdl.texi".
|
|
|
|
|
|
2003-07-26 09:38:54 +02:00
|
|
|
|
2003-07-26 Stephane Carrez <stcarrez@nerim.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Keys): Document C-x o key to switch active window.
|
|
|
|
|
|
2003-07-24 20:56:37 +02:00
|
|
|
|
2003-07-24 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (libgdb components): Correct a GDB to GDBN.
|
|
|
|
|
|
2003-07-24 20:55:04 +02:00
|
|
|
|
2003-07-24 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Server): Mention pidof.
|
|
|
|
|
|
2003-07-22 20:18:10 +02:00
|
|
|
|
2003-07-22 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Add -Wformat-nonliteral to -Werror
|
|
|
|
|
list.
|
|
|
|
|
|
2003-06-28 18:19:07 +02:00
|
|
|
|
2003-06-28 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Logging output): New chapter.
|
|
|
|
|
|
2003-06-24 23:59:37 +02:00
|
|
|
|
2003-06-24 Joel Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Unsupported languages): New section.
|
|
|
|
|
(Languages): Add link to new section.
|
|
|
|
|
|
2003-06-23 05:28:14 +02:00
|
|
|
|
2003-06-22 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Mention 6.0 release engineer.
|
|
|
|
|
|
2003-06-22 06:28:04 +02:00
|
|
|
|
2003-06-22 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Clarify use of gdb_XXX.h headers.
|
|
|
|
|
|
2003-06-22 06:27:24 +02:00
|
|
|
|
2003-06-22 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (SFILES_INCLUDED): Add agentexpr.texi.
|
|
|
|
|
* agentexpr.texi: Retitle section, and change it to an appendix.
|
|
|
|
|
Comment out texinfo initialization. Factor a @var{} into two
|
|
|
|
|
pieces to prevent makeinfo warnings.
|
|
|
|
|
* gdb.texinfo: Add Agent Expressions appendix.
|
|
|
|
|
|
2003-06-19 17:04:05 +02:00
|
|
|
|
2003-06-19 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native Conditionals): Remove PREPARE_TO_PROCEED.
|
|
|
|
|
|
2003-06-19 03:31:47 +02:00
|
|
|
|
2003-06-18 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Remote Debugging): New section "Connecting to a
|
2003-06-19 03:31:47 +02:00
|
|
|
|
remote target". Document the "detach" and "disconnect" commands.
|
|
|
|
|
(Server, Netware, Debug Session): Reference "Connecting to a
|
|
|
|
|
remote target".
|
|
|
|
|
(GDB/MI Target Manipulation): Document "-target-disconnect".
|
|
|
|
|
|
2003-06-13 20:30:38 +02:00
|
|
|
|
2003-06-13 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Deprecate
|
|
|
|
|
REMOTE_BREAKPOINT, LITTLE_REMOTE_BREAKPOINT, and
|
|
|
|
|
BIG_REMOTE_BREAKPOINT. Cross reference BREAKPOINT_FROM_PC.
|
|
|
|
|
|
2003-06-09 23:12:19 +02:00
|
|
|
|
2003-06-09 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): Remove extra semicolon.
|
|
|
|
|
|
2003-06-09 04:10:35 +02:00
|
|
|
|
2003-06-08 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
documentation on FRAME_ARGS_ADDRESS_CORRECT.
|
|
|
|
|
|
2003-06-09 03:02:07 +02:00
|
|
|
|
2003-06-08 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
"unwind_sp". Cross reference "unwind_sp" and TARGET_READ_SP.
|
|
|
|
|
|
2003-06-08 04:09:12 +02:00
|
|
|
|
2003-06-07 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add Objective-C documentation.
|
|
|
|
|
|
2003-06-02 01:05:43 +02:00
|
|
|
|
2003-06-01 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Add "func_addr"
|
|
|
|
|
parameter to "push_dummy_call". Rename "dummy_addr" to "bp_addr".
|
|
|
|
|
|
2003-05-21 21:52:39 +02:00
|
|
|
|
2003-05-21 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
references to "extract_address" and "store_address".
|
|
|
|
|
|
2003-05-17 08:00:01 +02:00
|
|
|
|
2003-05-16 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
REGISTER_BYTES with DEPRECATED_REGISTER_BYTES. Fix typo,
|
|
|
|
|
DEPRECATED_REGISTER_SIZE instead of REGISTER_BYTE.
|
|
|
|
|
|
2003-05-14 22:29:15 +02:00
|
|
|
|
2003-05-14 Theodore A. Roth <troth@openavr.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Breakpoint Handling): Correct a double negative.
|
|
|
|
|
|
2003-05-10 17:32:39 +02:00
|
|
|
|
2003-05-10 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (gdb-cfg.texi): Replace $$LN_S with $(LN_S).
|
|
|
|
|
(gdb.dvi): Likewise.
|
|
|
|
|
(gdb.pdf): Likewise.
|
|
|
|
|
(links2roff): Likewise.
|
|
|
|
|
|
2003-05-08 23:33:49 +02:00
|
|
|
|
2003-05-08 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Dump/Restore Files): Update documentation for
|
|
|
|
|
'dump', 'append', and 'restore': note that format argument is
|
|
|
|
|
optional; simplify presentation of the command variants; and be
|
|
|
|
|
more precise about the formats.
|
|
|
|
|
|
2003-05-07 23:42:48 +02:00
|
|
|
|
2003-05-07 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Update documentation: 'maint list
|
|
|
|
|
symtabs' and 'maint list psymtabs' have been renamed 'maint info
|
|
|
|
|
symtabs' and 'maint info psymtabs'.
|
|
|
|
|
|
2003-05-03 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_SIZE): Rename REGISTER_SIZE.
(DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Rename
SIZEOF_CALL_DUMMY_WORDS.
(DEPRECATED_CALL_DUMMY_WORDS): Rename CALL_DUMMY_WORDS.
(DEPRECATED_FIX_CALL_DUMMY): Rename FIX_CALL_DUMMY.
(DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET): Rename
CALL_DUMMY_BREAKPOINT_OFFSET.
(DEPRECATED_CALL_DUMMY_START_OFFSET): Rename
CALL_DUMMY_START_OFFSET.
(DEPRECATED_CALL_DUMMY_LENGTH): Rename CALL_DUMMY_LENGTH.
* gdbarch.h, gdbarch.c: Re-generate.
* alpha-tdep.c, alphafbsd-tdep.c, arm-linux-tdep.c: Update.
* arm-tdep.c, avr-tdep.c, breakpoint.c, cris-tdep.c: Update.
* dummy-frame.c, dummy-frame.h, frv-tdep.c, gdbarch.c: Update.
* gdbarch.h, gdbarch.sh, h8300-tdep.c, hppa-tdep.c: Update.
* i386-tdep.c, ia64-tdep.c, infcall.c, inferior.h: Update.
* m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Update.
* mips-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Update.
* rs6000-tdep.c, s390-tdep.c, sh-tdep.c, sol-thread.c: Update.
* sparc-tdep.c, target.c, v850-tdep.c, valops.c: Update.
* vax-tdep.c, x86-64-tdep.c, xstormy16-tdep.c: Update.
* config/ia64/tm-ia64.h, config/m68k/tm-vx68.h: Update.
* config/mips/tm-mips.h, config/pa/nm-hppah.h: Update.
* config/pa/tm-hppa.h, config/pa/tm-hppa64.h: Update.
* config/s390/tm-s390.h, config/sparc/tm-sp64.h: Update.
* config/sparc/tm-sparc.h: Update.
Index: doc/ChangeLog
2003-05-03 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Make
CALL_DUMMY_WORDS, SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_LENGTH,
FIX_CALL_DUMMY, CALL_DUMMY_BREAKPOINT_OFFSET and
CALL_DUMMY_BREAKPOINT_OFFSET deprecated.
Index: mi/ChangeLog
2003-05-03 Andrew Cagney <cagney@redhat.com>
* mi-main.c (mi_cmd_data_write_register_values): Replace
REGISTER_SIZE with DEPRECATED_REGISTER_SIZE.
Index: testsuite/ChangeLog
2003-05-03 Andrew Cagney <cagney@redhat.com>
* gdb.base/watchpoint.exp: Rename CALL_DUMMY_BREAKPOINT_OFFSET to
DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET in comments.
2003-05-05 19:56:57 +02:00
|
|
|
|
2003-05-05 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Make
|
|
|
|
|
CALL_DUMMY_WORDS, SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_LENGTH,
|
|
|
|
|
FIX_CALL_DUMMY, CALL_DUMMY_BREAKPOINT_OFFSET and
|
|
|
|
|
CALL_DUMMY_BREAKPOINT_OFFSET deprecated.
|
|
|
|
|
|
2003-05-05 20:33:11 +02:00
|
|
|
|
2003-05-04 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document "maint print
|
|
|
|
|
dummy-frames".
|
|
|
|
|
|
2003-05-04 18:44:25 +02:00
|
|
|
|
2003-05-04 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Symbol Query): Use @{ and @}.
|
|
|
|
|
|
2003-05-04 06:02:07 +02:00
|
|
|
|
2003-05-03 J. Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
|
|
|
|
Thierry Schneider <tpschneider1@yahoo.com>
|
|
|
|
|
* gdb.texinfo (section GDB/MI Symbol Query): Add documentation
|
|
|
|
|
for new MI command.
|
|
|
|
|
|
2003-05-03 21:39:23 +02:00
|
|
|
|
2003-05-03 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
push_dummy_code. Add cross references.
|
|
|
|
|
|
gdb:
2003-05-02 Elena Zannoni <ezannoni@redhat.com>
* charset.c (GDB_DEFAULT_TARGET_CHARSET,
GDB_DEFAULT_HOST_CHARSET): Move to earlier in the file.
(host_charset_name, target_charset_name): New vars for use by
set/show commands.
(host_charset_enum, target_charset_enum): New enums for set/show
commands.
(set_charset_sfunc, set_host_charset_sfunc,
set_target_charset_sfunc): New functions.
(set_host_charset, set_target_charset): Make static.
(list_charsets, set_host_charset_command,
set_target_charset_command): Delete functions.
(show_charset_command): Rewrite as....
(show_charset): Hook this up with the set/show command mechanism.
(_initialize_charset): Change names of charsets to match the
set/show enums. Use host_charset_name and target_charset_name.
Use set/show mechanism for charset, host-charset, target-charset
commands. Do not make 'show host-charset' and 'show
target-charset' be aliases of 'show charset'.
* charset.h (set_host_charset, set_target_charset): Don't export,
they are not used outside the file.
gdb/testsuite:
2003-05-01 Elena Zannoni <ezannoni@redhat.com>
* gdb.base/charset.exp: Update based on new behavior of set/show
charset commands.
gdb/doc:
2003-05-02 Elena Zannoni <ezannoni@redhat.com>
* gdb.texinfo (Character Sets): Update to reflect new behavior of
set/show charsets commands.
2003-05-02 16:23:39 +02:00
|
|
|
|
2003-05-02 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Character Sets): Update to reflect new behavior of
|
|
|
|
|
set/show charsets commands.
|
|
|
|
|
|
2003-04-28 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_TARGET_READ_FP): Replace TARGET_READ_FP.
(DEPRECATED_FP_REGNUM): Replace FP_REGNUM.
* gdbarch.h, gdbarch.c: Re-generate.
* infcall.c (call_function_by_hand): Use DEPRECATED_FP_REGNUM,
DEPRECATED_TARGET_READ_FP, or "sp" to create the dummy frame ID.
* inferior.h (deprecated_read_fp): Rename read_fp.
(generic_target_read_fp): Delete declaration.
* regcache.c (generic_target_read_fp): Delete function.
(deprecated_read_fp): Replace read_fp, use
DEPRECATED_TARGET_READ_FP or DEPRECATED_FP_REGNUM.
* d10v-tdep.c (d10v_read_fp): Delete function.
(d10v_gdbarch_init): Do not set deprecated_read_fp.
* sparc-tdep.c (sparc_gdbarch_init): Do not set
deprecated_target_read_fp to generic_target_read_fp.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
* frv-tdep.c (frv_gdbarch_init): Ditto.
* xstormy16-tdep.c (xstormy16_gdbarch_init): Set
deprecated_fp_regnum.
* x86-64-tdep.c (x86_64_init_abi): Ditto.
* vax-tdep.c (vax_gdbarch_init): Ditto.
* v850-tdep.c (v850_gdbarch_init): Ditto.
* sparc-tdep.c (sparc_gdbarch_init): Ditto.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* s390-tdep.c (s390_gdbarch_init): Ditto.
* rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
* mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
* mcore-tdep.c (mcore_gdbarch_init): Ditto.
* m68k-tdep.c (m68k_gdbarch_init): Ditto.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
* ia64-tdep.c (ia64_gdbarch_init): Ditto.
* i386-tdep.c (i386_gdbarch_init): Ditto.
* hppa-tdep.c (hppa_gdbarch_init): Ditto.
* h8300-tdep.c (h8300_gdbarch_init): Ditto.
* frv-tdep.c (frv_gdbarch_init): Ditto.
* cris-tdep.c (cris_gdbarch_init): Ditto.
* avr-tdep.c (avr_gdbarch_init): Ditto.
* arm-tdep.c (arm_gdbarch_init): Ditto.
* alpha-tdep.c (alpha_gdbarch_init): Ditto.
* x86-64-tdep.c (x86_64_init_abi): Set deprecated_target_read_fp.
* v850-tdep.c (v850_gdbarch_init): Ditto.
* sparc-tdep.c (sparc_gdbarch_init): Ditto.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* s390-tdep.c (s390_gdbarch_init): Ditto.
* rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
* mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
* mips-tdep.c (mips_gdbarch_init): Ditto.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
* ia64-tdep.c (ia64_gdbarch_init): Ditto.
* hppa-tdep.c (hppa_gdbarch_init): Ditto.
* frv-tdep.c (frv_gdbarch_init): Ditto.
* avr-tdep.c (avr_gdbarch_init): Ditto.
* arm-tdep.c (arm_gdbarch_init): Ditto.
* vax-tdep.c (vax_frame_init_saved_regs): Replace FP_REGNUM with
DEPRECATED_FP_REGNUM.
(vax_push_dummy_frame, vax_pop_frame): Ditto.
* std-regs.c (value_of_builtin_frame_fp_reg): Ditto.
* sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
(sparc_push_dummy_frame, sparc64_read_fp): Ditto.
(sparc32_register_virtual_type): Ditto.
* sh-tdep.c (sh64_frame_chain): Ditto.
(sh64_get_saved_register, sh64_pop_frame): Ditto.
(sh_nofp_frame_init_saved_regs): Ditto.
(sh64_nofp_frame_init_saved_regs): Ditto.
(sh_fp_frame_init_saved_regs): Ditto.
* remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
* remote-e7000.c (fetch_regs_from_dump): Ditto.
* procfs.c (procfs_fetch_registers): Ditto.
(procfs_store_registers): Ditto.
* ns32knbsd-nat.c (fetch_inferior_registers): Ditto.
(store_inferior_registers, fetch_core_registers): Ditto.
(fetch_kcore_registers, clear_regs): Ditto.
* ns32k-tdep.c (ns32k_frame_init_saved_regs): Ditto.
(ns32k_push_dummy_frame, ns32k_pop_frame): Ditto.
* nlm/i386.h (DEPRECATED_FP_REGNUM): Ditto.
* nlm/i386.c (do_status): Ditto.
* mipsv4-nat.c (supply_gregset): Ditto.
* mips-tdep.c: Ditto for comments.
* mips-nat.c (fetch_inferior_registers): Ditto.
(store_inferior_registers, fetch_core_registers): Ditto.
* m68k-tdep.c (m68k_push_dummy_frame): Ditto.
(m68k_pop_frame, m68k_frame_init_saved_regs): Ditto.
* i386-tdep.c (i386_frame_init_saved_regs): Ditto.
(i386_do_pop_frame, i386_register_type): Ditto.
* hppa-tdep.c (hppa_frame_chain): Ditto.
(hppa_push_dummy_frame, find_dummy_frame_regs): Ditto.
(hppa_pop_frame, hppa_read_fp): Ditto.
(skip_prologue_hard_way, hppa_frame_find_saved_regs): Ditto.
* cris-tdep.c (cris_examine, cris_pop_frame): Ditto.
* config/vax/nm-vax.h (REGISTER_U_ADDR): Ditto.
* config/sparc/tm-sparc.h (DEPRECATED_FP_REGNUM): Ditto.
* config/sparc/tm-sp64.h (DEPRECATED_FP_REGNUM): Ditto.
* config/s390/tm-s390.h (DEPRECATED_FP_REGNUM): Ditto.
* config/pa/tm-hppa64.h (DEPRECATED_FP_REGNUM): Ditto.
* config/ia64/tm-ia64.h (DEPRECATED_FP_REGNUM): Ditto.
* blockframe.c: Ditto for comments.
* arch-utils.h: Ditto for comments.
* arch-utils.c (legacy_virtual_frame_pointer): Ditto.
* alphanbsd-tdep.c (fetch_core_registers): Ditto.
* alphabsd-nat.c (fetch_inferior_registers): Ditto.
* alpha-tdep.h: Ditto for comments.
* alpha-tdep.c (alpha_cannot_fetch_register): Ditto.
(alpha_cannot_store_register): Ditto.
(alpha_push_dummy_frame): Ditto.
* alpha-nat.c (supply_gregset): Ditto.
* config/sparc/tm-sp64.h (DEPRECATED_TARGET_READ_FP): Update.
* config/pa/tm-hppa64.h (DEPRECATED_TARGET_READ_FP): Update.
* config/sparc/tm-sparc.h: Update comment.
* hppa-tdep.c (hppa_init_extra_frame_info): Use
deprecated_read_fp instead of TARGET_READ_FP.
(hppa_init_extra_frame_info, hppa_frame_chain): Ditto.
(hppa_push_dummy_frame, hppa_read_fp): Ditto.
* sparc-tdep.c (sparc_init_extra_frame_info): Use
deprecated_read_fp instead of read_fp.
* s390-tdep.c (s390_push_arguments): Ditto.
* ia64-tdep.c (ia64_gdbarch_init): Ditto.
* frame.h: Ditto in comments.
* frame.c (legacy_get_prev_frame): Ditto.
* dummy-frame.c (dummy_frame_this_id): Ditto.
* arm-tdep.c (arm_init_extra_frame_info): Ditto.
2003-04-28 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Replace
read_fp, TARGET_READ_FP and FP_REGNUM, with deprecated_read_fp,
DEPRECATED_TARGET_READ_FP and DEPRECATED_REGNUM.
2003-04-29 03:49:49 +02:00
|
|
|
|
2003-04-28 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
read_fp, TARGET_READ_FP and FP_REGNUM, with deprecated_read_fp,
|
|
|
|
|
DEPRECATED_TARGET_READ_FP and DEPRECATED_REGNUM.
|
|
|
|
|
|
2003-04-28 18:17:29 +02:00
|
|
|
|
2003-04-28 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
"tm_print_insn" to "deprecated_tm_print_insn".
|
|
|
|
|
|
2003-04-14 20:42:28 +02:00
|
|
|
|
2003-04-09 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Document 'maint list symtabs' and 'maint
|
|
|
|
|
list psymtabs'.
|
|
|
|
|
|
2003-04-08 23:25:33 +02:00
|
|
|
|
2003-04-08 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
references to EXTRA_FRAME_INFO.
|
|
|
|
|
|
2003-04-08 23:20:06 +02:00
|
|
|
|
2003-04-08 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
PRINT_TYPELESS_INTEGER.
|
|
|
|
|
|
2003-04-03 17:14:48 +02:00
|
|
|
|
2003-04-02 J. Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
|
|
|
|
* observer.texi (GDB Observers): Adjust the documentation for the
|
|
|
|
|
normal_stop notification to better describe reality. Fix a couple
|
|
|
|
|
of minor typos.
|
|
|
|
|
|
2003-04-03 01:48:21 +02:00
|
|
|
|
2003-04-02 Bob Rossi <bob_rossi@cox.net>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdb.texinfo (GDB/MI Program Control): Add
|
2003-04-03 01:48:21 +02:00
|
|
|
|
'-file-list-exec-source-file'
|
|
|
|
|
|
2003-03-31 21:01:21 +02:00
|
|
|
|
2003-03-31 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
references to CALL_DUMMY_P.
|
|
|
|
|
|
2003-03-30 16:59:02 +02:00
|
|
|
|
2003-03-30 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Remove
|
|
|
|
|
reference to TARGET_WRITE_SP.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2003-03-27 16:29:45 +01:00
|
|
|
|
2003-03-27 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Remove
|
|
|
|
|
references to write_sp.
|
2003-03-30 16:59:02 +02:00
|
|
|
|
|
2003-03-27 16:17:35 +01:00
|
|
|
|
2003-03-27 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (GDB/MI Variable Objects): Replace @include with
|
|
|
|
|
chapter body. Use @smallexample instead of @example.
|
|
|
|
|
(Annotations): Ditto.
|
|
|
|
|
* Makefile.in (GDB_DOC_SOURCE_INCLUDES): Remove gdbmi.texinfo and
|
|
|
|
|
annotate.texi.
|
|
|
|
|
|
2003-03-26 23:39:53 +01:00
|
|
|
|
2003-03-26 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
PUSH_ARGUMENTS with push_dummy_call, add gdbarch, regcache and
|
|
|
|
|
dummy_addr parameters.
|
|
|
|
|
|
2003-03-25 19:54:16 +01:00
|
|
|
|
2003-03-25 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
reference to CALL_DUMMY_STACK_ADJUST_P. Rename
|
|
|
|
|
CALL_DUMMY_STACK_ADJUST to DEPRECATED_CALL_DUMMY_STACK_ADJUST.
|
|
|
|
|
Add reference to PUSH_ARGUMENTS.
|
|
|
|
|
|
2003-03-24 04:54:51 +01:00
|
|
|
|
2003-03-23 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms, Target Architecture Definition):
|
|
|
|
|
Deprecate FRAME_CHAIN and FRAME_CHAIN_VALID.
|
|
|
|
|
|
2003-03-18 18:44:23 +01:00
|
|
|
|
2003-03-18 J. Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): Add new section describing the
|
|
|
|
|
Observer paradigm.
|
|
|
|
|
(Top): Add menu entry to new observer appendix.
|
|
|
|
|
* observer.texi: New file.
|
|
|
|
|
* Makefile.in (GDBINT_DOC_SOURCE_INCLUDES): Add dependency on
|
|
|
|
|
new observer.texi file.
|
|
|
|
|
|
2003-03-17 15:46:35 +01:00
|
|
|
|
2003-03-17 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (DATE): Delete. Remove date from titles. Mention
|
|
|
|
|
that GNU Press update the manual version number.
|
|
|
|
|
|
2003-03-14 18:07:01 +01:00
|
|
|
|
2003-03-12 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
references to get_saved_register. Rename GET_SAVED_REGISTER to
|
|
|
|
|
DEPRECATED_GET_SAVED_REGISTER.
|
|
|
|
|
|
2003-03-13 22:45:43 +01:00
|
|
|
|
2003-03-13 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
POP_FRAME with DEPRECATED_POP_FRAME. Update description.
|
|
|
|
|
|
2003-03-12 17:50:47 +01:00
|
|
|
|
2003-03-12 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
FRAME_SAVED_PC to DEPRECATED_FRAME_SAVED_PC.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2003-03-10 18:11:39 +01:00
|
|
|
|
2003-03-10 Corinna Vinschen <vinschen@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add File-I/O documentation.
|
|
|
|
|
|
2003-03-10 16:28:41 +01:00
|
|
|
|
2003-03-10 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Cross reference
|
|
|
|
|
FRAME_SAVED_PC to unwind_pc. Document unwind_pc.
|
|
|
|
|
|
2003-03-08 00:43:26 +01:00
|
|
|
|
2003-03-07 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debugging Output): Mention the "set/show debug
|
|
|
|
|
frame" command.
|
|
|
|
|
|
2003-03-06 00:14:18 +01:00
|
|
|
|
2003-03-05 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
unwind_dummy_id. Cross reference unwind_dummy_id and
|
|
|
|
|
SAVE_DUMMY_FRAME_TOS.
|
|
|
|
|
|
2003-03-05 19:01:35 +01:00
|
|
|
|
2003-03-05 James Ingham <jingham@apple.com>
|
|
|
|
|
Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Configuring the current ABI): Document "set cp-abi"
|
|
|
|
|
and "show cp-abi".
|
|
|
|
|
|
2003-03-04 00:28:55 +01:00
|
|
|
|
2003-03-03 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
register_type.
|
|
|
|
|
|
2003-03-04 00:16:27 +01:00
|
|
|
|
2003-03-03 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Structures): Use @samp and separate @var's
|
|
|
|
|
instead of a single @var containing a comma separated list.
|
|
|
|
|
(Unions): Ditto.
|
|
|
|
|
|
2003-03-03 04:59:16 +01:00
|
|
|
|
2003-03-02 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (distclean): Remove config.log.
|
|
|
|
|
|
2003-03-02 05:02:25 +01:00
|
|
|
|
2003-03-01 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Rename
|
|
|
|
|
FRAME_INIT_SAVED_REGS to DEPRECATED_FRAME_INIT_SAVED_REGS.
|
|
|
|
|
|
|
|
|
|
2003-03-01 Andrew Cagney <cagney@redhat.com>
|
2003-03-02 01:11:43 +01:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Rename INIT_EXTRA_FRAME_INFO to
|
|
|
|
|
DEPRECATED_INIT_EXTRA_FRAME_INFO.
|
|
|
|
|
|
2003-02-23 23:19:48 +01:00
|
|
|
|
2003-02-23 Raoul Gough <RaoulGough@yahoo.co.uk>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Cygwin Native): Links to Non-debug DLL symbols.
|
|
|
|
|
(Non-debug DLL symbols): New node, describing the minimal symbols
|
|
|
|
|
loaded from DLLs without real debugging symbols.
|
|
|
|
|
|
2003-02-20 14:43:14 +01:00
|
|
|
|
2003-02-20 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Add cross reference to "set remote
|
|
|
|
|
hardware-breakpoint-limit".
|
|
|
|
|
(Set Watchpoints): Add cross reference to "set remote
|
|
|
|
|
hardware-watchpoint-limit".
|
|
|
|
|
(Remote configuration options): New section.
|
|
|
|
|
|
2003-02-04 23:52:51 +01:00
|
|
|
|
2003-02-04 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
2003-02-05 00:59:26 +01:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
descrption of IS_TRAPPED_INTERNALVAR.
|
|
|
|
|
|
2003-02-04 23:52:51 +01:00
|
|
|
|
From Keith Seitz <keiths@redhat.com>:
|
|
|
|
|
* gdb.texinfo (Interpreters): New chapter. Refer the command-line
|
|
|
|
|
option "-i"/"--interpreter" to this chapter. Include index
|
|
|
|
|
entries.
|
|
|
|
|
|
2003-02-04 22:14:46 +01:00
|
|
|
|
2003-02-04 David Carlton <carlton@math.stanford.edu>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (C@t{++}): Recommend DWARF 2, then stabs+.
|
|
|
|
|
(Variables): Recommend stabs+ and DWARF 2.
|
|
|
|
|
(C plus plus expressions): Correct info about
|
|
|
|
|
compiler versions, debug formats.
|
|
|
|
|
(Contributors): Change 'DWARF2' to 'DWARF 2'.
|
|
|
|
|
PR symtab/874.
|
|
|
|
|
|
2003-02-01 21:51:06 +01:00
|
|
|
|
2003-02-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of ADDITIONAL_OPTIONS, ADDITIONAL_OPTION_CASES,
|
|
|
|
|
ADDITIONAL_OPTION_HANDLER, and ADDITIONAL_OPTION_HELP, and
|
|
|
|
|
BEFORE_MAIN_LOOP_HOOK, and DBX_PARM_SYMBOL_CLASS along with
|
|
|
|
|
references to nindy and i960.
|
|
|
|
|
* gdb.texinfo (i960): Delete all references to i960 and nindy.
|
|
|
|
|
|
2003-02-01 18:28:41 +01:00
|
|
|
|
2003-02-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
FLOAT_INFO.
|
|
|
|
|
|
2003-01-30 16:44:43 +01:00
|
|
|
|
2003-01-30 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Member Type Descriptor): Clarify description of
|
|
|
|
|
`@'. Suggested by Ben Hutchings.
|
|
|
|
|
|
2003-01-31 17:32:45 +01:00
|
|
|
|
2003-01-29 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (M68K): Delete reference to es1800.
|
|
|
|
|
|
2003-01-29 17:10:53 +01:00
|
|
|
|
2003-01-29 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document `maint print
|
|
|
|
|
reggroups' and `maint print register-groups'.
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
register_reggroup_p.
|
|
|
|
|
|
gdb/ChangeLog:
2003-01-23 Alexander Larsson <alexl@redhat.com>
Jim Blandy <jimb@redhat.com>
Add support for executables whose debug info has been separated
out into a separate file, leaving only a link behind.
* objfiles.h (struct objfile): New fields: separate_debug_objfile
and separate_debug_objfile_backlink.
(put_objfile_before): New declaration.
* symfile.c: #include "filenames.h".
(symbol_file_add_with_addrs_or_offsets): If this objfile has its
debug info in a separate file, read that, too. Save the addrs
argument, so we can use it again to read the separated debug info;
syms_from_objfile modifies the table we pass it.
(reread_symbols): After re-reading an objfile, call
reread_separate_symbols to refresh its separate debug info
objfile, if it has one.
(reread_separate_symbols, find_separate_debug_file,
get_debug_link_info, separate_debug_file_exists): New functions.
(debug_file_directory): New global var.
(_initialize_symfile): Initialize debug_file_directory, and
provide the new `set debug-file-directory' command to let the user
change it.
* objfiles.c (free_objfile): If this objfile has its debug info in
a separate objfile, free that one too. If this is itself a
separate debug info objfile, clear our parent's backlink.
(put_objfile_before): New function.
* utils.c (gnu_debuglink_crc32): New function.
* defs.h (gnu_debuglink_crc32): New declaration.
* Makefile.in (symfile.o): Note dependency on "filenames.h".
* configure.in: Handle --with-separate-debug-dir config option.
* acinclude.m4 (AC_DEFINE_DIR): New macro.
* acconfig.h (DEBUGDIR): New macro.
* configure, aclocal.m4, config.in: Regenerated.
gdb/doc/ChangeLog:
2003-01-23 Jim Blandy <jimb@redhat.com>
* gdb.texinfo (Separate Debug Files): New section.
2003-01-24 00:03:32 +01:00
|
|
|
|
2003-01-23 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Separate Debug Files): New section.
|
|
|
|
|
|
2003-01-23 00:50:13 +01:00
|
|
|
|
2003-01-22 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Add "maint set profile"
|
|
|
|
|
and "maint show profile".
|
|
|
|
|
|
2003-01-18 18:41:34 +01:00
|
|
|
|
2003-01-16 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Installing GDB): Warn against
|
|
|
|
|
".../gdb-VERSION/gdb/configure".
|
|
|
|
|
(Separate Objdir): Likewise.
|
|
|
|
|
|
2003-01-15 20:35:28 +01:00
|
|
|
|
2003-01-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
definition of PRINT_REGISTER_HOOK.
|
|
|
|
|
|
2003-01-15 18:57:38 +01:00
|
|
|
|
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
(OpenRISC 1000): Fix formatting of command names.
|
|
|
|
|
|
2003-01-15 15:31:59 +01:00
|
|
|
|
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Continuing and Stepping): Add new command
|
|
|
|
|
'advance'. Clarify behavior of 'until'.
|
|
|
|
|
|
2003-01-13 18:59:49 +01:00
|
|
|
|
2003-01-13 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Document solib-absolute-prefix and
|
|
|
|
|
solib-search-path.
|
|
|
|
|
|
2003-01-10 23:51:57 +01:00
|
|
|
|
2003-01-09 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Configuring @value{GDBN} for Release): Delete.
|
|
|
|
|
(Create a Release): Add new instructions for new @file{src-release}.
|
|
|
|
|
Document existing instructions for @file{Makefile.in} as
|
|
|
|
|
being for @value{GDBN} 5.3.1 or earlier.
|
|
|
|
|
|
2003-01-09 19:46:02 +01:00
|
|
|
|
2003-01-09 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Mention
|
|
|
|
|
frame_saved_regs_zalloc and frame_extra_info_zalloc as the way to
|
|
|
|
|
allocate memory.
|
|
|
|
|
|
2003-01-05 05:34:39 +01:00
|
|
|
|
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Controlling GDB): Add @kindex for
|
|
|
|
|
"show osabi".
|
|
|
|
|
(Backtraces): Add @kindex's for backtrace-below-main.
|
|
|
|
|
|
2003-01-05 03:03:57 +01:00
|
|
|
|
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Controlling GDB): Document "set osabi".
|
|
|
|
|
|
2003-01-05 02:38:41 +01:00
|
|
|
|
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Backtraces): Document "set backtrace-below-main".
|
|
|
|
|
* gdbint.texinfo (FRAME_CHAIN_VALID): Update documentation.
|
|
|
|
|
|
2003-01-04 23:37:49 +01:00
|
|
|
|
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Controlling GDB): Add ABI section. Document
|
|
|
|
|
"set coerce-float-to-double".
|
|
|
|
|
* gdbint.texinfo (COERCE_FLOAT_TO_DOUBLE): Remove documentation.
|
|
|
|
|
|
2003-01-02 15:36:48 +01:00
|
|
|
|
2003-01-02 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Remove obsolete text.
|
|
|
|
|
* gdbint.texinfo: Ditto.
|
|
|
|
|
* gdb.texinfo: Ditto.
|
|
|
|
|
|
2002-12-23 19:53:16 +01:00
|
|
|
|
2002-12-22 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Update
|
|
|
|
|
description of gdbarch_register_osabi.
|
|
|
|
|
|
2002-12-20 10:35:03 +01:00
|
|
|
|
2002-12-20 Kazu Hirata <kazu@cs.umass.edu>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: Fix typos.
|
|
|
|
|
* annotate.texi: Likewise.
|
|
|
|
|
* fdl.texi: Likewise.
|
|
|
|
|
|
2002-12-11 03:28:34 +01:00
|
|
|
|
2002-12-10 Andrew Cagney <cagney@redhat.com>
|
2002-12-11 03:26:38 +01:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): Replace INIT_FRAME_PC with
|
|
|
|
|
DEPRECATED_INIT_FRAME_PC.
|
|
|
|
|
|
2002-12-01 Andrew Cagney <ac131313@redhat.com>
* gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Rename
PC_IN_CALL_DUMMY. Change to predicate. Always allow call.
* gdbarch.h, gdbarch.c: Re-generate.
* config/sparc/tm-sparc.h, config/sparc/tm-sp64.h: Update.
* config/mn10200/tm-mn10200.h, config/h8500/tm-h8500.h: Update.
* config/pa/tm-hppa.h, frame.h: Update.
* x86-64-tdep.c, vax-tdep.c, sparc-tdep.c: Update.
* s390-tdep.c, ns32k-tdep.c, mn10300-tdep.c: Update.
* m68k-tdep.c, i386-tdep.c, frv-tdep.c: Update.
* cris-tdep.c, alpha-tdep.c: Update.
* frame.c (set_unwind_by_pc, create_new_frame): Use either
DEPRECATED_PC_IN_CALL_DUMMY or pc_in_dummy_frame.
(get_prev_frame): Ditto.
Index: doc/ChangeLog
2002-12-01 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
PC_IN_CALL_DUMMY.
2002-12-01 20:07:16 +01:00
|
|
|
|
2002-12-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
PC_IN_CALL_DUMMY.
|
|
|
|
|
|
2002-11-28 22:38:44 +01:00
|
|
|
|
2002-11-28 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Delete documentation on
|
|
|
|
|
USE_GENERIC_DUMMY_FRAMES.
|
|
|
|
|
|
2002-11-26 23:44:37 +01:00
|
|
|
|
2002-11-26 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
Fix PR gdb/723 and PR gdb/245.
|
2002-11-26 23:44:37 +01:00
|
|
|
|
* Makefile.in (install-info): Run the install-info command as part
|
|
|
|
|
of the post install steps only.
|
|
|
|
|
(uninstall-info): New target.
|
|
|
|
|
(uninstall): New target.
|
|
|
|
|
|
2002-11-22 22:02:20 +01:00
|
|
|
|
2002-11-22 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (install): Make install do some real work.
|
|
|
|
|
|
2002-11-20 01:47:59 +01:00
|
|
|
|
2002-11-19 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
Fix POSIX problem reported by Paul Eggert.
|
|
|
|
|
* Makefile.in (GDBvn.texi): Use `sed q' instead of `head -1'.
|
|
|
|
|
Fix PR gdb/527.
|
|
|
|
|
|
2002-10-26 19:19:28 +02:00
|
|
|
|
2002-10-26 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
definition of DO_REGISTERS_INFO.
|
|
|
|
|
|
2002-10-18 20:50:43 +02:00
|
|
|
|
2002-10-18 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Address Classes): Fix problems with insertion
|
|
|
|
|
of ``{'' and ``}'' in example.
|
|
|
|
|
|
2002-10-17 20:33:36 +02:00
|
|
|
|
2002-10-17 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Address Classes): New section.
|
|
|
|
|
(Target Conditionals): Document ADDRESS_CLASS_NAME_TO_TYPE_FLAGS,
|
|
|
|
|
ADDRESS_CLASS_NAME_TO_TYPE_FLAGS_P, ADDRESS_CLASS_TYPE_FLAGS,
|
|
|
|
|
ADDRESS_CLASS_TYPE_FLAGS_P, ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, and
|
|
|
|
|
ADDRESS_CLASS_TYPE_FLAGS_TO_NAME_P.
|
|
|
|
|
|
2002-10-11 18:13:15 +02:00
|
|
|
|
2002-10-11 Klee Dienes <kdienes@apple.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Registers): Mention vector registers as well as
|
|
|
|
|
floating registers in the documentation for 'info registers' and
|
|
|
|
|
'info all-registers'.
|
|
|
|
|
|
2002-10-11 16:01:04 +02:00
|
|
|
|
2002-10-11 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (CPLUS_MARKER): Remove item.
|
|
|
|
|
|
2002-10-04 00:30:01 +02:00
|
|
|
|
2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Item Output Functions): Add new ui_out_field_fmt_int
|
|
|
|
|
interface definition.
|
|
|
|
|
|
2002-10-03 07:56:40 +02:00
|
|
|
|
2002-10-03 Marko Mlinar <markom@opencores.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Target Commands): Add or1k target specific
|
|
|
|
|
commands.
|
|
|
|
|
* gdb.texinfo (Contributors): Add myself to the contributors list.
|
|
|
|
|
|
2002-10-01 23:15:43 +02:00
|
|
|
|
2002-10-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Update --interpreter option. "mi2"
|
|
|
|
|
and "mi1" instead of "mi1" and "mi0".
|
|
|
|
|
|
2002-09-30 09:08:26 +02:00
|
|
|
|
2002-09-29 Hans-Peter Nilsson <hp@bitrange.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Fix typos "alligned".
|
|
|
|
|
Correct z3/Z3 description. Correct z4/Z4 title.
|
|
|
|
|
|
2002-09-27 19:56:37 +02:00
|
|
|
|
2002-09-27 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* all-cfg.texi: Use @sc for GDB and GCC. Update copyright.
|
|
|
|
|
|
2002-09-26 00:55:30 +02:00
|
|
|
|
2002-09-25 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Use GNU/Linux instead of Linux.
|
|
|
|
|
|
2002-09-25 15:56:54 +02:00
|
|
|
|
2002-09-25 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Replace @samp{} with ``an empty string''.
|
|
|
|
|
|
2002-09-24 16:30:36 +02:00
|
|
|
|
2002-09-24 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
2002-09-25 15:56:54 +02:00
|
|
|
|
* gdb.texinfo: Replace @example with @smallexample.
|
2002-09-24 16:30:36 +02:00
|
|
|
|
|
2002-09-21 02:29:04 +02:00
|
|
|
|
2002-09-20 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
From Eli Zaretskii <eliz@gnu.org>:
|
2002-09-21 02:29:04 +02:00
|
|
|
|
* gdb.texinfo (Character Sets): Use @smallexample instead of
|
|
|
|
|
@example. Use GNU/Linux instead of Linux.
|
|
|
|
|
|
|
|
|
|
2002-09-20 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add character set documentation.
|
|
|
|
|
|
2002-09-20 01:09:30 +02:00
|
|
|
|
2002-09-19 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Packets): Revise `z' and `Z' packet documentation.
|
|
|
|
|
(Packets): Add cross reference from `b' packet to `z' packets.
|
|
|
|
|
|
2002-09-19 17:43:49 +02:00
|
|
|
|
2002-09-19 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
2002-09-19 17:51:25 +02:00
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document ``maint
|
|
|
|
|
internal-error'' and ``maint internal-warning''.
|
|
|
|
|
|
2002-09-19 17:43:49 +02:00
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Revise
|
|
|
|
|
description of STACK_ALIGN. Add description of FRAME_ALIGN.
|
|
|
|
|
|
2002-09-19 15:14:46 +02:00
|
|
|
|
2002-09-19 Joel Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Document the new
|
|
|
|
|
NAME_OF_MALLOC macro.
|
|
|
|
|
|
2002-09-05 14:13:08 +02:00
|
|
|
|
2002-09-05 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors): Mention 5.2 and 5.3 release
|
|
|
|
|
engineer.
|
|
|
|
|
|
2002-09-02 21:09:30 +02:00
|
|
|
|
2002-09-02 Stephane Carrez <stcarrez@nerim.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Overview): Document status line fields.
|
|
|
|
|
|
2002-09-02 20:54:12 +02:00
|
|
|
|
2002-09-02 Stephane Carrez <stcarrez@nerim.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Commands): Document info win command.
|
|
|
|
|
|
2002-09-01 10:52:36 +02:00
|
|
|
|
2002-09-01 Stephane Carrez <stcarrez@nerim.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Overview): Document breakpoint markers.
|
|
|
|
|
|
2002-09-01 10:39:48 +02:00
|
|
|
|
2002-09-01 Stephane Carrez <stcarrez@nerim.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Single Key Mode): Document new SingleKey mode.
|
|
|
|
|
(TUI Keys): Likewise.
|
|
|
|
|
|
2002-08-25 21:10:15 +02:00
|
|
|
|
2002-08-25 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Examples): Use ``->'' for a packet send and ``<-''
|
|
|
|
|
for a packet receive.
|
|
|
|
|
|
2002-08-25 15:48:15 +02:00
|
|
|
|
2002-08-25 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (clean): Move to end of file.
|
|
|
|
|
(distclean, maintainer-clean, realclean): Ditto.
|
|
|
|
|
(mostlyclean): Move rule to end of file. Use GDB_TEX_TMPS,
|
|
|
|
|
GDBINT_TEX_TMPS, STABS_TEX_TMPS.
|
|
|
|
|
(gdb.dvi, gdb.pdf): Do not cleanup TeX temp files after texi2dvi.
|
|
|
|
|
(gdbint.dvi, gdbint.pdf, stabs.dvi, stabs.pdf): Ditto.
|
|
|
|
|
|
2002-08-24 Andrew Cagney <ac131313@redhat.com>
* Makefile.in (GDBINT_TEX_TMPS): Define.
(gdbint.dvi, gdbint.pdf): Use
(GDB_TEX_TMPS): Define.
(gdb.dvi, gdb.pdf): Use.
(STABS_TEX_TMPS): Define.
(stabs.dvi, stabs.pdf): Use.
(GDB_DOC_SOURCE_INCLUDES): New macros.
(GDB_DOC_BUILD_INCLUDES, GDB_DOC_FILES): New macros.
(GDBINT_DOC_FILES_INCLUDES): New macros.
(GDBINT_DOC_BUILD_INCLUDES): New macros.
(GDBINT_DOC_FILES, STABS_DOC_SOURCE_INCLUDES): New macros.
(STABS_DOC_BUILD_INCLUDES, STABS_DOC_FILES): New macros.
(SFILES_DOC, SFILES_INCLUDED, SFILES_LOCAL): Delete macros.
(links2roff): Replace SFILES_INCLUDED with
GDB_DOC_SOURCE_INCLUDES.
(gdb.dvi, gdb_toc.html, gdb.pdf, gdb.info): Update dependencies.
(gdb.me, gdb.mm, gdb.ms): Update dependencies.
(gdbint.dvi, gdbint_toc.html, gdbint.pdf, gdbint.info): Update
dependencies.
(stabs.info, stabs_toc.html, stabs.pdf, stabs.dvi): Update
dependencies.
(gdbmi.texinfo): Delete rule.
(inc-hist.texinfo): Delete rule.
(rluser.texinfo): Delete rule.
2002-08-25 02:12:33 +02:00
|
|
|
|
2002-08-24 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (GDBINT_TEX_TMPS): Define.
|
|
|
|
|
(gdbint.dvi, gdbint.pdf): Use
|
|
|
|
|
(GDB_TEX_TMPS): Define.
|
|
|
|
|
(gdb.dvi, gdb.pdf): Use.
|
|
|
|
|
(STABS_TEX_TMPS): Define.
|
|
|
|
|
(stabs.dvi, stabs.pdf): Use.
|
|
|
|
|
(GDB_DOC_SOURCE_INCLUDES): New macros.
|
|
|
|
|
(GDB_DOC_BUILD_INCLUDES, GDB_DOC_FILES): New macros.
|
|
|
|
|
(GDBINT_DOC_FILES_INCLUDES): New macros.
|
|
|
|
|
(GDBINT_DOC_BUILD_INCLUDES): New macros.
|
|
|
|
|
(GDBINT_DOC_FILES, STABS_DOC_SOURCE_INCLUDES): New macros.
|
|
|
|
|
(STABS_DOC_BUILD_INCLUDES, STABS_DOC_FILES): New macros.
|
|
|
|
|
(SFILES_DOC, SFILES_INCLUDED, SFILES_LOCAL): Delete macros.
|
|
|
|
|
(links2roff): Replace SFILES_INCLUDED with
|
|
|
|
|
GDB_DOC_SOURCE_INCLUDES.
|
|
|
|
|
(gdb.dvi, gdb_toc.html, gdb.pdf, gdb.info): Update dependencies.
|
|
|
|
|
(gdb.me, gdb.mm, gdb.ms): Update dependencies.
|
|
|
|
|
(gdbint.dvi, gdbint_toc.html, gdbint.pdf, gdbint.info): Update
|
|
|
|
|
dependencies.
|
|
|
|
|
(stabs.info, stabs_toc.html, stabs.pdf, stabs.dvi): Update
|
|
|
|
|
dependencies.
|
|
|
|
|
(gdbmi.texinfo): Delete rule.
|
|
|
|
|
(inc-hist.texinfo): Delete rule.
|
|
|
|
|
(rluser.texinfo): Delete rule.
|
|
|
|
|
|
2002-08-24 02:21:37 +02:00
|
|
|
|
2002-08-23 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Update
|
|
|
|
|
STORE_RETURN_VALUE, mention regcache.
|
|
|
|
|
|
2002-08-21 18:34:10 +02:00
|
|
|
|
2002-08-21 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
print_registers_info. Note that DO_REGISTERS_INFO is deprecated.
|
|
|
|
|
|
2002-08-20 00:09:03 +02:00
|
|
|
|
2002-08-19 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Protocol): Reformat. Use cross references.
|
|
|
|
|
Fix minor typos. Add index entries.
|
|
|
|
|
|
2002-08-19 02:57:17 +02:00
|
|
|
|
2002-08-18 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Data): Add ``Vector Unit'' to menu.
|
|
|
|
|
|
2002-08-16 02:27:46 +02:00
|
|
|
|
2002-08-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
PRINT_VECTOR_INFO.
|
|
|
|
|
* gdb.texinfo (Vector Unit): Document "info vectors" command.
|
|
|
|
|
|
2002-08-13 23:39:00 +02:00
|
|
|
|
2002-08-13 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Maintenance Commands): Document "maint print
|
|
|
|
|
registers", "maint print raw-registers" and "maint print
|
|
|
|
|
cooked-registers".
|
|
|
|
|
|
2002-08-09 18:41:25 +02:00
|
|
|
|
2002-08-08 Grace Sainsbury <graces@redhat.com>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
From Mark Salter:
|
2002-08-09 18:41:25 +02:00
|
|
|
|
* gdb.texinfo (Protocol): Document T packet extension to
|
|
|
|
|
allow watchpoint address reporting.
|
|
|
|
|
|
2002-08-04 01:37:07 +02:00
|
|
|
|
2002-08-03 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Dump/Restore Files): Move `[]' to outside of @var.
|
|
|
|
|
|
2002-08-01 Andrew Cagney <cagney@redhat.com>
* NEWS: Menion that CHILL has been made obsolete.
* gdbtypes.c (chill_varying_type): Make chill references obsolete.
* gdbserver/Makefile.in: Ditto.
* stabsread.c (read_range_type): Ditto.
* gdbtypes.h: Ditto.
* language.c (binop_type_check): Ditto.
(binop_result_type): Ditto.
(integral_type): Ditto.
(character_type): Ditto.
(string_type): Ditto.
(boolean_type): Ditto.
(structured_type): Ditto.
(lang_bool_type): Ditto.
(binop_type_check): Ditto.
* language.h (_LANG_chill): Ditto.
* dwarfread.c (set_cu_language): Ditto.
* dwarfread.c (CHILL_PRODUCER): Ditto.
* dwarfread.c (handle_producer): Ditto.
* expression.h (enum exp_opcode): Ditto.
* eval.c: Ditto for comments.
* typeprint.c (typedef_print) [_LANG_chill]: Ditto.
* expprint.c (print_subexp): Ditto.
(print_subexp): Ditto.
* valops.c (value_cast): Ditto.
(search_struct_field): Ditto.
* value.h (COERCE_VARYING_ARRAY): Ditto.
* symfile.c (init_filename_language_table): Ditto.
(add_psymbol_with_dem_name_to_list): Ditto.
* valarith.c (value_binop): Ditto.
(value_neg): Ditto.
* valops.c (value_slice): Ditto.
* symtab.h (union language_specific): Ditto.
(SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
(SYMBOL_DEMANGLED_NAME): Ditto.
(SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
* defs.h (enum language): Ditto.
* symtab.c (got_symtab): Ditto.
* utils.c (fprintf_symbol_filtered): Ditto.
* ch-typeprint.c: Make file obsolete.
* ch-valprint.c: Make file obsolete.
* ch-lang.h: Make file obsolete.
* ch-exp.c: Make file obsolete.
* ch-lang.c: Make file obsolete.
* Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
CHILL_LIB.
(TARGET_FLAGS_TO_PASS): Ditto.
(CHILLFLAGS): Obsolete.
(CHILL): Obsolete.
(CHILL_FOR_TARGET): Obsolete.
(CHILL_LIB): Obsolete.
(SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
ch-valprint.c.
(HFILES_NO_SRCDIR): Remove ch-lang.h.
(COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
ch-lang.o.
(ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
targets.
2002-08-01 Andrew Cagney <cagney@redhat.com>
* stabs.texinfo, gdb.texinfo, gdbint.texinfo: Obsolete references
to CHILL.
2002-08-01 Andrew Cagney <cagney@redhat.com>
* Makefile.in (TARGET_FLAGS_TO_PASS): Remove CHILLFLAGS, CHILL,
CHILL_FOR_TARGET and CHILL_LIB.
* configure.in (configdirs): Remove gdb.chill.
* configure: Regenerate.
* lib/gdb.exp: Obsolete references to chill.
* gdb.fortran/types.exp: Ditto.
* gdb.fortran/exprs.exp: Ditto.
2002-08-01 19:18:35 +02:00
|
|
|
|
2002-08-01 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo, gdb.texinfo, gdbint.texinfo: Obsolete references
|
|
|
|
|
to CHILL.
|
|
|
|
|
|
2002-08-01 18:49:25 +02:00
|
|
|
|
2002-08-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Revise section "Include Files".
|
|
|
|
|
|
2002-07-25 01:51:36 +02:00
|
|
|
|
2002-07-24 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Obsolete references to m88k.
|
|
|
|
|
* gdb.texinfo: Ditto.
|
|
|
|
|
|
2002-07-10 18:07:19 +02:00
|
|
|
|
2002-07-10 Joel Brobecker <brobecker@gnat.com>
|
|
|
|
|
|
2002-07-25 01:51:36 +02:00
|
|
|
|
* gdbint.texinfo (Create a release candiate): Add the location
|
2002-07-10 18:07:19 +02:00
|
|
|
|
where the proper version of autoconf can be retrieved.
|
|
|
|
|
|
2002-07-09 17:59:18 +02:00
|
|
|
|
2002-07-09 Don Howard <dhoward@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Files): Further describe the behavior of
|
|
|
|
|
sourced command files.
|
|
|
|
|
|
2002-06-27 17:30:32 +02:00
|
|
|
|
2002-06-27 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (User Interface): ISO C rather than ISO-C.
|
|
|
|
|
(Coding): Clarify ISO C version that GDB assumes.
|
|
|
|
|
|
2002-06-26 22:58:48 +02:00
|
|
|
|
2002-06-26 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (User Interface): Mention add_setshow_cmd and
|
|
|
|
|
add_setshow_cmd_full.
|
|
|
|
|
|
2002-06-25 09:23:29 +02:00
|
|
|
|
2002-06-25 Don Howard <dhoward@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Memory Region Attributes): Document new behavior
|
|
|
|
|
for 'mem' command.
|
|
|
|
|
|
2002-06-11 22:05:03 +02:00
|
|
|
|
2002-06-11 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
2002-06-11 22:37:05 +02:00
|
|
|
|
* gdb.texinfo (Symbols): Update documentation for `info source'
|
|
|
|
|
command.
|
|
|
|
|
|
2002-06-11 22:05:03 +02:00
|
|
|
|
* gdb.texinfo (Macros): Call the command `info macro', not
|
|
|
|
|
`show macro'.
|
|
|
|
|
|
2002-06-09 19:15:40 +02:00
|
|
|
|
2002-06-09 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Add section ``Per-architecture module
|
|
|
|
|
data''.
|
|
|
|
|
|
2002-06-09 17:11:47 +02:00
|
|
|
|
2002-06-09 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
|
|
|
|
|
|
2002-06-09 04:11:12 +02:00
|
|
|
|
2002-06-08 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Fix typos in @itemize @bullet
|
|
|
|
|
lists.
|
|
|
|
|
|
2002-06-08 19:50:59 +02:00
|
|
|
|
2002-06-08 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Revise the section ``Cut the
|
|
|
|
|
Branch''.
|
|
|
|
|
|
2002-06-01 22:14:16 +02:00
|
|
|
|
2002-06-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Add section
|
|
|
|
|
``Converting an existing Target Architecture to Multi-arch''.
|
|
|
|
|
|
2002-05-31 03:36:16 +02:00
|
|
|
|
2002-05-30 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Rename ``Obsoleting any code''
|
|
|
|
|
to ``Obsoleting code''. Revise.
|
|
|
|
|
|
2002-05-17 20:00:03 +02:00
|
|
|
|
2002-05-17 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (C Preprocessor Macros): New chapter.
|
|
|
|
|
Include it in the main menu.
|
|
|
|
|
(Contributors): Credit Jim Blandy with macro support.
|
|
|
|
|
(Compilation): Explain how to get macro information into the
|
|
|
|
|
executable.
|
|
|
|
|
(Expressions): Note that preprocessor macros are expanded.
|
|
|
|
|
|
2002-05-14 06:26:25 +02:00
|
|
|
|
2002-05-14 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Debug Session): Document new `udp:' and `tcp:'
|
|
|
|
|
options for `target remote'.
|
|
|
|
|
|
2002-05-13 19:20:59 +02:00
|
|
|
|
2002-05-13 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
documentation on NNPC_REGNUM.
|
|
|
|
|
|
2002-05-12 05:09:12 +02:00
|
|
|
|
2002-05-11 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document
|
|
|
|
|
REGISTER_TO_VALUE and VALUE_TO_REGISTER and CONVERT_REGISTER_P.
|
|
|
|
|
(Target Architecture Definition): Revise section `Using Different
|
|
|
|
|
Register and Memory Data Representations'. Add section `Raw and
|
|
|
|
|
Virtual Register Representations'.
|
|
|
|
|
|
2002-05-12 04:16:05 +02:00
|
|
|
|
2002-05-11 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Mention
|
|
|
|
|
defaults for REGISTER_VIRTUAL_SIZE and REGISTER_RAW_SIZE.
|
|
|
|
|
(Target Architecture Definition): Mention same. Add references to
|
|
|
|
|
web pages.
|
|
|
|
|
|
2002-05-09 20:12:00 +02:00
|
|
|
|
2002-05-08 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Attributes): Document new "vector" attribute.
|
|
|
|
|
|
2002-05-04 21:57:22 +02:00
|
|
|
|
2002-05-04 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Revise `Create a Release'.
|
|
|
|
|
|
2002-05-04 18:00:30 +02:00
|
|
|
|
2002-05-04 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Delete obsolete references to a29k.
|
|
|
|
|
|
2002-04-24 18:28:16 +02:00
|
|
|
|
2002-04-24 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
IN_SIGTRAMP with PC_IN_SIGTRAMP.
|
|
|
|
|
|
2002-04-24 15:48:39 +02:00
|
|
|
|
2002-04-24 David S. Miller <davem@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (REGISTER_IN_WINDOW): Delete definition.
|
|
|
|
|
|
2002-04-22 03:39:54 +02:00
|
|
|
|
2002-04-21 David S. Miller <davem@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SKIP_PROLOGUE_FRAMELESS_P): Delete definition.
|
|
|
|
|
|
2002-04-21 17:52:35 +02:00
|
|
|
|
2002-04-21 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
definition of HAVE_REGISTER_WINDOWS.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2002-04-19 Eli Zaretskii <eliz@gnu.org>
|
2002-04-19 21:33:57 +02:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB, Coding): Fix typos. Reported by
|
|
|
|
|
"Theodore A. Roth" <troth@verinet.com>.
|
|
|
|
|
|
2002-04-15 19:23:54 +02:00
|
|
|
|
2002-04-15 Don Howard <dhoward@redhat.com>
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
From Eli Zaretskii <eliz@gnu.org>
|
2002-04-15 19:23:54 +02:00
|
|
|
|
* gdb.texinfo (show max-user-call-depth): Correct formatting.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
Provide a better explaination of this feature.
|
2002-04-15 19:23:54 +02:00
|
|
|
|
|
2002-04-14 15:38:07 +02:00
|
|
|
|
2002-04-14 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Remove
|
|
|
|
|
FRAME_CHAIN_COMBINE.
|
|
|
|
|
|
2002-04-13 17:56:42 +02:00
|
|
|
|
2002-04-12 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Obsolete Conditionals): Remove reference to
|
|
|
|
|
REG_STACK_SEGMENT.
|
|
|
|
|
|
2002-04-10 07:11:35 +02:00
|
|
|
|
2002-04-09 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Obsolete Conditionals): Remove references to
|
|
|
|
|
PYRAMID_* macros.
|
|
|
|
|
|
2002-04-07 21:09:58 +02:00
|
|
|
|
2002-04-07 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Bug Reporting): Document that the web is the
|
|
|
|
|
prefered way of submitting bug reports.
|
|
|
|
|
(Bug Reporting): Delete the s-mail address as the last resort.
|
|
|
|
|
|
2002-04-06 02:02:52 +02:00
|
|
|
|
2002-04-05 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
references to TARGET_WRITE_FP and write_fp.
|
|
|
|
|
|
2002-03-29 02:19:37 +01:00
|
|
|
|
2002-03-27 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document new commands dump, append, and restore.
|
|
|
|
|
|
2002-03-27 22:16:33 +01:00
|
|
|
|
2002-03-27 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Revise the section `Before the
|
|
|
|
|
Branch'.
|
|
|
|
|
|
2002-03-19 03:49:53 +01:00
|
|
|
|
2002-03-18 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Change all examples to @smallexample.
|
|
|
|
|
* gdbint.texinfo: Ditto.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2002-03-18 17:14:04 +01:00
|
|
|
|
2002-03-18 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Add section ``Versions and
|
|
|
|
|
Branches''.
|
|
|
|
|
|
2002-03-18 17:09:32 +01:00
|
|
|
|
2002-03-18 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Add the section``Branch Commit
|
|
|
|
|
Policy''.
|
|
|
|
|
|
2002-03-04 Fred Fish <fnf@redhat.com>
* gdbint.texinfo: Fix a bunch of typos (alsways, mirrorred,
expresson, suports, dependant, trhe, perhaphs, situtations,
explictily, taged, oportunity, unfortunatly).
2002-03-04 21:38:10 +01:00
|
|
|
|
2002-03-04 Fred Fish <fnf@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix a bunch of typos (alsways, mirrorred,
|
|
|
|
|
expresson, suports, dependant, trhe, perhaphs, situtations,
|
|
|
|
|
explictily, taged, oportunity, unfortunatly).
|
|
|
|
|
|
2002-02-25 05:32:58 +01:00
|
|
|
|
2002-02-24 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (gdb.info): Add explicit path to gdb.texinfo.
|
|
|
|
|
Remove reference to 3.12.
|
|
|
|
|
|
2002-02-24 18:18:25 +01:00
|
|
|
|
2002-02-23 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Include fdl.texi.
|
|
|
|
|
(Top): Add GNU Free Documentation License.
|
|
|
|
|
* Makefile.in (SFILES_INCLUDED): Add gpl.texi.
|
|
|
|
|
(gdbint.dvi, gdbint.pdf, gdbint.info): Add dependency on fdl.texi.
|
|
|
|
|
(gdbint_toc.html): Add dependency on gdb-cfg.texi and fdl.texi.
|
|
|
|
|
(gdbint.info): Add srcdir to include path.
|
|
|
|
|
* gdb.texinfo: Include gpl.texi.
|
|
|
|
|
(Top): Add Copying.
|
|
|
|
|
* gpl.texi: New file.
|
|
|
|
|
|
2002-02-23 21:59:55 +01:00
|
|
|
|
2002-02-23 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Debugging GDB): Remove references to cygnus.com.
|
|
|
|
|
|
2002-02-20 17:09:04 +01:00
|
|
|
|
2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document Cygwin native specific commands.
|
|
|
|
|
|
2002-02-15 20:06:33 +01:00
|
|
|
|
2002-02-15 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document gdbserver ``--attach'' command.
|
|
|
|
|
|
2002-02-08 01:39:45 +01:00
|
|
|
|
2002-02-07 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (overlays): Change @var(_ovly_debug_event)
|
|
|
|
|
to @code(_ovly_debug_event).
|
|
|
|
|
|
2002-02-08 00:58:41 +01:00
|
|
|
|
2002-02-07 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (How Overlays Work): Shrink the overlay diagram.
|
|
|
|
|
|
2002-02-06 19:29:38 +01:00
|
|
|
|
2002-02-06 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (overlays): Mention new magic symbol
|
|
|
|
|
'_ovly_debug_event', which allows GDB to keep better track
|
|
|
|
|
of overlays.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2002-02-03 Eli Zaretskii <eliz@gnu.org>
|
2002-02-03 13:06:05 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Memory Region Attributes): Fix the wording.
|
|
|
|
|
Suggested by Dmitry Sivachenko.
|
|
|
|
|
|
|
|
|
|
* (<many nodes>): Fix the spelling and punctuation of "i.e.".
|
|
|
|
|
|
2002-02-01 19:41:51 +01:00
|
|
|
|
2002-02-01 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (set trust-readonly): Change value{gdbn} to value{GDBN}.
|
|
|
|
|
|
2002-02-01 18:21:28 +01:00
|
|
|
|
2002-01-30 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
2002-02-01 18:29:55 +01:00
|
|
|
|
* gdb.texinfo: (remote protocol): Gramatical fix-up.
|
|
|
|
|
(set trust-readonly-sections): Document.
|
2002-02-01 18:21:28 +01:00
|
|
|
|
|
2002-01-29 17:32:02 +01:00
|
|
|
|
2002-01-29 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): Revise and update.
|
|
|
|
|
|
2002-01-29 04:51:19 +01:00
|
|
|
|
2002-01-28 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of TARGET_BYTE_ORDER_DEFAULT.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2002-01-27 Eli Zaretskii <eliz@gnu.org>
|
2002-01-27 10:34:24 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix typos and markup. From Dmitry Sivachenko
|
|
|
|
|
<mitya@cavia.pp.ru>.
|
|
|
|
|
|
2002-01-23 22:08:19 +01:00
|
|
|
|
2002-01-23 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* libgdb.texinfo: Delete file.
|
|
|
|
|
|
2002-01-22 18:15:57 +01:00
|
|
|
|
2002-01-22 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove makeinfo 3.12 hacks.
|
|
|
|
|
* gdbint.texinfo: Ditto.
|
|
|
|
|
|
2002-01-22 17:58:30 +01:00
|
|
|
|
Tue Jan 22 11:57:38 2002 Andrew Cagney <cagney@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix typo ``Remove' -> ``Remote''.
|
|
|
|
|
|
2002-01-22 17:37:08 +01:00
|
|
|
|
2002-01-22 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Update copyright.
|
|
|
|
|
(TEXI2DVI): Define.
|
|
|
|
|
(gdb.dvi, gdb.pdf, stabs.dvi, stabs.pdf): Use TEXI2DVI.
|
|
|
|
|
(gdbint.dvi, gdbint.pdf): Use TEXI2DVI. Add dependency on
|
|
|
|
|
gdb-cfg.texi.
|
|
|
|
|
(TEXINDEX, PDFTEX): Delete makefile variables.
|
|
|
|
|
|
2002-01-22 17:25:57 +01:00
|
|
|
|
2002-01-22 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Move section to appendix.
|
|
|
|
|
|
2002-01-22 00:27:40 +01:00
|
|
|
|
2002-01-21 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Debugging): Create a menu.
|
|
|
|
|
(Top): Add ``Remote Debugging'' to menu.
|
|
|
|
|
|
2002-01-21 19:56:05 +01:00
|
|
|
|
2002-01-21 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote): Move the sub-section ``The GDB remote
|
|
|
|
|
serial protocol'' from here.
|
|
|
|
|
(Remote Debugging): To here. New chapter.
|
|
|
|
|
|
2002-01-20 20:26:50 +01:00
|
|
|
|
2002-01-20 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Delete
|
|
|
|
|
description of TARGET_BYTE_ORDER_SELECTABLE_P.
|
|
|
|
|
|
2002-01-20 19:19:30 +01:00
|
|
|
|
2002-01-20 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Revise. xm-xyz.h and xyz.mh
|
|
|
|
|
are no longer needed.
|
|
|
|
|
(Porting GDB): Add maintainer note about configure.host.
|
|
|
|
|
|
2002-01-20 19:05:54 +01:00
|
|
|
|
2002-01-20 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Remove
|
|
|
|
|
definition of IEEE_FLOAT.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2002-01-20 Eli Zaretskii <eliz@gnu.org>
|
2002-01-20 12:18:28 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Beautify copyright years; fix a typo.
|
2002-01-20 12:59:38 +01:00
|
|
|
|
(DJGPP Native): Fix overfull hboxes in examples. From Brian Youmans
|
|
|
|
|
<3diff@gnu.org>
|
2002-01-20 12:18:28 +01:00
|
|
|
|
|
2002-01-20 05:23:29 +01:00
|
|
|
|
2002-01-19 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Remove references to
|
|
|
|
|
MALLOC_INCOMPATIBLE.
|
|
|
|
|
|
2002-01-18 05:51:10 +01:00
|
|
|
|
2002-01-17 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Remove references to XDEPFILES
|
|
|
|
|
and xyz-xdep.o.
|
|
|
|
|
|
2002-01-18 00:06:47 +01:00
|
|
|
|
2002-01-17 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
2010-08-27 14:02:20 +02:00
|
|
|
|
* gdb.texinfo (Maintenance Commands): Add appendix.
|
2002-01-18 00:06:47 +01:00
|
|
|
|
(Set Breaks): Copy ``maint info breakpoint'' doco to
|
|
|
|
|
``Maintenance Commands'' appendix. Add reference.
|
|
|
|
|
|
2002-01-17 23:56:48 +01:00
|
|
|
|
2002-01-17 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* fdl.texi: Remove next/prev from @node.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2002-01-17 Eli Zaretskii <eliz@gnu.org>
|
2002-01-17 09:54:12 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: @include fdl.texi. Fixes for overfull hboxes and
|
|
|
|
|
for monstrous @multitable (from Brian Youmans).
|
|
|
|
|
|
|
|
|
|
* fdl.texi: New file.
|
|
|
|
|
|
|
|
|
|
* Makefile.in (SFILES_INCLUDED): Add fdl.texi.
|
|
|
|
|
|
2002-01-15 20:01:20 +01:00
|
|
|
|
2002-01-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releasing GDB): New chapter.
|
|
|
|
|
|
2002-01-15 02:38:45 +01:00
|
|
|
|
2002-01-14 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Embedded Processors, Calling program functions):
|
|
|
|
|
Obsolete references to a29k.
|
|
|
|
|
|
2002-01-15 02:29:24 +01:00
|
|
|
|
2002-01-13 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Review Cleanups section. Examples
|
|
|
|
|
examples. Document that a code-block should do or discard its
|
|
|
|
|
cleanups before exit.
|
|
|
|
|
|
2002-01-11 21:24:14 +01:00
|
|
|
|
2002-01-11 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Choosing files): Change @samp to @file.
|
|
|
|
|
|
2002-01-11 00:03:35 +01:00
|
|
|
|
2002-01-05 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (--pid): Document new command line option (attach).
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2002-01-07 Eli Zaretskii <eliz@gnu.org>
|
2002-01-07 10:28:44 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoints): Clarify that tracepoints need support
|
|
|
|
|
in the stub.
|
|
|
|
|
|
2002-01-05 05:30:46 +01:00
|
|
|
|
2002-01-04 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
BIG_ENDIAN with BFD_ENDIAN_BIG.
|
|
|
|
|
|
2002-01-04 06:20:09 +01:00
|
|
|
|
2002-01-03 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
value_ptr with struct value pointer.
|
|
|
|
|
|
2002-01-02 07:15:47 +01:00
|
|
|
|
2002-01-02 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Free Software): Fix wording.
|
|
|
|
|
|
2001-12-31 20:06:39 +01:00
|
|
|
|
2001-12-31 Eli Zaretskii <eliz@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Free Software): New section ``Free Software Needs
|
|
|
|
|
Free Documentation''.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-12-30 Eli Zaretskii <eliz@gnu.org>
|
2001-12-30 07:25:16 +01:00
|
|
|
|
|
|
|
|
|
* stabs.texinfo:
|
|
|
|
|
* gdb.texinfo:
|
|
|
|
|
* gdbint.texinfo:
|
|
|
|
|
* libgdb.texinfo:
|
|
|
|
|
* annotate.texi: Fix the application of GFDL in the Copyright notice.
|
|
|
|
|
|
2001-12-30 04:52:20 +01:00
|
|
|
|
2001-12-29 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (maint info sections): Fix typo.
|
|
|
|
|
|
2001-12-27 19:41:40 +01:00
|
|
|
|
2001-12-26 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
2001-12-27 20:37:12 +01:00
|
|
|
|
* gdb.texinfo (maint info sections): Document.
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdb.texinfo (info proc): Comment out documentation for
|
2001-12-27 19:41:40 +01:00
|
|
|
|
'info proc' sub-options that are currently not implemented.
|
|
|
|
|
|
2001-12-20 22:16:31 +01:00
|
|
|
|
2001-12-20 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (TARGET_CHAR_SIGNED): Document.
|
|
|
|
|
|
2001-12-15 17:53:24 +01:00
|
|
|
|
2001-12-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Replace
|
|
|
|
|
LITTLE_ENDIAN with BFD_ENDIAN_LITTLE.
|
|
|
|
|
|
2001-12-02 03:57:18 +01:00
|
|
|
|
2001-12-01 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Delete documentation on
|
|
|
|
|
HOST_BYTE_ORDER.
|
|
|
|
|
|
2001-12-01 00:03:09 +01:00
|
|
|
|
2001-11-30 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Overlays): New chapter, documenting GDB's
|
2008-07-07 14:05:30 +02:00
|
|
|
|
overlay support. Add to top-level menu.
|
2001-12-01 00:03:09 +01:00
|
|
|
|
|
2001-11-27 05:14:37 +01:00
|
|
|
|
2001-11-26 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Syntax): Document C-o binding.
|
|
|
|
|
|
2001-11-26 21:34:56 +01:00
|
|
|
|
2001-07-26 Christopher Faylor <cgf@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Options): Eliminate attempt to explain .gdbinit/gdb.ini
|
|
|
|
|
use since it is described in the referenced section.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
From Eli Zaretskii <eliz@gnu.org>
|
2001-11-26 21:34:56 +01:00
|
|
|
|
* gdb.texinfo (Command Files): Reword to make gdb.ini requirement
|
|
|
|
|
clearer when using DJGPP.
|
|
|
|
|
|
2001-11-24 19:21:27 +01:00
|
|
|
|
2001-11-24 Christopher Faylor <cgf@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Change description of -nx and gdb.ini to
|
|
|
|
|
specifically refer to MS-DOS.
|
|
|
|
|
(command files): Mention gdb.ini is only used on MS-DOS.
|
|
|
|
|
|
2001-11-22 01:21:45 +01:00
|
|
|
|
2001-11-21 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Invoking GDB): Document --args.
|
|
|
|
|
(Mode Options): Likewise.
|
|
|
|
|
|
2001-11-21 23:26:48 +01:00
|
|
|
|
2001-11-21 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Delete documentation; this macro has been removed from the
|
|
|
|
|
sources.
|
2001-11-21 23:26:48 +01:00
|
|
|
|
|
2001-11-13 19:52:53 +01:00
|
|
|
|
2001-11-13 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (COERCE_FLOAT_TO_DOUBLE): Clarify.
|
|
|
|
|
|
2001-11-06 12:01:22 +01:00
|
|
|
|
2001-11-06 Corinna Vinschen <vinschen@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (gdbarch_in_function_epilogue_p): Add documentation.
|
|
|
|
|
|
2001-11-06 00:26:09 +01:00
|
|
|
|
2001-11-05 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdb.texinfo (info functions): Document use of backslash to
|
2001-11-06 00:26:09 +01:00
|
|
|
|
quote regexp chars in function names such as "operator*()".
|
|
|
|
|
|
2001-11-01 17:17:08 +01:00
|
|
|
|
2001-11-01 Fred Fish <fnf@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SOLIB_ADD): Document additional new
|
|
|
|
|
"readsyms" arg.
|
|
|
|
|
|
2001-10-31 20:20:43 +01:00
|
|
|
|
2001-10-30 Don Howard <dhoward@redhat.com>
|
|
|
|
|
|
2001-11-01 06:11:19 +01:00
|
|
|
|
* gdb.texinfo: (Command Files) Added documentation for the
|
|
|
|
|
behavior of gdb with input redirected from a file.
|
2001-10-31 20:20:43 +01:00
|
|
|
|
|
2001-10-30 05:05:36 +01:00
|
|
|
|
2001-10-28 Fred Fish <fnf@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (auto-solib-add): Change docs to match
|
|
|
|
|
implementation change.
|
|
|
|
|
(auto-solib-limit): Add docs for new variable.
|
|
|
|
|
|
* value.h (value_as_address): Rename value_as_pointer.
* eval.c, findvar.c, gnu-v2-abi.c, gnu-v3-abi.c, jv-lang.c,
jv-valprint.c, printcmd.c, stack.c, top.c, valarith.c, valops.c,
values.c: Update.
2001-10-16 03:58:07 +02:00
|
|
|
|
2001-10-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Function
|
|
|
|
|
value_as_pointer renamed to value_as_address.
|
|
|
|
|
|
2001-10-15 20:18:30 +02:00
|
|
|
|
2001-10-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Default
|
|
|
|
|
POINTER_TO_ADDRESS functions assume unsigned addresses.
|
|
|
|
|
(INTEGER_TO_ADDRESS): Document. Derive pragmatics section from a
|
|
|
|
|
posting by Jim Blandy.
|
|
|
|
|
|
2001-10-12 23:10:07 +02:00
|
|
|
|
2001-10-12 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (MAKEHTMLFLAGS): Remove -glossary; the most recent
|
|
|
|
|
version of texi2html (1.64) doesn't support this flag any more.
|
|
|
|
|
|
2001-09-08 12:28:20 +02:00
|
|
|
|
2001-09-08 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
2001-09-08 12:53:45 +02:00
|
|
|
|
* gdbint.texinfo (Host Definition): Remove description of
|
|
|
|
|
MEM_FNS_DECLARED.
|
|
|
|
|
|
2001-09-08 12:43:27 +02:00
|
|
|
|
* gdbint.texinfo (Host Definition): Remove description of R_OK.
|
|
|
|
|
|
2001-09-08 12:28:20 +02:00
|
|
|
|
* gdbint.texinfo (Host Definition): Remove description of
|
|
|
|
|
HAVE_SIGSETMASK.
|
|
|
|
|
|
2001-09-06 14:01:36 +02:00
|
|
|
|
2001-09-04 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Add
|
|
|
|
|
explanation of TARGET_PRINT_INSN macro.
|
|
|
|
|
|
2001-08-31 03:24:24 +02:00
|
|
|
|
2001-08-30 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (`add-symbol-file'): Correct synopsis.
|
|
|
|
|
Explain what it means to load relocatable files.
|
|
|
|
|
|
2001-08-31 01:57:06 +02:00
|
|
|
|
2001-08-28 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Bring the HTML `top' menu into sync with the
|
|
|
|
|
info `top' menu.
|
|
|
|
|
|
2001-08-15 16:47:53 +02:00
|
|
|
|
Wed Aug 15 10:47:28 2001 Christopher Faylor <cgf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add a cautionary note about macro use.
|
|
|
|
|
|
2001-08-02 12:52:07 +02:00
|
|
|
|
2001-08-02 Corinna Vinschen <vinschen@redhat.com>
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2001-08-02 12:52:07 +02:00
|
|
|
|
* gdb.texinfo: Explain omitting the hostname in the
|
|
|
|
|
`target remote' command.
|
|
|
|
|
|
2001-07-31 19:30:56 +02:00
|
|
|
|
2001-07-30 Daniel Jacobowitz <drow@mvista.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove extraneous START-INFO-DIR-ENTRY
|
|
|
|
|
and END-INFO-DIR-ENTRY.
|
|
|
|
|
|
2001-07-28 21:35:20 +02:00
|
|
|
|
2001-07-28 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI Configuration): Rename tui configuration variables.
|
|
|
|
|
|
2001-07-26 20:38:29 +02:00
|
|
|
|
2001-07-25 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (libgdb): Rewrite.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-07-26 Eli Zaretskii <eliz@gnu.org>
|
2001-07-26 09:29:24 +02:00
|
|
|
|
|
|
|
|
|
* Makefile.in (gdbgui.dvi, gdb-gui, gdbgui.info): Targets deleted.
|
|
|
|
|
|
2001-07-24 20:48:15 +02:00
|
|
|
|
2001-07-24 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (TUI): New chapter, document the TUI.
|
|
|
|
|
(Mode Options): Document the -tui option.
|
|
|
|
|
|
2001-07-24 12:35:42 +02:00
|
|
|
|
2001-07-23 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Definition): Remove description of
|
|
|
|
|
NEED_POSIX_SETPGID.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-07-23 Eli Zaretskii <eliz@gnu.org>
|
2001-07-23 18:10:24 +02:00
|
|
|
|
|
|
|
|
|
* gdb.tex (DJGPP Native): New node, with descriptions of
|
|
|
|
|
DJGPP-specific commands.
|
|
|
|
|
|
2001-07-20 03:14:05 +02:00
|
|
|
|
2001-07-19 John R. Moore <jmoore@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Three misspellings.
|
|
|
|
|
|
2001-07-14 18:14:10 +02:00
|
|
|
|
2001-07-06 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (refcard.dvi): Rewrite to avoid problems with empty
|
|
|
|
|
`test` expressions on bash. Problem reported by Colin Walters.
|
|
|
|
|
|
2001-07-07 18:20:57 +02:00
|
|
|
|
2001-07-04 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (User Interface): Update ui-out documentation to
|
|
|
|
|
refelect recent UI/MI updates.
|
|
|
|
|
|
2001-07-06 06:07:29 +02:00
|
|
|
|
2001-07-04 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Mode Options): Mention the mi0 and mi1
|
|
|
|
|
interpreters.
|
|
|
|
|
|
2001-07-04 22:52:14 +02:00
|
|
|
|
2001-06-15 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): GDBARCH is a C
|
|
|
|
|
structure and not macros.
|
|
|
|
|
(Host Definition): Document that much of this chapter is obsolete.
|
|
|
|
|
(Target Architecture Definition): Update list of files that make
|
|
|
|
|
up a target architecture.
|
|
|
|
|
(Coding): Update.
|
|
|
|
|
|
2001-06-29 18:21:45 +02:00
|
|
|
|
2001-06-28 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Update
|
|
|
|
|
EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_STRUCT_VALUE_ADDRESS_P.
|
|
|
|
|
The latter has been changed to a true predicate.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-06-17 Eli Zaretskii <eliz@gnu.org>
|
2001-06-17 09:00:34 +02:00
|
|
|
|
|
|
|
|
|
* annotate.texi: Add @noindent where needed. From Dmitry
|
|
|
|
|
Sivachenko <dima@Chg.RU>.
|
|
|
|
|
* gdb.texinfo: Indexing fix. From Dmitry Sivachenko.
|
|
|
|
|
|
2001-06-16 21:42:35 +02:00
|
|
|
|
2001-06-16 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Fix typo. Extra parenthesis.
|
|
|
|
|
|
2001-06-15 00:10:46 +02:00
|
|
|
|
2001-06-14 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Remote Protocol): Document that the ``!'' packet
|
|
|
|
|
returns ``OK''. Document that the ``R'' packet does not reply.
|
|
|
|
|
|
2001-06-14 21:17:00 +02:00
|
|
|
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Add doc for new packet "qSymbol:".
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-06-13 Eli Zaretskii <eliz@gnu.org>
|
2001-06-13 10:40:23 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Signals): Clarify the default setting of signal
|
|
|
|
|
handling.
|
|
|
|
|
|
2001-05-14 22:24:23 +02:00
|
|
|
|
2001-05-14 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (CLEAR_DEFERRED_STORES): Delete stray @item
|
|
|
|
|
(FRAME_ARGS_ADDRESS_CORRECT): Ditto.
|
|
|
|
|
|
2001-05-14 18:18:50 +02:00
|
|
|
|
2001-05-12 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (GDBvn.texi): Set GDBVN from ../version.in.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-05-10 Eli Zaretskii <eliz@gnu.org>
|
2001-05-10 12:29:37 +02:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Clean Design and Portable Implementation):
|
|
|
|
|
Renamed from "Clean Design".
|
|
|
|
|
(Clean Design and Portable Implementation): Document portable
|
|
|
|
|
methods of handling file names, and the associated macros.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-04-02 Eli Zaretskii <eliz@gnu.org>
|
2001-04-02 10:58:19 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Tracepoint Actions): Mention the "info scope"
|
|
|
|
|
command and provide a cross-reference to its description.
|
|
|
|
|
(Symbols): Note that "info scope" is useful for trace experiments.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-04-01 Eli Zaretskii <eliz@gnu.org>
|
2001-04-01 11:04:44 +02:00
|
|
|
|
|
2001-04-01 11:15:21 +02:00
|
|
|
|
* gdb.texinfo (Symbols): Document "info scope".
|
|
|
|
|
(Tracepoints): New chapter.
|
|
|
|
|
(Contributors): Update for v5.1.
|
|
|
|
|
<All nodes>: Change "C++" to "C@t{++}".
|
|
|
|
|
|
2001-04-01 11:07:08 +02:00
|
|
|
|
* gdbint.texinfo (User Interface): A new section about ui_out
|
|
|
|
|
functions, based on text written by Fernando Nasser.
|
|
|
|
|
|
2001-04-01 11:04:44 +02:00
|
|
|
|
* stabs.texinfo: Change Permissions to GFDL. Update Copyright.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-03-26 Eli Zaretskii <eliz@gnu.org>
|
2001-03-26 13:35:03 +02:00
|
|
|
|
|
2001-03-26 13:51:50 +02:00
|
|
|
|
* gdb.texinfo: Change Permissions to GFDL. Update Copyright.
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Change Permissions to GFDL. Update Copyright.
|
|
|
|
|
|
|
|
|
|
* gdbgui.texinfo: Change Permissions to GFDL. Update Copyright.
|
|
|
|
|
Replace "GDB" with "@value{GDBN}". Fix markup.
|
|
|
|
|
|
|
|
|
|
* annotate.texi: Change Permissions to GFDL. Update Copyright.
|
|
|
|
|
|
2001-03-26 13:35:03 +02:00
|
|
|
|
* gdb.texinfo (Output Formats): Mention "info symbol" and provide
|
|
|
|
|
a cross-reference to its description.
|
|
|
|
|
(Symbols): Document "info symbol".
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-03-21 Eli Zaretskii <eliz@gnu.org>
|
2001-03-21 12:39:23 +01:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Algorithms): New section "Watchpoints" and new
|
|
|
|
|
subsection "x86 Watchpoints".
|
|
|
|
|
(Target Architecture Definition): Document the macros
|
|
|
|
|
I386_USE_GENERIC_WATCHPOINTS and TARGET_HAS_HARDWARE_WATCHPOINTS.
|
|
|
|
|
(Native Debugging): Document I386_USE_GENERIC_WATCHPOINTS.
|
|
|
|
|
|
2001-03-20 19:16:28 +01:00
|
|
|
|
2001-03-20 Andrew Cagney <ac131313@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Update
|
|
|
|
|
definition of SOFTWARE_SINGLE_STEP_P to include empty parameter
|
|
|
|
|
list.
|
|
|
|
|
|
2001-03-06 09:22:02 +01:00
|
|
|
|
2001-03-06 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in, all-cfg.texi, annotate.texi, gdb.texinfo,
|
|
|
|
|
gdbint.texinfo, refcard.tex: Update/correct copyright notices.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-02-21 Eli Zaretskii <eliz@gnu.org>
|
2001-02-21 17:17:50 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Signals): Document "ignore", "noignore", and "all".
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2001-02-11 Eli Zaretskii <eliz@gnu.org>
|
2001-02-11 06:48:30 +01:00
|
|
|
|
|
2001-02-11 14:37:32 +01:00
|
|
|
|
* gdb.texinfo (Environment): Document that `path' does not change
|
|
|
|
|
the value of PATH in GDB's own environment (it did in the past,
|
|
|
|
|
but that was changed on March 15, 1994). Reported by Doug Evans
|
|
|
|
|
<dje@transmeta.com>.
|
|
|
|
|
|
2001-02-11 06:48:30 +01:00
|
|
|
|
* gdbint.texinfo: Fix up @itemize lists so that @item is alone on
|
|
|
|
|
its line. Fix markup of commands and macros. Add an Index node
|
|
|
|
|
and index entries.
|
|
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
|
2001-01-23 J.T. Conklin <jtc@redback.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Memory region attributes): New manual section.
|
|
|
|
|
|
2001-01-04 16:39:28 +01:00
|
|
|
|
2001-01-04 Nicholas Duffek <nsd@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (POP_FRAME): Document use by return_command.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-12-25 Eli Zaretskii <eliz@gnu.org>
|
2000-12-25 10:10:46 +01:00
|
|
|
|
|
|
|
|
|
* refcard.tex: Version and copyright fixed. From Phil Edwards
|
|
|
|
|
<pedwards@disaster.jaj.com>.
|
|
|
|
|
|
2000-12-05 01:44:34 +01:00
|
|
|
|
Thu Nov 30 16:57:19 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (ECOFF_REG_TO_REGNUM, DWARF_REG_TO_REGNUM,
|
2010-08-27 14:02:20 +02:00
|
|
|
|
DWARF2_REG_TO_REGNUM): Document.
|
2000-12-05 01:44:34 +01:00
|
|
|
|
|
2000-11-24 12:02:59 +01:00
|
|
|
|
Mon Nov 20 21:29:35 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Coding): Update current value of
|
2010-08-27 14:02:20 +02:00
|
|
|
|
--enable-build-warnings. Mention --enable-gdb-build-warnings.
|
2000-11-24 12:02:59 +01:00
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-11-19 Eli Zaretskii <eliz@gnu.org>
|
2000-11-19 07:31:39 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Continuing and Stepping): Fixed markup and typos,
|
|
|
|
|
as suggested by Dmitry Sivachenko <dima@Chg.RU>.
|
|
|
|
|
|
2000-11-17 04:59:40 +01:00
|
|
|
|
2000-11-10 Christopher Faylor <cgf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document new 'set step-mode' command.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-10-16 Eli Zaretskii <eliz@gnu.org>
|
2000-10-16 09:34:02 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Contributors, MIPS Embedded): Minor spelling
|
|
|
|
|
changes from Dmitry Sivachenko <dima@Chg.RU>.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-09-26 Eli Zaretskii <eliz@gnu.org>
|
2000-09-26 17:53:59 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Hooks): Document the new post-hook functionality.
|
|
|
|
|
From Steven Johnson <sbjohnson@ozemail.com.au>.
|
|
|
|
|
|
2000-08-10 15:42:29 +02:00
|
|
|
|
2000-08-10 Mark Kettenis <kettenis@gnu.org>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Overall Structure): Spelling fix.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-08-10 Eli Zaretskii <eliz@gnu.org>
|
2000-08-10 13:05:52 +02:00
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document that
|
|
|
|
|
REGISTER_CONVERT_TO_VIRTUAL should only be called on a register
|
|
|
|
|
for which REGISTER_CONVERTIBLE returns a zero value.
|
|
|
|
|
|
2000-07-09 07:41:21 +02:00
|
|
|
|
2000-07-08 Christopher Faylor <cgf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): Find files to install in either the
|
|
|
|
|
build or source directories (adapted from Makefile.am).
|
|
|
|
|
|
2000-07-08 01:44:16 +02:00
|
|
|
|
2000-07-07 Nicholas Duffek <nsd@redhat.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Fix spelling errors.
|
|
|
|
|
(String Field): FILE-NUMBER starts from 0, not 1.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-07-05 Eli Zaretskii <eliz@gnu.org>
|
2000-07-05 15:11:41 +02:00
|
|
|
|
|
|
|
|
|
* refcard.tex: Remove \centerline from the blurb. Patch from
|
2008-07-07 14:05:30 +02:00
|
|
|
|
Brian Youmans.
|
2000-07-05 15:11:41 +02:00
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-06-25 Eli Zaretskii <eliz@gnu.org>
|
2000-06-25 10:12:30 +02:00
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): Support installation from outside of
|
2008-07-07 14:05:30 +02:00
|
|
|
|
the source directory. Reported by Mark Harig
|
|
|
|
|
<markh@frazier.landmark.com>.
|
2000-06-25 10:12:30 +02:00
|
|
|
|
|
2000-06-21 00:13:17 +02:00
|
|
|
|
2000-06-20 J.T. Conklin <jtc@redback.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix typo, $bpnum is set to last breakpoint number.
|
|
|
|
|
|
2000-05-31 12:18:58 +02:00
|
|
|
|
Fri May 26 15:55:33 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (pdf, gdbint.pdf, gdb.pdf, stabs.pdf): New targets.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Generate using pdftex.
|
2000-05-31 12:18:58 +02:00
|
|
|
|
(PDFTEX): Define.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
(STAGESTUFF, maintainer-clean realclean): Add *.pdf.
|
2000-05-31 12:18:58 +02:00
|
|
|
|
(gdb.texinfo, gdbint.texinfo, stabs.texinfo): When TeX insert the
|
2010-08-27 14:02:20 +02:00
|
|
|
|
@contents at the start.
|
2000-05-31 12:18:58 +02:00
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-05-24 Eli Zaretskii <eliz@gnu.org>
|
2000-05-24 18:20:24 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove duplicate @syncodeindex. From Brian
|
2008-07-07 14:05:30 +02:00
|
|
|
|
Youmans.
|
2000-05-24 18:20:24 +02:00
|
|
|
|
|
2000-05-24 13:39:44 +02:00
|
|
|
|
Wed May 24 21:27:58 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
From Brian Youmans:
|
|
|
|
|
* gdb.texinfo: Fix ``et al.''.
|
|
|
|
|
|
2000-05-24 04:18:18 +02:00
|
|
|
|
Tue May 23 22:57:41 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (refcard.dvi): Remove quotes around REFEDITS in for
|
2010-08-27 14:02:20 +02:00
|
|
|
|
loop.
|
2000-05-24 04:18:18 +02:00
|
|
|
|
|
2000-05-19 21:19:34 +02:00
|
|
|
|
2000-05-19 Jimmy Guo <guo@cup.hp.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-05-17 Eli Zaretskii <eliz@gnu.org>
|
2000-05-17 13:45:56 +02:00
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): Run install-info on installed Info
|
|
|
|
|
files.
|
|
|
|
|
|
2000-05-12 12:23:54 +02:00
|
|
|
|
Fri May 12 20:18:04 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
2000-05-12 12:30:32 +02:00
|
|
|
|
* gdb.texinfo: Add Stan Shebs, et.al. as authors. Mention
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Andrew Cagney.
|
2000-05-12 12:23:54 +02:00
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-05-09 Eli Zaretskii <eliz@gnu.org>
|
2000-05-09 10:24:34 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Proofreading changes from Brian Youmans.
|
|
|
|
|
|
2000-05-01 23:22:42 +02:00
|
|
|
|
2000-05-01 Nick Duffek <nsd@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Files): Mention -x, use @enumerate for
|
|
|
|
|
startup sequence, minor edits.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-05-01 Eli Zaretskii <eliz@gnu.org>
|
2000-05-01 10:34:36 +02:00
|
|
|
|
|
|
|
|
|
* annotate.texi: Remove "@syncodeindex fn cp", it causes grief in
|
|
|
|
|
TeX.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add "@syncodeindex fn cp". Convert all entries
|
|
|
|
|
"@kindex f" into "@kindex f (foo)", otherwise we get index entries
|
|
|
|
|
like `n' and `s' which look weird. Convert some of the @kindex to
|
|
|
|
|
@vindex, when they refer to variables, not commands.
|
|
|
|
|
|
2000-05-01 06:34:06 +02:00
|
|
|
|
Sat Apr 29 17:01:04 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Hints): Do not use @value{GDBN in @nodes.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-04-23 Eli Zaretskii <eliz@gnu.org>
|
2000-04-23 10:15:49 +02:00
|
|
|
|
|
|
|
|
|
* Makefile.in (GDBMI_DIR): New variable.
|
|
|
|
|
(SET_TEXINPUTS): Add $(GDBMI_DIR).
|
|
|
|
|
(SFILES_DOC): Add $(GDBMI_DIR)/gdbmi.texinfo.
|
|
|
|
|
(gdbmi.texinfo): New target, for texi2roff.
|
|
|
|
|
(gdb.me, gdb.ms, gdb.mm): Depend on gdbmi.texinfo.
|
|
|
|
|
(gdb.info, gdb_toc.html): Add "-I ${GDBMI_DIR}".
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Top): Add GDB/MI to the main menu and @include
|
|
|
|
|
gdbmi.texinfo.
|
|
|
|
|
(Mode Options): Add xref to GDB/MI docs and remove a FIXME
|
|
|
|
|
comment.
|
|
|
|
|
|
2000-04-17 18:12:39 +02:00
|
|
|
|
2000-04-17 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Update description of add-symbol-file
|
2010-08-27 14:02:20 +02:00
|
|
|
|
command.
|
2000-04-17 18:12:39 +02:00
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-04-17 Eli Zaretskii <eliz@gnu.org>
|
2000-04-17 12:46:50 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Porting GDB): Don't use @value in the node name, it
|
|
|
|
|
prevents the build (and is generally a Bad Idea).
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-04-17 Eli Zaretskii <eliz@gnu.org>
|
2000-04-17 12:42:13 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Prevent makeinfo from complaining about
|
|
|
|
|
a comma inside @var.
|
|
|
|
|
(Command Files): Index markup changes from Dmitry Sivachenko
|
|
|
|
|
<dima@Chg.RU>.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-04-16 Eli Zaretskii <eliz@gnu.org>
|
2000-04-16 10:47:41 +02:00
|
|
|
|
|
|
|
|
|
* Makefile.in (LN_S): Define.
|
|
|
|
|
(gdb-cfg.texi, gdb.dvi, links2roff, inc-hist.texinfo): Don't
|
|
|
|
|
invoke "ln -s" unless it is known to work.
|
|
|
|
|
|
|
|
|
|
* configure.in (AC_PROG_LN_S): Add.
|
|
|
|
|
|
2000-04-14 20:46:19 +02:00
|
|
|
|
2000-04-14 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Pointers Are Not Always Addresses): New manual
|
|
|
|
|
section.
|
|
|
|
|
(Target Conditionals): Document ADDRESS_TO_POINTER,
|
|
|
|
|
POINTER_TO_ADDRESS.
|
|
|
|
|
|
2000-04-12 04:27:39 +02:00
|
|
|
|
2000-04-11 Daniel Berlin <dan@cgsoftware.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Replaced GDB with @value{GDBN}, @include
|
|
|
|
|
gdb-cfg.texi to get the value.
|
|
|
|
|
|
2000-04-10 17:50:15 +02:00
|
|
|
|
2000-04-10 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Fix
|
|
|
|
|
cross-references.
|
|
|
|
|
|
2000-04-08 19:49:50 +02:00
|
|
|
|
2000-04-08 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Using Different Register and Memory Data
|
|
|
|
|
Representations): New section.
|
|
|
|
|
(REGISTER_CONVERTIBLE, REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE,
|
2010-08-27 14:02:20 +02:00
|
|
|
|
REGISTER_VIRTUAL_TYPE, REGISTER_CONVERT_TO_VIRTUAL,
|
|
|
|
|
REGISTER_CONVERT_TO_RAW): Document.
|
2000-04-08 19:49:50 +02:00
|
|
|
|
|
2000-04-07 03:41:06 +02:00
|
|
|
|
Mon Apr 3 19:16:32 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Deprecate the sequence-id. Add cindex
|
2010-08-27 14:02:20 +02:00
|
|
|
|
for acknowledgments.
|
2000-04-07 03:41:06 +02:00
|
|
|
|
|
2000-03-29 10:29:00 +02:00
|
|
|
|
Tue Mar 28 18:28:45 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Replace ``qfThreadExtraInfo'' with
|
2010-08-27 14:02:20 +02:00
|
|
|
|
qThreadExtraInfo.
|
2000-03-29 10:29:00 +02:00
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
2000-03-28 J.T. Conklin <jtc@redback.com>
|
2000-03-29 06:16:57 +02:00
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdb.texinfo: Clarify which remote debug protocol commands are
|
|
|
|
|
required and which are optional.
|
2000-03-29 06:16:57 +02:00
|
|
|
|
|
2000-03-29 05:55:18 +02:00
|
|
|
|
Tue Mar 28 16:06:22 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Revert remainder of Fri Mar 24 18:06:34 2000 Andrew
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Cagney <cagney@b1.cygnus.com>. Move @chapter and @node entries
|
|
|
|
|
back to annotate.texi, rluser.texinfo and inc-hist.texinfo.
|
2000-03-29 05:55:18 +02:00
|
|
|
|
* annotate.texi: Update.
|
|
|
|
|
|
2000-03-28 18:46:24 +02:00
|
|
|
|
2000-03-28 Stan Shebs <shebs@apple.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update dates, bump to Eighth Edition (note
|
|
|
|
|
expectation of additional changes before release), update
|
|
|
|
|
ISBN, add copy of top-level menu for @ifhtml, remove explicit
|
|
|
|
|
node links, rephrase and/or shorten lines to fix formatting
|
|
|
|
|
problem in both regular and @smallbook formats.
|
|
|
|
|
* annotate.texi: Shorten lines in example, use smallexample
|
|
|
|
|
consistently everywhere.
|
|
|
|
|
* Makefile.in: Add comment about texinfo 4.0 html generation.
|
|
|
|
|
(SFILES_INCLUDED): Add annotate.texi.
|
|
|
|
|
|
2000-03-28 04:25:14 +02:00
|
|
|
|
2000-03-27 Daniel Berlin <dan@cgsoftware.com>
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdb.texinfo (Debugging Output): Added new section, documenting
|
|
|
|
|
the "set/show debug" commands.
|
2000-03-28 04:25:14 +02:00
|
|
|
|
|
2000-03-24 08:30:07 +01:00
|
|
|
|
Fri Mar 24 18:06:34 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* annotate.texi (Annotations): When GDBN omit @chapter and @node
|
2010-08-27 14:02:20 +02:00
|
|
|
|
entry.
|
2000-03-24 08:30:07 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Check for @ifinfo instead of @ifnottex.
|
|
|
|
|
(rluser.texinfo, inc-hist.texinfo, annotate.texi): Add local
|
2010-08-27 14:02:20 +02:00
|
|
|
|
@chapter and @node entries.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2000-03-24 08:30:07 +01:00
|
|
|
|
* gdb.texinfo: Link all top-level nodes.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
2000-03-24 08:27:24 +01:00
|
|
|
|
Fri Mar 24 17:56:48 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): Create $(infodir) before installing
|
2010-08-27 14:02:20 +02:00
|
|
|
|
files.
|
2000-03-24 08:27:24 +01:00
|
|
|
|
|
2000-03-24 00:50:51 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@totem.to.cygnus.com>
|
|
|
|
|
|
|
|
|
|
From David Whedon <dwhedon@gordian.com>
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* gdbint.texinfo : Added paragraphs about command deprecation.
|
2000-03-24 00:50:51 +01:00
|
|
|
|
|
2000-03-24 00:21:27 +01:00
|
|
|
|
2000-03-22 Daniel Berlin <dan@cgsoftware.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add documentation for the apropos command.
|
|
|
|
|
|
2000-03-24 01:05:38 +01:00
|
|
|
|
2000-03-20 Michael Snyder <msnyder@cleaver.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add new queries ThreadInfo and ThreadExtraInfo.
|
|
|
|
|
|
2000-03-20 23:51:36 +01:00
|
|
|
|
2000-03-20 Michael Snyder <msnyder@cleaver.cygnus.com>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdb.texinfo: Add white space to prevent overprinting in
|
2000-03-20 23:51:36 +01:00
|
|
|
|
two places.
|
|
|
|
|
|
2000-03-18 01:40:12 +01:00
|
|
|
|
2000-03-17 Stan Shebs <shebs@apple.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Many minor changes from Dmitry Sivachenko
|
|
|
|
|
<dima@Chg.RU>, also clarification of allowed content for
|
|
|
|
|
string constants.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
2000-03-16 Eli Zaretskii <eliz@gnu.org>
|
2000-03-16 12:40:53 +01:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (main menu): Add Annotations.
|
|
|
|
|
(File Options): Add @cindex entries for each command-line option.
|
|
|
|
|
Document --epoch, --annotate, --async, --interpreter, --write,
|
|
|
|
|
--statistics, and --version.
|
|
|
|
|
|
|
|
|
|
* annotate.texi: Convert to a chapter. Use @value{GDBN} instead
|
|
|
|
|
of GDB.
|
|
|
|
|
|
2000-02-23 20:46:25 +01:00
|
|
|
|
2000-02-23 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (FUNCTION_START_OFFSET): Document.
|
|
|
|
|
|
2000-02-22 20:22:37 +01:00
|
|
|
|
2000-02-22 Jim Blandy <jimb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Document COERCE_FLOAT_TO_DOUBLE --- the new form.
|
|
|
|
|
|
2000-02-16 05:44:55 +01:00
|
|
|
|
2000-02-15 Jason Molenda (jsm@bugshack.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (diststuff): New target.
|
|
|
|
|
|
2000-02-16 05:11:25 +01:00
|
|
|
|
2000-02-15 Kevin Buettner <kevinb@redhat.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: Fix wording regarding Intel's IA-64
|
2000-02-16 05:40:21 +01:00
|
|
|
|
architecture. [From Jim Wilson.]
|
2000-02-16 05:11:25 +01:00
|
|
|
|
|
2000-01-18 01:55:13 +01:00
|
|
|
|
2000-01-16 Tom Tromey <tromey@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Breakpoints): Mention breakpoint ranges.
|
|
|
|
|
(Delete Breaks): Mention range arguments.
|
|
|
|
|
(Disabling): Likewise.
|
|
|
|
|
|
2000-01-06 04:07:20 +01:00
|
|
|
|
2000-01-05 Dmitry Sivachenko <dima@Chg.RU>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Wrap "ASCII" in @sc{}; clarify a few sentences.
|
|
|
|
|
|
1999-12-14 02:06:04 +01:00
|
|
|
|
Wed Dec 8 19:53:08 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (FRAME_CHAIN_VALID): Add the generic frame-chain
|
2010-08-27 14:02:20 +02:00
|
|
|
|
valid functions.
|
1999-12-14 02:06:04 +01:00
|
|
|
|
|
1999-11-09 02:23:30 +01:00
|
|
|
|
1999-11-05 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Clarify regular expressions used in rbreak.
|
|
|
|
|
|
1999-10-19 04:47:02 +02:00
|
|
|
|
1999-10-15 Kevin Buettner <kevinb@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (MEMORY_INSERT_BREAKPOINT,
|
|
|
|
|
MEMORY_REMOVE_BREAKPOINT): Document.
|
|
|
|
|
|
|
|
|
|
Thu Oct 14 21:17:17 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (remote): Document how GDB ignores the qOffsets BSS
|
2010-08-27 14:02:20 +02:00
|
|
|
|
offset re-using the DATA offset instead.
|
1999-10-19 04:47:02 +02:00
|
|
|
|
|
1999-10-12 06:37:53 +02:00
|
|
|
|
1999-10-11 Jim Kingdon <kingdon@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Add PARM_BOUNDARY.
|
|
|
|
|
|
|
|
|
|
1999-10-05 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
From Dmitry Sivachenko <demon@gpad.ac.ru>:
|
|
|
|
|
* gdb.texinfo: Use GDBP and GDBN everywhere, fix a couple other
|
|
|
|
|
typos.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Various minor wording and formatting improvements,
|
|
|
|
|
mentions of additional command-line options.
|
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
1999-09-30 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document additional forms of specifying section
|
|
|
|
|
names and addresses for the add-symbol-file command.
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
1999-09-14 Michael Snyder <msnyder@cleaver.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix typo, add the word "have".
|
|
|
|
|
|
|
|
|
|
1999-09-14 Jim Blandy <jimb@cris.red-bean.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Document the
|
|
|
|
|
SKIP_PERMANENT_BREAKPOINT macro.
|
|
|
|
|
|
1999-09-09 02:02:17 +02:00
|
|
|
|
1999-09-07 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fiks speling errers.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix uses of @multitable.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
From Eli Zaretskii <eliz@gnu.org>:
|
1999-09-09 02:02:17 +02:00
|
|
|
|
* gdb.texinfo: Include details specific to DOS host, clarify
|
2010-08-27 14:02:20 +02:00
|
|
|
|
some confusing language, fix @ref/@xref/@pxref usages, add
|
1999-09-09 02:02:17 +02:00
|
|
|
|
comments about using with optimization, add more indexing,
|
|
|
|
|
fix info about disassembly-flavor.
|
|
|
|
|
|
|
|
|
|
Tue Sep 7 09:11:24 1999 Kevin Buettner <kevinb@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (IN_SOLIB_DYNSYM_RESOLVE_CODE,
|
|
|
|
|
SKIP_SOLIB_RESOLVER): Define.
|
|
|
|
|
|
|
|
|
|
Fri Sep 3 18:05:14 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Protocol): Review. Add tables describing ``q'' and
|
2010-08-27 14:02:20 +02:00
|
|
|
|
``g'' packets.
|
1999-09-09 02:02:17 +02:00
|
|
|
|
|
1999-08-31 03:14:27 +02:00
|
|
|
|
1999-08-30 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Create a new "Configurations" chapter with
|
2010-08-27 14:02:20 +02:00
|
|
|
|
platform-specific info, inline remote.texi and move sections of it
|
|
|
|
|
into the new chapter, move bits about info proc, heuristic search,
|
1999-08-31 03:14:27 +02:00
|
|
|
|
and register stack into the new chapter.
|
|
|
|
|
* remote.texi: Remove, now part of gdb.texinfo.
|
|
|
|
|
* Makefile.in (SFILES_INCLUDED): Remove ref to remote.texi.
|
|
|
|
|
|
|
|
|
|
1999-08-27 Jason Molenda (jsm@bugshack.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (GDB_TARGET_IS_SUN3, GDB_TARGET_IS_SUN386,
|
|
|
|
|
GDB_TARGET_IS_MACH386): These kludges have gone away.
|
|
|
|
|
|
|
|
|
|
Wed Aug 25 10:47:03 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Architecture Definition): Mention
|
2010-08-27 14:02:20 +02:00
|
|
|
|
TDEPLIBS.
|
1999-08-31 03:14:27 +02:00
|
|
|
|
|
1999-08-24 00:40:00 +02:00
|
|
|
|
1999-08-20 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove remaining "HPPA" conditionals, rewrite
|
|
|
|
|
surrounding text to fit HP-UX bits into general info.
|
|
|
|
|
(HPPA-cfg.texi): Remove, no longer useful.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove explicit links from @node lines, remove
|
|
|
|
|
HP-added "Detailed Node Listing" from main menu which confuses
|
|
|
|
|
things.
|
|
|
|
|
|
|
|
|
|
From Dmitry Sivachenko <dima@Chg.RU>:
|
|
|
|
|
* gdb.texinfo: Use @value{GDBN} instead of plain GDB, fix grouping
|
2010-08-27 14:02:20 +02:00
|
|
|
|
in description of `set environment'.
|
1999-08-24 00:40:00 +02:00
|
|
|
|
|
|
|
|
|
1999-08-17 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Update coding standard to allow pure ANSI/ISO C.
|
|
|
|
|
|
1999-08-16 21:57:19 +02:00
|
|
|
|
1999-08-12 Ben Elliston <bje@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Breakpoint Handling): Add missing words.
|
|
|
|
|
|
2004-09-16 13:15:25 +02:00
|
|
|
|
1999-08-10 Eli Zaretskii <eliz@gnu.org>
|
1999-08-16 21:57:19 +02:00
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Watchpoints): Explain some subtleties about
|
2010-08-27 14:02:20 +02:00
|
|
|
|
watch, awatch, and rwatch. Explain why the latter two cannot be
|
|
|
|
|
set as software watchpoints. Document that watchpoints for local
|
|
|
|
|
variables are deleted when the debuggee terminates.
|
1999-08-16 21:57:19 +02:00
|
|
|
|
|
|
|
|
|
Wed Aug 11 13:18:14 1999 Andrew Cagney <cagney@amy.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi (Protocol): Further clarification of the "qRcmd"
|
2010-08-27 14:02:20 +02:00
|
|
|
|
packet. Allow E.. response packet. "qRcmd" packet is no longer
|
|
|
|
|
reserved.
|
1999-08-16 21:57:19 +02:00
|
|
|
|
|
|
|
|
|
1999-08-10 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* Makefile.in: Rename inc-hist.texi to inc-hist.texinfo.
|
|
|
|
|
* gdb.texinfo: Ditto.
|
1999-08-16 21:57:19 +02:00
|
|
|
|
|
1999-08-09 23:36:23 +02:00
|
|
|
|
1999-08-06 Tom Tromey <tromey@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (KOD): New node.
|
|
|
|
|
|
|
|
|
|
Fri Aug 6 17:05:48 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi (Rcmd): Fix minor formatting typos.
|
|
|
|
|
|
|
|
|
|
Thu Aug 5 17:57:41 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi (protocol qRcmd): Allow ``OK'' and ``O...'' response
|
2010-08-27 14:02:20 +02:00
|
|
|
|
packets.
|
1999-08-09 23:36:23 +02:00
|
|
|
|
|
1999-07-20 01:30:11 +02:00
|
|
|
|
1999-07-14 Jim Blandy <jimb@zwingli.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (PREPARE_TO_PROCEED, ADDR_BITS_REMOVE): Doc
|
|
|
|
|
fixes.
|
|
|
|
|
|
1999-07-05 19:58:44 +02:00
|
|
|
|
Tue Jun 29 11:43:55 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SAVE_DUMMY_FRAME_TOS): Define.
|
|
|
|
|
|
1999-06-28 18:06:02 +02:00
|
|
|
|
Fri Jun 25 11:47:06 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi (Communication Protocol): ``v'' is in use. Fix
|
2010-08-27 14:02:20 +02:00
|
|
|
|
numerous formatting errors. Clarify ``i''. Mark ``i'', ``Z'',
|
|
|
|
|
``z'' and ``qRcmd'' as draft instead of reserved. Identify
|
|
|
|
|
packets that are not supported on all hosts. Expand examples.
|
|
|
|
|
Spell check.
|
1999-06-28 18:06:02 +02:00
|
|
|
|
|
|
|
|
|
1999-06-24 Jason Molenda (jsm@bugshack.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Recognize html, install-html. Add targets
|
|
|
|
|
to build HTML versions of documentation via texi2html.
|
|
|
|
|
|
|
|
|
|
Thu Jun 24 15:59:03 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Testsuite): New chapter, information about the
|
2010-08-27 14:02:20 +02:00
|
|
|
|
testsuite.
|
1999-06-28 18:06:02 +02:00
|
|
|
|
|
|
|
|
|
Fri Jun 25 02:40:34 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi (Communication Protocol): Rewrite.
|
|
|
|
|
|
|
|
|
|
Thu Jun 24 16:59:54 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Fix uses of xref.
|
|
|
|
|
|
1999-06-21 15:27:42 +02:00
|
|
|
|
Thu Jun 17 17:23:25 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add an anti-printf exhortation, and update the
|
|
|
|
|
info about patch submission.
|
|
|
|
|
|
1999-06-07 21:19:32 +02:00
|
|
|
|
Mon Jun 7 15:49:40 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
From Per Bothner <bothner@cygnus.com>:
|
|
|
|
|
* gdb.texinfo: Document Chill support.
|
|
|
|
|
|
|
|
|
|
Fri Jun 4 16:58:22 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SP_REGNUM, FP_REGNUM, PC_REGNUM): Add reference
|
2010-08-27 14:02:20 +02:00
|
|
|
|
to corresponding TARGET_READ_reg TARGET_WRITE_reg macros.
|
|
|
|
|
Document that the value should be greater-than or equal-to zero.
|
|
|
|
|
(NO_STD_REGS): Document. Deprecate.
|
1999-06-07 21:19:32 +02:00
|
|
|
|
|
1999-06-01 17:44:41 +02:00
|
|
|
|
Tue Jun 1 15:04:15 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (TARGET_COMPLEX_BIT, TARGET_DOUBLE_COMPLEX_BIT):
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Document that these are not used.
|
1999-06-01 17:44:41 +02:00
|
|
|
|
|
|
|
|
|
Thu May 27 09:28:15 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (EXTRACT_STRUCT_VALUE_ADDRESS_P): Document.
|
|
|
|
|
|
1999-05-25 20:09:09 +02:00
|
|
|
|
Mon May 24 10:07:39 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (FRAME_NUM_ARGS): Update definition. Parameter
|
2010-08-27 14:02:20 +02:00
|
|
|
|
numargs was dropped.
|
1999-05-25 20:09:09 +02:00
|
|
|
|
|
|
|
|
|
Thu May 20 12:26:59 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (FRAMELESS_FUNCTION_INVOCATION): Update.
|
|
|
|
|
|
1999-05-05 16:45:51 +02:00
|
|
|
|
Tue Apr 27 19:14:20 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SKIP_PROLOGUE, SKIP_PROLOGUE_FRAMELESS_P):
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Update.
|
1999-05-05 16:45:51 +02:00
|
|
|
|
|
1999-04-26 20:34:20 +02:00
|
|
|
|
Thu Apr 22 13:07:37 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (USE_GENERIC_DUMMY_FRAMES): Document.
|
|
|
|
|
(GET_SAVED_REGISTER): Update, not just the a29k uses this.
|
|
|
|
|
|
|
|
|
|
Wed Apr 21 13:59:01 1999 Dave Brolley <brolley@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix typos: $ -> @.
|
|
|
|
|
|
|
|
|
|
Tue Apr 20 11:59:38 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (REGISTER_NAMES, BREAKPOINT, BIG_BREAKPOINT,
|
2010-08-27 14:02:20 +02:00
|
|
|
|
LITTLE_BREAKPOINT, LITTLE_REMOTE_BREAKPOINT,
|
|
|
|
|
BIG_REMOTE_BREAKPOINT): Deprecate in favor of REGISTER_NAME and
|
|
|
|
|
BREAKPOINT_FROM_PC.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
1999-04-26 20:34:20 +02:00
|
|
|
|
Mon Apr 12 16:00:44 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (CALL_DUMMY_STACK_ADJUST_P,
|
2010-08-27 14:02:20 +02:00
|
|
|
|
CALL_DUMMY_STACK_ADJUST): Document.
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
|
|
|
|
Thu Apr 8 17:23:15 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (CALL_DUMMY_P, CALL_DUMMY_WORDS,
|
2010-08-27 14:02:20 +02:00
|
|
|
|
SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY): Define.
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
|
|
|
|
1999-04-02 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (MAINTENANCE_CMDS): Remove ref, since it no
|
|
|
|
|
longer exists.
|
|
|
|
|
|
|
|
|
|
Tue Mar 9 19:25:11 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, remote.texi, all-cfg.texi, HPPA-cfg.texi: Remove
|
2010-08-27 14:02:20 +02:00
|
|
|
|
nearly all @ifset/@ifclear conditionals; nobody uses them, and
|
|
|
|
|
they make the manual source incomprehensible.
|
1999-04-26 20:34:20 +02:00
|
|
|
|
* h8-cfg.texi: Remove, hasn't been used in years.
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
Thu Feb 11 18:00:59 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update the credits.
|
|
|
|
|
|
|
|
|
|
Mon Feb 8 17:33:57 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix mistakes noticed in printout of last
|
|
|
|
|
draft, add Alpha to discussion of heuristic fence post.
|
|
|
|
|
|
|
|
|
|
Fri Feb 5 17:20:00 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, remote.texi: Many changes; update to Seventh
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Edition, merge some HP changes into mainline, describe some
|
|
|
|
|
previously undocumented features, describe more of the target
|
|
|
|
|
commands available, eliminate obsolete section on renamed
|
|
|
|
|
commands.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* all-cfg.texi, HPPA-cfg.texi: Remove some obsolete conditionals.
|
|
|
|
|
|
|
|
|
|
Wed Jan 20 17:47:45 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Make many HPPA conditionals unconditional,
|
|
|
|
|
including catchpoint description, since now on for all configs.
|
|
|
|
|
* all-cfg.texi: @clear HPPA, since is mainly for very HP-specific
|
|
|
|
|
specializations.
|
|
|
|
|
|
|
|
|
|
Thu Jan 14 17:10:12 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (GDBvn.texi): Fix match expression to work with
|
|
|
|
|
current format of VERSION in gdb/Makefile.in.
|
|
|
|
|
* gdb.texinfo: Fix node ref to match new readline.
|
|
|
|
|
|
|
|
|
|
Wed Jan 13 10:38:40 1999 Edith Epstein <eepstein@sophia.cygnus.com>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdb.texinfo: Changes made as part of a project to merge in
|
|
|
|
|
changes made by HP. Documentation makes extensive use of
|
1999-04-16 03:35:26 +02:00
|
|
|
|
@ifclear HPPA and @ifset HPPA. The HP manual omits doumentation
|
|
|
|
|
on remote debugging. There are differences in documentation
|
2010-08-27 14:02:20 +02:00
|
|
|
|
(HP vs. non-HP) on C++ support (aCC vs. gnu gcc++). Also,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
the HP manual discusses catchpoints, hardware watchpoints, and
|
|
|
|
|
some HPUX specific limitations for shared library support.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
There are also a number of @node changes.
|
|
|
|
|
|
|
|
|
|
1999-01-12 Jason Molenda (jsm@bugshack.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Formatting): Disambiguate a sentence.
|
|
|
|
|
(C Usage): Same.
|
|
|
|
|
|
|
|
|
|
Wed Jan 6 11:55:34 1999 David Taylor <taylor@texas.cygnus.com>
|
|
|
|
|
|
|
|
|
|
The following changes were made by Edith Epstein
|
2010-08-27 14:02:20 +02:00
|
|
|
|
<eepstein@cygnus.com> as part of a project to merge in changes
|
|
|
|
|
made by HP.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* HPPA-cfg.texi: new file.
|
|
|
|
|
|
|
|
|
|
* all-cfg.texi: set HPPA for HP PA-RISC targets.
|
|
|
|
|
|
|
|
|
|
* refcard.tex: change documentation about catch.
|
|
|
|
|
removed info catch.
|
|
|
|
|
|
|
|
|
|
Mon Jan 4 18:29:18 1999 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Expand on GDB's coding standards,
|
|
|
|
|
specify the use of arg names with prototypes.
|
|
|
|
|
|
|
|
|
|
1998-12-14 J.T. Conklin <jtc@redbacknetworks.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix tipo.
|
|
|
|
|
|
|
|
|
|
Sun Dec 13 10:27:59 1998 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Document TARGET_BYTE_ORDER_DEFAULT and
|
2010-08-27 14:02:20 +02:00
|
|
|
|
TARGET_BYTE_ORDER_SELECTABLE_P.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Thu Dec 10 16:07:09 1998 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (FRAME_FIND_SAVED_REGS): Document.
|
|
|
|
|
|
|
|
|
|
1998-12-09 Jim Blandy <jimb@zwingli.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* agentexpr.texi: New file.
|
|
|
|
|
|
|
|
|
|
Wed Dec 9 21:13:57 1998 Andrew Cagney <cagney@chook>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (REGISTER_NAME): Replace REGISTER_NAMES.
|
|
|
|
|
|
|
|
|
|
1998-12-03 J.T. Conklin <jtc@redbacknetworks.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi: Changed wording that implied that the GDB remote
|
|
|
|
|
protocol caches register values instead of GDB itself.
|
|
|
|
|
|
|
|
|
|
Tue Dec 1 17:45:43 1998 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add some info about symbol readers.
|
|
|
|
|
(CHILL_PRODUCER, etc): Comment out descriptions, not useful.
|
|
|
|
|
(IN_SOLIB_CALL_TRAMPOLINE): Rename info from IN_SOLIB_TRAMPOLINE.
|
|
|
|
|
(IN_SOLIB_RETURN_TRAMPOLINE): Describe.
|
|
|
|
|
(KERNEL_DEBUGGING, MIPSEL): No info about these, remove.
|
|
|
|
|
|
|
|
|
|
Mon Nov 30 11:32:21 1998 Andrew Cagney <cagney@chook>
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* gdbint.texinfo (FRAME_CHAIN_VALID_ALTERNATE):
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Sat Nov 28 13:45:53 1998 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (INNER_THAN): Update, now takes parameters.
|
|
|
|
|
|
|
|
|
|
Fri Nov 27 12:39:45 1998 Andrew Cagney <cagney@chook>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (NO_SINGLE_STEP): Replace with
|
2010-08-27 14:02:20 +02:00
|
|
|
|
SOFTWARE_SINGLE_STEP_P and SOFTWARE_SINGLE_STEP.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Wed Oct 14 10:02:40 1998 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix minor typos.
|
|
|
|
|
|
|
|
|
|
Wed Sep 30 18:03:19 1998 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Complete overhaul. Group descriptions more
|
|
|
|
|
logically, add more info on generic algorithms, remove much
|
|
|
|
|
obsolete and/or wrong material.
|
|
|
|
|
|
|
|
|
|
Fri Jul 24 17:51:38 1998 Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Method Type Descriptor): Expand and correct.
|
|
|
|
|
|
|
|
|
|
Mon May 4 10:37:12 1998 Brian Youmans (3diff@gnu.org)
|
|
|
|
|
|
|
|
|
|
* refcard.tex: Copyright, address updates.
|
|
|
|
|
|
|
|
|
|
Tue Apr 21 18:09:56 1998 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (EDITION, DATE): Update and change to use ordinals
|
|
|
|
|
for the edition instead of confusing GDB-version-like numbers.
|
|
|
|
|
|
|
|
|
|
Mon Apr 13 14:05:00 1998 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (hbreak, watch): Fix typo, "date" -> "data".
|
|
|
|
|
|
|
|
|
|
Thu Apr 2 16:52:44 1998 Jason Molenda (crash@bugshack.cygnus.com)
|
|
|
|
|
|
2008-07-07 14:05:30 +02:00
|
|
|
|
* LRS: Reformat a bit to keep text under 80 columns.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Thu Apr 2 16:10:36 1998 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add some credits, mention bug monitor.
|
|
|
|
|
* remote.texi: Mention mips monitor targets.
|
|
|
|
|
* gdbint.texinfo: Describe SP_REGNUM, STEP_SKIPS_DELAY.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
Mon Feb 2 17:13:03 1998 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove obsolete mentions of pinsn.c and opcode.h
|
2010-08-27 14:02:20 +02:00
|
|
|
|
files, finish sorting of host vs target vs native macros, describe
|
|
|
|
|
some more of them.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Tue Jan 13 16:44:50 1998 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Conditionals): Document change from
|
|
|
|
|
using NO_MMALLOC to it's inverse, USE_MMALLOC.
|
|
|
|
|
|
|
|
|
|
Mon Nov 24 13:55:21 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Conditionals): Document
|
2010-08-27 14:02:20 +02:00
|
|
|
|
PRINTF_HAS_LONG_DOUBLE, SCANF_HAS_LONG_DOUBLE, HAVE_LONG_DOUBLE.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Fri Jul 4 14:52:31 1997 Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Conditionals): Add CRLF_SOURCE_LINES.
|
|
|
|
|
Document LSEEK_NOT_LINEAR.
|
|
|
|
|
|
|
|
|
|
Tue Mar 25 14:44:09 1997 Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stab Section Basics): Make it clear that only
|
|
|
|
|
some versions of the GNU linker remove the leading N_UNDF symbol.
|
|
|
|
|
|
|
|
|
|
Thu Feb 27 17:45:19 1997 Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (String Field): Document type number pairs here,
|
|
|
|
|
instead of in the Sun specific section.
|
|
|
|
|
(Include Files): The GNU linker supports the N_BINCL
|
|
|
|
|
optimization. Clarify the N_BINCL value, and what it is used
|
|
|
|
|
for.
|
|
|
|
|
(Procedures): Document N_FUN with an empty string to mark the end
|
|
|
|
|
of a function.
|
|
|
|
|
(Typedefs): Mention that Sun compilers may use N_GSYM for a type.
|
|
|
|
|
(Sun Differences): Remove this node, as the information is now
|
|
|
|
|
elsewhere in the main document.
|
|
|
|
|
(Stab Section Basics): Mention that the GNU linker may optimize
|
|
|
|
|
stabs and remove the leading N_UNDF symbol.
|
|
|
|
|
|
|
|
|
|
Mon Dec 9 12:23:32 1996 Roland Pesch <roland@wrs.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, refcard.tex: Restore author credit
|
|
|
|
|
|
|
|
|
|
Wed Oct 2 22:01:36 1996 Fred Fish <fnf@fishfood.ninemoons.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (SIGTRAMP_START, SIGTRAMP_END): Update
|
|
|
|
|
documentation to account for START and END macros taking
|
|
|
|
|
one arg.
|
|
|
|
|
|
|
|
|
|
Thu Aug 22 17:59:03 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
From: Eberhard Mattes <mattes@azu.informatik.uni-stuttgart.de>
|
|
|
|
|
* gdb.texinfo (Frames): Fix typo.
|
|
|
|
|
|
|
|
|
|
Tue Jul 23 10:06:20 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (NO_SINGLE_STEP): Document that single_step takes
|
|
|
|
|
a target_signal as arg type, not a pid.
|
|
|
|
|
|
|
|
|
|
Fri Jul 12 11:10:05 1996 Stu Grossman (grossman@critters.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Document `set assembly-language'.
|
|
|
|
|
|
|
|
|
|
Thu Jul 11 13:50:28 1996 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi: Update list of stubs in the GDB distribution.
|
|
|
|
|
|
|
|
|
|
Fri Jul 5 15:38:54 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (NO_MMCHECK): Renamed from NO_MMALLOC_CHECK.
|
2010-08-27 14:02:20 +02:00
|
|
|
|
Also document that some systems can use mmalloc but must define
|
|
|
|
|
this if their C runtime allocates memory that is later freed.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(MMCHECK_FORCE): Document new macro.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
Fri Jun 28 22:17:10 1996 Dawn Perchik <dawn@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi: Add documentation for target Sparclet.
|
|
|
|
|
|
|
|
|
|
Mon Jun 24 18:12:22 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
|
|
|
|
|
|
2004-02-05 00:24:51 +01:00
|
|
|
|
* Makefile.in (srcdir, VPATH, prefix, infodir, INSTALL,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
INSTALL_PROGRAM, INSTALL_DATA): Use autoconf set values.
|
|
|
|
|
* configure.in: Rewritten for autoconf.
|
|
|
|
|
* configure: New.
|
|
|
|
|
|
|
|
|
|
Mon Jun 17 10:43:41 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (DVIPS): New define, set to dvips.
|
|
|
|
|
(dvi): Add stabs.dvi.
|
|
|
|
|
(ps): New target.
|
|
|
|
|
(all-doc): Depend on info, dvi, and ps targets.
|
|
|
|
|
(STAGESTUFF): Add *.ps and *.dvi files.
|
|
|
|
|
(clean-info, clean-dvi): Remove.
|
|
|
|
|
(mostlyclean): Does not depend upon clean-info or clean-dvi,
|
|
|
|
|
rules completely rewritten.
|
|
|
|
|
(maintainer-clean): Remove clean-info and clean-dvi
|
|
|
|
|
dependencies and put their actions in the rules.
|
|
|
|
|
(gdb.ps): New target
|
2004-02-05 00:24:51 +01:00
|
|
|
|
(gdb.dvi, gdbgui.dvi, gdbint.dvi, stabs.dvi): Remove
|
1999-04-16 03:35:26 +02:00
|
|
|
|
intermediate TeX files, whether they have 2 or 3 character
|
|
|
|
|
extensions.
|
|
|
|
|
(gdbint.ps): Add target and rules.
|
|
|
|
|
(gdb-internals): Delete unused target.
|
|
|
|
|
(Makefile): Depends upon config.status also.
|
|
|
|
|
|
|
|
|
|
Sat Mar 30 15:46:58 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (CC_HAS_LONG_LONG): Clarify when/how this is
|
|
|
|
|
set.
|
|
|
|
|
|
|
|
|
|
Sat Mar 16 15:10:20 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
|
|
|
|
|
* gdb.texinfo (Expressions): Fix erroneous array constant example.
|
|
|
|
|
|
|
|
|
|
Sat Mar 16 13:28:45 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add missing "@bullet" to some "@itemize" commands.
|
|
|
|
|
|
|
|
|
|
Sat Feb 10 03:28:36 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print settings): Document
|
|
|
|
|
`set/show print static-members' commands.
|
|
|
|
|
|
|
|
|
|
Wed Jan 10 14:16:37 1996 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Native): Document name change, coredep.c to
|
|
|
|
|
core-aout.c.
|
|
|
|
|
|
|
|
|
|
Wed Dec 13 12:35:28 1995 Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Include Files): Document the values the SunOS4
|
|
|
|
|
linker creates for N_BINCL/N_EINCL/N_EXCL stabs.
|
|
|
|
|
|
|
|
|
|
Fri Dec 8 21:08:44 1995 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releases): Change gdb.tar.Z to gdb.tar.gz.
|
|
|
|
|
Fix typo.
|
|
|
|
|
|
|
|
|
|
Fri Dec 1 11:07:50 1995 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Releases): Make "gdb.tar.gz" rather than
|
|
|
|
|
"gdb.tar.Z".
|
|
|
|
|
|
|
|
|
|
Wed Sep 20 13:14:10 1995 Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (maintainer-clean): New target, synonym for
|
|
|
|
|
realclean.
|
|
|
|
|
|
|
|
|
|
Thu Aug 3 10:45:37 1995 Fred Fish <fnf@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* Update all FSF addresses except those in COPYING* files.
|
|
|
|
|
|
|
|
|
|
Wed Jul 19 18:43:03 1995 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
From Richard Earnshaw (rearnsha@armltd.co.uk):
|
|
|
|
|
* gdb.texinfo (convenience variables): Document $_exitcode.
|
|
|
|
|
(quit): Document optional expression to use as exit code.
|
|
|
|
|
|
|
|
|
|
Thu Jun 22 21:27:33 1995 Victoria Mixon <victoria@cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, remote.texi: Brought up to date with various
|
|
|
|
|
GDB changes.
|
|
|
|
|
|
|
|
|
|
Tue Jun 20 14:35:38 1995 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update dates and versions, fix comments about
|
|
|
|
|
hardware watchpoints in future releases and about the
|
|
|
|
|
sharedlibrary command.
|
|
|
|
|
|
|
|
|
|
Mon May 8 09:30:36 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Remove node `XCOFF differences'. Describe value of
|
|
|
|
|
C_FUN stab. Other cleanups.
|
|
|
|
|
|
|
|
|
|
Wed Apr 19 07:02:19 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* remote.texi (Bootstrapping): Clarify that flush_i_cache is only
|
|
|
|
|
for the sparc stub.
|
|
|
|
|
|
|
|
|
|
Tue Apr 11 11:41:49 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* annotate.texi: Clarify which addresses have differing formats
|
|
|
|
|
depending on the language and which do not.
|
|
|
|
|
|
|
|
|
|
Tue Mar 28 16:56:22 1995 J.T. Conklin <jtc@rtl.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi (NetWare): Changed example to use BOARD= instead of
|
|
|
|
|
NODE= argument to reflect correspoding change to gdbserve.nlm.
|
|
|
|
|
|
|
|
|
|
Fri Mar 17 06:47:02 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): Mention the fact that
|
|
|
|
|
GDB, as well as AIX dbx, supports the size type attribute.
|
|
|
|
|
|
|
|
|
|
Thu Mar 16 12:11:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): Document types -31 to -34.
|
|
|
|
|
|
|
|
|
|
Mon Mar 13 16:49:13 1995 Per Bothner <bothner@kalessin.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Define): Document $arg0... arguments to commands,
|
|
|
|
|
and new 'if' and 'while' commands.
|
|
|
|
|
|
|
|
|
|
Fri Feb 17 15:24:35 1995 Per Bothner <bothner@kalessin.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Artificial arrays): Note use of coerce-to-array-type.
|
|
|
|
|
|
|
|
|
|
Wed Feb 15 11:59:18 1995 J.T. Conklin <jtc@rtl.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* all-cfg.texi: New flag, GDBSERVE, for NetWare's gdbserve.nlm.
|
|
|
|
|
* remote.texi (NetWare): New node, how to use gdbserve.nlm on
|
|
|
|
|
NetWare targets. Mostly stolen from the Server node.
|
|
|
|
|
|
|
|
|
|
Fri Feb 10 20:20:08 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Setting): Talk about the language of a source file
|
|
|
|
|
versus the working language. The old documentation did not match
|
|
|
|
|
what GDB did.
|
|
|
|
|
|
|
|
|
|
Wed Feb 1 20:26:36 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Source Files): Document N_SO used to mark the end
|
|
|
|
|
of a source file.
|
|
|
|
|
|
|
|
|
|
Mon Jan 23 14:23:37 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Processes): New node.
|
|
|
|
|
|
|
|
|
|
Tue Jan 17 14:09:03 1995 Ian Lance Taylor <ian@sanguine.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* remote.texi: Update documentation of set/show mipsfpu.
|
|
|
|
|
|
2000-02-07 01:19:45 +01:00
|
|
|
|
Fri Jan 6 17:17:28 1995 Stan Shebs <shebs@andros.cygnus.com>
|
|
|
|
|
|
|
|
|
|
* gdbgui.texinfo: New file, manual for GUI (gdbtk) users.
|
|
|
|
|
* Makefile.in (gdbgui.dvi, gdbgui.info): New actions.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Sun Sep 4 16:47:21 1994 Stan Shebs (shebs@andros.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Removed mentions of some incorrectly placed and
|
|
|
|
|
obsolete conditionals, described some others.
|
|
|
|
|
|
|
|
|
|
Mon Aug 1 15:42:39 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove references to BROKEN_LARGE_ALLOCA and
|
|
|
|
|
SET_STACK_LIMIT_HUGE; they were removed from GDB 14 May 1994.
|
|
|
|
|
|
|
|
|
|
Mon Aug 1 15:12:02 1994 Stan Shebs (shebs@andros.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Put regex conditionals in their own table.
|
|
|
|
|
|
|
|
|
|
Tue Jul 26 18:32:52 1994 Stan Shebs (shebs@andros.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Removed mentions of many obsolete conditionals,
|
|
|
|
|
described or fixed the descriptions of many others.
|
|
|
|
|
|
|
|
|
|
Sun Jul 17 14:14:03 1994 Stan Shebs (shebs@andros.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add some more credits.
|
|
|
|
|
* gdbint.texinfo: Capitalize GDB consistently, describe some
|
|
|
|
|
macros and remove some.
|
|
|
|
|
|
|
|
|
|
Thu Jul 14 18:43:17 1994 Stan Shebs (shebs@andros.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Removed mentions of many incorrectly placed and
|
|
|
|
|
obsolete conditionals, described some others.
|
|
|
|
|
|
|
|
|
|
Tue Jul 12 12:23:15 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (help targets): Changed to `help target', which
|
|
|
|
|
is the correct gdb command.
|
|
|
|
|
|
|
|
|
|
Wed Jun 22 18:00:51 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* annotate.texi (TODO): New node, for keeping track of annotations
|
|
|
|
|
suggested but not yet implemented.
|
|
|
|
|
|
|
|
|
|
Wed Jun 1 16:10:45 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Statics): Value of xcoff C_BSTAT points to
|
|
|
|
|
another symbol, it is not the address itself.
|
|
|
|
|
|
|
|
|
|
Thu May 5 20:23:36 1994 Stan Shebs (shebs@andros.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stab Section Basics): Add comment about alignment
|
|
|
|
|
of stabs-in-coff sections.
|
|
|
|
|
|
|
|
|
|
Wed May 4 06:26:11 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* annotate.texi: Change edition to 0.5 and date to May 1994.
|
|
|
|
|
Add index.
|
|
|
|
|
(Frames): New node, for frame annotation.
|
|
|
|
|
(Displays): New node, for display annotation.
|
|
|
|
|
|
|
|
|
|
* remote.texi (MIPS Remote): Say that set timeout doesn't apply
|
|
|
|
|
when waiting for your program to stop.
|
|
|
|
|
|
|
|
|
|
Fri Apr 29 18:24:46 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* annotate.texi (Breakpoint Info): Document annotation of header
|
|
|
|
|
fields and record annotation.
|
|
|
|
|
|
|
|
|
|
Thu Apr 28 07:44:28 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* annotate.texi: New file, to document annotations.
|
|
|
|
|
|
|
|
|
|
Thu Apr 21 14:20:51 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (clean): Don't remove GDBvn.texi (apparently on Jan
|
|
|
|
|
16 I meant to make this change but did not). Do remove gdb-cfg.texi.
|
|
|
|
|
|
|
|
|
|
Wed Apr 20 11:22:48 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stab Section Basics): Say what is in .stab
|
|
|
|
|
section, and say n_strx field is compilation unit relative.
|
|
|
|
|
* stabs.texinfo: Don't use @code for a.out when it is the name of
|
|
|
|
|
an object file format.
|
|
|
|
|
|
|
|
|
|
Wed Apr 13 20:29:54 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Refer to file names, not path names, per rms
|
|
|
|
|
convention.
|
|
|
|
|
(Arguments): Fix typo.
|
|
|
|
|
|
|
|
|
|
Thu Mar 24 08:09:12 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Global Variables): Talk about stabs in files
|
|
|
|
|
where variables are referenced, but not defined.
|
|
|
|
|
|
|
|
|
|
Wed Mar 23 07:16:36 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Move stuff on @ and # type descriptors from node
|
|
|
|
|
Cplusplus to new nodes Member Type Descriptor and Method Type
|
|
|
|
|
Descriptor. Re-write stuff for #.
|
|
|
|
|
|
|
|
|
|
Wed Mar 16 08:20:19 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Don't document "set print
|
|
|
|
|
fast-symbolic-addr off". The bug which it worked around was fixed
|
|
|
|
|
on 25 Feb 94 in coffread.c, so I'm nuking the command.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Alternate Entry Points): New node, rewritten from
|
|
|
|
|
N_ENTRY node.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Type Descriptors): Add 'Y' type descriptor.
|
|
|
|
|
|
|
|
|
|
Tue Mar 15 08:43:02 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host Conditionals, Target Conditionals): Remove
|
|
|
|
|
references to ieee-float.c.
|
|
|
|
|
|
|
|
|
|
Fri Mar 11 08:09:40 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Set Breaks): Update documentation for tbreak to
|
|
|
|
|
match what the code actually does.
|
|
|
|
|
|
|
|
|
|
Wed Mar 9 19:43:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Symbol Descriptors): Add OS9000 symbol descriptor s.
|
|
|
|
|
|
|
|
|
|
Tue Mar 1 17:04:43 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Type Descriptors): Add OS9000 type descriptors c,
|
|
|
|
|
i, and b.
|
|
|
|
|
|
|
|
|
|
Wed Feb 23 10:44:18 1994 Jim Kingdon (kingdon@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Document N_RBRAC as function relative for COFF as
|
|
|
|
|
well as for ELF and SOM. Unify the descriptions of ELF and SOM
|
|
|
|
|
as "stabs in sections" rather than just saying "ELF and SOM".
|
|
|
|
|
Also make that stuff apply to COFF.
|
|
|
|
|
|
|
|
|
|
Fri Feb 18 08:25:58 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Formatting Documentation): Change GhostScript to
|
|
|
|
|
Ghostscript.
|
|
|
|
|
|
|
|
|
|
Fri Feb 4 06:31:31 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Continuing and Stepping): When talking about "step"
|
|
|
|
|
versus functions without line numbers, also mention stepping into
|
|
|
|
|
them as well as "step" when you are in them. Tell the user how to
|
|
|
|
|
deal with the situation. Add comment about "debugging information".
|
|
|
|
|
|
|
|
|
|
Thu Feb 3 11:39:59 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Enumerations): Document restriction on where
|
|
|
|
|
enumeration types can appear and still win with GDB.
|
|
|
|
|
|
|
|
|
|
Wed Feb 2 11:29:17 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): Document format for type
|
|
|
|
|
-16.
|
|
|
|
|
|
|
|
|
|
Thu Jan 27 16:53:56 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Selection, Frame Info): Update information about
|
|
|
|
|
arbitrary frame specficiations.
|
|
|
|
|
|
|
|
|
|
Wed Jan 26 15:31:57 1994 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, remote.texi: general editing pass prior to Net release
|
|
|
|
|
|
|
|
|
|
Tue Jan 25 12:12:04 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (String Field): Discuss continuing stabs with ?.
|
|
|
|
|
|
|
|
|
|
Wed Jan 19 06:39:24 1994 David J. Mackenzie (djm@thepub.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Non-Stab Symbol Types): Mention N_SET* | N_EXT.
|
|
|
|
|
|
|
|
|
|
Sun Jan 16 12:43:32 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Re-do stuff about C_BSTAT and move from XCOFF
|
|
|
|
|
Differences node to Statics node.
|
|
|
|
|
(Statics): Discuss XCOFF use of V symbol descriptor.
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Remove refcard.dvi and GDBvn.texi in realclean,
|
|
|
|
|
not clean.
|
|
|
|
|
|
|
|
|
|
Wed Jan 12 21:29:54 1994 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Document `set print
|
|
|
|
|
fast-symbolic-addr' and improve the doc for some other
|
|
|
|
|
`set print's.
|
|
|
|
|
|
|
|
|
|
Mon Jan 3 17:23:07 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (String Field): Talk about defining several type
|
|
|
|
|
numbers at once.
|
|
|
|
|
Fix lint regarding changing node ELF Transformations to
|
|
|
|
|
ELF and SOM Transformations.
|
|
|
|
|
|
|
|
|
|
Fri Dec 31 00:42:43 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Insert Peter Kessler's name as inventor (I think).
|
|
|
|
|
|
|
|
|
|
Tue Dec 28 09:30:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Cross-References): `::' is for nested types only
|
|
|
|
|
within <>.
|
|
|
|
|
(Structures): Document static members.
|
|
|
|
|
|
|
|
|
|
Mon Dec 27 13:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Document S type attribute.
|
|
|
|
|
|
|
|
|
|
Sun Dec 26 20:46:36 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Add notes about stabs-in-som where appropriate.
|
|
|
|
|
|
|
|
|
|
Fri Dec 3 19:13:19 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix a few typos.
|
|
|
|
|
|
|
|
|
|
Sun Nov 28 18:06:25 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, remote.texi: formatting improvements
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (New Features): mention threads.
|
|
|
|
|
(Summary, C): fix xrefs in newly contributed text.
|
|
|
|
|
(Threads): index entries, clarifications, example
|
|
|
|
|
(passim): minor typos fixed, phrasing improvements
|
|
|
|
|
|
|
|
|
|
* remote.texi (Bootstrapping): rephrase text on ^C and add index
|
|
|
|
|
entries; (Server): explain use of gdbserver w/real-time systems,
|
|
|
|
|
add example of conflicting TCP port; (MIPS Remote) break up
|
|
|
|
|
running text into table, highlighting commands, and add example.
|
2004-02-05 00:24:51 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
Wed Nov 24 14:15:56 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* refcard.tex: avoid bad linebreaks even when REFEDITS=psrc.sed
|
|
|
|
|
|
|
|
|
|
Fri Nov 12 16:10:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Nested Symbols): New node.
|
|
|
|
|
(String Field, Symbol Descriptors, Cross-References): Refer to it.
|
|
|
|
|
|
|
|
|
|
Thu Nov 11 13:26:45 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stabs in ELF): Clarify how Bbss.bss work with respect
|
|
|
|
|
to picking which Bbss.bss symbol to use, and (because there seems to
|
|
|
|
|
be no good way of doing it) re-write some of the text to make it
|
|
|
|
|
sound like Bbss.bss isn't such a great idea after all (as currently
|
|
|
|
|
designed).
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (C): In addition to saying people have to use g++ for
|
|
|
|
|
good results, say they have to use stabs. Specifically say cfront
|
|
|
|
|
doesn't work well.
|
|
|
|
|
(Summary): Merge in information on Modula-2, Pascal, and Chill from
|
|
|
|
|
the gdb README. Add xrefs to places where the support for the various
|
|
|
|
|
languages is described in detail.
|
|
|
|
|
|
|
|
|
|
Mon Nov 8 11:47:34 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Clean up stuff about visibility and virtual
|
|
|
|
|
characters.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (N_M2C): Cite Sun doc.
|
|
|
|
|
|
|
|
|
|
Fri Nov 5 16:27:27 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: updates re threads.
|
|
|
|
|
* remote.texinfo: avoid index entries starting with digits.
|
|
|
|
|
|
|
|
|
|
Tue Nov 2 09:08:37 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Enumerations): Talk about large, negative and
|
|
|
|
|
octal values. Clean up cross reference to type attributes.
|
|
|
|
|
(String Field): Say that GDB 4.11 supports size attribute.
|
|
|
|
|
|
|
|
|
|
Sun Oct 31 13:31:10 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* remote.texi (VxWorks Remote): Clarify that rebuilding VxWorks kernel
|
|
|
|
|
is a mandatory step. Make the stuff about that more concise.
|
|
|
|
|
|
|
|
|
|
Wed Oct 27 00:25:46 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Class Names): New node.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Command Files): Explain order of init file reading.
|
|
|
|
|
|
|
|
|
|
* remote.texi (Bootstrapping): Talk about getting the serial driver
|
|
|
|
|
to deal with ^C sent by gdb to stop the remote system.
|
|
|
|
|
|
|
|
|
|
Mon Oct 25 03:25:41 1993 Tom Lord (lord@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* libgdb.texinfo (I/O): incorporated better phrasing from rich.
|
|
|
|
|
|
|
|
|
|
* libgdb.texinfo (Defining Commands): made the DOC arg
|
|
|
|
|
to gdb_define_app_command a char * instead of char **
|
|
|
|
|
per a suggestion from kingdon.
|
|
|
|
|
|
|
|
|
|
* libgdb.texinfo: total rewrite from a different starting
|
|
|
|
|
premise.
|
|
|
|
|
|
|
|
|
|
Wed Oct 20 18:07:44 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Local Variable Parameters): Re-write paragraph on
|
|
|
|
|
floats passed as doubles (to improve clarity).
|
|
|
|
|
|
|
|
|
|
Tue Oct 19 14:21:18 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Source Path): index entries for $cwd, $pdir
|
|
|
|
|
|
|
|
|
|
* a4rc.sed: update to work with Andreas Vogel papersize params
|
|
|
|
|
|
|
|
|
|
* refcard.tex: use Andreas Vogel simplifications of papersize
|
|
|
|
|
params; remove useless version info; update copyright date.
|
|
|
|
|
|
|
|
|
|
Tue Oct 19 10:46:22 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Symbols): Add class NAME to doc for ptype.
|
|
|
|
|
|
|
|
|
|
Tue Oct 12 09:11:45 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Files): Say what address the load command loads it at.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Common Blocks): Minor cleanups.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Update ld stabs in elf relocation to reflect the fact
|
|
|
|
|
that Sun has backed away from the linker kludge and thus the relevant
|
|
|
|
|
issue is changes to the SunPRO tools, not the Solaris linker.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Traditional Integer Types): Clean up description
|
|
|
|
|
of octal bounds a little bit. Document extra leading zeroes.
|
|
|
|
|
|
|
|
|
|
Thu Oct 7 16:15:37 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Signaling): Update for symbolic symbol names
|
|
|
|
|
and add a section explaining the difference between the GDB
|
|
|
|
|
signal command and the shell kill utility.
|
|
|
|
|
|
|
|
|
|
Wed Oct 6 13:23:01 1993 Tom Lord (lord@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* libgdb.texinfo: added `@' to braces that were unescaped.
|
|
|
|
|
|
|
|
|
|
Mon Oct 4 10:42:18 1993 Tom Lord (lord@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* libgdb.texinfo: new file. Spec for the gdb library.
|
|
|
|
|
|
|
|
|
|
Sun Oct 3 15:26:56 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Include Files): Fix typo (start -> end).
|
|
|
|
|
|
|
|
|
|
Thu Sep 30 18:24:56 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, remote.texi: assorted small improvements, mostly
|
|
|
|
|
from Melissa at FSF's editing pass.
|
|
|
|
|
|
|
|
|
|
Thu Sep 30 11:54:38 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Remove stuff about ar and 14 character filenames.
|
|
|
|
|
I believe this was fixed by the 13 Sep 89 change to print_frame_info.
|
|
|
|
|
Also, modern versions of ar like BSD 4.4 or SVR4 don't have this bug.
|
|
|
|
|
|
|
|
|
|
Wed Sep 22 21:22:11 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* remote.texi (Bootstrapping): Discuss 386 call gates.
|
|
|
|
|
|
|
|
|
|
Sat Sep 18 17:10:44 1993 Jim Kingdon (kingdon@poseidon.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Based Variables): New node.
|
|
|
|
|
|
|
|
|
|
Thu Sep 16 17:48:55 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): Re-write discussions of
|
|
|
|
|
names, sizes, and formats to suggest how not to lose.
|
|
|
|
|
|
|
|
|
|
Sat Sep 11 09:35:11 1993 Jim Kingdon (kingdon@poseidon.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Methods): Fix typo.
|
|
|
|
|
|
|
|
|
|
Fri Sep 10 06:34:20 1993 David J. Mackenzie (djm@thepub.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix a few typos.
|
|
|
|
|
|
|
|
|
|
Wed Sep 8 09:11:52 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Clarify how well it works with Fortran.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stabs In ELF, Statics, ELF Transformations):
|
|
|
|
|
More on relocating stabs in ELF files.
|
|
|
|
|
|
|
|
|
|
Tue Sep 7 13:45:02 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stabs In ELF): Talk about N_FUN value.
|
|
|
|
|
|
|
|
|
|
Mon Sep 6 19:23:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Local Variable Parameters): Talk about nameless
|
|
|
|
|
parameters on VAX.
|
|
|
|
|
|
|
|
|
|
Fri Sep 3 17:06:08 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: @up/@down -> @raisesections/@lowersections
|
|
|
|
|
|
|
|
|
|
Fri Sep 3 12:04:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Make info author notice match the TeX author notice.
|
|
|
|
|
|
|
|
|
|
Tue Aug 31 13:21:06 1993 David J. Mackenzie (djm@thepub.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Initial-caps all words in node names and
|
|
|
|
|
non-trivial words in section names.
|
|
|
|
|
|
|
|
|
|
Mon Aug 30 11:13:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Many minor cleanups.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Remove @deffn except from Expanded Reference node.
|
|
|
|
|
|
|
|
|
|
Sat Aug 28 12:08:09 1993 David J. MacKenzie (djm@edison.eng.umd.edu)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Remove full description of big example.
|
|
|
|
|
It's not really helpful; just use pieces of it where appropriate.
|
|
|
|
|
Add more Texinfo formatting directives (@samp, etc.).
|
|
|
|
|
Use @deffn to define stab types.
|
|
|
|
|
Eliminate some wordiness. Break up some nodes.
|
|
|
|
|
Add an (alphabetized) index of symbol types.
|
|
|
|
|
Use consistent capitalization style in node and section names.
|
|
|
|
|
|
|
|
|
|
Thu Aug 26 06:36:31 1993 Fred Fish (fnf@deneb.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Change typo "Two two" to "The two".
|
|
|
|
|
|
|
|
|
|
Sun Aug 22 12:15:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (XCOFF-differences): Remove references to
|
|
|
|
|
non-existent types N_DECL and N_RPSYM.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (String Field): Say that type attributes bug is
|
|
|
|
|
fixed in GDB 4.10, since it is.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Clean up djm cleanups, and more cleanups of my own.
|
|
|
|
|
|
|
|
|
|
Sat Aug 21 04:32:28 1993 David MacKenzie (djm@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Formatting cleanups.
|
|
|
|
|
|
|
|
|
|
Fri Aug 20 20:49:53 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: When explaining the n_type of a stab, standardize
|
|
|
|
|
how we do it ('#' as a comment indicator, "36 is N_FUN" as text,
|
|
|
|
|
no tabs, use @r).
|
|
|
|
|
(Global Variables): Clean up.
|
|
|
|
|
|
|
|
|
|
Tue Aug 17 15:57:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stack Variables): Re-write.
|
|
|
|
|
|
|
|
|
|
Mon Aug 16 21:20:08 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stabs-in-elf): Talk about getting the start
|
|
|
|
|
addresses of a source file. Also revise formatting.
|
|
|
|
|
Change "object module" or "object file" to "source file".
|
|
|
|
|
Various: Miscellaneous cleanups.
|
|
|
|
|
|
|
|
|
|
Thu Aug 12 15:11:51 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Point to mangling info in gcc's gpcompare.texi.
|
|
|
|
|
|
|
|
|
|
Tue Aug 10 16:57:49 1993 Stan Shebs (shebs@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Removed many nonsensical machine-collected
|
|
|
|
|
host and target conditionals, described some of the remainder.
|
|
|
|
|
|
|
|
|
|
Tue Aug 10 13:28:30 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Getting Started): Use @itemize, not @table.
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Top): Add name to @top line, and re-write the
|
|
|
|
|
paragraph which follows.
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host): Use @code not @samp for Makefile
|
|
|
|
|
variables. Looks better and avoids overful hbox.
|
|
|
|
|
|
|
|
|
|
Fri Jul 30 18:26:21 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Procedures): Improve stuff on nested functions.
|
|
|
|
|
|
|
|
|
|
Thu Jul 29 15:10:58 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* remote.texi: (MIPS Remote) clearer doc for set/show timeout,
|
|
|
|
|
retransmit-timeout
|
|
|
|
|
|
|
|
|
|
Thu Jul 29 13:16:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Update statement about `some ancient Unix
|
|
|
|
|
systems, like Ultrix 4.0' to Ultrix 4.2.
|
|
|
|
|
|
|
|
|
|
Wed Jul 28 15:26:53 1993 Roland H. Pesch (pesch@el_bosque.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* h8-cfg.texi, all-cfg.texi: new flag GDBSERVER
|
|
|
|
|
|
|
|
|
|
* Makefile.in: depend on remote.texi rather than gdbinv-s.texi
|
|
|
|
|
|
|
|
|
|
* remote.texi: (Server) New node on gdbserver. (Remote Serial,
|
|
|
|
|
ST2000 Remote, MIPS Remote): mention `host:port' syntax for TCP.
|
|
|
|
|
|
|
|
|
|
* remote.texi: new name for former gdbinv-s.texi
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: use remote.texi rather than gdbinv-s.texi
|
|
|
|
|
|
|
|
|
|
Wed Jul 28 08:26:24 1993 Ian Lance Taylor (ian@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi: Documented timeout and retransmit-timeout
|
|
|
|
|
variables for MIPS remote debugging protocol.
|
|
|
|
|
|
|
|
|
|
Mon Jul 26 13:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): FORTRAN LOGICAL fix.
|
|
|
|
|
|
|
|
|
|
Tue Jul 20 16:30:41 1993 Jim Kingdon (kingdon@deneb.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (refcard.dvi): Use srcdir where necessary.
|
|
|
|
|
|
|
|
|
|
Mon Jul 19 12:02:50 1993 Roland H. Pesch (pesch@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: repair conditional bugs in text markup
|
|
|
|
|
|
|
|
|
|
Fri Jul 16 18:57:50 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, all-cfg.texi, h8-cfg.texi: introduce MOD2 switch
|
|
|
|
|
to select Modula-2 material.
|
|
|
|
|
|
|
|
|
|
Thu Jul 15 13:15:01 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Cleanups regarding statics.
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi (Bootstrapping): Document exceptionHandler.
|
|
|
|
|
(Debug Session): Mention exceptionHandler. Add xref to Bootstrapping.
|
|
|
|
|
|
|
|
|
|
Mon Jul 12 13:37:02 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: N_MAIN is sometimes used for C.
|
|
|
|
|
|
|
|
|
|
Fri Jul 9 09:47:02 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Host, Target Conditionals): Remove TM_FILE_OVERRIDE.
|
|
|
|
|
|
|
|
|
|
Tue Jul 6 12:41:28 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (Target Conditionals): Remove NO_TYPEDEFS,
|
2004-02-05 00:24:51 +01:00
|
|
|
|
removed from the code by Kingdon.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Tue Jul 6 12:24:34 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Break Commands): Remove stuff about flushing terminal
|
|
|
|
|
input when evaluating breakpoint conditions; the bug has been fixed.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Continuing and Stepping): Argument to "continue"
|
|
|
|
|
sets the ignore count to N-1, not to N.
|
|
|
|
|
|
|
|
|
|
Thu Jul 1 14:57:42 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* refcard.tex (\hoffset): correct longstanding error to match
|
|
|
|
|
intended offset; avoids cutting off edge on some printers
|
|
|
|
|
|
|
|
|
|
Wed Jun 30 18:23:06 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Parameters): Say that order of stabs is significant.
|
|
|
|
|
|
|
|
|
|
Fri Jun 25 21:34:52 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Common Blocks): Say what Sun FORTRAN does.
|
|
|
|
|
|
|
|
|
|
Fri Jun 25 16:15:10 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: (REFEDITS) new var to control whether PS or CM
|
|
|
|
|
fonts and whether US or A4 paper for GDB refcard; (refcard.dvi)
|
|
|
|
|
collect sed edits if any, apply to refcard before formatting;
|
|
|
|
|
(refcard.ps) stop implying PS fonts if PS output requested;
|
|
|
|
|
(lrefcard.ps) delete extra target for variant PS fonts
|
|
|
|
|
|
|
|
|
|
* refcard.tex: parametrize papersize dependent info, collect
|
|
|
|
|
in easily replaced spot
|
|
|
|
|
|
|
|
|
|
* a4rc.sed: new file, edits to refcard for A4 paper
|
|
|
|
|
|
|
|
|
|
Fri Jun 25 14:21:46 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): Type -16 is 4 bytes.
|
|
|
|
|
|
|
|
|
|
Wed Jun 23 15:02:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Negative Type Numbers): Minor character cleanups.
|
|
|
|
|
|
|
|
|
|
Tue Jun 22 16:31:52 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Express disapproval of 'D' symbol descriptor
|
|
|
|
|
politely rather than rudely.
|
|
|
|
|
|
|
|
|
|
Fri Jun 18 19:42:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Document common blocks.
|
|
|
|
|
|
|
|
|
|
Fri Jun 18 12:12:57 1993 Fred Fish (fnf@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Add some basic info about stabs-in-elf.
|
|
|
|
|
|
|
|
|
|
Fri Jun 18 13:57:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Top): Minor cleanup.
|
|
|
|
|
|
|
|
|
|
Mon Jun 14 16:16:51 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (install-info): remove parentdir support
|
|
|
|
|
|
|
|
|
|
Tue Jun 15 18:11:39 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Copying): delete this node and references to it;
|
|
|
|
|
RMS says this manual need not carry GPL. (passim): Improvements
|
|
|
|
|
from last round at FSF, largely due to Ian Taylor review, and
|
|
|
|
|
minor formatting improvements.
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi (passim): Improvements from last round at FSF,
|
|
|
|
|
largely due to Ian Taylor review. (Debug Session): minor edits to
|
|
|
|
|
new text.
|
|
|
|
|
|
|
|
|
|
Sun Jun 13 12:52:39 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (realclean): Remove info and dvi files too.
|
|
|
|
|
|
|
|
|
|
Sat Jun 12 16:09:22 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* {all,h8}-config.texi: Rename to *-cfg.texi for 14 char filenames.
|
|
|
|
|
* Makefile.in: Change accordingly. gdb-config.texi -> gdb-cfg.texi.
|
|
|
|
|
* gdb.texinfo: Change accordingly.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Clean up N_{L,R}BRAC. Discuss what addresses of
|
|
|
|
|
N_{L,R}BRAC,N_SLINE are relative to.
|
|
|
|
|
|
|
|
|
|
Fri Jun 11 15:15:55 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (GDBvn.texi): Update atomically.
|
|
|
|
|
|
|
|
|
|
Wed Jun 9 10:58:16 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi (Debug Session): Document exceptionHook.
|
|
|
|
|
|
|
|
|
|
Tue Jun 8 13:42:04 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Print Settings): Move all stuff relating to symbolic
|
|
|
|
|
addresses together. Also motivate the set print symbol-filename
|
|
|
|
|
command and suggest other solutions.
|
|
|
|
|
|
|
|
|
|
Tue Jun 1 22:46:43 1993 Fred Fish (fnf@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (set print elements): Note that the number of
|
|
|
|
|
elements is set to unlimited by "set print elements 0".
|
|
|
|
|
|
|
|
|
|
Mon May 31 08:06:55 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Builtin Type Descriptors): Try to clarify what
|
|
|
|
|
NF_LDOUBLE means.
|
|
|
|
|
(Stab Types): Include Solaris stab types.
|
|
|
|
|
(Procedures): Document Solaris extensions.
|
|
|
|
|
|
|
|
|
|
Thu May 27 06:20:42 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add `set print symbol-filename' doc.
|
|
|
|
|
|
|
|
|
|
Wed May 26 00:26:42 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Arrays): Talk about type definition vs. type
|
|
|
|
|
information.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Builtin Type Descriptors): Talk about omitting
|
|
|
|
|
the trailing semicolon.
|
|
|
|
|
|
|
|
|
|
Tue May 25 14:49:42 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Line Numbers, Source Files): Re-write these two nodes
|
|
|
|
|
and merge in other parts of the document addressing these subjects.
|
|
|
|
|
gdbint.texinfo (XCOFF): Remove info which is now in stabs.texinfo.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Subranges, Arrays): Try to explain about the semicolon
|
|
|
|
|
at the end of a range type.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Subranges): "A offset" and "T offset" are not
|
|
|
|
|
AIX extensions.
|
|
|
|
|
|
|
|
|
|
Mon May 24 09:00:33 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Stabs Format): Misc fixes.
|
|
|
|
|
|
|
|
|
|
Sat May 22 10:40:56 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Constants): Allow an `e' constant to be non-enum.
|
|
|
|
|
(Traditional builtin types): Document convex convention for long long.
|
|
|
|
|
(Negative builtin types): Discuss type names, and misc fixes.
|
|
|
|
|
|
|
|
|
|
Fri May 21 11:20:31 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Builtin Type Descriptors): Document the floating
|
|
|
|
|
point types used with @samp{R} type descriptor.
|
|
|
|
|
(Symbol Descriptors): Describe how to handle conflict between
|
|
|
|
|
different meanings of @samp{P} symbol descriptor.
|
|
|
|
|
|
|
|
|
|
Thu May 20 13:35:10 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Remove node Quick Reference and put its children
|
|
|
|
|
directly under the main menu.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Many more changes to bring it into line with
|
|
|
|
|
AIX documentation and reality. I think it now has all the
|
|
|
|
|
information from the AIX documentation, except that I burned
|
|
|
|
|
out when I got to variant records (Pascal and Modula-2) and
|
|
|
|
|
all the COBOL types. Oh well, we can add them later when we're
|
|
|
|
|
worrying more about those languages.
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Automatic variables): Talk about what it means
|
|
|
|
|
to omit the symbol descriptor.
|
|
|
|
|
|
|
|
|
|
Tue May 18 17:59:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Parameters): Add "(sometimes)" when describing
|
|
|
|
|
gcc2 behavior with promoted args.
|
|
|
|
|
|
|
|
|
|
Fri May 14 21:35:29 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: include readline appendices in info version of manual
|
|
|
|
|
|
|
|
|
|
Fri May 7 11:56:18 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi (Remote Serial): describe new ^C behavior in
|
|
|
|
|
target remote.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Machine Code): more index entries for disassemble
|
|
|
|
|
|
|
|
|
|
Fri May 7 10:12:30 1993 Fred Fish (fnf@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Clarify the intended use of the gdb-testers and gdb-patches
|
|
|
|
|
mailing lists, and shrink gzip comment.
|
|
|
|
|
|
|
|
|
|
Thu May 6 16:39:50 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Shell Commands): do not mention SHELL env var in
|
|
|
|
|
DOSHOST configuration of manual.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (MIPS Stack): new node.
|
|
|
|
|
|
|
|
|
|
* all-config.texi (MIPS) new switch.
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi (Nindy Options) Remove two instances of future
|
|
|
|
|
tense; (MIPS Remote) new node.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (passim) rephrases to work around makeinfo @value
|
|
|
|
|
bug; (Environment) less passive, other small cleanups in text about
|
|
|
|
|
.cshrc/.bashrc; (Invoking GDB) new MIPS Remote menu entry;
|
|
|
|
|
(Remote) new MIPS Remote menu entry.
|
|
|
|
|
|
|
|
|
|
Thu Apr 29 09:36:25 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Many changes to include information from the
|
|
|
|
|
AIX documentation.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo (Environment): Mention pitfall with .cshrc.
|
|
|
|
|
|
|
|
|
|
Tue Apr 27 14:02:57 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo (new node Debugging GDB, elsewhere):
|
|
|
|
|
Move a bunch of information from ../README.
|
|
|
|
|
(Getting Started): New node.
|
|
|
|
|
|
|
|
|
|
Fri Apr 23 17:21:13 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi, gdb.texinfo: include Hitachi SH target
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: advance manual revision dates to present
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi, gdb.texinfo, all-config.texi, h8-config.texi:
|
|
|
|
|
stop using silly Roman numerals in @set variable names
|
|
|
|
|
|
|
|
|
|
Fri Apr 23 07:30:01 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Parameters): Keep trying to get this right.
|
|
|
|
|
|
|
|
|
|
Wed Apr 21 15:18:47 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Parameters): More on "local parameters".
|
|
|
|
|
|
|
|
|
|
Mon Apr 19 08:00:51 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Parameters): Re-do "local parameters" section.
|
|
|
|
|
|
|
|
|
|
Sun Apr 18 09:47:45 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo (Symbol descriptors): Re-do using @table and @xref.
|
|
|
|
|
(Parameters): Rewrite.
|
|
|
|
|
(xcoff-differences, Sun-differences): Minor changes.
|
|
|
|
|
|
|
|
|
|
Thu Apr 15 02:35:24 1993 John Gilmore (gnu@cacophony.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Minor cleanup.
|
|
|
|
|
|
|
|
|
|
Wed Apr 14 17:31:00 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Minor xcoff stuff.
|
|
|
|
|
|
|
|
|
|
Wed Apr 7 14:11:07 1993 Fred Fish (fnf@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Update for new config directory structure.
|
|
|
|
|
Add info about internal type data structures.
|
|
|
|
|
|
|
|
|
|
Mon Apr 5 09:06:30 1993 Ian Lance Taylor (ian@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (SFILES_INCLUDED): gdb-config.texi is no longer in
|
|
|
|
|
$(srcdir).
|
|
|
|
|
(gdb-config.texi): Depend on file in $(srcdir).
|
|
|
|
|
|
|
|
|
|
Fri Apr 2 16:55:13 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Fixes about N_SO.
|
|
|
|
|
|
|
|
|
|
Fri Mar 26 18:00:35 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: include list of nonstandard init file names
|
|
|
|
|
|
|
|
|
|
* *-config.texi: new switch GENERIC for text that applies *only*
|
|
|
|
|
to (usual) multiple-target version of manual
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, gdbinv-s.texi: Update conditional markup to correct
|
|
|
|
|
h8 config
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: depend on latest fixed makeinfo, use conditionals
|
|
|
|
|
in menus (rather than conditionally selected multiple alternative
|
|
|
|
|
menus).
|
|
|
|
|
|
|
|
|
|
* Makefile.in: define and use DOC_CONFIG var to select
|
|
|
|
|
configuration for GDB user manual.
|
|
|
|
|
|
|
|
|
|
* gdb-config.texi: delete from repository, generate from Makefile.
|
|
|
|
|
|
|
|
|
|
* all-config.texi: normal `generic' configuration file, formerly
|
|
|
|
|
stored as gdb-config.texi
|
|
|
|
|
|
|
|
|
|
Wed Mar 24 14:03:19 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: add dvi target to build all .dvi files
|
|
|
|
|
|
|
|
|
|
Tue Mar 23 16:03:24 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, gdvinv-s.texinfo: formatting improvements.
|
|
|
|
|
|
|
|
|
|
Fri Mar 19 21:46:50 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Doc NO_MMALLOC and NO_MMALLOC_CHECK as
|
|
|
|
|
host conditionals.
|
|
|
|
|
* stabs.texinfo: More array fixes inspired by Jim's.
|
|
|
|
|
|
|
|
|
|
Fri Mar 19 10:23:34 1993 Jim Kingdon (kingdon@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Fixes re arrays and continuations.
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add XCOFF node.
|
|
|
|
|
|
|
|
|
|
Mon Mar 8 15:52:18 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add `set print max-symbolic-offset' doc.
|
|
|
|
|
|
|
|
|
|
Sun Feb 21 17:09:38 1993 Per Bothner (bothner@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Fix for array types to mention lower bounds.
|
|
|
|
|
|
|
|
|
|
Thu Feb 18 01:19:49 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Update PTRACE_ARG3_TYPE doc, pull PT_*.
|
|
|
|
|
|
|
|
|
|
Wed Feb 17 08:15:24 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove SET_STACK_LIMIT_HUGE from target defines.
|
|
|
|
|
|
|
|
|
|
Thu Feb 11 10:38:40 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Fix thinko (NM_FILE => NAT_FILE). Found
|
|
|
|
|
by Michael Ben-Gershon <mybg@CS.HUJI.AC.IL>.
|
|
|
|
|
|
|
|
|
|
Wed Feb 10 23:59:19 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Eliminate IBM6000_HOST, document IBM6000_TARGET.
|
|
|
|
|
|
|
|
|
|
Tue Feb 9 18:26:21 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, gdbinv-s.texi: misc updates
|
|
|
|
|
|
|
|
|
|
Sat Feb 6 10:25:47 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Brief documentation for longjmp support,
|
|
|
|
|
from an email msg by Stu.
|
|
|
|
|
|
|
|
|
|
Fri Feb 5 14:10:15 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Fix description of floating point "range"
|
|
|
|
|
types (which really define basic types). Reported by Jim Meehan,
|
|
|
|
|
<meehan@src.dec.com>.
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Remove COFF_NO_LONG_FILE_NAMES define, now gone.
|
|
|
|
|
|
|
|
|
|
Thu Feb 4 13:56:46 1993 Ian Lance Taylor (ian@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Slightly expand section on supporting a new
|
|
|
|
|
object file format.
|
|
|
|
|
|
|
|
|
|
Thu Feb 4 01:49:04 1993 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in (refcard.ps, lrefcard.ps): Remove psref.tex
|
|
|
|
|
intermediate file.
|
|
|
|
|
|
|
|
|
|
Tue Feb 2 12:18:06 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, gdbinv-s.texi: miscellaneous stylistic cleanups
|
|
|
|
|
|
|
|
|
|
Mon Feb 1 15:35:47 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi: z8000 simulator target name is just "sim"
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.texi: Mention that Z8000 simulator can simulate Z8001
|
|
|
|
|
as well as Z8002.
|
|
|
|
|
|
|
|
|
|
Sat Nov 28 06:51:35 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add sections on clean design and on how to send
|
|
|
|
|
in changes.
|
|
|
|
|
|
|
|
|
|
Mon Nov 9 23:57:02 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add how to declare the result of make_cleanup.
|
|
|
|
|
|
|
|
|
|
Mon Oct 26 11:09:47 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Fix typo, reported by Karl Berry.
|
|
|
|
|
|
|
|
|
|
Fri Oct 23 00:41:21 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Add opcodes dir to GDB distribution description.
|
|
|
|
|
|
|
|
|
|
Sat Oct 10 18:04:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: fixed a stray email address (needs @@),
|
|
|
|
|
added @table @code to node "Native Conditionals"
|
|
|
|
|
|
|
|
|
|
Tue Sep 22 00:34:15 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Describe coding style of GDB.
|
|
|
|
|
|
|
|
|
|
Mon Sep 21 19:32:16 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Minor wording changes.
|
|
|
|
|
|
|
|
|
|
Tue Sep 15 02:57:09 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Improve release doc slightly.
|
|
|
|
|
|
|
|
|
|
Fri Sep 11 01:34:25 1992 John Gilmore (gnu@sphagnum.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Improve doc of GDB config macros.
|
|
|
|
|
|
|
|
|
|
Wed Sep 9 16:52:06 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Remove Bothner's changes for C++ nested types.
|
|
|
|
|
These will be reinserted when examined.
|
|
|
|
|
|
|
|
|
|
Mon Aug 24 01:17:55 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Make a start at documenting all the #if macros
|
|
|
|
|
in GDB. At least list them all, and start separating them into
|
|
|
|
|
host-specific and target-specific.
|
|
|
|
|
|
|
|
|
|
Tue Aug 18 15:59:13 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbinv-s.m4.in: refrain from using @cartouche for just a few
|
2004-02-05 00:24:51 +01:00
|
|
|
|
examples (not consistent w others).
|
1999-04-16 03:35:26 +02:00
|
|
|
|
gdb.texinfo: issue disclaimer paragraph on cmdline options only
|
|
|
|
|
for generic vn of doc
|
|
|
|
|
|
|
|
|
|
Tue Aug 18 14:53:27 1992 Ian Lance Taylor (ian@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: always create installation directories.
|
|
|
|
|
|
|
|
|
|
Tue Aug 18 14:11:50 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: in h8 config, do not describe searching commands.
|
|
|
|
|
|
|
|
|
|
Mon Aug 17 18:07:59 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, none.m4, h8.m4, gdbinv-s.m4.in: improve H8/300
|
|
|
|
|
conditionals; introduce a few generic switches that may be
|
|
|
|
|
useful for other cross-dev or dos-hosted configs.
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: fix typo in "info reg" description
|
|
|
|
|
|
|
|
|
|
Sun Aug 16 01:16:18 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Minor updates from running TeX over it.
|
|
|
|
|
* Makefile.in (stabs.dvi, stabs.ps): Add.
|
|
|
|
|
|
|
|
|
|
Sat Aug 15 20:52:24 1992 Per Bothner (bothner@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* stabs.texinfo: Stabs documentation, written by Julia Menapace.
|
|
|
|
|
First pass at converting it to texinfo.
|
|
|
|
|
|
|
|
|
|
Sat Aug 15 03:14:59 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo, refcard.tex: Document mult args on `info reg'.
|
|
|
|
|
* Makefile.in (refcard.ps, lrefcard.ps): Add missing $(srdir).
|
|
|
|
|
|
|
|
|
|
Fri Aug 14 21:08:47 1992 John Gilmore (gnu@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdbint.texinfo: Add section on partial symbol tables.
|
|
|
|
|
|
|
|
|
|
Sat Jun 20 16:31:10 1992 John Gilmore (gnu at cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: document `set remotedebug' and `set
|
|
|
|
|
rstack_high_address'.
|
|
|
|
|
|
|
|
|
|
Thu May 14 17:09:48 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: slight expansion of new text on reading info files
|
|
|
|
|
* gdbinv-s.m4.in: correct and expand info on cross-debugging
|
|
|
|
|
H8/300 from DOS.
|
|
|
|
|
|
|
|
|
|
Tue May 12 12:22:47 1992 John Gilmore (gnu at cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: `info user' => `show user'. Noticed by David Taylor.
|
|
|
|
|
|
|
|
|
|
Mon May 11 19:06:27 1992 John Gilmore (gnu at cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Say how to read the `info' files.
|
|
|
|
|
|
|
|
|
|
Tue May 5 12:11:38 1992 K. Richard Pixley (rich@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: gm4 -> m4.
|
|
|
|
|
|
|
|
|
|
Fri Apr 10 17:50:43 1992 John Gilmore (gnu at rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Update for GDB-4.5. Move `Formatting
|
|
|
|
|
Documentation' ahead of `Installing GDB' to match README.
|
|
|
|
|
Update shared library doc, -readnow and -mapped, and directory
|
2004-02-05 00:24:51 +01:00
|
|
|
|
structure (add glob and mmalloc). Update configure doc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Tue Mar 24 23:28:38 1992 K. Richard Pixley (rich@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: remove $(srcdir) from gdb.info rule.
|
|
|
|
|
|
|
|
|
|
Sat Mar 7 18:44:50 1992 K. Richard Pixley (rich@rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: commented out gdb-all.texinfo rule. This is
|
|
|
|
|
temporary.
|
|
|
|
|
|
|
|
|
|
Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in, configure.in: removed traces of namesubdir,
|
|
|
|
|
-subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
|
2013-04-16 17:44:32 +02:00
|
|
|
|
copyrights to '92, '13, changed some from Cygnus to FSF.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Fri Dec 13 09:47:31 1991 John Gilmore (gnu at cygnus.com)
|
|
|
|
|
|
|
|
|
|
* gdb.texinfo: Improve how we ask for bug reports.
|
|
|
|
|
|
|
|
|
|
Tue Dec 10 04:07:21 1991 K. Richard Pixley (rich at rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: infodir belongs in datadir.
|
|
|
|
|
|
|
|
|
|
Fri Dec 6 23:57:34 1991 K. Richard Pixley (rich at rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: remove spaces following hyphens, bsd make can't
|
|
|
|
|
cope. install using INSTALL_DATA. added clean-info. added
|
2004-02-05 00:24:51 +01:00
|
|
|
|
standards.text support.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Thu Dec 5 22:46:12 1991 K. Richard Pixley (rich at rtl.cygnus.com)
|
|
|
|
|
|
|
|
|
|
* Makefile.in: idestdir and ddestdir go away. Added copyrights
|
|
|
|
|
and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
|
|
|
|
|
and mandir now keyed off datadir by default.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
2000-05-24 13:39:44 +02:00
|
|
|
|
mode: change-log
|
1999-04-16 03:35:26 +02:00
|
|
|
|
left-margin: 8
|
|
|
|
|
fill-column: 74
|
|
|
|
|
version-control: never
|
|
|
|
|
End:
|