SDL_assert.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2021 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. #ifndef SDL_assert_h_
  19. #define SDL_assert_h_
  20. #include "SDL_config.h"
  21. #include "begin_code.h"
  22. /* Set up for C function definitions, even when using C++ */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #ifndef SDL_ASSERT_LEVEL
  27. #ifdef SDL_DEFAULT_ASSERT_LEVEL
  28. #define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL
  29. #elif defined(_DEBUG) || defined(DEBUG) || \
  30. (defined(__GNUC__) && !defined(__OPTIMIZE__))
  31. #define SDL_ASSERT_LEVEL 2
  32. #else
  33. #define SDL_ASSERT_LEVEL 1
  34. #endif
  35. #endif /* SDL_ASSERT_LEVEL */
  36. /*
  37. These are macros and not first class functions so that the debugger breaks
  38. on the assertion line and not in some random guts of SDL, and so each
  39. assert can have unique static variables associated with it.
  40. */
  41. #if defined(_MSC_VER)
  42. /* Don't include intrin.h here because it contains C++ code */
  43. extern void __cdecl __debugbreak(void);
  44. #define SDL_TriggerBreakpoint() __debugbreak()
  45. #elif ( (!defined(__NACL__)) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__))) )
  46. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" )
  47. #elif ( defined(__APPLE__) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */
  48. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" )
  49. #elif defined(__APPLE__) && defined(__arm__)
  50. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" )
  51. #elif defined(__386__) && defined(__WATCOMC__)
  52. #define SDL_TriggerBreakpoint() { _asm { int 0x03 } }
  53. #elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__)
  54. #include <signal.h>
  55. #define SDL_TriggerBreakpoint() raise(SIGTRAP)
  56. #else
  57. /* How do we trigger breakpoints on this platform? */
  58. #define SDL_TriggerBreakpoint()
  59. #endif
  60. #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */
  61. # define SDL_FUNCTION __func__
  62. #elif ((__GNUC__ >= 2) || defined(_MSC_VER) || defined (__WATCOMC__))
  63. # define SDL_FUNCTION __FUNCTION__
  64. #else
  65. # define SDL_FUNCTION "???"
  66. #endif
  67. #define SDL_FILE __FILE__
  68. #define SDL_LINE __LINE__
  69. /*
  70. sizeof (x) makes the compiler still parse the expression even without
  71. assertions enabled, so the code is always checked at compile time, but
  72. doesn't actually generate code for it, so there are no side effects or
  73. expensive checks at run time, just the constant size of what x WOULD be,
  74. which presumably gets optimized out as unused.
  75. This also solves the problem of...
  76. int somevalue = blah();
  77. SDL_assert(somevalue == 1);
  78. ...which would cause compiles to complain that somevalue is unused if we
  79. disable assertions.
  80. */
  81. /* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking
  82. this condition isn't constant. And looks like an owl's face! */
  83. #ifdef _MSC_VER /* stupid /W4 warnings. */
  84. #define SDL_NULL_WHILE_LOOP_CONDITION (0,0)
  85. #else
  86. #define SDL_NULL_WHILE_LOOP_CONDITION (0)
  87. #endif
  88. #define SDL_disabled_assert(condition) \
  89. do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION)
  90. typedef enum
  91. {
  92. SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */
  93. SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */
  94. SDL_ASSERTION_ABORT, /**< Terminate the program. */
  95. SDL_ASSERTION_IGNORE, /**< Ignore the assert. */
  96. SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */
  97. } SDL_AssertState;
  98. typedef struct SDL_AssertData
  99. {
  100. int always_ignore;
  101. unsigned int trigger_count;
  102. const char *condition;
  103. const char *filename;
  104. int linenum;
  105. const char *function;
  106. const struct SDL_AssertData *next;
  107. } SDL_AssertData;
  108. #if (SDL_ASSERT_LEVEL > 0)
  109. /* Never call this directly. Use the SDL_assert* macros. */
  110. extern DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *,
  111. const char *,
  112. const char *, int)
  113. #if defined(__clang__)
  114. #if __has_feature(attribute_analyzer_noreturn)
  115. /* this tells Clang's static analysis that we're a custom assert function,
  116. and that the analyzer should assume the condition was always true past this
  117. SDL_assert test. */
  118. __attribute__((analyzer_noreturn))
  119. #endif
  120. #endif
  121. ;
  122. /* the do {} while(0) avoids dangling else problems:
  123. if (x) SDL_assert(y); else blah();
  124. ... without the do/while, the "else" could attach to this macro's "if".
  125. We try to handle just the minimum we need here in a macro...the loop,
  126. the static vars, and break points. The heavy lifting is handled in
  127. SDL_ReportAssertion(), in SDL_assert.c.
  128. */
  129. #define SDL_enabled_assert(condition) \
  130. do { \
  131. while ( !(condition) ) { \
  132. static struct SDL_AssertData sdl_assert_data = { \
  133. 0, 0, #condition, 0, 0, 0, 0 \
  134. }; \
  135. const SDL_AssertState sdl_assert_state = SDL_ReportAssertion(&sdl_assert_data, SDL_FUNCTION, SDL_FILE, SDL_LINE); \
  136. if (sdl_assert_state == SDL_ASSERTION_RETRY) { \
  137. continue; /* go again. */ \
  138. } else if (sdl_assert_state == SDL_ASSERTION_BREAK) { \
  139. SDL_TriggerBreakpoint(); \
  140. } \
  141. break; /* not retrying. */ \
  142. } \
  143. } while (SDL_NULL_WHILE_LOOP_CONDITION)
  144. #endif /* enabled assertions support code */
  145. /* Enable various levels of assertions. */
  146. #if SDL_ASSERT_LEVEL == 0 /* assertions disabled */
  147. # define SDL_assert(condition) SDL_disabled_assert(condition)
  148. # define SDL_assert_release(condition) SDL_disabled_assert(condition)
  149. # define SDL_assert_paranoid(condition) SDL_disabled_assert(condition)
  150. #elif SDL_ASSERT_LEVEL == 1 /* release settings. */
  151. # define SDL_assert(condition) SDL_disabled_assert(condition)
  152. # define SDL_assert_release(condition) SDL_enabled_assert(condition)
  153. # define SDL_assert_paranoid(condition) SDL_disabled_assert(condition)
  154. #elif SDL_ASSERT_LEVEL == 2 /* normal settings. */
  155. # define SDL_assert(condition) SDL_enabled_assert(condition)
  156. # define SDL_assert_release(condition) SDL_enabled_assert(condition)
  157. # define SDL_assert_paranoid(condition) SDL_disabled_assert(condition)
  158. #elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */
  159. # define SDL_assert(condition) SDL_enabled_assert(condition)
  160. # define SDL_assert_release(condition) SDL_enabled_assert(condition)
  161. # define SDL_assert_paranoid(condition) SDL_enabled_assert(condition)
  162. #else
  163. # error Unknown assertion level.
  164. #endif
  165. /* this assertion is never disabled at any level. */
  166. #define SDL_assert_always(condition) SDL_enabled_assert(condition)
  167. /**
  168. * A callback that fires when an SDL assertion fails.
  169. *
  170. * \param data a pointer to the SDL_AssertData structure corresponding to the
  171. * current assertion
  172. * \param userdata what was passed as `userdata` to SDL_SetAssertionHandler()
  173. * \returns an SDL_AssertState value indicating how to handle the failure.
  174. */
  175. typedef SDL_AssertState (SDLCALL *SDL_AssertionHandler)(
  176. const SDL_AssertData* data, void* userdata);
  177. /**
  178. * Set an application-defined assertion handler.
  179. *
  180. * This function allows an application to show its own assertion UI and/or
  181. * force the response to an assertion failure. If the application doesn't
  182. * provide this, SDL will try to do the right thing, popping up a
  183. * system-specific GUI dialog, and probably minimizing any fullscreen windows.
  184. *
  185. * This callback may fire from any thread, but it runs wrapped in a mutex, so
  186. * it will only fire from one thread at a time.
  187. *
  188. * This callback is NOT reset to SDL's internal handler upon SDL_Quit()!
  189. *
  190. * \param handler the SDL_AssertionHandler function to call when an assertion
  191. * fails or NULL for the default handler
  192. * \param userdata a pointer that is passed to `handler`
  193. *
  194. * \sa SDL_GetAssertionHandler
  195. */
  196. extern DECLSPEC void SDLCALL SDL_SetAssertionHandler(
  197. SDL_AssertionHandler handler,
  198. void *userdata);
  199. /**
  200. * Get the default assertion handler.
  201. *
  202. * This returns the function pointer that is called by default when an
  203. * assertion is triggered. This is an internal function provided by SDL, that
  204. * is used for assertions when SDL_SetAssertionHandler() hasn't been used to
  205. * provide a different function.
  206. *
  207. * \returns the default SDL_AssertionHandler that is called when an assert
  208. * triggers.
  209. *
  210. * \since This function is available since SDL 2.0.2.
  211. *
  212. * \sa SDL_GetAssertionHandler
  213. */
  214. extern DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void);
  215. /**
  216. * Get the current assertion handler.
  217. *
  218. * This returns the function pointer that is called when an assertion is
  219. * triggered. This is either the value last passed to
  220. * SDL_SetAssertionHandler(), or if no application-specified function is set,
  221. * is equivalent to calling SDL_GetDefaultAssertionHandler().
  222. *
  223. * The parameter `puserdata` is a pointer to a void*, which will store the
  224. * "userdata" pointer that was passed to SDL_SetAssertionHandler(). This value
  225. * will always be NULL for the default handler. If you don't care about this
  226. * data, it is safe to pass a NULL pointer to this function to ignore it.
  227. *
  228. * \param puserdata pointer which is filled with the "userdata" pointer that
  229. * was passed to SDL_SetAssertionHandler()
  230. * \returns the SDL_AssertionHandler that is called when an assert triggers.
  231. *
  232. * \since This function is available since SDL 2.0.2.
  233. *
  234. * \sa SDL_SetAssertionHandler
  235. */
  236. extern DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata);
  237. /**
  238. * Get a list of all assertion failures.
  239. *
  240. * This function gets all assertions triggered since the last call to
  241. * SDL_ResetAssertionReport(), or the start of the program.
  242. *
  243. * The proper way to examine this data looks something like this:
  244. *
  245. * ```c
  246. * const SDL_AssertData *item = SDL_GetAssertionReport();
  247. * while (item) {
  248. * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\\n",
  249. * item->condition, item->function, item->filename,
  250. * item->linenum, item->trigger_count,
  251. * item->always_ignore ? "yes" : "no");
  252. * item = item->next;
  253. * }
  254. * ```
  255. *
  256. * \returns a list of all failed assertions or NULL if the list is empty. This
  257. * memory should not be modified or freed by the application.
  258. *
  259. * \sa SDL_ResetAssertionReport
  260. */
  261. extern DECLSPEC const SDL_AssertData * SDLCALL SDL_GetAssertionReport(void);
  262. /**
  263. * Clear the list of all assertion failures.
  264. *
  265. * This function will clear the list of all assertions triggered up to that
  266. * point. Immediately following this call, SDL_GetAssertionReport will return
  267. * no items. In addition, any previously-triggered assertions will be reset to
  268. * a trigger_count of zero, and their always_ignore state will be false.
  269. *
  270. * \sa SDL_GetAssertionReport
  271. */
  272. extern DECLSPEC void SDLCALL SDL_ResetAssertionReport(void);
  273. /* these had wrong naming conventions until 2.0.4. Please update your app! */
  274. #define SDL_assert_state SDL_AssertState
  275. #define SDL_assert_data SDL_AssertData
  276. /* Ends C function definitions when using C++ */
  277. #ifdef __cplusplus
  278. }
  279. #endif
  280. #include "close_code.h"
  281. #endif /* SDL_assert_h_ */
  282. /* vi: set ts=4 sw=4 expandtab: */