include/opcode/
[deliverable/binutils-gdb.git] / gdb / tracepoint.h
CommitLineData
c906108c 1/* Data structures associated with tracepoints in GDB.
8acc9f48 2 Copyright (C) 1997-2013 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"
fa864999 25#include "gdb_vecs.h"
f197e0f1 26
393fd4c3
YQ
27/* An object describing the contents of a traceframe. */
28
29struct traceframe_info
30{
31 /* Collected memory. */
32 VEC(mem_range_s) *memory;
33};
34
f61e138d 35/* A trace state variable is a value managed by a target being
c378eb4e 36 traced. A trace state variable (or tsv for short) can be accessed
f61e138d
SS
37 and assigned to by tracepoint actions and conditionals, but is not
38 part of the program being traced, and it doesn't have to be
c378eb4e 39 collected. Effectively the variables are scratch space for
f61e138d
SS
40 tracepoints. */
41
42struct trace_state_variable
43 {
44 /* The variable's name. The user has to prefix with a dollar sign,
45 but we don't store that internally. */
46 const char *name;
47
48 /* An id number assigned by GDB, and transmitted to targets. */
49 int number;
50
51 /* The initial value of a variable is a 64-bit signed integer. */
52 LONGEST initial_value;
53
54 /* 1 if the value is known, else 0. The value is known during a
55 trace run, or in tfind mode if the variable was collected into
56 the current trace frame. */
57 int value_known;
58
59 /* The value of a variable is a 64-bit signed integer. */
60 LONGEST value;
00bf0b85
SS
61
62 /* This is true for variables that are predefined and built into
63 the target. */
64 int builtin;
65 };
66
67/* The trace status encompasses various info about the general state
68 of the tracing run. */
69
70enum trace_stop_reason
71 {
72 trace_stop_reason_unknown,
73 trace_never_run,
74 tstop_command,
75 trace_buffer_full,
76 trace_disconnected,
6c28cbf2
SS
77 tracepoint_passcount,
78 tracepoint_error
f61e138d
SS
79 };
80
00bf0b85
SS
81struct trace_status
82{
f5911ea1
HAQ
83 /* If the status is coming from a file rather than a live target,
84 this points at the file's filename. Otherwise, this is NULL. */
85 const char *filename;
00bf0b85
SS
86
87 /* This is true if the value of the running field is known. */
88 int running_known;
89
f196051f 90 /* This is true when the trace experiment is actually running. */
00bf0b85
SS
91 int running;
92
93 enum trace_stop_reason stop_reason;
94
6c28cbf2
SS
95 /* If stop_reason is tracepoint_passcount or tracepoint_error, this
96 is the (on-target) number of the tracepoint which caused the
97 stop. */
00bf0b85
SS
98 int stopping_tracepoint;
99
f196051f
SS
100 /* If stop_reason is tstop_command or tracepoint_error, this is an
101 arbitrary string that may describe the reason for the stop in
102 more detail. */
103
104 char *stop_desc;
6c28cbf2 105
4daf5ac0
SS
106 /* Number of traceframes currently in the buffer. */
107
00bf0b85
SS
108 int traceframe_count;
109
4daf5ac0
SS
110 /* Number of traceframes created since start of run. */
111
112 int traceframes_created;
113
114 /* Total size of the target's trace buffer. */
115
116 int buffer_size;
117
118 /* Unused bytes left in the target's trace buffer. */
00bf0b85 119
4daf5ac0 120 int buffer_free;
33da3f1c
SS
121
122 /* 1 if the target will continue tracing after disconnection, else
123 0. If the target does not report a value, assume 0. */
124
125 int disconnected_tracing;
126
127 /* 1 if the target is using a circular trace buffer, else 0. If the
128 target does not report a value, assume 0. */
129
130 int circular_buffer;
f196051f
SS
131
132 /* The "name" of the person running the trace. This is an
133 arbitrary string. */
134
135 char *user_name;
136
137 /* "Notes" about the trace. This is an arbitrary string not
138 interpreted by GDBserver in any special way. */
139
140 char *notes;
141
142 /* The calendar times at which the trace run started and stopped,
143 both expressed in microseconds of Unix time. */
144
145 LONGEST start_time;
146 LONGEST stop_time;
00bf0b85
SS
147};
148
149struct trace_status *current_trace_status (void);
c906108c 150
35b1e5cc
SS
151extern char *default_collect;
152
393fd4c3
YQ
153extern int trace_regblock_size;
154
00bf0b85
SS
155/* Struct to collect random info about tracepoints on the target. */
156
409873ef
SS
157struct uploaded_tp
158{
00bf0b85
SS
159 int number;
160 enum bptype type;
161 ULONGEST addr;
162 int enabled;
163 int step;
164 int pass;
165 int orig_size;
3149d8c1
SS
166
167 /* String that is the encoded form of the tracepoint's condition. */
00bf0b85 168 char *cond;
3149d8c1 169
3e43a32a
MS
170 /* Vectors of strings that are the encoded forms of a tracepoint's
171 actions. */
3149d8c1
SS
172 VEC(char_ptr) *actions;
173 VEC(char_ptr) *step_actions;
409873ef
SS
174
175 /* The original string defining the location of the tracepoint. */
176 char *at_string;
177
178 /* The original string defining the tracepoint's condition. */
179 char *cond_string;
180
181 /* List of original strings defining the tracepoint's actions. */
3149d8c1 182 VEC(char_ptr) *cmd_strings;
409873ef 183
f196051f
SS
184 /* The tracepoint's current hit count. */
185 int hit_count;
186
187 /* The tracepoint's current traceframe usage. */
188 ULONGEST traceframe_usage;
189
00bf0b85
SS
190 struct uploaded_tp *next;
191};
192
193/* Struct recording info about trace state variables on the target. */
194
409873ef
SS
195struct uploaded_tsv
196{
00bf0b85
SS
197 const char *name;
198 int number;
199 LONGEST initial_value;
200 int builtin;
201 struct uploaded_tsv *next;
202};
203
0fb4aa4b
PA
204/* Struct recording info about a target static tracepoint marker. */
205
206struct static_tracepoint_marker
207{
208 struct gdbarch *gdbarch;
209 CORE_ADDR address;
210
211 /* The string ID of the marker. */
212 char *str_id;
213
214 /* Extra target reported info associated with the marker. */
215 char *extra;
216};
217
3f43bc09
YQ
218struct trace_file_writer;
219
220/* Operations to write trace frames to a specific trace format. */
221
222struct trace_frame_write_ops
223{
224 /* Write a new trace frame. The tracepoint number of this trace
225 frame is TPNUM. */
226 void (*start) (struct trace_file_writer *self, uint16_t tpnum);
227
228 /* Write an 'R' block. Buffer BUF contains its contents and SIZE is
229 its size. */
230 void (*write_r_block) (struct trace_file_writer *self,
231 gdb_byte *buf, int32_t size);
232
233 /* Write an 'M' block, the header and memory contents respectively.
234 The header of 'M' block is composed of the start address and the
235 length of memory collection, and the memory contents contain
236 the collected memory contents in tracing.
237 For extremely large M block, GDB is unable to get its contents
238 and write them into trace file in one go, due to the limitation
239 of the remote target or the size of internal buffer, we split
240 the operation to 'M' block to two operations. */
241 /* Write the head of 'M' block. ADDR is the start address of
242 collected memory and LENGTH is the length of memory contents. */
243 void (*write_m_block_header) (struct trace_file_writer *self,
244 uint64_t addr, uint16_t length);
245 /* Write the memory contents of 'M' block. Buffer BUF contains
246 its contents and LENGTH is its length. This method can be called
247 multiple times to write large memory contents of a single 'M'
248 block. */
249 void (*write_m_block_memory) (struct trace_file_writer *self,
250 gdb_byte *buf, uint16_t length);
251
252 /* Write a 'V' block. NUM is the trace variable number and VAL is
253 the value of the trace variable. */
254 void (*write_v_block) (struct trace_file_writer *self, int32_t num,
255 uint64_t val);
256
257 /* The end of the trace frame. */
258 void (*end) (struct trace_file_writer *self);
259};
260
261/* Operations to write trace buffers to a specific trace format. */
262
263struct trace_file_write_ops
264{
265 /* Destructor. Releases everything from SELF (but not SELF
266 itself). */
267 void (*dtor) (struct trace_file_writer *self);
268
269 /* Save the data to file or directory NAME of desired format in
270 target side. Return true for success, otherwise return
271 false. */
272 int (*target_save) (struct trace_file_writer *self,
273 const char *name);
274
275 /* Write the trace buffers to file or directory NAME. */
276 void (*start) (struct trace_file_writer *self,
277 const char *name);
278
279 /* Write the trace header. */
280 void (*write_header) (struct trace_file_writer *self);
281
282 /* Write the type of block about registers. SIZE is the size of
283 all registers on the target. */
284 void (*write_regblock_type) (struct trace_file_writer *self,
285 int size);
286
287 /* Write trace status TS. */
288 void (*write_status) (struct trace_file_writer *self,
289 struct trace_status *ts);
290
291 /* Write the uploaded TSV. */
292 void (*write_uploaded_tsv) (struct trace_file_writer *self,
293 struct uploaded_tsv *tsv);
294
295 /* Write the uploaded tracepoint TP. */
296 void (*write_uploaded_tp) (struct trace_file_writer *self,
297 struct uploaded_tp *tp);
298
299 /* Write to mark the end of the definition part. */
300 void (*write_definition_end) (struct trace_file_writer *self);
301
302 /* Write the data of trace buffer without parsing. The content is
303 in BUF and length is LEN. */
304 void (*write_trace_buffer) (struct trace_file_writer *self,
305 gdb_byte *buf, LONGEST len);
306
307 /* Operations to write trace frames. The user of this field is
308 responsible to parse the data of trace buffer. Either field
309 'write_trace_buffer' or field ' frame_ops' is NULL. */
310 const struct trace_frame_write_ops *frame_ops;
311
312 /* The end of writing trace buffers. */
313 void (*end) (struct trace_file_writer *self);
314};
315
316/* Trace file writer for a given format. */
317
318struct trace_file_writer
319{
320 const struct trace_file_write_ops *ops;
321};
322
0fb4aa4b
PA
323extern void parse_static_tracepoint_marker_definition
324 (char *line, char **pp,
325 struct static_tracepoint_marker *marker);
326extern void release_static_tracepoint_marker (struct static_tracepoint_marker *);
5808517f 327extern void free_current_marker (void *arg);
0fb4aa4b 328
d183932d 329/* A hook used to notify the UI of tracepoint operations. */
c906108c 330
98c5b216
TT
331extern void (*deprecated_trace_find_hook) (char *arg, int from_tty);
332extern void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
c906108c 333
e6e4e701
PA
334/* Returns the current traceframe number. */
335extern int get_traceframe_number (void);
336
393fd4c3
YQ
337/* Returns the tracepoint number for current traceframe. */
338extern int get_tracepoint_number (void);
339
e6e4e701
PA
340/* Make the traceframe NUM be the current GDB trace frame number, and
341 do nothing more. In particular, this does not flush the
342 register/frame caches or notify the target about the trace frame
343 change, so that is can be used when we need to momentarily access
344 live memory. Targets lazily switch their current traceframe to
345 match GDB's traceframe number, at the appropriate times. */
346extern void set_traceframe_number (int);
347
348/* Make the traceframe NUM be the current trace frame, all the way to
349 the target, and flushes all global state (register/frame caches,
350 etc.). */
351extern void set_current_traceframe (int num);
352
06cd862c 353struct cleanup *make_cleanup_restore_current_traceframe (void);
e6e4e701 354struct cleanup *make_cleanup_restore_traceframe_number (void);
06cd862c 355
1042e4c0 356void free_actions (struct breakpoint *);
3065dfb6 357
92bc6a20 358extern const char *decode_agent_options (const char *exp, int *trace_string);
3065dfb6 359
23da373a 360extern void encode_actions (struct bp_location *tloc,
5fbce5df
PA
361 char ***tdp_actions, char ***stepping_actions);
362
6f937416 363extern void validate_actionline (const char *, struct breakpoint *);
1773c82c 364extern void validate_trace_state_variable_name (const char *name);
c906108c 365
f61e138d 366extern struct trace_state_variable *find_trace_state_variable (const char *name);
40e1c229 367extern struct trace_state_variable *create_trace_state_variable (const char *name);
f61e138d 368
409873ef
SS
369extern int encode_source_string (int num, ULONGEST addr,
370 char *srctype, char *src,
371 char *buf, int buf_size);
372
00bf0b85
SS
373extern void parse_trace_status (char *line, struct trace_status *ts);
374
f196051f
SS
375extern void parse_tracepoint_status (char *p, struct breakpoint *tp,
376 struct uploaded_tp *utp);
377
3e43a32a
MS
378extern void parse_tracepoint_definition (char *line,
379 struct uploaded_tp **utpp);
00bf0b85
SS
380extern void parse_tsv_definition (char *line, struct uploaded_tsv **utsvp);
381
382extern struct uploaded_tp *get_uploaded_tp (int num, ULONGEST addr,
383 struct uploaded_tp **utpp);
393fd4c3
YQ
384extern struct uploaded_tsv *get_uploaded_tsv (int num,
385 struct uploaded_tsv **utsvp);
d9b3f62e 386extern struct tracepoint *create_tracepoint_from_upload (struct uploaded_tp *utp);
00bf0b85
SS
387extern void merge_uploaded_tracepoints (struct uploaded_tp **utpp);
388extern void merge_uploaded_trace_state_variables (struct uploaded_tsv **utsvp);
389
2f9d54cf
PA
390extern void query_if_trace_running (int from_tty);
391extern void disconnect_tracing (void);
aef525cb 392extern void trace_reset_local_state (void);
573cda03 393
f196051f
SS
394extern void start_tracing (char *notes);
395extern void stop_tracing (char *notes);
f224b49d
VP
396
397extern void trace_status_mi (int on_stop);
398
40e1c229 399extern void tvariables_info_1 (void);
8bf6485c 400extern void save_trace_state_variables (struct ui_file *fp);
40e1c229 401
f197e0f1 402extern void tfind_1 (enum trace_find_type type, int num,
cc5925ad 403 CORE_ADDR addr1, CORE_ADDR addr2,
f197e0f1
VP
404 int from_tty);
405
3f43bc09
YQ
406extern void trace_save_tfile (const char *filename,
407 int target_does_save);
d0353e76
YQ
408extern void trace_save_ctf (const char *dirname,
409 int target_does_save);
011aacb0 410
b3b9301e
PA
411extern struct traceframe_info *parse_traceframe_info (const char *tframe_info);
412
2a7498d8
PA
413extern int traceframe_available_memory (VEC(mem_range_s) **result,
414 CORE_ADDR memaddr, ULONGEST len);
415
d183932d 416#endif /* TRACEPOINT_H */
This page took 1.489046 seconds and 4 git commands to generate.