2 * Interface for configuring and controlling the state of tracing events.
4 * Copyright (C) 2011-2016 LluĂs Vilanova <vilanova@ac.upc.edu>
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.
10 #ifndef TRACE__CONTROL_H
11 #define TRACE__CONTROL_H
13 #include "event-internal.h"
15 typedef struct TraceEventIter
{
19 /* filter conditions */
26 * trace_event_iter_init_all:
27 * @iter: the event iterator struct
29 * Initialize the event iterator struct @iter,
32 void trace_event_iter_init_all(TraceEventIter
*iter
);
35 * trace_event_iter_init_pattern:
36 * @iter: the event iterator struct
37 * @pattern: pattern to filter events on name
39 * Initialize the event iterator struct @iter,
40 * using @pattern to filter out events
41 * with non-matching names.
43 void trace_event_iter_init_pattern(TraceEventIter
*iter
, const char *pattern
);
46 * trace_event_iter_init_group:
47 * @iter: the event iterator struct
48 * @group_id: group_id to filter events by group.
50 * Initialize the event iterator struct @iter,
51 * using @group_id to filter for events in the group.
53 void trace_event_iter_init_group(TraceEventIter
*iter
, size_t group_id
);
56 * trace_event_iter_next:
57 * @iter: the event iterator struct
59 * Get the next event, if any. When this returns NULL,
60 * the iterator should no longer be used.
62 * Returns: the next event, or NULL if no more events exist
64 TraceEvent
*trace_event_iter_next(TraceEventIter
*iter
);
71 * Search an event by its name.
73 * Returns: pointer to #TraceEvent or NULL if not found.
75 TraceEvent
*trace_event_name(const char *name
);
78 * trace_event_is_pattern:
80 * Whether the given string is an event name pattern.
82 static bool trace_event_is_pattern(const char *str
);
88 * Get the identifier of an event.
90 static uint32_t trace_event_get_id(TraceEvent
*ev
);
93 * trace_event_get_vcpu_id:
95 * Get the per-vCPU identifier of an event.
97 * Special value #TRACE_VCPU_EVENT_NONE means the event is not vCPU-specific
98 * (does not have the "vcpu" property).
100 static uint32_t trace_event_get_vcpu_id(TraceEvent
*ev
);
103 * trace_event_is_vcpu:
105 * Whether this is a per-vCPU event.
107 static bool trace_event_is_vcpu(TraceEvent
*ev
);
110 * trace_event_get_name:
112 * Get the name of an event.
114 static const char * trace_event_get_name(TraceEvent
*ev
);
117 * trace_event_get_state:
118 * @id: Event identifier name.
120 * Get the tracing state of an event, both static and the QEMU dynamic state.
122 * If the event has the disabled property, the check will have no performance
125 #define trace_event_get_state(id) \
126 ((id ##_ENABLED) && trace_event_get_state_dynamic_by_id(id))
129 * trace_event_get_state_backends:
130 * @id: Event identifier name.
132 * Get the tracing state of an event, both static and dynamic state from all
133 * compiled-in backends.
135 * If the event has the disabled property, the check will have no performance
138 * Returns: true if at least one backend has the event enabled and the event
139 * does not have the disabled property.
141 #define trace_event_get_state_backends(id) \
142 ((id ##_ENABLED) && id ##_BACKEND_DSTATE())
145 * trace_event_get_state_static:
146 * @id: Event identifier.
148 * Get the static tracing state of an event.
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).
153 static bool trace_event_get_state_static(TraceEvent
*ev
);
156 * trace_event_get_state_dynamic:
158 * Get the dynamic tracing state of an event.
160 * If the event has the 'vcpu' property, gets the OR'ed state of all vCPUs.
162 static bool trace_event_get_state_dynamic(TraceEvent
*ev
);
165 * trace_event_set_state_dynamic:
167 * Set the dynamic tracing state of an event.
169 * If the event has the 'vcpu' property, sets the state on all vCPUs.
171 * Pre-condition: trace_event_get_state_static(ev) == true
173 void trace_event_set_state_dynamic(TraceEvent
*ev
, bool state
);
176 * trace_event_set_vcpu_state_dynamic:
178 * Set the dynamic tracing state of an event for the given vCPU.
180 * Pre-condition: trace_event_get_vcpu_state_static(ev) == true
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).
185 void trace_event_set_vcpu_state_dynamic(CPUState
*vcpu
,
186 TraceEvent
*ev
, bool state
);
191 * trace_init_backends:
193 * Initialize the tracing backend.
195 * Returns: Whether the backends could be successfully initialized.
197 bool trace_init_backends(void);
202 * Record the name of the output file for the tracing backend.
203 * Exits if no selected backend does not support specifying the
204 * output file, and a file was specified with "-trace file=...".
206 void trace_init_file(void);
212 * Set initial dynamic event state for a hot-plugged vCPU.
214 void trace_init_vcpu(CPUState
*vcpu
);
218 * @vcpu: Removed vCPU.
220 * Disable dynamic event state for a hot-unplugged vCPU.
222 void trace_fini_vcpu(CPUState
*vcpu
);
226 * @f: Where to send output.
228 * List all available events.
230 void trace_list_events(FILE *f
);
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.
237 * Enable or disable matching events.
239 void trace_enable_events(const char *line_buf
);
242 * Definition of QEMU options describing trace subsystem configuration
244 extern QemuOptsList qemu_trace_opts
;
248 * @optarg: A string argument of --trace command line argument
250 * Initialize tracing subsystem.
252 void trace_opt_parse(const char *optarg
);
255 * trace_get_vcpu_event_count:
257 * Return the number of known vcpu-specific events
259 uint32_t trace_get_vcpu_event_count(void);
262 #include "control-internal.h"
264 #endif /* TRACE__CONTROL_H */