Lines Matching full:event_inj
1198 uint32_t event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj));
1199 if (!(event_inj & SVM_EVTINJ_VALID)) {
1205 event_inj = intno | type | SVM_EVTINJ_VALID;
1207 event_inj |= SVM_EVTINJ_VALID_ERR;
1210 stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj), event_inj);
1277 uint32_t event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj));
1278 stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj), event_inj & ~SVM_EVTINJ_VALID);
4937 uint32_t event_inj;
5060 event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj));
5061 if (event_inj & SVM_EVTINJ_VALID) {
5062 uint8_t vector = event_inj & SVM_EVTINJ_VEC_MASK;
5063 uint16_t valid_err = event_inj & SVM_EVTINJ_VALID_ERR;
5068 switch (event_inj & SVM_EVTINJ_TYPE_MASK) {
5403 ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj)));