2 /* $RCSfile: a2p.y,v $$Revision: 4.1 $$Date: 92/08/07 18:29:12 $
4 * Copyright (c) 1991-2002, Larry Wall
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
22 %token SEMINEW NEWLINE COMMENT
24 %token PRINT PRINTF SPRINTF_OLD SPRINTF_NEW SPLIT
25 %token IF ELSE WHILE FOR IN
26 %token EXIT NEXT BREAK CONTINUE RET
27 %token GETLINE DO SUB GSUB MATCH
28 %token FUNCTION USERFUN DELETE
35 %left NUMBER VAR SUBSTR INDEX
51 { root = oper4(OPROG,$1,begins,$2,ends); }
54 begin : BEGIN '{' maybe states '}' junk
55 { begins = oper4(OJUNK,begins,$3,$4,$6); in_begin = FALSE;
59 end : END '{' maybe states '}'
60 { ends = oper3(OJUNK,ends,$3,$4); $$ = Nullop; }
65 hunks : hunks hunk junk
66 { $$ = oper3(OHUNKS,$1,$2,$3); }
72 { $$ = oper1(OHUNK,$1); need_entire = TRUE; }
73 | patpat '{' maybe states '}'
74 { $$ = oper2(OHUNK,$1,oper2(OJUNK,$3,$4)); }
75 | FUNCTION USERFUN '(' arg_list ')' maybe '{' maybe states '}'
76 { fixfargs($2,$4,0); $$ = oper5(OUSERDEF,$2,$4,$6,$8,$9); }
77 | '{' maybe states '}'
78 { $$ = oper2(OHUNK,Nullop,oper2(OJUNK,$2,$3)); }
84 { $$ = rememberargs($$); }
88 { $$ = oper1(OPAT,$1); }
90 { $$ = oper2(ORANGE,$1,$3); }
97 | cond '?' expr ':' expr
98 { $$ = oper3(OCOND,$1,$3,$5); }
102 : '(' compound_cond ')'
103 { $$ = oper1(OCPAREN,$2); }
104 | cond ANDAND maybe cond
105 { $$ = oper3(OCANDAND,$1,$3,$4); }
106 | cond OROR maybe cond
107 { $$ = oper3(OCOROR,$1,$3,$4); }
109 { $$ = oper1(OCNOT,$2); }
112 rel : expr RELOP expr
113 { $$ = oper3(ORELOP,$2,$1,$3); }
115 { $$ = oper3(ORELOP,string(">",1),$1,$3); }
117 { $$ = oper3(ORELOP,string("<",1),$1,$3); }
119 { $$ = oper1(ORPAREN,$2); }
122 match : expr MATCHOP expr
123 { $$ = oper3(OMATCHOP,$2,$1,$3); }
125 { $$ = oper3(OMATCHOP,$2,$1,oper1(OREGEX,$3)); }
126 | REGEX %prec MATCHOP
127 { $$ = oper1(OREGEX,$1); }
129 { $$ = oper1(OMPAREN,$2); }
135 { $$ = oper2(OCONCAT,$1,$2); }
136 | expr '?' expr ':' expr
137 { $$ = oper3(OCOND,$1,$3,$5); }
138 | variable ASGNOP cond
139 { $$ = oper3(OASSIGN,$2,$1,$3);
140 if ((ops[$1].ival & 255) == OFLD)
142 if ((ops[$1].ival & 255) == OVFLD)
147 sprintf : SPRINTF_NEW
153 { $$ = oper1(ONUM,$1); }
155 { $$ = oper1(OSTR,$1); }
157 { $$ = oper2(OADD,$1,$3); }
159 { $$ = oper2(OSUBTRACT,$1,$3); }
161 { $$ = oper2(OMULT,$1,$3); }
163 { $$ = oper2(ODIV,$1,$3); }
165 { $$ = oper2(OMOD,$1,$3); }
167 { $$ = oper2(OPOW,$1,$3); }
169 { $$ = oper2(ODEFINED,aryrefarg($3),$1); }
171 { $$ = oper1(OPOSTINCR,$1); }
173 { $$ = oper1(OPOSTDECR,$1); }
175 { $$ = oper1(OPREINCR,$2); }
177 { $$ = oper1(OPREDECR,$2); }
178 | '-' term %prec UMINUS
179 { $$ = oper1(OUMINUS,$2); }
180 | '+' term %prec UMINUS
181 { $$ = oper1(OUPLUS,$2); }
183 { $$ = oper1(OPAREN,$2); }
185 { $$ = oper0(OGETLINE); }
187 { $$ = oper1(OGETLINE,$2); }
189 { $$ = oper3(OGETLINE,Nullop,string("<",1),$3);
190 if (ops[$3].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
191 | GETLINE variable '<' expr
192 { $$ = oper3(OGETLINE,$2,string("<",1),$4);
193 if (ops[$4].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
195 { $$ = oper3(OGETLINE,Nullop,string("|",1),$1);
196 if (ops[$1].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
197 | term 'p' GETLINE variable
198 { $$ = oper3(OGETLINE,$4,string("|",1),$1);
199 if (ops[$1].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
201 { $$ = oper0($1); need_entire = do_chop = TRUE; }
203 { $$ = oper1($1,Nullop); need_entire = do_chop = TRUE; }
205 { $$ = oper1($1,$3); }
206 | FUNN '(' expr_list ')'
207 { $$ = oper1($1,$3); }
208 | USERFUN '(' expr_list ')'
209 { $$ = oper2(OUSERFUN,$1,$3); }
210 | SPRINTF_NEW '(' expr_list ')'
211 { $$ = oper1(OSPRINTF,$3); }
213 { $$ = oper1(OSPRINTF,$2); }
214 | SUBSTR '(' expr ',' expr ',' expr ')'
215 { $$ = oper3(OSUBSTR,$3,$5,$7); }
216 | SUBSTR '(' expr ',' expr ')'
217 { $$ = oper2(OSUBSTR,$3,$5); }
218 | SPLIT '(' expr ',' VAR ',' expr ')'
219 { $$ = oper3(OSPLIT,$3,aryrefarg(numary($5)),$7); }
220 | SPLIT '(' expr ',' VAR ',' REGEX ')'
221 { $$ = oper3(OSPLIT,$3,aryrefarg(numary($5)),oper1(OREGEX,$7));}
222 | SPLIT '(' expr ',' VAR ')'
223 { $$ = oper2(OSPLIT,$3,aryrefarg(numary($5))); }
224 | INDEX '(' expr ',' expr ')'
225 { $$ = oper2(OINDEX,$3,$5); }
226 | MATCH '(' expr ',' REGEX ')'
227 { $$ = oper2(OMATCH,$3,oper1(OREGEX,$5)); }
228 | MATCH '(' expr ',' expr ')'
229 { $$ = oper2(OMATCH,$3,$5); }
230 | SUB '(' expr ',' expr ')'
231 { $$ = oper2(OSUB,$3,$5); }
232 | SUB '(' REGEX ',' expr ')'
233 { $$ = oper2(OSUB,oper1(OREGEX,$3),$5); }
234 | GSUB '(' expr ',' expr ')'
235 { $$ = oper2(OGSUB,$3,$5); }
236 | GSUB '(' REGEX ',' expr ')'
237 { $$ = oper2(OGSUB,oper1(OREGEX,$3),$5); }
238 | SUB '(' expr ',' expr ',' expr ')'
239 { $$ = oper3(OSUB,$3,$5,$7); }
240 | SUB '(' REGEX ',' expr ',' expr ')'
241 { $$ = oper3(OSUB,oper1(OREGEX,$3),$5,$7); }
242 | GSUB '(' expr ',' expr ',' expr ')'
243 { $$ = oper3(OGSUB,$3,$5,$7); }
244 | GSUB '(' REGEX ',' expr ',' expr ')'
245 { $$ = oper3(OGSUB,oper1(OREGEX,$3),$5,$7); }
249 { $$ = oper1(OVAR,$1); }
250 | VAR '[' expr_list ']'
251 { $$ = oper2(OVAR,aryrefarg($1),$3); }
253 { $$ = oper1(OFLD,$1); }
255 { $$ = oper1(OVFLD,$2); }
265 clist : expr ',' maybe expr
266 { $$ = oper3(OCOMMA,$1,$3,$4); }
267 | clist ',' maybe expr
268 { $$ = oper3(OCOMMA,$1,$3,$4); }
269 | '(' clist ')' /* these parens are invisible */
274 { $$ = oper2(OJUNK,$1,$2); }
280 { $$ = oper2(OJUNK,oper0(OSEMICOLON),oper0(ONEWLINE)); }
282 { $$ = oper2(OJUNK,oper0(OSEMICOLON),oper0(ONEWLINE)); }
284 { $$ = oper0(ONEWLINE); }
286 { $$ = oper1(OCOMMENT,$1); }
289 maybe : maybe nlstuff
290 { $$ = oper2(OJUNK,$1,$2); }
296 { $$ = oper0(ONEWLINE); }
298 { $$ = oper1(OCOMMENT,$1); }
303 { $$ = oper2(OJUNK,oper0(OSEMICOLON),$2); }
305 { $$ = oper2(OJUNK,oper0(OSNEWLINE),$2); }
307 { $$ = oper2(OJUNK,oper0(OSNEWLINE),$2); }
309 { $$ = oper2(OJUNK,oper1(OSCOMMENT,$1),$2); }
312 states : states statement
313 { $$ = oper2(OSTATES,$1,$2); }
319 : simple separator maybe
320 { $$ = oper2(OJUNK,oper2(OSTATE,$1,$2),$3); }
322 { $$ = oper2(OSTATE,Nullop,oper2(OJUNK,oper0(OSEMICOLON),$2)); }
324 { $$ = oper2(OSTATE,Nullop,oper2(OJUNK,oper0(OSNEWLINE),$2)); }
335 | PRINT expr_list redir expr
336 { $$ = oper3(OPRINT,$2,$3,$4);
338 saw_ORS = saw_OFS = TRUE;
339 if (!$2) need_entire = TRUE;
340 if (ops[$4].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
342 { $$ = oper1(OPRINT,$2);
343 if (!$2) need_entire = TRUE;
344 saw_ORS = saw_OFS = TRUE;
346 | PRINTF expr_list redir expr
347 { $$ = oper3(OPRINTF,$2,$3,$4);
349 if (!$2) need_entire = TRUE;
350 if (ops[$4].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
352 { $$ = oper1(OPRINTF,$2);
353 if (!$2) need_entire = TRUE;
356 { $$ = oper0(OBREAK); }
358 { $$ = oper0(ONEXT); }
360 { $$ = oper0(OEXIT); }
362 { $$ = oper1(OEXIT,$2); }
364 { $$ = oper0(OCONTINUE); }
366 { $$ = oper0(ORETURN); }
368 { $$ = oper1(ORETURN,$2); }
369 | DELETE VAR '[' expr_list ']'
370 { $$ = oper2(ODELETE,aryrefarg($2),$4); }
373 redir : '>' %prec FIELD
374 { $$ = oper1(OREDIR,string(">",1)); }
376 { $$ = oper1(OREDIR,string(">>",2)); }
378 { $$ = oper1(OREDIR,string("|",1)); }
382 : IF '(' cond ')' maybe statement
383 { $$ = oper2(OIF,$3,bl($6,$5)); }
384 | IF '(' cond ')' maybe statement ELSE maybe statement
385 { $$ = oper3(OIF,$3,bl($6,$5),bl($9,$8)); }
386 | WHILE '(' cond ')' maybe statement
387 { $$ = oper2(OWHILE,$3,bl($6,$5)); }
388 | DO maybe statement WHILE '(' cond ')'
389 { $$ = oper2(ODO,bl($3,$2),$6); }
390 | FOR '(' simpnull ';' cond ';' simpnull ')' maybe statement
391 { $$ = oper4(OFOR,$3,$5,$7,bl($10,$9)); }
392 | FOR '(' simpnull ';' ';' simpnull ')' maybe statement
393 { $$ = oper4(OFOR,$3,string("",0),$6,bl($9,$8)); }
394 | FOR '(' expr ')' maybe statement
395 { $$ = oper2(OFORIN,$3,bl($6,$5)); }
396 | '{' maybe states '}' maybe
397 { $$ = oper3(OBLOCK,oper2(OJUNK,$2,$3),Nullop,$5); }