/* * cool.y * Parser definition for the COOL language. * */ %{ #include #include "cool-tree.h" #include "stringtab.h" #include "utilities.h" extern char *curr_filename; /* Locations */ #define YYLTYPE int /* the type of locations */ #define cool_yylloc curr_lineno /* use the curr_lineno from the lexer for the location of tokens */ extern int node_lineno; /* set before constructing a tree node to whatever you want the line number for the tree node to be */ #define YYLLOC_DEFAULT(Current, Rhs, N) \ Current = Rhs[1]; \ node_lineno = Current; #define SET_NODELOC(Current) \ node_lineno = Current; /* IMPORTANT NOTE ON LINE NUMBERS ********************************* * The above definitions and macros cause every terminal in your grammar to * have the line number supplied by the lexer. The only task you have to * implement for line numbers to work correctly, is to use SET_NODELOC() * before constructing any constructs from non-terminals in your grammar. * Example: Consider you are matching on the following very restrictive * (fictional) construct that matches a plus between two integer constants. * (SUCH A RULE SHOULD NOT BE PART OF YOUR PARSER): plus_consts : INT_CONST '+' INT_CONST * where INT_CONST is a terminal for an integer constant. Now, a correct * action for this rule that attaches the correct line number to plus_const * would look like the following: plus_consts : INT_CONST '+' INT_CONST { // Set the line number of the current non-terminal: // *********************************************** // You can access the line numbers of the i'th item with @i, just // like you acess the value of the i'th exporession with $i. // // Here, we choose the line number of the last INT_CONST (@3) as the // line number of the resulting expression (@$). You are free to pick // any reasonable line as the line number of non-terminals. If you // omit the statement @$=..., bison has default rules for deciding which // line number to use. Check the manual for details if you are interested. @$ = @3; // Observe that we call SET_NODELOC(@3); this will set the global variable // node_lineno to @3. Since the constructor call "plus" uses the value of // this global, the plus node will now have the correct line number. SET_NODELOC(@3); // construct the result node: $$ = plus(int_const($1), int_const($3)); } */ void yyerror(char *s); /* defined below; called for each parse error */ extern int yylex(); /* the entry point to the lexer */ /************************************************************************/ /* DONT CHANGE ANYTHING IN THIS SECTION */ Program ast_root; /* the result of the parse */ Classes parse_results; /* for use in semantic analysis */ int omerrs = 0; /* number of errors in lexing and parsing */ %} /* A union of all the types that can be the result of parsing actions. */ %union { Boolean boolean; Symbol symbol; Program program; Class_ class_; Classes classes; Feature feature; Features features; Formal formal; Formals formals; Case case_; Cases cases; Expression expression; Expressions expressions; char *error_msg; } /* Declare the terminals; a few have types for associated lexemes. The token ERROR is never used in the parser; thus, it is a parse error when the lexer returns it. The integer following token declaration is the numeric constant used to represent that token internally. Typically, Bison generates these on its own, but we give explicit numbers to prevent version parity problems (bison 1.25 and earlier start at 258, later versions -- at 257) */ %token CLASS 258 ELSE 259 FI 260 IF 261 IN 262 %token INHERITS 263 LET 264 LOOP 265 POOL 266 THEN 267 WHILE 268 %token CASE 269 ESAC 270 OF 271 DARROW 272 NEW 273 ISVOID 274 %token STR_CONST 275 INT_CONST 276 %token BOOL_CONST 277 %token TYPEID 278 OBJECTID 279 %token ASSIGN 280 NOT 281 LE 282 ERROR 283 /* DON'T CHANGE ANYTHING ABOVE THIS LINE, OR YOUR PARSER WONT WORK */ /**************************************************************************/ /* Complete the nonterminal list below, giving a type for the semantic value of each non terminal. (See section 3.6 in the bison documentation for details). */ /* Declare types for the grammar's non-terminals. */ %type program %type class_list %type class /* You will want to change the following line. */ %type feature_list %type feature %type formal_list %type formal %type expression_list_comma %type expression_list_colon %type expression %type case_list %type case %type nested_let /* Precedence declarations go here. */ /* No need to specify then-else precedence, the silly language forbids omitting else */ /* %precedence THEN %precedence ELSE */ /* all other binary operations are left-associative * assignment is right-associative, * three comparison operations do not associate.*/ %nonassoc LETEXPR %right ASSIGN %left NOT %nonassoc '<' LE '=' %left '+' '-' %left '*' '/' %nonassoc ISVOID %nonassoc '~' %nonassoc '@' %nonassoc '.' %% /* Save the root of the abstract syntax tree in a global variable. */ program : class_list { @$ = @1; ast_root = program($1); } ; class_list : class /* single class */ { $$ = single_Classes($1); parse_results = $$; } | class_list class /* several classes */ { $$ = append_Classes($1,single_Classes($2)); parse_results = $$; } /* TODO: I guess `parse_results` is only needed in the top-most class_list*/ ; /* If no parent is specified, the class inherits from the Object class. */ class : CLASS TYPEID '{' feature_list '}' ';' { $$ = class_($2,idtable.add_string("Object"),$4,stringtable.add_string(curr_filename)); } | CLASS TYPEID '{' '}' ';' { $$ = class_($2,idtable.add_string("Object"),nil_Features(),stringtable.add_string(curr_filename)); } | CLASS TYPEID INHERITS TYPEID '{' feature_list '}' ';' { $$ = class_($2,$4,$6,stringtable.add_string(curr_filename)); } | CLASS TYPEID INHERITS TYPEID '{' '}' ';' { $$ = class_($2,$4,nil_Features(),stringtable.add_string(curr_filename)); } | CLASS error '{' error '}' ';' ; /* Feature list may be empty, but no empty features in list. */ feature_list : feature ';' { $$ = single_Features($1); } | feature_list feature ';' { $$ = append_Features($1, single_Features($2)); } ; feature : OBJECTID ':' TYPEID /* Use no expr where optional expression omitted*/ /* The lineno for `no_expr` is somehow different from standard parser(std parser sets it to 0), * if you want to perfektly conform to that, the code below provides a workaround * { auto _lineno = @$; SET_NODELOC(0); auto _no_expr = no_expr(); SET_NODELOC(_lineno); $$ = attr($1, $3, _no_expr); } * or you can modify cool-tree.h:754, manually override line_number to 0 */ { $$ = attr($1, $3, no_expr()); } | OBJECTID ':' TYPEID ASSIGN expression { $$ = attr($1, $3, $5); } | OBJECTID '(' formal_list ')' ':' TYPEID '{' expression '}' { $$ = method($1, $3, $6, $8); } | OBJECTID '(' ')' ':' TYPEID '{' expression '}' { $$ = method($1, nil_Formals(), $5, $7); } ; formal_list : formal { $$ = single_Formals($1); } | formal_list ',' formal /* a little different from classlist */ { $$ = append_Formals($1, single_Formals($3)); } ; formal : OBJECTID ':' TYPEID { $$ = formal($1, $3); } ; expression_list_comma : expression { $$ = single_Expressions($1); } | expression_list_comma ',' expression { $$ = append_Expressions($1, single_Expressions($3)); } ; expression_list_colon : expression ';' /* the only usage `{ [[expr; ]]+}` says one or more exprs needed, so no empty option*/ { $$ = single_Expressions($1); } | expression_list_colon expression ';' { $$ = append_Expressions($1, single_Expressions($2)); } ; expression : OBJECTID ASSIGN expression { $$ = assign($1, $3); } /* expr[@TYPE].ID([expr[[,expr]]*]) */ | expression '.' OBJECTID '(' expression_list_comma ')' { $$ = dispatch($1, $3, $5); } | expression '.' OBJECTID '(' ')' { $$ = dispatch($1, $3, nil_Expressions()); } /* Only in the case of @TYPE, we use static dispatch*/ | expression '@' TYPEID '.' OBJECTID '(' expression_list_comma ')' { $$ = static_dispatch($1, $3, $5, $7); } | expression '@' TYPEID '.' OBJECTID '(' ')' { $$ = static_dispatch($1, $3, $5, nil_Expressions()); } /* Actually, `ID( [ expr [[, expr]]∗ ])` is self omitted, so add it in parsing */ | OBJECTID '(' expression_list_comma ')' { $$ = dispatch(object(idtable.add_string("self")), $1, $3); } | OBJECTID '(' ')' { $$ = dispatch(object(idtable.add_string("self")), $1, nil_Expressions()); } | IF expression THEN expression ELSE expression FI { $$ = cond($2, $4, $6); } | WHILE expression LOOP expression POOL { $$ = loop($2, $4); } | '{' expression_list_colon '}' { $$ = block($2); } /* [manual-P21, tour-section6.5] * The let constructor only allows one identifier. * When parsing a let with multiple idents, it should be transformed into nested lets */ /* It is not any obvious to me where the shift-reduce conflict lies. * Try `bison -Wcounterexample {OTHERFLAGS} cool.y > counterexample.txt 2>&1` * Thanks to the examples, one possible situation could be: let id1:T1 in expression.f() * there could be 2 interpretations: (let id1:T1 in expression).f() | let id1:T1 in (expression.f()) * This should be specified to dis-ambiguite * * The manual says, the expr extends as far as possible, so we just set the lowest precedence */ | LET nested_let { $$ = $2; } | CASE expression OF case_list ESAC { $$ = typcase($2, $4); } | NEW TYPEID { SET_NODELOC(@2); $$ = new_($2); } | ISVOID expression { SET_NODELOC(@2); $$ = isvoid($2); } /* the rules below need precedence specification */ | expression '+' expression { SET_NODELOC(@3); $$ = plus($1, $3); } | expression '-' expression { SET_NODELOC(@3); $$ = sub($1, $3); } | expression '*' expression { SET_NODELOC(@3); $$ = mul($1, $3); } | expression '/' expression { SET_NODELOC(@3); $$ = divide($1, $3); } | '~' expression { SET_NODELOC(@2); $$ = neg($2); } | expression '<' expression { SET_NODELOC(@3); $$ = lt($1, $3); } | expression LE expression { SET_NODELOC(@3); $$ = leq($1, $3); } | expression '=' expression { SET_NODELOC(@3); $$ = eq($1, $3); } | NOT expression { SET_NODELOC(@2); $$ = comp($2); } | '(' expression ')' { SET_NODELOC(@2); $$ = $2; } | OBJECTID { $$ = object($1); } | INT_CONST { $$ = int_const($1); } | STR_CONST { $$ = string_const($1); } | BOOL_CONST { $$ = bool_const($1); } ; case_list : case ';' { $$ = single_Cases($1); } | case_list case ';' { $$ = append_Cases($1, single_Cases($2)); } ; case : OBJECTID ':' TYPEID DARROW expression { $$ = branch($1, $3, $5); } ; nested_let : OBJECTID ':' TYPEID ',' nested_let { $$ = let($1, $3, no_expr(), $5); } | OBJECTID ':' TYPEID ASSIGN expression ',' nested_let { $$ = let($1, $3, $5, $7); } | OBJECTID ':' TYPEID IN expression %prec LETEXPR { $$ = let($1, $3, no_expr(), $5); } | OBJECTID ':' TYPEID ASSIGN expression IN expression %prec LETEXPR { $$ = let($1, $3, $5, $7); } ; /* end of grammar */ %% /* This function is called automatically when Bison detects a parse error. */ void yyerror(char *s) { extern int curr_lineno; cerr << "\"" << curr_filename << "\", line " << curr_lineno << ": " \ << s << " at or near "; print_cool_token(yychar); cerr << endl; omerrs++; if(omerrs>50) {fprintf(stdout, "More than 50 errors\n"); exit(1);} }