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

trace-events (2483B)


      1# See docs/devel/tracing.rst for syntax documentation.
      2
      3# kvm.c
      4kvm_failed_spr_set(int spr, const char *msg) "Warning: Unable to set SPR %d to KVM: %s"
      5kvm_failed_spr_get(int spr, const char *msg) "Warning: Unable to retrieve SPR %d from KVM: %s"
      6kvm_failed_fpscr_set(const char *msg) "Unable to set FPSCR to KVM: %s"
      7kvm_failed_fp_set(const char *fpname, int fpnum, const char *msg) "Unable to set %s%d to KVM: %s"
      8kvm_failed_vscr_set(const char *msg) "Unable to set VSCR to KVM: %s"
      9kvm_failed_vr_set(int vr, const char *msg) "Unable to set VR%d to KVM: %s"
     10kvm_failed_fpscr_get(const char *msg) "Unable to get FPSCR from KVM: %s"
     11kvm_failed_fp_get(const char *fpname, int fpnum, const char *msg) "Unable to get %s%d from KVM: %s"
     12kvm_failed_vscr_get(const char *msg) "Unable to get VSCR from KVM: %s"
     13kvm_failed_vr_get(int vr, const char *msg) "Unable to get VR%d from KVM: %s"
     14kvm_failed_vpa_addr_get(const char *msg) "Unable to get VPA address from KVM: %s"
     15kvm_failed_slb_get(const char *msg) "Unable to get SLB shadow state from KVM: %s"
     16kvm_failed_dtl_get(const char *msg) "Unable to get dispatch trace log state from KVM: %s"
     17kvm_failed_vpa_addr_set(const char *msg) "Unable to set VPA address to KVM: %s"
     18kvm_failed_slb_set(const char *msg) "Unable to set SLB shadow state to KVM: %s"
     19kvm_failed_dtl_set(const char *msg) "Unable to set dispatch trace log state to KVM: %s"
     20kvm_failed_null_vpa_addr_set(const char *msg) "Unable to set VPA address to KVM: %s"
     21kvm_failed_put_vpa(void) "Warning: Unable to set VPA information to KVM"
     22kvm_failed_get_vpa(void) "Warning: Unable to get VPA information from KVM"
     23kvm_handle_dcr_write(void) "handle dcr write"
     24kvm_handle_dcr_read(void) "handle dcr read"
     25kvm_handle_halt(void) "handle halt"
     26kvm_handle_papr_hcall(void) "handle PAPR hypercall"
     27kvm_handle_epr(void) "handle epr"
     28kvm_handle_watchdog_expiry(void) "handle watchdog expiry"
     29kvm_handle_debug_exception(void) "handle debug exception"
     30kvm_handle_nmi_exception(void) "handle NMI exception"
     31
     32# excp_helper.c
     33ppc_excp_rfi(uint64_t nip, uint64_t msr) "Return from exception at 0x%" PRIx64 " with flags 0x%016" PRIx64
     34ppc_excp_dsi(uint64_t dsisr, uint64_t dar) "DSI exception: DSISR=0x%" PRIx64 " DAR=0x%" PRIx64
     35ppc_excp_isi(uint64_t msr, uint64_t nip) "ISI exception: msr=0x%016" PRIx64 " nip=0x%" PRIx64
     36ppc_excp_fp_ignore(void) "Ignore floating point exception"
     37ppc_excp_inval(uint64_t nip) "Invalid instruction at 0x%" PRIx64
     38ppc_excp_print(const char *excp) "%s exception"