-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.h
41 lines (35 loc) · 1.67 KB
/
config.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
37
38
39
40
41
#pragma once
#if !defined(_WIN32) && !defined(__unix__)
#error This tool builds only on Win32 and Unix-like systems
#endif
#define IHPP_BENCHMARK 0
#define DEBUG 0
#define CHECK_ASSERTS 0
#define DEBUG_SINGLE_INST 1
#define DEBUG_BRCALL 1
#define DEBUG_IMGLOAD 1
#define DEBUG_FUNC_TRACE 1
#define DEBUG_FUNC_RET 1
#define DEBUG_INTRA_TRACE 1
#define DEBUG_INTRA_RET 1
#define USE_ALWAYS_64BIT_COUNTER 1
#define EMPTY_ANALYSIS 0
#if defined(_WIN32)
#define ENABLE_INS_TRACING 1
#define ENABLE_SUBCALL_CHECK 1
#define ENABLE_RELY_ON_SP_CHECK 0
#define ENABLE_KEEP_STACK_PTR 0
#define ENABLE_WIN32_FULLTRACE_TARGET_TRACING_LONGJMP 0
#define ENABLE_WIN32_MAIN_ALIGNMENT 1
#define ENABLE_INS_FORWARD_JMP_RECOGNITION 1
#define USING_WINDOWS 1
#else
#define ENABLE_INS_TRACING 0
#define ENABLE_SUBCALL_CHECK 0
#define ENABLE_RELY_ON_SP_CHECK 1
#define ENABLE_KEEP_STACK_PTR 1
#define ENABLE_WIN32_FULLTRACE_TARGET_TRACING_LONGJMP 0
#define ENABLE_WIN32_MAIN_ALIGNMENT 0
#define ENABLE_INS_FORWARD_JMP_RECOGNITION 0
#define USING_WINDOWS 0
#endif