xen/x86: Fix cflush()'s parameter tracking
authorAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 15 Mar 2019 12:28:46 +0000 (12:28 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 15 Mar 2019 14:36:07 +0000 (14:36 +0000)
commitcc56d87dc3e203a5701f21fb3a81f347cf0ae9eb
treea65776eb9e447e300c096846239fa4a06c0065ff
parent3d5adba2ffbb273a7454614189ebbe696ba3aa9a
xen/x86: Fix cflush()'s parameter tracking

Forcing a register operand hides (from the compiler) the fact that clflush
behaves as a read from the memory operand (wrt memory order, faults, etc.).
It also reduces the compilers flexibility with register scheduling.

Re-implement clfush() (and wbinvd() for consistency) as a static inline rather
than a macro, and have it take a const void pointer.

In practice, the only generated code which gets modified by this is in
mwait_idle_with_hints(), where a disp8 encoding now gets used.

While here, I noticed that &mwait_wakeup(cpu) was being calculated twice.
This is caused by the memory clobber in mb(), so take the opportunity to help
the optimiser by calculating it once, ahead of time.  bloat-o-meter reports a
delta of -26 as a result of this change.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/acpi/cpu_idle.c
xen/include/asm-x86/system.h