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