1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#pragma once
#include "defs.hpp"
#include <cstdlib>
#include <cstdio>
#include <type_traits>
#ifdef __GNUG__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-macros"
#ifdef __clang__
# define FM_KILL_PRINTF_WARN_1_2() \
_Pragma("clang diagnostic push") \
_Pragma("clang diagnostic ignored \"-Wformat-nonliteral\"")
# define FM_KILL_PRINTF_WARN_2_2() _Pragma("clang diagnostic pop")
#else
#define FM_KILL_PRINTF_WARN_1_2()
#define FM_KILL_PRINTF_WARN_2_2()
#endif
#define FM_KILL_PRINTF_WARN_1() \
_Pragma("GCC diagnostic push") \
_Pragma("GCC diagnostic ignored \"-Wdouble-promotion\"") \
FM_KILL_PRINTF_WARN_1_2()
#define FM_KILL_PRINTF_WARN_2() _Pragma("GCC diagnostic pop") FM_KILL_PRINTF_WARN_2_2()
#else
#define FM_KILL_PRINTF_WARN_1()
#define FM_KILL_PRINTF_WARN_2()
#endif
#define fm_EMIT_ABORT() ::std::abort();
#define fm_EMIT_DEBUG2(pfx, ...) \
do { \
if (!std::is_constant_evaluated()) \
{ \
if constexpr (sizeof(pfx) > 1) \
std::fputs((pfx), stderr); \
FM_KILL_PRINTF_WARN_1() \
std::fprintf(stderr, __VA_ARGS__); \
FM_KILL_PRINTF_WARN_2() \
} \
} while (false)
#define fm_EMIT_DEBUG(pfx, ...) \
do { \
if (!std::is_constant_evaluated()) \
{ \
fm_EMIT_DEBUG2(pfx, __VA_ARGS__); \
std::fputc('\n', stderr); \
std::fflush(stderr); \
} \
} while (false)
#define fm_abort(...) \
do { \
fm_EMIT_DEBUG2("fatal: ", __VA_ARGS__); \
fm_EMIT_DEBUG("", " in %s:%d", __FILE__, __LINE__); \
fm_EMIT_ABORT(); \
} while (false)
#define fm_assert(...) \
do { \
if (!(__VA_ARGS__)) [[unlikely]] { \
fm_EMIT_DEBUG("", "assertion failed: %s in %s:%d", \
#__VA_ARGS__, __FILE__, __LINE__); \
fm_EMIT_ABORT(); \
} \
} while(false)
#ifndef FM_NO_DEBUG
#define fm_debug_assert(...) fm_assert(__VA_ARGS__)
#else
#define fm_debug_assert(...) void()
#endif
#define fm_warn(...) fm_EMIT_DEBUG("warning: ", __VA_ARGS__)
#define fm_error(...) fm_EMIT_DEBUG("error: ", __VA_ARGS__)
#define fm_log(...) fm_EMIT_DEBUG("", __VA_ARGS__)
#define fm_debug(...) fm_EMIT_DEBUG("", __VA_ARGS__)
#define fm_warn_once(...) do { \
static bool _fm_once_flag = false; \
if (!_fm_once_flag) [[unlikely]] { \
_fm_once_flag = true; \
fm_warn(__VA_ARGS__); \
} \
} while (false)
#define fm_assert_equal(...) \
([](auto a, auto b) -> void \
{ \
if (a != b) [[unlikely]] \
{ \
DBG_nospace << __FILE__ << ":" << __LINE__ << ": " \
<< Debug::color(Debug::Color::Red) \
<< "fatal:" \
<< Debug::resetColor \
<< " assertion failed: " << #__VA_ARGS__; \
DBG_nospace << " expected: " << a; \
DBG_nospace << " actual: " << b; \
fm_EMIT_ABORT(); \
} \
})(__VA_ARGS__)
#ifdef __GNUG__
# pragma GCC diagnostic pop
#endif
|