tui-winsource: Remove failed-allocation logic
[deliverable/binutils-gdb.git] / gdb / tracepoint.c
CommitLineData
c906108c 1/* Tracing functionality for remote targets in custom GDB protocol
9f60d481 2
618f726f 3 Copyright (C) 1997-2016 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"
68c765e2 29#include "target-dcache.h"
c906108c 30#include "language.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"
176a6961 47#include "remote.h"
0fb4aa4b 48#include "source.h"
c906108c
SS
49#include "ax.h"
50#include "ax-gdb.h"
2a7498d8 51#include "memrange.h"
3065dfb6 52#include "cli/cli-utils.h"
55aa24fb 53#include "probe.h"
d0353e76 54#include "ctf.h"
614c279d 55#include "filestuff.h"
9c3d6531 56#include "rsp-low.h"
7951c4eb 57#include "tracefile.h"
f00aae0f 58#include "location.h"
325fac50 59#include <algorithm>
c906108c
SS
60
61/* readline include files */
dbda9972
AC
62#include "readline/readline.h"
63#include "readline/history.h"
c906108c
SS
64
65/* readline defines this. */
66#undef savestring
67
c906108c 68#include <unistd.h>
c906108c 69
d183932d
MS
70/* Maximum length of an agent aexpression.
71 This accounts for the fact that packets are limited to 400 bytes
c906108c
SS
72 (which includes everything -- including the checksum), and assumes
73 the worst case of maximum length for each of the pieces of a
74 continuation packet.
c5aa993b 75
c906108c
SS
76 NOTE: expressions get mem2hex'ed otherwise this would be twice as
77 large. (400 - 31)/2 == 184 */
78#define MAX_AGENT_EXPR_LEN 184
79
98c5b216
TT
80/* A hook used to notify the UI of tracepoint operations. */
81
82void (*deprecated_trace_find_hook) (char *arg, int from_tty);
83void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
c906108c 84
c906108c
SS
85/*
86 Tracepoint.c:
87
88 This module defines the following debugger commands:
89 trace : set a tracepoint on a function, line, or address.
90 info trace : list all debugger-defined tracepoints.
91 delete trace : delete one or more tracepoints.
92 enable trace : enable one or more tracepoints.
93 disable trace : disable one or more tracepoints.
94 actions : specify actions to be taken at a tracepoint.
95 passcount : specify a pass count for a tracepoint.
96 tstart : start a trace experiment.
97 tstop : stop a trace experiment.
98 tstatus : query the status of a trace experiment.
99 tfind : find a trace frame in the trace buffer.
100 tdump : print everything collected at the current tracepoint.
101 save-tracepoints : write tracepoint setup into a file.
102
103 This module defines the following user-visible debugger variables:
104 $trace_frame : sequence number of trace frame currently being debugged.
105 $trace_line : source line of trace frame currently being debugged.
106 $trace_file : source file of trace frame currently being debugged.
107 $tracepoint : tracepoint number of trace frame currently being debugged.
c5aa993b 108 */
c906108c
SS
109
110
111/* ======= Important global variables: ======= */
112
f61e138d
SS
113/* The list of all trace state variables. We don't retain pointers to
114 any of these for any reason - API is by name or number only - so it
115 works to have a vector of objects. */
116
117typedef struct trace_state_variable tsv_s;
118DEF_VEC_O(tsv_s);
119
120static VEC(tsv_s) *tvariables;
121
122/* The next integer to assign to a variable. */
123
124static int next_tsv_number = 1;
125
c906108c
SS
126/* Number of last traceframe collected. */
127static int traceframe_number;
128
129/* Tracepoint for last traceframe collected. */
130static int tracepoint_number;
131
b3b9301e
PA
132/* The traceframe info of the current traceframe. NULL if we haven't
133 yet attempted to fetch it, or if the target does not support
134 fetching this object, or if we're not inspecting a traceframe
135 presently. */
136static struct traceframe_info *traceframe_info;
137
c378eb4e 138/* Tracing command lists. */
c906108c
SS
139static struct cmd_list_element *tfindlist;
140
236f1d4d 141/* List of expressions to collect by default at each tracepoint hit. */
35b1e5cc 142char *default_collect = "";
236f1d4d 143
d5551862
SS
144static int disconnected_tracing;
145
4daf5ac0
SS
146/* This variable controls whether we ask the target for a linear or
147 circular trace buffer. */
148
149static int circular_trace_buffer;
150
f6f899bf
HAQ
151/* This variable is the requested trace buffer size, or -1 to indicate
152 that we don't care and leave it up to the target to set a size. */
153
154static int trace_buffer_size = -1;
155
f196051f
SS
156/* Textual notes applying to the current and/or future trace runs. */
157
158char *trace_user = NULL;
159
160/* Textual notes applying to the current and/or future trace runs. */
161
162char *trace_notes = NULL;
163
164/* Textual notes applying to the stopping of a trace. */
165
166char *trace_stop_notes = NULL;
167
c906108c 168/* ======= Important command functions: ======= */
a14ed312
KB
169static void trace_actions_command (char *, int);
170static void trace_start_command (char *, int);
171static void trace_stop_command (char *, int);
172static void trace_status_command (char *, int);
173static void trace_find_command (char *, int);
174static void trace_find_pc_command (char *, int);
175static void trace_find_tracepoint_command (char *, int);
176static void trace_find_line_command (char *, int);
177static void trace_find_range_command (char *, int);
178static void trace_find_outside_command (char *, int);
a14ed312 179static void trace_dump_command (char *, int);
c906108c
SS
180
181/* support routines */
c906108c
SS
182
183struct collection_list;
47b667de 184static char *mem2hex (gdb_byte *, char *, int);
392a587b 185
3ca73e0c
YQ
186static struct command_line *
187 all_tracepoint_actions_and_cleanup (struct breakpoint *t);
00bf0b85 188
a14ed312 189extern void _initialize_tracepoint (void);
c906108c 190
00bf0b85
SS
191static struct trace_status trace_status;
192
7951c4eb 193const char *stop_reason_names[] = {
00bf0b85
SS
194 "tunknown",
195 "tnotrun",
196 "tstop",
197 "tfull",
198 "tdisconnected",
6c28cbf2
SS
199 "tpasscount",
200 "terror"
00bf0b85
SS
201};
202
203struct trace_status *
eeae04df 204current_trace_status (void)
00bf0b85
SS
205{
206 return &trace_status;
207}
208
b3b9301e
PA
209/* Destroy INFO. */
210
211static void
212free_traceframe_info (struct traceframe_info *info)
213{
214 if (info != NULL)
215 {
216 VEC_free (mem_range_s, info->memory);
28a93511 217 VEC_free (int, info->tvars);
b3b9301e
PA
218
219 xfree (info);
220 }
221}
222
7a9dd1b2 223/* Free and clear the traceframe info cache of the current
b3b9301e
PA
224 traceframe. */
225
226static void
227clear_traceframe_info (void)
228{
229 free_traceframe_info (traceframe_info);
230 traceframe_info = NULL;
231}
232
c906108c
SS
233/* Set traceframe number to NUM. */
234static void
fba45db2 235set_traceframe_num (int num)
c906108c
SS
236{
237 traceframe_number = num;
4fa62494 238 set_internalvar_integer (lookup_internalvar ("trace_frame"), num);
c906108c
SS
239}
240
241/* Set tracepoint number to NUM. */
242static void
fba45db2 243set_tracepoint_num (int num)
c906108c
SS
244{
245 tracepoint_number = num;
4fa62494 246 set_internalvar_integer (lookup_internalvar ("tracepoint"), num);
c906108c
SS
247}
248
249/* Set externally visible debug variables for querying/printing
c378eb4e 250 the traceframe context (line, function, file). */
c906108c
SS
251
252static void
fb14de7b 253set_traceframe_context (struct frame_info *trace_frame)
c906108c 254{
fb14de7b 255 CORE_ADDR trace_pc;
24a00813
YQ
256 struct symbol *traceframe_fun;
257 struct symtab_and_line traceframe_sal;
fb14de7b 258
dba09041
PA
259 /* Save as globals for internal use. */
260 if (trace_frame != NULL
261 && get_frame_pc_if_available (trace_frame, &trace_pc))
262 {
263 traceframe_sal = find_pc_line (trace_pc, 0);
264 traceframe_fun = find_pc_function (trace_pc);
265
266 /* Save linenumber as "$trace_line", a debugger variable visible to
267 users. */
268 set_internalvar_integer (lookup_internalvar ("trace_line"),
269 traceframe_sal.line);
270 }
271 else
c906108c 272 {
dba09041
PA
273 init_sal (&traceframe_sal);
274 traceframe_fun = NULL;
4fa62494 275 set_internalvar_integer (lookup_internalvar ("trace_line"), -1);
c906108c
SS
276 }
277
d183932d
MS
278 /* Save func name as "$trace_func", a debugger variable visible to
279 users. */
4fa62494
UW
280 if (traceframe_fun == NULL
281 || SYMBOL_LINKAGE_NAME (traceframe_fun) == NULL)
282 clear_internalvar (lookup_internalvar ("trace_func"));
c906108c 283 else
78267919
UW
284 set_internalvar_string (lookup_internalvar ("trace_func"),
285 SYMBOL_LINKAGE_NAME (traceframe_fun));
c906108c 286
d183932d
MS
287 /* Save file name as "$trace_file", a debugger variable visible to
288 users. */
4e04028d 289 if (traceframe_sal.symtab == NULL)
4fa62494 290 clear_internalvar (lookup_internalvar ("trace_file"));
c906108c 291 else
78267919 292 set_internalvar_string (lookup_internalvar ("trace_file"),
05cba821 293 symtab_to_filename_for_display (traceframe_sal.symtab));
c906108c
SS
294}
295
f61e138d
SS
296/* Create a new trace state variable with the given name. */
297
298struct trace_state_variable *
299create_trace_state_variable (const char *name)
300{
301 struct trace_state_variable tsv;
302
303 memset (&tsv, 0, sizeof (tsv));
40e1c229 304 tsv.name = xstrdup (name);
f61e138d
SS
305 tsv.number = next_tsv_number++;
306 return VEC_safe_push (tsv_s, tvariables, &tsv);
307}
308
309/* Look for a trace state variable of the given name. */
310
311struct trace_state_variable *
312find_trace_state_variable (const char *name)
313{
314 struct trace_state_variable *tsv;
315 int ix;
316
317 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
318 if (strcmp (name, tsv->name) == 0)
319 return tsv;
320
321 return NULL;
322}
323
dc673c81
YQ
324/* Look for a trace state variable of the given number. Return NULL if
325 not found. */
326
327struct trace_state_variable *
328find_trace_state_variable_by_number (int number)
329{
330 struct trace_state_variable *tsv;
331 int ix;
332
333 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
334 if (tsv->number == number)
335 return tsv;
336
337 return NULL;
338}
339
70221824 340static void
f61e138d
SS
341delete_trace_state_variable (const char *name)
342{
343 struct trace_state_variable *tsv;
344 int ix;
345
346 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
347 if (strcmp (name, tsv->name) == 0)
348 {
134a2066
YQ
349 observer_notify_tsv_deleted (tsv);
350
40e1c229 351 xfree ((void *)tsv->name);
f61e138d 352 VEC_unordered_remove (tsv_s, tvariables, ix);
bb25a15c 353
f61e138d
SS
354 return;
355 }
356
357 warning (_("No trace variable named \"$%s\", not deleting"), name);
358}
359
1773c82c
HAQ
360/* Throws an error if NAME is not valid syntax for a trace state
361 variable's name. */
362
363void
364validate_trace_state_variable_name (const char *name)
365{
366 const char *p;
367
368 if (*name == '\0')
369 error (_("Must supply a non-empty variable name"));
370
371 /* All digits in the name is reserved for value history
372 references. */
373 for (p = name; isdigit (*p); p++)
374 ;
375 if (*p == '\0')
376 error (_("$%s is not a valid trace state variable name"), name);
377
378 for (p = name; isalnum (*p) || *p == '_'; p++)
379 ;
380 if (*p != '\0')
381 error (_("$%s is not a valid trace state variable name"), name);
382}
383
f61e138d
SS
384/* The 'tvariable' command collects a name and optional expression to
385 evaluate into an initial value. */
386
70221824 387static void
f61e138d
SS
388trace_variable_command (char *args, int from_tty)
389{
f61e138d 390 struct cleanup *old_chain;
f61e138d
SS
391 LONGEST initval = 0;
392 struct trace_state_variable *tsv;
1773c82c 393 char *name, *p;
f61e138d
SS
394
395 if (!args || !*args)
1773c82c
HAQ
396 error_no_arg (_("Syntax is $NAME [ = EXPR ]"));
397
398 /* Only allow two syntaxes; "$name" and "$name=value". */
399 p = skip_spaces (args);
f61e138d 400
1773c82c
HAQ
401 if (*p++ != '$')
402 error (_("Name of trace variable should start with '$'"));
f61e138d 403
1773c82c
HAQ
404 name = p;
405 while (isalnum (*p) || *p == '_')
406 p++;
407 name = savestring (name, p - name);
408 old_chain = make_cleanup (xfree, name);
f61e138d 409
1773c82c
HAQ
410 p = skip_spaces (p);
411 if (*p != '=' && *p != '\0')
f61e138d
SS
412 error (_("Syntax must be $NAME [ = EXPR ]"));
413
1773c82c 414 validate_trace_state_variable_name (name);
f61e138d 415
1773c82c
HAQ
416 if (*p == '=')
417 initval = value_as_long (parse_and_eval (++p));
f61e138d
SS
418
419 /* If the variable already exists, just change its initial value. */
1773c82c 420 tsv = find_trace_state_variable (name);
f61e138d
SS
421 if (tsv)
422 {
134a2066
YQ
423 if (tsv->initial_value != initval)
424 {
425 tsv->initial_value = initval;
426 observer_notify_tsv_modified (tsv);
427 }
3e43a32a
MS
428 printf_filtered (_("Trace state variable $%s "
429 "now has initial value %s.\n"),
f61e138d 430 tsv->name, plongest (tsv->initial_value));
f90824dc 431 do_cleanups (old_chain);
f61e138d
SS
432 return;
433 }
434
435 /* Create a new variable. */
1773c82c 436 tsv = create_trace_state_variable (name);
f61e138d
SS
437 tsv->initial_value = initval;
438
134a2066 439 observer_notify_tsv_created (tsv);
bb25a15c 440
3e43a32a
MS
441 printf_filtered (_("Trace state variable $%s "
442 "created, with initial value %s.\n"),
f61e138d
SS
443 tsv->name, plongest (tsv->initial_value));
444
445 do_cleanups (old_chain);
446}
447
70221824 448static void
f61e138d
SS
449delete_trace_variable_command (char *args, int from_tty)
450{
2a2287c7 451 int ix;
f61e138d
SS
452 char **argv;
453 struct cleanup *back_to;
f61e138d
SS
454
455 if (args == NULL)
456 {
457 if (query (_("Delete all trace state variables? ")))
458 VEC_free (tsv_s, tvariables);
459 dont_repeat ();
bb25a15c 460 observer_notify_tsv_deleted (NULL);
f61e138d
SS
461 return;
462 }
463
464 argv = gdb_buildargv (args);
465 back_to = make_cleanup_freeargv (argv);
466
2a2287c7 467 for (ix = 0; argv[ix] != NULL; ix++)
f61e138d 468 {
2a2287c7
MS
469 if (*argv[ix] == '$')
470 delete_trace_state_variable (argv[ix] + 1);
f61e138d 471 else
2a2287c7 472 warning (_("Name \"%s\" not prefixed with '$', ignoring"), argv[ix]);
f61e138d
SS
473 }
474
475 do_cleanups (back_to);
476
477 dont_repeat ();
478}
479
40e1c229
VP
480void
481tvariables_info_1 (void)
f61e138d
SS
482{
483 struct trace_state_variable *tsv;
484 int ix;
40e1c229
VP
485 int count = 0;
486 struct cleanup *back_to;
79a45e25 487 struct ui_out *uiout = current_uiout;
f61e138d 488
40e1c229 489 if (VEC_length (tsv_s, tvariables) == 0 && !ui_out_is_mi_like_p (uiout))
f61e138d
SS
490 {
491 printf_filtered (_("No trace state variables.\n"));
492 return;
493 }
494
35b1e5cc 495 /* Try to acquire values from the target. */
4baf5cf4 496 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix, ++count)
35b1e5cc
SS
497 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
498 &(tsv->value));
499
40e1c229
VP
500 back_to = make_cleanup_ui_out_table_begin_end (uiout, 3,
501 count, "trace-variables");
502 ui_out_table_header (uiout, 15, ui_left, "name", "Name");
503 ui_out_table_header (uiout, 11, ui_left, "initial", "Initial");
504 ui_out_table_header (uiout, 11, ui_left, "current", "Current");
505
506 ui_out_table_body (uiout);
f61e138d
SS
507
508 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
509 {
40e1c229
VP
510 struct cleanup *back_to2;
511 char *c;
512 char *name;
513
514 back_to2 = make_cleanup_ui_out_tuple_begin_end (uiout, "variable");
515
c4f7c687 516 name = concat ("$", tsv->name, (char *) NULL);
40e1c229
VP
517 make_cleanup (xfree, name);
518 ui_out_field_string (uiout, "name", name);
519 ui_out_field_string (uiout, "initial", plongest (tsv->initial_value));
520
f61e138d 521 if (tsv->value_known)
40e1c229
VP
522 c = plongest (tsv->value);
523 else if (ui_out_is_mi_like_p (uiout))
524 /* For MI, we prefer not to use magic string constants, but rather
525 omit the field completely. The difference between unknown and
526 undefined does not seem important enough to represent. */
527 c = NULL;
00bf0b85 528 else if (current_trace_status ()->running || traceframe_number >= 0)
f61e138d 529 /* The value is/was defined, but we don't have it. */
40e1c229 530 c = "<unknown>";
f61e138d
SS
531 else
532 /* It is not meaningful to ask about the value. */
40e1c229
VP
533 c = "<undefined>";
534 if (c)
535 ui_out_field_string (uiout, "current", c);
536 ui_out_text (uiout, "\n");
537
538 do_cleanups (back_to2);
f61e138d 539 }
40e1c229
VP
540
541 do_cleanups (back_to);
542}
543
544/* List all the trace state variables. */
545
546static void
547tvariables_info (char *args, int from_tty)
548{
549 tvariables_info_1 ();
f61e138d
SS
550}
551
8bf6485c
SS
552/* Stash definitions of tsvs into the given file. */
553
554void
555save_trace_state_variables (struct ui_file *fp)
556{
557 struct trace_state_variable *tsv;
558 int ix;
559
560 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
561 {
562 fprintf_unfiltered (fp, "tvariable $%s", tsv->name);
563 if (tsv->initial_value)
564 fprintf_unfiltered (fp, " = %s", plongest (tsv->initial_value));
565 fprintf_unfiltered (fp, "\n");
566 }
567}
568
c906108c
SS
569/* ACTIONS functions: */
570
c906108c 571/* The three functions:
c5aa993b
JM
572 collect_pseudocommand,
573 while_stepping_pseudocommand, and
574 end_actions_pseudocommand
c906108c
SS
575 are placeholders for "commands" that are actually ONLY to be used
576 within a tracepoint action list. If the actual function is ever called,
577 it means that somebody issued the "command" at the top level,
578 which is always an error. */
579
7b3ae3a6 580static void
fba45db2 581end_actions_pseudocommand (char *args, int from_tty)
c906108c 582{
8a3fe4f8 583 error (_("This command cannot be used at the top level."));
c906108c
SS
584}
585
7b3ae3a6 586static void
fba45db2 587while_stepping_pseudocommand (char *args, int from_tty)
c906108c 588{
8a3fe4f8 589 error (_("This command can only be used in a tracepoint actions list."));
c906108c
SS
590}
591
592static void
fba45db2 593collect_pseudocommand (char *args, int from_tty)
c906108c 594{
8a3fe4f8 595 error (_("This command can only be used in a tracepoint actions list."));
c906108c
SS
596}
597
6da95a67
SS
598static void
599teval_pseudocommand (char *args, int from_tty)
600{
601 error (_("This command can only be used in a tracepoint actions list."));
602}
603
3065dfb6
SS
604/* Parse any collection options, such as /s for strings. */
605
6f937416 606const char *
92bc6a20 607decode_agent_options (const char *exp, int *trace_string)
3065dfb6
SS
608{
609 struct value_print_options opts;
610
92bc6a20
TT
611 *trace_string = 0;
612
3065dfb6
SS
613 if (*exp != '/')
614 return exp;
615
616 /* Call this to borrow the print elements default for collection
617 size. */
618 get_user_print_options (&opts);
619
620 exp++;
621 if (*exp == 's')
622 {
623 if (target_supports_string_tracing ())
624 {
625 /* Allow an optional decimal number giving an explicit maximum
626 string length, defaulting it to the "print elements" value;
627 so "collect/s80 mystr" gets at most 80 bytes of string. */
92bc6a20 628 *trace_string = opts.print_max;
3065dfb6
SS
629 exp++;
630 if (*exp >= '0' && *exp <= '9')
92bc6a20 631 *trace_string = atoi (exp);
3065dfb6
SS
632 while (*exp >= '0' && *exp <= '9')
633 exp++;
634 }
635 else
636 error (_("Target does not support \"/s\" option for string tracing."));
637 }
638 else
639 error (_("Undefined collection format \"%c\"."), *exp);
640
6f937416 641 exp = skip_spaces_const (exp);
3065dfb6
SS
642
643 return exp;
644}
645
c906108c
SS
646/* Enter a list of actions for a tracepoint. */
647static void
fba45db2 648trace_actions_command (char *args, int from_tty)
c906108c 649{
d9b3f62e 650 struct tracepoint *t;
a7bdde9e 651 struct command_line *l;
c906108c 652
5fa1d40e 653 t = get_tracepoint_by_number (&args, NULL);
7a292a7a 654 if (t)
c906108c 655 {
a7bdde9e
VP
656 char *tmpbuf =
657 xstrprintf ("Enter actions for tracepoint %d, one per line.",
d9b3f62e 658 t->base.number);
a7bdde9e
VP
659 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
660
3e43a32a
MS
661 l = read_command_lines (tmpbuf, from_tty, 1,
662 check_tracepoint_command, t);
a7bdde9e 663 do_cleanups (cleanups);
d9b3f62e 664 breakpoint_set_commands (&t->base, l);
c906108c 665 }
5c44784c 666 /* else just return */
c906108c
SS
667}
668
fff87407
SS
669/* Report the results of checking the agent expression, as errors or
670 internal errors. */
671
672static void
35c9c7ba 673report_agent_reqs_errors (struct agent_expr *aexpr)
fff87407
SS
674{
675 /* All of the "flaws" are serious bytecode generation issues that
676 should never occur. */
35c9c7ba 677 if (aexpr->flaw != agent_flaw_none)
fff87407
SS
678 internal_error (__FILE__, __LINE__, _("expression is malformed"));
679
680 /* If analysis shows a stack underflow, GDB must have done something
681 badly wrong in its bytecode generation. */
35c9c7ba 682 if (aexpr->min_height < 0)
fff87407
SS
683 internal_error (__FILE__, __LINE__,
684 _("expression has min height < 0"));
685
686 /* Issue this error if the stack is predicted to get too deep. The
687 limit is rather arbitrary; a better scheme might be for the
688 target to report how much stack it will have available. The
689 depth roughly corresponds to parenthesization, so a limit of 20
690 amounts to 20 levels of expression nesting, which is actually
691 a pretty big hairy expression. */
35c9c7ba 692 if (aexpr->max_height > 20)
fff87407
SS
693 error (_("Expression is too complicated."));
694}
695
c906108c 696/* worker function */
fff87407 697void
6f937416 698validate_actionline (const char *line, struct breakpoint *b)
c906108c
SS
699{
700 struct cmd_list_element *c;
c906108c 701 struct cleanup *old_chain = NULL;
6f937416
PA
702 const char *tmp_p;
703 const char *p;
9355b391 704 struct bp_location *loc;
d9b3f62e 705 struct tracepoint *t = (struct tracepoint *) b;
c906108c 706
c378eb4e 707 /* If EOF is typed, *line is NULL. */
6f937416 708 if (line == NULL)
fff87407 709 return;
15255275 710
6f937416 711 p = skip_spaces_const (line);
c906108c 712
d183932d
MS
713 /* Symbol lookup etc. */
714 if (*p == '\0') /* empty line: just prompt for another line. */
fff87407 715 return;
c906108c 716
c5aa993b 717 if (*p == '#') /* comment line */
fff87407 718 return;
c906108c
SS
719
720 c = lookup_cmd (&p, cmdlist, "", -1, 1);
721 if (c == 0)
fff87407 722 error (_("`%s' is not a tracepoint action, or is ambiguous."), p);
c5aa993b 723
bbaca940 724 if (cmd_cfunc_eq (c, collect_pseudocommand))
c906108c 725 {
92bc6a20
TT
726 int trace_string = 0;
727
3065dfb6 728 if (*p == '/')
92bc6a20 729 p = decode_agent_options (p, &trace_string);
3065dfb6 730
c5aa993b 731 do
c378eb4e
MS
732 { /* Repeat over a comma-separated list. */
733 QUIT; /* Allow user to bail out with ^C. */
6f937416 734 p = skip_spaces_const (p);
c906108c 735
c378eb4e 736 if (*p == '$') /* Look for special pseudo-symbols. */
c5aa993b 737 {
0fb4aa4b
PA
738 if (0 == strncasecmp ("reg", p + 1, 3)
739 || 0 == strncasecmp ("arg", p + 1, 3)
740 || 0 == strncasecmp ("loc", p + 1, 3)
6710bf39 741 || 0 == strncasecmp ("_ret", p + 1, 4)
0fb4aa4b 742 || 0 == strncasecmp ("_sdata", p + 1, 6))
c5aa993b
JM
743 {
744 p = strchr (p, ',');
745 continue;
746 }
d183932d 747 /* else fall thru, treat p as an expression and parse it! */
c5aa993b 748 }
9355b391 749 tmp_p = p;
d9b3f62e 750 for (loc = t->base.loc; loc; loc = loc->next)
c5aa993b 751 {
6f937416 752 p = tmp_p;
4d01a485
PA
753 expression_up exp = parse_exp_1 (&p, loc->address,
754 block_for_pc (loc->address), 1);
9355b391
SS
755
756 if (exp->elts[0].opcode == OP_VAR_VALUE)
c5aa993b 757 {
9355b391
SS
758 if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_CONST)
759 {
12df843f 760 error (_("constant `%s' (value %s) "
3e43a32a 761 "will not be collected."),
fff87407 762 SYMBOL_PRINT_NAME (exp->elts[2].symbol),
12df843f 763 plongest (SYMBOL_VALUE (exp->elts[2].symbol)));
9355b391 764 }
3e43a32a
MS
765 else if (SYMBOL_CLASS (exp->elts[2].symbol)
766 == LOC_OPTIMIZED_OUT)
9355b391 767 {
3e43a32a
MS
768 error (_("`%s' is optimized away "
769 "and cannot be collected."),
fff87407 770 SYMBOL_PRINT_NAME (exp->elts[2].symbol));
9355b391 771 }
c5aa993b 772 }
c906108c 773
9355b391
SS
774 /* We have something to collect, make sure that the expr to
775 bytecode translator can handle it and that it's not too
776 long. */
833177a4
PA
777 agent_expr_up aexpr = gen_trace_for_expr (loc->address,
778 exp.get (),
779 trace_string);
c906108c 780
9355b391 781 if (aexpr->len > MAX_AGENT_EXPR_LEN)
fff87407 782 error (_("Expression is too complicated."));
c906108c 783
833177a4 784 ax_reqs (aexpr.get ());
c906108c 785
833177a4 786 report_agent_reqs_errors (aexpr.get ());
9355b391 787 }
c5aa993b
JM
788 }
789 while (p && *p++ == ',');
c906108c 790 }
fff87407 791
6da95a67
SS
792 else if (cmd_cfunc_eq (c, teval_pseudocommand))
793 {
6da95a67 794 do
c378eb4e
MS
795 { /* Repeat over a comma-separated list. */
796 QUIT; /* Allow user to bail out with ^C. */
6f937416 797 p = skip_spaces_const (p);
6da95a67 798
9355b391 799 tmp_p = p;
d9b3f62e 800 for (loc = t->base.loc; loc; loc = loc->next)
9355b391 801 {
6f937416 802 p = tmp_p;
bbc13ae3 803
9355b391 804 /* Only expressions are allowed for this action. */
4d01a485
PA
805 expression_up exp = parse_exp_1 (&p, loc->address,
806 block_for_pc (loc->address), 1);
6da95a67 807
9355b391
SS
808 /* We have something to evaluate, make sure that the expr to
809 bytecode translator can handle it and that it's not too
810 long. */
833177a4 811 agent_expr_up aexpr = gen_eval_for_expr (loc->address, exp.get ());
6da95a67 812
9355b391 813 if (aexpr->len > MAX_AGENT_EXPR_LEN)
fff87407
SS
814 error (_("Expression is too complicated."));
815
833177a4
PA
816 ax_reqs (aexpr.get ());
817 report_agent_reqs_errors (aexpr.get ());
9355b391 818 }
6da95a67
SS
819 }
820 while (p && *p++ == ',');
6da95a67 821 }
fff87407 822
bbaca940 823 else if (cmd_cfunc_eq (c, while_stepping_pseudocommand))
c906108c 824 {
6f937416 825 char *endp;
c906108c 826
6f937416
PA
827 p = skip_spaces_const (p);
828 t->step_count = strtol (p, &endp, 0);
829 if (endp == p || t->step_count == 0)
830 error (_("while-stepping step count `%s' is malformed."), line);
831 p = endp;
c906108c 832 }
fff87407 833
bbaca940 834 else if (cmd_cfunc_eq (c, end_actions_pseudocommand))
fff87407
SS
835 ;
836
c906108c 837 else
6f937416 838 error (_("`%s' is not a supported tracepoint action."), line);
74b7792f
AC
839}
840
f50e79a4
JB
841enum {
842 memrange_absolute = -1
843};
844
c906108c
SS
845/* MEMRANGE functions: */
846
1f45808e 847/* Compare memranges for std::sort. */
c906108c 848
1f45808e
PA
849static bool
850memrange_comp (const memrange &a, const memrange &b)
c906108c 851{
1f45808e 852 if (a.type == b.type)
c906108c 853 {
1f45808e
PA
854 if (a.type == memrange_absolute)
855 return (bfd_vma) a.start < (bfd_vma) b.start;
856 else
857 return a.start < b.start;
c906108c 858 }
1f45808e
PA
859
860 return a.type < b.type;
c906108c
SS
861}
862
1f45808e
PA
863/* Sort the memrange list using std::sort, and merge adjacent memranges. */
864
c906108c 865static void
1f45808e 866memrange_sortmerge (std::vector<memrange> &memranges)
c906108c 867{
1f45808e 868 if (!memranges.empty ())
c906108c 869 {
1f45808e
PA
870 int a, b;
871
872 std::sort (memranges.begin (), memranges.end (), memrange_comp);
873
874 for (a = 0, b = 1; b < memranges.size (); b++)
c906108c 875 {
1b28d0b3
PA
876 /* If memrange b overlaps or is adjacent to memrange a,
877 merge them. */
1f45808e
PA
878 if (memranges[a].type == memranges[b].type
879 && memranges[b].start <= memranges[a].end)
c906108c 880 {
1f45808e
PA
881 if (memranges[b].end > memranges[a].end)
882 memranges[a].end = memranges[b].end;
c906108c
SS
883 continue; /* next b, same a */
884 }
885 a++; /* next a */
886 if (a != b)
1f45808e 887 memranges[a] = memranges[b];
c906108c 888 }
1f45808e 889 memranges.resize (a + 1);
c906108c
SS
890 }
891}
892
d183932d 893/* Add a register to a collection list. */
1f45808e
PA
894
895void
896collection_list::add_register (unsigned int regno)
c906108c
SS
897{
898 if (info_verbose)
899 printf_filtered ("collect register %d\n", regno);
1f45808e 900 if (regno >= (8 * sizeof (m_regs_mask)))
8a3fe4f8 901 error (_("Internal: register number %d too large for tracepoint"),
c906108c 902 regno);
1f45808e 903 m_regs_mask[regno / 8] |= 1 << (regno % 8);
c906108c
SS
904}
905
c378eb4e 906/* Add a memrange to a collection list. */
1f45808e
PA
907
908void
909collection_list::add_memrange (int type, bfd_signed_vma base,
910 unsigned long len)
c906108c
SS
911{
912 if (info_verbose)
104c1213
JM
913 {
914 printf_filtered ("(%d,", type);
915 printf_vma (base);
916 printf_filtered (",%ld)\n", len);
917 }
918
f50e79a4 919 /* type: memrange_absolute == memory, other n == basereg */
d183932d 920 /* base: addr if memory, offset if reg relative. */
c906108c 921 /* len: we actually save end (base + len) for convenience */
1f45808e 922 m_memranges.push_back (memrange (type, base, base + len));
c906108c 923
3e43a32a 924 if (type != memrange_absolute) /* Better collect the base register! */
1f45808e 925 add_register (type);
c906108c
SS
926}
927
d183932d 928/* Add a symbol to a collection list. */
1f45808e
PA
929
930void
931collection_list::collect_symbol (struct symbol *sym,
932 struct gdbarch *gdbarch,
933 long frame_regno, long frame_offset,
934 CORE_ADDR scope,
935 int trace_string)
c906108c 936{
c5aa993b 937 unsigned long len;
104c1213 938 unsigned int reg;
c906108c 939 bfd_signed_vma offset;
400c6af0 940 int treat_as_expr = 0;
c906108c 941
c5aa993b
JM
942 len = TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym)));
943 switch (SYMBOL_CLASS (sym))
944 {
945 default:
946 printf_filtered ("%s: don't know symbol class %d\n",
3567439c 947 SYMBOL_PRINT_NAME (sym),
d183932d 948 SYMBOL_CLASS (sym));
c5aa993b
JM
949 break;
950 case LOC_CONST:
12df843f
JK
951 printf_filtered ("constant %s (value %s) will not be collected.\n",
952 SYMBOL_PRINT_NAME (sym), plongest (SYMBOL_VALUE (sym)));
c5aa993b
JM
953 break;
954 case LOC_STATIC:
955 offset = SYMBOL_VALUE_ADDRESS (sym);
956 if (info_verbose)
104c1213
JM
957 {
958 char tmp[40];
959
960 sprintf_vma (tmp, offset);
961 printf_filtered ("LOC_STATIC %s: collect %ld bytes at %s.\n",
3567439c 962 SYMBOL_PRINT_NAME (sym), len,
d183932d 963 tmp /* address */);
104c1213 964 }
400c6af0
SS
965 /* A struct may be a C++ class with static fields, go to general
966 expression handling. */
967 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT)
968 treat_as_expr = 1;
969 else
1f45808e 970 add_memrange (memrange_absolute, offset, len);
c5aa993b
JM
971 break;
972 case LOC_REGISTER:
a6d9a66e 973 reg = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
c5aa993b 974 if (info_verbose)
d183932d 975 printf_filtered ("LOC_REG[parm] %s: ",
3567439c 976 SYMBOL_PRINT_NAME (sym));
1f45808e 977 add_register (reg);
d183932d
MS
978 /* Check for doubles stored in two registers. */
979 /* FIXME: how about larger types stored in 3 or more regs? */
c5aa993b 980 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FLT &&
a6d9a66e 981 len > register_size (gdbarch, reg))
1f45808e 982 add_register (reg + 1);
c5aa993b
JM
983 break;
984 case LOC_REF_ARG:
985 printf_filtered ("Sorry, don't know how to do LOC_REF_ARG yet.\n");
986 printf_filtered (" (will not collect %s)\n",
3567439c 987 SYMBOL_PRINT_NAME (sym));
c5aa993b
JM
988 break;
989 case LOC_ARG:
990 reg = frame_regno;
991 offset = frame_offset + SYMBOL_VALUE (sym);
992 if (info_verbose)
993 {
104c1213 994 printf_filtered ("LOC_LOCAL %s: Collect %ld bytes at offset ",
3567439c 995 SYMBOL_PRINT_NAME (sym), len);
104c1213
JM
996 printf_vma (offset);
997 printf_filtered (" from frame ptr reg %d\n", reg);
c5aa993b 998 }
1f45808e 999 add_memrange (reg, offset, len);
c5aa993b
JM
1000 break;
1001 case LOC_REGPARM_ADDR:
1002 reg = SYMBOL_VALUE (sym);
1003 offset = 0;
1004 if (info_verbose)
1005 {
104c1213 1006 printf_filtered ("LOC_REGPARM_ADDR %s: Collect %ld bytes at offset ",
3567439c 1007 SYMBOL_PRINT_NAME (sym), len);
104c1213
JM
1008 printf_vma (offset);
1009 printf_filtered (" from reg %d\n", reg);
c5aa993b 1010 }
1f45808e 1011 add_memrange (reg, offset, len);
c5aa993b
JM
1012 break;
1013 case LOC_LOCAL:
c5aa993b
JM
1014 reg = frame_regno;
1015 offset = frame_offset + SYMBOL_VALUE (sym);
1016 if (info_verbose)
1017 {
104c1213 1018 printf_filtered ("LOC_LOCAL %s: Collect %ld bytes at offset ",
3567439c 1019 SYMBOL_PRINT_NAME (sym), len);
104c1213
JM
1020 printf_vma (offset);
1021 printf_filtered (" from frame ptr reg %d\n", reg);
c5aa993b 1022 }
1f45808e 1023 add_memrange (reg, offset, len);
c5aa993b 1024 break;
a0405854 1025
c5aa993b 1026 case LOC_UNRESOLVED:
a0405854 1027 treat_as_expr = 1;
c5aa993b 1028 break;
a0405854 1029
c5aa993b 1030 case LOC_OPTIMIZED_OUT:
8e1a459b 1031 printf_filtered ("%s has been optimized out of existence.\n",
3567439c 1032 SYMBOL_PRINT_NAME (sym));
c5aa993b 1033 break;
0936ad1d
SS
1034
1035 case LOC_COMPUTED:
400c6af0 1036 treat_as_expr = 1;
0936ad1d 1037 break;
c5aa993b 1038 }
400c6af0
SS
1039
1040 /* Expressions are the most general case. */
1041 if (treat_as_expr)
1042 {
400c6af0 1043 struct cleanup *old_chain1 = NULL;
400c6af0 1044
833177a4
PA
1045 agent_expr_up aexpr = gen_trace_for_var (scope, gdbarch,
1046 sym, trace_string);
400c6af0
SS
1047
1048 /* It can happen that the symbol is recorded as a computed
1049 location, but it's been optimized away and doesn't actually
1050 have a location expression. */
1051 if (!aexpr)
1052 {
1053 printf_filtered ("%s has been optimized out of existence.\n",
1054 SYMBOL_PRINT_NAME (sym));
1055 return;
1056 }
1057
833177a4 1058 ax_reqs (aexpr.get ());
fff87407 1059
833177a4 1060 report_agent_reqs_errors (aexpr.get ());
400c6af0 1061
c378eb4e 1062 /* Take care of the registers. */
35c9c7ba 1063 if (aexpr->reg_mask_len > 0)
400c6af0 1064 {
833177a4 1065 for (int ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
400c6af0 1066 {
c378eb4e 1067 QUIT; /* Allow user to bail out with ^C. */
35c9c7ba 1068 if (aexpr->reg_mask[ndx1] != 0)
400c6af0 1069 {
c378eb4e 1070 /* Assume chars have 8 bits. */
833177a4 1071 for (int ndx2 = 0; ndx2 < 8; ndx2++)
35c9c7ba 1072 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
c378eb4e 1073 /* It's used -- record it. */
1f45808e 1074 add_register (ndx1 * 8 + ndx2);
400c6af0
SS
1075 }
1076 }
1077 }
833177a4
PA
1078
1079 add_aexpr (gdb::move (aexpr));
400c6af0 1080 }
c906108c
SS
1081}
1082
2c58c0a9
PA
1083/* Data to be passed around in the calls to the locals and args
1084 iterators. */
1085
1086struct add_local_symbols_data
1087{
1088 struct collection_list *collect;
1089 struct gdbarch *gdbarch;
1090 CORE_ADDR pc;
1091 long frame_regno;
1092 long frame_offset;
1093 int count;
92bc6a20 1094 int trace_string;
2c58c0a9
PA
1095};
1096
c378eb4e 1097/* The callback for the locals and args iterators. */
2c58c0a9
PA
1098
1099static void
1100do_collect_symbol (const char *print_name,
1101 struct symbol *sym,
1102 void *cb_data)
1103{
19ba03f4 1104 struct add_local_symbols_data *p = (struct add_local_symbols_data *) cb_data;
2c58c0a9 1105
1f45808e
PA
1106 p->collect->collect_symbol (sym, p->gdbarch, p->frame_regno,
1107 p->frame_offset, p->pc, p->trace_string);
2c58c0a9 1108 p->count++;
dc673c81 1109
1f45808e
PA
1110 p->collect->add_wholly_collected (print_name);
1111}
1112
1113void
1114collection_list::add_wholly_collected (const char *print_name)
1115{
1116 m_wholly_collected.push_back (print_name);
2c58c0a9
PA
1117}
1118
c378eb4e 1119/* Add all locals (or args) symbols to collection list. */
1f45808e
PA
1120
1121void
1122collection_list::add_local_symbols (struct gdbarch *gdbarch, CORE_ADDR pc,
1123 long frame_regno, long frame_offset, int type,
1124 int trace_string)
c906108c 1125{
3977b71f 1126 const struct block *block;
2c58c0a9
PA
1127 struct add_local_symbols_data cb_data;
1128
1f45808e 1129 cb_data.collect = this;
2c58c0a9
PA
1130 cb_data.gdbarch = gdbarch;
1131 cb_data.pc = pc;
1132 cb_data.frame_regno = frame_regno;
1133 cb_data.frame_offset = frame_offset;
1134 cb_data.count = 0;
92bc6a20 1135 cb_data.trace_string = trace_string;
c906108c 1136
2c58c0a9 1137 if (type == 'L')
c906108c 1138 {
2c58c0a9
PA
1139 block = block_for_pc (pc);
1140 if (block == NULL)
c906108c 1141 {
2c58c0a9
PA
1142 warning (_("Can't collect locals; "
1143 "no symbol table info available.\n"));
1144 return;
c906108c 1145 }
2c58c0a9
PA
1146
1147 iterate_over_block_local_vars (block, do_collect_symbol, &cb_data);
1148 if (cb_data.count == 0)
1149 warning (_("No locals found in scope."));
1150 }
1151 else
1152 {
1153 pc = get_pc_function_start (pc);
1154 block = block_for_pc (pc);
1155 if (block == NULL)
1156 {
b37520b6 1157 warning (_("Can't collect args; no symbol table info available."));
2c58c0a9
PA
1158 return;
1159 }
1160
1161 iterate_over_block_arg_vars (block, do_collect_symbol, &cb_data);
1162 if (cb_data.count == 0)
1163 warning (_("No args found in scope."));
c906108c 1164 }
c906108c
SS
1165}
1166
1f45808e
PA
1167void
1168collection_list::add_static_trace_data ()
0fb4aa4b
PA
1169{
1170 if (info_verbose)
1171 printf_filtered ("collect static trace data\n");
1f45808e 1172 m_strace_data = true;
cbfa3b61
YQ
1173}
1174
1f45808e
PA
1175collection_list::collection_list ()
1176 : m_regs_mask (),
1177 m_strace_data (false)
cbfa3b61 1178{
1f45808e
PA
1179 m_memranges.reserve (128);
1180 m_aexprs.reserve (128);
cbfa3b61
YQ
1181}
1182
1f45808e 1183collection_list::~collection_list ()
cbfa3b61 1184{
1f45808e 1185 for (int ndx = 0; ndx < m_aexprs.size (); ndx++)
833177a4 1186 delete m_aexprs[ndx];
c906108c
SS
1187}
1188
c378eb4e 1189/* Reduce a collection list to string form (for gdb protocol). */
1f45808e
PA
1190
1191char **
1192collection_list::stringify ()
c906108c
SS
1193{
1194 char temp_buf[2048];
104c1213 1195 char tmp2[40];
c906108c
SS
1196 int count;
1197 int ndx = 0;
1198 char *(*str_list)[];
1199 char *end;
c5aa993b 1200 long i;
c906108c 1201
1f45808e 1202 count = 1 + 1 + m_memranges.size () + m_aexprs.size () + 1;
c5aa993b 1203 str_list = (char *(*)[]) xmalloc (count * sizeof (char *));
c906108c 1204
1f45808e 1205 if (m_strace_data)
0fb4aa4b
PA
1206 {
1207 if (info_verbose)
1208 printf_filtered ("\nCollecting static trace data\n");
1209 end = temp_buf;
1210 *end++ = 'L';
1211 (*str_list)[ndx] = savestring (temp_buf, end - temp_buf);
1212 ndx++;
1213 }
1214
1f45808e
PA
1215 for (i = sizeof (m_regs_mask) - 1; i > 0; i--)
1216 if (m_regs_mask[i] != 0) /* Skip leading zeroes in regs_mask. */
c906108c 1217 break;
1f45808e 1218 if (m_regs_mask[i] != 0) /* Prepare to send regs_mask to the stub. */
c906108c
SS
1219 {
1220 if (info_verbose)
1221 printf_filtered ("\nCollecting registers (mask): 0x");
1222 end = temp_buf;
c5aa993b 1223 *end++ = 'R';
c906108c
SS
1224 for (; i >= 0; i--)
1225 {
c378eb4e 1226 QUIT; /* Allow user to bail out with ^C. */
c906108c 1227 if (info_verbose)
1f45808e
PA
1228 printf_filtered ("%02X", m_regs_mask[i]);
1229 sprintf (end, "%02X", m_regs_mask[i]);
c906108c
SS
1230 end += 2;
1231 }
1b36a34b 1232 (*str_list)[ndx] = xstrdup (temp_buf);
c906108c
SS
1233 ndx++;
1234 }
1235 if (info_verbose)
1236 printf_filtered ("\n");
1f45808e 1237 if (!m_memranges.empty () && info_verbose)
c906108c 1238 printf_filtered ("Collecting memranges: \n");
1f45808e 1239 for (i = 0, count = 0, end = temp_buf; i < m_memranges.size (); i++)
c906108c 1240 {
c378eb4e 1241 QUIT; /* Allow user to bail out with ^C. */
1f45808e 1242 sprintf_vma (tmp2, m_memranges[i].start);
c906108c 1243 if (info_verbose)
104c1213
JM
1244 {
1245 printf_filtered ("(%d, %s, %ld)\n",
1f45808e 1246 m_memranges[i].type,
104c1213 1247 tmp2,
1f45808e
PA
1248 (long) (m_memranges[i].end
1249 - m_memranges[i].start));
104c1213 1250 }
c906108c
SS
1251 if (count + 27 > MAX_AGENT_EXPR_LEN)
1252 {
c5aa993b 1253 (*str_list)[ndx] = savestring (temp_buf, count);
c906108c
SS
1254 ndx++;
1255 count = 0;
1256 end = temp_buf;
1257 }
104c1213 1258
d1948716 1259 {
1f45808e
PA
1260 bfd_signed_vma length
1261 = m_memranges[i].end - m_memranges[i].start;
d1948716
JB
1262
1263 /* The "%X" conversion specifier expects an unsigned argument,
f50e79a4
JB
1264 so passing -1 (memrange_absolute) to it directly gives you
1265 "FFFFFFFF" (or more, depending on sizeof (unsigned)).
1266 Special-case it. */
1f45808e 1267 if (m_memranges[i].type == memrange_absolute)
d1948716
JB
1268 sprintf (end, "M-1,%s,%lX", tmp2, (long) length);
1269 else
1f45808e 1270 sprintf (end, "M%X,%s,%lX", m_memranges[i].type, tmp2, (long) length);
d1948716 1271 }
104c1213 1272
c906108c 1273 count += strlen (end);
3ffbc0a5 1274 end = temp_buf + count;
c906108c
SS
1275 }
1276
1f45808e 1277 for (i = 0; i < m_aexprs.size (); i++)
c906108c 1278 {
c378eb4e 1279 QUIT; /* Allow user to bail out with ^C. */
1f45808e 1280 if ((count + 10 + 2 * m_aexprs[i]->len) > MAX_AGENT_EXPR_LEN)
c906108c 1281 {
c5aa993b 1282 (*str_list)[ndx] = savestring (temp_buf, count);
c906108c
SS
1283 ndx++;
1284 count = 0;
1285 end = temp_buf;
1286 }
1f45808e 1287 sprintf (end, "X%08X,", m_aexprs[i]->len);
c906108c
SS
1288 end += 10; /* 'X' + 8 hex digits + ',' */
1289 count += 10;
1290
1f45808e
PA
1291 end = mem2hex (m_aexprs[i]->buf, end, m_aexprs[i]->len);
1292 count += 2 * m_aexprs[i]->len;
c906108c
SS
1293 }
1294
1295 if (count != 0)
1296 {
c5aa993b 1297 (*str_list)[ndx] = savestring (temp_buf, count);
c906108c
SS
1298 ndx++;
1299 count = 0;
1300 end = temp_buf;
1301 }
1302 (*str_list)[ndx] = NULL;
1303
1304 if (ndx == 0)
27e06d3e 1305 {
6c761d9c 1306 xfree (str_list);
27e06d3e
MS
1307 return NULL;
1308 }
c906108c
SS
1309 else
1310 return *str_list;
1311}
1312
dc673c81
YQ
1313/* Add the printed expression EXP to *LIST. */
1314
1f45808e
PA
1315void
1316collection_list::append_exp (struct expression *exp)
dc673c81
YQ
1317{
1318 struct ui_file *tmp_stream = mem_fileopen ();
dc673c81
YQ
1319
1320 print_expression (exp, tmp_stream);
1321
1f45808e 1322 m_computed.push_back (ui_file_as_string (tmp_stream));
dc673c81
YQ
1323 ui_file_delete (tmp_stream);
1324}
a7bdde9e 1325
1f45808e
PA
1326void
1327collection_list::finish ()
1328{
1329 memrange_sortmerge (m_memranges);
1330}
1331
a7bdde9e
VP
1332static void
1333encode_actions_1 (struct command_line *action,
a7bdde9e
VP
1334 struct bp_location *tloc,
1335 int frame_reg,
1336 LONGEST frame_offset,
1337 struct collection_list *collect,
1338 struct collection_list *stepping_list)
c906108c 1339{
6f937416 1340 const char *action_exp;
104c1213 1341 int i;
f976f6d4 1342 struct value *tempval;
c906108c 1343 struct cmd_list_element *cmd;
236f1d4d
SS
1344
1345 for (; action; action = action->next)
c906108c 1346 {
c378eb4e 1347 QUIT; /* Allow user to bail out with ^C. */
a7bdde9e 1348 action_exp = action->line;
6f937416 1349 action_exp = skip_spaces_const (action_exp);
c906108c 1350
c906108c
SS
1351 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
1352 if (cmd == 0)
8a3fe4f8 1353 error (_("Bad action list item: %s"), action_exp);
c906108c 1354
bbaca940 1355 if (cmd_cfunc_eq (cmd, collect_pseudocommand))
c906108c 1356 {
92bc6a20
TT
1357 int trace_string = 0;
1358
3065dfb6 1359 if (*action_exp == '/')
92bc6a20 1360 action_exp = decode_agent_options (action_exp, &trace_string);
3065dfb6 1361
c5aa993b 1362 do
c378eb4e
MS
1363 { /* Repeat over a comma-separated list. */
1364 QUIT; /* Allow user to bail out with ^C. */
6f937416 1365 action_exp = skip_spaces_const (action_exp);
c906108c 1366
c5aa993b
JM
1367 if (0 == strncasecmp ("$reg", action_exp, 4))
1368 {
82e9becd 1369 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
1f45808e 1370 collect->add_register (i);
c5aa993b
JM
1371 action_exp = strchr (action_exp, ','); /* more? */
1372 }
1373 else if (0 == strncasecmp ("$arg", action_exp, 4))
1374 {
1f45808e
PA
1375 collect->add_local_symbols (target_gdbarch (),
1376 tloc->address,
1377 frame_reg,
1378 frame_offset,
1379 'A',
1380 trace_string);
c5aa993b
JM
1381 action_exp = strchr (action_exp, ','); /* more? */
1382 }
1383 else if (0 == strncasecmp ("$loc", action_exp, 4))
1384 {
1f45808e
PA
1385 collect->add_local_symbols (target_gdbarch (),
1386 tloc->address,
1387 frame_reg,
1388 frame_offset,
1389 'L',
1390 trace_string);
c5aa993b
JM
1391 action_exp = strchr (action_exp, ','); /* more? */
1392 }
6710bf39
SS
1393 else if (0 == strncasecmp ("$_ret", action_exp, 5))
1394 {
833177a4
PA
1395 agent_expr_up aexpr
1396 = gen_trace_for_return_address (tloc->address,
1397 target_gdbarch (),
1398 trace_string);
6710bf39 1399
833177a4
PA
1400 ax_reqs (aexpr.get ());
1401 report_agent_reqs_errors (aexpr.get ());
6710bf39
SS
1402
1403 /* take care of the registers */
1404 if (aexpr->reg_mask_len > 0)
1405 {
833177a4 1406 for (int ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
6710bf39
SS
1407 {
1408 QUIT; /* allow user to bail out with ^C */
1409 if (aexpr->reg_mask[ndx1] != 0)
1410 {
1411 /* assume chars have 8 bits */
833177a4 1412 for (int ndx2 = 0; ndx2 < 8; ndx2++)
6710bf39 1413 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
1f45808e
PA
1414 {
1415 /* It's used -- record it. */
1416 collect->add_register (ndx1 * 8 + ndx2);
1417 }
6710bf39
SS
1418 }
1419 }
1420 }
1421
833177a4 1422 collect->add_aexpr (gdb::move (aexpr));
6710bf39
SS
1423 action_exp = strchr (action_exp, ','); /* more? */
1424 }
0fb4aa4b
PA
1425 else if (0 == strncasecmp ("$_sdata", action_exp, 7))
1426 {
1f45808e 1427 collect->add_static_trace_data ();
0fb4aa4b
PA
1428 action_exp = strchr (action_exp, ','); /* more? */
1429 }
c5aa993b
JM
1430 else
1431 {
744a8059 1432 unsigned long addr;
c5aa993b 1433 struct cleanup *old_chain1 = NULL;
c5aa993b 1434
4d01a485
PA
1435 expression_up exp = parse_exp_1 (&action_exp, tloc->address,
1436 block_for_pc (tloc->address),
1437 1);
c906108c 1438
c5aa993b
JM
1439 switch (exp->elts[0].opcode)
1440 {
1441 case OP_REGISTER:
67f3407f
DJ
1442 {
1443 const char *name = &exp->elts[2].string;
1444
82e9becd 1445 i = user_reg_map_name_to_regnum (target_gdbarch (),
029a67e4 1446 name, strlen (name));
67f3407f
DJ
1447 if (i == -1)
1448 internal_error (__FILE__, __LINE__,
1449 _("Register $%s not available"),
1450 name);
1451 if (info_verbose)
1452 printf_filtered ("OP_REGISTER: ");
1f45808e 1453 collect->add_register (i);
67f3407f
DJ
1454 break;
1455 }
c5aa993b
JM
1456
1457 case UNOP_MEMVAL:
c378eb4e 1458 /* Safe because we know it's a simple expression. */
4d01a485 1459 tempval = evaluate_expression (exp.get ());
42ae5230 1460 addr = value_address (tempval);
744a8059
SP
1461 /* Initialize the TYPE_LENGTH if it is a typedef. */
1462 check_typedef (exp->elts[1].type);
1f45808e
PA
1463 collect->add_memrange (memrange_absolute, addr,
1464 TYPE_LENGTH (exp->elts[1].type));
1465 collect->append_exp (exp.get ());
c5aa993b
JM
1466 break;
1467
1468 case OP_VAR_VALUE:
dc673c81
YQ
1469 {
1470 struct symbol *sym = exp->elts[2].symbol;
1471 char_ptr name = (char_ptr) SYMBOL_NATURAL_NAME (sym);
1472
1f45808e
PA
1473 collect->collect_symbol (exp->elts[2].symbol,
1474 target_gdbarch (),
1475 frame_reg,
1476 frame_offset,
1477 tloc->address,
1478 trace_string);
1479 collect->add_wholly_collected (name);
dc673c81 1480 }
c5aa993b
JM
1481 break;
1482
c378eb4e 1483 default: /* Full-fledged expression. */
833177a4
PA
1484 agent_expr_up aexpr = gen_trace_for_expr (tloc->address,
1485 exp.get (),
1486 trace_string);
c5aa993b 1487
833177a4 1488 ax_reqs (aexpr.get ());
c5aa993b 1489
833177a4 1490 report_agent_reqs_errors (aexpr.get ());
c5aa993b 1491
c378eb4e 1492 /* Take care of the registers. */
35c9c7ba 1493 if (aexpr->reg_mask_len > 0)
c906108c 1494 {
833177a4 1495 for (int ndx1 = 0; ndx1 < aexpr->reg_mask_len; ndx1++)
c906108c 1496 {
c378eb4e 1497 QUIT; /* Allow user to bail out with ^C. */
35c9c7ba 1498 if (aexpr->reg_mask[ndx1] != 0)
c5aa993b 1499 {
c378eb4e 1500 /* Assume chars have 8 bits. */
833177a4 1501 for (int ndx2 = 0; ndx2 < 8; ndx2++)
35c9c7ba 1502 if (aexpr->reg_mask[ndx1] & (1 << ndx2))
1f45808e
PA
1503 {
1504 /* It's used -- record it. */
1505 collect->add_register (ndx1 * 8 + ndx2);
1506 }
c5aa993b 1507 }
c906108c
SS
1508 }
1509 }
dc673c81 1510
833177a4 1511 collect->add_aexpr (gdb::move (aexpr));
1f45808e 1512 collect->append_exp (exp.get ());
c5aa993b
JM
1513 break;
1514 } /* switch */
c5aa993b
JM
1515 } /* do */
1516 }
1517 while (action_exp && *action_exp++ == ',');
1518 } /* if */
6da95a67
SS
1519 else if (cmd_cfunc_eq (cmd, teval_pseudocommand))
1520 {
1521 do
c378eb4e
MS
1522 { /* Repeat over a comma-separated list. */
1523 QUIT; /* Allow user to bail out with ^C. */
6f937416 1524 action_exp = skip_spaces_const (action_exp);
6da95a67
SS
1525
1526 {
6da95a67 1527 struct cleanup *old_chain1 = NULL;
6da95a67 1528
4d01a485
PA
1529 expression_up exp = parse_exp_1 (&action_exp, tloc->address,
1530 block_for_pc (tloc->address),
1531 1);
6da95a67 1532
833177a4
PA
1533 agent_expr_up aexpr = gen_eval_for_expr (tloc->address,
1534 exp.get ());
6da95a67 1535
833177a4
PA
1536 ax_reqs (aexpr.get ());
1537 report_agent_reqs_errors (aexpr.get ());
6da95a67 1538
6da95a67
SS
1539 /* Even though we're not officially collecting, add
1540 to the collect list anyway. */
833177a4 1541 collect->add_aexpr (gdb::move (aexpr));
6da95a67
SS
1542 } /* do */
1543 }
1544 while (action_exp && *action_exp++ == ',');
1545 } /* if */
bbaca940 1546 else if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand))
c906108c 1547 {
a7bdde9e
VP
1548 /* We check against nested while-stepping when setting
1549 breakpoint action, so no way to run into nested
1550 here. */
1551 gdb_assert (stepping_list);
1552
23da373a 1553 encode_actions_1 (action->body_list[0], tloc, frame_reg,
2a2287c7 1554 frame_offset, stepping_list, NULL);
c906108c 1555 }
a7bdde9e
VP
1556 else
1557 error (_("Invalid tracepoint command '%s'"), action->line);
1558 } /* for */
1559}
1560
dc673c81 1561/* Encode actions of tracepoint TLOC->owner and fill TRACEPOINT_LIST
1f45808e 1562 and STEPPING_LIST. */
5fbce5df 1563
1f45808e
PA
1564void
1565encode_actions (struct bp_location *tloc,
1566 struct collection_list *tracepoint_list,
1567 struct collection_list *stepping_list)
a7bdde9e 1568{
a7bdde9e 1569 struct command_line *actions;
a7bdde9e
VP
1570 int frame_reg;
1571 LONGEST frame_offset;
cbfa3b61 1572
3e05895e
TT
1573 gdbarch_virtual_frame_pointer (tloc->gdbarch,
1574 tloc->address, &frame_reg, &frame_offset);
a7bdde9e 1575
3ca73e0c 1576 actions = all_tracepoint_actions_and_cleanup (tloc->owner);
a7bdde9e 1577
23da373a 1578 encode_actions_1 (actions, tloc, frame_reg, frame_offset,
dc673c81
YQ
1579 tracepoint_list, stepping_list);
1580
1f45808e
PA
1581 tracepoint_list->finish ();
1582 stepping_list->finish ();
dc673c81
YQ
1583}
1584
1585/* Render all actions into gdb protocol. */
1586
1587void
1588encode_actions_rsp (struct bp_location *tloc, char ***tdp_actions,
1589 char ***stepping_actions)
1590{
1591 struct collection_list tracepoint_list, stepping_list;
a7bdde9e 1592
dc673c81
YQ
1593 *tdp_actions = NULL;
1594 *stepping_actions = NULL;
1595
1f45808e 1596 encode_actions (tloc, &tracepoint_list, &stepping_list);
236f1d4d 1597
1f45808e
PA
1598 *tdp_actions = tracepoint_list.stringify ();
1599 *stepping_actions = stepping_list.stringify ();
c906108c
SS
1600}
1601
1f45808e 1602void
833177a4 1603collection_list::add_aexpr (agent_expr_up aexpr)
c906108c 1604{
833177a4 1605 m_aexprs.push_back (aexpr.release ());
c906108c
SS
1606}
1607
bfccc43c
YQ
1608static void
1609process_tracepoint_on_disconnect (void)
1610{
1611 VEC(breakpoint_p) *tp_vec = NULL;
1612 int ix;
1613 struct breakpoint *b;
1614 int has_pending_p = 0;
1615
1616 /* Check whether we still have pending tracepoint. If we have, warn the
1617 user that pending tracepoint will no longer work. */
1618 tp_vec = all_tracepoints ();
1619 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
1620 {
1621 if (b->loc == NULL)
1622 {
1623 has_pending_p = 1;
1624 break;
1625 }
1626 else
1627 {
1628 struct bp_location *loc1;
1629
1630 for (loc1 = b->loc; loc1; loc1 = loc1->next)
1631 {
1632 if (loc1->shlib_disabled)
1633 {
1634 has_pending_p = 1;
1635 break;
1636 }
1637 }
1638
1639 if (has_pending_p)
1640 break;
1641 }
1642 }
1643 VEC_free (breakpoint_p, tp_vec);
1644
1645 if (has_pending_p)
1646 warning (_("Pending tracepoints will not be resolved while"
1647 " GDB is disconnected\n"));
1648}
1649
aef525cb
YQ
1650/* Reset local state of tracing. */
1651
1652void
1653trace_reset_local_state (void)
1654{
1655 set_traceframe_num (-1);
1656 set_tracepoint_num (-1);
1657 set_traceframe_context (NULL);
1658 clear_traceframe_info ();
1659}
c5aa993b 1660
f224b49d 1661void
f196051f 1662start_tracing (char *notes)
d183932d 1663{
1042e4c0
SS
1664 VEC(breakpoint_p) *tp_vec = NULL;
1665 int ix;
d9b3f62e 1666 struct breakpoint *b;
f61e138d 1667 struct trace_state_variable *tsv;
d914c394 1668 int any_enabled = 0, num_to_download = 0;
f196051f
SS
1669 int ret;
1670
35b1e5cc 1671 tp_vec = all_tracepoints ();
76a2b958 1672
c378eb4e 1673 /* No point in tracing without any tracepoints... */
76a2b958
SS
1674 if (VEC_length (breakpoint_p, tp_vec) == 0)
1675 {
1676 VEC_free (breakpoint_p, tp_vec);
1677 error (_("No tracepoints defined, not starting trace"));
1678 }
1679
d9b3f62e 1680 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
76a2b958 1681 {
d9b3f62e 1682 if (b->enable_state == bp_enabled)
d914c394
SS
1683 any_enabled = 1;
1684
d9b3f62e 1685 if ((b->type == bp_fast_tracepoint
d914c394
SS
1686 ? may_insert_fast_tracepoints
1687 : may_insert_tracepoints))
1688 ++num_to_download;
1689 else
1690 warning (_("May not insert %stracepoints, skipping tracepoint %d"),
d9b3f62e 1691 (b->type == bp_fast_tracepoint ? "fast " : ""), b->number);
76a2b958
SS
1692 }
1693
76a2b958
SS
1694 if (!any_enabled)
1695 {
d248b706
KY
1696 if (target_supports_enable_disable_tracepoint ())
1697 warning (_("No tracepoints enabled"));
1698 else
1699 {
1700 /* No point in tracing with only disabled tracepoints that
1701 cannot be re-enabled. */
1702 VEC_free (breakpoint_p, tp_vec);
1703 error (_("No tracepoints enabled, not starting trace"));
1704 }
76a2b958
SS
1705 }
1706
d914c394
SS
1707 if (num_to_download <= 0)
1708 {
1709 VEC_free (breakpoint_p, tp_vec);
1710 error (_("No tracepoints that may be downloaded, not starting trace"));
1711 }
1712
76a2b958
SS
1713 target_trace_init ();
1714
d9b3f62e 1715 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
7a697b8d 1716 {
d9b3f62e 1717 struct tracepoint *t = (struct tracepoint *) b;
e8ba3115 1718 struct bp_location *loc;
f2a8bc8a 1719 int bp_location_downloaded = 0;
d9b3f62e 1720
4511b1ba
YQ
1721 /* Clear `inserted' flag. */
1722 for (loc = b->loc; loc; loc = loc->next)
1723 loc->inserted = 0;
1724
d9b3f62e 1725 if ((b->type == bp_fast_tracepoint
d914c394
SS
1726 ? !may_insert_fast_tracepoints
1727 : !may_insert_tracepoints))
1728 continue;
1729
35b1e5cc 1730 t->number_on_target = 0;
e8ba3115
YQ
1731
1732 for (loc = b->loc; loc; loc = loc->next)
1e4d1764
YQ
1733 {
1734 /* Since tracepoint locations are never duplicated, `inserted'
1735 flag should be zero. */
1736 gdb_assert (!loc->inserted);
1737
1738 target_download_tracepoint (loc);
1739
1740 loc->inserted = 1;
f2a8bc8a 1741 bp_location_downloaded = 1;
1e4d1764 1742 }
e8ba3115 1743
d9b3f62e 1744 t->number_on_target = b->number;
55aa24fb
SDJ
1745
1746 for (loc = b->loc; loc; loc = loc->next)
0ea5cda8
SDJ
1747 if (loc->probe.probe != NULL
1748 && loc->probe.probe->pops->set_semaphore != NULL)
729662a5
TT
1749 loc->probe.probe->pops->set_semaphore (loc->probe.probe,
1750 loc->probe.objfile,
1751 loc->gdbarch);
f2a8bc8a
YQ
1752
1753 if (bp_location_downloaded)
1754 observer_notify_breakpoint_modified (b);
7a697b8d 1755 }
35b1e5cc 1756 VEC_free (breakpoint_p, tp_vec);
76a2b958 1757
00bf0b85 1758 /* Send down all the trace state variables too. */
35b1e5cc 1759 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
782b2b07 1760 {
00bf0b85 1761 target_download_trace_state_variable (tsv);
782b2b07 1762 }
35b1e5cc
SS
1763
1764 /* Tell target to treat text-like sections as transparent. */
1765 target_trace_set_readonly_regions ();
4daf5ac0
SS
1766 /* Set some mode flags. */
1767 target_set_disconnected_tracing (disconnected_tracing);
1768 target_set_circular_trace_buffer (circular_trace_buffer);
f6f899bf 1769 target_set_trace_buffer_size (trace_buffer_size);
1042e4c0 1770
f196051f
SS
1771 if (!notes)
1772 notes = trace_notes;
1773 ret = target_set_trace_notes (trace_user, notes, NULL);
1774
1775 if (!ret && (trace_user || notes))
43011e52 1776 warning (_("Target does not support trace user/notes, info ignored"));
f196051f 1777
35b1e5cc
SS
1778 /* Now insert traps and begin collecting data. */
1779 target_trace_start ();
1042e4c0 1780
35b1e5cc 1781 /* Reset our local state. */
aef525cb 1782 trace_reset_local_state ();
00bf0b85 1783 current_trace_status()->running = 1;
1042e4c0
SS
1784}
1785
f196051f
SS
1786/* The tstart command requests the target to start a new trace run.
1787 The command passes any arguments it has to the target verbatim, as
1788 an optional "trace note". This is useful as for instance a warning
1789 to other users if the trace runs disconnected, and you don't want
1790 anybody else messing with the target. */
f224b49d
VP
1791
1792static void
1793trace_start_command (char *args, int from_tty)
1794{
1795 dont_repeat (); /* Like "run", dangerous to repeat accidentally. */
1796
615bcdef
SS
1797 if (current_trace_status ()->running)
1798 {
1799 if (from_tty
1800 && !query (_("A trace is running already. Start a new run? ")))
1801 error (_("New trace run not started."));
1802 }
1803
f196051f 1804 start_tracing (args);
f224b49d
VP
1805}
1806
f196051f
SS
1807/* The tstop command stops the tracing run. The command passes any
1808 supplied arguments to the target verbatim as a "stop note"; if the
1809 target supports trace notes, then it will be reported back as part
1810 of the trace run's status. */
1811
c906108c 1812static void
fba45db2 1813trace_stop_command (char *args, int from_tty)
d183932d 1814{
615bcdef
SS
1815 if (!current_trace_status ()->running)
1816 error (_("Trace is not running."));
1817
f196051f 1818 stop_tracing (args);
c906108c
SS
1819}
1820
d5551862 1821void
f196051f 1822stop_tracing (char *note)
d5551862 1823{
f196051f 1824 int ret;
55aa24fb
SDJ
1825 VEC(breakpoint_p) *tp_vec = NULL;
1826 int ix;
1827 struct breakpoint *t;
f196051f 1828
35b1e5cc 1829 target_trace_stop ();
f196051f 1830
55aa24fb
SDJ
1831 tp_vec = all_tracepoints ();
1832 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, t); ix++)
1833 {
1834 struct bp_location *loc;
1835
1836 if ((t->type == bp_fast_tracepoint
1837 ? !may_insert_fast_tracepoints
1838 : !may_insert_tracepoints))
1839 continue;
1840
1841 for (loc = t->loc; loc; loc = loc->next)
1842 {
1843 /* GDB can be totally absent in some disconnected trace scenarios,
1844 but we don't really care if this semaphore goes out of sync.
1845 That's why we are decrementing it here, but not taking care
1846 in other places. */
0ea5cda8
SDJ
1847 if (loc->probe.probe != NULL
1848 && loc->probe.probe->pops->clear_semaphore != NULL)
729662a5
TT
1849 loc->probe.probe->pops->clear_semaphore (loc->probe.probe,
1850 loc->probe.objfile,
1851 loc->gdbarch);
55aa24fb
SDJ
1852 }
1853 }
1854
1855 VEC_free (breakpoint_p, tp_vec);
1856
f196051f
SS
1857 if (!note)
1858 note = trace_stop_notes;
1859 ret = target_set_trace_notes (NULL, NULL, note);
1860
1861 if (!ret && note)
43011e52 1862 warning (_("Target does not support trace notes, note ignored"));
f196051f 1863
c378eb4e 1864 /* Should change in response to reply? */
00bf0b85 1865 current_trace_status ()->running = 0;
d5551862
SS
1866}
1867
c906108c
SS
1868/* tstatus command */
1869static void
fba45db2 1870trace_status_command (char *args, int from_tty)
d183932d 1871{
00bf0b85 1872 struct trace_status *ts = current_trace_status ();
f196051f
SS
1873 int status, ix;
1874 VEC(breakpoint_p) *tp_vec = NULL;
1875 struct breakpoint *t;
35b1e5cc 1876
00bf0b85
SS
1877 status = target_get_trace_status (ts);
1878
1879 if (status == -1)
1880 {
f5911ea1 1881 if (ts->filename != NULL)
00bf0b85
SS
1882 printf_filtered (_("Using a trace file.\n"));
1883 else
1884 {
1885 printf_filtered (_("Trace can not be run on this target.\n"));
1886 return;
1887 }
1888 }
1889
1890 if (!ts->running_known)
1891 {
1892 printf_filtered (_("Run/stop status is unknown.\n"));
1893 }
1894 else if (ts->running)
c906108c 1895 {
35b1e5cc 1896 printf_filtered (_("Trace is running on the target.\n"));
c906108c
SS
1897 }
1898 else
00bf0b85
SS
1899 {
1900 switch (ts->stop_reason)
1901 {
1902 case trace_never_run:
1903 printf_filtered (_("No trace has been run on the target.\n"));
1904 break;
1905 case tstop_command:
f196051f
SS
1906 if (ts->stop_desc)
1907 printf_filtered (_("Trace stopped by a tstop command (%s).\n"),
1908 ts->stop_desc);
1909 else
1910 printf_filtered (_("Trace stopped by a tstop command.\n"));
00bf0b85
SS
1911 break;
1912 case trace_buffer_full:
1913 printf_filtered (_("Trace stopped because the buffer was full.\n"));
1914 break;
1915 case trace_disconnected:
1916 printf_filtered (_("Trace stopped because of disconnection.\n"));
1917 break;
1918 case tracepoint_passcount:
00bf0b85
SS
1919 printf_filtered (_("Trace stopped by tracepoint %d.\n"),
1920 ts->stopping_tracepoint);
1921 break;
6c28cbf2
SS
1922 case tracepoint_error:
1923 if (ts->stopping_tracepoint)
3e43a32a
MS
1924 printf_filtered (_("Trace stopped by an "
1925 "error (%s, tracepoint %d).\n"),
f196051f 1926 ts->stop_desc, ts->stopping_tracepoint);
6c28cbf2
SS
1927 else
1928 printf_filtered (_("Trace stopped by an error (%s).\n"),
f196051f 1929 ts->stop_desc);
6c28cbf2 1930 break;
00bf0b85
SS
1931 case trace_stop_reason_unknown:
1932 printf_filtered (_("Trace stopped for an unknown reason.\n"));
1933 break;
1934 default:
1935 printf_filtered (_("Trace stopped for some other reason (%d).\n"),
1936 ts->stop_reason);
1937 break;
1938 }
1939 }
1940
4daf5ac0
SS
1941 if (ts->traceframes_created >= 0
1942 && ts->traceframe_count != ts->traceframes_created)
1943 {
3e43a32a
MS
1944 printf_filtered (_("Buffer contains %d trace "
1945 "frames (of %d created total).\n"),
4daf5ac0
SS
1946 ts->traceframe_count, ts->traceframes_created);
1947 }
1948 else if (ts->traceframe_count >= 0)
00bf0b85
SS
1949 {
1950 printf_filtered (_("Collected %d trace frames.\n"),
1951 ts->traceframe_count);
1952 }
1953
4daf5ac0 1954 if (ts->buffer_free >= 0)
00bf0b85 1955 {
4daf5ac0
SS
1956 if (ts->buffer_size >= 0)
1957 {
1958 printf_filtered (_("Trace buffer has %d bytes of %d bytes free"),
1959 ts->buffer_free, ts->buffer_size);
1960 if (ts->buffer_size > 0)
1961 printf_filtered (_(" (%d%% full)"),
1962 ((int) ((((long long) (ts->buffer_size
1963 - ts->buffer_free)) * 100)
1964 / ts->buffer_size)));
1965 printf_filtered (_(".\n"));
1966 }
1967 else
1968 printf_filtered (_("Trace buffer has %d bytes free.\n"),
1969 ts->buffer_free);
00bf0b85 1970 }
35b1e5cc 1971
33da3f1c
SS
1972 if (ts->disconnected_tracing)
1973 printf_filtered (_("Trace will continue if GDB disconnects.\n"));
1974 else
1975 printf_filtered (_("Trace will stop if GDB disconnects.\n"));
1976
1977 if (ts->circular_buffer)
1978 printf_filtered (_("Trace buffer is circular.\n"));
1979
f196051f
SS
1980 if (ts->user_name && strlen (ts->user_name) > 0)
1981 printf_filtered (_("Trace user is %s.\n"), ts->user_name);
1982
1983 if (ts->notes && strlen (ts->notes) > 0)
1984 printf_filtered (_("Trace notes: %s.\n"), ts->notes);
1985
00bf0b85 1986 /* Now report on what we're doing with tfind. */
35b1e5cc
SS
1987 if (traceframe_number >= 0)
1988 printf_filtered (_("Looking at trace frame %d, tracepoint %d.\n"),
1989 traceframe_number, tracepoint_number);
1990 else
1991 printf_filtered (_("Not looking at any trace frame.\n"));
f196051f
SS
1992
1993 /* Report start/stop times if supplied. */
1994 if (ts->start_time)
1995 {
1996 if (ts->stop_time)
1997 {
1998 LONGEST run_time = ts->stop_time - ts->start_time;
1999
2000 /* Reporting a run time is more readable than two long numbers. */
2001 printf_filtered (_("Trace started at %ld.%06ld secs, stopped %ld.%06ld secs later.\n"),
f30aa5af
DK
2002 (long int) (ts->start_time / 1000000),
2003 (long int) (ts->start_time % 1000000),
2004 (long int) (run_time / 1000000),
2005 (long int) (run_time % 1000000));
f196051f
SS
2006 }
2007 else
2008 printf_filtered (_("Trace started at %ld.%06ld secs.\n"),
f30aa5af
DK
2009 (long int) (ts->start_time / 1000000),
2010 (long int) (ts->start_time % 1000000));
f196051f
SS
2011 }
2012 else if (ts->stop_time)
2013 printf_filtered (_("Trace stopped at %ld.%06ld secs.\n"),
f30aa5af
DK
2014 (long int) (ts->stop_time / 1000000),
2015 (long int) (ts->stop_time % 1000000));
f196051f
SS
2016
2017 /* Now report any per-tracepoint status available. */
2018 tp_vec = all_tracepoints ();
2019
2020 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, t); ix++)
2021 target_get_tracepoint_status (t, NULL);
2022
2023 VEC_free (breakpoint_p, tp_vec);
c906108c
SS
2024}
2025
f224b49d
VP
2026/* Report the trace status to uiout, in a way suitable for MI, and not
2027 suitable for CLI. If ON_STOP is true, suppress a few fields that
2028 are not meaningful in the -trace-stop response.
2029
2030 The implementation is essentially parallel to trace_status_command, but
2031 merging them will result in unreadable code. */
2032void
2033trace_status_mi (int on_stop)
2034{
79a45e25 2035 struct ui_out *uiout = current_uiout;
f224b49d
VP
2036 struct trace_status *ts = current_trace_status ();
2037 int status;
f224b49d
VP
2038
2039 status = target_get_trace_status (ts);
2040
f5911ea1 2041 if (status == -1 && ts->filename == NULL)
f224b49d
VP
2042 {
2043 ui_out_field_string (uiout, "supported", "0");
2044 return;
2045 }
2046
f5911ea1 2047 if (ts->filename != NULL)
f224b49d
VP
2048 ui_out_field_string (uiout, "supported", "file");
2049 else if (!on_stop)
2050 ui_out_field_string (uiout, "supported", "1");
2051
f5911ea1
HAQ
2052 if (ts->filename != NULL)
2053 ui_out_field_string (uiout, "trace-file", ts->filename);
2054
f224b49d
VP
2055 gdb_assert (ts->running_known);
2056
2057 if (ts->running)
2058 {
2059 ui_out_field_string (uiout, "running", "1");
2060
2061 /* Unlike CLI, do not show the state of 'disconnected-tracing' variable.
2062 Given that the frontend gets the status either on -trace-stop, or from
2063 -trace-status after re-connection, it does not seem like this
2064 information is necessary for anything. It is not necessary for either
2065 figuring the vital state of the target nor for navigation of trace
2066 frames. If the frontend wants to show the current state is some
2067 configure dialog, it can request the value when such dialog is
2068 invoked by the user. */
2069 }
2070 else
2071 {
2072 char *stop_reason = NULL;
2073 int stopping_tracepoint = -1;
2074
2075 if (!on_stop)
2076 ui_out_field_string (uiout, "running", "0");
2077
2078 if (ts->stop_reason != trace_stop_reason_unknown)
2079 {
2080 switch (ts->stop_reason)
2081 {
2082 case tstop_command:
2083 stop_reason = "request";
2084 break;
2085 case trace_buffer_full:
2086 stop_reason = "overflow";
2087 break;
2088 case trace_disconnected:
2089 stop_reason = "disconnection";
2090 break;
2091 case tracepoint_passcount:
2092 stop_reason = "passcount";
2093 stopping_tracepoint = ts->stopping_tracepoint;
2094 break;
6c28cbf2
SS
2095 case tracepoint_error:
2096 stop_reason = "error";
2097 stopping_tracepoint = ts->stopping_tracepoint;
2098 break;
f224b49d
VP
2099 }
2100
2101 if (stop_reason)
2102 {
2103 ui_out_field_string (uiout, "stop-reason", stop_reason);
2104 if (stopping_tracepoint != -1)
2105 ui_out_field_int (uiout, "stopping-tracepoint",
2106 stopping_tracepoint);
6c28cbf2
SS
2107 if (ts->stop_reason == tracepoint_error)
2108 ui_out_field_string (uiout, "error-description",
f196051f 2109 ts->stop_desc);
f224b49d
VP
2110 }
2111 }
2112 }
2113
a97153c7 2114 if (ts->traceframe_count != -1)
f224b49d 2115 ui_out_field_int (uiout, "frames", ts->traceframe_count);
87290684
SS
2116 if (ts->traceframes_created != -1)
2117 ui_out_field_int (uiout, "frames-created", ts->traceframes_created);
a97153c7
PA
2118 if (ts->buffer_size != -1)
2119 ui_out_field_int (uiout, "buffer-size", ts->buffer_size);
2120 if (ts->buffer_free != -1)
2121 ui_out_field_int (uiout, "buffer-free", ts->buffer_free);
2122
2123 ui_out_field_int (uiout, "disconnected", ts->disconnected_tracing);
2124 ui_out_field_int (uiout, "circular", ts->circular_buffer);
f196051f
SS
2125
2126 ui_out_field_string (uiout, "user-name", ts->user_name);
2127 ui_out_field_string (uiout, "notes", ts->notes);
2128
2129 {
2130 char buf[100];
2131
2132 xsnprintf (buf, sizeof buf, "%ld.%06ld",
f30aa5af
DK
2133 (long int) (ts->start_time / 1000000),
2134 (long int) (ts->start_time % 1000000));
f196051f
SS
2135 ui_out_field_string (uiout, "start-time", buf);
2136 xsnprintf (buf, sizeof buf, "%ld.%06ld",
f30aa5af
DK
2137 (long int) (ts->stop_time / 1000000),
2138 (long int) (ts->stop_time % 1000000));
f196051f
SS
2139 ui_out_field_string (uiout, "stop-time", buf);
2140 }
f224b49d
VP
2141}
2142
2f9d54cf
PA
2143/* Check if a trace run is ongoing. If so, and FROM_TTY, query the
2144 user if she really wants to detach. */
2145
d5551862 2146void
2f9d54cf 2147query_if_trace_running (int from_tty)
d5551862 2148{
2f9d54cf
PA
2149 if (!from_tty)
2150 return;
2151
00bf0b85
SS
2152 /* It can happen that the target that was tracing went away on its
2153 own, and we didn't notice. Get a status update, and if the
2154 current target doesn't even do tracing, then assume it's not
2155 running anymore. */
26afc0d7 2156 if (target_get_trace_status (current_trace_status ()) < 0)
00bf0b85
SS
2157 current_trace_status ()->running = 0;
2158
33da3f1c
SS
2159 /* If running interactively, give the user the option to cancel and
2160 then decide what to do differently with the run. Scripts are
2161 just going to disconnect and let the target deal with it,
2162 according to how it's been instructed previously via
2163 disconnected-tracing. */
2f9d54cf 2164 if (current_trace_status ()->running)
d5551862 2165 {
bfccc43c
YQ
2166 process_tracepoint_on_disconnect ();
2167
33da3f1c
SS
2168 if (current_trace_status ()->disconnected_tracing)
2169 {
3e43a32a
MS
2170 if (!query (_("Trace is running and will "
2171 "continue after detach; detach anyway? ")))
33da3f1c
SS
2172 error (_("Not confirmed."));
2173 }
2174 else
2175 {
3e43a32a
MS
2176 if (!query (_("Trace is running but will "
2177 "stop on detach; detach anyway? ")))
33da3f1c
SS
2178 error (_("Not confirmed."));
2179 }
d5551862 2180 }
2f9d54cf 2181}
8b9b7ef8 2182
2f9d54cf
PA
2183/* This function handles the details of what to do about an ongoing
2184 tracing run if the user has asked to detach or otherwise disconnect
2185 from the target. */
2186
2187void
2188disconnect_tracing (void)
2189{
8b9b7ef8
SS
2190 /* Also we want to be out of tfind mode, otherwise things can get
2191 confusing upon reconnection. Just use these calls instead of
2192 full tfind_1 behavior because we're in the middle of detaching,
2193 and there's no point to updating current stack frame etc. */
aef525cb 2194 trace_reset_local_state ();
d5551862
SS
2195}
2196
d183932d 2197/* Worker function for the various flavors of the tfind command. */
f197e0f1
VP
2198void
2199tfind_1 (enum trace_find_type type, int num,
cc5925ad 2200 CORE_ADDR addr1, CORE_ADDR addr2,
f197e0f1 2201 int from_tty)
c906108c
SS
2202{
2203 int target_frameno = -1, target_tracept = -1;
2ce6d6bf 2204 struct frame_id old_frame_id = null_frame_id;
d9b3f62e 2205 struct tracepoint *tp;
79a45e25 2206 struct ui_out *uiout = current_uiout;
c906108c 2207
2ce6d6bf
SS
2208 /* Only try to get the current stack frame if we have a chance of
2209 succeeding. In particular, if we're trying to get a first trace
2210 frame while all threads are running, it's not going to succeed,
2211 so leave it with a default value and let the frame comparison
2212 below (correctly) decide to print out the source location of the
2213 trace frame. */
2214 if (!(type == tfind_number && num == -1)
2215 && (has_stack_frames () || traceframe_number >= 0))
2216 old_frame_id = get_frame_id (get_current_frame ());
c906108c 2217
35b1e5cc
SS
2218 target_frameno = target_trace_find (type, num, addr1, addr2,
2219 &target_tracept);
2220
2221 if (type == tfind_number
2222 && num == -1
2223 && target_frameno == -1)
2224 {
2225 /* We told the target to get out of tfind mode, and it did. */
2226 }
2227 else if (target_frameno == -1)
2228 {
2ce6d6bf 2229 /* A request for a non-existent trace frame has failed.
35b1e5cc
SS
2230 Our response will be different, depending on FROM_TTY:
2231
2232 If FROM_TTY is true, meaning that this command was
2233 typed interactively by the user, then give an error
2234 and DO NOT change the state of traceframe_number etc.
2235
2236 However if FROM_TTY is false, meaning that we're either
2237 in a script, a loop, or a user-defined command, then
2238 DON'T give an error, but DO change the state of
2239 traceframe_number etc. to invalid.
2240
2241 The rationalle is that if you typed the command, you
2242 might just have committed a typo or something, and you'd
2243 like to NOT lose your current debugging state. However
2244 if you're in a user-defined command or especially in a
2245 loop, then you need a way to detect that the command
2246 failed WITHOUT aborting. This allows you to write
2247 scripts that search thru the trace buffer until the end,
2248 and then continue on to do something else. */
2249
2250 if (from_tty)
2251 error (_("Target failed to find requested trace frame."));
2252 else
2253 {
2254 if (info_verbose)
2255 printf_filtered ("End of trace buffer.\n");
c378eb4e 2256#if 0 /* dubious now? */
35b1e5cc
SS
2257 /* The following will not recurse, since it's
2258 special-cased. */
2259 trace_find_command ("-1", from_tty);
2260#endif
2261 }
2262 }
2263
d5551862
SS
2264 tp = get_tracepoint_by_number_on_target (target_tracept);
2265
35f196d9 2266 reinit_frame_cache ();
2f4d8875 2267 target_dcache_invalidate ();
8d735b87 2268
201b4506
YQ
2269 set_tracepoint_num (tp ? tp->base.number : target_tracept);
2270
2271 if (target_frameno != get_traceframe_number ())
2272 observer_notify_traceframe_changed (target_frameno, tracepoint_number);
2273
8d735b87
YQ
2274 set_current_traceframe (target_frameno);
2275
c906108c 2276 if (target_frameno == -1)
fb14de7b 2277 set_traceframe_context (NULL);
c906108c 2278 else
fb14de7b 2279 set_traceframe_context (get_current_frame ());
c906108c 2280
f197e0f1
VP
2281 if (traceframe_number >= 0)
2282 {
2283 /* Use different branches for MI and CLI to make CLI messages
2284 i18n-eable. */
2285 if (ui_out_is_mi_like_p (uiout))
2286 {
2287 ui_out_field_string (uiout, "found", "1");
2288 ui_out_field_int (uiout, "tracepoint", tracepoint_number);
2289 ui_out_field_int (uiout, "traceframe", traceframe_number);
2290 }
2291 else
2292 {
2293 printf_unfiltered (_("Found trace frame %d, tracepoint %d\n"),
2294 traceframe_number, tracepoint_number);
2295 }
2296 }
2297 else
2298 {
2299 if (ui_out_is_mi_like_p (uiout))
2300 ui_out_field_string (uiout, "found", "0");
4136fdd2
SS
2301 else if (type == tfind_number && num == -1)
2302 printf_unfiltered (_("No longer looking at any trace frame\n"));
c378eb4e 2303 else /* This case may never occur, check. */
4136fdd2 2304 printf_unfiltered (_("No trace frame found\n"));
f197e0f1
VP
2305 }
2306
00bf0b85
SS
2307 /* If we're in nonstop mode and getting out of looking at trace
2308 frames, there won't be any current frame to go back to and
2309 display. */
2310 if (from_tty
2311 && (has_stack_frames () || traceframe_number >= 0))
c906108c 2312 {
0faf0076 2313 enum print_what print_what;
c906108c 2314
2ce6d6bf 2315 /* NOTE: in imitation of the step command, try to determine
d183932d
MS
2316 whether we have made a transition from one function to
2317 another. If so, we'll print the "stack frame" (ie. the new
2318 function and it's arguments) -- otherwise we'll just show the
fb14de7b
UW
2319 new source line. */
2320
2321 if (frame_id_eq (old_frame_id,
2322 get_frame_id (get_current_frame ())))
0faf0076 2323 print_what = SRC_LINE;
c906108c 2324 else
0faf0076 2325 print_what = SRC_AND_LOC;
c906108c 2326
08d72866 2327 print_stack_frame (get_selected_frame (NULL), 1, print_what, 1);
c906108c
SS
2328 do_displays ();
2329 }
2330}
2331
cc3da688
YQ
2332/* Error on looking at traceframes while trace is running. */
2333
2334void
2335check_trace_running (struct trace_status *status)
2336{
2337 if (status->running && status->filename == NULL)
2338 error (_("May not look at trace frames while trace is running."));
2339}
2340
c906108c
SS
2341/* trace_find_command takes a trace frame number n,
2342 sends "QTFrame:<n>" to the target,
2343 and accepts a reply that may contain several optional pieces
2344 of information: a frame number, a tracepoint number, and an
2345 indication of whether this is a trap frame or a stepping frame.
2346
2347 The minimal response is just "OK" (which indicates that the
2348 target does not give us a frame number or a tracepoint number).
2349 Instead of that, the target may send us a string containing
2350 any combination of:
c5aa993b
JM
2351 F<hexnum> (gives the selected frame number)
2352 T<hexnum> (gives the selected tracepoint number)
2353 */
c906108c
SS
2354
2355/* tfind command */
2356static void
fba45db2 2357trace_find_command (char *args, int from_tty)
c378eb4e 2358{ /* This should only be called with a numeric argument. */
c906108c 2359 int frameno = -1;
c906108c 2360
cc3da688 2361 check_trace_running (current_trace_status ());
35b1e5cc
SS
2362
2363 if (args == 0 || *args == 0)
2364 { /* TFIND with no args means find NEXT trace frame. */
2365 if (traceframe_number == -1)
c378eb4e 2366 frameno = 0; /* "next" is first one. */
35b1e5cc
SS
2367 else
2368 frameno = traceframe_number + 1;
2369 }
2370 else if (0 == strcmp (args, "-"))
c906108c 2371 {
35b1e5cc
SS
2372 if (traceframe_number == -1)
2373 error (_("not debugging trace buffer"));
2374 else if (from_tty && traceframe_number == 0)
2375 error (_("already at start of trace buffer"));
2376
2377 frameno = traceframe_number - 1;
2378 }
2379 /* A hack to work around eval's need for fp to have been collected. */
2380 else if (0 == strcmp (args, "-1"))
2381 frameno = -1;
2382 else
2383 frameno = parse_and_eval_long (args);
c906108c 2384
35b1e5cc
SS
2385 if (frameno < -1)
2386 error (_("invalid input (%d is less than zero)"), frameno);
c906108c 2387
f197e0f1 2388 tfind_1 (tfind_number, frameno, 0, 0, from_tty);
c906108c
SS
2389}
2390
2391/* tfind end */
2392static void
fba45db2 2393trace_find_end_command (char *args, int from_tty)
c906108c
SS
2394{
2395 trace_find_command ("-1", from_tty);
2396}
2397
c906108c
SS
2398/* tfind start */
2399static void
fba45db2 2400trace_find_start_command (char *args, int from_tty)
c906108c
SS
2401{
2402 trace_find_command ("0", from_tty);
2403}
2404
2405/* tfind pc command */
2406static void
fba45db2 2407trace_find_pc_command (char *args, int from_tty)
d183932d 2408{
c906108c 2409 CORE_ADDR pc;
c906108c 2410
cc3da688 2411 check_trace_running (current_trace_status ());
c906108c 2412
35b1e5cc
SS
2413 if (args == 0 || *args == 0)
2414 pc = regcache_read_pc (get_current_regcache ());
c906108c 2415 else
35b1e5cc
SS
2416 pc = parse_and_eval_address (args);
2417
f197e0f1 2418 tfind_1 (tfind_pc, 0, pc, 0, from_tty);
c906108c
SS
2419}
2420
2421/* tfind tracepoint command */
2422static void
fba45db2 2423trace_find_tracepoint_command (char *args, int from_tty)
d183932d 2424{
c906108c 2425 int tdp;
d9b3f62e 2426 struct tracepoint *tp;
c906108c 2427
cc3da688 2428 check_trace_running (current_trace_status ());
383e5f85 2429
35b1e5cc
SS
2430 if (args == 0 || *args == 0)
2431 {
2432 if (tracepoint_number == -1)
2433 error (_("No current tracepoint -- please supply an argument."));
c906108c 2434 else
c378eb4e 2435 tdp = tracepoint_number; /* Default is current TDP. */
c906108c
SS
2436 }
2437 else
35b1e5cc
SS
2438 tdp = parse_and_eval_long (args);
2439
2440 /* If we have the tracepoint on hand, use the number that the
2441 target knows about (which may be different if we disconnected
2442 and reconnected). */
2443 tp = get_tracepoint (tdp);
2444 if (tp)
2445 tdp = tp->number_on_target;
2446
f197e0f1 2447 tfind_1 (tfind_tp, tdp, 0, 0, from_tty);
c906108c
SS
2448}
2449
2450/* TFIND LINE command:
c5aa993b 2451
c906108c 2452 This command will take a sourceline for argument, just like BREAK
d183932d 2453 or TRACE (ie. anything that "decode_line_1" can handle).
c5aa993b 2454
c906108c
SS
2455 With no argument, this command will find the next trace frame
2456 corresponding to a source line OTHER THAN THE CURRENT ONE. */
2457
2458static void
fba45db2 2459trace_find_line_command (char *args, int from_tty)
d183932d 2460{
c906108c
SS
2461 static CORE_ADDR start_pc, end_pc;
2462 struct symtabs_and_lines sals;
2463 struct symtab_and_line sal;
c906108c
SS
2464 struct cleanup *old_chain;
2465
cc3da688 2466 check_trace_running (current_trace_status ());
5af949e3 2467
35b1e5cc
SS
2468 if (args == 0 || *args == 0)
2469 {
2470 sal = find_pc_line (get_frame_pc (get_current_frame ()), 0);
2471 sals.nelts = 1;
8d749320 2472 sals.sals = XNEW (struct symtab_and_line);
35b1e5cc
SS
2473 sals.sals[0] = sal;
2474 }
2475 else
42e08e69 2476 {
39cf75f7 2477 sals = decode_line_with_current_source (args, DECODE_LINE_FUNFIRSTLINE);
35b1e5cc
SS
2478 sal = sals.sals[0];
2479 }
2480
2481 old_chain = make_cleanup (xfree, sals.sals);
2482 if (sal.symtab == 0)
42e08e69
SS
2483 error (_("No line number information available."));
2484
2485 if (sal.line > 0 && find_line_pc_range (sal, &start_pc, &end_pc))
35b1e5cc
SS
2486 {
2487 if (start_pc == end_pc)
2488 {
2489 printf_filtered ("Line %d of \"%s\"",
05cba821
JK
2490 sal.line,
2491 symtab_to_filename_for_display (sal.symtab));
35b1e5cc
SS
2492 wrap_here (" ");
2493 printf_filtered (" is at address ");
2494 print_address (get_current_arch (), start_pc, gdb_stdout);
2495 wrap_here (" ");
2496 printf_filtered (" but contains no code.\n");
2497 sal = find_pc_line (start_pc, 0);
2498 if (sal.line > 0
2499 && find_line_pc_range (sal, &start_pc, &end_pc)
2500 && start_pc != end_pc)
2501 printf_filtered ("Attempting to find line %d instead.\n",
2502 sal.line);
2503 else
2504 error (_("Cannot find a good line."));
2505 }
2506 }
2507 else
2508 /* Is there any case in which we get here, and have an address
2509 which the user would want to see? If we have debugging
2510 symbols and no line numbers? */
2511 error (_("Line number %d is out of range for \"%s\"."),
05cba821 2512 sal.line, symtab_to_filename_for_display (sal.symtab));
35b1e5cc
SS
2513
2514 /* Find within range of stated line. */
2515 if (args && *args)
f197e0f1 2516 tfind_1 (tfind_range, 0, start_pc, end_pc - 1, from_tty);
c906108c 2517 else
f197e0f1 2518 tfind_1 (tfind_outside, 0, start_pc, end_pc - 1, from_tty);
35b1e5cc 2519 do_cleanups (old_chain);
c906108c
SS
2520}
2521
2522/* tfind range command */
2523static void
fba45db2 2524trace_find_range_command (char *args, int from_tty)
104c1213 2525{
c906108c
SS
2526 static CORE_ADDR start, stop;
2527 char *tmp;
2528
cc3da688 2529 check_trace_running (current_trace_status ());
c906108c 2530
35b1e5cc
SS
2531 if (args == 0 || *args == 0)
2532 { /* XXX FIXME: what should default behavior be? */
2533 printf_filtered ("Usage: tfind range <startaddr>,<endaddr>\n");
2534 return;
2535 }
c906108c 2536
35b1e5cc
SS
2537 if (0 != (tmp = strchr (args, ',')))
2538 {
c378eb4e 2539 *tmp++ = '\0'; /* Terminate start address. */
529480d0 2540 tmp = skip_spaces (tmp);
35b1e5cc
SS
2541 start = parse_and_eval_address (args);
2542 stop = parse_and_eval_address (tmp);
c906108c
SS
2543 }
2544 else
c378eb4e 2545 { /* No explicit end address? */
35b1e5cc
SS
2546 start = parse_and_eval_address (args);
2547 stop = start + 1; /* ??? */
2548 }
2549
f197e0f1 2550 tfind_1 (tfind_range, 0, start, stop, from_tty);
c906108c
SS
2551}
2552
2553/* tfind outside command */
2554static void
fba45db2 2555trace_find_outside_command (char *args, int from_tty)
104c1213 2556{
c906108c
SS
2557 CORE_ADDR start, stop;
2558 char *tmp;
2559
f5911ea1
HAQ
2560 if (current_trace_status ()->running
2561 && current_trace_status ()->filename == NULL)
a73c6dcd 2562 error (_("May not look at trace frames while trace is running."));
c906108c 2563
35b1e5cc 2564 if (args == 0 || *args == 0)
c378eb4e 2565 { /* XXX FIXME: what should default behavior be? */
35b1e5cc
SS
2566 printf_filtered ("Usage: tfind outside <startaddr>,<endaddr>\n");
2567 return;
2568 }
c906108c 2569
35b1e5cc
SS
2570 if (0 != (tmp = strchr (args, ',')))
2571 {
c378eb4e 2572 *tmp++ = '\0'; /* Terminate start address. */
529480d0 2573 tmp = skip_spaces (tmp);
35b1e5cc
SS
2574 start = parse_and_eval_address (args);
2575 stop = parse_and_eval_address (tmp);
c906108c
SS
2576 }
2577 else
c378eb4e 2578 { /* No explicit end address? */
35b1e5cc
SS
2579 start = parse_and_eval_address (args);
2580 stop = start + 1; /* ??? */
2581 }
2582
f197e0f1 2583 tfind_1 (tfind_outside, 0, start, stop, from_tty);
c906108c
SS
2584}
2585
c906108c
SS
2586/* info scope command: list the locals for a scope. */
2587static void
fba45db2 2588scope_info (char *args, int from_tty)
c906108c 2589{
c906108c
SS
2590 struct symtabs_and_lines sals;
2591 struct symbol *sym;
3b7344d5 2592 struct bound_minimal_symbol msym;
3977b71f 2593 const struct block *block;
0d5cff50
DE
2594 const char *symname;
2595 char *save_args = args;
8157b174 2596 struct block_iterator iter;
de4f826b 2597 int j, count = 0;
768a979c
UW
2598 struct gdbarch *gdbarch;
2599 int regno;
f00aae0f
KS
2600 struct event_location *location;
2601 struct cleanup *back_to;
c906108c
SS
2602
2603 if (args == 0 || *args == 0)
3e43a32a
MS
2604 error (_("requires an argument (function, "
2605 "line or *addr) to define a scope"));
c906108c 2606
f00aae0f
KS
2607 location = string_to_event_location (&args, current_language);
2608 back_to = make_cleanup_delete_event_location (location);
c2f4122d 2609 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE, NULL, NULL, 0);
c906108c 2610 if (sals.nelts == 0)
f00aae0f
KS
2611 {
2612 /* Presumably decode_line_1 has already warned. */
2613 do_cleanups (back_to);
2614 return;
2615 }
c906108c 2616
c378eb4e 2617 /* Resolve line numbers to PC. */
c906108c
SS
2618 resolve_sal_pc (&sals.sals[0]);
2619 block = block_for_pc (sals.sals[0].pc);
2620
2621 while (block != 0)
2622 {
c378eb4e 2623 QUIT; /* Allow user to bail out with ^C. */
de4f826b 2624 ALL_BLOCK_SYMBOLS (block, iter, sym)
c906108c 2625 {
c378eb4e 2626 QUIT; /* Allow user to bail out with ^C. */
c906108c
SS
2627 if (count == 0)
2628 printf_filtered ("Scope for %s:\n", save_args);
2629 count++;
e88c90f2 2630
3567439c 2631 symname = SYMBOL_PRINT_NAME (sym);
c906108c 2632 if (symname == NULL || *symname == '\0')
c378eb4e 2633 continue; /* Probably botched, certainly useless. */
c906108c 2634
08be3fe3 2635 gdbarch = symbol_arch (sym);
768a979c 2636
c906108c 2637 printf_filtered ("Symbol %s is ", symname);
24d6c2a0
TT
2638
2639 if (SYMBOL_COMPUTED_OPS (sym) != NULL)
2640 SYMBOL_COMPUTED_OPS (sym)->describe_location (sym,
2641 BLOCK_START (block),
2642 gdb_stdout);
2643 else
c5aa993b 2644 {
24d6c2a0 2645 switch (SYMBOL_CLASS (sym))
c5aa993b 2646 {
24d6c2a0
TT
2647 default:
2648 case LOC_UNDEF: /* Messed up symbol? */
2649 printf_filtered ("a bogus symbol, class %d.\n",
2650 SYMBOL_CLASS (sym));
2651 count--; /* Don't count this one. */
2652 continue;
2653 case LOC_CONST:
2654 printf_filtered ("a constant with value %s (%s)",
2655 plongest (SYMBOL_VALUE (sym)),
2656 hex_string (SYMBOL_VALUE (sym)));
2657 break;
2658 case LOC_CONST_BYTES:
2659 printf_filtered ("constant bytes: ");
2660 if (SYMBOL_TYPE (sym))
2661 for (j = 0; j < TYPE_LENGTH (SYMBOL_TYPE (sym)); j++)
2662 fprintf_filtered (gdb_stdout, " %02x",
2663 (unsigned) SYMBOL_VALUE_BYTES (sym)[j]);
2664 break;
2665 case LOC_STATIC:
2666 printf_filtered ("in static storage at address ");
2667 printf_filtered ("%s", paddress (gdbarch,
2668 SYMBOL_VALUE_ADDRESS (sym)));
2669 break;
2670 case LOC_REGISTER:
2671 /* GDBARCH is the architecture associated with the objfile
2672 the symbol is defined in; the target architecture may be
2673 different, and may provide additional registers. However,
2674 we do not know the target architecture at this point.
2675 We assume the objfile architecture will contain all the
2676 standard registers that occur in debug info in that
2677 objfile. */
2678 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym,
2679 gdbarch);
2680
2681 if (SYMBOL_IS_ARGUMENT (sym))
2682 printf_filtered ("an argument in register $%s",
2683 gdbarch_register_name (gdbarch, regno));
2684 else
2685 printf_filtered ("a local variable in register $%s",
2686 gdbarch_register_name (gdbarch, regno));
2687 break;
2688 case LOC_ARG:
2689 printf_filtered ("an argument at stack/frame offset %s",
2690 plongest (SYMBOL_VALUE (sym)));
2691 break;
2692 case LOC_LOCAL:
2693 printf_filtered ("a local variable at frame offset %s",
2694 plongest (SYMBOL_VALUE (sym)));
2695 break;
2696 case LOC_REF_ARG:
2697 printf_filtered ("a reference argument at offset %s",
2698 plongest (SYMBOL_VALUE (sym)));
2699 break;
2700 case LOC_REGPARM_ADDR:
2701 /* Note comment at LOC_REGISTER. */
2702 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym,
2703 gdbarch);
2704 printf_filtered ("the address of an argument, in register $%s",
2705 gdbarch_register_name (gdbarch, regno));
2706 break;
2707 case LOC_TYPEDEF:
2708 printf_filtered ("a typedef.\n");
2709 continue;
2710 case LOC_LABEL:
2711 printf_filtered ("a label at address ");
2712 printf_filtered ("%s", paddress (gdbarch,
2713 SYMBOL_VALUE_ADDRESS (sym)));
2714 break;
2715 case LOC_BLOCK:
2716 printf_filtered ("a function at address ");
5af949e3 2717 printf_filtered ("%s",
24d6c2a0
TT
2718 paddress (gdbarch, BLOCK_START (SYMBOL_BLOCK_VALUE (sym))));
2719 break;
2720 case LOC_UNRESOLVED:
2721 msym = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (sym),
2722 NULL, NULL);
3b7344d5 2723 if (msym.minsym == NULL)
24d6c2a0
TT
2724 printf_filtered ("Unresolved Static");
2725 else
2726 {
2727 printf_filtered ("static storage at address ");
2728 printf_filtered ("%s",
2729 paddress (gdbarch,
77e371c0 2730 BMSYMBOL_VALUE_ADDRESS (msym)));
24d6c2a0
TT
2731 }
2732 break;
2733 case LOC_OPTIMIZED_OUT:
2734 printf_filtered ("optimized out.\n");
2735 continue;
2736 case LOC_COMPUTED:
2737 gdb_assert_not_reached (_("LOC_COMPUTED variable missing a method"));
c5aa993b 2738 }
c5aa993b 2739 }
c906108c 2740 if (SYMBOL_TYPE (sym))
c5aa993b 2741 printf_filtered (", length %d.\n",
450bd37b 2742 TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym))));
c906108c
SS
2743 }
2744 if (BLOCK_FUNCTION (block))
2745 break;
2746 else
2747 block = BLOCK_SUPERBLOCK (block);
2748 }
2749 if (count <= 0)
2750 printf_filtered ("Scope for %s contains no locals or arguments.\n",
2751 save_args);
f00aae0f 2752 do_cleanups (back_to);
c906108c
SS
2753}
2754
afd02f27
PA
2755/* Helper for trace_dump_command. Dump the action list starting at
2756 ACTION. STEPPING_ACTIONS is true if we're iterating over the
2757 actions of the body of a while-stepping action. STEPPING_FRAME is
2758 set if the current traceframe was determined to be a while-stepping
2759 traceframe. */
2760
c906108c 2761static void
afd02f27
PA
2762trace_dump_actions (struct command_line *action,
2763 int stepping_actions, int stepping_frame,
2764 int from_tty)
c906108c 2765{
6f937416 2766 const char *action_exp, *next_comma;
c906108c 2767
afd02f27 2768 for (; action != NULL; action = action->next)
c906108c
SS
2769 {
2770 struct cmd_list_element *cmd;
2771
c378eb4e 2772 QUIT; /* Allow user to bail out with ^C. */
a7bdde9e 2773 action_exp = action->line;
6f937416 2774 action_exp = skip_spaces_const (action_exp);
c906108c
SS
2775
2776 /* The collection actions to be done while stepping are
c5aa993b 2777 bracketed by the commands "while-stepping" and "end". */
c906108c
SS
2778
2779 if (*action_exp == '#') /* comment line */
2780 continue;
2781
2782 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
2783 if (cmd == 0)
8a3fe4f8 2784 error (_("Bad action list item: %s"), action_exp);
c906108c 2785
bbaca940 2786 if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand))
afd02f27
PA
2787 {
2788 int i;
2789
2790 for (i = 0; i < action->body_count; ++i)
2791 trace_dump_actions (action->body_list[i],
2792 1, stepping_frame, from_tty);
2793 }
bbaca940 2794 else if (cmd_cfunc_eq (cmd, collect_pseudocommand))
c906108c
SS
2795 {
2796 /* Display the collected data.
d183932d
MS
2797 For the trap frame, display only what was collected at
2798 the trap. Likewise for stepping frames, display only
2799 what was collected while stepping. This means that the
2800 two boolean variables, STEPPING_FRAME and
2801 STEPPING_ACTIONS should be equal. */
c906108c
SS
2802 if (stepping_frame == stepping_actions)
2803 {
6f937416
PA
2804 char *cmd = NULL;
2805 struct cleanup *old_chain
2806 = make_cleanup (free_current_contents, &cmd);
92bc6a20 2807 int trace_string = 0;
6f937416 2808
3065dfb6 2809 if (*action_exp == '/')
92bc6a20 2810 action_exp = decode_agent_options (action_exp, &trace_string);
3065dfb6 2811
c5aa993b 2812 do
c378eb4e
MS
2813 { /* Repeat over a comma-separated list. */
2814 QUIT; /* Allow user to bail out with ^C. */
c5aa993b
JM
2815 if (*action_exp == ',')
2816 action_exp++;
6f937416 2817 action_exp = skip_spaces_const (action_exp);
c5aa993b
JM
2818
2819 next_comma = strchr (action_exp, ',');
2820
2821 if (0 == strncasecmp (action_exp, "$reg", 4))
2822 registers_info (NULL, from_tty);
6710bf39
SS
2823 else if (0 == strncasecmp (action_exp, "$_ret", 5))
2824 ;
c5aa993b
JM
2825 else if (0 == strncasecmp (action_exp, "$loc", 4))
2826 locals_info (NULL, from_tty);
2827 else if (0 == strncasecmp (action_exp, "$arg", 4))
2828 args_info (NULL, from_tty);
2829 else
2830 { /* variable */
6f937416 2831 if (next_comma != NULL)
c5aa993b 2832 {
6f937416
PA
2833 size_t len = next_comma - action_exp;
2834
224c3ddb 2835 cmd = (char *) xrealloc (cmd, len + 1);
6f937416
PA
2836 memcpy (cmd, action_exp, len);
2837 cmd[len] = 0;
2838 }
2839 else
2840 {
2841 size_t len = strlen (action_exp);
2842
224c3ddb 2843 cmd = (char *) xrealloc (cmd, len + 1);
6f937416 2844 memcpy (cmd, action_exp, len + 1);
c5aa993b 2845 }
6f937416
PA
2846
2847 printf_filtered ("%s = ", cmd);
2848 output_command_const (cmd, from_tty);
c5aa993b
JM
2849 printf_filtered ("\n");
2850 }
c5aa993b
JM
2851 action_exp = next_comma;
2852 }
2853 while (action_exp && *action_exp == ',');
6f937416
PA
2854
2855 do_cleanups (old_chain);
c906108c
SS
2856 }
2857 }
2858 }
afd02f27
PA
2859}
2860
ddacd3c8
YQ
2861/* Return bp_location of the tracepoint associated with the current
2862 traceframe. Set *STEPPING_FRAME_P to 1 if the current traceframe
2863 is a stepping traceframe. */
2864
dc673c81 2865struct bp_location *
ddacd3c8
YQ
2866get_traceframe_location (int *stepping_frame_p)
2867{
2868 struct tracepoint *t;
2869 struct bp_location *tloc;
2870 struct regcache *regcache;
2871
2872 if (tracepoint_number == -1)
2873 error (_("No current trace frame."));
2874
2875 t = get_tracepoint (tracepoint_number);
2876
2877 if (t == NULL)
2878 error (_("No known tracepoint matches 'current' tracepoint #%d."),
2879 tracepoint_number);
2880
2881 /* The current frame is a trap frame if the frame PC is equal to the
2882 tracepoint PC. If not, then the current frame was collected
2883 during single-stepping. */
2884 regcache = get_current_regcache ();
2885
2886 /* If the traceframe's address matches any of the tracepoint's
2887 locations, assume it is a direct hit rather than a while-stepping
2888 frame. (FIXME this is not reliable, should record each frame's
2889 type.) */
2890 for (tloc = t->base.loc; tloc; tloc = tloc->next)
2891 if (tloc->address == regcache_read_pc (regcache))
2892 {
2893 *stepping_frame_p = 0;
2894 return tloc;
2895 }
2896
2897 /* If this is a stepping frame, we don't know which location
2898 triggered. The first is as good (or bad) a guess as any... */
2899 *stepping_frame_p = 1;
2900 return t->base.loc;
2901}
2902
3ca73e0c
YQ
2903/* Return all the actions, including default collect, of a tracepoint
2904 T. It constructs cleanups into the chain, and leaves the caller to
2905 handle them (call do_cleanups). */
2906
2907static struct command_line *
2908all_tracepoint_actions_and_cleanup (struct breakpoint *t)
2909{
2910 struct command_line *actions;
2911
2912 actions = breakpoint_commands (t);
2913
2914 /* If there are default expressions to collect, make up a collect
2915 action and prepend to the action list to encode. Note that since
2916 validation is per-tracepoint (local var "xyz" might be valid for
2917 one tracepoint and not another, etc), we make up the action on
2918 the fly, and don't cache it. */
2919 if (*default_collect)
2920 {
2921 struct command_line *default_collect_action;
2922 char *default_collect_line;
2923
2924 default_collect_line = xstrprintf ("collect %s", default_collect);
2925 make_cleanup (xfree, default_collect_line);
2926
2927 validate_actionline (default_collect_line, t);
8d749320 2928 default_collect_action = XNEW (struct command_line);
3ca73e0c
YQ
2929 make_cleanup (xfree, default_collect_action);
2930 default_collect_action->next = actions;
2931 default_collect_action->line = default_collect_line;
2932 actions = default_collect_action;
2933 }
2934
2935 return actions;
2936}
2937
afd02f27
PA
2938/* The tdump command. */
2939
2940static void
2941trace_dump_command (char *args, int from_tty)
2942{
afd02f27
PA
2943 int stepping_frame = 0;
2944 struct bp_location *loc;
4fd2d6af 2945 struct cleanup *old_chain;
ddacd3c8 2946 struct command_line *actions;
afd02f27 2947
ddacd3c8
YQ
2948 /* This throws an error is not inspecting a trace frame. */
2949 loc = get_traceframe_location (&stepping_frame);
afd02f27
PA
2950
2951 printf_filtered ("Data collected at tracepoint %d, trace frame %d:\n",
2952 tracepoint_number, traceframe_number);
2953
de74e63a
YQ
2954 /* This command only makes sense for the current frame, not the
2955 selected frame. */
d1a760cb 2956 old_chain = make_cleanup_restore_current_thread ();
de74e63a
YQ
2957 select_frame (get_current_frame ());
2958
ddacd3c8 2959 actions = all_tracepoint_actions_and_cleanup (loc->owner);
2114d44c
SS
2960
2961 trace_dump_actions (actions, 0, stepping_frame, from_tty);
2962
4fd2d6af 2963 do_cleanups (old_chain);
c906108c
SS
2964}
2965
409873ef
SS
2966/* Encode a piece of a tracepoint's source-level definition in a form
2967 that is suitable for both protocol and saving in files. */
2968/* This version does not do multiple encodes for long strings; it should
2969 return an offset to the next piece to encode. FIXME */
2970
2971extern int
2972encode_source_string (int tpnum, ULONGEST addr,
f00aae0f 2973 char *srctype, const char *src, char *buf, int buf_size)
409873ef
SS
2974{
2975 if (80 + strlen (srctype) > buf_size)
2976 error (_("Buffer too small for source encoding"));
2977 sprintf (buf, "%x:%s:%s:%x:%x:",
3e43a32a
MS
2978 tpnum, phex_nz (addr, sizeof (addr)),
2979 srctype, 0, (int) strlen (src));
409873ef
SS
2980 if (strlen (buf) + strlen (src) * 2 >= buf_size)
2981 error (_("Source string too long for buffer"));
9f1b45b0 2982 bin2hex ((gdb_byte *) src, buf + strlen (buf), strlen (src));
409873ef
SS
2983 return -1;
2984}
2985
d5551862
SS
2986/* Tell the target what to do with an ongoing tracing run if GDB
2987 disconnects for some reason. */
2988
d5551862
SS
2989static void
2990set_disconnected_tracing (char *args, int from_tty,
2991 struct cmd_list_element *c)
2992{
f196051f 2993 target_set_disconnected_tracing (disconnected_tracing);
d5551862
SS
2994}
2995
4daf5ac0
SS
2996static void
2997set_circular_trace_buffer (char *args, int from_tty,
2998 struct cmd_list_element *c)
2999{
3000 target_set_circular_trace_buffer (circular_trace_buffer);
3001}
3002
f6f899bf
HAQ
3003static void
3004set_trace_buffer_size (char *args, int from_tty,
3005 struct cmd_list_element *c)
3006{
3007 target_set_trace_buffer_size (trace_buffer_size);
3008}
3009
f196051f
SS
3010static void
3011set_trace_user (char *args, int from_tty,
3012 struct cmd_list_element *c)
3013{
3014 int ret;
3015
3016 ret = target_set_trace_notes (trace_user, NULL, NULL);
3017
3018 if (!ret)
43011e52 3019 warning (_("Target does not support trace notes, user ignored"));
f196051f
SS
3020}
3021
3022static void
3023set_trace_notes (char *args, int from_tty,
3024 struct cmd_list_element *c)
3025{
3026 int ret;
3027
3028 ret = target_set_trace_notes (NULL, trace_notes, NULL);
3029
3030 if (!ret)
43011e52 3031 warning (_("Target does not support trace notes, note ignored"));
f196051f
SS
3032}
3033
3034static void
3035set_trace_stop_notes (char *args, int from_tty,
3036 struct cmd_list_element *c)
3037{
3038 int ret;
3039
3040 ret = target_set_trace_notes (NULL, NULL, trace_stop_notes);
3041
3042 if (!ret)
43011e52 3043 warning (_("Target does not support trace notes, stop note ignored"));
f196051f
SS
3044}
3045
c906108c
SS
3046/* Convert the memory pointed to by mem into hex, placing result in buf.
3047 * Return a pointer to the last char put in buf (null)
3048 * "stolen" from sparc-stub.c
3049 */
3050
c5aa993b 3051static const char hexchars[] = "0123456789abcdef";
c906108c 3052
47b667de
AC
3053static char *
3054mem2hex (gdb_byte *mem, char *buf, int count)
c906108c 3055{
47b667de 3056 gdb_byte ch;
c906108c
SS
3057
3058 while (count-- > 0)
3059 {
3060 ch = *mem++;
3061
3062 *buf++ = hexchars[ch >> 4];
3063 *buf++ = hexchars[ch & 0xf];
3064 }
3065
3066 *buf = 0;
3067
3068 return buf;
3069}
3070
c5aa993b 3071int
fba45db2 3072get_traceframe_number (void)
c906108c 3073{
c5aa993b 3074 return traceframe_number;
c906108c
SS
3075}
3076
393fd4c3
YQ
3077int
3078get_tracepoint_number (void)
3079{
3080 return tracepoint_number;
3081}
3082
06cd862c
PA
3083/* Make the traceframe NUM be the current trace frame. Does nothing
3084 if NUM is already current. */
3085
3086void
e6e4e701 3087set_current_traceframe (int num)
06cd862c
PA
3088{
3089 int newnum;
3090
3091 if (traceframe_number == num)
3092 {
3093 /* Nothing to do. */
3094 return;
3095 }
3096
3097 newnum = target_trace_find (tfind_number, num, 0, 0, NULL);
3098
3099 if (newnum != num)
3100 warning (_("could not change traceframe"));
3101
8d735b87 3102 set_traceframe_num (newnum);
06cd862c
PA
3103
3104 /* Changing the traceframe changes our view of registers and of the
3105 frame chain. */
3106 registers_changed ();
b3b9301e
PA
3107
3108 clear_traceframe_info ();
06cd862c
PA
3109}
3110
3111/* A cleanup used when switching away and back from tfind mode. */
3112
3113struct current_traceframe_cleanup
3114{
3115 /* The traceframe we were inspecting. */
3116 int traceframe_number;
3117};
3118
3119static void
3120do_restore_current_traceframe_cleanup (void *arg)
3121{
19ba03f4
SM
3122 struct current_traceframe_cleanup *old
3123 = (struct current_traceframe_cleanup *) arg;
06cd862c 3124
e6e4e701 3125 set_current_traceframe (old->traceframe_number);
06cd862c
PA
3126}
3127
3128static void
3129restore_current_traceframe_cleanup_dtor (void *arg)
3130{
19ba03f4
SM
3131 struct current_traceframe_cleanup *old
3132 = (struct current_traceframe_cleanup *) arg;
06cd862c
PA
3133
3134 xfree (old);
3135}
3136
3137struct cleanup *
3138make_cleanup_restore_current_traceframe (void)
3139{
8d749320
SM
3140 struct current_traceframe_cleanup *old =
3141 XNEW (struct current_traceframe_cleanup);
06cd862c 3142
06cd862c
PA
3143 old->traceframe_number = traceframe_number;
3144
3145 return make_cleanup_dtor (do_restore_current_traceframe_cleanup, old,
3146 restore_current_traceframe_cleanup_dtor);
3147}
00bf0b85
SS
3148
3149/* Given a number and address, return an uploaded tracepoint with that
3150 number, creating if necessary. */
3151
3152struct uploaded_tp *
3153get_uploaded_tp (int num, ULONGEST addr, struct uploaded_tp **utpp)
3154{
3155 struct uploaded_tp *utp;
3156
3157 for (utp = *utpp; utp; utp = utp->next)
3158 if (utp->number == num && utp->addr == addr)
3159 return utp;
8d749320
SM
3160
3161 utp = XCNEW (struct uploaded_tp);
00bf0b85
SS
3162 utp->number = num;
3163 utp->addr = addr;
3149d8c1
SS
3164 utp->actions = NULL;
3165 utp->step_actions = NULL;
3166 utp->cmd_strings = NULL;
00bf0b85
SS
3167 utp->next = *utpp;
3168 *utpp = utp;
8d749320 3169
00bf0b85
SS
3170 return utp;
3171}
3172
7951c4eb 3173void
00bf0b85
SS
3174free_uploaded_tps (struct uploaded_tp **utpp)
3175{
3176 struct uploaded_tp *next_one;
3177
3178 while (*utpp)
3179 {
3180 next_one = (*utpp)->next;
3181 xfree (*utpp);
3182 *utpp = next_one;
3183 }
3184}
3185
3186/* Given a number and address, return an uploaded tracepoint with that
3187 number, creating if necessary. */
3188
393fd4c3 3189struct uploaded_tsv *
00bf0b85
SS
3190get_uploaded_tsv (int num, struct uploaded_tsv **utsvp)
3191{
3192 struct uploaded_tsv *utsv;
3193
3194 for (utsv = *utsvp; utsv; utsv = utsv->next)
3195 if (utsv->number == num)
3196 return utsv;
8d749320
SM
3197
3198 utsv = XCNEW (struct uploaded_tsv);
00bf0b85
SS
3199 utsv->number = num;
3200 utsv->next = *utsvp;
3201 *utsvp = utsv;
8d749320 3202
00bf0b85
SS
3203 return utsv;
3204}
3205
7951c4eb 3206void
00bf0b85
SS
3207free_uploaded_tsvs (struct uploaded_tsv **utsvp)
3208{
3209 struct uploaded_tsv *next_one;
3210
3211 while (*utsvp)
3212 {
3213 next_one = (*utsvp)->next;
3214 xfree (*utsvp);
3215 *utsvp = next_one;
3216 }
3217}
3218
4e5c165d
HZ
3219/* FIXME this function is heuristic and will miss the cases where the
3220 conditional is semantically identical but differs in whitespace,
3221 such as "x == 0" vs "x==0". */
3222
3223static int
3224cond_string_is_same (char *str1, char *str2)
3225{
3226 if (str1 == NULL || str2 == NULL)
3227 return (str1 == str2);
3228
3229 return (strcmp (str1, str2) == 0);
3230}
3231
00bf0b85
SS
3232/* Look for an existing tracepoint that seems similar enough to the
3233 uploaded one. Enablement isn't compared, because the user can
3234 toggle that freely, and may have done so in anticipation of the
1e4d1764 3235 next trace run. Return the location of matched tracepoint. */
00bf0b85 3236
70221824 3237static struct bp_location *
1e4d1764 3238find_matching_tracepoint_location (struct uploaded_tp *utp)
00bf0b85
SS
3239{
3240 VEC(breakpoint_p) *tp_vec = all_tracepoints ();
3241 int ix;
d9b3f62e 3242 struct breakpoint *b;
00bf0b85
SS
3243 struct bp_location *loc;
3244
d9b3f62e 3245 for (ix = 0; VEC_iterate (breakpoint_p, tp_vec, ix, b); ix++)
00bf0b85 3246 {
d9b3f62e
PA
3247 struct tracepoint *t = (struct tracepoint *) b;
3248
3249 if (b->type == utp->type
00bf0b85
SS
3250 && t->step_count == utp->step
3251 && t->pass_count == utp->pass
4e5c165d
HZ
3252 && cond_string_is_same (t->base.cond_string, utp->cond_string)
3253 /* FIXME also test actions. */
00bf0b85
SS
3254 )
3255 {
3256 /* Scan the locations for an address match. */
d9b3f62e 3257 for (loc = b->loc; loc; loc = loc->next)
00bf0b85
SS
3258 {
3259 if (loc->address == utp->addr)
1e4d1764 3260 return loc;
00bf0b85
SS
3261 }
3262 }
3263 }
3264 return NULL;
3265}
3266
3267/* Given a list of tracepoints uploaded from a target, attempt to
3268 match them up with existing tracepoints, and create new ones if not
3269 found. */
3270
3271void
3272merge_uploaded_tracepoints (struct uploaded_tp **uploaded_tps)
3273{
3274 struct uploaded_tp *utp;
f2a8bc8a
YQ
3275 /* A set of tracepoints which are modified. */
3276 VEC(breakpoint_p) *modified_tp = NULL;
3277 int ix;
3278 struct breakpoint *b;
00bf0b85
SS
3279
3280 /* Look for GDB tracepoints that match up with our uploaded versions. */
3281 for (utp = *uploaded_tps; utp; utp = utp->next)
3282 {
1e4d1764
YQ
3283 struct bp_location *loc;
3284 struct tracepoint *t;
3285
3286 loc = find_matching_tracepoint_location (utp);
3287 if (loc)
3288 {
f2a8bc8a
YQ
3289 int found = 0;
3290
1e4d1764
YQ
3291 /* Mark this location as already inserted. */
3292 loc->inserted = 1;
3293 t = (struct tracepoint *) loc->owner;
3294 printf_filtered (_("Assuming tracepoint %d is same "
3295 "as target's tracepoint %d at %s.\n"),
3296 loc->owner->number, utp->number,
3297 paddress (loc->gdbarch, utp->addr));
f2a8bc8a
YQ
3298
3299 /* The tracepoint LOC->owner was modified (the location LOC
3300 was marked as inserted in the target). Save it in
3301 MODIFIED_TP if not there yet. The 'breakpoint-modified'
3302 observers will be notified later once for each tracepoint
3303 saved in MODIFIED_TP. */
3304 for (ix = 0;
3305 VEC_iterate (breakpoint_p, modified_tp, ix, b);
3306 ix++)
3307 if (b == loc->owner)
3308 {
3309 found = 1;
3310 break;
3311 }
3312 if (!found)
3313 VEC_safe_push (breakpoint_p, modified_tp, loc->owner);
1e4d1764 3314 }
00bf0b85
SS
3315 else
3316 {
3317 t = create_tracepoint_from_upload (utp);
3318 if (t)
3e43a32a
MS
3319 printf_filtered (_("Created tracepoint %d for "
3320 "target's tracepoint %d at %s.\n"),
d9b3f62e 3321 t->base.number, utp->number,
3e43a32a 3322 paddress (get_current_arch (), utp->addr));
00bf0b85 3323 else
3e43a32a
MS
3324 printf_filtered (_("Failed to create tracepoint for target's "
3325 "tracepoint %d at %s, skipping it.\n"),
3326 utp->number,
3327 paddress (get_current_arch (), utp->addr));
00bf0b85
SS
3328 }
3329 /* Whether found or created, record the number used by the
3330 target, to help with mapping target tracepoints back to their
3331 counterparts here. */
3332 if (t)
3333 t->number_on_target = utp->number;
3334 }
3335
f2a8bc8a
YQ
3336 /* Notify 'breakpoint-modified' observer that at least one of B's
3337 locations was changed. */
3338 for (ix = 0; VEC_iterate (breakpoint_p, modified_tp, ix, b); ix++)
3339 observer_notify_breakpoint_modified (b);
3340
3341 VEC_free (breakpoint_p, modified_tp);
00bf0b85
SS
3342 free_uploaded_tps (uploaded_tps);
3343}
3344
3345/* Trace state variables don't have much to identify them beyond their
3346 name, so just use that to detect matches. */
3347
70221824 3348static struct trace_state_variable *
00bf0b85
SS
3349find_matching_tsv (struct uploaded_tsv *utsv)
3350{
3351 if (!utsv->name)
3352 return NULL;
3353
3354 return find_trace_state_variable (utsv->name);
3355}
3356
70221824 3357static struct trace_state_variable *
00bf0b85
SS
3358create_tsv_from_upload (struct uploaded_tsv *utsv)
3359{
3360 const char *namebase;
df5a4bd3 3361 char *buf;
00bf0b85
SS
3362 int try_num = 0;
3363 struct trace_state_variable *tsv;
df5a4bd3 3364 struct cleanup *old_chain;
00bf0b85
SS
3365
3366 if (utsv->name)
3367 {
3368 namebase = utsv->name;
df5a4bd3 3369 buf = xstrprintf ("%s", namebase);
00bf0b85
SS
3370 }
3371 else
3372 {
3373 namebase = "__tsv";
df5a4bd3 3374 buf = xstrprintf ("%s_%d", namebase, try_num++);
00bf0b85
SS
3375 }
3376
3377 /* Fish for a name that is not in use. */
c378eb4e 3378 /* (should check against all internal vars?) */
00bf0b85 3379 while (find_trace_state_variable (buf))
df5a4bd3
HZ
3380 {
3381 xfree (buf);
3382 buf = xstrprintf ("%s_%d", namebase, try_num++);
3383 }
3384
3385 old_chain = make_cleanup (xfree, buf);
00bf0b85
SS
3386
3387 /* We have an available name, create the variable. */
a0aa2878 3388 tsv = create_trace_state_variable (buf);
00bf0b85
SS
3389 tsv->initial_value = utsv->initial_value;
3390 tsv->builtin = utsv->builtin;
3391
134a2066 3392 observer_notify_tsv_created (tsv);
bb25a15c 3393
df5a4bd3
HZ
3394 do_cleanups (old_chain);
3395
00bf0b85
SS
3396 return tsv;
3397}
3398
3399/* Given a list of uploaded trace state variables, try to match them
3400 up with existing variables, or create additional ones. */
3401
3402void
3403merge_uploaded_trace_state_variables (struct uploaded_tsv **uploaded_tsvs)
3404{
3405 int ix;
3406 struct uploaded_tsv *utsv;
3407 struct trace_state_variable *tsv;
3408 int highest;
3409
3410 /* Most likely some numbers will have to be reassigned as part of
3411 the merge, so clear them all in anticipation. */
3412 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3413 tsv->number = 0;
3414
3415 for (utsv = *uploaded_tsvs; utsv; utsv = utsv->next)
3416 {
3417 tsv = find_matching_tsv (utsv);
3418 if (tsv)
417b5110
DJ
3419 {
3420 if (info_verbose)
3e43a32a
MS
3421 printf_filtered (_("Assuming trace state variable $%s "
3422 "is same as target's variable %d.\n"),
417b5110
DJ
3423 tsv->name, utsv->number);
3424 }
00bf0b85
SS
3425 else
3426 {
3427 tsv = create_tsv_from_upload (utsv);
417b5110 3428 if (info_verbose)
3e43a32a
MS
3429 printf_filtered (_("Created trace state variable "
3430 "$%s for target's variable %d.\n"),
417b5110 3431 tsv->name, utsv->number);
00bf0b85
SS
3432 }
3433 /* Give precedence to numberings that come from the target. */
3434 if (tsv)
3435 tsv->number = utsv->number;
3436 }
3437
3438 /* Renumber everything that didn't get a target-assigned number. */
3439 highest = 0;
3440 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3441 if (tsv->number > highest)
3442 highest = tsv->number;
3443
3444 ++highest;
3445 for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
3446 if (tsv->number == 0)
3447 tsv->number = highest++;
3448
3449 free_uploaded_tsvs (uploaded_tsvs);
3450}
3451
00bf0b85
SS
3452/* Parse the part of trace status syntax that is shared between
3453 the remote protocol and the trace file reader. */
3454
00bf0b85
SS
3455void
3456parse_trace_status (char *line, struct trace_status *ts)
3457{
f196051f
SS
3458 char *p = line, *p1, *p2, *p3, *p_temp;
3459 int end;
00bf0b85
SS
3460 ULONGEST val;
3461
3462 ts->running_known = 1;
3463 ts->running = (*p++ == '1');
3464 ts->stop_reason = trace_stop_reason_unknown;
f196051f
SS
3465 xfree (ts->stop_desc);
3466 ts->stop_desc = NULL;
4daf5ac0
SS
3467 ts->traceframe_count = -1;
3468 ts->traceframes_created = -1;
3469 ts->buffer_free = -1;
3470 ts->buffer_size = -1;
33da3f1c
SS
3471 ts->disconnected_tracing = 0;
3472 ts->circular_buffer = 0;
f196051f
SS
3473 xfree (ts->user_name);
3474 ts->user_name = NULL;
3475 xfree (ts->notes);
3476 ts->notes = NULL;
3477 ts->start_time = ts->stop_time = 0;
4daf5ac0 3478
00bf0b85
SS
3479 while (*p++)
3480 {
3481 p1 = strchr (p, ':');
3482 if (p1 == NULL)
3483 error (_("Malformed trace status, at %s\n\
3484Status line: '%s'\n"), p, line);
f196051f
SS
3485 p3 = strchr (p, ';');
3486 if (p3 == NULL)
3487 p3 = p + strlen (p);
00bf0b85
SS
3488 if (strncmp (p, stop_reason_names[trace_buffer_full], p1 - p) == 0)
3489 {
3490 p = unpack_varlen_hex (++p1, &val);
3491 ts->stop_reason = trace_buffer_full;
3492 }
3493 else if (strncmp (p, stop_reason_names[trace_never_run], p1 - p) == 0)
3494 {
3495 p = unpack_varlen_hex (++p1, &val);
3496 ts->stop_reason = trace_never_run;
3497 }
3e43a32a
MS
3498 else if (strncmp (p, stop_reason_names[tracepoint_passcount],
3499 p1 - p) == 0)
00bf0b85
SS
3500 {
3501 p = unpack_varlen_hex (++p1, &val);
3502 ts->stop_reason = tracepoint_passcount;
3503 ts->stopping_tracepoint = val;
3504 }
3505 else if (strncmp (p, stop_reason_names[tstop_command], p1 - p) == 0)
3506 {
f196051f
SS
3507 p2 = strchr (++p1, ':');
3508 if (!p2 || p2 > p3)
3509 {
3510 /*older style*/
3511 p2 = p1;
3512 }
3513 else if (p2 != p1)
3514 {
224c3ddb 3515 ts->stop_desc = (char *) xmalloc (strlen (line));
bc20a4af 3516 end = hex2bin (p1, (gdb_byte *) ts->stop_desc, (p2 - p1) / 2);
f196051f
SS
3517 ts->stop_desc[end] = '\0';
3518 }
3519 else
3520 ts->stop_desc = xstrdup ("");
3521
3522 p = unpack_varlen_hex (++p2, &val);
00bf0b85
SS
3523 ts->stop_reason = tstop_command;
3524 }
33da3f1c
SS
3525 else if (strncmp (p, stop_reason_names[trace_disconnected], p1 - p) == 0)
3526 {
3527 p = unpack_varlen_hex (++p1, &val);
3528 ts->stop_reason = trace_disconnected;
3529 }
6c28cbf2
SS
3530 else if (strncmp (p, stop_reason_names[tracepoint_error], p1 - p) == 0)
3531 {
3532 p2 = strchr (++p1, ':');
3533 if (p2 != p1)
3534 {
224c3ddb 3535 ts->stop_desc = (char *) xmalloc ((p2 - p1) / 2 + 1);
bc20a4af 3536 end = hex2bin (p1, (gdb_byte *) ts->stop_desc, (p2 - p1) / 2);
f196051f 3537 ts->stop_desc[end] = '\0';
6c28cbf2 3538 }
a609a0c8 3539 else
f196051f 3540 ts->stop_desc = xstrdup ("");
a609a0c8 3541
6c28cbf2
SS
3542 p = unpack_varlen_hex (++p2, &val);
3543 ts->stopping_tracepoint = val;
3544 ts->stop_reason = tracepoint_error;
3545 }
4daf5ac0 3546 else if (strncmp (p, "tframes", p1 - p) == 0)
00bf0b85
SS
3547 {
3548 p = unpack_varlen_hex (++p1, &val);
3549 ts->traceframe_count = val;
3550 }
4daf5ac0
SS
3551 else if (strncmp (p, "tcreated", p1 - p) == 0)
3552 {
3553 p = unpack_varlen_hex (++p1, &val);
3554 ts->traceframes_created = val;
3555 }
3556 else if (strncmp (p, "tfree", p1 - p) == 0)
00bf0b85
SS
3557 {
3558 p = unpack_varlen_hex (++p1, &val);
3559 ts->buffer_free = val;
3560 }
4daf5ac0
SS
3561 else if (strncmp (p, "tsize", p1 - p) == 0)
3562 {
3563 p = unpack_varlen_hex (++p1, &val);
3564 ts->buffer_size = val;
3565 }
33da3f1c
SS
3566 else if (strncmp (p, "disconn", p1 - p) == 0)
3567 {
3568 p = unpack_varlen_hex (++p1, &val);
3569 ts->disconnected_tracing = val;
3570 }
3571 else if (strncmp (p, "circular", p1 - p) == 0)
3572 {
3573 p = unpack_varlen_hex (++p1, &val);
3574 ts->circular_buffer = val;
3575 }
f196051f
SS
3576 else if (strncmp (p, "starttime", p1 - p) == 0)
3577 {
3578 p = unpack_varlen_hex (++p1, &val);
3579 ts->start_time = val;
3580 }
3581 else if (strncmp (p, "stoptime", p1 - p) == 0)
3582 {
3583 p = unpack_varlen_hex (++p1, &val);
3584 ts->stop_time = val;
3585 }
3586 else if (strncmp (p, "username", p1 - p) == 0)
3587 {
3588 ++p1;
224c3ddb 3589 ts->user_name = (char *) xmalloc (strlen (p) / 2);
bc20a4af 3590 end = hex2bin (p1, (gdb_byte *) ts->user_name, (p3 - p1) / 2);
f196051f
SS
3591 ts->user_name[end] = '\0';
3592 p = p3;
3593 }
3594 else if (strncmp (p, "notes", p1 - p) == 0)
3595 {
3596 ++p1;
224c3ddb 3597 ts->notes = (char *) xmalloc (strlen (p) / 2);
bc20a4af 3598 end = hex2bin (p1, (gdb_byte *) ts->notes, (p3 - p1) / 2);
f196051f
SS
3599 ts->notes[end] = '\0';
3600 p = p3;
3601 }
00bf0b85
SS
3602 else
3603 {
3604 /* Silently skip unknown optional info. */
3605 p_temp = strchr (p1 + 1, ';');
3606 if (p_temp)
3607 p = p_temp;
3608 else
3609 /* Must be at the end. */
3610 break;
3611 }
3612 }
3613}
3614
f196051f
SS
3615void
3616parse_tracepoint_status (char *p, struct breakpoint *bp,
3617 struct uploaded_tp *utp)
3618{
3619 ULONGEST uval;
3620 struct tracepoint *tp = (struct tracepoint *) bp;
3621
3622 p = unpack_varlen_hex (p, &uval);
3623 if (tp)
3624 tp->base.hit_count += uval;
3625 else
3626 utp->hit_count += uval;
3627 p = unpack_varlen_hex (p + 1, &uval);
3628 if (tp)
3629 tp->traceframe_usage += uval;
3630 else
3631 utp->traceframe_usage += uval;
3632 /* Ignore any extra, allowing for future extensions. */
3633}
3634
409873ef
SS
3635/* Given a line of text defining a part of a tracepoint, parse it into
3636 an "uploaded tracepoint". */
00bf0b85
SS
3637
3638void
3639parse_tracepoint_definition (char *line, struct uploaded_tp **utpp)
3640{
3641 char *p;
3642 char piece;
409873ef 3643 ULONGEST num, addr, step, pass, orig_size, xlen, start;
2a2287c7 3644 int enabled, end;
00bf0b85 3645 enum bptype type;
2a2287c7 3646 char *cond, *srctype, *buf;
00bf0b85
SS
3647 struct uploaded_tp *utp = NULL;
3648
3649 p = line;
3650 /* Both tracepoint and action definitions start with the same number
3651 and address sequence. */
3652 piece = *p++;
3653 p = unpack_varlen_hex (p, &num);
3654 p++; /* skip a colon */
3655 p = unpack_varlen_hex (p, &addr);
3656 p++; /* skip a colon */
3657 if (piece == 'T')
3658 {
3659 enabled = (*p++ == 'E');
3660 p++; /* skip a colon */
3661 p = unpack_varlen_hex (p, &step);
3662 p++; /* skip a colon */
3663 p = unpack_varlen_hex (p, &pass);
3664 type = bp_tracepoint;
3665 cond = NULL;
3666 /* Thumb through optional fields. */
3667 while (*p == ':')
3668 {
3669 p++; /* skip a colon */
3670 if (*p == 'F')
3671 {
3672 type = bp_fast_tracepoint;
3673 p++;
3674 p = unpack_varlen_hex (p, &orig_size);
3675 }
0fb4aa4b
PA
3676 else if (*p == 'S')
3677 {
3678 type = bp_static_tracepoint;
3679 p++;
3680 }
00bf0b85
SS
3681 else if (*p == 'X')
3682 {
3683 p++;
3684 p = unpack_varlen_hex (p, &xlen);
3685 p++; /* skip a comma */
3686 cond = (char *) xmalloc (2 * xlen + 1);
3687 strncpy (cond, p, 2 * xlen);
3688 cond[2 * xlen] = '\0';
3689 p += 2 * xlen;
3690 }
3691 else
3e43a32a
MS
3692 warning (_("Unrecognized char '%c' in tracepoint "
3693 "definition, skipping rest"), *p);
00bf0b85
SS
3694 }
3695 utp = get_uploaded_tp (num, addr, utpp);
3696 utp->type = type;
3697 utp->enabled = enabled;
3698 utp->step = step;
3699 utp->pass = pass;
3700 utp->cond = cond;
3701 }
3702 else if (piece == 'A')
3703 {
3704 utp = get_uploaded_tp (num, addr, utpp);
3149d8c1 3705 VEC_safe_push (char_ptr, utp->actions, xstrdup (p));
00bf0b85
SS
3706 }
3707 else if (piece == 'S')
3708 {
3709 utp = get_uploaded_tp (num, addr, utpp);
3149d8c1 3710 VEC_safe_push (char_ptr, utp->step_actions, xstrdup (p));
00bf0b85 3711 }
409873ef
SS
3712 else if (piece == 'Z')
3713 {
3714 /* Parse a chunk of source form definition. */
3715 utp = get_uploaded_tp (num, addr, utpp);
3716 srctype = p;
3717 p = strchr (p, ':');
3718 p++; /* skip a colon */
3719 p = unpack_varlen_hex (p, &start);
3720 p++; /* skip a colon */
3721 p = unpack_varlen_hex (p, &xlen);
3722 p++; /* skip a colon */
3723
224c3ddb 3724 buf = (char *) alloca (strlen (line));
409873ef
SS
3725
3726 end = hex2bin (p, (gdb_byte *) buf, strlen (p) / 2);
3727 buf[end] = '\0';
3728
61012eef 3729 if (startswith (srctype, "at:"))
409873ef 3730 utp->at_string = xstrdup (buf);
61012eef 3731 else if (startswith (srctype, "cond:"))
409873ef 3732 utp->cond_string = xstrdup (buf);
61012eef 3733 else if (startswith (srctype, "cmd:"))
3149d8c1 3734 VEC_safe_push (char_ptr, utp->cmd_strings, xstrdup (buf));
409873ef 3735 }
f196051f
SS
3736 else if (piece == 'V')
3737 {
3738 utp = get_uploaded_tp (num, addr, utpp);
3739
3740 parse_tracepoint_status (p, NULL, utp);
3741 }
00bf0b85
SS
3742 else
3743 {
409873ef
SS
3744 /* Don't error out, the target might be sending us optional
3745 info that we don't care about. */
3746 warning (_("Unrecognized tracepoint piece '%c', ignoring"), piece);
00bf0b85
SS
3747 }
3748}
3749
3750/* Convert a textual description of a trace state variable into an
3751 uploaded object. */
3752
3753void
3754parse_tsv_definition (char *line, struct uploaded_tsv **utsvp)
3755{
3756 char *p, *buf;
3757 ULONGEST num, initval, builtin;
3758 int end;
3759 struct uploaded_tsv *utsv = NULL;
3760
224c3ddb 3761 buf = (char *) alloca (strlen (line));
00bf0b85
SS
3762
3763 p = line;
3764 p = unpack_varlen_hex (p, &num);
3765 p++; /* skip a colon */
3766 p = unpack_varlen_hex (p, &initval);
3767 p++; /* skip a colon */
3768 p = unpack_varlen_hex (p, &builtin);
3769 p++; /* skip a colon */
3770 end = hex2bin (p, (gdb_byte *) buf, strlen (p) / 2);
3771 buf[end] = '\0';
3772
3773 utsv = get_uploaded_tsv (num, utsvp);
3774 utsv->initial_value = initval;
3775 utsv->builtin = builtin;
3776 utsv->name = xstrdup (buf);
3777}
3778
5808517f
YQ
3779void
3780free_current_marker (void *arg)
3781{
19ba03f4
SM
3782 struct static_tracepoint_marker **marker_p
3783 = (struct static_tracepoint_marker **) arg;
5808517f
YQ
3784
3785 if (*marker_p != NULL)
3786 {
3787 release_static_tracepoint_marker (*marker_p);
3788 xfree (*marker_p);
3789 }
3790 else
3791 *marker_p = NULL;
3792}
3793
0fb4aa4b
PA
3794/* Given a line of text defining a static tracepoint marker, parse it
3795 into a "static tracepoint marker" object. Throws an error is
3796 parsing fails. If PP is non-null, it points to one past the end of
3797 the parsed marker definition. */
3798
3799void
3800parse_static_tracepoint_marker_definition (char *line, char **pp,
3801 struct static_tracepoint_marker *marker)
3802{
3803 char *p, *endp;
3804 ULONGEST addr;
3805 int end;
3806
3807 p = line;
3808 p = unpack_varlen_hex (p, &addr);
3809 p++; /* skip a colon */
3810
f5656ead 3811 marker->gdbarch = target_gdbarch ();
0fb4aa4b
PA
3812 marker->address = (CORE_ADDR) addr;
3813
3814 endp = strchr (p, ':');
3815 if (endp == NULL)
74232302 3816 error (_("bad marker definition: %s"), line);
0fb4aa4b 3817
224c3ddb 3818 marker->str_id = (char *) xmalloc (endp - p + 1);
0fb4aa4b
PA
3819 end = hex2bin (p, (gdb_byte *) marker->str_id, (endp - p + 1) / 2);
3820 marker->str_id[end] = '\0';
3821
3822 p += 2 * end;
3823 p++; /* skip a colon */
3824
224c3ddb 3825 marker->extra = (char *) xmalloc (strlen (p) + 1);
0fb4aa4b
PA
3826 end = hex2bin (p, (gdb_byte *) marker->extra, strlen (p) / 2);
3827 marker->extra[end] = '\0';
3828
3829 if (pp)
3830 *pp = p;
3831}
3832
3833/* Release a static tracepoint marker's contents. Note that the
3834 object itself isn't released here. There objects are usually on
3835 the stack. */
3836
3837void
3838release_static_tracepoint_marker (struct static_tracepoint_marker *marker)
3839{
3840 xfree (marker->str_id);
3841 marker->str_id = NULL;
3842}
3843
3844/* Print MARKER to gdb_stdout. */
3845
3846static void
3847print_one_static_tracepoint_marker (int count,
3848 struct static_tracepoint_marker *marker)
3849{
0fb4aa4b
PA
3850 struct symbol *sym;
3851
3852 char wrap_indent[80];
3853 char extra_field_indent[80];
79a45e25 3854 struct ui_out *uiout = current_uiout;
0fb4aa4b
PA
3855 struct cleanup *bkpt_chain;
3856 VEC(breakpoint_p) *tracepoints;
3857
3858 struct symtab_and_line sal;
3859
3860 init_sal (&sal);
3861
3862 sal.pc = marker->address;
3863
3864 tracepoints = static_tracepoints_here (marker->address);
3865
3866 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "marker");
3867
3868 /* A counter field to help readability. This is not a stable
3869 identifier! */
3870 ui_out_field_int (uiout, "count", count);
3871
3872 ui_out_field_string (uiout, "marker-id", marker->str_id);
3873
3874 ui_out_field_fmt (uiout, "enabled", "%c",
3875 !VEC_empty (breakpoint_p, tracepoints) ? 'y' : 'n');
3876 ui_out_spaces (uiout, 2);
3877
3878 strcpy (wrap_indent, " ");
3879
3880 if (gdbarch_addr_bit (marker->gdbarch) <= 32)
3881 strcat (wrap_indent, " ");
3882 else
3883 strcat (wrap_indent, " ");
3884
3885 strcpy (extra_field_indent, " ");
3886
3887 ui_out_field_core_addr (uiout, "addr", marker->gdbarch, marker->address);
3888
3889 sal = find_pc_line (marker->address, 0);
3890 sym = find_pc_sect_function (marker->address, NULL);
3891 if (sym)
3892 {
3893 ui_out_text (uiout, "in ");
3894 ui_out_field_string (uiout, "func",
3895 SYMBOL_PRINT_NAME (sym));
3896 ui_out_wrap_hint (uiout, wrap_indent);
3897 ui_out_text (uiout, " at ");
3898 }
3899 else
3900 ui_out_field_skip (uiout, "func");
3901
3902 if (sal.symtab != NULL)
3903 {
05cba821
JK
3904 ui_out_field_string (uiout, "file",
3905 symtab_to_filename_for_display (sal.symtab));
0fb4aa4b
PA
3906 ui_out_text (uiout, ":");
3907
3908 if (ui_out_is_mi_like_p (uiout))
3909 {
0b0865da 3910 const char *fullname = symtab_to_fullname (sal.symtab);
0fb4aa4b 3911
f35a17b5 3912 ui_out_field_string (uiout, "fullname", fullname);
0fb4aa4b
PA
3913 }
3914 else
3915 ui_out_field_skip (uiout, "fullname");
3916
3917 ui_out_field_int (uiout, "line", sal.line);
3918 }
3919 else
3920 {
3921 ui_out_field_skip (uiout, "fullname");
3922 ui_out_field_skip (uiout, "line");
3923 }
3924
3925 ui_out_text (uiout, "\n");
3926 ui_out_text (uiout, extra_field_indent);
3927 ui_out_text (uiout, _("Data: \""));
3928 ui_out_field_string (uiout, "extra-data", marker->extra);
3929 ui_out_text (uiout, "\"\n");
3930
3931 if (!VEC_empty (breakpoint_p, tracepoints))
3932 {
3933 struct cleanup *cleanup_chain;
3934 int ix;
3935 struct breakpoint *b;
3936
3937 cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout,
3938 "tracepoints-at");
3939
3940 ui_out_text (uiout, extra_field_indent);
3941 ui_out_text (uiout, _("Probed by static tracepoints: "));
3942 for (ix = 0; VEC_iterate(breakpoint_p, tracepoints, ix, b); ix++)
3943 {
3944 if (ix > 0)
3945 ui_out_text (uiout, ", ");
3946 ui_out_text (uiout, "#");
3947 ui_out_field_int (uiout, "tracepoint-id", b->number);
3948 }
3949
3950 do_cleanups (cleanup_chain);
3951
3952 if (ui_out_is_mi_like_p (uiout))
3953 ui_out_field_int (uiout, "number-of-tracepoints",
3954 VEC_length(breakpoint_p, tracepoints));
3955 else
3956 ui_out_text (uiout, "\n");
3957 }
3958 VEC_free (breakpoint_p, tracepoints);
3959
3960 do_cleanups (bkpt_chain);
0fb4aa4b
PA
3961}
3962
3963static void
3964info_static_tracepoint_markers_command (char *arg, int from_tty)
3965{
3966 VEC(static_tracepoint_marker_p) *markers;
3967 struct cleanup *old_chain;
3968 struct static_tracepoint_marker *marker;
79a45e25 3969 struct ui_out *uiout = current_uiout;
0fb4aa4b
PA
3970 int i;
3971
d1feda86
YQ
3972 /* We don't have to check target_can_use_agent and agent's capability on
3973 static tracepoint here, in order to be compatible with older GDBserver.
3974 We don't check USE_AGENT is true or not, because static tracepoints
3975 don't work without in-process agent, so we don't bother users to type
3976 `set agent on' when to use static tracepoint. */
3977
0fb4aa4b
PA
3978 old_chain
3979 = make_cleanup_ui_out_table_begin_end (uiout, 5, -1,
3980 "StaticTracepointMarkersTable");
3981
3982 ui_out_table_header (uiout, 7, ui_left, "counter", "Cnt");
3983
3984 ui_out_table_header (uiout, 40, ui_left, "marker-id", "ID");
3985
3986 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb");
f5656ead 3987 if (gdbarch_addr_bit (target_gdbarch ()) <= 32)
0fb4aa4b
PA
3988 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");
3989 else
3990 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");
3991 ui_out_table_header (uiout, 40, ui_noalign, "what", "What");
3992
3993 ui_out_table_body (uiout);
3994
3995 markers = target_static_tracepoint_markers_by_strid (NULL);
3996 make_cleanup (VEC_cleanup (static_tracepoint_marker_p), &markers);
3997
3998 for (i = 0;
3999 VEC_iterate (static_tracepoint_marker_p,
4000 markers, i, marker);
4001 i++)
4002 {
4003 print_one_static_tracepoint_marker (i + 1, marker);
4004 release_static_tracepoint_marker (marker);
4005 }
4006
4007 do_cleanups (old_chain);
4008}
4009
4010/* The $_sdata convenience variable is a bit special. We don't know
4011 for sure type of the value until we actually have a chance to fetch
4012 the data --- the size of the object depends on what has been
4013 collected. We solve this by making $_sdata be an internalvar that
4014 creates a new value on access. */
4015
4016/* Return a new value with the correct type for the sdata object of
4017 the current trace frame. Return a void value if there's no object
4018 available. */
4019
4020static struct value *
22d2b532
SDJ
4021sdata_make_value (struct gdbarch *gdbarch, struct internalvar *var,
4022 void *ignore)
0fb4aa4b
PA
4023{
4024 LONGEST size;
4025 gdb_byte *buf;
4026
4027 /* We need to read the whole object before we know its size. */
4028 size = target_read_alloc (&current_target,
4029 TARGET_OBJECT_STATIC_TRACE_DATA,
4030 NULL, &buf);
4031 if (size >= 0)
4032 {
4033 struct value *v;
4034 struct type *type;
4035
4036 type = init_vector_type (builtin_type (gdbarch)->builtin_true_char,
4037 size);
4038 v = allocate_value (type);
4039 memcpy (value_contents_raw (v), buf, size);
4040 xfree (buf);
4041 return v;
4042 }
4043 else
4044 return allocate_value (builtin_type (gdbarch)->builtin_void);
4045}
4046
b3b9301e
PA
4047#if !defined(HAVE_LIBEXPAT)
4048
4049struct traceframe_info *
4050parse_traceframe_info (const char *tframe_info)
4051{
4052 static int have_warned;
4053
4054 if (!have_warned)
4055 {
4056 have_warned = 1;
4057 warning (_("Can not parse XML trace frame info; XML support "
4058 "was disabled at compile time"));
4059 }
4060
4061 return NULL;
4062}
4063
4064#else /* HAVE_LIBEXPAT */
4065
4066#include "xml-support.h"
4067
4068/* Handle the start of a <memory> element. */
4069
4070static void
4071traceframe_info_start_memory (struct gdb_xml_parser *parser,
4072 const struct gdb_xml_element *element,
4073 void *user_data, VEC(gdb_xml_value_s) *attributes)
4074{
19ba03f4 4075 struct traceframe_info *info = (struct traceframe_info *) user_data;
b3b9301e
PA
4076 struct mem_range *r = VEC_safe_push (mem_range_s, info->memory, NULL);
4077 ULONGEST *start_p, *length_p;
4078
19ba03f4 4079 start_p
bc84451b 4080 = (ULONGEST *) xml_find_attribute (attributes, "start")->value;
19ba03f4 4081 length_p
bc84451b 4082 = (ULONGEST *) xml_find_attribute (attributes, "length")->value;
b3b9301e
PA
4083
4084 r->start = *start_p;
4085 r->length = *length_p;
4086}
4087
28a93511
YQ
4088/* Handle the start of a <tvar> element. */
4089
4090static void
4091traceframe_info_start_tvar (struct gdb_xml_parser *parser,
4092 const struct gdb_xml_element *element,
4093 void *user_data,
4094 VEC(gdb_xml_value_s) *attributes)
4095{
19ba03f4
SM
4096 struct traceframe_info *info = (struct traceframe_info *) user_data;
4097 const char *id_attrib
4098 = (const char *) xml_find_attribute (attributes, "id")->value;
28a93511
YQ
4099 int id = gdb_xml_parse_ulongest (parser, id_attrib);
4100
4101 VEC_safe_push (int, info->tvars, id);
4102}
4103
b3b9301e
PA
4104/* Discard the constructed trace frame info (if an error occurs). */
4105
4106static void
4107free_result (void *p)
4108{
19ba03f4 4109 struct traceframe_info *result = (struct traceframe_info *) p;
b3b9301e
PA
4110
4111 free_traceframe_info (result);
4112}
4113
4114/* The allowed elements and attributes for an XML memory map. */
4115
4116static const struct gdb_xml_attribute memory_attributes[] = {
4117 { "start", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
4118 { "length", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
4119 { NULL, GDB_XML_AF_NONE, NULL, NULL }
4120};
4121
28a93511
YQ
4122static const struct gdb_xml_attribute tvar_attributes[] = {
4123 { "id", GDB_XML_AF_NONE, NULL, NULL },
4124 { NULL, GDB_XML_AF_NONE, NULL, NULL }
4125};
4126
b3b9301e
PA
4127static const struct gdb_xml_element traceframe_info_children[] = {
4128 { "memory", memory_attributes, NULL,
4129 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
4130 traceframe_info_start_memory, NULL },
28a93511
YQ
4131 { "tvar", tvar_attributes, NULL,
4132 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
4133 traceframe_info_start_tvar, NULL },
b3b9301e
PA
4134 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
4135};
4136
4137static const struct gdb_xml_element traceframe_info_elements[] = {
4138 { "traceframe-info", NULL, traceframe_info_children, GDB_XML_EF_NONE,
4139 NULL, NULL },
4140 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
4141};
4142
4143/* Parse a traceframe-info XML document. */
4144
4145struct traceframe_info *
4146parse_traceframe_info (const char *tframe_info)
4147{
4148 struct traceframe_info *result;
4149 struct cleanup *back_to;
4150
4151 result = XCNEW (struct traceframe_info);
4152 back_to = make_cleanup (free_result, result);
4153
4154 if (gdb_xml_parse_quick (_("trace frame info"),
4155 "traceframe-info.dtd", traceframe_info_elements,
4156 tframe_info, result) == 0)
4157 {
4158 /* Parsed successfully, keep the result. */
4159 discard_cleanups (back_to);
4160
4161 return result;
4162 }
4163
4164 do_cleanups (back_to);
4165 return NULL;
4166}
4167
4168#endif /* HAVE_LIBEXPAT */
4169
4170/* Returns the traceframe_info object for the current traceframe.
4171 This is where we avoid re-fetching the object from the target if we
4172 already have it cached. */
4173
dc673c81 4174struct traceframe_info *
b3b9301e
PA
4175get_traceframe_info (void)
4176{
4177 if (traceframe_info == NULL)
4178 traceframe_info = target_traceframe_info ();
4179
4180 return traceframe_info;
4181}
4182
c0f61f9c
PA
4183/* If the target supports the query, return in RESULT the set of
4184 collected memory in the current traceframe, found within the LEN
4185 bytes range starting at MEMADDR. Returns true if the target
4186 supports the query, otherwise returns false, and RESULT is left
4187 undefined. */
2a7498d8
PA
4188
4189int
4190traceframe_available_memory (VEC(mem_range_s) **result,
4191 CORE_ADDR memaddr, ULONGEST len)
4192{
4193 struct traceframe_info *info = get_traceframe_info ();
4194
4195 if (info != NULL)
4196 {
4197 struct mem_range *r;
4198 int i;
4199
4200 *result = NULL;
4201
4202 for (i = 0; VEC_iterate (mem_range_s, info->memory, i, r); i++)
4203 if (mem_ranges_overlap (r->start, r->length, memaddr, len))
4204 {
4205 ULONGEST lo1, hi1, lo2, hi2;
4206 struct mem_range *nr;
4207
4208 lo1 = memaddr;
4209 hi1 = memaddr + len;
4210
4211 lo2 = r->start;
4212 hi2 = r->start + r->length;
4213
4214 nr = VEC_safe_push (mem_range_s, *result, NULL);
4215
325fac50
PA
4216 nr->start = std::max (lo1, lo2);
4217 nr->length = std::min (hi1, hi2) - nr->start;
2a7498d8
PA
4218 }
4219
4220 normalize_mem_ranges (*result);
4221 return 1;
4222 }
4223
4224 return 0;
4225}
4226
22d2b532
SDJ
4227/* Implementation of `sdata' variable. */
4228
4229static const struct internalvar_funcs sdata_funcs =
4230{
4231 sdata_make_value,
4232 NULL,
4233 NULL
4234};
4235
c906108c
SS
4236/* module initialization */
4237void
fba45db2 4238_initialize_tracepoint (void)
c906108c 4239{
fa58ee11
EZ
4240 struct cmd_list_element *c;
4241
0fb4aa4b
PA
4242 /* Explicitly create without lookup, since that tries to create a
4243 value with a void typed value, and when we get here, gdbarch
4244 isn't initialized yet. At this point, we're quite sure there
4245 isn't another convenience variable of the same name. */
22d2b532 4246 create_internalvar_type_lazy ("_sdata", &sdata_funcs, NULL);
0fb4aa4b 4247
c906108c
SS
4248 traceframe_number = -1;
4249 tracepoint_number = -1;
4250
c5aa993b 4251 add_info ("scope", scope_info,
1bedd215 4252 _("List the variables local to a scope"));
c906108c 4253
e00d1dc8 4254 add_cmd ("tracepoints", class_trace, NULL,
1a966eab 4255 _("Tracing of program execution without stopping the program."),
c906108c
SS
4256 &cmdlist);
4257
c5aa993b 4258 add_com ("tdump", class_trace, trace_dump_command,
1bedd215 4259 _("Print everything collected at the current tracepoint."));
c906108c 4260
f61e138d
SS
4261 c = add_com ("tvariable", class_trace, trace_variable_command,_("\
4262Define a trace state variable.\n\
4263Argument is a $-prefixed name, optionally followed\n\
4264by '=' and an expression that sets the initial value\n\
4265at the start of tracing."));
4266 set_cmd_completer (c, expression_completer);
4267
4268 add_cmd ("tvariable", class_trace, delete_trace_variable_command, _("\
4269Delete one or more trace state variables.\n\
4270Arguments are the names of the variables to delete.\n\
4271If no arguments are supplied, delete all variables."), &deletelist);
c378eb4e 4272 /* FIXME add a trace variable completer. */
f61e138d
SS
4273
4274 add_info ("tvariables", tvariables_info, _("\
4275Status of trace state variables and their values.\n\
0fb4aa4b
PA
4276"));
4277
4278 add_info ("static-tracepoint-markers",
4279 info_static_tracepoint_markers_command, _("\
4280List target static tracepoints markers.\n\
f61e138d
SS
4281"));
4282
1bedd215
AC
4283 add_prefix_cmd ("tfind", class_trace, trace_find_command, _("\
4284Select a trace frame;\n\
4285No argument means forward by one frame; '-' means backward by one frame."),
c906108c
SS
4286 &tfindlist, "tfind ", 1, &cmdlist);
4287
1a966eab 4288 add_cmd ("outside", class_trace, trace_find_outside_command, _("\
081dfbf7 4289Select a trace frame whose PC is outside the given range (exclusive).\n\
1a966eab 4290Usage: tfind outside addr1, addr2"),
c906108c
SS
4291 &tfindlist);
4292
1a966eab 4293 add_cmd ("range", class_trace, trace_find_range_command, _("\
081dfbf7 4294Select a trace frame whose PC is in the given range (inclusive).\n\
1a966eab 4295Usage: tfind range addr1,addr2"),
c906108c
SS
4296 &tfindlist);
4297
1a966eab
AC
4298 add_cmd ("line", class_trace, trace_find_line_command, _("\
4299Select a trace frame by source line.\n\
cce7e648 4300Argument can be a line number (with optional source file),\n\
c906108c 4301a function name, or '*' followed by an address.\n\
1a966eab 4302Default argument is 'the next source line that was traced'."),
c906108c
SS
4303 &tfindlist);
4304
1a966eab
AC
4305 add_cmd ("tracepoint", class_trace, trace_find_tracepoint_command, _("\
4306Select a trace frame by tracepoint number.\n\
4307Default is the tracepoint for the current trace frame."),
c906108c
SS
4308 &tfindlist);
4309
1a966eab
AC
4310 add_cmd ("pc", class_trace, trace_find_pc_command, _("\
4311Select a trace frame by PC.\n\
4312Default is the current PC, or the PC of the current trace frame."),
c906108c
SS
4313 &tfindlist);
4314
1a966eab 4315 add_cmd ("end", class_trace, trace_find_end_command, _("\
1a966eab 4316De-select any trace frame and resume 'live' debugging."),
c906108c
SS
4317 &tfindlist);
4318
8acc4065 4319 add_alias_cmd ("none", "end", class_trace, 0, &tfindlist);
c906108c
SS
4320
4321 add_cmd ("start", class_trace, trace_find_start_command,
1a966eab 4322 _("Select the first trace frame in the trace buffer."),
c906108c
SS
4323 &tfindlist);
4324
c5aa993b 4325 add_com ("tstatus", class_trace, trace_status_command,
1bedd215 4326 _("Display the status of the current trace data collection."));
c906108c 4327
f196051f
SS
4328 add_com ("tstop", class_trace, trace_stop_command, _("\
4329Stop trace data collection.\n\
4330Usage: tstop [ <notes> ... ]\n\
4331Any arguments supplied are recorded with the trace as a stop reason and\n\
4332reported by tstatus (if the target supports trace notes)."));
c906108c 4333
f196051f
SS
4334 add_com ("tstart", class_trace, trace_start_command, _("\
4335Start trace data collection.\n\
4336Usage: tstart [ <notes> ... ]\n\
4337Any arguments supplied are recorded with the trace as a note and\n\
4338reported by tstatus (if the target supports trace notes)."));
c906108c 4339
1bedd215
AC
4340 add_com ("end", class_trace, end_actions_pseudocommand, _("\
4341Ends a list of commands or actions.\n\
c906108c
SS
4342Several GDB commands allow you to enter a list of commands or actions.\n\
4343Entering \"end\" on a line by itself is the normal way to terminate\n\
4344such a list.\n\n\
1bedd215 4345Note: the \"end\" command cannot be used at the gdb prompt."));
c906108c 4346
1bedd215
AC
4347 add_com ("while-stepping", class_trace, while_stepping_pseudocommand, _("\
4348Specify single-stepping behavior at a tracepoint.\n\
c906108c
SS
4349Argument is number of instructions to trace in single-step mode\n\
4350following the tracepoint. This command is normally followed by\n\
4351one or more \"collect\" commands, to specify what to collect\n\
4352while single-stepping.\n\n\
1bedd215 4353Note: this command can only be used in a tracepoint \"actions\" list."));
c906108c 4354
c5aa993b
JM
4355 add_com_alias ("ws", "while-stepping", class_alias, 0);
4356 add_com_alias ("stepping", "while-stepping", class_alias, 0);
c906108c 4357
1bedd215
AC
4358 add_com ("collect", class_trace, collect_pseudocommand, _("\
4359Specify one or more data items to be collected at a tracepoint.\n\
c906108c
SS
4360Accepts a comma-separated list of (one or more) expressions. GDB will\n\
4361collect all data (variables, registers) referenced by that expression.\n\
4362Also accepts the following special arguments:\n\
4363 $regs -- all registers.\n\
4364 $args -- all function arguments.\n\
4365 $locals -- all variables local to the block/function scope.\n\
0fb4aa4b 4366 $_sdata -- static tracepoint data (ignored for non-static tracepoints).\n\
1bedd215 4367Note: this command can only be used in a tracepoint \"actions\" list."));
c906108c 4368
6da95a67
SS
4369 add_com ("teval", class_trace, teval_pseudocommand, _("\
4370Specify one or more expressions to be evaluated at a tracepoint.\n\
4371Accepts a comma-separated list of (one or more) expressions.\n\
4372The result of each evaluation will be discarded.\n\
4373Note: this command can only be used in a tracepoint \"actions\" list."));
4374
1bedd215
AC
4375 add_com ("actions", class_trace, trace_actions_command, _("\
4376Specify the actions to be taken at a tracepoint.\n\
cce7e648
PA
4377Tracepoint actions may include collecting of specified data,\n\
4378single-stepping, or enabling/disabling other tracepoints,\n\
1bedd215 4379depending on target's capabilities."));
c906108c 4380
236f1d4d
SS
4381 default_collect = xstrdup ("");
4382 add_setshow_string_cmd ("default-collect", class_trace,
4383 &default_collect, _("\
4384Set the list of expressions to collect by default"), _("\
4385Show the list of expressions to collect by default"), NULL,
4386 NULL, NULL,
4387 &setlist, &showlist);
4388
d5551862
SS
4389 add_setshow_boolean_cmd ("disconnected-tracing", no_class,
4390 &disconnected_tracing, _("\
4391Set whether tracing continues after GDB disconnects."), _("\
4392Show whether tracing continues after GDB disconnects."), _("\
4393Use this to continue a tracing run even if GDB disconnects\n\
4394or detaches from the target. You can reconnect later and look at\n\
4395trace data collected in the meantime."),
4396 set_disconnected_tracing,
4397 NULL,
4398 &setlist,
4399 &showlist);
00bf0b85 4400
4daf5ac0
SS
4401 add_setshow_boolean_cmd ("circular-trace-buffer", no_class,
4402 &circular_trace_buffer, _("\
4403Set target's use of circular trace buffer."), _("\
4404Show target's use of circular trace buffer."), _("\
4405Use this to make the trace buffer into a circular buffer,\n\
4406which will discard traceframes (oldest first) instead of filling\n\
4407up and stopping the trace run."),
4408 set_circular_trace_buffer,
4409 NULL,
4410 &setlist,
4411 &showlist);
4412
f6f899bf 4413 add_setshow_zuinteger_unlimited_cmd ("trace-buffer-size", no_class,
9b67fcec 4414 &trace_buffer_size, _("\
f6f899bf
HAQ
4415Set requested size of trace buffer."), _("\
4416Show requested size of trace buffer."), _("\
4417Use this to choose a size for the trace buffer. Some targets\n\
f81d1120
PA
4418may have fixed or limited buffer sizes. Specifying \"unlimited\" or -1\n\
4419disables any attempt to set the buffer size and lets the target choose."),
9b67fcec
YQ
4420 set_trace_buffer_size, NULL,
4421 &setlist, &showlist);
f6f899bf 4422
f196051f
SS
4423 add_setshow_string_cmd ("trace-user", class_trace,
4424 &trace_user, _("\
4425Set the user name to use for current and future trace runs"), _("\
4426Show the user name to use for current and future trace runs"), NULL,
4427 set_trace_user, NULL,
4428 &setlist, &showlist);
4429
4430 add_setshow_string_cmd ("trace-notes", class_trace,
4431 &trace_notes, _("\
4432Set notes string to use for current and future trace runs"), _("\
4433Show the notes string to use for current and future trace runs"), NULL,
4434 set_trace_notes, NULL,
4435 &setlist, &showlist);
4436
4437 add_setshow_string_cmd ("trace-stop-notes", class_trace,
4438 &trace_stop_notes, _("\
4439Set notes string to use for future tstop commands"), _("\
4440Show the notes string to use for future tstop commands"), NULL,
4441 set_trace_stop_notes, NULL,
4442 &setlist, &showlist);
c906108c 4443}
This page took 3.096828 seconds and 4 git commands to generate.