Fix typo in skip_prologue_sal's comment.
[deliverable/binutils-gdb.git] / gdb / tracepoint.c
... / ...
CommitLineData
1/* Tracing functionality for remote targets in custom GDB protocol
2
3 Copyright (C) 1997-2012 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#include "defs.h"
21#include "arch-utils.h"
22#include "symtab.h"
23#include "frame.h"
24#include "gdbtypes.h"
25#include "expression.h"
26#include "gdbcmd.h"
27#include "value.h"
28#include "target.h"
29#include "language.h"
30#include "gdb_string.h"
31#include "inferior.h"
32#include "breakpoint.h"
33#include "tracepoint.h"
34#include "linespec.h"
35#include "regcache.h"
36#include "completer.h"
37#include "block.h"
38#include "dictionary.h"
39#include "observer.h"
40#include "user-regs.h"
41#include "valprint.h"
42#include "gdbcore.h"
43#include "objfiles.h"
44#include "filenames.h"
45#include "gdbthread.h"
46#include "stack.h"
47#include "gdbcore.h"
48#include "remote.h"
49#include "source.h"
50#include "ax.h"
51#include "ax-gdb.h"
52#include "memrange.h"
53#include "exceptions.h"
54#include "cli/cli-utils.h"
55#include "probe.h"
56
57/* readline include files */
58#include "readline/readline.h"
59#include "readline/history.h"
60
61/* readline defines this. */
62#undef savestring
63
64#ifdef HAVE_UNISTD_H
65#include <unistd.h>
66#endif
67
68#ifndef O_LARGEFILE
69#define O_LARGEFILE 0
70#endif
71
72extern int hex2bin (const char *hex, gdb_byte *bin, int count);
73extern int bin2hex (const gdb_byte *bin, char *hex, int count);
74
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
79 continuation packet.
80
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
84
85#define TFILE_PID (1)
86
87/* A hook used to notify the UI of tracepoint operations. */
88
89void (*deprecated_trace_find_hook) (char *arg, int from_tty);
90void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
91
92extern void (*deprecated_readline_begin_hook) (char *, ...);
93extern char *(*deprecated_readline_hook) (char *);
94extern void (*deprecated_readline_end_hook) (void);
95
96/* GDB commands implemented in other modules:
97 */
98
99extern void output_command (char *, int);
100
101/*
102 Tracepoint.c:
103
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.
118
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.
124 */
125
126
127/* ======= Important global variables: ======= */
128
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. */
132
133typedef struct trace_state_variable tsv_s;
134DEF_VEC_O(tsv_s);
135
136/* An object describing the contents of a traceframe. */
137
138struct traceframe_info
139{
140 /* Collected memory. */
141 VEC(mem_range_s) *memory;
142};
143
144static VEC(tsv_s) *tvariables;
145
146/* The next integer to assign to a variable. */
147
148static int next_tsv_number = 1;
149
150/* Number of last traceframe collected. */
151static int traceframe_number;
152
153/* Tracepoint for last traceframe collected. */
154static int tracepoint_number;
155
156/* Symbol for function for last traceframe collected. */
157static struct symbol *traceframe_fun;
158
159/* Symtab and line for last traceframe collected. */
160static struct symtab_and_line traceframe_sal;
161
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
165 presently. */
166static struct traceframe_info *traceframe_info;
167
168/* Tracing command lists. */
169static struct cmd_list_element *tfindlist;
170
171/* List of expressions to collect by default at each tracepoint hit. */
172char *default_collect = "";
173
174static int disconnected_tracing;
175
176/* This variable controls whether we ask the target for a linear or
177 circular trace buffer. */
178
179static int circular_trace_buffer;
180
181/* Textual notes applying to the current and/or future trace runs. */
182
183char *trace_user = NULL;
184
185/* Textual notes applying to the current and/or future trace runs. */
186
187char *trace_notes = NULL;
188
189/* Textual notes applying to the stopping of a trace. */
190
191char *trace_stop_notes = NULL;
192
193/* ======= Important command functions: ======= */
194static void trace_actions_command (char *, int);
195static void trace_start_command (char *, int);
196static void trace_stop_command (char *, int);
197static void trace_status_command (char *, int);
198static void trace_find_command (char *, int);
199static void trace_find_pc_command (char *, int);
200static void trace_find_tracepoint_command (char *, int);
201static void trace_find_line_command (char *, int);
202static void trace_find_range_command (char *, int);
203static void trace_find_outside_command (char *, int);
204static void trace_dump_command (char *, int);
205
206/* support routines */
207
208struct collection_list;
209static void add_aexpr (struct collection_list *, struct agent_expr *);
210static char *mem2hex (gdb_byte *, char *, int);
211static void add_register (struct collection_list *collection,
212 unsigned int regno);
213
214static void free_uploaded_tps (struct uploaded_tp **utpp);
215static void free_uploaded_tsvs (struct uploaded_tsv **utsvp);
216
217
218extern void _initialize_tracepoint (void);
219
220static struct trace_status trace_status;
221
222char *stop_reason_names[] = {
223 "tunknown",
224 "tnotrun",
225 "tstop",
226 "tfull",
227 "tdisconnected",
228 "tpasscount",
229 "terror"
230};
231
232struct trace_status *
233current_trace_status (void)
234{
235 return &trace_status;
236}
237
238/* Destroy INFO. */
239
240static void
241free_traceframe_info (struct traceframe_info *info)
242{
243 if (info != NULL)
244 {
245 VEC_free (mem_range_s, info->memory);
246
247 xfree (info);
248 }
249}
250
251/* Free and clear the traceframe info cache of the current
252 traceframe. */
253
254static void
255clear_traceframe_info (void)
256{
257 free_traceframe_info (traceframe_info);
258 traceframe_info = NULL;
259}
260
261/* Set traceframe number to NUM. */
262static void
263set_traceframe_num (int num)
264{
265 traceframe_number = num;
266 set_internalvar_integer (lookup_internalvar ("trace_frame"), num);
267}
268
269/* Set tracepoint number to NUM. */
270static void
271set_tracepoint_num (int num)
272{
273 tracepoint_number = num;
274 set_internalvar_integer (lookup_internalvar ("tracepoint"), num);
275}
276
277/* Set externally visible debug variables for querying/printing
278 the traceframe context (line, function, file). */
279
280static void
281set_traceframe_context (struct frame_info *trace_frame)
282{
283 CORE_ADDR trace_pc;
284
285 /* Save as globals for internal use. */
286 if (trace_frame != NULL
287 && get_frame_pc_if_available (trace_frame, &trace_pc))
288 {
289 traceframe_sal = find_pc_line (trace_pc, 0);
290 traceframe_fun = find_pc_function (trace_pc);
291
292 /* Save linenumber as "$trace_line", a debugger variable visible to
293 users. */
294 set_internalvar_integer (lookup_internalvar ("trace_line"),
295 traceframe_sal.line);
296 }
297 else
298 {
299 init_sal (&traceframe_sal);
300 traceframe_fun = NULL;
301 set_internalvar_integer (lookup_internalvar ("trace_line"), -1);
302 }
303
304 /* Save func name as "$trace_func", a debugger variable visible to
305 users. */
306 if (traceframe_fun == NULL
307 || SYMBOL_LINKAGE_NAME (traceframe_fun) == NULL)
308 clear_internalvar (lookup_internalvar ("trace_func"));
309 else
310 set_internalvar_string (lookup_internalvar ("trace_func"),
311 SYMBOL_LINKAGE_NAME (traceframe_fun));
312
313 /* Save file name as "$trace_file", a debugger variable visible to
314 users. */
315 if (traceframe_sal.symtab == NULL
316 || traceframe_sal.symtab->filename == NULL)
317 clear_internalvar (lookup_internalvar ("trace_file"));
318 else
319 set_internalvar_string (lookup_internalvar ("trace_file"),
320 traceframe_sal.symtab->filename);
321}
322
323/* Create a new trace state variable with the given name. */
324
325struct trace_state_variable *
326create_trace_state_variable (const char *name)
327{
328 struct trace_state_variable tsv;
329
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);
334}
335
336/* Look for a trace state variable of the given name. */
337
338struct trace_state_variable *
339find_trace_state_variable (const char *name)
340{
341 struct trace_state_variable *tsv;
342 int ix;
343
344 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
345 if (strcmp (name, tsv->name) == 0)
346 return tsv;
347
348 return NULL;
349}
350
351static void
352delete_trace_state_variable (const char *name)
353{
354 struct trace_state_variable *tsv;
355 int ix;
356
357 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
358 if (strcmp (name, tsv->name) == 0)
359 {
360 xfree ((void *)tsv->name);
361 VEC_unordered_remove (tsv_s, tvariables, ix);
362
363 observer_notify_tsv_deleted (name);
364
365 return;
366 }
367
368 warning (_("No trace variable named \"$%s\", not deleting"), name);
369}
370
371/* The 'tvariable' command collects a name and optional expression to
372 evaluate into an initial value. */
373
374static void
375trace_variable_command (char *args, int from_tty)
376{
377 struct expression *expr;
378 struct cleanup *old_chain;
379 struct internalvar *intvar = NULL;
380 LONGEST initval = 0;
381 struct trace_state_variable *tsv;
382
383 if (!args || !*args)
384 error_no_arg (_("trace state variable name"));
385
386 /* All the possible valid arguments are expressions. */
387 expr = parse_expression (args);
388 old_chain = make_cleanup (free_current_contents, &expr);
389
390 if (expr->nelts == 0)
391 error (_("No expression?"));
392
393 /* Only allow two syntaxes; "$name" and "$name=value". */
394 if (expr->elts[0].opcode == OP_INTERNALVAR)
395 {
396 intvar = expr->elts[1].internalvar;
397 }
398 else if (expr->elts[0].opcode == BINOP_ASSIGN
399 && expr->elts[1].opcode == OP_INTERNALVAR)
400 {
401 intvar = expr->elts[2].internalvar;
402 initval = value_as_long (evaluate_subexpression_type (expr, 4));
403 }
404 else
405 error (_("Syntax must be $NAME [ = EXPR ]"));
406
407 if (!intvar)
408 error (_("No name given"));
409
410 if (strlen (internalvar_name (intvar)) <= 0)
411 error (_("Must supply a non-empty variable name"));
412
413 /* If the variable already exists, just change its initial value. */
414 tsv = find_trace_state_variable (internalvar_name (intvar));
415 if (tsv)
416 {
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);
422 return;
423 }
424
425 /* Create a new variable. */
426 tsv = create_trace_state_variable (internalvar_name (intvar));
427 tsv->initial_value = initval;
428
429 observer_notify_tsv_created (tsv->name, initval);
430
431 printf_filtered (_("Trace state variable $%s "
432 "created, with initial value %s.\n"),
433 tsv->name, plongest (tsv->initial_value));
434
435 do_cleanups (old_chain);
436}
437
438static void
439delete_trace_variable_command (char *args, int from_tty)
440{
441 int ix;
442 char **argv;
443 struct cleanup *back_to;
444
445 if (args == NULL)
446 {
447 if (query (_("Delete all trace state variables? ")))
448 VEC_free (tsv_s, tvariables);
449 dont_repeat ();
450 observer_notify_tsv_deleted (NULL);
451 return;
452 }
453
454 argv = gdb_buildargv (args);
455 back_to = make_cleanup_freeargv (argv);
456
457 for (ix = 0; argv[ix] != NULL; ix++)
458 {
459 if (*argv[ix] == '$')
460 delete_trace_state_variable (argv[ix] + 1);
461 else
462 warning (_("Name \"%s\" not prefixed with '$', ignoring"), argv[ix]);
463 }
464
465 do_cleanups (back_to);
466
467 dont_repeat ();
468}
469
470void
471tvariables_info_1 (void)
472{
473 struct trace_state_variable *tsv;
474 int ix;
475 int count = 0;
476 struct cleanup *back_to;
477 struct ui_out *uiout = current_uiout;
478
479 if (VEC_length (tsv_s, tvariables) == 0 && !ui_out_is_mi_like_p (uiout))
480 {
481 printf_filtered (_("No trace state variables.\n"));
482 return;
483 }
484
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,
488 &(tsv->value));
489
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");
495
496 ui_out_table_body (uiout);
497
498 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
499 {
500 struct cleanup *back_to2;
501 char *c;
502 char *name;
503
504 back_to2 = make_cleanup_ui_out_tuple_begin_end (uiout, "variable");
505
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));
510
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. */
517 c = NULL;
518 else if (current_trace_status ()->running || traceframe_number >= 0)
519 /* The value is/was defined, but we don't have it. */
520 c = "<unknown>";
521 else
522 /* It is not meaningful to ask about the value. */
523 c = "<undefined>";
524 if (c)
525 ui_out_field_string (uiout, "current", c);
526 ui_out_text (uiout, "\n");
527
528 do_cleanups (back_to2);
529 }
530
531 do_cleanups (back_to);
532}
533
534/* List all the trace state variables. */
535
536static void
537tvariables_info (char *args, int from_tty)
538{
539 tvariables_info_1 ();
540}
541
542/* Stash definitions of tsvs into the given file. */
543
544void
545save_trace_state_variables (struct ui_file *fp)
546{
547 struct trace_state_variable *tsv;
548 int ix;
549
550 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
551 {
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");
556 }
557}
558
559/* ACTIONS functions: */
560
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. */
569
570void
571end_actions_pseudocommand (char *args, int from_tty)
572{
573 error (_("This command cannot be used at the top level."));
574}
575
576void
577while_stepping_pseudocommand (char *args, int from_tty)
578{
579 error (_("This command can only be used in a tracepoint actions list."));
580}
581
582static void
583collect_pseudocommand (char *args, int from_tty)
584{
585 error (_("This command can only be used in a tracepoint actions list."));
586}
587
588static void
589teval_pseudocommand (char *args, int from_tty)
590{
591 error (_("This command can only be used in a tracepoint actions list."));
592}
593
594/* Parse any collection options, such as /s for strings. */
595
596char *
597decode_agent_options (char *exp)
598{
599 struct value_print_options opts;
600
601 if (*exp != '/')
602 return exp;
603
604 /* Call this to borrow the print elements default for collection
605 size. */
606 get_user_print_options (&opts);
607
608 exp++;
609 if (*exp == 's')
610 {
611 if (target_supports_string_tracing ())
612 {
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;
617 exp++;
618 if (*exp >= '0' && *exp <= '9')
619 trace_string_kludge = atoi (exp);
620 while (*exp >= '0' && *exp <= '9')
621 exp++;
622 }
623 else
624 error (_("Target does not support \"/s\" option for string tracing."));
625 }
626 else
627 error (_("Undefined collection format \"%c\"."), *exp);
628
629 exp = skip_spaces (exp);
630
631 return exp;
632}
633
634/* Enter a list of actions for a tracepoint. */
635static void
636trace_actions_command (char *args, int from_tty)
637{
638 struct tracepoint *t;
639 struct command_line *l;
640
641 t = get_tracepoint_by_number (&args, NULL, 1);
642 if (t)
643 {
644 char *tmpbuf =
645 xstrprintf ("Enter actions for tracepoint %d, one per line.",
646 t->base.number);
647 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
648
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);
653 }
654 /* else just return */
655}
656
657/* Report the results of checking the agent expression, as errors or
658 internal errors. */
659
660static void
661report_agent_reqs_errors (struct agent_expr *aexpr)
662{
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"));
667
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"));
673
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."));
682}
683
684/* worker function */
685void
686validate_actionline (char **line, struct breakpoint *b)
687{
688 struct cmd_list_element *c;
689 struct expression *exp = NULL;
690 struct cleanup *old_chain = NULL;
691 char *p, *tmp_p;
692 struct bp_location *loc;
693 struct agent_expr *aexpr;
694 struct tracepoint *t = (struct tracepoint *) b;
695
696 /* If EOF is typed, *line is NULL. */
697 if (*line == NULL)
698 return;
699
700 for (p = *line; isspace ((int) *p);)
701 p++;
702
703 /* Symbol lookup etc. */
704 if (*p == '\0') /* empty line: just prompt for another line. */
705 return;
706
707 if (*p == '#') /* comment line */
708 return;
709
710 c = lookup_cmd (&p, cmdlist, "", -1, 1);
711 if (c == 0)
712 error (_("`%s' is not a tracepoint action, or is ambiguous."), p);
713
714 if (cmd_cfunc_eq (c, collect_pseudocommand))
715 {
716 trace_string_kludge = 0;
717 if (*p == '/')
718 p = decode_agent_options (p);
719
720 do
721 { /* Repeat over a comma-separated list. */
722 QUIT; /* Allow user to bail out with ^C. */
723 while (isspace ((int) *p))
724 p++;
725
726 if (*p == '$') /* Look for special pseudo-symbols. */
727 {
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))
733 {
734 p = strchr (p, ',');
735 continue;
736 }
737 /* else fall thru, treat p as an expression and parse it! */
738 }
739 tmp_p = p;
740 for (loc = t->base.loc; loc; loc = loc->next)
741 {
742 p = tmp_p;
743 exp = parse_exp_1 (&p, loc->address,
744 block_for_pc (loc->address), 1);
745 old_chain = make_cleanup (free_current_contents, &exp);
746
747 if (exp->elts[0].opcode == OP_VAR_VALUE)
748 {
749 if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_CONST)
750 {
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)));
755 }
756 else if (SYMBOL_CLASS (exp->elts[2].symbol)
757 == LOC_OPTIMIZED_OUT)
758 {
759 error (_("`%s' is optimized away "
760 "and cannot be collected."),
761 SYMBOL_PRINT_NAME (exp->elts[2].symbol));
762 }
763 }
764
765 /* We have something to collect, make sure that the expr to
766 bytecode translator can handle it and that it's not too
767 long. */
768 aexpr = gen_trace_for_expr (loc->address, exp);
769 make_cleanup_free_agent_expr (aexpr);
770
771 if (aexpr->len > MAX_AGENT_EXPR_LEN)
772 error (_("Expression is too complicated."));
773
774 ax_reqs (aexpr);
775
776 report_agent_reqs_errors (aexpr);
777
778 do_cleanups (old_chain);
779 }
780 }
781 while (p && *p++ == ',');
782 }
783
784 else if (cmd_cfunc_eq (c, teval_pseudocommand))
785 {
786 do
787 { /* Repeat over a comma-separated list. */
788 QUIT; /* Allow user to bail out with ^C. */
789 while (isspace ((int) *p))
790 p++;
791
792 tmp_p = p;
793 for (loc = t->base.loc; loc; loc = loc->next)
794 {
795 p = tmp_p;
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);
800
801 /* We have something to evaluate, make sure that the expr to
802 bytecode translator can handle it and that it's not too
803 long. */
804 aexpr = gen_eval_for_expr (loc->address, exp);
805 make_cleanup_free_agent_expr (aexpr);
806
807 if (aexpr->len > MAX_AGENT_EXPR_LEN)
808 error (_("Expression is too complicated."));
809
810 ax_reqs (aexpr);
811 report_agent_reqs_errors (aexpr);
812
813 do_cleanups (old_chain);
814 }
815 }
816 while (p && *p++ == ',');
817 }
818
819 else if (cmd_cfunc_eq (c, while_stepping_pseudocommand))
820 {
821 char *steparg; /* In case warning is necessary. */
822
823 while (isspace ((int) *p))
824 p++;
825 steparg = p;
826
827 if (*p == '\0' || (t->step_count = strtol (p, &p, 0)) == 0)
828 error (_("while-stepping step count `%s' is malformed."), *line);
829 }
830
831 else if (cmd_cfunc_eq (c, end_actions_pseudocommand))
832 ;
833
834 else
835 error (_("`%s' is not a supported tracepoint action."), *line);
836}
837
838enum {
839 memrange_absolute = -1
840};
841
842struct memrange
843{
844 int type; /* memrange_absolute for absolute memory range,
845 else basereg number. */
846 bfd_signed_vma start;
847 bfd_signed_vma end;
848};
849
850struct collection_list
851 {
852 unsigned char regs_mask[32]; /* room for up to 256 regs */
853 long listsize;
854 long next_memrange;
855 struct memrange *list;
856 long aexpr_listsize; /* size of array pointed to by expr_list elt */
857 long next_aexpr_elt;
858 struct agent_expr **aexpr_list;
859
860 /* True is the user requested a collection of "$_sdata", "static
861 tracepoint data". */
862 int strace_data;
863 }
864tracepoint_list, stepping_list;
865
866/* MEMRANGE functions: */
867
868static int memrange_cmp (const void *, const void *);
869
870/* Compare memranges for qsort. */
871static int
872memrange_cmp (const void *va, const void *vb)
873{
874 const struct memrange *a = va, *b = vb;
875
876 if (a->type < b->type)
877 return -1;
878 if (a->type > b->type)
879 return 1;
880 if (a->type == memrange_absolute)
881 {
882 if ((bfd_vma) a->start < (bfd_vma) b->start)
883 return -1;
884 if ((bfd_vma) a->start > (bfd_vma) b->start)
885 return 1;
886 }
887 else
888 {
889 if (a->start < b->start)
890 return -1;
891 if (a->start > b->start)
892 return 1;
893 }
894 return 0;
895}
896
897/* Sort the memrange list using qsort, and merge adjacent memranges. */
898static void
899memrange_sortmerge (struct collection_list *memranges)
900{
901 int a, b;
902
903 qsort (memranges->list, memranges->next_memrange,
904 sizeof (struct memrange), memrange_cmp);
905 if (memranges->next_memrange > 0)
906 {
907 for (a = 0, b = 1; b < memranges->next_memrange; b++)
908 {
909 /* If memrange b overlaps or is adjacent to memrange a,
910 merge them. */
911 if (memranges->list[a].type == memranges->list[b].type
912 && memranges->list[b].start <= memranges->list[a].end)
913 {
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 */
917 }
918 a++; /* next a */
919 if (a != b)
920 memcpy (&memranges->list[a], &memranges->list[b],
921 sizeof (struct memrange));
922 }
923 memranges->next_memrange = a + 1;
924 }
925}
926
927/* Add a register to a collection list. */
928static void
929add_register (struct collection_list *collection, unsigned int regno)
930{
931 if (info_verbose)
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"),
935 regno);
936 collection->regs_mask[regno / 8] |= 1 << (regno % 8);
937}
938
939/* Add a memrange to a collection list. */
940static void
941add_memrange (struct collection_list *memranges,
942 int type, bfd_signed_vma base,
943 unsigned long len)
944{
945 if (info_verbose)
946 {
947 printf_filtered ("(%d,", type);
948 printf_vma (base);
949 printf_filtered (",%ld)\n", len);
950 }
951
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)
960 {
961 memranges->listsize *= 2;
962 memranges->list = xrealloc (memranges->list,
963 memranges->listsize);
964 }
965
966 if (type != memrange_absolute) /* Better collect the base register! */
967 add_register (memranges, type);
968}
969
970/* Add a symbol to a collection list. */
971static void
972collect_symbol (struct collection_list *collect,
973 struct symbol *sym,
974 struct gdbarch *gdbarch,
975 long frame_regno, long frame_offset,
976 CORE_ADDR scope)
977{
978 unsigned long len;
979 unsigned int reg;
980 bfd_signed_vma offset;
981 int treat_as_expr = 0;
982
983 len = TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym)));
984 switch (SYMBOL_CLASS (sym))
985 {
986 default:
987 printf_filtered ("%s: don't know symbol class %d\n",
988 SYMBOL_PRINT_NAME (sym),
989 SYMBOL_CLASS (sym));
990 break;
991 case LOC_CONST:
992 printf_filtered ("constant %s (value %s) will not be collected.\n",
993 SYMBOL_PRINT_NAME (sym), plongest (SYMBOL_VALUE (sym)));
994 break;
995 case LOC_STATIC:
996 offset = SYMBOL_VALUE_ADDRESS (sym);
997 if (info_verbose)
998 {
999 char tmp[40];
1000
1001 sprintf_vma (tmp, offset);
1002 printf_filtered ("LOC_STATIC %s: collect %ld bytes at %s.\n",
1003 SYMBOL_PRINT_NAME (sym), len,
1004 tmp /* address */);
1005 }
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)
1009 treat_as_expr = 1;
1010 else
1011 add_memrange (collect, memrange_absolute, offset, len);
1012 break;
1013 case LOC_REGISTER:
1014 reg = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
1015 if (info_verbose)
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);
1024 break;
1025 case LOC_REF_ARG:
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));
1029 break;
1030 case LOC_ARG:
1031 reg = frame_regno;
1032 offset = frame_offset + SYMBOL_VALUE (sym);
1033 if (info_verbose)
1034 {
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);
1039 }
1040 add_memrange (collect, reg, offset, len);
1041 break;
1042 case LOC_REGPARM_ADDR:
1043 reg = SYMBOL_VALUE (sym);
1044 offset = 0;
1045 if (info_verbose)
1046 {
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);
1051 }
1052 add_memrange (collect, reg, offset, len);
1053 break;
1054 case LOC_LOCAL:
1055 reg = frame_regno;
1056 offset = frame_offset + SYMBOL_VALUE (sym);
1057 if (info_verbose)
1058 {
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);
1063 }
1064 add_memrange (collect, reg, offset, len);
1065 break;
1066
1067 case LOC_UNRESOLVED:
1068 treat_as_expr = 1;
1069 break;
1070
1071 case LOC_OPTIMIZED_OUT:
1072 printf_filtered ("%s has been optimized out of existence.\n",
1073 SYMBOL_PRINT_NAME (sym));
1074 break;
1075
1076 case LOC_COMPUTED:
1077 treat_as_expr = 1;
1078 break;
1079 }
1080
1081 /* Expressions are the most general case. */
1082 if (treat_as_expr)
1083 {
1084 struct agent_expr *aexpr;
1085 struct cleanup *old_chain1 = NULL;
1086
1087 aexpr = gen_trace_for_var (scope, gdbarch, sym);
1088
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. */
1092 if (!aexpr)
1093 {
1094 printf_filtered ("%s has been optimized out of existence.\n",
1095 SYMBOL_PRINT_NAME (sym));
1096 return;
1097 }
1098
1099 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1100
1101 ax_reqs (aexpr);
1102
1103 report_agent_reqs_errors (aexpr);
1104
1105 discard_cleanups (old_chain1);
1106 add_aexpr (collect, aexpr);
1107
1108 /* Take care of the registers. */
1109 if (aexpr->reg_mask_len > 0)
1110 {
1111 int ndx1, ndx2;
1112
1113 for (ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
1114 {
1115 QUIT; /* Allow user to bail out with ^C. */
1116 if (aexpr->reg_mask[ndx1] != 0)
1117 {
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);
1123 }
1124 }
1125 }
1126 }
1127}
1128
1129/* Data to be passed around in the calls to the locals and args
1130 iterators. */
1131
1132struct add_local_symbols_data
1133{
1134 struct collection_list *collect;
1135 struct gdbarch *gdbarch;
1136 CORE_ADDR pc;
1137 long frame_regno;
1138 long frame_offset;
1139 int count;
1140};
1141
1142/* The callback for the locals and args iterators. */
1143
1144static void
1145do_collect_symbol (const char *print_name,
1146 struct symbol *sym,
1147 void *cb_data)
1148{
1149 struct add_local_symbols_data *p = cb_data;
1150
1151 collect_symbol (p->collect, sym, p->gdbarch, p->frame_regno,
1152 p->frame_offset, p->pc);
1153 p->count++;
1154}
1155
1156/* Add all locals (or args) symbols to collection list. */
1157static void
1158add_local_symbols (struct collection_list *collect,
1159 struct gdbarch *gdbarch, CORE_ADDR pc,
1160 long frame_regno, long frame_offset, int type)
1161{
1162 struct block *block;
1163 struct add_local_symbols_data cb_data;
1164
1165 cb_data.collect = collect;
1166 cb_data.gdbarch = gdbarch;
1167 cb_data.pc = pc;
1168 cb_data.frame_regno = frame_regno;
1169 cb_data.frame_offset = frame_offset;
1170 cb_data.count = 0;
1171
1172 if (type == 'L')
1173 {
1174 block = block_for_pc (pc);
1175 if (block == NULL)
1176 {
1177 warning (_("Can't collect locals; "
1178 "no symbol table info available.\n"));
1179 return;
1180 }
1181
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."));
1185 }
1186 else
1187 {
1188 pc = get_pc_function_start (pc);
1189 block = block_for_pc (pc);
1190 if (block == NULL)
1191 {
1192 warning (_("Can't collect args; no symbol table info available."));
1193 return;
1194 }
1195
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."));
1199 }
1200}
1201
1202static void
1203add_static_trace_data (struct collection_list *collection)
1204{
1205 if (info_verbose)
1206 printf_filtered ("collect static trace data\n");
1207 collection->strace_data = 1;
1208}
1209
1210/* worker function */
1211static void
1212clear_collection_list (struct collection_list *list)
1213{
1214 int ndx;
1215
1216 list->next_memrange = 0;
1217 for (ndx = 0; ndx < list->next_aexpr_elt; ndx++)
1218 {
1219 free_agent_expr (list->aexpr_list[ndx]);
1220 list->aexpr_list[ndx] = NULL;
1221 }
1222 list->next_aexpr_elt = 0;
1223 memset (list->regs_mask, 0, sizeof (list->regs_mask));
1224 list->strace_data = 0;
1225}
1226
1227/* Reduce a collection list to string form (for gdb protocol). */
1228static char **
1229stringify_collection_list (struct collection_list *list, char *string)
1230{
1231 char temp_buf[2048];
1232 char tmp2[40];
1233 int count;
1234 int ndx = 0;
1235 char *(*str_list)[];
1236 char *end;
1237 long i;
1238
1239 count = 1 + 1 + list->next_memrange + list->next_aexpr_elt + 1;
1240 str_list = (char *(*)[]) xmalloc (count * sizeof (char *));
1241
1242 if (list->strace_data)
1243 {
1244 if (info_verbose)
1245 printf_filtered ("\nCollecting static trace data\n");
1246 end = temp_buf;
1247 *end++ = 'L';
1248 (*str_list)[ndx] = savestring (temp_buf, end - temp_buf);
1249 ndx++;
1250 }
1251
1252 for (i = sizeof (list->regs_mask) - 1; i > 0; i--)
1253 if (list->regs_mask[i] != 0) /* Skip leading zeroes in regs_mask. */
1254 break;
1255 if (list->regs_mask[i] != 0) /* Prepare to send regs_mask to the stub. */
1256 {
1257 if (info_verbose)
1258 printf_filtered ("\nCollecting registers (mask): 0x");
1259 end = temp_buf;
1260 *end++ = 'R';
1261 for (; i >= 0; i--)
1262 {
1263 QUIT; /* Allow user to bail out with ^C. */
1264 if (info_verbose)
1265 printf_filtered ("%02X", list->regs_mask[i]);
1266 sprintf (end, "%02X", list->regs_mask[i]);
1267 end += 2;
1268 }
1269 (*str_list)[ndx] = xstrdup (temp_buf);
1270 ndx++;
1271 }
1272 if (info_verbose)
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++)
1277 {
1278 QUIT; /* Allow user to bail out with ^C. */
1279 sprintf_vma (tmp2, list->list[i].start);
1280 if (info_verbose)
1281 {
1282 printf_filtered ("(%d, %s, %ld)\n",
1283 list->list[i].type,
1284 tmp2,
1285 (long) (list->list[i].end - list->list[i].start));
1286 }
1287 if (count + 27 > MAX_AGENT_EXPR_LEN)
1288 {
1289 (*str_list)[ndx] = savestring (temp_buf, count);
1290 ndx++;
1291 count = 0;
1292 end = temp_buf;
1293 }
1294
1295 {
1296 bfd_signed_vma length = list->list[i].end - list->list[i].start;
1297
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)).
1301 Special-case it. */
1302 if (list->list[i].type == memrange_absolute)
1303 sprintf (end, "M-1,%s,%lX", tmp2, (long) length);
1304 else
1305 sprintf (end, "M%X,%s,%lX", list->list[i].type, tmp2, (long) length);
1306 }
1307
1308 count += strlen (end);
1309 end = temp_buf + count;
1310 }
1311
1312 for (i = 0; i < list->next_aexpr_elt; i++)
1313 {
1314 QUIT; /* Allow user to bail out with ^C. */
1315 if ((count + 10 + 2 * list->aexpr_list[i]->len) > MAX_AGENT_EXPR_LEN)
1316 {
1317 (*str_list)[ndx] = savestring (temp_buf, count);
1318 ndx++;
1319 count = 0;
1320 end = temp_buf;
1321 }
1322 sprintf (end, "X%08X,", list->aexpr_list[i]->len);
1323 end += 10; /* 'X' + 8 hex digits + ',' */
1324 count += 10;
1325
1326 end = mem2hex (list->aexpr_list[i]->buf,
1327 end, list->aexpr_list[i]->len);
1328 count += 2 * list->aexpr_list[i]->len;
1329 }
1330
1331 if (count != 0)
1332 {
1333 (*str_list)[ndx] = savestring (temp_buf, count);
1334 ndx++;
1335 count = 0;
1336 end = temp_buf;
1337 }
1338 (*str_list)[ndx] = NULL;
1339
1340 if (ndx == 0)
1341 {
1342 xfree (str_list);
1343 return NULL;
1344 }
1345 else
1346 return *str_list;
1347}
1348
1349
1350static void
1351encode_actions_1 (struct command_line *action,
1352 struct breakpoint *t,
1353 struct bp_location *tloc,
1354 int frame_reg,
1355 LONGEST frame_offset,
1356 struct collection_list *collect,
1357 struct collection_list *stepping_list)
1358{
1359 char *action_exp;
1360 struct expression *exp = NULL;
1361 int i;
1362 struct value *tempval;
1363 struct cmd_list_element *cmd;
1364 struct agent_expr *aexpr;
1365
1366 for (; action; action = action->next)
1367 {
1368 QUIT; /* Allow user to bail out with ^C. */
1369 action_exp = action->line;
1370 while (isspace ((int) *action_exp))
1371 action_exp++;
1372
1373 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
1374 if (cmd == 0)
1375 error (_("Bad action list item: %s"), action_exp);
1376
1377 if (cmd_cfunc_eq (cmd, collect_pseudocommand))
1378 {
1379 trace_string_kludge = 0;
1380 if (*action_exp == '/')
1381 action_exp = decode_agent_options (action_exp);
1382
1383 do
1384 { /* Repeat over a comma-separated list. */
1385 QUIT; /* Allow user to bail out with ^C. */
1386 while (isspace ((int) *action_exp))
1387 action_exp++;
1388
1389 if (0 == strncasecmp ("$reg", action_exp, 4))
1390 {
1391 for (i = 0; i < gdbarch_num_regs (tloc->gdbarch); i++)
1392 add_register (collect, i);
1393 action_exp = strchr (action_exp, ','); /* more? */
1394 }
1395 else if (0 == strncasecmp ("$arg", action_exp, 4))
1396 {
1397 add_local_symbols (collect,
1398 tloc->gdbarch,
1399 tloc->address,
1400 frame_reg,
1401 frame_offset,
1402 'A');
1403 action_exp = strchr (action_exp, ','); /* more? */
1404 }
1405 else if (0 == strncasecmp ("$loc", action_exp, 4))
1406 {
1407 add_local_symbols (collect,
1408 tloc->gdbarch,
1409 tloc->address,
1410 frame_reg,
1411 frame_offset,
1412 'L');
1413 action_exp = strchr (action_exp, ','); /* more? */
1414 }
1415 else if (0 == strncasecmp ("$_ret", action_exp, 5))
1416 {
1417 struct cleanup *old_chain1 = NULL;
1418
1419 aexpr = gen_trace_for_return_address (tloc->address,
1420 tloc->gdbarch);
1421
1422 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1423
1424 ax_reqs (aexpr);
1425 report_agent_reqs_errors (aexpr);
1426
1427 discard_cleanups (old_chain1);
1428 add_aexpr (collect, aexpr);
1429
1430 /* take care of the registers */
1431 if (aexpr->reg_mask_len > 0)
1432 {
1433 int ndx1, ndx2;
1434
1435 for (ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
1436 {
1437 QUIT; /* allow user to bail out with ^C */
1438 if (aexpr->reg_mask[ndx1] != 0)
1439 {
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,
1445 ndx1 * 8 + ndx2);
1446 }
1447 }
1448 }
1449
1450 action_exp = strchr (action_exp, ','); /* more? */
1451 }
1452 else if (0 == strncasecmp ("$_sdata", action_exp, 7))
1453 {
1454 add_static_trace_data (collect);
1455 action_exp = strchr (action_exp, ','); /* more? */
1456 }
1457 else
1458 {
1459 unsigned long addr, len;
1460 struct cleanup *old_chain = NULL;
1461 struct cleanup *old_chain1 = NULL;
1462
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);
1466
1467 switch (exp->elts[0].opcode)
1468 {
1469 case OP_REGISTER:
1470 {
1471 const char *name = &exp->elts[2].string;
1472
1473 i = user_reg_map_name_to_regnum (tloc->gdbarch,
1474 name, strlen (name));
1475 if (i == -1)
1476 internal_error (__FILE__, __LINE__,
1477 _("Register $%s not available"),
1478 name);
1479 if (info_verbose)
1480 printf_filtered ("OP_REGISTER: ");
1481 add_register (collect, i);
1482 break;
1483 }
1484
1485 case UNOP_MEMVAL:
1486 /* Safe because we know it's a simple expression. */
1487 tempval = evaluate_expression (exp);
1488 addr = value_address (tempval);
1489 len = TYPE_LENGTH (check_typedef (exp->elts[1].type));
1490 add_memrange (collect, memrange_absolute, addr, len);
1491 break;
1492
1493 case OP_VAR_VALUE:
1494 collect_symbol (collect,
1495 exp->elts[2].symbol,
1496 tloc->gdbarch,
1497 frame_reg,
1498 frame_offset,
1499 tloc->address);
1500 break;
1501
1502 default: /* Full-fledged expression. */
1503 aexpr = gen_trace_for_expr (tloc->address, exp);
1504
1505 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1506
1507 ax_reqs (aexpr);
1508
1509 report_agent_reqs_errors (aexpr);
1510
1511 discard_cleanups (old_chain1);
1512 add_aexpr (collect, aexpr);
1513
1514 /* Take care of the registers. */
1515 if (aexpr->reg_mask_len > 0)
1516 {
1517 int ndx1;
1518 int ndx2;
1519
1520 for (ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
1521 {
1522 QUIT; /* Allow user to bail out with ^C. */
1523 if (aexpr->reg_mask[ndx1] != 0)
1524 {
1525 /* Assume chars have 8 bits. */
1526 for (ndx2 = 0; ndx2 < 8; ndx2++)
1527 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
1528 /* It's used -- record it. */
1529 add_register (collect,
1530 ndx1 * 8 + ndx2);
1531 }
1532 }
1533 }
1534 break;
1535 } /* switch */
1536 do_cleanups (old_chain);
1537 } /* do */
1538 }
1539 while (action_exp && *action_exp++ == ',');
1540 } /* if */
1541 else if (cmd_cfunc_eq (cmd, teval_pseudocommand))
1542 {
1543 do
1544 { /* Repeat over a comma-separated list. */
1545 QUIT; /* Allow user to bail out with ^C. */
1546 while (isspace ((int) *action_exp))
1547 action_exp++;
1548
1549 {
1550 struct cleanup *old_chain = NULL;
1551 struct cleanup *old_chain1 = NULL;
1552
1553 exp = parse_exp_1 (&action_exp, tloc->address,
1554 block_for_pc (tloc->address), 1);
1555 old_chain = make_cleanup (free_current_contents, &exp);
1556
1557 aexpr = gen_eval_for_expr (tloc->address, exp);
1558 old_chain1 = make_cleanup_free_agent_expr (aexpr);
1559
1560 ax_reqs (aexpr);
1561 report_agent_reqs_errors (aexpr);
1562
1563 discard_cleanups (old_chain1);
1564 /* Even though we're not officially collecting, add
1565 to the collect list anyway. */
1566 add_aexpr (collect, aexpr);
1567
1568 do_cleanups (old_chain);
1569 } /* do */
1570 }
1571 while (action_exp && *action_exp++ == ',');
1572 } /* if */
1573 else if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand))
1574 {
1575 /* We check against nested while-stepping when setting
1576 breakpoint action, so no way to run into nested
1577 here. */
1578 gdb_assert (stepping_list);
1579
1580 encode_actions_1 (action->body_list[0], t, tloc, frame_reg,
1581 frame_offset, stepping_list, NULL);
1582 }
1583 else
1584 error (_("Invalid tracepoint command '%s'"), action->line);
1585 } /* for */
1586}
1587
1588/* Render all actions into gdb protocol. */
1589
1590void
1591encode_actions (struct breakpoint *t, struct bp_location *tloc,
1592 char ***tdp_actions, char ***stepping_actions)
1593{
1594 static char tdp_buff[2048], step_buff[2048];
1595 char *default_collect_line = NULL;
1596 struct command_line *actions;
1597 struct command_line *default_collect_action = NULL;
1598 int frame_reg;
1599 LONGEST frame_offset;
1600 struct cleanup *back_to;
1601
1602 back_to = make_cleanup (null_cleanup, NULL);
1603
1604 clear_collection_list (&tracepoint_list);
1605 clear_collection_list (&stepping_list);
1606
1607 *tdp_actions = NULL;
1608 *stepping_actions = NULL;
1609
1610 gdbarch_virtual_frame_pointer (tloc->gdbarch,
1611 tloc->address, &frame_reg, &frame_offset);
1612
1613 actions = breakpoint_commands (t);
1614
1615 /* If there are default expressions to collect, make up a collect
1616 action and prepend to the action list to encode. Note that since
1617 validation is per-tracepoint (local var "xyz" might be valid for
1618 one tracepoint and not another, etc), we make up the action on
1619 the fly, and don't cache it. */
1620 if (*default_collect)
1621 {
1622 char *line;
1623
1624 default_collect_line = xstrprintf ("collect %s", default_collect);
1625 make_cleanup (xfree, default_collect_line);
1626
1627 line = default_collect_line;
1628 validate_actionline (&line, t);
1629
1630 default_collect_action = xmalloc (sizeof (struct command_line));
1631 make_cleanup (xfree, default_collect_action);
1632 default_collect_action->next = actions;
1633 default_collect_action->line = line;
1634 actions = default_collect_action;
1635 }
1636 encode_actions_1 (actions, t, tloc, frame_reg, frame_offset,
1637 &tracepoint_list, &stepping_list);
1638
1639 memrange_sortmerge (&tracepoint_list);
1640 memrange_sortmerge (&stepping_list);
1641
1642 *tdp_actions = stringify_collection_list (&tracepoint_list,
1643 tdp_buff);
1644 *stepping_actions = stringify_collection_list (&stepping_list,
1645 step_buff);
1646
1647 do_cleanups (back_to);
1648}
1649
1650static void
1651add_aexpr (struct collection_list *collect, struct agent_expr *aexpr)
1652{
1653 if (collect->next_aexpr_elt >= collect->aexpr_listsize)
1654 {
1655 collect->aexpr_list =
1656 xrealloc (collect->aexpr_list,
1657 2 * collect->aexpr_listsize * sizeof (struct agent_expr *));
1658 collect->aexpr_listsize *= 2;
1659 }
1660 collect->aexpr_list[collect->next_aexpr_elt] = aexpr;
1661 collect->next_aexpr_elt++;
1662}
1663
1664static void
1665process_tracepoint_on_disconnect (void)
1666{
1667 VEC(breakpoint_p) *tp_vec = NULL;
1668 int ix;
1669 struct breakpoint *b;
1670 int has_pending_p = 0;
1671
1672 /* Check whether we still have pending tracepoint. If we have, warn the
1673 user that pending tracepoint will no longer work. */
1674 tp_vec = all_tracepoints ();
1675 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1676 {
1677 if (b->loc == NULL)
1678 {
1679 has_pending_p = 1;
1680 break;
1681 }
1682 else
1683 {
1684 struct bp_location *loc1;
1685
1686 for (loc1 = b->loc; loc1; loc1 = loc1->next)
1687 {
1688 if (loc1->shlib_disabled)
1689 {
1690 has_pending_p = 1;
1691 break;
1692 }
1693 }
1694
1695 if (has_pending_p)
1696 break;
1697 }
1698 }
1699 VEC_free (breakpoint_p, tp_vec);
1700
1701 if (has_pending_p)
1702 warning (_("Pending tracepoints will not be resolved while"
1703 " GDB is disconnected\n"));
1704}
1705
1706
1707void
1708start_tracing (char *notes)
1709{
1710 VEC(breakpoint_p) *tp_vec = NULL;
1711 int ix;
1712 struct breakpoint *b;
1713 struct trace_state_variable *tsv;
1714 int any_enabled = 0, num_to_download = 0;
1715 int ret;
1716
1717 tp_vec = all_tracepoints ();
1718
1719 /* No point in tracing without any tracepoints... */
1720 if (VEC_length (breakpoint_p, tp_vec) == 0)
1721 {
1722 VEC_free (breakpoint_p, tp_vec);
1723 error (_("No tracepoints defined, not starting trace"));
1724 }
1725
1726 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1727 {
1728 struct tracepoint *t = (struct tracepoint *) b;
1729 struct bp_location *loc;
1730
1731 if (b->enable_state == bp_enabled)
1732 any_enabled = 1;
1733
1734 if ((b->type == bp_fast_tracepoint
1735 ? may_insert_fast_tracepoints
1736 : may_insert_tracepoints))
1737 ++num_to_download;
1738 else
1739 warning (_("May not insert %stracepoints, skipping tracepoint %d"),
1740 (b->type == bp_fast_tracepoint ? "fast " : ""), b->number);
1741 }
1742
1743 if (!any_enabled)
1744 {
1745 if (target_supports_enable_disable_tracepoint ())
1746 warning (_("No tracepoints enabled"));
1747 else
1748 {
1749 /* No point in tracing with only disabled tracepoints that
1750 cannot be re-enabled. */
1751 VEC_free (breakpoint_p, tp_vec);
1752 error (_("No tracepoints enabled, not starting trace"));
1753 }
1754 }
1755
1756 if (num_to_download <= 0)
1757 {
1758 VEC_free (breakpoint_p, tp_vec);
1759 error (_("No tracepoints that may be downloaded, not starting trace"));
1760 }
1761
1762 target_trace_init ();
1763
1764 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1765 {
1766 struct tracepoint *t = (struct tracepoint *) b;
1767 struct bp_location *loc;
1768
1769 /* Clear `inserted' flag. */
1770 for (loc = b->loc; loc; loc = loc->next)
1771 loc->inserted = 0;
1772
1773 if ((b->type == bp_fast_tracepoint
1774 ? !may_insert_fast_tracepoints
1775 : !may_insert_tracepoints))
1776 continue;
1777
1778 t->number_on_target = 0;
1779
1780 for (loc = b->loc; loc; loc = loc->next)
1781 {
1782 /* Since tracepoint locations are never duplicated, `inserted'
1783 flag should be zero. */
1784 gdb_assert (!loc->inserted);
1785
1786 target_download_tracepoint (loc);
1787
1788 loc->inserted = 1;
1789 }
1790
1791 t->number_on_target = b->number;
1792
1793 for (loc = b->loc; loc; loc = loc->next)
1794 if (loc->probe != NULL)
1795 loc->probe->pops->set_semaphore (loc->probe, loc->gdbarch);
1796 }
1797 VEC_free (breakpoint_p, tp_vec);
1798
1799 /* Send down all the trace state variables too. */
1800 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
1801 {
1802 target_download_trace_state_variable (tsv);
1803 }
1804
1805 /* Tell target to treat text-like sections as transparent. */
1806 target_trace_set_readonly_regions ();
1807 /* Set some mode flags. */
1808 target_set_disconnected_tracing (disconnected_tracing);
1809 target_set_circular_trace_buffer (circular_trace_buffer);
1810
1811 if (!notes)
1812 notes = trace_notes;
1813 ret = target_set_trace_notes (trace_user, notes, NULL);
1814
1815 if (!ret && (trace_user || notes))
1816 warning (_("Target does not support trace user/notes, info ignored"));
1817
1818 /* Now insert traps and begin collecting data. */
1819 target_trace_start ();
1820
1821 /* Reset our local state. */
1822 set_traceframe_num (-1);
1823 set_tracepoint_num (-1);
1824 set_traceframe_context (NULL);
1825 current_trace_status()->running = 1;
1826 clear_traceframe_info ();
1827}
1828
1829/* The tstart command requests the target to start a new trace run.
1830 The command passes any arguments it has to the target verbatim, as
1831 an optional "trace note". This is useful as for instance a warning
1832 to other users if the trace runs disconnected, and you don't want
1833 anybody else messing with the target. */
1834
1835static void
1836trace_start_command (char *args, int from_tty)
1837{
1838 dont_repeat (); /* Like "run", dangerous to repeat accidentally. */
1839
1840 if (current_trace_status ()->running)
1841 {
1842 if (from_tty
1843 && !query (_("A trace is running already. Start a new run? ")))
1844 error (_("New trace run not started."));
1845 }
1846
1847 start_tracing (args);
1848}
1849
1850/* The tstop command stops the tracing run. The command passes any
1851 supplied arguments to the target verbatim as a "stop note"; if the
1852 target supports trace notes, then it will be reported back as part
1853 of the trace run's status. */
1854
1855static void
1856trace_stop_command (char *args, int from_tty)
1857{
1858 if (!current_trace_status ()->running)
1859 error (_("Trace is not running."));
1860
1861 stop_tracing (args);
1862}
1863
1864void
1865stop_tracing (char *note)
1866{
1867 int ret;
1868 VEC(breakpoint_p) *tp_vec = NULL;
1869 int ix;
1870 struct breakpoint *t;
1871
1872 target_trace_stop ();
1873
1874 tp_vec = all_tracepoints ();
1875 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, t); ix++)
1876 {
1877 struct bp_location *loc;
1878
1879 if ((t->type == bp_fast_tracepoint
1880 ? !may_insert_fast_tracepoints
1881 : !may_insert_tracepoints))
1882 continue;
1883
1884 for (loc = t->loc; loc; loc = loc->next)
1885 {
1886 /* GDB can be totally absent in some disconnected trace scenarios,
1887 but we don't really care if this semaphore goes out of sync.
1888 That's why we are decrementing it here, but not taking care
1889 in other places. */
1890 if (loc->probe != NULL)
1891 loc->probe->pops->clear_semaphore (loc->probe, loc->gdbarch);
1892 }
1893 }
1894
1895 VEC_free (breakpoint_p, tp_vec);
1896
1897 if (!note)
1898 note = trace_stop_notes;
1899 ret = target_set_trace_notes (NULL, NULL, note);
1900
1901 if (!ret && note)
1902 warning (_("Target does not support trace notes, note ignored"));
1903
1904 /* Should change in response to reply? */
1905 current_trace_status ()->running = 0;
1906}
1907
1908/* tstatus command */
1909static void
1910trace_status_command (char *args, int from_tty)
1911{
1912 struct trace_status *ts = current_trace_status ();
1913 int status, ix;
1914 VEC(breakpoint_p) *tp_vec = NULL;
1915 struct breakpoint *t;
1916
1917 status = target_get_trace_status (ts);
1918
1919 if (status == -1)
1920 {
1921 if (ts->from_file)
1922 printf_filtered (_("Using a trace file.\n"));
1923 else
1924 {
1925 printf_filtered (_("Trace can not be run on this target.\n"));
1926 return;
1927 }
1928 }
1929
1930 if (!ts->running_known)
1931 {
1932 printf_filtered (_("Run/stop status is unknown.\n"));
1933 }
1934 else if (ts->running)
1935 {
1936 printf_filtered (_("Trace is running on the target.\n"));
1937 }
1938 else
1939 {
1940 switch (ts->stop_reason)
1941 {
1942 case trace_never_run:
1943 printf_filtered (_("No trace has been run on the target.\n"));
1944 break;
1945 case tstop_command:
1946 if (ts->stop_desc)
1947 printf_filtered (_("Trace stopped by a tstop command (%s).\n"),
1948 ts->stop_desc);
1949 else
1950 printf_filtered (_("Trace stopped by a tstop command.\n"));
1951 break;
1952 case trace_buffer_full:
1953 printf_filtered (_("Trace stopped because the buffer was full.\n"));
1954 break;
1955 case trace_disconnected:
1956 printf_filtered (_("Trace stopped because of disconnection.\n"));
1957 break;
1958 case tracepoint_passcount:
1959 printf_filtered (_("Trace stopped by tracepoint %d.\n"),
1960 ts->stopping_tracepoint);
1961 break;
1962 case tracepoint_error:
1963 if (ts->stopping_tracepoint)
1964 printf_filtered (_("Trace stopped by an "
1965 "error (%s, tracepoint %d).\n"),
1966 ts->stop_desc, ts->stopping_tracepoint);
1967 else
1968 printf_filtered (_("Trace stopped by an error (%s).\n"),
1969 ts->stop_desc);
1970 break;
1971 case trace_stop_reason_unknown:
1972 printf_filtered (_("Trace stopped for an unknown reason.\n"));
1973 break;
1974 default:
1975 printf_filtered (_("Trace stopped for some other reason (%d).\n"),
1976 ts->stop_reason);
1977 break;
1978 }
1979 }
1980
1981 if (ts->traceframes_created >= 0
1982 && ts->traceframe_count != ts->traceframes_created)
1983 {
1984 printf_filtered (_("Buffer contains %d trace "
1985 "frames (of %d created total).\n"),
1986 ts->traceframe_count, ts->traceframes_created);
1987 }
1988 else if (ts->traceframe_count >= 0)
1989 {
1990 printf_filtered (_("Collected %d trace frames.\n"),
1991 ts->traceframe_count);
1992 }
1993
1994 if (ts->buffer_free >= 0)
1995 {
1996 if (ts->buffer_size >= 0)
1997 {
1998 printf_filtered (_("Trace buffer has %d bytes of %d bytes free"),
1999 ts->buffer_free, ts->buffer_size);
2000 if (ts->buffer_size > 0)
2001 printf_filtered (_(" (%d%% full)"),
2002 ((int) ((((long long) (ts->buffer_size
2003 - ts->buffer_free)) * 100)
2004 / ts->buffer_size)));
2005 printf_filtered (_(".\n"));
2006 }
2007 else
2008 printf_filtered (_("Trace buffer has %d bytes free.\n"),
2009 ts->buffer_free);
2010 }
2011
2012 if (ts->disconnected_tracing)
2013 printf_filtered (_("Trace will continue if GDB disconnects.\n"));
2014 else
2015 printf_filtered (_("Trace will stop if GDB disconnects.\n"));
2016
2017 if (ts->circular_buffer)
2018 printf_filtered (_("Trace buffer is circular.\n"));
2019
2020 if (ts->user_name && strlen (ts->user_name) > 0)
2021 printf_filtered (_("Trace user is %s.\n"), ts->user_name);
2022
2023 if (ts->notes && strlen (ts->notes) > 0)
2024 printf_filtered (_("Trace notes: %s.\n"), ts->notes);
2025
2026 /* Now report on what we're doing with tfind. */
2027 if (traceframe_number >= 0)
2028 printf_filtered (_("Looking at trace frame %d, tracepoint %d.\n"),
2029 traceframe_number, tracepoint_number);
2030 else
2031 printf_filtered (_("Not looking at any trace frame.\n"));
2032
2033 /* Report start/stop times if supplied. */
2034 if (ts->start_time)
2035 {
2036 if (ts->stop_time)
2037 {
2038 LONGEST run_time = ts->stop_time - ts->start_time;
2039
2040 /* Reporting a run time is more readable than two long numbers. */
2041 printf_filtered (_("Trace started at %ld.%06ld secs, stopped %ld.%06ld secs later.\n"),
2042 (long int) ts->start_time / 1000000,
2043 (long int) ts->start_time % 1000000,
2044 (long int) run_time / 1000000,
2045 (long int) run_time % 1000000);
2046 }
2047 else
2048 printf_filtered (_("Trace started at %ld.%06ld secs.\n"),
2049 (long int) ts->start_time / 1000000,
2050 (long int) ts->start_time % 1000000);
2051 }
2052 else if (ts->stop_time)
2053 printf_filtered (_("Trace stopped at %ld.%06ld secs.\n"),
2054 (long int) ts->stop_time / 1000000,
2055 (long int) ts->stop_time % 1000000);
2056
2057 /* Now report any per-tracepoint status available. */
2058 tp_vec = all_tracepoints ();
2059
2060 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, t); ix++)
2061 target_get_tracepoint_status (t, NULL);
2062
2063 VEC_free (breakpoint_p, tp_vec);
2064}
2065
2066/* Report the trace status to uiout, in a way suitable for MI, and not
2067 suitable for CLI. If ON_STOP is true, suppress a few fields that
2068 are not meaningful in the -trace-stop response.
2069
2070 The implementation is essentially parallel to trace_status_command, but
2071 merging them will result in unreadable code. */
2072void
2073trace_status_mi (int on_stop)
2074{
2075 struct ui_out *uiout = current_uiout;
2076 struct trace_status *ts = current_trace_status ();
2077 int status;
2078
2079 status = target_get_trace_status (ts);
2080
2081 if (status == -1 && !ts->from_file)
2082 {
2083 ui_out_field_string (uiout, "supported", "0");
2084 return;
2085 }
2086
2087 if (ts->from_file)
2088 ui_out_field_string (uiout, "supported", "file");
2089 else if (!on_stop)
2090 ui_out_field_string (uiout, "supported", "1");
2091
2092 gdb_assert (ts->running_known);
2093
2094 if (ts->running)
2095 {
2096 ui_out_field_string (uiout, "running", "1");
2097
2098 /* Unlike CLI, do not show the state of 'disconnected-tracing' variable.
2099 Given that the frontend gets the status either on -trace-stop, or from
2100 -trace-status after re-connection, it does not seem like this
2101 information is necessary for anything. It is not necessary for either
2102 figuring the vital state of the target nor for navigation of trace
2103 frames. If the frontend wants to show the current state is some
2104 configure dialog, it can request the value when such dialog is
2105 invoked by the user. */
2106 }
2107 else
2108 {
2109 char *stop_reason = NULL;
2110 int stopping_tracepoint = -1;
2111
2112 if (!on_stop)
2113 ui_out_field_string (uiout, "running", "0");
2114
2115 if (ts->stop_reason != trace_stop_reason_unknown)
2116 {
2117 switch (ts->stop_reason)
2118 {
2119 case tstop_command:
2120 stop_reason = "request";
2121 break;
2122 case trace_buffer_full:
2123 stop_reason = "overflow";
2124 break;
2125 case trace_disconnected:
2126 stop_reason = "disconnection";
2127 break;
2128 case tracepoint_passcount:
2129 stop_reason = "passcount";
2130 stopping_tracepoint = ts->stopping_tracepoint;
2131 break;
2132 case tracepoint_error:
2133 stop_reason = "error";
2134 stopping_tracepoint = ts->stopping_tracepoint;
2135 break;
2136 }
2137
2138 if (stop_reason)
2139 {
2140 ui_out_field_string (uiout, "stop-reason", stop_reason);
2141 if (stopping_tracepoint != -1)
2142 ui_out_field_int (uiout, "stopping-tracepoint",
2143 stopping_tracepoint);
2144 if (ts->stop_reason == tracepoint_error)
2145 ui_out_field_string (uiout, "error-description",
2146 ts->stop_desc);
2147 }
2148 }
2149 }
2150
2151 if (ts->traceframe_count != -1)
2152 ui_out_field_int (uiout, "frames", ts->traceframe_count);
2153 if (ts->traceframes_created != -1)
2154 ui_out_field_int (uiout, "frames-created", ts->traceframes_created);
2155 if (ts->buffer_size != -1)
2156 ui_out_field_int (uiout, "buffer-size", ts->buffer_size);
2157 if (ts->buffer_free != -1)
2158 ui_out_field_int (uiout, "buffer-free", ts->buffer_free);
2159
2160 ui_out_field_int (uiout, "disconnected", ts->disconnected_tracing);
2161 ui_out_field_int (uiout, "circular", ts->circular_buffer);
2162
2163 ui_out_field_string (uiout, "user-name", ts->user_name);
2164 ui_out_field_string (uiout, "notes", ts->notes);
2165
2166 {
2167 char buf[100];
2168
2169 xsnprintf (buf, sizeof buf, "%ld.%06ld",
2170 (long int) ts->start_time / 1000000,
2171 (long int) ts->start_time % 1000000);
2172 ui_out_field_string (uiout, "start-time", buf);
2173 xsnprintf (buf, sizeof buf, "%ld.%06ld",
2174 (long int) ts->stop_time / 1000000,
2175 (long int) ts->stop_time % 1000000);
2176 ui_out_field_string (uiout, "stop-time", buf);
2177 }
2178}
2179
2180/* This function handles the details of what to do about an ongoing
2181 tracing run if the user has asked to detach or otherwise disconnect
2182 from the target. */
2183void
2184disconnect_tracing (int from_tty)
2185{
2186 /* It can happen that the target that was tracing went away on its
2187 own, and we didn't notice. Get a status update, and if the
2188 current target doesn't even do tracing, then assume it's not
2189 running anymore. */
2190 if (target_get_trace_status (current_trace_status ()) < 0)
2191 current_trace_status ()->running = 0;
2192
2193 /* If running interactively, give the user the option to cancel and
2194 then decide what to do differently with the run. Scripts are
2195 just going to disconnect and let the target deal with it,
2196 according to how it's been instructed previously via
2197 disconnected-tracing. */
2198 if (current_trace_status ()->running && from_tty)
2199 {
2200 process_tracepoint_on_disconnect ();
2201
2202 if (current_trace_status ()->disconnected_tracing)
2203 {
2204 if (!query (_("Trace is running and will "
2205 "continue after detach; detach anyway? ")))
2206 error (_("Not confirmed."));
2207 }
2208 else
2209 {
2210 if (!query (_("Trace is running but will "
2211 "stop on detach; detach anyway? ")))
2212 error (_("Not confirmed."));
2213 }
2214 }
2215
2216 /* Also we want to be out of tfind mode, otherwise things can get
2217 confusing upon reconnection. Just use these calls instead of
2218 full tfind_1 behavior because we're in the middle of detaching,
2219 and there's no point to updating current stack frame etc. */
2220 set_current_traceframe (-1);
2221 set_tracepoint_num (-1);
2222 set_traceframe_context (NULL);
2223}
2224
2225/* Worker function for the various flavors of the tfind command. */
2226void
2227tfind_1 (enum trace_find_type type, int num,
2228 ULONGEST addr1, ULONGEST addr2,
2229 int from_tty)
2230{
2231 int target_frameno = -1, target_tracept = -1;
2232 struct frame_id old_frame_id = null_frame_id;
2233 struct tracepoint *tp;
2234 struct ui_out *uiout = current_uiout;
2235
2236 /* Only try to get the current stack frame if we have a chance of
2237 succeeding. In particular, if we're trying to get a first trace
2238 frame while all threads are running, it's not going to succeed,
2239 so leave it with a default value and let the frame comparison
2240 below (correctly) decide to print out the source location of the
2241 trace frame. */
2242 if (!(type == tfind_number && num == -1)
2243 && (has_stack_frames () || traceframe_number >= 0))
2244 old_frame_id = get_frame_id (get_current_frame ());
2245
2246 target_frameno = target_trace_find (type, num, addr1, addr2,
2247 &target_tracept);
2248
2249 if (type == tfind_number
2250 && num == -1
2251 && target_frameno == -1)
2252 {
2253 /* We told the target to get out of tfind mode, and it did. */
2254 }
2255 else if (target_frameno == -1)
2256 {
2257 /* A request for a non-existent trace frame has failed.
2258 Our response will be different, depending on FROM_TTY:
2259
2260 If FROM_TTY is true, meaning that this command was
2261 typed interactively by the user, then give an error
2262 and DO NOT change the state of traceframe_number etc.
2263
2264 However if FROM_TTY is false, meaning that we're either
2265 in a script, a loop, or a user-defined command, then
2266 DON'T give an error, but DO change the state of
2267 traceframe_number etc. to invalid.
2268
2269 The rationalle is that if you typed the command, you
2270 might just have committed a typo or something, and you'd
2271 like to NOT lose your current debugging state. However
2272 if you're in a user-defined command or especially in a
2273 loop, then you need a way to detect that the command
2274 failed WITHOUT aborting. This allows you to write
2275 scripts that search thru the trace buffer until the end,
2276 and then continue on to do something else. */
2277
2278 if (from_tty)
2279 error (_("Target failed to find requested trace frame."));
2280 else
2281 {
2282 if (info_verbose)
2283 printf_filtered ("End of trace buffer.\n");
2284#if 0 /* dubious now? */
2285 /* The following will not recurse, since it's
2286 special-cased. */
2287 trace_find_command ("-1", from_tty);
2288#endif
2289 }
2290 }
2291
2292 tp = get_tracepoint_by_number_on_target (target_tracept);
2293
2294 reinit_frame_cache ();
2295 target_dcache_invalidate ();
2296
2297 set_tracepoint_num (tp ? tp->base.number : target_tracept);
2298
2299 if (target_frameno != get_traceframe_number ())
2300 observer_notify_traceframe_changed (target_frameno, tracepoint_number);
2301
2302 set_current_traceframe (target_frameno);
2303
2304 if (target_frameno == -1)
2305 set_traceframe_context (NULL);
2306 else
2307 set_traceframe_context (get_current_frame ());
2308
2309 if (traceframe_number >= 0)
2310 {
2311 /* Use different branches for MI and CLI to make CLI messages
2312 i18n-eable. */
2313 if (ui_out_is_mi_like_p (uiout))
2314 {
2315 ui_out_field_string (uiout, "found", "1");
2316 ui_out_field_int (uiout, "tracepoint", tracepoint_number);
2317 ui_out_field_int (uiout, "traceframe", traceframe_number);
2318 }
2319 else
2320 {
2321 printf_unfiltered (_("Found trace frame %d, tracepoint %d\n"),
2322 traceframe_number, tracepoint_number);
2323 }
2324 }
2325 else
2326 {
2327 if (ui_out_is_mi_like_p (uiout))
2328 ui_out_field_string (uiout, "found", "0");
2329 else if (type == tfind_number && num == -1)
2330 printf_unfiltered (_("No longer looking at any trace frame\n"));
2331 else /* This case may never occur, check. */
2332 printf_unfiltered (_("No trace frame found\n"));
2333 }
2334
2335 /* If we're in nonstop mode and getting out of looking at trace
2336 frames, there won't be any current frame to go back to and
2337 display. */
2338 if (from_tty
2339 && (has_stack_frames () || traceframe_number >= 0))
2340 {
2341 enum print_what print_what;
2342
2343 /* NOTE: in imitation of the step command, try to determine
2344 whether we have made a transition from one function to
2345 another. If so, we'll print the "stack frame" (ie. the new
2346 function and it's arguments) -- otherwise we'll just show the
2347 new source line. */
2348
2349 if (frame_id_eq (old_frame_id,
2350 get_frame_id (get_current_frame ())))
2351 print_what = SRC_LINE;
2352 else
2353 print_what = SRC_AND_LOC;
2354
2355 print_stack_frame (get_selected_frame (NULL), 1, print_what);
2356 do_displays ();
2357 }
2358}
2359
2360/* trace_find_command takes a trace frame number n,
2361 sends "QTFrame:<n>" to the target,
2362 and accepts a reply that may contain several optional pieces
2363 of information: a frame number, a tracepoint number, and an
2364 indication of whether this is a trap frame or a stepping frame.
2365
2366 The minimal response is just "OK" (which indicates that the
2367 target does not give us a frame number or a tracepoint number).
2368 Instead of that, the target may send us a string containing
2369 any combination of:
2370 F<hexnum> (gives the selected frame number)
2371 T<hexnum> (gives the selected tracepoint number)
2372 */
2373
2374/* tfind command */
2375static void
2376trace_find_command (char *args, int from_tty)
2377{ /* This should only be called with a numeric argument. */
2378 int frameno = -1;
2379
2380 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2381 error (_("May not look at trace frames while trace is running."));
2382
2383 if (args == 0 || *args == 0)
2384 { /* TFIND with no args means find NEXT trace frame. */
2385 if (traceframe_number == -1)
2386 frameno = 0; /* "next" is first one. */
2387 else
2388 frameno = traceframe_number + 1;
2389 }
2390 else if (0 == strcmp (args, "-"))
2391 {
2392 if (traceframe_number == -1)
2393 error (_("not debugging trace buffer"));
2394 else if (from_tty && traceframe_number == 0)
2395 error (_("already at start of trace buffer"));
2396
2397 frameno = traceframe_number - 1;
2398 }
2399 /* A hack to work around eval's need for fp to have been collected. */
2400 else if (0 == strcmp (args, "-1"))
2401 frameno = -1;
2402 else
2403 frameno = parse_and_eval_long (args);
2404
2405 if (frameno < -1)
2406 error (_("invalid input (%d is less than zero)"), frameno);
2407
2408 tfind_1 (tfind_number, frameno, 0, 0, from_tty);
2409}
2410
2411/* tfind end */
2412static void
2413trace_find_end_command (char *args, int from_tty)
2414{
2415 trace_find_command ("-1", from_tty);
2416}
2417
2418/* tfind start */
2419static void
2420trace_find_start_command (char *args, int from_tty)
2421{
2422 trace_find_command ("0", from_tty);
2423}
2424
2425/* tfind pc command */
2426static void
2427trace_find_pc_command (char *args, int from_tty)
2428{
2429 CORE_ADDR pc;
2430
2431 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2432 error (_("May not look at trace frames while trace is running."));
2433
2434 if (args == 0 || *args == 0)
2435 pc = regcache_read_pc (get_current_regcache ());
2436 else
2437 pc = parse_and_eval_address (args);
2438
2439 tfind_1 (tfind_pc, 0, pc, 0, from_tty);
2440}
2441
2442/* tfind tracepoint command */
2443static void
2444trace_find_tracepoint_command (char *args, int from_tty)
2445{
2446 int tdp;
2447 struct tracepoint *tp;
2448
2449 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2450 error (_("May not look at trace frames while trace is running."));
2451
2452 if (args == 0 || *args == 0)
2453 {
2454 if (tracepoint_number == -1)
2455 error (_("No current tracepoint -- please supply an argument."));
2456 else
2457 tdp = tracepoint_number; /* Default is current TDP. */
2458 }
2459 else
2460 tdp = parse_and_eval_long (args);
2461
2462 /* If we have the tracepoint on hand, use the number that the
2463 target knows about (which may be different if we disconnected
2464 and reconnected). */
2465 tp = get_tracepoint (tdp);
2466 if (tp)
2467 tdp = tp->number_on_target;
2468
2469 tfind_1 (tfind_tp, tdp, 0, 0, from_tty);
2470}
2471
2472/* TFIND LINE command:
2473
2474 This command will take a sourceline for argument, just like BREAK
2475 or TRACE (ie. anything that "decode_line_1" can handle).
2476
2477 With no argument, this command will find the next trace frame
2478 corresponding to a source line OTHER THAN THE CURRENT ONE. */
2479
2480static void
2481trace_find_line_command (char *args, int from_tty)
2482{
2483 static CORE_ADDR start_pc, end_pc;
2484 struct symtabs_and_lines sals;
2485 struct symtab_and_line sal;
2486 struct cleanup *old_chain;
2487
2488 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2489 error (_("May not look at trace frames while trace is running."));
2490
2491 if (args == 0 || *args == 0)
2492 {
2493 sal = find_pc_line (get_frame_pc (get_current_frame ()), 0);
2494 sals.nelts = 1;
2495 sals.sals = (struct symtab_and_line *)
2496 xmalloc (sizeof (struct symtab_and_line));
2497 sals.sals[0] = sal;
2498 }
2499 else
2500 {
2501 sals = decode_line_with_current_source (args, DECODE_LINE_FUNFIRSTLINE);
2502 sal = sals.sals[0];
2503 }
2504
2505 old_chain = make_cleanup (xfree, sals.sals);
2506 if (sal.symtab == 0)
2507 error (_("No line number information available."));
2508
2509 if (sal.line > 0 && find_line_pc_range (sal, &start_pc, &end_pc))
2510 {
2511 if (start_pc == end_pc)
2512 {
2513 printf_filtered ("Line %d of \"%s\"",
2514 sal.line, sal.symtab->filename);
2515 wrap_here (" ");
2516 printf_filtered (" is at address ");
2517 print_address (get_current_arch (), start_pc, gdb_stdout);
2518 wrap_here (" ");
2519 printf_filtered (" but contains no code.\n");
2520 sal = find_pc_line (start_pc, 0);
2521 if (sal.line > 0
2522 && find_line_pc_range (sal, &start_pc, &end_pc)
2523 && start_pc != end_pc)
2524 printf_filtered ("Attempting to find line %d instead.\n",
2525 sal.line);
2526 else
2527 error (_("Cannot find a good line."));
2528 }
2529 }
2530 else
2531 /* Is there any case in which we get here, and have an address
2532 which the user would want to see? If we have debugging
2533 symbols and no line numbers? */
2534 error (_("Line number %d is out of range for \"%s\"."),
2535 sal.line, sal.symtab->filename);
2536
2537 /* Find within range of stated line. */
2538 if (args && *args)
2539 tfind_1 (tfind_range, 0, start_pc, end_pc - 1, from_tty);
2540 else
2541 tfind_1 (tfind_outside, 0, start_pc, end_pc - 1, from_tty);
2542 do_cleanups (old_chain);
2543}
2544
2545/* tfind range command */
2546static void
2547trace_find_range_command (char *args, int from_tty)
2548{
2549 static CORE_ADDR start, stop;
2550 char *tmp;
2551
2552 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2553 error (_("May not look at trace frames while trace is running."));
2554
2555 if (args == 0 || *args == 0)
2556 { /* XXX FIXME: what should default behavior be? */
2557 printf_filtered ("Usage: tfind range <startaddr>,<endaddr>\n");
2558 return;
2559 }
2560
2561 if (0 != (tmp = strchr (args, ',')))
2562 {
2563 *tmp++ = '\0'; /* Terminate start address. */
2564 while (isspace ((int) *tmp))
2565 tmp++;
2566 start = parse_and_eval_address (args);
2567 stop = parse_and_eval_address (tmp);
2568 }
2569 else
2570 { /* No explicit end address? */
2571 start = parse_and_eval_address (args);
2572 stop = start + 1; /* ??? */
2573 }
2574
2575 tfind_1 (tfind_range, 0, start, stop, from_tty);
2576}
2577
2578/* tfind outside command */
2579static void
2580trace_find_outside_command (char *args, int from_tty)
2581{
2582 CORE_ADDR start, stop;
2583 char *tmp;
2584
2585 if (current_trace_status ()->running && !current_trace_status ()->from_file)
2586 error (_("May not look at trace frames while trace is running."));
2587
2588 if (args == 0 || *args == 0)
2589 { /* XXX FIXME: what should default behavior be? */
2590 printf_filtered ("Usage: tfind outside <startaddr>,<endaddr>\n");
2591 return;
2592 }
2593
2594 if (0 != (tmp = strchr (args, ',')))
2595 {
2596 *tmp++ = '\0'; /* Terminate start address. */
2597 while (isspace ((int) *tmp))
2598 tmp++;
2599 start = parse_and_eval_address (args);
2600 stop = parse_and_eval_address (tmp);
2601 }
2602 else
2603 { /* No explicit end address? */
2604 start = parse_and_eval_address (args);
2605 stop = start + 1; /* ??? */
2606 }
2607
2608 tfind_1 (tfind_outside, 0, start, stop, from_tty);
2609}
2610
2611/* info scope command: list the locals for a scope. */
2612static void
2613scope_info (char *args, int from_tty)
2614{
2615 struct symtabs_and_lines sals;
2616 struct symbol *sym;
2617 struct minimal_symbol *msym;
2618 struct block *block;
2619 const char *symname;
2620 char *save_args = args;
2621 struct block_iterator iter;
2622 int j, count = 0;
2623 struct gdbarch *gdbarch;
2624 int regno;
2625
2626 if (args == 0 || *args == 0)
2627 error (_("requires an argument (function, "
2628 "line or *addr) to define a scope"));
2629
2630 sals = decode_line_1 (&args, DECODE_LINE_FUNFIRSTLINE, NULL, 0);
2631 if (sals.nelts == 0)
2632 return; /* Presumably decode_line_1 has already warned. */
2633
2634 /* Resolve line numbers to PC. */
2635 resolve_sal_pc (&sals.sals[0]);
2636 block = block_for_pc (sals.sals[0].pc);
2637
2638 while (block != 0)
2639 {
2640 QUIT; /* Allow user to bail out with ^C. */
2641 ALL_BLOCK_SYMBOLS (block, iter, sym)
2642 {
2643 QUIT; /* Allow user to bail out with ^C. */
2644 if (count == 0)
2645 printf_filtered ("Scope for %s:\n", save_args);
2646 count++;
2647
2648 symname = SYMBOL_PRINT_NAME (sym);
2649 if (symname == NULL || *symname == '\0')
2650 continue; /* Probably botched, certainly useless. */
2651
2652 gdbarch = get_objfile_arch (SYMBOL_SYMTAB (sym)->objfile);
2653
2654 printf_filtered ("Symbol %s is ", symname);
2655 switch (SYMBOL_CLASS (sym))
2656 {
2657 default:
2658 case LOC_UNDEF: /* Messed up symbol? */
2659 printf_filtered ("a bogus symbol, class %d.\n",
2660 SYMBOL_CLASS (sym));
2661 count--; /* Don't count this one. */
2662 continue;
2663 case LOC_CONST:
2664 printf_filtered ("a constant with value %s (%s)",
2665 plongest (SYMBOL_VALUE (sym)),
2666 hex_string (SYMBOL_VALUE (sym)));
2667 break;
2668 case LOC_CONST_BYTES:
2669 printf_filtered ("constant bytes: ");
2670 if (SYMBOL_TYPE (sym))
2671 for (j = 0; j < TYPE_LENGTH (SYMBOL_TYPE (sym)); j++)
2672 fprintf_filtered (gdb_stdout, " %02x",
2673 (unsigned) SYMBOL_VALUE_BYTES (sym)[j]);
2674 break;
2675 case LOC_STATIC:
2676 printf_filtered ("in static storage at address ");
2677 printf_filtered ("%s", paddress (gdbarch,
2678 SYMBOL_VALUE_ADDRESS (sym)));
2679 break;
2680 case LOC_REGISTER:
2681 /* GDBARCH is the architecture associated with the objfile
2682 the symbol is defined in; the target architecture may be
2683 different, and may provide additional registers. However,
2684 we do not know the target architecture at this point.
2685 We assume the objfile architecture will contain all the
2686 standard registers that occur in debug info in that
2687 objfile. */
2688 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym,
2689 gdbarch);
2690
2691 if (SYMBOL_IS_ARGUMENT (sym))
2692 printf_filtered ("an argument in register $%s",
2693 gdbarch_register_name (gdbarch, regno));
2694 else
2695 printf_filtered ("a local variable in register $%s",
2696 gdbarch_register_name (gdbarch, regno));
2697 break;
2698 case LOC_ARG:
2699 printf_filtered ("an argument at stack/frame offset %s",
2700 plongest (SYMBOL_VALUE (sym)));
2701 break;
2702 case LOC_LOCAL:
2703 printf_filtered ("a local variable at frame offset %s",
2704 plongest (SYMBOL_VALUE (sym)));
2705 break;
2706 case LOC_REF_ARG:
2707 printf_filtered ("a reference argument at offset %s",
2708 plongest (SYMBOL_VALUE (sym)));
2709 break;
2710 case LOC_REGPARM_ADDR:
2711 /* Note comment at LOC_REGISTER. */
2712 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym,
2713 gdbarch);
2714 printf_filtered ("the address of an argument, in register $%s",
2715 gdbarch_register_name (gdbarch, regno));
2716 break;
2717 case LOC_TYPEDEF:
2718 printf_filtered ("a typedef.\n");
2719 continue;
2720 case LOC_LABEL:
2721 printf_filtered ("a label at address ");
2722 printf_filtered ("%s", paddress (gdbarch,
2723 SYMBOL_VALUE_ADDRESS (sym)));
2724 break;
2725 case LOC_BLOCK:
2726 printf_filtered ("a function at address ");
2727 printf_filtered ("%s",
2728 paddress (gdbarch, BLOCK_START (SYMBOL_BLOCK_VALUE (sym))));
2729 break;
2730 case LOC_UNRESOLVED:
2731 msym = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (sym),
2732 NULL, NULL);
2733 if (msym == NULL)
2734 printf_filtered ("Unresolved Static");
2735 else
2736 {
2737 printf_filtered ("static storage at address ");
2738 printf_filtered ("%s",
2739 paddress (gdbarch, SYMBOL_VALUE_ADDRESS (msym)));
2740 }
2741 break;
2742 case LOC_OPTIMIZED_OUT:
2743 printf_filtered ("optimized out.\n");
2744 continue;
2745 case LOC_COMPUTED:
2746 SYMBOL_COMPUTED_OPS (sym)->describe_location (sym,
2747 BLOCK_START (block),
2748 gdb_stdout);
2749 break;
2750 }
2751 if (SYMBOL_TYPE (sym))
2752 printf_filtered (", length %d.\n",
2753 TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym))));
2754 }
2755 if (BLOCK_FUNCTION (block))
2756 break;
2757 else
2758 block = BLOCK_SUPERBLOCK (block);
2759 }
2760 if (count <= 0)
2761 printf_filtered ("Scope for %s contains no locals or arguments.\n",
2762 save_args);
2763}
2764
2765/* worker function (cleanup) */
2766static void
2767replace_comma (void *data)
2768{
2769 char *comma = data;
2770 *comma = ',';
2771}
2772
2773
2774/* Helper for trace_dump_command. Dump the action list starting at
2775 ACTION. STEPPING_ACTIONS is true if we're iterating over the
2776 actions of the body of a while-stepping action. STEPPING_FRAME is
2777 set if the current traceframe was determined to be a while-stepping
2778 traceframe. */
2779
2780static void
2781trace_dump_actions (struct command_line *action,
2782 int stepping_actions, int stepping_frame,
2783 int from_tty)
2784{
2785 char *action_exp, *next_comma;
2786
2787 for (; action != NULL; action = action->next)
2788 {
2789 struct cmd_list_element *cmd;
2790
2791 QUIT; /* Allow user to bail out with ^C. */
2792 action_exp = action->line;
2793 while (isspace ((int) *action_exp))
2794 action_exp++;
2795
2796 /* The collection actions to be done while stepping are
2797 bracketed by the commands "while-stepping" and "end". */
2798
2799 if (*action_exp == '#') /* comment line */
2800 continue;
2801
2802 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
2803 if (cmd == 0)
2804 error (_("Bad action list item: %s"), action_exp);
2805
2806 if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand))
2807 {
2808 int i;
2809
2810 for (i = 0; i < action->body_count; ++i)
2811 trace_dump_actions (action->body_list[i],
2812 1, stepping_frame, from_tty);
2813 }
2814 else if (cmd_cfunc_eq (cmd, collect_pseudocommand))
2815 {
2816 /* Display the collected data.
2817 For the trap frame, display only what was collected at
2818 the trap. Likewise for stepping frames, display only
2819 what was collected while stepping. This means that the
2820 two boolean variables, STEPPING_FRAME and
2821 STEPPING_ACTIONS should be equal. */
2822 if (stepping_frame == stepping_actions)
2823 {
2824 if (*action_exp == '/')
2825 action_exp = decode_agent_options (action_exp);
2826
2827 do
2828 { /* Repeat over a comma-separated list. */
2829 QUIT; /* Allow user to bail out with ^C. */
2830 if (*action_exp == ',')
2831 action_exp++;
2832 while (isspace ((int) *action_exp))
2833 action_exp++;
2834
2835 next_comma = strchr (action_exp, ',');
2836
2837 if (0 == strncasecmp (action_exp, "$reg", 4))
2838 registers_info (NULL, from_tty);
2839 else if (0 == strncasecmp (action_exp, "$_ret", 5))
2840 ;
2841 else if (0 == strncasecmp (action_exp, "$loc", 4))
2842 locals_info (NULL, from_tty);
2843 else if (0 == strncasecmp (action_exp, "$arg", 4))
2844 args_info (NULL, from_tty);
2845 else
2846 { /* variable */
2847 if (next_comma)
2848 {
2849 make_cleanup (replace_comma, next_comma);
2850 *next_comma = '\0';
2851 }
2852 printf_filtered ("%s = ", action_exp);
2853 output_command (action_exp, from_tty);
2854 printf_filtered ("\n");
2855 }
2856 if (next_comma)
2857 *next_comma = ',';
2858 action_exp = next_comma;
2859 }
2860 while (action_exp && *action_exp == ',');
2861 }
2862 }
2863 }
2864}
2865
2866/* The tdump command. */
2867
2868static void
2869trace_dump_command (char *args, int from_tty)
2870{
2871 struct regcache *regcache;
2872 struct tracepoint *t;
2873 int stepping_frame = 0;
2874 struct bp_location *loc;
2875 char *line, *default_collect_line = NULL;
2876 struct command_line *actions, *default_collect_action = NULL;
2877 struct cleanup *old_chain = NULL;
2878
2879 if (tracepoint_number == -1)
2880 {
2881 warning (_("No current trace frame."));
2882 return;
2883 }
2884
2885 t = get_tracepoint (tracepoint_number);
2886
2887 if (t == NULL)
2888 error (_("No known tracepoint matches 'current' tracepoint #%d."),
2889 tracepoint_number);
2890
2891 printf_filtered ("Data collected at tracepoint %d, trace frame %d:\n",
2892 tracepoint_number, traceframe_number);
2893
2894 /* The current frame is a trap frame if the frame PC is equal
2895 to the tracepoint PC. If not, then the current frame was
2896 collected during single-stepping. */
2897
2898 regcache = get_current_regcache ();
2899
2900 /* If the traceframe's address matches any of the tracepoint's
2901 locations, assume it is a direct hit rather than a while-stepping
2902 frame. (FIXME this is not reliable, should record each frame's
2903 type.) */
2904 stepping_frame = 1;
2905 for (loc = t->base.loc; loc; loc = loc->next)
2906 if (loc->address == regcache_read_pc (regcache))
2907 stepping_frame = 0;
2908
2909 actions = breakpoint_commands (&t->base);
2910
2911 /* If there is a default-collect list, make up a collect command,
2912 prepend to the tracepoint's commands, and pass the whole mess to
2913 the trace dump scanner. We need to validate because
2914 default-collect might have been junked since the trace run. */
2915 if (*default_collect)
2916 {
2917 default_collect_line = xstrprintf ("collect %s", default_collect);
2918 old_chain = make_cleanup (xfree, default_collect_line);
2919 line = default_collect_line;
2920 validate_actionline (&line, &t->base);
2921 default_collect_action = xmalloc (sizeof (struct command_line));
2922 make_cleanup (xfree, default_collect_action);
2923 default_collect_action->next = actions;
2924 default_collect_action->line = line;
2925 actions = default_collect_action;
2926 }
2927
2928 trace_dump_actions (actions, 0, stepping_frame, from_tty);
2929
2930 if (*default_collect)
2931 do_cleanups (old_chain);
2932}
2933
2934/* Encode a piece of a tracepoint's source-level definition in a form
2935 that is suitable for both protocol and saving in files. */
2936/* This version does not do multiple encodes for long strings; it should
2937 return an offset to the next piece to encode. FIXME */
2938
2939extern int
2940encode_source_string (int tpnum, ULONGEST addr,
2941 char *srctype, char *src, char *buf, int buf_size)
2942{
2943 if (80 + strlen (srctype) > buf_size)
2944 error (_("Buffer too small for source encoding"));
2945 sprintf (buf, "%x:%s:%s:%x:%x:",
2946 tpnum, phex_nz (addr, sizeof (addr)),
2947 srctype, 0, (int) strlen (src));
2948 if (strlen (buf) + strlen (src) * 2 >= buf_size)
2949 error (_("Source string too long for buffer"));
2950 bin2hex (src, buf + strlen (buf), 0);
2951 return -1;
2952}
2953
2954extern int trace_regblock_size;
2955
2956/* Save tracepoint data to file named FILENAME. If TARGET_DOES_SAVE is
2957 non-zero, the save is performed on the target, otherwise GDB obtains all
2958 trace data and saves it locally. */
2959
2960void
2961trace_save (const char *filename, int target_does_save)
2962{
2963 struct cleanup *cleanup;
2964 char *pathname;
2965 struct trace_status *ts = current_trace_status ();
2966 int err, status;
2967 FILE *fp;
2968 struct uploaded_tp *uploaded_tps = NULL, *utp;
2969 struct uploaded_tsv *uploaded_tsvs = NULL, *utsv;
2970 int a;
2971 char *act;
2972 LONGEST gotten = 0;
2973 ULONGEST offset = 0;
2974#define MAX_TRACE_UPLOAD 2000
2975 gdb_byte buf[MAX_TRACE_UPLOAD];
2976 int written;
2977
2978 /* If the target is to save the data to a file on its own, then just
2979 send the command and be done with it. */
2980 if (target_does_save)
2981 {
2982 err = target_save_trace_data (filename);
2983 if (err < 0)
2984 error (_("Target failed to save trace data to '%s'."),
2985 filename);
2986 return;
2987 }
2988
2989 /* Get the trace status first before opening the file, so if the
2990 target is losing, we can get out without touching files. */
2991 status = target_get_trace_status (ts);
2992
2993 pathname = tilde_expand (filename);
2994 cleanup = make_cleanup (xfree, pathname);
2995
2996 fp = fopen (pathname, "wb");
2997 if (!fp)
2998 error (_("Unable to open file '%s' for saving trace data (%s)"),
2999 filename, safe_strerror (errno));
3000 make_cleanup_fclose (fp);
3001
3002 /* Write a file header, with a high-bit-set char to indicate a
3003 binary file, plus a hint as what this file is, and a version
3004 number in case of future needs. */
3005 written = fwrite ("\x7fTRACE0\n", 8, 1, fp);
3006 if (written < 1)
3007 perror_with_name (pathname);
3008
3009 /* Write descriptive info. */
3010
3011 /* Write out the size of a register block. */
3012 fprintf (fp, "R %x\n", trace_regblock_size);
3013
3014 /* Write out status of the tracing run (aka "tstatus" info). */
3015 fprintf (fp, "status %c;%s",
3016 (ts->running ? '1' : '0'), stop_reason_names[ts->stop_reason]);
3017 if (ts->stop_reason == tracepoint_error)
3018 {
3019 char *buf = (char *) alloca (strlen (ts->stop_desc) * 2 + 1);
3020
3021 bin2hex ((gdb_byte *) ts->stop_desc, buf, 0);
3022 fprintf (fp, ":%s", buf);
3023 }
3024 fprintf (fp, ":%x", ts->stopping_tracepoint);
3025 if (ts->traceframe_count >= 0)
3026 fprintf (fp, ";tframes:%x", ts->traceframe_count);
3027 if (ts->traceframes_created >= 0)
3028 fprintf (fp, ";tcreated:%x", ts->traceframes_created);
3029 if (ts->buffer_free >= 0)
3030 fprintf (fp, ";tfree:%x", ts->buffer_free);
3031 if (ts->buffer_size >= 0)
3032 fprintf (fp, ";tsize:%x", ts->buffer_size);
3033 if (ts->disconnected_tracing)
3034 fprintf (fp, ";disconn:%x", ts->disconnected_tracing);
3035 if (ts->circular_buffer)
3036 fprintf (fp, ";circular:%x", ts->circular_buffer);
3037 fprintf (fp, "\n");
3038
3039 /* Note that we want to upload tracepoints and save those, rather
3040 than simply writing out the local ones, because the user may have
3041 changed tracepoints in GDB in preparation for a future tracing
3042 run, or maybe just mass-deleted all types of breakpoints as part
3043 of cleaning up. So as not to contaminate the session, leave the
3044 data in its uploaded form, don't make into real tracepoints. */
3045
3046 /* Get trace state variables first, they may be checked when parsing
3047 uploaded commands. */
3048
3049 target_upload_trace_state_variables (&uploaded_tsvs);
3050
3051 for (utsv = uploaded_tsvs; utsv; utsv = utsv->next)
3052 {
3053 char *buf = "";
3054
3055 if (utsv->name)
3056 {
3057 buf = (char *) xmalloc (strlen (utsv->name) * 2 + 1);
3058 bin2hex ((gdb_byte *) (utsv->name), buf, 0);
3059 }
3060
3061 fprintf (fp, "tsv %x:%s:%x:%s\n",
3062 utsv->number, phex_nz (utsv->initial_value, 8),
3063 utsv->builtin, buf);
3064
3065 if (utsv->name)
3066 xfree (buf);
3067 }
3068
3069 free_uploaded_tsvs (&uploaded_tsvs);
3070
3071 target_upload_tracepoints (&uploaded_tps);
3072
3073 for (utp = uploaded_tps; utp; utp = utp->next)
3074 target_get_tracepoint_status (NULL, utp);
3075
3076 for (utp = uploaded_tps; utp; utp = utp->next)
3077 {
3078 fprintf (fp, "tp T%x:%s:%c:%x:%x",
3079 utp->number, phex_nz (utp->addr, sizeof (utp->addr)),
3080 (utp->enabled ? 'E' : 'D'), utp->step, utp->pass);
3081 if (utp->type == bp_fast_tracepoint)
3082 fprintf (fp, ":F%x", utp->orig_size);
3083 if (utp->cond)
3084 fprintf (fp, ":X%x,%s", (unsigned int) strlen (utp->cond) / 2,
3085 utp->cond);
3086 fprintf (fp, "\n");
3087 for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a)
3088 fprintf (fp, "tp A%x:%s:%s\n",
3089 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
3090 for (a = 0; VEC_iterate (char_ptr, utp->step_actions, a, act); ++a)
3091 fprintf (fp, "tp S%x:%s:%s\n",
3092 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
3093 if (utp->at_string)
3094 {
3095 encode_source_string (utp->number, utp->addr,
3096 "at", utp->at_string, buf, MAX_TRACE_UPLOAD);
3097 fprintf (fp, "tp Z%s\n", buf);
3098 }
3099 if (utp->cond_string)
3100 {
3101 encode_source_string (utp->number, utp->addr,
3102 "cond", utp->cond_string,
3103 buf, MAX_TRACE_UPLOAD);
3104 fprintf (fp, "tp Z%s\n", buf);
3105 }
3106 for (a = 0; VEC_iterate (char_ptr, utp->cmd_strings, a, act); ++a)
3107 {
3108 encode_source_string (utp->number, utp->addr, "cmd", act,
3109 buf, MAX_TRACE_UPLOAD);
3110 fprintf (fp, "tp Z%s\n", buf);
3111 }
3112 fprintf (fp, "tp V%x:%s:%x:%s\n",
3113 utp->number, phex_nz (utp->addr, sizeof (utp->addr)),
3114 utp->hit_count,
3115 phex_nz (utp->traceframe_usage,
3116 sizeof (utp->traceframe_usage)));
3117 }
3118
3119 free_uploaded_tps (&uploaded_tps);
3120
3121 /* Mark the end of the definition section. */
3122 fprintf (fp, "\n");
3123
3124 /* Get and write the trace data proper. We ask for big blocks, in
3125 the hopes of efficiency, but will take less if the target has
3126 packet size limitations or some such. */
3127 while (1)
3128 {
3129 gotten = target_get_raw_trace_data (buf, offset, MAX_TRACE_UPLOAD);
3130 if (gotten < 0)
3131 error (_("Failure to get requested trace buffer data"));
3132 /* No more data is forthcoming, we're done. */
3133 if (gotten == 0)
3134 break;
3135 written = fwrite (buf, gotten, 1, fp);
3136 if (written < 1)
3137 perror_with_name (pathname);
3138 offset += gotten;
3139 }
3140
3141 /* Mark the end of trace data. (We know that gotten is 0 at this point.) */
3142 written = fwrite (&gotten, 4, 1, fp);
3143 if (written < 1)
3144 perror_with_name (pathname);
3145
3146 do_cleanups (cleanup);
3147}
3148
3149static void
3150trace_save_command (char *args, int from_tty)
3151{
3152 int target_does_save = 0;
3153 char **argv;
3154 char *filename = NULL;
3155 struct cleanup *back_to;
3156
3157 if (args == NULL)
3158 error_no_arg (_("file in which to save trace data"));
3159
3160 argv = gdb_buildargv (args);
3161 back_to = make_cleanup_freeargv (argv);
3162
3163 for (; *argv; ++argv)
3164 {
3165 if (strcmp (*argv, "-r") == 0)
3166 target_does_save = 1;
3167 else if (**argv == '-')
3168 error (_("unknown option `%s'"), *argv);
3169 else
3170 filename = *argv;
3171 }
3172
3173 if (!filename)
3174 error_no_arg (_("file in which to save trace data"));
3175
3176 trace_save (filename, target_does_save);
3177
3178 if (from_tty)
3179 printf_filtered (_("Trace data saved to file '%s'.\n"), filename);
3180
3181 do_cleanups (back_to);
3182}
3183
3184/* Tell the target what to do with an ongoing tracing run if GDB
3185 disconnects for some reason. */
3186
3187static void
3188set_disconnected_tracing (char *args, int from_tty,
3189 struct cmd_list_element *c)
3190{
3191 target_set_disconnected_tracing (disconnected_tracing);
3192}
3193
3194static void
3195set_circular_trace_buffer (char *args, int from_tty,
3196 struct cmd_list_element *c)
3197{
3198 target_set_circular_trace_buffer (circular_trace_buffer);
3199}
3200
3201static void
3202set_trace_user (char *args, int from_tty,
3203 struct cmd_list_element *c)
3204{
3205 int ret;
3206
3207 ret = target_set_trace_notes (trace_user, NULL, NULL);
3208
3209 if (!ret)
3210 warning (_("Target does not support trace notes, user ignored"));
3211}
3212
3213static void
3214set_trace_notes (char *args, int from_tty,
3215 struct cmd_list_element *c)
3216{
3217 int ret;
3218
3219 ret = target_set_trace_notes (NULL, trace_notes, NULL);
3220
3221 if (!ret)
3222 warning (_("Target does not support trace notes, note ignored"));
3223}
3224
3225static void
3226set_trace_stop_notes (char *args, int from_tty,
3227 struct cmd_list_element *c)
3228{
3229 int ret;
3230
3231 ret = target_set_trace_notes (NULL, NULL, trace_stop_notes);
3232
3233 if (!ret)
3234 warning (_("Target does not support trace notes, stop note ignored"));
3235}
3236
3237/* Convert the memory pointed to by mem into hex, placing result in buf.
3238 * Return a pointer to the last char put in buf (null)
3239 * "stolen" from sparc-stub.c
3240 */
3241
3242static const char hexchars[] = "0123456789abcdef";
3243
3244static char *
3245mem2hex (gdb_byte *mem, char *buf, int count)
3246{
3247 gdb_byte ch;
3248
3249 while (count-- > 0)
3250 {
3251 ch = *mem++;
3252
3253 *buf++ = hexchars[ch >> 4];
3254 *buf++ = hexchars[ch & 0xf];
3255 }
3256
3257 *buf = 0;
3258
3259 return buf;
3260}
3261
3262int
3263get_traceframe_number (void)
3264{
3265 return traceframe_number;
3266}
3267
3268/* Make the traceframe NUM be the current trace frame. Does nothing
3269 if NUM is already current. */
3270
3271void
3272set_current_traceframe (int num)
3273{
3274 int newnum;
3275
3276 if (traceframe_number == num)
3277 {
3278 /* Nothing to do. */
3279 return;
3280 }
3281
3282 newnum = target_trace_find (tfind_number, num, 0, 0, NULL);
3283
3284 if (newnum != num)
3285 warning (_("could not change traceframe"));
3286
3287 set_traceframe_num (newnum);
3288
3289 /* Changing the traceframe changes our view of registers and of the
3290 frame chain. */
3291 registers_changed ();
3292
3293 clear_traceframe_info ();
3294}
3295
3296/* Make the traceframe NUM be the current trace frame, and do nothing
3297 more. */
3298
3299void
3300set_traceframe_number (int num)
3301{
3302 traceframe_number = num;
3303}
3304
3305/* A cleanup used when switching away and back from tfind mode. */
3306
3307struct current_traceframe_cleanup
3308{
3309 /* The traceframe we were inspecting. */
3310 int traceframe_number;
3311};
3312
3313static void
3314do_restore_current_traceframe_cleanup (void *arg)
3315{
3316 struct current_traceframe_cleanup *old = arg;
3317
3318 set_current_traceframe (old->traceframe_number);
3319}
3320
3321static void
3322restore_current_traceframe_cleanup_dtor (void *arg)
3323{
3324 struct current_traceframe_cleanup *old = arg;
3325
3326 xfree (old);
3327}
3328
3329struct cleanup *
3330make_cleanup_restore_current_traceframe (void)
3331{
3332 struct current_traceframe_cleanup *old;
3333
3334 old = xmalloc (sizeof (struct current_traceframe_cleanup));
3335 old->traceframe_number = traceframe_number;
3336
3337 return make_cleanup_dtor (do_restore_current_traceframe_cleanup, old,
3338 restore_current_traceframe_cleanup_dtor);
3339}
3340
3341struct cleanup *
3342make_cleanup_restore_traceframe_number (void)
3343{
3344 return make_cleanup_restore_integer (&traceframe_number);
3345}
3346
3347/* Given a number and address, return an uploaded tracepoint with that
3348 number, creating if necessary. */
3349
3350struct uploaded_tp *
3351get_uploaded_tp (int num, ULONGEST addr, struct uploaded_tp **utpp)
3352{
3353 struct uploaded_tp *utp;
3354
3355 for (utp = *utpp; utp; utp = utp->next)
3356 if (utp->number == num && utp->addr == addr)
3357 return utp;
3358 utp = (struct uploaded_tp *) xmalloc (sizeof (struct uploaded_tp));
3359 memset (utp, 0, sizeof (struct uploaded_tp));
3360 utp->number = num;
3361 utp->addr = addr;
3362 utp->actions = NULL;
3363 utp->step_actions = NULL;
3364 utp->cmd_strings = NULL;
3365 utp->next = *utpp;
3366 *utpp = utp;
3367 return utp;
3368}
3369
3370static void
3371free_uploaded_tps (struct uploaded_tp **utpp)
3372{
3373 struct uploaded_tp *next_one;
3374
3375 while (*utpp)
3376 {
3377 next_one = (*utpp)->next;
3378 xfree (*utpp);
3379 *utpp = next_one;
3380 }
3381}
3382
3383/* Given a number and address, return an uploaded tracepoint with that
3384 number, creating if necessary. */
3385
3386static struct uploaded_tsv *
3387get_uploaded_tsv (int num, struct uploaded_tsv **utsvp)
3388{
3389 struct uploaded_tsv *utsv;
3390
3391 for (utsv = *utsvp; utsv; utsv = utsv->next)
3392 if (utsv->number == num)
3393 return utsv;
3394 utsv = (struct uploaded_tsv *) xmalloc (sizeof (struct uploaded_tsv));
3395 memset (utsv, 0, sizeof (struct uploaded_tsv));
3396 utsv->number = num;
3397 utsv->next = *utsvp;
3398 *utsvp = utsv;
3399 return utsv;
3400}
3401
3402static void
3403free_uploaded_tsvs (struct uploaded_tsv **utsvp)
3404{
3405 struct uploaded_tsv *next_one;
3406
3407 while (*utsvp)
3408 {
3409 next_one = (*utsvp)->next;
3410 xfree (*utsvp);
3411 *utsvp = next_one;
3412 }
3413}
3414
3415/* FIXME this function is heuristic and will miss the cases where the
3416 conditional is semantically identical but differs in whitespace,
3417 such as "x == 0" vs "x==0". */
3418
3419static int
3420cond_string_is_same (char *str1, char *str2)
3421{
3422 if (str1 == NULL || str2 == NULL)
3423 return (str1 == str2);
3424
3425 return (strcmp (str1, str2) == 0);
3426}
3427
3428/* Look for an existing tracepoint that seems similar enough to the
3429 uploaded one. Enablement isn't compared, because the user can
3430 toggle that freely, and may have done so in anticipation of the
3431 next trace run. Return the location of matched tracepoint. */
3432
3433static struct bp_location *
3434find_matching_tracepoint_location (struct uploaded_tp *utp)
3435{
3436 VEC(breakpoint_p) *tp_vec = all_tracepoints ();
3437 int ix;
3438 struct breakpoint *b;
3439 struct bp_location *loc;
3440
3441 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
3442 {
3443 struct tracepoint *t = (struct tracepoint *) b;
3444
3445 if (b->type == utp->type
3446 && t->step_count == utp->step
3447 && t->pass_count == utp->pass
3448 && cond_string_is_same (t->base.cond_string, utp->cond_string)
3449 /* FIXME also test actions. */
3450 )
3451 {
3452 /* Scan the locations for an address match. */
3453 for (loc = b->loc; loc; loc = loc->next)
3454 {
3455 if (loc->address == utp->addr)
3456 return loc;
3457 }
3458 }
3459 }
3460 return NULL;
3461}
3462
3463/* Given a list of tracepoints uploaded from a target, attempt to
3464 match them up with existing tracepoints, and create new ones if not
3465 found. */
3466
3467void
3468merge_uploaded_tracepoints (struct uploaded_tp **uploaded_tps)
3469{
3470 struct uploaded_tp *utp;
3471
3472 /* Look for GDB tracepoints that match up with our uploaded versions. */
3473 for (utp = *uploaded_tps; utp; utp = utp->next)
3474 {
3475 struct bp_location *loc;
3476 struct tracepoint *t;
3477
3478 loc = find_matching_tracepoint_location (utp);
3479 if (loc)
3480 {
3481 /* Mark this location as already inserted. */
3482 loc->inserted = 1;
3483 t = (struct tracepoint *) loc->owner;
3484 printf_filtered (_("Assuming tracepoint %d is same "
3485 "as target's tracepoint %d at %s.\n"),
3486 loc->owner->number, utp->number,
3487 paddress (loc->gdbarch, utp->addr));
3488 }
3489 else
3490 {
3491 t = create_tracepoint_from_upload (utp);
3492 if (t)
3493 printf_filtered (_("Created tracepoint %d for "
3494 "target's tracepoint %d at %s.\n"),
3495 t->base.number, utp->number,
3496 paddress (get_current_arch (), utp->addr));
3497 else
3498 printf_filtered (_("Failed to create tracepoint for target's "
3499 "tracepoint %d at %s, skipping it.\n"),
3500 utp->number,
3501 paddress (get_current_arch (), utp->addr));
3502 }
3503 /* Whether found or created, record the number used by the
3504 target, to help with mapping target tracepoints back to their
3505 counterparts here. */
3506 if (t)
3507 t->number_on_target = utp->number;
3508 }
3509
3510 free_uploaded_tps (uploaded_tps);
3511}
3512
3513/* Trace state variables don't have much to identify them beyond their
3514 name, so just use that to detect matches. */
3515
3516static struct trace_state_variable *
3517find_matching_tsv (struct uploaded_tsv *utsv)
3518{
3519 if (!utsv->name)
3520 return NULL;
3521
3522 return find_trace_state_variable (utsv->name);
3523}
3524
3525static struct trace_state_variable *
3526create_tsv_from_upload (struct uploaded_tsv *utsv)
3527{
3528 const char *namebase;
3529 char *buf;
3530 int try_num = 0;
3531 struct trace_state_variable *tsv;
3532 struct cleanup *old_chain;
3533
3534 if (utsv->name)
3535 {
3536 namebase = utsv->name;
3537 buf = xstrprintf ("%s", namebase);
3538 }
3539 else
3540 {
3541 namebase = "__tsv";
3542 buf = xstrprintf ("%s_%d", namebase, try_num++);
3543 }
3544
3545 /* Fish for a name that is not in use. */
3546 /* (should check against all internal vars?) */
3547 while (find_trace_state_variable (buf))
3548 {
3549 xfree (buf);
3550 buf = xstrprintf ("%s_%d", namebase, try_num++);
3551 }
3552
3553 old_chain = make_cleanup (xfree, buf);
3554
3555 /* We have an available name, create the variable. */
3556 tsv = create_trace_state_variable (buf);
3557 tsv->initial_value = utsv->initial_value;
3558 tsv->builtin = utsv->builtin;
3559
3560 observer_notify_tsv_created (tsv->name, tsv->initial_value);
3561
3562 do_cleanups (old_chain);
3563
3564 return tsv;
3565}
3566
3567/* Given a list of uploaded trace state variables, try to match them
3568 up with existing variables, or create additional ones. */
3569
3570void
3571merge_uploaded_trace_state_variables (struct uploaded_tsv **uploaded_tsvs)
3572{
3573 int ix;
3574 struct uploaded_tsv *utsv;
3575 struct trace_state_variable *tsv;
3576 int highest;
3577
3578 /* Most likely some numbers will have to be reassigned as part of
3579 the merge, so clear them all in anticipation. */
3580 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3581 tsv->number = 0;
3582
3583 for (utsv = *uploaded_tsvs; utsv; utsv = utsv->next)
3584 {
3585 tsv = find_matching_tsv (utsv);
3586 if (tsv)
3587 {
3588 if (info_verbose)
3589 printf_filtered (_("Assuming trace state variable $%s "
3590 "is same as target's variable %d.\n"),
3591 tsv->name, utsv->number);
3592 }
3593 else
3594 {
3595 tsv = create_tsv_from_upload (utsv);
3596 if (info_verbose)
3597 printf_filtered (_("Created trace state variable "
3598 "$%s for target's variable %d.\n"),
3599 tsv->name, utsv->number);
3600 }
3601 /* Give precedence to numberings that come from the target. */
3602 if (tsv)
3603 tsv->number = utsv->number;
3604 }
3605
3606 /* Renumber everything that didn't get a target-assigned number. */
3607 highest = 0;
3608 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3609 if (tsv->number > highest)
3610 highest = tsv->number;
3611
3612 ++highest;
3613 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3614 if (tsv->number == 0)
3615 tsv->number = highest++;
3616
3617 free_uploaded_tsvs (uploaded_tsvs);
3618}
3619
3620/* target tfile command */
3621
3622static struct target_ops tfile_ops;
3623
3624/* Fill in tfile_ops with its defined operations and properties. */
3625
3626#define TRACE_HEADER_SIZE 8
3627
3628static char *trace_filename;
3629static int trace_fd = -1;
3630static off_t trace_frames_offset;
3631static off_t cur_offset;
3632static int cur_data_size;
3633int trace_regblock_size;
3634
3635static void tfile_interp_line (char *line,
3636 struct uploaded_tp **utpp,
3637 struct uploaded_tsv **utsvp);
3638
3639/* Read SIZE bytes into READBUF from the trace frame, starting at
3640 TRACE_FD's current position. Note that this call `read'
3641 underneath, hence it advances the file's seek position. Throws an
3642 error if the `read' syscall fails, or less than SIZE bytes are
3643 read. */
3644
3645static void
3646tfile_read (gdb_byte *readbuf, int size)
3647{
3648 int gotten;
3649
3650 gotten = read (trace_fd, readbuf, size);
3651 if (gotten < 0)
3652 perror_with_name (trace_filename);
3653 else if (gotten < size)
3654 error (_("Premature end of file while reading trace file"));
3655}
3656
3657static void
3658tfile_open (char *filename, int from_tty)
3659{
3660 volatile struct gdb_exception ex;
3661 char *temp;
3662 struct cleanup *old_chain;
3663 int flags;
3664 int scratch_chan;
3665 char header[TRACE_HEADER_SIZE];
3666 char linebuf[1000]; /* Should be max remote packet size or so. */
3667 char byte;
3668 int bytes, i;
3669 struct trace_status *ts;
3670 struct uploaded_tp *uploaded_tps = NULL;
3671 struct uploaded_tsv *uploaded_tsvs = NULL;
3672
3673 target_preopen (from_tty);
3674 if (!filename)
3675 error (_("No trace file specified."));
3676
3677 filename = tilde_expand (filename);
3678 if (!IS_ABSOLUTE_PATH(filename))
3679 {
3680 temp = concat (current_directory, "/", filename, (char *) NULL);
3681 xfree (filename);
3682 filename = temp;
3683 }
3684
3685 old_chain = make_cleanup (xfree, filename);
3686
3687 flags = O_BINARY | O_LARGEFILE;
3688 flags |= O_RDONLY;
3689 scratch_chan = open (filename, flags, 0);
3690 if (scratch_chan < 0)
3691 perror_with_name (filename);
3692
3693 /* Looks semi-reasonable. Toss the old trace file and work on the new. */
3694
3695 discard_cleanups (old_chain); /* Don't free filename any more. */
3696 unpush_target (&tfile_ops);
3697
3698 trace_filename = xstrdup (filename);
3699 trace_fd = scratch_chan;
3700
3701 bytes = 0;
3702 /* Read the file header and test for validity. */
3703 tfile_read ((gdb_byte *) &header, TRACE_HEADER_SIZE);
3704
3705 bytes += TRACE_HEADER_SIZE;
3706 if (!(header[0] == 0x7f
3707 && (strncmp (header + 1, "TRACE0\n", 7) == 0)))
3708 error (_("File is not a valid trace file."));
3709
3710 push_target (&tfile_ops);
3711
3712 trace_regblock_size = 0;
3713 ts = current_trace_status ();
3714 /* We know we're working with a file. */
3715 ts->from_file = 1;
3716 /* Set defaults in case there is no status line. */
3717 ts->running_known = 0;
3718 ts->stop_reason = trace_stop_reason_unknown;
3719 ts->traceframe_count = -1;
3720 ts->buffer_free = 0;
3721 ts->disconnected_tracing = 0;
3722 ts->circular_buffer = 0;
3723
3724 TRY_CATCH (ex, RETURN_MASK_ALL)
3725 {
3726 /* Read through a section of newline-terminated lines that
3727 define things like tracepoints. */
3728 i = 0;
3729 while (1)
3730 {
3731 tfile_read (&byte, 1);
3732
3733 ++bytes;
3734 if (byte == '\n')
3735 {
3736 /* Empty line marks end of the definition section. */
3737 if (i == 0)
3738 break;
3739 linebuf[i] = '\0';
3740 i = 0;
3741 tfile_interp_line (linebuf, &uploaded_tps, &uploaded_tsvs);
3742 }
3743 else
3744 linebuf[i++] = byte;
3745 if (i >= 1000)
3746 error (_("Excessively long lines in trace file"));
3747 }
3748
3749 /* Record the starting offset of the binary trace data. */
3750 trace_frames_offset = bytes;
3751
3752 /* If we don't have a blocksize, we can't interpret the
3753 traceframes. */
3754 if (trace_regblock_size == 0)
3755 error (_("No register block size recorded in trace file"));
3756 }
3757 if (ex.reason < 0)
3758 {
3759 /* Pop the partially set up target. */
3760 pop_target ();
3761 throw_exception (ex);
3762 }
3763
3764 inferior_appeared (current_inferior (), TFILE_PID);
3765 inferior_ptid = pid_to_ptid (TFILE_PID);
3766 add_thread_silent (inferior_ptid);
3767
3768 if (ts->traceframe_count <= 0)
3769 warning (_("No traceframes present in this file."));
3770
3771 /* Add the file's tracepoints and variables into the current mix. */
3772
3773 /* Get trace state variables first, they may be checked when parsing
3774 uploaded commands. */
3775 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3776
3777 merge_uploaded_tracepoints (&uploaded_tps);
3778
3779 post_create_inferior (&tfile_ops, from_tty);
3780}
3781
3782/* Interpret the given line from the definitions part of the trace
3783 file. */
3784
3785static void
3786tfile_interp_line (char *line,
3787 struct uploaded_tp **utpp, struct uploaded_tsv **utsvp)
3788{
3789 char *p = line;
3790
3791 if (strncmp (p, "R ", strlen ("R ")) == 0)
3792 {
3793 p += strlen ("R ");
3794 trace_regblock_size = strtol (p, &p, 16);
3795 }
3796 else if (strncmp (p, "status ", strlen ("status ")) == 0)
3797 {
3798 p += strlen ("status ");
3799 parse_trace_status (p, current_trace_status ());
3800 }
3801 else if (strncmp (p, "tp ", strlen ("tp ")) == 0)
3802 {
3803 p += strlen ("tp ");
3804 parse_tracepoint_definition (p, utpp);
3805 }
3806 else if (strncmp (p, "tsv ", strlen ("tsv ")) == 0)
3807 {
3808 p += strlen ("tsv ");
3809 parse_tsv_definition (p, utsvp);
3810 }
3811 else
3812 warning (_("Ignoring trace file definition \"%s\""), line);
3813}
3814
3815/* Parse the part of trace status syntax that is shared between
3816 the remote protocol and the trace file reader. */
3817
3818void
3819parse_trace_status (char *line, struct trace_status *ts)
3820{
3821 char *p = line, *p1, *p2, *p3, *p_temp;
3822 int end;
3823 ULONGEST val;
3824
3825 ts->running_known = 1;
3826 ts->running = (*p++ == '1');
3827 ts->stop_reason = trace_stop_reason_unknown;
3828 xfree (ts->stop_desc);
3829 ts->stop_desc = NULL;
3830 ts->traceframe_count = -1;
3831 ts->traceframes_created = -1;
3832 ts->buffer_free = -1;
3833 ts->buffer_size = -1;
3834 ts->disconnected_tracing = 0;
3835 ts->circular_buffer = 0;
3836 xfree (ts->user_name);
3837 ts->user_name = NULL;
3838 xfree (ts->notes);
3839 ts->notes = NULL;
3840 ts->start_time = ts->stop_time = 0;
3841
3842 while (*p++)
3843 {
3844 p1 = strchr (p, ':');
3845 if (p1 == NULL)
3846 error (_("Malformed trace status, at %s\n\
3847Status line: '%s'\n"), p, line);
3848 p3 = strchr (p, ';');
3849 if (p3 == NULL)
3850 p3 = p + strlen (p);
3851 if (strncmp (p, stop_reason_names[trace_buffer_full], p1 - p) == 0)
3852 {
3853 p = unpack_varlen_hex (++p1, &val);
3854 ts->stop_reason = trace_buffer_full;
3855 }
3856 else if (strncmp (p, stop_reason_names[trace_never_run], p1 - p) == 0)
3857 {
3858 p = unpack_varlen_hex (++p1, &val);
3859 ts->stop_reason = trace_never_run;
3860 }
3861 else if (strncmp (p, stop_reason_names[tracepoint_passcount],
3862 p1 - p) == 0)
3863 {
3864 p = unpack_varlen_hex (++p1, &val);
3865 ts->stop_reason = tracepoint_passcount;
3866 ts->stopping_tracepoint = val;
3867 }
3868 else if (strncmp (p, stop_reason_names[tstop_command], p1 - p) == 0)
3869 {
3870 p2 = strchr (++p1, ':');
3871 if (!p2 || p2 > p3)
3872 {
3873 /*older style*/
3874 p2 = p1;
3875 }
3876 else if (p2 != p1)
3877 {
3878 ts->stop_desc = xmalloc (strlen (line));
3879 end = hex2bin (p1, ts->stop_desc, (p2 - p1) / 2);
3880 ts->stop_desc[end] = '\0';
3881 }
3882 else
3883 ts->stop_desc = xstrdup ("");
3884
3885 p = unpack_varlen_hex (++p2, &val);
3886 ts->stop_reason = tstop_command;
3887 }
3888 else if (strncmp (p, stop_reason_names[trace_disconnected], p1 - p) == 0)
3889 {
3890 p = unpack_varlen_hex (++p1, &val);
3891 ts->stop_reason = trace_disconnected;
3892 }
3893 else if (strncmp (p, stop_reason_names[tracepoint_error], p1 - p) == 0)
3894 {
3895 p2 = strchr (++p1, ':');
3896 if (p2 != p1)
3897 {
3898 ts->stop_desc = xmalloc ((p2 - p1) / 2 + 1);
3899 end = hex2bin (p1, ts->stop_desc, (p2 - p1) / 2);
3900 ts->stop_desc[end] = '\0';
3901 }
3902 else
3903 ts->stop_desc = xstrdup ("");
3904
3905 p = unpack_varlen_hex (++p2, &val);
3906 ts->stopping_tracepoint = val;
3907 ts->stop_reason = tracepoint_error;
3908 }
3909 else if (strncmp (p, "tframes", p1 - p) == 0)
3910 {
3911 p = unpack_varlen_hex (++p1, &val);
3912 ts->traceframe_count = val;
3913 }
3914 else if (strncmp (p, "tcreated", p1 - p) == 0)
3915 {
3916 p = unpack_varlen_hex (++p1, &val);
3917 ts->traceframes_created = val;
3918 }
3919 else if (strncmp (p, "tfree", p1 - p) == 0)
3920 {
3921 p = unpack_varlen_hex (++p1, &val);
3922 ts->buffer_free = val;
3923 }
3924 else if (strncmp (p, "tsize", p1 - p) == 0)
3925 {
3926 p = unpack_varlen_hex (++p1, &val);
3927 ts->buffer_size = val;
3928 }
3929 else if (strncmp (p, "disconn", p1 - p) == 0)
3930 {
3931 p = unpack_varlen_hex (++p1, &val);
3932 ts->disconnected_tracing = val;
3933 }
3934 else if (strncmp (p, "circular", p1 - p) == 0)
3935 {
3936 p = unpack_varlen_hex (++p1, &val);
3937 ts->circular_buffer = val;
3938 }
3939 else if (strncmp (p, "starttime", p1 - p) == 0)
3940 {
3941 p = unpack_varlen_hex (++p1, &val);
3942 ts->start_time = val;
3943 }
3944 else if (strncmp (p, "stoptime", p1 - p) == 0)
3945 {
3946 p = unpack_varlen_hex (++p1, &val);
3947 ts->stop_time = val;
3948 }
3949 else if (strncmp (p, "username", p1 - p) == 0)
3950 {
3951 ++p1;
3952 ts->user_name = xmalloc (strlen (p) / 2);
3953 end = hex2bin (p1, ts->user_name, (p3 - p1) / 2);
3954 ts->user_name[end] = '\0';
3955 p = p3;
3956 }
3957 else if (strncmp (p, "notes", p1 - p) == 0)
3958 {
3959 ++p1;
3960 ts->notes = xmalloc (strlen (p) / 2);
3961 end = hex2bin (p1, ts->notes, (p3 - p1) / 2);
3962 ts->notes[end] = '\0';
3963 p = p3;
3964 }
3965 else
3966 {
3967 /* Silently skip unknown optional info. */
3968 p_temp = strchr (p1 + 1, ';');
3969 if (p_temp)
3970 p = p_temp;
3971 else
3972 /* Must be at the end. */
3973 break;
3974 }
3975 }
3976}
3977
3978void
3979parse_tracepoint_status (char *p, struct breakpoint *bp,
3980 struct uploaded_tp *utp)
3981{
3982 ULONGEST uval;
3983 struct tracepoint *tp = (struct tracepoint *) bp;
3984
3985 p = unpack_varlen_hex (p, &uval);
3986 if (tp)
3987 tp->base.hit_count += uval;
3988 else
3989 utp->hit_count += uval;
3990 p = unpack_varlen_hex (p + 1, &uval);
3991 if (tp)
3992 tp->traceframe_usage += uval;
3993 else
3994 utp->traceframe_usage += uval;
3995 /* Ignore any extra, allowing for future extensions. */
3996}
3997
3998/* Given a line of text defining a part of a tracepoint, parse it into
3999 an "uploaded tracepoint". */
4000
4001void
4002parse_tracepoint_definition (char *line, struct uploaded_tp **utpp)
4003{
4004 char *p;
4005 char piece;
4006 ULONGEST num, addr, step, pass, orig_size, xlen, start;
4007 int enabled, end;
4008 enum bptype type;
4009 char *cond, *srctype, *buf;
4010 struct uploaded_tp *utp = NULL;
4011
4012 p = line;
4013 /* Both tracepoint and action definitions start with the same number
4014 and address sequence. */
4015 piece = *p++;
4016 p = unpack_varlen_hex (p, &num);
4017 p++; /* skip a colon */
4018 p = unpack_varlen_hex (p, &addr);
4019 p++; /* skip a colon */
4020 if (piece == 'T')
4021 {
4022 enabled = (*p++ == 'E');
4023 p++; /* skip a colon */
4024 p = unpack_varlen_hex (p, &step);
4025 p++; /* skip a colon */
4026 p = unpack_varlen_hex (p, &pass);
4027 type = bp_tracepoint;
4028 cond = NULL;
4029 /* Thumb through optional fields. */
4030 while (*p == ':')
4031 {
4032 p++; /* skip a colon */
4033 if (*p == 'F')
4034 {
4035 type = bp_fast_tracepoint;
4036 p++;
4037 p = unpack_varlen_hex (p, &orig_size);
4038 }
4039 else if (*p == 'S')
4040 {
4041 type = bp_static_tracepoint;
4042 p++;
4043 }
4044 else if (*p == 'X')
4045 {
4046 p++;
4047 p = unpack_varlen_hex (p, &xlen);
4048 p++; /* skip a comma */
4049 cond = (char *) xmalloc (2 * xlen + 1);
4050 strncpy (cond, p, 2 * xlen);
4051 cond[2 * xlen] = '\0';
4052 p += 2 * xlen;
4053 }
4054 else
4055 warning (_("Unrecognized char '%c' in tracepoint "
4056 "definition, skipping rest"), *p);
4057 }
4058 utp = get_uploaded_tp (num, addr, utpp);
4059 utp->type = type;
4060 utp->enabled = enabled;
4061 utp->step = step;
4062 utp->pass = pass;
4063 utp->cond = cond;
4064 }
4065 else if (piece == 'A')
4066 {
4067 utp = get_uploaded_tp (num, addr, utpp);
4068 VEC_safe_push (char_ptr, utp->actions, xstrdup (p));
4069 }
4070 else if (piece == 'S')
4071 {
4072 utp = get_uploaded_tp (num, addr, utpp);
4073 VEC_safe_push (char_ptr, utp->step_actions, xstrdup (p));
4074 }
4075 else if (piece == 'Z')
4076 {
4077 /* Parse a chunk of source form definition. */
4078 utp = get_uploaded_tp (num, addr, utpp);
4079 srctype = p;
4080 p = strchr (p, ':');
4081 p++; /* skip a colon */
4082 p = unpack_varlen_hex (p, &start);
4083 p++; /* skip a colon */
4084 p = unpack_varlen_hex (p, &xlen);
4085 p++; /* skip a colon */
4086
4087 buf = alloca (strlen (line));
4088
4089 end = hex2bin (p, (gdb_byte *) buf, strlen (p) / 2);
4090 buf[end] = '\0';
4091
4092 if (strncmp (srctype, "at:", strlen ("at:")) == 0)
4093 utp->at_string = xstrdup (buf);
4094 else if (strncmp (srctype, "cond:", strlen ("cond:")) == 0)
4095 utp->cond_string = xstrdup (buf);
4096 else if (strncmp (srctype, "cmd:", strlen ("cmd:")) == 0)
4097 VEC_safe_push (char_ptr, utp->cmd_strings, xstrdup (buf));
4098 }
4099 else if (piece == 'V')
4100 {
4101 utp = get_uploaded_tp (num, addr, utpp);
4102
4103 parse_tracepoint_status (p, NULL, utp);
4104 }
4105 else
4106 {
4107 /* Don't error out, the target might be sending us optional
4108 info that we don't care about. */
4109 warning (_("Unrecognized tracepoint piece '%c', ignoring"), piece);
4110 }
4111}
4112
4113/* Convert a textual description of a trace state variable into an
4114 uploaded object. */
4115
4116void
4117parse_tsv_definition (char *line, struct uploaded_tsv **utsvp)
4118{
4119 char *p, *buf;
4120 ULONGEST num, initval, builtin;
4121 int end;
4122 struct uploaded_tsv *utsv = NULL;
4123
4124 buf = alloca (strlen (line));
4125
4126 p = line;
4127 p = unpack_varlen_hex (p, &num);
4128 p++; /* skip a colon */
4129 p = unpack_varlen_hex (p, &initval);
4130 p++; /* skip a colon */
4131 p = unpack_varlen_hex (p, &builtin);
4132 p++; /* skip a colon */
4133 end = hex2bin (p, (gdb_byte *) buf, strlen (p) / 2);
4134 buf[end] = '\0';
4135
4136 utsv = get_uploaded_tsv (num, utsvp);
4137 utsv->initial_value = initval;
4138 utsv->builtin = builtin;
4139 utsv->name = xstrdup (buf);
4140}
4141
4142/* Close the trace file and generally clean up. */
4143
4144static void
4145tfile_close (int quitting)
4146{
4147 int pid;
4148
4149 if (trace_fd < 0)
4150 return;
4151
4152 pid = ptid_get_pid (inferior_ptid);
4153 inferior_ptid = null_ptid; /* Avoid confusion from thread stuff. */
4154 exit_inferior_silent (pid);
4155
4156 close (trace_fd);
4157 trace_fd = -1;
4158 xfree (trace_filename);
4159 trace_filename = NULL;
4160}
4161
4162static void
4163tfile_files_info (struct target_ops *t)
4164{
4165 /* (it would be useful to mention the name of the file). */
4166 printf_filtered ("Looking at a trace file.\n");
4167}
4168
4169/* The trace status for a file is that tracing can never be run. */
4170
4171static int
4172tfile_get_trace_status (struct trace_status *ts)
4173{
4174 /* Other bits of trace status were collected as part of opening the
4175 trace files, so nothing to do here. */
4176
4177 return -1;
4178}
4179
4180static void
4181tfile_get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
4182{
4183 /* Other bits of trace status were collected as part of opening the
4184 trace files, so nothing to do here. */
4185}
4186
4187/* Given the position of a traceframe in the file, figure out what
4188 address the frame was collected at. This would normally be the
4189 value of a collected PC register, but if not available, we
4190 improvise. */
4191
4192static ULONGEST
4193tfile_get_traceframe_address (off_t tframe_offset)
4194{
4195 ULONGEST addr = 0;
4196 short tpnum;
4197 struct tracepoint *tp;
4198 off_t saved_offset = cur_offset;
4199
4200 /* FIXME dig pc out of collected registers. */
4201
4202 /* Fall back to using tracepoint address. */
4203 lseek (trace_fd, tframe_offset, SEEK_SET);
4204 tfile_read ((gdb_byte *) &tpnum, 2);
4205 tpnum = (short) extract_signed_integer ((gdb_byte *) &tpnum, 2,
4206 gdbarch_byte_order
4207 (target_gdbarch));
4208
4209 tp = get_tracepoint_by_number_on_target (tpnum);
4210 /* FIXME this is a poor heuristic if multiple locations. */
4211 if (tp && tp->base.loc)
4212 addr = tp->base.loc->address;
4213
4214 /* Restore our seek position. */
4215 cur_offset = saved_offset;
4216 lseek (trace_fd, cur_offset, SEEK_SET);
4217 return addr;
4218}
4219
4220/* Given a type of search and some parameters, scan the collection of
4221 traceframes in the file looking for a match. When found, return
4222 both the traceframe and tracepoint number, otherwise -1 for
4223 each. */
4224
4225static int
4226tfile_trace_find (enum trace_find_type type, int num,
4227 ULONGEST addr1, ULONGEST addr2, int *tpp)
4228{
4229 short tpnum;
4230 int tfnum = 0, found = 0;
4231 unsigned int data_size;
4232 struct tracepoint *tp;
4233 off_t offset, tframe_offset;
4234 ULONGEST tfaddr;
4235
4236 if (num == -1)
4237 {
4238 if (tpp)
4239 *tpp = -1;
4240 return -1;
4241 }
4242
4243 lseek (trace_fd, trace_frames_offset, SEEK_SET);
4244 offset = trace_frames_offset;
4245 while (1)
4246 {
4247 tframe_offset = offset;
4248 tfile_read ((gdb_byte *) &tpnum, 2);
4249 tpnum = (short) extract_signed_integer ((gdb_byte *) &tpnum, 2,
4250 gdbarch_byte_order
4251 (target_gdbarch));
4252 offset += 2;
4253 if (tpnum == 0)
4254 break;
4255 tfile_read ((gdb_byte *) &data_size, 4);
4256 data_size = (unsigned int) extract_unsigned_integer
4257 ((gdb_byte *) &data_size, 4,
4258 gdbarch_byte_order (target_gdbarch));
4259 offset += 4;
4260 switch (type)
4261 {
4262 case tfind_number:
4263 if (tfnum == num)
4264 found = 1;
4265 break;
4266 case tfind_pc:
4267 tfaddr = tfile_get_traceframe_address (tframe_offset);
4268 if (tfaddr == addr1)
4269 found = 1;
4270 break;
4271 case tfind_tp:
4272 tp = get_tracepoint (num);
4273 if (tp && tpnum == tp->number_on_target)
4274 found = 1;
4275 break;
4276 case tfind_range:
4277 tfaddr = tfile_get_traceframe_address (tframe_offset);
4278 if (addr1 <= tfaddr && tfaddr <= addr2)
4279 found = 1;
4280 break;
4281 case tfind_outside:
4282 tfaddr = tfile_get_traceframe_address (tframe_offset);
4283 if (!(addr1 <= tfaddr && tfaddr <= addr2))
4284 found = 1;
4285 break;
4286 default:
4287 internal_error (__FILE__, __LINE__, _("unknown tfind type"));
4288 }
4289 if (found)
4290 {
4291 if (tpp)
4292 *tpp = tpnum;
4293 cur_offset = offset;
4294 cur_data_size = data_size;
4295
4296 return tfnum;
4297 }
4298 /* Skip past the traceframe's data. */
4299 lseek (trace_fd, data_size, SEEK_CUR);
4300 offset += data_size;
4301 /* Update our own count of traceframes. */
4302 ++tfnum;
4303 }
4304 /* Did not find what we were looking for. */
4305 if (tpp)
4306 *tpp = -1;
4307 return -1;
4308}
4309
4310/* Prototype of the callback passed to tframe_walk_blocks. */
4311typedef int (*walk_blocks_callback_func) (char blocktype, void *data);
4312
4313/* Callback for traceframe_walk_blocks, used to find a given block
4314 type in a traceframe. */
4315
4316static int
4317match_blocktype (char blocktype, void *data)
4318{
4319 char *wantedp = data;
4320
4321 if (*wantedp == blocktype)
4322 return 1;
4323
4324 return 0;
4325}
4326
4327/* Walk over all traceframe block starting at POS offset from
4328 CUR_OFFSET, and call CALLBACK for each block found, passing in DATA
4329 unmodified. If CALLBACK returns true, this returns the position in
4330 the traceframe where the block is found, relative to the start of
4331 the traceframe (cur_offset). Returns -1 if no callback call
4332 returned true, indicating that all blocks have been walked. */
4333
4334static int
4335traceframe_walk_blocks (walk_blocks_callback_func callback,
4336 int pos, void *data)
4337{
4338 /* Iterate through a traceframe's blocks, looking for a block of the
4339 requested type. */
4340
4341 lseek (trace_fd, cur_offset + pos, SEEK_SET);
4342 while (pos < cur_data_size)
4343 {
4344 unsigned short mlen;
4345 char block_type;
4346
4347 tfile_read (&block_type, 1);
4348
4349 ++pos;
4350
4351 if ((*callback) (block_type, data))
4352 return pos;
4353
4354 switch (block_type)
4355 {
4356 case 'R':
4357 lseek (trace_fd, cur_offset + pos + trace_regblock_size, SEEK_SET);
4358 pos += trace_regblock_size;
4359 break;
4360 case 'M':
4361 lseek (trace_fd, cur_offset + pos + 8, SEEK_SET);
4362 tfile_read ((gdb_byte *) &mlen, 2);
4363 mlen = (unsigned short)
4364 extract_unsigned_integer ((gdb_byte *) &mlen, 2,
4365 gdbarch_byte_order
4366 (target_gdbarch));
4367 lseek (trace_fd, mlen, SEEK_CUR);
4368 pos += (8 + 2 + mlen);
4369 break;
4370 case 'V':
4371 lseek (trace_fd, cur_offset + pos + 4 + 8, SEEK_SET);
4372 pos += (4 + 8);
4373 break;
4374 default:
4375 error (_("Unknown block type '%c' (0x%x) in trace frame"),
4376 block_type, block_type);
4377 break;
4378 }
4379 }
4380
4381 return -1;
4382}
4383
4384/* Convenience wrapper around traceframe_walk_blocks. Looks for the
4385 position offset of a block of type TYPE_WANTED in the current trace
4386 frame, starting at POS. Returns -1 if no such block was found. */
4387
4388static int
4389traceframe_find_block_type (char type_wanted, int pos)
4390{
4391 return traceframe_walk_blocks (match_blocktype, pos, &type_wanted);
4392}
4393
4394/* Look for a block of saved registers in the traceframe, and get the
4395 requested register from it. */
4396
4397static void
4398tfile_fetch_registers (struct target_ops *ops,
4399 struct regcache *regcache, int regno)
4400{
4401 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4402 int offset, regn, regsize, pc_regno;
4403 char *regs;
4404
4405 /* An uninitialized reg size says we're not going to be
4406 successful at getting register blocks. */
4407 if (!trace_regblock_size)
4408 return;
4409
4410 regs = alloca (trace_regblock_size);
4411
4412 if (traceframe_find_block_type ('R', 0) >= 0)
4413 {
4414 tfile_read (regs, trace_regblock_size);
4415
4416 /* Assume the block is laid out in GDB register number order,
4417 each register with the size that it has in GDB. */
4418 offset = 0;
4419 for (regn = 0; regn < gdbarch_num_regs (gdbarch); regn++)
4420 {
4421 regsize = register_size (gdbarch, regn);
4422 /* Make sure we stay within block bounds. */
4423 if (offset + regsize >= trace_regblock_size)
4424 break;
4425 if (regcache_register_status (regcache, regn) == REG_UNKNOWN)
4426 {
4427 if (regno == regn)
4428 {
4429 regcache_raw_supply (regcache, regno, regs + offset);
4430 break;
4431 }
4432 else if (regno == -1)
4433 {
4434 regcache_raw_supply (regcache, regn, regs + offset);
4435 }
4436 }
4437 offset += regsize;
4438 }
4439 return;
4440 }
4441
4442 /* We get here if no register data has been found. Mark registers
4443 as unavailable. */
4444 for (regn = 0; regn < gdbarch_num_regs (gdbarch); regn++)
4445 regcache_raw_supply (regcache, regn, NULL);
4446
4447 /* We can often usefully guess that the PC is going to be the same
4448 as the address of the tracepoint. */
4449 pc_regno = gdbarch_pc_regnum (gdbarch);
4450 if (pc_regno >= 0 && (regno == -1 || regno == pc_regno))
4451 {
4452 struct tracepoint *tp = get_tracepoint (tracepoint_number);
4453
4454 if (tp && tp->base.loc)
4455 {
4456 /* But don't try to guess if tracepoint is multi-location... */
4457 if (tp->base.loc->next)
4458 {
4459 warning (_("Tracepoint %d has multiple "
4460 "locations, cannot infer $pc"),
4461 tp->base.number);
4462 return;
4463 }
4464 /* ... or does while-stepping. */
4465 if (tp->step_count > 0)
4466 {
4467 warning (_("Tracepoint %d does while-stepping, "
4468 "cannot infer $pc"),
4469 tp->base.number);
4470 return;
4471 }
4472
4473 store_unsigned_integer (regs, register_size (gdbarch, pc_regno),
4474 gdbarch_byte_order (gdbarch),
4475 tp->base.loc->address);
4476 regcache_raw_supply (regcache, pc_regno, regs);
4477 }
4478 }
4479}
4480
4481static LONGEST
4482tfile_xfer_partial (struct target_ops *ops, enum target_object object,
4483 const char *annex, gdb_byte *readbuf,
4484 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
4485{
4486 /* We're only doing regular memory for now. */
4487 if (object != TARGET_OBJECT_MEMORY)
4488 return -1;
4489
4490 if (readbuf == NULL)
4491 error (_("tfile_xfer_partial: trace file is read-only"));
4492
4493 if (traceframe_number != -1)
4494 {
4495 int pos = 0;
4496
4497 /* Iterate through the traceframe's blocks, looking for
4498 memory. */
4499 while ((pos = traceframe_find_block_type ('M', pos)) >= 0)
4500 {
4501 ULONGEST maddr, amt;
4502 unsigned short mlen;
4503 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
4504
4505 tfile_read ((gdb_byte *) &maddr, 8);
4506 maddr = extract_unsigned_integer ((gdb_byte *) &maddr, 8,
4507 byte_order);
4508 tfile_read ((gdb_byte *) &mlen, 2);
4509 mlen = (unsigned short)
4510 extract_unsigned_integer ((gdb_byte *) &mlen, 2, byte_order);
4511
4512 /* If the block includes the first part of the desired
4513 range, return as much it has; GDB will re-request the
4514 remainder, which might be in a different block of this
4515 trace frame. */
4516 if (maddr <= offset && offset < (maddr + mlen))
4517 {
4518 amt = (maddr + mlen) - offset;
4519 if (amt > len)
4520 amt = len;
4521
4522 if (maddr != offset)
4523 lseek (trace_fd, offset - maddr, SEEK_CUR);
4524 tfile_read (readbuf, amt);
4525 return amt;
4526 }
4527
4528 /* Skip over this block. */
4529 pos += (8 + 2 + mlen);
4530 }
4531 }
4532
4533 /* It's unduly pedantic to refuse to look at the executable for
4534 read-only pieces; so do the equivalent of readonly regions aka
4535 QTro packet. */
4536 /* FIXME account for relocation at some point. */
4537 if (exec_bfd)
4538 {
4539 asection *s;
4540 bfd_size_type size;
4541 bfd_vma vma;
4542
4543 for (s = exec_bfd->sections; s; s = s->next)
4544 {
4545 if ((s->flags & SEC_LOAD) == 0
4546 || (s->flags & SEC_READONLY) == 0)
4547 continue;
4548
4549 vma = s->vma;
4550 size = bfd_get_section_size (s);
4551 if (vma <= offset && offset < (vma + size))
4552 {
4553 ULONGEST amt;
4554
4555 amt = (vma + size) - offset;
4556 if (amt > len)
4557 amt = len;
4558
4559 amt = bfd_get_section_contents (exec_bfd, s,
4560 readbuf, offset - vma, amt);
4561 return amt;
4562 }
4563 }
4564 }
4565
4566 /* Indicate failure to find the requested memory block. */
4567 return -1;
4568}
4569
4570/* Iterate through the blocks of a trace frame, looking for a 'V'
4571 block with a matching tsv number. */
4572
4573static int
4574tfile_get_trace_state_variable_value (int tsvnum, LONGEST *val)
4575{
4576 int pos;
4577
4578 pos = 0;
4579 while ((pos = traceframe_find_block_type ('V', pos)) >= 0)
4580 {
4581 int vnum;
4582
4583 tfile_read ((gdb_byte *) &vnum, 4);
4584 vnum = (int) extract_signed_integer ((gdb_byte *) &vnum, 4,
4585 gdbarch_byte_order
4586 (target_gdbarch));
4587 if (tsvnum == vnum)
4588 {
4589 tfile_read ((gdb_byte *) val, 8);
4590 *val = extract_signed_integer ((gdb_byte *) val, 8,
4591 gdbarch_byte_order
4592 (target_gdbarch));
4593 return 1;
4594 }
4595 pos += (4 + 8);
4596 }
4597
4598 /* Didn't find anything. */
4599 return 0;
4600}
4601
4602static int
4603tfile_has_all_memory (struct target_ops *ops)
4604{
4605 return 1;
4606}
4607
4608static int
4609tfile_has_memory (struct target_ops *ops)
4610{
4611 return 1;
4612}
4613
4614static int
4615tfile_has_stack (struct target_ops *ops)
4616{
4617 return traceframe_number != -1;
4618}
4619
4620static int
4621tfile_has_registers (struct target_ops *ops)
4622{
4623 return traceframe_number != -1;
4624}
4625
4626static int
4627tfile_thread_alive (struct target_ops *ops, ptid_t ptid)
4628{
4629 return 1;
4630}
4631
4632/* Callback for traceframe_walk_blocks. Builds a traceframe_info
4633 object for the tfile target's current traceframe. */
4634
4635static int
4636build_traceframe_info (char blocktype, void *data)
4637{
4638 struct traceframe_info *info = data;
4639
4640 switch (blocktype)
4641 {
4642 case 'M':
4643 {
4644 struct mem_range *r;
4645 ULONGEST maddr;
4646 unsigned short mlen;
4647
4648 tfile_read ((gdb_byte *) &maddr, 8);
4649 tfile_read ((gdb_byte *) &mlen, 2);
4650
4651 r = VEC_safe_push (mem_range_s, info->memory, NULL);
4652
4653 r->start = maddr;
4654 r->length = mlen;
4655 break;
4656 }
4657 case 'V':
4658 case 'R':
4659 case 'S':
4660 {
4661 break;
4662 }
4663 default:
4664 warning (_("Unhandled trace block type (%d) '%c ' "
4665 "while building trace frame info."),
4666 blocktype, blocktype);
4667 break;
4668 }
4669
4670 return 0;
4671}
4672
4673static struct traceframe_info *
4674tfile_traceframe_info (void)
4675{
4676 struct traceframe_info *info = XCNEW (struct traceframe_info);
4677
4678 traceframe_walk_blocks (build_traceframe_info, 0, info);
4679 return info;
4680}
4681
4682static void
4683init_tfile_ops (void)
4684{
4685 tfile_ops.to_shortname = "tfile";
4686 tfile_ops.to_longname = "Local trace dump file";
4687 tfile_ops.to_doc
4688 = "Use a trace file as a target. Specify the filename of the trace file.";
4689 tfile_ops.to_open = tfile_open;
4690 tfile_ops.to_close = tfile_close;
4691 tfile_ops.to_fetch_registers = tfile_fetch_registers;
4692 tfile_ops.to_xfer_partial = tfile_xfer_partial;
4693 tfile_ops.to_files_info = tfile_files_info;
4694 tfile_ops.to_get_trace_status = tfile_get_trace_status;
4695 tfile_ops.to_get_tracepoint_status = tfile_get_tracepoint_status;
4696 tfile_ops.to_trace_find = tfile_trace_find;
4697 tfile_ops.to_get_trace_state_variable_value
4698 = tfile_get_trace_state_variable_value;
4699 tfile_ops.to_stratum = process_stratum;
4700 tfile_ops.to_has_all_memory = tfile_has_all_memory;
4701 tfile_ops.to_has_memory = tfile_has_memory;
4702 tfile_ops.to_has_stack = tfile_has_stack;
4703 tfile_ops.to_has_registers = tfile_has_registers;
4704 tfile_ops.to_traceframe_info = tfile_traceframe_info;
4705 tfile_ops.to_thread_alive = tfile_thread_alive;
4706 tfile_ops.to_magic = OPS_MAGIC;
4707}
4708
4709void
4710free_current_marker (void *arg)
4711{
4712 struct static_tracepoint_marker **marker_p = arg;
4713
4714 if (*marker_p != NULL)
4715 {
4716 release_static_tracepoint_marker (*marker_p);
4717 xfree (*marker_p);
4718 }
4719 else
4720 *marker_p = NULL;
4721}
4722
4723/* Given a line of text defining a static tracepoint marker, parse it
4724 into a "static tracepoint marker" object. Throws an error is
4725 parsing fails. If PP is non-null, it points to one past the end of
4726 the parsed marker definition. */
4727
4728void
4729parse_static_tracepoint_marker_definition (char *line, char **pp,
4730 struct static_tracepoint_marker *marker)
4731{
4732 char *p, *endp;
4733 ULONGEST addr;
4734 int end;
4735
4736 p = line;
4737 p = unpack_varlen_hex (p, &addr);
4738 p++; /* skip a colon */
4739
4740 marker->gdbarch = target_gdbarch;
4741 marker->address = (CORE_ADDR) addr;
4742
4743 endp = strchr (p, ':');
4744 if (endp == NULL)
4745 error (_("bad marker definition: %s"), line);
4746
4747 marker->str_id = xmalloc (endp - p + 1);
4748 end = hex2bin (p, (gdb_byte *) marker->str_id, (endp - p + 1) / 2);
4749 marker->str_id[end] = '\0';
4750
4751 p += 2 * end;
4752 p++; /* skip a colon */
4753
4754 marker->extra = xmalloc (strlen (p) + 1);
4755 end = hex2bin (p, (gdb_byte *) marker->extra, strlen (p) / 2);
4756 marker->extra[end] = '\0';
4757
4758 if (pp)
4759 *pp = p;
4760}
4761
4762/* Release a static tracepoint marker's contents. Note that the
4763 object itself isn't released here. There objects are usually on
4764 the stack. */
4765
4766void
4767release_static_tracepoint_marker (struct static_tracepoint_marker *marker)
4768{
4769 xfree (marker->str_id);
4770 marker->str_id = NULL;
4771}
4772
4773/* Print MARKER to gdb_stdout. */
4774
4775static void
4776print_one_static_tracepoint_marker (int count,
4777 struct static_tracepoint_marker *marker)
4778{
4779 struct command_line *l;
4780 struct symbol *sym;
4781
4782 char wrap_indent[80];
4783 char extra_field_indent[80];
4784 struct ui_out *uiout = current_uiout;
4785 struct cleanup *bkpt_chain;
4786 VEC(breakpoint_p) *tracepoints;
4787
4788 struct symtab_and_line sal;
4789
4790 init_sal (&sal);
4791
4792 sal.pc = marker->address;
4793
4794 tracepoints = static_tracepoints_here (marker->address);
4795
4796 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "marker");
4797
4798 /* A counter field to help readability. This is not a stable
4799 identifier! */
4800 ui_out_field_int (uiout, "count", count);
4801
4802 ui_out_field_string (uiout, "marker-id", marker->str_id);
4803
4804 ui_out_field_fmt (uiout, "enabled", "%c",
4805 !VEC_empty (breakpoint_p, tracepoints) ? 'y' : 'n');
4806 ui_out_spaces (uiout, 2);
4807
4808 strcpy (wrap_indent, " ");
4809
4810 if (gdbarch_addr_bit (marker->gdbarch) <= 32)
4811 strcat (wrap_indent, " ");
4812 else
4813 strcat (wrap_indent, " ");
4814
4815 strcpy (extra_field_indent, " ");
4816
4817 ui_out_field_core_addr (uiout, "addr", marker->gdbarch, marker->address);
4818
4819 sal = find_pc_line (marker->address, 0);
4820 sym = find_pc_sect_function (marker->address, NULL);
4821 if (sym)
4822 {
4823 ui_out_text (uiout, "in ");
4824 ui_out_field_string (uiout, "func",
4825 SYMBOL_PRINT_NAME (sym));
4826 ui_out_wrap_hint (uiout, wrap_indent);
4827 ui_out_text (uiout, " at ");
4828 }
4829 else
4830 ui_out_field_skip (uiout, "func");
4831
4832 if (sal.symtab != NULL)
4833 {
4834 ui_out_field_string (uiout, "file", sal.symtab->filename);
4835 ui_out_text (uiout, ":");
4836
4837 if (ui_out_is_mi_like_p (uiout))
4838 {
4839 char *fullname = symtab_to_fullname (sal.symtab);
4840
4841 if (fullname)
4842 ui_out_field_string (uiout, "fullname", fullname);
4843 }
4844 else
4845 ui_out_field_skip (uiout, "fullname");
4846
4847 ui_out_field_int (uiout, "line", sal.line);
4848 }
4849 else
4850 {
4851 ui_out_field_skip (uiout, "fullname");
4852 ui_out_field_skip (uiout, "line");
4853 }
4854
4855 ui_out_text (uiout, "\n");
4856 ui_out_text (uiout, extra_field_indent);
4857 ui_out_text (uiout, _("Data: \""));
4858 ui_out_field_string (uiout, "extra-data", marker->extra);
4859 ui_out_text (uiout, "\"\n");
4860
4861 if (!VEC_empty (breakpoint_p, tracepoints))
4862 {
4863 struct cleanup *cleanup_chain;
4864 int ix;
4865 struct breakpoint *b;
4866
4867 cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout,
4868 "tracepoints-at");
4869
4870 ui_out_text (uiout, extra_field_indent);
4871 ui_out_text (uiout, _("Probed by static tracepoints: "));
4872 for (ix = 0; VEC_iterate(breakpoint_p, tracepoints, ix, b); ix++)
4873 {
4874 if (ix > 0)
4875 ui_out_text (uiout, ", ");
4876 ui_out_text (uiout, "#");
4877 ui_out_field_int (uiout, "tracepoint-id", b->number);
4878 }
4879
4880 do_cleanups (cleanup_chain);
4881
4882 if (ui_out_is_mi_like_p (uiout))
4883 ui_out_field_int (uiout, "number-of-tracepoints",
4884 VEC_length(breakpoint_p, tracepoints));
4885 else
4886 ui_out_text (uiout, "\n");
4887 }
4888 VEC_free (breakpoint_p, tracepoints);
4889
4890 do_cleanups (bkpt_chain);
4891}
4892
4893static void
4894info_static_tracepoint_markers_command (char *arg, int from_tty)
4895{
4896 VEC(static_tracepoint_marker_p) *markers;
4897 struct cleanup *old_chain;
4898 struct static_tracepoint_marker *marker;
4899 struct ui_out *uiout = current_uiout;
4900 int i;
4901
4902 /* We don't have to check target_can_use_agent and agent's capability on
4903 static tracepoint here, in order to be compatible with older GDBserver.
4904 We don't check USE_AGENT is true or not, because static tracepoints
4905 don't work without in-process agent, so we don't bother users to type
4906 `set agent on' when to use static tracepoint. */
4907
4908 old_chain
4909 = make_cleanup_ui_out_table_begin_end (uiout, 5, -1,
4910 "StaticTracepointMarkersTable");
4911
4912 ui_out_table_header (uiout, 7, ui_left, "counter", "Cnt");
4913
4914 ui_out_table_header (uiout, 40, ui_left, "marker-id", "ID");
4915
4916 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb");
4917 if (gdbarch_addr_bit (target_gdbarch) <= 32)
4918 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");
4919 else
4920 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");
4921 ui_out_table_header (uiout, 40, ui_noalign, "what", "What");
4922
4923 ui_out_table_body (uiout);
4924
4925 markers = target_static_tracepoint_markers_by_strid (NULL);
4926 make_cleanup (VEC_cleanup (static_tracepoint_marker_p), &markers);
4927
4928 for (i = 0;
4929 VEC_iterate (static_tracepoint_marker_p,
4930 markers, i, marker);
4931 i++)
4932 {
4933 print_one_static_tracepoint_marker (i + 1, marker);
4934 release_static_tracepoint_marker (marker);
4935 }
4936
4937 do_cleanups (old_chain);
4938}
4939
4940/* The $_sdata convenience variable is a bit special. We don't know
4941 for sure type of the value until we actually have a chance to fetch
4942 the data --- the size of the object depends on what has been
4943 collected. We solve this by making $_sdata be an internalvar that
4944 creates a new value on access. */
4945
4946/* Return a new value with the correct type for the sdata object of
4947 the current trace frame. Return a void value if there's no object
4948 available. */
4949
4950static struct value *
4951sdata_make_value (struct gdbarch *gdbarch, struct internalvar *var,
4952 void *ignore)
4953{
4954 LONGEST size;
4955 gdb_byte *buf;
4956
4957 /* We need to read the whole object before we know its size. */
4958 size = target_read_alloc (&current_target,
4959 TARGET_OBJECT_STATIC_TRACE_DATA,
4960 NULL, &buf);
4961 if (size >= 0)
4962 {
4963 struct value *v;
4964 struct type *type;
4965
4966 type = init_vector_type (builtin_type (gdbarch)->builtin_true_char,
4967 size);
4968 v = allocate_value (type);
4969 memcpy (value_contents_raw (v), buf, size);
4970 xfree (buf);
4971 return v;
4972 }
4973 else
4974 return allocate_value (builtin_type (gdbarch)->builtin_void);
4975}
4976
4977#if !defined(HAVE_LIBEXPAT)
4978
4979struct traceframe_info *
4980parse_traceframe_info (const char *tframe_info)
4981{
4982 static int have_warned;
4983
4984 if (!have_warned)
4985 {
4986 have_warned = 1;
4987 warning (_("Can not parse XML trace frame info; XML support "
4988 "was disabled at compile time"));
4989 }
4990
4991 return NULL;
4992}
4993
4994#else /* HAVE_LIBEXPAT */
4995
4996#include "xml-support.h"
4997
4998/* Handle the start of a <memory> element. */
4999
5000static void
5001traceframe_info_start_memory (struct gdb_xml_parser *parser,
5002 const struct gdb_xml_element *element,
5003 void *user_data, VEC(gdb_xml_value_s) *attributes)
5004{
5005 struct traceframe_info *info = user_data;
5006 struct mem_range *r = VEC_safe_push (mem_range_s, info->memory, NULL);
5007 ULONGEST *start_p, *length_p;
5008
5009 start_p = xml_find_attribute (attributes, "start")->value;
5010 length_p = xml_find_attribute (attributes, "length")->value;
5011
5012 r->start = *start_p;
5013 r->length = *length_p;
5014}
5015
5016/* Discard the constructed trace frame info (if an error occurs). */
5017
5018static void
5019free_result (void *p)
5020{
5021 struct traceframe_info *result = p;
5022
5023 free_traceframe_info (result);
5024}
5025
5026/* The allowed elements and attributes for an XML memory map. */
5027
5028static const struct gdb_xml_attribute memory_attributes[] = {
5029 { "start", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
5030 { "length", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
5031 { NULL, GDB_XML_AF_NONE, NULL, NULL }
5032};
5033
5034static const struct gdb_xml_element traceframe_info_children[] = {
5035 { "memory", memory_attributes, NULL,
5036 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
5037 traceframe_info_start_memory, NULL },
5038 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
5039};
5040
5041static const struct gdb_xml_element traceframe_info_elements[] = {
5042 { "traceframe-info", NULL, traceframe_info_children, GDB_XML_EF_NONE,
5043 NULL, NULL },
5044 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
5045};
5046
5047/* Parse a traceframe-info XML document. */
5048
5049struct traceframe_info *
5050parse_traceframe_info (const char *tframe_info)
5051{
5052 struct traceframe_info *result;
5053 struct cleanup *back_to;
5054
5055 result = XCNEW (struct traceframe_info);
5056 back_to = make_cleanup (free_result, result);
5057
5058 if (gdb_xml_parse_quick (_("trace frame info"),
5059 "traceframe-info.dtd", traceframe_info_elements,
5060 tframe_info, result) == 0)
5061 {
5062 /* Parsed successfully, keep the result. */
5063 discard_cleanups (back_to);
5064
5065 return result;
5066 }
5067
5068 do_cleanups (back_to);
5069 return NULL;
5070}
5071
5072#endif /* HAVE_LIBEXPAT */
5073
5074/* Returns the traceframe_info object for the current traceframe.
5075 This is where we avoid re-fetching the object from the target if we
5076 already have it cached. */
5077
5078static struct traceframe_info *
5079get_traceframe_info (void)
5080{
5081 if (traceframe_info == NULL)
5082 traceframe_info = target_traceframe_info ();
5083
5084 return traceframe_info;
5085}
5086
5087/* If the target supports the query, return in RESULT the set of
5088 collected memory in the current traceframe, found within the LEN
5089 bytes range starting at MEMADDR. Returns true if the target
5090 supports the query, otherwise returns false, and RESULT is left
5091 undefined. */
5092
5093int
5094traceframe_available_memory (VEC(mem_range_s) **result,
5095 CORE_ADDR memaddr, ULONGEST len)
5096{
5097 struct traceframe_info *info = get_traceframe_info ();
5098
5099 if (info != NULL)
5100 {
5101 struct mem_range *r;
5102 int i;
5103
5104 *result = NULL;
5105
5106 for (i = 0; VEC_iterate (mem_range_s, info->memory, i, r); i++)
5107 if (mem_ranges_overlap (r->start, r->length, memaddr, len))
5108 {
5109 ULONGEST lo1, hi1, lo2, hi2;
5110 struct mem_range *nr;
5111
5112 lo1 = memaddr;
5113 hi1 = memaddr + len;
5114
5115 lo2 = r->start;
5116 hi2 = r->start + r->length;
5117
5118 nr = VEC_safe_push (mem_range_s, *result, NULL);
5119
5120 nr->start = max (lo1, lo2);
5121 nr->length = min (hi1, hi2) - nr->start;
5122 }
5123
5124 normalize_mem_ranges (*result);
5125 return 1;
5126 }
5127
5128 return 0;
5129}
5130
5131/* Implementation of `sdata' variable. */
5132
5133static const struct internalvar_funcs sdata_funcs =
5134{
5135 sdata_make_value,
5136 NULL,
5137 NULL
5138};
5139
5140/* module initialization */
5141void
5142_initialize_tracepoint (void)
5143{
5144 struct cmd_list_element *c;
5145
5146 /* Explicitly create without lookup, since that tries to create a
5147 value with a void typed value, and when we get here, gdbarch
5148 isn't initialized yet. At this point, we're quite sure there
5149 isn't another convenience variable of the same name. */
5150 create_internalvar_type_lazy ("_sdata", &sdata_funcs, NULL);
5151
5152 traceframe_number = -1;
5153 tracepoint_number = -1;
5154
5155 if (tracepoint_list.list == NULL)
5156 {
5157 tracepoint_list.listsize = 128;
5158 tracepoint_list.list = xmalloc
5159 (tracepoint_list.listsize * sizeof (struct memrange));
5160 }
5161 if (tracepoint_list.aexpr_list == NULL)
5162 {
5163 tracepoint_list.aexpr_listsize = 128;
5164 tracepoint_list.aexpr_list = xmalloc
5165 (tracepoint_list.aexpr_listsize * sizeof (struct agent_expr *));
5166 }
5167
5168 if (stepping_list.list == NULL)
5169 {
5170 stepping_list.listsize = 128;
5171 stepping_list.list = xmalloc
5172 (stepping_list.listsize * sizeof (struct memrange));
5173 }
5174
5175 if (stepping_list.aexpr_list == NULL)
5176 {
5177 stepping_list.aexpr_listsize = 128;
5178 stepping_list.aexpr_list = xmalloc
5179 (stepping_list.aexpr_listsize * sizeof (struct agent_expr *));
5180 }
5181
5182 add_info ("scope", scope_info,
5183 _("List the variables local to a scope"));
5184
5185 add_cmd ("tracepoints", class_trace, NULL,
5186 _("Tracing of program execution without stopping the program."),
5187 &cmdlist);
5188
5189 add_com ("tdump", class_trace, trace_dump_command,
5190 _("Print everything collected at the current tracepoint."));
5191
5192 add_com ("tsave", class_trace, trace_save_command, _("\
5193Save the trace data to a file.\n\
5194Use the '-r' option to direct the target to save directly to the file,\n\
5195using its own filesystem."));
5196
5197 c = add_com ("tvariable", class_trace, trace_variable_command,_("\
5198Define a trace state variable.\n\
5199Argument is a $-prefixed name, optionally followed\n\
5200by '=' and an expression that sets the initial value\n\
5201at the start of tracing."));
5202 set_cmd_completer (c, expression_completer);
5203
5204 add_cmd ("tvariable", class_trace, delete_trace_variable_command, _("\
5205Delete one or more trace state variables.\n\
5206Arguments are the names of the variables to delete.\n\
5207If no arguments are supplied, delete all variables."), &deletelist);
5208 /* FIXME add a trace variable completer. */
5209
5210 add_info ("tvariables", tvariables_info, _("\
5211Status of trace state variables and their values.\n\
5212"));
5213
5214 add_info ("static-tracepoint-markers",
5215 info_static_tracepoint_markers_command, _("\
5216List target static tracepoints markers.\n\
5217"));
5218
5219 add_prefix_cmd ("tfind", class_trace, trace_find_command, _("\
5220Select a trace frame;\n\
5221No argument means forward by one frame; '-' means backward by one frame."),
5222 &tfindlist, "tfind ", 1, &cmdlist);
5223
5224 add_cmd ("outside", class_trace, trace_find_outside_command, _("\
5225Select a trace frame whose PC is outside the given range (exclusive).\n\
5226Usage: tfind outside addr1, addr2"),
5227 &tfindlist);
5228
5229 add_cmd ("range", class_trace, trace_find_range_command, _("\
5230Select a trace frame whose PC is in the given range (inclusive).\n\
5231Usage: tfind range addr1,addr2"),
5232 &tfindlist);
5233
5234 add_cmd ("line", class_trace, trace_find_line_command, _("\
5235Select a trace frame by source line.\n\
5236Argument can be a line number (with optional source file),\n\
5237a function name, or '*' followed by an address.\n\
5238Default argument is 'the next source line that was traced'."),
5239 &tfindlist);
5240
5241 add_cmd ("tracepoint", class_trace, trace_find_tracepoint_command, _("\
5242Select a trace frame by tracepoint number.\n\
5243Default is the tracepoint for the current trace frame."),
5244 &tfindlist);
5245
5246 add_cmd ("pc", class_trace, trace_find_pc_command, _("\
5247Select a trace frame by PC.\n\
5248Default is the current PC, or the PC of the current trace frame."),
5249 &tfindlist);
5250
5251 add_cmd ("end", class_trace, trace_find_end_command, _("\
5252De-select any trace frame and resume 'live' debugging."),
5253 &tfindlist);
5254
5255 add_alias_cmd ("none", "end", class_trace, 0, &tfindlist);
5256
5257 add_cmd ("start", class_trace, trace_find_start_command,
5258 _("Select the first trace frame in the trace buffer."),
5259 &tfindlist);
5260
5261 add_com ("tstatus", class_trace, trace_status_command,
5262 _("Display the status of the current trace data collection."));
5263
5264 add_com ("tstop", class_trace, trace_stop_command, _("\
5265Stop trace data collection.\n\
5266Usage: tstop [ <notes> ... ]\n\
5267Any arguments supplied are recorded with the trace as a stop reason and\n\
5268reported by tstatus (if the target supports trace notes)."));
5269
5270 add_com ("tstart", class_trace, trace_start_command, _("\
5271Start trace data collection.\n\
5272Usage: tstart [ <notes> ... ]\n\
5273Any arguments supplied are recorded with the trace as a note and\n\
5274reported by tstatus (if the target supports trace notes)."));
5275
5276 add_com ("end", class_trace, end_actions_pseudocommand, _("\
5277Ends a list of commands or actions.\n\
5278Several GDB commands allow you to enter a list of commands or actions.\n\
5279Entering \"end\" on a line by itself is the normal way to terminate\n\
5280such a list.\n\n\
5281Note: the \"end\" command cannot be used at the gdb prompt."));
5282
5283 add_com ("while-stepping", class_trace, while_stepping_pseudocommand, _("\
5284Specify single-stepping behavior at a tracepoint.\n\
5285Argument is number of instructions to trace in single-step mode\n\
5286following the tracepoint. This command is normally followed by\n\
5287one or more \"collect\" commands, to specify what to collect\n\
5288while single-stepping.\n\n\
5289Note: this command can only be used in a tracepoint \"actions\" list."));
5290
5291 add_com_alias ("ws", "while-stepping", class_alias, 0);
5292 add_com_alias ("stepping", "while-stepping", class_alias, 0);
5293
5294 add_com ("collect", class_trace, collect_pseudocommand, _("\
5295Specify one or more data items to be collected at a tracepoint.\n\
5296Accepts a comma-separated list of (one or more) expressions. GDB will\n\
5297collect all data (variables, registers) referenced by that expression.\n\
5298Also accepts the following special arguments:\n\
5299 $regs -- all registers.\n\
5300 $args -- all function arguments.\n\
5301 $locals -- all variables local to the block/function scope.\n\
5302 $_sdata -- static tracepoint data (ignored for non-static tracepoints).\n\
5303Note: this command can only be used in a tracepoint \"actions\" list."));
5304
5305 add_com ("teval", class_trace, teval_pseudocommand, _("\
5306Specify one or more expressions to be evaluated at a tracepoint.\n\
5307Accepts a comma-separated list of (one or more) expressions.\n\
5308The result of each evaluation will be discarded.\n\
5309Note: this command can only be used in a tracepoint \"actions\" list."));
5310
5311 add_com ("actions", class_trace, trace_actions_command, _("\
5312Specify the actions to be taken at a tracepoint.\n\
5313Tracepoint actions may include collecting of specified data,\n\
5314single-stepping, or enabling/disabling other tracepoints,\n\
5315depending on target's capabilities."));
5316
5317 default_collect = xstrdup ("");
5318 add_setshow_string_cmd ("default-collect", class_trace,
5319 &default_collect, _("\
5320Set the list of expressions to collect by default"), _("\
5321Show the list of expressions to collect by default"), NULL,
5322 NULL, NULL,
5323 &setlist, &showlist);
5324
5325 add_setshow_boolean_cmd ("disconnected-tracing", no_class,
5326 &disconnected_tracing, _("\
5327Set whether tracing continues after GDB disconnects."), _("\
5328Show whether tracing continues after GDB disconnects."), _("\
5329Use this to continue a tracing run even if GDB disconnects\n\
5330or detaches from the target. You can reconnect later and look at\n\
5331trace data collected in the meantime."),
5332 set_disconnected_tracing,
5333 NULL,
5334 &setlist,
5335 &showlist);
5336
5337 add_setshow_boolean_cmd ("circular-trace-buffer", no_class,
5338 &circular_trace_buffer, _("\
5339Set target's use of circular trace buffer."), _("\
5340Show target's use of circular trace buffer."), _("\
5341Use this to make the trace buffer into a circular buffer,\n\
5342which will discard traceframes (oldest first) instead of filling\n\
5343up and stopping the trace run."),
5344 set_circular_trace_buffer,
5345 NULL,
5346 &setlist,
5347 &showlist);
5348
5349 add_setshow_string_cmd ("trace-user", class_trace,
5350 &trace_user, _("\
5351Set the user name to use for current and future trace runs"), _("\
5352Show the user name to use for current and future trace runs"), NULL,
5353 set_trace_user, NULL,
5354 &setlist, &showlist);
5355
5356 add_setshow_string_cmd ("trace-notes", class_trace,
5357 &trace_notes, _("\
5358Set notes string to use for current and future trace runs"), _("\
5359Show the notes string to use for current and future trace runs"), NULL,
5360 set_trace_notes, NULL,
5361 &setlist, &showlist);
5362
5363 add_setshow_string_cmd ("trace-stop-notes", class_trace,
5364 &trace_stop_notes, _("\
5365Set notes string to use for future tstop commands"), _("\
5366Show the notes string to use for future tstop commands"), NULL,
5367 set_trace_stop_notes, NULL,
5368 &setlist, &showlist);
5369
5370 init_tfile_ops ();
5371
5372 add_target (&tfile_ops);
5373}
This page took 0.058293 seconds and 4 git commands to generate.