2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
39 * Basic types and macros used throughout \Gromacs.
42 * \ingroup module_utility
44 #ifndef GMX_UTILITY_BASEDEFINITIONS_H
45 #define GMX_UTILITY_BASEDEFINITIONS_H
53 * Boolean type for use in \Gromacs C code.
55 * There is no standard size for 'bool' in C++, so when
56 * we previously defined it to int for C code the data types
57 * (and structs) would have different size depending on your compiler,
58 * both at \Gromacs build time and when you use the library.
59 * The only way around this is to NOT assume anything about the C++ type,
60 * so we cannot use the name 'bool' in our C code anymore.
65 /** False value for ::gmx_bool. */
69 /** True value for ::gmx_bool. */
72 /** Number of gmx_bool values. */
75 /*! \name Fixed-width integer types
77 * These types and macros provide the equivalent of 32- and 64-bit integer
78 * types from C99 headers `stdint.h` and `inttypes.h`. These headers are also
79 * there in C++11. The types and macros from here should be used instead of
82 * (MSVC 2015 still doesn't support the format strings.)
85 typedef int32_t gmx_int32_t
;
86 typedef int64_t gmx_int64_t
;
87 typedef uint32_t gmx_uint32_t
;
88 typedef uint64_t gmx_uint64_t
;
91 #define GMX_PRId32 "I32d"
92 #define GMX_SCNd32 "I32d"
94 #define GMX_PRId64 "I64d"
95 #define GMX_SCNd64 "I64d"
97 #define GMX_PRIu32 "I32u"
98 #define GMX_SCNu32 "I32u"
100 #define GMX_PRIu64 "I64u"
101 #define GMX_SCNu64 "I64u"
103 #define GMX_PRId32 PRId32
104 #define GMX_SCNd32 SCNd32
106 #define GMX_PRId64 PRId64
107 #define GMX_SCNd64 SCNd64
109 #define GMX_PRIu32 PRIu32
110 #define GMX_SCNu32 SCNu32
112 #define GMX_PRIu64 PRIu64
113 #define GMX_SCNu64 SCNu64
116 #define GMX_INT32_MAX INT32_MAX
117 #define GMX_INT32_MIN INT32_MIN
119 #define GMX_INT64_MAX INT64_MAX
120 #define GMX_INT64_MIN INT64_MIN
122 #define GMX_UINT32_MAX UINT32_MAX
123 #define GMX_UINT32_MIN UINT32_MIN
125 #define GMX_UINT64_MAX UINT64_MAX
126 #define GMX_UINT64_MIN UINT64_MIN
131 * Keyword to use in C code instead of C99 `inline`.
133 * Some of the C compilers we support do not recognize the C99 keyword
134 * `inline`. This macro should be used in C code and in shared C/C++ headers
135 * to indicate a function is inlined.
136 * C++ code should use plain `inline`, as that is already in C++98.
138 #if !defined __cplusplus && defined _MSC_VER
139 #define gmx_inline __inline
142 #define gmx_inline inline
145 /* ICC, GCC, MSVC, Pathscale, PGI, XLC support __restrict.
146 * Any other compiler can be added here. */
148 * Keyword to use in instead of C99 `restrict`.
150 * We cannot use `restrict` because it is only in C99, but not in C++.
151 * This macro should instead be used to allow easily supporting different
154 #define gmx_restrict __restrict
156 /*! \def GMX_CXX11_COMPILATION
158 * Defined to 1 when compiling as C++11.
160 * While \Gromacs only supports C++11 compilation, there are some parts of the
161 * code that are compiled with other tools than the actual C++ compiler, and
162 * these may not support C++11. Most notable such case is all of CUDA code
163 * (with CUDA versions older than 6.5), but other types of kernels might also
164 * have similar limitations in the future.
166 * The define is intended for conditional compilation in low-level headers that
167 * need to support inclusion from such non-C++11 files, but get significant
168 * benefit (e.g., for correctness checking or more convenient use) from C++11.
169 * It should only be used for features that do not influence the ABI of the
170 * header; e.g., static_asserts or additional helper methods.
172 #if defined __cplusplus && __cplusplus >= 201103L
173 # define GMX_CXX11_COMPILATION 1
175 # define GMX_CXX11_COMPILATION 0
180 * Attribute to suppress compiler warnings about unused function parameters.
182 * This attribute suppresses compiler warnings about unused function arguments
183 * by marking them as possibly unused. Some arguments are unused but
184 * have to be retained to preserve a function signature
185 * that must match that of another function.
186 * Some arguments are only used in *some* conditional compilation code paths
191 /* GCC, clang, and some ICC pretending to be GCC */
192 # define gmx_unused __attribute__ ((unused))
193 #elif (defined(__INTEL_COMPILER) || defined(__ECC)) && !defined(_MSC_VER)
195 # define gmx_unused __attribute__ ((unused))
197 /* Portland group compilers */
198 # define gmx_unused __attribute__ ((unused))
199 #elif defined _MSC_VER
201 # define gmx_unused /*@unused@*/
202 #elif defined(__xlC__)
204 # define gmx_unused __attribute__ ((unused))
210 #ifndef __has_feature
211 /** For compatibility with non-clang compilers. */
212 #define __has_feature(x) 0
215 /*! \def gmx_noreturn
217 * Indicate that a function is not expected to return.
220 #if defined(__GNUC__) || __has_feature(attribute_analyzer_noreturn)
221 #define gmx_noreturn __attribute__((noreturn))
222 #elif defined (_MSC_VER)
223 #define gmx_noreturn __declspec(noreturn)
229 /*! \def GMX_ALIGNED(type, alignment)
231 * Declare variable with data alignment
233 * \param[in] type Type of variable
234 * \param[in] alignment Alignment in multiples of type
238 GMX_ALIGNED(real, GMX_SIMD_REAL_WIDTH) buf[...];
242 // We rely on C++11. This will for instance work for MSVC2015 and later.
243 // If you get an error here, find out what attribute to use to get your compiler to align
244 // data properly and add it as a case.
245 #define GMX_ALIGNED(type, alignment) alignas(alignment*sizeof(type)) type
248 * Macro to explicitly ignore an unused value.
250 * \ingroup module_utility
252 #define GMX_UNUSED_VALUE(value) (void)value
259 /*! \cond internal */
261 * Helper for ignoring values in macros.
263 * \ingroup module_utility
265 template <typename T
>
266 static inline void ignoreValueHelper(const T
&)
270 } // namespace internal
274 * Macro to explicitly ignore a return value of a call.
276 * Mainly meant for ignoring values of functions declared with
277 * `__attribute__((warn_unused_return))`. Makes it easy to find those places if
278 * they need to be fixed, and document the intent in cases where the return
279 * value really can be ignored. It also makes it easy to adapt the approach so
280 * that they don't produce warnings. A cast to void doesn't remove the warning
281 * in gcc, while adding a dummy variable can cause warnings about an unused
284 * \ingroup module_utility
286 #define GMX_IGNORE_RETURN_VALUE(call) \
287 ::gmx::internal::ignoreValueHelper(call)