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