2010-04-08 Stan Shebs <stan@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / tracepoint.h
CommitLineData
c906108c 1/* Data structures associated with tracepoints in GDB.
4c38e0a4 2 Copyright (C) 1997, 1998, 1999, 2000, 2007, 2008, 2009, 2010
9b254dd1 3 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#if !defined (TRACEPOINT_H)
21#define TRACEPOINT_H 1
22
f197e0f1
VP
23#include "breakpoint.h"
24#include "target.h"
25
f61e138d
SS
26/* A trace state variable is a value managed by a target being
27 traced. A trace state variable (or tsv for short) can be accessed
28 and assigned to by tracepoint actions and conditionals, but is not
29 part of the program being traced, and it doesn't have to be
30 collected. Effectively the variables are scratch space for
31 tracepoints. */
32
33struct trace_state_variable
34 {
35 /* The variable's name. The user has to prefix with a dollar sign,
36 but we don't store that internally. */
37 const char *name;
38
39 /* An id number assigned by GDB, and transmitted to targets. */
40 int number;
41
42 /* The initial value of a variable is a 64-bit signed integer. */
43 LONGEST initial_value;
44
45 /* 1 if the value is known, else 0. The value is known during a
46 trace run, or in tfind mode if the variable was collected into
47 the current trace frame. */
48 int value_known;
49
50 /* The value of a variable is a 64-bit signed integer. */
51 LONGEST value;
00bf0b85
SS
52
53 /* This is true for variables that are predefined and built into
54 the target. */
55 int builtin;
56 };
57
58/* The trace status encompasses various info about the general state
59 of the tracing run. */
60
61enum trace_stop_reason
62 {
63 trace_stop_reason_unknown,
64 trace_never_run,
65 tstop_command,
66 trace_buffer_full,
67 trace_disconnected,
6c28cbf2
SS
68 tracepoint_passcount,
69 tracepoint_error
f61e138d
SS
70 };
71
00bf0b85
SS
72struct trace_status
73{
74 /* This is true if the status is coming from a file rather
75 than a live target. */
76 int from_file;
77
78 /* This is true if the value of the running field is known. */
79 int running_known;
80
81 int running;
82
83 enum trace_stop_reason stop_reason;
84
6c28cbf2
SS
85 /* If stop_reason is tracepoint_passcount or tracepoint_error, this
86 is the (on-target) number of the tracepoint which caused the
87 stop. */
00bf0b85
SS
88 int stopping_tracepoint;
89
6c28cbf2
SS
90 /* If stop_reason is tracepoint_error, this is a human-readable
91 string that describes the error that happened on the target. */
92 char *error_desc;
93
4daf5ac0
SS
94 /* Number of traceframes currently in the buffer. */
95
00bf0b85
SS
96 int traceframe_count;
97
4daf5ac0
SS
98 /* Number of traceframes created since start of run. */
99
100 int traceframes_created;
101
102 /* Total size of the target's trace buffer. */
103
104 int buffer_size;
105
106 /* Unused bytes left in the target's trace buffer. */
00bf0b85 107
4daf5ac0 108 int buffer_free;
00bf0b85
SS
109};
110
111struct trace_status *current_trace_status (void);
c906108c 112
35b1e5cc
SS
113extern char *default_collect;
114
00bf0b85
SS
115/* Struct to collect random info about tracepoints on the target. */
116
3149d8c1 117DEF_VEC_P (char_ptr);
409873ef
SS
118
119struct uploaded_tp
120{
00bf0b85
SS
121 int number;
122 enum bptype type;
123 ULONGEST addr;
124 int enabled;
125 int step;
126 int pass;
127 int orig_size;
3149d8c1
SS
128
129 /* String that is the encoded form of the tracepoint's condition. */
00bf0b85 130 char *cond;
3149d8c1
SS
131
132 /* Vectors of strings that are the encoded forms of a tracepoint's actions. */
133 VEC(char_ptr) *actions;
134 VEC(char_ptr) *step_actions;
409873ef
SS
135
136 /* The original string defining the location of the tracepoint. */
137 char *at_string;
138
139 /* The original string defining the tracepoint's condition. */
140 char *cond_string;
141
142 /* List of original strings defining the tracepoint's actions. */
3149d8c1 143 VEC(char_ptr) *cmd_strings;
409873ef 144
00bf0b85
SS
145 struct uploaded_tp *next;
146};
147
148/* Struct recording info about trace state variables on the target. */
149
409873ef
SS
150struct uploaded_tsv
151{
00bf0b85
SS
152 const char *name;
153 int number;
154 LONGEST initial_value;
155 int builtin;
156 struct uploaded_tsv *next;
157};
158
d183932d 159/* A hook used to notify the UI of tracepoint operations. */
c906108c 160
98c5b216
TT
161extern void (*deprecated_trace_find_hook) (char *arg, int from_tty);
162extern void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
c906108c 163
a14ed312 164int get_traceframe_number (void);
06cd862c
PA
165void set_traceframe_number (int);
166struct cleanup *make_cleanup_restore_current_traceframe (void);
167
1042e4c0 168void free_actions (struct breakpoint *);
fff87407 169extern void validate_actionline (char **, struct breakpoint *);
c906108c 170
1042e4c0
SS
171extern void end_actions_pseudocommand (char *args, int from_tty);
172extern void while_stepping_pseudocommand (char *args, int from_tty);
c906108c 173
f61e138d 174extern struct trace_state_variable *find_trace_state_variable (const char *name);
40e1c229 175extern struct trace_state_variable *create_trace_state_variable (const char *name);
f61e138d 176
409873ef
SS
177extern int encode_source_string (int num, ULONGEST addr,
178 char *srctype, char *src,
179 char *buf, int buf_size);
180
00bf0b85
SS
181extern void parse_trace_status (char *line, struct trace_status *ts);
182
183extern void parse_tracepoint_definition (char *line, struct uploaded_tp **utpp);
184extern void parse_tsv_definition (char *line, struct uploaded_tsv **utsvp);
185
186extern struct uploaded_tp *get_uploaded_tp (int num, ULONGEST addr,
187 struct uploaded_tp **utpp);
188extern struct breakpoint *create_tracepoint_from_upload (struct uploaded_tp *utp);
189extern void merge_uploaded_tracepoints (struct uploaded_tp **utpp);
190extern void merge_uploaded_trace_state_variables (struct uploaded_tsv **utsvp);
191
573cda03
SS
192extern void disconnect_or_stop_tracing (int from_tty);
193
f224b49d
VP
194extern void start_tracing (void);
195extern void stop_tracing (void);
196
197extern void trace_status_mi (int on_stop);
198
40e1c229 199extern void tvariables_info_1 (void);
8bf6485c 200extern void save_trace_state_variables (struct ui_file *fp);
40e1c229 201
f197e0f1
VP
202extern void tfind_1 (enum trace_find_type type, int num,
203 ULONGEST addr1, ULONGEST addr2,
204 int from_tty);
205
011aacb0
VP
206extern void trace_save (const char *filename, int target_does_save);
207
d183932d 208#endif /* TRACEPOINT_H */
This page took 1.011521 seconds and 4 git commands to generate.