2020-12-26 03:32:21 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
2020-12-28 03:08:35 +03:00
|
|
|
|
2020-12-28 10:31:53 +03:00
|
|
|
#ifdef DEBUG
|
2021-01-02 06:51:32 +03:00
|
|
|
#define ENABLE_DISASSEMBLY
|
2020-12-28 03:08:35 +03:00
|
|
|
#define ENABLE_TRACING
|
2020-12-28 04:54:25 +03:00
|
|
|
#define ENABLE_SCAN_TRACING
|
2020-12-28 07:51:14 +03:00
|
|
|
#define ENABLE_STRESS_GC
|
2020-12-28 10:31:53 +03:00
|
|
|
#endif
|