summaryrefslogtreecommitdiff
path: root/src/common/assert.h
diff options
context:
space:
mode:
authorGravatar Liam2022-06-07 17:02:29 -0400
committerGravatar Liam2022-06-13 20:09:00 -0400
commit084d7d6b014443be7625fb9d8f1ddd309a22f6f4 (patch)
treeea48c7b1d22a0b282846ba28a9b62c988e38bd29 /src/common/assert.h
parentMerge pull request #8458 from lat9nq/no-constexpr-flow-block (diff)
downloadyuzu-084d7d6b014443be7625fb9d8f1ddd309a22f6f4.tar.gz
yuzu-084d7d6b014443be7625fb9d8f1ddd309a22f6f4.tar.xz
yuzu-084d7d6b014443be7625fb9d8f1ddd309a22f6f4.zip
common: Change semantics of UNREACHABLE to unconditionally crash
Diffstat (limited to 'src/common/assert.h')
-rw-r--r--src/common/assert.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/common/assert.h b/src/common/assert.h
index dbfd8abaf..478bfa856 100644
--- a/src/common/assert.h
+++ b/src/common/assert.h
@@ -11,6 +11,8 @@
11// everywhere. So let's just move the handling of the failed assert to a single cpp file. 11// everywhere. So let's just move the handling of the failed assert to a single cpp file.
12void assert_handle_failure(); 12void assert_handle_failure();
13 13
14[[noreturn]] void unreachable_impl();
15
14// For asserts we'd like to keep all the junk executed when an assert happens away from the 16// For asserts we'd like to keep all the junk executed when an assert happens away from the
15// important code in the function. One way of doing this is to put all the relevant code inside a 17// important code in the function. One way of doing this is to put all the relevant code inside a
16// lambda and force the compiler to not inline it. Unfortunately, MSVC seems to have no syntax to 18// lambda and force the compiler to not inline it. Unfortunately, MSVC seems to have no syntax to
@@ -44,9 +46,17 @@ assert_noinline_call(const Fn& fn) {
44 } \ 46 } \
45 while (0) 47 while (0)
46 48
47#define UNREACHABLE() assert_noinline_call([] { LOG_CRITICAL(Debug, "Unreachable code!"); }) 49#define UNREACHABLE() \
50 do { \
51 assert_noinline_call([] { LOG_CRITICAL(Debug, "Unreachable code!"); }); \
52 unreachable_impl(); \
53 } while (0)
54
48#define UNREACHABLE_MSG(...) \ 55#define UNREACHABLE_MSG(...) \
49 assert_noinline_call([&] { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); }) 56 do { \
57 assert_noinline_call([&] { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); }); \
58 unreachable_impl(); \
59 } while (0)
50 60
51#ifdef _DEBUG 61#ifdef _DEBUG
52#define DEBUG_ASSERT(_a_) ASSERT(_a_) 62#define DEBUG_ASSERT(_a_) ASSERT(_a_)