2011-05-23 17:18:52 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-05-23 17:18:52 +10:00
|
|
|
*
|
2019-05-17 10:48:29 +10:00
|
|
|
* Copyright 2010-2019 Danny Robson <danny@nerdcruft.net>
|
2011-05-23 17:18:52 +10:00
|
|
|
*/
|
|
|
|
|
2018-05-10 12:44:03 +10:00
|
|
|
#pragma once
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2021-04-12 16:03:22 +10:00
|
|
|
#include "./common.hpp"
|
|
|
|
#include "./debugger.hpp"
|
|
|
|
|
2019-05-17 12:26:08 +10:00
|
|
|
#include "../platform.hpp"
|
2021-01-20 15:18:25 +11:00
|
|
|
#include "../maths.hpp"
|
2019-05-04 11:32:59 +10:00
|
|
|
|
2020-09-10 15:08:10 +10:00
|
|
|
#include <utility>
|
|
|
|
|
2021-04-12 16:56:06 +10:00
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define assert_message(MSG) __assert_fail(MSG, __FILE__, __LINE__, __PRETTY_FUNCTION__);
|
|
|
|
|
2016-02-03 12:04:47 +11:00
|
|
|
|
2015-01-28 14:49:34 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2019-05-04 11:32:59 +10:00
|
|
|
#ifdef COMPILER_GCC
|
|
|
|
#define CHECK(C) do { \
|
|
|
|
_Pragma("GCC diagnostic push") \
|
|
|
|
_Pragma("GCC diagnostic ignored \"-Wnonnull-compare\"") \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
if (!(C)) \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message (#C); \
|
2019-05-04 11:32:59 +10:00
|
|
|
); \
|
|
|
|
_Pragma("GCC diagnostic pop") \
|
|
|
|
} while (0)
|
2019-05-17 12:26:08 +10:00
|
|
|
#elif defined(COMPILER_CLANG)
|
2019-05-04 11:32:59 +10:00
|
|
|
#define CHECK(C) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
if (!(C)) \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message (#C); \
|
2019-05-04 11:32:59 +10:00
|
|
|
); \
|
2016-02-03 12:04:47 +11:00
|
|
|
} while (0)
|
2019-05-17 12:26:08 +10:00
|
|
|
#else
|
|
|
|
#error Unhandled compiler
|
2019-05-04 11:32:59 +10:00
|
|
|
#endif
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2016-06-24 15:30:41 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-04-24 15:12:09 +10:00
|
|
|
#define SCOPED_SANITY(A) \
|
2018-08-05 14:42:02 +10:00
|
|
|
::cruft::debug::scoped_sanity PASTE(__scoped_sanity_checker,__LINE__) ((A)); \
|
2018-04-18 21:43:58 +10:00
|
|
|
(void)PASTE(__scoped_sanity_checker,__LINE__);
|
2016-06-24 15:30:41 +10:00
|
|
|
|
|
|
|
|
2018-04-24 15:12:09 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
#define CHECK_SANITY(A,...) CHECK(::cruft::debug::is_valid ((A) __VA_OPT__(,) __VA_ARGS__))
|
2018-04-24 15:12:09 +10:00
|
|
|
|
|
|
|
|
2014-04-16 19:16:48 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-01-28 15:01:17 +11:00
|
|
|
#define CHECK_EQ(A,B) do { \
|
2016-12-21 20:22:11 +11:00
|
|
|
DEBUG_ONLY ( \
|
2016-08-03 18:11:29 +10:00
|
|
|
const auto &__a = (A); \
|
|
|
|
const auto &__b = (B); \
|
2016-02-03 12:04:47 +11:00
|
|
|
\
|
2021-04-12 16:56:06 +10:00
|
|
|
if (!::cruft::almost_equal (__a, __b)) { \
|
|
|
|
assert_message ("expected: " #A " == " #B); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2016-02-03 12:04:47 +11:00
|
|
|
} \
|
2015-01-28 15:01:17 +11:00
|
|
|
); \
|
2011-05-23 17:18:52 +10:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2014-04-16 19:16:48 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_LT(A,B) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
const auto &__b = (B); \
|
|
|
|
\
|
|
|
|
if (__a >= __b) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: " #A " < " #B); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
}; \
|
|
|
|
); \
|
2012-11-09 15:11:18 +11:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2014-04-16 19:16:48 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_LE(A,B) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
const auto &__b = (B); \
|
|
|
|
\
|
2019-02-03 17:28:53 +11:00
|
|
|
if (!(__a <= __b)) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: " #A " <= " #B); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
} \
|
|
|
|
); \
|
2014-02-12 17:05:37 +11:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2014-04-16 19:16:48 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_GT(A,B) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
const auto &__b = (B); \
|
|
|
|
\
|
|
|
|
if (__a <= __b) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: " #A " > " #B); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
} \
|
|
|
|
); \
|
2012-11-09 15:11:18 +11:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2014-04-16 19:16:48 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_GE(A,B) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
const auto &__b = (B); \
|
|
|
|
\
|
|
|
|
if (__a < __b) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: " #A " >= " #B); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
}; \
|
|
|
|
); \
|
2014-02-12 17:05:37 +11:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2015-05-29 15:51:25 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2020-09-24 08:03:41 +10:00
|
|
|
#define CHECK_INCLUSIVE(V,L,H) do { \
|
2018-05-10 12:44:03 +10:00
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__v = (V); \
|
|
|
|
const auto &__l = (L); \
|
|
|
|
const auto &__h = (H); \
|
|
|
|
\
|
|
|
|
if (__v < __l || __v > __h) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: " #L " <= " #V " <= " #H); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
}; \
|
|
|
|
); \
|
2015-05-29 15:51:25 +10:00
|
|
|
} while (0)
|
|
|
|
|
2020-09-24 08:03:41 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define CHECK_INDEX(V,H) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__v = (V); \
|
|
|
|
const auto &__h = (H); \
|
|
|
|
\
|
|
|
|
_Pragma("GCC diagnostic push") \
|
|
|
|
_Pragma("GCC diagnostic ignored \"-Wtype-limits\"") \
|
|
|
|
\
|
|
|
|
if (intmax_t (__v) < 0 || __v >= __h) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: 0 <= " #V " <= " #H); \
|
2020-09-24 08:03:41 +10:00
|
|
|
breakpoint (); \
|
|
|
|
}; \
|
|
|
|
\
|
|
|
|
_Pragma("GCC diagnostic pop") \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2014-04-16 19:16:48 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_NEQ(A,B) do { \
|
|
|
|
DEBUG_ONLY( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
const auto &__b = (B); \
|
|
|
|
\
|
2021-04-12 16:56:06 +10:00
|
|
|
if (::cruft::almost_equal (__a, __b)) { \
|
|
|
|
assert_message ("expected: " #A " != " #B); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
}; \
|
|
|
|
); \
|
2011-05-23 17:18:52 +10:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2015-02-13 18:02:09 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_ZERO(A) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
\
|
2021-04-12 16:56:06 +10:00
|
|
|
if (!::cruft::almost_zero (__a)) { \
|
|
|
|
assert_message ("expected: " #A " == 0"); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
}; \
|
|
|
|
); \
|
2015-02-13 18:02:09 +11:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2015-02-05 20:35:11 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_NEZ(A) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__a = (A); \
|
|
|
|
\
|
2021-04-12 16:56:06 +10:00
|
|
|
if (::cruft::exactly_zero (__a)) { \
|
|
|
|
assert_message ("expected: " #A " != 0"); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
|
|
|
} \
|
2018-05-10 12:44:03 +10:00
|
|
|
); \
|
2015-02-05 20:35:11 +11:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2016-08-03 18:12:05 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_MOD(V,M) do { \
|
|
|
|
DEBUG_ONLY ( \
|
|
|
|
const auto &__check_mod_v = (V); \
|
|
|
|
const auto &__check_mod_m = (M); \
|
|
|
|
\
|
2021-04-12 16:56:06 +10:00
|
|
|
if (!::cruft::exactly_zero (__check_mod_v % __check_mod_m)) { \
|
|
|
|
assert_message ("expected: " #V " % " #M " == 0"); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
|
|
|
} \
|
2018-05-10 12:44:03 +10:00
|
|
|
); \
|
2016-08-03 18:12:05 +10:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2016-02-05 14:27:58 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(ENABLE_DEBUGGING)
|
2018-05-10 12:44:03 +10:00
|
|
|
#define CHECK_ENUM(C, ...) do { \
|
|
|
|
const auto &__c = (C); \
|
|
|
|
const auto &__e = { __VA_ARGS__ }; \
|
|
|
|
\
|
|
|
|
if (std::find (std::cbegin (__e), \
|
|
|
|
std::cend (__e), \
|
|
|
|
__c) == std::end (__e)) { \
|
2021-04-12 16:56:06 +10:00
|
|
|
assert_message ("expected: " #C " in " #__VA_ARGS__); \
|
2018-05-10 14:53:43 +10:00
|
|
|
breakpoint (); \
|
2018-05-10 12:44:03 +10:00
|
|
|
} \
|
2016-02-05 14:27:58 +11:00
|
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
#define CHECK_ENUM(C,...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2021-04-12 16:56:06 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2018-04-13 18:49:36 +10:00
|
|
|
#if !defined(NDEBUG)
|
2019-05-17 12:26:08 +10:00
|
|
|
#define CHECK_FINITE(V) do { \
|
2021-04-12 16:56:06 +10:00
|
|
|
const auto &__v = (V); \
|
|
|
|
if (!std::isfinite (__v)) { \
|
|
|
|
assert_message ("expected: " #V " is finite"); \
|
|
|
|
breakpoint (); \
|
|
|
|
} \
|
2018-04-13 18:49:36 +10:00
|
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
#define CHECK_FINITE(V,...)
|
|
|
|
#endif
|