This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Don’t assign PL_curstash twice in init_main_stash
[perl5.git] / perly.y
CommitLineData
a0d0e21e 1/* perly.y
a687059c 2 *
f05e27e5 3 * Copyright (c) 1991-2002, 2003, 2004, 2005, 2006 Larry Wall
2eee27d7 4 * Copyright (c) 2007, 2008, 2009, 2010, 2011 by Larry Wall and others
a687059c 5 *
9ef589d8
LW
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.
8d063cd8 8 *
a0d0e21e
LW
9 */
10
11/*
12 * 'I see,' laughed Strider. 'I look foul and feel fair. Is that it?
4ac71550 13 * All that is gold does not glitter, not all those who wander are lost.'
f05e27e5 14 *
4ac71550
TC
15 * [p.171 of _The Lord of the Rings_, I/x: "Strider"]
16 */
17
18/*
f05e27e5 19 * This file holds the grammar for the Perl language. If edited, you need
166f8a29
DM
20 * to run regen_perly.pl, which re-creates the files perly.h, perly.tab
21 * and perly.act which are derived from this.
22 *
23 * The main job of of this grammar is to call the various newFOO()
24 * functions in op.c to build a syntax tree of OP structs.
61296642 25 * It relies on the lexer in toke.c to do the tokenizing.
29522234
DM
26 *
27 * Note: due to the way that the cleanup code works WRT to freeing ops on
28 * the parse stack, it is dangerous to assign to the $n variables within
29 * an action.
166f8a29
DM
30 */
31
0de566d7 32/* Make the parser re-entrant. */
8d063cd8 33
f39ff1f3 34%pure-parser
8d063cd8 35
28ac2b49 36%start grammar
9d116dd7 37
8d063cd8 38%union {
d5c6462e
DM
39 I32 ival; /* __DEFAULT__ (marker for regen_perly.pl;
40 must always be 1st union member) */
79072805
LW
41 char *pval;
42 OP *opval;
43 GV *gvval;
8d063cd8
LW
44}
45
78cdf107 46%token <ival> GRAMPROG GRAMEXPR GRAMBLOCK GRAMBARESTMT GRAMFULLSTMT GRAMSTMTSEQ
28ac2b49 47
f10ebf6c 48%token <ival> '{' '}' '[' ']' '-' '+' '@' '%' '&' '=' '.'
f0fcb552 49
185c2e96 50%token <opval> BAREWORD METHOD FUNCMETH THING PMFUNC PRIVATEREF QWLIST
7eb971ee 51%token <opval> FUNC0OP FUNC0SUB UNIOPSUB LSTOPSUB
88e1f1a2 52%token <opval> PLUGEXPR PLUGSTMT
b5bbe64a
JH
53%token <pval> LABEL
54%token <ival> FORMAT SUB ANONSUB PACKAGE USE
55%token <ival> WHILE UNTIL IF UNLESS ELSE ELSIF CONTINUE FOR
56%token <ival> GIVEN WHEN DEFAULT
57%token <ival> LOOPEX DOTDOT YADAYADA
58%token <ival> FUNC0 FUNC1 FUNC UNIOP LSTOP
59%token <ival> RELOP EQOP MULOP ADDOP
60%token <ival> DOLSHARP DO HASHBRACK NOAMP
61%token <ival> LOCAL MY REQUIRE
62%token <ival> COLONATTR FORMLBRACK FORMRBRACK
f05e27e5 63
727a8fe5 64%type <ival> grammar remember mremember
f05e27e5 65%type <ival> startsub startanonsub startformsub
b5bbe64a 66
b5a64814 67%type <ival> mintro
f05e27e5 68
8e720305 69%type <opval> stmtseq fullstmt labfullstmt barestmt block mblock else
fad39ff1 70%type <opval> expr term subscripted scalar ary hsh arylen star amper sideff
76eba8ab 71%type <opval> sliceme kvslice gelem
08b3e84f 72%type <opval> listexpr nexpr texpr iexpr mexpr mnexpr
9b6b7be8 73%type <opval> optlistexpr optexpr optrepl indirob listop method
d39c26a6
FC
74%type <opval> formname subname proto optsubbody cont my_scalar my_var
75%type <opval> refgen_topic formblock
f05e27e5 76%type <opval> subattrlist myattrlist myattrterm myterm
d3d9da4a
DM
77%type <opval> termbinop termunop anonymous termdo
78%type <ival> sigslurpsigil
79%type <opval> sigvarname sigdefault sigscalarelem sigslurpelem
80%type <opval> sigelem siglist siglistornull subsignature
705fe0e5 81%type <opval> formstmtseq formline formarg
79072805 82
b5bbe64a 83%nonassoc <ival> PREC_LOW
fad39ff1
SM
84%nonassoc LOOPEX
85
b5bbe64a
JH
86%left <ival> OROP DOROP
87%left <ival> ANDOP
88%right <ival> NOTOP
36477c24 89%nonassoc LSTOP LSTOPSUB
b5bbe64a
JH
90%left <ival> ','
91%right <ival> ASSIGNOP
92%right <ival> '?' ':'
be25f609 93%nonassoc DOTDOT YADAYADA
b5bbe64a
JH
94%left <ival> OROR DORDOR
95%left <ival> ANDAND
96%left <ival> BITOROP
97%left <ival> BITANDOP
a687059c
LW
98%nonassoc EQOP
99%nonassoc RELOP
36477c24 100%nonassoc UNIOP UNIOPSUB
20515881 101%nonassoc REQUIRE
b5bbe64a 102%left <ival> SHIFTOP
a687059c
LW
103%left ADDOP
104%left MULOP
b5bbe64a
JH
105%left <ival> MATCHOP
106%right <ival> '!' '~' UMINUS REFGEN
107%right <ival> POWOP
108%nonassoc <ival> PREINC PREDEC POSTINC POSTDEC POSTJOIN
109%left <ival> ARROW
110%nonassoc <ival> ')'
111%left <ival> '('
fad39ff1 112%left '[' '{'
8d063cd8
LW
113
114%% /* RULES */
115
28ac2b49 116/* Top-level choice of what kind of thing yyparse was called to parse */
727a8fe5
Z
117grammar : GRAMPROG
118 {
624fa8bd 119 parser->expect = XSTATE;
5a2060e2 120 $<ival>$ = 0;
727a8fe5
Z
121 }
122 remember stmtseq
123 {
124 newPROG(block_end($3,$4));
8635e3c2 125 PL_compiling.cop_seq = 0;
727a8fe5
Z
126 $$ = 0;
127 }
78cdf107
Z
128 | GRAMEXPR
129 {
130 parser->expect = XTERM;
5a2060e2 131 $<ival>$ = 0;
78cdf107 132 }
09b1cffe 133 optexpr
78cdf107
Z
134 {
135 PL_eval_root = $3;
136 $$ = 0;
137 }
e53d8f76
Z
138 | GRAMBLOCK
139 {
140 parser->expect = XBLOCK;
5a2060e2 141 $<ival>$ = 0;
e53d8f76
Z
142 }
143 block
144 {
5f211341 145 PL_pad_reset_pending = TRUE;
8359b381
Z
146 PL_eval_root = $3;
147 $$ = 0;
148 yyunlex();
0f8490d1 149 parser->yychar = yytoken = YYEOF;
8359b381
Z
150 }
151 | GRAMBARESTMT
152 {
153 parser->expect = XSTATE;
5a2060e2 154 $<ival>$ = 0;
8359b381
Z
155 }
156 barestmt
157 {
158 PL_pad_reset_pending = TRUE;
e53d8f76
Z
159 PL_eval_root = $3;
160 $$ = 0;
161 yyunlex();
0f8490d1 162 parser->yychar = yytoken = YYEOF;
e53d8f76 163 }
9eb5c532 164 | GRAMFULLSTMT
28ac2b49 165 {
9eb5c532 166 parser->expect = XSTATE;
5a2060e2 167 $<ival>$ = 0;
9eb5c532
Z
168 }
169 fullstmt
170 {
5f211341 171 PL_pad_reset_pending = TRUE;
9eb5c532 172 PL_eval_root = $3;
28ac2b49
Z
173 $$ = 0;
174 yyunlex();
0f8490d1 175 parser->yychar = yytoken = YYEOF;
28ac2b49 176 }
07ffcb73
Z
177 | GRAMSTMTSEQ
178 {
179 parser->expect = XSTATE;
5a2060e2 180 $<ival>$ = 0;
07ffcb73 181 }
5f211341 182 stmtseq
07ffcb73
Z
183 {
184 PL_eval_root = $3;
185 $$ = 0;
186 }
187 ;
188
891be019 189/* An ordinary block */
5f211341 190block : '{' remember stmtseq '}'
624fa8bd
FC
191 { if (parser->copline > (line_t)$1)
192 parser->copline = (line_t)$1;
f05e27e5 193 $$ = block_end($2, $3);
f05e27e5 194 }
a0d0e21e
LW
195 ;
196
7c70caa5 197/* format body */
705fe0e5 198formblock: '=' remember ';' FORMRBRACK formstmtseq ';' '.'
624fa8bd
FC
199 { if (parser->copline > (line_t)$1)
200 parser->copline = (line_t)$1;
705fe0e5 201 $$ = block_end($2, $5);
7c70caa5
FC
202 }
203 ;
204
55497cff 205remember: /* NULL */ /* start a full lexical scope */
34b54951
FC
206 { $$ = block_start(TRUE);
207 parser->parsed_sub = 0; }
55497cff 208 ;
209
5f211341 210mblock : '{' mremember stmtseq '}'
624fa8bd
FC
211 { if (parser->copline > (line_t)$1)
212 parser->copline = (line_t)$1;
f05e27e5 213 $$ = block_end($2, $3);
f05e27e5 214 }
55497cff 215 ;
216
217mremember: /* NULL */ /* start a partial lexical scope */
34b54951
FC
218 { $$ = block_start(FALSE);
219 parser->parsed_sub = 0; }
8d063cd8
LW
220 ;
221
eae48c89 222/* A sequence of statements in the program */
5f211341 223stmtseq : /* NULL */
a9f5ab8d 224 { $$ = NULL; }
5f211341 225 | stmtseq fullstmt
2fcb4757 226 { $$ = op_append_list(OP_LINESEQ, $1, $2);
3280af22 227 PL_pad_reset_pending = TRUE;
503de470
DM
228 if ($1 && $2)
229 PL_hints |= HINT_BLOCK_SCOPE;
230 }
8d063cd8
LW
231 ;
232
705fe0e5
FC
233/* A sequence of format lines */
234formstmtseq: /* NULL */
a9f5ab8d 235 { $$ = NULL; }
705fe0e5
FC
236 | formstmtseq formline
237 { $$ = op_append_list(OP_LINESEQ, $1, $2);
238 PL_pad_reset_pending = TRUE;
239 if ($1 && $2)
240 PL_hints |= HINT_BLOCK_SCOPE;
241 }
242 ;
243
8e720305
Z
244/* A statement in the program, including optional labels */
245fullstmt: barestmt
eae48c89 246 {
b5bbe64a 247 $$ = $1 ? newSTATEOP(0, NULL, $1) : NULL;
eae48c89 248 }
8e720305
Z
249 | labfullstmt
250 { $$ = $1; }
251 ;
252
253labfullstmt: LABEL barestmt
254 {
b5bbe64a 255 $$ = newSTATEOP(SVf_UTF8 * $1[strlen($1)+1], $1, $2);
8e720305
Z
256 }
257 | LABEL labfullstmt
258 {
b5bbe64a 259 $$ = newSTATEOP(SVf_UTF8 * $1[strlen($1)+1], $1, $2);
8e720305 260 }
eae48c89
Z
261 ;
262
263/* A bare statement, lacking label and other aspects of state op */
264barestmt: PLUGSTMT
0d863452 265 { $$ = $1; }
7c70caa5 266 | FORMAT startformsub formname formblock
f05e27e5 267 {
eae48c89 268 CV *fmtcv = PL_compcv;
eae48c89 269 newFORM($2, $3, $4);
a9f5ab8d 270 $$ = NULL;
4a273b91 271 if (CvOUTSIDE(fmtcv) && !CvEVAL(CvOUTSIDE(fmtcv))) {
74a9453a 272 pad_add_weakref(fmtcv);
f05e27e5 273 }
8b9fb2f9 274 parser->parsed_sub = 1;
eae48c89 275 }
50278755
FC
276 | SUB subname startsub
277 {
278 if ($2->op_type == OP_CONST) {
279 const char *const name =
280 SvPV_nolen_const(((SVOP*)$2)->op_sv);
281 if (strEQ(name, "BEGIN") || strEQ(name, "END")
764212cf
FC
282 || strEQ(name, "INIT") || strEQ(name, "CHECK")
283 || strEQ(name, "UNITCHECK"))
284 CvSPECIAL_on(PL_compcv);
50278755 285 }
e07561e6
FC
286 else
287 /* State subs inside anonymous subs need to be
288 clonable themselves. */
6d5c2147
FC
289 if (CvANON(CvOUTSIDE(PL_compcv))
290 || CvCLONE(CvOUTSIDE(PL_compcv))
291 || !PadnameIsSTATE(PadlistNAMESARRAY(CvPADLIST(
292 CvOUTSIDE(PL_compcv)
293 ))[$2->op_targ]))
e07561e6 294 CvCLONE_on(PL_compcv);
624fa8bd
FC
295 parser->in_my = 0;
296 parser->in_my_stash = NULL;
764212cf 297 }
30d9c59b 298 proto subattrlist optsubbody
eae48c89
Z
299 {
300 SvREFCNT_inc_simple_void(PL_compcv);
50278755
FC
301 $2->op_type == OP_CONST
302 ? newATTRSUB($3, $2, $5, $6, $7)
303 : newMYSUB($3, $2, $5, $6, $7)
50278755 304 ;
a9f5ab8d 305 $$ = NULL;
764212cf 306 intro_my();
34b54951 307 parser->parsed_sub = 1;
f05e27e5 308 }
abcf453d
PM
309 | SUB subname startsub
310 {
311 if ($2->op_type == OP_CONST) {
312 const char *const name =
313 SvPV_nolen_const(((SVOP*)$2)->op_sv);
314 if (strEQ(name, "BEGIN") || strEQ(name, "END")
315 || strEQ(name, "INIT") || strEQ(name, "CHECK")
316 || strEQ(name, "UNITCHECK"))
317 CvSPECIAL_on(PL_compcv);
318 }
319 else
320 /* State subs inside anonymous subs need to be
321 clonable themselves. */
322 if (CvANON(CvOUTSIDE(PL_compcv))
323 || CvCLONE(CvOUTSIDE(PL_compcv))
324 || !PadnameIsSTATE(PadlistNAMESARRAY(CvPADLIST(
325 CvOUTSIDE(PL_compcv)
326 ))[$2->op_targ]))
327 CvCLONE_on(PL_compcv);
328 parser->in_my = 0;
329 parser->in_my_stash = NULL;
330 }
331 remember subsignature subattrlist '{' stmtseq '}'
332 {
333 OP *body;
334 if (parser->copline > (line_t)$8)
335 parser->copline = (line_t)$8;
336 body = block_end($5,
337 op_append_list(OP_LINESEQ, $6, $9));
338
339 SvREFCNT_inc_simple_void(PL_compcv);
340 $2->op_type == OP_CONST
341 ? newATTRSUB($3, $2, NULL, $7, body)
342 : newMYSUB($3, $2, NULL, $7, body)
343 ;
a9f5ab8d 344 $$ = NULL;
abcf453d
PM
345 intro_my();
346 parser->parsed_sub = 1;
347 }
185c2e96 348 | PACKAGE BAREWORD BAREWORD ';'
5f211341 349 {
eae48c89
Z
350 package($3);
351 if ($2)
352 package_version($2);
a9f5ab8d 353 $$ = NULL;
eae48c89
Z
354 }
355 | USE startsub
356 { CvSPECIAL_on(PL_compcv); /* It's a BEGIN {} */ }
185c2e96 357 BAREWORD BAREWORD optlistexpr ';'
eae48c89
Z
358 {
359 SvREFCNT_inc_simple_void(PL_compcv);
b5bbe64a 360 utilize($1, $2, $4, $5, $6);
34b54951 361 parser->parsed_sub = 1;
a9f5ab8d 362 $$ = NULL;
eae48c89 363 }
417a992d 364 | IF '(' remember mexpr ')' mblock else
eae48c89 365 {
3ad73efd
Z
366 $$ = block_end($3,
367 newCONDOP(0, $4, op_scope($6), $7));
624fa8bd 368 parser->copline = (line_t)$1;
eae48c89 369 }
08b3e84f 370 | UNLESS '(' remember mexpr ')' mblock else
eae48c89 371 {
3ad73efd 372 $$ = block_end($3,
08b3e84f 373 newCONDOP(0, $4, $7, op_scope($6)));
624fa8bd 374 parser->copline = (line_t)$1;
eae48c89 375 }
b5a64814 376 | GIVEN '(' remember mexpr ')' mblock
eae48c89 377 {
5d051ee0 378 $$ = block_end($3, newGIVENOP($4, op_scope($6), 0));
624fa8bd 379 parser->copline = (line_t)$1;
eae48c89 380 }
417a992d 381 | WHEN '(' remember mexpr ')' mblock
3ad73efd 382 { $$ = block_end($3, newWHENOP($4, op_scope($6))); }
eae48c89 383 | DEFAULT block
3ad73efd 384 { $$ = newWHENOP(0, op_scope($2)); }
417a992d 385 | WHILE '(' remember texpr ')' mintro mblock cont
eae48c89
Z
386 {
387 $$ = block_end($3,
a9f5ab8d 388 newWHILEOP(0, 1, NULL,
94bf0465 389 $4, $7, $8, $6));
624fa8bd 390 parser->copline = (line_t)$1;
eae48c89 391 }
417a992d 392 | UNTIL '(' remember iexpr ')' mintro mblock cont
eae48c89
Z
393 {
394 $$ = block_end($3,
a9f5ab8d 395 newWHILEOP(0, 1, NULL,
94bf0465 396 $4, $7, $8, $6));
624fa8bd 397 parser->copline = (line_t)$1;
eae48c89 398 }
2d0e3c96
FC
399 | FOR '(' remember mnexpr ';'
400 { parser->expect = XTERM; }
401 texpr ';'
402 { parser->expect = XTERM; }
403 mintro mnexpr ')'
eae48c89
Z
404 mblock
405 {
b5bbe64a 406 OP *initop = $4;
a9f5ab8d 407 OP *forop = newWHILEOP(0, 1, NULL,
2d0e3c96 408 scalar($7), $13, $11, $10);
eae48c89
Z
409 if (initop) {
410 forop = op_prepend_elem(OP_LINESEQ, initop,
411 op_append_elem(OP_LINESEQ,
412 newOP(OP_UNSTACK, OPf_SPECIAL),
413 forop));
5f211341 414 }
0f602692 415 PL_hints |= HINT_BLOCK_SCOPE;
eae48c89 416 $$ = block_end($3, forop);
624fa8bd 417 parser->copline = (line_t)$1;
eae48c89 418 }
417a992d 419 | FOR MY remember my_scalar '(' mexpr ')' mblock cont
eae48c89 420 {
94bf0465 421 $$ = block_end($3, newFOROP(0, $4, $6, $8, $9));
624fa8bd 422 parser->copline = (line_t)$1;
eae48c89 423 }
417a992d 424 | FOR scalar '(' remember mexpr ')' mblock cont
eae48c89 425 {
94bf0465 426 $$ = block_end($4, newFOROP(0,
3ad73efd 427 op_lvalue($2, OP_ENTERLOOP), $5, $7, $8));
624fa8bd 428 parser->copline = (line_t)$1;
eae48c89 429 }
e118fea3
FC
430 | FOR my_refgen remember my_var
431 { parser->in_my = 0; $<opval>$ = my($4); }
d39c26a6
FC
432 '(' mexpr ')' mblock cont
433 {
434 $$ = block_end(
e118fea3 435 $3,
d39c26a6
FC
436 newFOROP(0,
437 op_lvalue(
438 newUNOP(OP_REFGEN, 0,
e118fea3 439 $<opval>5),
d39c26a6 440 OP_ENTERLOOP),
e118fea3 441 $7, $9, $10)
d39c26a6
FC
442 );
443 parser->copline = (line_t)$1;
444 }
445 | FOR REFGEN refgen_topic '(' remember mexpr ')' mblock cont
446 {
447 $$ = block_end($5, newFOROP(
448 0, op_lvalue(newUNOP(OP_REFGEN, 0,
96801525 449 $3),
d39c26a6
FC
450 OP_ENTERLOOP), $6, $8, $9));
451 parser->copline = (line_t)$1;
452 }
417a992d 453 | FOR '(' remember mexpr ')' mblock cont
eae48c89
Z
454 {
455 $$ = block_end($3,
a9f5ab8d 456 newFOROP(0, NULL, $4, $6, $7));
624fa8bd 457 parser->copline = (line_t)$1;
eae48c89
Z
458 }
459 | block cont
460 {
461 /* a block is a loop that happens once */
a9f5ab8d
LM
462 $$ = newWHILEOP(0, 1, NULL,
463 NULL, $1, $2, 0);
eae48c89 464 }
185c2e96 465 | PACKAGE BAREWORD BAREWORD '{' remember
eae48c89 466 {
eae48c89 467 package($3);
eae48c89 468 if ($2) {
eae48c89 469 package_version($2);
eae48c89
Z
470 }
471 }
472 stmtseq '}'
473 {
474 /* a block is a loop that happens once */
a9f5ab8d
LM
475 $$ = newWHILEOP(0, 1, NULL,
476 NULL, block_end($5, $7), NULL, 0);
624fa8bd
FC
477 if (parser->copline > (line_t)$4)
478 parser->copline = (line_t)$4;
eae48c89
Z
479 }
480 | sideff ';'
481 {
eae48c89 482 $$ = $1;
eae48c89
Z
483 }
484 | ';'
485 {
a9f5ab8d 486 $$ = NULL;
624fa8bd 487 parser->copline = NOLINE;
5f211341 488 }
8d063cd8
LW
489 ;
490
705fe0e5
FC
491/* Format line */
492formline: THING formarg
493 { OP *list;
494 if ($2) {
495 OP *term = $2;
705fe0e5
FC
496 list = op_append_elem(OP_LIST, $1, term);
497 }
498 else {
705fe0e5 499 list = $1;
705fe0e5 500 }
624fa8bd
FC
501 if (parser->copline == NOLINE)
502 parser->copline = CopLINE(PL_curcop)-1;
503 else parser->copline--;
705fe0e5 504 $$ = newSTATEOP(0, NULL,
03d05f6e 505 op_convert_list(OP_FORMLINE, 0, list));
705fe0e5
FC
506 }
507 ;
508
509formarg : /* NULL */
510 { $$ = NULL; }
511 | FORMLBRACK stmtseq FORMRBRACK
512 { $$ = op_unscope($2); }
513 ;
514
891be019 515/* An expression which may have a side-effect */
a687059c 516sideff : error
a9f5ab8d 517 { $$ = NULL; }
a687059c 518 | expr
79072805 519 { $$ = $1; }
a687059c 520 | expr IF expr
b5bbe64a 521 { $$ = newLOGOP(OP_AND, 0, $3, $1); }
a687059c 522 | expr UNLESS expr
b5bbe64a 523 { $$ = newLOGOP(OP_OR, 0, $3, $1); }
a687059c 524 | expr WHILE expr
b5bbe64a 525 { $$ = newLOOPOP(OPf_PARENS, 1, scalar($3), $1); }
55497cff 526 | expr UNTIL iexpr
b5bbe64a 527 { $$ = newLOOPOP(OPf_PARENS, 1, $3, $1); }
ecca16b0 528 | expr FOR expr
a9f5ab8d 529 { $$ = newFOROP(0, NULL, $3, $1, NULL);
624fa8bd 530 parser->copline = (line_t)$2; }
f20dcd76 531 | expr WHEN expr
3ad73efd 532 { $$ = newWHENOP($3, op_scope($1)); }
79072805
LW
533 ;
534
891be019 535/* else and elsif blocks */
79072805 536else : /* NULL */
a9f5ab8d 537 { $$ = NULL; }
55497cff 538 | ELSE mblock
3ad73efd
Z
539 {
540 ($2)->op_flags |= OPf_PARENS;
541 $$ = op_scope($2);
f05e27e5 542 }
417a992d 543 | ELSIF '(' mexpr ')' mblock else
624fa8bd 544 { parser->copline = (line_t)$1;
3ad73efd
Z
545 $$ = newCONDOP(0,
546 newSTATEOP(OPf_SPECIAL,NULL,$3),
547 op_scope($5), $6);
548 PL_hints |= HINT_BLOCK_SCOPE;
f05e27e5 549 }
79072805
LW
550 ;
551
891be019 552/* Continue blocks */
79072805 553cont : /* NULL */
a9f5ab8d 554 { $$ = NULL; }
79072805 555 | CONTINUE block
b5bbe64a 556 { $$ = op_scope($2); }
79072805
LW
557 ;
558
a034e688
DM
559/* determine whether there are any new my declarations */
560mintro : /* NULL */
561 { $$ = (PL_min_intro_pending &&
562 PL_max_intro_pending >= PL_min_intro_pending);
563 intro_my(); }
564
891be019 565/* Normal expression */
8d063cd8 566nexpr : /* NULL */
a9f5ab8d 567 { $$ = NULL; }
8d063cd8
LW
568 | sideff
569 ;
570
891be019 571/* Boolean expression */
8d063cd8 572texpr : /* NULL means true */
f05e27e5
DM
573 { YYSTYPE tmplval;
574 (void)scan_num("1", &tmplval);
575 $$ = tmplval.opval; }
8d063cd8
LW
576 | expr
577 ;
578
891be019 579/* Inverted boolean expression */
55497cff 580iexpr : expr
581 { $$ = invert(scalar($1)); }
582 ;
583
891be019 584/* Expression with its own lexical scope */
55497cff 585mexpr : expr
bbce6d69 586 { $$ = $1; intro_my(); }
587 ;
588
589mnexpr : nexpr
590 { $$ = $1; intro_my(); }
55497cff 591 ;
592
185c2e96 593formname: BAREWORD { $$ = $1; }
a9f5ab8d 594 | /* NULL */ { $$ = NULL; }
8d063cd8
LW
595 ;
596
fa83b5b6 597startsub: /* NULL */ /* start a regular subroutine scope */
a8ff2fa6
DM
598 { $$ = start_subparse(FALSE, 0);
599 SAVEFREESV(PL_compcv); }
f05e27e5 600
28757baa 601 ;
602
603startanonsub: /* NULL */ /* start an anonymous subroutine scope */
a8ff2fa6
DM
604 { $$ = start_subparse(FALSE, CVf_ANON);
605 SAVEFREESV(PL_compcv); }
28757baa 606 ;
607
44a8e56a 608startformsub: /* NULL */ /* start a format subroutine scope */
a8ff2fa6
DM
609 { $$ = start_subparse(TRUE, 0);
610 SAVEFREESV(PL_compcv); }
44a8e56a 611 ;
612
891be019 613/* Name of a subroutine - must be a bareword, could be special */
185c2e96 614subname : BAREWORD
4210d3f1 615 | PRIVATEREF
a0d0e21e
LW
616 ;
617
891be019 618/* Subroutine prototype */
4633a7c4 619proto : /* NULL */
a9f5ab8d 620 { $$ = NULL; }
4633a7c4
LW
621 | THING
622 ;
28757baa 623
891be019 624/* Optional list of subroutine attributes */
09bef843 625subattrlist: /* NULL */
a9f5ab8d 626 { $$ = NULL; }
09bef843 627 | COLONATTR THING
b5bbe64a 628 { $$ = $2; }
09bef843 629 | COLONATTR
a9f5ab8d 630 { $$ = NULL; }
09bef843
SB
631 ;
632
891be019 633/* List of attributes for a "my" variable declaration */
09bef843 634myattrlist: COLONATTR THING
b5bbe64a 635 { $$ = $2; }
09bef843 636 | COLONATTR
a9f5ab8d 637 { $$ = NULL; }
09bef843
SB
638 ;
639
abcf453d 640
d3d9da4a
DM
641
642/* --------------------------------------
643 * subroutine signature parsing
644 */
645
646/* the '' or 'foo' part of a '$' or '@foo' etc signature variable */
49fb8620 647sigvarname: /* NULL */
a9f5ab8d 648 { parser->in_my = 0; $$ = NULL; }
d3d9da4a 649 | PRIVATEREF
49fb8620 650 { parser->in_my = 0; $$ = $1; }
d3d9da4a
DM
651 ;
652
653sigslurpsigil:
654 '@'
655 { $$ = '@'; }
656 | '%'
657 { $$ = '%'; }
658
659/* @, %, @foo, %foo */
660sigslurpelem: sigslurpsigil sigvarname sigdefault/* def only to catch errors */
661 {
4fa06845
DM
662 I32 sigil = $1;
663 OP *var = $2;
d3d9da4a 664 OP *defexpr = $3;
d3d9da4a 665
036bbc13 666 if (parser->sig_slurpy)
d3d9da4a 667 yyerror("Multiple slurpy parameters not allowed");
036bbc13 668 parser->sig_slurpy = (char)sigil;
d3d9da4a
DM
669
670 if (defexpr)
bb6b75cd 671 yyerror("A slurpy parameter may not have "
d3d9da4a
DM
672 "a default value");
673
a9f5ab8d 674 $$ = var ? newSTATEOP(0, NULL, var) : NULL;
d3d9da4a
DM
675 }
676 ;
677
678/* default part of sub signature scalar element: i.e. '= default_expr' */
679sigdefault: /* NULL */
a9f5ab8d 680 { $$ = NULL; }
d3d9da4a
DM
681 | ASSIGNOP
682 { $$ = newOP(OP_NULL, 0); }
683 | ASSIGNOP term
684 { $$ = $2; }
685
686
687/* subroutine signature scalar element: e.g. '$x', '$=', '$x = $default' */
688sigscalarelem:
689 '$' sigvarname sigdefault
690 {
691 OP *var = $2;
692 OP *defexpr = $3;
d3d9da4a 693
036bbc13 694 if (parser->sig_slurpy)
d3d9da4a
DM
695 yyerror("Slurpy parameter not last");
696
036bbc13 697 parser->sig_elems++;
d3d9da4a 698
d3d9da4a 699 if (defexpr) {
036bbc13 700 parser->sig_optelems++;
4fa06845
DM
701
702 if ( defexpr->op_type == OP_NULL
d3d9da4a
DM
703 && !(defexpr->op_flags & OPf_KIDS))
704 {
4fa06845
DM
705 /* handle '$=' special case */
706 if (var)
707 yyerror("Optional parameter "
708 "lacks default expression");
d3d9da4a
DM
709 op_free(defexpr);
710 }
4fa06845
DM
711 else {
712 /* a normal '=default' expression */
713 OP *defop = (OP*)alloc_LOGOP(OP_ARGDEFELEM,
714 defexpr,
715 LINKLIST(defexpr));
716 /* re-purpose op_targ to hold @_ index */
6daeaaa3 717 defop->op_targ =
036bbc13 718 (PADOFFSET)(parser->sig_elems - 1);
4fa06845
DM
719
720 if (var) {
721 var->op_flags |= OPf_STACKED;
722 (void)op_sibling_splice(var,
723 NULL, 0, defop);
724 scalar(defop);
725 }
726 else
727 var = newUNOP(OP_NULL, 0, defop);
728
729 LINKLIST(var);
730 /* NB: normally the first child of a
731 * logop is executed before the logop,
732 * and it pushes a boolean result
733 * ready for the logop. For ARGDEFELEM,
734 * the op itself does the boolean
735 * calculation, so set the first op to
736 * it instead.
737 */
738 var->op_next = defop;
739 defexpr->op_next = var;
d3d9da4a
DM
740 }
741 }
742 else {
036bbc13 743 if (parser->sig_optelems)
d3d9da4a
DM
744 yyerror("Mandatory parameter "
745 "follows optional parameter");
d3d9da4a
DM
746 }
747
a9f5ab8d 748 $$ = var ? newSTATEOP(0, NULL, var) : NULL;
d3d9da4a
DM
749 }
750 ;
751
752
753/* subroutine signature element: e.g. '$x = $default' or '%h' */
754sigelem: sigscalarelem
49fb8620 755 { parser->in_my = KEY_sigvar; $$ = $1; }
d3d9da4a 756 | sigslurpelem
49fb8620 757 { parser->in_my = KEY_sigvar; $$ = $1; }
d3d9da4a
DM
758 ;
759
760/* list of subroutine signature elements */
761siglist:
762 siglist ','
763 { $$ = $1; }
764 | siglist ',' sigelem
30d9c59b 765 {
d3d9da4a 766 $$ = op_append_list(OP_LINESEQ, $1, $3);
30d9c59b 767 }
d3d9da4a
DM
768 | sigelem %prec PREC_LOW
769 { $$ = $1; }
30d9c59b
Z
770 ;
771
d3d9da4a
DM
772/* () or (....) */
773siglistornull: /* NULL */
a9f5ab8d 774 { $$ = NULL; }
d3d9da4a
DM
775 | siglist
776 { $$ = $1; }
777
778/* Subroutine signature */
779subsignature: '('
780 {
781 ENTER;
036bbc13
FC
782 SAVEIV(parser->sig_elems);
783 SAVEIV(parser->sig_optelems);
784 SAVEI8(parser->sig_slurpy);
785 parser->sig_elems = 0;
786 parser->sig_optelems = 0;
787 parser->sig_slurpy = 0;
49fb8620 788 parser->in_my = KEY_sigvar;
d3d9da4a
DM
789 }
790 siglistornull
791 ')'
792 {
4fa06845
DM
793 OP *sigops = $3;
794 UNOP_AUX_item *aux;
795 OP *check;
d3d9da4a 796
bdc377e5
FC
797 if (!parser->error_count) {
798 assert(FEATURE_SIGNATURES_IS_ENABLED);
799 }
d3d9da4a
DM
800
801 /* We shouldn't get here otherwise */
802 Perl_ck_warner_d(aTHX_
803 packWARN(WARN_EXPERIMENTAL__SIGNATURES),
804 "The signatures feature is experimental");
805
4fa06845
DM
806 aux = (UNOP_AUX_item*)PerlMemShared_malloc(
807 sizeof(UNOP_AUX_item) * 3);
036bbc13
FC
808 aux[0].iv = parser->sig_elems;
809 aux[1].iv = parser->sig_optelems;
810 aux[2].iv = parser->sig_slurpy;
4fa06845
DM
811 check = newUNOP_AUX(OP_ARGCHECK, 0, NULL, aux);
812 sigops = op_prepend_elem(OP_LINESEQ, check, sigops);
813 sigops = op_prepend_elem(OP_LINESEQ,
814 newSTATEOP(0, NULL, NULL),
815 sigops);
816 /* a nextstate at the end handles context
817 * correctly for an empty sub body */
818 $$ = op_append_elem(OP_LINESEQ,
819 sigops,
820 newSTATEOP(0, NULL, NULL));
d3d9da4a 821
49fb8620 822 parser->in_my = 0;
d3d9da4a
DM
823 parser->expect = XATTRBLOCK;
824 LEAVE;
825 }
826 ;
827
828
829
30d9c59b 830/* Optional subroutine body, for named subroutine declaration */
abcf453d 831optsubbody: block
a9f5ab8d 832 | ';' { $$ = NULL; }
8d063cd8
LW
833 ;
834
891be019 835/* Ordinary expressions; logical combinations */
a0d0e21e 836expr : expr ANDOP expr
b5bbe64a 837 { $$ = newLOGOP(OP_AND, 0, $1, $3); }
a0d0e21e 838 | expr OROP expr
b5bbe64a 839 { $$ = newLOGOP($2, 0, $1, $3); }
c963b151 840 | expr DOROP expr
b5bbe64a 841 { $$ = newLOGOP(OP_DOR, 0, $1, $3); }
09b1cffe 842 | listexpr %prec PREC_LOW
a0d0e21e
LW
843 ;
844
891be019 845/* Expressions are a list of terms joined by commas */
09b1cffe 846listexpr: listexpr ','
b5bbe64a 847 { $$ = $1; }
09b1cffe 848 | listexpr ',' term
abcf453d 849 {
29522234 850 OP* term = $3;
2fcb4757 851 $$ = op_append_elem(OP_LIST, $1, term);
f05e27e5 852 }
fad39ff1 853 | term %prec PREC_LOW
8d063cd8
LW
854 ;
855
891be019 856/* List operators */
09b1cffe 857listop : LSTOP indirob listexpr /* map {...} @args or print $fh @args */
03d05f6e 858 { $$ = op_convert_list($1, OPf_STACKED,
b5bbe64a 859 op_prepend_elem(OP_LIST, newGVREF($1,$2), $3) );
f05e27e5 860 }
891be019 861 | FUNC '(' indirob expr ')' /* print ($fh @args */
03d05f6e 862 { $$ = op_convert_list($1, OPf_STACKED,
b5bbe64a 863 op_prepend_elem(OP_LIST, newGVREF($1,$3), $4) );
f05e27e5 864 }
417a992d 865 | term ARROW method '(' optexpr ')' /* $foo->bar(list) */
03d05f6e 866 { $$ = op_convert_list(OP_ENTERSUB, OPf_STACKED,
2fcb4757
Z
867 op_append_elem(OP_LIST,
868 op_prepend_elem(OP_LIST, scalar($1), $5),
b46e009d 869 newMETHOP(OP_METHOD, 0, $3)));
f05e27e5 870 }
891be019 871 | term ARROW method /* $foo->bar */
03d05f6e 872 { $$ = op_convert_list(OP_ENTERSUB, OPf_STACKED,
2fcb4757 873 op_append_elem(OP_LIST, scalar($1),
b46e009d 874 newMETHOP(OP_METHOD, 0, $3)));
f05e27e5 875 }
09b1cffe 876 | METHOD indirob optlistexpr /* new Class @args */
03d05f6e 877 { $$ = op_convert_list(OP_ENTERSUB, OPf_STACKED,
2fcb4757
Z
878 op_append_elem(OP_LIST,
879 op_prepend_elem(OP_LIST, $2, $3),
b46e009d 880 newMETHOP(OP_METHOD, 0, $1)));
f05e27e5 881 }
09b1cffe 882 | FUNCMETH indirob '(' optexpr ')' /* method $object (@args) */
03d05f6e 883 { $$ = op_convert_list(OP_ENTERSUB, OPf_STACKED,
2fcb4757
Z
884 op_append_elem(OP_LIST,
885 op_prepend_elem(OP_LIST, $2, $4),
b46e009d 886 newMETHOP(OP_METHOD, 0, $1)));
f05e27e5 887 }
09b1cffe 888 | LSTOP optlistexpr /* print @args */
03d05f6e 889 { $$ = op_convert_list($1, 0, $2); }
09b1cffe 890 | FUNC '(' optexpr ')' /* print (@args) */
03d05f6e 891 { $$ = op_convert_list($1, 0, $3); }
718a7425 892 | LSTOPSUB startanonsub block /* sub f(&@); f { foo } ... */
5a5094bd 893 { SvREFCNT_inc_simple_void(PL_compcv);
a9f5ab8d 894 $<opval>$ = newANONATTRSUB($2, 0, NULL, $3); }
09b1cffe 895 optlistexpr %prec LSTOP /* ... @bar */
4633a7c4 896 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
2fcb4757
Z
897 op_append_elem(OP_LIST,
898 op_prepend_elem(OP_LIST, $<opval>4, $5), $1));
f05e27e5 899 }
a687059c
LW
900 ;
901
891be019 902/* Names of methods. May use $object->$methodname */
a0d0e21e
LW
903method : METHOD
904 | scalar
905 ;
906
891be019 907/* Some kind of subscripted expression */
89f35911 908subscripted: gelem '{' expr ';' '}' /* *main::{something} */
891be019
SC
909 /* In this and all the hash accessors, ';' is
910 * provided by the tokeniser */
5c86b6df 911 { $$ = newBINOP(OP_GELEM, 0, $1, scalar($3)); }
891be019 912 | scalar '[' expr ']' /* $array[$element] */
f05e27e5 913 { $$ = newBINOP(OP_AELEM, 0, oopsAV($1), scalar($3));
f05e27e5 914 }
891be019 915 | term ARROW '[' expr ']' /* somearef->[$element] */
fad39ff1
SM
916 { $$ = newBINOP(OP_AELEM, 0,
917 ref(newAVREF($1),OP_RV2AV),
f05e27e5 918 scalar($4));
f05e27e5 919 }
891be019 920 | subscripted '[' expr ']' /* $foo->[$bar]->[$baz] */
fad39ff1
SM
921 { $$ = newBINOP(OP_AELEM, 0,
922 ref(newAVREF($1),OP_RV2AV),
f05e27e5 923 scalar($3));
f05e27e5 924 }
5a63ceef 925 | scalar '{' expr ';' '}' /* $foo{bar();} */
fad39ff1 926 { $$ = newBINOP(OP_HELEM, 0, oopsHV($1), jmaybe($3));
f05e27e5 927 }
891be019 928 | term ARROW '{' expr ';' '}' /* somehref->{bar();} */
fad39ff1
SM
929 { $$ = newBINOP(OP_HELEM, 0,
930 ref(newHVREF($1),OP_RV2HV),
5c86b6df 931 jmaybe($4)); }
891be019 932 | subscripted '{' expr ';' '}' /* $foo->[bar]->{baz;} */
fad39ff1
SM
933 { $$ = newBINOP(OP_HELEM, 0,
934 ref(newHVREF($1),OP_RV2HV),
5c86b6df 935 jmaybe($3)); }
891be019 936 | term ARROW '(' ')' /* $subref->() */
fad39ff1 937 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
b5bbe64a 938 newCVREF(0, scalar($1))); }
891be019 939 | term ARROW '(' expr ')' /* $subref->(@args) */
fad39ff1 940 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
2fcb4757 941 op_append_elem(OP_LIST, $4,
b5bbe64a 942 newCVREF(0, scalar($1)))); }
fad39ff1 943
417a992d 944 | subscripted '(' expr ')' /* $foo->{bar}->(@args) */
fad39ff1 945 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
2fcb4757 946 op_append_elem(OP_LIST, $3,
b5bbe64a 947 newCVREF(0, scalar($1)))); }
417a992d 948 | subscripted '(' ')' /* $foo->{bar}->() */
fad39ff1 949 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
b5bbe64a 950 newCVREF(0, scalar($1))); }
9a9798c2 951 | '(' expr ')' '[' expr ']' /* list slice */
b5bbe64a 952 { $$ = newSLICEOP(0, $5, $2); }
ea25a9b2 953 | QWLIST '[' expr ']' /* list literal slice */
b5bbe64a 954 { $$ = newSLICEOP(0, $3, $1); }
9a9798c2 955 | '(' ')' '[' expr ']' /* empty list slice! */
a9f5ab8d 956 { $$ = newSLICEOP(0, $4, NULL); }
891be019 957 ;
fad39ff1 958
891be019 959/* Binary operators between terms */
f05e27e5 960termbinop: term ASSIGNOP term /* $x = $y */
b5bbe64a 961 { $$ = newASSIGNOP(OPf_STACKED, $1, $2, $3); }
891be019 962 | term POWOP term /* $x ** $y */
b5bbe64a 963 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 964 | term MULOP term /* $x * $y, $x x $y */
b5bbe64a 965 { if ($2 != OP_REPEAT)
79072805 966 scalar($1);
b5bbe64a 967 $$ = newBINOP($2, 0, $1, scalar($3));
f05e27e5 968 }
891be019 969 | term ADDOP term /* $x + $y */
b5bbe64a 970 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 971 | term SHIFTOP term /* $x >> $y, $x << $y */
b5bbe64a 972 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 973 | term RELOP term /* $x > $y, etc. */
b5bbe64a 974 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 975 | term EQOP term /* $x == $y, $x eq $y */
b5bbe64a 976 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 977 | term BITANDOP term /* $x & $y */
b5bbe64a 978 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 979 | term BITOROP term /* $x | $y */
b5bbe64a 980 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
891be019 981 | term DOTDOT term /* $x..$y, $x...$y */
b5bbe64a 982 { $$ = newRANGE($2, scalar($1), scalar($3)); }
891be019 983 | term ANDAND term /* $x && $y */
b5bbe64a 984 { $$ = newLOGOP(OP_AND, 0, $1, $3); }
891be019 985 | term OROR term /* $x || $y */
b5bbe64a 986 { $$ = newLOGOP(OP_OR, 0, $1, $3); }
c963b151 987 | term DORDOR term /* $x // $y */
b5bbe64a 988 { $$ = newLOGOP(OP_DOR, 0, $1, $3); }
891be019 989 | term MATCHOP term /* $x =~ /$y/ */
b5bbe64a 990 { $$ = bind_match($2, $1, $3); }
891be019 991 ;
8d063cd8 992
891be019
SC
993/* Unary operators and terms */
994termunop : '-' term %prec UMINUS /* -$x */
b5bbe64a 995 { $$ = newUNOP(OP_NEGATE, 0, scalar($2)); }
891be019 996 | '+' term %prec UMINUS /* +$x */
b5bbe64a
JH
997 { $$ = $2; }
998
891be019 999 | '!' term /* !$x */
b5bbe64a 1000 { $$ = newUNOP(OP_NOT, 0, scalar($2)); }
891be019 1001 | '~' term /* ~$x */
8823cb89 1002 { $$ = newUNOP($1, 0, scalar($2)); }
891be019 1003 | term POSTINC /* $x++ */
79072805 1004 { $$ = newUNOP(OP_POSTINC, 0,
b5bbe64a 1005 op_lvalue(scalar($1), OP_POSTINC)); }
891be019 1006 | term POSTDEC /* $x-- */
79072805 1007 { $$ = newUNOP(OP_POSTDEC, 0,
b5bbe64a 1008 op_lvalue(scalar($1), OP_POSTDEC));}
cc624add 1009 | term POSTJOIN /* implicit join after interpolated ->@ */
03d05f6e 1010 { $$ = op_convert_list(OP_JOIN, 0,
cc624add
FC
1011 op_append_elem(
1012 OP_LIST,
1013 newSVREF(scalar(
1014 newSVOP(OP_CONST,0,
1015 newSVpvs("\""))
1016 )),
1017 $1
1018 ));
cc624add 1019 }
891be019 1020 | PREINC term /* ++$x */
79072805 1021 { $$ = newUNOP(OP_PREINC, 0,
b5bbe64a 1022 op_lvalue(scalar($2), OP_PREINC)); }
891be019 1023 | PREDEC term /* --$x */
79072805 1024 { $$ = newUNOP(OP_PREDEC, 0,
b5bbe64a 1025 op_lvalue(scalar($2), OP_PREDEC)); }
891be019
SC
1026
1027 ;
1028
1029/* Constructors for anonymous data */
1030anonymous: '[' expr ']'
b5bbe64a 1031 { $$ = newANONLIST($2); }
891be019 1032 | '[' ']'
a9f5ab8d 1033 { $$ = newANONLIST(NULL);}
891be019 1034 | HASHBRACK expr ';' '}' %prec '(' /* { foo => "Bar" } */
b5bbe64a 1035 { $$ = newANONHASH($2); }
891be019 1036 | HASHBRACK ';' '}' %prec '(' /* { } (';' by tokener) */
a9f5ab8d 1037 { $$ = newANONHASH(NULL); }
abcf453d 1038 | ANONSUB startanonsub proto subattrlist block %prec '('
5a5094bd 1039 { SvREFCNT_inc_simple_void(PL_compcv);
b5bbe64a 1040 $$ = newANONATTRSUB($2, $3, $4, $5); }
abcf453d
PM
1041 | ANONSUB startanonsub remember subsignature subattrlist '{' stmtseq '}' %prec '('
1042 {
1043 OP *body;
1044 if (parser->copline > (line_t)$6)
1045 parser->copline = (line_t)$6;
1046 body = block_end($3,
1047 op_append_list(OP_LINESEQ, $4, $7));
1048 SvREFCNT_inc_simple_void(PL_compcv);
1049 $$ = newANONATTRSUB($2, NULL, $5, body);
1050 }
891be019
SC
1051
1052 ;
1053
1054/* Things called with "do" */
1055termdo : DO term %prec UNIOP /* do $filename */
b5bbe64a 1056 { $$ = dofile($2, $1);}
891be019 1057 | DO block %prec '(' /* do { code */
b5bbe64a 1058 { $$ = newUNOP(OP_NULL, OPf_SPECIAL, op_scope($2));}
891be019
SC
1059 ;
1060
1061term : termbinop
1062 | termunop
1063 | anonymous
1064 | termdo
e9bdcc27 1065 | term '?' term ':' term
b5bbe64a 1066 { $$ = newCONDOP(0, $1, $3, $5); }
891be019 1067 | REFGEN term /* \$x, \@y, \%z */
070d3cb6 1068 { $$ = newUNOP(OP_REFGEN, 0, $2); }
e118fea3
FC
1069 | MY REFGEN term
1070 { $$ = newUNOP(OP_REFGEN, 0, localize($3,1)); }
09bef843
SB
1071 | myattrterm %prec UNIOP
1072 { $$ = $1; }
1073 | LOCAL term %prec UNIOP
28383d1a 1074 { $$ = localize($2,0); }
a0d0e21e 1075 | '(' expr ')'
b5bbe64a 1076 { $$ = sawparens($2); }
ea25a9b2 1077 | QWLIST
b5bbe64a 1078 { $$ = $1; }
8d063cd8 1079 | '(' ')'
b5bbe64a 1080 { $$ = sawparens(newNULLLIST()); }
79072805 1081 | scalar %prec '('
8d063cd8 1082 { $$ = $1; }
79072805 1083 | star %prec '('
8d063cd8 1084 { $$ = $1; }
79072805 1085 | hsh %prec '('
8d063cd8 1086 { $$ = $1; }
79072805 1087 | ary %prec '('
8d063cd8 1088 { $$ = $1; }
891be019 1089 | arylen %prec '(' /* $#x, $#{ something } */
79072805 1090 { $$ = newUNOP(OP_AV2ARYLEN, 0, ref($1, OP_AV2ARYLEN));}
fad39ff1
SM
1091 | subscripted
1092 { $$ = $1; }
89f35911 1093 | sliceme '[' expr ']' /* array slice */
2fcb4757 1094 { $$ = op_prepend_elem(OP_ASLICE,
79072805 1095 newOP(OP_PUSHMARK, 0),
79072805
LW
1096 newLISTOP(OP_ASLICE, 0,
1097 list($3),
f05e27e5 1098 ref($1, OP_ASLICE)));
429a2555
FC
1099 if ($$ && $1)
1100 $$->op_private |=
1101 $1->op_private & OPpSLICEWARNING;
f05e27e5 1102 }
76eba8ab 1103 | kvslice '[' expr ']' /* array key/value slice */
6dd3e0f2
RZ
1104 { $$ = op_prepend_elem(OP_KVASLICE,
1105 newOP(OP_PUSHMARK, 0),
1106 newLISTOP(OP_KVASLICE, 0,
1107 list($3),
1108 ref(oopsAV($1), OP_KVASLICE)));
95a31aad
FC
1109 if ($$ && $1)
1110 $$->op_private |=
1111 $1->op_private & OPpSLICEWARNING;
6dd3e0f2 1112 }
89f35911 1113 | sliceme '{' expr ';' '}' /* @hash{@keys} */
2fcb4757 1114 { $$ = op_prepend_elem(OP_HSLICE,
79072805 1115 newOP(OP_PUSHMARK, 0),
79072805
LW
1116 newLISTOP(OP_HSLICE, 0,
1117 list($3),
a0d0e21e 1118 ref(oopsHV($1), OP_HSLICE)));
429a2555
FC
1119 if ($$ && $1)
1120 $$->op_private |=
1121 $1->op_private & OPpSLICEWARNING;
f05e27e5 1122 }
76eba8ab 1123 | kvslice '{' expr ';' '}' /* %hash{@keys} */
5cae3edb
RZ
1124 { $$ = op_prepend_elem(OP_KVHSLICE,
1125 newOP(OP_PUSHMARK, 0),
1126 newLISTOP(OP_KVHSLICE, 0,
1127 list($3),
1128 ref($1, OP_KVHSLICE)));
95a31aad
FC
1129 if ($$ && $1)
1130 $$->op_private |=
1131 $1->op_private & OPpSLICEWARNING;
5cae3edb 1132 }
79072805
LW
1133 | THING %prec '('
1134 { $$ = $1; }
891be019 1135 | amper /* &foo; */
c07a80fd 1136 { $$ = newUNOP(OP_ENTERSUB, 0, scalar($1)); }
fb602e32 1137 | amper '(' ')' /* &foo() or foo() */
f05e27e5 1138 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED, scalar($1));
f05e27e5 1139 }
fb602e32 1140 | amper '(' expr ')' /* &foo(@args) or foo(@args) */
f05e27e5
DM
1141 {
1142 $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
2fcb4757 1143 op_append_elem(OP_LIST, $3, scalar($1)));
f05e27e5 1144 }
fb602e32 1145 | NOAMP subname optlistexpr /* foo @args (no parens) */
a0d0e21e 1146 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
2fcb4757 1147 op_append_elem(OP_LIST, $3, scalar($2)));
f05e27e5 1148 }
89f35911 1149 | term ARROW '$' '*'
b5bbe64a 1150 { $$ = newSVREF($1); }
89f35911 1151 | term ARROW '@' '*'
b5bbe64a 1152 { $$ = newAVREF($1); }
89f35911 1153 | term ARROW '%' '*'
b5bbe64a 1154 { $$ = newHVREF($1); }
89f35911
FC
1155 | term ARROW '&' '*'
1156 { $$ = newUNOP(OP_ENTERSUB, 0,
b5bbe64a 1157 scalar(newCVREF($3,$1))); }
89f35911 1158 | term ARROW '*' '*' %prec '('
b5bbe64a 1159 { $$ = newGVREF(0,$1); }
891be019 1160 | LOOPEX /* loop exiting command (goto, last, dump, etc) */
b5bbe64a
JH
1161 { $$ = newOP($1, OPf_SPECIAL);
1162 PL_hints |= HINT_BLOCK_SCOPE; }
a0d0e21e 1163 | LOOPEX term
b5bbe64a 1164 { $$ = newLOOPEX($1,$2); }
09b1cffe 1165 | NOTOP listexpr /* not $foo */
b5bbe64a 1166 { $$ = newUNOP(OP_NOT, 0, scalar($2)); }
891be019 1167 | UNIOP /* Unary op, $_ implied */
b5bbe64a 1168 { $$ = newOP($1, 0); }
f05e27e5 1169 | UNIOP block /* eval { foo }* */
b5bbe64a 1170 { $$ = newUNOP($1, 0, $2); }
891be019 1171 | UNIOP term /* Unary op */
b5bbe64a 1172 { $$ = newUNOP($1, 0, $2); }
d2fdf8fd 1173 | REQUIRE /* require, $_ implied */
b5bbe64a 1174 { $$ = newOP(OP_REQUIRE, $1 ? OPf_SPECIAL : 0); }
d2fdf8fd 1175 | REQUIRE term /* require Foo */
b5bbe64a 1176 { $$ = newUNOP(OP_REQUIRE, $1 ? OPf_SPECIAL : 0, $2); }
3cd0a11a
RGS
1177 | UNIOPSUB
1178 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED, scalar($1)); }
891be019 1179 | UNIOPSUB term /* Sub treated as unop */
4633a7c4 1180 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
2fcb4757 1181 op_append_elem(OP_LIST, $2, scalar($1))); }
891be019 1182 | FUNC0 /* Nullary operator */
b5bbe64a 1183 { $$ = newOP($1, 0); }
ae986130 1184 | FUNC0 '(' ')'
b5bbe64a 1185 { $$ = newOP($1, 0);}
7eb971ee
FC
1186 | FUNC0OP /* Same as above, but op created in toke.c */
1187 { $$ = $1; }
1188 | FUNC0OP '(' ')'
b5bbe64a 1189 { $$ = $1; }
891be019 1190 | FUNC0SUB /* Sub treated as nullop */
b5bbe64a 1191 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED, scalar($1)); }
891be019 1192 | FUNC1 '(' ')' /* not () */
b5bbe64a
JH
1193 { $$ = ($1 == OP_NOT)
1194 ? newUNOP($1, 0, newSVOP(OP_CONST, 0, newSViv(0)))
1195 : newOP($1, OPf_SPECIAL); }
891be019 1196 | FUNC1 '(' expr ')' /* not($foo) */
b5bbe64a 1197 { $$ = newUNOP($1, 0, $3); }
d63c20f2
DM
1198 | PMFUNC /* m//, s///, qr//, tr/// */
1199 {
1200 if ( $1->op_type != OP_TRANS
1201 && $1->op_type != OP_TRANSR
1202 && (((PMOP*)$1)->op_pmflags & PMf_HAS_CV))
1203 {
1204 $<ival>$ = start_subparse(FALSE, CVf_ANON);
1205 SAVEFREESV(PL_compcv);
1206 } else
1207 $<ival>$ = 0;
1208 }
9b6b7be8
FC
1209 '(' listexpr optrepl ')'
1210 { $$ = pmruntime($1, $4, $5, 1, $<ival>2); }
185c2e96 1211 | BAREWORD
378cc40b 1212 | listop
be25f609 1213 | YADAYADA
1214 {
1215 $$ = newLISTOP(OP_DIE, 0, newOP(OP_PUSHMARK, 0),
1216 newSVOP(OP_CONST, 0, newSVpvs("Unimplemented")));
1217 }
88e1f1a2 1218 | PLUGEXPR
8d063cd8
LW
1219 ;
1220
891be019 1221/* "my" declarations, with optional attributes */
09bef843 1222myattrterm: MY myterm myattrlist
b5bbe64a 1223 { $$ = my_attrs($2,$3); }
09bef843 1224 | MY myterm
28383d1a 1225 { $$ = localize($2,1); }
e118fea3
FC
1226 | MY REFGEN myterm myattrlist
1227 { $$ = newUNOP(OP_REFGEN, 0, my_attrs($3,$4)); }
09bef843
SB
1228 ;
1229
891be019 1230/* Things that can be "my"'d */
09bef843 1231myterm : '(' expr ')'
b5bbe64a 1232 { $$ = sawparens($2); }
09bef843 1233 | '(' ')'
b5bbe64a
JH
1234 { $$ = sawparens(newNULLLIST()); }
1235
09bef843
SB
1236 | scalar %prec '('
1237 { $$ = $1; }
1238 | hsh %prec '('
1239 { $$ = $1; }
1240 | ary %prec '('
1241 { $$ = $1; }
1242 ;
1243
891be019 1244/* Basic list expressions */
09b1cffe 1245optlistexpr: /* NULL */ %prec PREC_LOW
a9f5ab8d 1246 { $$ = NULL; }
09b1cffe 1247 | listexpr %prec PREC_LOW
a0d0e21e
LW
1248 { $$ = $1; }
1249 ;
1250
09b1cffe 1251optexpr: /* NULL */
a9f5ab8d 1252 { $$ = NULL; }
79072805
LW
1253 | expr
1254 { $$ = $1; }
1255 ;
1256
9b6b7be8 1257optrepl: /* NULL */
a9f5ab8d 1258 { $$ = NULL; }
9b6b7be8
FC
1259 | '/' expr
1260 { $$ = $2; }
1261 ;
1262
891be019
SC
1263/* A little bit of trickery to make "for my $foo (@bar)" actually be
1264 lexical */
55497cff 1265my_scalar: scalar
624fa8bd 1266 { parser->in_my = 0; $$ = my($1); }
55497cff 1267 ;
1268
d39c26a6
FC
1269my_var : scalar
1270 | ary
1271 | hsh
1272 ;
1273
1274refgen_topic: my_var
1275 | amper
1276 ;
1277
e118fea3
FC
1278my_refgen: MY REFGEN
1279 | REFGEN MY
1280 ;
1281
79072805 1282amper : '&' indirob
b5bbe64a 1283 { $$ = newCVREF($1,$2); }
a687059c
LW
1284 ;
1285
79072805 1286scalar : '$' indirob
b5bbe64a 1287 { $$ = newSVREF($2); }
a687059c
LW
1288 ;
1289
79072805 1290ary : '@' indirob
f05e27e5 1291 { $$ = newAVREF($2);
b5bbe64a 1292 if ($$) $$->op_private |= $1;
f05e27e5 1293 }
79072805
LW
1294 ;
1295
1296hsh : '%' indirob
f05e27e5 1297 { $$ = newHVREF($2);
b5bbe64a 1298 if ($$) $$->op_private |= $1;
f05e27e5 1299 }
79072805
LW
1300 ;
1301
1302arylen : DOLSHARP indirob
b5bbe64a 1303 { $$ = newAVREF($2); }
ff25e5db 1304 | term ARROW DOLSHARP '*'
b5bbe64a 1305 { $$ = newAVREF($1); }
79072805
LW
1306 ;
1307
1308star : '*' indirob
b5bbe64a 1309 { $$ = newGVREF(0,$2); }
79072805
LW
1310 ;
1311
89f35911
FC
1312sliceme : ary
1313 | term ARROW '@'
b5bbe64a 1314 { $$ = newAVREF($1); }
89f35911
FC
1315 ;
1316
76eba8ab
FC
1317kvslice : hsh
1318 | term ARROW '%'
b5bbe64a 1319 { $$ = newHVREF($1); }
76eba8ab
FC
1320 ;
1321
89f35911
FC
1322gelem : star
1323 | term ARROW '*'
b5bbe64a 1324 { $$ = newGVREF(0,$1); }
89f35911
FC
1325 ;
1326
891be019 1327/* Indirect objects */
185c2e96 1328indirob : BAREWORD
79072805 1329 { $$ = scalar($1); }
fad39ff1 1330 | scalar %prec PREC_LOW
f05e27e5 1331 { $$ = scalar($1); }
79072805 1332 | block
3ad73efd 1333 { $$ = op_scope($1); }
79072805 1334
93a17b20
LW
1335 | PRIVATEREF
1336 { $$ = $1; }
8d063cd8 1337 ;