Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/libatomic_ops.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-13Fix asm constraint of fetch_and_add, test_and_set, fetch_CAS for MIPS (gcc)Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/mips.h (AO_fetch_and_add, AO_test_and_set, AO_fetch_compare_and_swap): Use "+m" asm constraint for *addr instead of "=m" (because the value pointed by addr is read and written by the code).
2013-03-13Fix asm constraint of compare_and_swap for clang-3.1/mipsIvan Maidanski
* src/atomic_ops/sysdeps/gcc/mips.h (AO_compare_and_swap): Use "+m" asm constraint for *addr instead of "+R" (the letter is unsupported by clang3.1 resulting in "invalid output constraint in asm" error).
2013-03-09Always use 'mfence' for nop_full if target CPU supports SSE2 (gcc/x86)Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/x86.h (AO_USE_PENTIUM4_INSTRS): Define if __SSE2__ is defined; update comment (and remove TODO item).
2013-03-09Fix assembly comment prefix and identify memory clobbers for AArch64Yvan Roux
* src/atomic_ops/sysdeps/gcc/aarch64.h: Revert comments beginning marker to '//' (since '@' is not supported for A64 assembler). * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_double_load): Add comment about the need for STXP instruction; remove TODO item. * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_double_store): Add comment about absence of "cc" in clobber lists; remove TODO item. * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_double_load, AO_double_load_acquire, AO_double_store, AO_double_store_release, AO_double_compare_and_swap, AO_double_compare_and_swap_acquire, AO_double_compare_and_swap_release): Use Q constraint (instead of "r") for 'addr' argument to instruct the compiler about memory clobbers.
2013-03-05Use AO_EXPECT_FALSE for AArch64 double_load/storeIvan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h (AO_HAVE_DOUBLE_PTR_STORAGE): Do not check (since defined in standard_ao_double_t.h for AArch64). * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_double_load): Add TODO items. * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_double_load, AO_double_load_acquire, AO_double_store, AO_double_store_release): Use AO_EXPECT_FALSE.
2013-03-05Workaround missing built-in double-wide primitives for AArch64 in gcc-4.7Yvan Roux
* src/atomic_ops/sysdeps/gcc/aarch64.h (AO_double_load, AO_double_load_acquire, AO_double_store, AO_double_store_release, AO_double_compare_and_swap, AO_double_compare_and_swap_acquire, AO_double_compare_and_swap_release): Define using inline assembly (because GCC 4.7-2013.01 has no support of 16-byte atomic operations). * src/atomic_ops/sysdeps/gcc/generic.h (AO_double_load, AO_double_load_acquire, AO_double_store, AO_double_store_release, AO_double_compare_and_swap): Do not define if the corresponding AO_HAVE_double_X macro is defined.
2013-02-28gcc/x86.h: Add TODO itemsIvan Maidanski
2013-02-28Merge remote-tracking branch 'origin/master' into add-aarch64-supportIvan Maidanski
2013-02-28Minimize gcc/generic-arithm template by factoring out barriersIvan Maidanski
(code refactoring) * src/Makefile.am (atomic_ops/sysdeps/gcc/generic-arithm.h): Iterate over XBAR/XGCCBAR (in addition to XSIZE/XCTYPE). * src/atomic_ops/sysdeps/gcc/generic-arithm.template: Parametrize all primitives with XBAR (replacing AO none/acquire/release/full barriers) and with XGCCBAR (replacing GCC atomic RELAXED/ACQUIRE/RELEASE/SEQ_CST barriers, respectively). * src/atomic_ops/sysdeps/gcc/generic-arithm.h: Regenerate.
2013-02-28Implement char/short/int-wide primitives using GCC built-in atomic/syncIvan Maidanski
* src/Makefile.am (EXTRA_DIST): Add gcc/generic-arithm.template, gcc/generic-small.template entries. * src/Makefile.am (nobase_private_HEADERS): Move gcc/generic-arithm.h, atomic_ops/sysdeps/gcc/generic-small.h to BUILT_SOURCES. * src/Makefile.am (atomic_ops/sysdeps/gcc/generic-arithm.h, atomic_ops/sysdeps/gcc/generic-small.h): New rules (to generate AO_char/short/int_X primitives included from gcc/generic.h file. * src/atomic_ops/sysdeps/gcc/generic-arithm.template: New template file (based on code moved from generic-arithm.h). * src/atomic_ops/sysdeps/gcc/generic-small.template: New template file (based on code moved from generic-small.h). * src/atomic_ops/sysdeps/gcc/generic-arithm.h: Regenerate. * src/atomic_ops/sysdeps/gcc/generic-small.h: Likewise.
2013-02-28Move gcc-generic AO_t-wide primitives to generic-small/arithm headersIvan Maidanski
(code refactoring) * src/atomic_ops/sysdeps/gcc/generic-small.h: New file. * src/atomic_ops/sysdeps/gcc/generic-arithm.h: Likewise. * src/atomic_ops/sysdeps/gcc/generic.h: Include generic-small.h file. * src/atomic_ops/sysdeps/gcc/generic.h (AO_load, AO_load_acquire, AO_store, AO_store_release, AO_fetch_compare_and_swap, AO_compare_and_swap): Move to generic-small.h file. * src/atomic_ops/sysdeps/gcc/generic.h: Include generic-arithm.h file unless AO_PREFER_GENERALIZED. * src/atomic_ops/sysdeps/gcc/generic.h (AO_fetch_and_add, AO_fetch_and_add_acquire, AO_fetch_and_add_release, AO_fetch_and_add_full, AO_and, AO_and_acquire, AO_and_release, AO_and_full, AO_or, AO_or_acquire, AO_or_release, AO_or_full, AO_xor, AO_xor_acquire, AO_xor_release, AO_xor_full): Move to generic-arithm.h file. * src/Makefile.am (nobase_private_HEADERS): Add gcc/generic-arithm.h, gcc/generic-small.h entries.
2013-02-28Define nop_write as 'dmb st' for AArch64Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h (AO_nop_write): Define via asm (dmb st) statement unless AO_UNIPROCESSOR (because it seems there is no equivalent definition using compiler __atomic_thread_fence). * src/atomic_ops/sysdeps/gcc/generic.h (AO_nop_write): Do not define if already is.
2013-02-28Fix AO_double_t definition for AArch64Ivan Maidanski
* src/atomic_ops/sysdeps/standard_ao_double_t.h (double_ptr_storage): Define explicitly for AArch64 (use __int128 instead of long long).
2013-02-28Fix double_compare_and_swap compile-time error in gcc/generic.hYvan Roux
* src/atomic_ops/sysdeps/gcc/generic.h (AO_double_compare_and_swap): Fix access to old_val value.
2013-02-28Remove improper comment for AO_XSIZE_load_readIvan Maidanski
* src/atomic_ops/generalize-small.template (AO_XSIZE_load_read): Remove improper comment (because nop barrier type matches that of load primitive). * src/atomic_ops/generalize-small.template (AO_XSIZE_store_write): Reorder AO_HAVE_nop_write and AO_HAVE_XSIZE_store checking (to match that for other primitives in this file). * src/atomic_ops/generalize-small.h: Regenerate.
2013-02-14Implement AO_and/or/xor efficiently for ARMIvan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h (AO_and, AO_or, AO_xor): Implement directly using LDREX/STREX (enabled only if not AO_PREFER_GENERALIZED).
2013-02-14Add compile-time assertion for size of 'standard' AO_double_tIvan Maidanski
* src/atomic_ops/sysdeps/standard_ao_double_t.h (AO_double_t_size_static_assert): Add compile-time assertion for AO_double_t size.
2013-02-14Fix (remove) invalid include of read_ordered.h for ARMIvan Maidanski
(fix commit 2df9c1e partially) * src/atomic_ops/sysdeps/gcc/arm.h: Do not include read_ordered.h (because load_acquire should contain a DMB instruction in a multi-core case, new load_acquire/read primitives implementation is generalized using nop_full/read which either contain a DMB instruction, or is just a compiler barrier for uniprocessor). * src/atomic_ops/sysdeps/armcc/arm_v6.h: Likewise. * src/atomic_ops/sysdeps/msftc/arm.h: Likewise.
2013-02-14Revert "Fix read_ordered.h inclusion for ARM"Ivan Maidanski
(because it makes load_acquire/read incorrect for multi-core ARM) This reverts commit fcc838be49c98486c26738764f895d34de0716be.
2013-02-14Implement load/store via simple LDR/STR for ARMv6+ (msftc)Ivan Maidanski
* src/atomic_ops/sysdeps/msftc/arm.h: Include all_aligned_atomic_load_store.h instead of all_atomic_load_store.h (since unaligned accesses are not guaranteed to be atomic). * src/atomic_ops/sysdeps/msftc/arm.h (AO_load): Remove; include all_aligned_atomic_load_store.h unconditionally instead (thus implementing AO[_char/short]_load/store via simple LDR/STR; add comment about Windows interrupt handlers. * src/atomic_ops/sysdeps/msftc/arm.h: Add TODO item to implement AO_test_and_set_full (for pre-ARMv6).
2013-02-14Define AO_nop_full as compiler barrier for pre-ARMv6 single-core caseIvan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h (AO_nop_full): Define for pre-ARMv6 as well (as a compiler barrier) if AO_UNIPROCESSOR; refine comment. * src/atomic_ops/sysdeps/msftc/arm.h (AO_nop_full): Likewise. * src/atomic_ops/sysdeps/msftc/arm.h: Eliminate duplicated include of test_and_set_t_is_ao_t.h.
2013-02-13Use __atomic GCC built-in to implement generic double-wide CASIvan Maidanski
* src/atomic_ops/sysdeps/gcc/generic.h (AO_double_compare_and_swap): Implement using __atomic_compare_exchange_n(__ATOMIC_RELAXED) instead of __sync_bool_compare_and_swap.
2013-02-13TODO file: move item about sync-base primitives to aarch64.h and generic.hIvan Maidanski
2013-02-09Implement double-wide load/store and CAS primitives for AArch64Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h: Include standard_ao_double_t.h (before inclusion of generic.h). * src/atomic_ops/sysdeps/gcc/generic.h (AO_double_load, AO_double_load_acquire, AO_double_store, AO_double_store_release, AO_double_compare_and_swap): Implement (only if AO_HAVE_DOUBLE_PTR_STORAGE defined).
2013-02-09Implement nop_read/write and and/or/xor_acquire/release/full for AArch64Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/generic.h (AO_nop_read, AO_nop_write, AO_and, AO_and_acquire, AO_and_release, AO_and_full, AO_or, AO_or_acquire, AO_or_release, AO_or_full, AO_xor, AO_xor_acquire, AO_xor_release, AO_xor_full): Implement. * src/atomic_ops/sysdeps/gcc/generic.h (AO_nop_full): Implement using __atomic_thread_fence instead of __sync_synchronize. * src/atomic_ops/sysdeps/gcc/generic.h: Add comment about AO_load_full and AO_store_full; update TODO items.
2013-02-09Allow to prefer more generalized primitives in gcc/generic.hIvan Maidanski
* src/atomic_ops/sysdeps/gcc/generic.h (AO_test_and_set, AO_test_and_set_acquire, AO_test_and_set_release, AO_test_and_set_full, AO_fetch_and_add, AO_fetch_and_add_acquire, AO_fetch_and_add_release, AO_fetch_and_add_full): Do not define if AO_PREFER_GENERALIZED. * src/atomic_ops/sysdeps/gcc/generic.h (AO_compare_and_swap): Do not define if AO_GENERALIZE_ASM_BOOL_CAS.
2013-02-09Move intrinsic-based primitives from gcc/aarch64.h to new gcc/generic.hIvan Maidanski
(code refactoring) * src/Makefile.am (nobase_private_HEADERS): Add generic.h entry. * src/atomic_ops/sysdeps/gcc/aarch64.h: Move all primitives to generic.h; include generic.h file. * src/atomic_ops/sysdeps/gcc/generic.h: New file. * src/atomic_ops/sysdeps/gcc/generic.h (AO_nop_full): Add comment.
2013-02-09Fix AO_load_acquire for AArch64Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h: Add TODO for AO_nop_read; uncomment AO_load_acquire definition and remove include of read_ordered.h file (because AO_load_acquire requires "release" barrier, AO_load_read is defined in generalize-small.h using AO_nop_read).
2013-02-09Merge branch 'master' into add-aarch64-supportIvan Maidanski
2013-02-06Remove load_read, store_write redundant definition from ordered_X.hIvan Maidanski
(code refactoring) * src/atomic_ops/sysdeps/loadstore/ordered_loads_only.template (AO_XSIZE_load_read): Remove prototype (since defined by generalize-small.template in the same way). * src/atomic_ops/sysdeps/loadstore/ordered_stores_only.template (AO_XSIZE_store_write): Likewise. * src/atomic_ops/sysdeps/loadstore/ordered_stores_only.template (AO_XSIZE_store_release): Define using AO_nop_write and AO_XSIZE_store directly. * src/atomic_ops/sysdeps/ordered_except_wr.h: Move include of ordered_stores_only.h down to be after AO_nop_write definition. * src/atomic_ops/sysdeps/read_ordered.h: Move include of ordered_loads_only.h down to be after AO_nop_read definition. * src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h: Regenerate. * src/atomic_ops/sysdeps/loadstore/ordered_stores_only.h: Likewise.
2013-02-06Revert "Prevent load_acquire redefinition in ordered_loads_only.h"Ivan Maidanski
(That change is not needed because the file defines really only load_acquire, and load_read is the same as in generalize-small.h) This reverts commit ad464bf64a139cefa8b6f6e77b5f1f5ea1c51519.
2013-02-03Merge branch 'add-dbl-load-store'Ivan Maidanski
2013-02-03Add generalized fetch_and_add_acquire/release (for ARMv6+)Ivan Maidanski
* src/atomic_ops/generalize-arithm.template (AO_XSIZE_fetch_and_add_acquire, AO_XSIZE_fetch_and_add_release): Add generalized template primitives based on AO_XSIZE_fetch_and_add. * src/atomic_ops/generalize-arithm.h: Regenerate.
2013-02-02Fix unsupported instruction use in char/short_fetch_and_add for ARMv6Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h (AO_ARM_HAVE_LDREXBH): Define new macro for ARMv6K/Z+ (excluding ARMv6, ARMv6J, ARMv6T2). * src/atomic_ops/sysdeps/gcc/arm.h (AO_char_store, AO_short_store, AO_char_fetch_and_add, AO_short_fetch_and_add): Define (together with the corresponding AO_HAVE_x macros) only if AO_ARM_HAVE_LDREXBH (since otherwise LDREXB/STREXB, LDREXH/STREXH are not supported by the target processor). * src/atomic_ops/sysdeps/gcc/arm.h: Include char_atomic_store.h and short_atomic_store.h only if AO_HAVE_char_store is not defined (by gcc/arm.h itself).
2013-02-02Implement char/short_fetch_and_add for ARMv6+ (GCC)Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h: Include char_atomic_store.h and short_atomic_store.h only if not AO_BROKEN_TASKSWITCH_CLREX. * src/atomic_ops/sysdeps/gcc/arm.h (AO_store): Update comment. * src/atomic_ops/sysdeps/gcc/arm.h (AO_char_store, AO_short_store): Implement using LDREXB/STREXB and LDREXH/STREXH, respectively, if AO_BROKEN_TASKSWITCH_CLREX defined (only if AO_ARM_HAVE_LDREX). * src/atomic_ops/sysdeps/gcc/arm.h (AO_char_fetch_and_add, AO_short_fetch_and_add): Implement (based on using LDREXB/STREXB and LDREXH/STREXH, respectively) if AO_ARM_HAVE_LDREX.
2013-02-02Adjust type of 'flag' and 'tmp' local variables in gcc/arm.hIvan Maidanski
(code refactoring) * src/atomic_ops/sysdeps/gcc/arm.h (AO_store, AO_fetch_compare_and_swap): Change type of "flag" local variable from AO_t to int (only if AO_BROKEN_TASKSWITCH_CLREX). * src/atomic_ops/sysdeps/gcc/arm.h (AO_test_and_set, AO_fetch_and_add, AO_fetch_and_add1, AO_fetch_and_sub1): Change type of "flag" local variable from unsigned long to int. * src/atomic_ops/sysdeps/gcc/arm.h (AO_fetch_and_add, AO_fetch_and_add1, AO_fetch_and_sub1): Change type of "tmp" local variable from unsigned long to AO_t.
2013-01-31Implement atomic store using direct write by default on ARMv6+Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h (AO_store): Define only if AO_BROKEN_TASKSWITCH_CLREX, otherwise include atomic_store.h; update and refine comment.
2013-01-30Implement char/short_store primitives at aligned addresses for ARMIvan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h: Include char_atomic_store.h and short_atomic_store.h if AO_ARM_HAVE_LDREX (after AO_ACCESS_x_CHECK_ALIGNED defined); add comment. * src/atomic_ops/sysdeps/gcc/arm.h: Include all_aligned_atomic_load_store.h instead of all_atomic_load_store.h (only if not AO_ARM_HAVE_LDREX).
2013-01-27.gitignore: Ignore .gch filesIvan Maidanski
2013-01-26Implement double_store for ARMv7 using LDREXD/STREXDIvan Maidanski
* src/atomic_ops/sysdeps/gcc/arm.h (AO_nop_full, AO_nop_write, AO_double_load, AO_double_compare_and_swap): Add comment about missing AO_THUMB_GO_ARM. * src/atomic_ops/sysdeps/gcc/arm.h (AO_double_load): Add comment. * src/atomic_ops/sysdeps/gcc/arm.h (AO_double_store): New primitive (implemented directly using LDREXD/STREXD).
2013-01-26Implement char/short_load primitives for ARMv6+Ivan Maidanski
* src/atomic_ops/sysdeps/armcc/arm_v6.h: Include all_atomic_only_load.h (with defined AO_ACCESS_CHECK_ALIGNED, AO_ACCESS_short_CHECK_ALIGNED and AO_ACCESS_int_CHECK_ALIGNED). * src/atomic_ops/sysdeps/gcc/arm.h: Likewise. * src/atomic_ops/sysdeps/armcc/arm_v6.h (AO_load, AO_HAVE_load): Remove (since defined by all_atomic_only_load.h). * src/atomic_ops/sysdeps/gcc/arm.h (AO_load, AO_HAVE_load): Likewise. * src/atomic_ops/sysdeps/gcc/arm.h: Adjust atomic_store.h filename in comment.
2013-01-26Prevent load_acquire redefinition in ordered_loads_only.hIvan Maidanski
* src/atomic_ops/sysdeps/loadstore/ordered_loads_only.template (AO_XSIZE_load_acquire, AO_HAVE_XSIZE_load_acquire): Do not define if AO_HAVE_XSIZE_load_acquire already defined. * src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h: Regenerate.
2013-01-26Generalize AArch64 add1/sub1 primitivesIvan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h (AO_fetch_and_add1, AO_fetch_and_add1_acquire, AO_fetch_and_add1_release, AO_fetch_and_add1_full, AO_fetch_and_sub1, AO_fetch_and_sub1_acquire, AO_fetch_and_sub1_release, AO_fetch_and_sub1_full): Remove (since generalized to the same expression).
2013-01-24Fix AO_nop_full and AO_load_read for AArch64Ivan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h: Place include of read_ordered.h to the end of file (to be after AO_load definition). * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_nop_full): Force compiler barrier for the uni-processor case. * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_load_acquire): Comment out and add FIXME (due to read_ordered.h). * src/atomic_ops/sysdeps/gcc/aarch64.h (AO_test_and_set, AO_test_and_set_acquire, AO_test_and_set_release, AO_test_and_set_full): Cast result to AO_TS_VAL_t (since __atomic_test_and_set returns AO_TS_t value).
2013-01-24Add TODO items to gcc/aarch64.hIvan Maidanski
* src/atomic_ops/sysdeps/gcc/aarch64.h: Add TODO items. * src/atomic_ops/sysdeps/gcc/arm.h: Remove FIXME for 64-bit ARM.
2013-01-24Reformat code of gcc/aarch64.hIvan Maidanski
2013-01-24Update AUTHORS fileIvan Maidanski
2013-01-24Add AArch64 (64-bit ARM) target initial supportYvan Roux
* src/Makefile.am (nobase_private_HEADERS): Add gcc/aarch64.h entry. * src/atomic_ops.h: Include gcc/aarch64.h if __aarch64__. * src/atomic_ops/sysdeps/gcc/aarch64.h: New file.
2013-01-20Add internal header containing only char/short/int/AO_t atomic loadsIvan Maidanski
(code refactoring) * src/Makefile.am (nobase_private_HEADERS): Add all_atomic_only_load.h entry. * src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h: Include all_atomic_load_store.h instead of including X_atomic_load.h and X_atomic_store.h directly; add comment for char type. * src/atomic_ops/sysdeps/all_atomic_load_store.h: Include all_atomic_only_load.h instead of including X_atomic_load.h directly. * src/atomic_ops/sysdeps/all_atomic_only_load.h: New file (contains only inclusion of atomic_load.h, char_atomic_load.h, short_atomic_load.h and int_atomic_load.h files.
2013-01-17Replace atomic_load_store.template with atomic_load and atomic_store onesIvan Maidanski
(code refactoring) * src/Makefile.am (EXTRA_DIST): Replace atomic_load_store.template entry with atomic_load.template and atomic_store.template. * src/Makefile.am (BUILT_SOURCES): Replace atomic_load_store.h, char_atomic_load_store.h, int_atomic_load_store.h, short_atomic_load_store.h entries with atomic_load.h, atomic_store.h, char_atomic_load.h, char_atomic_store.h, int_atomic_load.h, int_atomic_store.h, short_atomic_load.h, short_atomic_store.h, respectively. * src/Makefile.am (atomic_ops/sysdeps/loadstore/atomic_load_store.h, atomic_ops/sysdeps/loadstore/char_atomic_load_store.h, atomic_ops/sysdeps/loadstore/int_atomic_load_store.h, atomic_ops/sysdeps/loadstore/short_atomic_load_store.h): Replace with atomic_ops/sysdeps/loadstore/<T>_atomic_load.h and atomic_ops/sysdeps/loadstore/<T>_atomic_store.h rules. * src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h: Include all <T>_atomic_load.h and <T>_atomic_store.h instead of all removed <T>_atomic_load_store.h files. * src/atomic_ops/sysdeps/all_atomic_load_store.h: Likewise. * src/atomic_ops/sysdeps/gcc/alpha.h: Include atomic_load.h and atomic_store.h instead of removed atomic_load_store.h file. * src/atomic_ops/sysdeps/hpc/hppa.h: Likewise. * src/atomic_ops/sysdeps/loadstore/atomic_load.template: New template file (half of code copied from atomic_load_store.template). * src/atomic_ops/sysdeps/loadstore/atomic_store.template: Likewise. * src/atomic_ops/sysdeps/loadstore/atomic_load_store.template: Remove file. * src/atomic_ops/sysdeps/loadstore/atomic_load_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/char_atomic_load_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/int_atomic_load_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/short_atomic_load_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/atomic_load.h: Regenerate. * src/atomic_ops/sysdeps/loadstore/atomic_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/char_atomic_load.h: Likewise. * src/atomic_ops/sysdeps/loadstore/char_atomic_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/int_atomic_load.h: Likewise. * src/atomic_ops/sysdeps/loadstore/int_atomic_store.h: Likewise. * src/atomic_ops/sysdeps/loadstore/short_atomic_load.h: Likewise. * src/atomic_ops/sysdeps/loadstore/short_atomic_store.h: Likewise.