提交 036eaa24 编写于 作者: R Rich Felker

avoid need for -march=mips2 to compile mips atomic.h asm

linux guarantees ll/sc are always available. on mips1, they will be
emulated by the kernel. thus they are part of the linux mips1 abi and
safe to use.
上级 f997e224
......@@ -27,6 +27,7 @@ static inline int a_cas(volatile int *p, int t, int s)
int dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%2)\n"
" bne %0, %3, 1f\n"
......@@ -56,6 +57,7 @@ static inline int a_swap(volatile int *x, int v)
int old, dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%2)\n"
" addu %1, %3, $0\n"
......@@ -73,6 +75,7 @@ static inline int a_fetch_add(volatile int *x, int v)
int old, dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%2)\n"
" addu %1, %0, %3\n"
......@@ -90,6 +93,7 @@ static inline void a_inc(volatile int *x)
int dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%1)\n"
" addu %0, %0, 1\n"
......@@ -106,6 +110,7 @@ static inline void a_dec(volatile int *x)
int dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%1)\n"
" subu %0, %0, 1\n"
......@@ -122,6 +127,7 @@ static inline void a_store(volatile int *p, int x)
int dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%1)\n"
" addu %0, %2, $0\n"
......@@ -147,6 +153,7 @@ static inline void a_and(volatile int *p, int v)
int dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%1)\n"
" and %0, %0, %2\n"
......@@ -163,6 +170,7 @@ static inline void a_or(volatile int *p, int v)
int dummy;
__asm__ __volatile__(
".set push\n"
".set mips2\n"
".set noreorder\n"
"1: ll %0, 0(%1)\n"
" or %0, %0, %2\n"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册