diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-04 17:39:33 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-04 17:39:33 +0000 |
commit | 33c263df7f87ca0cd170a6017a668205488ab010 (patch) | |
tree | 27b748ccdc0758a9af86122d1e054357ace0b2fa /target-i386/op_helper.c | |
parent | Explicitly free temporaries. (diff) | |
download | qemu-kvm-33c263df7f87ca0cd170a6017a668205488ab010.tar.gz qemu-kvm-33c263df7f87ca0cd170a6017a668205488ab010.tar.bz2 qemu-kvm-33c263df7f87ca0cd170a6017a668205488ab010.zip |
SVM: added tsc_offset
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4668 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op_helper.c')
-rw-r--r-- | target-i386/op_helper.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 810c4665f..ebeeebdec 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -3005,7 +3005,7 @@ void helper_rdtsc(void) } helper_svm_check_intercept_param(SVM_EXIT_RDTSC, 0); - val = cpu_get_tsc(env); + val = cpu_get_tsc(env) + env->tsc_offset; EAX = (uint32_t)(val); EDX = (uint32_t)(val >> 32); } @@ -4851,6 +4851,8 @@ void helper_vmrun(int aflag, int next_eip_addend) /* enable intercepts */ env->hflags |= HF_SVMI_MASK; + env->tsc_offset = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, control.tsc_offset)); + env->gdt.base = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.base)); env->gdt.limit = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.limit)); @@ -5226,6 +5228,7 @@ void helper_vmexit(uint32_t exit_code, uint64_t exit_info_1) env->intercept = 0; env->intercept_exceptions = 0; env->interrupt_request &= ~CPU_INTERRUPT_VIRQ; + env->tsc_offset = 0; env->gdt.base = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.base)); env->gdt.limit = ldl_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.limit)); |