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