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