* [PATCH] Move common code to all_tracepoint_actions_and_cleanup
@ 2013-05-31 1:41 Yao Qi
2013-05-31 9:55 ` Pedro Alves
0 siblings, 1 reply; 3+ messages in thread
From: Yao Qi @ 2013-05-31 1:41 UTC (permalink / raw)
To: gdb-patches
Hi,
This patch moves the duplicated code in encode_actions and trace_dump_command
out into a new function all_tracepoint_actions_and_cleanup.
Regression tested on x86_64-linux with native and gdbserver.
gdb:
2013-05-31 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
(encode_actions): Move code to ...
(all_tracepoint_actions_and_cleanup): ... here. New.
(trace_dump_command): Likewise.
---
gdb/tracepoint.c | 75 ++++++++++++++++++++++++++++--------------------------
1 files changed, 39 insertions(+), 36 deletions(-)
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 614f6b7..d6ff051 100644
--- a/gdb/tracepoint.c
+++ b/gdb/tracepoint.c
@@ -204,6 +204,8 @@ static void add_register (struct collection_list *collection,
static void free_uploaded_tps (struct uploaded_tp **utpp);
static void free_uploaded_tsvs (struct uploaded_tsv **utsvp);
+static struct command_line *
+ all_tracepoint_actions_and_cleanup (struct breakpoint *t);
extern void _initialize_tracepoint (void);
@@ -1628,26 +1630,8 @@ encode_actions (struct bp_location *tloc, char ***tdp_actions,
gdbarch_virtual_frame_pointer (tloc->gdbarch,
tloc->address, &frame_reg, &frame_offset);
- actions = breakpoint_commands (tloc->owner);
+ actions = all_tracepoint_actions_and_cleanup (tloc->owner);
- /* If there are default expressions to collect, make up a collect
- action and prepend to the action list to encode. Note that since
- validation is per-tracepoint (local var "xyz" might be valid for
- one tracepoint and not another, etc), we make up the action on
- the fly, and don't cache it. */
- if (*default_collect)
- {
- default_collect_line = xstrprintf ("collect %s", default_collect);
- make_cleanup (xfree, default_collect_line);
-
- validate_actionline (default_collect_line, tloc->owner);
-
- default_collect_action = xmalloc (sizeof (struct command_line));
- make_cleanup (xfree, default_collect_action);
- default_collect_action->next = actions;
- default_collect_action->line = default_collect_line;
- actions = default_collect_action;
- }
encode_actions_1 (actions, tloc, frame_reg, frame_offset,
&tracepoint_list, &stepping_list);
@@ -2912,6 +2896,41 @@ trace_dump_actions (struct command_line *action,
}
}
+/* Return all the actions, including default collect, of a tracepoint
+ T. It constructs cleanups into the chain, and leaves the caller to
+ handle them (call do_cleanups). */
+
+static struct command_line *
+all_tracepoint_actions_and_cleanup (struct breakpoint *t)
+{
+ struct command_line *actions;
+
+ actions = breakpoint_commands (t);
+
+ /* If there are default expressions to collect, make up a collect
+ action and prepend to the action list to encode. Note that since
+ validation is per-tracepoint (local var "xyz" might be valid for
+ one tracepoint and not another, etc), we make up the action on
+ the fly, and don't cache it. */
+ if (*default_collect)
+ {
+ struct command_line *default_collect_action;
+ char *default_collect_line;
+
+ default_collect_line = xstrprintf ("collect %s", default_collect);
+ make_cleanup (xfree, default_collect_line);
+
+ validate_actionline (default_collect_line, t);
+ default_collect_action = xmalloc (sizeof (struct command_line));
+ make_cleanup (xfree, default_collect_action);
+ default_collect_action->next = actions;
+ default_collect_action->line = default_collect_line;
+ actions = default_collect_action;
+ }
+
+ return actions;
+}
+
/* The tdump command. */
static void
@@ -2956,23 +2975,7 @@ trace_dump_command (char *args, int from_tty)
if (loc->address == regcache_read_pc (regcache))
stepping_frame = 0;
- actions = breakpoint_commands (&t->base);
-
- /* If there is a default-collect list, make up a collect command,
- prepend to the tracepoint's commands, and pass the whole mess to
- the trace dump scanner. We need to validate because
- default-collect might have been junked since the trace run. */
- if (*default_collect)
- {
- default_collect_line = xstrprintf ("collect %s", default_collect);
- make_cleanup (xfree, default_collect_line);
- validate_actionline (default_collect_line, &t->base);
- default_collect_action = xmalloc (sizeof (struct command_line));
- make_cleanup (xfree, default_collect_action);
- default_collect_action->next = actions;
- default_collect_action->line = default_collect_line;
- actions = default_collect_action;
- }
+ actions = all_tracepoint_actions_and_cleanup (&t->base);
trace_dump_actions (actions, 0, stepping_frame, from_tty);
--
1.7.7.6
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Move common code to all_tracepoint_actions_and_cleanup
2013-05-31 1:41 [PATCH] Move common code to all_tracepoint_actions_and_cleanup Yao Qi
@ 2013-05-31 9:55 ` Pedro Alves
2013-05-31 10:09 ` Yao Qi
0 siblings, 1 reply; 3+ messages in thread
From: Pedro Alves @ 2013-05-31 9:55 UTC (permalink / raw)
To: Yao Qi; +Cc: gdb-patches
On 05/31/2013 02:41 AM, Yao Qi wrote:
> Hi,
> This patch moves the duplicated code in encode_actions and trace_dump_command
> out into a new function all_tracepoint_actions_and_cleanup.
> Regression tested on x86_64-linux with native and gdbserver.
Okay, thanks.
--
Pedro Alves
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Move common code to all_tracepoint_actions_and_cleanup
2013-05-31 9:55 ` Pedro Alves
@ 2013-05-31 10:09 ` Yao Qi
0 siblings, 0 replies; 3+ messages in thread
From: Yao Qi @ 2013-05-31 10:09 UTC (permalink / raw)
To: Pedro Alves; +Cc: gdb-patches
On 05/31/2013 05:55 PM, Pedro Alves wrote:
> Okay, thanks.
Thanks for the review. Committed.
--
Yao (é½å°§)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-05-31 10:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-31 1:41 [PATCH] Move common code to all_tracepoint_actions_and_cleanup Yao Qi
2013-05-31 9:55 ` Pedro Alves
2013-05-31 10:09 ` Yao Qi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox