-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathASTInterpreter.cpp
232 lines (185 loc) · 6.35 KB
/
ASTInterpreter.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
//==--- tools/clang-check/ClangInterpreter.cpp - Clang Interpreter tool
//--------------===//
//===----------------------------------------------------------------------===//
// 可以参考 https://clang.llvm.org/docs/RAVFrontendAction.html 去理解这段代码
#include "clang/AST/ASTConsumer.h"
#include "clang/AST/EvaluatedExprVisitor.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendAction.h"
#include "clang/Tooling/Tooling.h"
using namespace clang;
#include "Environment.h"
class ReturnException : public std::exception {};
class InterpreterVisitor : public EvaluatedExprVisitor<InterpreterVisitor> {
public:
explicit InterpreterVisitor(const ASTContext &context, Environment *env)
: EvaluatedExprVisitor(context), mEnv(env) {}
virtual ~InterpreterVisitor() {}
virtual void VisitIntegerLiteral(IntegerLiteral *literal) {
mEnv->literal(literal);
}
virtual void VisitBinaryOperator(BinaryOperator *bop) {
VisitStmt(bop);
mEnv->binop(bop);
}
virtual void VisitUnaryOperator(UnaryOperator *uop) {
VisitStmt(uop);
mEnv->unaryop(uop);
}
virtual void VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *expr) {
// sizeof
mEnv->ueot(expr);
}
virtual void VisitDeclRefExpr(DeclRefExpr *expr) {
VisitStmt(expr);
mEnv->declref(expr);
}
virtual void VisitArraySubscriptExpr(ArraySubscriptExpr *arrayexpr) {
VisitStmt(arrayexpr);
mEnv->array(arrayexpr);
}
virtual void VisitParenExpr(ParenExpr *parenexpr) {
VisitStmt(parenexpr);
mEnv->paren(parenexpr);
}
virtual void VisitCastExpr(CastExpr *expr) {
VisitStmt(expr);
mEnv->cast(expr);
}
virtual void VisitCallExpr(CallExpr *call) {
VisitStmt(call); // 主要作用是计算函数参数
// 内建函数不需要进行后续的处理
if (mEnv->builtinfunc(call)) {
return;
}
// 创建新栈帧并进行参数绑定
mEnv->enterfunc(call);
// 遍历执行函数体
try {
VisitStmt(call->getDirectCallee()->getBody());
} catch (ReturnException e) {
}
// 弹出栈帧并进行返回值绑定
mEnv->exitfunc(call);
}
virtual void VisitReturnStmt(ReturnStmt *ret) {
// 计算返回值,但不在此处进行返回操作,因为有的函数可能不含有 ReturnStmt.
/// TODO: 考虑 main 函数返回的特殊情况:FunctionDecl isMain()
/// TODO: 考虑没有返回语句的情况
VisitStmt(ret);
// clang/AST/Stmt.h: class ReturnStmt
mEnv->retstmt(ret->getRetValue());
throw ReturnException();
}
virtual void VisitDeclStmt(DeclStmt *declstmt) {
VisitStmt(declstmt);
mEnv->decl(declstmt);
}
virtual void VisitIfStmt(IfStmt *ifstmt) {
// clang/AST/Stmt.h: class IfStmt
Expr *cond = ifstmt->getCond();
// 此处不能用
// VisitStmt(),因为它只会取出参数的所有子节点进行遍历而忽略当前节点本身。
// 比如对于一个 BinaryOperator,使用 VisitStmt() 会跳过
// VisitBinaryOperator() 的执行语句的 body 部分也可能是一个简单的
// BinaryOperator,所以也必须用 Visit()。
// 详见:clang/AST/EvaluatedExprVisitor.h: void VisitStmt(PTR(Stmt) S)
Visit(cond);
// 根据 cond 判断的结果只去 Visit 需要执行的子树
if (mEnv->getExprValue(cond)) {
Visit(ifstmt->getThen());
} else {
// 需要手动处理没有 Else 分支的情况
if (Stmt *elseStmt = ifstmt->getElse()) {
Visit(elseStmt);
}
}
}
virtual void VisitWhileStmt(WhileStmt *whilestmt) {
// clang/AST/Stmt.h: class WhileStmt
Expr *cond = whilestmt->getCond();
Stmt *body = whilestmt->getBody();
Visit(cond);
// 每次循环都要重新 evaluate 一下 condition 的值,以更新 StackFrame
// 中保存的结果
while (mEnv->getExprValue(cond)) {
Visit(body);
Visit(cond);
}
}
virtual void VisitForStmt(ForStmt *forstmt) {
// clang/AST/Stmt.h: class ForStmt
Stmt *init = forstmt->getInit();
Expr *cond = forstmt->getCond();
Expr *inc = forstmt->getInc();
Stmt *body = forstmt->getBody();
// init 和 cond 都可能为空,但不需要判断 body 是否为空,因为 body
// 为空时也是一个 NullStmt,可以被 Visit 。
if (init) {
Visit(init);
}
if (cond) {
Visit(cond);
}
// 每次循环都要重新 evaluate 一下 condition 的值,以更新 StackFrame
// 中保存的结果
// TODO: 如果 cond 为空,那么这个 while 循环的条件应该怎么写?
// while 循环体中的两个 if 判断能否优化?
while (mEnv->getExprValue(cond)) {
Visit(body);
if (inc) {
Visit(inc);
}
if (cond) {
Visit(cond);
}
}
}
private:
Environment *mEnv;
};
class InterpreterConsumer : public ASTConsumer {
public:
explicit InterpreterConsumer(const ASTContext &context)
: mEnv(), mVisitor(context, &mEnv) {}
virtual ~InterpreterConsumer() {}
virtual void HandleTranslationUnit(clang::ASTContext &Context) {
TranslationUnitDecl *decl = Context.getTranslationUnitDecl();
/// 遍历全局变量声明以计算出它们的值,这些值保存在临时的初始栈帧中
/// TODO: 跟 mEnv->init() 函数里的循环有些重复,可以考虑优化一下
for (TranslationUnitDecl::decl_iterator i = decl->decls_begin(),
e = decl->decls_end();
i != e; ++i) {
if (VarDecl *vdecl = dyn_cast<VarDecl>(*i)) {
if (vdecl->hasInit()) {
mVisitor.Visit(vdecl->getInit());
}
}
}
mEnv.init(decl);
FunctionDecl *entry = mEnv.getEntry();
try {
mVisitor.VisitStmt(entry->getBody());
} catch (ReturnException e) {
}
}
private:
Environment mEnv;
InterpreterVisitor mVisitor;
};
class InterpreterClassAction : public ASTFrontendAction {
public:
virtual std::unique_ptr<clang::ASTConsumer>
CreateASTConsumer(clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
return std::unique_ptr<clang::ASTConsumer>(
new InterpreterConsumer(Compiler.getASTContext()));
}
};
/// Usage: ./ast-interpreter "$(cat ../tests/test00.c)"
int main(int argc, char **argv) {
if (argc > 1) {
clang::tooling::runToolOnCode(
std::unique_ptr<clang::FrontendAction>(new InterpreterClassAction),
argv[1]);
}
}