[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] x86emul: drop open-coding of REX.W prefixes
commit 5a33ea2800c12f5d82191933df1c1e311d423619 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Feb 25 08:43:07 2025 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Feb 25 08:43:07 2025 +0100 x86emul: drop open-coding of REX.W prefixes Along the lines of 0e3642514719 ("x86: drop REX64_PREFIX"), move to well formed FXSAVEQ / FXRSTORQ here as well. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/arch/x86/x86_emulate/blk.c | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/xen/arch/x86/x86_emulate/blk.c b/xen/arch/x86/x86_emulate/blk.c index 08a05f8453..494e6c1e3b 100644 --- a/xen/arch/x86/x86_emulate/blk.c +++ b/xen/arch/x86/x86_emulate/blk.c @@ -259,16 +259,7 @@ int x86_emul_blk( if ( s->op_bytes < sizeof(*fxsr) ) { if ( s->rex_prefix & REX_W ) - { - /* - * The only way to force fxsaveq on a wide range of gas - * versions. On older versions the rex64 prefix works only if - * we force an addressing mode that doesn't require extended - * registers. - */ - asm volatile ( ".byte 0x48; fxsave (%1)" - : "=m" (*fxsr) : "R" (fxsr) ); - } + asm volatile ( "fxsaveq %0" : "=m" (*fxsr) ); else asm volatile ( "fxsave %0" : "=m" (*fxsr) ); } @@ -285,11 +276,7 @@ int x86_emul_blk( generate_exception_if(fxsr->mxcsr & ~mxcsr_mask, X86_EXC_GP, 0); if ( s->rex_prefix & REX_W ) - { - /* See above for why operand/constraints are this way. */ - asm volatile ( ".byte 0x48; fxrstor (%1)" - :: "m" (*fxsr), "R" (fxsr) ); - } + asm volatile ( "fxrstorq %0" :: "m" (*fxsr) ); else asm volatile ( "fxrstor %0" :: "m" (*fxsr) ); break; @@ -310,11 +297,7 @@ int x86_emul_blk( fxsr = ptr; if ( s->rex_prefix & REX_W ) - { - /* See above for why operand/constraints are this way. */ - asm volatile ( ".byte 0x48; fxsave (%1)" - : "=m" (*fxsr) : "R" (fxsr) ); - } + asm volatile ( "fxsaveq %0" : "=m" (*fxsr) ); else asm volatile ( "fxsave %0" : "=m" (*fxsr) ); -- generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |