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