Loading [MathJax]/extensions/tex2jax.js

DUNE PDELab (unstable)

assume.hh
1// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set ts=8 sw=2 et sts=2:
3// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5#ifndef DUNE_COMMON_STD_ASSUME_HH
6#define DUNE_COMMON_STD_ASSUME_HH
7
23// If the C++ standard attribute assume is available
24#ifdef __has_cpp_attribute
25 #if __has_cpp_attribute(assume) >= 202207L
26 #define DUNE_ASSUME(...) [[assume(__VA_ARGS__)]]
27 #endif
28#endif
29
30// if compiler intrinsics/attributes for assumptions are available
31#ifndef DUNE_ASSUME
32 #if defined(__clang__) && defined(__has_builtin)
33 #if __has_builtin(__builtin_assume)
34 #define DUNE_ASSUME(...) __builtin_assume(__VA_ARGS__)
35 #endif
36 #elif defined(_MSC_VER)
37 #define DUNE_ASSUME(...) __assume(__VA_ARGS__)
38 #elif defined(__GNUC__)
39 #if __GNUC__ >= 13
40 #define DUNE_ASSUME(...) __attribute__((__assume__(__VA_ARGS__)))
41 #endif
42 #endif
43#endif
44
45// if we are in release mode, use undefined behavior as a way to enforce an assumption
46#if !defined(DUNE_ASSUME) && defined(NDEBUG)
47 #include <utility>
48 #if __cpp_lib_unreachable >= 202202L
49 #define DUNE_ASSUME(...) do { if (!bool(__VA_ARGS__)) ::std::unreachable(); } while(0)
50 #elif defined(__GNUC__)
51 #define DUNE_ASSUME(...) do { if (!bool(__VA_ARGS__)) __builtin_unreachable(); } while(0)
52 #elif defined(__has_builtin)
53 #if __has_builtin(__builtin_unreachable)
54 #define DUNE_ASSUME(...) do { if (!bool(__VA_ARGS__)) __builtin_unreachable(); } while(0)
55 #endif
56 #else
57 #include <cstdlib>
58 #define DUNE_ASSUME(...) do { if (!bool(__VA_ARGS__)) std::abort(); } while(0)
59 #endif
60#endif
61
62// in debug mode and if not defined before, use the assert macro
63#ifndef DUNE_ASSUME
64 #include <cassert>
65 #define DUNE_ASSUME(...) assert(bool(__VA_ARGS__))
66#endif
67
68#endif // DUNE_COMMON_STD_ASSUME_HH
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 4, 22:59, 2025)