forked from basilTeam/basil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanic.h
36 lines (29 loc) · 1.04 KB
/
panic.h
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
/*
* Copyright (c) 2021, the Basil authors
* All rights reserved.
*
* This source code is licensed under the 3-Clause BSD License, the full text
* of which can be found in the LICENSE file in the root directory
* of this project.
*/
#ifndef BASIL_PANIC_H
#define BASIL_PANIC_H
#include "defs.h"
#include "io.h"
#ifdef BASIL_RELEASE
#define panic(...)
#else
#define panic(...) internal_panic(__FILE__, __LINE__, __VA_ARGS__)
#endif
void exit_in_a_panic();
template<typename... Args>
void internal_panic(const char* file, int line, Args... args) {
println((const char*)"");
println((const char*)"[", file, (const char*)":", line, (const char*)" - ", BOLDRED, (const char*)"PANIC!", RESET, (const char*)"] ", BOLDRED, args..., RESET);
println((const char*)"");
println((const char*)"A panic indicates some kind of internal compiler error occurred. ");
println((const char*)"If you came across this and aren't implementing the compiler, please");
println((const char*)"consider reporting it!");
exit_in_a_panic();
}
#endif