[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/VMX: switch away from temporary 32-bit register names
commit 02cccf38d201ea35a883e9b6b1c2c3cf01ea9dde Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Mar 2 16:07:42 2017 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Mar 2 16:07:42 2017 +0100 x86/VMX: switch away from temporary 32-bit register names Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Kevin Tian <kevin.tian@xxxxxxxxx> --- xen/arch/x86/hvm/vmx/realmode.c | 4 ++-- xen/arch/x86/hvm/vmx/vmx.c | 42 ++++++++++++++++++++--------------------- xen/arch/x86/hvm/vmx/vvmx.c | 12 ++++++------ 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/xen/arch/x86/hvm/vmx/realmode.c b/xen/arch/x86/hvm/vmx/realmode.c index dad34d6..7b908c7 100644 --- a/xen/arch/x86/hvm/vmx/realmode.c +++ b/xen/arch/x86/hvm/vmx/realmode.c @@ -71,7 +71,7 @@ static void realmode_deliver_exception( /* We can't test hvmemul_ctxt->ctxt.sp_size: it may not be initialised. */ if ( hvmemul_ctxt->seg_reg[x86_seg_ss].attr.fields.db ) - pstk = regs->_esp -= 6; + pstk = regs->esp -= 6; else pstk = regs->sp -= 6; @@ -81,7 +81,7 @@ static void realmode_deliver_exception( csr->sel = cs_eip >> 16; csr->base = (uint32_t)csr->sel << 4; regs->ip = (uint16_t)cs_eip; - regs->_eflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF | X86_EFLAGS_RF); + regs->eflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF | X86_EFLAGS_RF); /* Exception delivery clears STI and MOV-SS blocking. */ if ( hvmemul_ctxt->intr_shadow & diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c index 5b1717d..b3d274b 100644 --- a/xen/arch/x86/hvm/vmx/vmx.c +++ b/xen/arch/x86/hvm/vmx/vmx.c @@ -549,7 +549,7 @@ int vmx_guest_x86_mode(struct vcpu *v) if ( unlikely(!(v->arch.hvm_vcpu.guest_cr[0] & X86_CR0_PE)) ) return 0; - if ( unlikely(guest_cpu_user_regs()->_eflags & X86_EFLAGS_VM) ) + if ( unlikely(guest_cpu_user_regs()->eflags & X86_EFLAGS_VM) ) return 1; __vmread(GUEST_CS_AR_BYTES, &cs_ar_bytes); if ( hvm_long_mode_enabled(v) && @@ -1670,7 +1670,7 @@ static void vmx_inject_event(const struct x86_event *event) switch ( _event.vector | -(_event.type == X86_EVENTTYPE_SW_INTERRUPT) ) { case TRAP_debug: - if ( guest_cpu_user_regs()->_eflags & X86_EFLAGS_TF ) + if ( guest_cpu_user_regs()->eflags & X86_EFLAGS_TF ) { __restore_debug_registers(curr); write_debugreg(6, read_debugreg(6) | DR_STEP); @@ -1770,7 +1770,7 @@ static void vmx_set_info_guest(struct vcpu *v) */ __vmread(GUEST_INTERRUPTIBILITY_INFO, &intr_shadow); if ( v->domain->debugger_attached && - (v->arch.user_regs._eflags & X86_EFLAGS_TF) && + (v->arch.user_regs.eflags & X86_EFLAGS_TF) && (intr_shadow & VMX_INTR_SHADOW_STI) ) { intr_shadow &= ~VMX_INTR_SHADOW_STI; @@ -2012,8 +2012,8 @@ static int vmx_vcpu_emulate_vmfunc(const struct cpu_user_regs *regs) struct vcpu *curr = current; if ( !cpu_has_vmx_vmfunc && altp2m_active(curr->domain) && - regs->_eax == 0 && - p2m_switch_vcpu_altp2m_by_id(curr, regs->_ecx) ) + regs->eax == 0 && + p2m_switch_vcpu_altp2m_by_id(curr, regs->ecx) ) rc = X86EMUL_OKAY; return rc; @@ -2336,7 +2336,7 @@ void update_guest_eip(void) unsigned long x; regs->rip += get_instruction_length(); /* Safe: callers audited */ - regs->_eflags &= ~X86_EFLAGS_RF; + regs->eflags &= ~X86_EFLAGS_RF; __vmread(GUEST_INTERRUPTIBILITY_INFO, &x); if ( x & (VMX_INTR_SHADOW_STI | VMX_INTR_SHADOW_MOV_SS) ) @@ -2345,7 +2345,7 @@ void update_guest_eip(void) __vmwrite(GUEST_INTERRUPTIBILITY_INFO, x); } - if ( regs->_eflags & X86_EFLAGS_TF ) + if ( regs->eflags & X86_EFLAGS_TF ) hvm_inject_hw_exception(TRAP_debug, X86_EVENT_NO_EC); } @@ -2366,7 +2366,7 @@ static void vmx_fpu_dirty_intercept(void) static int vmx_do_cpuid(struct cpu_user_regs *regs) { struct vcpu *curr = current; - uint32_t leaf = regs->_eax, subleaf = regs->_ecx; + uint32_t leaf = regs->eax, subleaf = regs->ecx; struct cpuid_leaf res; if ( hvm_check_cpuid_faulting(current) ) @@ -3159,8 +3159,8 @@ void vmx_enter_realmode(struct cpu_user_regs *regs) /* Adjust RFLAGS to enter virtual 8086 mode with IOPL == 3. Since * we have CR4.VME == 1 and our own TSS with an empty interrupt * redirection bitmap, all software INTs will be handled by vm86 */ - v->arch.hvm_vmx.vm86_saved_eflags = regs->_eflags; - regs->_eflags |= (X86_EFLAGS_VM | X86_EFLAGS_IOPL); + v->arch.hvm_vmx.vm86_saved_eflags = regs->eflags; + regs->eflags |= (X86_EFLAGS_VM | X86_EFLAGS_IOPL); } static int vmx_handle_eoi_write(void) @@ -3302,10 +3302,10 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) if ( hvm_long_mode_enabled(v) ) HVMTRACE_ND(VMEXIT64, 0, 1/*cycles*/, 3, exit_reason, - regs->_eip, regs->rip >> 32, 0, 0, 0); + regs->eip, regs->rip >> 32, 0, 0, 0); else HVMTRACE_ND(VMEXIT, 0, 1/*cycles*/, 2, exit_reason, - regs->_eip, 0, 0, 0, 0); + regs->eip, 0, 0, 0, 0); perfc_incra(vmexits, exit_reason); @@ -3390,8 +3390,8 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) if ( v->arch.hvm_vmx.vmx_realmode ) { /* Put RFLAGS back the way the guest wants it */ - regs->_eflags &= ~(X86_EFLAGS_VM | X86_EFLAGS_IOPL); - regs->_eflags |= (v->arch.hvm_vmx.vm86_saved_eflags & X86_EFLAGS_IOPL); + regs->eflags &= ~(X86_EFLAGS_VM | X86_EFLAGS_IOPL); + regs->eflags |= (v->arch.hvm_vmx.vm86_saved_eflags & X86_EFLAGS_IOPL); /* Unless this exit was for an interrupt, we've hit something * vm86 can't handle. Try again, using the emulator. */ @@ -3636,7 +3636,7 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) } case EXIT_REASON_HLT: update_guest_eip(); /* Safe: HLT */ - hvm_hlt(regs->_eflags); + hvm_hlt(regs->eflags); break; case EXIT_REASON_INVLPG: update_guest_eip(); /* Safe: INVLPG */ @@ -3652,7 +3652,7 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) break; case EXIT_REASON_VMCALL: - HVMTRACE_1D(VMMCALL, regs->_eax); + HVMTRACE_1D(VMMCALL, regs->eax); if ( hvm_hypercall(regs) == HVM_HCALL_completed ) update_guest_eip(); /* Safe: VMCALL */ @@ -3673,7 +3673,7 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) { uint64_t msr_content = 0; - switch ( hvm_msr_read_intercept(regs->_ecx, &msr_content) ) + switch ( hvm_msr_read_intercept(regs->ecx, &msr_content) ) { case X86EMUL_OKAY: msr_split(regs, msr_content); @@ -3688,7 +3688,7 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) } case EXIT_REASON_MSR_WRITE: - switch ( hvm_msr_write_intercept(regs->_ecx, msr_fold(regs), 1) ) + switch ( hvm_msr_write_intercept(regs->ecx, msr_fold(regs), 1) ) { case X86EMUL_OKAY: update_guest_eip(); /* Safe: WRMSR */ @@ -3859,7 +3859,7 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) break; case EXIT_REASON_XSETBV: - if ( hvm_handle_xsetbv(regs->_ecx, msr_fold(regs)) == 0 ) + if ( hvm_handle_xsetbv(regs->ecx, msr_fold(regs)) == 0 ) update_guest_eip(); /* Safe: XSETBV */ break; @@ -3912,7 +3912,7 @@ out: */ mode = vmx_guest_x86_mode(v); if ( mode == 8 ? !is_canonical_address(regs->rip) - : regs->rip != regs->_eip ) + : regs->rip != regs->eip ) { gprintk(XENLOG_WARNING, "Bad rIP %lx for mode %u\n", regs->rip, mode); @@ -3926,7 +3926,7 @@ out: regs->rip = (long)(regs->rip << (64 - VADDR_BITS)) >> (64 - VADDR_BITS); else - regs->rip = regs->_eip; + regs->rip = regs->eip; } else domain_crash(v->domain); diff --git a/xen/arch/x86/hvm/vmx/vvmx.c b/xen/arch/x86/hvm/vmx/vvmx.c index 0aef7a7..2958593 100644 --- a/xen/arch/x86/hvm/vmx/vvmx.c +++ b/xen/arch/x86/hvm/vmx/vvmx.c @@ -499,23 +499,23 @@ gp_fault: static void vmsucceed(struct cpu_user_regs *regs) { - regs->_eflags &= ~X86_EFLAGS_ARITH_MASK; + regs->eflags &= ~X86_EFLAGS_ARITH_MASK; } static void vmfail_valid(struct cpu_user_regs *regs, enum vmx_insn_errno errno) { struct vcpu *v = current; - unsigned int eflags = regs->_eflags; + unsigned int eflags = regs->eflags; - regs->_eflags = (eflags & ~X86_EFLAGS_ARITH_MASK) | X86_EFLAGS_ZF; + regs->eflags = (eflags & ~X86_EFLAGS_ARITH_MASK) | X86_EFLAGS_ZF; set_vvmcs(v, VM_INSTRUCTION_ERROR, errno); } static void vmfail_invalid(struct cpu_user_regs *regs) { - unsigned int eflags = regs->_eflags; + unsigned int eflags = regs->eflags; - regs->_eflags = (eflags & ~X86_EFLAGS_ARITH_MASK) | X86_EFLAGS_CF; + regs->eflags = (eflags & ~X86_EFLAGS_ARITH_MASK) | X86_EFLAGS_CF; } static void vmfail(struct cpu_user_regs *regs, enum vmx_insn_errno errno) @@ -2244,7 +2244,7 @@ int nvmx_n2_vmexit_handler(struct cpu_user_regs *regs, ctrl = __n2_exec_control(v); if ( ctrl & CPU_BASED_ACTIVATE_MSR_BITMAP ) { - status = vmx_check_msr_bitmap(nvmx->msrbitmap, regs->_ecx, + status = vmx_check_msr_bitmap(nvmx->msrbitmap, regs->ecx, !!(exit_reason == EXIT_REASON_MSR_WRITE)); if ( status ) nvcpu->nv_vmexit_pending = 1; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |