[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.2-testing] x86/time: fix scale_delta() inline assembly
# HG changeset patch # User Jan Beulich <jbeulich@xxxxxxxx> # Date 1354019117 -3600 # Node ID 5c5c695863f73bd6a9eccaaa96cf28800e50e840 # Parent b22e665133facc1005a2f4ebe45ee18cc453557d x86/time: fix scale_delta() inline assembly The way it was coded, it clobbered %rdx without telling the compiler. This generally didn't cause any problems except when there are two back to back invocations (as in plt_overflow()), as in that case the compiler may validly assume that it can re-use for the second instance the value loaded into %rdx before the first one. Once at it, also properly relax the second operand of "mul" (there's no need for it to be in %rdx, or a register at all), and switch away from using explicit register names in the instruction operands. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Keir Fraser <keir@xxxxxxx> xen-unstable changeset: 26188:16bf7f3069a7 xen-unstable date: Mon Nov 26 16:20:39 UTC 2012 --- diff -r b22e665133fa -r 5c5c695863f7 xen/arch/x86/time.c --- a/xen/arch/x86/time.c Tue Nov 27 13:23:04 2012 +0100 +++ b/xen/arch/x86/time.c Tue Nov 27 13:25:17 2012 +0100 @@ -142,8 +142,9 @@ static inline u64 scale_delta(u64 delta, : "a" ((u32)delta), "1" ((u32)(delta >> 32)), "2" (scale->mul_frac) ); #else asm ( - "mul %%rdx ; shrd $32,%%rdx,%%rax" - : "=a" (product) : "0" (delta), "d" ((u64)scale->mul_frac) ); + "mul %2 ; shrd $32,%1,%0" + : "=a" (product), "=d" (delta) + : "rm" (delta), "0" ((u64)scale->mul_frac) ); #endif return product; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |