2015-09-26 20:39:47 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-09-26 20:39:47 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-11-20 10:33:47 +00:00
|
|
|
#include "Common/Common.h"
|
2015-09-26 20:39:47 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
|
|
|
#include "Common/Logging/Log.h"
|
|
|
|
#include "Common/MsgHandler.h"
|
|
|
|
|
2018-03-15 00:34:35 +00:00
|
|
|
#define ASSERT_MSG(_t_, _a_, _fmt_, ...) \
|
2018-03-16 16:06:24 +00:00
|
|
|
do \
|
2015-09-26 20:39:47 +00:00
|
|
|
{ \
|
2022-07-28 04:54:27 +00:00
|
|
|
if (!(_a_)) [[unlikely]] \
|
2018-03-16 16:06:24 +00:00
|
|
|
{ \
|
2021-11-11 02:34:28 +00:00
|
|
|
if (!PanicYesNoFmtAssert(_t_, \
|
|
|
|
"An error occurred.\n\n" _fmt_ "\n\n" \
|
|
|
|
" Condition: {}\n File: {}\n Line: {}\n Function: {}\n\n" \
|
|
|
|
"Ignore and continue?", \
|
2022-08-23 18:14:47 +00:00
|
|
|
__VA_ARGS__ __VA_OPT__(, ) #_a_, __FILE__, __LINE__, __func__)) \
|
2018-03-16 16:06:24 +00:00
|
|
|
Crash(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2015-09-26 20:39:47 +00:00
|
|
|
|
2021-11-10 21:39:36 +00:00
|
|
|
#define DEBUG_ASSERT_MSG(_t_, _a_, _fmt_, ...) \
|
2018-03-16 16:06:24 +00:00
|
|
|
do \
|
2015-09-26 20:39:47 +00:00
|
|
|
{ \
|
2021-10-21 19:11:07 +00:00
|
|
|
if constexpr (Common::Log::MAX_LOGLEVEL >= Common::Log::LogLevel::LDEBUG) \
|
2022-08-23 18:14:47 +00:00
|
|
|
ASSERT_MSG(_t_, _a_, _fmt_ __VA_OPT__(, ) __VA_ARGS__); \
|
2018-03-16 16:06:24 +00:00
|
|
|
} while (0)
|
2015-09-26 20:39:47 +00:00
|
|
|
|
2018-03-15 00:34:35 +00:00
|
|
|
#define ASSERT(_a_) \
|
2018-03-16 16:06:24 +00:00
|
|
|
do \
|
|
|
|
{ \
|
2022-07-28 04:54:27 +00:00
|
|
|
if (!(_a_)) [[unlikely]] \
|
2021-11-10 21:39:36 +00:00
|
|
|
{ \
|
2021-11-10 22:42:49 +00:00
|
|
|
if (!PanicYesNoFmt("An error occurred.\n\n" \
|
|
|
|
" Condition: {}\n File: {}\n Line: {}\n Function: {}\n\n" \
|
|
|
|
"Ignore and continue?", \
|
|
|
|
#_a_, __FILE__, __LINE__, __func__)) \
|
2021-11-10 21:39:36 +00:00
|
|
|
Crash(); \
|
|
|
|
} \
|
2018-03-16 16:06:24 +00:00
|
|
|
} while (0)
|
2015-09-26 20:39:47 +00:00
|
|
|
|
2018-03-16 16:57:36 +00:00
|
|
|
#define DEBUG_ASSERT(_a_) \
|
2018-03-16 16:06:24 +00:00
|
|
|
do \
|
|
|
|
{ \
|
2021-10-21 19:11:07 +00:00
|
|
|
if constexpr (Common::Log::MAX_LOGLEVEL >= Common::Log::LogLevel::LDEBUG) \
|
2018-03-16 16:06:24 +00:00
|
|
|
ASSERT(_a_); \
|
|
|
|
} while (0)
|