From 71bf994214af2420c99a3b738956e5acdf20860b Mon Sep 17 00:00:00 2001 From: "Michael S. Tsirkin" Date: Sun, 4 Mar 2018 01:38:18 -0500 Subject: [PATCH] cpu: add APIs to allocate/free CPU environment These will be implemented and then used by follow-up patches. Backports commit e2a7f28693aea7e194ec1435697ec4feb24f8a6f from qemu --- qemu/include/qom/cpu.h | 31 +++++++++++++++++++++++++++++++ qemu/qom/cpu.c | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) diff --git a/qemu/include/qom/cpu.h b/qemu/include/qom/cpu.h index 5198a9a5..f9071012 100644 --- a/qemu/include/qom/cpu.h +++ b/qemu/include/qom/cpu.h @@ -138,6 +138,10 @@ typedef struct CPUClass { void (*dump_statistics)(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf, int flags); int64_t (*get_arch_id)(CPUState *cpu); + void * (*alloc_env)(CPUState *cpu); + void (*get_env)(CPUState *cpu, void *env); + void (*set_env)(CPUState *cpu, void *env); + void (*free_env)(CPUState *cpu, void *env); bool (*get_paging_enabled)(const CPUState *cpu); void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list, Error **errp); @@ -346,6 +350,33 @@ static inline void cpu_tb_jmp_cache_clear(CPUState *cpu) extern bool mttcg_enabled; #define qemu_tcg_mttcg_enabled() (mttcg_enabled) +/** + * cpu_alloc_env: allocate CPU environment structure + * @cpu: allocate environment structure for this CPU + */ +void *cpu_alloc_env(CPUState *cpu); + +/** + * cpu_get_env: retrieve CPU environment structure + * @cpu: CPU to use + * @env: environment structure to use + */ +void cpu_get_env(CPUState *cpu, void *env); + +/** + * cpu_set_env: switch to given CPU environment + * @cpu: CPU to use + * @env: environment structure to use + */ +void cpu_set_env(CPUState *cpu, void *env); + +/** + * cpu_free_env: free CPU environment structure + * @cpu: free environment structure for this CPU + * @env: structure to free + */ +void cpu_free_env(CPUState *cpu, void *env); + /** * cpu_paging_enabled: * @cpu: The CPU whose state is to be inspected. diff --git a/qemu/qom/cpu.c b/qemu/qom/cpu.c index 265be07c..a78df8b8 100644 --- a/qemu/qom/cpu.c +++ b/qemu/qom/cpu.c @@ -74,6 +74,40 @@ out: return cpu; } +void *cpu_alloc_env(CPUState *cpu) +{ + CPUClass *cc = CPU_GET_CLASS(cpu); + + return cc->alloc_env ? cc->alloc_env(cpu) : NULL; +} + +void cpu_get_env(CPUState *cpu, void *env) +{ + CPUClass *cc = CPU_GET_CLASS(cpu); + + if (cc->get_env) { + cc->get_env(cpu, env); + } +} + +void cpu_set_env(CPUState *cpu, void *env) +{ + CPUClass *cc = CPU_GET_CLASS(cpu); + + if (cc->set_env) { + cc->set_env(cpu, env); + } +} + +void cpu_free_env(CPUState *cpu, void *env) +{ + CPUClass *cc = CPU_GET_CLASS(cpu); + + if (cc->free_env) { + cc->free_env(cpu, env); + } +} + bool cpu_paging_enabled(const CPUState *cpu) { CPUClass *cc = CPU_GET_CLASS(cpu->uc, cpu);