-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprint.h
55 lines (36 loc) · 1.31 KB
/
print.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
/******************************************************************
Exana: EXecution-driven Application aNAlysis tool
Copyright (C) 2014, Yukinori Sato
All Rights Reserved.
******************************************************************/
////////////////////////////////////////////////////
//***** print.h ********************///
////////////////////////////////////////////////////
#ifndef _print_H_
#define _print_H_
#include "loopMarkers.h"
void printNode2(struct treeNode *);
void printNode2(struct treeNode *, ostream &);
void printNode3(struct treeNode *);
void printNode(struct treeNode *);
void printNode(struct treeNode *, ostream &);
void printNode2outFile(struct treeNode *);
void printNode2cerr(struct treeNode *);
void show_tree_dfs(struct treeNode *, int);
void printStaticLoopInfo(void);
void checkMemoryUsage();
void checkMemoryUsage(ostream &);
void checkCurrMemoryUsage(ostream &);
struct gListOfLoops *isLoopLineInSrc(int );
char* demangle(const char *);
UINT64 calc_numNode(struct treeNode *);
double getTime_sec();
extern UINT64 instCntInLoop;
extern UINT64 instCntInRtn;
const char *stripPath(const char * path);
const char *stripByUnderbar(const char * path);
extern UINT64 *depNodeTable;
extern std::ofstream depOutFile;
void outputDepNode(void);
void initDepNodeTable(void);
#endif