-
Notifications
You must be signed in to change notification settings - Fork 0
/
Parser.cpp
1246 lines (993 loc) · 37 KB
/
Parser.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
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "Parser.h"
#include "Token.h"
#include "Scanner.h"
#include "Admin.h"
#include "ASTLoopNode.h"
#include "ASTFunctionCallNode.h"
#include "ASTAssignmentNode.h"
#include "ASTFunctionNode.h"
#include "ASTIfNode.h"
#include "ASTUnaryNode.h"
#include "ASTBinaryNode.h"
#include "ASTLiteralNode.h"
#include "ASTVariableNode.h"
#include "ASTMarkerNode.h"
#include "ASTBranchNode.h"
#include "ASTCaseNode.h"
#include "ASTReturnNode.h"
#include "SyncSetBuilder.h"
#include <iostream>
#include <algorithm>
Parser::Parser(void) : errorCount(0), loopNesting(0), compoundCount(0),
admin(NULL), sc(NULL), lookahead(Token()), astTop(NULL),
curFunc(NULL)
{
}
Parser::Parser(Admin& adminMod, Scanner& scanner) : errorCount(0),
loopNesting(0), compoundCount(0),
admin(&adminMod), sc(&scanner),lookahead(Token()),
astTop(NULL), curFunc(NULL)
{
}
/* We do not create new instances of Admin or Scanner in either of the copy constructor/assignment operators
* because there should only be one instance available (these functions should rarely be used)
*/
Parser::Parser(const Parser &other) : errorCount(other.errorCount),
loopNesting(other.loopNesting), compoundCount(other.compoundCount),
admin(other.admin), sc(other.sc),lookahead(other.lookahead),
astTop(other.astTop), curFunc(other.curFunc)
{
}
Parser& Parser::operator= (const Parser &rhs)
{
// do the copy
errorCount = rhs.errorCount;
loopNesting = rhs.loopNesting;
compoundCount = rhs.compoundCount;
admin = rhs.admin;
sc = rhs.sc;
lookahead = rhs.lookahead;
astTop = rhs.astTop;
curFunc = rhs.curFunc;
// return the existing object
return *this;
}
Parser::~Parser(void)
{
// The Parser does not delete the Scanner or Admin instances, because it does not have ownership.
delete astTop;
loopChain.clear();
}
/*Transition function is used to avoid trace messages within the code
* it Calls the function in the parameters, as well as passes information
* to the admin and calls the log function of admin.
*/
ASTNode * Parser::transition(string functionName, functionPtr ptr, vector<int> syncSet) {
vector<int> supplementary = SyncSetBuilder::getSyncSet(functionName);
admin->parserLog(functionName, PARSER_ENTER);
syncSet.insert(syncSet.end(), supplementary.begin(), supplementary.end());
ASTNode * node = (this->*ptr)(syncSet);
admin->parserLog(functionName, PARSER_EXIT);
return node;
}
/* Repeatedly request tokens from the scanner until ENDFILE is detected.
* Does not display commented-out lexemes.
* Tokens are stored in "vec" for logging purposes.
*/
void Parser::loopScanner() {
Token tok;
do {
tok = sc->getToken();
if(sc->namesRev[tok.getTokenType()] == "IGNORED") { continue; }
admin->vec.push_back(tok);
} while(tok.getTokenType() != sc->ENDFILE);
admin->scannerLogEnd();
}
/*Starts the parsing of the code, initates the lookahead to the first token
* from the scanner, sets the astTop to the top node of the program through
* the mutually recursive calls started from the program() call (done through
* transition method).
*
* Calls to the admin are made to do logging
*/
ASTNode* Parser::startParsing(){
vector<int> emptySyncSet;
SyncSetBuilder::buildSyncSetMap();
lookahead = sc->getToken();
admin->vec.push_back(lookahead);
admin->scannerLogEnd();
astTop = transition("program", &Parser::program, emptySyncSet);
if(errorCount == 0) {
admin->parserLog(astTop);
return astTop;
}
else if(admin->getOutputAST()) {
admin->cancelAST();
return NULL;
}
}
int Parser::getErrorCount() { return errorCount; }
/*The following methods are based on the parsing grammar given by Jernej Polajnar
* and are a set of mutually recursive methods.
* Each production is represented a method which matches terminal symbols and
* calls the methods of the non-terminal symbols. There a few exceptions where
* production have been combined into one method in order to create ASTNodes
* with the required information. ASTNodes are created and chained according to
* the construct being built.These are documented below and within the
* Parser Basic document.
*/
//program -> {|declaration|}+
ASTNode * Parser::program(vector<int> syncSet){
ASTDeclarationNode * parent;
ASTDeclarationNode * current;
parent = ((ASTDeclarationNode *)transition("declaration", &Parser::declaration, syncSet));
current = parent;
current->isGlobalDec = true;
while(current->next != NULL) {
current = ((ASTDeclarationNode *)current->next);
current->isGlobalDec = true;
}
//while(lookahead.getTokenType() == sc->INT || lookahead.getTokenType() == sc->BOOL || lookahead.getTokenType() == sc->VOID) {
while(lookahead.getTokenType() != sc->ENDFILE) {
current->next = ((ASTDeclarationNode *)transition("declaration", &Parser::declaration, syncSet));
current->isGlobalDec = true;
while(current->next != NULL) {
current = ((ASTDeclarationNode *)current->next);
current->isGlobalDec = true;
}
}
return parent;
}
//method for declaration production rule (including dec-tail production rule)
/*includes the declaration production rule as well as the
* dec-tail production rule.This is so we can properly cast the declaration as
* either a functionNode or a variableDeclarationNode, and still get all relevant
* information
*/
ASTNode * Parser::declaration(vector<int> syncSet){
int id = 0;
ASTNode * dNode = new ASTFunctionNode;
if(lookahead.getTokenType() == sc->VOID) {
if(match(sc->VOID, syncSet)) {
id = lookahead.getAttributeValue();
if(match(sc->ID, syncSet)) {
dNode = transition("funDecTail", &Parser::funDecTail, syncSet);
((ASTFunctionNode *)dNode)->declarationType = sc->VOID;
((ASTFunctionNode *)dNode)->id = id;
}
}
}
else if(lookahead.getTokenType() == sc->INT || lookahead.getTokenType() == sc->BOOL) {
int decType = 0;
dNode = transition("nonVoidSpecifier", &Parser::nonVoidSpecifier, syncSet);
decType = ((ASTDeclarationNode *)dNode)->declarationType;
id = lookahead.getAttributeValue();
if(match(sc->ID, syncSet)) {
// Start dec-tail production rule
if(lookahead.getTokenType() == sc->LPAREN) {
dNode = transition("funDecTail", &Parser::funDecTail, syncSet);
((ASTFunctionNode *)dNode)->declarationType = decType;
((ASTFunctionNode *)dNode)->id = id;
}
else if(lookahead.getTokenType() == sc->LSQR ||
lookahead.getTokenType() == sc->SEMI ||
lookahead.getTokenType() == sc->COMMA) {
dNode = transition("varDecTail", &Parser::varDecTail, syncSet);
((ASTVariableDeclarationNode *)dNode)->declarationType = decType;
((ASTVariableDeclarationNode *)dNode)->id = id;
}
else {
syntaxError("dec-tail", syncSet);
}
// End dec-tail production rule
}
}
else {
syntaxError("declaration", syncSet);
}
return dNode;
}
//method for nonvoid-specifier production rule
ASTNode * Parser::nonVoidSpecifier(vector<int> syncSet){
ASTDeclarationNode * dNode = new ASTDeclarationNode;
dNode->lineNumber = admin->getLineNumber();
if(lookahead.getTokenType() == sc->INT) {
if(match(sc->INT, syncSet)) {
dNode->declarationType = sc->INT;
}
}
else if(lookahead.getTokenType() == sc->BOOL) {
if(match(sc->BOOL, syncSet)) {
dNode->declarationType = sc->BOOL;
}
}
else {
syntaxError("non-void-specifier", syncSet);
}
return dNode;
}
//method for var-dec-tail production rule
ASTNode * Parser::varDecTail(vector<int> syncSet){
ASTVariableDeclarationNode * parent = new ASTVariableDeclarationNode, *vNode = parent;
parent->lineNumber = admin->getLineNumber();
/*vector<int> firstSet;
firstSet.push_back(sc->LSQR); firstSet.push_back(sc->SEMI); firstSet.push_back(sc->COMMA);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
if(lookahead.getTokenType() == sc->LSQR) {
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[add-exp]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->LSQR, syncSet2)) {
parent->arrayExp = dynamic_cast<ASTExpressionNode *>(transition("addExp", &Parser::addExp, syncSet2));
if(match(sc->RSQR, syncSet2)) {
parent->isArray = true;
}
}
}
/*firstSet.clear();
firstSet.push_back(sc->SEMI); firstSet.push_back(sc->COMMA);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
while(lookahead.getTokenType() == sc->COMMA){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("{, var-name}");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->COMMA, syncSet2)) {
// The line below uses the first set because it is a repeating section
vNode->next = transition("varName", &Parser::varName, syncSet2);
vNode = ((ASTVariableDeclarationNode *)vNode->next);
}
}
match(sc->SEMI, syncSet);
return parent;
}
//method for var-name production rule
ASTNode * Parser::varName(vector<int> syncSet){
int id = 0;
ASTVariableDeclarationNode * vNode = new ASTVariableDeclarationNode;
vNode->lineNumber = admin->getLineNumber();
//vector<int> firstSet;
id = lookahead.getAttributeValue();
if(match(sc->ID, syncSet)) {
/*firstSet.push_back(sc->LSQR);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
if(lookahead.getTokenType() == sc->LSQR){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[add-exp]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->LSQR, syncSet2)) {
vNode->arrayExp = dynamic_cast<ASTExpressionNode *>(transition("addExp", &Parser::addExp, syncSet2));
if(match(sc->RSQR, syncSet2)) {
vNode->isArray = true;
}
}
}
vNode->id = id;
}
return vNode;
}
//method for fun-dec-tail production rule
ASTNode * Parser::funDecTail(vector<int> syncSet){
ASTFunctionNode * fNode = new ASTFunctionNode;
fNode->lineNumber = admin->getLineNumber();
ASTParamNode * pNode = new ASTParamNode;
ASTCompoundNode * cNode = new ASTCompoundNode;
// For semantic purpose of "return", set the current function
curFunc = fNode;
if(match(sc->LPAREN, syncSet)) {
pNode = ((ASTParamNode *)transition("params", &Parser::params, syncSet));
if(match(sc->RPAREN, syncSet)) {
cNode = dynamic_cast<ASTCompoundNode *>(transition("compoundStmt", &Parser::compoundStmt, syncSet));
fNode->param = pNode;
fNode->compound = cNode;
}
}
curFunc = NULL;
return fNode;
}
//method for params production rule
ASTNode * Parser::params(vector<int> syncSet){
ASTParamNode * parent = new ASTParamNode, *pNode = parent;
//vector<int> firstSet;
if(lookahead.getTokenType() == sc->REF ||
lookahead.getTokenType() == sc->INT ||
lookahead.getTokenType() == sc->BOOL) {
parent = ((ASTParamNode *)transition("param", &Parser::param, syncSet));
pNode = parent;
/*firstSet.push_back(sc->COMMA);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
while(lookahead.getTokenType() == sc->COMMA){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("{, param}");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->COMMA, syncSet2)) {
pNode->next = transition("param", &Parser::param, syncSet2);
pNode = ((ASTParamNode *)pNode->next);
}
}
}
else if(lookahead.getTokenType() == sc->VOID) {
match(sc->VOID, syncSet);
}
else {
syntaxError("params", syncSet);
}
return parent;
}
//method for param procution rule
ASTNode * Parser::param(vector<int> syncSet){
ASTParamNode * pNode = new ASTParamNode;
pNode -> lineNumber = admin->getLineNumber();
ASTDeclarationNode * dNode = new ASTDeclarationNode;
int id =0;
//vector<int> firstSet;
if(lookahead.getTokenType() == sc->REF){
if(match(sc->REF, syncSet)) {
dNode = ((ASTDeclarationNode *)transition("nonVoidSpecifier", &Parser::nonVoidSpecifier, syncSet));
id = lookahead.getAttributeValue();
if(match(sc->ID, syncSet)) {
pNode->isRef = true;
pNode->declarationType = dNode->declarationType;
pNode->id = id;
}
}
}
else if(lookahead.getTokenType() == sc->INT ||
lookahead.getTokenType() == sc->BOOL) {
dNode = ((ASTDeclarationNode *)transition("nonVoidSpecifier", &Parser::nonVoidSpecifier, syncSet));
id = lookahead.getAttributeValue();
if(match(sc->ID, syncSet)) {
/*firstSet.push_back(sc->LSQR);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
if(lookahead.getTokenType() == sc->LSQR){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->LSQR, syncSet2)) {
if(match(sc->RSQR, syncSet2)) {
pNode->isArray = true;
}
}
}
pNode->declarationType = dNode->declarationType;
pNode->id = id;
}
}
else {
syntaxError("param", syncSet);
}
return pNode;
}
//method for statement production rule
ASTNode * Parser::statement(vector<int> syncSet){
/* These substatements (exception: compoundStmt) do not need to have their sync
* sets assigned in their functions because they are only ever passed down
* by this statement function
*/
switch(lookahead.getTokenType()){
case Scanner::ID:
return transition("idStmt", &Parser::idStmt, syncSet);
break;
case Scanner::LCRLY:
return transition("compoundStmt", &Parser::compoundStmt, syncSet);
break;
case Scanner::IF:
return transition("ifStmt", &Parser::ifStmt, syncSet);
break;
case Scanner::LOOP:
return transition("loopStmt", &Parser::loopStmt, syncSet);
break;
case Scanner::EXIT:
return transition("exitStmt", &Parser::exitStmt, syncSet);
break;
case Scanner::CONTINUE:
return transition("continueStmt", &Parser::continueStmt, syncSet);
break;
case Scanner::RETURN:
return transition("returnStmt", &Parser::returnStmt, syncSet);
break;
case Scanner::BRANCH:
return transition("branchStmt", &Parser::branchStmt, syncSet);
break;
case Scanner::SEMI:
return transition("nullStmt", &Parser::nullStmt, syncSet);
break;
default:
syntaxError("statement", syncSet);
return new ASTStatementNode;
}
}
//method for id-stmt production rule (including call-tail production rule)
/*idSmt contains the id-stmt produciton rule as well as call-tail production rule.
* This is so we could properly cast the Astnode to either ASTAssignmentnode or
* ASTFunctionCall node, while providing the relevant information for the node
*/
ASTNode * Parser::idStmt(vector<int> syncSet){
int id = lookahead.getAttributeValue();
ASTStatementNode * sNode = new ASTStatementNode;
if(match(sc->ID, syncSet)) {
if(lookahead.getTokenType() == sc->LSQR || lookahead.getTokenType() == sc->ASSIGN){
sNode = dynamic_cast<ASTStatementNode *>(transition("assignStmtTail", &Parser::assignStmtTail, syncSet));
((ASTAssignmentNode *)sNode)->id = id;
}
else if(lookahead.getTokenType() == sc->LPAREN) {
// Start call-tail production rule
sNode = dynamic_cast<ASTStatementNode *>(transition("callTail", &Parser::callTail, syncSet));
((ASTFunctionCallNode *)sNode)->id = id;
((ASTFunctionCallNode *) sNode) ->isStatement = true;
match(sc->SEMI, syncSet);
// End call-tail production rule
}
else {
syntaxError("id-stmt-tail", syncSet);
}
}
return sNode;
}
//method for assign-stmt-tail production rule
ASTNode * Parser::assignStmtTail(vector<int> syncSet){
ASTAssignmentNode * aNode = new ASTAssignmentNode;
aNode->lineNumber=admin->getLineNumber();
ASTExpressionNode * eNode = new ASTBinaryNode;
/*vector<int> firstSet;
firstSet.push_back(sc->LSQR); firstSet.push_back(sc->ASSIGN);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
if(lookahead.getTokenType() == sc->LSQR){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[add-exp]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->LSQR, syncSet2)) {
aNode->arrayExp = dynamic_cast<ASTExpressionNode *>(transition("addExp", &Parser::addExp, syncSet2));
if(match(sc->RSQR, syncSet2)) {
aNode->isArray = true;
}
}
}
if(match(sc->ASSIGN, syncSet)) {
eNode = dynamic_cast<ASTExpressionNode *>(transition("expression", &Parser::expression, syncSet));
if(match(sc->SEMI, syncSet)) {
aNode->exp = eNode;
}
}
return aNode;
}
//method for call-tail production rule
ASTNode * Parser::callTail(vector<int> syncSet){
ASTFunctionCallNode * fNode = new ASTFunctionCallNode;
fNode->lineNumber = admin->getLineNumber();
ASTExpressionNode * argument = new ASTBinaryNode;
//vector<int> firstSet;
if(match(sc->LPAREN, syncSet)) {
/*firstSet.push_back(sc->MINUS); firstSet.push_back(sc->NOT); firstSet.push_back(sc->LPAREN); firstSet.push_back(sc->NUM);
firstSet.push_back(sc->BLIT); firstSet.push_back(sc->ID); firstSet.push_back(sc->RPAREN);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
if(isExpressionLookahead()){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[arguments]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
argument = dynamic_cast<ASTExpressionNode *>(transition("arguments", &Parser::arguments, syncSet));
fNode->argument = argument;
}
match(sc->RPAREN, syncSet);
}
return ((ASTExpressionNode *)fNode);
}
//method for arguments production rule
ASTNode * Parser::arguments(vector<int> syncSet){
ASTExpressionNode * parent = new ASTBinaryNode, *eNode = parent;
//vector<int> firstSet;
parent = dynamic_cast<ASTExpressionNode *>(transition("expression", &Parser::expression, syncSet));
eNode = parent;
/*firstSet.push_back(sc->MINUS); firstSet.push_back(sc->NOT); firstSet.push_back(sc->LPAREN); firstSet.push_back(sc->NUM);
firstSet.push_back(sc->BLIT); firstSet.push_back(sc->ID);
firstSet.insert(firstSet.end(), syncSet.begin(), syncSet.end());
syntaxCheck(firstSet);*/
while(lookahead.getTokenType() == sc->COMMA){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("{, expression}");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->COMMA, syncSet2)) {
eNode->next = transition("expression", &Parser::expression, syncSet2);
eNode = dynamic_cast<ASTExpressionNode *>(eNode->next);
}
}
return parent;
}
//method for compound-stm production rule
ASTNode * Parser::compoundStmt(vector<int> syncSet){
int decType = 0;
int id =0;
bool hasDeclarations = false;
ASTCompoundNode * cNode = new ASTCompoundNode;
cNode->lineNumber =admin->getLineNumber();
ASTDeclarationNode * dNode = new ASTDeclarationNode;
ASTStatementNode * sNode = new ASTStatementNode;
ASTNode * current = cNode;
if(match(sc->LCRLY, syncSet)) {
//syntaxCheck(syncSet);
while(lookahead.getTokenType() == sc->INT || lookahead.getTokenType() == sc->BOOL){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("{nonvoid-specifier ID var-dec-tail}");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
dNode = ((ASTDeclarationNode *)transition("nonVoidSpecifier", &Parser::nonVoidSpecifier, syncSet2));
id = lookahead.getAttributeValue();
if(match(sc->ID, syncSet2)) {
hasDeclarations = true;
decType = dNode->declarationType;
dNode = ((ASTDeclarationNode *)transition("varDecTail", &Parser::varDecTail, syncSet2));
((ASTVariableDeclarationNode *)dNode)->declarationType = decType;
((ASTVariableDeclarationNode *)dNode)->id = id;
// Make sure that we start by adding to compound's declarations, then chaining later
if(cNode->dec == NULL) {
cNode->dec = dNode;
current = cNode->dec;
}
else {
current->next = dNode;
current = current->next;
}
while(current->next != NULL) {
((ASTVariableDeclarationNode *)current->next)->declarationType = dNode->declarationType;
current = current->next;
}
}
}
// Restrict exiting if within loop
if(loopNesting > 0 && hasDeclarations) {
compoundCount++;
}
do{
sNode = dynamic_cast<ASTStatementNode *>(transition("statement", &Parser::statement, syncSet));
// Make sure that we start by adding to compound's statements, then chaining later
if(cNode->statement == NULL) {
cNode->statement = sNode;
current = cNode->statement;
}
else {
current->next = sNode;
current = current->next;
}
}while(isStatementLookahead());
match(sc->RCRLY, syncSet);
}
if(loopNesting > 0 && hasDeclarations) {
compoundCount--;
}
return cNode;
}
//method for if-stmt production rule
ASTNode * Parser::ifStmt(vector<int> syncSet){
ASTIfNode * iNode = new ASTIfNode;
iNode->lineNumber = admin->getLineNumber();
if(match(sc->IF, syncSet)) {
if(match(sc->LPAREN, syncSet)) {
iNode->exp = dynamic_cast<ASTExpressionNode *>(transition("expression", &Parser::expression, syncSet));
if(match(sc->RPAREN, syncSet)) {
iNode->statement = dynamic_cast<ASTStatementNode *>(transition("statement", &Parser::statement, syncSet));
//syntaxCheck(syncSet);
if(lookahead.getTokenType() == sc->ELSE){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[else statement]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
if(match(sc->ELSE, syncSet2)) {
iNode->elseStatement = dynamic_cast<ASTStatementNode *>(transition("statement", &Parser::statement, syncSet2));
}
}
}
}
}
return iNode;
}
//method for loop-stmt production rule
ASTNode * Parser::loopStmt(vector<int> syncSet){
ASTLoopNode * lNode = new ASTLoopNode;
ASTNode * current = lNode;
lNode->lineNumber = admin->getLineNumber();
// For supporting semantics for exit/continue
loopNesting++;
//curLoop = lNode;
loopChain.push_back(lNode);
if(compoundCount > 0) {
compCountOld = compoundCount;
compoundCount = 0;
}
if(match(sc->LOOP, syncSet)) {
lNode->statement = dynamic_cast<ASTStatementNode *>(transition("statement", &Parser::statement, syncSet));
current = lNode->statement;
while(isStatementLookahead()) {
current->next = transition("statement", &Parser::statement, syncSet);
current = current->next;
}
if(match(sc->END, syncSet)) {
match(sc->SEMI, syncSet);
}
}
loopNesting--;
loopChain.pop_back();
if(compCountOld > 0) {
compoundCount = compCountOld;
compCountOld = 0;
}
return lNode;
}
//method for exit-stmt production rule
ASTNode * Parser::exitStmt(vector<int> syncSet){
ASTMarkerNode * marker = new ASTMarkerNode;
marker->lineNumber = admin->getLineNumber();
marker->type = sc->EXIT;
if(match(sc->EXIT, syncSet)) {
match(sc->SEMI, syncSet);
}
if(loopNesting > 0 && compoundCount == 0) {
marker->enabled = true;
//marker->corrLoop = curLoop;
marker->corrLoop = loopChain.back();
}
return marker;
}
//method for continue-stmt production rule
ASTNode * Parser::continueStmt(vector<int> syncSet){
ASTMarkerNode * marker = new ASTMarkerNode;
marker->lineNumber = admin->getLineNumber();
marker ->type = sc->CONTINUE;
if(match(sc->CONTINUE, syncSet)) {
match(sc->SEMI, syncSet);
}
if(loopNesting > 0 && compoundCount == 0) {
marker->enabled = true;
//marker->corrLoop = curLoop;
marker->corrLoop = loopChain.back();
}
return marker;
}
//method for return-stmt production rule
ASTNode * Parser::returnStmt(vector<int> syncSet){
ASTReturnNode * rNode = new ASTReturnNode;
rNode->lineNumber = admin->getLineNumber();
if(match(sc->RETURN, syncSet)) {
if(isExpressionLookahead()){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[expression]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
rNode->expression = dynamic_cast<ASTExpressionNode *>(transition("expression", &Parser::expression, syncSet2));
}
match(sc->SEMI, syncSet);
}
// Set the function this is returning from
rNode->funcScope = curFunc;
return rNode;
}
//method for null-stmt production rule
ASTNode * Parser::nullStmt(vector<int> syncSet){
ASTMarkerNode * marker = new ASTMarkerNode;
marker->lineNumber = admin->getLineNumber();
marker ->type = sc->NULLSTMT;
match(sc->SEMI, syncSet);
return marker;
}
//method for branch-stmt production rule
ASTNode * Parser::branchStmt(vector<int> syncSet){
ASTBranchNode * bNode = new ASTBranchNode;
ASTCaseNode *current = NULL;
bNode->lineNumber = admin->getLineNumber();
if(match(sc->BRANCH, syncSet)) {
if(match(sc->LPAREN, syncSet)) {
bNode->expression = dynamic_cast<ASTExpressionNode *>(transition("addExp", &Parser::addExp, syncSet));
if(match(sc->RPAREN, syncSet)) {
bNode->firstCase = dynamic_cast<ASTCaseNode *>(transition("caseStmt", &Parser::caseStmt, syncSet));
current =bNode->firstCase;
while(lookahead.getTokenType() == sc->CASE || lookahead.getTokenType() == sc->DEFAULT){
current->next = dynamic_cast<ASTCaseNode *>(transition("caseStmt", &Parser::caseStmt, syncSet));
current = dynamic_cast<ASTCaseNode *>(current->next);
}
if(match(sc->END, syncSet)) {
match(sc->SEMI, syncSet);
}
}
}
}
return bNode;
}
//method for case-stmt production rule
ASTNode * Parser::caseStmt(vector<int> syncSet){
ASTCaseNode * cNode = new ASTCaseNode;
cNode->lineNumber = admin->getLineNumber();
if(lookahead.getTokenType() == sc->CASE){
cNode->type = sc->CASE;
if(match(sc->CASE, syncSet)) {
cNode->num = lookahead.getAttributeValue();
if(match(sc->NUM, syncSet)) {
if(match(sc->COLON, syncSet)) {
cNode->statement = dynamic_cast<ASTStatementNode *>(transition("statement", &Parser::statement, syncSet));
}
}
}
}
else if(lookahead.getTokenType() == sc->DEFAULT) {
cNode->type = sc->DEFAULT;
if(match(sc->DEFAULT, syncSet)) {
if(match(sc->COLON, syncSet)) {
cNode->statement = dynamic_cast<ASTStatementNode *>(transition("statement", &Parser::statement, syncSet));
}
}
}
else {
syntaxError("caseStmt", syncSet);
}
return cNode;
}
//method for expression production rule
// Commented out expression types because they will be taken care of later during semantic analysis
ASTNode * Parser::expression(vector<int> syncSet){
ASTExpressionNode * exp = dynamic_cast<ASTExpressionNode *>(transition("addExp", &Parser::addExp, syncSet));
if(isRelopLookahead())
{
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[relop add-exp]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
ASTBinaryNode * next = new ASTBinaryNode;
next->oper = lookahead.getTokenType();
if(match(lookahead.getTokenType(), syncSet2)) {
next->right = dynamic_cast<ASTExpressionNode *>(transition("addExp", &Parser::addExp, syncSet2));
next->left = exp;
exp = next;
}
}
if(exp != NULL) {
exp->lineNumber = admin->getLineNumber();
}
return exp;
}
//method for add-exp production rule (containing uminus and addop production rules )
/*
*/
ASTNode * Parser::addExp(vector<int> syncSet){
bool isNeg = false;
ASTExpressionNode * exp = NULL;
if(lookahead.getTokenType() == sc->MINUS) {
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("[uminus]");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
//start uMinus production rule
if(match(sc->MINUS, syncSet2)) {
//end uminus production rule
isNeg = true;
}
}
exp = dynamic_cast<ASTExpressionNode *>(transition("term", &Parser::term, syncSet));
if(isNeg) {
ASTUnaryNode * next = new ASTUnaryNode;
next->operation = sc->MINUS;
next->operand = exp;
exp = next;
}
while(isAddopLookahead()){
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("{addop term}");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
ASTBinaryNode * next = new ASTBinaryNode;
next->oper = lookahead.getTokenType();
if(match(lookahead.getTokenType(), syncSet2)) {
next->right = dynamic_cast<ASTExpressionNode *>(transition("term", &Parser::term, syncSet2));
next->left = exp;
exp = next;
}
}
if(exp != NULL) {
exp->lineNumber = admin->getLineNumber();
}
return exp;
}
//method for term production rule
ASTNode * Parser::term(vector<int> syncSet){
ASTExpressionNode * exp = dynamic_cast<ASTExpressionNode *>(transition("factor", &Parser::factor, syncSet));
while(isMultopLookahead()) {
vector<int> syncSet2 = SyncSetBuilder::getSyncSet("{multop factor}");
syncSet2.insert(syncSet2.end(), syncSet.begin(), syncSet.end());
ASTBinaryNode * next = new ASTBinaryNode;
next->oper = lookahead.getTokenType();
if(match(lookahead.getTokenType(), syncSet2)) {