-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.h
92 lines (78 loc) · 2.04 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
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
#ifndef __BT9_COMMON_H__
#define __BT9_COMMON_H__
#ifdef _WIN32
#define strncpy(a,b,c) strcpy_s(a,c,b)
#else
#define _strcmpi strcasecmp
#endif
typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef unsigned int UINT32;
typedef int INT32;
typedef unsigned long long UINT64;
typedef enum {
OPTYPE_OP = 2,
OPTYPE_RET_UNCOND,
OPTYPE_JMP_DIRECT_UNCOND,
OPTYPE_JMP_INDIRECT_UNCOND,
OPTYPE_CALL_DIRECT_UNCOND,
OPTYPE_CALL_INDIRECT_UNCOND,
OPTYPE_RET_COND,
OPTYPE_JMP_DIRECT_COND,
OPTYPE_JMP_INDIRECT_COND,
OPTYPE_CALL_DIRECT_COND,
OPTYPE_CALL_INDIRECT_COND,
OPTYPE_ERROR,
OPTYPE_MAX
} OpType;
struct BT9_NODE {
UINT64 virtual_address;
UINT64 physical_address;
UINT64 opcode;
OpType optype;
UINT32 size;
};
// EDGE id不能超过2^32-1,否则UINT32类型放不下
struct BT9_EDGE {
UINT32 src_id;
UINT32 dest_id;
char taken;
UINT64 br_virt_target;
UINT64 br_phy_target;
UINT64 inst_cnt;
UINT64 traverse_cnt;
};
struct BT9_struct {
UINT32 bt9_minor_version;
UINT32 has_physical_address;
UINT32 md5_checksum;
UINT32 conversion_date;
char original_stf_input_file[256];
UINT64 total_instruction_count;
UINT64 branch_instruction_count;
UINT64 invalid_physical_branch_target_count;
UINT64 A32_instruction_count;
UINT64 A64_instruction_count;
UINT64 T32_instruction_count;
UINT64 unidentified_instruction_count;
UINT32 BT9_NODE_count;
UINT32 BT9_EDGE_count;
UINT32 BT9_TRACE_count;
struct BT9_NODE *NODE;
struct BT9_EDGE *EDGE;
UINT32 *TRACE;
};
typedef enum {
PROCESS_START,
PROCESS_NODE,
PROCESS_EDGE,
PROCESS_TRACE
} PROCESS_STATE_ENUM;
void PREDICTOR_init(void);
char GetPrediction(UINT64 PC);
void UpdatePredictor(UINT64 PC, OpType opType, char resolveDir, char predDir, UINT64 branchTarget);
void PREDICTOR_free(void);
int LoadBT9(struct BT9_struct *BT, char *filename);
void FreeBT9(struct BT9_struct *BT);
double SimBT9(struct BT9_struct *BT);
#endif