2026-01-26 17:21:57 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
2025-11-03 21:07:30 +01:00
|
|
|
// 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
|
|
|
|
2026-01-26 17:21:57 +01:00
|
|
|
// Prevents errors on old GCC... smh...
|
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_MSG(_a_, ...) \
|
2026-01-26 17:21:57 +01:00
|
|
|
([&]() YUZU_NO_INLINE { \
|
2022-06-12 18:11:02 -04:00
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2026-01-26 17:21:57 +01:00
|
|
|
LOG_CRITICAL(Debug, __FILE__ ": assert " __VA_ARGS__); \
|
2025-12-01 05:06:57 +01:00
|
|
|
AssertFailSoftImpl(); \
|
2016-09-18 09:38:01 +09:00
|
|
|
} \
|
2022-06-12 18:11:02 -04:00
|
|
|
}())
|
2025-12-01 05:06:57 +01:00
|
|
|
#define ASSERT(_a_) ASSERT_MSG(_a_, "{}", #_a_)
|
2022-06-07 17:02:29 -04:00
|
|
|
|
2019-10-05 10:54:07 -04:00
|
|
|
#define UNREACHABLE_MSG(...) \
|
2022-06-07 17:02:29 -04:00
|
|
|
do { \
|
2026-01-26 17:21:57 +01:00
|
|
|
LOG_CRITICAL(Debug, __FILE__ ": unreachable " __VA_ARGS__); \
|
2025-12-01 05:06:57 +01:00
|
|
|
AssertFatalImpl(); \
|
2022-06-07 17:02:29 -04:00
|
|
|
} while (0)
|
2025-12-01 05:06:57 +01:00
|
|
|
#define UNREACHABLE() UNREACHABLE_MSG("")
|
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
|
|
|
|
|
|
2026-01-26 17:21:57 +01:00
|
|
|
#define UNIMPLEMENTED() ASSERT(false && "Unimplemented!")
|
2018-01-07 22:43:41 +00:00
|
|
|
#define UNIMPLEMENTED_MSG(...) ASSERT_MSG(false, __VA_ARGS__)
|
2018-11-20 18:03:00 -05:00
|
|
|
|
2026-01-26 17:21:57 +01:00
|
|
|
#define UNIMPLEMENTED_IF(cond) ASSERT((!(cond)) && "Unimplemented!")
|
2018-11-20 18:03:00 -05:00
|
|
|
#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_MSG(_a_, _b_, ...) \
|
|
|
|
|
do { \
|
|
|
|
|
ASSERT_MSG(_a_, __VA_ARGS__); \
|
2025-12-01 05:06:57 +01:00
|
|
|
if (!(_a_)) { _b_ } \
|
2019-03-27 14:59:00 -04:00
|
|
|
} while (0)
|
2025-12-01 05:06:57 +01:00
|
|
|
|
|
|
|
|
// If the assert is ignored, execute _b_
|
|
|
|
|
#define ASSERT_OR_EXECUTE(_a_, _b_) ASSERT_OR_EXECUTE_MSG(_a_, _b_, "{}", #_a_)
|