4 * Copyright (c) 1997-1998 Markku Rossi.
6 * Author: Markku Rossi <mtr@iki.fi>
10 * This file is part of GNU enscript.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 59 Temple Place - Suite 330,
25 * Boston, MA 02111-1307, USA.
29 * $Id: gram.y,v 1.1.1.1 2003/03/05 07:25:52 mtr Exp $
44 %token <node> tSYMBOL tREGEXP tSTRING tINTEGER tREAL
45 %token tSUB tSTATE tSTART tSTARTRULES tNAMERULES tBEGIN tEND tRETURN tIF tELSE
46 %token tLOCAL tWHILE tFOR tEXTENDS
48 %right '=' tADDASSIGN tSUBASSIGN tMULASSIGN tDIVASSIGN
56 %right '!' tPLUSPLUS tMINUSMINUS
59 %type <lst> regexp_sym_list symbol_list rest_symbol_list staterules
60 %type <lst> stmt_list expr_list rest_expr_list locals locals_rest
62 %type <expr> expr cond_expr
63 %type <cons> staterule local_def
71 toplevel : tSTART '{' stmt_list '}' { start_stmts = $3; }
72 | tSTARTRULES '{' regexp_sym_list '}'
74 | tNAMERULES '{' regexp_sym_list '}'
76 | tSTATE tSYMBOL '{' staterules '}'
77 { define_state ($2, NULL, $4); }
78 | tSTATE tSYMBOL tEXTENDS tSYMBOL '{' staterules '}'
79 { define_state ($2, $4, $6); }
80 | stmt { list_append (global_stmts, $1); }
83 regexp_sym_list : /* empty */ { $$ = list (); }
84 | regexp_sym_list tREGEXP tSYMBOL ';'
85 { list_append ($1, cons ($2, $3)); }
88 staterules : /* empty */ { $$ = list (); }
89 | staterules staterule { list_append ($1, $2); }
91 staterule : tBEGIN '{' stmt_list '}' { $$ = cons (RULE_BEGIN, $3); }
92 | tEND '{' stmt_list '}' { $$ = cons (RULE_END, $3); }
93 | tREGEXP '{' stmt_list '}' { $$ = cons ($1, $3); }
94 | tSYMBOL '{' stmt_list '}' { $$ = cons ($1, $3); }
97 symbol_list : /* empty */ { $$ = list (); }
98 | rest_symbol_list { $$ = $1; }
101 rest_symbol_list : tSYMBOL { $$ = list (); list_append ($$, $1); }
102 | rest_symbol_list ',' tSYMBOL { list_append ($1, $3); }
105 locals : /* empty */ { $$ = list (); }
106 | tLOCAL locals_rest ';' { $$ = $2; }
109 locals_rest : local_def { $$ = list (); list_append ($$, $1); }
110 | locals_rest ',' local_def { list_append ($1, $3); }
113 local_def : tSYMBOL { $$ = cons ($1, NULL); }
114 | tSYMBOL '=' expr { $$ = cons ($1, $3); }
117 stmt_list : /* empty */ { $$ = list (); }
118 | stmt_list stmt { list_append ($1, $2); }
121 stmt : tRETURN ';' { $$ = mk_stmt (sRETURN, NULL, NULL,
123 | tRETURN expr ';' { $$ = mk_stmt (sRETURN, $2, NULL,
125 | tSUB tSYMBOL '(' symbol_list ')' '{' locals stmt_list '}'
126 { $$ = mk_stmt (sDEFSUB, $2,
130 | '{' stmt_list '}' { $$ = mk_stmt (sBLOCK, $2, NULL,
132 | tIF '(' expr ')' stmt { $$ = mk_stmt (sIF, $3, $5, NULL,
134 | tIF '(' expr ')' stmt tELSE stmt
135 { $$ = mk_stmt (sIF, $3, $5, $7,
137 | tWHILE '(' expr ')' stmt { $$ = mk_stmt (sWHILE, $3, $5,
139 | tFOR '(' cond_expr ';' expr ';' cond_expr ')' stmt
140 { $$ = mk_stmt (sFOR, $3, $5, $7,
142 | expr ';' { $$ = mk_stmt (sEXPR, $1, NULL,
146 expr : tSTRING { $$ = mk_expr (eSTRING, $1, NULL,
148 | tREGEXP { $$ = mk_expr (eREGEXP, $1, NULL,
150 | tINTEGER { $$ = mk_expr (eINTEGER, $1, NULL,
152 | tREAL { $$ = mk_expr (eREAL, $1, NULL,
154 | tSYMBOL { $$ = mk_expr (eSYMBOL, $1, NULL,
156 | '!' expr { $$ = mk_expr (eNOT, $2, NULL,
158 | expr tAND expr { $$ = mk_expr (eAND, $1, $3, NULL); }
159 | expr tOR expr { $$ = mk_expr (eOR, $1, $3, NULL); }
160 | tSYMBOL '(' expr_list ')' { $$ = mk_expr (eFCALL, $1, $3,
162 | tSYMBOL '=' expr { $$ = mk_expr (eASSIGN, $1, $3,
164 | tSYMBOL tADDASSIGN expr { $$ = mk_expr (eADDASSIGN, $1, $3,
166 | tSYMBOL tSUBASSIGN expr { $$ = mk_expr (eSUBASSIGN, $1, $3,
168 | tSYMBOL tMULASSIGN expr { $$ = mk_expr (eMULASSIGN, $1, $3,
170 | tSYMBOL tDIVASSIGN expr { $$ = mk_expr (eDIVASSIGN, $1, $3,
172 | tSYMBOL tPLUSPLUS { $$ = mk_expr (ePOSTFIXADD, $1, NULL,
174 | tSYMBOL tMINUSMINUS { $$ = mk_expr (ePOSTFIXSUB, $1, NULL,
176 | tPLUSPLUS tSYMBOL { $$ = mk_expr (ePREFIXADD, $2, NULL,
178 | tMINUSMINUS tSYMBOL { $$ = mk_expr (ePREFIXSUB, $2, NULL,
180 | expr '[' expr ']' '=' expr { $$ = mk_expr (eARRAYASSIGN, $1, $3,
182 | '(' expr ')' { $$ = $2; }
183 | expr '[' expr ']' { $$ = mk_expr (eARRAYREF, $1, $3,
185 | expr '?' expr ':' expr { $$ = mk_expr (eQUESTCOLON, $1, $3,
187 | expr '*' expr { $$ = mk_expr (eMULT, $1, $3, NULL); }
188 | expr tDIV expr { $$ = mk_expr (eDIV, $1, $3, NULL); }
189 | expr '+' expr { $$ = mk_expr (ePLUS, $1, $3, NULL); }
190 | expr '-' expr { $$ = mk_expr (eMINUS, $1, $3,
192 | expr '<' expr { $$ = mk_expr (eLT, $1, $3, NULL); }
193 | expr '>' expr { $$ = mk_expr (eGT, $1, $3, NULL); }
194 | expr tEQ expr { $$ = mk_expr (eEQ, $1, $3, NULL); }
195 | expr tNE expr { $$ = mk_expr (eNE, $1, $3, NULL); }
196 | expr tGE expr { $$ = mk_expr (eGE, $1, $3, NULL); }
197 | expr tLE expr { $$ = mk_expr (eLE, $1, $3, NULL); }
200 cond_expr : /* empty */ { $$ = NULL; }
204 expr_list : /* empty */ { $$ = list (); }
205 | rest_expr_list { $$ = $1; }
208 rest_expr_list: expr { $$ = list (); list_append ($$, $1); }
209 | rest_expr_list ',' expr { list_append ($1, $3); }
218 fprintf (stderr, "%s:%d: %s\n", yyin_name, linenum, msg);