-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.h
32 lines (24 loc) · 1.11 KB
/
common.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
//
// Created by paul on 25/05/2021.
//
#ifndef LOXCOMPILER_COMMON_H
#define LOXCOMPILER_COMMON_H
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SYSTEM INCLUDES
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// PUBLIC FLAGS
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#define NAN_BOXING
//#define DEBUG_PRINT_CODE
//#define DEBUG_TRACE_EXECUTION
//#define DEBUG_STRESS_GC
//#define DEBUG_LOG_GC
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// PUBLIC CONSTANTS
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#define UINT8_COUNT (UINT8_MAX + 1)
#endif //LOXCOMPILER_COMMON_H