prime/include/musyx/assert.h

55 lines
980 B
C
Raw Normal View History

2022-12-24 22:54:58 +00:00
#ifndef _MUSYX_ASSERT
#define _MUSYX_ASSERT
extern void OSPanic(const char* file, int line, const char* msg, ...);
2023-02-24 17:42:08 +00:00
extern void OSReport(const char* msg, ...);
2022-12-24 22:54:58 +00:00
static inline unsigned __SOME_ASSERT_DERP1() {
return 0;
}
static inline unsigned __SOME_ASSERT_DERP2() {
return __SOME_ASSERT_DERP1();
}
static inline void __SOME_ASSERT_DERP() {
__SOME_ASSERT_DERP2() != 0;
}
2022-12-24 22:54:58 +00:00
#ifndef ASSERT
#ifdef _DEBUG
#define MUSY_ASSERT(cond) \
2023-02-24 17:42:08 +00:00
do { \
if (!(cond)) { \
OSPanic(__FILE__, __LINE__, "Failed assertion " #cond); \
} \
__SOME_ASSERT_DERP(); \
2023-02-24 17:42:08 +00:00
} while(0)
2022-12-24 22:54:58 +00:00
#else
#define MUSY_ASSERT(cond)
2022-12-24 22:54:58 +00:00
#endif
#endif
#ifndef MUSY_ASSERT_MSG
2022-12-24 22:54:58 +00:00
#ifdef _DEBUG
#define MUSY_ASSERT_MSG(cond, msg) \
2023-02-24 17:42:08 +00:00
do { \
if (!(cond)) { \
OSPanic(__FILE__, __LINE__, msg); \
} \
} while(0)
2022-12-24 22:54:58 +00:00
#else
#define MUSY_ASSERT_MSG(cond, msg)
2022-12-24 22:54:58 +00:00
#endif
#endif
2023-02-23 07:04:07 +00:00
#ifndef MUSY_DEBUG
2023-02-24 17:42:08 +00:00
#ifdef _DEBUG
2023-02-23 07:04:07 +00:00
#define MUSY_DEBUG OSReport
2023-02-24 17:42:08 +00:00
#else
2023-02-23 07:04:07 +00:00
#define MUSY_DEBUG
#endif
#endif
2022-12-24 22:54:58 +00:00
#endif // _MUSYX_ASSERT