]> git.proxmox.com Git - mirror_qemu.git/blame - trace/control.h
Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-and-plugins-090222...
[mirror_qemu.git] / trace / control.h
CommitLineData
e4858974
LV
1/*
2 * Interface for configuring and controlling the state of tracing events.
3 *
3d211d9f 4 * Copyright (C) 2011-2016 Lluís Vilanova <vilanova@ac.upc.edu>
e4858974 5 *
b1bae816
LV
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
e4858974
LV
8 */
9
b1bae816
LV
10#ifndef TRACE__CONTROL_H
11#define TRACE__CONTROL_H
e4858974 12
34770187 13#include "event-internal.h"
fc764105 14
6a1b0f3a 15typedef struct TraceEventIter {
c5cc58b1 16 /* iter state */
6a1b0f3a 17 size_t event;
fe4db84d 18 size_t group;
c5cc58b1
GH
19 /* filter conditions */
20 size_t group_id;
6a1b0f3a
DB
21 const char *pattern;
22} TraceEventIter;
fc764105 23
6a1b0f3a
DB
24
25/**
117856c3 26 * trace_event_iter_init_all:
6a1b0f3a 27 * @iter: the event iterator struct
6a1b0f3a
DB
28 *
29 * Initialize the event iterator struct @iter,
117856c3
GH
30 * for all events.
31 */
32void trace_event_iter_init_all(TraceEventIter *iter);
33
34/**
35 * trace_event_iter_init_pattern:
36 * @iter: the event iterator struct
37 * @pattern: pattern to filter events on name
38 *
39 * Initialize the event iterator struct @iter,
40 * using @pattern to filter out events
6a1b0f3a
DB
41 * with non-matching names.
42 */
117856c3 43void trace_event_iter_init_pattern(TraceEventIter *iter, const char *pattern);
6a1b0f3a 44
c5cc58b1
GH
45/**
46 * trace_event_iter_init_group:
47 * @iter: the event iterator struct
48 * @group_id: group_id to filter events by group.
49 *
50 * Initialize the event iterator struct @iter,
51 * using @group_id to filter for events in the group.
52 */
53void trace_event_iter_init_group(TraceEventIter *iter, size_t group_id);
54
6a1b0f3a
DB
55/**
56 * trace_event_iter_next:
57 * @iter: the event iterator struct
58 *
59 * Get the next event, if any. When this returns NULL,
60 * the iterator should no longer be used.
61 *
62 * Returns: the next event, or NULL if no more events exist
63 */
64TraceEvent *trace_event_iter_next(TraceEventIter *iter);
65
b1bae816
LV
66
67/**
68 * trace_event_name:
69 * @id: Event name.
70 *
71 * Search an event by its name.
72 *
73 * Returns: pointer to #TraceEvent or NULL if not found.
74 */
75TraceEvent *trace_event_name(const char *name);
76
b1bae816
LV
77/**
78 * trace_event_is_pattern:
79 *
80 * Whether the given string is an event name pattern.
81 */
82static bool trace_event_is_pattern(const char *str);
83
b1bae816
LV
84
85/**
86 * trace_event_get_id:
87 *
88 * Get the identifier of an event.
89 */
ef4c9fc8 90static uint32_t trace_event_get_id(TraceEvent *ev);
b1bae816 91
17f7ac75
LV
92/**
93 * trace_event_get_vcpu_id:
94 *
95 * Get the per-vCPU identifier of an event.
96 *
ef4c9fc8 97 * Special value #TRACE_VCPU_EVENT_NONE means the event is not vCPU-specific
17f7ac75
LV
98 * (does not have the "vcpu" property).
99 */
ef4c9fc8 100static uint32_t trace_event_get_vcpu_id(TraceEvent *ev);
17f7ac75
LV
101
102/**
103 * trace_event_is_vcpu:
104 *
105 * Whether this is a per-vCPU event.
106 */
107static bool trace_event_is_vcpu(TraceEvent *ev);
108
b1bae816
LV
109/**
110 * trace_event_get_name:
fc764105 111 *
b1bae816 112 * Get the name of an event.
fc764105 113 */
b1bae816 114static const char * trace_event_get_name(TraceEvent *ev);
e4858974 115
b1bae816
LV
116/**
117 * trace_event_get_state:
ef4c9fc8 118 * @id: Event identifier name.
b1bae816 119 *
d87aa138 120 * Get the tracing state of an event, both static and the QEMU dynamic state.
b1bae816
LV
121 *
122 * If the event has the disabled property, the check will have no performance
123 * impact.
b1bae816
LV
124 */
125#define trace_event_get_state(id) \
585ec727 126 ((id ##_ENABLED) && trace_event_get_state_dynamic_by_id(id))
b1bae816 127
d87aa138
SH
128/**
129 * trace_event_get_state_backends:
130 * @id: Event identifier name.
131 *
132 * Get the tracing state of an event, both static and dynamic state from all
133 * compiled-in backends.
134 *
135 * If the event has the disabled property, the check will have no performance
136 * impact.
137 *
138 * Returns: true if at least one backend has the event enabled and the event
139 * does not have the disabled property.
140 */
141#define trace_event_get_state_backends(id) \
142 ((id ##_ENABLED) && id ##_BACKEND_DSTATE())
143
b1bae816
LV
144/**
145 * trace_event_get_state_static:
146 * @id: Event identifier.
147 *
148 * Get the static tracing state of an event.
149 *
150 * Use the define 'TRACE_${EVENT_NAME}_ENABLED' for compile-time checks (it will
151 * be set to 1 or 0 according to the presence of the disabled property).
152 */
153static bool trace_event_get_state_static(TraceEvent *ev);
154
155/**
156 * trace_event_get_state_dynamic:
157 *
158 * Get the dynamic tracing state of an event.
48151859
LV
159 *
160 * If the event has the 'vcpu' property, gets the OR'ed state of all vCPUs.
b1bae816
LV
161 */
162static bool trace_event_get_state_dynamic(TraceEvent *ev);
163
b1bae816
LV
164/**
165 * trace_event_set_state_dynamic:
166 *
167 * Set the dynamic tracing state of an event.
168 *
48151859
LV
169 * If the event has the 'vcpu' property, sets the state on all vCPUs.
170 *
b1bae816
LV
171 * Pre-condition: trace_event_get_state_static(ev) == true
172 */
48151859
LV
173void trace_event_set_state_dynamic(TraceEvent *ev, bool state);
174
175/**
176 * trace_event_set_vcpu_state_dynamic:
177 *
178 * Set the dynamic tracing state of an event for the given vCPU.
179 *
180 * Pre-condition: trace_event_get_vcpu_state_static(ev) == true
61a67f71
LV
181 *
182 * Note: Changes for execution-time events with the 'tcg' property will not be
183 * propagated until the next TB is executed (iff executing in TCG mode).
48151859
LV
184 */
185void trace_event_set_vcpu_state_dynamic(CPUState *vcpu,
186 TraceEvent *ev, bool state);
b1bae816 187
b1bae816
LV
188
189
b1bae816 190/**
5b808275 191 * trace_init_backends:
e4858974 192 *
b1bae816
LV
193 * Initialize the tracing backend.
194 *
5b808275 195 * Returns: Whether the backends could be successfully initialized.
23d15e86 196 */
41fc57e4 197bool trace_init_backends(void);
45bd0b41 198
41fc57e4
PB
199/**
200 * trace_init_file:
41fc57e4
PB
201 *
202 * Record the name of the output file for the tracing backend.
203 * Exits if no selected backend does not support specifying the
92eecfff 204 * output file, and a file was specified with "-trace file=...".
41fc57e4 205 */
92eecfff 206void trace_init_file(void);
41fc57e4 207
2bfe11c8
LV
208/**
209 * trace_init_vcpu:
210 * @vcpu: Added vCPU.
211 *
212 * Set initial dynamic event state for a hot-plugged vCPU.
213 */
214void trace_init_vcpu(CPUState *vcpu);
215
82e95ec8
LV
216/**
217 * trace_fini_vcpu:
218 * @vcpu: Removed vCPU.
219 *
220 * Disable dynamic event state for a hot-unplugged vCPU.
221 */
222void trace_fini_vcpu(CPUState *vcpu);
223
e9527dd3
PB
224/**
225 * trace_list_events:
6745c8a0 226 * @f: Where to send output.
e9527dd3
PB
227 *
228 * List all available events.
229 */
6745c8a0 230void trace_list_events(FILE *f);
e9527dd3 231
10578a25
PB
232/**
233 * trace_enable_events:
234 * @line_buf: A string with a glob pattern of events to be enabled or,
235 * if the string starts with '-', disabled.
236 *
237 * Enable or disable matching events.
238 */
239void trace_enable_events(const char *line_buf);
240
e9e0bb2a
DL
241/**
242 * Definition of QEMU options describing trace subsystem configuration
243 */
244extern QemuOptsList qemu_trace_opts;
245
246/**
247 * trace_opt_parse:
248 * @optarg: A string argument of --trace command line argument
249 *
250 * Initialize tracing subsystem.
e9e0bb2a 251 */
92eecfff 252void trace_opt_parse(const char *optarg);
b1bae816 253
b7d48952
DB
254/**
255 * trace_get_vcpu_event_count:
256 *
257 * Return the number of known vcpu-specific events
258 */
259uint32_t trace_get_vcpu_event_count(void);
260
48151859 261
a3227142 262#include "control-internal.h"
b1bae816 263
175de524 264#endif /* TRACE__CONTROL_H */