-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathglobals.cpp
More file actions
269 lines (236 loc) · 6.97 KB
/
globals.cpp
File metadata and controls
269 lines (236 loc) · 6.97 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/*
__ __ ______ _______ _______ ______ ________
/ \ / | / \ / \ / \ / \ / |
$$ \ /$$ |/$$$$$$ |$$$$$$$ |$$$$$$$ |/$$$$$$ |$$$$$$$$/
$$$ \ /$$$ |$$ | $$/ $$ |__$$ |$$ |__$$ |$$ | $$ |$$ |__
$$$$ /$$$$ |$$ | $$ $$/ $$ $$< $$ | $$ |$$ |
$$ $$ $$/$$ |$$ | __ $$$$$$$/ $$$$$$$ |$$ | $$ |$$$$$/
$$ |$$$/ $$ |$$ \__/ |$$ | $$ | $$ |$$ \__$$ |$$ |
$$ | $/ $$ |$$ $$/ $$ | $$ | $$ |$$ $$/ $$ |
$$/ $$/ $$$$$$/ $$/ $$/ $$/ $$$$$$/ $$/
A Memory and Communication Profiler
* This file is a part of MCPROF.
* https://bitbucket.org/imranashraf/mcprof
*
* Copyright (c) 2014-2016 TU Delft, The Netherlands.
* All rights reserved.
*
* MCPROF is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MCPROF is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with MCPROF. If not, see <http://www.gnu.org/licenses/>.
*
* Authors: Imran Ashraf
*
*/
#include <cmath>
#include <string>
#include <map>
#include "globals.h"
#include "pin.H"
using namespace std;
IDNoType GlobalID=UnknownID;
char currDir[FILENAME_MAX];
void PrintLogo()
{
cerr << " __ __ ______ _______ _______ ______ ________ "<<endl;
cerr << "/ \\ / | / \\ / \\ / \\ / \\ / |"<<endl;
cerr << "$$ \\ /$$ |/$$$$$$ |$$$$$$$ |$$$$$$$ |/$$$$$$ |$$$$$$$$/ "<<endl;
cerr << "$$$ \\ /$$$ |$$ | $$/ $$ |__$$ |$$ |__$$ |$$ | $$ |$$ |__ "<<endl;
cerr << "$$$$ /$$$$ |$$ | $$ $$/ $$ $$< $$ | $$ |$$ | "<<endl;
cerr << "$$ $$ $$/$$ |$$ | __ $$$$$$$/ $$$$$$$ |$$ | $$ |$$$$$/ "<<endl;
cerr << "$$ |$$$/ $$ |$$ \\__/ |$$ | $$ | $$ |$$ \\__$$ |$$ | "<<endl;
cerr << "$$ | $/ $$ |$$ $$/ $$ | $$ | $$ |$$ $$/ $$ | "<<endl;
cerr << "$$/ $$/ $$$$$$/ $$/ $$/ $$/ $$$$$$/ $$/ "<<endl;
cerr << " "<<endl;
}
bool isEmpty(ifstream& fin)
{
return fin.peek() == ifstream::traits_type::eof();
}
void OpenInFile(const string& fileName, ifstream& fin)
{
if (!fileName.empty())
{
fin.open(fileName.c_str());
if ( fin.fail() )
{
ECHO("Can not open input file (" <<fileName.c_str() << "). Aborting...");
Die();
}
}
else
{
ECHO("Specify a non empty file name. Aborting ...");
Die();
}
if(isEmpty(fin))
{
ECHO("Input file (" <<fileName.c_str()<<") is empty. Aborting...");
Die();
}
}
void OpenOutFile(const string& fileName, ofstream& fout)
{
if (!fileName.empty())
{
fout.open(fileName.c_str(), ios::binary);
if ( fout.fail() )
{
ECHO("Can not open output file (" << fileName.c_str() << "). Aborting ...");
Die();
}
}
else
{
ECHO("Specify a non empty file name. Aborting ...");
Die();
}
}
bool OpenInFileIfExists(const string& fileName, ifstream& fin)
{
if ( !fileName.empty() )
{
fin.open(fileName.c_str());
if ( fin.fail() )
{
ECHO("Input file (" << fileName.c_str() << ") does not exist ...");
return false;
}
}
else
{
ECHO("Specify a non empty file name. Aborting ...");
Die();
}
return true;
}
const string& Target2RtnName(uptr target)
{
const string& name = RTN_FindNameByAddress(target);
if (name == "")
return *new string("[Unknown routine]");
else
return *new string(name);
}
const string& Target2LibName(uptr target)
{
PIN_LockClient();
const RTN rtn = RTN_FindByAddress(target);
static const string _invalid_rtn("[Unknown image]");
string name;
if( RTN_Valid(rtn) )
name = IMG_Name(SEC_Img(RTN_Sec(rtn)));
else
name = _invalid_rtn;
PIN_UnlockClient();
return *new string(name);
}
inline bool IsPowerOfTwo(uptr x)
{
return (x & (x - 1)) == 0;
}
inline uptr RoundUpTo(uptr size, uptr boundary)
{
CHECK(IsPowerOfTwo(boundary));
return (size + boundary - 1) & ~(boundary - 1);
}
inline uptr RoundDownTo(uptr x, uptr boundary)
{
return x & ~(boundary - 1);
}
inline bool IsAligned(uptr a, uptr alignment)
{
return (a & (alignment - 1)) == 0;
}
const string& humanReadableByteCount(u64 bytes, bool si)
{
string hBytes;
char cBytes[100];
u16 unit = si ? 1000 : 1024;
string punits1 = (si ? "kMGTPE" : "KMGTPE");
char punits2 = (si ? '\0' : 'i');
char pre[3];
if (bytes < unit)
hBytes = to_string((long long)bytes) + " B";
else
{
int exp = (int) (log((double)bytes) / log((double)unit));
pre[0] = punits1[exp-1];
pre[1] = punits2;
pre[2] = '\0';
float val = bytes / pow((double)unit, (double)exp);
sprintf(cBytes, "%.1f %sB", val, pre);
hBytes = cBytes;
}
return *new string(hBytes);
}
const string& hBytes(u64 bytes)
{
return humanReadableByteCount(bytes, false);
}
void SetCurrDir()
{
if (!GetCurrentDir(currDir, sizeof(currDir)))
{
ECHO("Error setting current dir ");
Die();
}
//cCurrentPath[sizeof(cCurrentPath) - 1] = '\0';
strcat(currDir, "/");
}
void PrintCurrDir()
{
ECHO("The current working directory is " << currDir);
}
void RemoveSubstrs(string& src, string& toRemove)
{
int n = toRemove.length();
size_t i;
for( i = src.find(toRemove); i != string::npos; i = src.find(toRemove) )
src.erase(i, n);
}
void RemoveCurrDirFromName(string& src)
{
string cdir(currDir);
RemoveSubstrs(src, cdir);
}
// a simple utility function to give persistence appended
// names to functions/zones
void AddNoToNameEnd(string& name, IDNoType id)
{
name += ( "_" + to_string((long long)id) );
}
void RemoveNoFromNameEnd(string& name, IDNoType& id)
{
size_t found = name.find_last_of("_");
if( found != string::npos )
{
string nostr = name.substr(found+1);
// id = stoul( nostr , nullptr , 0);
id = strtoul( nostr.c_str() , NULL, 0);
name = name.substr(0,found);
D3ECHO(" name: " << name);
D3ECHO(" id: " << id );
}
}
void GetFileName(const string& str, string& file)
{
size_t found;
found=str.find_last_of("/\\");
file = str.substr(found+1);
}
void GetFolderName(const string& str, string& folder)
{
size_t found;
found=str.find_last_of("/\\");
folder = str.substr(0,found);
}