-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptimizer.cpp
99 lines (82 loc) · 2.63 KB
/
optimizer.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
#include "AST.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/InitLLVM.h"
#include "llvm/Support/raw_ostream.h"
class OptVisitor : public ASTVisitor {
std::vector<llvm::StringRef> alive;
std::vector<llvm::StringRef> aliveDec;
bool b;
public:
OptVisitor(){
alive.push_back(llvm::StringRef("result"));
aliveDec.push_back(llvm::StringRef("result"));
}
virtual void visit(Statement &Node) {}
virtual void visit(IfStatement &Node) {}
virtual void visit(ElifStatement &Node) {}
virtual void visit(ElseStatement &Node) {}
virtual void visit(Condition &Node) {}
virtual void visit(LoopStatement &Node) {}
virtual void visit(Conditions &Node) {}
virtual void visit(MSM &msm){
auto v = msm.getStatements();
auto end = v.end();
auto begin = v.begin();
do {
end--;
(*end)->accept(*this);
if(b){
v.erase(end);
}
} while(end != begin);
msm.setStatements(v);
}
virtual void visit(AssignStatement &statement){
Final* lValue = statement.getLValue();
auto findItr = find(alive.begin(), alive.end(), lValue->getVal());
if(findItr != alive.end()){
if(statement.getAssignmentOP() == AssignStatement::AssOp::Assign){
alive.erase(findItr);
}
statement.getRValue()->accept(*this);
b = false;
return;
}
b = true;
}
virtual void visit(DecStatement &statement){
llvm::StringRef lValue = *(statement.getVars().begin());
auto findItr = find(alive.begin(), alive.end(), lValue);
if(findItr != alive.end()){
llvm::errs() << lValue;
alive.erase(findItr);
auto rightV = *(statement.getExprs().begin());
rightV->accept(*this);
b = false;
return;
}
if(find(aliveDec.begin(), aliveDec.end(), lValue) == aliveDec.end())
b = true;
else
b = false;
}
virtual void visit(Expression &statement){
auto LValue = statement.getLeft();
auto RValue = statement.getRight();
LValue->accept(*this);
RValue->accept(*this);
}
virtual void visit(Final &statement){
if(statement.getKind() == Final::ValueKind::Ident){
alive.push_back(statement.getVal());
aliveDec.push_back(statement.getVal());
}
}
};
class Optimization{
public:
void Optimize(AST *Tree) {
OptVisitor Op;
Tree->accept(Op);
}
};