-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathJson2Asg.cpp
856 lines (697 loc) · 17.8 KB
/
Json2Asg.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
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
#include "Json2Asg.hpp"
using namespace asg;
TranslationUnit*
Json2Asg::operator()(const llvm::json::Value& jval)
{
auto jobj = jval.getAsObject();
ASSERT(jobj);
ASSERT(jobj->getString("kind") == "TranslationUnitDecl");
auto inner = jobj->getArray("inner");
ASSERT(inner);
auto ret = make<TranslationUnit>();
for (auto& jval : *inner) {
auto jobj = jval.getAsObject();
ASSERT(jobj);
if (auto p = decl(*jobj))
ret->decls.push_back(p);
}
return ret;
}
namespace {
std::size_t
jobj_id(const llvm::json::Object& jobj)
{
auto id = jobj.getString("id");
ASSERT(id);
ASSERT(id->starts_with("0x"));
auto hexStr = id->substr(2).str();
return std::stoull(hexStr, nullptr, 16);
}
} // namespace
//==============================================================================
// 类型
//==============================================================================
const Type*
Json2Asg::getty(const llvm::json::Object& jobj)
{
auto a = jobj.getObject("type");
ASSERT(a);
auto b = a->getString("qualType");
ASSERT(b);
auto texpStr = b->str();
auto iter = mTyMap.find(texpStr);
if (iter != mTyMap.end())
return iter->second;
const Type* ty;
auto s = parse_type(texpStr.c_str(), ty);
ASSERT(s && *s == '\0');
mTyMap.emplace(texpStr, ty);
return ty;
}
//==============================================================================
// 表达式
//==============================================================================
Expr*
Json2Asg::expr(const llvm::json::Object& jobj)
{
auto kind = jobj.getString("kind");
ASSERT(kind);
Expr* ret;
if (kind == "IntegerLiteral")
ret = integer_literal(jobj);
else if (kind == "BinaryOperator")
ret = binary_expr(jobj);
else if (kind == "UnaryOperator")
ret = unary_expr(jobj);
else if (kind == "DeclRefExpr")
ret = decl_ref_expr(jobj);
else if (kind == "ImplicitCastExpr")
ret = implicit_cast_expr(jobj);
else if (kind == "ParenExpr")
ret = paren_expr(jobj);
else if (kind == "InitListExpr")
ret = init_list_expr(jobj);
else if (kind == "ImplicitValueInitExpr")
ret = implicit_init_expr(jobj);
else if (kind == "ArraySubscriptExpr")
ret = binary_expr(jobj);
else if (kind == "CallExpr")
ret = call_expr(jobj);
else
ABORT();
auto cateVal = jobj.get("valueCategory");
ASSERT(cateVal);
auto cate = cateVal->getAsString();
ASSERT(cate);
if (cate == "lvalue")
ret->cate = Expr::Cate::kLValue;
else if (cate == "prvalue")
ret->cate = Expr::Cate::kRValue;
else
ABORT();
return ret;
}
IntegerLiteral*
Json2Asg::integer_literal(const llvm::json::Object& jobj)
{
auto integerLiteral = make<IntegerLiteral>();
integerLiteral->type = getty(jobj);
auto value = jobj.getString("value");
ASSERT(value);
integerLiteral->val = std::stoull(value->str());
return integerLiteral;
}
DeclRefExpr*
Json2Asg::decl_ref_expr(const llvm::json::Object& jobj)
{
auto declRefExpr = make<DeclRefExpr>();
declRefExpr->type = getty(jobj);
auto ref = jobj.getObject("referencedDecl");
ASSERT(ref);
std::size_t id = jobj_id(*ref);
auto refObj = mIdMap[id]->dcst<Decl>();
ASSERT(refObj);
declRefExpr->decl = refObj;
return declRefExpr;
}
ParenExpr*
Json2Asg::paren_expr(const llvm::json::Object& jobj)
{
auto parenExpr = make<ParenExpr>();
parenExpr->type = getty(jobj);
auto inner = jobj.getArray("inner");
ASSERT(inner);
parenExpr->sub = expr(*inner->front().getAsObject());
return parenExpr;
}
UnaryExpr*
Json2Asg::unary_expr(const llvm::json::Object& jobj)
{
auto unaryExpr = make<UnaryExpr>();
unaryExpr->type = getty(jobj);
auto opCode = jobj.getString("opcode");
ASSERT(opCode);
if (opCode == "-") {
unaryExpr->op = UnaryExpr::Op::kNeg;
} else if (opCode == "!") {
unaryExpr->op = UnaryExpr::Op::kNot;
} else if (opCode == "+") {
unaryExpr->op = UnaryExpr::Op::kPos;
} else {
ABORT();
}
auto inner = jobj.getArray("inner");
ASSERT(inner);
unaryExpr->sub = expr(*(inner->front().getAsObject()));
return unaryExpr;
}
BinaryExpr*
Json2Asg::binary_expr(const llvm::json::Object& jobj)
{
auto kind = jobj.getString("kind");
ASSERT(kind);
auto binaryExpr = make<BinaryExpr>();
binaryExpr->type = getty(jobj);
if (kind == "ArraySubscriptExpr")
binaryExpr->op = BinaryExpr::Op::kIndex;
else {
auto opCode = jobj.getString("opcode");
ASSERT(opCode);
if (opCode == "*")
binaryExpr->op = BinaryExpr::Op::kMul;
else if (opCode == "/")
binaryExpr->op = BinaryExpr::Op::kDiv;
else if (opCode == "%")
binaryExpr->op = BinaryExpr::Op::kMod;
else if (opCode == "+")
binaryExpr->op = BinaryExpr::Op::kAdd;
else if (opCode == "-")
binaryExpr->op = BinaryExpr::Op::kSub;
else if (opCode == ">")
binaryExpr->op = BinaryExpr::Op::kGt;
else if (opCode == "<")
binaryExpr->op = BinaryExpr::Op::kLt;
else if (opCode == ">=")
binaryExpr->op = BinaryExpr::Op::kGe;
else if (opCode == "<=")
binaryExpr->op = BinaryExpr::Op::kLe;
else if (opCode == "==")
binaryExpr->op = BinaryExpr::Op::kEq;
else if (opCode == "!=")
binaryExpr->op = BinaryExpr::Op::kNe;
else if (opCode == "&&")
binaryExpr->op = BinaryExpr::Op::kAnd;
else if (opCode == "||")
binaryExpr->op = BinaryExpr::Op::kOr;
else if (opCode == "=")
binaryExpr->op = BinaryExpr::Op::kAssign;
else {
ABORT();
}
}
auto inner = jobj.getArray("inner");
ASSERT(inner);
binaryExpr->lft = expr(*inner->front().getAsObject());
binaryExpr->rht = expr(*(*inner)[1].getAsObject());
return binaryExpr;
}
CallExpr*
Json2Asg::call_expr(const llvm::json::Object& jobj)
{
auto callExpr = make<CallExpr>();
callExpr->type = getty(jobj);
auto inner = jobj.getArray("inner");
ASSERT(inner);
callExpr->head = expr(*inner->front().getAsObject());
for (std::uint32_t i = 1; i < inner->size(); ++i) {
callExpr->args.push_back(expr(*(*inner)[i].getAsObject()));
}
return callExpr;
}
InitListExpr*
Json2Asg::init_list_expr(const llvm::json::Object& jobj)
{
auto initListExpr = make<InitListExpr>();
initListExpr->type = getty(jobj);
auto initList = jobj.getArray("inner");
if (!initList) {
initList = jobj.getArray("array_filler");
}
ASSERT(initList);
for (auto& value : *initList) {
auto object = value.getAsObject();
ASSERT(object);
if (auto pExpr = expr(*object))
initListExpr->list.push_back(pExpr);
}
return initListExpr;
}
ImplicitInitExpr*
Json2Asg::implicit_init_expr(const llvm::json::Object& jobj)
{
auto implicitInitExpr = make<ImplicitInitExpr>();
implicitInitExpr->type = getty(jobj);
return implicitInitExpr;
}
ImplicitCastExpr*
Json2Asg::implicit_cast_expr(const llvm::json::Object& jobj)
{
auto implicitCastExpr = make<ImplicitCastExpr>();
implicitCastExpr->type = getty(jobj);
auto castKind = jobj.getString("castKind");
ASSERT(castKind);
if (castKind == "LValueToRValue")
implicitCastExpr->kind = ImplicitCastExpr::kLValueToRValue;
else if (castKind == "ArrayToPointerDecay")
implicitCastExpr->kind = ImplicitCastExpr::kArrayToPointerDecay;
else if (castKind == "FunctionToPointerDecay")
implicitCastExpr->kind = ImplicitCastExpr::kFunctionToPointerDecay;
else
ABORT();
auto inner = jobj.getArray("inner");
ASSERT(inner);
implicitCastExpr->sub = expr(*inner->front().getAsObject());
return implicitCastExpr;
}
//==============================================================================
// 声明
//==============================================================================
Decl*
Json2Asg::decl(const llvm::json::Object& jobj)
{
auto kind = jobj.getString("kind");
ASSERT(kind);
if (kind == "VarDecl")
return var_decl(jobj);
if (kind == "FunctionDecl")
return function_decl(jobj);
if (kind == "ParmVarDecl")
return var_decl(jobj);
if (kind == "TypedefDecl")
return nullptr;
ABORT();
}
VarDecl*
Json2Asg::var_decl(const llvm::json::Object& jobj)
{
auto varDecl = make<VarDecl>(jobj_id(jobj));
auto name = jobj.getString("name");
ASSERT(name);
varDecl->name = name->str();
varDecl->type = getty(jobj);
auto inner = jobj.getArray("inner");
if (inner)
varDecl->init = expr(*inner->front().getAsObject());
else
varDecl->init = nullptr;
return varDecl;
}
FunctionDecl*
Json2Asg::function_decl(const llvm::json::Object& jobj)
{
if (jobj.getBoolean("isImplicit") && jobj.getBoolean("isImplicit") == true)
return nullptr;
auto funcDecl = make<FunctionDecl>(jobj_id(jobj));
auto name = jobj.getString("name");
funcDecl->name = name->str();
funcDecl->type = getty(jobj);
auto inner = jobj.getArray("inner");
if (!inner) {
funcDecl->body = nullptr;
return funcDecl;
}
mCurFunc = funcDecl;
for (auto& value : *inner) {
auto object = value.getAsObject();
ASSERT(object);
auto kind = object->getString("kind");
ASSERT(kind);
if (kind == "ParmVarDecl") {
funcDecl->params.push_back(decl(*object));
continue;
}
if (kind == "CompoundStmt") {
ASSERT(funcDecl->body == nullptr);
funcDecl->body = compound_stmt(*object);
continue;
}
ABORT();
}
return funcDecl;
}
//==============================================================================
// 语句
//==============================================================================
Stmt*
Json2Asg::stmt(const llvm::json::Object& jobj)
{
auto kind = jobj.getString("kind");
ASSERT(kind);
if (kind == "DeclStmt")
return decl_stmt(jobj);
if (kind == "ReturnStmt")
return return_stmt(jobj);
if (kind == "BinaryOperator")
return expr_stmt(jobj);
if (kind == "UnaryOperator")
return expr_stmt(jobj);
if (kind == "CallExpr")
return expr_stmt(jobj);
if (kind == "IfStmt")
return if_stmt(jobj);
if (kind == "WhileStmt")
return while_stmt(jobj);
if (kind == "NullStmt")
return null_stmt(jobj);
if (kind == "CompoundStmt")
return compound_stmt(jobj);
if (kind == "ContinueStmt")
return continue_stmt(jobj);
if (kind == "BreakStmt")
return break_stmt(jobj);
ABORT();
}
CompoundStmt*
Json2Asg::compound_stmt(const llvm::json::Object& jobj)
{
auto compoundStmt = make<CompoundStmt>();
auto inner = jobj.getArray("inner");
if (!inner)
return compoundStmt;
for (auto& value : *inner) {
auto object = value.getAsObject();
ASSERT(object);
compoundStmt->subs.push_back(stmt(*object));
}
return compoundStmt;
}
DeclStmt*
Json2Asg::decl_stmt(const llvm::json::Object& jobj)
{
auto declStmt = make<DeclStmt>();
auto inner = jobj.getArray("inner");
ASSERT(inner);
for (auto& value : *inner) {
auto object = value.getAsObject();
ASSERT(object);
if (auto pDecl = decl(*object))
declStmt->decls.push_back(pDecl);
}
return declStmt;
}
ReturnStmt*
Json2Asg::return_stmt(const llvm::json::Object& jobj)
{
auto returnStmt = make<ReturnStmt>();
returnStmt->func = mCurFunc;
auto inner = jobj.getArray("inner");
if (inner)
returnStmt->expr = expr(*inner->front().getAsObject());
return returnStmt;
}
IfStmt*
Json2Asg::if_stmt(const llvm::json::Object& jobj)
{
auto ifStmt = make<IfStmt>();
auto inner = jobj.getArray("inner");
ASSERT(inner);
ifStmt->cond = expr(*(inner->front().getAsObject()));
ifStmt->then = stmt(*((*inner)[1].getAsObject()));
if (inner->size() == 3)
ifStmt->else_ = stmt(*((*inner)[2].getAsObject()));
return ifStmt;
}
WhileStmt*
Json2Asg::while_stmt(const llvm::json::Object& jobj)
{
auto whileStmt = make<WhileStmt>();
mCurLoop = whileStmt;
auto inner = jobj.getArray("inner");
ASSERT(inner);
whileStmt->cond = expr(*(inner->front().getAsObject()));
whileStmt->body = stmt(*((*inner)[1].getAsObject()));
return whileStmt;
}
NullStmt*
Json2Asg::null_stmt(const llvm::json::Object& jobj)
{
return make<NullStmt>();
}
BreakStmt*
Json2Asg::break_stmt(const llvm::json::Object& jobj)
{
auto ret = make<BreakStmt>();
ret->loop = mCurLoop;
return ret;
}
ContinueStmt*
Json2Asg::continue_stmt(const llvm::json::Object& jobj)
{
auto ret = make<ContinueStmt>();
ret->loop = mCurLoop;
return ret;
}
ExprStmt*
Json2Asg::expr_stmt(const llvm::json::Object& jobj)
{
auto exprStmt = make<ExprStmt>();
exprStmt->expr = expr(jobj);
return exprStmt;
}
// ========================================================================== //
// 类型字符串解析
// ========================================================================== //
/**
* 本实验中 `clang -cc1 -ast-dump=json` 输出的类型字符串语法:
*
* type
* : base+ texp '\0'
* ;
* base
* : 'void' | 'char' | 'int' | 'long' | 'const'
* ;
* texp
* : texp_2
* ;
* texp_0
* : %empty
* | '[' oct ']'
* | '(' args ')'
* | '(' texp ')'
* ;
* texp_1
* ; texp_0+
* ;
* texp_2
* : '*' texp_2
* | texp_1
* ;
* args
* : %empty
* | type (',' type)*
* ;
* oct
* : [0-9]+
* ;
*
* 以下是对应上述文法的手工实现的 LL(1) 递归下降解析器,在学完编译
* 原理课程后,所有同学都应当掌握手写 LL(1) 递归下降解析器的能力。
*
* 容易看出以下的函数在签名上都有相似的模式,例如:
* 1. 所有函数的第一个参数都是一个字符串指针,指向待解析的字符串开头;
* 2. 所有函数的返回值都是一个字符串指针,指向解析成功后的剩余字符串开头;
* 3. 如果解析失败,返回 nullptr;
* 4. 解析过程的语义值通过额外的引用参数传出。
* 这些都是实现 LL(1) 递归下降解析器的常规编码范式,遵循范式去实现代码
* 可以避免常见的误区,极大地提升编码质量。
*/
namespace {
const char*
match(const char* s, const char* p)
{
while (*p) {
if (*s != *p)
return nullptr;
++s, ++p;
}
return s;
}
const char*
skip_spaces(const char* s)
{
while (*s == ' ')
++s;
return s;
}
const char*
parse_base(const char* s, Type& v)
{
if (auto p = match(s, "void")) {
ASSERT(v.spec == Type::Spec::kINVALID);
v.spec = Type::Spec::kVoid;
return p;
}
if (auto p = match(s, "char")) {
ASSERT(v.spec == Type::Spec::kINVALID);
v.spec = Type::Spec::kChar;
return p;
}
if (auto p = match(s, "int")) {
ASSERT(v.spec == Type::Spec::kINVALID);
v.spec = Type::Spec::kInt;
return p;
}
if (auto p = match(s, "long")) {
if (v.spec == Type::Spec::kINVALID)
v.spec = Type::Spec::kLong;
else if (v.spec == Type::Spec::kLong)
v.spec = Type::Spec::kLongLong;
else
ABORT();
return p;
}
if (auto p = match(s, "const")) {
v.qual.const_ = true;
return p;
}
return nullptr;
}
const char*
parse_oct(const char* s, std::uint32_t& v)
{
if (*s < '0' || *s > '9')
return nullptr;
std::uint32_t num = 0;
while ('0' <= *s && *s <= '9') {
num = num * 10 + (*s - '0');
++s;
}
v = num;
return s;
}
/// 把 \p texp 的里面翻出来,因为 C 的类型表达式与表达式内外顺序是相反的。
TypeExpr*
turn_texp(TypeExpr* texp)
{
if (texp->sub == nullptr)
return texp;
auto innerMost = turn_texp(texp->sub);
innerMost->sub = texp;
texp->sub = nullptr;
return innerMost;
}
} // namespace
const char*
Json2Asg::parse_type(const char* s, const Type*& v)
{
auto ty = make<Type>();
s = parse_base(s, *ty);
if (!s)
return nullptr;
while (true) {
auto p = parse_base(skip_spaces(s), *ty);
if (!p)
break;
s = p;
}
s = parse_texp(skip_spaces(s), ty->texp);
if (ty->texp)
ty->texp = turn_texp(ty->texp); // 将类型表达式内外翻转
v = ty;
return s;
}
const char*
Json2Asg::parse_texp(const char* s, TypeExpr*& v)
{
return parse_texp_2(s, v);
}
const char*
Json2Asg::parse_texp_0(const char* s, TypeExpr*& v)
{
RULE_1:
if (auto p = match(s, "[")) {
std::uint32_t len;
p = parse_oct(skip_spaces(p), len);
if (!p)
goto RULE_2;
p = match(skip_spaces(p), "]");
if (!p)
goto RULE_2;
auto arrTy = make<ArrayType>();
arrTy->len = len;
v = arrTy;
return p;
}
RULE_2:
if (auto p = match(s, "(")) {
std::vector<const Type*> params;
p = parse_args(skip_spaces(p), params);
if (!p)
goto RULE_3;
p = match(skip_spaces(p), ")");
if (!p)
goto RULE_3;
auto funTy = make<FunctionType>();
funTy->params = std::move(params);
v = funTy;
return p;
}
RULE_3:
if (auto p = match(s, "(")) {
p = parse_texp(skip_spaces(p), v);
if (!p)
goto EMPTY;
p = match(skip_spaces(p), ")");
if (!p)
goto EMPTY;
return p;
}
EMPTY:
v = nullptr;
return s;
}
const char*
Json2Asg::parse_texp_1(const char* s, TypeExpr*& v)
{
TypeExpr* texp;
auto p = parse_texp_0(s, texp);
if (!p)
return nullptr;
if (s != p) {
while (true) {
s = p;
TypeExpr* sup;
p = parse_texp_0(skip_spaces(p), sup);
if (!p)
return nullptr;
if (s == p)
break;
sup->sub = texp;
texp = sup;
}
}
v = texp;
return s;
}
const char*
Json2Asg::parse_texp_2(const char* s, TypeExpr*& v)
{
RULE_1:
if (auto p = match(s, "*")) {
TypeExpr* texp;
p = parse_texp_2(skip_spaces(p), texp);
if (!p)
goto EMPTY;
v = make<PointerType>();
v->sub = texp;
return p;
}
RULE_2:
if (auto p = parse_texp_1(s, v))
return p;
EMPTY:
return nullptr;
}
const char*
Json2Asg::parse_args(const char* s, std::vector<const Type*>& v)
{
const Type* ty;
auto p = parse_type(s, ty);
if (!p)
return s; // 没有参数的情况也是合法的
s = p;
std::vector<const Type*> params;
params.push_back(ty);
while (true) {
p = match(skip_spaces(s), ",");
if (!p)
break;
p = parse_type(skip_spaces(p), ty);
if (!p)
return nullptr;
params.push_back(ty);
s = p;
}
v = std::move(params);
return s;
}