x86emul: correct stub invocation constraints Stub invocations need to have the space the stub occupies as an input, to prevent the compiler from re-ordering (or omitting) writes to it. Signed-off-by: Jan Beulich --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -837,7 +837,8 @@ do{ asm volatile ( ".popsection\n\t" \ _ASM_EXTABLE(.Lret%=, .Lfix%=) \ : [exn] "+g" (res_), constraints, \ - [stub] "rm" (stub.func) ); \ + [stub] "rm" (stub.func), \ + "m" (*(uint8_t(*)[MAX_INST_LEN + 1])stub.ptr) ); \ if ( unlikely(~res_.raw) ) \ { \ gprintk(XENLOG_WARNING, \ @@ -853,7 +854,8 @@ do{ asm volatile ( #else # define invoke_stub(pre, post, constraints...) \ asm volatile ( pre "\n\tcall *%[stub]\n\t" post \ - : constraints, [stub] "rm" (stub.func) ) + : constraints, [stub] "rm" (stub.func), \ + "m" (*(uint8_t(*)[MAX_INST_LEN + 1])stub.buf) ) #endif #define emulate_stub(dst, src...) do { \