2020-07-07 11:54:37 +03:00
|
|
|
/*
|
|
|
|
* Accelerator CPUS Interface
|
|
|
|
*
|
|
|
|
* Copyright 2020 SUSE LLC
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KVM_CPUS_H
|
|
|
|
#define KVM_CPUS_H
|
|
|
|
|
|
|
|
#include "sysemu/cpus.h"
|
|
|
|
|
2020-07-23 19:09:15 +03:00
|
|
|
int kvm_init_vcpu(CPUState *cpu, Error **errp);
|
2020-08-11 20:08:23 +03:00
|
|
|
int kvm_cpu_exec(CPUState *cpu);
|
|
|
|
void kvm_destroy_vcpu(CPUState *cpu);
|
|
|
|
void kvm_cpu_synchronize_post_reset(CPUState *cpu);
|
|
|
|
void kvm_cpu_synchronize_post_init(CPUState *cpu);
|
|
|
|
void kvm_cpu_synchronize_pre_loadvm(CPUState *cpu);
|
2022-09-29 14:42:25 +03:00
|
|
|
bool kvm_supports_guest_debug(void);
|
2022-12-06 18:20:27 +03:00
|
|
|
int kvm_insert_breakpoint(CPUState *cpu, int type, vaddr addr, vaddr len);
|
|
|
|
int kvm_remove_breakpoint(CPUState *cpu, int type, vaddr addr, vaddr len);
|
2022-09-29 14:42:24 +03:00
|
|
|
void kvm_remove_all_breakpoints(CPUState *cpu);
|
2020-08-11 20:08:23 +03:00
|
|
|
|
2020-07-07 11:54:37 +03:00
|
|
|
#endif /* KVM_CPUS_H */
|