aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/kvm/vmx.c
diff options
context:
space:
mode:
authorLaurent Vivier <Laurent.Vivier@bull.net>2007-10-25 08:18:52 -0400
committerAvi Kivity <avi@qumranet.com>2008-01-30 10:52:56 -0500
commitc20363006af64cf397519da5e984b18e6bdffd82 (patch)
tree630c69b29c57900499e291d0e01d2010812e7ae0 /drivers/kvm/vmx.c
parentcbc9402297b9a233981f74587786364cda21c771 (diff)
KVM: VMX: Let gcc to choose which registers to save (x86_64)
This patch lets GCC to determine which registers to save when we switch to/from a VCPU in the case of intel x86_64. * Original code saves following registers: rax, rbx, rcx, rdx, rsi, rdi, rbp, r8, r9, r10, r11, r12, r13, r14, r15 * Patched code: - informs GCC that we modify following registers using the clobber description: rbx, rdi, rsi, r8, r9, r10, r11, r12, r13, r14, r15 - doesn't save rax because it is an output operand (vmx->fail) - cannot put rcx in clobber description because it is an input operand, but as we modify it and we want to keep its value (vcpu), we must save it (pop/push) - rbp is saved (pop/push) because GCC seems to ignore its use in the clobber description. - rdx is saved (pop/push) because it is reserved by GCC (REGPARM) and cannot be put in the clobber description. - line "mov (%%rsp), %3 \n\t" has been removed because %3 is rcx and rcx is restored just after. - line ASM_VMX_VMWRITE_RSP_RDX() is moved out of the ifdef/else/endif Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/vmx.c')
-rw-r--r--drivers/kvm/vmx.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c
index 46b29184a4d8..56c9bcc82836 100644
--- a/drivers/kvm/vmx.c
+++ b/drivers/kvm/vmx.c
@@ -2265,16 +2265,12 @@ static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2265 asm( 2265 asm(
2266 /* Store host registers */ 2266 /* Store host registers */
2267#ifdef CONFIG_X86_64 2267#ifdef CONFIG_X86_64
2268 "push %%rax; push %%rbx; push %%rdx;" 2268 "push %%rdx; push %%rbp;"
2269 "push %%rsi; push %%rdi; push %%rbp;"
2270 "push %%r8; push %%r9; push %%r10; push %%r11;"
2271 "push %%r12; push %%r13; push %%r14; push %%r15;"
2272 "push %%rcx \n\t" 2269 "push %%rcx \n\t"
2273 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
2274#else 2270#else
2275 "pusha; push %%ecx \n\t" 2271 "pusha; push %%ecx \n\t"
2276 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
2277#endif 2272#endif
2273 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
2278 /* Check if vmlaunch of vmresume is needed */ 2274 /* Check if vmlaunch of vmresume is needed */
2279 "cmp $0, %1 \n\t" 2275 "cmp $0, %1 \n\t"
2280 /* Load guest registers. Don't clobber flags. */ 2276 /* Load guest registers. Don't clobber flags. */
@@ -2333,12 +2329,8 @@ static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2333 "mov %%r15, %c[r15](%3) \n\t" 2329 "mov %%r15, %c[r15](%3) \n\t"
2334 "mov %%cr2, %%rax \n\t" 2330 "mov %%cr2, %%rax \n\t"
2335 "mov %%rax, %c[cr2](%3) \n\t" 2331 "mov %%rax, %c[cr2](%3) \n\t"
2336 "mov (%%rsp), %3 \n\t"
2337 2332
2338 "pop %%rcx; pop %%r15; pop %%r14; pop %%r13; pop %%r12;" 2333 "pop %%rcx; pop %%rbp; pop %%rdx \n\t"
2339 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
2340 "pop %%rbp; pop %%rdi; pop %%rsi;"
2341 "pop %%rdx; pop %%rbx; pop %%rax \n\t"
2342#else 2334#else
2343 "xchg %3, (%%esp) \n\t" 2335 "xchg %3, (%%esp) \n\t"
2344 "mov %%eax, %c[rax](%3) \n\t" 2336 "mov %%eax, %c[rax](%3) \n\t"
@@ -2376,7 +2368,12 @@ static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2376 [r15]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R15])), 2368 [r15]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R15])),
2377#endif 2369#endif
2378 [cr2]"i"(offsetof(struct kvm_vcpu, cr2)) 2370 [cr2]"i"(offsetof(struct kvm_vcpu, cr2))
2379 : "cc", "memory"); 2371 : "cc", "memory"
2372#ifdef CONFIG_X86_64
2373 , "rbx", "rdi", "rsi"
2374 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
2375#endif
2376 );
2380 2377
2381 vcpu->interrupt_window_open = 2378 vcpu->interrupt_window_open =
2382 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0; 2379 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0;