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