Cthulhu  0.2.10
Cthulhu compiler collection
panic.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_base_api.h>
6 #include <ctu_config.h>
7 
8 #include "core/source_info.h"
9 
10 #include <stdarg.h>
11 
13 
17 
22 
27 
28 #ifdef WITH_DOXYGEN
29 # define CTU_DEBUG 0
30 # define CTU_PARANOID 0
31 #endif
32 
40 typedef void (*panic_handler_t)(source_info_t location, STA_FORMAT_STRING const char *fmt, va_list args);
41 
46 CT_BASE_API extern panic_handler_t gPanicHandler;
47 
53 STA_PRINTF(2, 3)
54 CT_BASE_API CT_NORETURN ctu_panic(source_info_t location, STA_FORMAT_STRING const char *msg, ...);
55 
61 CT_BASE_API CT_NORETURN ctu_vpanic(source_info_t location, STA_FORMAT_STRING const char *msg,
62  va_list args);
63 
64 #define CT_PANIC_INNER(...) \
65  source_info_t panic_source = CT_SOURCE_CURRENT; \
66  ctu_panic(panic_source, __VA_ARGS__)
67 
72 #define CT_PANIC(...) \
73  do \
74  { \
75  CT_PANIC_INNER(__VA_ARGS__); \
76  } while (0)
77 
84 
85 #define CTASSERTF_ALWAYS(expr, ...) \
86  do \
87  { \
88  if (!(expr)) \
89  { \
90  CT_PANIC_INNER(__VA_ARGS__); \
91  } \
92  } while (0)
93 
94 #define CTASSERT_ALWAYS(expr) CTASSERTF_ALWAYS(expr, "assertion failed: %s", #expr)
95 #define CTASSERTM_ALWAYS(expr, msg) CTASSERTF_ALWAYS(expr, "%s", msg)
96 
103 
104 #if CTU_ASSERTS
105 # define CTASSERTF(expr, ...) CTASSERTF_ALWAYS(expr, __VA_ARGS__)
106 #elif defined(__cplusplus) && (defined(__clang__) || defined(__GNUC__))
107 # define CTASSERTF(expr, ...) \
108  do { \
109  if (__builtin_constant_p(expr) && !(expr)) { \
110  CT_UNREACHABLE(); \
111  } else { \
112  CTASSERTF_ALWAYS(expr, __VA_ARGS__); \
113  } \
114  } while (0)
115 #else
116 # define CTASSERTF(expr, ...) CT_ASSUME(expr)
117 #endif
118 
124 #define CTASSERTM(expr, msg) CTASSERTF(expr, "%s", msg)
125 
130 #define CTASSERT(expr) CTASSERTM(expr, #expr)
131 
136 #define CT_NEVER(...) CT_PANIC(__VA_ARGS__)
137 
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))
140 
148 #define CT_ASSERT_RANGE(value, min, max) \
149  CT_ASSERT_RANGE_PRI(value, min, max, "%d")
150 
151 #if CTU_PARANOID
152 # define CT_PARANOID(...) __VA_ARGS__
153 # define CT_PARANOID_ASSERTF(expr, ...) CTASSERTF(expr, __VA_ARGS__)
154 #else
155 # define CT_PARANOID(...)
156 # define CT_PARANOID_ASSERTF(expr, ...)
157 #endif
158 
161 
164 
166 
#define CT_NORETURN
Definition: analyze.h:150
#define STA_PRINTF(a, b)
mark a function as a printf style function
Definition: analyze.h:165
#define STA_FORMAT_STRING
mark a function parameter as a printf format string
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
CT_BASE_API panic_handler_t gPanicHandler
the global panic handler.
Definition: panic.c:5
void(* panic_handler_t)(source_info_t location, STA_FORMAT_STRING const char *fmt, va_list args)
panic handler function
Definition: panic.h:40
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
Definition: str.h:68
panic location information
Definition: source_info.h:26