diff options
author | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-01-31 20:24:45 +0000 |
---|---|---|
committer | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-06-12 10:23:38 +0100 |
commit | 6edf6fe75bd5ab84ae85d008e531002b9d80600c (patch) | |
tree | 37e7cff7b7c2501fd018657460e3c171dad46f0e /libatomic/load_n.c | |
parent | f6b9a064a295f5371901e2fac380d20e77cf7131 (diff) | |
download | gcc-6edf6fe75bd5ab84ae85d008e531002b9d80600c.zip gcc-6edf6fe75bd5ab84ae85d008e531002b9d80600c.tar.gz gcc-6edf6fe75bd5ab84ae85d008e531002b9d80600c.tar.bz2 |
Libatomic: Define per-file identifier macros
In order to facilitate the fine-tuning of how `libatomic_i.h' and
`host-config.h' headers are used by different atomic functions, we
define distinct identifier macros for each file which, in implementing
atomic operations, imports these headers.
The idea is that different parts of these headers could then be
conditionally defined depending on the macros set by the file that
`#include'd them.
Given how it is possible that some file names are generic enough that
using them as-is for macro names (e.g. flag.c -> FLAG) may potentially
lead to name clashes with other macros, all file names first have LAT_
prepended to them such that, for example, flag.c is assigned the
LAT_FLAG macro.
Libatomic/ChangeLog:
* cas_n.c (LAT_CAS_N): New.
* exch_n.c (LAT_EXCH_N): Likewise.
* fadd_n.c (LAT_FADD_N): Likewise.
* fand_n.c (LAT_FAND_N): Likewise.
* fence.c (LAT_FENCE): Likewise.
* fenv.c (LAT_FENV): Likewise.
* fior_n.c (LAT_FIOR_N): Likewise.
* flag.c (LAT_FLAG): Likewise.
* fnand_n.c (LAT_FNAND_N): Likewise.
* fop_n.c (LAT_FOP_N): Likewise
* fsub_n.c (LAT_FSUB_N): Likewise.
* fxor_n.c (LAT_FXOR_N): Likewise.
* gcas.c (LAT_GCAS): Likewise.
* gexch.c (LAT_GEXCH): Likewise.
* glfree.c (LAT_GLFREE): Likewise.
* gload.c (LAT_GLOAD): Likewise.
* gstore.c (LAT_GSTORE): Likewise.
* load_n.c (LAT_LOAD_N): Likewise.
* store_n.c (LAT_STORE_N): Likewise.
* tas_n.c (LAT_TAS_N): Likewise.
Diffstat (limited to 'libatomic/load_n.c')
-rw-r--r-- | libatomic/load_n.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libatomic/load_n.c b/libatomic/load_n.c index 7513f19..657c8e2 100644 --- a/libatomic/load_n.c +++ b/libatomic/load_n.c @@ -22,6 +22,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see <http://www.gnu.org/licenses/>. */ +#define LAT_LOAD_N #include "libatomic_i.h" @@ -113,3 +114,4 @@ SIZE(libat_load) (UTYPE *mptr, int smodel) #endif EXPORT_ALIAS (SIZE(load)); +#undef LAT_LOAD_N |