1 /* Tracing functionality for remote targets in custom GDB protocol
3 Copyright (C) 1997-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
25 #include "expression.h"
30 #include "gdb_string.h"
32 #include "breakpoint.h"
33 #include "tracepoint.h"
36 #include "completer.h"
38 #include "dictionary.h"
40 #include "user-regs.h"
44 #include "filenames.h"
45 #include "gdbthread.h"
53 #include "exceptions.h"
54 #include "cli/cli-utils.h"
57 /* readline include files */
58 #include "readline/readline.h"
59 #include "readline/history.h"
61 /* readline defines this. */
72 extern int hex2bin (const char *hex, gdb_byte *bin, int count);
73 extern int bin2hex (const gdb_byte *bin, char *hex, int count);
75 /* Maximum length of an agent aexpression.
76 This accounts for the fact that packets are limited to 400 bytes
77 (which includes everything -- including the checksum), and assumes
78 the worst case of maximum length for each of the pieces of a
81 NOTE: expressions get mem2hex'ed otherwise this would be twice as
82 large. (400 - 31)/2 == 184 */
83 #define MAX_AGENT_EXPR_LEN 184
87 /* A hook used to notify the UI of tracepoint operations. */
89 void (*deprecated_trace_find_hook) (char *arg, int from_tty);
90 void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
92 extern void (*deprecated_readline_begin_hook) (char *, ...);
93 extern char *(*deprecated_readline_hook) (char *);
94 extern void (*deprecated_readline_end_hook) (void);
96 /* GDB commands implemented in other modules:
99 extern void output_command (char *, int);
104 This module defines the following debugger commands:
105 trace : set a tracepoint on a function, line, or address.
106 info trace : list all debugger-defined tracepoints.
107 delete trace : delete one or more tracepoints.
108 enable trace : enable one or more tracepoints.
109 disable trace : disable one or more tracepoints.
110 actions : specify actions to be taken at a tracepoint.
111 passcount : specify a pass count for a tracepoint.
112 tstart : start a trace experiment.
113 tstop : stop a trace experiment.
114 tstatus : query the status of a trace experiment.
115 tfind : find a trace frame in the trace buffer.
116 tdump : print everything collected at the current tracepoint.
117 save-tracepoints : write tracepoint setup into a file.
119 This module defines the following user-visible debugger variables:
120 $trace_frame : sequence number of trace frame currently being debugged.
121 $trace_line : source line of trace frame currently being debugged.
122 $trace_file : source file of trace frame currently being debugged.
123 $tracepoint : tracepoint number of trace frame currently being debugged.
127 /* ======= Important global variables: ======= */
129 /* The list of all trace state variables. We don't retain pointers to
130 any of these for any reason - API is by name or number only - so it
131 works to have a vector of objects. */
133 typedef struct trace_state_variable tsv_s;
136 /* An object describing the contents of a traceframe. */
138 struct traceframe_info
140 /* Collected memory. */
141 VEC(mem_range_s) *memory;
144 static VEC(tsv_s) *tvariables;
146 /* The next integer to assign to a variable. */
148 static int next_tsv_number = 1;
150 /* Number of last traceframe collected. */
151 static int traceframe_number;
153 /* Tracepoint for last traceframe collected. */
154 static int tracepoint_number;
156 /* Symbol for function for last traceframe collected. */
157 static struct symbol *traceframe_fun;
159 /* Symtab and line for last traceframe collected. */
160 static struct symtab_and_line traceframe_sal;
162 /* The traceframe info of the current traceframe. NULL if we haven't
163 yet attempted to fetch it, or if the target does not support
164 fetching this object, or if we're not inspecting a traceframe
166 static struct traceframe_info *traceframe_info;
168 /* Tracing command lists. */
169 static struct cmd_list_element *tfindlist;
171 /* List of expressions to collect by default at each tracepoint hit. */
172 char *default_collect = "";
174 static int disconnected_tracing;
176 /* This variable controls whether we ask the target for a linear or
177 circular trace buffer. */
179 static int circular_trace_buffer;
181 /* Textual notes applying to the current and/or future trace runs. */
183 char *trace_user = NULL;
185 /* Textual notes applying to the current and/or future trace runs. */
187 char *trace_notes = NULL;
189 /* Textual notes applying to the stopping of a trace. */
191 char *trace_stop_notes = NULL;
193 /* ======= Important command functions: ======= */
194 static void trace_actions_command (char *, int);
195 static void trace_start_command (char *, int);
196 static void trace_stop_command (char *, int);
197 static void trace_status_command (char *, int);
198 static void trace_find_command (char *, int);
199 static void trace_find_pc_command (char *, int);
200 static void trace_find_tracepoint_command (char *, int);
201 static void trace_find_line_command (char *, int);
202 static void trace_find_range_command (char *, int);
203 static void trace_find_outside_command (char *, int);
204 static void trace_dump_command (char *, int);
206 /* support routines */
208 struct collection_list;
209 static void add_aexpr (struct collection_list *, struct agent_expr *);
210 static char *mem2hex (gdb_byte *, char *, int);
211 static void add_register (struct collection_list *collection,
214 static void free_uploaded_tps (struct uploaded_tp **utpp);
215 static void free_uploaded_tsvs (struct uploaded_tsv **utsvp);
218 extern void _initialize_tracepoint (void);
220 static struct trace_status trace_status;
222 char *stop_reason_names[] = {
232 struct trace_status *
233 current_trace_status (void)
235 return &trace_status;
241 free_traceframe_info (struct traceframe_info *info)
245 VEC_free (mem_range_s, info->memory);
251 /* Free and clear the traceframe info cache of the current
255 clear_traceframe_info (void)
257 free_traceframe_info (traceframe_info);
258 traceframe_info = NULL;
261 /* Set traceframe number to NUM. */
263 set_traceframe_num (int num)
265 traceframe_number = num;
266 set_internalvar_integer (lookup_internalvar ("trace_frame"), num);
269 /* Set tracepoint number to NUM. */
271 set_tracepoint_num (int num)
273 tracepoint_number = num;
274 set_internalvar_integer (lookup_internalvar ("tracepoint"), num);
277 /* Set externally visible debug variables for querying/printing
278 the traceframe context (line, function, file). */
281 set_traceframe_context (struct frame_info *trace_frame)
285 /* Save as globals for internal use. */
286 if (trace_frame != NULL
287 && get_frame_pc_if_available (trace_frame, &trace_pc))
289 traceframe_sal = find_pc_line (trace_pc, 0);
290 traceframe_fun = find_pc_function (trace_pc);
292 /* Save linenumber as "$trace_line", a debugger variable visible to
294 set_internalvar_integer (lookup_internalvar ("trace_line"),
295 traceframe_sal.line);
299 init_sal (&traceframe_sal);
300 traceframe_fun = NULL;
301 set_internalvar_integer (lookup_internalvar ("trace_line"), -1);
304 /* Save func name as "$trace_func", a debugger variable visible to
306 if (traceframe_fun == NULL
307 || SYMBOL_LINKAGE_NAME (traceframe_fun) == NULL)
308 clear_internalvar (lookup_internalvar ("trace_func"));
310 set_internalvar_string (lookup_internalvar ("trace_func"),
311 SYMBOL_LINKAGE_NAME (traceframe_fun));
313 /* Save file name as "$trace_file", a debugger variable visible to
315 if (traceframe_sal.symtab == NULL
316 || traceframe_sal.symtab->filename == NULL)
317 clear_internalvar (lookup_internalvar ("trace_file"));
319 set_internalvar_string (lookup_internalvar ("trace_file"),
320 traceframe_sal.symtab->filename);
323 /* Create a new trace state variable with the given name. */
325 struct trace_state_variable *
326 create_trace_state_variable (const char *name)
328 struct trace_state_variable tsv;
330 memset (&tsv, 0, sizeof (tsv));
331 tsv.name = xstrdup (name);
332 tsv.number = next_tsv_number++;
333 return VEC_safe_push (tsv_s, tvariables, &tsv);
336 /* Look for a trace state variable of the given name. */
338 struct trace_state_variable *
339 find_trace_state_variable (const char *name)
341 struct trace_state_variable *tsv;
344 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
345 if (strcmp (name, tsv->name) == 0)
352 delete_trace_state_variable (const char *name)
354 struct trace_state_variable *tsv;
357 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
358 if (strcmp (name, tsv->name) == 0)
360 xfree ((void *)tsv->name);
361 VEC_unordered_remove (tsv_s, tvariables, ix);
363 observer_notify_tsv_deleted (name);
368 warning (_("No trace variable named \"$%s\", not deleting"), name);
371 /* The 'tvariable' command collects a name and optional expression to
372 evaluate into an initial value. */
375 trace_variable_command (char *args, int from_tty)
377 struct expression *expr;
378 struct cleanup *old_chain;
379 struct internalvar *intvar = NULL;
381 struct trace_state_variable *tsv;
384 error_no_arg (_("trace state variable name"));
386 /* All the possible valid arguments are expressions. */
387 expr = parse_expression (args);
388 old_chain = make_cleanup (free_current_contents, &expr);
390 if (expr->nelts == 0)
391 error (_("No expression?"));
393 /* Only allow two syntaxes; "$name" and "$name=value". */
394 if (expr->elts[0].opcode == OP_INTERNALVAR)
396 intvar = expr->elts[1].internalvar;
398 else if (expr->elts[0].opcode == BINOP_ASSIGN
399 && expr->elts[1].opcode == OP_INTERNALVAR)
401 intvar = expr->elts[2].internalvar;
402 initval = value_as_long (evaluate_subexpression_type (expr, 4));
405 error (_("Syntax must be $NAME [ = EXPR ]"));
408 error (_("No name given"));
410 if (strlen (internalvar_name (intvar)) <= 0)
411 error (_("Must supply a non-empty variable name"));
413 /* If the variable already exists, just change its initial value. */
414 tsv = find_trace_state_variable (internalvar_name (intvar));
417 tsv->initial_value = initval;
418 printf_filtered (_("Trace state variable $%s "
419 "now has initial value %s.\n"),
420 tsv->name, plongest (tsv->initial_value));
421 do_cleanups (old_chain);
425 /* Create a new variable. */
426 tsv = create_trace_state_variable (internalvar_name (intvar));
427 tsv->initial_value = initval;
429 observer_notify_tsv_created (tsv->name, initval);
431 printf_filtered (_("Trace state variable $%s "
432 "created, with initial value %s.\n"),
433 tsv->name, plongest (tsv->initial_value));
435 do_cleanups (old_chain);
439 delete_trace_variable_command (char *args, int from_tty)
443 struct cleanup *back_to;
447 if (query (_("Delete all trace state variables? ")))
448 VEC_free (tsv_s, tvariables);
450 observer_notify_tsv_deleted (NULL);
454 argv = gdb_buildargv (args);
455 back_to = make_cleanup_freeargv (argv);
457 for (ix = 0; argv[ix] != NULL; ix++)
459 if (*argv[ix] == '$')
460 delete_trace_state_variable (argv[ix] + 1);
462 warning (_("Name \"%s\" not prefixed with '$', ignoring"), argv[ix]);
465 do_cleanups (back_to);
471 tvariables_info_1 (void)
473 struct trace_state_variable *tsv;
476 struct cleanup *back_to;
477 struct ui_out *uiout = current_uiout;
479 if (VEC_length (tsv_s, tvariables) == 0 && !ui_out_is_mi_like_p (uiout))
481 printf_filtered (_("No trace state variables.\n"));
485 /* Try to acquire values from the target. */
486 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix, ++count)
487 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
490 back_to = make_cleanup_ui_out_table_begin_end (uiout, 3,
491 count, "trace-variables");
492 ui_out_table_header (uiout, 15, ui_left, "name", "Name");
493 ui_out_table_header (uiout, 11, ui_left, "initial", "Initial");
494 ui_out_table_header (uiout, 11, ui_left, "current", "Current");
496 ui_out_table_body (uiout);
498 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
500 struct cleanup *back_to2;
504 back_to2 = make_cleanup_ui_out_tuple_begin_end (uiout, "variable");
506 name = concat ("$", tsv->name, (char *) NULL);
507 make_cleanup (xfree, name);
508 ui_out_field_string (uiout, "name", name);
509 ui_out_field_string (uiout, "initial", plongest (tsv->initial_value));
511 if (tsv->value_known)
512 c = plongest (tsv->value);
513 else if (ui_out_is_mi_like_p (uiout))
514 /* For MI, we prefer not to use magic string constants, but rather
515 omit the field completely. The difference between unknown and
516 undefined does not seem important enough to represent. */
518 else if (current_trace_status ()->running || traceframe_number >= 0)
519 /* The value is/was defined, but we don't have it. */
522 /* It is not meaningful to ask about the value. */
525 ui_out_field_string (uiout, "current", c);
526 ui_out_text (uiout, "\n");
528 do_cleanups (back_to2);
531 do_cleanups (back_to);
534 /* List all the trace state variables. */
537 tvariables_info (char *args, int from_tty)
539 tvariables_info_1 ();
542 /* Stash definitions of tsvs into the given file. */
545 save_trace_state_variables (struct ui_file *fp)
547 struct trace_state_variable *tsv;
550 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
552 fprintf_unfiltered (fp, "tvariable $%s", tsv->name);
553 if (tsv->initial_value)
554 fprintf_unfiltered (fp, " = %s", plongest (tsv->initial_value));
555 fprintf_unfiltered (fp, "\n");
559 /* ACTIONS functions: */
561 /* The three functions:
562 collect_pseudocommand,
563 while_stepping_pseudocommand, and
564 end_actions_pseudocommand
565 are placeholders for "commands" that are actually ONLY to be used
566 within a tracepoint action list. If the actual function is ever called,
567 it means that somebody issued the "command" at the top level,
568 which is always an error. */
571 end_actions_pseudocommand (char *args, int from_tty)
573 error (_("This command cannot be used at the top level."));
577 while_stepping_pseudocommand (char *args, int from_tty)
579 error (_("This command can only be used in a tracepoint actions list."));
583 collect_pseudocommand (char *args, int from_tty)
585 error (_("This command can only be used in a tracepoint actions list."));
589 teval_pseudocommand (char *args, int from_tty)
591 error (_("This command can only be used in a tracepoint actions list."));
594 /* Parse any collection options, such as /s for strings. */
597 decode_agent_options (char *exp)
599 struct value_print_options opts;
604 /* Call this to borrow the print elements default for collection
606 get_user_print_options (&opts);
611 if (target_supports_string_tracing ())
613 /* Allow an optional decimal number giving an explicit maximum
614 string length, defaulting it to the "print elements" value;
615 so "collect/s80 mystr" gets at most 80 bytes of string. */
616 trace_string_kludge = opts.print_max;
618 if (*exp >= '0' && *exp <= '9')
619 trace_string_kludge = atoi (exp);
620 while (*exp >= '0' && *exp <= '9')
624 error (_("Target does not support \"/s\" option for string tracing."));
627 error (_("Undefined collection format \"%c\"."), *exp);
629 exp = skip_spaces (exp);
634 /* Enter a list of actions for a tracepoint. */
636 trace_actions_command (char *args, int from_tty)
638 struct tracepoint *t;
639 struct command_line *l;
641 t = get_tracepoint_by_number (&args, NULL, 1);
645 xstrprintf ("Enter actions for tracepoint %d, one per line.",
647 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
649 l = read_command_lines (tmpbuf, from_tty, 1,
650 check_tracepoint_command, t);
651 do_cleanups (cleanups);
652 breakpoint_set_commands (&t->base, l);
654 /* else just return */
657 /* Report the results of checking the agent expression, as errors or
661 report_agent_reqs_errors (struct agent_expr *aexpr)
663 /* All of the "flaws" are serious bytecode generation issues that
664 should never occur. */
665 if (aexpr->flaw != agent_flaw_none)
666 internal_error (__FILE__, __LINE__, _("expression is malformed"));
668 /* If analysis shows a stack underflow, GDB must have done something
669 badly wrong in its bytecode generation. */
670 if (aexpr->min_height < 0)
671 internal_error (__FILE__, __LINE__,
672 _("expression has min height < 0"));
674 /* Issue this error if the stack is predicted to get too deep. The
675 limit is rather arbitrary; a better scheme might be for the
676 target to report how much stack it will have available. The
677 depth roughly corresponds to parenthesization, so a limit of 20
678 amounts to 20 levels of expression nesting, which is actually
679 a pretty big hairy expression. */
680 if (aexpr->max_height > 20)
681 error (_("Expression is too complicated."));
684 /* worker function */
686 validate_actionline (char **line, struct breakpoint *b)
688 struct cmd_list_element *c;
689 struct expression *exp = NULL;
690 struct cleanup *old_chain = NULL;
692 struct bp_location *loc;
693 struct agent_expr *aexpr;
694 struct tracepoint *t = (struct tracepoint *) b;
696 /* If EOF is typed, *line is NULL. */
700 for (p = *line; isspace ((int) *p);)
703 /* Symbol lookup etc. */
704 if (*p == '\0') /* empty line: just prompt for another line. */
707 if (*p == '#') /* comment line */
710 c = lookup_cmd (&p, cmdlist, "", -1, 1);
712 error (_("`%s' is not a tracepoint action, or is ambiguous."), p);
714 if (cmd_cfunc_eq (c, collect_pseudocommand))
716 trace_string_kludge = 0;
718 p = decode_agent_options (p);
721 { /* Repeat over a comma-separated list. */
722 QUIT; /* Allow user to bail out with ^C. */
723 while (isspace ((int) *p))
726 if (*p == '$') /* Look for special pseudo-symbols. */
728 if (0 == strncasecmp ("reg", p + 1, 3)
729 || 0 == strncasecmp ("arg", p + 1, 3)
730 || 0 == strncasecmp ("loc", p + 1, 3)
731 || 0 == strncasecmp ("_ret", p + 1, 4)
732 || 0 == strncasecmp ("_sdata", p + 1, 6))
737 /* else fall thru, treat p as an expression and parse it! */
740 for (loc = t->base.loc; loc; loc = loc->next)
743 exp = parse_exp_1 (&p, loc->address,
744 block_for_pc (loc->address), 1);
745 old_chain = make_cleanup (free_current_contents, &exp);
747 if (exp->elts[0].opcode == OP_VAR_VALUE)
749 if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_CONST)
751 error (_("constant `%s' (value %s) "
752 "will not be collected."),
753 SYMBOL_PRINT_NAME (exp->elts[2].symbol),
754 plongest (SYMBOL_VALUE (exp->elts[2].symbol)));
756 else if (SYMBOL_CLASS (exp->elts[2].symbol)
757 == LOC_OPTIMIZED_OUT)
759 error (_("`%s' is optimized away "
760 "and cannot be collected."),
761 SYMBOL_PRINT_NAME (exp->elts[2].symbol));
765 /* We have something to collect, make sure that the expr to
766 bytecode translator can handle it and that it's not too
768 aexpr = gen_trace_for_expr (loc->address, exp);
769 make_cleanup_free_agent_expr (aexpr);
771 if (aexpr->len > MAX_AGENT_EXPR_LEN)
772 error (_("Expression is too complicated."));
776 report_agent_reqs_errors (aexpr);
778 do_cleanups (old_chain);
781 while (p && *p++ == ',');
784 else if (cmd_cfunc_eq (c, teval_pseudocommand))
787 { /* Repeat over a comma-separated list. */
788 QUIT; /* Allow user to bail out with ^C. */
789 while (isspace ((int) *p))
793 for (loc = t->base.loc; loc; loc = loc->next)
796 /* Only expressions are allowed for this action. */
797 exp = parse_exp_1 (&p, loc->address,
798 block_for_pc (loc->address), 1);
799 old_chain = make_cleanup (free_current_contents, &exp);
801 /* We have something to evaluate, make sure that the expr to
802 bytecode translator can handle it and that it's not too
804 aexpr = gen_eval_for_expr (loc->address, exp);
805 make_cleanup_free_agent_expr (aexpr);
807 if (aexpr->len > MAX_AGENT_EXPR_LEN)
808 error (_("Expression is too complicated."));
811 report_agent_reqs_errors (aexpr);
813 do_cleanups (old_chain);
816 while (p && *p++ == ',');
819 else if (cmd_cfunc_eq (c, while_stepping_pseudocommand))
821 char *steparg; /* In case warning is necessary. */
823 while (isspace ((int) *p))
827 if (*p == '\0' || (t->step_count = strtol (p, &p, 0)) == 0)
828 error (_("while-stepping step count `%s' is malformed."), *line);
831 else if (cmd_cfunc_eq (c, end_actions_pseudocommand))
835 error (_("`%s' is not a supported tracepoint action."), *line);
839 memrange_absolute = -1
844 int type; /* memrange_absolute for absolute memory range,
845 else basereg number. */
846 bfd_signed_vma start;
850 struct collection_list
852 unsigned char regs_mask[32]; /* room for up to 256 regs */
855 struct memrange *list;
856 long aexpr_listsize; /* size of array pointed to by expr_list elt */
858 struct agent_expr **aexpr_list;
860 /* True is the user requested a collection of "$_sdata", "static
864 tracepoint_list, stepping_list;
866 /* MEMRANGE functions: */
868 static int memrange_cmp (const void *, const void *);
870 /* Compare memranges for qsort. */
872 memrange_cmp (const void *va, const void *vb)
874 const struct memrange *a = va, *b = vb;
876 if (a->type < b->type)
878 if (a->type > b->type)
880 if (a->type == memrange_absolute)
882 if ((bfd_vma) a->start < (bfd_vma) b->start)
884 if ((bfd_vma) a->start > (bfd_vma) b->start)
889 if (a->start < b->start)
891 if (a->start > b->start)
897 /* Sort the memrange list using qsort, and merge adjacent memranges. */
899 memrange_sortmerge (struct collection_list *memranges)
903 qsort (memranges->list, memranges->next_memrange,
904 sizeof (struct memrange), memrange_cmp);
905 if (memranges->next_memrange > 0)
907 for (a = 0, b = 1; b < memranges->next_memrange; b++)
909 /* If memrange b overlaps or is adjacent to memrange a,
911 if (memranges->list[a].type == memranges->list[b].type
912 && memranges->list[b].start <= memranges->list[a].end)
914 if (memranges->list[b].end > memranges->list[a].end)
915 memranges->list[a].end = memranges->list[b].end;
916 continue; /* next b, same a */
920 memcpy (&memranges->list[a], &memranges->list[b],
921 sizeof (struct memrange));
923 memranges->next_memrange = a + 1;
927 /* Add a register to a collection list. */
929 add_register (struct collection_list *collection, unsigned int regno)
932 printf_filtered ("collect register %d\n", regno);
933 if (regno >= (8 * sizeof (collection->regs_mask)))
934 error (_("Internal: register number %d too large for tracepoint"),
936 collection->regs_mask[regno / 8] |= 1 << (regno % 8);
939 /* Add a memrange to a collection list. */
941 add_memrange (struct collection_list *memranges,
942 int type, bfd_signed_vma base,
947 printf_filtered ("(%d,", type);
949 printf_filtered (",%ld)\n", len);
952 /* type: memrange_absolute == memory, other n == basereg */
953 memranges->list[memranges->next_memrange].type = type;
954 /* base: addr if memory, offset if reg relative. */
955 memranges->list[memranges->next_memrange].start = base;
956 /* len: we actually save end (base + len) for convenience */
957 memranges->list[memranges->next_memrange].end = base + len;
958 memranges->next_memrange++;
959 if (memranges->next_memrange >= memranges->listsize)
961 memranges->listsize *= 2;
962 memranges->list = xrealloc (memranges->list,
963 memranges->listsize);
966 if (type != memrange_absolute) /* Better collect the base register! */
967 add_register (memranges, type);
970 /* Add a symbol to a collection list. */
972 collect_symbol (struct collection_list *collect,
974 struct gdbarch *gdbarch,
975 long frame_regno, long frame_offset,
980 bfd_signed_vma offset;
981 int treat_as_expr = 0;
983 len = TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym)));
984 switch (SYMBOL_CLASS (sym))
987 printf_filtered ("%s: don't know symbol class %d\n",
988 SYMBOL_PRINT_NAME (sym),
992 printf_filtered ("constant %s (value %s) will not be collected.\n",
993 SYMBOL_PRINT_NAME (sym), plongest (SYMBOL_VALUE (sym)));
996 offset = SYMBOL_VALUE_ADDRESS (sym);
1001 sprintf_vma (tmp, offset);
1002 printf_filtered ("LOC_STATIC %s: collect %ld bytes at %s.\n",
1003 SYMBOL_PRINT_NAME (sym), len,
1006 /* A struct may be a C++ class with static fields, go to general
1007 expression handling. */
1008 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT)
1011 add_memrange (collect, memrange_absolute, offset, len);
1014 reg = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
1016 printf_filtered ("LOC_REG[parm] %s: ",
1017 SYMBOL_PRINT_NAME (sym));
1018 add_register (collect, reg);
1019 /* Check for doubles stored in two registers. */
1020 /* FIXME: how about larger types stored in 3 or more regs? */
1021 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FLT &&
1022 len > register_size (gdbarch, reg))
1023 add_register (collect, reg + 1);
1026 printf_filtered ("Sorry, don't know how to do LOC_REF_ARG yet.\n");
1027 printf_filtered (" (will not collect %s)\n",
1028 SYMBOL_PRINT_NAME (sym));
1032 offset = frame_offset + SYMBOL_VALUE (sym);
1035 printf_filtered ("LOC_LOCAL %s: Collect %ld bytes at offset ",
1036 SYMBOL_PRINT_NAME (sym), len);
1037 printf_vma (offset);
1038 printf_filtered (" from frame ptr reg %d\n", reg);
1040 add_memrange (collect, reg, offset, len);
1042 case LOC_REGPARM_ADDR:
1043 reg = SYMBOL_VALUE (sym);
1047 printf_filtered ("LOC_REGPARM_ADDR %s: Collect %ld bytes at offset ",
1048 SYMBOL_PRINT_NAME (sym), len);
1049 printf_vma (offset);
1050 printf_filtered (" from reg %d\n", reg);
1052 add_memrange (collect, reg, offset, len);
1056 offset = frame_offset + SYMBOL_VALUE (sym);
1059 printf_filtered ("LOC_LOCAL %s: Collect %ld bytes at offset ",
1060 SYMBOL_PRINT_NAME (sym), len);
1061 printf_vma (offset);
1062 printf_filtered (" from frame ptr reg %d\n", reg);
1064 add_memrange (collect, reg, offset, len);
1067 case LOC_UNRESOLVED:
1071 case LOC_OPTIMIZED_OUT:
1072 printf_filtered ("%s has been optimized out of existence.\n",
1073 SYMBOL_PRINT_NAME (sym));
1081 /* Expressions are the most general case. */
1084 struct agent_expr *aexpr;
1085 struct cleanup *old_chain1 = NULL;
1087 aexpr = gen_trace_for_var (scope, gdbarch, sym);
1089 /* It can happen that the symbol is recorded as a computed
1090 location, but it's been optimized away and doesn't actually
1091 have a location expression. */
1094 printf_filtered ("%s has been optimized out of existence.\n",
1095 SYMBOL_PRINT_NAME (sym));
1099 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1103 report_agent_reqs_errors (aexpr);
1105 discard_cleanups (old_chain1);
1106 add_aexpr (collect, aexpr);
1108 /* Take care of the registers. */
1109 if (aexpr->reg_mask_len > 0)
1113 for (ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
1115 QUIT; /* Allow user to bail out with ^C. */
1116 if (aexpr->reg_mask[ndx1] != 0)
1118 /* Assume chars have 8 bits. */
1119 for (ndx2 = 0; ndx2 < 8; ndx2++)
1120 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
1121 /* It's used -- record it. */
1122 add_register (collect, ndx1 * 8 + ndx2);
1129 /* Data to be passed around in the calls to the locals and args
1132 struct add_local_symbols_data
1134 struct collection_list *collect;
1135 struct gdbarch *gdbarch;
1142 /* The callback for the locals and args iterators. */
1145 do_collect_symbol (const char *print_name,
1149 struct add_local_symbols_data *p = cb_data;
1151 collect_symbol (p->collect, sym, p->gdbarch, p->frame_regno,
1152 p->frame_offset, p->pc);
1156 /* Add all locals (or args) symbols to collection list. */
1158 add_local_symbols (struct collection_list *collect,
1159 struct gdbarch *gdbarch, CORE_ADDR pc,
1160 long frame_regno, long frame_offset, int type)
1162 struct block *block;
1163 struct add_local_symbols_data cb_data;
1165 cb_data.collect = collect;
1166 cb_data.gdbarch = gdbarch;
1168 cb_data.frame_regno = frame_regno;
1169 cb_data.frame_offset = frame_offset;
1174 block = block_for_pc (pc);
1177 warning (_("Can't collect locals; "
1178 "no symbol table info available.\n"));
1182 iterate_over_block_local_vars (block, do_collect_symbol, &cb_data);
1183 if (cb_data.count == 0)
1184 warning (_("No locals found in scope."));
1188 pc = get_pc_function_start (pc);
1189 block = block_for_pc (pc);
1192 warning (_("Can't collect args; no symbol table info available."));
1196 iterate_over_block_arg_vars (block, do_collect_symbol, &cb_data);
1197 if (cb_data.count == 0)
1198 warning (_("No args found in scope."));
1203 add_static_trace_data (struct collection_list *collection)
1206 printf_filtered ("collect static trace data\n");
1207 collection->strace_data = 1;
1210 /* worker function */
1212 clear_collection_list (struct collection_list *list)
1216 list->next_memrange = 0;
1217 for (ndx = 0; ndx < list->next_aexpr_elt; ndx++)
1219 free_agent_expr (list->aexpr_list[ndx]);
1220 list->aexpr_list[ndx] = NULL;
1222 list->next_aexpr_elt = 0;
1223 memset (list->regs_mask, 0, sizeof (list->regs_mask));
1224 list->strace_data = 0;
1227 /* Reduce a collection list to string form (for gdb protocol). */
1229 stringify_collection_list (struct collection_list *list, char *string)
1231 char temp_buf[2048];
1235 char *(*str_list)[];
1239 count = 1 + 1 + list->next_memrange + list->next_aexpr_elt + 1;
1240 str_list = (char *(*)[]) xmalloc (count * sizeof (char *));
1242 if (list->strace_data)
1245 printf_filtered ("\nCollecting static trace data\n");
1248 (*str_list)[ndx] = savestring (temp_buf, end - temp_buf);
1252 for (i = sizeof (list->regs_mask) - 1; i > 0; i--)
1253 if (list->regs_mask[i] != 0) /* Skip leading zeroes in regs_mask. */
1255 if (list->regs_mask[i] != 0) /* Prepare to send regs_mask to the stub. */
1258 printf_filtered ("\nCollecting registers (mask): 0x");
1263 QUIT; /* Allow user to bail out with ^C. */
1265 printf_filtered ("%02X", list->regs_mask[i]);
1266 sprintf (end, "%02X", list->regs_mask[i]);
1269 (*str_list)[ndx] = xstrdup (temp_buf);
1273 printf_filtered ("\n");
1274 if (list->next_memrange > 0 && info_verbose)
1275 printf_filtered ("Collecting memranges: \n");
1276 for (i = 0, count = 0, end = temp_buf; i < list->next_memrange; i++)
1278 QUIT; /* Allow user to bail out with ^C. */
1279 sprintf_vma (tmp2, list->list[i].start);
1282 printf_filtered ("(%d, %s, %ld)\n",
1285 (long) (list->list[i].end - list->list[i].start));
1287 if (count + 27 > MAX_AGENT_EXPR_LEN)
1289 (*str_list)[ndx] = savestring (temp_buf, count);
1296 bfd_signed_vma length = list->list[i].end - list->list[i].start;
1298 /* The "%X" conversion specifier expects an unsigned argument,
1299 so passing -1 (memrange_absolute) to it directly gives you
1300 "FFFFFFFF" (or more, depending on sizeof (unsigned)).
1302 if (list->list[i].type == memrange_absolute)
1303 sprintf (end, "M-1,%s,%lX", tmp2, (long) length);
1305 sprintf (end, "M%X,%s,%lX", list->list[i].type, tmp2, (long) length);
1308 count += strlen (end);
1309 end = temp_buf + count;
1312 for (i = 0; i < list->next_aexpr_elt; i++)
1314 QUIT; /* Allow user to bail out with ^C. */
1315 if ((count + 10 + 2 * list->aexpr_list[i]->len) > MAX_AGENT_EXPR_LEN)
1317 (*str_list)[ndx] = savestring (temp_buf, count);
1322 sprintf (end, "X%08X,", list->aexpr_list[i]->len);
1323 end += 10; /* 'X' + 8 hex digits + ',' */
1326 end = mem2hex (list->aexpr_list[i]->buf,
1327 end, list->aexpr_list[i]->len);
1328 count += 2 * list->aexpr_list[i]->len;
1333 (*str_list)[ndx] = savestring (temp_buf, count);
1338 (*str_list)[ndx] = NULL;
1351 encode_actions_1 (struct command_line *action,
1352 struct breakpoint *t,
1353 struct bp_location *tloc,
1355 LONGEST frame_offset,
1356 struct collection_list *collect,
1357 struct collection_list *stepping_list)
1360 struct expression *exp = NULL;
1362 struct value *tempval;
1363 struct cmd_list_element *cmd;
1364 struct agent_expr *aexpr;
1366 for (; action; action = action->next)
1368 QUIT; /* Allow user to bail out with ^C. */
1369 action_exp = action->line;
1370 while (isspace ((int) *action_exp))
1373 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
1375 error (_("Bad action list item: %s"), action_exp);
1377 if (cmd_cfunc_eq (cmd, collect_pseudocommand))
1379 trace_string_kludge = 0;
1380 if (*action_exp == '/')
1381 action_exp = decode_agent_options (action_exp);
1384 { /* Repeat over a comma-separated list. */
1385 QUIT; /* Allow user to bail out with ^C. */
1386 while (isspace ((int) *action_exp))
1389 if (0 == strncasecmp ("$reg", action_exp, 4))
1391 for (i = 0; i < gdbarch_num_regs (tloc->gdbarch); i++)
1392 add_register (collect, i);
1393 action_exp = strchr (action_exp, ','); /* more? */
1395 else if (0 == strncasecmp ("$arg", action_exp, 4))
1397 add_local_symbols (collect,
1403 action_exp = strchr (action_exp, ','); /* more? */
1405 else if (0 == strncasecmp ("$loc", action_exp, 4))
1407 add_local_symbols (collect,
1413 action_exp = strchr (action_exp, ','); /* more? */
1415 else if (0 == strncasecmp ("$_ret", action_exp, 5))
1417 struct cleanup *old_chain1 = NULL;
1419 aexpr = gen_trace_for_return_address (tloc->address,
1422 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1425 report_agent_reqs_errors (aexpr);
1427 discard_cleanups (old_chain1);
1428 add_aexpr (collect, aexpr);
1430 /* take care of the registers */
1431 if (aexpr->reg_mask_len > 0)
1435 for (ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
1437 QUIT; /* allow user to bail out with ^C */
1438 if (aexpr->reg_mask[ndx1] != 0)
1440 /* assume chars have 8 bits */
1441 for (ndx2 = 0; ndx2 < 8; ndx2++)
1442 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
1443 /* it's used -- record it */
1444 add_register (collect,
1450 action_exp = strchr (action_exp, ','); /* more? */
1452 else if (0 == strncasecmp ("$_sdata", action_exp, 7))
1454 add_static_trace_data (collect);
1455 action_exp = strchr (action_exp, ','); /* more? */
1460 struct cleanup *old_chain = NULL;
1461 struct cleanup *old_chain1 = NULL;
1463 exp = parse_exp_1 (&action_exp, tloc->address,
1464 block_for_pc (tloc->address), 1);
1465 old_chain = make_cleanup (free_current_contents, &exp);
1467 switch (exp->elts[0].opcode)
1471 const char *name = &exp->elts[2].string;
1473 i = user_reg_map_name_to_regnum (tloc->gdbarch,
1474 name, strlen (name));
1476 internal_error (__FILE__, __LINE__,
1477 _("Register $%s not available"),
1480 printf_filtered ("OP_REGISTER: ");
1481 add_register (collect, i);
1486 /* Safe because we know it's a simple expression. */
1487 tempval = evaluate_expression (exp);
1488 addr = value_address (tempval);
1489 /* Initialize the TYPE_LENGTH if it is a typedef. */
1490 check_typedef (exp->elts[1].type);
1491 add_memrange (collect, memrange_absolute, addr,
1492 TYPE_LENGTH (exp->elts[1].type));
1496 collect_symbol (collect,
1497 exp->elts[2].symbol,
1504 default: /* Full-fledged expression. */
1505 aexpr = gen_trace_for_expr (tloc->address, exp);
1507 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1511 report_agent_reqs_errors (aexpr);
1513 discard_cleanups (old_chain1);
1514 add_aexpr (collect, aexpr);
1516 /* Take care of the registers. */
1517 if (aexpr->reg_mask_len > 0)
1522 for (ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
1524 QUIT; /* Allow user to bail out with ^C. */
1525 if (aexpr->reg_mask[ndx1] != 0)
1527 /* Assume chars have 8 bits. */
1528 for (ndx2 = 0; ndx2 < 8; ndx2++)
1529 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
1530 /* It's used -- record it. */
1531 add_register (collect,
1538 do_cleanups (old_chain);
1541 while (action_exp && *action_exp++ == ',');
1543 else if (cmd_cfunc_eq (cmd, teval_pseudocommand))
1546 { /* Repeat over a comma-separated list. */
1547 QUIT; /* Allow user to bail out with ^C. */
1548 while (isspace ((int) *action_exp))
1552 struct cleanup *old_chain = NULL;
1553 struct cleanup *old_chain1 = NULL;
1555 exp = parse_exp_1 (&action_exp, tloc->address,
1556 block_for_pc (tloc->address), 1);
1557 old_chain = make_cleanup (free_current_contents, &exp);
1559 aexpr = gen_eval_for_expr (tloc->address, exp);
1560 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1563 report_agent_reqs_errors (aexpr);
1565 discard_cleanups (old_chain1);
1566 /* Even though we're not officially collecting, add
1567 to the collect list anyway. */
1568 add_aexpr (collect, aexpr);
1570 do_cleanups (old_chain);
1573 while (action_exp && *action_exp++ == ',');
1575 else if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand))
1577 /* We check against nested while-stepping when setting
1578 breakpoint action, so no way to run into nested
1580 gdb_assert (stepping_list);
1582 encode_actions_1 (action->body_list[0], t, tloc, frame_reg,
1583 frame_offset, stepping_list, NULL);
1586 error (_("Invalid tracepoint command '%s'"), action->line);
1590 /* Render all actions into gdb protocol. */
1593 encode_actions (struct breakpoint *t, struct bp_location *tloc,
1594 char ***tdp_actions, char ***stepping_actions)
1596 static char tdp_buff[2048], step_buff[2048];
1597 char *default_collect_line = NULL;
1598 struct command_line *actions;
1599 struct command_line *default_collect_action = NULL;
1601 LONGEST frame_offset;
1602 struct cleanup *back_to;
1604 back_to = make_cleanup (null_cleanup, NULL);
1606 clear_collection_list (&tracepoint_list);
1607 clear_collection_list (&stepping_list);
1609 *tdp_actions = NULL;
1610 *stepping_actions = NULL;
1612 gdbarch_virtual_frame_pointer (tloc->gdbarch,
1613 tloc->address, &frame_reg, &frame_offset);
1615 actions = breakpoint_commands (t);
1617 /* If there are default expressions to collect, make up a collect
1618 action and prepend to the action list to encode. Note that since
1619 validation is per-tracepoint (local var "xyz" might be valid for
1620 one tracepoint and not another, etc), we make up the action on
1621 the fly, and don't cache it. */
1622 if (*default_collect)
1626 default_collect_line = xstrprintf ("collect %s", default_collect);
1627 make_cleanup (xfree, default_collect_line);
1629 line = default_collect_line;
1630 validate_actionline (&line, t);
1632 default_collect_action = xmalloc (sizeof (struct command_line));
1633 make_cleanup (xfree, default_collect_action);
1634 default_collect_action->next = actions;
1635 default_collect_action->line = line;
1636 actions = default_collect_action;
1638 encode_actions_1 (actions, t, tloc, frame_reg, frame_offset,
1639 &tracepoint_list, &stepping_list);
1641 memrange_sortmerge (&tracepoint_list);
1642 memrange_sortmerge (&stepping_list);
1644 *tdp_actions = stringify_collection_list (&tracepoint_list,
1646 *stepping_actions = stringify_collection_list (&stepping_list,
1649 do_cleanups (back_to);
1653 add_aexpr (struct collection_list *collect, struct agent_expr *aexpr)
1655 if (collect->next_aexpr_elt >= collect->aexpr_listsize)
1657 collect->aexpr_list =
1658 xrealloc (collect->aexpr_list,
1659 2 * collect->aexpr_listsize * sizeof (struct agent_expr *));
1660 collect->aexpr_listsize *= 2;
1662 collect->aexpr_list[collect->next_aexpr_elt] = aexpr;
1663 collect->next_aexpr_elt++;
1667 process_tracepoint_on_disconnect (void)
1669 VEC(breakpoint_p) *tp_vec = NULL;
1671 struct breakpoint *b;
1672 int has_pending_p = 0;
1674 /* Check whether we still have pending tracepoint. If we have, warn the
1675 user that pending tracepoint will no longer work. */
1676 tp_vec = all_tracepoints ();
1677 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1686 struct bp_location *loc1;
1688 for (loc1 = b->loc; loc1; loc1 = loc1->next)
1690 if (loc1->shlib_disabled)
1701 VEC_free (breakpoint_p, tp_vec);
1704 warning (_("Pending tracepoints will not be resolved while"
1705 " GDB is disconnected\n"));
1710 start_tracing (char *notes)
1712 VEC(breakpoint_p) *tp_vec = NULL;
1714 struct breakpoint *b;
1715 struct trace_state_variable *tsv;
1716 int any_enabled = 0, num_to_download = 0;
1719 tp_vec = all_tracepoints ();
1721 /* No point in tracing without any tracepoints... */
1722 if (VEC_length (breakpoint_p, tp_vec) == 0)
1724 VEC_free (breakpoint_p, tp_vec);
1725 error (_("No tracepoints defined, not starting trace"));
1728 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1730 struct tracepoint *t = (struct tracepoint *) b;
1731 struct bp_location *loc;
1733 if (b->enable_state == bp_enabled)
1736 if ((b->type == bp_fast_tracepoint
1737 ? may_insert_fast_tracepoints
1738 : may_insert_tracepoints))
1741 warning (_("May not insert %stracepoints, skipping tracepoint %d"),
1742 (b->type == bp_fast_tracepoint ? "fast " : ""), b->number);
1747 if (target_supports_enable_disable_tracepoint ())
1748 warning (_("No tracepoints enabled"));
1751 /* No point in tracing with only disabled tracepoints that
1752 cannot be re-enabled. */
1753 VEC_free (breakpoint_p, tp_vec);
1754 error (_("No tracepoints enabled, not starting trace"));
1758 if (num_to_download <= 0)
1760 VEC_free (breakpoint_p, tp_vec);
1761 error (_("No tracepoints that may be downloaded, not starting trace"));
1764 target_trace_init ();
1766 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1768 struct tracepoint *t = (struct tracepoint *) b;
1769 struct bp_location *loc;
1770 int bp_location_downloaded = 0;
1772 /* Clear `inserted' flag. */
1773 for (loc = b->loc; loc; loc = loc->next)
1776 if ((b->type == bp_fast_tracepoint
1777 ? !may_insert_fast_tracepoints
1778 : !may_insert_tracepoints))
1781 t->number_on_target = 0;
1783 for (loc = b->loc; loc; loc = loc->next)
1785 /* Since tracepoint locations are never duplicated, `inserted'
1786 flag should be zero. */
1787 gdb_assert (!loc->inserted);
1789 target_download_tracepoint (loc);
1792 bp_location_downloaded = 1;
1795 t->number_on_target = b->number;
1797 for (loc = b->loc; loc; loc = loc->next)
1798 if (loc->probe != NULL)
1799 loc->probe->pops->set_semaphore (loc->probe, loc->gdbarch);
1801 if (bp_location_downloaded)
1802 observer_notify_breakpoint_modified (b);
1804 VEC_free (breakpoint_p, tp_vec);
1806 /* Send down all the trace state variables too. */
1807 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
1809 target_download_trace_state_variable (tsv);
1812 /* Tell target to treat text-like sections as transparent. */
1813 target_trace_set_readonly_regions ();
1814 /* Set some mode flags. */
1815 target_set_disconnected_tracing (disconnected_tracing);
1816 target_set_circular_trace_buffer (circular_trace_buffer);
1819 notes = trace_notes;
1820 ret = target_set_trace_notes (trace_user, notes, NULL);
1822 if (!ret && (trace_user || notes))
1823 warning (_("Target does not support trace user/notes, info ignored"));
1825 /* Now insert traps and begin collecting data. */
1826 target_trace_start ();
1828 /* Reset our local state. */
1829 set_traceframe_num (-1);
1830 set_tracepoint_num (-1);
1831 set_traceframe_context (NULL);
1832 current_trace_status()->running = 1;
1833 clear_traceframe_info ();
1836 /* The tstart command requests the target to start a new trace run.
1837 The command passes any arguments it has to the target verbatim, as
1838 an optional "trace note". This is useful as for instance a warning
1839 to other users if the trace runs disconnected, and you don't want
1840 anybody else messing with the target. */
1843 trace_start_command (char *args, int from_tty)
1845 dont_repeat (); /* Like "run", dangerous to repeat accidentally. */
1847 if (current_trace_status ()->running)
1850 && !query (_("A trace is running already. Start a new run? ")))
1851 error (_("New trace run not started."));
1854 start_tracing (args);
1857 /* The tstop command stops the tracing run. The command passes any
1858 supplied arguments to the target verbatim as a "stop note"; if the
1859 target supports trace notes, then it will be reported back as part
1860 of the trace run's status. */
1863 trace_stop_command (char *args, int from_tty)
1865 if (!current_trace_status ()->running)
1866 error (_("Trace is not running."));
1868 stop_tracing (args);
1872 stop_tracing (char *note)
1875 VEC(breakpoint_p) *tp_vec = NULL;
1877 struct breakpoint *t;
1879 target_trace_stop ();
1881 tp_vec = all_tracepoints ();
1882 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, t); ix++)
1884 struct bp_location *loc;
1886 if ((t->type == bp_fast_tracepoint
1887 ? !may_insert_fast_tracepoints
1888 : !may_insert_tracepoints))
1891 for (loc = t->loc; loc; loc = loc->next)
1893 /* GDB can be totally absent in some disconnected trace scenarios,
1894 but we don't really care if this semaphore goes out of sync.
1895 That's why we are decrementing it here, but not taking care
1897 if (loc->probe != NULL)
1898 loc->probe->pops->clear_semaphore (loc->probe, loc->gdbarch);
1902 VEC_free (breakpoint_p, tp_vec);
1905 note = trace_stop_notes;
1906 ret = target_set_trace_notes (NULL, NULL, note);
1909 warning (_("Target does not support trace notes, note ignored"));
1911 /* Should change in response to reply? */
1912 current_trace_status ()->running = 0;
1915 /* tstatus command */
1917 trace_status_command (char *args, int from_tty)
1919 struct trace_status *ts = current_trace_status ();
1921 VEC(breakpoint_p) *tp_vec = NULL;
1922 struct breakpoint *t;
1924 status = target_get_trace_status (ts);
1929 printf_filtered (_("Using a trace file.\n"));
1932 printf_filtered (_("Trace can not be run on this target.\n"));
1937 if (!ts->running_known)
1939 printf_filtered (_("Run/stop status is unknown.\n"));
1941 else if (ts->running)
1943 printf_filtered (_("Trace is running on the target.\n"));
1947 switch (ts->stop_reason)
1949 case trace_never_run:
1950 printf_filtered (_("No trace has been run on the target.\n"));
1954 printf_filtered (_("Trace stopped by a tstop command (%s).\n"),
1957 printf_filtered (_("Trace stopped by a tstop command.\n"));
1959 case trace_buffer_full:
1960 printf_filtered (_("Trace stopped because the buffer was full.\n"));
1962 case trace_disconnected:
1963 printf_filtered (_("Trace stopped because of disconnection.\n"));
1965 case tracepoint_passcount:
1966 printf_filtered (_("Trace stopped by tracepoint %d.\n"),
1967 ts->stopping_tracepoint);
1969 case tracepoint_error:
1970 if (ts->stopping_tracepoint)
1971 printf_filtered (_("Trace stopped by an "
1972 "error (%s, tracepoint %d).\n"),
1973 ts->stop_desc, ts->stopping_tracepoint);
1975 printf_filtered (_("Trace stopped by an error (%s).\n"),
1978 case trace_stop_reason_unknown:
1979 printf_filtered (_("Trace stopped for an unknown reason.\n"));
1982 printf_filtered (_("Trace stopped for some other reason (%d).\n"),
1988 if (ts->traceframes_created >= 0
1989 && ts->traceframe_count != ts->traceframes_created)
1991 printf_filtered (_("Buffer contains %d trace "
1992 "frames (of %d created total).\n"),
1993 ts->traceframe_count, ts->traceframes_created);
1995 else if (ts->traceframe_count >= 0)
1997 printf_filtered (_("Collected %d trace frames.\n"),
1998 ts->traceframe_count);
2001 if (ts->buffer_free >= 0)
2003 if (ts->buffer_size >= 0)
2005 printf_filtered (_("Trace buffer has %d bytes of %d bytes free"),
2006 ts->buffer_free, ts->buffer_size);
2007 if (ts->buffer_size > 0)
2008 printf_filtered (_(" (%d%% full)"),
2009 ((int) ((((long long) (ts->buffer_size
2010 - ts->buffer_free)) * 100)
2011 / ts->buffer_size)));
2012 printf_filtered (_(".\n"));
2015 printf_filtered (_("Trace buffer has %d bytes free.\n"),
2019 if (ts->disconnected_tracing)
2020 printf_filtered (_("Trace will continue if GDB disconnects.\n"));
2022 printf_filtered (_("Trace will stop if GDB disconnects.\n"));
2024 if (ts->circular_buffer)
2025 printf_filtered (_("Trace buffer is circular.\n"));
2027 if (ts->user_name && strlen (ts->user_name) > 0)
2028 printf_filtered (_("Trace user is %s.\n"), ts->user_name);
2030 if (ts->notes && strlen (ts->notes) > 0)
2031 printf_filtered (_("Trace notes: %s.\n"), ts->notes);
2033 /* Now report on what we're doing with tfind. */
2034 if (traceframe_number >= 0)
2035 printf_filtered (_("Looking at trace frame %d, tracepoint %d.\n"),
2036 traceframe_number, tracepoint_number);
2038 printf_filtered (_("Not looking at any trace frame.\n"));
2040 /* Report start/stop times if supplied. */
2045 LONGEST run_time = ts->stop_time - ts->start_time;
2047 /* Reporting a run time is more readable than two long numbers. */
2048 printf_filtered (_("Trace started at %ld.%06ld secs, stopped %ld.%06ld secs later.\n"),
2049 (long int) ts->start_time / 1000000,
2050 (long int) ts->start_time % 1000000,
2051 (long int) run_time / 1000000,
2052 (long int) run_time % 1000000);
2055 printf_filtered (_("Trace started at %ld.%06ld secs.\n"),
2056 (long int) ts->start_time / 1000000,
2057 (long int) ts->start_time % 1000000);
2059 else if (ts->stop_time)
2060 printf_filtered (_("Trace stopped at %ld.%06ld secs.\n"),
2061 (long int) ts->stop_time / 1000000,
2062 (long int) ts->stop_time % 1000000);
2064 /* Now report any per-tracepoint status available. */
2065 tp_vec = all_tracepoints ();
2067 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, t); ix++)
2068 target_get_tracepoint_status (t, NULL);
2070 VEC_free (breakpoint_p, tp_vec);
2073 /* Report the trace status to uiout, in a way suitable for MI, and not
2074 suitable for CLI. If ON_STOP is true, suppress a few fields that
2075 are not meaningful in the -trace-stop response.
2077 The implementation is essentially parallel to trace_status_command, but
2078 merging them will result in unreadable code. */
2080 trace_status_mi (int on_stop)
2082 struct ui_out *uiout = current_uiout;
2083 struct trace_status *ts = current_trace_status ();
2086 status = target_get_trace_status (ts);
2088 if (status == -1 && !ts->from_file)
2090 ui_out_field_string (uiout, "supported", "0");
2095 ui_out_field_string (uiout, "supported", "file");
2097 ui_out_field_string (uiout, "supported", "1");
2099 gdb_assert (ts->running_known);
2103 ui_out_field_string (uiout, "running", "1");
2105 /* Unlike CLI, do not show the state of 'disconnected-tracing' variable.
2106 Given that the frontend gets the status either on -trace-stop, or from
2107 -trace-status after re-connection, it does not seem like this
2108 information is necessary for anything. It is not necessary for either
2109 figuring the vital state of the target nor for navigation of trace
2110 frames. If the frontend wants to show the current state is some
2111 configure dialog, it can request the value when such dialog is
2112 invoked by the user. */
2116 char *stop_reason = NULL;
2117 int stopping_tracepoint = -1;
2120 ui_out_field_string (uiout, "running", "0");
2122 if (ts->stop_reason != trace_stop_reason_unknown)
2124 switch (ts->stop_reason)
2127 stop_reason = "request";
2129 case trace_buffer_full:
2130 stop_reason = "overflow";
2132 case trace_disconnected:
2133 stop_reason = "disconnection";
2135 case tracepoint_passcount:
2136 stop_reason = "passcount";
2137 stopping_tracepoint = ts->stopping_tracepoint;
2139 case tracepoint_error:
2140 stop_reason = "error";
2141 stopping_tracepoint = ts->stopping_tracepoint;
2147 ui_out_field_string (uiout, "stop-reason", stop_reason);
2148 if (stopping_tracepoint != -1)
2149 ui_out_field_int (uiout, "stopping-tracepoint",
2150 stopping_tracepoint);
2151 if (ts->stop_reason == tracepoint_error)
2152 ui_out_field_string (uiout, "error-description",
2158 if (ts->traceframe_count != -1)
2159 ui_out_field_int (uiout, "frames", ts->traceframe_count);
2160 if (ts->traceframes_created != -1)
2161 ui_out_field_int (uiout, "frames-created", ts->traceframes_created);
2162 if (ts->buffer_size != -1)
2163 ui_out_field_int (uiout, "buffer-size", ts->buffer_size);
2164 if (ts->buffer_free != -1)
2165 ui_out_field_int (uiout, "buffer-free", ts->buffer_free);
2167 ui_out_field_int (uiout, "disconnected", ts->disconnected_tracing);
2168 ui_out_field_int (uiout, "circular", ts->circular_buffer);
2170 ui_out_field_string (uiout, "user-name", ts->user_name);
2171 ui_out_field_string (uiout, "notes", ts->notes);
2176 xsnprintf (buf, sizeof buf, "%ld.%06ld",
2177 (long int) ts->start_time / 1000000,
2178 (long int) ts->start_time % 1000000);
2179 ui_out_field_string (uiout, "start-time", buf);
2180 xsnprintf (buf, sizeof buf, "%ld.%06ld",
2181 (long int) ts->stop_time / 1000000,
2182 (long int) ts->stop_time % 1000000);
2183 ui_out_field_string (uiout, "stop-time", buf);
2187 /* This function handles the details of what to do about an ongoing
2188 tracing run if the user has asked to detach or otherwise disconnect
2191 disconnect_tracing (int from_tty)
2193 /* It can happen that the target that was tracing went away on its
2194 own, and we didn't notice. Get a status update, and if the
2195 current target doesn't even do tracing, then assume it's not
2197 if (target_get_trace_status (current_trace_status ()) < 0)
2198 current_trace_status ()->running = 0;
2200 /* If running interactively, give the user the option to cancel and
2201 then decide what to do differently with the run. Scripts are
2202 just going to disconnect and let the target deal with it,
2203 according to how it's been instructed previously via
2204 disconnected-tracing. */
2205 if (current_trace_status ()->running && from_tty)
2207 process_tracepoint_on_disconnect ();
2209 if (current_trace_status ()->disconnected_tracing)
2211 if (!query (_("Trace is running and will "
2212 "continue after detach; detach anyway? ")))
2213 error (_("Not confirmed."));
2217 if (!query (_("Trace is running but will "
2218 "stop on detach; detach anyway? ")))
2219 error (_("Not confirmed."));
2223 /* Also we want to be out of tfind mode, otherwise things can get
2224 confusing upon reconnection. Just use these calls instead of
2225 full tfind_1 behavior because we're in the middle of detaching,
2226 and there's no point to updating current stack frame etc. */
2227 set_current_traceframe (-1);
2228 set_tracepoint_num (-1);
2229 set_traceframe_context (NULL);
2232 /* Worker function for the various flavors of the tfind command. */
2234 tfind_1 (enum trace_find_type type, int num,
2235 ULONGEST addr1, ULONGEST addr2,
2238 int target_frameno = -1, target_tracept = -1;
2239 struct frame_id old_frame_id = null_frame_id;
2240 struct tracepoint *tp;
2241 struct ui_out *uiout = current_uiout;
2243 /* Only try to get the current stack frame if we have a chance of
2244 succeeding. In particular, if we're trying to get a first trace
2245 frame while all threads are running, it's not going to succeed,
2246 so leave it with a default value and let the frame comparison
2247 below (correctly) decide to print out the source location of the
2249 if (!(type == tfind_number && num == -1)
2250 && (has_stack_frames () || traceframe_number >= 0))
2251 old_frame_id = get_frame_id (get_current_frame ());
2253 target_frameno = target_trace_find (type, num, addr1, addr2,
2256 if (type == tfind_number
2258 && target_frameno == -1)
2260 /* We told the target to get out of tfind mode, and it did. */
2262 else if (target_frameno == -1)
2264 /* A request for a non-existent trace frame has failed.
2265 Our response will be different, depending on FROM_TTY:
2267 If FROM_TTY is true, meaning that this command was
2268 typed interactively by the user, then give an error
2269 and DO NOT change the state of traceframe_number etc.
2271 However if FROM_TTY is false, meaning that we're either
2272 in a script, a loop, or a user-defined command, then
2273 DON'T give an error, but DO change the state of
2274 traceframe_number etc. to invalid.
2276 The rationalle is that if you typed the command, you
2277 might just have committed a typo or something, and you'd
2278 like to NOT lose your current debugging state. However
2279 if you're in a user-defined command or especially in a
2280 loop, then you need a way to detect that the command
2281 failed WITHOUT aborting. This allows you to write
2282 scripts that search thru the trace buffer until the end,
2283 and then continue on to do something else. */
2286 error (_("Target failed to find requested trace frame."));
2290 printf_filtered ("End of trace buffer.\n");
2291 #if 0 /* dubious now? */
2292 /* The following will not recurse, since it's
2294 trace_find_command ("-1", from_tty);
2299 tp = get_tracepoint_by_number_on_target (target_tracept);
2301 reinit_frame_cache ();
2302 target_dcache_invalidate ();
2304 set_tracepoint_num (tp ? tp->base.number : target_tracept);
2306 if (target_frameno != get_traceframe_number ())
2307 observer_notify_traceframe_changed (target_frameno, tracepoint_number);
2309 set_current_traceframe (target_frameno);
2311 if (target_frameno == -1)
2312 set_traceframe_context (NULL);
2314 set_traceframe_context (get_current_frame ());
2316 if (traceframe_number >= 0)
2318 /* Use different branches for MI and CLI to make CLI messages
2320 if (ui_out_is_mi_like_p (uiout))
2322 ui_out_field_string (uiout, "found", "1");
2323 ui_out_field_int (uiout, "tracepoint", tracepoint_number);
2324 ui_out_field_int (uiout, "traceframe", traceframe_number);
2328 printf_unfiltered (_("Found trace frame %d, tracepoint %d\n"),
2329 traceframe_number, tracepoint_number);
2334 if (ui_out_is_mi_like_p (uiout))
2335 ui_out_field_string (uiout, "found", "0");
2336 else if (type == tfind_number && num == -1)
2337 printf_unfiltered (_("No longer looking at any trace frame\n"));
2338 else /* This case may never occur, check. */
2339 printf_unfiltered (_("No trace frame found\n"));
2342 /* If we're in nonstop mode and getting out of looking at trace
2343 frames, there won't be any current frame to go back to and
2346 && (has_stack_frames () || traceframe_number >= 0))
2348 enum print_what print_what;
2350 /* NOTE: in imitation of the step command, try to determine
2351 whether we have made a transition from one function to
2352 another. If so, we'll print the "stack frame" (ie. the new
2353 function and it's arguments) -- otherwise we'll just show the
2356 if (frame_id_eq (old_frame_id,
2357 get_frame_id (get_current_frame ())))
2358 print_what = SRC_LINE;
2360 print_what = SRC_AND_LOC;
2362 print_stack_frame (get_selected_frame (NULL), 1, print_what);
2367 /* trace_find_command takes a trace frame number n,
2368 sends "QTFrame:<n>" to the target,
2369 and accepts a reply that may contain several optional pieces
2370 of information: a frame number, a tracepoint number, and an
2371 indication of whether this is a trap frame or a stepping frame.
2373 The minimal response is just "OK" (which indicates that the
2374 target does not give us a frame number or a tracepoint number).
2375 Instead of that, the target may send us a string containing
2377 F<hexnum> (gives the selected frame number)
2378 T<hexnum> (gives the selected tracepoint number)
2383 trace_find_command (char *args, int from_tty)
2384 { /* This should only be called with a numeric argument. */
2387 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2388 error (_("May not look at trace frames while trace is running."));
2390 if (args == 0 || *args == 0)
2391 { /* TFIND with no args means find NEXT trace frame. */
2392 if (traceframe_number == -1)
2393 frameno = 0; /* "next" is first one. */
2395 frameno = traceframe_number + 1;
2397 else if (0 == strcmp (args, "-"))
2399 if (traceframe_number == -1)
2400 error (_("not debugging trace buffer"));
2401 else if (from_tty && traceframe_number == 0)
2402 error (_("already at start of trace buffer"));
2404 frameno = traceframe_number - 1;
2406 /* A hack to work around eval's need for fp to have been collected. */
2407 else if (0 == strcmp (args, "-1"))
2410 frameno = parse_and_eval_long (args);
2413 error (_("invalid input (%d is less than zero)"), frameno);
2415 tfind_1 (tfind_number, frameno, 0, 0, from_tty);
2420 trace_find_end_command (char *args, int from_tty)
2422 trace_find_command ("-1", from_tty);
2427 trace_find_start_command (char *args, int from_tty)
2429 trace_find_command ("0", from_tty);
2432 /* tfind pc command */
2434 trace_find_pc_command (char *args, int from_tty)
2438 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2439 error (_("May not look at trace frames while trace is running."));
2441 if (args == 0 || *args == 0)
2442 pc = regcache_read_pc (get_current_regcache ());
2444 pc = parse_and_eval_address (args);
2446 tfind_1 (tfind_pc, 0, pc, 0, from_tty);
2449 /* tfind tracepoint command */
2451 trace_find_tracepoint_command (char *args, int from_tty)
2454 struct tracepoint *tp;
2456 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2457 error (_("May not look at trace frames while trace is running."));
2459 if (args == 0 || *args == 0)
2461 if (tracepoint_number == -1)
2462 error (_("No current tracepoint -- please supply an argument."));
2464 tdp = tracepoint_number; /* Default is current TDP. */
2467 tdp = parse_and_eval_long (args);
2469 /* If we have the tracepoint on hand, use the number that the
2470 target knows about (which may be different if we disconnected
2471 and reconnected). */
2472 tp = get_tracepoint (tdp);
2474 tdp = tp->number_on_target;
2476 tfind_1 (tfind_tp, tdp, 0, 0, from_tty);
2479 /* TFIND LINE command:
2481 This command will take a sourceline for argument, just like BREAK
2482 or TRACE (ie. anything that "decode_line_1" can handle).
2484 With no argument, this command will find the next trace frame
2485 corresponding to a source line OTHER THAN THE CURRENT ONE. */
2488 trace_find_line_command (char *args, int from_tty)
2490 static CORE_ADDR start_pc, end_pc;
2491 struct symtabs_and_lines sals;
2492 struct symtab_and_line sal;
2493 struct cleanup *old_chain;
2495 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2496 error (_("May not look at trace frames while trace is running."));
2498 if (args == 0 || *args == 0)
2500 sal = find_pc_line (get_frame_pc (get_current_frame ()), 0);
2502 sals.sals = (struct symtab_and_line *)
2503 xmalloc (sizeof (struct symtab_and_line));
2508 sals = decode_line_with_current_source (args, DECODE_LINE_FUNFIRSTLINE);
2512 old_chain = make_cleanup (xfree, sals.sals);
2513 if (sal.symtab == 0)
2514 error (_("No line number information available."));
2516 if (sal.line > 0 && find_line_pc_range (sal, &start_pc, &end_pc))
2518 if (start_pc == end_pc)
2520 printf_filtered ("Line %d of \"%s\"",
2521 sal.line, sal.symtab->filename);
2523 printf_filtered (" is at address ");
2524 print_address (get_current_arch (), start_pc, gdb_stdout);
2526 printf_filtered (" but contains no code.\n");
2527 sal = find_pc_line (start_pc, 0);
2529 && find_line_pc_range (sal, &start_pc, &end_pc)
2530 && start_pc != end_pc)
2531 printf_filtered ("Attempting to find line %d instead.\n",
2534 error (_("Cannot find a good line."));
2538 /* Is there any case in which we get here, and have an address
2539 which the user would want to see? If we have debugging
2540 symbols and no line numbers? */
2541 error (_("Line number %d is out of range for \"%s\"."),
2542 sal.line, sal.symtab->filename);
2544 /* Find within range of stated line. */
2546 tfind_1 (tfind_range, 0, start_pc, end_pc - 1, from_tty);
2548 tfind_1 (tfind_outside, 0, start_pc, end_pc - 1, from_tty);
2549 do_cleanups (old_chain);
2552 /* tfind range command */
2554 trace_find_range_command (char *args, int from_tty)
2556 static CORE_ADDR start, stop;
2559 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2560 error (_("May not look at trace frames while trace is running."));
2562 if (args == 0 || *args == 0)
2563 { /* XXX FIXME: what should default behavior be? */
2564 printf_filtered ("Usage: tfind range <startaddr>,<endaddr>\n");
2568 if (0 != (tmp = strchr (args, ',')))
2570 *tmp++ = '\0'; /* Terminate start address. */
2571 while (isspace ((int) *tmp))
2573 start = parse_and_eval_address (args);
2574 stop = parse_and_eval_address (tmp);
2577 { /* No explicit end address? */
2578 start = parse_and_eval_address (args);
2579 stop = start + 1; /* ??? */
2582 tfind_1 (tfind_range, 0, start, stop, from_tty);
2585 /* tfind outside command */
2587 trace_find_outside_command (char *args, int from_tty)
2589 CORE_ADDR start, stop;
2592 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2593 error (_("May not look at trace frames while trace is running."));
2595 if (args == 0 || *args == 0)
2596 { /* XXX FIXME: what should default behavior be? */
2597 printf_filtered ("Usage: tfind outside <startaddr>,<endaddr>\n");
2601 if (0 != (tmp = strchr (args, ',')))
2603 *tmp++ = '\0'; /* Terminate start address. */
2604 while (isspace ((int) *tmp))
2606 start = parse_and_eval_address (args);
2607 stop = parse_and_eval_address (tmp);
2610 { /* No explicit end address? */
2611 start = parse_and_eval_address (args);
2612 stop = start + 1; /* ??? */
2615 tfind_1 (tfind_outside, 0, start, stop, from_tty);
2618 /* info scope command: list the locals for a scope. */
2620 scope_info (char *args, int from_tty)
2622 struct symtabs_and_lines sals;
2624 struct minimal_symbol *msym;
2625 struct block *block;
2626 const char *symname;
2627 char *save_args = args;
2628 struct block_iterator iter;
2630 struct gdbarch *gdbarch;
2633 if (args == 0 || *args == 0)
2634 error (_("requires an argument (function, "
2635 "line or *addr) to define a scope"));
2637 sals = decode_line_1 (&args, DECODE_LINE_FUNFIRSTLINE, NULL, 0);
2638 if (sals.nelts == 0)
2639 return; /* Presumably decode_line_1 has already warned. */
2641 /* Resolve line numbers to PC. */
2642 resolve_sal_pc (&sals.sals[0]);
2643 block = block_for_pc (sals.sals[0].pc);
2647 QUIT; /* Allow user to bail out with ^C. */
2648 ALL_BLOCK_SYMBOLS (block, iter, sym)
2650 QUIT; /* Allow user to bail out with ^C. */
2652 printf_filtered ("Scope for %s:\n", save_args);
2655 symname = SYMBOL_PRINT_NAME (sym);
2656 if (symname == NULL || *symname == '\0')
2657 continue; /* Probably botched, certainly useless. */
2659 gdbarch = get_objfile_arch (SYMBOL_SYMTAB (sym)->objfile);
2661 printf_filtered ("Symbol %s is ", symname);
2662 switch (SYMBOL_CLASS (sym))
2665 case LOC_UNDEF: /* Messed up symbol? */
2666 printf_filtered ("a bogus symbol, class %d.\n",
2667 SYMBOL_CLASS (sym));
2668 count--; /* Don't count this one. */
2671 printf_filtered ("a constant with value %s (%s)",
2672 plongest (SYMBOL_VALUE (sym)),
2673 hex_string (SYMBOL_VALUE (sym)));
2675 case LOC_CONST_BYTES:
2676 printf_filtered ("constant bytes: ");
2677 if (SYMBOL_TYPE (sym))
2678 for (j = 0; j < TYPE_LENGTH (SYMBOL_TYPE (sym)); j++)
2679 fprintf_filtered (gdb_stdout, " %02x",
2680 (unsigned) SYMBOL_VALUE_BYTES (sym)[j]);
2683 printf_filtered ("in static storage at address ");
2684 printf_filtered ("%s", paddress (gdbarch,
2685 SYMBOL_VALUE_ADDRESS (sym)));
2688 /* GDBARCH is the architecture associated with the objfile
2689 the symbol is defined in; the target architecture may be
2690 different, and may provide additional registers. However,
2691 we do not know the target architecture at this point.
2692 We assume the objfile architecture will contain all the
2693 standard registers that occur in debug info in that
2695 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym,
2698 if (SYMBOL_IS_ARGUMENT (sym))
2699 printf_filtered ("an argument in register $%s",
2700 gdbarch_register_name (gdbarch, regno));
2702 printf_filtered ("a local variable in register $%s",
2703 gdbarch_register_name (gdbarch, regno));
2706 printf_filtered ("an argument at stack/frame offset %s",
2707 plongest (SYMBOL_VALUE (sym)));
2710 printf_filtered ("a local variable at frame offset %s",
2711 plongest (SYMBOL_VALUE (sym)));
2714 printf_filtered ("a reference argument at offset %s",
2715 plongest (SYMBOL_VALUE (sym)));
2717 case LOC_REGPARM_ADDR:
2718 /* Note comment at LOC_REGISTER. */
2719 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym,
2721 printf_filtered ("the address of an argument, in register $%s",
2722 gdbarch_register_name (gdbarch, regno));
2725 printf_filtered ("a typedef.\n");
2728 printf_filtered ("a label at address ");
2729 printf_filtered ("%s", paddress (gdbarch,
2730 SYMBOL_VALUE_ADDRESS (sym)));
2733 printf_filtered ("a function at address ");
2734 printf_filtered ("%s",
2735 paddress (gdbarch, BLOCK_START (SYMBOL_BLOCK_VALUE (sym))));
2737 case LOC_UNRESOLVED:
2738 msym = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (sym),
2741 printf_filtered ("Unresolved Static");
2744 printf_filtered ("static storage at address ");
2745 printf_filtered ("%s",
2746 paddress (gdbarch, SYMBOL_VALUE_ADDRESS (msym)));
2749 case LOC_OPTIMIZED_OUT:
2750 printf_filtered ("optimized out.\n");
2753 SYMBOL_COMPUTED_OPS (sym)->describe_location (sym,
2754 BLOCK_START (block),
2758 if (SYMBOL_TYPE (sym))
2759 printf_filtered (", length %d.\n",
2760 TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym))));
2762 if (BLOCK_FUNCTION (block))
2765 block = BLOCK_SUPERBLOCK (block);
2768 printf_filtered ("Scope for %s contains no locals or arguments.\n",
2772 /* worker function (cleanup) */
2774 replace_comma (void *data)
2781 /* Helper for trace_dump_command. Dump the action list starting at
2782 ACTION. STEPPING_ACTIONS is true if we're iterating over the
2783 actions of the body of a while-stepping action. STEPPING_FRAME is
2784 set if the current traceframe was determined to be a while-stepping
2788 trace_dump_actions (struct command_line *action,
2789 int stepping_actions, int stepping_frame,
2792 char *action_exp, *next_comma;
2794 for (; action != NULL; action = action->next)
2796 struct cmd_list_element *cmd;
2798 QUIT; /* Allow user to bail out with ^C. */
2799 action_exp = action->line;
2800 while (isspace ((int) *action_exp))
2803 /* The collection actions to be done while stepping are
2804 bracketed by the commands "while-stepping" and "end". */
2806 if (*action_exp == '#') /* comment line */
2809 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
2811 error (_("Bad action list item: %s"), action_exp);
2813 if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand))
2817 for (i = 0; i < action->body_count; ++i)
2818 trace_dump_actions (action->body_list[i],
2819 1, stepping_frame, from_tty);
2821 else if (cmd_cfunc_eq (cmd, collect_pseudocommand))
2823 /* Display the collected data.
2824 For the trap frame, display only what was collected at
2825 the trap. Likewise for stepping frames, display only
2826 what was collected while stepping. This means that the
2827 two boolean variables, STEPPING_FRAME and
2828 STEPPING_ACTIONS should be equal. */
2829 if (stepping_frame == stepping_actions)
2831 if (*action_exp == '/')
2832 action_exp = decode_agent_options (action_exp);
2835 { /* Repeat over a comma-separated list. */
2836 QUIT; /* Allow user to bail out with ^C. */
2837 if (*action_exp == ',')
2839 while (isspace ((int) *action_exp))
2842 next_comma = strchr (action_exp, ',');
2844 if (0 == strncasecmp (action_exp, "$reg", 4))
2845 registers_info (NULL, from_tty);
2846 else if (0 == strncasecmp (action_exp, "$_ret", 5))
2848 else if (0 == strncasecmp (action_exp, "$loc", 4))
2849 locals_info (NULL, from_tty);
2850 else if (0 == strncasecmp (action_exp, "$arg", 4))
2851 args_info (NULL, from_tty);
2856 make_cleanup (replace_comma, next_comma);
2859 printf_filtered ("%s = ", action_exp);
2860 output_command (action_exp, from_tty);
2861 printf_filtered ("\n");
2865 action_exp = next_comma;
2867 while (action_exp && *action_exp == ',');
2873 /* The tdump command. */
2876 trace_dump_command (char *args, int from_tty)
2878 struct regcache *regcache;
2879 struct tracepoint *t;
2880 int stepping_frame = 0;
2881 struct bp_location *loc;
2882 char *line, *default_collect_line = NULL;
2883 struct command_line *actions, *default_collect_action = NULL;
2884 struct cleanup *old_chain = NULL;
2886 if (tracepoint_number == -1)
2888 warning (_("No current trace frame."));
2892 t = get_tracepoint (tracepoint_number);
2895 error (_("No known tracepoint matches 'current' tracepoint #%d."),
2898 printf_filtered ("Data collected at tracepoint %d, trace frame %d:\n",
2899 tracepoint_number, traceframe_number);
2901 /* The current frame is a trap frame if the frame PC is equal
2902 to the tracepoint PC. If not, then the current frame was
2903 collected during single-stepping. */
2905 regcache = get_current_regcache ();
2907 /* If the traceframe's address matches any of the tracepoint's
2908 locations, assume it is a direct hit rather than a while-stepping
2909 frame. (FIXME this is not reliable, should record each frame's
2912 for (loc = t->base.loc; loc; loc = loc->next)
2913 if (loc->address == regcache_read_pc (regcache))
2916 actions = breakpoint_commands (&t->base);
2918 /* If there is a default-collect list, make up a collect command,
2919 prepend to the tracepoint's commands, and pass the whole mess to
2920 the trace dump scanner. We need to validate because
2921 default-collect might have been junked since the trace run. */
2922 if (*default_collect)
2924 default_collect_line = xstrprintf ("collect %s", default_collect);
2925 old_chain = make_cleanup (xfree, default_collect_line);
2926 line = default_collect_line;
2927 validate_actionline (&line, &t->base);
2928 default_collect_action = xmalloc (sizeof (struct command_line));
2929 make_cleanup (xfree, default_collect_action);
2930 default_collect_action->next = actions;
2931 default_collect_action->line = line;
2932 actions = default_collect_action;
2935 trace_dump_actions (actions, 0, stepping_frame, from_tty);
2937 if (*default_collect)
2938 do_cleanups (old_chain);
2941 /* Encode a piece of a tracepoint's source-level definition in a form
2942 that is suitable for both protocol and saving in files. */
2943 /* This version does not do multiple encodes for long strings; it should
2944 return an offset to the next piece to encode. FIXME */
2947 encode_source_string (int tpnum, ULONGEST addr,
2948 char *srctype, char *src, char *buf, int buf_size)
2950 if (80 + strlen (srctype) > buf_size)
2951 error (_("Buffer too small for source encoding"));
2952 sprintf (buf, "%x:%s:%s:%x:%x:",
2953 tpnum, phex_nz (addr, sizeof (addr)),
2954 srctype, 0, (int) strlen (src));
2955 if (strlen (buf) + strlen (src) * 2 >= buf_size)
2956 error (_("Source string too long for buffer"));
2957 bin2hex (src, buf + strlen (buf), 0);
2961 extern int trace_regblock_size;
2963 /* Save tracepoint data to file named FILENAME. If TARGET_DOES_SAVE is
2964 non-zero, the save is performed on the target, otherwise GDB obtains all
2965 trace data and saves it locally. */
2968 trace_save (const char *filename, int target_does_save)
2970 struct cleanup *cleanup;
2972 struct trace_status *ts = current_trace_status ();
2975 struct uploaded_tp *uploaded_tps = NULL, *utp;
2976 struct uploaded_tsv *uploaded_tsvs = NULL, *utsv;
2980 ULONGEST offset = 0;
2981 #define MAX_TRACE_UPLOAD 2000
2982 gdb_byte buf[MAX_TRACE_UPLOAD];
2985 /* If the target is to save the data to a file on its own, then just
2986 send the command and be done with it. */
2987 if (target_does_save)
2989 err = target_save_trace_data (filename);
2991 error (_("Target failed to save trace data to '%s'."),
2996 /* Get the trace status first before opening the file, so if the
2997 target is losing, we can get out without touching files. */
2998 status = target_get_trace_status (ts);
3000 pathname = tilde_expand (filename);
3001 cleanup = make_cleanup (xfree, pathname);
3003 fp = fopen (pathname, "wb");
3005 error (_("Unable to open file '%s' for saving trace data (%s)"),
3006 filename, safe_strerror (errno));
3007 make_cleanup_fclose (fp);
3009 /* Write a file header, with a high-bit-set char to indicate a
3010 binary file, plus a hint as what this file is, and a version
3011 number in case of future needs. */
3012 written = fwrite ("\x7fTRACE0\n", 8, 1, fp);
3014 perror_with_name (pathname);
3016 /* Write descriptive info. */
3018 /* Write out the size of a register block. */
3019 fprintf (fp, "R %x\n", trace_regblock_size);
3021 /* Write out status of the tracing run (aka "tstatus" info). */
3022 fprintf (fp, "status %c;%s",
3023 (ts->running ? '1' : '0'), stop_reason_names[ts->stop_reason]);
3024 if (ts->stop_reason == tracepoint_error)
3026 char *buf = (char *) alloca (strlen (ts->stop_desc) * 2 + 1);
3028 bin2hex ((gdb_byte *) ts->stop_desc, buf, 0);
3029 fprintf (fp, ":%s", buf);
3031 fprintf (fp, ":%x", ts->stopping_tracepoint);
3032 if (ts->traceframe_count >= 0)
3033 fprintf (fp, ";tframes:%x", ts->traceframe_count);
3034 if (ts->traceframes_created >= 0)
3035 fprintf (fp, ";tcreated:%x", ts->traceframes_created);
3036 if (ts->buffer_free >= 0)
3037 fprintf (fp, ";tfree:%x", ts->buffer_free);
3038 if (ts->buffer_size >= 0)
3039 fprintf (fp, ";tsize:%x", ts->buffer_size);
3040 if (ts->disconnected_tracing)
3041 fprintf (fp, ";disconn:%x", ts->disconnected_tracing);
3042 if (ts->circular_buffer)
3043 fprintf (fp, ";circular:%x", ts->circular_buffer);
3046 /* Note that we want to upload tracepoints and save those, rather
3047 than simply writing out the local ones, because the user may have
3048 changed tracepoints in GDB in preparation for a future tracing
3049 run, or maybe just mass-deleted all types of breakpoints as part
3050 of cleaning up. So as not to contaminate the session, leave the
3051 data in its uploaded form, don't make into real tracepoints. */
3053 /* Get trace state variables first, they may be checked when parsing
3054 uploaded commands. */
3056 target_upload_trace_state_variables (&uploaded_tsvs);
3058 for (utsv = uploaded_tsvs; utsv; utsv = utsv->next)
3064 buf = (char *) xmalloc (strlen (utsv->name) * 2 + 1);
3065 bin2hex ((gdb_byte *) (utsv->name), buf, 0);
3068 fprintf (fp, "tsv %x:%s:%x:%s\n",
3069 utsv->number, phex_nz (utsv->initial_value, 8),
3070 utsv->builtin, buf);
3076 free_uploaded_tsvs (&uploaded_tsvs);
3078 target_upload_tracepoints (&uploaded_tps);
3080 for (utp = uploaded_tps; utp; utp = utp->next)
3081 target_get_tracepoint_status (NULL, utp);
3083 for (utp = uploaded_tps; utp; utp = utp->next)
3085 fprintf (fp, "tp T%x:%s:%c:%x:%x",
3086 utp->number, phex_nz (utp->addr, sizeof (utp->addr)),
3087 (utp->enabled ? 'E' : 'D'), utp->step, utp->pass);
3088 if (utp->type == bp_fast_tracepoint)
3089 fprintf (fp, ":F%x", utp->orig_size);
3091 fprintf (fp, ":X%x,%s", (unsigned int) strlen (utp->cond) / 2,
3094 for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a)
3095 fprintf (fp, "tp A%x:%s:%s\n",
3096 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
3097 for (a = 0; VEC_iterate (char_ptr, utp->step_actions, a, act); ++a)
3098 fprintf (fp, "tp S%x:%s:%s\n",
3099 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
3102 encode_source_string (utp->number, utp->addr,
3103 "at", utp->at_string, buf, MAX_TRACE_UPLOAD);
3104 fprintf (fp, "tp Z%s\n", buf);
3106 if (utp->cond_string)
3108 encode_source_string (utp->number, utp->addr,
3109 "cond", utp->cond_string,
3110 buf, MAX_TRACE_UPLOAD);
3111 fprintf (fp, "tp Z%s\n", buf);
3113 for (a = 0; VEC_iterate (char_ptr, utp->cmd_strings, a, act); ++a)
3115 encode_source_string (utp->number, utp->addr, "cmd", act,
3116 buf, MAX_TRACE_UPLOAD);
3117 fprintf (fp, "tp Z%s\n", buf);
3119 fprintf (fp, "tp V%x:%s:%x:%s\n",
3120 utp->number, phex_nz (utp->addr, sizeof (utp->addr)),
3122 phex_nz (utp->traceframe_usage,
3123 sizeof (utp->traceframe_usage)));
3126 free_uploaded_tps (&uploaded_tps);
3128 /* Mark the end of the definition section. */
3131 /* Get and write the trace data proper. We ask for big blocks, in
3132 the hopes of efficiency, but will take less if the target has
3133 packet size limitations or some such. */
3136 gotten = target_get_raw_trace_data (buf, offset, MAX_TRACE_UPLOAD);
3138 error (_("Failure to get requested trace buffer data"));
3139 /* No more data is forthcoming, we're done. */
3142 written = fwrite (buf, gotten, 1, fp);
3144 perror_with_name (pathname);
3148 /* Mark the end of trace data. (We know that gotten is 0 at this point.) */
3149 written = fwrite (&gotten, 4, 1, fp);
3151 perror_with_name (pathname);
3153 do_cleanups (cleanup);
3157 trace_save_command (char *args, int from_tty)
3159 int target_does_save = 0;
3161 char *filename = NULL;
3162 struct cleanup *back_to;
3165 error_no_arg (_("file in which to save trace data"));
3167 argv = gdb_buildargv (args);
3168 back_to = make_cleanup_freeargv (argv);
3170 for (; *argv; ++argv)
3172 if (strcmp (*argv, "-r") == 0)
3173 target_does_save = 1;
3174 else if (**argv == '-')
3175 error (_("unknown option `%s'"), *argv);
3181 error_no_arg (_("file in which to save trace data"));
3183 trace_save (filename, target_does_save);
3186 printf_filtered (_("Trace data saved to file '%s'.\n"), filename);
3188 do_cleanups (back_to);
3191 /* Tell the target what to do with an ongoing tracing run if GDB
3192 disconnects for some reason. */
3195 set_disconnected_tracing (char *args, int from_tty,
3196 struct cmd_list_element *c)
3198 target_set_disconnected_tracing (disconnected_tracing);
3202 set_circular_trace_buffer (char *args, int from_tty,
3203 struct cmd_list_element *c)
3205 target_set_circular_trace_buffer (circular_trace_buffer);
3209 set_trace_user (char *args, int from_tty,
3210 struct cmd_list_element *c)
3214 ret = target_set_trace_notes (trace_user, NULL, NULL);
3217 warning (_("Target does not support trace notes, user ignored"));
3221 set_trace_notes (char *args, int from_tty,
3222 struct cmd_list_element *c)
3226 ret = target_set_trace_notes (NULL, trace_notes, NULL);
3229 warning (_("Target does not support trace notes, note ignored"));
3233 set_trace_stop_notes (char *args, int from_tty,
3234 struct cmd_list_element *c)
3238 ret = target_set_trace_notes (NULL, NULL, trace_stop_notes);
3241 warning (_("Target does not support trace notes, stop note ignored"));
3244 /* Convert the memory pointed to by mem into hex, placing result in buf.
3245 * Return a pointer to the last char put in buf (null)
3246 * "stolen" from sparc-stub.c
3249 static const char hexchars[] = "0123456789abcdef";
3252 mem2hex (gdb_byte *mem, char *buf, int count)
3260 *buf++ = hexchars[ch >> 4];
3261 *buf++ = hexchars[ch & 0xf];
3270 get_traceframe_number (void)
3272 return traceframe_number;
3275 /* Make the traceframe NUM be the current trace frame. Does nothing
3276 if NUM is already current. */
3279 set_current_traceframe (int num)
3283 if (traceframe_number == num)
3285 /* Nothing to do. */
3289 newnum = target_trace_find (tfind_number, num, 0, 0, NULL);
3292 warning (_("could not change traceframe"));
3294 set_traceframe_num (newnum);
3296 /* Changing the traceframe changes our view of registers and of the
3298 registers_changed ();
3300 clear_traceframe_info ();
3303 /* Make the traceframe NUM be the current trace frame, and do nothing
3307 set_traceframe_number (int num)
3309 traceframe_number = num;
3312 /* A cleanup used when switching away and back from tfind mode. */
3314 struct current_traceframe_cleanup
3316 /* The traceframe we were inspecting. */
3317 int traceframe_number;
3321 do_restore_current_traceframe_cleanup (void *arg)
3323 struct current_traceframe_cleanup *old = arg;
3325 set_current_traceframe (old->traceframe_number);
3329 restore_current_traceframe_cleanup_dtor (void *arg)
3331 struct current_traceframe_cleanup *old = arg;
3337 make_cleanup_restore_current_traceframe (void)
3339 struct current_traceframe_cleanup *old;
3341 old = xmalloc (sizeof (struct current_traceframe_cleanup));
3342 old->traceframe_number = traceframe_number;
3344 return make_cleanup_dtor (do_restore_current_traceframe_cleanup, old,
3345 restore_current_traceframe_cleanup_dtor);
3349 make_cleanup_restore_traceframe_number (void)
3351 return make_cleanup_restore_integer (&traceframe_number);
3354 /* Given a number and address, return an uploaded tracepoint with that
3355 number, creating if necessary. */
3357 struct uploaded_tp *
3358 get_uploaded_tp (int num, ULONGEST addr, struct uploaded_tp **utpp)
3360 struct uploaded_tp *utp;
3362 for (utp = *utpp; utp; utp = utp->next)
3363 if (utp->number == num && utp->addr == addr)
3365 utp = (struct uploaded_tp *) xmalloc (sizeof (struct uploaded_tp));
3366 memset (utp, 0, sizeof (struct uploaded_tp));
3369 utp->actions = NULL;
3370 utp->step_actions = NULL;
3371 utp->cmd_strings = NULL;
3378 free_uploaded_tps (struct uploaded_tp **utpp)
3380 struct uploaded_tp *next_one;
3384 next_one = (*utpp)->next;
3390 /* Given a number and address, return an uploaded tracepoint with that
3391 number, creating if necessary. */
3393 static struct uploaded_tsv *
3394 get_uploaded_tsv (int num, struct uploaded_tsv **utsvp)
3396 struct uploaded_tsv *utsv;
3398 for (utsv = *utsvp; utsv; utsv = utsv->next)
3399 if (utsv->number == num)
3401 utsv = (struct uploaded_tsv *) xmalloc (sizeof (struct uploaded_tsv));
3402 memset (utsv, 0, sizeof (struct uploaded_tsv));
3404 utsv->next = *utsvp;
3410 free_uploaded_tsvs (struct uploaded_tsv **utsvp)
3412 struct uploaded_tsv *next_one;
3416 next_one = (*utsvp)->next;
3422 /* FIXME this function is heuristic and will miss the cases where the
3423 conditional is semantically identical but differs in whitespace,
3424 such as "x == 0" vs "x==0". */
3427 cond_string_is_same (char *str1, char *str2)
3429 if (str1 == NULL || str2 == NULL)
3430 return (str1 == str2);
3432 return (strcmp (str1, str2) == 0);
3435 /* Look for an existing tracepoint that seems similar enough to the
3436 uploaded one. Enablement isn't compared, because the user can
3437 toggle that freely, and may have done so in anticipation of the
3438 next trace run. Return the location of matched tracepoint. */
3440 static struct bp_location *
3441 find_matching_tracepoint_location (struct uploaded_tp *utp)
3443 VEC(breakpoint_p) *tp_vec = all_tracepoints ();
3445 struct breakpoint *b;
3446 struct bp_location *loc;
3448 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
3450 struct tracepoint *t = (struct tracepoint *) b;
3452 if (b->type == utp->type
3453 && t->step_count == utp->step
3454 && t->pass_count == utp->pass
3455 && cond_string_is_same (t->base.cond_string, utp->cond_string)
3456 /* FIXME also test actions. */
3459 /* Scan the locations for an address match. */
3460 for (loc = b->loc; loc; loc = loc->next)
3462 if (loc->address == utp->addr)
3470 /* Given a list of tracepoints uploaded from a target, attempt to
3471 match them up with existing tracepoints, and create new ones if not
3475 merge_uploaded_tracepoints (struct uploaded_tp **uploaded_tps)
3477 struct uploaded_tp *utp;
3478 /* A set of tracepoints which are modified. */
3479 VEC(breakpoint_p) *modified_tp = NULL;
3481 struct breakpoint *b;
3483 /* Look for GDB tracepoints that match up with our uploaded versions. */
3484 for (utp = *uploaded_tps; utp; utp = utp->next)
3486 struct bp_location *loc;
3487 struct tracepoint *t;
3489 loc = find_matching_tracepoint_location (utp);
3494 /* Mark this location as already inserted. */
3496 t = (struct tracepoint *) loc->owner;
3497 printf_filtered (_("Assuming tracepoint %d is same "
3498 "as target's tracepoint %d at %s.\n"),
3499 loc->owner->number, utp->number,
3500 paddress (loc->gdbarch, utp->addr));
3502 /* The tracepoint LOC->owner was modified (the location LOC
3503 was marked as inserted in the target). Save it in
3504 MODIFIED_TP if not there yet. The 'breakpoint-modified'
3505 observers will be notified later once for each tracepoint
3506 saved in MODIFIED_TP. */
3508 VEC_iterate (breakpoint_p, modified_tp, ix, b);
3510 if (b == loc->owner)
3516 VEC_safe_push (breakpoint_p, modified_tp, loc->owner);
3520 t = create_tracepoint_from_upload (utp);
3522 printf_filtered (_("Created tracepoint %d for "
3523 "target's tracepoint %d at %s.\n"),
3524 t->base.number, utp->number,
3525 paddress (get_current_arch (), utp->addr));
3527 printf_filtered (_("Failed to create tracepoint for target's "
3528 "tracepoint %d at %s, skipping it.\n"),
3530 paddress (get_current_arch (), utp->addr));
3532 /* Whether found or created, record the number used by the
3533 target, to help with mapping target tracepoints back to their
3534 counterparts here. */
3536 t->number_on_target = utp->number;
3539 /* Notify 'breakpoint-modified' observer that at least one of B's
3540 locations was changed. */
3541 for (ix = 0; VEC_iterate (breakpoint_p, modified_tp, ix, b); ix++)
3542 observer_notify_breakpoint_modified (b);
3544 VEC_free (breakpoint_p, modified_tp);
3545 free_uploaded_tps (uploaded_tps);
3548 /* Trace state variables don't have much to identify them beyond their
3549 name, so just use that to detect matches. */
3551 static struct trace_state_variable *
3552 find_matching_tsv (struct uploaded_tsv *utsv)
3557 return find_trace_state_variable (utsv->name);
3560 static struct trace_state_variable *
3561 create_tsv_from_upload (struct uploaded_tsv *utsv)
3563 const char *namebase;
3566 struct trace_state_variable *tsv;
3567 struct cleanup *old_chain;
3571 namebase = utsv->name;
3572 buf = xstrprintf ("%s", namebase);
3577 buf = xstrprintf ("%s_%d", namebase, try_num++);
3580 /* Fish for a name that is not in use. */
3581 /* (should check against all internal vars?) */
3582 while (find_trace_state_variable (buf))
3585 buf = xstrprintf ("%s_%d", namebase, try_num++);
3588 old_chain = make_cleanup (xfree, buf);
3590 /* We have an available name, create the variable. */
3591 tsv = create_trace_state_variable (buf);
3592 tsv->initial_value = utsv->initial_value;
3593 tsv->builtin = utsv->builtin;
3595 observer_notify_tsv_created (tsv->name, tsv->initial_value);
3597 do_cleanups (old_chain);
3602 /* Given a list of uploaded trace state variables, try to match them
3603 up with existing variables, or create additional ones. */
3606 merge_uploaded_trace_state_variables (struct uploaded_tsv **uploaded_tsvs)
3609 struct uploaded_tsv *utsv;
3610 struct trace_state_variable *tsv;
3613 /* Most likely some numbers will have to be reassigned as part of
3614 the merge, so clear them all in anticipation. */
3615 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3618 for (utsv = *uploaded_tsvs; utsv; utsv = utsv->next)
3620 tsv = find_matching_tsv (utsv);
3624 printf_filtered (_("Assuming trace state variable $%s "
3625 "is same as target's variable %d.\n"),
3626 tsv->name, utsv->number);
3630 tsv = create_tsv_from_upload (utsv);
3632 printf_filtered (_("Created trace state variable "
3633 "$%s for target's variable %d.\n"),
3634 tsv->name, utsv->number);
3636 /* Give precedence to numberings that come from the target. */
3638 tsv->number = utsv->number;
3641 /* Renumber everything that didn't get a target-assigned number. */
3643 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3644 if (tsv->number > highest)
3645 highest = tsv->number;
3648 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3649 if (tsv->number == 0)
3650 tsv->number = highest++;
3652 free_uploaded_tsvs (uploaded_tsvs);
3655 /* target tfile command */
3657 static struct target_ops tfile_ops;
3659 /* Fill in tfile_ops with its defined operations and properties. */
3661 #define TRACE_HEADER_SIZE 8
3663 static char *trace_filename;
3664 static int trace_fd = -1;
3665 static off_t trace_frames_offset;
3666 static off_t cur_offset;
3667 static int cur_data_size;
3668 int trace_regblock_size;
3670 static void tfile_interp_line (char *line,
3671 struct uploaded_tp **utpp,
3672 struct uploaded_tsv **utsvp);
3674 /* Read SIZE bytes into READBUF from the trace frame, starting at
3675 TRACE_FD's current position. Note that this call `read'
3676 underneath, hence it advances the file's seek position. Throws an
3677 error if the `read' syscall fails, or less than SIZE bytes are
3681 tfile_read (gdb_byte *readbuf, int size)
3685 gotten = read (trace_fd, readbuf, size);
3687 perror_with_name (trace_filename);
3688 else if (gotten < size)
3689 error (_("Premature end of file while reading trace file"));
3693 tfile_open (char *filename, int from_tty)
3695 volatile struct gdb_exception ex;
3697 struct cleanup *old_chain;
3700 char header[TRACE_HEADER_SIZE];
3701 char linebuf[1000]; /* Should be max remote packet size or so. */
3704 struct trace_status *ts;
3705 struct uploaded_tp *uploaded_tps = NULL;
3706 struct uploaded_tsv *uploaded_tsvs = NULL;
3708 target_preopen (from_tty);
3710 error (_("No trace file specified."));
3712 filename = tilde_expand (filename);
3713 if (!IS_ABSOLUTE_PATH(filename))
3715 temp = concat (current_directory, "/", filename, (char *) NULL);
3720 old_chain = make_cleanup (xfree, filename);
3722 flags = O_BINARY | O_LARGEFILE;
3724 scratch_chan = open (filename, flags, 0);
3725 if (scratch_chan < 0)
3726 perror_with_name (filename);
3728 /* Looks semi-reasonable. Toss the old trace file and work on the new. */
3730 discard_cleanups (old_chain); /* Don't free filename any more. */
3731 unpush_target (&tfile_ops);
3733 trace_filename = xstrdup (filename);
3734 trace_fd = scratch_chan;
3737 /* Read the file header and test for validity. */
3738 tfile_read ((gdb_byte *) &header, TRACE_HEADER_SIZE);
3740 bytes += TRACE_HEADER_SIZE;
3741 if (!(header[0] == 0x7f
3742 && (strncmp (header + 1, "TRACE0\n", 7) == 0)))
3743 error (_("File is not a valid trace file."));
3745 push_target (&tfile_ops);
3747 trace_regblock_size = 0;
3748 ts = current_trace_status ();
3749 /* We know we're working with a file. */
3751 /* Set defaults in case there is no status line. */
3752 ts->running_known = 0;
3753 ts->stop_reason = trace_stop_reason_unknown;
3754 ts->traceframe_count = -1;
3755 ts->buffer_free = 0;
3756 ts->disconnected_tracing = 0;
3757 ts->circular_buffer = 0;
3759 TRY_CATCH (ex, RETURN_MASK_ALL)
3761 /* Read through a section of newline-terminated lines that
3762 define things like tracepoints. */
3766 tfile_read (&byte, 1);
3771 /* Empty line marks end of the definition section. */
3776 tfile_interp_line (linebuf, &uploaded_tps, &uploaded_tsvs);
3779 linebuf[i++] = byte;
3781 error (_("Excessively long lines in trace file"));
3784 /* Record the starting offset of the binary trace data. */
3785 trace_frames_offset = bytes;
3787 /* If we don't have a blocksize, we can't interpret the
3789 if (trace_regblock_size == 0)
3790 error (_("No register block size recorded in trace file"));
3794 /* Pop the partially set up target. */
3796 throw_exception (ex);
3799 inferior_appeared (current_inferior (), TFILE_PID);
3800 inferior_ptid = pid_to_ptid (TFILE_PID);
3801 add_thread_silent (inferior_ptid);
3803 if (ts->traceframe_count <= 0)
3804 warning (_("No traceframes present in this file."));
3806 /* Add the file's tracepoints and variables into the current mix. */
3808 /* Get trace state variables first, they may be checked when parsing
3809 uploaded commands. */
3810 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3812 merge_uploaded_tracepoints (&uploaded_tps);
3814 post_create_inferior (&tfile_ops, from_tty);
3817 /* Interpret the given line from the definitions part of the trace
3821 tfile_interp_line (char *line,
3822 struct uploaded_tp **utpp, struct uploaded_tsv **utsvp)
3826 if (strncmp (p, "R ", strlen ("R ")) == 0)
3829 trace_regblock_size = strtol (p, &p, 16);
3831 else if (strncmp (p, "status ", strlen ("status ")) == 0)
3833 p += strlen ("status ");
3834 parse_trace_status (p, current_trace_status ());
3836 else if (strncmp (p, "tp ", strlen ("tp ")) == 0)
3838 p += strlen ("tp ");
3839 parse_tracepoint_definition (p, utpp);
3841 else if (strncmp (p, "tsv ", strlen ("tsv ")) == 0)
3843 p += strlen ("tsv ");
3844 parse_tsv_definition (p, utsvp);
3847 warning (_("Ignoring trace file definition \"%s\""), line);
3850 /* Parse the part of trace status syntax that is shared between
3851 the remote protocol and the trace file reader. */
3854 parse_trace_status (char *line, struct trace_status *ts)
3856 char *p = line, *p1, *p2, *p3, *p_temp;
3860 ts->running_known = 1;
3861 ts->running = (*p++ == '1');
3862 ts->stop_reason = trace_stop_reason_unknown;
3863 xfree (ts->stop_desc);
3864 ts->stop_desc = NULL;
3865 ts->traceframe_count = -1;
3866 ts->traceframes_created = -1;
3867 ts->buffer_free = -1;
3868 ts->buffer_size = -1;
3869 ts->disconnected_tracing = 0;
3870 ts->circular_buffer = 0;
3871 xfree (ts->user_name);
3872 ts->user_name = NULL;
3875 ts->start_time = ts->stop_time = 0;
3879 p1 = strchr (p, ':');
3881 error (_("Malformed trace status, at %s\n\
3882 Status line: '%s'\n"), p, line);
3883 p3 = strchr (p, ';');
3885 p3 = p + strlen (p);
3886 if (strncmp (p, stop_reason_names[trace_buffer_full], p1 - p) == 0)
3888 p = unpack_varlen_hex (++p1, &val);
3889 ts->stop_reason = trace_buffer_full;
3891 else if (strncmp (p, stop_reason_names[trace_never_run], p1 - p) == 0)
3893 p = unpack_varlen_hex (++p1, &val);
3894 ts->stop_reason = trace_never_run;
3896 else if (strncmp (p, stop_reason_names[tracepoint_passcount],
3899 p = unpack_varlen_hex (++p1, &val);
3900 ts->stop_reason = tracepoint_passcount;
3901 ts->stopping_tracepoint = val;
3903 else if (strncmp (p, stop_reason_names[tstop_command], p1 - p) == 0)
3905 p2 = strchr (++p1, ':');
3913 ts->stop_desc = xmalloc (strlen (line));
3914 end = hex2bin (p1, ts->stop_desc, (p2 - p1) / 2);
3915 ts->stop_desc[end] = '\0';
3918 ts->stop_desc = xstrdup ("");
3920 p = unpack_varlen_hex (++p2, &val);
3921 ts->stop_reason = tstop_command;
3923 else if (strncmp (p, stop_reason_names[trace_disconnected], p1 - p) == 0)
3925 p = unpack_varlen_hex (++p1, &val);
3926 ts->stop_reason = trace_disconnected;
3928 else if (strncmp (p, stop_reason_names[tracepoint_error], p1 - p) == 0)
3930 p2 = strchr (++p1, ':');
3933 ts->stop_desc = xmalloc ((p2 - p1) / 2 + 1);
3934 end = hex2bin (p1, ts->stop_desc, (p2 - p1) / 2);
3935 ts->stop_desc[end] = '\0';
3938 ts->stop_desc = xstrdup ("");
3940 p = unpack_varlen_hex (++p2, &val);
3941 ts->stopping_tracepoint = val;
3942 ts->stop_reason = tracepoint_error;
3944 else if (strncmp (p, "tframes", p1 - p) == 0)
3946 p = unpack_varlen_hex (++p1, &val);
3947 ts->traceframe_count = val;
3949 else if (strncmp (p, "tcreated", p1 - p) == 0)
3951 p = unpack_varlen_hex (++p1, &val);
3952 ts->traceframes_created = val;
3954 else if (strncmp (p, "tfree", p1 - p) == 0)
3956 p = unpack_varlen_hex (++p1, &val);
3957 ts->buffer_free = val;
3959 else if (strncmp (p, "tsize", p1 - p) == 0)
3961 p = unpack_varlen_hex (++p1, &val);
3962 ts->buffer_size = val;
3964 else if (strncmp (p, "disconn", p1 - p) == 0)
3966 p = unpack_varlen_hex (++p1, &val);
3967 ts->disconnected_tracing = val;
3969 else if (strncmp (p, "circular", p1 - p) == 0)
3971 p = unpack_varlen_hex (++p1, &val);
3972 ts->circular_buffer = val;
3974 else if (strncmp (p, "starttime", p1 - p) == 0)
3976 p = unpack_varlen_hex (++p1, &val);
3977 ts->start_time = val;
3979 else if (strncmp (p, "stoptime", p1 - p) == 0)
3981 p = unpack_varlen_hex (++p1, &val);
3982 ts->stop_time = val;
3984 else if (strncmp (p, "username", p1 - p) == 0)
3987 ts->user_name = xmalloc (strlen (p) / 2);
3988 end = hex2bin (p1, ts->user_name, (p3 - p1) / 2);
3989 ts->user_name[end] = '\0';
3992 else if (strncmp (p, "notes", p1 - p) == 0)
3995 ts->notes = xmalloc (strlen (p) / 2);
3996 end = hex2bin (p1, ts->notes, (p3 - p1) / 2);
3997 ts->notes[end] = '\0';
4002 /* Silently skip unknown optional info. */
4003 p_temp = strchr (p1 + 1, ';');
4007 /* Must be at the end. */
4014 parse_tracepoint_status (char *p, struct breakpoint *bp,
4015 struct uploaded_tp *utp)
4018 struct tracepoint *tp = (struct tracepoint *) bp;
4020 p = unpack_varlen_hex (p, &uval);
4022 tp->base.hit_count += uval;
4024 utp->hit_count += uval;
4025 p = unpack_varlen_hex (p + 1, &uval);
4027 tp->traceframe_usage += uval;
4029 utp->traceframe_usage += uval;
4030 /* Ignore any extra, allowing for future extensions. */
4033 /* Given a line of text defining a part of a tracepoint, parse it into
4034 an "uploaded tracepoint". */
4037 parse_tracepoint_definition (char *line, struct uploaded_tp **utpp)
4041 ULONGEST num, addr, step, pass, orig_size, xlen, start;
4044 char *cond, *srctype, *buf;
4045 struct uploaded_tp *utp = NULL;
4048 /* Both tracepoint and action definitions start with the same number
4049 and address sequence. */
4051 p = unpack_varlen_hex (p, &num);
4052 p++; /* skip a colon */
4053 p = unpack_varlen_hex (p, &addr);
4054 p++; /* skip a colon */
4057 enabled = (*p++ == 'E');
4058 p++; /* skip a colon */
4059 p = unpack_varlen_hex (p, &step);
4060 p++; /* skip a colon */
4061 p = unpack_varlen_hex (p, &pass);
4062 type = bp_tracepoint;
4064 /* Thumb through optional fields. */
4067 p++; /* skip a colon */
4070 type = bp_fast_tracepoint;
4072 p = unpack_varlen_hex (p, &orig_size);
4076 type = bp_static_tracepoint;
4082 p = unpack_varlen_hex (p, &xlen);
4083 p++; /* skip a comma */
4084 cond = (char *) xmalloc (2 * xlen + 1);
4085 strncpy (cond, p, 2 * xlen);
4086 cond[2 * xlen] = '\0';
4090 warning (_("Unrecognized char '%c' in tracepoint "
4091 "definition, skipping rest"), *p);
4093 utp = get_uploaded_tp (num, addr, utpp);
4095 utp->enabled = enabled;
4100 else if (piece == 'A')
4102 utp = get_uploaded_tp (num, addr, utpp);
4103 VEC_safe_push (char_ptr, utp->actions, xstrdup (p));
4105 else if (piece == 'S')
4107 utp = get_uploaded_tp (num, addr, utpp);
4108 VEC_safe_push (char_ptr, utp->step_actions, xstrdup (p));
4110 else if (piece == 'Z')
4112 /* Parse a chunk of source form definition. */
4113 utp = get_uploaded_tp (num, addr, utpp);
4115 p = strchr (p, ':');
4116 p++; /* skip a colon */
4117 p = unpack_varlen_hex (p, &start);
4118 p++; /* skip a colon */
4119 p = unpack_varlen_hex (p, &xlen);
4120 p++; /* skip a colon */
4122 buf = alloca (strlen (line));
4124 end = hex2bin (p, (gdb_byte *) buf, strlen (p) / 2);
4127 if (strncmp (srctype, "at:", strlen ("at:")) == 0)
4128 utp->at_string = xstrdup (buf);
4129 else if (strncmp (srctype, "cond:", strlen ("cond:")) == 0)
4130 utp->cond_string = xstrdup (buf);
4131 else if (strncmp (srctype, "cmd:", strlen ("cmd:")) == 0)
4132 VEC_safe_push (char_ptr, utp->cmd_strings, xstrdup (buf));
4134 else if (piece == 'V')
4136 utp = get_uploaded_tp (num, addr, utpp);
4138 parse_tracepoint_status (p, NULL, utp);
4142 /* Don't error out, the target might be sending us optional
4143 info that we don't care about. */
4144 warning (_("Unrecognized tracepoint piece '%c', ignoring"), piece);
4148 /* Convert a textual description of a trace state variable into an
4152 parse_tsv_definition (char *line, struct uploaded_tsv **utsvp)
4155 ULONGEST num, initval, builtin;
4157 struct uploaded_tsv *utsv = NULL;
4159 buf = alloca (strlen (line));
4162 p = unpack_varlen_hex (p, &num);
4163 p++; /* skip a colon */
4164 p = unpack_varlen_hex (p, &initval);
4165 p++; /* skip a colon */
4166 p = unpack_varlen_hex (p, &builtin);
4167 p++; /* skip a colon */
4168 end = hex2bin (p, (gdb_byte *) buf, strlen (p) / 2);
4171 utsv = get_uploaded_tsv (num, utsvp);
4172 utsv->initial_value = initval;
4173 utsv->builtin = builtin;
4174 utsv->name = xstrdup (buf);
4177 /* Close the trace file and generally clean up. */
4180 tfile_close (int quitting)
4187 pid = ptid_get_pid (inferior_ptid);
4188 inferior_ptid = null_ptid; /* Avoid confusion from thread stuff. */
4189 exit_inferior_silent (pid);
4193 xfree (trace_filename);
4194 trace_filename = NULL;
4198 tfile_files_info (struct target_ops *t)
4200 /* (it would be useful to mention the name of the file). */
4201 printf_filtered ("Looking at a trace file.\n");
4204 /* The trace status for a file is that tracing can never be run. */
4207 tfile_get_trace_status (struct trace_status *ts)
4209 /* Other bits of trace status were collected as part of opening the
4210 trace files, so nothing to do here. */
4216 tfile_get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
4218 /* Other bits of trace status were collected as part of opening the
4219 trace files, so nothing to do here. */
4222 /* Given the position of a traceframe in the file, figure out what
4223 address the frame was collected at. This would normally be the
4224 value of a collected PC register, but if not available, we
4228 tfile_get_traceframe_address (off_t tframe_offset)
4232 struct tracepoint *tp;
4233 off_t saved_offset = cur_offset;
4235 /* FIXME dig pc out of collected registers. */
4237 /* Fall back to using tracepoint address. */
4238 lseek (trace_fd, tframe_offset, SEEK_SET);
4239 tfile_read ((gdb_byte *) &tpnum, 2);
4240 tpnum = (short) extract_signed_integer ((gdb_byte *) &tpnum, 2,
4242 (target_gdbarch ()));
4244 tp = get_tracepoint_by_number_on_target (tpnum);
4245 /* FIXME this is a poor heuristic if multiple locations. */
4246 if (tp && tp->base.loc)
4247 addr = tp->base.loc->address;
4249 /* Restore our seek position. */
4250 cur_offset = saved_offset;
4251 lseek (trace_fd, cur_offset, SEEK_SET);
4255 /* Given a type of search and some parameters, scan the collection of
4256 traceframes in the file looking for a match. When found, return
4257 both the traceframe and tracepoint number, otherwise -1 for
4261 tfile_trace_find (enum trace_find_type type, int num,
4262 ULONGEST addr1, ULONGEST addr2, int *tpp)
4265 int tfnum = 0, found = 0;
4266 unsigned int data_size;
4267 struct tracepoint *tp;
4268 off_t offset, tframe_offset;
4278 lseek (trace_fd, trace_frames_offset, SEEK_SET);
4279 offset = trace_frames_offset;
4282 tframe_offset = offset;
4283 tfile_read ((gdb_byte *) &tpnum, 2);
4284 tpnum = (short) extract_signed_integer ((gdb_byte *) &tpnum, 2,
4286 (target_gdbarch ()));
4290 tfile_read ((gdb_byte *) &data_size, 4);
4291 data_size = (unsigned int) extract_unsigned_integer
4292 ((gdb_byte *) &data_size, 4,
4293 gdbarch_byte_order (target_gdbarch ()));
4302 tfaddr = tfile_get_traceframe_address (tframe_offset);
4303 if (tfaddr == addr1)
4307 tp = get_tracepoint (num);
4308 if (tp && tpnum == tp->number_on_target)
4312 tfaddr = tfile_get_traceframe_address (tframe_offset);
4313 if (addr1 <= tfaddr && tfaddr <= addr2)
4317 tfaddr = tfile_get_traceframe_address (tframe_offset);
4318 if (!(addr1 <= tfaddr && tfaddr <= addr2))
4322 internal_error (__FILE__, __LINE__, _("unknown tfind type"));
4328 cur_offset = offset;
4329 cur_data_size = data_size;
4333 /* Skip past the traceframe's data. */
4334 lseek (trace_fd, data_size, SEEK_CUR);
4335 offset += data_size;
4336 /* Update our own count of traceframes. */
4339 /* Did not find what we were looking for. */
4345 /* Prototype of the callback passed to tframe_walk_blocks. */
4346 typedef int (*walk_blocks_callback_func) (char blocktype, void *data);
4348 /* Callback for traceframe_walk_blocks, used to find a given block
4349 type in a traceframe. */
4352 match_blocktype (char blocktype, void *data)
4354 char *wantedp = data;
4356 if (*wantedp == blocktype)
4362 /* Walk over all traceframe block starting at POS offset from
4363 CUR_OFFSET, and call CALLBACK for each block found, passing in DATA
4364 unmodified. If CALLBACK returns true, this returns the position in
4365 the traceframe where the block is found, relative to the start of
4366 the traceframe (cur_offset). Returns -1 if no callback call
4367 returned true, indicating that all blocks have been walked. */
4370 traceframe_walk_blocks (walk_blocks_callback_func callback,
4371 int pos, void *data)
4373 /* Iterate through a traceframe's blocks, looking for a block of the
4376 lseek (trace_fd, cur_offset + pos, SEEK_SET);
4377 while (pos < cur_data_size)
4379 unsigned short mlen;
4382 tfile_read (&block_type, 1);
4386 if ((*callback) (block_type, data))
4392 lseek (trace_fd, cur_offset + pos + trace_regblock_size, SEEK_SET);
4393 pos += trace_regblock_size;
4396 lseek (trace_fd, cur_offset + pos + 8, SEEK_SET);
4397 tfile_read ((gdb_byte *) &mlen, 2);
4398 mlen = (unsigned short)
4399 extract_unsigned_integer ((gdb_byte *) &mlen, 2,
4401 (target_gdbarch ()));
4402 lseek (trace_fd, mlen, SEEK_CUR);
4403 pos += (8 + 2 + mlen);
4406 lseek (trace_fd, cur_offset + pos + 4 + 8, SEEK_SET);
4410 error (_("Unknown block type '%c' (0x%x) in trace frame"),
4411 block_type, block_type);
4419 /* Convenience wrapper around traceframe_walk_blocks. Looks for the
4420 position offset of a block of type TYPE_WANTED in the current trace
4421 frame, starting at POS. Returns -1 if no such block was found. */
4424 traceframe_find_block_type (char type_wanted, int pos)
4426 return traceframe_walk_blocks (match_blocktype, pos, &type_wanted);
4429 /* Look for a block of saved registers in the traceframe, and get the
4430 requested register from it. */
4433 tfile_fetch_registers (struct target_ops *ops,
4434 struct regcache *regcache, int regno)
4436 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4437 int offset, regn, regsize, pc_regno;
4440 /* An uninitialized reg size says we're not going to be
4441 successful at getting register blocks. */
4442 if (!trace_regblock_size)
4445 regs = alloca (trace_regblock_size);
4447 if (traceframe_find_block_type ('R', 0) >= 0)
4449 tfile_read (regs, trace_regblock_size);
4451 /* Assume the block is laid out in GDB register number order,
4452 each register with the size that it has in GDB. */
4454 for (regn = 0; regn < gdbarch_num_regs (gdbarch); regn++)
4456 regsize = register_size (gdbarch, regn);
4457 /* Make sure we stay within block bounds. */
4458 if (offset + regsize >= trace_regblock_size)
4460 if (regcache_register_status (regcache, regn) == REG_UNKNOWN)
4464 regcache_raw_supply (regcache, regno, regs + offset);
4467 else if (regno == -1)
4469 regcache_raw_supply (regcache, regn, regs + offset);
4477 /* We get here if no register data has been found. Mark registers
4479 for (regn = 0; regn < gdbarch_num_regs (gdbarch); regn++)
4480 regcache_raw_supply (regcache, regn, NULL);
4482 /* We can often usefully guess that the PC is going to be the same
4483 as the address of the tracepoint. */
4484 pc_regno = gdbarch_pc_regnum (gdbarch);
4485 if (pc_regno >= 0 && (regno == -1 || regno == pc_regno))
4487 struct tracepoint *tp = get_tracepoint (tracepoint_number);
4489 if (tp && tp->base.loc)
4491 /* But don't try to guess if tracepoint is multi-location... */
4492 if (tp->base.loc->next)
4494 warning (_("Tracepoint %d has multiple "
4495 "locations, cannot infer $pc"),
4499 /* ... or does while-stepping. */
4500 if (tp->step_count > 0)
4502 warning (_("Tracepoint %d does while-stepping, "
4503 "cannot infer $pc"),
4508 store_unsigned_integer (regs, register_size (gdbarch, pc_regno),
4509 gdbarch_byte_order (gdbarch),
4510 tp->base.loc->address);
4511 regcache_raw_supply (regcache, pc_regno, regs);
4517 tfile_xfer_partial (struct target_ops *ops, enum target_object object,
4518 const char *annex, gdb_byte *readbuf,
4519 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
4521 /* We're only doing regular memory for now. */
4522 if (object != TARGET_OBJECT_MEMORY)
4525 if (readbuf == NULL)
4526 error (_("tfile_xfer_partial: trace file is read-only"));
4528 if (traceframe_number != -1)
4532 /* Iterate through the traceframe's blocks, looking for
4534 while ((pos = traceframe_find_block_type ('M', pos)) >= 0)
4536 ULONGEST maddr, amt;
4537 unsigned short mlen;
4538 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
4540 tfile_read ((gdb_byte *) &maddr, 8);
4541 maddr = extract_unsigned_integer ((gdb_byte *) &maddr, 8,
4543 tfile_read ((gdb_byte *) &mlen, 2);
4544 mlen = (unsigned short)
4545 extract_unsigned_integer ((gdb_byte *) &mlen, 2, byte_order);
4547 /* If the block includes the first part of the desired
4548 range, return as much it has; GDB will re-request the
4549 remainder, which might be in a different block of this
4551 if (maddr <= offset && offset < (maddr + mlen))
4553 amt = (maddr + mlen) - offset;
4557 if (maddr != offset)
4558 lseek (trace_fd, offset - maddr, SEEK_CUR);
4559 tfile_read (readbuf, amt);
4563 /* Skip over this block. */
4564 pos += (8 + 2 + mlen);
4568 /* It's unduly pedantic to refuse to look at the executable for
4569 read-only pieces; so do the equivalent of readonly regions aka
4571 /* FIXME account for relocation at some point. */
4578 for (s = exec_bfd->sections; s; s = s->next)
4580 if ((s->flags & SEC_LOAD) == 0
4581 || (s->flags & SEC_READONLY) == 0)
4585 size = bfd_get_section_size (s);
4586 if (vma <= offset && offset < (vma + size))
4590 amt = (vma + size) - offset;
4594 amt = bfd_get_section_contents (exec_bfd, s,
4595 readbuf, offset - vma, amt);
4601 /* Indicate failure to find the requested memory block. */
4605 /* Iterate through the blocks of a trace frame, looking for a 'V'
4606 block with a matching tsv number. */
4609 tfile_get_trace_state_variable_value (int tsvnum, LONGEST *val)
4614 while ((pos = traceframe_find_block_type ('V', pos)) >= 0)
4618 tfile_read ((gdb_byte *) &vnum, 4);
4619 vnum = (int) extract_signed_integer ((gdb_byte *) &vnum, 4,
4621 (target_gdbarch ()));
4624 tfile_read ((gdb_byte *) val, 8);
4625 *val = extract_signed_integer ((gdb_byte *) val, 8,
4627 (target_gdbarch ()));
4633 /* Didn't find anything. */
4638 tfile_has_all_memory (struct target_ops *ops)
4644 tfile_has_memory (struct target_ops *ops)
4650 tfile_has_stack (struct target_ops *ops)
4652 return traceframe_number != -1;
4656 tfile_has_registers (struct target_ops *ops)
4658 return traceframe_number != -1;
4662 tfile_thread_alive (struct target_ops *ops, ptid_t ptid)
4667 /* Callback for traceframe_walk_blocks. Builds a traceframe_info
4668 object for the tfile target's current traceframe. */
4671 build_traceframe_info (char blocktype, void *data)
4673 struct traceframe_info *info = data;
4679 struct mem_range *r;
4681 unsigned short mlen;
4683 tfile_read ((gdb_byte *) &maddr, 8);
4684 tfile_read ((gdb_byte *) &mlen, 2);
4686 r = VEC_safe_push (mem_range_s, info->memory, NULL);
4699 warning (_("Unhandled trace block type (%d) '%c ' "
4700 "while building trace frame info."),
4701 blocktype, blocktype);
4708 static struct traceframe_info *
4709 tfile_traceframe_info (void)
4711 struct traceframe_info *info = XCNEW (struct traceframe_info);
4713 traceframe_walk_blocks (build_traceframe_info, 0, info);
4718 init_tfile_ops (void)
4720 tfile_ops.to_shortname = "tfile";
4721 tfile_ops.to_longname = "Local trace dump file";
4723 = "Use a trace file as a target. Specify the filename of the trace file.";
4724 tfile_ops.to_open = tfile_open;
4725 tfile_ops.to_close = tfile_close;
4726 tfile_ops.to_fetch_registers = tfile_fetch_registers;
4727 tfile_ops.to_xfer_partial = tfile_xfer_partial;
4728 tfile_ops.to_files_info = tfile_files_info;
4729 tfile_ops.to_get_trace_status = tfile_get_trace_status;
4730 tfile_ops.to_get_tracepoint_status = tfile_get_tracepoint_status;
4731 tfile_ops.to_trace_find = tfile_trace_find;
4732 tfile_ops.to_get_trace_state_variable_value
4733 = tfile_get_trace_state_variable_value;
4734 tfile_ops.to_stratum = process_stratum;
4735 tfile_ops.to_has_all_memory = tfile_has_all_memory;
4736 tfile_ops.to_has_memory = tfile_has_memory;
4737 tfile_ops.to_has_stack = tfile_has_stack;
4738 tfile_ops.to_has_registers = tfile_has_registers;
4739 tfile_ops.to_traceframe_info = tfile_traceframe_info;
4740 tfile_ops.to_thread_alive = tfile_thread_alive;
4741 tfile_ops.to_magic = OPS_MAGIC;
4745 free_current_marker (void *arg)
4747 struct static_tracepoint_marker **marker_p = arg;
4749 if (*marker_p != NULL)
4751 release_static_tracepoint_marker (*marker_p);
4758 /* Given a line of text defining a static tracepoint marker, parse it
4759 into a "static tracepoint marker" object. Throws an error is
4760 parsing fails. If PP is non-null, it points to one past the end of
4761 the parsed marker definition. */
4764 parse_static_tracepoint_marker_definition (char *line, char **pp,
4765 struct static_tracepoint_marker *marker)
4772 p = unpack_varlen_hex (p, &addr);
4773 p++; /* skip a colon */
4775 marker->gdbarch = target_gdbarch ();
4776 marker->address = (CORE_ADDR) addr;
4778 endp = strchr (p, ':');
4780 error (_("bad marker definition: %s"), line);
4782 marker->str_id = xmalloc (endp - p + 1);
4783 end = hex2bin (p, (gdb_byte *) marker->str_id, (endp - p + 1) / 2);
4784 marker->str_id[end] = '\0';
4787 p++; /* skip a colon */
4789 marker->extra = xmalloc (strlen (p) + 1);
4790 end = hex2bin (p, (gdb_byte *) marker->extra, strlen (p) / 2);
4791 marker->extra[end] = '\0';
4797 /* Release a static tracepoint marker's contents. Note that the
4798 object itself isn't released here. There objects are usually on
4802 release_static_tracepoint_marker (struct static_tracepoint_marker *marker)
4804 xfree (marker->str_id);
4805 marker->str_id = NULL;
4808 /* Print MARKER to gdb_stdout. */
4811 print_one_static_tracepoint_marker (int count,
4812 struct static_tracepoint_marker *marker)
4814 struct command_line *l;
4817 char wrap_indent[80];
4818 char extra_field_indent[80];
4819 struct ui_out *uiout = current_uiout;
4820 struct cleanup *bkpt_chain;
4821 VEC(breakpoint_p) *tracepoints;
4823 struct symtab_and_line sal;
4827 sal.pc = marker->address;
4829 tracepoints = static_tracepoints_here (marker->address);
4831 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "marker");
4833 /* A counter field to help readability. This is not a stable
4835 ui_out_field_int (uiout, "count", count);
4837 ui_out_field_string (uiout, "marker-id", marker->str_id);
4839 ui_out_field_fmt (uiout, "enabled", "%c",
4840 !VEC_empty (breakpoint_p, tracepoints) ? 'y' : 'n');
4841 ui_out_spaces (uiout, 2);
4843 strcpy (wrap_indent, " ");
4845 if (gdbarch_addr_bit (marker->gdbarch) <= 32)
4846 strcat (wrap_indent, " ");
4848 strcat (wrap_indent, " ");
4850 strcpy (extra_field_indent, " ");
4852 ui_out_field_core_addr (uiout, "addr", marker->gdbarch, marker->address);
4854 sal = find_pc_line (marker->address, 0);
4855 sym = find_pc_sect_function (marker->address, NULL);
4858 ui_out_text (uiout, "in ");
4859 ui_out_field_string (uiout, "func",
4860 SYMBOL_PRINT_NAME (sym));
4861 ui_out_wrap_hint (uiout, wrap_indent);
4862 ui_out_text (uiout, " at ");
4865 ui_out_field_skip (uiout, "func");
4867 if (sal.symtab != NULL)
4869 ui_out_field_string (uiout, "file", sal.symtab->filename);
4870 ui_out_text (uiout, ":");
4872 if (ui_out_is_mi_like_p (uiout))
4874 const char *fullname = symtab_to_fullname (sal.symtab);
4877 ui_out_field_string (uiout, "fullname", fullname);
4880 ui_out_field_skip (uiout, "fullname");
4882 ui_out_field_int (uiout, "line", sal.line);
4886 ui_out_field_skip (uiout, "fullname");
4887 ui_out_field_skip (uiout, "line");
4890 ui_out_text (uiout, "\n");
4891 ui_out_text (uiout, extra_field_indent);
4892 ui_out_text (uiout, _("Data: \""));
4893 ui_out_field_string (uiout, "extra-data", marker->extra);
4894 ui_out_text (uiout, "\"\n");
4896 if (!VEC_empty (breakpoint_p, tracepoints))
4898 struct cleanup *cleanup_chain;
4900 struct breakpoint *b;
4902 cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout,
4905 ui_out_text (uiout, extra_field_indent);
4906 ui_out_text (uiout, _("Probed by static tracepoints: "));
4907 for (ix = 0; VEC_iterate(breakpoint_p, tracepoints, ix, b); ix++)
4910 ui_out_text (uiout, ", ");
4911 ui_out_text (uiout, "#");
4912 ui_out_field_int (uiout, "tracepoint-id", b->number);
4915 do_cleanups (cleanup_chain);
4917 if (ui_out_is_mi_like_p (uiout))
4918 ui_out_field_int (uiout, "number-of-tracepoints",
4919 VEC_length(breakpoint_p, tracepoints));
4921 ui_out_text (uiout, "\n");
4923 VEC_free (breakpoint_p, tracepoints);
4925 do_cleanups (bkpt_chain);
4929 info_static_tracepoint_markers_command (char *arg, int from_tty)
4931 VEC(static_tracepoint_marker_p) *markers;
4932 struct cleanup *old_chain;
4933 struct static_tracepoint_marker *marker;
4934 struct ui_out *uiout = current_uiout;
4937 /* We don't have to check target_can_use_agent and agent's capability on
4938 static tracepoint here, in order to be compatible with older GDBserver.
4939 We don't check USE_AGENT is true or not, because static tracepoints
4940 don't work without in-process agent, so we don't bother users to type
4941 `set agent on' when to use static tracepoint. */
4944 = make_cleanup_ui_out_table_begin_end (uiout, 5, -1,
4945 "StaticTracepointMarkersTable");
4947 ui_out_table_header (uiout, 7, ui_left, "counter", "Cnt");
4949 ui_out_table_header (uiout, 40, ui_left, "marker-id", "ID");
4951 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb");
4952 if (gdbarch_addr_bit (target_gdbarch ()) <= 32)
4953 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");
4955 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");
4956 ui_out_table_header (uiout, 40, ui_noalign, "what", "What");
4958 ui_out_table_body (uiout);
4960 markers = target_static_tracepoint_markers_by_strid (NULL);
4961 make_cleanup (VEC_cleanup (static_tracepoint_marker_p), &markers);
4964 VEC_iterate (static_tracepoint_marker_p,
4965 markers, i, marker);
4968 print_one_static_tracepoint_marker (i + 1, marker);
4969 release_static_tracepoint_marker (marker);
4972 do_cleanups (old_chain);
4975 /* The $_sdata convenience variable is a bit special. We don't know
4976 for sure type of the value until we actually have a chance to fetch
4977 the data --- the size of the object depends on what has been
4978 collected. We solve this by making $_sdata be an internalvar that
4979 creates a new value on access. */
4981 /* Return a new value with the correct type for the sdata object of
4982 the current trace frame. Return a void value if there's no object
4985 static struct value *
4986 sdata_make_value (struct gdbarch *gdbarch, struct internalvar *var,
4992 /* We need to read the whole object before we know its size. */
4993 size = target_read_alloc (¤t_target,
4994 TARGET_OBJECT_STATIC_TRACE_DATA,
5001 type = init_vector_type (builtin_type (gdbarch)->builtin_true_char,
5003 v = allocate_value (type);
5004 memcpy (value_contents_raw (v), buf, size);
5009 return allocate_value (builtin_type (gdbarch)->builtin_void);
5012 #if !defined(HAVE_LIBEXPAT)
5014 struct traceframe_info *
5015 parse_traceframe_info (const char *tframe_info)
5017 static int have_warned;
5022 warning (_("Can not parse XML trace frame info; XML support "
5023 "was disabled at compile time"));
5029 #else /* HAVE_LIBEXPAT */
5031 #include "xml-support.h"
5033 /* Handle the start of a <memory> element. */
5036 traceframe_info_start_memory (struct gdb_xml_parser *parser,
5037 const struct gdb_xml_element *element,
5038 void *user_data, VEC(gdb_xml_value_s) *attributes)
5040 struct traceframe_info *info = user_data;
5041 struct mem_range *r = VEC_safe_push (mem_range_s, info->memory, NULL);
5042 ULONGEST *start_p, *length_p;
5044 start_p = xml_find_attribute (attributes, "start")->value;
5045 length_p = xml_find_attribute (attributes, "length")->value;
5047 r->start = *start_p;
5048 r->length = *length_p;
5051 /* Discard the constructed trace frame info (if an error occurs). */
5054 free_result (void *p)
5056 struct traceframe_info *result = p;
5058 free_traceframe_info (result);
5061 /* The allowed elements and attributes for an XML memory map. */
5063 static const struct gdb_xml_attribute memory_attributes[] = {
5064 { "start", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
5065 { "length", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
5066 { NULL, GDB_XML_AF_NONE, NULL, NULL }
5069 static const struct gdb_xml_element traceframe_info_children[] = {
5070 { "memory", memory_attributes, NULL,
5071 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
5072 traceframe_info_start_memory, NULL },
5073 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
5076 static const struct gdb_xml_element traceframe_info_elements[] = {
5077 { "traceframe-info", NULL, traceframe_info_children, GDB_XML_EF_NONE,
5079 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
5082 /* Parse a traceframe-info XML document. */
5084 struct traceframe_info *
5085 parse_traceframe_info (const char *tframe_info)
5087 struct traceframe_info *result;
5088 struct cleanup *back_to;
5090 result = XCNEW (struct traceframe_info);
5091 back_to = make_cleanup (free_result, result);
5093 if (gdb_xml_parse_quick (_("trace frame info"),
5094 "traceframe-info.dtd", traceframe_info_elements,
5095 tframe_info, result) == 0)
5097 /* Parsed successfully, keep the result. */
5098 discard_cleanups (back_to);
5103 do_cleanups (back_to);
5107 #endif /* HAVE_LIBEXPAT */
5109 /* Returns the traceframe_info object for the current traceframe.
5110 This is where we avoid re-fetching the object from the target if we
5111 already have it cached. */
5113 static struct traceframe_info *
5114 get_traceframe_info (void)
5116 if (traceframe_info == NULL)
5117 traceframe_info = target_traceframe_info ();
5119 return traceframe_info;
5122 /* If the target supports the query, return in RESULT the set of
5123 collected memory in the current traceframe, found within the LEN
5124 bytes range starting at MEMADDR. Returns true if the target
5125 supports the query, otherwise returns false, and RESULT is left
5129 traceframe_available_memory (VEC(mem_range_s) **result,
5130 CORE_ADDR memaddr, ULONGEST len)
5132 struct traceframe_info *info = get_traceframe_info ();
5136 struct mem_range *r;
5141 for (i = 0; VEC_iterate (mem_range_s, info->memory, i, r); i++)
5142 if (mem_ranges_overlap (r->start, r->length, memaddr, len))
5144 ULONGEST lo1, hi1, lo2, hi2;
5145 struct mem_range *nr;
5148 hi1 = memaddr + len;
5151 hi2 = r->start + r->length;
5153 nr = VEC_safe_push (mem_range_s, *result, NULL);
5155 nr->start = max (lo1, lo2);
5156 nr->length = min (hi1, hi2) - nr->start;
5159 normalize_mem_ranges (*result);
5166 /* Implementation of `sdata' variable. */
5168 static const struct internalvar_funcs sdata_funcs =
5175 /* module initialization */
5177 _initialize_tracepoint (void)
5179 struct cmd_list_element *c;
5181 /* Explicitly create without lookup, since that tries to create a
5182 value with a void typed value, and when we get here, gdbarch
5183 isn't initialized yet. At this point, we're quite sure there
5184 isn't another convenience variable of the same name. */
5185 create_internalvar_type_lazy ("_sdata", &sdata_funcs, NULL);
5187 traceframe_number = -1;
5188 tracepoint_number = -1;
5190 if (tracepoint_list.list == NULL)
5192 tracepoint_list.listsize = 128;
5193 tracepoint_list.list = xmalloc
5194 (tracepoint_list.listsize * sizeof (struct memrange));
5196 if (tracepoint_list.aexpr_list == NULL)
5198 tracepoint_list.aexpr_listsize = 128;
5199 tracepoint_list.aexpr_list = xmalloc
5200 (tracepoint_list.aexpr_listsize * sizeof (struct agent_expr *));
5203 if (stepping_list.list == NULL)
5205 stepping_list.listsize = 128;
5206 stepping_list.list = xmalloc
5207 (stepping_list.listsize * sizeof (struct memrange));
5210 if (stepping_list.aexpr_list == NULL)
5212 stepping_list.aexpr_listsize = 128;
5213 stepping_list.aexpr_list = xmalloc
5214 (stepping_list.aexpr_listsize * sizeof (struct agent_expr *));
5217 add_info ("scope", scope_info,
5218 _("List the variables local to a scope"));
5220 add_cmd ("tracepoints", class_trace, NULL,
5221 _("Tracing of program execution without stopping the program."),
5224 add_com ("tdump", class_trace, trace_dump_command,
5225 _("Print everything collected at the current tracepoint."));
5227 add_com ("tsave", class_trace, trace_save_command, _("\
5228 Save the trace data to a file.\n\
5229 Use the '-r' option to direct the target to save directly to the file,\n\
5230 using its own filesystem."));
5232 c = add_com ("tvariable", class_trace, trace_variable_command,_("\
5233 Define a trace state variable.\n\
5234 Argument is a $-prefixed name, optionally followed\n\
5235 by '=' and an expression that sets the initial value\n\
5236 at the start of tracing."));
5237 set_cmd_completer (c, expression_completer);
5239 add_cmd ("tvariable", class_trace, delete_trace_variable_command, _("\
5240 Delete one or more trace state variables.\n\
5241 Arguments are the names of the variables to delete.\n\
5242 If no arguments are supplied, delete all variables."), &deletelist);
5243 /* FIXME add a trace variable completer. */
5245 add_info ("tvariables", tvariables_info, _("\
5246 Status of trace state variables and their values.\n\
5249 add_info ("static-tracepoint-markers",
5250 info_static_tracepoint_markers_command, _("\
5251 List target static tracepoints markers.\n\
5254 add_prefix_cmd ("tfind", class_trace, trace_find_command, _("\
5255 Select a trace frame;\n\
5256 No argument means forward by one frame; '-' means backward by one frame."),
5257 &tfindlist, "tfind ", 1, &cmdlist);
5259 add_cmd ("outside", class_trace, trace_find_outside_command, _("\
5260 Select a trace frame whose PC is outside the given range (exclusive).\n\
5261 Usage: tfind outside addr1, addr2"),
5264 add_cmd ("range", class_trace, trace_find_range_command, _("\
5265 Select a trace frame whose PC is in the given range (inclusive).\n\
5266 Usage: tfind range addr1,addr2"),
5269 add_cmd ("line", class_trace, trace_find_line_command, _("\
5270 Select a trace frame by source line.\n\
5271 Argument can be a line number (with optional source file),\n\
5272 a function name, or '*' followed by an address.\n\
5273 Default argument is 'the next source line that was traced'."),
5276 add_cmd ("tracepoint", class_trace, trace_find_tracepoint_command, _("\
5277 Select a trace frame by tracepoint number.\n\
5278 Default is the tracepoint for the current trace frame."),
5281 add_cmd ("pc", class_trace, trace_find_pc_command, _("\
5282 Select a trace frame by PC.\n\
5283 Default is the current PC, or the PC of the current trace frame."),
5286 add_cmd ("end", class_trace, trace_find_end_command, _("\
5287 De-select any trace frame and resume 'live' debugging."),
5290 add_alias_cmd ("none", "end", class_trace, 0, &tfindlist);
5292 add_cmd ("start", class_trace, trace_find_start_command,
5293 _("Select the first trace frame in the trace buffer."),
5296 add_com ("tstatus", class_trace, trace_status_command,
5297 _("Display the status of the current trace data collection."));
5299 add_com ("tstop", class_trace, trace_stop_command, _("\
5300 Stop trace data collection.\n\
5301 Usage: tstop [ <notes> ... ]\n\
5302 Any arguments supplied are recorded with the trace as a stop reason and\n\
5303 reported by tstatus (if the target supports trace notes)."));
5305 add_com ("tstart", class_trace, trace_start_command, _("\
5306 Start trace data collection.\n\
5307 Usage: tstart [ <notes> ... ]\n\
5308 Any arguments supplied are recorded with the trace as a note and\n\
5309 reported by tstatus (if the target supports trace notes)."));
5311 add_com ("end", class_trace, end_actions_pseudocommand, _("\
5312 Ends a list of commands or actions.\n\
5313 Several GDB commands allow you to enter a list of commands or actions.\n\
5314 Entering \"end\" on a line by itself is the normal way to terminate\n\
5316 Note: the \"end\" command cannot be used at the gdb prompt."));
5318 add_com ("while-stepping", class_trace, while_stepping_pseudocommand, _("\
5319 Specify single-stepping behavior at a tracepoint.\n\
5320 Argument is number of instructions to trace in single-step mode\n\
5321 following the tracepoint. This command is normally followed by\n\
5322 one or more \"collect\" commands, to specify what to collect\n\
5323 while single-stepping.\n\n\
5324 Note: this command can only be used in a tracepoint \"actions\" list."));
5326 add_com_alias ("ws", "while-stepping", class_alias, 0);
5327 add_com_alias ("stepping", "while-stepping", class_alias, 0);
5329 add_com ("collect", class_trace, collect_pseudocommand, _("\
5330 Specify one or more data items to be collected at a tracepoint.\n\
5331 Accepts a comma-separated list of (one or more) expressions. GDB will\n\
5332 collect all data (variables, registers) referenced by that expression.\n\
5333 Also accepts the following special arguments:\n\
5334 $regs -- all registers.\n\
5335 $args -- all function arguments.\n\
5336 $locals -- all variables local to the block/function scope.\n\
5337 $_sdata -- static tracepoint data (ignored for non-static tracepoints).\n\
5338 Note: this command can only be used in a tracepoint \"actions\" list."));
5340 add_com ("teval", class_trace, teval_pseudocommand, _("\
5341 Specify one or more expressions to be evaluated at a tracepoint.\n\
5342 Accepts a comma-separated list of (one or more) expressions.\n\
5343 The result of each evaluation will be discarded.\n\
5344 Note: this command can only be used in a tracepoint \"actions\" list."));
5346 add_com ("actions", class_trace, trace_actions_command, _("\
5347 Specify the actions to be taken at a tracepoint.\n\
5348 Tracepoint actions may include collecting of specified data,\n\
5349 single-stepping, or enabling/disabling other tracepoints,\n\
5350 depending on target's capabilities."));
5352 default_collect = xstrdup ("");
5353 add_setshow_string_cmd ("default-collect", class_trace,
5354 &default_collect, _("\
5355 Set the list of expressions to collect by default"), _("\
5356 Show the list of expressions to collect by default"), NULL,
5358 &setlist, &showlist);
5360 add_setshow_boolean_cmd ("disconnected-tracing", no_class,
5361 &disconnected_tracing, _("\
5362 Set whether tracing continues after GDB disconnects."), _("\
5363 Show whether tracing continues after GDB disconnects."), _("\
5364 Use this to continue a tracing run even if GDB disconnects\n\
5365 or detaches from the target. You can reconnect later and look at\n\
5366 trace data collected in the meantime."),
5367 set_disconnected_tracing,
5372 add_setshow_boolean_cmd ("circular-trace-buffer", no_class,
5373 &circular_trace_buffer, _("\
5374 Set target's use of circular trace buffer."), _("\
5375 Show target's use of circular trace buffer."), _("\
5376 Use this to make the trace buffer into a circular buffer,\n\
5377 which will discard traceframes (oldest first) instead of filling\n\
5378 up and stopping the trace run."),
5379 set_circular_trace_buffer,
5384 add_setshow_string_cmd ("trace-user", class_trace,
5386 Set the user name to use for current and future trace runs"), _("\
5387 Show the user name to use for current and future trace runs"), NULL,
5388 set_trace_user, NULL,
5389 &setlist, &showlist);
5391 add_setshow_string_cmd ("trace-notes", class_trace,
5393 Set notes string to use for current and future trace runs"), _("\
5394 Show the notes string to use for current and future trace runs"), NULL,
5395 set_trace_notes, NULL,
5396 &setlist, &showlist);
5398 add_setshow_string_cmd ("trace-stop-notes", class_trace,
5399 &trace_stop_notes, _("\
5400 Set notes string to use for future tstop commands"), _("\
5401 Show the notes string to use for future tstop commands"), NULL,
5402 set_trace_stop_notes, NULL,
5403 &setlist, &showlist);
5407 add_target (&tfile_ops);