c4b8bc2307028a70fe62174b00d6b30fcecb6136
[urcu.git] / include / urcu / arch.h
1 /*
2 * urcu/arch.h
3 *
4 * Copyright (c) 2020 Michael Jeanson <michael.jeanson@efficios.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _URCU_ARCH_H
22 #define _URCU_ARCH_H
23
24 /*
25 * Architecture detection using compiler defines.
26 *
27 * The following defines are used internally for architecture specific code.
28 *
29 * URCU_ARCH_X86 : All x86 variants 32 and 64 bits
30 * URCU_ARCH_I386 : Specific to the i386
31 * URCU_ARCH_AMD64 : All 64 bits x86 variants
32 * URCU_ARCH_K1OM : Specific to the Xeon Phi / MIC
33 *
34 * URCU_ARCH_PPC : All PowerPC variants 32 and 64 bits
35 * URCU_ARCH_PPC64 : Specific to 64 bits variants
36 *
37 * URCU_ARCH_S390 : All IBM s390 / s390x variants
38 *
39 * URCU_ARCH_SPARC64 : All Sun SPARC variants
40 *
41 * URCU_ARCH_ALPHA : All DEC Alpha variants
42 * URCU_ARCH_IA64 : All Intel Itanium variants
43 * URCU_ARCH_ARM : All ARM 32 bits variants
44 * URCU_ARCH_AARCH64 : All ARM 64 bits variants
45 * URCU_ARCH_MIPS : All MIPS variants
46 * URCU_ARCH_NIOS2 : All Intel / Altera NIOS II variants
47 * URCU_ARCH_TILE : All Tilera TILE variants
48 * URCU_ARCH_HPPA : All HP PA-RISC variants
49 * URCU_ARCH_M68K : All Motorola 68000 variants
50 * URCU_ARCH_RISCV : All RISC-V variants
51 */
52
53 #if (defined(__INTEL_OFFLOAD) || defined(__TARGET_ARCH_MIC) || defined(__MIC__))
54
55 #define URCU_ARCH_X86 1
56 #define URCU_ARCH_AMD64 1
57 #define URCU_ARCH_K1OM 1
58 #include <urcu/arch/x86.h>
59
60 #elif (defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64))
61
62 #define URCU_ARCH_X86 1
63 #define URCU_ARCH_AMD64 1
64 #include <urcu/arch/x86.h>
65
66 #elif (defined(__i486__) || defined(__i586__) || defined(__i686__))
67
68 #define URCU_ARCH_X86 1
69 #include <urcu/arch/x86.h>
70
71 #elif (defined(__i386__) || defined(__i386))
72
73 #define URCU_ARCH_X86 1
74 #define URCU_ARCH_I386 1
75 #include <urcu/arch/x86.h>
76
77 #elif (defined(__powerpc64__) || defined(__ppc64__))
78
79 #define URCU_ARCH_PPC 1
80 #define URCU_ARCH_PPC64 1
81 #include <urcu/arch/ppc.h>
82
83 #elif (defined(__powerpc__) || defined(__powerpc) || defined(__ppc__))
84
85 #define URCU_ARCH_PPC 1
86 #include <urcu/arch/ppc.h>
87
88 #elif (defined(__s390__) || defined(__s390x__) || defined(__zarch__))
89
90 #define URCU_ARCH_S390 1
91 #include <urcu/arch/s390.h>
92
93 #elif (defined(__sparc__) || defined(__sparc) || defined(__sparc64__))
94
95 #define URCU_ARCH_SPARC64 1
96 #include <urcu/arch/sparc64.h>
97
98 #elif (defined(__alpha__) || defined(__alpha))
99
100 #define URCU_ARCH_ALPHA 1
101 #include <urcu/arch/alpha.h>
102
103 #elif (defined(__ia64__) || defined(__ia64))
104
105 #define URCU_ARCH_IA64 1
106 #include <urcu/arch/ia64.h>
107
108 #elif (defined(__arm__) || defined(__arm))
109
110 #define URCU_ARCH_ARM 1
111 #include <urcu/arch/arm.h>
112
113 #elif defined(__aarch64__)
114
115 #define URCU_ARCH_AARCH64 1
116 #include <urcu/arch/aarch64.h>
117
118 #elif (defined(__mips__) || defined(__mips))
119
120 #define URCU_ARCH_MIPS 1
121 #include <urcu/arch/mips.h>
122
123 #elif (defined(__nios2__) || defined(__nios2))
124
125 #define URCU_ARCH_NIOS2 1
126 #include <urcu/arch/nios2.h>
127
128 #elif defined(__tilegx__)
129 /*
130 * URCU has only been tested on the TileGx architecture. For other Tile*
131 * architectures, please run the tests first and report the results to the
132 * maintainer so that proper support can be added.
133 */
134
135 #define URCU_ARCH_TILE 1
136 #include <urcu/arch/tile.h>
137
138 #elif (defined(__hppa__) || defined(__HPPA__) || defined(__hppa))
139
140 #define URCU_ARCH_HPPA 1
141 #include <urcu/arch/hppa.h>
142
143 #elif defined(__m68k__)
144
145 #define URCU_ARCH_M68K 1
146 #include <urcu/arch/m68k.h>
147
148 #elif defined(__riscv)
149
150 #define URCU_ARCH_RISCV 1
151 #include <urcu/arch/riscv.h>
152
153 #else
154 #error "Cannot build: unrecognized architecture, see <urcu/arch.h>."
155 #endif
156
157
158 #endif /* _URCU_ARCH_H */
This page took 0.031506 seconds and 3 git commands to generate.