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