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