control-target.c 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * Interface for configuring and controlling the state of tracing events.
 *
 * Copyright (C) 2014-2016 Lluís Vilanova <vilanova@ac.upc.edu>
 *
 * 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"
#include "cpu.h"
12
#include "trace-root.h"
13 14 15 16
#include "trace/control.h"
#include "translate-all.h"


17 18
void trace_event_set_state_dynamic_init(TraceEvent *ev, bool state)
{
19
    bool state_pre;
20
    assert(trace_event_get_state_static(ev));
21 22 23 24
    /*
     * We ignore the "vcpu" property here, since no vCPUs have been created
     * yet. Then dstate can only be 1 or 0.
     */
25
    state_pre = *ev->dstate;
26 27 28
    if (state_pre != state) {
        if (state) {
            trace_events_enabled_count++;
29
            *ev->dstate = 1;
30 31
        } else {
            trace_events_enabled_count--;
32
            *ev->dstate = 0;
33 34
        }
    }
35 36
}

37 38 39 40 41 42 43 44 45
void trace_event_set_state_dynamic(TraceEvent *ev, bool state)
{
    CPUState *vcpu;
    assert(trace_event_get_state_static(ev));
    if (trace_event_is_vcpu(ev)) {
        CPU_FOREACH(vcpu) {
            trace_event_set_vcpu_state_dynamic(vcpu, ev, state);
        }
    } else {
46
        /* Without the "vcpu" property, dstate can only be 1 or 0 */
47
        bool state_pre = *ev->dstate;
48 49 50
        if (state_pre != state) {
            if (state) {
                trace_events_enabled_count++;
51
                *ev->dstate = 1;
52 53
            } else {
                trace_events_enabled_count--;
54
                *ev->dstate = 0;
55 56
            }
        }
57 58 59 60 61 62
    }
}

void trace_event_set_vcpu_state_dynamic(CPUState *vcpu,
                                        TraceEvent *ev, bool state)
{
63
    uint32_t vcpu_id;
64 65 66 67 68 69 70 71 72
    bool state_pre;
    assert(trace_event_get_state_static(ev));
    assert(trace_event_is_vcpu(ev));
    vcpu_id = trace_event_get_vcpu_id(ev);
    state_pre = test_bit(vcpu_id, vcpu->trace_dstate);
    if (state_pre != state) {
        if (state) {
            trace_events_enabled_count++;
            set_bit(vcpu_id, vcpu->trace_dstate);
73
            (*ev->dstate)++;
74 75 76
        } else {
            trace_events_enabled_count--;
            clear_bit(vcpu_id, vcpu->trace_dstate);
77
            (*ev->dstate)--;
78 79 80
        }
    }
}
81

82
static bool adding_first_cpu1(void)
83 84 85 86 87 88 89 90 91 92 93 94
{
    CPUState *cpu;
    size_t count = 0;
    CPU_FOREACH(cpu) {
        count++;
        if (count > 1) {
            return false;
        }
    }
    return true;
}

95 96 97 98 99 100 101 102 103
static bool adding_first_cpu(void)
{
    bool res;
    cpu_list_lock();
    res = adding_first_cpu1();
    cpu_list_unlock();
    return res;
}

104 105
void trace_init_vcpu(CPUState *vcpu)
{
106 107 108 109
    TraceEventIter iter;
    TraceEvent *ev;
    trace_event_iter_init(&iter, NULL);
    while ((ev = trace_event_iter_next(&iter)) != NULL) {
110 111 112 113 114
        if (trace_event_is_vcpu(ev) &&
            trace_event_get_state_static(ev) &&
            trace_event_get_state_dynamic(ev)) {
            if (adding_first_cpu()) {
                /* check preconditions */
115
                assert(*ev->dstate == 1);
116
                /* disable early-init state ... */
117
                *ev->dstate = 0;
118 119 120 121 122 123 124 125
                trace_events_enabled_count--;
                /* ... and properly re-enable */
                trace_event_set_vcpu_state_dynamic(vcpu, ev, true);
            } else {
                trace_event_set_vcpu_state_dynamic(vcpu, ev, true);
            }
        }
    }
126
    trace_guest_cpu_enter(vcpu);
127
}