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_INTERNAL_H
11 #define TRACE__CONTROL_INTERNAL_H
13 #include <stddef.h> /* size_t */
18 extern TraceEvent trace_events
[];
19 extern uint16_t trace_events_dstate
[];
20 extern int trace_events_enabled_count
;
23 static inline TraceEventID
trace_event_count(void)
25 return TRACE_EVENT_COUNT
;
28 static inline TraceEvent
*trace_event_id(TraceEventID id
)
30 assert(id
< trace_event_count());
31 return &trace_events
[id
];
34 static inline bool trace_event_is_pattern(const char *str
)
37 return strchr(str
, '*') != NULL
;
40 static inline TraceEventID
trace_event_get_id(TraceEvent
*ev
)
46 static inline TraceEventVCPUID
trace_event_get_vcpu_id(TraceEvent
*ev
)
51 static inline bool trace_event_is_vcpu(TraceEvent
*ev
)
53 return ev
->vcpu_id
!= TRACE_VCPU_EVENT_COUNT
;
56 static inline const char * trace_event_get_name(TraceEvent
*ev
)
62 static inline bool trace_event_get_state_static(TraceEvent
*ev
)
68 static inline bool trace_event_get_state_dynamic_by_id(TraceEventID id
)
70 /* it's on fast path, avoid consistency checks (asserts) */
71 return unlikely(trace_events_enabled_count
) && trace_events_dstate
[id
];
74 static inline bool trace_event_get_state_dynamic(TraceEvent
*ev
)
77 assert(trace_event_get_state_static(ev
));
78 id
= trace_event_get_id(ev
);
79 return trace_event_get_state_dynamic_by_id(id
);
82 static inline bool trace_event_get_vcpu_state_dynamic_by_vcpu_id(CPUState
*vcpu
,
85 /* it's on fast path, avoid consistency checks (asserts) */
86 if (unlikely(trace_events_enabled_count
)) {
87 return test_bit(id
, vcpu
->trace_dstate
);
93 static inline bool trace_event_get_vcpu_state_dynamic(CPUState
*vcpu
,
97 assert(trace_event_is_vcpu(ev
));
98 id
= trace_event_get_vcpu_id(ev
);
99 return trace_event_get_vcpu_state_dynamic_by_vcpu_id(vcpu
, id
);
102 #endif /* TRACE__CONTROL_INTERNAL_H */