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