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