]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/tracepoint.h
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / gdb / tracepoint.h
CommitLineData
c906108c 1/* Data structures associated with tracepoints in GDB.
c5a57081 2 Copyright (C) 1997-2000, 2007-2012 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
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 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 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19#if !defined (TRACEPOINT_H)
20#define TRACEPOINT_H 1
21
f197e0f1
VP
22#include "breakpoint.h"
23#include "target.h"
2a7498d8 24#include "memrange.h"
f197e0f1 25
f61e138d 26/* A trace state variable is a value managed by a target being
c378eb4e 27 traced. A trace state variable (or tsv for short) can be accessed
f61e138d
SS
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
c378eb4e 30 collected. Effectively the variables are scratch space for
f61e138d
SS
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
f196051f 81 /* This is true when the trace experiment is actually running. */
00bf0b85
SS
82 int running;
83
84 enum trace_stop_reason stop_reason;
85
6c28cbf2
SS
86 /* If stop_reason is tracepoint_passcount or tracepoint_error, this
87 is the (on-target) number of the tracepoint which caused the
88 stop. */
00bf0b85
SS
89 int stopping_tracepoint;
90
f196051f
SS
91 /* If stop_reason is tstop_command or tracepoint_error, this is an
92 arbitrary string that may describe the reason for the stop in
93 more detail. */
94
95 char *stop_desc;
6c28cbf2 96
4daf5ac0
SS
97 /* Number of traceframes currently in the buffer. */
98
00bf0b85
SS
99 int traceframe_count;
100
4daf5ac0
SS
101 /* Number of traceframes created since start of run. */
102
103 int traceframes_created;
104
105 /* Total size of the target's trace buffer. */
106
107 int buffer_size;
108
109 /* Unused bytes left in the target's trace buffer. */
00bf0b85 110
4daf5ac0 111 int buffer_free;
33da3f1c
SS
112
113 /* 1 if the target will continue tracing after disconnection, else
114 0. If the target does not report a value, assume 0. */
115
116 int disconnected_tracing;
117
118 /* 1 if the target is using a circular trace buffer, else 0. If the
119 target does not report a value, assume 0. */
120
121 int circular_buffer;
f196051f
SS
122
123 /* The "name" of the person running the trace. This is an
124 arbitrary string. */
125
126 char *user_name;
127
128 /* "Notes" about the trace. This is an arbitrary string not
129 interpreted by GDBserver in any special way. */
130
131 char *notes;
132
133 /* The calendar times at which the trace run started and stopped,
134 both expressed in microseconds of Unix time. */
135
136 LONGEST start_time;
137 LONGEST stop_time;
00bf0b85
SS
138};
139
140struct trace_status *current_trace_status (void);
c906108c 141
35b1e5cc
SS
142extern char *default_collect;
143
00bf0b85
SS
144/* Struct to collect random info about tracepoints on the target. */
145
3149d8c1 146DEF_VEC_P (char_ptr);
409873ef
SS
147
148struct uploaded_tp
149{
00bf0b85
SS
150 int number;
151 enum bptype type;
152 ULONGEST addr;
153 int enabled;
154 int step;
155 int pass;
156 int orig_size;
3149d8c1
SS
157
158 /* String that is the encoded form of the tracepoint's condition. */
00bf0b85 159 char *cond;
3149d8c1 160
3e43a32a
MS
161 /* Vectors of strings that are the encoded forms of a tracepoint's
162 actions. */
3149d8c1
SS
163 VEC(char_ptr) *actions;
164 VEC(char_ptr) *step_actions;
409873ef
SS
165
166 /* The original string defining the location of the tracepoint. */
167 char *at_string;
168
169 /* The original string defining the tracepoint's condition. */
170 char *cond_string;
171
172 /* List of original strings defining the tracepoint's actions. */
3149d8c1 173 VEC(char_ptr) *cmd_strings;
409873ef 174
f196051f
SS
175 /* The tracepoint's current hit count. */
176 int hit_count;
177
178 /* The tracepoint's current traceframe usage. */
179 ULONGEST traceframe_usage;
180
00bf0b85
SS
181 struct uploaded_tp *next;
182};
183
184/* Struct recording info about trace state variables on the target. */
185
409873ef
SS
186struct uploaded_tsv
187{
00bf0b85
SS
188 const char *name;
189 int number;
190 LONGEST initial_value;
191 int builtin;
192 struct uploaded_tsv *next;
193};
194
0fb4aa4b
PA
195/* Struct recording info about a target static tracepoint marker. */
196
197struct static_tracepoint_marker
198{
199 struct gdbarch *gdbarch;
200 CORE_ADDR address;
201
202 /* The string ID of the marker. */
203 char *str_id;
204
205 /* Extra target reported info associated with the marker. */
206 char *extra;
207};
208
209extern void parse_static_tracepoint_marker_definition
210 (char *line, char **pp,
211 struct static_tracepoint_marker *marker);
212extern void release_static_tracepoint_marker (struct static_tracepoint_marker *);
213
d183932d 214/* A hook used to notify the UI of tracepoint operations. */
c906108c 215
98c5b216
TT
216extern void (*deprecated_trace_find_hook) (char *arg, int from_tty);
217extern void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
c906108c 218
e6e4e701
PA
219/* Returns the current traceframe number. */
220extern int get_traceframe_number (void);
221
222/* Make the traceframe NUM be the current GDB trace frame number, and
223 do nothing more. In particular, this does not flush the
224 register/frame caches or notify the target about the trace frame
225 change, so that is can be used when we need to momentarily access
226 live memory. Targets lazily switch their current traceframe to
227 match GDB's traceframe number, at the appropriate times. */
228extern void set_traceframe_number (int);
229
230/* Make the traceframe NUM be the current trace frame, all the way to
231 the target, and flushes all global state (register/frame caches,
232 etc.). */
233extern void set_current_traceframe (int num);
234
06cd862c 235struct cleanup *make_cleanup_restore_current_traceframe (void);
e6e4e701 236struct cleanup *make_cleanup_restore_traceframe_number (void);
06cd862c 237
1042e4c0 238void free_actions (struct breakpoint *);
3065dfb6
SS
239
240extern char *decode_agent_options (char *exp);
241
fff87407 242extern void validate_actionline (char **, struct breakpoint *);
c906108c 243
1042e4c0
SS
244extern void end_actions_pseudocommand (char *args, int from_tty);
245extern void while_stepping_pseudocommand (char *args, int from_tty);
c906108c 246
f61e138d 247extern struct trace_state_variable *find_trace_state_variable (const char *name);
40e1c229 248extern struct trace_state_variable *create_trace_state_variable (const char *name);
f61e138d 249
409873ef
SS
250extern int encode_source_string (int num, ULONGEST addr,
251 char *srctype, char *src,
252 char *buf, int buf_size);
253
00bf0b85
SS
254extern void parse_trace_status (char *line, struct trace_status *ts);
255
f196051f
SS
256extern void parse_tracepoint_status (char *p, struct breakpoint *tp,
257 struct uploaded_tp *utp);
258
3e43a32a
MS
259extern void parse_tracepoint_definition (char *line,
260 struct uploaded_tp **utpp);
00bf0b85
SS
261extern void parse_tsv_definition (char *line, struct uploaded_tsv **utsvp);
262
263extern struct uploaded_tp *get_uploaded_tp (int num, ULONGEST addr,
264 struct uploaded_tp **utpp);
d9b3f62e 265extern struct tracepoint *create_tracepoint_from_upload (struct uploaded_tp *utp);
00bf0b85
SS
266extern void merge_uploaded_tracepoints (struct uploaded_tp **utpp);
267extern void merge_uploaded_trace_state_variables (struct uploaded_tsv **utsvp);
268
33da3f1c 269extern void disconnect_tracing (int from_tty);
573cda03 270
f196051f
SS
271extern void start_tracing (char *notes);
272extern void stop_tracing (char *notes);
f224b49d
VP
273
274extern void trace_status_mi (int on_stop);
275
40e1c229 276extern void tvariables_info_1 (void);
8bf6485c 277extern void save_trace_state_variables (struct ui_file *fp);
40e1c229 278
f197e0f1
VP
279extern void tfind_1 (enum trace_find_type type, int num,
280 ULONGEST addr1, ULONGEST addr2,
281 int from_tty);
282
011aacb0
VP
283extern void trace_save (const char *filename, int target_does_save);
284
b3b9301e
PA
285extern struct traceframe_info *parse_traceframe_info (const char *tframe_info);
286
2a7498d8
PA
287extern int traceframe_available_memory (VEC(mem_range_s) **result,
288 CORE_ADDR memaddr, ULONGEST len);
289
d183932d 290#endif /* TRACEPOINT_H */