Files
compute-runtime/core/helpers/debug_helpers.h
Mateusz Jablonski 6ef7fc726b Update copyright headers
Change-Id: I05eaad34f5af15685c6ad6d5bb3078f21dd1e0af
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-02-22 23:44:04 +01:00

37 lines
913 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "core/helpers/abort.h"
#define UNRECOVERABLE_IF(expression) \
\
if (expression) { \
NEO::abortUnrecoverable(__LINE__, __FILE__); \
}
#define UNREACHABLE(...) std::abort()
#ifndef DEBUG_BREAK_IF
#ifdef _DEBUG
#define DEBUG_BREAK_IF(expression) \
\
if (expression) { \
NEO::debugBreak(__LINE__, __FILE__); \
}
#else
#define DEBUG_BREAK_IF(expression) (void)0
#endif // _DEBUG
#endif // !DEBUG_BREAK_IF
#define UNUSED_VARIABLE(x) ((void)(x))
namespace NEO {
void debugBreak(int line, const char *file);
[[noreturn]] void abortUnrecoverable(int line, const char *file);
} // namespace NEO