-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstStat.h
33 lines (23 loc) · 907 Bytes
/
instStat.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
/******************************************************************
Exana: EXecution-driven Application aNAlysis tool
Copyright (C) 2014, Yukinori Sato
All Rights Reserved.
******************************************************************/
////////////////////////////////////////////////////
//***** instStat.h ********************///
////////////////////////////////////////////////////
#ifndef _INSTSTAT_H_
#define _INSTSTAT_H_
extern "C" {
#include "xed-interface.h"
}
#include "xed-operand-element-type-enum.h"
#include "xed-extension-enum.h"
/* ~/pin/extras/xed2-intel64/include/xed-extension-enum.h */
//void checkInstStatInRtn(RTN rtn, int *rtnIDval, int skipCnt);
void checkInstStatInRtn(RTN rtn, int *rtnIDval);
UINT getFlop(xed_decoded_inst_t* xedd);
void xed_dot_graph_bbl(RTN rtn, int rtnID, int bblID);
void xed_dot_graph_init(void);
void xed_dot_graph_fini(void);
#endif