perl 3.0 patch #4 Patch #2 continued
[p5sagit/p5-mst-13.2.git] / x2p / a2p.y
CommitLineData
8d063cd8 1%{
a687059c 2/* $Header: a2p.y,v 3.0 89/10/18 15:34:29 lwall Locked $
3 *
4 * Copyright (c) 1989, Larry Wall
5 *
6 * You may distribute under the terms of the GNU General Public License
7 * as specified in the README file that comes with the perl 3.0 kit.
8d063cd8 8 *
9 * $Log: a2p.y,v $
a687059c 10 * Revision 3.0 89/10/18 15:34:29 lwall
11 * 3.0 baseline
8d063cd8 12 *
13 */
14
15#include "INTERN.h"
16#include "a2p.h"
17
18int root;
a687059c 19int begins = Nullop;
20int ends = Nullop;
8d063cd8 21
22%}
23%token BEGIN END
24%token REGEX
25%token SEMINEW NEWLINE COMMENT
a687059c 26%token FUN1 FUNN GRGR
8d063cd8 27%token PRINT PRINTF SPRINTF SPLIT
28%token IF ELSE WHILE FOR IN
a687059c 29%token EXIT NEXT BREAK CONTINUE RET
30%token GETLINE DO SUB GSUB MATCH
31%token FUNCTION USERFUN DELETE
8d063cd8 32
33%right ASGNOP
a687059c 34%right '?' ':'
8d063cd8 35%left OROR
36%left ANDAND
a687059c 37%left IN
8d063cd8 38%left NUMBER VAR SUBSTR INDEX
a687059c 39%left MATCHOP
40%left RELOP '<' '>'
8d063cd8 41%left OR
42%left STRING
43%left '+' '-'
44%left '*' '/' '%'
45%right UMINUS
a687059c 46%left NOT
47%right '^'
8d063cd8 48%left INCR DECR
49%left FIELD VFIELD
50
51%%
52
a687059c 53program : junk hunks
54 { root = oper4(OPROG,$1,begins,$2,ends); }
8d063cd8 55 ;
56
378cc40b 57begin : BEGIN '{' maybe states '}' junk
a687059c 58 { begins = oper4(OJUNK,begins,$3,$4,$6); in_begin = FALSE;
59 $$ = Nullop; }
8d063cd8 60 ;
61
378cc40b 62end : END '{' maybe states '}'
a687059c 63 { ends = oper3(OJUNK,ends,$3,$4); $$ = Nullop; }
8d063cd8 64 | end NEWLINE
65 { $$ = $1; }
8d063cd8 66 ;
67
68hunks : hunks hunk junk
69 { $$ = oper3(OHUNKS,$1,$2,$3); }
70 | /* NULL */
71 { $$ = Nullop; }
72 ;
73
74hunk : patpat
75 { $$ = oper1(OHUNK,$1); need_entire = TRUE; }
378cc40b 76 | patpat '{' maybe states '}'
77 { $$ = oper2(OHUNK,$1,oper2(OJUNK,$3,$4)); }
a687059c 78 | FUNCTION USERFUN '(' arg_list ')' maybe '{' maybe states '}'
79 { fixfargs($2,$4,0); $$ = oper5(OUSERDEF,$2,$4,$6,$8,$9); }
378cc40b 80 | '{' maybe states '}'
81 { $$ = oper2(OHUNK,Nullop,oper2(OJUNK,$2,$3)); }
a687059c 82 | begin
83 | end
84 ;
85
86arg_list: expr_list
87 { $$ = rememberargs($$); }
8d063cd8 88 ;
89
90patpat : pat
91 { $$ = oper1(OPAT,$1); }
92 | pat ',' pat
93 { $$ = oper2(ORANGE,$1,$3); }
94 ;
95
a687059c 96pat : match
8d063cd8 97 | rel
98 | compound_pat
99 ;
100
101compound_pat
102 : '(' compound_pat ')'
103 { $$ = oper1(OPPAREN,$2); }
a687059c 104 | pat ANDAND maybe pat
105 { $$ = oper3(OPANDAND,$1,$3,$4); }
106 | pat OROR maybe pat
107 { $$ = oper3(OPOROR,$1,$3,$4); }
8d063cd8 108 | NOT pat
109 { $$ = oper1(OPNOT,$2); }
110 ;
111
112cond : expr
113 | match
114 | rel
115 | compound_cond
116 ;
117
118compound_cond
119 : '(' compound_cond ')'
120 { $$ = oper1(OCPAREN,$2); }
a687059c 121 | cond ANDAND maybe cond
122 { $$ = oper3(OCANDAND,$1,$3,$4); }
123 | cond OROR maybe cond
124 { $$ = oper3(OCOROR,$1,$3,$4); }
8d063cd8 125 | NOT cond
126 { $$ = oper1(OCNOT,$2); }
127 ;
128
129rel : expr RELOP expr
130 { $$ = oper3(ORELOP,$2,$1,$3); }
a687059c 131 | expr '>' expr
132 { $$ = oper3(ORELOP,string(">",1),$1,$3); }
133 | expr '<' expr
134 { $$ = oper3(ORELOP,string("<",1),$1,$3); }
8d063cd8 135 | '(' rel ')'
136 { $$ = oper1(ORPAREN,$2); }
137 ;
138
a687059c 139match : expr MATCHOP expr
140 { $$ = oper3(OMATCHOP,$2,$1,$3); }
141 | expr MATCHOP REGEX
378cc40b 142 { $$ = oper3(OMATCHOP,$2,$1,oper1(OREGEX,$3)); }
a687059c 143 | REGEX %prec MATCHOP
144 { $$ = oper1(OREGEX,$1); }
8d063cd8 145 | '(' match ')'
146 { $$ = oper1(OMPAREN,$2); }
147 ;
148
149expr : term
150 { $$ = $1; }
151 | expr term
152 { $$ = oper2(OCONCAT,$1,$2); }
153 | variable ASGNOP expr
154 { $$ = oper3(OASSIGN,$2,$1,$3);
155 if ((ops[$1].ival & 255) == OFLD)
156 lval_field = TRUE;
157 if ((ops[$1].ival & 255) == OVFLD)
158 lval_field = TRUE;
159 }
160 ;
161
162term : variable
163 { $$ = $1; }
a687059c 164 | NUMBER
165 { $$ = oper1(ONUM,$1); }
166 | STRING
167 { $$ = oper1(OSTR,$1); }
8d063cd8 168 | term '+' term
169 { $$ = oper2(OADD,$1,$3); }
170 | term '-' term
a687059c 171 { $$ = oper2(OSUBTRACT,$1,$3); }
8d063cd8 172 | term '*' term
173 { $$ = oper2(OMULT,$1,$3); }
174 | term '/' term
175 { $$ = oper2(ODIV,$1,$3); }
176 | term '%' term
177 { $$ = oper2(OMOD,$1,$3); }
a687059c 178 | term '^' term
179 { $$ = oper2(OPOW,$1,$3); }
180 | term IN VAR
181 { $$ = oper2(ODEFINED,aryrefarg($3),$1); }
182 | term '?' term ':' term
183 { $$ = oper2(OCOND,$1,$3,$5); }
8d063cd8 184 | variable INCR
185 { $$ = oper1(OPOSTINCR,$1); }
186 | variable DECR
187 { $$ = oper1(OPOSTDECR,$1); }
188 | INCR variable
189 { $$ = oper1(OPREINCR,$2); }
190 | DECR variable
191 { $$ = oper1(OPREDECR,$2); }
192 | '-' term %prec UMINUS
193 { $$ = oper1(OUMINUS,$2); }
194 | '+' term %prec UMINUS
195 { $$ = oper1(OUPLUS,$2); }
196 | '(' expr ')'
197 { $$ = oper1(OPAREN,$2); }
198 | GETLINE
199 { $$ = oper0(OGETLINE); }
a687059c 200 | GETLINE VAR
201 { $$ = oper1(OGETLINE,$2); }
202 | GETLINE '<' expr
203 { $$ = oper3(OGETLINE,Nullop,string("<",1),$3);
204 if (ops[$3].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
205 | GETLINE VAR '<' expr
206 { $$ = oper3(OGETLINE,$2,string("<",1),$4);
207 if (ops[$4].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
208 | term 'p' GETLINE
209 { $$ = oper3(OGETLINE,Nullop,string("|",1),$1);
210 if (ops[$1].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
211 | term 'p' GETLINE VAR
212 { $$ = oper3(OGETLINE,$4,string("|",1),$1);
213 if (ops[$1].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
8d063cd8 214 | FUN1
215 { $$ = oper0($1); need_entire = do_chop = TRUE; }
216 | FUN1 '(' ')'
217 { $$ = oper1($1,Nullop); need_entire = do_chop = TRUE; }
218 | FUN1 '(' expr ')'
219 { $$ = oper1($1,$3); }
a687059c 220 | FUNN '(' expr_list ')'
221 { $$ = oper1($1,$3); }
222 | USERFUN '(' expr_list ')'
223 { $$ = oper2(OUSERFUN,$1,$3); }
224 | SPRINTF expr_list
8d063cd8 225 { $$ = oper1(OSPRINTF,$2); }
226 | SUBSTR '(' expr ',' expr ',' expr ')'
227 { $$ = oper3(OSUBSTR,$3,$5,$7); }
228 | SUBSTR '(' expr ',' expr ')'
229 { $$ = oper2(OSUBSTR,$3,$5); }
230 | SPLIT '(' expr ',' VAR ',' expr ')'
a687059c 231 { $$ = oper3(OSPLIT,$3,aryrefarg(numary($5)),$7); }
8d063cd8 232 | SPLIT '(' expr ',' VAR ')'
a687059c 233 { $$ = oper2(OSPLIT,$3,aryrefarg(numary($5))); }
8d063cd8 234 | INDEX '(' expr ',' expr ')'
235 { $$ = oper2(OINDEX,$3,$5); }
a687059c 236 | MATCH '(' expr ',' REGEX ')'
237 { $$ = oper2(OMATCH,$3,oper1(OREGEX,$5)); }
238 | MATCH '(' expr ',' expr ')'
239 { $$ = oper2(OMATCH,$3,$5); }
240 | SUB '(' expr ',' expr ')'
241 { $$ = oper2(OSUB,$3,$5); }
242 | SUB '(' REGEX ',' expr ')'
243 { $$ = oper2(OSUB,oper1(OREGEX,$3),$5); }
244 | GSUB '(' expr ',' expr ')'
245 { $$ = oper2(OGSUB,$3,$5); }
246 | GSUB '(' REGEX ',' expr ')'
247 { $$ = oper2(OGSUB,oper1(OREGEX,$3),$5); }
248 | SUB '(' expr ',' expr ',' expr ')'
249 { $$ = oper3(OSUB,$3,$5,$7); }
250 | SUB '(' REGEX ',' expr ',' expr ')'
251 { $$ = oper3(OSUB,oper1(OREGEX,$3),$5,$7); }
252 | GSUB '(' expr ',' expr ',' expr ')'
253 { $$ = oper3(OGSUB,$3,$5,$7); }
254 | GSUB '(' REGEX ',' expr ',' expr ')'
255 { $$ = oper3(OGSUB,oper1(OREGEX,$3),$5,$7); }
8d063cd8 256 ;
257
a687059c 258variable: VAR
8d063cd8 259 { $$ = oper1(OVAR,$1); }
a687059c 260 | VAR '[' expr_list ']'
261 { $$ = oper2(OVAR,aryrefarg($1),$3); }
8d063cd8 262 | FIELD
263 { $$ = oper1(OFLD,$1); }
264 | VFIELD term
265 { $$ = oper1(OVFLD,$2); }
266 ;
267
a687059c 268expr_list
8d063cd8 269 : expr
270 | clist
271 | /* NULL */
272 { $$ = Nullop; }
273 ;
274
a687059c 275clist : expr ',' maybe expr
276 { $$ = oper3(OCOMMA,$1,$3,$4); }
277 | clist ',' maybe expr
278 { $$ = oper3(OCOMMA,$1,$3,$4); }
8d063cd8 279 | '(' clist ')' /* these parens are invisible */
280 { $$ = $2; }
281 ;
282
283junk : junk hunksep
284 { $$ = oper2(OJUNK,$1,$2); }
285 | /* NULL */
286 { $$ = Nullop; }
287 ;
288
289hunksep : ';'
a687059c 290 { $$ = oper2(OJUNK,oper0(OSEMICOLON),oper0(ONEWLINE)); }
8d063cd8 291 | SEMINEW
a687059c 292 { $$ = oper2(OJUNK,oper0(OSEMICOLON),oper0(ONEWLINE)); }
8d063cd8 293 | NEWLINE
294 { $$ = oper0(ONEWLINE); }
295 | COMMENT
296 { $$ = oper1(OCOMMENT,$1); }
297 ;
298
378cc40b 299maybe : maybe nlstuff
300 { $$ = oper2(OJUNK,$1,$2); }
301 | /* NULL */
302 { $$ = Nullop; }
303 ;
304
305nlstuff : NEWLINE
306 { $$ = oper0(ONEWLINE); }
8d063cd8 307 | COMMENT
378cc40b 308 { $$ = oper1(OCOMMENT,$1); }
309 ;
310
311separator
312 : ';' maybe
313 { $$ = oper2(OJUNK,oper0(OSEMICOLON),$2); }
314 | SEMINEW maybe
315 { $$ = oper2(OJUNK,oper0(OSNEWLINE),$2); }
316 | NEWLINE maybe
317 { $$ = oper2(OJUNK,oper0(OSNEWLINE),$2); }
318 | COMMENT maybe
319 { $$ = oper2(OJUNK,oper1(OSCOMMENT,$1),$2); }
8d063cd8 320 ;
321
322states : states statement
323 { $$ = oper2(OSTATES,$1,$2); }
324 | /* NULL */
325 { $$ = Nullop; }
326 ;
327
328statement
378cc40b 329 : simple separator maybe
330 { $$ = oper2(OJUNK,oper2(OSTATE,$1,$2),$3); }
331 | ';' maybe
332 { $$ = oper2(OSTATE,Nullop,oper2(OJUNK,oper0(OSEMICOLON),$2)); }
333 | SEMINEW maybe
334 { $$ = oper2(OSTATE,Nullop,oper2(OJUNK,oper0(OSNEWLINE),$2)); }
8d063cd8 335 | compound
336 ;
337
378cc40b 338simpnull: simple
339 | /* NULL */
340 { $$ = Nullop; }
341 ;
342
8d063cd8 343simple
344 : expr
a687059c 345 | PRINT expr_list redir expr
8d063cd8 346 { $$ = oper3(OPRINT,$2,$3,$4);
347 do_opens = TRUE;
348 saw_ORS = saw_OFS = TRUE;
349 if (!$2) need_entire = TRUE;
350 if (ops[$4].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
a687059c 351 | PRINT expr_list
8d063cd8 352 { $$ = oper1(OPRINT,$2);
353 if (!$2) need_entire = TRUE;
354 saw_ORS = saw_OFS = TRUE;
355 }
a687059c 356 | PRINTF expr_list redir expr
8d063cd8 357 { $$ = oper3(OPRINTF,$2,$3,$4);
358 do_opens = TRUE;
359 if (!$2) need_entire = TRUE;
360 if (ops[$4].ival != OSTR + (1<<8)) do_fancy_opens = TRUE; }
a687059c 361 | PRINTF expr_list
8d063cd8 362 { $$ = oper1(OPRINTF,$2);
363 if (!$2) need_entire = TRUE;
364 }
365 | BREAK
366 { $$ = oper0(OBREAK); }
367 | NEXT
368 { $$ = oper0(ONEXT); }
369 | EXIT
370 { $$ = oper0(OEXIT); }
371 | EXIT expr
372 { $$ = oper1(OEXIT,$2); }
373 | CONTINUE
374 { $$ = oper0(OCONTINUE); }
a687059c 375 | RET
376 { $$ = oper0(ORETURN); }
377 | RET expr
378 { $$ = oper1(ORETURN,$2); }
379 | DELETE VAR '[' expr ']'
380 { $$ = oper2(ODELETE,aryrefarg($2),$4); }
8d063cd8 381 ;
382
a687059c 383redir : '>' %prec FIELD
384 { $$ = oper1(OREDIR,$1); }
8d063cd8 385 | GRGR
386 { $$ = oper1(OREDIR,string(">>",2)); }
387 | '|'
388 { $$ = oper1(OREDIR,string("|",1)); }
389 ;
390
391compound
392 : IF '(' cond ')' maybe statement
393 { $$ = oper2(OIF,$3,bl($6,$5)); }
394 | IF '(' cond ')' maybe statement ELSE maybe statement
395 { $$ = oper3(OIF,$3,bl($6,$5),bl($9,$8)); }
396 | WHILE '(' cond ')' maybe statement
397 { $$ = oper2(OWHILE,$3,bl($6,$5)); }
a687059c 398 | DO maybe statement WHILE '(' cond ')'
399 { $$ = oper2(ODO,bl($3,$2),$6); }
378cc40b 400 | FOR '(' simpnull ';' cond ';' simpnull ')' maybe statement
8d063cd8 401 { $$ = oper4(OFOR,$3,$5,$7,bl($10,$9)); }
378cc40b 402 | FOR '(' simpnull ';' ';' simpnull ')' maybe statement
8d063cd8 403 { $$ = oper4(OFOR,$3,string("",0),$6,bl($9,$8)); }
a687059c 404 | FOR '(' expr ')' maybe statement
405 { $$ = oper2(OFORIN,$3,bl($6,$5)); }
378cc40b 406 | '{' maybe states '}' maybe
407 { $$ = oper3(OBLOCK,oper2(OJUNK,$2,$3),Nullop,$5); }
8d063cd8 408 ;
409
410%%
411#include "a2py.c"