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