2025-11-03 21:07:30 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2022-04-28 18:24:11 +02:00
|
|
|
// SPDX-FileCopyrightText: 2013 Dolphin Emulator Project
|
|
|
|
|
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-01-20 17:16:47 -08:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2015-05-12 02:52:31 -03:00
|
|
|
#include "common/logging/log.h"
|
2015-01-20 17:16:47 -08:00
|
|
|
|
2021-04-02 08:43:26 +02: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.
|
2022-06-07 17:02:29 -04:00
|
|
|
|
2025-11-03 21:07:30 +01:00
|
|
|
void AssertFailSoftImpl();
|
|
|
|
|
[[noreturn]] void AssertFatalImpl();
|
2015-02-18 02:06:48 -02:00
|
|
|
|
2022-06-12 18:11:02 -04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#define YUZU_NO_INLINE __declspec(noinline)
|
|
|
|
|
#else
|
|
|
|
|
#define YUZU_NO_INLINE __attribute__((noinline))
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-09-18 09:38:01 +09:00
|
|
|
#define ASSERT(_a_) \
|
2022-06-12 18:11:02 -04:00
|
|
|
([&]() YUZU_NO_INLINE { \
|
|
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2025-11-03 21:07:30 +01:00
|
|
|
LOG_CRITICAL(Debug, "Assert"); \
|
|
|
|
|
AssertFailSoftImpl(); \
|
2016-09-18 09:38:01 +09:00
|
|
|
} \
|
2022-06-12 18:11:02 -04:00
|
|
|
}())
|
2016-09-18 09:38:01 +09:00
|
|
|
|
|
|
|
|
#define ASSERT_MSG(_a_, ...) \
|
2022-06-12 18:11:02 -04:00
|
|
|
([&]() YUZU_NO_INLINE { \
|
|
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2025-11-03 21:07:30 +01:00
|
|
|
LOG_CRITICAL(Debug, "Assert\n" __VA_ARGS__); \
|
|
|
|
|
AssertFailSoftImpl(); \
|
2016-09-18 09:38:01 +09:00
|
|
|
} \
|
2022-06-12 18:11:02 -04:00
|
|
|
}())
|
2015-01-20 17:16:47 -08:00
|
|
|
|
2022-06-07 17:02:29 -04:00
|
|
|
#define UNREACHABLE() \
|
|
|
|
|
do { \
|
2025-11-03 21:07:30 +01:00
|
|
|
LOG_CRITICAL(Debug, "Unreachable"); \
|
|
|
|
|
AssertFatalImpl(); \
|
2022-06-07 17:02:29 -04:00
|
|
|
} while (0)
|
|
|
|
|
|
2019-10-05 10:54:07 -04:00
|
|
|
#define UNREACHABLE_MSG(...) \
|
2022-06-07 17:02:29 -04:00
|
|
|
do { \
|
2025-11-03 21:07:30 +01:00
|
|
|
LOG_CRITICAL(Debug, "Unreachable\n" __VA_ARGS__); \
|
|
|
|
|
AssertFatalImpl(); \
|
2022-06-07 17:02:29 -04:00
|
|
|
} while (0)
|
2015-01-20 17:16:47 -08:00
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
#define DEBUG_ASSERT(_a_) ASSERT(_a_)
|
|
|
|
|
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
|
|
|
|
|
#else // not debug
|
2021-08-05 17:46:22 +00:00
|
|
|
#define DEBUG_ASSERT(_a_) \
|
|
|
|
|
do { \
|
|
|
|
|
} while (0)
|
|
|
|
|
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...) \
|
|
|
|
|
do { \
|
|
|
|
|
} while (0)
|
2015-01-20 17:16:47 -08:00
|
|
|
#endif
|
|
|
|
|
|
2018-11-20 17:58:57 -05:00
|
|
|
#define UNIMPLEMENTED() ASSERT_MSG(false, "Unimplemented code!")
|
2018-01-07 22:43:41 +00:00
|
|
|
#define UNIMPLEMENTED_MSG(...) ASSERT_MSG(false, __VA_ARGS__)
|
2018-11-20 18:03:00 -05:00
|
|
|
|
|
|
|
|
#define UNIMPLEMENTED_IF(cond) ASSERT_MSG(!(cond), "Unimplemented code!")
|
|
|
|
|
#define UNIMPLEMENTED_IF_MSG(cond, ...) ASSERT_MSG(!(cond), __VA_ARGS__)
|
2019-03-27 14:59:00 -04:00
|
|
|
|
|
|
|
|
// If the assert is ignored, execute _b_
|
|
|
|
|
#define ASSERT_OR_EXECUTE(_a_, _b_) \
|
|
|
|
|
do { \
|
|
|
|
|
ASSERT(_a_); \
|
2022-12-17 22:16:52 -03:00
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2019-03-27 14:59:00 -04: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-12-17 22:16:52 -03:00
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2019-03-27 14:59:00 -04:00
|
|
|
_b_ \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|