-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathUtils.cpp
323 lines (293 loc) · 8.95 KB
/
Utils.cpp
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#include <clang/Basic/FileManager.h>
#include <clang/Basic/SourceManager.h>
#include <llvm/Support/raw_ostream.h>
#include "Utils.h"
#include "Defines.h"
#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
#include <iterator>
using namespace std;
namespace differential {
/**
* extract all function declarations from the translation units and populate them into a 'function_name' -> 'function_decl_ptr' map given as argument
*/
void Utils::CreateFunctionsMap(TranslationUnitDecl * tran_unit_ptr,map<string,const FunctionDecl *> &functions) {
for (DeclContext::decl_iterator iter = tran_unit_ptr->decls_begin(), end = tran_unit_ptr->decls_end(); iter != end; ++iter) {
// Only handle declarations with bodies
if (const FunctionDecl *fd = dyn_cast<FunctionDecl>(*iter)) {
if (!fd->isThisDeclarationADefinition())
continue;
functions[fd->getNameAsString()] = fd;
}
}
}
size_t Utils::GetStmtLength(Stmt * node) {
return node->getSourceRange().getEnd().getRawEncoding() - node->getSourceRange().getBegin().getRawEncoding() + 2; // +2 correcting for clang
}
size_t Utils::GetDeclLength(Decl * node) {
return node->getSourceRange().getEnd().getRawEncoding() - node->getSourceRange().getBegin().getRawEncoding() + 2; // +2 correcting for clang
}
/**
* @author nimrod (3/4/2012)
*
* @param name - (input) variable name, (output) untagged name
* @param tagged_name - (output) tagged name
*/
void Utils::Names(string &name, string &tagged_name){
tagged_name = name;
if (name.find(Defines::kTagPrefix) == 0) {
name = name.substr(Defines::kTagPrefix.size());
} else {
tagged_name = Defines::kTagPrefix + name;
}
}
string Utils::PrintStmt(Stmt * node, ASTContext &contex) {
string str;
raw_string_ostream os(str);
if (node) {
node->printPretty(os, contex, 0, PrintingPolicy(contex.getLangOptions()));
}
return os.str();
}
string Utils::PrintDecl(Decl * node, ASTContext &contex) {
string str;
raw_string_ostream os(str);
if (node) {
node->print(os, PrintingPolicy(contex.getLangOptions()));
}
return os.str();
}
string Utils::ReplaceAll(const StringRef& source, const StringRef& token, const StringRef& replacement) {
stringstream ss;
size_t start = 0, end;
while ((end = source.find(token,start)) != source.npos) {
ss << source.slice(start,end).str() << replacement.str();
start = end + token.size();
}
// Append the remainder
ss << source.slice(start,source.size()).str();
return ss.str();
}
vector<string> Utils::Split(const string& source, char delimiter){
stringstream ss(source);
string token;
vector<string> result;
while(std::getline(ss, token, delimiter))
result.push_back(token);
return result;
}
vector<string> Utils::Split(string source, const string& delimiter){
size_t pos = 0;
string token;
vector<string> result;
while ((pos = source.find(delimiter)) != std::string::npos) {
string token = source.substr(0, pos);
result.push_back(token);
source.erase(0, pos + delimiter.length());
}
return result;
}
string Utils::RemoveGuards(string source) {
stringstream ss;
size_t start = 0, end;
while (true) {
start = source.find(Defines::kGuardPrefix,start);
ss << source.substr(0,start);
if (start == source.npos)
break;
end = min(source.find(")",start),source.find(" ",start));
source = source.substr(end);
}
return ss.str();
}
string Utils::ConditionToGuard(const string condition){
unsigned char result[16];
stringstream ss;
/*
MD5((const unsigned char *)(condition.c_str()), condition.size(), result);
for (int i = 0 ; i < 16 ; i++)
ss << '_' << (int)result[i];
return ss.str();
*/
unsigned long long hash = 0;
for (size_t i = 0 ; i < condition.size() ; i++) {
hash += i * condition[i];
/*
if (isalnum(condition[i])) {
ss << condition[i];
continue;
}
switch (condition[i]) {
case '<': ss << "Lower"; break;
case '>': ss << "Greater"; break;
case '=': ss << "Eq"; break;
case '&': ss << "And"; break;
case '|': ss << "Or"; break;
case '*': ss << "Star"; break;
case '%': ss << "Mpd"; break;
case '+': ss << "Plus"; break;
case '-': ss << "Min"; break;
case '/': ss << "Div"; break;
case '(': ss << "RParen"; break;
case ')': ss << "LParen"; break;
case '!': ss << "Not"; break;
case '\'': ss << "Tag"; break;
case '[': ss << "LSqBracket"; break;
case ']': ss << "RSqBracket"; break;
case '"': ss << "Quote"; break;
case '{': ss << "LCurBracket"; break;
case '}': ss << "RCurBracket"; break;
case '\\': ss << "BSlash"; break;
default: ss << "_"; break;
}
*/
}
ss << hash;
return ss.str();
}
void Utils::WriteFiles(Rewriter& rw, string filename)
{
for (Rewriter::buffer_iterator I = rw.buffer_begin(), E = rw.buffer_end();I != E;++I) {
if (I->first.isInvalid()) continue;
const FileEntry *Entry = rw.getSourceMgr().getFileEntryForID(I->first);
if (filename == "")
filename = Entry->getName();
string error;
raw_fd_ostream OS(filename.c_str(), error, raw_fd_ostream::F_Binary);
if (!error.empty()) {
cerr << "Unable to open " << filename << error;
continue;
}
RewriteBuffer & RewriteBuf = I->second;
RewriteBuf.write(OS);
OS.close();
}
}
void Utils::Init(ConfigFile& CF)
{
int seed;
CF.readInto( seed, "seed" );
srand(seed);
}
unsigned int Utils::Rand()
{
return rand();
}
bool Utils::isWhitespace(char Candidate)
{
return(Candidate == ' ' || Candidate == '\t' || Candidate == '\n' || Candidate == '\r');
}
/**
* Get the true start location of a identifier, including
* Storage Class, Qualifiers, etc.
*/
SourceLocation Utils::getIdentifierStartLoc(VarDecl *node, Rewriter& rw)
{
SourceLocation loc = node->getTypeSpecStartLoc();
if (loc.getRawEncoding() < 3) { // We are at the start of the file
return loc;
}
loc = loc.getLocWithOffset(-1);
bool invalid;
StringRef code = FullSourceLoc(loc, rw.getSourceMgr()).getBufferData(&invalid);
unsigned raw_loc = loc.getRawEncoding() - 1, raw_end;
if (raw_loc > code.size())
return loc.getLocWithOffset(1);
bool end;
do {
end = true;
raw_end = raw_loc--;
// ignore white-spaces
while (Utils::isWhitespace(code[raw_loc]))
raw_loc--;
// Now go back a sufficient amount of lines and check for qualifiers
{
// enum
raw_loc -= 3;
StringRef s(code.data() + raw_loc);
if (s.startswith("enum")) {
end = false;
continue;
}
}
{
// const
raw_loc -= 1;
StringRef s(code.data() + raw_loc);
if (s.startswith("const")) {
end = false;
continue;
}
}
{
// static or struct or extern
raw_loc -= 1;
StringRef s(code.data() + raw_loc);
if (s.startswith("static") || s.startswith("struct") || s.startswith("extern")) {
end = false;
continue;
}
}
{
// volatile
raw_loc -= 2;
StringRef s(code.data() + raw_loc);
if (s.startswith("volatile")) {
end = false;
continue;
}
}
} while (!end);
raw_end++;
return SourceLocation::getFromRawEncoding(raw_end);
}
/**
* Get the true end location of an identifier, including array brackets.
*/
SourceLocation Utils::getIdentifierEndLoc(VarDecl * node, Rewriter &rewriter)
{
SourceLocation loc = node->getLocEnd();
bool invalid;
StringRef code = FullSourceLoc(loc, rewriter.getSourceMgr()).getBufferData(&invalid);
if (invalid)
return loc;
unsigned raw_loc = loc.getRawEncoding();
if (raw_loc > code.size())
return loc;
while (code[raw_loc - 2] != ';' && code[raw_loc - 2] != ',') // correcting +2 for clang
raw_loc++;
return SourceLocation::getFromRawEncoding(raw_loc);
}
/**
* Get the start location of an identifier's name.
*/
SourceLocation Utils::getIdentifierNameLoc(VarDecl * node, Rewriter& rw)
{
SourceLocation loc = node->getLocStart();
string name = node->getNameAsString(), type = node->getType().getAsString();
FullSourceLoc fl(loc, rw.getSourceMgr());
bool invalid;
string code = fl.getBufferData(&invalid).str();
code = code.substr(loc.getRawEncoding());
size_t offset = code.rfind(name,min(code.find(";"),code.find("="))); // look for the name backwards from ; or =
return loc.getLocWithOffset(offset + 2); // +2 correcting for clang
}
/**
* Get the first semicolon preceeding the given statement. This
* is the first locaion where you can add new code.
*/
SourceLocation Utils::getNextEligibleCodeLoc(Stmt *node, Rewriter &rw)
{
SourceLocation loc = node->getLocStart();
bool invalid;
StringRef code = FullSourceLoc(loc, rw.getSourceMgr()).getBufferData(&invalid);
if (invalid)
return loc;
unsigned raw_loc = loc.getRawEncoding() - 2;
while (raw_loc < code.size() && code[raw_loc] != ';' && code[raw_loc] != '}' && code[raw_loc] != '{')
raw_loc++;
return SourceLocation::getFromRawEncoding(raw_loc + 1 + 2); // +1 get place right after, +2 correcting for clang
}
} // end namespace differential