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