2007-12-19 08:36:59 +00:00
|
|
|
diff --git a/src/atomic_ops.h b/src/atomic_ops.h
|
|
|
|
index c23f30b..791b360 100755
|
|
|
|
--- a/src/atomic_ops.h
|
|
|
|
+++ b/src/atomic_ops.h
|
|
|
|
@@ -220,6 +220,9 @@
|
|
|
|
# if defined(__cris__) || defined(CRIS)
|
|
|
|
# include "atomic_ops/sysdeps/gcc/cris.h"
|
|
|
|
# endif
|
|
|
|
+# if defined(__mips__)
|
|
|
|
+# include "atomic_ops/sysdeps/gcc/mips.h"
|
|
|
|
+# endif
|
|
|
|
#endif /* __GNUC__ && !AO_USE_PTHREAD_DEFS */
|
|
|
|
|
|
|
|
#if defined(__INTEL_COMPILER) && !defined(AO_USE_PTHREAD_DEFS)
|
|
|
|
diff --git a/src/atomic_ops/sysdeps/Makefile.am b/src/atomic_ops/sysdeps/Makefile.am
|
|
|
|
index 74122b4..d6737c0 100644
|
|
|
|
--- a/src/atomic_ops/sysdeps/Makefile.am
|
|
|
|
+++ b/src/atomic_ops/sysdeps/Makefile.am
|
|
|
|
@@ -29,6 +29,7 @@ nobase_sysdep_HEADERS= generic_pthread.h \
|
2007-11-11 20:02:58 +00:00
|
|
|
gcc/powerpc.h gcc/sparc.h \
|
2007-12-19 08:36:59 +00:00
|
|
|
gcc/hppa.h gcc/m68k.h gcc/s390.h \
|
2007-11-11 20:02:58 +00:00
|
|
|
gcc/ia64.h gcc/x86_64.h gcc/cris.h \
|
2007-12-19 08:36:59 +00:00
|
|
|
+ gcc/mips.h \
|
2007-11-11 20:02:58 +00:00
|
|
|
\
|
|
|
|
icc/ia64.h \
|
2007-12-19 08:36:59 +00:00
|
|
|
\
|
|
|
|
diff --git a/src/atomic_ops/sysdeps/gcc/mips.h b/src/atomic_ops/sysdeps/gcc/mips.h
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000..e7f3a5d
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/atomic_ops/sysdeps/gcc/mips.h
|
|
|
|
@@ -0,0 +1,89 @@
|
2007-11-11 20:02:58 +00:00
|
|
|
+/*
|
|
|
|
+ * Copyright (c) 2005 Thiemo Seufer <ths@networkno.de>
|
2007-12-19 08:36:59 +00:00
|
|
|
+ * Copyright (c) 2007 Zhang Le <r0bertz@gentoo.org>
|
2007-11-11 20:02:58 +00:00
|
|
|
+ *
|
|
|
|
+ * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
|
|
|
|
+ * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
|
|
|
|
+ *
|
|
|
|
+ * Permission is hereby granted to use or copy this program
|
|
|
|
+ * for any purpose, provided the above notices are retained on all copies.
|
|
|
|
+ * Permission to modify the code and to distribute modified code is granted,
|
|
|
|
+ * provided the above notices are retained, and a notice that the code was
|
|
|
|
+ * modified is included with the above copyright notice.
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+#include "../all_aligned_atomic_load_store.h"
|
|
|
|
+#include "../test_and_set_t_is_ao_t.h"
|
|
|
|
+
|
|
|
|
+/* Data dependence does not imply read ordering. */
|
|
|
|
+#define AO_NO_DD_ORDERING
|
|
|
|
+
|
|
|
|
+AO_INLINE void
|
|
|
|
+AO_nop_full()
|
|
|
|
+{
|
|
|
|
+ __asm__ __volatile__(
|
|
|
|
+ " .set push \n"
|
2007-12-19 08:36:59 +00:00
|
|
|
+ " .set mips3 \n"
|
2007-11-11 20:02:58 +00:00
|
|
|
+ " .set noreorder \n"
|
|
|
|
+ " .set nomacro \n"
|
|
|
|
+ " sync \n"
|
|
|
|
+ " .set pop "
|
|
|
|
+ : : : "memory");
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#define AO_HAVE_nop_full
|
|
|
|
+
|
|
|
|
+AO_INLINE int
|
|
|
|
+AO_compare_and_swap(volatile AO_t *addr, AO_t old, AO_t new_val)
|
|
|
|
+{
|
|
|
|
+ register int was_equal = 0;
|
|
|
|
+ register int temp;
|
|
|
|
+
|
|
|
|
+ __asm__ __volatile__(
|
|
|
|
+ " .set push \n"
|
2007-12-19 08:36:59 +00:00
|
|
|
+ " .set mips3 \n"
|
2007-11-11 20:02:58 +00:00
|
|
|
+ " .set noreorder \n"
|
|
|
|
+ " .set nomacro \n"
|
|
|
|
+ "1: ll %0, %1 \n"
|
|
|
|
+ " bne %0, %4, 2f \n"
|
2007-12-19 08:36:59 +00:00
|
|
|
+ " move %0, %3 \n"
|
2007-11-11 20:02:58 +00:00
|
|
|
+ " sc %0, %1 \n"
|
|
|
|
+ " .set pop \n"
|
|
|
|
+ " beqz %0, 1b \n"
|
2007-12-19 08:36:59 +00:00
|
|
|
+ " li %2, 1 \n"
|
2007-11-11 20:02:58 +00:00
|
|
|
+ "2: "
|
|
|
|
+ : "=&r" (temp), "+R" (*addr), "+r" (was_equal)
|
|
|
|
+ : "r" (new_val), "r" (old)
|
|
|
|
+ : "memory");
|
|
|
|
+ return was_equal;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#define AO_HAVE_compare_and_swap
|
|
|
|
+
|
2007-12-19 08:36:59 +00:00
|
|
|
+AO_INLINE AO_t
|
|
|
|
+AO_fetch_and_add_full (volatile AO_t *p, AO_t incr)
|
|
|
|
+{
|
|
|
|
+ AO_t result, temp;
|
|
|
|
+ __asm__ __volatile__(
|
|
|
|
+ " .set push \n"
|
|
|
|
+ " .set mips3 \n"
|
|
|
|
+ " .set noreorder \n"
|
|
|
|
+ " .set nomacro \n"
|
|
|
|
+ "1: ll %1, %2 \n"
|
|
|
|
+ " addu %0, %1, %3 \n"
|
|
|
|
+ " sc %0, %2 \n"
|
|
|
|
+ " beqz %0, 1b \n"
|
|
|
|
+ " addu %0, %1, %3 \n"
|
|
|
|
+ " sync \n"
|
|
|
|
+ " .set pop \n"
|
|
|
|
+ : "=&r" (result), "=&r" (temp), "=m" (*p)
|
|
|
|
+ : "r" (incr), "m" (*p)
|
|
|
|
+ : "memory");
|
|
|
|
+ return result;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#define AO_HAVE_fetch_and_add_full
|
|
|
|
+
|
2007-11-11 20:02:58 +00:00
|
|
|
+/*
|
2007-12-19 08:36:59 +00:00
|
|
|
+ * FIXME: fetch_and_add_full implemented, any others?
|
2007-11-11 20:02:58 +00:00
|
|
|
+ */
|