1 /* Tracing functionality for remote targets in custom GDB protocol
2 Copyright 1997 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "tracepoint.h"
25 #include "expression.h"
30 #include "gdb_string.h"
32 /* readline include files */
36 /* readline defines this. */
43 extern int info_verbose;
44 extern void (*readline_begin_hook) PARAMS ((char *, ...));
45 extern char * (*readline_hook) PARAMS ((char *));
46 extern void (*readline_end_hook) PARAMS ((void));
47 extern void x_command PARAMS ((char *, int));
49 /* If this definition isn't overridden by the header files, assume
50 that isatty and fileno exist on this system. */
52 #define ISATTY(FP) (isatty (fileno (FP)))
58 This module defines the following debugger commands:
59 trace : set a tracepoint on a function, line, or address.
60 info trace : list all debugger-defined tracepoints.
61 delete trace : delete one or more tracepoints.
62 enable trace : enable one or more tracepoints.
63 disable trace : disable one or more tracepoints.
64 actions : specify actions to be taken at a tracepoint.
65 passcount : specify a pass count for a tracepoint.
66 tstart : start a trace experiment.
67 tstop : stop a trace experiment.
68 tstatus : query the status of a trace experiment.
69 tfind : find a trace frame in the trace buffer.
70 tdump : print everything collected at the current tracepoint.
71 save-tracepoints : write tracepoint setup into a file.
73 This module defines the following user-visible debugger variables:
74 $trace_frame : sequence number of trace frame currently being debugged.
75 $trace_line : source line of trace frame currently being debugged.
76 $trace_file : source file of trace frame currently being debugged.
77 $tracepoint : tracepoint number of trace frame currently being debugged.
81 /* ======= Important global variables: ======= */
83 /* Chain of all tracepoints defined. */
84 struct tracepoint *tracepoint_chain;
86 /* Number of last tracepoint made. */
87 static int tracepoint_count;
89 /* Number of last traceframe collected. */
90 static int traceframe_number;
92 /* Tracepoint for last traceframe collected. */
93 static int tracepoint_number;
95 /* Symbol for function for last traceframe collected */
96 static struct symbol *traceframe_fun;
98 /* Symtab and line for last traceframe collected */
99 static struct symtab_and_line traceframe_sal;
101 /* Tracing command lists */
102 static struct cmd_list_element *tfindlist;
104 /* ======= Important command functions: ======= */
105 static void trace_command PARAMS ((char *, int));
106 static void tracepoints_info PARAMS ((char *, int));
107 static void delete_trace_command PARAMS ((char *, int));
108 static void enable_trace_command PARAMS ((char *, int));
109 static void disable_trace_command PARAMS ((char *, int));
110 static void trace_pass_command PARAMS ((char *, int));
111 static void trace_actions_command PARAMS ((char *, int));
112 static void trace_start_command PARAMS ((char *, int));
113 static void trace_stop_command PARAMS ((char *, int));
114 static void trace_status_command PARAMS ((char *, int));
115 static void trace_find_command PARAMS ((char *, int));
116 static void trace_find_pc_command PARAMS ((char *, int));
117 static void trace_find_tracepoint_command PARAMS ((char *, int));
118 static void trace_find_line_command PARAMS ((char *, int));
119 static void trace_find_range_command PARAMS ((char *, int));
120 static void trace_find_outside_command PARAMS ((char *, int));
121 static void tracepoint_save_command PARAMS ((char *, int));
122 static void trace_dump_command PARAMS ((char *, int));
125 /* Utility: returns true if "target remote" */
129 if (current_target.to_shortname &&
130 strcmp (current_target.to_shortname, "remote") == 0)
136 /* Utility: generate error from an incoming stub packet. */
142 return; /* not an error msg */
145 case '1': /* malformed packet error */
146 if (*++buf == '0') /* general case: */
147 error ("tracepoint.c: error in outgoing packet.");
149 error ("tracepoint.c: error in outgoing packet at field #%d.",
150 strtol (buf, NULL, 16));
152 error ("trace API error 0x%s.", ++buf);
154 error ("Target returns error code '%s'.", buf);
158 /* Utility: wait for reply from stub, while accepting "O" packets */
160 remote_get_noisy_reply (buf)
163 do /* loop on reply from remote stub */
167 error ("Target does not support this command.");
168 else if (buf[0] == 'E')
170 else if (buf[0] == 'O' &&
172 remote_console_output (buf + 1); /* 'O' message from stub */
174 return buf; /* here's the actual reply */
178 /* Set tracepoint count to NUM. */
180 set_tracepoint_count (num)
183 tracepoint_count = num;
184 set_internalvar (lookup_internalvar ("tpnum"),
185 value_from_longest (builtin_type_int, (LONGEST) num));
188 /* Set traceframe number to NUM. */
190 set_traceframe_num (num)
193 traceframe_number = num;
194 set_internalvar (lookup_internalvar ("trace_frame"),
195 value_from_longest (builtin_type_int, (LONGEST) num));
198 /* Set tracepoint number to NUM. */
200 set_tracepoint_num (num)
203 tracepoint_number = num;
204 set_internalvar (lookup_internalvar ("tracepoint"),
205 value_from_longest (builtin_type_int, (LONGEST) num));
208 /* Set externally visible debug variables for querying/printing
209 the traceframe context (line, function, file) */
212 set_traceframe_context (trace_pc)
215 static struct type *func_string, *file_string;
216 static struct type *func_range, *file_range;
217 static value_ptr func_val, file_val;
218 static struct type *charstar;
221 if (charstar == (struct type *) NULL)
222 charstar = lookup_pointer_type (builtin_type_char);
224 if (trace_pc == -1) /* cease debugging any trace buffers */
227 traceframe_sal.pc = traceframe_sal.line = 0;
228 traceframe_sal.symtab = NULL;
229 set_internalvar (lookup_internalvar ("trace_func"),
230 value_from_longest (charstar, (LONGEST) 0));
231 set_internalvar (lookup_internalvar ("trace_file"),
232 value_from_longest (charstar, (LONGEST) 0));
233 set_internalvar (lookup_internalvar ("trace_line"),
234 value_from_longest (builtin_type_int, (LONGEST) -1));
238 /* save as globals for internal use */
239 traceframe_sal = find_pc_line (trace_pc, 0);
240 traceframe_fun = find_pc_function (trace_pc);
242 /* save linenumber as "$trace_line", a debugger variable visible to users */
243 set_internalvar (lookup_internalvar ("trace_line"),
244 value_from_longest (builtin_type_int,
245 (LONGEST) traceframe_sal.line));
247 /* save func name as "$trace_func", a debugger variable visible to users */
248 if (traceframe_fun == NULL ||
249 SYMBOL_NAME (traceframe_fun) == NULL)
250 set_internalvar (lookup_internalvar ("trace_func"),
251 value_from_longest (charstar, (LONGEST) 0));
254 len = strlen (SYMBOL_NAME (traceframe_fun));
255 func_range = create_range_type (func_range,
256 builtin_type_int, 0, len - 1);
257 func_string = create_array_type (func_string,
258 builtin_type_char, func_range);
259 func_val = allocate_value (func_string);
260 VALUE_TYPE (func_val) = func_string;
261 memcpy (VALUE_CONTENTS_RAW (func_val),
262 SYMBOL_NAME (traceframe_fun),
264 func_val->modifiable = 0;
265 set_internalvar (lookup_internalvar ("trace_func"), func_val);
268 /* save file name as "$trace_file", a debugger variable visible to users */
269 if (traceframe_sal.symtab == NULL ||
270 traceframe_sal.symtab->filename == NULL)
271 set_internalvar (lookup_internalvar ("trace_file"),
272 value_from_longest (charstar, (LONGEST) 0));
275 len = strlen (traceframe_sal.symtab->filename);
276 file_range = create_range_type (file_range,
277 builtin_type_int, 0, len - 1);
278 file_string = create_array_type (file_string,
279 builtin_type_char, file_range);
280 file_val = allocate_value (file_string);
281 VALUE_TYPE (file_val) = file_string;
282 memcpy (VALUE_CONTENTS_RAW (file_val),
283 traceframe_sal.symtab->filename,
285 file_val->modifiable = 0;
286 set_internalvar (lookup_internalvar ("trace_file"), file_val);
290 /* Low level routine to set a tracepoint.
291 Returns the tracepoint object so caller can set other things.
292 Does not set the tracepoint number!
293 Does not print anything.
295 ==> This routine should not be called if there is a chance of later
296 error(); otherwise it leaves a bogus tracepoint on the chain. Validate
297 your arguments BEFORE calling this routine! */
299 static struct tracepoint *
300 set_raw_tracepoint (sal)
301 struct symtab_and_line sal;
303 register struct tracepoint *t, *tc;
304 struct cleanup *old_chain;
306 t = (struct tracepoint *) xmalloc (sizeof (struct tracepoint));
307 old_chain = make_cleanup (free, t);
308 memset (t, 0, sizeof (*t));
310 if (sal.symtab == NULL)
311 t->source_file = NULL;
316 t->source_file = (char *) xmalloc (strlen (sal.symtab->filename) +
317 strlen (sal.symtab->dirname) + 2);
319 strcpy (t->source_file, sal.symtab->dirname);
323 if (*(--p) != '/') /* Will this work on Windows? */
324 strcat (t->source_file, "/");
325 strcat (t->source_file, sal.symtab->filename);
328 t->language = current_language->la_language;
329 t->input_radix = input_radix;
330 t->line_number = sal.line;
331 t->enabled = enabled;
335 t->addr_string = NULL;
337 /* Add this tracepoint to the end of the chain
338 so that a list of tracepoints will come out in order
339 of increasing numbers. */
341 tc = tracepoint_chain;
343 tracepoint_chain = t;
350 discard_cleanups (old_chain);
354 /* Set a tracepoint according to ARG (function, linenum or *address) */
356 trace_command (arg, from_tty)
360 char **canonical = (char **)NULL;
361 struct symtabs_and_lines sals;
362 struct symtab_and_line sal;
363 struct tracepoint *t;
364 char *addr_start = 0, *addr_end = 0;
368 error ("trace command requires an argument");
370 if (from_tty && info_verbose)
371 printf_filtered ("TRACE %s\n", arg);
379 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, &canonical);
382 return; /* ??? Presumably decode_line_1 has already warned? */
384 /* Resolve all line numbers to PC's */
385 for (i = 0; i < sals.nelts; i++)
386 resolve_sal_pc (&sals.sals[i]);
388 /* Now set all the tracepoints. */
389 for (i = 0; i < sals.nelts; i++)
393 t = set_raw_tracepoint (sal);
394 set_tracepoint_count (tracepoint_count + 1);
395 t->number = tracepoint_count;
397 /* If a canonical line spec is needed use that instead of the
399 if (canonical != (char **)NULL && canonical[i] != NULL)
400 t->addr_string = canonical[i];
402 t->addr_string = savestring (addr_start, addr_end - addr_start);
404 /* Let the UI know of any additions */
405 if (create_tracepoint_hook)
406 create_tracepoint_hook (t);
411 printf_filtered ("Multiple tracepoints were set.\n");
412 printf_filtered ("Use 'delete trace' to delete unwanted tracepoints.\n");
416 /* Print information on tracepoint number TPNUM_EXP, or all if omitted. */
419 tracepoints_info (tpnum_exp, from_tty)
423 struct tracepoint *t;
424 struct action_line *action;
425 int found_a_tracepoint = 0;
426 char wrap_indent[80];
430 char *i1 = "\t", *i2 = "\t ";
431 char *indent, *actionline;;
435 tpnum = parse_and_eval_address (tpnum_exp);
438 if (tpnum == -1 || tpnum == t->number)
440 extern int addressprint; /* print machine addresses? */
442 if (!found_a_tracepoint++)
444 printf_filtered ("Num Enb ");
446 printf_filtered ("Address ");
447 printf_filtered ("PassC StepC What\n");
449 strcpy (wrap_indent, " ");
451 strcat (wrap_indent, " ");
453 printf_filtered ("%-3d %-3s ", t->number,
454 t->enabled == enabled ? "y" : "n");
456 printf_filtered ("%s ",
457 local_hex_string_custom ((unsigned long) t->address,
459 printf_filtered ("%-5d %-5d ", t->pass_count, t->step_count);
463 sym = find_pc_function (t->address);
466 fputs_filtered ("in ", gdb_stdout);
467 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
468 wrap_here (wrap_indent);
469 fputs_filtered (" at ", gdb_stdout);
471 fputs_filtered (t->source_file, gdb_stdout);
472 printf_filtered (":%d", t->line_number);
475 print_address_symbolic (t->address, gdb_stdout, demangle, " ");
477 printf_filtered ("\n");
480 printf_filtered (" Actions for tracepoint %d: \n", t->number);
482 for (action = t->actions; action; action = action->next)
485 actionline = action->action;
486 while (isspace(*actionline))
489 printf_filtered ("%s%s\n", indent, actionline);
490 if (0 == strncasecmp (actionline, "while-stepping", 14))
492 else if (0 == strncasecmp (actionline, "end", 3))
495 printf_filtered ("\t%s\n", action->action);
500 if (!found_a_tracepoint)
503 printf_filtered ("No tracepoints.\n");
505 printf_filtered ("No tracepoint number %d.\n", tpnum);
509 /* Optimization: the code to parse an enable, disable, or delete TP command
510 is virtually identical except for whether it performs an enable, disable,
511 or delete. Therefore I've combined them into one function with an opcode.
513 enum tracepoint_opcode
520 /* This function implements enable, disable and delete. */
522 tracepoint_operation (t, from_tty, opcode)
523 struct tracepoint *t;
525 enum tracepoint_opcode opcode;
527 struct tracepoint *t2;
528 struct action_line *action, *next;
532 t->enabled = enabled;
535 t->enabled = disabled;
538 if (tracepoint_chain == t)
539 tracepoint_chain = t->next;
548 /* Let the UI know of any deletions */
549 if (delete_tracepoint_hook)
550 delete_tracepoint_hook (t);
553 free (t->addr_string);
555 free (t->source_file);
556 for (action = t->actions; action; action = next)
560 free (action->action);
568 /* Utility: parse a tracepoint number and look it up in the list. */
570 get_tracepoint_by_number (arg)
573 struct tracepoint *t;
579 error ("Bad tracepoint argument");
581 if (*arg == 0 || **arg == 0) /* empty arg means refer to last tp */
582 tpnum = tracepoint_count;
583 else if (**arg == '$') /* handle convenience variable */
585 /* Make a copy of the name, so we can null-terminate it
586 to pass to lookup_internalvar(). */
588 while (isalnum(*end) || *end == '_')
590 copy = (char *) alloca (end - *arg);
591 strncpy (copy, *arg + 1, (end - *arg - 1));
592 copy[end - *arg - 1] = '\0';
595 val = value_of_internalvar (lookup_internalvar (copy));
596 if (TYPE_CODE( VALUE_TYPE (val)) != TYPE_CODE_INT)
597 error ("Convenience variable must have integral type.");
598 tpnum = (int) value_as_long (val);
600 else /* handle tracepoint number */
602 tpnum = strtol (*arg, arg, 10);
605 if (t->number == tpnum)
609 warning ("No tracepoint number %d.\n", tpnum);
613 /* Utility: parse a list of tracepoint numbers, and call a func for each. */
615 map_args_over_tracepoints (args, from_tty, opcode)
618 enum tracepoint_opcode opcode;
620 struct tracepoint *t;
624 if (args == 0 || *args == 0) /* do them all */
626 tracepoint_operation (t, from_tty, opcode);
630 if (t = get_tracepoint_by_number (&args))
631 tracepoint_operation (t, from_tty, opcode);
632 while (*args == ' ' || *args == '\t')
637 /* The 'enable trace' command enables tracepoints. Not supported by all targets. */
639 enable_trace_command (args, from_tty)
644 map_args_over_tracepoints (args, from_tty, enable);
647 /* The 'disable trace' command enables tracepoints. Not supported by all targets. */
649 disable_trace_command (args, from_tty)
654 map_args_over_tracepoints (args, from_tty, disable);
657 /* Remove a tracepoint (or all if no argument) */
659 delete_trace_command (args, from_tty)
665 if (!query ("Delete all tracepoints? "))
668 map_args_over_tracepoints (args, from_tty, delete);
671 /* Set passcount for tracepoint.
673 First command argument is passcount, second is tracepoint number.
674 If tracepoint number omitted, apply to most recently defined.
675 Also accepts special argument "all". */
678 trace_pass_command (args, from_tty)
682 struct tracepoint *t1 = (struct tracepoint *) -1, *t2;
685 if (args == 0 || *args == 0)
686 error ("PASS command requires an argument (count + optional TP num)");
688 count = strtoul (args, &args, 10); /* count comes first, then TP num */
690 while (*args && isspace (*args))
693 if (*args && strncasecmp (args, "all", 3) == 0)
694 args += 3; /* skip special argument "all" */
696 t1 = get_tracepoint_by_number (&args);
699 return; /* error, bad tracepoint number */
702 if (t1 == (struct tracepoint *) -1 || t1 == t2)
704 t2->pass_count = count;
706 printf_filtered ("Setting tracepoint %d's passcount to %d\n",
711 /* ACTIONS functions: */
713 /* Prototypes for action-parsing utility commands */
714 static void read_actions PARAMS((struct tracepoint *));
715 static void free_actions PARAMS((struct tracepoint *));
716 static char *parse_and_eval_memrange PARAMS ((char *,
722 /* The three functions:
723 collect_pseudocommand,
724 while_stepping_pseudocommand, and
725 end_actions_pseudocommand
726 are placeholders for "commands" that are actually ONLY to be used
727 within a tracepoint action list. If the actual function is ever called,
728 it means that somebody issued the "command" at the top level,
729 which is always an error. */
732 end_actions_pseudocommand (args, from_tty)
736 error ("This command cannot be used at the top level.");
740 while_stepping_pseudocommand (args, from_tty)
744 error ("This command can only be used in a tracepoint actions list.");
748 collect_pseudocommand (args, from_tty)
752 error ("This command can only be used in a tracepoint actions list.");
755 /* Enter a list of actions for a tracepoint. */
757 trace_actions_command (args, from_tty)
761 struct tracepoint *t;
764 char *end_msg = "End with a line saying just \"end\".";
766 if (t = get_tracepoint_by_number (&args))
768 sprintf (tmpbuf, "Enter actions for tracepoint %d, one per line.",
773 if (readline_begin_hook)
774 (*readline_begin_hook) ("%s %s\n", tmpbuf, end_msg);
775 else if (input_from_terminal_p ())
776 printf_filtered ("%s\n%s\n", tmpbuf, end_msg);
782 if (readline_end_hook)
783 (*readline_end_hook) ();
785 /* tracepoints_changed () */
787 /* else error, just return; */
798 static enum actionline_type validate_actionline PARAMS((char *,
799 struct tracepoint *));
801 /* worker function */
804 struct tracepoint *t;
807 char *prompt1 = "> ", *prompt2 = " > ";
808 char *prompt = prompt1;
809 enum actionline_type linetype;
810 extern FILE *instream;
811 struct action_line *next = NULL, *temp;
812 struct cleanup *old_chain;
814 /* Control-C quits instantly if typed while in this loop
815 since it should not wait until the user types a newline. */
819 signal (STOP_SIGNAL, stop_sig);
821 old_chain = make_cleanup (free_actions, (void *) t);
824 /* Make sure that all output has been output. Some machines may let
825 you get away with leaving out some of the gdb_flush, but not all. */
827 gdb_flush (gdb_stdout);
828 gdb_flush (gdb_stderr);
830 if (readline_hook && instream == NULL)
831 line = (*readline_hook) (prompt);
832 else if (instream == stdin && ISATTY (instream))
833 line = readline (prompt);
835 line = gdb_readline (0);
837 linetype = validate_actionline (line, t);
838 if (linetype == BADLINE)
839 continue; /* already warned -- collect another line */
841 temp = xmalloc (sizeof (struct action_line));
845 if (next == NULL) /* first action for this tracepoint? */
846 t->actions = next = temp;
853 if (linetype == STEPPING) /* begin "while-stepping" */
854 if (prompt == prompt2)
856 warning ("Already processing 'while-stepping'");
860 prompt = prompt2; /* change prompt for stepping actions */
861 else if (linetype == END)
862 if (prompt == prompt2)
863 prompt = prompt1; /* end of single-stepping actions */
865 break; /* end of actions */
869 signal (STOP_SIGNAL, SIG_DFL);
872 discard_cleanups (old_chain);
875 /* worker function */
876 static enum actionline_type
877 validate_actionline (line, t)
879 struct tracepoint *t;
881 struct cmd_list_element *c;
882 struct expression *exp;
883 value_ptr temp, temp2;
886 for (p = line; isspace (*p); )
889 /* symbol lookup etc. */
890 if (*p == '\0') /* empty line: just prompt for another line. */
893 if (*p == '#') /* comment line */
896 c = lookup_cmd (&p, cmdlist, "", -1, 1);
899 warning ("'%s' is not an action that I know, or is ambiguous.", p);
903 if (c->function.cfunc == collect_pseudocommand)
905 do { /* repeat over a comma-separated list */
909 if (*p == '$') /* look for special pseudo-symbols */
912 bfd_signed_vma offset;
914 if ((0 == strncasecmp ("reg", p + 1, 3)) ||
915 (0 == strncasecmp ("arg", p + 1, 3)) ||
916 (0 == strncasecmp ("loc", p + 1, 3)))
919 else if (p[1] == '(') /* literal memrange */
920 p = parse_and_eval_memrange (p, t->address,
921 &typecode, &offset, &size);
925 exp = parse_exp_1 (&p, block_for_pc (t->address), 1);
927 if (exp->elts[0].opcode != OP_VAR_VALUE &&
928 /*exp->elts[0].opcode != OP_LONG && */
929 /*exp->elts[0].opcode != UNOP_CAST && */
930 exp->elts[0].opcode != OP_REGISTER)
932 warning ("collect requires a variable or register name.\n");
935 if (exp->elts[0].opcode == OP_VAR_VALUE)
936 if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_CONST)
938 warning ("%s is constant (value %d): will not be collected.",
939 SYMBOL_NAME (exp->elts[2].symbol),
940 SYMBOL_VALUE (exp->elts[2].symbol));
943 else if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_OPTIMIZED_OUT)
945 warning ("%s is optimized away and cannot be collected.",
946 SYMBOL_NAME (exp->elts[2].symbol));
950 } while (p && *p++ == ',');
953 else if (c->function.cfunc == while_stepping_pseudocommand)
955 char *steparg; /* in case warning is necessary */
963 t->step_count = strtol (p, &p, 0);
964 if (t->step_count == 0)
966 warning ("'%s' evaluates to zero -- command ignored.");
974 else if (c->function.cfunc == end_actions_pseudocommand)
978 warning ("'%s' is not a supported tracepoint action.", line);
983 /* worker function */
986 struct tracepoint *t;
988 struct action_line *line, *next;
990 for (line = t->actions; line; line = next)
999 int type; /* 0 for absolute memory range, else basereg number */
1000 bfd_signed_vma start;
1004 struct collection_list {
1005 unsigned char regs_mask[8]; /* room for up to 256 regs */
1008 struct memrange *list;
1009 } tracepoint_list, stepping_list;
1011 /* MEMRANGE functions: */
1013 /* parse a memrange spec from command input */
1015 parse_and_eval_memrange (arg, addr, typecode, offset, size)
1018 long *typecode, *size;
1019 bfd_signed_vma *offset;
1022 struct expression *exp;
1024 if (*arg++ != '$' || *arg++ != '(')
1025 error ("Internal: bad argument to validate_memrange: %s", start);
1027 if (*arg == '$') /* register for relative memrange? */
1029 exp = parse_exp_1 (&arg, block_for_pc (addr), 1);
1030 if (exp->elts[0].opcode != OP_REGISTER)
1031 error ("Bad register operand for memrange: %s", start);
1033 error ("missing comma for memrange: %s", start);
1034 *typecode = exp->elts[1].longconst;
1040 /* While attractive, this fails for a number of reasons:
1041 1) parse_and_eval_address does not deal with trailing commas,
1043 2) There is no safeguard against the user trying to use
1044 an out-of-scope variable in an address expression (for instance).
1045 2.5) If you are going to allow semi-arbitrary expressions, you
1046 would need to explain which expressions are allowed, and
1047 which are not (which would provoke endless questions).
1048 3) If you are going to allow semi-arbitrary expressions in the
1049 offset and size fields, then the leading "$" of a register
1050 name no longer disambiguates the typecode field.
1053 *offset = parse_and_eval_address (arg);
1054 if ((arg = strchr (arg, ',')) == NULL)
1055 error ("missing comma for memrange: %s", start);
1059 *size = parse_and_eval_address (arg);
1060 if ((arg = strchr (arg, ')')) == NULL)
1061 error ("missing close-parenthesis for memrange: %s", start);
1066 /* This, on the other hand, doesn't work because "-1" is an
1067 expression, not an OP_LONG! Fall back to using strtol for now. */
1069 exp = parse_exp_1 (&arg, block_for_pc (addr), 1);
1070 if (exp->elts[0].opcode != OP_LONG)
1071 error ("Bad offset operand for memrange: %s", start);
1072 *offset = exp->elts[2].longconst;
1075 error ("missing comma for memrange: %s", start);
1077 exp = parse_exp_1 (&arg, block_for_pc (addr), 1);
1078 if (exp->elts[0].opcode != OP_LONG)
1079 error ("Bad size operand for memrange: %s", start);
1080 *size = exp->elts[2].longconst;
1083 error ("invalid size in memrange: %s", start);
1086 error ("missing close-parenthesis for memrange: %s", start);
1088 *offset = strtol (arg, &arg, 0);
1090 error ("missing comma for memrange: %s", start);
1091 *size = strtol (arg, &arg, 0);
1093 error ("invalid size in memrange: %s", start);
1095 error ("missing close-parenthesis for memrange: %s", start);
1099 printf_filtered ("Collecting memrange: (0x%x,0x%x,0x%x)\n",
1100 *typecode, *offset, *size);
1105 /* compare memranges for qsort */
1108 struct memrange *a, *b;
1110 if (a->type < b->type) return -1;
1111 if (a->type > b->type) return 1;
1114 if ((bfd_vma) a->start < (bfd_vma) b->start) return -1;
1115 if ((bfd_vma) a->start > (bfd_vma) b->start) return 1;
1119 if (a->start < b->start) return -1;
1120 if (a->start > b->start) return 1;
1125 /* Sort the memrange list using qsort, and merge adjacent memranges */
1127 memrange_sortmerge (memranges)
1128 struct collection_list *memranges;
1132 qsort (memranges->list, memranges->next_memrange,
1133 sizeof (struct memrange), memrange_cmp);
1134 if (memranges->next_memrange > 0)
1136 for (a = 0, b = 1; b < memranges->next_memrange; b++)
1138 if (memranges->list[a].type == memranges->list[b].type &&
1139 memranges->list[b].start - memranges->list[a].end <=
1140 MAX_REGISTER_VIRTUAL_SIZE)
1142 /* memrange b starts before memrange a ends; merge them. */
1143 if (memranges->list[b].end > memranges->list[a].end)
1144 memranges->list[a].end = memranges->list[b].end;
1145 continue; /* next b, same a */
1149 memcpy (&memranges->list[a], &memranges->list[b],
1150 sizeof (struct memrange));
1152 memranges->next_memrange = a + 1;
1156 /* Add a register to a collection list */
1158 add_register (collection, regno)
1159 struct collection_list *collection;
1160 unsigned long regno;
1163 printf_filtered ("collect register %d\n", regno);
1164 if (regno > (8 * sizeof (collection->regs_mask)))
1165 error ("Internal: register number %d too large for tracepoint",
1167 collection->regs_mask [regno / 8] |= 1 << (regno % 8);
1170 /* Add a memrange to a collection list */
1172 add_memrange (memranges, type, base, len)
1173 struct collection_list *memranges;
1175 bfd_signed_vma base;
1179 printf_filtered ("(%d,0x%x,%d)\n", type, base, len);
1180 /* type: 0 == memory, n == basereg */
1181 memranges->list[memranges->next_memrange].type = type;
1182 /* base: addr if memory, offset if reg relative. */
1183 memranges->list[memranges->next_memrange].start = base;
1184 /* len: we actually save end (base + len) for convenience */
1185 memranges->list[memranges->next_memrange].end = base + len;
1186 memranges->next_memrange++;
1187 if (memranges->next_memrange >= memranges->listsize)
1189 memranges->listsize *= 2;
1190 memranges->list = xrealloc (memranges->list,
1191 memranges->listsize);
1194 if (type != 0) /* better collect the base register! */
1195 add_register (memranges, type);
1198 /* Add a symbol to a collection list */
1200 collect_symbol (collect, sym)
1201 struct collection_list *collect;
1206 bfd_signed_vma offset;
1208 len = TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym)));
1209 switch (SYMBOL_CLASS (sym)) {
1211 printf_filtered ("%s: don't know symbol class %d\n",
1212 SYMBOL_NAME (sym), SYMBOL_CLASS (sym));
1215 printf_filtered ("%s is constant, value is %d: will not be collected.\n",
1216 SYMBOL_NAME (sym), SYMBOL_VALUE (sym));
1219 offset = SYMBOL_VALUE_ADDRESS (sym);
1221 printf_filtered ("LOC_STATIC %s: collect %d bytes "
1223 SYMBOL_NAME (sym), len, offset);
1224 add_memrange (collect, 0, offset, len); /* 0 == memory */
1228 reg = SYMBOL_VALUE (sym);
1230 printf_filtered ("LOC_REG[parm] %s: ", SYMBOL_NAME (sym));
1231 add_register (collect, reg);
1235 printf_filtered ("Sorry, don't know how to do LOC_ARGs yet.\n");
1236 printf_filtered (" (will not collect %s)\n",
1239 case LOC_REGPARM_ADDR:
1240 reg = SYMBOL_VALUE (sym);
1244 printf_filtered ("LOC_REGPARM_ADDR %s: Collect %d bytes at offset %d from reg %d\n",
1245 SYMBOL_NAME (sym), len, offset, reg);
1247 add_memrange (collect, reg, offset, len);
1251 offset = SYMBOL_VALUE (sym);
1255 printf_filtered ("LOC_LOCAL %s: Collect %d bytes at offset %d from frame ptr reg %d\n",
1256 SYMBOL_NAME (sym), len, offset, reg);
1258 add_memrange (collect, reg, offset, len);
1261 case LOC_BASEREG_ARG:
1262 reg = SYMBOL_BASEREG (sym);
1263 offset = SYMBOL_VALUE (sym);
1266 printf_filtered ("LOC_BASEREG %s: collect %d bytes at offset %d from basereg %d\n",
1267 SYMBOL_NAME (sym), len, offset, reg);
1269 add_memrange (collect, reg, offset, len);
1271 case LOC_UNRESOLVED:
1272 printf_filtered ("Don't know LOC_UNRESOLVED %s\n", SYMBOL_NAME (sym));
1274 case LOC_OPTIMIZED_OUT:
1275 printf_filtered ("%s has been optimized out of existance.\n",
1281 /* Add all locals (or args) symbols to collection list */
1283 add_local_symbols (collect, pc, type)
1284 struct collection_list *collect;
1289 struct block *block;
1290 int i, nsyms, count = 0;
1292 block = block_for_pc (pc);
1295 nsyms = BLOCK_NSYMS (block);
1296 for (i = 0; i < nsyms; i++)
1298 sym = BLOCK_SYM (block, i);
1299 switch (SYMBOL_CLASS (sym)) {
1304 if (type == 'L') /* collecting Locals */
1307 collect_symbol (collect, sym);
1314 case LOC_REGPARM_ADDR:
1315 case LOC_BASEREG_ARG:
1316 if (type == 'A') /* collecting Arguments */
1319 collect_symbol (collect, sym);
1323 if (BLOCK_FUNCTION (block))
1326 block = BLOCK_SUPERBLOCK (block);
1329 warning ("No %s found in scope.", type == 'L' ? "locals" : "args");
1332 /* worker function */
1334 clear_collection_list (list)
1335 struct collection_list *list;
1337 list->next_memrange = 0;
1338 memset (list->regs_mask, 0, sizeof (list->regs_mask));
1341 /* reduce a collection list to string form (for gdb protocol) */
1343 stringify_collection_list (list, string)
1344 struct collection_list *list;
1350 for (i = sizeof (list->regs_mask) - 1; i > 0; i--)
1351 if (list->regs_mask[i] != 0) /* skip leading zeroes in regs_mask */
1353 if (list->regs_mask[i] != 0) /* prepare to send regs_mask to the stub */
1356 printf_filtered ("\nCollecting registers (mask): 0x");
1361 printf_filtered ("%02X", list->regs_mask[i]);
1362 sprintf (end, "%02X", list->regs_mask[i]);
1367 printf_filtered ("\n");
1368 if (list->next_memrange > 0 && info_verbose)
1369 printf_filtered ("Collecting memranges: \n");
1370 for (i = 0; i < list->next_memrange; i++)
1373 printf_filtered ("(%d, 0x%x, %d)\n",
1375 list->list[i].start,
1376 list->list[i].end - list->list[i].start);
1377 sprintf (end, "M%X,%X,%X",
1379 list->list[i].start,
1380 list->list[i].end - list->list[i].start);
1381 end += strlen (end);
1389 /* render all actions into gdb protocol */
1391 encode_actions (t, tdp_actions, step_count, stepping_actions)
1392 struct tracepoint *t;
1394 unsigned long *step_count;
1395 char **stepping_actions;
1397 static char tdp_buff[2048], step_buff[2048];
1399 struct expression *exp;
1400 struct action_line *action;
1401 bfd_signed_vma offset;
1403 struct collection_list *collect;
1404 struct cmd_list_element *cmd;
1406 clear_collection_list (&tracepoint_list);
1407 clear_collection_list (&stepping_list);
1408 collect = &tracepoint_list;
1410 *tdp_actions = NULL;
1411 *stepping_actions = NULL;
1413 for (action = t->actions; action; action = action->next)
1415 action_exp = action->action;
1416 while (isspace (*action_exp))
1419 if (*action_exp == '#') /* comment line */
1422 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
1424 error ("Bad action list item: %s", action_exp);
1426 if (cmd->function.cfunc == collect_pseudocommand)
1428 do { /* repeat over a comma-separated list */
1429 while (isspace (*action_exp))
1432 if (0 == strncasecmp ("$reg", action_exp, 4))
1434 for (i = 0; i < NUM_REGS; i++)
1435 add_register (collect, i);
1436 action_exp = strchr (action_exp, ','); /* more? */
1438 else if (0 == strncasecmp ("$arg", action_exp, 4))
1440 add_local_symbols (collect, t->address, 'A');
1441 action_exp = strchr (action_exp, ','); /* more? */
1443 else if (0 == strncasecmp ("$loc", action_exp, 4))
1445 add_local_symbols (collect, t->address, 'L');
1446 action_exp = strchr (action_exp, ','); /* more? */
1448 else if (action_exp[0] == '$' &&
1449 action_exp[1] == '(') /* literal memrange */
1451 long typecode, size;
1452 bfd_signed_vma offset;
1454 action_exp = parse_and_eval_memrange (action_exp,
1459 add_memrange (collect, typecode, offset, size);
1463 unsigned long addr, len;
1465 exp = parse_exp_1 (&action_exp, block_for_pc (t->address), 1);
1466 switch (exp->elts[0].opcode) {
1468 i = exp->elts[1].longconst;
1470 printf_filtered ("OP_REGISTER: ");
1471 add_register (collect, i);
1474 collect_symbol (collect, exp->elts[2].symbol);
1478 addr = exp->elts[2].longconst;
1479 if (*action_exp == ':')
1481 exp = parse_exp_1 (&action_exp,
1482 block_for_pc (t->address),
1484 if (exp->elts[0].opcode == OP_LONG)
1485 len = exp->elts[2].longconst;
1487 error ("length field requires a literal long const");
1492 add_memrange (collect, 0, addr, len);
1497 } while (action_exp && *action_exp++ == ',');
1499 else if (cmd->function.cfunc == while_stepping_pseudocommand)
1501 collect = &stepping_list;
1503 else if (cmd->function.cfunc == end_actions_pseudocommand)
1505 if (collect == &stepping_list) /* end stepping actions */
1506 collect = &tracepoint_list;
1508 break; /* end tracepoint actions */
1511 memrange_sortmerge (&tracepoint_list);
1512 memrange_sortmerge (&stepping_list);
1514 *tdp_actions = stringify_collection_list (&tracepoint_list, &tdp_buff);
1515 *stepping_actions = stringify_collection_list (&stepping_list, &step_buff);
1518 static char target_buf[2048];
1522 Tell target to lear 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. */
1528 trace_start_command (args, from_tty)
1531 { /* STUB_COMM MOSTLY_IMPLEMENTED */
1532 struct tracepoint *t;
1535 char *stepping_actions;
1536 unsigned long step_count;
1538 dont_repeat (); /* like "run", dangerous to repeat accidentally */
1540 if (target_is_remote ())
1543 remote_get_noisy_reply (target_buf);
1544 if (strcmp (target_buf, "OK"))
1545 error ("Target does not support this command.");
1549 int ss_count; /* if actions include singlestepping */
1550 int disable_mask; /* ??? */
1551 int enable_mask; /* ??? */
1553 sprintf (buf, "QTDP:%x:%x:%c:%x:%x", t->number, t->address,
1554 t->enabled == enabled ? 'E' : 'D',
1555 t->step_count, t->pass_count);
1558 encode_actions (t, &tdp_actions, &step_count, &stepping_actions);
1559 /* do_single_steps (t); */
1562 if (strlen (buf) + strlen (tdp_actions) >= sizeof (buf))
1563 error ("Actions for tracepoint %d too complex; "
1564 "please simplify.", t->number);
1565 strcat (buf, tdp_actions);
1567 if (stepping_actions)
1570 if (strlen (buf) + strlen (stepping_actions) >= sizeof (buf))
1571 error ("Actions for tracepoint %d too complex; "
1572 "please simplify.", t->number);
1573 strcat (buf, stepping_actions);
1577 remote_get_noisy_reply (target_buf);
1578 if (strcmp (target_buf, "OK"))
1579 error ("Target does not support tracepoints.");
1582 remote_get_noisy_reply (target_buf);
1583 if (strcmp (target_buf, "OK"))
1584 error ("Bogus reply from target: %s", target_buf);
1585 set_traceframe_num (-1); /* all old traceframes invalidated */
1586 set_tracepoint_num (-1);
1587 set_traceframe_context(-1);
1590 printf_filtered ("Trace can only be run on remote targets.\n");
1595 trace_stop_command (args, from_tty)
1598 { /* STUB_COMM IS_IMPLEMENTED */
1599 if (target_is_remote ())
1602 remote_get_noisy_reply (target_buf);
1603 if (strcmp (target_buf, "OK"))
1604 error ("Bogus reply from target: %s", target_buf);
1607 error ("Trace can only be run on remote targets.");
1610 /* tstatus command */
1612 trace_status_command (args, from_tty)
1615 { /* STUB_COMM IS_IMPLEMENTED */
1616 if (target_is_remote ())
1618 putpkt ("qTStatus");
1619 remote_get_noisy_reply (target_buf);
1620 if (strcmp (target_buf, "OK"))
1621 error ("Bogus reply from target: %s", target_buf);
1624 error ("Trace can only be run on remote targets.");
1627 /* Worker function for the various flavors of the tfind command */
1629 finish_tfind_command (msg, from_tty)
1633 int target_frameno = -1, target_tracept = -1;
1634 CORE_ADDR old_frame_addr;
1635 struct symbol *old_func;
1638 old_frame_addr = FRAME_FP (get_current_frame ());
1639 old_func = find_pc_function (read_pc ());
1642 reply = remote_get_noisy_reply (msg);
1644 while (reply && *reply)
1647 if ((target_frameno = strtol (++reply, &reply, 16)) == -1)
1649 /* A request for a non-existant trace frame has failed.
1650 Our response will be different, depending on FROM_TTY:
1652 If FROM_TTY is true, meaning that this command was
1653 typed interactively by the user, then give an error
1654 and DO NOT change the state of traceframe_number etc.
1656 However if FROM_TTY is false, meaning that we're either
1657 in a script, a loop, or a user-defined command, then
1658 DON'T give an error, but DO change the state of
1659 traceframe_number etc. to invalid.
1661 The rationalle is that if you typed the command, you
1662 might just have committed a typo or something, and you'd
1663 like to NOT lose your current debugging state. However
1664 if you're in a user-defined command or especially in a
1665 loop, then you need a way to detect that the command
1666 failed WITHOUT aborting. This allows you to write
1667 scripts that search thru the trace buffer until the end,
1668 and then continue on to do something else. */
1671 error ("Target failed to find requested trace frame.");
1675 printf_filtered ("End of trace buffer.\n");
1676 /* The following will not recurse, since it's special-cased */
1677 trace_find_command ("-1", from_tty);
1678 reply = NULL; /* break out of loop,
1679 (avoid recursive nonsense) */
1684 if ((target_tracept = strtol (++reply, &reply, 16)) == -1)
1685 error ("Target failed to find requested trace frame.");
1687 case 'O': /* "OK"? */
1688 if (reply[1] == 'K' && reply[2] == '\0')
1691 error ("Bogus reply from target: %s", reply);
1694 error ("Bogus reply from target: %s", reply);
1697 flush_cached_frames ();
1698 registers_changed ();
1699 select_frame (get_current_frame (), 0);
1700 set_traceframe_num (target_frameno);
1701 set_tracepoint_num (target_tracept);
1702 if (target_frameno == -1)
1703 set_traceframe_context (-1);
1705 set_traceframe_context (read_pc ());
1711 if (old_frame_addr == FRAME_FP (get_current_frame ()) &&
1712 old_func == find_pc_function (read_pc ()))
1717 print_stack_frame (selected_frame, selected_frame_level, source_only);
1722 /* trace_find_command takes a trace frame number n,
1723 sends "QTFrame:<n>" to the target,
1724 and accepts a reply that may contain several optional pieces
1725 of information: a frame number, a tracepoint number, and an
1726 indication of whether this is a trap frame or a stepping frame.
1728 The minimal response is just "OK" (which indicates that the
1729 target does not give us a frame number or a tracepoint number).
1730 Instead of that, the target may send us a string containing
1732 F<hexnum> (gives the selected frame number)
1733 T<hexnum> (gives the selected tracepoint number)
1738 trace_find_command (args, from_tty)
1741 { /* STUB_COMM PART_IMPLEMENTED */
1742 /* this should only be called with a numeric argument */
1744 int target_frameno = -1, target_tracept = -1, target_stepfrm = 0;
1747 if (target_is_remote ())
1749 if (args == 0 || *args == 0)
1750 { /* TFIND with no args means find NEXT trace frame. */
1751 if (traceframe_number == -1)
1752 frameno = 0; /* "next" is first one */
1754 frameno = traceframe_number + 1;
1756 else if (0 == strcmp (args, "-"))
1758 if (traceframe_number == -1)
1759 error ("not debugging trace buffer");
1760 else if (from_tty && traceframe_number == 0)
1761 error ("already at start of trace buffer");
1763 frameno = traceframe_number - 1;
1766 frameno = parse_and_eval_address (args);
1768 sprintf (target_buf, "QTFrame:%x", frameno);
1770 putpkt (target_buf);
1771 tmp = remote_get_noisy_reply (target_buf);
1773 if (frameno == -1) /* end trace debugging */
1774 { /* hopefully the stub has complied! */
1775 if (0 != strcmp (tmp, "OK"))
1776 error ("Bogus response from target: %s", tmp);
1778 finish_tfind_command (NULL, from_tty);
1781 finish_tfind_command (tmp, from_tty);
1783 finish_tfind_command (target_buf, from_tty);
1787 error ("Trace can only be run on remote targets.");
1792 trace_find_end_command (args, from_tty)
1796 trace_find_command ("-1", from_tty);
1801 trace_find_none_command (args, from_tty)
1805 trace_find_command ("-1", from_tty);
1810 trace_find_start_command (args, from_tty)
1814 trace_find_command ("0", from_tty);
1817 /* tfind pc command */
1819 trace_find_pc_command (args, from_tty)
1822 { /* STUB_COMM PART_IMPLEMENTED */
1827 if (target_is_remote ())
1829 if (args == 0 || *args == 0)
1830 pc = read_pc (); /* default is current pc */
1832 pc = parse_and_eval_address (args);
1834 sprintf (target_buf, "QTFrame:pc:%x", pc);
1836 putpkt (target_buf);
1837 tmp = remote_get_noisy_reply (target_buf);
1839 finish_tfind_command (tmp, from_tty);
1841 finish_tfind_command (target_buf, from_tty);
1845 error ("Trace can only be run on remote targets.");
1848 /* tfind tracepoint command */
1850 trace_find_tracepoint_command (args, from_tty)
1853 { /* STUB_COMM PART_IMPLEMENTED */
1854 int target_frameno, tdp;
1857 if (target_is_remote ())
1859 if (args == 0 || *args == 0)
1860 if (tracepoint_number == -1)
1861 error ("No current tracepoint -- please supply an argument.");
1863 tdp = tracepoint_number; /* default is current TDP */
1865 tdp = parse_and_eval_address (args);
1867 sprintf (target_buf, "QTFrame:tdp:%x", tdp);
1869 putpkt (target_buf);
1870 tmp = remote_get_noisy_reply (target_buf);
1872 finish_tfind_command (tmp, from_tty);
1874 finish_tfind_command (target_buf, from_tty);
1878 error ("Trace can only be run on remote targets.");
1881 /* TFIND LINE command:
1883 This command will take a sourceline for argument, just like BREAK
1884 or TRACE (ie. anything that "decode_line_1" can handle).
1886 With no argument, this command will find the next trace frame
1887 corresponding to a source line OTHER THAN THE CURRENT ONE. */
1890 trace_find_line_command (args, from_tty)
1893 { /* STUB_COMM PART_IMPLEMENTED */
1894 static CORE_ADDR start_pc, end_pc;
1895 struct symtabs_and_lines sals;
1896 struct symtab_and_line sal;
1899 struct cleanup *old_chain;
1901 if (target_is_remote ())
1903 if (args == 0 || *args == 0)
1905 sal = find_pc_line ((get_current_frame ())->pc, 0);
1907 sals.sals = (struct symtab_and_line *)
1908 xmalloc (sizeof (struct symtab_and_line));
1913 sals = decode_line_spec (args, 1);
1917 old_chain = make_cleanup (free, sals.sals);
1918 if (sal.symtab == 0)
1920 printf_filtered ("TFIND: No line number information available");
1923 /* This is useful for "info line *0x7f34". If we can't tell the
1924 user about a source line, at least let them have the symbolic
1926 printf_filtered (" for address ");
1928 print_address (sal.pc, gdb_stdout);
1929 printf_filtered (";\n -- will attempt to find by PC. \n");
1933 printf_filtered (".\n");
1934 return; /* no line, no PC; what can we do? */
1937 else if (sal.line > 0
1938 && find_line_pc_range (sal, &start_pc, &end_pc))
1940 if (start_pc == end_pc)
1942 printf_filtered ("Line %d of \"%s\"",
1943 sal.line, sal.symtab->filename);
1945 printf_filtered (" is at address ");
1946 print_address (start_pc, gdb_stdout);
1948 printf_filtered (" but contains no code.\n");
1949 sal = find_pc_line (start_pc, 0);
1951 find_line_pc_range (sal, &start_pc, &end_pc) &&
1953 printf_filtered ("Attempting to find line %d instead.\n",
1956 error ("Cannot find a good line.");
1960 /* Is there any case in which we get here, and have an address
1961 which the user would want to see? If we have debugging symbols
1962 and no line numbers? */
1963 error ("Line number %d is out of range for \"%s\".\n",
1964 sal.line, sal.symtab->filename);
1966 if (args && *args) /* find within range of stated line */
1967 sprintf (target_buf, "QTFrame:range:%x:%x", start_pc, end_pc - 1);
1968 else /* find OUTSIDE OF range of CURRENT line */
1969 sprintf (target_buf, "QTFrame:outside:%x:%x", start_pc, end_pc - 1);
1971 putpkt (target_buf);
1972 tmp = remote_get_noisy_reply (target_buf);
1974 finish_tfind_command (tmp, from_tty);
1976 finish_tfind_command (target_buf, from_tty);
1978 do_cleanups (old_chain);
1981 error ("Trace can only be run on remote targets.");
1984 /* tfind range command */
1986 trace_find_range_command (args, from_tty)
1989 { /* STUB_COMM PART_IMPLEMENTED */
1990 static CORE_ADDR start, stop;
1994 if (target_is_remote ())
1996 if (args == 0 || *args == 0)
1997 { /* XXX FIXME: what should default behavior be? */
1998 printf_filtered ("Usage: tfind range <startaddr>,<endaddr>\n");
2002 if (0 != (tmp = strchr (args, ',' )))
2004 *tmp++ = '\0'; /* terminate start address */
2005 while (isspace (*tmp))
2007 start = parse_and_eval_address (args);
2008 stop = parse_and_eval_address (tmp);
2011 { /* no explicit end address? */
2012 start = parse_and_eval_address (args);
2013 stop = start + 1; /* ??? */
2016 sprintf (target_buf, "QTFrame:range:%x:%x", start, stop);
2018 putpkt (target_buf);
2019 tmp = remote_get_noisy_reply (target_buf);
2021 finish_tfind_command (tmp, from_tty);
2023 finish_tfind_command (target_buf, from_tty);
2027 error ("Trace can only be run on remote targets.");
2030 /* tfind outside command */
2032 trace_find_outside_command (args, from_tty)
2035 { /* STUB_COMM PART_IMPLEMENTED */
2036 CORE_ADDR start, stop;
2040 if (target_is_remote ())
2042 if (args == 0 || *args == 0)
2043 { /* XXX FIXME: what should default behavior be? */
2044 printf_filtered ("Usage: tfind outside <startaddr>,<endaddr>\n");
2048 if (0 != (tmp = strchr (args, ',' )))
2050 *tmp++ = '\0'; /* terminate start address */
2051 while (isspace (*tmp))
2053 start = parse_and_eval_address (args);
2054 stop = parse_and_eval_address (tmp);
2057 { /* no explicit end address? */
2058 start = parse_and_eval_address (args);
2059 stop = start + 1; /* ??? */
2062 sprintf (target_buf, "QTFrame:outside:%x:%x", start, stop);
2064 putpkt (target_buf);
2065 tmp = remote_get_noisy_reply (target_buf);
2067 finish_tfind_command (tmp, from_tty);
2069 finish_tfind_command (target_buf, from_tty);
2073 error ("Trace can only be run on remote targets.");
2076 /* save-tracepoints command */
2078 tracepoint_save_command (args, from_tty)
2082 struct tracepoint *tp;
2083 struct action_line *line;
2085 char *i1 = " ", *i2 = " ";
2086 char *indent, *actionline;
2088 if (args == 0 || *args == 0)
2089 error ("Argument required (file name in which to save tracepoints");
2091 if (tracepoint_chain == 0)
2093 warning ("save-tracepoints: no tracepoints to save.\n");
2097 if (!(fp = fopen (args, "w")))
2098 error ("Unable to open file '%s' for saving tracepoints");
2100 ALL_TRACEPOINTS (tp)
2102 if (tp->addr_string)
2103 fprintf (fp, "trace %s\n", tp->addr_string);
2105 fprintf (fp, "trace *0x%x\n", tp->address);
2108 fprintf (fp, " passcount %d\n", tp->pass_count);
2112 fprintf (fp, " actions\n");
2114 for (line = tp->actions; line; line = line->next)
2116 struct cmd_list_element *cmd;
2118 actionline = line->action;
2119 while (isspace(*actionline))
2122 fprintf (fp, "%s%s\n", indent, actionline);
2123 if (*actionline != '#') /* skip for comment lines */
2125 cmd = lookup_cmd (&actionline, cmdlist, "", -1, 1);
2127 error ("Bad action list item: %s", actionline);
2128 if (cmd->function.cfunc == while_stepping_pseudocommand)
2130 else if (cmd->function.cfunc == end_actions_pseudocommand)
2138 printf_filtered ("Tracepoints saved to file '%s'.\n", args);
2142 /* info scope command: list the locals for a scope. */
2144 scope_info (args, from_tty)
2148 struct symtab_and_line sal;
2149 struct symtabs_and_lines sals;
2151 struct minimal_symbol *msym;
2152 struct block *block;
2153 char **canonical, *symname, *save_args = args;
2154 int i, nsyms, count = 0;
2156 if (args == 0 || *args == 0)
2157 error ("requires an argument (function, line or *addr) to define a scope");
2159 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
2160 if (sals.nelts == 0)
2161 return; /* presumably decode_line_1 has already warned */
2163 /* Resolve line numbers to PC */
2164 resolve_sal_pc (&sals.sals[0]);
2165 block = block_for_pc (sals.sals[0].pc);
2169 nsyms = BLOCK_NSYMS (block);
2170 for (i = 0; i < nsyms; i++)
2173 printf_filtered ("Scope for %s:\n", save_args);
2175 sym = BLOCK_SYM (block, i);
2176 symname = SYMBOL_NAME (sym);
2177 if (symname == NULL || *symname == '\0')
2178 continue; /* probably botched, certainly useless */
2180 printf_filtered ("Symbol %s is ", symname);
2181 switch (SYMBOL_CLASS (sym)) {
2183 case LOC_UNDEF: /* messed up symbol? */
2184 printf_filtered ("a bogus symbol, class %d.\n",
2185 SYMBOL_CLASS (sym));
2186 count--; /* don't count this one */
2189 printf_filtered ("a constant with value %d (0x%x)",
2190 SYMBOL_VALUE (sym), SYMBOL_VALUE (sym));
2192 case LOC_CONST_BYTES:
2193 printf_filtered ("constant bytes: ");
2194 if (SYMBOL_TYPE (sym))
2195 for (i = 0; i < TYPE_LENGTH (SYMBOL_TYPE (sym)); i++)
2196 fprintf_filtered (gdb_stdout, " %02x",
2197 (unsigned) SYMBOL_VALUE_BYTES (sym) [i]);
2200 printf_filtered ("in static storage at address ");
2201 print_address_numeric (SYMBOL_VALUE_ADDRESS (sym), 1, gdb_stdout);
2204 printf_filtered ("a local variable in register $%s",
2205 reg_names [SYMBOL_VALUE (sym)]);
2209 printf_filtered ("an argument at stack/frame offset %ld",
2210 SYMBOL_VALUE (sym));
2213 printf_filtered ("a local variable at frame offset %ld",
2214 SYMBOL_VALUE (sym));
2217 printf_filtered ("a reference argument at offset %ld",
2218 SYMBOL_VALUE (sym));
2221 printf_filtered ("an argument in register $%s",
2222 reg_names[SYMBOL_VALUE (sym)]);
2224 case LOC_REGPARM_ADDR:
2225 printf_filtered ("the address of an argument, in register $%s",
2226 reg_names[SYMBOL_VALUE (sym)]);
2229 printf_filtered ("a typedef.\n");
2232 printf_filtered ("a label at address ");
2233 print_address_numeric (SYMBOL_VALUE_ADDRESS (sym), 1, gdb_stdout);
2236 printf_filtered ("a function at address ");
2237 print_address_numeric (BLOCK_START (SYMBOL_BLOCK_VALUE (sym)), 1,
2241 printf_filtered ("a variable at offset %d from register $%s",
2243 reg_names [SYMBOL_BASEREG (sym)]);
2245 case LOC_BASEREG_ARG:
2246 printf_filtered ("an argument at offset %d from register $%s",
2248 reg_names [SYMBOL_BASEREG (sym)]);
2250 case LOC_UNRESOLVED:
2251 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, NULL);
2253 printf_filtered ("Unresolved Static");
2256 printf_filtered ("static storage at address ");
2257 print_address_numeric (SYMBOL_VALUE_ADDRESS (msym), 1,
2261 case LOC_OPTIMIZED_OUT:
2262 printf_filtered ("optimized out.\n");
2265 if (SYMBOL_TYPE (sym))
2266 printf_filtered (", length %d.\n",
2267 TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym))));
2269 if (BLOCK_FUNCTION (block))
2272 block = BLOCK_SUPERBLOCK (block);
2275 printf_filtered ("Scope for %s contains no locals or arguments.\n",
2279 /* worker function (cleanup) */
2281 replace_comma (comma)
2289 trace_dump_command (args, from_tty)
2293 struct tracepoint *t;
2294 struct action_line *action;
2295 char *action_exp, *next_comma;
2296 struct cleanup *old_cleanups;
2297 int stepping_actions = 0;
2298 int stepping_frame = 0;
2300 if (tracepoint_number == -1)
2302 warning ("No current trace frame.");
2307 if (t->number == tracepoint_number)
2311 error ("No known tracepoint matches 'current' tracepoint #%d.",
2314 old_cleanups = make_cleanup (null_cleanup, NULL);
2316 printf_filtered ("Data collected at tracepoint %d, trace frame %d:\n",
2317 tracepoint_number, traceframe_number);
2319 /* The current frame is a trap frame if the frame PC is equal
2320 to the tracepoint PC. If not, then the current frame was
2321 collected during single-stepping. */
2323 stepping_frame = (t->address != read_pc());
2325 for (action = t->actions; action; action = action->next)
2327 struct cmd_list_element *cmd;
2329 action_exp = action->action;
2330 while (isspace (*action_exp))
2333 /* The collection actions to be done while stepping are
2334 bracketed by the commands "while-stepping" and "end". */
2336 if (*action_exp == '#') /* comment line */
2339 cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1);
2341 error ("Bad action list item: %s", action_exp);
2343 if (cmd->function.cfunc == while_stepping_pseudocommand)
2344 stepping_actions = 1;
2345 else if (cmd->function.cfunc == end_actions_pseudocommand)
2346 stepping_actions = 0;
2347 else if (cmd->function.cfunc == collect_pseudocommand)
2349 /* Display the collected data.
2350 For the trap frame, display only what was collected at the trap.
2351 Likewise for stepping frames, display only what was collected
2352 while stepping. This means that the two boolean variables,
2353 STEPPING_FRAME and STEPPING_ACTIONS should be equal. */
2354 if (stepping_frame == stepping_actions)
2356 do { /* repeat over a comma-separated list */
2358 if (*action_exp == ',')
2360 while (isspace (*action_exp))
2363 next_comma = strchr (action_exp, ',');
2365 if (0 == strncasecmp (action_exp, "$reg", 4))
2366 registers_info (NULL, from_tty);
2367 else if (0 == strncasecmp (action_exp, "$loc", 4))
2368 locals_info (NULL, from_tty);
2369 else if (0 == strncasecmp (action_exp, "$arg", 4))
2370 args_info (NULL, from_tty);
2371 else if (action_exp[0] == '$' && action_exp[1] == '(')
2373 long typecode, size;
2374 bfd_signed_vma offset;
2377 action_exp = parse_and_eval_memrange (action_exp,
2382 if (typecode != 0 && typecode != -1)
2383 offset += read_register (typecode);
2384 sprintf (fmt, "/%dxb 0x%x", size, offset);
2385 x_command (fmt, from_tty);
2386 next_comma = strchr (action_exp, ',');
2392 make_cleanup (replace_comma, next_comma);
2395 printf_filtered ("%s = ", action_exp);
2396 output_command (action_exp, from_tty);
2397 printf_filtered ("\n");
2401 action_exp = next_comma;
2402 } while (action_exp && *action_exp == ',');
2406 discard_cleanups (old_cleanups);
2409 /* module initialization */
2411 _initialize_tracepoint ()
2413 tracepoint_chain = 0;
2414 tracepoint_count = 0;
2415 traceframe_number = -1;
2416 tracepoint_number = -1;
2418 set_internalvar (lookup_internalvar ("tpnum"),
2419 value_from_longest (builtin_type_int, (LONGEST) 0));
2420 set_internalvar (lookup_internalvar ("trace_frame"),
2421 value_from_longest (builtin_type_int, (LONGEST) 0));
2423 if (tracepoint_list.list == NULL)
2425 tracepoint_list.listsize = 128;
2426 tracepoint_list.list = xmalloc
2427 (tracepoint_list.listsize * sizeof (struct memrange));
2429 if (stepping_list.list == NULL)
2431 stepping_list.listsize = 128;
2432 stepping_list.list = xmalloc
2433 (stepping_list.listsize * sizeof (struct memrange));
2436 add_info ("scope", scope_info,
2437 "List the variables local to a scope");
2439 add_cmd ("tracepoints", class_trace, NO_FUNCTION,
2440 "Tracing of program execution without stopping the program.",
2443 add_info ("tracepoints", tracepoints_info,
2444 "Status of tracepoints, or tracepoint number NUMBER.\n\
2445 Convenience variable \"$tpnum\" contains the number of the\n\
2446 last tracepoint set.");
2448 add_info_alias ("tp", "tracepoints", 1);
2450 add_com ("save-tracepoints", class_trace, tracepoint_save_command,
2451 "Save current tracepoint definitions as a script.\n\
2452 Use the 'source' command in another debug session to restore them.");
2454 add_com ("tdump", class_trace, trace_dump_command,
2455 "Print everything collected at the current tracepoint.");
2457 add_prefix_cmd ("tfind", class_trace, trace_find_command,
2458 "Select a trace frame;\n\
2459 No argument means forward by one frame; '-' meand backward by one frame.",
2460 &tfindlist, "tfind ", 1, &cmdlist);
2462 add_cmd ("outside", class_trace, trace_find_outside_command,
2463 "Select a trace frame whose PC is outside the given \
2464 range.\nUsage: tfind outside addr1, addr2",
2467 add_cmd ("range", class_trace, trace_find_range_command,
2468 "Select a trace frame whose PC is in the given range.\n\
2469 Usage: tfind range addr1,addr2",
2472 add_cmd ("line", class_trace, trace_find_line_command,
2473 "Select a trace frame by source line.\n\
2474 Argument can be a line number (with optional source file), \n\
2475 a function name, or '*' followed by an address.\n\
2476 Default argument is 'the next source line that was traced'.",
2479 add_cmd ("tracepoint", class_trace, trace_find_tracepoint_command,
2480 "Select a trace frame by tracepoint number.\n\
2481 Default is the tracepoint for the current trace frame.",
2484 add_cmd ("pc", class_trace, trace_find_pc_command,
2485 "Select a trace frame by PC.\n\
2486 Default is the current PC, or the PC of the current trace frame.",
2489 add_cmd ("end", class_trace, trace_find_end_command,
2490 "Synonym for 'none'.\n\
2491 De-select any trace frame and resume 'live' debugging.",
2494 add_cmd ("none", class_trace, trace_find_none_command,
2495 "De-select any trace frame and resume 'live' debugging.",
2498 add_cmd ("start", class_trace, trace_find_start_command,
2499 "Select the first trace frame in the trace buffer.",
2502 add_com ("tstatus", class_trace, trace_status_command,
2503 "Display the status of the current trace data collection.");
2505 add_com ("tstop", class_trace, trace_stop_command,
2506 "Stop trace data collection.");
2508 add_com ("tstart", class_trace, trace_start_command,
2509 "Start trace data collection.");
2511 add_com ("passcount", class_trace, trace_pass_command,
2512 "Set the passcount for a tracepoint.\n\
2513 The trace will end when the tracepoint has been passed 'count' times.\n\
2514 Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
2515 if TPNUM is omitted, passcount refers to the last tracepoint defined.");
2517 add_com ("end", class_trace, end_actions_pseudocommand,
2518 "Ends a list of commands or actions.\n\
2519 Several GDB commands allow you to enter a list of commands or actions.\n\
2520 Entering \"end\" on a line by itself is the normal way to terminate\n\
2522 Note: the \"end\" command cannot be used at the gdb prompt.");
2524 add_com ("while-stepping", class_trace, while_stepping_pseudocommand,
2525 "Specify single-stepping behavior at a tracepoint.\n\
2526 Argument is number of instructions to trace in single-step mode\n\
2527 following the tracepoint. This command is normally followed by\n\
2528 one or more \"collect\" commands, to specify what to collect\n\
2529 while single-stepping.\n\n\
2530 Note: this command can only be used in a tracepoint \"actions\" list.");
2532 add_com_alias ("ws", "while-stepping", class_alias, 0);
2533 add_com_alias ("stepping", "while-stepping", class_alias, 0);
2535 add_com ("collect", class_trace, collect_pseudocommand,
2536 "Specify one or more data items to be collected at a tracepoint.\n\
2537 Accepts a comma-separated list of (one or more) arguments.\n\
2538 Things that may be collected include registers, variables, plus\n\
2539 the following special arguments:\n\
2540 $regs -- all registers.\n\
2541 $args -- all function arguments.\n\
2542 $locals -- all variables local to the block/function scope.\n\
2543 $(addr,len) -- a literal memory range.\n\
2544 $($reg,addr,len) -- a register-relative literal memory range.\n\n\
2545 Note: this command can only be used in a tracepoint \"actions\" list.");
2547 add_com ("actions", class_trace, trace_actions_command,
2548 "Specify the actions to be taken at a tracepoint.\n\
2549 Tracepoint actions may include collecting of specified data, \n\
2550 single-stepping, or enabling/disabling other tracepoints, \n\
2551 depending on target's capabilities.");
2553 add_cmd ("tracepoints", class_trace, delete_trace_command,
2554 "Delete specified tracepoints.\n\
2555 Arguments are tracepoint numbers, separated by spaces.\n\
2556 No argument means delete all tracepoints.",
2559 add_cmd ("tracepoints", class_trace, disable_trace_command,
2560 "Disable specified tracepoints.\n\
2561 Arguments are tracepoint numbers, separated by spaces.\n\
2562 No argument means disable all tracepoints.",
2565 add_cmd ("tracepoints", class_trace, enable_trace_command,
2566 "Enable specified tracepoints.\n\
2567 Arguments are tracepoint numbers, separated by spaces.\n\
2568 No argument means enable all tracepoints.",
2571 add_com ("trace", class_trace, trace_command,
2572 "Set a tracepoint at a specified line or function or address.\n\
2573 Argument may be a line number, function name, or '*' plus an address.\n\
2574 For a line number or function, trace at the start of its code.\n\
2575 If an address is specified, trace at that exact address.\n\n\
2576 Do \"help tracepoints\" for info on other tracepoint commands.");
2578 add_com_alias ("tp", "trace", class_alias, 0);
2579 add_com_alias ("tr", "trace", class_alias, 1);
2580 add_com_alias ("tra", "trace", class_alias, 1);
2581 add_com_alias ("trac", "trace", class_alias, 1);