Point Cloud Library (PCL) 1.15.1-dev
Loading...
Searching...
No Matches
pcl_macros.h
Go to the documentation of this file.
1/*
2 * Software License Agreement (BSD License)
3 *
4 * Point Cloud Library (PCL) - www.pointclouds.org
5 * Copyright (c) 2010-2012, Willow Garage, Inc.
6 *
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer in the documentation and/or other materials provided
18 * with the distribution.
19 * * Neither the name of the copyright holder(s) nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#pragma once
38
39/**
40 * \file pcl/pcl_macros.h
41 *
42 * \brief Defines all the PCL and non-PCL macros used
43 * \ingroup common
44 */
45
46#if defined __INTEL_COMPILER
47 #pragma warning disable 2196 2536 279
48#endif
49
50#if defined _MSC_VER
51 // 4503 : decorated name length exceeded, name was truncated
52 // 4146 : unary minus operator applied to unsigned type, result still unsigned
53 #pragma warning (disable: 4018 4521 4251 4305 4503 4146)
54#endif
55
56#ifndef _USE_MATH_DEFINES
57 #define _USE_MATH_DEFINES
58#endif
59#include <cmath>
60#include <cstdlib>
61#include <iostream>
62
63// We need to check for GCC version, because GCC releases before 9 were implementing an
64// OpenMP 3.1 data sharing rule, even OpenMP 4 is supported, so a plain OpenMP version 4 check
65// isn't enough (see https://www.gnu.org/software/gcc/gcc-9/porting_to.html#ompdatasharing)
66#if (defined _OPENMP && (_OPENMP <= 201307)) || (defined __GNUC__ && (__GNUC__ >= 6 && __GNUC__ < 9))
67 #define OPENMP_LEGACY_CONST_DATA_SHARING_RULE 1
68#else
69 #define OPENMP_LEGACY_CONST_DATA_SHARING_RULE 0
70#endif
71
72#include <pcl/pcl_config.h>
73
74#include <boost/preprocessor/arithmetic/add.hpp>
75#include <boost/preprocessor/comparison/equal.hpp>
76#include <boost/preprocessor/comparison/less.hpp>
77#include <boost/preprocessor/control/if.hpp>
78#include <boost/preprocessor/stringize.hpp>
79
80// MSVC < 2019 have issues:
81// * can't short-circuiting logic in macros
82// * don't define standard macros
83// => this leads to annoying C4067 warnings (see https://developercommunity.visualstudio.com/content/problem/327796/-has-cpp-attribute-emits-warning-is-wrong-highligh.html)
84#if defined(_MSC_VER)
85 // nvcc on msvc can't work with [[deprecated]]
86 #if !defined(__CUDACC__)
87 #define _PCL_DEPRECATED_IMPL(Message) [[deprecated(Message)]]
88 #else
89 #define _PCL_DEPRECATED_IMPL(Message)
90 #endif
91#elif __has_cpp_attribute(deprecated)
92 #define _PCL_DEPRECATED_IMPL(Message) [[deprecated(Message)]]
93#else
94 #warning "You need to implement _PCL_DEPRECATED_IMPL for this compiler"
95 #define _PCL_DEPRECATED_IMPL(Message)
96#endif
97
98// Macro for pragma operator
99#if (defined (__GNUC__) || defined(__clang__))
100 #define PCL_PRAGMA(x) _Pragma (#x)
101#elif _MSC_VER
102 #define PCL_PRAGMA(x) __pragma (#x)
103#else
104 #define PCL_PRAGMA
105#endif
106
107// Macro for emitting pragma warning for deprecated headers
108#if (defined (__GNUC__) || defined(__clang__))
109 #define _PCL_DEPRECATED_HEADER_IMPL(Message) PCL_PRAGMA (message Message)
110#elif _MSC_VER
111 #define _PCL_DEPRECATED_HEADER_IMPL(Message) PCL_PRAGMA (warning (Message))
112#else
113 #warning "You need to implement _PCL_DEPRECATED_HEADER_IMPL for this compiler"
114 #define _PCL_DEPRECATED_HEADER_IMPL(Message)
115#endif
116
117// NOLINTBEGIN(bugprone-macro-parentheses)
118/**
119 * \brief A handy way to inform the user of the removal deadline
120 */
121#define _PCL_PREPARE_REMOVAL_MESSAGE(Major, Minor, Msg) \
122 Msg " (It will be removed in PCL " BOOST_PP_STRINGIZE(Major.Minor) ")"
123// NOLINTEND(bugprone-macro-parentheses)
124
125/**
126 * \brief Tests for Minor < PCL_MINOR_VERSION
127 * \details When PCL VERSION is of format `34.12.99`, this macro behaves as if it is
128 * already `34.13.0`, and allows for smoother transition for maintainers
129 */
130#define _PCL_COMPAT_MINOR_VERSION(Minor, IfPass, IfFail) \
131 BOOST_PP_IF(BOOST_PP_EQUAL(PCL_REVISION_VERSION, 99), \
132 BOOST_PP_IF(BOOST_PP_LESS(BOOST_PP_ADD(PCL_MINOR_VERSION, 1), Minor), IfPass, IfFail), \
133 BOOST_PP_IF(BOOST_PP_LESS(PCL_MINOR_VERSION, Minor), IfPass, IfFail))
134
135/**
136 * \brief Tests for Major == PCL_MAJOR_VERSION
137 * \details When PCL VERSION is of format `34.99.12`, this macro behaves as if it is
138 * already `35.0.0`, and allows for smoother transition for maintainers
139 */
140#define _PCL_COMPAT_MAJOR_VERSION(Major, IfPass, IfFail) \
141 BOOST_PP_IF(BOOST_PP_EQUAL(PCL_MINOR_VERSION, 99), \
142 BOOST_PP_IF(BOOST_PP_EQUAL(BOOST_PP_ADD(PCL_MAJOR_VERSION, 1), Major), IfPass, IfFail), \
143 BOOST_PP_IF(BOOST_PP_EQUAL(PCL_MAJOR_VERSION, Major), IfPass, IfFail))
144
145/**
146 * \brief macro for compatibility across compilers and help remove old deprecated
147 * items for the Major.Minor release
148 *
149 * \details compiler errors of `unneeded_deprecation` and `major_version_mismatch`
150 * are hints to the developer that those items can be safely removed.
151 * Behavior of PCL_DEPRECATED(1, 99, "Not needed anymore")
152 * * till PCL 1.98: "Not needed anymore (It will be removed in PCL 1.99)"
153 * * PCL 1.99 onwards: compiler error with "unneeded_deprecation"
154 * * PCL 2.0 onwards: compiler error with "major_version_mismatch"
155 */
156#define PCL_DEPRECATED(Major, Minor, Message) \
157 _PCL_COMPAT_MAJOR_VERSION( \
158 Major, \
159 _PCL_COMPAT_MINOR_VERSION( \
160 Minor, \
161 _PCL_DEPRECATED_IMPL(_PCL_PREPARE_REMOVAL_MESSAGE(Major, Minor, Message)), \
162 unneeded_deprecation), \
163 major_version_mismatch)
164
165/**
166 * \brief macro for compatibility across compilers and help remove old deprecated
167 * headers for the Major.Minor release
168 *
169 * \details compiler errors of `unneeded_header` and `major_version_mismatch`
170 * are hints to the developer that those items can be safely removed.
171 * Behavior of PCL_DEPRECATED_HEADER(1, 99, "Use file <newfile.h> instead.")
172 * * till PCL 1.98: "This header is deprecated. Use file <newfile.h> instead. (It will be removed in PCL 1.99)"
173 * * PCL 1.99 onwards: compiler error with "unneeded_header"
174 * * PCL 2.0 onwards: compiler error with "major_version_mismatch"
175 */
176#define PCL_DEPRECATED_HEADER(Major, Minor, Message) \
177 _PCL_COMPAT_MAJOR_VERSION( \
178 Major, \
179 _PCL_COMPAT_MINOR_VERSION( \
180 Minor, \
181 _PCL_DEPRECATED_HEADER_IMPL(_PCL_PREPARE_REMOVAL_MESSAGE( \
182 Major, \
183 Minor, \
184 "This header is deprecated. " Message)), \
185 unneeded_header), \
186 major_version_mismatch)
187
188#if defined _WIN32
189// Define math constants, without including math.h, to prevent polluting global namespace with old math methods
190// Copied from math.h
191// Check for M_2_SQRTPI since the cmath header on mingw-w64 doesn't seem to define
192// _MATH_DEFINES_DEFINED when included with _USE_MATH_DEFINES
193#if !defined _MATH_DEFINES_DEFINED && !defined M_2_SQRTPI
194 #define _MATH_DEFINES_DEFINED
195
196 #define M_E 2.71828182845904523536 // e
197 #define M_LOG2E 1.44269504088896340736 // log2(e)
198 #define M_LOG10E 0.434294481903251827651 // log10(e)
199 #define M_LN2 0.693147180559945309417 // ln(2)
200 #define M_LN10 2.30258509299404568402 // ln(10)
201 #define M_PI 3.14159265358979323846 // pi
202 #define M_PI_2 1.57079632679489661923 // pi/2
203 #define M_PI_4 0.785398163397448309616 // pi/4
204 #define M_1_PI 0.318309886183790671538 // 1/pi
205 #define M_2_PI 0.636619772367581343076 // 2/pi
206 #define M_2_SQRTPI 1.12837916709551257390 // 2/sqrt(pi)
207 #define M_SQRT2 1.41421356237309504880 // sqrt(2)
208 #define M_SQRT1_2 0.707106781186547524401 // 1/sqrt(2)
209#endif
210
211#if defined _MSC_VER
212 // Stupid. This should be removed when all the PCL dependencies have min/max fixed.
213 #ifndef NOMINMAX
214 #define NOMINMAX
215 #endif
216
217 #define __PRETTY_FUNCTION__ __FUNCSIG__
218#endif
219#endif // defined _WIN32
220
221#ifndef DEG2RAD
222#define DEG2RAD(x) ((x)*0.017453293)
223#endif
224
225#ifndef RAD2DEG
226#define RAD2DEG(x) ((x)*57.29578)
227#endif
228
229/** \brief Macro that maps version information given by major.minor.patch to a linear integer value to enable easy comparison
230 */
231#define PCL_LINEAR_VERSION(major,minor,patch) ((major)<<16|(minor)<<8|(patch))
232
233/** Win32 doesn't seem to have rounding functions.
234 * Therefore implement our own versions of these functions here.
235 */
236
237__inline double
238pcl_round (double number)
239{
240 return (number < 0.0 ? std::ceil (number - 0.5) : std::floor (number + 0.5));
241}
242__inline float
243pcl_round (float number)
244{
245 return (number < 0.0f ? std::ceil (number - 0.5f) : std::floor (number + 0.5f));
246}
247
248#ifdef __GNUC__
249#define pcl_lrint(x) (lrint(static_cast<double> (x)))
250#define pcl_lrintf(x) (lrintf(static_cast<float> (x)))
251#else
252#define pcl_lrint(x) (static_cast<long int>(pcl_round(x)))
253#define pcl_lrintf(x) (static_cast<long int>(pcl_round(x)))
254#endif
255
256#ifdef WIN32
257#define pcl_sleep(x) Sleep(1000*(x))
258#else
259#define pcl_sleep(x) sleep(x)
260#endif
261
262#ifndef PVAR
263 #define PVAR(s) \
264 #s << " = " << (s) << std::flush
265#endif
266#ifndef PVARN
267#define PVARN(s) \
268 #s << " = " << (s) << "\n"
269#endif
270#ifndef PVARC
271#define PVARC(s) \
272 #s << " = " << (s) << ", " << std::flush
273#endif
274#ifndef PVARS
275#define PVARS(s) \
276 #s << " = " << (s) << " " << std::flush
277#endif
278#ifndef PVARA
279#define PVARA(s) \
280 #s << " = " << RAD2DEG(s) << "deg" << std::flush
281#endif
282#ifndef PVARAN
283#define PVARAN(s) \
284 #s << " = " << RAD2DEG(s) << "deg\n"
285#endif
286#ifndef PVARAC
287#define PVARAC(s) \
288 #s << " = " << RAD2DEG(s) << "deg, " << std::flush
289#endif
290#ifndef PVARAS
291#define PVARAS(s) \
292 #s << " = " << RAD2DEG(s) << "deg " << std::flush
293#endif
294
295#define FIXED(s) \
296 std::fixed << (s) << std::resetiosflags(std::ios_base::fixed)
297
298#ifndef ERASE_STRUCT
299#define ERASE_STRUCT(var) memset(&(var), 0, sizeof(var))
300#endif
301
302#ifndef ERASE_ARRAY
303#define ERASE_ARRAY(var, size) memset(var, 0, (size)*sizeof(*(var)))
304#endif
305
306#ifndef SET_ARRAY
307#define SET_ARRAY(var, value, size) { for (decltype(size) i = 0; i < (size); ++i) (var)[i]=value; }
308#endif
309
310#ifndef PCL_EXTERN_C
311 #ifdef __cplusplus
312 #define PCL_EXTERN_C extern "C"
313 #else
314 #define PCL_EXTERN_C
315 #endif
316#endif
317
318#if defined WIN32 || defined _WIN32 || defined WINCE || defined __MINGW32__
319 #ifdef PCLAPI_EXPORTS
320 #define PCL_EXPORTS __declspec(dllexport)
321 #else
322 #define PCL_EXPORTS
323 #endif
324#else
325 #ifdef PCL_SYMBOL_VISIBILITY_HIDDEN
326 #define PCL_EXPORTS __attribute__ ((visibility ("default")))
327 #else
328 #define PCL_EXPORTS
329 #endif
330#endif
331
332#if defined WIN32 || defined _WIN32
333 #define PCL_CDECL __cdecl
334 #define PCL_STDCALL __stdcall
335#else
336 #define PCL_CDECL
337 #define PCL_STDCALL
338#endif
339
340#ifndef PCLAPI
341 #define PCLAPI(rettype) PCL_EXTERN_C PCL_EXPORTS rettype PCL_CDECL
342#endif
343
344//for clang cf. http://clang.llvm.org/docs/LanguageExtensions.html
345#ifndef __has_extension
346 #define __has_extension(x) 0 // Compatibility with pre-3.0 compilers.
347#endif
348
349#if defined (__GNUC__) || defined (__PGI) || defined (__IBMCPP__) || defined (__SUNPRO_CC)
350 #define PCL_ALIGN(alignment) __attribute__((aligned(alignment)))
351#elif defined (_MSC_VER)
352 #define PCL_ALIGN(alignment) __declspec(align(alignment))
353#else
354 #error Alignment not supported on your platform
355#endif
356
357#if defined(__GLIBC__) && PCL_LINEAR_VERSION(__GLIBC__,__GLIBC_MINOR__,0)>PCL_LINEAR_VERSION(2,8,0)
358 #define GLIBC_MALLOC_ALIGNED 1
359#else
360 #define GLIBC_MALLOC_ALIGNED 0
361#endif
362
363#if defined(__FreeBSD__) && !defined(__arm__) && !defined(__mips__)
364 #define FREEBSD_MALLOC_ALIGNED 1
365#else
366 #define FREEBSD_MALLOC_ALIGNED 0
367#endif
368
369#if defined(__APPLE__) || defined(_WIN64) || GLIBC_MALLOC_ALIGNED || FREEBSD_MALLOC_ALIGNED
370 #define MALLOC_ALIGNED 1
371#endif
372
373#if defined (HAVE_MM_MALLOC)
374 // Intel compiler defines an incompatible _mm_malloc signature
375 #if defined(__INTEL_COMPILER)
376 #include <malloc.h>
377 #else
378 #include <mm_malloc.h>
379 #endif
380#endif
381
382namespace pcl {
383
384inline void*
385aligned_malloc(std::size_t size)
386{
387 void* ptr;
388#if defined(MALLOC_ALIGNED)
389 ptr = std::malloc(size);
390#elif defined(HAVE_POSIX_MEMALIGN)
391 if (posix_memalign(&ptr, 16, size))
392 ptr = 0;
393#elif defined(HAVE_MM_MALLOC)
394 ptr = _mm_malloc(size, 16);
395#elif defined(_MSC_VER)
396 ptr = _aligned_malloc(size, 16);
397#elif defined(ANDROID)
398 ptr = memalign(16, size);
399#else
400#error aligned_malloc not supported on your platform
401 ptr = 0;
402#endif
403 return (ptr);
404}
405
406inline void
407aligned_free(void* ptr)
408{
409#if defined(MALLOC_ALIGNED) || defined(HAVE_POSIX_MEMALIGN)
410 std::free(ptr);
411#elif defined(HAVE_MM_MALLOC)
412 _mm_free(ptr);
413#elif defined(_MSC_VER)
414 _aligned_free(ptr);
415#elif defined(ANDROID)
416 free(ptr);
417#else
418#error aligned_free not supported on your platform
419#endif
420}
421
422} // namespace pcl
423
424/**
425 * \brief Macro to add a no-op or a fallthrough attribute based on compiler feature
426 *
427 * \ingroup common
428 */
429#if (__cplusplus >= 201703L) || (defined(_MSC_VER) && (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703L))
430 #define PCL_FALLTHROUGH [[fallthrough]];
431#elif defined(__clang__)
432 #define PCL_FALLTHROUGH [[clang::fallthrough]];
433#elif defined(__GNUC__) && (__GNUC__ >= 7)
434 #define PCL_FALLTHROUGH [[gnu::fallthrough]];
435#else
436 #define PCL_FALLTHROUGH
437#endif
438
439#if (__cplusplus >= 201703L) || (defined(_MSC_VER) && (_MSC_VER >= 1911) && (_MSVC_LANG >= 201703L))
440 #define PCL_NODISCARD [[nodiscard]]
441#elif defined(__clang__) && (PCL_LINEAR_VERSION(__clang_major__, __clang_minor__, 0) >= PCL_LINEAR_VERSION(3, 9, 0))
442 #define PCL_NODISCARD [[clang::warn_unused_result]]
443#elif defined(__GNUC__)
444 #define PCL_NODISCARD [[gnu::warn_unused_result]]
445#else
446 #define PCL_NODISCARD
447#endif
448
449#ifdef __cpp_if_constexpr
450 #define PCL_IF_CONSTEXPR(x) if constexpr(x)
451#else
452 #define PCL_IF_CONSTEXPR(x) if (x)
453#endif
454
455// [[unlikely]] can be used on any conditional branch, but __builtin_expect is restricted to the evaluation point
456// This makes it quite difficult to create a single macro for switch and while/if
457/**
458 * @def PCL_CONDITION_UNLIKELY
459 * @brief Tries to inform the compiler to optimize codegen assuming that the condition will probably evaluate to false
460 * @note Prefer using `PCL_{IF,WHILE}_UNLIKELY`
461 * @warning This can't be used with switch statements
462 * @details This tries to help the compiler optimize for the unlikely case.
463 * Most compilers assume that the condition would evaluate to true in if and while loops (reference needed)
464 * As such the opposite of this macro (PCL_CONDITION_LIKELY) will not result in significant performance improvement
465 *
466 * Some sample usage:
467 * @code{.cpp}
468 * if PCL_CONDITION_UNLIKELY(x == 0) { return; } else { throw std::runtime_error("some error"); }
469 * //
470 * while PCL_CONDITION_UNLIKELY(wait_for_result) { sleep(1); } // busy wait, with minimal chances of waiting
471 * @endcode
472 */
473#if __has_cpp_attribute(unlikely)
474 #define PCL_CONDITION_UNLIKELY(x) (static_cast<bool>(x)) [[unlikely]]
475#elif defined(__GNUC__)
476 #define PCL_CONDITION_UNLIKELY(x) (__builtin_expect(static_cast<bool>(x), 0))
477#elif defined(__clang__) && (PCL_LINEAR_VERSION(__clang_major__, __clang_minor__, 0) >= PCL_LINEAR_VERSION(3, 9, 0))
478 #define PCL_CONDITION_UNLIKELY(x) (__builtin_expect(static_cast<bool>(x), 0))
479#else // MSVC has no such alternative
480 #define PCL_CONDITION_UNLIKELY(x) (x)
481#endif
482
483#define PCL_IF_UNLIKELY(x) if PCL_CONDITION_UNLIKELY(x)
484#define PCL_WHILE_UNLIKELY(x) while PCL_CONDITION_UNLIKELY(x)
void * aligned_malloc(std::size_t size)
Definition pcl_macros.h:385
void aligned_free(void *ptr)
Definition pcl_macros.h:407
__inline double pcl_round(double number)
Win32 doesn't seem to have rounding functions.
Definition pcl_macros.h:238