Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'toufic' of github.com:Takishipp/simgrid
[simgrid.git] / include / xbt / base.h
1 /* xbt.h - Public interface to the xbt (simgrid's toolbox)                  */
2
3 /* Copyright (c) 2004-2015. 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 #define XBT_ATTRIB_NORETURN __attribute__((__noreturn__))
49 #define XBT_ATTRIB_UNUSED  __attribute__((__unused__))
50 #define XBT_ATTRIB_DEPRECATED(m)  __attribute__((__deprecated__(m)))
51
52 /* Constructor priorities exist since gcc 4.3.  Apparently, they are however not
53  * supported on Macs. */
54 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && !defined(__APPLE__)
55 #  define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__ (prio)))
56 #  define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__ (prio)))
57 #else
58 #  define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__))
59 #  define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__))
60 #endif
61
62 #if defined(__GNUC__)
63 #  define XBT_ALWAYS_INLINE inline __attribute__ ((always_inline))
64 #else
65 #  define XBT_ALWAYS_INLINE inline
66 #endif
67
68 #if defined(__GNUC__)
69 #  define XBT_THREAD_LOCAL __thread
70 #else
71 #  define XBT_THREAD_LOCAL No thread local on this architecture
72 #endif
73
74 /* improvable on gcc (by evaluating arguments only once), but wouldn't be portable */
75 #ifdef MIN
76 #  undef MIN
77 #endif
78 #define MIN(a,b) ((a)<(b)?(a):(b))
79
80 #ifdef MAX
81 #  undef MAX
82 #endif
83 #define MAX(a,b) ((a)>(b)?(a):(b))
84
85 /*
86  * Expands to `one' if there is only one argument for the variadic part.
87  * Otherwise, expands to `more'.
88  * Works with up to 63 arguments, which is the maximum mandated by the C99 standard.
89  */
90 #define _XBT_IF_ONE_ARG(one, more, ...)                                 \
91     _XBT_IF_ONE_ARG_(__VA_ARGS__,                                       \
92                      more, more, more, more, more, more, more, more,    \
93                      more, more, more, more, more, more, more, more,    \
94                      more, more, more, more, more, more, more, more,    \
95                      more, more, more, more, more, more, more, more,    \
96                      more, more, more, more, more, more, more, more,    \
97                      more, more, more, more, more, more, more, more,    \
98                      more, more, more, more, more, more, more, more,    \
99                      more, more, more, more, more, more, more, one)
100 #define _XBT_IF_ONE_ARG_(a64, a63, a62, a61, a60, a59, a58, a57,        \
101                          a56, a55, a54, a53, a52, a51, a50, a49,        \
102                          a48, a47, a46, a45, a44, a43, a42, a41,        \
103                          a40, a39, a38, a37, a36, a35, a34, a33,        \
104                          a32, a31, a30, a29, a28, a27, a26, a25,        \
105                          a24, a23, a22, a21, a20, a19, a18, a17,        \
106                          a16, a15, a14, a13, a12, a11, a10, a9,         \
107                          a8, a7, a6, a5, a4, a3, a2, a1, N, ...) N
108
109 /* Handle import/export stuff
110  *
111  * Rational of XBT_PUBLIC:
112  *   * This is for library symbols visible from the application-land.
113  *     Basically, any symbols defined in the include/directory must be like this (plus some other globals).
114  *
115  *     UNIX coders should just think of it as a special way to say "extern".
116  *
117  *   * If you build the DLL, define the DLL_EXPORT symbol so that all symbols actually get exported by this file.
118  *
119  *   * If you link your application against the DLL or if you do a UNIX build, don't do anything special. This file
120  *     will do the right thing for you by default.
121  *
122  * Rational of XBT_EXPORT_NO_IMPORT: (windows-only)
123  *   * Symbols which must be exported in the DLL, but not imported from it.
124  *
125  *   * This is obviously useful for initialized globals (which cannot be  extern or similar).
126  *   * This is also used in the log mechanism where a macro creates the variable automatically. When the macro is
127  *     called from within SimGrid, the symbol must be exported, but when called  from within the client code, it must
128  *     not try to retrieve the symbol from the DLL since it's not in there.
129  *
130  * Rational of XBT_IMPORT_NO_EXPORT: (windows-only)
131  *   * Symbols which must be imported from the DLL, but not explicitly  exported from it.
132  *
133  *   * The root log category is already exported, but not imported explicitly when creating a subcategory since we
134  *     cannot import the parent category to deal with the fact that the parent may be in application space, not DLL
135  *     space.
136  */
137
138 /* Build the DLL */
139 #if defined(DLL_EXPORT)
140 #  define XBT_PUBLIC(type)            __declspec(dllexport) type
141 #  define XBT_EXPORT_NO_IMPORT(type)  __declspec(dllexport) type
142 #  define XBT_IMPORT_NO_EXPORT(type)  type
143 #  define XBT_PUBLIC_DATA(type)       extern __declspec(dllexport) type
144 #  define XBT_PUBLIC_CLASS            class __declspec(dllexport)
145 #  define XBT_PRIVATE
146
147 /* Link against the DLL */
148 #elif (defined(_WIN32) && !defined(DLL_EXPORT))
149 #  define XBT_PUBLIC(type)            __declspec(dllimport) type
150 #  define XBT_EXPORT_NO_IMPORT(type)  type
151 #  define XBT_IMPORT_NO_EXPORT(type)  __declspec(dllimport) type
152 #  define XBT_PUBLIC_DATA(type)       extern __declspec(dllimport) type
153 #  define XBT_PUBLIC_CLASS            class __declspec(dllimport)
154 #  define XBT_PRIVATE
155
156 #elif defined(__ELF__) 
157 #  define XBT_PUBLIC(type)            __attribute__((visibility("default"))) type
158 #  define XBT_EXPORT_NO_IMPORT(type)  __attribute__((visibility("default"))) type
159 #  define XBT_IMPORT_NO_EXPORT(type)  __attribute__((visibility("default"))) type
160 #  define XBT_PUBLIC_DATA(type)       extern __attribute__((visibility("default"))) type
161 #  define XBT_PUBLIC_CLASS            class __attribute__((visibility("default")))
162 #  define XBT_PRIVATE                 __attribute__((visibility("hidden")))
163
164 #else
165 #  define XBT_PUBLIC(type)            type
166 #  define XBT_EXPORT_NO_IMPORT(type)  type
167 #  define XBT_IMPORT_NO_EXPORT(type)  type
168 #  define XBT_PUBLIC_DATA(type)       extern type
169 #  define XBT_PUBLIC_CLASS            class
170 #  define XBT_PRIVATE                 /** @private */
171
172 #endif
173
174 #define TRUE  1
175 #define FALSE 0
176
177 /* C++ users need love */
178 #ifndef SG_BEGIN_DECL
179 # ifdef __cplusplus
180 #  define SG_BEGIN_DECL() extern "C" {
181 # else
182 #  define SG_BEGIN_DECL()
183 # endif
184 #endif
185
186 #ifndef SG_END_DECL
187 # ifdef __cplusplus
188 #  define SG_END_DECL() }
189 # else
190 #  define SG_END_DECL()
191 # endif
192 #endif
193 /* End of cruft for C++ */
194
195 #endif