diff options
author | Tom Tromey <tromey@redhat.com> | 2013-03-21 16:09:27 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-03-21 16:09:27 +0000 |
commit | 92bc6a206434a8b6922846d064e9c701a5a10a0e (patch) | |
tree | 028fd4cec6f31f542d202e4294faa70a66383abd /gdb/ChangeLog | |
parent | 81f5558e3d93654ed79b6ea28850a4798ea1404f (diff) | |
download | gdb-92bc6a206434a8b6922846d064e9c701a5a10a0e.zip gdb-92bc6a206434a8b6922846d064e9c701a5a10a0e.tar.gz gdb-92bc6a206434a8b6922846d064e9c701a5a10a0e.tar.bz2 |
* tracepoint.h (decode_agent_options): Add 'trace_string'
argument.
* tracepoint.c (decode_agent_options): Add 'trace_string'
argument.
(validate_actionline): Update.
(collect_symbol): Add 'trace_string' argument.
(struct add_local_symbols_data) <trace_string>: New field.
(do_collect_symbol): Update.
(add_local_symbols): Add 'trace_string' argument.
(encode_actions_1): Update.
(trace_dump_actions): Update.
* dwarf2loc.c (access_memory): Update.
* ax.h (struct agent_expr) <tracing, trace_string>: New fields.
* ax-general.c (new_agent_expr): Update.
* ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
(gen_trace_for_return_address): Add argument.
(trace_kludge, trace_string_kludge): Remove.
* ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
(gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
(gen_trace_for_var): Add 'trace_string' argument.
(gen_trace_for_expr, gen_trace_for_return_address): Likewise.
(gen_printf, agent_eval_command_one): Update.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7aab4ef..6aac6d7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,28 @@ +2013-03-11 Tom Tromey <tromey@redhat.com> + + * tracepoint.h (decode_agent_options): Add 'trace_string' + argument. + * tracepoint.c (decode_agent_options): Add 'trace_string' + argument. + (validate_actionline): Update. + (collect_symbol): Add 'trace_string' argument. + (struct add_local_symbols_data) <trace_string>: New field. + (do_collect_symbol): Update. + (add_local_symbols): Add 'trace_string' argument. + (encode_actions_1): Update. + (trace_dump_actions): Update. + * dwarf2loc.c (access_memory): Update. + * ax.h (struct agent_expr) <tracing, trace_string>: New fields. + * ax-general.c (new_agent_expr): Update. + * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var) + (gen_trace_for_return_address): Add argument. + (trace_kludge, trace_string_kludge): Remove. + * ax-gdb.c (trace_kludge, trace_string_kludge): Remove. + (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update. + (gen_trace_for_var): Add 'trace_string' argument. + (gen_trace_for_expr, gen_trace_for_return_address): Likewise. + (gen_printf, agent_eval_command_one): Update. + 2013-03-21 Tom Tromey <tromey@redhat.com> PR exp/15109: |