pineapple-src/src/common/assert.h

96 lines
6.1 KiB
C
Raw Normal View History

2022-04-29 05:46:31 +00:00
// SPDX-FileCopyrightText: 2013 Dolphin Emulator Project
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 15:15:37 +00:00
#pragma once
2022-06-10 20:06:26 +00:00
#include <functional>
2020-12-28 15:15:37 +00:00
#include "common/logging/log.h"
2021-04-07 22:30:26 +00:00
// Sometimes we want to try to continue even after hitting an assert.
// However touching this file yields a global recompilation as this header is included almost
// everywhere. So let's just move the handling of the failed assert to a single cpp file.
2020-12-28 15:15:37 +00:00
// For asserts we'd like to keep all the junk executed when an assert happens away from the
// important code in the function. One way of doing this is to put all the relevant code inside a
2022-06-10 20:06:26 +00:00
// lambda and force the compiler to not inline it.
void assert_check_condition(bool cond, std::function<void()>&& on_failure);
[[noreturn]] void unreachable_impl();
2020-12-28 15:15:37 +00:00
#define ASSERT(_a_) \
2022-06-10 20:06:26 +00:00
do { \
if (std::is_constant_evaluated()) { \
if (!(_a_)) { \
/* Will trigger compile error here */ \
assert_check_condition(bool(_a_), \
[] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
} \
} else { \
assert_check_condition(bool(_a_), [] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
2021-04-07 22:30:26 +00:00
} \
2022-06-10 20:06:26 +00:00
} while (0)
2020-12-28 15:15:37 +00:00
#define ASSERT_MSG(_a_, ...) \
2022-06-10 20:06:26 +00:00
do { \
if (std::is_constant_evaluated()) { \
if (!(_a_)) { \
/* Will trigger compile error here */ \
assert_check_condition(bool(_a_), \
[] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
} \
} else { \
assert_check_condition( \
bool(_a_), [&] { LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); }); \
2021-04-07 22:30:26 +00:00
} \
2022-06-10 20:06:26 +00:00
} while (0)
#define UNREACHABLE() \
do { \
LOG_CRITICAL(Debug, "Unreachable code!"); \
unreachable_impl(); \
} while (0)
2020-12-28 15:15:37 +00:00
#define UNREACHABLE_MSG(...) \
2022-06-10 20:06:26 +00:00
do { \
LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); \
unreachable_impl(); \
} while (0)
2020-12-28 15:15:37 +00:00
#ifdef _DEBUG
#define DEBUG_ASSERT(_a_) ASSERT(_a_)
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
#else // not debug
2021-08-06 06:53:26 +00:00
#define DEBUG_ASSERT(_a_) \
do { \
} while (0)
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...) \
do { \
} while (0)
2020-12-28 15:15:37 +00:00
#endif
#define UNIMPLEMENTED() ASSERT_MSG(false, "Unimplemented code!")
#define UNIMPLEMENTED_MSG(...) ASSERT_MSG(false, __VA_ARGS__)
#define UNIMPLEMENTED_IF(cond) ASSERT_MSG(!(cond), "Unimplemented code!")
#define UNIMPLEMENTED_IF_MSG(cond, ...) ASSERT_MSG(!(cond), __VA_ARGS__)
// If the assert is ignored, execute _b_
#define ASSERT_OR_EXECUTE(_a_, _b_) \
do { \
ASSERT(_a_); \
2022-03-26 13:36:57 +00:00
if (!(_a_)) { \
2020-12-28 15:15:37 +00:00
_b_ \
} \
} while (0)
// If the assert is ignored, execute _b_
#define ASSERT_OR_EXECUTE_MSG(_a_, _b_, ...) \
do { \
ASSERT_MSG(_a_, __VA_ARGS__); \
2022-03-26 13:36:57 +00:00
if (!(_a_)) { \
2020-12-28 15:15:37 +00:00
_b_ \
} \
} while (0)