atomic.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Copyright (C) 2026 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library. If not, see
  13. <http://www.gnu.org/licenses/>. */
  14. #ifndef _NIOS2_BITS_ATOMIC_H
  15. #define _NIOS2_BITS_ATOMIC_H
  16. #include <stdint.h>
  17. typedef int8_t atomic8_t;
  18. typedef uint8_t uatomic8_t;
  19. typedef int_fast8_t atomic_fast8_t;
  20. typedef uint_fast8_t uatomic_fast8_t;
  21. typedef int16_t atomic16_t;
  22. typedef uint16_t uatomic16_t;
  23. typedef int_fast16_t atomic_fast16_t;
  24. typedef uint_fast16_t uatomic_fast16_t;
  25. typedef int32_t atomic32_t;
  26. typedef uint32_t uatomic32_t;
  27. typedef int_fast32_t atomic_fast32_t;
  28. typedef uint_fast32_t uatomic_fast32_t;
  29. typedef int64_t atomic64_t;
  30. typedef uint64_t uatomic64_t;
  31. typedef int_fast64_t atomic_fast64_t;
  32. typedef uint_fast64_t uatomic_fast64_t;
  33. typedef intptr_t atomicptr_t;
  34. typedef uintptr_t uatomicptr_t;
  35. typedef intmax_t atomic_max_t;
  36. typedef uintmax_t uatomic_max_t;
  37. /* nios2 is uniprocessor, so a compiler barrier is enough. */
  38. #define atomic_full_barrier() __asm__ __volatile__ ("" ::: "memory")
  39. #define atomic_read_barrier() atomic_full_barrier ()
  40. #define atomic_write_barrier() atomic_full_barrier ()
  41. /* nios2 R1 has no atomic instruction. libgcc implements __sync_* through
  42. the kernel's __kuser_cmpxchg helper at 0x1004, which the kernel restarts
  43. when it interrupts the load/store pair. */
  44. #define __arch_compare_and_exchange_val_8_acq(mem, newval, oldval) \
  45. __sync_val_compare_and_swap ((mem), (oldval), (newval))
  46. #define __arch_compare_and_exchange_val_16_acq(mem, newval, oldval) \
  47. __sync_val_compare_and_swap ((mem), (oldval), (newval))
  48. #define __arch_compare_and_exchange_val_32_acq(mem, newval, oldval) \
  49. __sync_val_compare_and_swap ((mem), (oldval), (newval))
  50. /* No 64-bit CAS. NPTL and include/atomic.h only use int- and
  51. pointer-sized objects, so the bysize dispatch never reaches this. */
  52. #define __arch_compare_and_exchange_val_64_acq(mem, newval, oldval) \
  53. ({ __typeof (*(mem)) __ret = *(mem); abort (); (void) (newval); \
  54. (void) (oldval); __ret; })
  55. #endif /* _NIOS2_BITS_ATOMIC_H */