2016-07-11 12:53:41 +02:00
|
|
|
/*
|
|
|
|
* Interface for configuring and controlling the state of tracing events.
|
|
|
|
*
|
2017-06-25 13:08:38 +02:00
|
|
|
* Copyright (C) 2014-2017 Lluís Vilanova <vilanova@ac.upc.edu>
|
2016-07-11 12:53:41 +02:00
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
2023-04-27 04:09:24 +02:00
|
|
|
#include "qemu/lockable.h"
|
2016-07-11 12:53:41 +02:00
|
|
|
#include "cpu.h"
|
2020-02-04 12:20:10 +01:00
|
|
|
#include "trace/trace-root.h"
|
2016-07-11 12:53:41 +02:00
|
|
|
#include "trace/control.h"
|
|
|
|
|
|
|
|
|
2016-08-23 10:58:52 +02:00
|
|
|
void trace_event_set_state_dynamic_init(TraceEvent *ev, bool state)
|
|
|
|
{
|
2016-08-23 10:58:58 +02:00
|
|
|
bool state_pre;
|
2016-08-23 10:58:52 +02:00
|
|
|
assert(trace_event_get_state_static(ev));
|
2016-08-23 10:58:58 +02:00
|
|
|
/*
|
|
|
|
* We ignore the "vcpu" property here, since no vCPUs have been created
|
|
|
|
* yet. Then dstate can only be 1 or 0.
|
|
|
|
*/
|
2016-10-04 15:35:45 +02:00
|
|
|
state_pre = *ev->dstate;
|
2016-08-23 10:58:58 +02:00
|
|
|
if (state_pre != state) {
|
|
|
|
if (state) {
|
|
|
|
trace_events_enabled_count++;
|
2016-10-04 15:35:45 +02:00
|
|
|
*ev->dstate = 1;
|
2016-08-23 10:58:58 +02:00
|
|
|
} else {
|
|
|
|
trace_events_enabled_count--;
|
2016-10-04 15:35:45 +02:00
|
|
|
*ev->dstate = 0;
|
2016-08-23 10:58:58 +02:00
|
|
|
}
|
|
|
|
}
|
2016-08-23 10:58:52 +02:00
|
|
|
}
|
|
|
|
|
2016-07-11 12:53:41 +02:00
|
|
|
void trace_event_set_state_dynamic(TraceEvent *ev, bool state)
|
|
|
|
{
|
|
|
|
assert(trace_event_get_state_static(ev));
|
|
|
|
|
2023-05-26 18:53:57 +02:00
|
|
|
/*
|
|
|
|
* There is no longer a "vcpu" property, dstate can only be 1 or
|
|
|
|
* 0. With it, we haven't instantiated any vCPU yet, so we will
|
|
|
|
* set a global state instead, and trace_init_vcpu will reconcile
|
|
|
|
* it afterwards.
|
|
|
|
*/
|
|
|
|
bool state_pre = *ev->dstate;
|
2016-07-11 12:53:41 +02:00
|
|
|
if (state_pre != state) {
|
|
|
|
if (state) {
|
|
|
|
trace_events_enabled_count++;
|
2023-05-26 18:53:57 +02:00
|
|
|
*ev->dstate = 1;
|
2016-07-11 12:53:41 +02:00
|
|
|
} else {
|
|
|
|
trace_events_enabled_count--;
|
2023-05-26 18:53:57 +02:00
|
|
|
*ev->dstate = 0;
|
2016-09-19 14:55:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|