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