2005-03-28 09:14:59 +00:00
|
|
|
/* Low-level functions for atomic operations. Mips version.
|
2022-01-01 18:54:23 +00:00
|
|
|
Copyright (C) 2005-2022 Free Software Foundation, Inc.
|
2005-03-28 09:14:59 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2005-03-28 09:14:59 +00:00
|
|
|
|
2015-09-11 20:00:19 +00:00
|
|
|
#ifndef _MIPS_ATOMIC_MACHINE_H
|
|
|
|
#define _MIPS_ATOMIC_MACHINE_H 1
|
2005-03-28 09:14:59 +00:00
|
|
|
|
|
|
|
#include <sgidefs.h>
|
|
|
|
|
2015-08-24 21:06:29 +00:00
|
|
|
#if _MIPS_SIM == _ABIO32 && __mips < 2
|
2005-03-28 09:14:59 +00:00
|
|
|
#define MIPS_PUSH_MIPS2 ".set mips2\n\t"
|
|
|
|
#else
|
|
|
|
#define MIPS_PUSH_MIPS2
|
|
|
|
#endif
|
|
|
|
|
2015-01-28 18:40:35 +00:00
|
|
|
#if _MIPS_SIM == _ABIO32 || _MIPS_SIM == _ABIN32
|
2014-10-17 23:02:59 +00:00
|
|
|
#define __HAVE_64B_ATOMICS 0
|
|
|
|
#else
|
|
|
|
#define __HAVE_64B_ATOMICS 1
|
|
|
|
#endif
|
|
|
|
|
2005-03-28 09:14:59 +00:00
|
|
|
/* See the comments in <sys/asm.h> about the use of the sync instruction. */
|
|
|
|
#ifndef MIPS_SYNC
|
|
|
|
# define MIPS_SYNC sync
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MIPS_SYNC_STR_2(X) #X
|
|
|
|
#define MIPS_SYNC_STR_1(X) MIPS_SYNC_STR_2(X)
|
|
|
|
#define MIPS_SYNC_STR MIPS_SYNC_STR_1(MIPS_SYNC)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define USE_ATOMIC_COMPILER_BUILTINS 1
|
2017-06-06 07:41:56 +00:00
|
|
|
|
|
|
|
/* MIPS is an LL/SC machine. However, XLP has a direct atomic exchange
|
|
|
|
instruction which will be used by __atomic_exchange_n. */
|
2017-06-19 23:24:36 +00:00
|
|
|
#ifdef _MIPS_ARCH_XLP
|
|
|
|
# define ATOMIC_EXCHANGE_USES_CAS 0
|
|
|
|
#else
|
|
|
|
# define ATOMIC_EXCHANGE_USES_CAS 1
|
|
|
|
#endif
|
2014-10-17 23:02:59 +00:00
|
|
|
|
2012-07-11 23:47:58 +00:00
|
|
|
/* Compare and exchange.
|
|
|
|
For all "bool" routines, we return FALSE if exchange succesful. */
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_compare_and_exchange_bool_8_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_compare_and_exchange_bool_16_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_compare_and_exchange_bool_32_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
({ \
|
|
|
|
typeof (*mem) __oldval = (oldval); \
|
|
|
|
!__atomic_compare_exchange_n (mem, (void *) &__oldval, newval, 0, \
|
|
|
|
model, __ATOMIC_RELAXED); \
|
|
|
|
})
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_compare_and_exchange_val_8_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_compare_and_exchange_val_16_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_compare_and_exchange_val_32_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
({ \
|
|
|
|
typeof (*mem) __oldval = (oldval); \
|
|
|
|
__atomic_compare_exchange_n (mem, (void *) &__oldval, newval, 0, \
|
|
|
|
model, __ATOMIC_RELAXED); \
|
|
|
|
__oldval; \
|
|
|
|
})
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#if _MIPS_SIM == _ABIO32
|
2012-07-11 23:47:58 +00:00
|
|
|
/* We can't do an atomic 64-bit operation in O32. */
|
2017-06-19 23:24:36 +00:00
|
|
|
# define __arch_compare_and_exchange_bool_64_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), 0)
|
2017-06-19 23:24:36 +00:00
|
|
|
# define __arch_compare_and_exchange_val_64_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
2017-06-19 23:24:36 +00:00
|
|
|
#else
|
|
|
|
# define __arch_compare_and_exchange_bool_64_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__arch_compare_and_exchange_bool_32_int (mem, newval, oldval, model)
|
2017-06-19 23:24:36 +00:00
|
|
|
# define __arch_compare_and_exchange_val_64_int(mem, newval, oldval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__arch_compare_and_exchange_val_32_int (mem, newval, oldval, model)
|
2017-06-19 23:24:36 +00:00
|
|
|
#endif
|
2012-07-11 23:47:58 +00:00
|
|
|
|
|
|
|
/* Compare and exchange with "acquire" semantics, ie barrier after. */
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_compare_and_exchange_bool_acq(mem, new, old) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_bool_bysize (__arch_compare_and_exchange_bool, int, \
|
|
|
|
mem, new, old, __ATOMIC_ACQUIRE)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_compare_and_exchange_val_acq(mem, new, old) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_val_bysize (__arch_compare_and_exchange_val, int, \
|
|
|
|
mem, new, old, __ATOMIC_ACQUIRE)
|
|
|
|
|
|
|
|
/* Compare and exchange with "release" semantics, ie barrier before. */
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_compare_and_exchange_val_rel(mem, new, old) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_val_bysize (__arch_compare_and_exchange_val, int, \
|
|
|
|
mem, new, old, __ATOMIC_RELEASE)
|
|
|
|
|
|
|
|
|
|
|
|
/* Atomic exchange (without compare). */
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_exchange_8_int(mem, newval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_exchange_16_int(mem, newval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_exchange_32_int(mem, newval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_exchange_n (mem, newval, model)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#if _MIPS_SIM == _ABIO32
|
2012-07-11 23:47:58 +00:00
|
|
|
/* We can't do an atomic 64-bit operation in O32. */
|
2017-06-19 23:24:36 +00:00
|
|
|
# define __arch_exchange_64_int(mem, newval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
2017-06-19 23:24:36 +00:00
|
|
|
#else
|
|
|
|
# define __arch_exchange_64_int(mem, newval, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_exchange_n (mem, newval, model)
|
2017-06-19 23:24:36 +00:00
|
|
|
#endif
|
2012-07-11 23:47:58 +00:00
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_exchange_acq(mem, value) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_val_bysize (__arch_exchange, int, mem, value, __ATOMIC_ACQUIRE)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_exchange_rel(mem, value) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_val_bysize (__arch_exchange, int, mem, value, __ATOMIC_RELEASE)
|
|
|
|
|
|
|
|
|
|
|
|
/* Atomically add value and return the previous (unincremented) value. */
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_exchange_and_add_8_int(mem, value, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_exchange_and_add_16_int(mem, value, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define __arch_exchange_and_add_32_int(mem, value, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_fetch_add (mem, value, model)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#if _MIPS_SIM == _ABIO32
|
2012-07-11 23:47:58 +00:00
|
|
|
/* We can't do an atomic 64-bit operation in O32. */
|
2017-06-19 23:24:36 +00:00
|
|
|
# define __arch_exchange_and_add_64_int(mem, value, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
(abort (), (typeof(*mem)) 0)
|
2017-06-19 23:24:36 +00:00
|
|
|
#else
|
|
|
|
# define __arch_exchange_and_add_64_int(mem, value, model) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_fetch_add (mem, value, model)
|
2017-06-19 23:24:36 +00:00
|
|
|
#endif
|
2012-07-11 23:47:58 +00:00
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_exchange_and_add_acq(mem, value) \
|
2012-07-11 23:47:58 +00:00
|
|
|
__atomic_val_bysize (__arch_exchange_and_add, int, mem, value, \
|
2012-08-14 02:55:34 +00:00
|
|
|
__ATOMIC_ACQUIRE)
|
|
|
|
|
2017-06-19 23:24:36 +00:00
|
|
|
#define atomic_exchange_and_add_rel(mem, value) \
|
2012-08-14 02:55:34 +00:00
|
|
|
__atomic_val_bysize (__arch_exchange_and_add, int, mem, value, \
|
|
|
|
__ATOMIC_RELEASE)
|
2013-02-27 23:45:07 +00:00
|
|
|
|
2005-03-28 09:14:59 +00:00
|
|
|
/* TODO: More atomic operations could be implemented efficiently; only the
|
|
|
|
basic requirements are done. */
|
|
|
|
|
2013-02-27 23:45:07 +00:00
|
|
|
#ifdef __mips16
|
|
|
|
# define atomic_full_barrier() __sync_synchronize ()
|
|
|
|
|
|
|
|
#else /* !__mips16 */
|
|
|
|
# define atomic_full_barrier() \
|
2005-03-28 09:14:59 +00:00
|
|
|
__asm__ __volatile__ (".set push\n\t" \
|
|
|
|
MIPS_PUSH_MIPS2 \
|
|
|
|
MIPS_SYNC_STR "\n\t" \
|
|
|
|
".set pop" : : : "memory")
|
2013-02-27 23:45:07 +00:00
|
|
|
#endif /* !__mips16 */
|
2005-03-28 09:14:59 +00:00
|
|
|
|
2015-09-11 20:00:19 +00:00
|
|
|
#endif /* atomic-machine.h */
|