diff options
-rw-r--r-- | arch/mips/atomic.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/arch/mips/atomic.h b/arch/mips/atomic.h index 69dcdf48..6731d17b 100644 --- a/arch/mips/atomic.h +++ b/arch/mips/atomic.h @@ -29,15 +29,15 @@ static inline int a_cas(volatile int *p, int t, int s) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%2)\n" + "1: ll %0, %2\n" " bne %0, %3, 1f\n" " addu %1, %4, $0\n" - " sc %1, 0(%2)\n" + " sc %1, %2\n" " beq %1, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(t), "=&r"(dummy) : "r"(p), "r"(t), "r"(s) : "memory" ); + : "=&r"(t), "=&r"(dummy), "+m"(*p) : "r"(t), "r"(s) : "memory" ); return t; } @@ -59,14 +59,14 @@ static inline int a_swap(volatile int *x, int v) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%2)\n" + "1: ll %0, %2\n" " addu %1, %3, $0\n" - " sc %1, 0(%2)\n" + " sc %1, %2\n" " beq %1, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(old), "=&r"(dummy) : "r"(x), "r"(v) : "memory" ); + : "=&r"(old), "=&r"(dummy), "+m"(*x) : "r"(v) : "memory" ); return old; } @@ -77,14 +77,14 @@ static inline int a_fetch_add(volatile int *x, int v) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%2)\n" + "1: ll %0, %2\n" " addu %1, %0, %3\n" - " sc %1, 0(%2)\n" + " sc %1, %2\n" " beq %1, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(old), "=&r"(dummy) : "r"(x), "r"(v) : "memory" ); + : "=&r"(old), "=&r"(dummy), "+m"(*x) : "r"(v) : "memory" ); return old; } @@ -95,14 +95,14 @@ static inline void a_inc(volatile int *x) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%1)\n" + "1: ll %0, %1\n" " addu %0, %0, 1\n" - " sc %0, 0(%1)\n" + " sc %0, %1\n" " beq %0, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(dummy) : "r"(x) : "memory" ); + : "=&r"(dummy), "+m"(*x) : : "memory" ); } static inline void a_dec(volatile int *x) @@ -112,14 +112,14 @@ static inline void a_dec(volatile int *x) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%1)\n" + "1: ll %0, %1\n" " subu %0, %0, 1\n" - " sc %0, 0(%1)\n" + " sc %0, %1\n" " beq %0, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(dummy) : "r"(x) : "memory" ); + : "=&r"(dummy), "+m"(*x) : : "memory" ); } static inline void a_store(volatile int *p, int x) @@ -129,14 +129,14 @@ static inline void a_store(volatile int *p, int x) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%1)\n" + "1: ll %0, %1\n" " addu %0, %2, $0\n" - " sc %0, 0(%1)\n" + " sc %0, %1\n" " beq %0, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(dummy) : "r"(p), "r"(x) : "memory" ); + : "=&r"(dummy), "+m"(*p) : "r"(x) : "memory" ); } static inline void a_spin() @@ -155,14 +155,14 @@ static inline void a_and(volatile int *p, int v) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%1)\n" + "1: ll %0, %1\n" " and %0, %0, %2\n" - " sc %0, 0(%1)\n" + " sc %0, %1\n" " beq %0, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(dummy) : "r"(p), "r"(v) : "memory" ); + : "=&r"(dummy), "+m"(*p) : "r"(v) : "memory" ); } static inline void a_or(volatile int *p, int v) @@ -172,14 +172,14 @@ static inline void a_or(volatile int *p, int v) ".set push\n" ".set mips2\n" ".set noreorder\n" - "1: ll %0, 0(%1)\n" + "1: ll %0, %1\n" " or %0, %0, %2\n" - " sc %0, 0(%1)\n" + " sc %0, %1\n" " beq %0, $0, 1b\n" " nop\n" "1: \n" ".set pop\n" - : "=&r"(dummy) : "r"(p), "r"(v) : "memory" ); + : "=&r"(dummy), "+m"(*p) : "r"(v) : "memory" ); } static inline void a_or_l(volatile void *p, long v) |