Symbol: VMM_STAT
sys/amd64/vmm/io/vlapic.c
566
static VMM_STAT(VLAPIC_GRATUITOUS_EOI, "EOI without any in-service interrupt");
sys/amd64/vmm/io/vlapic.c
619
static VMM_STAT(VLAPIC_INTR_ERROR, "error interrupts generated by vlapic");
sys/amd64/vmm/io/vlapic.c
639
static VMM_STAT(VLAPIC_INTR_TIMER, "timer interrupts generated by vlapic");
sys/amd64/vmm/io/vlapic.c
653
static VMM_STAT(VLAPIC_INTR_CMC,
sys/amd64/vmm/io/vlapic.c
905
static VMM_STAT(VLAPIC_IPI_SEND, "ipis sent from vcpu");
sys/amd64/vmm/io/vlapic.c
906
static VMM_STAT(VLAPIC_IPI_RECV, "ipis received by vcpu");
sys/amd64/vmm/vmm.c
1526
static VMM_STAT(VCPU_NMI_COUNT, "number of NMIs delivered to vcpu");
sys/amd64/vmm/vmm.c
1553
static VMM_STAT(VCPU_EXTINT_COUNT, "number of ExtINTs delivered to vcpu");
sys/amd64/vmm/vmm.c
162
static VMM_STAT(VCPU_TOTAL_RUNTIME, "vcpu total runtime");
sys/amd64/vmm/vmm.c
185
VMM_STAT(VCPU_MIGRATIONS, "vcpu migration across host cpus");
sys/amd64/vmm/vmm.c
186
VMM_STAT(VMEXIT_COUNT, "total number of vm exits");
sys/amd64/vmm/vmm.c
187
VMM_STAT(VMEXIT_EXTINT, "vm exits due to external interrupt");
sys/amd64/vmm/vmm.c
188
VMM_STAT(VMEXIT_HLT, "number of times hlt was intercepted");
sys/amd64/vmm/vmm.c
189
VMM_STAT(VMEXIT_CR_ACCESS, "number of times %cr access was intercepted");
sys/amd64/vmm/vmm.c
190
VMM_STAT(VMEXIT_RDMSR, "number of times rdmsr was intercepted");
sys/amd64/vmm/vmm.c
191
VMM_STAT(VMEXIT_WRMSR, "number of times wrmsr was intercepted");
sys/amd64/vmm/vmm.c
192
VMM_STAT(VMEXIT_MTRAP, "number of monitor trap exits");
sys/amd64/vmm/vmm.c
193
VMM_STAT(VMEXIT_PAUSE, "number of times pause was intercepted");
sys/amd64/vmm/vmm.c
194
VMM_STAT(VMEXIT_INTR_WINDOW, "vm exits due to interrupt window opening");
sys/amd64/vmm/vmm.c
195
VMM_STAT(VMEXIT_NMI_WINDOW, "vm exits due to nmi window opening");
sys/amd64/vmm/vmm.c
196
VMM_STAT(VMEXIT_INOUT, "number of times in/out was intercepted");
sys/amd64/vmm/vmm.c
197
VMM_STAT(VMEXIT_CPUID, "number of times cpuid was intercepted");
sys/amd64/vmm/vmm.c
198
VMM_STAT(VMEXIT_NESTED_FAULT, "vm exits due to nested page fault");
sys/amd64/vmm/vmm.c
199
VMM_STAT(VMEXIT_INST_EMUL, "vm exits for instruction emulation");
sys/amd64/vmm/vmm.c
200
VMM_STAT(VMEXIT_UNKNOWN, "number of vm exits for unknown reason");
sys/amd64/vmm/vmm.c
201
VMM_STAT(VMEXIT_ASTPENDING, "number of times astpending at exit");
sys/amd64/vmm/vmm.c
202
VMM_STAT(VMEXIT_REQIDLE, "number of times idle requested at exit");
sys/amd64/vmm/vmm.c
203
VMM_STAT(VMEXIT_USERSPACE, "number of vm exits handled in userspace");
sys/amd64/vmm/vmm.c
204
VMM_STAT(VMEXIT_RENDEZVOUS, "number of times rendezvous pending at exit");
sys/amd64/vmm/vmm.c
205
VMM_STAT(VMEXIT_EXCEPTION, "number of vm exits due to exceptions");
sys/amd64/vmm/vmm.c
716
static VMM_STAT(VCPU_IDLE_TICKS, "number of ticks vcpu was idle");
sys/arm64/vmm/vmm.c
136
VMM_STAT(VMEXIT_COUNT, "total number of vm exits");
sys/arm64/vmm/vmm.c
137
VMM_STAT(VMEXIT_UNKNOWN, "number of vmexits for the unknown exception");
sys/arm64/vmm/vmm.c
138
VMM_STAT(VMEXIT_WFI, "number of times wfi was intercepted");
sys/arm64/vmm/vmm.c
139
VMM_STAT(VMEXIT_WFE, "number of times wfe was intercepted");
sys/arm64/vmm/vmm.c
140
VMM_STAT(VMEXIT_HVC, "number of times hvc was intercepted");
sys/arm64/vmm/vmm.c
141
VMM_STAT(VMEXIT_MSR, "number of times msr/mrs was intercepted");
sys/arm64/vmm/vmm.c
142
VMM_STAT(VMEXIT_DATA_ABORT, "number of vmexits for a data abort");
sys/arm64/vmm/vmm.c
143
VMM_STAT(VMEXIT_INSN_ABORT, "number of vmexits for an instruction abort");
sys/arm64/vmm/vmm.c
144
VMM_STAT(VMEXIT_UNHANDLED_SYNC, "number of vmexits for an unhandled synchronous exception");
sys/arm64/vmm/vmm.c
145
VMM_STAT(VMEXIT_IRQ, "number of vmexits for an irq");
sys/arm64/vmm/vmm.c
146
VMM_STAT(VMEXIT_FIQ, "number of vmexits for an interrupt");
sys/arm64/vmm/vmm.c
147
VMM_STAT(VMEXIT_BRK, "number of vmexits for a breakpoint exception");
sys/arm64/vmm/vmm.c
148
VMM_STAT(VMEXIT_SS, "number of vmexits for a single-step exception");
sys/arm64/vmm/vmm.c
149
VMM_STAT(VMEXIT_UNHANDLED_EL2, "number of vmexits for an unhandled EL2 exception");
sys/arm64/vmm/vmm.c
150
VMM_STAT(VMEXIT_UNHANDLED, "number of vmexits for an unhandled exception");
sys/arm64/vmm/vmm.c
79
static VMM_STAT(VCPU_TOTAL_RUNTIME, "vcpu total runtime");
sys/riscv/vmm/vmm.c
83
static VMM_STAT(VCPU_TOTAL_RUNTIME, "vcpu total runtime");
sys/riscv/vmm/vmm.c
86
VMM_STAT(VMEXIT_COUNT, "total number of vm exits");
sys/riscv/vmm/vmm.c
87
VMM_STAT(VMEXIT_IRQ, "number of vmexits for an irq");
sys/riscv/vmm/vmm.c
88
VMM_STAT(VMEXIT_UNHANDLED, "number of vmexits for an unhandled exception");