KVM: x86 emulator: advance RIP outside x86 emulator code
authorGleb Natapov <gleb@redhat.com>
Wed, 28 Apr 2010 16:15:39 +0000 (19:15 +0300)
committerAvi Kivity <avi@redhat.com>
Sun, 1 Aug 2010 07:35:35 +0000 (10:35 +0300)
Return new RIP as part of instruction emulation result instead of
updating KVM's RIP from x86 emulator code.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/emulate.c
arch/x86/kvm/x86.c

index d7a18a0f80a263e513a3c53535fa88f0068f36e8..437f31bcffeaf8849008e7b39ddcad107e5ff623 100644 (file)
@@ -2496,8 +2496,9 @@ int emulator_task_switch(struct x86_emulate_ctxt *ctxt,
 
        if (rc == X86EMUL_CONTINUE) {
                memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
-               kvm_rip_write(ctxt->vcpu, c->eip);
                rc = writeback(ctxt, ops);
+               if (rc == X86EMUL_CONTINUE)
+                       ctxt->eip = c->eip;
        }
 
        return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
@@ -2554,7 +2555,7 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
                if (address_mask(c, c->regs[VCPU_REGS_RCX]) == 0) {
                string_done:
                        ctxt->restart = false;
-                       kvm_rip_write(ctxt->vcpu, c->eip);
+                       ctxt->eip = c->eip;
                        goto done;
                }
                /* The second termination condition only applies for REPE
@@ -3032,7 +3033,7 @@ writeback:
        ctxt->decode.mem_read.end = 0;
        /* Commit shadow register state. */
        memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
-       kvm_rip_write(ctxt->vcpu, c->eip);
+       ctxt->eip = c->eip;
        ops->set_rflags(ctxt->vcpu, ctxt->eflags);
 
 done:
index 9e5a833f3392f5b44b1f24363fe7f1e3e0879cf4..8f45cc712dda2775dfc9c71f712e819f3caf3504 100644 (file)
@@ -3941,6 +3941,7 @@ restart:
 
        shadow_mask = vcpu->arch.emulate_ctxt.interruptibility;
        kvm_x86_ops->set_interrupt_shadow(vcpu, shadow_mask);
+       kvm_rip_write(vcpu, vcpu->arch.emulate_ctxt.eip);
 
        if (vcpu->arch.pio.count) {
                if (!vcpu->arch.pio.in)
@@ -4945,6 +4946,7 @@ int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int reason,
        if (ret)
                return EMULATE_FAIL;
 
+       kvm_rip_write(vcpu, vcpu->arch.emulate_ctxt.eip);
        kvm_x86_ops->set_rflags(vcpu, vcpu->arch.emulate_ctxt.eflags);
        return EMULATE_DONE;
 }