2015-01-21 02:16:47 +01:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-02-18 05:06:48 +01:00
|
|
|
#include <cstdlib>
|
2015-01-21 02:16:47 +01:00
|
|
|
#include "common/common_funcs.h"
|
2015-05-12 07:52:31 +02:00
|
|
|
#include "common/logging/log.h"
|
2015-01-21 02:16:47 +01:00
|
|
|
|
2015-02-18 05:06:48 +01: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-14 13:21:34 +02:00
|
|
|
// lambda and force the compiler to not inline it.
|
2015-02-18 05:06:48 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
#define ASSERT(_a_) \
|
|
|
|
do \
|
2023-04-22 11:06:27 +02:00
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2023-05-01 21:38:58 +02:00
|
|
|
[]() CITRA_NO_INLINE CITRA_NO_RETURN { \
|
2022-06-14 13:21:34 +02:00
|
|
|
LOG_CRITICAL(Debug, "Assertion Failed!"); \
|
|
|
|
Crash(); \
|
|
|
|
exit(1); \
|
|
|
|
}(); \
|
2016-09-18 02:38:01 +02:00
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define ASSERT_MSG(_a_, ...) \
|
|
|
|
do \
|
2023-04-22 11:06:27 +02:00
|
|
|
if (!(_a_)) [[unlikely]] { \
|
2023-05-01 21:38:58 +02:00
|
|
|
[&]() CITRA_NO_INLINE CITRA_NO_RETURN { \
|
2022-06-14 13:21:34 +02:00
|
|
|
LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); \
|
|
|
|
Crash(); \
|
|
|
|
exit(1); \
|
|
|
|
}(); \
|
2016-09-18 02:38:01 +02:00
|
|
|
} \
|
|
|
|
while (0)
|
2015-01-21 02:16:47 +01:00
|
|
|
|
2022-06-14 13:21:34 +02:00
|
|
|
#define UNREACHABLE() \
|
2023-05-01 21:38:58 +02:00
|
|
|
([]() CITRA_NO_INLINE CITRA_NO_RETURN { \
|
2022-06-14 13:21:34 +02:00
|
|
|
LOG_CRITICAL(Debug, "Unreachable code!"); \
|
|
|
|
Crash(); \
|
|
|
|
exit(1); \
|
|
|
|
}())
|
|
|
|
|
2019-10-05 16:54:07 +02:00
|
|
|
#define UNREACHABLE_MSG(...) \
|
2023-05-01 21:38:58 +02:00
|
|
|
([&]() CITRA_NO_INLINE CITRA_NO_RETURN { \
|
2022-06-14 13:21:34 +02:00
|
|
|
LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); \
|
|
|
|
Crash(); \
|
|
|
|
exit(1); \
|
|
|
|
}())
|
2015-01-21 02:16:47 +01:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define DEBUG_ASSERT(_a_) ASSERT(_a_)
|
|
|
|
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
|
|
|
|
#else // not debug
|
|
|
|
#define DEBUG_ASSERT(_a_)
|
|
|
|
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...)
|
|
|
|
#endif
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
#define UNIMPLEMENTED() LOG_CRITICAL(Debug, "Unimplemented code!")
|
2020-12-06 23:36:04 +01:00
|
|
|
#define UNIMPLEMENTED_MSG(_a_, ...) LOG_CRITICAL(Debug, _a_, __VA_ARGS__)
|