]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Tracing functionality for remote targets in custom GDB protocol |
9f60d481 | 2 | |
6aba47ca | 3 | Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, |
0fb0cc75 | 4 | 2007, 2008, 2009 Free Software Foundation, Inc. |
c906108c | 5 | |
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 10 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 11 | (at your option) any later version. |
c906108c | 12 | |
c5aa993b JM |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
c906108c | 17 | |
c5aa993b | 18 | You should have received a copy of the GNU General Public License |
a9762ec7 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
20 | |
21 | #include "defs.h" | |
22 | #include "symtab.h" | |
23 | #include "frame.h" | |
c906108c SS |
24 | #include "gdbtypes.h" |
25 | #include "expression.h" | |
26 | #include "gdbcmd.h" | |
27 | #include "value.h" | |
28 | #include "target.h" | |
29 | #include "language.h" | |
30 | #include "gdb_string.h" | |
104c1213 JM |
31 | #include "inferior.h" |
32 | #include "tracepoint.h" | |
c2c6d25f | 33 | #include "remote.h" |
c5f0f3d0 | 34 | #include "linespec.h" |
4e052eda | 35 | #include "regcache.h" |
c94fdfd0 | 36 | #include "completer.h" |
fe898f56 | 37 | #include "block.h" |
de4f826b | 38 | #include "dictionary.h" |
383f836e | 39 | #include "observer.h" |
029a67e4 | 40 | #include "user-regs.h" |
79a45b7d | 41 | #include "valprint.h" |
c906108c SS |
42 | |
43 | #include "ax.h" | |
44 | #include "ax-gdb.h" | |
45 | ||
46 | /* readline include files */ | |
dbda9972 AC |
47 | #include "readline/readline.h" |
48 | #include "readline/history.h" | |
c906108c SS |
49 | |
50 | /* readline defines this. */ | |
51 | #undef savestring | |
52 | ||
53 | #ifdef HAVE_UNISTD_H | |
54 | #include <unistd.h> | |
55 | #endif | |
56 | ||
d183932d MS |
57 | /* Maximum length of an agent aexpression. |
58 | This accounts for the fact that packets are limited to 400 bytes | |
c906108c SS |
59 | (which includes everything -- including the checksum), and assumes |
60 | the worst case of maximum length for each of the pieces of a | |
61 | continuation packet. | |
c5aa993b | 62 | |
c906108c SS |
63 | NOTE: expressions get mem2hex'ed otherwise this would be twice as |
64 | large. (400 - 31)/2 == 184 */ | |
65 | #define MAX_AGENT_EXPR_LEN 184 | |
66 | ||
67 | ||
9a4105ab AC |
68 | extern void (*deprecated_readline_begin_hook) (char *, ...); |
69 | extern char *(*deprecated_readline_hook) (char *); | |
70 | extern void (*deprecated_readline_end_hook) (void); | |
c906108c | 71 | |
104c1213 JM |
72 | /* GDB commands implemented in other modules: |
73 | */ | |
74 | ||
a14ed312 | 75 | extern void output_command (char *, int); |
104c1213 | 76 | |
c906108c SS |
77 | /* |
78 | Tracepoint.c: | |
79 | ||
80 | This module defines the following debugger commands: | |
81 | trace : set a tracepoint on a function, line, or address. | |
82 | info trace : list all debugger-defined tracepoints. | |
83 | delete trace : delete one or more tracepoints. | |
84 | enable trace : enable one or more tracepoints. | |
85 | disable trace : disable one or more tracepoints. | |
86 | actions : specify actions to be taken at a tracepoint. | |
87 | passcount : specify a pass count for a tracepoint. | |
88 | tstart : start a trace experiment. | |
89 | tstop : stop a trace experiment. | |
90 | tstatus : query the status of a trace experiment. | |
91 | tfind : find a trace frame in the trace buffer. | |
92 | tdump : print everything collected at the current tracepoint. | |
93 | save-tracepoints : write tracepoint setup into a file. | |
94 | ||
95 | This module defines the following user-visible debugger variables: | |
96 | $trace_frame : sequence number of trace frame currently being debugged. | |
97 | $trace_line : source line of trace frame currently being debugged. | |
98 | $trace_file : source file of trace frame currently being debugged. | |
99 | $tracepoint : tracepoint number of trace frame currently being debugged. | |
c5aa993b | 100 | */ |
c906108c SS |
101 | |
102 | ||
103 | /* ======= Important global variables: ======= */ | |
104 | ||
105 | /* Chain of all tracepoints defined. */ | |
106 | struct tracepoint *tracepoint_chain; | |
107 | ||
108 | /* Number of last tracepoint made. */ | |
109 | static int tracepoint_count; | |
110 | ||
111 | /* Number of last traceframe collected. */ | |
112 | static int traceframe_number; | |
113 | ||
114 | /* Tracepoint for last traceframe collected. */ | |
115 | static int tracepoint_number; | |
116 | ||
117 | /* Symbol for function for last traceframe collected */ | |
118 | static struct symbol *traceframe_fun; | |
119 | ||
120 | /* Symtab and line for last traceframe collected */ | |
121 | static struct symtab_and_line traceframe_sal; | |
122 | ||
123 | /* Tracing command lists */ | |
124 | static struct cmd_list_element *tfindlist; | |
125 | ||
126 | /* ======= Important command functions: ======= */ | |
a14ed312 KB |
127 | static void trace_command (char *, int); |
128 | static void tracepoints_info (char *, int); | |
129 | static void delete_trace_command (char *, int); | |
130 | static void enable_trace_command (char *, int); | |
131 | static void disable_trace_command (char *, int); | |
132 | static void trace_pass_command (char *, int); | |
133 | static void trace_actions_command (char *, int); | |
134 | static void trace_start_command (char *, int); | |
135 | static void trace_stop_command (char *, int); | |
136 | static void trace_status_command (char *, int); | |
137 | static void trace_find_command (char *, int); | |
138 | static void trace_find_pc_command (char *, int); | |
139 | static void trace_find_tracepoint_command (char *, int); | |
140 | static void trace_find_line_command (char *, int); | |
141 | static void trace_find_range_command (char *, int); | |
142 | static void trace_find_outside_command (char *, int); | |
143 | static void tracepoint_save_command (char *, int); | |
144 | static void trace_dump_command (char *, int); | |
c906108c SS |
145 | |
146 | /* support routines */ | |
a14ed312 | 147 | static void trace_mention (struct tracepoint *); |
c906108c SS |
148 | |
149 | struct collection_list; | |
a14ed312 | 150 | static void add_aexpr (struct collection_list *, struct agent_expr *); |
47b667de | 151 | static char *mem2hex (gdb_byte *, char *, int); |
a14ed312 KB |
152 | static void add_register (struct collection_list *collection, |
153 | unsigned int regno); | |
74b7792f | 154 | static struct cleanup *make_cleanup_free_actions (struct tracepoint *t); |
a14ed312 KB |
155 | static void free_actions_list (char **actions_list); |
156 | static void free_actions_list_cleanup_wrapper (void *); | |
392a587b | 157 | |
a14ed312 | 158 | extern void _initialize_tracepoint (void); |
c906108c SS |
159 | |
160 | /* Utility: returns true if "target remote" */ | |
161 | static int | |
fba45db2 | 162 | target_is_remote (void) |
c906108c SS |
163 | { |
164 | if (current_target.to_shortname && | |
549678da NS |
165 | (strcmp (current_target.to_shortname, "remote") == 0 |
166 | || strcmp (current_target.to_shortname, "extended-remote") == 0)) | |
c906108c SS |
167 | return 1; |
168 | else | |
169 | return 0; | |
170 | } | |
171 | ||
172 | /* Utility: generate error from an incoming stub packet. */ | |
c5aa993b | 173 | static void |
fba45db2 | 174 | trace_error (char *buf) |
c906108c SS |
175 | { |
176 | if (*buf++ != 'E') | |
177 | return; /* not an error msg */ | |
c5aa993b | 178 | switch (*buf) |
c906108c SS |
179 | { |
180 | case '1': /* malformed packet error */ | |
181 | if (*++buf == '0') /* general case: */ | |
8a3fe4f8 | 182 | error (_("tracepoint.c: error in outgoing packet.")); |
c906108c | 183 | else |
8a3fe4f8 | 184 | error (_("tracepoint.c: error in outgoing packet at field #%ld."), |
c906108c SS |
185 | strtol (buf, NULL, 16)); |
186 | case '2': | |
8a3fe4f8 | 187 | error (_("trace API error 0x%s."), ++buf); |
c906108c | 188 | default: |
8a3fe4f8 | 189 | error (_("Target returns error code '%s'."), buf); |
c906108c SS |
190 | } |
191 | } | |
192 | ||
d183932d | 193 | /* Utility: wait for reply from stub, while accepting "O" packets. */ |
c906108c | 194 | static char * |
6d820c5c DJ |
195 | remote_get_noisy_reply (char **buf_p, |
196 | long *sizeof_buf) | |
c906108c | 197 | { |
d183932d | 198 | do /* Loop on reply from remote stub. */ |
c906108c | 199 | { |
6d820c5c | 200 | char *buf; |
c5aa993b | 201 | QUIT; /* allow user to bail out with ^C */ |
6d820c5c DJ |
202 | getpkt (buf_p, sizeof_buf, 0); |
203 | buf = *buf_p; | |
c906108c | 204 | if (buf[0] == 0) |
8a3fe4f8 | 205 | error (_("Target does not support this command.")); |
c906108c SS |
206 | else if (buf[0] == 'E') |
207 | trace_error (buf); | |
208 | else if (buf[0] == 'O' && | |
209 | buf[1] != 'K') | |
210 | remote_console_output (buf + 1); /* 'O' message from stub */ | |
211 | else | |
c5aa993b JM |
212 | return buf; /* here's the actual reply */ |
213 | } | |
214 | while (1); | |
c906108c SS |
215 | } |
216 | ||
217 | /* Set tracepoint count to NUM. */ | |
218 | static void | |
fba45db2 | 219 | set_tracepoint_count (int num) |
c906108c SS |
220 | { |
221 | tracepoint_count = num; | |
222 | set_internalvar (lookup_internalvar ("tpnum"), | |
8b9b9e1a | 223 | value_from_longest (builtin_type_int32, (LONGEST) num)); |
c906108c SS |
224 | } |
225 | ||
226 | /* Set traceframe number to NUM. */ | |
227 | static void | |
fba45db2 | 228 | set_traceframe_num (int num) |
c906108c SS |
229 | { |
230 | traceframe_number = num; | |
231 | set_internalvar (lookup_internalvar ("trace_frame"), | |
8b9b9e1a | 232 | value_from_longest (builtin_type_int32, (LONGEST) num)); |
c906108c SS |
233 | } |
234 | ||
235 | /* Set tracepoint number to NUM. */ | |
236 | static void | |
fba45db2 | 237 | set_tracepoint_num (int num) |
c906108c SS |
238 | { |
239 | tracepoint_number = num; | |
240 | set_internalvar (lookup_internalvar ("tracepoint"), | |
8b9b9e1a | 241 | value_from_longest (builtin_type_int32, (LONGEST) num)); |
c906108c SS |
242 | } |
243 | ||
244 | /* Set externally visible debug variables for querying/printing | |
245 | the traceframe context (line, function, file) */ | |
246 | ||
247 | static void | |
fba45db2 | 248 | set_traceframe_context (CORE_ADDR trace_pc) |
c906108c SS |
249 | { |
250 | static struct type *func_string, *file_string; | |
c5aa993b | 251 | static struct type *func_range, *file_range; |
f976f6d4 AC |
252 | struct value *func_val; |
253 | struct value *file_val; | |
c906108c SS |
254 | int len; |
255 | ||
d183932d | 256 | if (trace_pc == -1) /* Cease debugging any trace buffers. */ |
c906108c SS |
257 | { |
258 | traceframe_fun = 0; | |
259 | traceframe_sal.pc = traceframe_sal.line = 0; | |
260 | traceframe_sal.symtab = NULL; | |
c5aa993b | 261 | set_internalvar (lookup_internalvar ("trace_func"), |
8b9b9e1a | 262 | allocate_value (builtin_type_void)); |
c5aa993b | 263 | set_internalvar (lookup_internalvar ("trace_file"), |
8b9b9e1a | 264 | allocate_value (builtin_type_void)); |
c906108c | 265 | set_internalvar (lookup_internalvar ("trace_line"), |
8b9b9e1a | 266 | value_from_longest (builtin_type_int32, |
d183932d | 267 | (LONGEST) - 1)); |
c906108c SS |
268 | return; |
269 | } | |
270 | ||
d183932d | 271 | /* Save as globals for internal use. */ |
c906108c SS |
272 | traceframe_sal = find_pc_line (trace_pc, 0); |
273 | traceframe_fun = find_pc_function (trace_pc); | |
274 | ||
d183932d MS |
275 | /* Save linenumber as "$trace_line", a debugger variable visible to |
276 | users. */ | |
c906108c | 277 | set_internalvar (lookup_internalvar ("trace_line"), |
8b9b9e1a | 278 | value_from_longest (builtin_type_int32, |
c906108c SS |
279 | (LONGEST) traceframe_sal.line)); |
280 | ||
d183932d MS |
281 | /* Save func name as "$trace_func", a debugger variable visible to |
282 | users. */ | |
c5aa993b | 283 | if (traceframe_fun == NULL || |
3567439c | 284 | SYMBOL_LINKAGE_NAME (traceframe_fun) == NULL) |
c5aa993b | 285 | set_internalvar (lookup_internalvar ("trace_func"), |
8b9b9e1a | 286 | allocate_value (builtin_type_void)); |
c906108c SS |
287 | else |
288 | { | |
3567439c | 289 | len = strlen (SYMBOL_LINKAGE_NAME (traceframe_fun)); |
c5aa993b | 290 | func_range = create_range_type (func_range, |
8b9b9e1a | 291 | builtin_type_int32, 0, len - 1); |
c5aa993b | 292 | func_string = create_array_type (func_string, |
8b9b9e1a | 293 | builtin_type_true_char, func_range); |
c906108c | 294 | func_val = allocate_value (func_string); |
04624583 | 295 | deprecated_set_value_type (func_val, func_string); |
990a07ab | 296 | memcpy (value_contents_raw (func_val), |
3567439c | 297 | SYMBOL_LINKAGE_NAME (traceframe_fun), |
c906108c | 298 | len); |
88e3b34b | 299 | deprecated_set_value_modifiable (func_val, 0); |
c906108c SS |
300 | set_internalvar (lookup_internalvar ("trace_func"), func_val); |
301 | } | |
302 | ||
d183932d MS |
303 | /* Save file name as "$trace_file", a debugger variable visible to |
304 | users. */ | |
c5aa993b | 305 | if (traceframe_sal.symtab == NULL || |
c906108c | 306 | traceframe_sal.symtab->filename == NULL) |
c5aa993b | 307 | set_internalvar (lookup_internalvar ("trace_file"), |
8b9b9e1a | 308 | allocate_value (builtin_type_void)); |
c906108c SS |
309 | else |
310 | { | |
311 | len = strlen (traceframe_sal.symtab->filename); | |
c5aa993b | 312 | file_range = create_range_type (file_range, |
8b9b9e1a | 313 | builtin_type_int32, 0, len - 1); |
c5aa993b | 314 | file_string = create_array_type (file_string, |
8b9b9e1a | 315 | builtin_type_true_char, file_range); |
c906108c | 316 | file_val = allocate_value (file_string); |
04624583 | 317 | deprecated_set_value_type (file_val, file_string); |
990a07ab | 318 | memcpy (value_contents_raw (file_val), |
c5aa993b | 319 | traceframe_sal.symtab->filename, |
c906108c | 320 | len); |
88e3b34b | 321 | deprecated_set_value_modifiable (file_val, 0); |
c906108c SS |
322 | set_internalvar (lookup_internalvar ("trace_file"), file_val); |
323 | } | |
324 | } | |
325 | ||
326 | /* Low level routine to set a tracepoint. | |
327 | Returns the tracepoint object so caller can set other things. | |
328 | Does not set the tracepoint number! | |
329 | Does not print anything. | |
330 | ||
331 | ==> This routine should not be called if there is a chance of later | |
d183932d MS |
332 | error(); otherwise it leaves a bogus tracepoint on the chain. |
333 | Validate your arguments BEFORE calling this routine! */ | |
c906108c SS |
334 | |
335 | static struct tracepoint * | |
fba45db2 | 336 | set_raw_tracepoint (struct symtab_and_line sal) |
c906108c | 337 | { |
52f0bd74 | 338 | struct tracepoint *t, *tc; |
c906108c SS |
339 | struct cleanup *old_chain; |
340 | ||
341 | t = (struct tracepoint *) xmalloc (sizeof (struct tracepoint)); | |
b8c9b27d | 342 | old_chain = make_cleanup (xfree, t); |
c906108c SS |
343 | memset (t, 0, sizeof (*t)); |
344 | t->address = sal.pc; | |
345 | if (sal.symtab == NULL) | |
346 | t->source_file = NULL; | |
347 | else | |
c5aa993b | 348 | t->source_file = savestring (sal.symtab->filename, |
c906108c SS |
349 | strlen (sal.symtab->filename)); |
350 | ||
c5aa993b JM |
351 | t->section = sal.section; |
352 | t->language = current_language->la_language; | |
c906108c SS |
353 | t->input_radix = input_radix; |
354 | t->line_number = sal.line; | |
b5de0fa7 | 355 | t->enabled_p = 1; |
c5aa993b JM |
356 | t->next = 0; |
357 | t->step_count = 0; | |
358 | t->pass_count = 0; | |
c906108c SS |
359 | t->addr_string = NULL; |
360 | ||
361 | /* Add this tracepoint to the end of the chain | |
362 | so that a list of tracepoints will come out in order | |
363 | of increasing numbers. */ | |
364 | ||
365 | tc = tracepoint_chain; | |
366 | if (tc == 0) | |
367 | tracepoint_chain = t; | |
368 | else | |
369 | { | |
370 | while (tc->next) | |
371 | tc = tc->next; | |
372 | tc->next = t; | |
373 | } | |
374 | discard_cleanups (old_chain); | |
375 | return t; | |
376 | } | |
377 | ||
d183932d | 378 | /* Set a tracepoint according to ARG (function, linenum or *address). */ |
c906108c | 379 | static void |
fba45db2 | 380 | trace_command (char *arg, int from_tty) |
c906108c | 381 | { |
c5aa993b | 382 | char **canonical = (char **) NULL; |
c906108c SS |
383 | struct symtabs_and_lines sals; |
384 | struct symtab_and_line sal; | |
385 | struct tracepoint *t; | |
386 | char *addr_start = 0, *addr_end = 0; | |
387 | int i; | |
388 | ||
389 | if (!arg || !*arg) | |
8a3fe4f8 | 390 | error (_("trace command requires an argument")); |
c906108c SS |
391 | |
392 | if (from_tty && info_verbose) | |
393 | printf_filtered ("TRACE %s\n", arg); | |
394 | ||
395 | addr_start = arg; | |
d183932d MS |
396 | sals = decode_line_1 (&arg, 1, (struct symtab *) NULL, |
397 | 0, &canonical, NULL); | |
c5aa993b JM |
398 | addr_end = arg; |
399 | if (!sals.nelts) | |
d183932d | 400 | return; /* ??? Presumably decode_line_1 has already warned? */ |
c906108c SS |
401 | |
402 | /* Resolve all line numbers to PC's */ | |
403 | for (i = 0; i < sals.nelts; i++) | |
404 | resolve_sal_pc (&sals.sals[i]); | |
405 | ||
406 | /* Now set all the tracepoints. */ | |
407 | for (i = 0; i < sals.nelts; i++) | |
408 | { | |
409 | sal = sals.sals[i]; | |
410 | ||
411 | t = set_raw_tracepoint (sal); | |
412 | set_tracepoint_count (tracepoint_count + 1); | |
413 | t->number = tracepoint_count; | |
414 | ||
415 | /* If a canonical line spec is needed use that instead of the | |
c5aa993b JM |
416 | command string. */ |
417 | if (canonical != (char **) NULL && canonical[i] != NULL) | |
c906108c SS |
418 | t->addr_string = canonical[i]; |
419 | else if (addr_start) | |
420 | t->addr_string = savestring (addr_start, addr_end - addr_start); | |
421 | ||
422 | trace_mention (t); | |
c906108c SS |
423 | } |
424 | ||
425 | if (sals.nelts > 1) | |
426 | { | |
427 | printf_filtered ("Multiple tracepoints were set.\n"); | |
428 | printf_filtered ("Use 'delete trace' to delete unwanted tracepoints.\n"); | |
429 | } | |
430 | } | |
431 | ||
d183932d | 432 | /* Tell the user we have just set a tracepoint TP. */ |
c906108c SS |
433 | |
434 | static void | |
fba45db2 | 435 | trace_mention (struct tracepoint *tp) |
c906108c | 436 | { |
79a45b7d | 437 | struct value_print_options opts; |
c906108c SS |
438 | printf_filtered ("Tracepoint %d", tp->number); |
439 | ||
79a45b7d TT |
440 | get_user_print_options (&opts); |
441 | if (opts.addressprint || (tp->source_file == NULL)) | |
c906108c SS |
442 | { |
443 | printf_filtered (" at "); | |
ed49a04f | 444 | printf_filtered ("%s", paddress (tp->address)); |
c906108c SS |
445 | } |
446 | if (tp->source_file) | |
447 | printf_filtered (": file %s, line %d.", | |
448 | tp->source_file, tp->line_number); | |
449 | ||
450 | printf_filtered ("\n"); | |
451 | } | |
452 | ||
d183932d MS |
453 | /* Print information on tracepoint number TPNUM_EXP, or all if |
454 | omitted. */ | |
c906108c SS |
455 | |
456 | static void | |
fba45db2 | 457 | tracepoints_info (char *tpnum_exp, int from_tty) |
c906108c SS |
458 | { |
459 | struct tracepoint *t; | |
460 | struct action_line *action; | |
461 | int found_a_tracepoint = 0; | |
462 | char wrap_indent[80]; | |
463 | struct symbol *sym; | |
464 | int tpnum = -1; | |
465 | ||
466 | if (tpnum_exp) | |
bb518678 | 467 | tpnum = parse_and_eval_long (tpnum_exp); |
c906108c SS |
468 | |
469 | ALL_TRACEPOINTS (t) | |
470 | if (tpnum == -1 || tpnum == t->number) | |
c5aa993b | 471 | { |
79a45b7d TT |
472 | struct value_print_options opts; |
473 | get_user_print_options (&opts); | |
c5aa993b JM |
474 | if (!found_a_tracepoint++) |
475 | { | |
476 | printf_filtered ("Num Enb "); | |
79a45b7d | 477 | if (opts.addressprint) |
75ac9d7b | 478 | { |
17a912b6 | 479 | if (gdbarch_addr_bit (current_gdbarch) <= 32) |
75ac9d7b MS |
480 | printf_filtered ("Address "); |
481 | else | |
482 | printf_filtered ("Address "); | |
483 | } | |
c5aa993b JM |
484 | printf_filtered ("PassC StepC What\n"); |
485 | } | |
486 | strcpy (wrap_indent, " "); | |
79a45b7d | 487 | if (opts.addressprint) |
75ac9d7b | 488 | { |
17a912b6 | 489 | if (gdbarch_addr_bit (current_gdbarch) <= 32) |
75ac9d7b MS |
490 | strcat (wrap_indent, " "); |
491 | else | |
492 | strcat (wrap_indent, " "); | |
493 | } | |
c5aa993b JM |
494 | |
495 | printf_filtered ("%-3d %-3s ", t->number, | |
b5de0fa7 | 496 | t->enabled_p ? "y" : "n"); |
79a45b7d | 497 | if (opts.addressprint) |
75ac9d7b MS |
498 | { |
499 | char *tmp; | |
500 | ||
17a912b6 | 501 | if (gdbarch_addr_bit (current_gdbarch) <= 32) |
bb599908 PH |
502 | tmp = hex_string_custom (t->address & (CORE_ADDR) 0xffffffff, |
503 | 8); | |
75ac9d7b | 504 | else |
bb599908 | 505 | tmp = hex_string_custom (t->address, 16); |
75ac9d7b MS |
506 | |
507 | printf_filtered ("%s ", tmp); | |
508 | } | |
c4093a6a | 509 | printf_filtered ("%-5d %-5ld ", t->pass_count, t->step_count); |
c5aa993b JM |
510 | |
511 | if (t->source_file) | |
512 | { | |
513 | sym = find_pc_sect_function (t->address, t->section); | |
514 | if (sym) | |
515 | { | |
516 | fputs_filtered ("in ", gdb_stdout); | |
de5ad195 | 517 | fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout); |
c5aa993b JM |
518 | wrap_here (wrap_indent); |
519 | fputs_filtered (" at ", gdb_stdout); | |
520 | } | |
521 | fputs_filtered (t->source_file, gdb_stdout); | |
522 | printf_filtered (":%d", t->line_number); | |
523 | } | |
524 | else | |
525 | print_address_symbolic (t->address, gdb_stdout, demangle, " "); | |
c906108c | 526 | |
c5aa993b JM |
527 | printf_filtered ("\n"); |
528 | if (t->actions) | |
529 | { | |
530 | printf_filtered (" Actions for tracepoint %d: \n", t->number); | |
531 | for (action = t->actions; action; action = action->next) | |
532 | { | |
533 | printf_filtered ("\t%s\n", action->action); | |
534 | } | |
535 | } | |
536 | } | |
c906108c SS |
537 | if (!found_a_tracepoint) |
538 | { | |
539 | if (tpnum == -1) | |
c5aa993b | 540 | printf_filtered ("No tracepoints.\n"); |
c906108c | 541 | else |
c5aa993b | 542 | printf_filtered ("No tracepoint number %d.\n", tpnum); |
c906108c SS |
543 | } |
544 | } | |
545 | ||
d183932d MS |
546 | /* Optimization: the code to parse an enable, disable, or delete TP |
547 | command is virtually identical except for whether it performs an | |
548 | enable, disable, or delete. Therefore I've combined them into one | |
549 | function with an opcode. */ | |
c5aa993b | 550 | enum tracepoint_opcode |
c906108c | 551 | { |
104c1213 JM |
552 | enable_op, |
553 | disable_op, | |
554 | delete_op | |
c906108c SS |
555 | }; |
556 | ||
d183932d | 557 | /* This function implements enable, disable and delete commands. */ |
c906108c | 558 | static void |
fba45db2 KB |
559 | tracepoint_operation (struct tracepoint *t, int from_tty, |
560 | enum tracepoint_opcode opcode) | |
c906108c SS |
561 | { |
562 | struct tracepoint *t2; | |
563 | ||
5c44784c JM |
564 | if (t == NULL) /* no tracepoint operand */ |
565 | return; | |
566 | ||
c5aa993b JM |
567 | switch (opcode) |
568 | { | |
104c1213 | 569 | case enable_op: |
b5de0fa7 | 570 | t->enabled_p = 1; |
383f836e | 571 | observer_notify_tracepoint_modified (t->number); |
c5aa993b | 572 | break; |
104c1213 | 573 | case disable_op: |
b5de0fa7 | 574 | t->enabled_p = 0; |
383f836e | 575 | observer_notify_tracepoint_modified (t->number); |
c5aa993b | 576 | break; |
104c1213 | 577 | case delete_op: |
c5aa993b JM |
578 | if (tracepoint_chain == t) |
579 | tracepoint_chain = t->next; | |
c906108c | 580 | |
c5aa993b JM |
581 | ALL_TRACEPOINTS (t2) |
582 | if (t2->next == t) | |
c906108c SS |
583 | { |
584 | t2->next = t->next; | |
585 | break; | |
586 | } | |
587 | ||
383f836e | 588 | observer_notify_tracepoint_deleted (t->number); |
e3dd034f | 589 | |
c5aa993b | 590 | if (t->addr_string) |
b8c9b27d | 591 | xfree (t->addr_string); |
c5aa993b | 592 | if (t->source_file) |
b8c9b27d | 593 | xfree (t->source_file); |
c5aa993b JM |
594 | if (t->actions) |
595 | free_actions (t); | |
c906108c | 596 | |
b8c9b27d | 597 | xfree (t); |
c5aa993b JM |
598 | break; |
599 | } | |
c906108c SS |
600 | } |
601 | ||
5c44784c | 602 | /* Utility: parse a tracepoint number and look it up in the list. |
c2d11a7d JM |
603 | If MULTI_P is true, there might be a range of tracepoints in ARG. |
604 | if OPTIONAL_P is true, then if the argument is missing, the most | |
605 | recent tracepoint (tracepoint_count) is returned. */ | |
c906108c | 606 | struct tracepoint * |
fba45db2 | 607 | get_tracepoint_by_number (char **arg, int multi_p, int optional_p) |
c906108c SS |
608 | { |
609 | struct tracepoint *t; | |
c906108c | 610 | int tpnum; |
c2d11a7d | 611 | char *instring = arg == NULL ? NULL : *arg; |
c906108c | 612 | |
c2d11a7d JM |
613 | if (arg == NULL || *arg == NULL || ! **arg) |
614 | { | |
615 | if (optional_p) | |
616 | tpnum = tracepoint_count; | |
617 | else | |
e2e0b3e5 | 618 | error_no_arg (_("tracepoint number")); |
c2d11a7d JM |
619 | } |
620 | else | |
621 | tpnum = multi_p ? get_number_or_range (arg) : get_number (arg); | |
c906108c | 622 | |
5c44784c | 623 | if (tpnum <= 0) |
c906108c | 624 | { |
c2d11a7d | 625 | if (instring && *instring) |
d183932d MS |
626 | printf_filtered ("bad tracepoint number at or near '%s'\n", |
627 | instring); | |
c2d11a7d JM |
628 | else |
629 | printf_filtered ("Tracepoint argument missing and no previous tracepoint\n"); | |
5c44784c | 630 | return NULL; |
c906108c | 631 | } |
5c44784c | 632 | |
c906108c SS |
633 | ALL_TRACEPOINTS (t) |
634 | if (t->number == tpnum) | |
c5aa993b JM |
635 | { |
636 | return t; | |
637 | } | |
5c44784c JM |
638 | |
639 | /* FIXME: if we are in the middle of a range we don't want to give | |
640 | a message. The current interface to get_number_or_range doesn't | |
641 | allow us to discover this. */ | |
c906108c SS |
642 | printf_unfiltered ("No tracepoint number %d.\n", tpnum); |
643 | return NULL; | |
644 | } | |
645 | ||
d183932d MS |
646 | /* Utility: |
647 | parse a list of tracepoint numbers, and call a func for each. */ | |
c906108c | 648 | static void |
fba45db2 KB |
649 | map_args_over_tracepoints (char *args, int from_tty, |
650 | enum tracepoint_opcode opcode) | |
c906108c SS |
651 | { |
652 | struct tracepoint *t, *tmp; | |
c906108c SS |
653 | |
654 | if (args == 0 || *args == 0) /* do them all */ | |
655 | ALL_TRACEPOINTS_SAFE (t, tmp) | |
656 | tracepoint_operation (t, from_tty, opcode); | |
657 | else | |
658 | while (*args) | |
659 | { | |
d183932d | 660 | QUIT; /* Give user option to bail out with ^C. */ |
c2d11a7d | 661 | t = get_tracepoint_by_number (&args, 1, 0); |
5c44784c | 662 | tracepoint_operation (t, from_tty, opcode); |
c906108c SS |
663 | while (*args == ' ' || *args == '\t') |
664 | args++; | |
665 | } | |
666 | } | |
667 | ||
d183932d MS |
668 | /* The 'enable trace' command enables tracepoints. |
669 | Not supported by all targets. */ | |
c906108c | 670 | static void |
fba45db2 | 671 | enable_trace_command (char *args, int from_tty) |
c906108c SS |
672 | { |
673 | dont_repeat (); | |
104c1213 | 674 | map_args_over_tracepoints (args, from_tty, enable_op); |
c906108c SS |
675 | } |
676 | ||
d183932d MS |
677 | /* The 'disable trace' command disables tracepoints. |
678 | Not supported by all targets. */ | |
c906108c | 679 | static void |
fba45db2 | 680 | disable_trace_command (char *args, int from_tty) |
c906108c SS |
681 | { |
682 | dont_repeat (); | |
104c1213 | 683 | map_args_over_tracepoints (args, from_tty, disable_op); |
c906108c SS |
684 | } |
685 | ||
686 | /* Remove a tracepoint (or all if no argument) */ | |
687 | static void | |
fba45db2 | 688 | delete_trace_command (char *args, int from_tty) |
c906108c SS |
689 | { |
690 | dont_repeat (); | |
691 | if (!args || !*args) /* No args implies all tracepoints; */ | |
d183932d MS |
692 | if (from_tty) /* confirm only if from_tty... */ |
693 | if (tracepoint_chain) /* and if there are tracepoints to | |
694 | delete! */ | |
c906108c SS |
695 | if (!query ("Delete all tracepoints? ")) |
696 | return; | |
697 | ||
104c1213 | 698 | map_args_over_tracepoints (args, from_tty, delete_op); |
c906108c SS |
699 | } |
700 | ||
701 | /* Set passcount for tracepoint. | |
702 | ||
703 | First command argument is passcount, second is tracepoint number. | |
704 | If tracepoint number omitted, apply to most recently defined. | |
705 | Also accepts special argument "all". */ | |
706 | ||
707 | static void | |
fba45db2 | 708 | trace_pass_command (char *args, int from_tty) |
c906108c SS |
709 | { |
710 | struct tracepoint *t1 = (struct tracepoint *) -1, *t2; | |
104c1213 | 711 | unsigned int count; |
5c44784c | 712 | int all = 0; |
c906108c SS |
713 | |
714 | if (args == 0 || *args == 0) | |
8a3fe4f8 | 715 | error (_("passcount command requires an argument (count + optional TP num)")); |
c906108c | 716 | |
d183932d | 717 | count = strtoul (args, &args, 10); /* Count comes first, then TP num. */ |
c906108c | 718 | |
104c1213 | 719 | while (*args && isspace ((int) *args)) |
c906108c SS |
720 | args++; |
721 | ||
722 | if (*args && strncasecmp (args, "all", 3) == 0) | |
5c44784c | 723 | { |
d183932d | 724 | args += 3; /* Skip special argument "all". */ |
5c44784c JM |
725 | all = 1; |
726 | if (*args) | |
8a3fe4f8 | 727 | error (_("Junk at end of arguments.")); |
5c44784c | 728 | } |
c906108c | 729 | else |
c2d11a7d | 730 | t1 = get_tracepoint_by_number (&args, 1, 1); |
c906108c | 731 | |
5c44784c | 732 | do |
c5aa993b | 733 | { |
5c44784c JM |
734 | if (t1) |
735 | { | |
736 | ALL_TRACEPOINTS (t2) | |
737 | if (t1 == (struct tracepoint *) -1 || t1 == t2) | |
738 | { | |
739 | t2->pass_count = count; | |
383f836e | 740 | observer_notify_tracepoint_modified (t2->number); |
5c44784c JM |
741 | if (from_tty) |
742 | printf_filtered ("Setting tracepoint %d's passcount to %d\n", | |
743 | t2->number, count); | |
744 | } | |
c2d11a7d JM |
745 | if (! all && *args) |
746 | t1 = get_tracepoint_by_number (&args, 1, 0); | |
5c44784c | 747 | } |
c5aa993b | 748 | } |
5c44784c | 749 | while (*args); |
c906108c SS |
750 | } |
751 | ||
752 | /* ACTIONS functions: */ | |
753 | ||
754 | /* Prototypes for action-parsing utility commands */ | |
a14ed312 | 755 | static void read_actions (struct tracepoint *); |
c906108c SS |
756 | |
757 | /* The three functions: | |
c5aa993b JM |
758 | collect_pseudocommand, |
759 | while_stepping_pseudocommand, and | |
760 | end_actions_pseudocommand | |
c906108c SS |
761 | are placeholders for "commands" that are actually ONLY to be used |
762 | within a tracepoint action list. If the actual function is ever called, | |
763 | it means that somebody issued the "command" at the top level, | |
764 | which is always an error. */ | |
765 | ||
c5aa993b | 766 | static void |
fba45db2 | 767 | end_actions_pseudocommand (char *args, int from_tty) |
c906108c | 768 | { |
8a3fe4f8 | 769 | error (_("This command cannot be used at the top level.")); |
c906108c SS |
770 | } |
771 | ||
772 | static void | |
fba45db2 | 773 | while_stepping_pseudocommand (char *args, int from_tty) |
c906108c | 774 | { |
8a3fe4f8 | 775 | error (_("This command can only be used in a tracepoint actions list.")); |
c906108c SS |
776 | } |
777 | ||
778 | static void | |
fba45db2 | 779 | collect_pseudocommand (char *args, int from_tty) |
c906108c | 780 | { |
8a3fe4f8 | 781 | error (_("This command can only be used in a tracepoint actions list.")); |
c906108c SS |
782 | } |
783 | ||
784 | /* Enter a list of actions for a tracepoint. */ | |
785 | static void | |
fba45db2 | 786 | trace_actions_command (char *args, int from_tty) |
c906108c SS |
787 | { |
788 | struct tracepoint *t; | |
c906108c SS |
789 | char tmpbuf[128]; |
790 | char *end_msg = "End with a line saying just \"end\"."; | |
791 | ||
c2d11a7d | 792 | t = get_tracepoint_by_number (&args, 0, 1); |
7a292a7a | 793 | if (t) |
c906108c SS |
794 | { |
795 | sprintf (tmpbuf, "Enter actions for tracepoint %d, one per line.", | |
796 | t->number); | |
797 | ||
798 | if (from_tty) | |
799 | { | |
9a4105ab AC |
800 | if (deprecated_readline_begin_hook) |
801 | (*deprecated_readline_begin_hook) ("%s %s\n", tmpbuf, end_msg); | |
c906108c SS |
802 | else if (input_from_terminal_p ()) |
803 | printf_filtered ("%s\n%s\n", tmpbuf, end_msg); | |
804 | } | |
805 | ||
806 | free_actions (t); | |
807 | t->step_count = 0; /* read_actions may set this */ | |
808 | read_actions (t); | |
809 | ||
9a4105ab AC |
810 | if (deprecated_readline_end_hook) |
811 | (*deprecated_readline_end_hook) (); | |
c906108c SS |
812 | /* tracepoints_changed () */ |
813 | } | |
5c44784c | 814 | /* else just return */ |
c906108c SS |
815 | } |
816 | ||
817 | /* worker function */ | |
818 | static void | |
fba45db2 | 819 | read_actions (struct tracepoint *t) |
c906108c SS |
820 | { |
821 | char *line; | |
822 | char *prompt1 = "> ", *prompt2 = " > "; | |
823 | char *prompt = prompt1; | |
824 | enum actionline_type linetype; | |
825 | extern FILE *instream; | |
826 | struct action_line *next = NULL, *temp; | |
827 | struct cleanup *old_chain; | |
828 | ||
829 | /* Control-C quits instantly if typed while in this loop | |
830 | since it should not wait until the user types a newline. */ | |
831 | immediate_quit++; | |
1a6fae3c MK |
832 | /* FIXME: kettenis/20010823: Something is wrong here. In this file |
833 | STOP_SIGNAL is never defined. So this code has been left out, at | |
834 | least for quite a while now. Replacing STOP_SIGNAL with SIGTSTP | |
835 | leads to compilation failures since the variable job_control | |
836 | isn't declared. Leave this alone for now. */ | |
c906108c SS |
837 | #ifdef STOP_SIGNAL |
838 | if (job_control) | |
362646f5 | 839 | signal (STOP_SIGNAL, handle_stop_sig); |
c906108c | 840 | #endif |
74b7792f | 841 | old_chain = make_cleanup_free_actions (t); |
c906108c SS |
842 | while (1) |
843 | { | |
d183932d MS |
844 | /* Make sure that all output has been output. Some machines may |
845 | let you get away with leaving out some of the gdb_flush, but | |
846 | not all. */ | |
c906108c SS |
847 | wrap_here (""); |
848 | gdb_flush (gdb_stdout); | |
849 | gdb_flush (gdb_stderr); | |
850 | ||
9a4105ab AC |
851 | if (deprecated_readline_hook && instream == NULL) |
852 | line = (*deprecated_readline_hook) (prompt); | |
c906108c SS |
853 | else if (instream == stdin && ISATTY (instream)) |
854 | { | |
b4f5539f | 855 | line = gdb_readline_wrapper (prompt); |
c5aa993b | 856 | if (line && *line) /* add it to command history */ |
c906108c SS |
857 | add_history (line); |
858 | } | |
859 | else | |
860 | line = gdb_readline (0); | |
861 | ||
549678da | 862 | if (!line) |
d844e34b JB |
863 | { |
864 | line = xstrdup ("end"); | |
865 | printf_filtered ("end\n"); | |
866 | } | |
549678da | 867 | |
c906108c SS |
868 | linetype = validate_actionline (&line, t); |
869 | if (linetype == BADLINE) | |
c5aa993b | 870 | continue; /* already warned -- collect another line */ |
c906108c SS |
871 | |
872 | temp = xmalloc (sizeof (struct action_line)); | |
873 | temp->next = NULL; | |
874 | temp->action = line; | |
875 | ||
876 | if (next == NULL) /* first action for this tracepoint? */ | |
877 | t->actions = next = temp; | |
878 | else | |
879 | { | |
880 | next->next = temp; | |
881 | next = temp; | |
882 | } | |
883 | ||
884 | if (linetype == STEPPING) /* begin "while-stepping" */ | |
7a292a7a SS |
885 | { |
886 | if (prompt == prompt2) | |
887 | { | |
8a3fe4f8 | 888 | warning (_("Already processing 'while-stepping'")); |
7a292a7a SS |
889 | continue; |
890 | } | |
891 | else | |
892 | prompt = prompt2; /* change prompt for stepping actions */ | |
893 | } | |
c906108c | 894 | else if (linetype == END) |
7a292a7a SS |
895 | { |
896 | if (prompt == prompt2) | |
897 | { | |
898 | prompt = prompt1; /* end of single-stepping actions */ | |
899 | } | |
900 | else | |
c5aa993b | 901 | { /* end of actions */ |
7a292a7a SS |
902 | if (t->actions->next == NULL) |
903 | { | |
d183932d MS |
904 | /* An "end" all by itself with no other actions |
905 | means this tracepoint has no actions. | |
906 | Discard empty list. */ | |
7a292a7a SS |
907 | free_actions (t); |
908 | } | |
909 | break; | |
910 | } | |
911 | } | |
c906108c SS |
912 | } |
913 | #ifdef STOP_SIGNAL | |
914 | if (job_control) | |
915 | signal (STOP_SIGNAL, SIG_DFL); | |
916 | #endif | |
8edbea78 | 917 | immediate_quit--; |
c906108c SS |
918 | discard_cleanups (old_chain); |
919 | } | |
920 | ||
921 | /* worker function */ | |
922 | enum actionline_type | |
fba45db2 | 923 | validate_actionline (char **line, struct tracepoint *t) |
c906108c SS |
924 | { |
925 | struct cmd_list_element *c; | |
926 | struct expression *exp = NULL; | |
c906108c SS |
927 | struct cleanup *old_chain = NULL; |
928 | char *p; | |
929 | ||
15255275 MS |
930 | /* if EOF is typed, *line is NULL */ |
931 | if (*line == NULL) | |
932 | return END; | |
933 | ||
104c1213 | 934 | for (p = *line; isspace ((int) *p);) |
c906108c SS |
935 | p++; |
936 | ||
d183932d MS |
937 | /* Symbol lookup etc. */ |
938 | if (*p == '\0') /* empty line: just prompt for another line. */ | |
c906108c SS |
939 | return BADLINE; |
940 | ||
c5aa993b | 941 | if (*p == '#') /* comment line */ |
c906108c SS |
942 | return GENERIC; |
943 | ||
944 | c = lookup_cmd (&p, cmdlist, "", -1, 1); | |
945 | if (c == 0) | |
946 | { | |
8a3fe4f8 | 947 | warning (_("'%s' is not an action that I know, or is ambiguous."), |
d183932d | 948 | p); |
c906108c SS |
949 | return BADLINE; |
950 | } | |
c5aa993b | 951 | |
bbaca940 | 952 | if (cmd_cfunc_eq (c, collect_pseudocommand)) |
c906108c SS |
953 | { |
954 | struct agent_expr *aexpr; | |
955 | struct agent_reqs areqs; | |
956 | ||
c5aa993b JM |
957 | do |
958 | { /* repeat over a comma-separated list */ | |
959 | QUIT; /* allow user to bail out with ^C */ | |
104c1213 | 960 | while (isspace ((int) *p)) |
c5aa993b | 961 | p++; |
c906108c | 962 | |
c5aa993b JM |
963 | if (*p == '$') /* look for special pseudo-symbols */ |
964 | { | |
c5aa993b JM |
965 | if ((0 == strncasecmp ("reg", p + 1, 3)) || |
966 | (0 == strncasecmp ("arg", p + 1, 3)) || | |
967 | (0 == strncasecmp ("loc", p + 1, 3))) | |
968 | { | |
969 | p = strchr (p, ','); | |
970 | continue; | |
971 | } | |
d183932d | 972 | /* else fall thru, treat p as an expression and parse it! */ |
c5aa993b JM |
973 | } |
974 | exp = parse_exp_1 (&p, block_for_pc (t->address), 1); | |
c13c43fd | 975 | old_chain = make_cleanup (free_current_contents, &exp); |
c906108c | 976 | |
c5aa993b JM |
977 | if (exp->elts[0].opcode == OP_VAR_VALUE) |
978 | { | |
979 | if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_CONST) | |
980 | { | |
8a3fe4f8 | 981 | warning (_("constant %s (value %ld) will not be collected."), |
3567439c | 982 | SYMBOL_PRINT_NAME (exp->elts[2].symbol), |
c5aa993b JM |
983 | SYMBOL_VALUE (exp->elts[2].symbol)); |
984 | return BADLINE; | |
985 | } | |
986 | else if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_OPTIMIZED_OUT) | |
987 | { | |
8a3fe4f8 | 988 | warning (_("%s is optimized away and cannot be collected."), |
3567439c | 989 | SYMBOL_PRINT_NAME (exp->elts[2].symbol)); |
c5aa993b JM |
990 | return BADLINE; |
991 | } | |
992 | } | |
c906108c | 993 | |
d183932d MS |
994 | /* We have something to collect, make sure that the expr to |
995 | bytecode translator can handle it and that it's not too | |
996 | long. */ | |
c5aa993b | 997 | aexpr = gen_trace_for_expr (t->address, exp); |
f23d52e0 | 998 | make_cleanup_free_agent_expr (aexpr); |
c906108c | 999 | |
c5aa993b | 1000 | if (aexpr->len > MAX_AGENT_EXPR_LEN) |
8a3fe4f8 | 1001 | error (_("expression too complicated, try simplifying")); |
c906108c | 1002 | |
c5aa993b | 1003 | ax_reqs (aexpr, &areqs); |
b8c9b27d | 1004 | (void) make_cleanup (xfree, areqs.reg_mask); |
c906108c | 1005 | |
c5aa993b | 1006 | if (areqs.flaw != agent_flaw_none) |
8a3fe4f8 | 1007 | error (_("malformed expression")); |
c906108c | 1008 | |
c5aa993b | 1009 | if (areqs.min_height < 0) |
8a3fe4f8 | 1010 | error (_("gdb: Internal error: expression has min height < 0")); |
c906108c | 1011 | |
c5aa993b | 1012 | if (areqs.max_height > 20) |
8a3fe4f8 | 1013 | error (_("expression too complicated, try simplifying")); |
c906108c | 1014 | |
c5aa993b JM |
1015 | do_cleanups (old_chain); |
1016 | } | |
1017 | while (p && *p++ == ','); | |
c906108c SS |
1018 | return GENERIC; |
1019 | } | |
bbaca940 | 1020 | else if (cmd_cfunc_eq (c, while_stepping_pseudocommand)) |
c906108c | 1021 | { |
c5aa993b | 1022 | char *steparg; /* in case warning is necessary */ |
c906108c | 1023 | |
104c1213 | 1024 | while (isspace ((int) *p)) |
c906108c SS |
1025 | p++; |
1026 | steparg = p; | |
1027 | ||
1028 | if (*p == '\0' || | |
1029 | (t->step_count = strtol (p, &p, 0)) == 0) | |
1030 | { | |
8a3fe4f8 | 1031 | warning (_("'%s': bad step-count; command ignored."), *line); |
c906108c SS |
1032 | return BADLINE; |
1033 | } | |
1034 | return STEPPING; | |
1035 | } | |
bbaca940 | 1036 | else if (cmd_cfunc_eq (c, end_actions_pseudocommand)) |
c906108c SS |
1037 | return END; |
1038 | else | |
1039 | { | |
8a3fe4f8 | 1040 | warning (_("'%s' is not a supported tracepoint action."), *line); |
c906108c SS |
1041 | return BADLINE; |
1042 | } | |
1043 | } | |
1044 | ||
1045 | /* worker function */ | |
c5aa993b | 1046 | void |
fba45db2 | 1047 | free_actions (struct tracepoint *t) |
c906108c SS |
1048 | { |
1049 | struct action_line *line, *next; | |
1050 | ||
1051 | for (line = t->actions; line; line = next) | |
1052 | { | |
1053 | next = line->next; | |
c5aa993b | 1054 | if (line->action) |
b8c9b27d KB |
1055 | xfree (line->action); |
1056 | xfree (line); | |
c906108c SS |
1057 | } |
1058 | t->actions = NULL; | |
1059 | } | |
1060 | ||
74b7792f AC |
1061 | static void |
1062 | do_free_actions_cleanup (void *t) | |
1063 | { | |
1064 | free_actions (t); | |
1065 | } | |
1066 | ||
1067 | static struct cleanup * | |
1068 | make_cleanup_free_actions (struct tracepoint *t) | |
1069 | { | |
1070 | return make_cleanup (do_free_actions_cleanup, t); | |
1071 | } | |
1072 | ||
f50e79a4 JB |
1073 | enum { |
1074 | memrange_absolute = -1 | |
1075 | }; | |
1076 | ||
c5aa993b JM |
1077 | struct memrange |
1078 | { | |
f50e79a4 JB |
1079 | int type; /* memrange_absolute for absolute memory range, |
1080 | else basereg number */ | |
c906108c SS |
1081 | bfd_signed_vma start; |
1082 | bfd_signed_vma end; | |
1083 | }; | |
1084 | ||
c5aa993b JM |
1085 | struct collection_list |
1086 | { | |
549678da | 1087 | unsigned char regs_mask[32]; /* room for up to 256 regs */ |
c5aa993b JM |
1088 | long listsize; |
1089 | long next_memrange; | |
1090 | struct memrange *list; | |
1091 | long aexpr_listsize; /* size of array pointed to by expr_list elt */ | |
1092 | long next_aexpr_elt; | |
1093 | struct agent_expr **aexpr_list; | |
1094 | ||
1095 | } | |
1096 | tracepoint_list, stepping_list; | |
c906108c SS |
1097 | |
1098 | /* MEMRANGE functions: */ | |
1099 | ||
a14ed312 | 1100 | static int memrange_cmp (const void *, const void *); |
c906108c SS |
1101 | |
1102 | /* compare memranges for qsort */ | |
1103 | static int | |
fba45db2 | 1104 | memrange_cmp (const void *va, const void *vb) |
c906108c SS |
1105 | { |
1106 | const struct memrange *a = va, *b = vb; | |
1107 | ||
1108 | if (a->type < b->type) | |
1109 | return -1; | |
1110 | if (a->type > b->type) | |
c5aa993b | 1111 | return 1; |
f50e79a4 | 1112 | if (a->type == memrange_absolute) |
c906108c | 1113 | { |
c5aa993b JM |
1114 | if ((bfd_vma) a->start < (bfd_vma) b->start) |
1115 | return -1; | |
1116 | if ((bfd_vma) a->start > (bfd_vma) b->start) | |
1117 | return 1; | |
c906108c SS |
1118 | } |
1119 | else | |
1120 | { | |
c5aa993b | 1121 | if (a->start < b->start) |
c906108c | 1122 | return -1; |
c5aa993b JM |
1123 | if (a->start > b->start) |
1124 | return 1; | |
c906108c SS |
1125 | } |
1126 | return 0; | |
1127 | } | |
1128 | ||
d183932d | 1129 | /* Sort the memrange list using qsort, and merge adjacent memranges. */ |
c906108c | 1130 | static void |
fba45db2 | 1131 | memrange_sortmerge (struct collection_list *memranges) |
c906108c SS |
1132 | { |
1133 | int a, b; | |
1134 | ||
c5aa993b | 1135 | qsort (memranges->list, memranges->next_memrange, |
c906108c SS |
1136 | sizeof (struct memrange), memrange_cmp); |
1137 | if (memranges->next_memrange > 0) | |
1138 | { | |
1139 | for (a = 0, b = 1; b < memranges->next_memrange; b++) | |
1140 | { | |
1141 | if (memranges->list[a].type == memranges->list[b].type && | |
c5aa993b | 1142 | memranges->list[b].start - memranges->list[a].end <= |
0c92afe8 | 1143 | MAX_REGISTER_SIZE) |
c906108c SS |
1144 | { |
1145 | /* memrange b starts before memrange a ends; merge them. */ | |
1146 | if (memranges->list[b].end > memranges->list[a].end) | |
1147 | memranges->list[a].end = memranges->list[b].end; | |
1148 | continue; /* next b, same a */ | |
1149 | } | |
1150 | a++; /* next a */ | |
1151 | if (a != b) | |
c5aa993b | 1152 | memcpy (&memranges->list[a], &memranges->list[b], |
c906108c SS |
1153 | sizeof (struct memrange)); |
1154 | } | |
1155 | memranges->next_memrange = a + 1; | |
1156 | } | |
1157 | } | |
1158 | ||
d183932d | 1159 | /* Add a register to a collection list. */ |
392a587b | 1160 | static void |
fba45db2 | 1161 | add_register (struct collection_list *collection, unsigned int regno) |
c906108c SS |
1162 | { |
1163 | if (info_verbose) | |
1164 | printf_filtered ("collect register %d\n", regno); | |
27e06d3e | 1165 | if (regno >= (8 * sizeof (collection->regs_mask))) |
8a3fe4f8 | 1166 | error (_("Internal: register number %d too large for tracepoint"), |
c906108c | 1167 | regno); |
c5aa993b | 1168 | collection->regs_mask[regno / 8] |= 1 << (regno % 8); |
c906108c SS |
1169 | } |
1170 | ||
1171 | /* Add a memrange to a collection list */ | |
1172 | static void | |
d183932d MS |
1173 | add_memrange (struct collection_list *memranges, |
1174 | int type, bfd_signed_vma base, | |
fba45db2 | 1175 | unsigned long len) |
c906108c SS |
1176 | { |
1177 | if (info_verbose) | |
104c1213 JM |
1178 | { |
1179 | printf_filtered ("(%d,", type); | |
1180 | printf_vma (base); | |
1181 | printf_filtered (",%ld)\n", len); | |
1182 | } | |
1183 | ||
f50e79a4 | 1184 | /* type: memrange_absolute == memory, other n == basereg */ |
c5aa993b | 1185 | memranges->list[memranges->next_memrange].type = type; |
d183932d | 1186 | /* base: addr if memory, offset if reg relative. */ |
c906108c SS |
1187 | memranges->list[memranges->next_memrange].start = base; |
1188 | /* len: we actually save end (base + len) for convenience */ | |
c5aa993b | 1189 | memranges->list[memranges->next_memrange].end = base + len; |
c906108c SS |
1190 | memranges->next_memrange++; |
1191 | if (memranges->next_memrange >= memranges->listsize) | |
1192 | { | |
1193 | memranges->listsize *= 2; | |
c5aa993b | 1194 | memranges->list = xrealloc (memranges->list, |
c906108c SS |
1195 | memranges->listsize); |
1196 | } | |
1197 | ||
f50e79a4 | 1198 | if (type != memrange_absolute) /* Better collect the base register! */ |
c906108c SS |
1199 | add_register (memranges, type); |
1200 | } | |
1201 | ||
d183932d | 1202 | /* Add a symbol to a collection list. */ |
c906108c | 1203 | static void |
d183932d MS |
1204 | collect_symbol (struct collection_list *collect, |
1205 | struct symbol *sym, | |
fba45db2 | 1206 | long frame_regno, long frame_offset) |
c906108c | 1207 | { |
c5aa993b | 1208 | unsigned long len; |
104c1213 | 1209 | unsigned int reg; |
c906108c SS |
1210 | bfd_signed_vma offset; |
1211 | ||
c5aa993b JM |
1212 | len = TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym))); |
1213 | switch (SYMBOL_CLASS (sym)) | |
1214 | { | |
1215 | default: | |
1216 | printf_filtered ("%s: don't know symbol class %d\n", | |
3567439c | 1217 | SYMBOL_PRINT_NAME (sym), |
d183932d | 1218 | SYMBOL_CLASS (sym)); |
c5aa993b JM |
1219 | break; |
1220 | case LOC_CONST: | |
104c1213 | 1221 | printf_filtered ("constant %s (value %ld) will not be collected.\n", |
3567439c | 1222 | SYMBOL_PRINT_NAME (sym), SYMBOL_VALUE (sym)); |
c5aa993b JM |
1223 | break; |
1224 | case LOC_STATIC: | |
1225 | offset = SYMBOL_VALUE_ADDRESS (sym); | |
1226 | if (info_verbose) | |
104c1213 JM |
1227 | { |
1228 | char tmp[40]; | |
1229 | ||
1230 | sprintf_vma (tmp, offset); | |
1231 | printf_filtered ("LOC_STATIC %s: collect %ld bytes at %s.\n", | |
3567439c | 1232 | SYMBOL_PRINT_NAME (sym), len, |
d183932d | 1233 | tmp /* address */); |
104c1213 | 1234 | } |
f50e79a4 | 1235 | add_memrange (collect, memrange_absolute, offset, len); |
c5aa993b JM |
1236 | break; |
1237 | case LOC_REGISTER: | |
c5aa993b JM |
1238 | reg = SYMBOL_VALUE (sym); |
1239 | if (info_verbose) | |
d183932d | 1240 | printf_filtered ("LOC_REG[parm] %s: ", |
3567439c | 1241 | SYMBOL_PRINT_NAME (sym)); |
c5aa993b | 1242 | add_register (collect, reg); |
d183932d MS |
1243 | /* Check for doubles stored in two registers. */ |
1244 | /* FIXME: how about larger types stored in 3 or more regs? */ | |
c5aa993b | 1245 | if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FLT && |
3acba339 | 1246 | len > register_size (current_gdbarch, reg)) |
c5aa993b JM |
1247 | add_register (collect, reg + 1); |
1248 | break; | |
1249 | case LOC_REF_ARG: | |
1250 | printf_filtered ("Sorry, don't know how to do LOC_REF_ARG yet.\n"); | |
1251 | printf_filtered (" (will not collect %s)\n", | |
3567439c | 1252 | SYMBOL_PRINT_NAME (sym)); |
c5aa993b JM |
1253 | break; |
1254 | case LOC_ARG: | |
1255 | reg = frame_regno; | |
1256 | offset = frame_offset + SYMBOL_VALUE (sym); | |
1257 | if (info_verbose) | |
1258 | { | |
104c1213 | 1259 | printf_filtered ("LOC_LOCAL %s: Collect %ld bytes at offset ", |
3567439c | 1260 | SYMBOL_PRINT_NAME (sym), len); |
104c1213 JM |
1261 | printf_vma (offset); |
1262 | printf_filtered (" from frame ptr reg %d\n", reg); | |
c5aa993b JM |
1263 | } |
1264 | add_memrange (collect, reg, offset, len); | |
1265 | break; | |
1266 | case LOC_REGPARM_ADDR: | |
1267 | reg = SYMBOL_VALUE (sym); | |
1268 | offset = 0; | |
1269 | if (info_verbose) | |
1270 | { | |
104c1213 | 1271 | printf_filtered ("LOC_REGPARM_ADDR %s: Collect %ld bytes at offset ", |
3567439c | 1272 | SYMBOL_PRINT_NAME (sym), len); |
104c1213 JM |
1273 | printf_vma (offset); |
1274 | printf_filtered (" from reg %d\n", reg); | |
c5aa993b JM |
1275 | } |
1276 | add_memrange (collect, reg, offset, len); | |
1277 | break; | |
1278 | case LOC_LOCAL: | |
c5aa993b JM |
1279 | reg = frame_regno; |
1280 | offset = frame_offset + SYMBOL_VALUE (sym); | |
1281 | if (info_verbose) | |
1282 | { | |
104c1213 | 1283 | printf_filtered ("LOC_LOCAL %s: Collect %ld bytes at offset ", |
3567439c | 1284 | SYMBOL_PRINT_NAME (sym), len); |
104c1213 JM |
1285 | printf_vma (offset); |
1286 | printf_filtered (" from frame ptr reg %d\n", reg); | |
c5aa993b JM |
1287 | } |
1288 | add_memrange (collect, reg, offset, len); | |
1289 | break; | |
c5aa993b | 1290 | case LOC_UNRESOLVED: |
d183932d | 1291 | printf_filtered ("Don't know LOC_UNRESOLVED %s\n", |
3567439c | 1292 | SYMBOL_PRINT_NAME (sym)); |
c5aa993b JM |
1293 | break; |
1294 | case LOC_OPTIMIZED_OUT: | |
8e1a459b | 1295 | printf_filtered ("%s has been optimized out of existence.\n", |
3567439c | 1296 | SYMBOL_PRINT_NAME (sym)); |
c5aa993b JM |
1297 | break; |
1298 | } | |
c906108c SS |
1299 | } |
1300 | ||
1301 | /* Add all locals (or args) symbols to collection list */ | |
1302 | static void | |
fba45db2 KB |
1303 | add_local_symbols (struct collection_list *collect, CORE_ADDR pc, |
1304 | long frame_regno, long frame_offset, int type) | |
c906108c SS |
1305 | { |
1306 | struct symbol *sym; | |
c5aa993b | 1307 | struct block *block; |
de4f826b DC |
1308 | struct dict_iterator iter; |
1309 | int count = 0; | |
c906108c SS |
1310 | |
1311 | block = block_for_pc (pc); | |
1312 | while (block != 0) | |
1313 | { | |
c5aa993b | 1314 | QUIT; /* allow user to bail out with ^C */ |
de4f826b | 1315 | ALL_BLOCK_SYMBOLS (block, iter, sym) |
c906108c | 1316 | { |
2a2d4dc3 AS |
1317 | if (SYMBOL_IS_ARGUMENT (sym) |
1318 | ? type == 'A' /* collecting Arguments */ | |
1319 | : type == 'L') /* collecting Locals */ | |
c5aa993b | 1320 | { |
2a2d4dc3 AS |
1321 | count++; |
1322 | collect_symbol (collect, sym, frame_regno, | |
1323 | frame_offset); | |
c5aa993b | 1324 | } |
c906108c SS |
1325 | } |
1326 | if (BLOCK_FUNCTION (block)) | |
1327 | break; | |
1328 | else | |
1329 | block = BLOCK_SUPERBLOCK (block); | |
1330 | } | |
1331 | if (count == 0) | |
8a3fe4f8 | 1332 | warning (_("No %s found in scope."), |
d183932d | 1333 | type == 'L' ? "locals" : "args"); |
c906108c SS |
1334 | } |
1335 | ||
1336 | /* worker function */ | |
1337 | static void | |
fba45db2 | 1338 | clear_collection_list (struct collection_list *list) |
c906108c SS |
1339 | { |
1340 | int ndx; | |
1341 | ||
1342 | list->next_memrange = 0; | |
1343 | for (ndx = 0; ndx < list->next_aexpr_elt; ndx++) | |
1344 | { | |
c5aa993b | 1345 | free_agent_expr (list->aexpr_list[ndx]); |
c906108c SS |
1346 | list->aexpr_list[ndx] = NULL; |
1347 | } | |
1348 | list->next_aexpr_elt = 0; | |
1349 | memset (list->regs_mask, 0, sizeof (list->regs_mask)); | |
1350 | } | |
1351 | ||
1352 | /* reduce a collection list to string form (for gdb protocol) */ | |
1353 | static char ** | |
fba45db2 | 1354 | stringify_collection_list (struct collection_list *list, char *string) |
c906108c SS |
1355 | { |
1356 | char temp_buf[2048]; | |
104c1213 | 1357 | char tmp2[40]; |
c906108c SS |
1358 | int count; |
1359 | int ndx = 0; | |
1360 | char *(*str_list)[]; | |
1361 | char *end; | |
c5aa993b | 1362 | long i; |
c906108c SS |
1363 | |
1364 | count = 1 + list->next_memrange + list->next_aexpr_elt + 1; | |
c5aa993b | 1365 | str_list = (char *(*)[]) xmalloc (count * sizeof (char *)); |
c906108c SS |
1366 | |
1367 | for (i = sizeof (list->regs_mask) - 1; i > 0; i--) | |
1368 | if (list->regs_mask[i] != 0) /* skip leading zeroes in regs_mask */ | |
1369 | break; | |
1370 | if (list->regs_mask[i] != 0) /* prepare to send regs_mask to the stub */ | |
1371 | { | |
1372 | if (info_verbose) | |
1373 | printf_filtered ("\nCollecting registers (mask): 0x"); | |
1374 | end = temp_buf; | |
c5aa993b | 1375 | *end++ = 'R'; |
c906108c SS |
1376 | for (; i >= 0; i--) |
1377 | { | |
c5aa993b | 1378 | QUIT; /* allow user to bail out with ^C */ |
c906108c SS |
1379 | if (info_verbose) |
1380 | printf_filtered ("%02X", list->regs_mask[i]); | |
c5aa993b | 1381 | sprintf (end, "%02X", list->regs_mask[i]); |
c906108c SS |
1382 | end += 2; |
1383 | } | |
c5aa993b | 1384 | (*str_list)[ndx] = savestring (temp_buf, end - temp_buf); |
c906108c SS |
1385 | ndx++; |
1386 | } | |
1387 | if (info_verbose) | |
1388 | printf_filtered ("\n"); | |
1389 | if (list->next_memrange > 0 && info_verbose) | |
1390 | printf_filtered ("Collecting memranges: \n"); | |
1391 | for (i = 0, count = 0, end = temp_buf; i < list->next_memrange; i++) | |
1392 | { | |
1393 | QUIT; /* allow user to bail out with ^C */ | |
104c1213 | 1394 | sprintf_vma (tmp2, list->list[i].start); |
c906108c | 1395 | if (info_verbose) |
104c1213 JM |
1396 | { |
1397 | printf_filtered ("(%d, %s, %ld)\n", | |
1398 | list->list[i].type, | |
1399 | tmp2, | |
1400 | (long) (list->list[i].end - list->list[i].start)); | |
1401 | } | |
c906108c SS |
1402 | if (count + 27 > MAX_AGENT_EXPR_LEN) |
1403 | { | |
c5aa993b | 1404 | (*str_list)[ndx] = savestring (temp_buf, count); |
c906108c SS |
1405 | ndx++; |
1406 | count = 0; | |
1407 | end = temp_buf; | |
1408 | } | |
104c1213 | 1409 | |
d1948716 JB |
1410 | { |
1411 | bfd_signed_vma length = list->list[i].end - list->list[i].start; | |
1412 | ||
1413 | /* The "%X" conversion specifier expects an unsigned argument, | |
f50e79a4 JB |
1414 | so passing -1 (memrange_absolute) to it directly gives you |
1415 | "FFFFFFFF" (or more, depending on sizeof (unsigned)). | |
1416 | Special-case it. */ | |
1417 | if (list->list[i].type == memrange_absolute) | |
d1948716 JB |
1418 | sprintf (end, "M-1,%s,%lX", tmp2, (long) length); |
1419 | else | |
1420 | sprintf (end, "M%X,%s,%lX", list->list[i].type, tmp2, (long) length); | |
1421 | } | |
104c1213 | 1422 | |
c906108c | 1423 | count += strlen (end); |
3ffbc0a5 | 1424 | end = temp_buf + count; |
c906108c SS |
1425 | } |
1426 | ||
1427 | for (i = 0; i < list->next_aexpr_elt; i++) | |
1428 | { | |
1429 | QUIT; /* allow user to bail out with ^C */ | |
1430 | if ((count + 10 + 2 * list->aexpr_list[i]->len) > MAX_AGENT_EXPR_LEN) | |
1431 | { | |
c5aa993b | 1432 | (*str_list)[ndx] = savestring (temp_buf, count); |
c906108c SS |
1433 | ndx++; |
1434 | count = 0; | |
1435 | end = temp_buf; | |
1436 | } | |
1437 | sprintf (end, "X%08X,", list->aexpr_list[i]->len); | |
1438 | end += 10; /* 'X' + 8 hex digits + ',' */ | |
1439 | count += 10; | |
1440 | ||
d183932d MS |
1441 | end = mem2hex (list->aexpr_list[i]->buf, |
1442 | end, list->aexpr_list[i]->len); | |
c906108c SS |
1443 | count += 2 * list->aexpr_list[i]->len; |
1444 | } | |
1445 | ||
1446 | if (count != 0) | |
1447 | { | |
c5aa993b | 1448 | (*str_list)[ndx] = savestring (temp_buf, count); |
c906108c SS |
1449 | ndx++; |
1450 | count = 0; | |
1451 | end = temp_buf; | |
1452 | } | |
1453 | (*str_list)[ndx] = NULL; | |
1454 | ||
1455 | if (ndx == 0) | |
27e06d3e | 1456 | { |
6c761d9c | 1457 | xfree (str_list); |
27e06d3e MS |
1458 | return NULL; |
1459 | } | |
c906108c SS |
1460 | else |
1461 | return *str_list; | |
1462 | } | |
1463 | ||
392a587b | 1464 | static void |
fba45db2 | 1465 | free_actions_list_cleanup_wrapper (void *al) |
392a587b JM |
1466 | { |
1467 | free_actions_list (al); | |
1468 | } | |
1469 | ||
1470 | static void | |
fba45db2 | 1471 | free_actions_list (char **actions_list) |
c906108c SS |
1472 | { |
1473 | int ndx; | |
1474 | ||
1475 | if (actions_list == 0) | |
1476 | return; | |
1477 | ||
1478 | for (ndx = 0; actions_list[ndx]; ndx++) | |
b8c9b27d | 1479 | xfree (actions_list[ndx]); |
c906108c | 1480 | |
b8c9b27d | 1481 | xfree (actions_list); |
c906108c SS |
1482 | } |
1483 | ||
d183932d | 1484 | /* Render all actions into gdb protocol. */ |
c906108c | 1485 | static void |
fba45db2 KB |
1486 | encode_actions (struct tracepoint *t, char ***tdp_actions, |
1487 | char ***stepping_actions) | |
c906108c | 1488 | { |
c5aa993b JM |
1489 | static char tdp_buff[2048], step_buff[2048]; |
1490 | char *action_exp; | |
1491 | struct expression *exp = NULL; | |
c906108c | 1492 | struct action_line *action; |
104c1213 | 1493 | int i; |
f976f6d4 | 1494 | struct value *tempval; |
c5aa993b | 1495 | struct collection_list *collect; |
c906108c SS |
1496 | struct cmd_list_element *cmd; |
1497 | struct agent_expr *aexpr; | |
39d4ef09 AC |
1498 | int frame_reg; |
1499 | LONGEST frame_offset; | |
c906108c SS |
1500 | |
1501 | ||
1502 | clear_collection_list (&tracepoint_list); | |
1503 | clear_collection_list (&stepping_list); | |
1504 | collect = &tracepoint_list; | |
1505 | ||
1506 | *tdp_actions = NULL; | |
1507 | *stepping_actions = NULL; | |
1508 | ||
c7bb205c UW |
1509 | gdbarch_virtual_frame_pointer (current_gdbarch, |
1510 | t->address, &frame_reg, &frame_offset); | |
c906108c SS |
1511 | |
1512 | for (action = t->actions; action; action = action->next) | |
1513 | { | |
1514 | QUIT; /* allow user to bail out with ^C */ | |
1515 | action_exp = action->action; | |
104c1213 | 1516 | while (isspace ((int) *action_exp)) |
c906108c SS |
1517 | action_exp++; |
1518 | ||
1519 | if (*action_exp == '#') /* comment line */ | |
1520 | return; | |
1521 | ||
1522 | cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1); | |
1523 | if (cmd == 0) | |
8a3fe4f8 | 1524 | error (_("Bad action list item: %s"), action_exp); |
c906108c | 1525 | |
bbaca940 | 1526 | if (cmd_cfunc_eq (cmd, collect_pseudocommand)) |
c906108c | 1527 | { |
c5aa993b JM |
1528 | do |
1529 | { /* repeat over a comma-separated list */ | |
1530 | QUIT; /* allow user to bail out with ^C */ | |
104c1213 | 1531 | while (isspace ((int) *action_exp)) |
c5aa993b | 1532 | action_exp++; |
c906108c | 1533 | |
c5aa993b JM |
1534 | if (0 == strncasecmp ("$reg", action_exp, 4)) |
1535 | { | |
f57d151a | 1536 | for (i = 0; i < gdbarch_num_regs (current_gdbarch); i++) |
c5aa993b JM |
1537 | add_register (collect, i); |
1538 | action_exp = strchr (action_exp, ','); /* more? */ | |
1539 | } | |
1540 | else if (0 == strncasecmp ("$arg", action_exp, 4)) | |
1541 | { | |
1542 | add_local_symbols (collect, | |
1543 | t->address, | |
1544 | frame_reg, | |
1545 | frame_offset, | |
1546 | 'A'); | |
1547 | action_exp = strchr (action_exp, ','); /* more? */ | |
1548 | } | |
1549 | else if (0 == strncasecmp ("$loc", action_exp, 4)) | |
1550 | { | |
1551 | add_local_symbols (collect, | |
1552 | t->address, | |
1553 | frame_reg, | |
1554 | frame_offset, | |
1555 | 'L'); | |
1556 | action_exp = strchr (action_exp, ','); /* more? */ | |
1557 | } | |
1558 | else | |
1559 | { | |
1560 | unsigned long addr, len; | |
1561 | struct cleanup *old_chain = NULL; | |
1562 | struct cleanup *old_chain1 = NULL; | |
1563 | struct agent_reqs areqs; | |
1564 | ||
75ac9d7b MS |
1565 | exp = parse_exp_1 (&action_exp, |
1566 | block_for_pc (t->address), 1); | |
74b7792f | 1567 | old_chain = make_cleanup (free_current_contents, &exp); |
c906108c | 1568 | |
c5aa993b JM |
1569 | switch (exp->elts[0].opcode) |
1570 | { | |
1571 | case OP_REGISTER: | |
67f3407f DJ |
1572 | { |
1573 | const char *name = &exp->elts[2].string; | |
1574 | ||
029a67e4 UW |
1575 | i = user_reg_map_name_to_regnum (current_gdbarch, |
1576 | name, strlen (name)); | |
67f3407f DJ |
1577 | if (i == -1) |
1578 | internal_error (__FILE__, __LINE__, | |
1579 | _("Register $%s not available"), | |
1580 | name); | |
1581 | if (info_verbose) | |
1582 | printf_filtered ("OP_REGISTER: "); | |
1583 | add_register (collect, i); | |
1584 | break; | |
1585 | } | |
c5aa993b JM |
1586 | |
1587 | case UNOP_MEMVAL: | |
1588 | /* safe because we know it's a simple expression */ | |
1589 | tempval = evaluate_expression (exp); | |
df407dfe | 1590 | addr = VALUE_ADDRESS (tempval) + value_offset (tempval); |
c5aa993b | 1591 | len = TYPE_LENGTH (check_typedef (exp->elts[1].type)); |
f50e79a4 | 1592 | add_memrange (collect, memrange_absolute, addr, len); |
c5aa993b JM |
1593 | break; |
1594 | ||
1595 | case OP_VAR_VALUE: | |
1596 | collect_symbol (collect, | |
1597 | exp->elts[2].symbol, | |
1598 | frame_reg, | |
1599 | frame_offset); | |
1600 | break; | |
1601 | ||
1602 | default: /* full-fledged expression */ | |
1603 | aexpr = gen_trace_for_expr (t->address, exp); | |
1604 | ||
f23d52e0 | 1605 | old_chain1 = make_cleanup_free_agent_expr (aexpr); |
c5aa993b JM |
1606 | |
1607 | ax_reqs (aexpr, &areqs); | |
1608 | if (areqs.flaw != agent_flaw_none) | |
8a3fe4f8 | 1609 | error (_("malformed expression")); |
c5aa993b JM |
1610 | |
1611 | if (areqs.min_height < 0) | |
8a3fe4f8 | 1612 | error (_("gdb: Internal error: expression has min height < 0")); |
c5aa993b | 1613 | if (areqs.max_height > 20) |
8a3fe4f8 | 1614 | error (_("expression too complicated, try simplifying")); |
c5aa993b JM |
1615 | |
1616 | discard_cleanups (old_chain1); | |
1617 | add_aexpr (collect, aexpr); | |
1618 | ||
1619 | /* take care of the registers */ | |
1620 | if (areqs.reg_mask_len > 0) | |
c906108c | 1621 | { |
c5aa993b JM |
1622 | int ndx1; |
1623 | int ndx2; | |
1624 | ||
1625 | for (ndx1 = 0; ndx1 < areqs.reg_mask_len; ndx1++) | |
c906108c | 1626 | { |
c5aa993b JM |
1627 | QUIT; /* allow user to bail out with ^C */ |
1628 | if (areqs.reg_mask[ndx1] != 0) | |
1629 | { | |
1630 | /* assume chars have 8 bits */ | |
1631 | for (ndx2 = 0; ndx2 < 8; ndx2++) | |
1632 | if (areqs.reg_mask[ndx1] & (1 << ndx2)) | |
1633 | /* it's used -- record it */ | |
d183932d MS |
1634 | add_register (collect, |
1635 | ndx1 * 8 + ndx2); | |
c5aa993b | 1636 | } |
c906108c SS |
1637 | } |
1638 | } | |
c5aa993b JM |
1639 | break; |
1640 | } /* switch */ | |
1641 | do_cleanups (old_chain); | |
1642 | } /* do */ | |
1643 | } | |
1644 | while (action_exp && *action_exp++ == ','); | |
1645 | } /* if */ | |
bbaca940 | 1646 | else if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand)) |
c906108c SS |
1647 | { |
1648 | collect = &stepping_list; | |
1649 | } | |
bbaca940 | 1650 | else if (cmd_cfunc_eq (cmd, end_actions_pseudocommand)) |
c906108c SS |
1651 | { |
1652 | if (collect == &stepping_list) /* end stepping actions */ | |
1653 | collect = &tracepoint_list; | |
1654 | else | |
c5aa993b | 1655 | break; /* end tracepoint actions */ |
c906108c | 1656 | } |
c5aa993b JM |
1657 | } /* for */ |
1658 | memrange_sortmerge (&tracepoint_list); | |
1659 | memrange_sortmerge (&stepping_list); | |
c906108c | 1660 | |
d183932d MS |
1661 | *tdp_actions = stringify_collection_list (&tracepoint_list, |
1662 | tdp_buff); | |
1663 | *stepping_actions = stringify_collection_list (&stepping_list, | |
1664 | step_buff); | |
c906108c SS |
1665 | } |
1666 | ||
1667 | static void | |
fba45db2 | 1668 | add_aexpr (struct collection_list *collect, struct agent_expr *aexpr) |
c906108c SS |
1669 | { |
1670 | if (collect->next_aexpr_elt >= collect->aexpr_listsize) | |
1671 | { | |
1672 | collect->aexpr_list = | |
1673 | xrealloc (collect->aexpr_list, | |
c5aa993b | 1674 | 2 * collect->aexpr_listsize * sizeof (struct agent_expr *)); |
c906108c SS |
1675 | collect->aexpr_listsize *= 2; |
1676 | } | |
1677 | collect->aexpr_list[collect->next_aexpr_elt] = aexpr; | |
1678 | collect->next_aexpr_elt++; | |
1679 | } | |
1680 | ||
6d820c5c DJ |
1681 | static char *target_buf; |
1682 | static long target_buf_size; | |
c906108c SS |
1683 | |
1684 | /* Set "transparent" memory ranges | |
1685 | ||
1686 | Allow trace mechanism to treat text-like sections | |
1687 | (and perhaps all read-only sections) transparently, | |
1688 | i.e. don't reject memory requests from these address ranges | |
1689 | just because they haven't been collected. */ | |
1690 | ||
1691 | static void | |
1692 | remote_set_transparent_ranges (void) | |
1693 | { | |
1694 | extern bfd *exec_bfd; | |
1695 | asection *s; | |
1696 | bfd_size_type size; | |
1697 | bfd_vma lma; | |
1698 | int anysecs = 0; | |
1699 | ||
1700 | if (!exec_bfd) | |
d183932d | 1701 | return; /* No information to give. */ |
c906108c SS |
1702 | |
1703 | strcpy (target_buf, "QTro"); | |
1704 | for (s = exec_bfd->sections; s; s = s->next) | |
1705 | { | |
104c1213 | 1706 | char tmp1[40], tmp2[40]; |
c906108c | 1707 | |
c5aa993b JM |
1708 | if ((s->flags & SEC_LOAD) == 0 || |
1709 | /* (s->flags & SEC_CODE) == 0 || */ | |
c906108c SS |
1710 | (s->flags & SEC_READONLY) == 0) |
1711 | continue; | |
1712 | ||
1713 | anysecs = 1; | |
c5aa993b | 1714 | lma = s->lma; |
2c500098 | 1715 | size = bfd_get_section_size (s); |
104c1213 JM |
1716 | sprintf_vma (tmp1, lma); |
1717 | sprintf_vma (tmp2, lma + size); | |
1718 | sprintf (target_buf + strlen (target_buf), | |
1719 | ":%s,%s", tmp1, tmp2); | |
c906108c SS |
1720 | } |
1721 | if (anysecs) | |
1722 | { | |
1723 | putpkt (target_buf); | |
6d820c5c | 1724 | getpkt (&target_buf, &target_buf_size, 0); |
c906108c SS |
1725 | } |
1726 | } | |
1727 | ||
1728 | /* tstart command: | |
c5aa993b | 1729 | |
c906108c SS |
1730 | Tell target to clear any previous trace experiment. |
1731 | Walk the list of tracepoints, and send them (and their actions) | |
1732 | to the target. If no errors, | |
1733 | Tell target to start a new trace experiment. */ | |
1734 | ||
1735 | static void | |
fba45db2 | 1736 | trace_start_command (char *args, int from_tty) |
d183932d | 1737 | { |
c906108c SS |
1738 | struct tracepoint *t; |
1739 | char buf[2048]; | |
1740 | char **tdp_actions; | |
1741 | char **stepping_actions; | |
1742 | int ndx; | |
1743 | struct cleanup *old_chain = NULL; | |
1744 | ||
d183932d | 1745 | dont_repeat (); /* Like "run", dangerous to repeat accidentally. */ |
c5aa993b | 1746 | |
c906108c SS |
1747 | if (target_is_remote ()) |
1748 | { | |
1749 | putpkt ("QTinit"); | |
6d820c5c | 1750 | remote_get_noisy_reply (&target_buf, &target_buf_size); |
c906108c | 1751 | if (strcmp (target_buf, "OK")) |
8a3fe4f8 | 1752 | error (_("Target does not support this command.")); |
c906108c SS |
1753 | |
1754 | ALL_TRACEPOINTS (t) | |
c5aa993b | 1755 | { |
104c1213 | 1756 | char tmp[40]; |
c906108c | 1757 | |
104c1213 | 1758 | sprintf_vma (tmp, t->address); |
d183932d MS |
1759 | sprintf (buf, "QTDP:%x:%s:%c:%lx:%x", t->number, |
1760 | tmp, /* address */ | |
b5de0fa7 | 1761 | t->enabled_p ? 'E' : 'D', |
c5aa993b JM |
1762 | t->step_count, t->pass_count); |
1763 | ||
1764 | if (t->actions) | |
1765 | strcat (buf, "-"); | |
1766 | putpkt (buf); | |
6d820c5c | 1767 | remote_get_noisy_reply (&target_buf, &target_buf_size); |
c5aa993b | 1768 | if (strcmp (target_buf, "OK")) |
8a3fe4f8 | 1769 | error (_("Target does not support tracepoints.")); |
c5aa993b JM |
1770 | |
1771 | if (t->actions) | |
1772 | { | |
1773 | encode_actions (t, &tdp_actions, &stepping_actions); | |
1774 | old_chain = make_cleanup (free_actions_list_cleanup_wrapper, | |
1775 | tdp_actions); | |
1776 | (void) make_cleanup (free_actions_list_cleanup_wrapper, | |
1777 | stepping_actions); | |
1778 | ||
1779 | /* do_single_steps (t); */ | |
1780 | if (tdp_actions) | |
1781 | { | |
1782 | for (ndx = 0; tdp_actions[ndx]; ndx++) | |
1783 | { | |
1784 | QUIT; /* allow user to bail out with ^C */ | |
104c1213 JM |
1785 | sprintf (buf, "QTDP:-%x:%s:%s%c", |
1786 | t->number, tmp, /* address */ | |
c5aa993b JM |
1787 | tdp_actions[ndx], |
1788 | ((tdp_actions[ndx + 1] || stepping_actions) | |
1789 | ? '-' : 0)); | |
1790 | putpkt (buf); | |
6d820c5c DJ |
1791 | remote_get_noisy_reply (&target_buf, |
1792 | &target_buf_size); | |
c5aa993b | 1793 | if (strcmp (target_buf, "OK")) |
8a3fe4f8 | 1794 | error (_("Error on target while setting tracepoints.")); |
c5aa993b JM |
1795 | } |
1796 | } | |
1797 | if (stepping_actions) | |
1798 | { | |
1799 | for (ndx = 0; stepping_actions[ndx]; ndx++) | |
1800 | { | |
1801 | QUIT; /* allow user to bail out with ^C */ | |
104c1213 JM |
1802 | sprintf (buf, "QTDP:-%x:%s:%s%s%s", |
1803 | t->number, tmp, /* address */ | |
c5aa993b JM |
1804 | ((ndx == 0) ? "S" : ""), |
1805 | stepping_actions[ndx], | |
1806 | (stepping_actions[ndx + 1] ? "-" : "")); | |
1807 | putpkt (buf); | |
6d820c5c DJ |
1808 | remote_get_noisy_reply (&target_buf, |
1809 | &target_buf_size); | |
c5aa993b | 1810 | if (strcmp (target_buf, "OK")) |
8a3fe4f8 | 1811 | error (_("Error on target while setting tracepoints.")); |
c5aa993b JM |
1812 | } |
1813 | } | |
1814 | ||
1815 | do_cleanups (old_chain); | |
1816 | } | |
1817 | } | |
d183932d | 1818 | /* Tell target to treat text-like sections as transparent. */ |
c906108c | 1819 | remote_set_transparent_ranges (); |
d183932d | 1820 | /* Now insert traps and begin collecting data. */ |
c906108c | 1821 | putpkt ("QTStart"); |
6d820c5c | 1822 | remote_get_noisy_reply (&target_buf, &target_buf_size); |
c906108c | 1823 | if (strcmp (target_buf, "OK")) |
8a3fe4f8 | 1824 | error (_("Bogus reply from target: %s"), target_buf); |
d183932d | 1825 | set_traceframe_num (-1); /* All old traceframes invalidated. */ |
c906108c | 1826 | set_tracepoint_num (-1); |
c5aa993b | 1827 | set_traceframe_context (-1); |
c906108c | 1828 | trace_running_p = 1; |
9a4105ab AC |
1829 | if (deprecated_trace_start_stop_hook) |
1830 | deprecated_trace_start_stop_hook (1, from_tty); | |
c5aa993b | 1831 | |
c906108c SS |
1832 | } |
1833 | else | |
8a3fe4f8 | 1834 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
1835 | } |
1836 | ||
1837 | /* tstop command */ | |
1838 | static void | |
fba45db2 | 1839 | trace_stop_command (char *args, int from_tty) |
d183932d | 1840 | { |
c906108c SS |
1841 | if (target_is_remote ()) |
1842 | { | |
1843 | putpkt ("QTStop"); | |
6d820c5c | 1844 | remote_get_noisy_reply (&target_buf, &target_buf_size); |
c906108c | 1845 | if (strcmp (target_buf, "OK")) |
8a3fe4f8 | 1846 | error (_("Bogus reply from target: %s"), target_buf); |
c906108c | 1847 | trace_running_p = 0; |
9a4105ab AC |
1848 | if (deprecated_trace_start_stop_hook) |
1849 | deprecated_trace_start_stop_hook (0, from_tty); | |
c906108c SS |
1850 | } |
1851 | else | |
8a3fe4f8 | 1852 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
1853 | } |
1854 | ||
1855 | unsigned long trace_running_p; | |
1856 | ||
1857 | /* tstatus command */ | |
1858 | static void | |
fba45db2 | 1859 | trace_status_command (char *args, int from_tty) |
d183932d | 1860 | { |
c906108c SS |
1861 | if (target_is_remote ()) |
1862 | { | |
1863 | putpkt ("qTStatus"); | |
6d820c5c | 1864 | remote_get_noisy_reply (&target_buf, &target_buf_size); |
c906108c SS |
1865 | |
1866 | if (target_buf[0] != 'T' || | |
1867 | (target_buf[1] != '0' && target_buf[1] != '1')) | |
8a3fe4f8 | 1868 | error (_("Bogus reply from target: %s"), target_buf); |
c906108c SS |
1869 | |
1870 | /* exported for use by the GUI */ | |
1871 | trace_running_p = (target_buf[1] == '1'); | |
1872 | } | |
1873 | else | |
8a3fe4f8 | 1874 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
1875 | } |
1876 | ||
d183932d | 1877 | /* Worker function for the various flavors of the tfind command. */ |
c906108c | 1878 | static void |
6d820c5c DJ |
1879 | finish_tfind_command (char **msg, |
1880 | long *sizeof_msg, | |
c2d11a7d | 1881 | int from_tty) |
c906108c SS |
1882 | { |
1883 | int target_frameno = -1, target_tracept = -1; | |
1884 | CORE_ADDR old_frame_addr; | |
1885 | struct symbol *old_func; | |
1886 | char *reply; | |
1887 | ||
c193f6ac | 1888 | old_frame_addr = get_frame_base (get_current_frame ()); |
c5aa993b | 1889 | old_func = find_pc_function (read_pc ()); |
c906108c | 1890 | |
6d820c5c | 1891 | putpkt (*msg); |
c2d11a7d | 1892 | reply = remote_get_noisy_reply (msg, sizeof_msg); |
c906108c SS |
1893 | |
1894 | while (reply && *reply) | |
c5aa993b JM |
1895 | switch (*reply) |
1896 | { | |
1897 | case 'F': | |
1898 | if ((target_frameno = (int) strtol (++reply, &reply, 16)) == -1) | |
1899 | { | |
1900 | /* A request for a non-existant trace frame has failed. | |
1901 | Our response will be different, depending on FROM_TTY: | |
1902 | ||
1903 | If FROM_TTY is true, meaning that this command was | |
1904 | typed interactively by the user, then give an error | |
1905 | and DO NOT change the state of traceframe_number etc. | |
1906 | ||
1907 | However if FROM_TTY is false, meaning that we're either | |
1908 | in a script, a loop, or a user-defined command, then | |
1909 | DON'T give an error, but DO change the state of | |
1910 | traceframe_number etc. to invalid. | |
1911 | ||
1912 | The rationalle is that if you typed the command, you | |
1913 | might just have committed a typo or something, and you'd | |
1914 | like to NOT lose your current debugging state. However | |
1915 | if you're in a user-defined command or especially in a | |
1916 | loop, then you need a way to detect that the command | |
1917 | failed WITHOUT aborting. This allows you to write | |
1918 | scripts that search thru the trace buffer until the end, | |
1919 | and then continue on to do something else. */ | |
1920 | ||
1921 | if (from_tty) | |
8a3fe4f8 | 1922 | error (_("Target failed to find requested trace frame.")); |
c5aa993b JM |
1923 | else |
1924 | { | |
1925 | if (info_verbose) | |
1926 | printf_filtered ("End of trace buffer.\n"); | |
d183932d MS |
1927 | /* The following will not recurse, since it's |
1928 | special-cased. */ | |
c5aa993b | 1929 | trace_find_command ("-1", from_tty); |
d183932d MS |
1930 | reply = NULL; /* Break out of loop |
1931 | (avoid recursive nonsense). */ | |
c5aa993b JM |
1932 | } |
1933 | } | |
1934 | break; | |
1935 | case 'T': | |
1936 | if ((target_tracept = (int) strtol (++reply, &reply, 16)) == -1) | |
8a3fe4f8 | 1937 | error (_("Target failed to find requested trace frame.")); |
c5aa993b JM |
1938 | break; |
1939 | case 'O': /* "OK"? */ | |
1940 | if (reply[1] == 'K' && reply[2] == '\0') | |
1941 | reply += 2; | |
1942 | else | |
8a3fe4f8 | 1943 | error (_("Bogus reply from target: %s"), reply); |
c5aa993b JM |
1944 | break; |
1945 | default: | |
8a3fe4f8 | 1946 | error (_("Bogus reply from target: %s"), reply); |
c5aa993b | 1947 | } |
c906108c | 1948 | |
35f196d9 | 1949 | reinit_frame_cache (); |
c906108c | 1950 | registers_changed (); |
c906108c SS |
1951 | set_traceframe_num (target_frameno); |
1952 | set_tracepoint_num (target_tracept); | |
1953 | if (target_frameno == -1) | |
1954 | set_traceframe_context (-1); | |
1955 | else | |
1956 | set_traceframe_context (read_pc ()); | |
1957 | ||
1958 | if (from_tty) | |
1959 | { | |
0faf0076 | 1960 | enum print_what print_what; |
c906108c SS |
1961 | |
1962 | /* NOTE: in immitation of the step command, try to determine | |
d183932d MS |
1963 | whether we have made a transition from one function to |
1964 | another. If so, we'll print the "stack frame" (ie. the new | |
1965 | function and it's arguments) -- otherwise we'll just show the | |
1966 | new source line. | |
c5aa993b | 1967 | |
d183932d MS |
1968 | This determination is made by checking (1) whether the |
1969 | current function has changed, and (2) whether the current FP | |
1970 | has changed. Hack: if the FP wasn't collected, either at the | |
1971 | current or the previous frame, assume that the FP has NOT | |
1972 | changed. */ | |
c5aa993b JM |
1973 | |
1974 | if (old_func == find_pc_function (read_pc ()) && | |
1975 | (old_frame_addr == 0 || | |
c193f6ac AC |
1976 | get_frame_base (get_current_frame ()) == 0 || |
1977 | old_frame_addr == get_frame_base (get_current_frame ()))) | |
0faf0076 | 1978 | print_what = SRC_LINE; |
c906108c | 1979 | else |
0faf0076 | 1980 | print_what = SRC_AND_LOC; |
c906108c | 1981 | |
b04f3ab4 | 1982 | print_stack_frame (get_selected_frame (NULL), 1, print_what); |
c906108c SS |
1983 | do_displays (); |
1984 | } | |
1985 | } | |
1986 | ||
1987 | /* trace_find_command takes a trace frame number n, | |
1988 | sends "QTFrame:<n>" to the target, | |
1989 | and accepts a reply that may contain several optional pieces | |
1990 | of information: a frame number, a tracepoint number, and an | |
1991 | indication of whether this is a trap frame or a stepping frame. | |
1992 | ||
1993 | The minimal response is just "OK" (which indicates that the | |
1994 | target does not give us a frame number or a tracepoint number). | |
1995 | Instead of that, the target may send us a string containing | |
1996 | any combination of: | |
c5aa993b JM |
1997 | F<hexnum> (gives the selected frame number) |
1998 | T<hexnum> (gives the selected tracepoint number) | |
1999 | */ | |
c906108c SS |
2000 | |
2001 | /* tfind command */ | |
2002 | static void | |
fba45db2 | 2003 | trace_find_command (char *args, int from_tty) |
d183932d | 2004 | { /* this should only be called with a numeric argument */ |
c906108c | 2005 | int frameno = -1; |
c906108c SS |
2006 | |
2007 | if (target_is_remote ()) | |
2008 | { | |
9a4105ab AC |
2009 | if (deprecated_trace_find_hook) |
2010 | deprecated_trace_find_hook (args, from_tty); | |
c5aa993b | 2011 | |
c906108c | 2012 | if (args == 0 || *args == 0) |
d183932d | 2013 | { /* TFIND with no args means find NEXT trace frame. */ |
c906108c SS |
2014 | if (traceframe_number == -1) |
2015 | frameno = 0; /* "next" is first one */ | |
2016 | else | |
2017 | frameno = traceframe_number + 1; | |
2018 | } | |
2019 | else if (0 == strcmp (args, "-")) | |
2020 | { | |
2021 | if (traceframe_number == -1) | |
8a3fe4f8 | 2022 | error (_("not debugging trace buffer")); |
c906108c | 2023 | else if (from_tty && traceframe_number == 0) |
8a3fe4f8 | 2024 | error (_("already at start of trace buffer")); |
c906108c SS |
2025 | |
2026 | frameno = traceframe_number - 1; | |
2027 | } | |
2028 | else | |
bb518678 | 2029 | frameno = parse_and_eval_long (args); |
c906108c SS |
2030 | |
2031 | if (frameno < -1) | |
8a3fe4f8 | 2032 | error (_("invalid input (%d is less than zero)"), frameno); |
c906108c SS |
2033 | |
2034 | sprintf (target_buf, "QTFrame:%x", frameno); | |
6d820c5c | 2035 | finish_tfind_command (&target_buf, &target_buf_size, from_tty); |
c906108c SS |
2036 | } |
2037 | else | |
8a3fe4f8 | 2038 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2039 | } |
2040 | ||
2041 | /* tfind end */ | |
2042 | static void | |
fba45db2 | 2043 | trace_find_end_command (char *args, int from_tty) |
c906108c SS |
2044 | { |
2045 | trace_find_command ("-1", from_tty); | |
2046 | } | |
2047 | ||
2048 | /* tfind none */ | |
2049 | static void | |
fba45db2 | 2050 | trace_find_none_command (char *args, int from_tty) |
c906108c SS |
2051 | { |
2052 | trace_find_command ("-1", from_tty); | |
2053 | } | |
2054 | ||
2055 | /* tfind start */ | |
2056 | static void | |
fba45db2 | 2057 | trace_find_start_command (char *args, int from_tty) |
c906108c SS |
2058 | { |
2059 | trace_find_command ("0", from_tty); | |
2060 | } | |
2061 | ||
2062 | /* tfind pc command */ | |
2063 | static void | |
fba45db2 | 2064 | trace_find_pc_command (char *args, int from_tty) |
d183932d | 2065 | { |
c906108c | 2066 | CORE_ADDR pc; |
104c1213 | 2067 | char tmp[40]; |
c906108c SS |
2068 | |
2069 | if (target_is_remote ()) | |
2070 | { | |
2071 | if (args == 0 || *args == 0) | |
2072 | pc = read_pc (); /* default is current pc */ | |
2073 | else | |
2074 | pc = parse_and_eval_address (args); | |
2075 | ||
104c1213 JM |
2076 | sprintf_vma (tmp, pc); |
2077 | sprintf (target_buf, "QTFrame:pc:%s", tmp); | |
6d820c5c | 2078 | finish_tfind_command (&target_buf, &target_buf_size, from_tty); |
c906108c SS |
2079 | } |
2080 | else | |
8a3fe4f8 | 2081 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2082 | } |
2083 | ||
2084 | /* tfind tracepoint command */ | |
2085 | static void | |
fba45db2 | 2086 | trace_find_tracepoint_command (char *args, int from_tty) |
d183932d | 2087 | { |
c906108c | 2088 | int tdp; |
c906108c SS |
2089 | |
2090 | if (target_is_remote ()) | |
2091 | { | |
2092 | if (args == 0 || *args == 0) | |
3db26b01 JB |
2093 | { |
2094 | if (tracepoint_number == -1) | |
8a3fe4f8 | 2095 | error (_("No current tracepoint -- please supply an argument.")); |
3db26b01 JB |
2096 | else |
2097 | tdp = tracepoint_number; /* default is current TDP */ | |
2098 | } | |
c906108c | 2099 | else |
0e828ed1 | 2100 | tdp = parse_and_eval_long (args); |
c906108c SS |
2101 | |
2102 | sprintf (target_buf, "QTFrame:tdp:%x", tdp); | |
6d820c5c | 2103 | finish_tfind_command (&target_buf, &target_buf_size, from_tty); |
c906108c SS |
2104 | } |
2105 | else | |
8a3fe4f8 | 2106 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2107 | } |
2108 | ||
2109 | /* TFIND LINE command: | |
c5aa993b | 2110 | |
c906108c | 2111 | This command will take a sourceline for argument, just like BREAK |
d183932d | 2112 | or TRACE (ie. anything that "decode_line_1" can handle). |
c5aa993b | 2113 | |
c906108c SS |
2114 | With no argument, this command will find the next trace frame |
2115 | corresponding to a source line OTHER THAN THE CURRENT ONE. */ | |
2116 | ||
2117 | static void | |
fba45db2 | 2118 | trace_find_line_command (char *args, int from_tty) |
d183932d | 2119 | { |
c906108c SS |
2120 | static CORE_ADDR start_pc, end_pc; |
2121 | struct symtabs_and_lines sals; | |
2122 | struct symtab_and_line sal; | |
c906108c | 2123 | struct cleanup *old_chain; |
104c1213 | 2124 | char startpc_str[40], endpc_str[40]; |
c906108c SS |
2125 | |
2126 | if (target_is_remote ()) | |
2127 | { | |
2128 | if (args == 0 || *args == 0) | |
2129 | { | |
bdd78e62 | 2130 | sal = find_pc_line (get_frame_pc (get_current_frame ()), 0); |
c906108c SS |
2131 | sals.nelts = 1; |
2132 | sals.sals = (struct symtab_and_line *) | |
2133 | xmalloc (sizeof (struct symtab_and_line)); | |
2134 | sals.sals[0] = sal; | |
2135 | } | |
2136 | else | |
2137 | { | |
2138 | sals = decode_line_spec (args, 1); | |
c5aa993b | 2139 | sal = sals.sals[0]; |
c906108c SS |
2140 | } |
2141 | ||
b8c9b27d | 2142 | old_chain = make_cleanup (xfree, sals.sals); |
c906108c SS |
2143 | if (sal.symtab == 0) |
2144 | { | |
2145 | printf_filtered ("TFIND: No line number information available"); | |
2146 | if (sal.pc != 0) | |
2147 | { | |
d183932d MS |
2148 | /* This is useful for "info line *0x7f34". If we can't |
2149 | tell the user about a source line, at least let them | |
2150 | have the symbolic address. */ | |
c906108c SS |
2151 | printf_filtered (" for address "); |
2152 | wrap_here (" "); | |
2153 | print_address (sal.pc, gdb_stdout); | |
2154 | printf_filtered (";\n -- will attempt to find by PC. \n"); | |
2155 | } | |
2156 | else | |
2157 | { | |
2158 | printf_filtered (".\n"); | |
d183932d | 2159 | return; /* No line, no PC; what can we do? */ |
c906108c SS |
2160 | } |
2161 | } | |
2162 | else if (sal.line > 0 | |
2163 | && find_line_pc_range (sal, &start_pc, &end_pc)) | |
2164 | { | |
2165 | if (start_pc == end_pc) | |
2166 | { | |
2167 | printf_filtered ("Line %d of \"%s\"", | |
2168 | sal.line, sal.symtab->filename); | |
2169 | wrap_here (" "); | |
2170 | printf_filtered (" is at address "); | |
2171 | print_address (start_pc, gdb_stdout); | |
2172 | wrap_here (" "); | |
2173 | printf_filtered (" but contains no code.\n"); | |
2174 | sal = find_pc_line (start_pc, 0); | |
2175 | if (sal.line > 0 && | |
2176 | find_line_pc_range (sal, &start_pc, &end_pc) && | |
2177 | start_pc != end_pc) | |
2178 | printf_filtered ("Attempting to find line %d instead.\n", | |
2179 | sal.line); | |
2180 | else | |
8a3fe4f8 | 2181 | error (_("Cannot find a good line.")); |
c906108c SS |
2182 | } |
2183 | } | |
2184 | else | |
2185 | /* Is there any case in which we get here, and have an address | |
d183932d MS |
2186 | which the user would want to see? If we have debugging |
2187 | symbols and no line numbers? */ | |
8a3fe4f8 | 2188 | error (_("Line number %d is out of range for \"%s\"."), |
c906108c SS |
2189 | sal.line, sal.symtab->filename); |
2190 | ||
104c1213 JM |
2191 | sprintf_vma (startpc_str, start_pc); |
2192 | sprintf_vma (endpc_str, end_pc - 1); | |
d183932d MS |
2193 | /* Find within range of stated line. */ |
2194 | if (args && *args) | |
2195 | sprintf (target_buf, "QTFrame:range:%s:%s", | |
2196 | startpc_str, endpc_str); | |
2197 | /* Find OUTSIDE OF range of CURRENT line. */ | |
2198 | else | |
2199 | sprintf (target_buf, "QTFrame:outside:%s:%s", | |
2200 | startpc_str, endpc_str); | |
6d820c5c | 2201 | finish_tfind_command (&target_buf, &target_buf_size, |
d183932d | 2202 | from_tty); |
c906108c SS |
2203 | do_cleanups (old_chain); |
2204 | } | |
2205 | else | |
8a3fe4f8 | 2206 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2207 | } |
2208 | ||
2209 | /* tfind range command */ | |
2210 | static void | |
fba45db2 | 2211 | trace_find_range_command (char *args, int from_tty) |
104c1213 | 2212 | { |
c906108c | 2213 | static CORE_ADDR start, stop; |
104c1213 | 2214 | char start_str[40], stop_str[40]; |
c906108c SS |
2215 | char *tmp; |
2216 | ||
2217 | if (target_is_remote ()) | |
2218 | { | |
2219 | if (args == 0 || *args == 0) | |
d183932d | 2220 | { /* XXX FIXME: what should default behavior be? */ |
c906108c SS |
2221 | printf_filtered ("Usage: tfind range <startaddr>,<endaddr>\n"); |
2222 | return; | |
2223 | } | |
2224 | ||
c5aa993b | 2225 | if (0 != (tmp = strchr (args, ','))) |
c906108c SS |
2226 | { |
2227 | *tmp++ = '\0'; /* terminate start address */ | |
104c1213 | 2228 | while (isspace ((int) *tmp)) |
c906108c SS |
2229 | tmp++; |
2230 | start = parse_and_eval_address (args); | |
c5aa993b | 2231 | stop = parse_and_eval_address (tmp); |
c906108c SS |
2232 | } |
2233 | else | |
c5aa993b | 2234 | { /* no explicit end address? */ |
c906108c | 2235 | start = parse_and_eval_address (args); |
c5aa993b | 2236 | stop = start + 1; /* ??? */ |
c906108c SS |
2237 | } |
2238 | ||
104c1213 JM |
2239 | sprintf_vma (start_str, start); |
2240 | sprintf_vma (stop_str, stop); | |
2241 | sprintf (target_buf, "QTFrame:range:%s:%s", start_str, stop_str); | |
6d820c5c | 2242 | finish_tfind_command (&target_buf, &target_buf_size, from_tty); |
c906108c SS |
2243 | } |
2244 | else | |
8a3fe4f8 | 2245 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2246 | } |
2247 | ||
2248 | /* tfind outside command */ | |
2249 | static void | |
fba45db2 | 2250 | trace_find_outside_command (char *args, int from_tty) |
104c1213 | 2251 | { |
c906108c | 2252 | CORE_ADDR start, stop; |
104c1213 | 2253 | char start_str[40], stop_str[40]; |
c906108c SS |
2254 | char *tmp; |
2255 | ||
2256 | if (target_is_remote ()) | |
2257 | { | |
2258 | if (args == 0 || *args == 0) | |
d183932d | 2259 | { /* XXX FIXME: what should default behavior be? */ |
c906108c SS |
2260 | printf_filtered ("Usage: tfind outside <startaddr>,<endaddr>\n"); |
2261 | return; | |
2262 | } | |
2263 | ||
c5aa993b | 2264 | if (0 != (tmp = strchr (args, ','))) |
c906108c SS |
2265 | { |
2266 | *tmp++ = '\0'; /* terminate start address */ | |
104c1213 | 2267 | while (isspace ((int) *tmp)) |
c906108c SS |
2268 | tmp++; |
2269 | start = parse_and_eval_address (args); | |
c5aa993b | 2270 | stop = parse_and_eval_address (tmp); |
c906108c SS |
2271 | } |
2272 | else | |
c5aa993b | 2273 | { /* no explicit end address? */ |
c906108c | 2274 | start = parse_and_eval_address (args); |
c5aa993b | 2275 | stop = start + 1; /* ??? */ |
c906108c SS |
2276 | } |
2277 | ||
104c1213 JM |
2278 | sprintf_vma (start_str, start); |
2279 | sprintf_vma (stop_str, stop); | |
2280 | sprintf (target_buf, "QTFrame:outside:%s:%s", start_str, stop_str); | |
6d820c5c | 2281 | finish_tfind_command (&target_buf, &target_buf_size, from_tty); |
c906108c SS |
2282 | } |
2283 | else | |
8a3fe4f8 | 2284 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2285 | } |
2286 | ||
2287 | /* save-tracepoints command */ | |
2288 | static void | |
fba45db2 | 2289 | tracepoint_save_command (char *args, int from_tty) |
c906108c | 2290 | { |
c5aa993b | 2291 | struct tracepoint *tp; |
c906108c SS |
2292 | struct action_line *line; |
2293 | FILE *fp; | |
2294 | char *i1 = " ", *i2 = " "; | |
21c1c920 | 2295 | char *indent, *actionline, *pathname; |
104c1213 | 2296 | char tmp[40]; |
7c8a8b04 | 2297 | struct cleanup *cleanup; |
c906108c SS |
2298 | |
2299 | if (args == 0 || *args == 0) | |
712e3020 | 2300 | error (_("Argument required (file name in which to save tracepoints)")); |
c906108c SS |
2301 | |
2302 | if (tracepoint_chain == 0) | |
2303 | { | |
8a3fe4f8 | 2304 | warning (_("save-tracepoints: no tracepoints to save.")); |
c906108c SS |
2305 | return; |
2306 | } | |
2307 | ||
21c1c920 | 2308 | pathname = tilde_expand (args); |
7c8a8b04 | 2309 | cleanup = make_cleanup (xfree, pathname); |
21c1c920 | 2310 | if (!(fp = fopen (pathname, "w"))) |
8a3fe4f8 | 2311 | error (_("Unable to open file '%s' for saving tracepoints (%s)"), |
dc672865 | 2312 | args, safe_strerror (errno)); |
7c8a8b04 | 2313 | make_cleanup_fclose (fp); |
21c1c920 | 2314 | |
c906108c | 2315 | ALL_TRACEPOINTS (tp) |
c5aa993b JM |
2316 | { |
2317 | if (tp->addr_string) | |
2318 | fprintf (fp, "trace %s\n", tp->addr_string); | |
2319 | else | |
104c1213 JM |
2320 | { |
2321 | sprintf_vma (tmp, tp->address); | |
2322 | fprintf (fp, "trace *0x%s\n", tmp); | |
2323 | } | |
c906108c | 2324 | |
c5aa993b JM |
2325 | if (tp->pass_count) |
2326 | fprintf (fp, " passcount %d\n", tp->pass_count); | |
c906108c | 2327 | |
c5aa993b JM |
2328 | if (tp->actions) |
2329 | { | |
2330 | fprintf (fp, " actions\n"); | |
2331 | indent = i1; | |
2332 | for (line = tp->actions; line; line = line->next) | |
2333 | { | |
2334 | struct cmd_list_element *cmd; | |
c906108c | 2335 | |
c5aa993b JM |
2336 | QUIT; /* allow user to bail out with ^C */ |
2337 | actionline = line->action; | |
104c1213 | 2338 | while (isspace ((int) *actionline)) |
c5aa993b | 2339 | actionline++; |
c906108c | 2340 | |
c5aa993b JM |
2341 | fprintf (fp, "%s%s\n", indent, actionline); |
2342 | if (*actionline != '#') /* skip for comment lines */ | |
2343 | { | |
2344 | cmd = lookup_cmd (&actionline, cmdlist, "", -1, 1); | |
2345 | if (cmd == 0) | |
8a3fe4f8 | 2346 | error (_("Bad action list item: %s"), actionline); |
bbaca940 | 2347 | if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand)) |
c5aa993b | 2348 | indent = i2; |
bbaca940 | 2349 | else if (cmd_cfunc_eq (cmd, end_actions_pseudocommand)) |
c5aa993b JM |
2350 | indent = i1; |
2351 | } | |
2352 | } | |
2353 | } | |
2354 | } | |
7c8a8b04 | 2355 | do_cleanups (cleanup); |
c906108c SS |
2356 | if (from_tty) |
2357 | printf_filtered ("Tracepoints saved to file '%s'.\n", args); | |
2358 | return; | |
2359 | } | |
2360 | ||
2361 | /* info scope command: list the locals for a scope. */ | |
2362 | static void | |
fba45db2 | 2363 | scope_info (char *args, int from_tty) |
c906108c | 2364 | { |
c906108c SS |
2365 | struct symtabs_and_lines sals; |
2366 | struct symbol *sym; | |
2367 | struct minimal_symbol *msym; | |
2368 | struct block *block; | |
2369 | char **canonical, *symname, *save_args = args; | |
de4f826b DC |
2370 | struct dict_iterator iter; |
2371 | int j, count = 0; | |
c906108c SS |
2372 | |
2373 | if (args == 0 || *args == 0) | |
8a3fe4f8 | 2374 | error (_("requires an argument (function, line or *addr) to define a scope")); |
c906108c | 2375 | |
68219205 | 2376 | sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL); |
c906108c | 2377 | if (sals.nelts == 0) |
450bd37b | 2378 | return; /* presumably decode_line_1 has already warned */ |
c906108c SS |
2379 | |
2380 | /* Resolve line numbers to PC */ | |
2381 | resolve_sal_pc (&sals.sals[0]); | |
2382 | block = block_for_pc (sals.sals[0].pc); | |
2383 | ||
2384 | while (block != 0) | |
2385 | { | |
c5aa993b | 2386 | QUIT; /* allow user to bail out with ^C */ |
de4f826b | 2387 | ALL_BLOCK_SYMBOLS (block, iter, sym) |
c906108c | 2388 | { |
c5aa993b | 2389 | QUIT; /* allow user to bail out with ^C */ |
c906108c SS |
2390 | if (count == 0) |
2391 | printf_filtered ("Scope for %s:\n", save_args); | |
2392 | count++; | |
e88c90f2 | 2393 | |
3567439c | 2394 | symname = SYMBOL_PRINT_NAME (sym); |
c906108c | 2395 | if (symname == NULL || *symname == '\0') |
c5aa993b | 2396 | continue; /* probably botched, certainly useless */ |
c906108c SS |
2397 | |
2398 | printf_filtered ("Symbol %s is ", symname); | |
c5aa993b JM |
2399 | switch (SYMBOL_CLASS (sym)) |
2400 | { | |
2401 | default: | |
2402 | case LOC_UNDEF: /* messed up symbol? */ | |
2403 | printf_filtered ("a bogus symbol, class %d.\n", | |
2404 | SYMBOL_CLASS (sym)); | |
2405 | count--; /* don't count this one */ | |
2406 | continue; | |
2407 | case LOC_CONST: | |
104c1213 | 2408 | printf_filtered ("a constant with value %ld (0x%lx)", |
c5aa993b JM |
2409 | SYMBOL_VALUE (sym), SYMBOL_VALUE (sym)); |
2410 | break; | |
2411 | case LOC_CONST_BYTES: | |
2412 | printf_filtered ("constant bytes: "); | |
2413 | if (SYMBOL_TYPE (sym)) | |
2414 | for (j = 0; j < TYPE_LENGTH (SYMBOL_TYPE (sym)); j++) | |
2415 | fprintf_filtered (gdb_stdout, " %02x", | |
2416 | (unsigned) SYMBOL_VALUE_BYTES (sym)[j]); | |
2417 | break; | |
2418 | case LOC_STATIC: | |
2419 | printf_filtered ("in static storage at address "); | |
ed49a04f | 2420 | printf_filtered ("%s", paddress (SYMBOL_VALUE_ADDRESS (sym))); |
c5aa993b JM |
2421 | break; |
2422 | case LOC_REGISTER: | |
2a2d4dc3 AS |
2423 | if (SYMBOL_IS_ARGUMENT (sym)) |
2424 | printf_filtered ("an argument in register $%s", | |
2425 | gdbarch_register_name | |
2426 | (current_gdbarch, SYMBOL_VALUE (sym))); | |
2427 | else | |
2428 | printf_filtered ("a local variable in register $%s", | |
2429 | gdbarch_register_name | |
c9f4d572 | 2430 | (current_gdbarch, SYMBOL_VALUE (sym))); |
c5aa993b JM |
2431 | break; |
2432 | case LOC_ARG: | |
c5aa993b JM |
2433 | printf_filtered ("an argument at stack/frame offset %ld", |
2434 | SYMBOL_VALUE (sym)); | |
2435 | break; | |
2436 | case LOC_LOCAL: | |
2437 | printf_filtered ("a local variable at frame offset %ld", | |
2438 | SYMBOL_VALUE (sym)); | |
2439 | break; | |
2440 | case LOC_REF_ARG: | |
2441 | printf_filtered ("a reference argument at offset %ld", | |
2442 | SYMBOL_VALUE (sym)); | |
2443 | break; | |
c5aa993b JM |
2444 | case LOC_REGPARM_ADDR: |
2445 | printf_filtered ("the address of an argument, in register $%s", | |
c9f4d572 UW |
2446 | gdbarch_register_name |
2447 | (current_gdbarch, SYMBOL_VALUE (sym))); | |
c5aa993b JM |
2448 | break; |
2449 | case LOC_TYPEDEF: | |
2450 | printf_filtered ("a typedef.\n"); | |
2451 | continue; | |
2452 | case LOC_LABEL: | |
2453 | printf_filtered ("a label at address "); | |
ed49a04f | 2454 | printf_filtered ("%s", paddress (SYMBOL_VALUE_ADDRESS (sym))); |
c5aa993b JM |
2455 | break; |
2456 | case LOC_BLOCK: | |
2457 | printf_filtered ("a function at address "); | |
ed49a04f | 2458 | printf_filtered ("%s", paddress (BLOCK_START (SYMBOL_BLOCK_VALUE (sym)))); |
c5aa993b | 2459 | break; |
c5aa993b | 2460 | case LOC_UNRESOLVED: |
3567439c | 2461 | msym = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (sym), |
450bd37b | 2462 | NULL, NULL); |
c5aa993b JM |
2463 | if (msym == NULL) |
2464 | printf_filtered ("Unresolved Static"); | |
2465 | else | |
2466 | { | |
2467 | printf_filtered ("static storage at address "); | |
ed49a04f | 2468 | printf_filtered ("%s", paddress (SYMBOL_VALUE_ADDRESS (msym))); |
c5aa993b JM |
2469 | } |
2470 | break; | |
2471 | case LOC_OPTIMIZED_OUT: | |
2472 | printf_filtered ("optimized out.\n"); | |
2473 | continue; | |
450bd37b | 2474 | case LOC_COMPUTED: |
450bd37b MS |
2475 | SYMBOL_OPS (sym)->describe_location (sym, gdb_stdout); |
2476 | break; | |
c5aa993b | 2477 | } |
c906108c | 2478 | if (SYMBOL_TYPE (sym)) |
c5aa993b | 2479 | printf_filtered (", length %d.\n", |
450bd37b | 2480 | TYPE_LENGTH (check_typedef (SYMBOL_TYPE (sym)))); |
c906108c SS |
2481 | } |
2482 | if (BLOCK_FUNCTION (block)) | |
2483 | break; | |
2484 | else | |
2485 | block = BLOCK_SUPERBLOCK (block); | |
2486 | } | |
2487 | if (count <= 0) | |
2488 | printf_filtered ("Scope for %s contains no locals or arguments.\n", | |
2489 | save_args); | |
2490 | } | |
2491 | ||
2492 | /* worker function (cleanup) */ | |
2493 | static void | |
710b33bd | 2494 | replace_comma (void *data) |
c906108c | 2495 | { |
710b33bd | 2496 | char *comma = data; |
c906108c SS |
2497 | *comma = ','; |
2498 | } | |
2499 | ||
2500 | /* tdump command */ | |
2501 | static void | |
fba45db2 | 2502 | trace_dump_command (char *args, int from_tty) |
c906108c | 2503 | { |
515630c5 UW |
2504 | struct regcache *regcache; |
2505 | struct gdbarch *gdbarch; | |
c5aa993b | 2506 | struct tracepoint *t; |
c906108c | 2507 | struct action_line *action; |
c5aa993b JM |
2508 | char *action_exp, *next_comma; |
2509 | struct cleanup *old_cleanups; | |
2510 | int stepping_actions = 0; | |
2511 | int stepping_frame = 0; | |
c906108c SS |
2512 | |
2513 | if (!target_is_remote ()) | |
2514 | { | |
8a3fe4f8 | 2515 | error (_("Trace can only be run on remote targets.")); |
c906108c SS |
2516 | return; |
2517 | } | |
2518 | ||
2519 | if (tracepoint_number == -1) | |
2520 | { | |
8a3fe4f8 | 2521 | warning (_("No current trace frame.")); |
c906108c SS |
2522 | return; |
2523 | } | |
2524 | ||
2525 | ALL_TRACEPOINTS (t) | |
2526 | if (t->number == tracepoint_number) | |
c5aa993b | 2527 | break; |
c906108c SS |
2528 | |
2529 | if (t == NULL) | |
8a3fe4f8 | 2530 | error (_("No known tracepoint matches 'current' tracepoint #%d."), |
c906108c SS |
2531 | tracepoint_number); |
2532 | ||
2533 | old_cleanups = make_cleanup (null_cleanup, NULL); | |
2534 | ||
c5aa993b | 2535 | printf_filtered ("Data collected at tracepoint %d, trace frame %d:\n", |
c906108c SS |
2536 | tracepoint_number, traceframe_number); |
2537 | ||
2538 | /* The current frame is a trap frame if the frame PC is equal | |
2539 | to the tracepoint PC. If not, then the current frame was | |
2540 | collected during single-stepping. */ | |
2541 | ||
515630c5 UW |
2542 | regcache = get_current_regcache (); |
2543 | gdbarch = get_regcache_arch (regcache); | |
2544 | ||
2545 | stepping_frame = (t->address != (regcache_read_pc (regcache) | |
2546 | - gdbarch_decr_pc_after_break (gdbarch))); | |
c906108c SS |
2547 | |
2548 | for (action = t->actions; action; action = action->next) | |
2549 | { | |
2550 | struct cmd_list_element *cmd; | |
2551 | ||
c5aa993b | 2552 | QUIT; /* allow user to bail out with ^C */ |
c906108c | 2553 | action_exp = action->action; |
104c1213 | 2554 | while (isspace ((int) *action_exp)) |
c906108c SS |
2555 | action_exp++; |
2556 | ||
2557 | /* The collection actions to be done while stepping are | |
c5aa993b | 2558 | bracketed by the commands "while-stepping" and "end". */ |
c906108c SS |
2559 | |
2560 | if (*action_exp == '#') /* comment line */ | |
2561 | continue; | |
2562 | ||
2563 | cmd = lookup_cmd (&action_exp, cmdlist, "", -1, 1); | |
2564 | if (cmd == 0) | |
8a3fe4f8 | 2565 | error (_("Bad action list item: %s"), action_exp); |
c906108c | 2566 | |
bbaca940 | 2567 | if (cmd_cfunc_eq (cmd, while_stepping_pseudocommand)) |
c906108c | 2568 | stepping_actions = 1; |
bbaca940 | 2569 | else if (cmd_cfunc_eq (cmd, end_actions_pseudocommand)) |
c906108c | 2570 | stepping_actions = 0; |
bbaca940 | 2571 | else if (cmd_cfunc_eq (cmd, collect_pseudocommand)) |
c906108c SS |
2572 | { |
2573 | /* Display the collected data. | |
d183932d MS |
2574 | For the trap frame, display only what was collected at |
2575 | the trap. Likewise for stepping frames, display only | |
2576 | what was collected while stepping. This means that the | |
2577 | two boolean variables, STEPPING_FRAME and | |
2578 | STEPPING_ACTIONS should be equal. */ | |
c906108c SS |
2579 | if (stepping_frame == stepping_actions) |
2580 | { | |
c5aa993b JM |
2581 | do |
2582 | { /* repeat over a comma-separated list */ | |
2583 | QUIT; /* allow user to bail out with ^C */ | |
2584 | if (*action_exp == ',') | |
2585 | action_exp++; | |
104c1213 | 2586 | while (isspace ((int) *action_exp)) |
c5aa993b JM |
2587 | action_exp++; |
2588 | ||
2589 | next_comma = strchr (action_exp, ','); | |
2590 | ||
2591 | if (0 == strncasecmp (action_exp, "$reg", 4)) | |
2592 | registers_info (NULL, from_tty); | |
2593 | else if (0 == strncasecmp (action_exp, "$loc", 4)) | |
2594 | locals_info (NULL, from_tty); | |
2595 | else if (0 == strncasecmp (action_exp, "$arg", 4)) | |
2596 | args_info (NULL, from_tty); | |
2597 | else | |
2598 | { /* variable */ | |
2599 | if (next_comma) | |
2600 | { | |
2601 | make_cleanup (replace_comma, next_comma); | |
2602 | *next_comma = '\0'; | |
2603 | } | |
2604 | printf_filtered ("%s = ", action_exp); | |
2605 | output_command (action_exp, from_tty); | |
2606 | printf_filtered ("\n"); | |
2607 | } | |
2608 | if (next_comma) | |
2609 | *next_comma = ','; | |
2610 | action_exp = next_comma; | |
2611 | } | |
2612 | while (action_exp && *action_exp == ','); | |
c906108c SS |
2613 | } |
2614 | } | |
2615 | } | |
2616 | discard_cleanups (old_cleanups); | |
2617 | } | |
2618 | ||
2619 | /* Convert the memory pointed to by mem into hex, placing result in buf. | |
2620 | * Return a pointer to the last char put in buf (null) | |
2621 | * "stolen" from sparc-stub.c | |
2622 | */ | |
2623 | ||
c5aa993b | 2624 | static const char hexchars[] = "0123456789abcdef"; |
c906108c | 2625 | |
47b667de AC |
2626 | static char * |
2627 | mem2hex (gdb_byte *mem, char *buf, int count) | |
c906108c | 2628 | { |
47b667de | 2629 | gdb_byte ch; |
c906108c SS |
2630 | |
2631 | while (count-- > 0) | |
2632 | { | |
2633 | ch = *mem++; | |
2634 | ||
2635 | *buf++ = hexchars[ch >> 4]; | |
2636 | *buf++ = hexchars[ch & 0xf]; | |
2637 | } | |
2638 | ||
2639 | *buf = 0; | |
2640 | ||
2641 | return buf; | |
2642 | } | |
2643 | ||
c5aa993b | 2644 | int |
fba45db2 | 2645 | get_traceframe_number (void) |
c906108c | 2646 | { |
c5aa993b | 2647 | return traceframe_number; |
c906108c SS |
2648 | } |
2649 | ||
2650 | ||
2651 | /* module initialization */ | |
2652 | void | |
fba45db2 | 2653 | _initialize_tracepoint (void) |
c906108c | 2654 | { |
fa58ee11 EZ |
2655 | struct cmd_list_element *c; |
2656 | ||
c5aa993b JM |
2657 | tracepoint_chain = 0; |
2658 | tracepoint_count = 0; | |
c906108c SS |
2659 | traceframe_number = -1; |
2660 | tracepoint_number = -1; | |
2661 | ||
c906108c SS |
2662 | if (tracepoint_list.list == NULL) |
2663 | { | |
2664 | tracepoint_list.listsize = 128; | |
c5aa993b | 2665 | tracepoint_list.list = xmalloc |
c906108c SS |
2666 | (tracepoint_list.listsize * sizeof (struct memrange)); |
2667 | } | |
2668 | if (tracepoint_list.aexpr_list == NULL) | |
2669 | { | |
2670 | tracepoint_list.aexpr_listsize = 128; | |
2671 | tracepoint_list.aexpr_list = xmalloc | |
2672 | (tracepoint_list.aexpr_listsize * sizeof (struct agent_expr *)); | |
2673 | } | |
2674 | ||
2675 | if (stepping_list.list == NULL) | |
2676 | { | |
2677 | stepping_list.listsize = 128; | |
c5aa993b | 2678 | stepping_list.list = xmalloc |
c906108c SS |
2679 | (stepping_list.listsize * sizeof (struct memrange)); |
2680 | } | |
2681 | ||
2682 | if (stepping_list.aexpr_list == NULL) | |
2683 | { | |
2684 | stepping_list.aexpr_listsize = 128; | |
2685 | stepping_list.aexpr_list = xmalloc | |
2686 | (stepping_list.aexpr_listsize * sizeof (struct agent_expr *)); | |
2687 | } | |
2688 | ||
c5aa993b | 2689 | add_info ("scope", scope_info, |
1bedd215 | 2690 | _("List the variables local to a scope")); |
c906108c | 2691 | |
e00d1dc8 | 2692 | add_cmd ("tracepoints", class_trace, NULL, |
1a966eab | 2693 | _("Tracing of program execution without stopping the program."), |
c906108c SS |
2694 | &cmdlist); |
2695 | ||
1bedd215 AC |
2696 | add_info ("tracepoints", tracepoints_info, _("\ |
2697 | Status of tracepoints, or tracepoint number NUMBER.\n\ | |
c906108c | 2698 | Convenience variable \"$tpnum\" contains the number of the\n\ |
1bedd215 | 2699 | last tracepoint set.")); |
c906108c SS |
2700 | |
2701 | add_info_alias ("tp", "tracepoints", 1); | |
2702 | ||
1bedd215 AC |
2703 | c = add_com ("save-tracepoints", class_trace, tracepoint_save_command, _("\ |
2704 | Save current tracepoint definitions as a script.\n\ | |
2705 | Use the 'source' command in another debug session to restore them.")); | |
5ba2abeb | 2706 | set_cmd_completer (c, filename_completer); |
c906108c | 2707 | |
c5aa993b | 2708 | add_com ("tdump", class_trace, trace_dump_command, |
1bedd215 | 2709 | _("Print everything collected at the current tracepoint.")); |
c906108c | 2710 | |
1bedd215 AC |
2711 | add_prefix_cmd ("tfind", class_trace, trace_find_command, _("\ |
2712 | Select a trace frame;\n\ | |
2713 | No argument means forward by one frame; '-' means backward by one frame."), | |
c906108c SS |
2714 | &tfindlist, "tfind ", 1, &cmdlist); |
2715 | ||
1a966eab AC |
2716 | add_cmd ("outside", class_trace, trace_find_outside_command, _("\ |
2717 | Select a trace frame whose PC is outside the given range.\n\ | |
2718 | Usage: tfind outside addr1, addr2"), | |
c906108c SS |
2719 | &tfindlist); |
2720 | ||
1a966eab AC |
2721 | add_cmd ("range", class_trace, trace_find_range_command, _("\ |
2722 | Select a trace frame whose PC is in the given range.\n\ | |
2723 | Usage: tfind range addr1,addr2"), | |
c906108c SS |
2724 | &tfindlist); |
2725 | ||
1a966eab AC |
2726 | add_cmd ("line", class_trace, trace_find_line_command, _("\ |
2727 | Select a trace frame by source line.\n\ | |
c906108c SS |
2728 | Argument can be a line number (with optional source file), \n\ |
2729 | a function name, or '*' followed by an address.\n\ | |
1a966eab | 2730 | Default argument is 'the next source line that was traced'."), |
c906108c SS |
2731 | &tfindlist); |
2732 | ||
1a966eab AC |
2733 | add_cmd ("tracepoint", class_trace, trace_find_tracepoint_command, _("\ |
2734 | Select a trace frame by tracepoint number.\n\ | |
2735 | Default is the tracepoint for the current trace frame."), | |
c906108c SS |
2736 | &tfindlist); |
2737 | ||
1a966eab AC |
2738 | add_cmd ("pc", class_trace, trace_find_pc_command, _("\ |
2739 | Select a trace frame by PC.\n\ | |
2740 | Default is the current PC, or the PC of the current trace frame."), | |
c906108c SS |
2741 | &tfindlist); |
2742 | ||
1a966eab AC |
2743 | add_cmd ("end", class_trace, trace_find_end_command, _("\ |
2744 | Synonym for 'none'.\n\ | |
2745 | De-select any trace frame and resume 'live' debugging."), | |
c906108c SS |
2746 | &tfindlist); |
2747 | ||
2748 | add_cmd ("none", class_trace, trace_find_none_command, | |
1a966eab | 2749 | _("De-select any trace frame and resume 'live' debugging."), |
c906108c SS |
2750 | &tfindlist); |
2751 | ||
2752 | add_cmd ("start", class_trace, trace_find_start_command, | |
1a966eab | 2753 | _("Select the first trace frame in the trace buffer."), |
c906108c SS |
2754 | &tfindlist); |
2755 | ||
c5aa993b | 2756 | add_com ("tstatus", class_trace, trace_status_command, |
1bedd215 | 2757 | _("Display the status of the current trace data collection.")); |
c906108c | 2758 | |
c5aa993b | 2759 | add_com ("tstop", class_trace, trace_stop_command, |
1bedd215 | 2760 | _("Stop trace data collection.")); |
c906108c SS |
2761 | |
2762 | add_com ("tstart", class_trace, trace_start_command, | |
1bedd215 | 2763 | _("Start trace data collection.")); |
c906108c | 2764 | |
1bedd215 AC |
2765 | add_com ("passcount", class_trace, trace_pass_command, _("\ |
2766 | Set the passcount for a tracepoint.\n\ | |
c906108c SS |
2767 | The trace will end when the tracepoint has been passed 'count' times.\n\ |
2768 | Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\ | |
1bedd215 | 2769 | if TPNUM is omitted, passcount refers to the last tracepoint defined.")); |
c906108c | 2770 | |
1bedd215 AC |
2771 | add_com ("end", class_trace, end_actions_pseudocommand, _("\ |
2772 | Ends a list of commands or actions.\n\ | |
c906108c SS |
2773 | Several GDB commands allow you to enter a list of commands or actions.\n\ |
2774 | Entering \"end\" on a line by itself is the normal way to terminate\n\ | |
2775 | such a list.\n\n\ | |
1bedd215 | 2776 | Note: the \"end\" command cannot be used at the gdb prompt.")); |
c906108c | 2777 | |
1bedd215 AC |
2778 | add_com ("while-stepping", class_trace, while_stepping_pseudocommand, _("\ |
2779 | Specify single-stepping behavior at a tracepoint.\n\ | |
c906108c SS |
2780 | Argument is number of instructions to trace in single-step mode\n\ |
2781 | following the tracepoint. This command is normally followed by\n\ | |
2782 | one or more \"collect\" commands, to specify what to collect\n\ | |
2783 | while single-stepping.\n\n\ | |
1bedd215 | 2784 | Note: this command can only be used in a tracepoint \"actions\" list.")); |
c906108c | 2785 | |
c5aa993b JM |
2786 | add_com_alias ("ws", "while-stepping", class_alias, 0); |
2787 | add_com_alias ("stepping", "while-stepping", class_alias, 0); | |
c906108c | 2788 | |
1bedd215 AC |
2789 | add_com ("collect", class_trace, collect_pseudocommand, _("\ |
2790 | Specify one or more data items to be collected at a tracepoint.\n\ | |
c906108c SS |
2791 | Accepts a comma-separated list of (one or more) expressions. GDB will\n\ |
2792 | collect all data (variables, registers) referenced by that expression.\n\ | |
2793 | Also accepts the following special arguments:\n\ | |
2794 | $regs -- all registers.\n\ | |
2795 | $args -- all function arguments.\n\ | |
2796 | $locals -- all variables local to the block/function scope.\n\ | |
1bedd215 | 2797 | Note: this command can only be used in a tracepoint \"actions\" list.")); |
c906108c | 2798 | |
1bedd215 AC |
2799 | add_com ("actions", class_trace, trace_actions_command, _("\ |
2800 | Specify the actions to be taken at a tracepoint.\n\ | |
c906108c SS |
2801 | Tracepoint actions may include collecting of specified data, \n\ |
2802 | single-stepping, or enabling/disabling other tracepoints, \n\ | |
1bedd215 | 2803 | depending on target's capabilities.")); |
c906108c | 2804 | |
1a966eab AC |
2805 | add_cmd ("tracepoints", class_trace, delete_trace_command, _("\ |
2806 | Delete specified tracepoints.\n\ | |
c906108c | 2807 | Arguments are tracepoint numbers, separated by spaces.\n\ |
1a966eab | 2808 | No argument means delete all tracepoints."), |
c906108c SS |
2809 | &deletelist); |
2810 | ||
1a966eab AC |
2811 | add_cmd ("tracepoints", class_trace, disable_trace_command, _("\ |
2812 | Disable specified tracepoints.\n\ | |
c906108c | 2813 | Arguments are tracepoint numbers, separated by spaces.\n\ |
1a966eab | 2814 | No argument means disable all tracepoints."), |
c906108c SS |
2815 | &disablelist); |
2816 | ||
1a966eab AC |
2817 | add_cmd ("tracepoints", class_trace, enable_trace_command, _("\ |
2818 | Enable specified tracepoints.\n\ | |
c906108c | 2819 | Arguments are tracepoint numbers, separated by spaces.\n\ |
1a966eab | 2820 | No argument means enable all tracepoints."), |
c906108c SS |
2821 | &enablelist); |
2822 | ||
1bedd215 AC |
2823 | c = add_com ("trace", class_trace, trace_command, _("\ |
2824 | Set a tracepoint at a specified line or function or address.\n\ | |
c906108c SS |
2825 | Argument may be a line number, function name, or '*' plus an address.\n\ |
2826 | For a line number or function, trace at the start of its code.\n\ | |
2827 | If an address is specified, trace at that exact address.\n\n\ | |
1bedd215 | 2828 | Do \"help tracepoints\" for info on other tracepoint commands.")); |
5ba2abeb | 2829 | set_cmd_completer (c, location_completer); |
c906108c | 2830 | |
c5aa993b JM |
2831 | add_com_alias ("tp", "trace", class_alias, 0); |
2832 | add_com_alias ("tr", "trace", class_alias, 1); | |
2833 | add_com_alias ("tra", "trace", class_alias, 1); | |
c906108c | 2834 | add_com_alias ("trac", "trace", class_alias, 1); |
6d820c5c DJ |
2835 | |
2836 | target_buf_size = 2048; | |
2837 | target_buf = xmalloc (target_buf_size); | |
c906108c | 2838 | } |