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