cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

nvmm-accel-ops.h (679B)


      1/*
      2 * Copyright (c) 2018-2019 Maxime Villard, All rights reserved.
      3 *
      4 * NetBSD Virtual Machine Monitor (NVMM) accelerator for QEMU.
      5 *
      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.
      8 */
      9
     10#ifndef NVMM_CPUS_H
     11#define NVMM_CPUS_H
     12
     13#include "sysemu/cpus.h"
     14
     15int nvmm_init_vcpu(CPUState *cpu);
     16int nvmm_vcpu_exec(CPUState *cpu);
     17void nvmm_destroy_vcpu(CPUState *cpu);
     18
     19void nvmm_cpu_synchronize_state(CPUState *cpu);
     20void nvmm_cpu_synchronize_post_reset(CPUState *cpu);
     21void nvmm_cpu_synchronize_post_init(CPUState *cpu);
     22void nvmm_cpu_synchronize_pre_loadvm(CPUState *cpu);
     23
     24#endif /* NVMM_CPUS_H */