-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.h
424 lines (339 loc) · 9.53 KB
/
helper.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
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
#include<bits/stdc++.h>
#include <cassert>
#include "tree.h"
#include "symbolTable.h"
#include "logging.h"
#ifndef HEADER_HELPER
#define HEADER_HELPER
#define DBG(x) ((void)0)
#ifndef DBG
#define DBG(x) x
#endif
#define _UN 0
#define _EQEQ 1
#define _GT 2
#define _GEQ 3
#define _LT 4
#define _LEQ 5
#define _NEQ 6
#define _PLUS 7
#define _MINUS 8
#define _STAR 9
#define _DIV 10
#define _MOD 11
#define _OR 12
#define _TWC 13
#define _AND 14
#define _NOT 15
#define _SIZEOF 16
#define _INT 201
#define _ID 202
#define _EXPR 203
#define BUF 1<<8
#define SHORTBUF 1<<4
using namespace std;
void constantPropogation(int lineNum, string var, int val)
{
logConstProp(lineNum, var, val);
}
void constantFolding(int op, treeNode* lhs, treeNode* lOp, treeNode* rOp)
{
switch(op)
{
case _LT:
lhs->val = lOp->val < rOp->val;
break;
case _GT:
lhs->val = lOp->val > rOp->val;
break;
case _LEQ:
lhs->val = lOp->val <= rOp->val;
break;
case _GEQ:
lhs->val = lOp->val >= rOp->val;
break;
case _OR:
lhs->val = lOp->val || rOp->val;
break;
case _SIZEOF:
//TODO
//lhs->val = lOp->val + rOp->val;
break;
case _EQEQ:
lhs->val = (lOp->val == rOp->val);
break;
case _NEQ:
lhs->val = (lOp->val != rOp->val);
break;
case _TWC:
lhs->val = 1*(lOp->val > rOp->val) + (-1)*(lOp->val < rOp->val);
break;
case _AND:
lhs->val = lOp->val && rOp->val;
break;
case _PLUS:
lhs->val = lOp->val + rOp->val;
break;
case _MINUS:
lhs->val = lOp->val - rOp->val;
break;
case _STAR:
lhs->val = lOp->val * rOp->val;
break;
case _DIV:
lhs->val = lOp->val / rOp->val;
break;
case _MOD:
lhs->val = lOp->val % rOp->val;
break;
}
char buf[BUF];
sprintf(buf, "$%d", lhs->val);
lhs->isLitOrStaticDefined = 1;
lhs->timesExprFolded = lOp->timesExprFolded + rOp->timesExprFolded + 1;
lhs->makeIns("movl", buf, "%eax");
DBG(printf(
"binary constant folding of %s(%d) and %s(%d) at line %d, with expr folded %d times\n",
(char*)&(lOp->nodeName)[0],
lOp->val,
(char*)&(rOp->nodeName)[0],
rOp->val,
lhs->lineNum,
lhs->timesExprFolded
)
);
logConstantFolding(lhs);
}
void constantFolding(int op, treeNode* lhs, treeNode* oprnd)
{
//TODO: log
switch(op)
{
case _NOT:
lhs->val = !(oprnd->val);
break;
case _MINUS:
lhs->val = -(oprnd->val);
break;
case _PLUS:
lhs->val = +(oprnd->val);
break;
}
char buf[BUF];
sprintf(buf, "$%d", lhs->val);
lhs->isLitOrStaticDefined = 1;
lhs->timesExprFolded = oprnd->timesExprFolded + 1;
lhs->makeIns("movl", buf, "%eax");
DBG(printf("unary constant folding of %s(%d) at line %d\n", (char*)&(oprnd->nodeName)[0], oprnd->val, lhs->lineNum ));
logConstantFolding(lhs);
}
void strengthReduction(treeNode* lhs, treeNode* lOp, treeNode* rOp)
{
if(lOp->isLitOrStaticDefined)
{
double exp = log2((double)lOp->val);
if(ceil(exp) == floor(exp))
{
logStrengthReduction(lhs->lineNum, exp);
char buf[BUF];
sprintf(buf, "$%d", (int)exp);
lhs->isLitOrStaticDefined = 0;
lhs->append(rOp);
lhs->makeIns("pushq", "%rax");
lhs->makeIns("movl", buf, "%ebx");
lhs->makeIns("shl", "%ebx", "%eax");
}
else
{
lhs->append(rOp);
lhs->makeIns("pushq", "%rax");
lhs->append(lOp);
lhs->makeIns("popq", "%rbx");
lhs->makeIns("imul", "%ebx", "%eax");
}
}
else if(rOp->isLitOrStaticDefined)
{
double exp = log2((double)rOp->val);
if(ceil(exp)== floor(exp))
{
logStrengthReduction(lhs->lineNum, exp);
char buf[BUF];
sprintf(buf, "$%d", (int)exp);
lhs->isLitOrStaticDefined = 0;
lhs->append(lOp);
lhs->makeIns("pushq", "%rax");
lhs->makeIns("movl", buf, "%ebx");
lhs->makeIns("shl", "%ebx", "%eax");
}
else
{
lhs->append(rOp);
lhs->makeIns("pushq", "%rax");
lhs->append(lOp);
lhs->makeIns("popq", "%rbx");
lhs->makeIns("imul", "%ebx", "%eax");
}
}
}
void purgeUnusedVars(SymbolTableClass& symbolTable)
{
//DBG(printf("inside unused func, symboltable size is %ld\n", (symbolTable.ST).size()));
//map<string, int> unusedVars;
for(int i=0; i<(symbolTable.ST).size(); i++)
{
//DBG(printf("symbol table has %d elements\n", symbolTable.ST[1].size()));
for(auto it = (symbolTable.ST[i]).begin(); it != (symbolTable.ST[i]).end(); ++it)
{
if((it->first)[0] != NULL)
{
//DBG(printf("checking unsed %s\n", (char*)&(it->first)[0]));
if((it->second).isDefined <= 0)
{
//TODO: log
//DBG(printf("logging unsed %s\n", (char*)&(it->first)[0]));
logUnusedVar(it->first, (it->second).order);
//symbolTable.ST[i].erase(it);
}
}
}
}
}
int bfs(SymbolTableClass& symbolTable, treeNode* root, treeNode* node)
{
//int terminalsMatched = 0;
if(root->children.size() != node->children.size())
{
DBG(printf("size of nodes uneual, returing\n"));
return -1;
}
for(int j =0; j < root->children.size(); j++)
{
treeNode* rootTerm = (root->children)[j];
treeNode* nodeTerm = (node->children)[j];
string IDENTIFIER = "IDENTIFIER";
string identifier = "identifier";
string INTEGER_NUMBER = "INTEGER_NUMBER";
string integerlit = "integerLit";
if( ( (rootTerm->children).size() == 0) && ( (nodeTerm->children).size() == 0) )
{
DBG(printf("terminal check started\n"));
if((rootTerm->nodeName == IDENTIFIER) && (nodeTerm->nodeName == IDENTIFIER))
{
if(rootTerm->lexValue == nodeTerm->lexValue)
{
DBG(printf("%d | matched terminal %s %s\n",
node->lineNum, (char*)&(rootTerm->lexValue)[0], (char*)&(nodeTerm->lexValue)[0] ));
}
else return -1;
}
else if( (rootTerm->nodeName == IDENTIFIER) && (nodeTerm->nodeName == INTEGER_NUMBER) )
{
DBG(printf("inside the unequal check\n"));
struct attr* rootSym = symbolTable.getSymbolAttr((root->children)[j]->lexValue);
if( (rootSym->isStaticallyDefined == 1) && (to_string(rootSym->staticValue) == nodeTerm->lexValue) )
{
DBG(printf("%d | matched terminal %d %s\n",
node->lineNum, (rootSym->staticValue), (char*)&(nodeTerm->lexValue)[0] ));
}
else return -1;
}
else if( (nodeTerm->nodeName == IDENTIFIER) && (rootTerm->nodeName == INTEGER_NUMBER) )
{
DBG(printf("inside the unequal check\n"));
struct attr* nodeSym = symbolTable.getSymbolAttr((node->children)[j]->lexValue);
if( (nodeSym->isStaticallyDefined == 1) && (to_string(nodeSym->staticValue) == rootTerm->lexValue) )
{
DBG(printf("%d | matched terminal %s %d\n",
node->lineNum, (char*)&(rootTerm->lexValue)[0], (nodeSym->staticValue) ));
}
else return -1;
}
else if(rootTerm->lexValue == nodeTerm->lexValue)
{
DBG(printf("%d | matched terminal %s %s\n",
node->lineNum, (char*)&(rootTerm->lexValue)[0], (char*)&(nodeTerm->lexValue)[0] ));
}
else return -1;
}
else if( ( (rootTerm->children).size() != 0) && ( (nodeTerm->children).size() != 0) )
{
DBG(printf("NON-terminal check started\n"));
if( rootTerm->nodeName == nodeTerm->nodeName )
{
DBG(printf("%d | matched NON-terminal %s %s\n", node->lineNum, (char*)&(rootTerm->nodeName)[0], (char*)&(nodeTerm->nodeName)[0] ));
}
else if( (rootTerm->nodeName == identifier && nodeTerm->nodeName == integerlit) ||
(rootTerm->nodeName == integerlit && nodeTerm->nodeName == identifier) )
{
DBG(printf("%d | continue chcking %s %s\n", node->lineNum, (char*)&(rootTerm->nodeName)[0], (char*)&(nodeTerm->nodeName)[0] ));
}
else
{
DBG(printf("%d | MISMATCH NON-terminal %s %s\n", node->lineNum, (char*)&(rootTerm->nodeName)[0], (char*)&(nodeTerm->nodeName)[0] ));
return -1;
}
}
else
{
DBG(printf("one node childeren size is zero, returning\n"));
return -1;
}
}
for(int j = 0; j < root->children.size(); j++)
{
if(bfs(symbolTable, (root->children)[j], (node->children)[j]) <=0)
{
return -1;
}
}
return 1;
}
treeNode* findSubTree(SymbolTableClass& symbolTable, vector<treeNode*> &treeNodeList, treeNode* node)
{
for(int i=0; i<treeNodeList.size(); i++)
{
if( (treeNodeList[i] != node) && (treeNodeList[i]->nodeName == node->nodeName))
{
treeNode* root = treeNodeList[i];
DBG(printf("%d | checking tree with line %d with root num in node list %d having nodename %s\n",
node->lineNum, root->lineNum, i, (char*)&(root->nodeName)[0] ));
if(bfs(symbolTable, root, node) > 0)
{
DBG(printf("%d | MATCHED tree with line %d with root num in node list %d having nodename %s\n",
node->lineNum, root->lineNum, i, (char*)&(root->nodeName)[0] ));
logCommonSubExprElimination(root->lineNum, node->lineNum);
return root;
}
}
}
return NULL;
}
int findSubTreeFromNode(SymbolTableClass& symbolTable, treeNode* root, treeNode* node)
{
DBG(printf("FINDING MAXIMAL EXPR TREE at line %d \n", root->lineNum));
if(bfs(symbolTable, root, node) > 0)
{
DBG(printf("MAXIMAL TREE FOUND\n"));
return 1;
}
if( (node->nodeName == "expr") && (node->children.size() == 1) && (node->children[0]->nodeName == "Pexpr") )
{
if(bfs(symbolTable, root, node->children[0])>0)
{
DBG(printf("MAXIMAL TREE FOUND\n"));
return 1;
}
}
for(int i=0; i < root->children.size(); i++)
{
if(findSubTreeFromNode(symbolTable, (root->children)[i], node)>0)
{
DBG(printf("MAXIMAL TREE FOUND\n"));
return 1;
}
}
DBG(printf("MAXIMAL TREE NOT FOUND\n"));
return -1;
}
#endif