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