Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into fix/execute_benched
[simgrid.git] / include / xbt / base.h
1 /* xbt.h - Public interface to the xbt (simgrid's toolbox)                  */
2
3 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef XBT_BASE_H
9 #define XBT_BASE_H
10
11 /* Define _GNU_SOURCE for getline, isfinite, etc. */
12 #ifndef _GNU_SOURCE
13 #  define _GNU_SOURCE
14 #endif
15
16 // Teach the compiler that some code path is unreacheable:
17 #if defined(__has_builtin)
18 #  if __has_builtin(__builtin_unreachable)
19 #    define XBT_UNREACHABLE() __builtin_unreachable()
20 #  else
21 #    include <stdlib.h>
22 #    define XBT_UNREACHABLE() abort()
23 #  endif
24 #elif (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
25 #  define XBT_UNREACHABLE() __builtin_unreachable()
26 #else
27 #  include <stdlib.h>
28 #  define XBT_UNREACHABLE() abort()
29 #endif
30
31 /* On MinGW, stdio.h defines __MINGW_PRINTF_FORMAT and __MINGW_SCANF_FORMAT
32    which are the suitable format style (either gnu_printf or ms_printf)
33    depending on which version is available (__USE_MINGW_ANSI_STDIO): */
34 #ifdef __MINGW32__
35 #  include <stdio.h>
36
37 #  define XBT_ATTRIB_PRINTF( format_idx, arg_idx )    \
38      __attribute__((__format__ (__MINGW_PRINTF_FORMAT, format_idx, arg_idx)))
39 #  define XBT_ATTRIB_SCANF( format_idx, arg_idx )     \
40      __attribute__((__MINGW_SCANF_FORMAT (__scanf__, format_idx, arg_idx)))
41 #else
42 #  define XBT_ATTRIB_PRINTF( format_idx, arg_idx )    \
43      __attribute__((__format__ (__printf__, format_idx, arg_idx)))
44 #  define XBT_ATTRIB_SCANF( format_idx, arg_idx )     \
45      __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
46 #endif
47
48 #if defined(__cplusplus)
49 #if __cplusplus >= 201103L
50 #define XBT_ATTRIB_NORETURN [[noreturn]]
51 #endif
52 #if __cplusplus >= 201703L
53 #define XBT_ATTRIB_UNUSED [[maybe_unused]]
54 #endif
55 #if __cplusplus >= 201402L
56 #define XBT_ATTRIB_DEPRECATED(msg) [[deprecated(msg)]]
57 #endif
58 #elif defined(__STDC_VERSION__)
59 #if __STDC_VERSION__ >= 201112L
60 #define XBT_ATTRIB_NORETURN _Noreturn
61 #endif
62 #endif
63
64 #ifndef XBT_ATTRIB_NORETURN
65 #define XBT_ATTRIB_NORETURN __attribute__((noreturn))
66 #endif
67 #ifndef XBT_ATTRIB_UNUSED
68 #define XBT_ATTRIB_UNUSED  __attribute__((unused))
69 #endif
70 #ifndef XBT_ATTRIB_DEPRECATED
71 #define XBT_ATTRIB_DEPRECATED(msg) __attribute__((deprecated(msg)))
72 #endif
73
74 #define XBT_ATTRIB_DEPRECATED_v319(msg) XBT_ATTRIB_DEPRECATED(msg) /* Will be dropped in v3.19 */
75 #define XBT_ATTRIB_DEPRECATED_v320(msg) XBT_ATTRIB_DEPRECATED(msg) /* Will be dropped in v3.20 */
76 #define XBT_ATTRIB_DEPRECATED_v321(msg) XBT_ATTRIB_DEPRECATED(msg) /* Will be dropped in v3.21 */
77
78 /* Constructor priorities exist since gcc 4.3.  Apparently, they are however not
79  * supported on Macs. */
80 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && !defined(__APPLE__)
81 #  define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__ (prio)))
82 #  define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__ (prio)))
83 #else
84 #  define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__))
85 #  define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__))
86 #endif
87
88 #if defined(__GNUC__)
89 #  define XBT_ALWAYS_INLINE inline __attribute__ ((always_inline))
90 #else
91 #  define XBT_ALWAYS_INLINE inline
92 #endif
93
94 #if defined(__GNUC__)
95 #  define XBT_THREAD_LOCAL __thread
96 #else
97 #  define XBT_THREAD_LOCAL No thread local on this architecture
98 #endif
99
100 /* improvable on gcc (by evaluating arguments only once), but wouldn't be portable */
101 #ifdef MIN
102 #  undef MIN
103 #endif
104 #define MIN(a,b) ((a)<(b)?(a):(b))
105
106 #ifdef MAX
107 #  undef MAX
108 #endif
109 #define MAX(a,b) ((a)>(b)?(a):(b))
110
111 /*
112  * Expands to `one' if there is only one argument for the variadic part.
113  * Otherwise, expands to `more'.
114  * Works with up to 63 arguments, which is the maximum mandated by the C99 standard.
115  */
116 #define _XBT_IF_ONE_ARG(one, more, ...)                                 \
117     _XBT_IF_ONE_ARG_(__VA_ARGS__,                                       \
118                      more, more, more, more, more, more, more, more,    \
119                      more, more, more, more, more, more, more, more,    \
120                      more, more, more, more, more, more, more, more,    \
121                      more, more, more, more, more, more, more, more,    \
122                      more, more, more, more, more, more, more, more,    \
123                      more, more, more, more, more, more, more, more,    \
124                      more, more, more, more, more, more, more, more,    \
125                      more, more, more, more, more, more, more, one)
126 #define _XBT_IF_ONE_ARG_(a64, a63, a62, a61, a60, a59, a58, a57,        \
127                          a56, a55, a54, a53, a52, a51, a50, a49,        \
128                          a48, a47, a46, a45, a44, a43, a42, a41,        \
129                          a40, a39, a38, a37, a36, a35, a34, a33,        \
130                          a32, a31, a30, a29, a28, a27, a26, a25,        \
131                          a24, a23, a22, a21, a20, a19, a18, a17,        \
132                          a16, a15, a14, a13, a12, a11, a10, a9,         \
133                          a8, a7, a6, a5, a4, a3, a2, a1, N, ...) N
134
135 /* Handle import/export stuff
136  *
137  * Rational of XBT_PUBLIC:
138  *   * This is for library symbols visible from the application-land.
139  *     Basically, any symbols defined in the include/directory must be like this (plus some other globals).
140  *
141  *     UNIX coders should just think of it as a special way to say "extern".
142  *
143  *   * If you build the DLL, define the DLL_EXPORT symbol so that all symbols actually get exported by this file.
144  *
145  *   * If you link your application against the DLL or if you do a UNIX build, don't do anything special. This file
146  *     will do the right thing for you by default.
147  *
148  * Rational of XBT_EXPORT_NO_IMPORT: (windows-only)
149  *   * Symbols which must be exported in the DLL, but not imported from it.
150  *
151  *   * This is obviously useful for initialized globals (which cannot be  extern or similar).
152  *   * This is also used in the log mechanism where a macro creates the variable automatically. When the macro is
153  *     called from within SimGrid, the symbol must be exported, but when called  from within the client code, it must
154  *     not try to retrieve the symbol from the DLL since it's not in there.
155  *
156  * Rational of XBT_IMPORT_NO_EXPORT: (windows-only)
157  *   * Symbols which must be imported from the DLL, but not explicitly  exported from it.
158  *
159  *   * The root log category is already exported, but not imported explicitly when creating a subcategory since we
160  *     cannot import the parent category to deal with the fact that the parent may be in application space, not DLL
161  *     space.
162  */
163
164 /* Build the DLL */
165 #if defined(DLL_EXPORT)
166 #  define XBT_ATTRIB_PUBLIC           __declspec(dllexport)
167 #  define XBT_PUBLIC(type)            __declspec(dllexport) type
168 #  define XBT_EXPORT_NO_IMPORT(type)  __declspec(dllexport) type
169 #  define XBT_IMPORT_NO_EXPORT(type)  type
170 #  define XBT_PUBLIC_DATA(type)       extern __declspec(dllexport) type
171 #  define XBT_PUBLIC_CLASS            class __declspec(dllexport)
172 #  define XBT_PRIVATE
173
174 /* Link against the DLL */
175 #elif (defined(_WIN32) && !defined(DLL_EXPORT))
176 #  define XBT_ATTRIB_PUBLIC           __declspec(dllimport)
177 #  define XBT_PUBLIC(type)            __declspec(dllimport) type
178 #  define XBT_EXPORT_NO_IMPORT(type)  type
179 #  define XBT_IMPORT_NO_EXPORT(type)  __declspec(dllimport) type
180 #  define XBT_PUBLIC_DATA(type)       extern __declspec(dllimport) type
181 #  define XBT_PUBLIC_CLASS            class __declspec(dllimport)
182 #  define XBT_PRIVATE
183
184 #elif defined(__ELF__)
185 #  define XBT_ATTRIB_PUBLIC           __attribute__((visibility("default")))
186 #  define XBT_PUBLIC(type)            __attribute__((visibility("default"))) type
187 #  define XBT_EXPORT_NO_IMPORT(type)  __attribute__((visibility("default"))) type
188 #  define XBT_IMPORT_NO_EXPORT(type)  __attribute__((visibility("default"))) type
189 #  define XBT_PUBLIC_DATA(type)       extern __attribute__((visibility("default"))) type
190 #  define XBT_PUBLIC_CLASS            class __attribute__((visibility("default")))
191 #  define XBT_PRIVATE                 __attribute__((visibility("hidden")))
192
193 #else
194 #  define XBT_ATTRIB_PUBLIC           /* public */
195 #  define XBT_PUBLIC(type)            type
196 #  define XBT_EXPORT_NO_IMPORT(type)  type
197 #  define XBT_IMPORT_NO_EXPORT(type)  type
198 #  define XBT_PUBLIC_DATA(type)       extern type
199 #  define XBT_PUBLIC_CLASS            class
200 #  define XBT_PRIVATE                 /** @private */
201
202 #endif
203
204 #define TRUE  1
205 #define FALSE 0
206
207 /* C++ users need love */
208 #ifndef SG_BEGIN_DECL
209 # ifdef __cplusplus
210 #  define SG_BEGIN_DECL() extern "C" {
211 # else
212 #  define SG_BEGIN_DECL()
213 # endif
214 #endif
215
216 #ifndef SG_END_DECL
217 # ifdef __cplusplus
218 #  define SG_END_DECL() }
219 # else
220 #  define SG_END_DECL()
221 # endif
222 #endif
223 /* End of cruft for C++ */
224
225 #endif