diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2009-07-03 07:26:41 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-07-03 07:26:41 -0400 |
commit | 69237f94e65d3d7f539f1adb98ef68685c595004 (patch) | |
tree | be7f8e2b323206bc10f82ca5a70ed5cf646c4fb9 | |
parent | aacf682fd8c66b57383c407eecd9d4a28264ee91 (diff) |
x86: atomic64: Improve cmpxchg8b()
Rewrite cmpxchg8b() to not use %edi register but a generic "+m"
constraint, to increase compiler freedom in code generation and
possibly better code.
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Arnd Bergmann <arnd@arndb.de>
LKML-Reference: <alpine.LFD.2.01.0907021653030.3210@localhost.localdomain>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/lib/atomic64_32.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/arch/x86/lib/atomic64_32.c b/arch/x86/lib/atomic64_32.c index afa5d444918b..5fc1e2caa544 100644 --- a/arch/x86/lib/atomic64_32.c +++ b/arch/x86/lib/atomic64_32.c | |||
@@ -6,19 +6,14 @@ | |||
6 | 6 | ||
7 | static inline u64 cmpxchg8b(u64 *ptr, u64 old, u64 new) | 7 | static inline u64 cmpxchg8b(u64 *ptr, u64 old, u64 new) |
8 | { | 8 | { |
9 | asm volatile( | 9 | u32 low = new; |
10 | 10 | u32 high = new >> 32; | |
11 | LOCK_PREFIX "cmpxchg8b (%[ptr])\n" | ||
12 | |||
13 | : "=A" (old) | ||
14 | |||
15 | : [ptr] "D" (ptr), | ||
16 | "A" (old), | ||
17 | "b" (ll_low(new)), | ||
18 | "c" (ll_high(new)) | ||
19 | |||
20 | : "memory"); | ||
21 | 11 | ||
12 | asm volatile( | ||
13 | LOCK_PREFIX "cmpxchg8b %1\n" | ||
14 | : "+A" (old), "+m" (*ptr) | ||
15 | : "b" (low), "c" (high) | ||
16 | ); | ||
22 | return old; | 17 | return old; |
23 | } | 18 | } |
24 | 19 | ||