Home | History | Annotate | Download | only in target-i386

Lines Matching refs:event_inj

1034     uint32_t event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj));
1035 if (!(event_inj & SVM_EVTINJ_VALID)) {
1041 event_inj = intno | type | SVM_EVTINJ_VALID;
1043 event_inj |= SVM_EVTINJ_VALID_ERR;
1046 stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj), event_inj);
1114 uint32_t event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj));
1115 stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj), event_inj & ~SVM_EVTINJ_VALID);