Lines Matching full:int_ctl
4938 uint32_t int_ctl;
5009 int_ctl = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl));
5011 if (int_ctl & V_INTR_MASKING_MASK) {
5012 env->v_tpr = int_ctl & V_TPR_MASK;
5055 if (int_ctl & V_IRQ_MASK) {
5304 uint32_t int_ctl;
5340 int_ctl = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl));
5341 int_ctl &= ~(V_TPR_MASK | V_IRQ_MASK);
5342 int_ctl |= env->v_tpr & V_TPR_MASK;
5344 int_ctl |= V_IRQ_MASK;
5345 stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl), int_ctl);