2016-07-01 14:01:06 +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
|
|
|
|
|
2016-07-14 14:55:08 +01:00
|
|
|
#include <cstdio>
|
2016-07-01 14:01:06 +01:00
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// lambda and force the compiler to not inline it. Unfortunately, MSVC seems to have no syntax to
|
|
|
|
// specify __declspec on lambda functions, so what we do instead is define a noinline wrapper
|
|
|
|
// template that calls the lambda. This seems to generate an extra instruction at the call-site
|
|
|
|
// compared to the ideal implementation (which wouldn't support ASSERT_MSG parameters), but is good
|
|
|
|
// enough for our purposes.
|
|
|
|
template <typename Fn>
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
__declspec(noinline, noreturn)
|
|
|
|
#elif defined(__GNUC__)
|
2016-09-03 12:48:07 +01:00
|
|
|
[[noreturn, gnu::noinline, gnu::cold]]
|
2016-07-01 14:01:06 +01:00
|
|
|
#endif
|
|
|
|
static void assert_noinline_call(const Fn& fn) {
|
|
|
|
fn();
|
2016-09-03 12:48:07 +01:00
|
|
|
exit(EXIT_FAILURE); // Keeps GCC's mouth shut about this actually returning
|
2016-07-01 14:01:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define ASSERT(_a_) \
|
|
|
|
do if (!(_a_)) { assert_noinline_call([] { \
|
2016-07-14 14:55:08 +01:00
|
|
|
fprintf(stderr, "Assertion Failed!\n" #_a_); \
|
2016-07-01 14:01:06 +01:00
|
|
|
throw ""; \
|
2016-08-23 14:03:22 +01:00
|
|
|
}); } while (false)
|
2016-07-01 14:01:06 +01:00
|
|
|
|
|
|
|
#define ASSERT_MSG(_a_, ...) \
|
|
|
|
do if (!(_a_)) { assert_noinline_call([&] { \
|
2016-07-14 14:55:08 +01:00
|
|
|
fprintf(stderr, "Assertion Failed!\n" #_a_ "\n" __VA_ARGS__); \
|
2016-07-01 14:01:06 +01:00
|
|
|
throw ""; \
|
2016-08-23 14:03:22 +01:00
|
|
|
}); } while (false)
|
2016-07-01 14:01:06 +01:00
|
|
|
|
|
|
|
#define UNREACHABLE() ASSERT_MSG(false, "Unreachable code!")
|
|
|
|
#define UNREACHABLE_MSG(...) ASSERT_MSG(false, __VA_ARGS__)
|
|
|
|
|
2016-08-05 18:39:47 +01:00
|
|
|
#ifdef NDEBUG
|
2016-07-01 14:01:06 +01:00
|
|
|
#define DEBUG_ASSERT(_a_)
|
2016-07-22 23:55:00 +01:00
|
|
|
#define DEBUG_ASSERT_MSG(_a_, ...)
|
2016-08-05 18:39:47 +01:00
|
|
|
#else // debug
|
|
|
|
#define DEBUG_ASSERT(_a_) ASSERT(_a_)
|
|
|
|
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
|
2016-07-01 14:01:06 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define UNIMPLEMENTED() DEBUG_ASSERT_MSG(false, "Unimplemented code!")
|
|
|
|
#define UNIMPLEMENTED_MSG(_a_, ...) ASSERT_MSG(false, _a_, __VA_ARGS__)
|