5 #include <ctu_base_api.h>
30 # define CTU_PARANOID 0
64 #define CT_PANIC_INNER(...) \
65 source_info_t panic_source = CT_SOURCE_CURRENT; \
66 ctu_panic(panic_source, __VA_ARGS__)
72 #define CT_PANIC(...) \
75 CT_PANIC_INNER(__VA_ARGS__); \
85 #define CTASSERTF_ALWAYS(expr, ...) \
90 CT_PANIC_INNER(__VA_ARGS__); \
94 #define CTASSERT_ALWAYS(expr) CTASSERTF_ALWAYS(expr, "assertion failed: %s", #expr)
95 #define CTASSERTM_ALWAYS(expr, msg) CTASSERTF_ALWAYS(expr, "%s", msg)
105 # define CTASSERTF(expr, ...) CTASSERTF_ALWAYS(expr, __VA_ARGS__)
106 #elif defined(__cplusplus) && (defined(__clang__) || defined(__GNUC__))
107 # define CTASSERTF(expr, ...) \
109 if (__builtin_constant_p(expr) && !(expr)) { \
112 CTASSERTF_ALWAYS(expr, __VA_ARGS__); \
116 # define CTASSERTF(expr, ...) CT_ASSUME(expr)
124 #define CTASSERTM(expr, msg) CTASSERTF(expr, "%s", msg)
130 #define CTASSERT(expr) CTASSERTM(expr, #expr)
136 #define CT_NEVER(...) CT_PANIC(__VA_ARGS__)
138 #define CT_ASSERT_RANGE_PRI(value, min, max, pri) \
139 CTASSERTF((value) >= (min) && (value) <= (max), "value " pri " not in range " pri "-" pri, (value), (min), (max))
148 #define CT_ASSERT_RANGE(value, min, max) \
149 CT_ASSERT_RANGE_PRI(value, min, max, "%d")
152 # define CT_PARANOID(...) __VA_ARGS__
153 # define CT_PARANOID_ASSERTF(expr, ...) CTASSERTF(expr, __VA_ARGS__)
155 # define CT_PARANOID(...)
156 # define CT_PARANOID_ASSERTF(expr, ...)
#define STA_PRINTF(a, b)
mark a function as a printf style function
#define STA_FORMAT_STRING
mark a function parameter as a printf format string
CT_BASE_API panic_handler_t gPanicHandler
the global panic handler.
void(* panic_handler_t)(source_info_t location, STA_FORMAT_STRING const char *fmt, va_list args)
panic handler function
CT_BASE_API CT_NORETURN ctu_vpanic(source_info_t location, STA_FORMAT_STRING const char *msg, va_list args)
panic with a message, file, and line
CT_BASE_API CT_NORETURN ctu_panic(source_info_t location, STA_FORMAT_STRING const char *msg,...)
panic with a message, file, and line
CT_NODISCARD STA_FORMAT_STRING const char * fmt
panic location information