CNL  2.0.2 (development)
Compositional Numeric Library
likely.h
1 
2 // Copyright John McFarlane 2021.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_LIKELY_H)
8 #define CNL_IMPL_LIKELY_H
9 
10 #include "config.h"
11 
12 // CNL_LIKELY - hints that a condition is likely to be true
13 #if defined(__clang__) || defined(__GNUC__)
14 // NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
15 #define CNL_LIKELY(CONDITION) __builtin_expect(!!(CONDITION), 1)
16 // NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
17 #define CNL_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
18 #else
19 #define CNL_LIKELY(CONDITION) (!!(CONDITION))
20 #define CNL_UNLIKELY(CONDITION) (!!(CONDITION))
21 #endif
22 
23 #endif // CNL_IMPL_LIKELY_H
config.h
definitions which can be used to configure CNL library