[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.8] x86emul: correct FPU stub asm() constraints
commit 9b0e6d34cb8e05d9ec5e308576c559f0aac5ba55 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Feb 9 10:23:22 2017 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Feb 9 10:23:22 2017 +0100 x86emul: correct FPU stub asm() constraints Properly inform the compiler about fic's role as both an input (its insn_bytes field) and output (its exn_raised field). Take the opportunity and bring emulate_fpu_insn_stub() more in line with emulate_fpu_insn_stub_eflags(). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> master commit: 3dfbb8df335f12297cfc7db9d3df2b74c474921b master date: 2017-01-24 12:35:59 +0100 --- xen/arch/x86/x86_emulate/x86_emulate.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index b234205..61e1421 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -874,15 +874,15 @@ do{ struct fpu_insn_ctxt fic; \ put_fpu(&fic); \ } while (0) -#define emulate_fpu_insn_stub(_bytes...) \ +#define emulate_fpu_insn_stub(bytes...) \ do { \ - uint8_t *buf = get_stub(stub); \ - unsigned int _nr = sizeof((uint8_t[]){ _bytes }); \ - struct fpu_insn_ctxt fic = { .insn_bytes = _nr }; \ - memcpy(buf, ((uint8_t[]){ _bytes, 0xc3 }), _nr + 1); \ - get_fpu(X86EMUL_FPU_fpu, &fic); \ - stub.func(); \ - put_fpu(&fic); \ + unsigned int nr_ = sizeof((uint8_t[]){ bytes }); \ + struct fpu_insn_ctxt fic_ = { .insn_bytes = nr_ }; \ + memcpy(get_stub(stub), ((uint8_t[]){ bytes, 0xc3 }), nr_ + 1); \ + get_fpu(X86EMUL_FPU_fpu, &fic_); \ + asm volatile ( "call *%[stub]" : "+m" (fic_) : \ + [stub] "rm" (stub.func) ); \ + put_fpu(&fic_); \ put_stub(stub); \ } while (0) @@ -897,7 +897,7 @@ do { \ "call *%[func];" \ _POST_EFLAGS("[eflags]", "[mask]", "[tmp]") \ : [eflags] "+g" (_regs.eflags), \ - [tmp] "=&r" (tmp_) \ + [tmp] "=&r" (tmp_), "+m" (fic_) \ : [func] "rm" (stub.func), \ [mask] "i" (EFLG_ZF|EFLG_PF|EFLG_CF) ); \ put_fpu(&fic_); \ -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.8 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |