SWDEV-378006 - Adding a new guarantee macro to support printing args.

Change-Id: I9c838644e31a84d96a44b2bd10525a08d805a047


[ROCm/clr commit: b968394b4e]
This commit is contained in:
kjayapra-amd
2023-01-18 13:25:07 -08:00
committed by Karthik Jayaprakash
parent e26fa3d525
commit b4ffe0e810
5 changed files with 15 additions and 35 deletions
+3 -6
View File
@@ -66,9 +66,6 @@ extern FILE* outFile;
extern "C" void breakpoint();
//! \endcond
//! \brief Report a Fatal exception message and abort.
extern void report_fatal(const char* file, int line, const char* message);
//! \brief Display a warning message.
extern void report_warning(const char* message);
@@ -94,10 +91,10 @@ extern void log_printf(LogLevel level, const char* file, int line, uint64_t *sta
#endif // __INTEL_COMPILER
//! \brief Abort the program if the invariant \a cond is false.
#define guarantee(cond, message) \
#define guarantee(cond, format, ...) \
if (!(cond)) { \
amd::report_fatal(__FILE__, __LINE__, XSTR(message) ); \
amd::breakpoint(); \
amd::log_printf(amd::LOG_NONE, __FILE__, __LINE__, format, ##__VA_ARGS__); \
::abort(); \
}
#define fixme_guarantee(cond, ...) guarantee(cond, __VA_ARGS__)