2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2017-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2017-06-08 07:24:12 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if !defined(NDEBUG) || defined(TR_FORCE_ASSERTIONS)
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2017-06-18 12:34:21 +00:00
|
|
|
#include "tr-macros.h"
|
2017-06-08 07:24:12 +00:00
|
|
|
|
2021-10-15 03:16:52 +00:00
|
|
|
[[noreturn]] bool tr_assert_report(char const* file, int line, char const* message_fmt, ...) TR_GNUC_PRINTF(3, 4);
|
2017-06-08 07:24:12 +00:00
|
|
|
|
2017-06-13 02:24:09 +00:00
|
|
|
#define TR_ASSERT(x) ((void)(TR_LIKELY(x) || tr_assert_report(__FILE__, __LINE__, "%s", #x)))
|
|
|
|
#define TR_ASSERT_MSG(x, ...) ((void)(TR_LIKELY(x) || tr_assert_report(__FILE__, __LINE__, __VA_ARGS__)))
|
2021-10-16 14:04:19 +00:00
|
|
|
#define TR_UNREACHABLE() tr_assert_report(__FILE__, __LINE__, "Unreachable code")
|
2017-06-08 07:24:12 +00:00
|
|
|
|
|
|
|
#define TR_ENABLE_ASSERTS
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define TR_ASSERT(x) ((void)0)
|
|
|
|
#define TR_ASSERT_MSG(x, ...) ((void)0)
|
2021-10-16 14:04:19 +00:00
|
|
|
#define TR_UNREACHABLE() ((void)0)
|
2017-06-08 07:24:12 +00:00
|
|
|
|
|
|
|
#undef TR_ENABLE_ASSERTS
|
|
|
|
|
|
|
|
#endif
|