3 * Copyright (c) 1991-2002, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
11 * 'I see,' laughed Strider. 'I look foul and feel fair. Is that it?
12 * All that is gold does not glitter, not all those who wander are lost.'
17 #define PERL_IN_PERLY_C
22 #define dep() deprecate("\"do\" to call subroutines")
24 /* stuff included here to make perly_c.diff apply better */
26 #define yydebug PL_yydebug
27 #define yynerrs PL_yynerrs
28 #define yyerrflag PL_yyerrflag
29 #define yychar PL_yychar
30 #define yyval PL_yyval
31 #define yylval PL_yylval
44 static void yydestruct(pTHX_ void *ptr);
51 #if 0 /* get this from perly.h instead */
65 #define YYLEX_PARAM (&yychar)
73 %token <opval> WORD METHOD FUNCMETH THING PMFUNC PRIVATEREF
74 %token <opval> FUNC0SUB UNIOPSUB LSTOPSUB
76 %token <ival> FORMAT SUB ANONSUB PACKAGE USE
77 %token <ival> WHILE UNTIL IF UNLESS ELSE ELSIF CONTINUE FOR
78 %token <ival> LOOPEX DOTDOT
79 %token <ival> FUNC0 FUNC1 FUNC UNIOP LSTOP
80 %token <ival> RELOP EQOP MULOP ADDOP
81 %token <ival> DOLSHARP DO HASHBRACK NOAMP
82 %token <ival> LOCAL MY MYSUB
85 %type <ival> prog decl format startsub startanonsub startformsub
86 %type <ival> progstart remember mremember '&'
87 %type <opval> block mblock lineseq line loop cond else
88 %type <opval> expr term subscripted scalar ary hsh arylen star amper sideff
89 %type <opval> argexpr nexpr texpr iexpr mexpr mnexpr mtexpr miexpr
90 %type <opval> listexpr listexprcom indirob listop method
91 %type <opval> formname subname proto subbody cont my_scalar
92 %type <opval> subattrlist myattrlist mysubrout myattrterm myterm
93 %type <opval> termbinop termunop anonymous termdo
99 %left <ival> OROP DOROP
102 %nonassoc LSTOP LSTOPSUB
104 %right <ival> ASSIGNOP
110 %left <ival> BITANDOP
113 %nonassoc UNIOP UNIOPSUB
118 %right '!' '~' UMINUS REFGEN
120 %nonassoc PREINC PREDEC POSTINC POSTDEC
128 /* The whole program */
130 /*CONTINUED*/ lineseq
131 { $$ = $1; newPROG(block_end($1,$2)); }
134 /* An ordinary block */
135 block : '{' remember lineseq '}'
136 { if (PL_copline > (line_t)$1)
137 PL_copline = (line_t)$1;
138 $$ = block_end($2, $3); }
141 remember: /* NULL */ /* start a full lexical scope */
142 { $$ = block_start(TRUE); }
147 #if defined(YYDEBUG) && defined(DEBUGGING)
148 yydebug = (DEBUG_p_TEST);
150 PL_expect = XSTATE; $$ = block_start(TRUE);
155 mblock : '{' mremember lineseq '}'
156 { if (PL_copline > (line_t)$1)
157 PL_copline = (line_t)$1;
158 $$ = block_end($2, $3); }
161 mremember: /* NULL */ /* start a partial lexical scope */
162 { $$ = block_start(FALSE); }
165 /* A collection of "lines" in the program */
171 { $$ = append_list(OP_LINESEQ,
172 (LISTOP*)$1, (LISTOP*)$2);
173 PL_pad_reset_pending = TRUE;
174 if ($1 && $2) PL_hints |= HINT_BLOCK_SCOPE; }
177 /* A "line" in the program */
179 { $$ = newSTATEOP(0, $1, $2); }
180 | loop /* loops add their own labels */
182 { if ($1 != Nullch) {
183 $$ = newSTATEOP(0, $1, newOP(OP_NULL, 0));
189 PL_expect = XSTATE; }
191 { $$ = newSTATEOP(0, $1, $2);
192 PL_expect = XSTATE; }
195 /* An expression which may have a side-effect */
201 { $$ = newLOGOP(OP_AND, 0, $3, $1); }
203 { $$ = newLOGOP(OP_OR, 0, $3, $1); }
205 { $$ = newLOOPOP(OPf_PARENS, 1, scalar($3), $1); }
207 { $$ = newLOOPOP(OPf_PARENS, 1, $3, $1);}
209 { $$ = newFOROP(0, Nullch, (line_t)$2,
210 Nullop, $3, $1, Nullop); }
213 /* else and elsif blocks */
217 { ($2)->op_flags |= OPf_PARENS; $$ = scope($2); }
218 | ELSIF '(' mexpr ')' mblock else
219 { PL_copline = (line_t)$1;
220 $$ = newCONDOP(0, $3, scope($5), $6);
221 PL_hints |= HINT_BLOCK_SCOPE; }
224 /* Real conditional expressions */
225 cond : IF '(' remember mexpr ')' mblock else
226 { PL_copline = (line_t)$1;
228 newCONDOP(0, $4, scope($6), $7)); }
229 | UNLESS '(' remember miexpr ')' mblock else
230 { PL_copline = (line_t)$1;
232 newCONDOP(0, $4, scope($6), $7)); }
235 /* Continue blocks */
242 /* Loops: while, until, for, and a bare block */
243 loop : label WHILE '(' remember mtexpr ')' mblock cont
244 { PL_copline = (line_t)$2;
247 newWHILEOP(0, 1, (LOOP*)Nullop,
249 | label UNTIL '(' remember miexpr ')' mblock cont
250 { PL_copline = (line_t)$2;
253 newWHILEOP(0, 1, (LOOP*)Nullop,
255 | label FOR MY remember my_scalar '(' mexpr ')' mblock cont
257 newFOROP(0, $1, (line_t)$2, $5, $7, $9, $10)); }
258 | label FOR scalar '(' remember mexpr ')' mblock cont
260 newFOROP(0, $1, (line_t)$2, mod($3, OP_ENTERLOOP),
262 | label FOR '(' remember mexpr ')' mblock cont
264 newFOROP(0, $1, (line_t)$2, Nullop, $5, $7, $8)); }
265 | label FOR '(' remember mnexpr ';' mtexpr ';' mnexpr ')' mblock
266 /* basically fake up an initialize-while lineseq */
268 PL_copline = (line_t)$2;
269 forop = newSTATEOP(0, $1,
270 newWHILEOP(0, 1, (LOOP*)Nullop,
274 forop = append_elem(OP_LINESEQ,
275 newSTATEOP(0, ($1?savepv($1):Nullch),
280 $$ = block_end($4, forop); }
281 | label block cont /* a block is a loop that happens once */
282 { $$ = newSTATEOP(0, $1,
283 newWHILEOP(0, 1, (LOOP*)Nullop,
284 NOLINE, Nullop, $2, $3)); }
287 /* Normal expression */
293 /* Boolean expression */
294 texpr : /* NULL means true */
295 { (void)scan_num("1", &yylval); $$ = yylval.opval; }
299 /* Inverted boolean expression */
301 { $$ = invert(scalar($1)); }
304 /* Expression with its own lexical scope */
306 { $$ = $1; intro_my(); }
310 { $$ = $1; intro_my(); }
314 { $$ = $1; intro_my(); }
318 { $$ = $1; intro_my(); }
321 /* Optional "MAIN:"-style loop labels */
327 /* Some kind of declaration - does not take part in the parse tree */
340 format : FORMAT startformsub formname block
341 { newFORM($2, $3, $4); }
344 formname: WORD { $$ = $1; }
345 | /* NULL */ { $$ = Nullop; }
348 /* Unimplemented "my sub foo { }" */
349 mysubrout: MYSUB startsub subname proto subattrlist subbody
350 { newMYSUB($2, $3, $4, $5, $6); }
353 /* Subroutine definition */
354 subrout : SUB startsub subname proto subattrlist subbody
355 { newATTRSUB($2, $3, $4, $5, $6); }
358 startsub: /* NULL */ /* start a regular subroutine scope */
359 { $$ = start_subparse(FALSE, 0); }
362 startanonsub: /* NULL */ /* start an anonymous subroutine scope */
363 { $$ = start_subparse(FALSE, CVf_ANON); }
366 startformsub: /* NULL */ /* start a format subroutine scope */
367 { $$ = start_subparse(TRUE, 0); }
370 /* Name of a subroutine - must be a bareword, could be special */
371 subname : WORD { STRLEN n_a; char *name = SvPV(((SVOP*)$1)->op_sv,n_a);
372 if (strEQ(name, "BEGIN") || strEQ(name, "END")
373 || strEQ(name, "INIT") || strEQ(name, "CHECK"))
374 CvSPECIAL_on(PL_compcv);
378 /* Subroutine prototype */
384 /* Optional list of subroutine attributes */
385 subattrlist: /* NULL */
393 /* List of attributes for a "my" variable declaration */
394 myattrlist: COLONATTR THING
400 /* Subroutine body - either null or a block */
401 subbody : block { $$ = $1; }
402 | ';' { $$ = Nullop; PL_expect = XSTATE; }
405 package : PACKAGE WORD ';'
410 { CvSPECIAL_on(PL_compcv); /* It's a BEGIN {} */ }
411 WORD WORD listexpr ';'
412 { utilize($1, $2, $4, $5, $6); }
415 /* Ordinary expressions; logical combinations */
416 expr : expr ANDOP expr
417 { $$ = newLOGOP(OP_AND, 0, $1, $3); }
419 { $$ = newLOGOP($2, 0, $1, $3); }
421 { $$ = newLOGOP(OP_DOR, 0, $1, $3); }
422 | argexpr %prec PREC_LOW
425 /* Expressions are a list of terms joined by commas */
426 argexpr : argexpr ','
429 { $$ = append_elem(OP_LIST, $1, $3); }
430 | term %prec PREC_LOW
434 listop : LSTOP indirob argexpr /* print $fh @args */
435 { $$ = convert($1, OPf_STACKED,
436 prepend_elem(OP_LIST, newGVREF($1,$2), $3) ); }
437 | FUNC '(' indirob expr ')' /* print ($fh @args */
438 { $$ = convert($1, OPf_STACKED,
439 prepend_elem(OP_LIST, newGVREF($1,$3), $4) ); }
440 | term ARROW method '(' listexprcom ')' /* $foo->bar(list) */
441 { $$ = convert(OP_ENTERSUB, OPf_STACKED,
443 prepend_elem(OP_LIST, scalar($1), $5),
444 newUNOP(OP_METHOD, 0, $3))); }
445 | term ARROW method /* $foo->bar */
446 { $$ = convert(OP_ENTERSUB, OPf_STACKED,
447 append_elem(OP_LIST, scalar($1),
448 newUNOP(OP_METHOD, 0, $3))); }
449 | METHOD indirob listexpr /* new Class @args */
450 { $$ = convert(OP_ENTERSUB, OPf_STACKED,
452 prepend_elem(OP_LIST, $2, $3),
453 newUNOP(OP_METHOD, 0, $1))); }
454 | FUNCMETH indirob '(' listexprcom ')' /* method $object (@args) */
455 { $$ = convert(OP_ENTERSUB, OPf_STACKED,
457 prepend_elem(OP_LIST, $2, $4),
458 newUNOP(OP_METHOD, 0, $1))); }
459 | LSTOP listexpr /* print @args */
460 { $$ = convert($1, 0, $2); }
461 | FUNC '(' listexprcom ')' /* print (@args) */
462 { $$ = convert($1, 0, $3); }
463 | LSTOPSUB startanonsub block /* map { foo } ... */
464 { $3 = newANONATTRSUB($2, 0, Nullop, $3); }
465 listexpr %prec LSTOP /* ... @bar */
466 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
468 prepend_elem(OP_LIST, $3, $5), $1)); }
471 /* Names of methods. May use $object->$methodname */
476 /* Some kind of subscripted expression */
477 subscripted: star '{' expr ';' '}' /* *main::{something} */
478 /* In this and all the hash accessors, ';' is
479 * provided by the tokeniser */
480 { $$ = newBINOP(OP_GELEM, 0, $1, scalar($3)); }
481 | scalar '[' expr ']' /* $array[$element] */
482 { $$ = newBINOP(OP_AELEM, 0, oopsAV($1), scalar($3)); }
483 | term ARROW '[' expr ']' /* somearef->[$element] */
484 { $$ = newBINOP(OP_AELEM, 0,
485 ref(newAVREF($1),OP_RV2AV),
487 | subscripted '[' expr ']' /* $foo->[$bar]->[$baz] */
488 { $$ = newBINOP(OP_AELEM, 0,
489 ref(newAVREF($1),OP_RV2AV),
491 | scalar '{' expr ';' '}' /* $foo->{bar();} */
492 { $$ = newBINOP(OP_HELEM, 0, oopsHV($1), jmaybe($3));
493 PL_expect = XOPERATOR; }
494 | term ARROW '{' expr ';' '}' /* somehref->{bar();} */
495 { $$ = newBINOP(OP_HELEM, 0,
496 ref(newHVREF($1),OP_RV2HV),
498 PL_expect = XOPERATOR; }
499 | subscripted '{' expr ';' '}' /* $foo->[bar]->{baz;} */
500 { $$ = newBINOP(OP_HELEM, 0,
501 ref(newHVREF($1),OP_RV2HV),
503 PL_expect = XOPERATOR; }
504 | term ARROW '(' ')' /* $subref->() */
505 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
506 newCVREF(0, scalar($1))); }
507 | term ARROW '(' expr ')' /* $subref->(@args) */
508 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
509 append_elem(OP_LIST, $4,
510 newCVREF(0, scalar($1)))); }
512 | subscripted '(' expr ')' /* $foo->{bar}->(@args) */
513 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
514 append_elem(OP_LIST, $3,
515 newCVREF(0, scalar($1)))); }
516 | subscripted '(' ')' /* $foo->{bar}->() */
517 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
518 newCVREF(0, scalar($1))); }
521 /* Binary operators between terms */
522 termbinop : term ASSIGNOP term /* $x = $y */
523 { $$ = newASSIGNOP(OPf_STACKED, $1, $2, $3); }
524 | term POWOP term /* $x ** $y */
525 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
526 | term MULOP term /* $x * $y, $x x $y */
527 { if ($2 != OP_REPEAT)
529 $$ = newBINOP($2, 0, $1, scalar($3)); }
530 | term ADDOP term /* $x + $y */
531 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
532 | term SHIFTOP term /* $x >> $y, $x << $y */
533 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
534 | term RELOP term /* $x > $y, etc. */
535 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
536 | term EQOP term /* $x == $y, $x eq $y */
537 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
538 | term BITANDOP term /* $x & $y */
539 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
540 | term BITOROP term /* $x | $y */
541 { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
542 | term DOTDOT term /* $x..$y, $x...$y */
543 { $$ = newRANGE($2, scalar($1), scalar($3));}
544 | term ANDAND term /* $x && $y */
545 { $$ = newLOGOP(OP_AND, 0, $1, $3); }
546 | term OROR term /* $x || $y */
547 { $$ = newLOGOP(OP_OR, 0, $1, $3); }
548 | term DORDOR term /* $x // $y */
549 { $$ = newLOGOP(OP_DOR, 0, $1, $3); }
550 | term MATCHOP term /* $x =~ /$y/ */
551 { $$ = bind_match($2, $1, $3); }
554 /* Unary operators and terms */
555 termunop : '-' term %prec UMINUS /* -$x */
556 { $$ = newUNOP(OP_NEGATE, 0, scalar($2)); }
557 | '+' term %prec UMINUS /* +$x */
560 { $$ = newUNOP(OP_NOT, 0, scalar($2)); }
562 { $$ = newUNOP(OP_COMPLEMENT, 0, scalar($2));}
563 | term POSTINC /* $x++ */
564 { $$ = newUNOP(OP_POSTINC, 0,
565 mod(scalar($1), OP_POSTINC)); }
566 | term POSTDEC /* $x-- */
567 { $$ = newUNOP(OP_POSTDEC, 0,
568 mod(scalar($1), OP_POSTDEC)); }
569 | PREINC term /* ++$x */
570 { $$ = newUNOP(OP_PREINC, 0,
571 mod(scalar($2), OP_PREINC)); }
572 | PREDEC term /* --$x */
573 { $$ = newUNOP(OP_PREDEC, 0,
574 mod(scalar($2), OP_PREDEC)); }
578 /* Constructors for anonymous data */
579 anonymous: '[' expr ']'
580 { $$ = newANONLIST($2); }
582 { $$ = newANONLIST(Nullop); }
583 | HASHBRACK expr ';' '}' %prec '(' /* { foo => "Bar" } */
584 { $$ = newANONHASH($2); }
585 | HASHBRACK ';' '}' %prec '(' /* { } (';' by tokener) */
586 { $$ = newANONHASH(Nullop); }
587 | ANONSUB startanonsub proto subattrlist block %prec '('
588 { $$ = newANONATTRSUB($2, $3, $4, $5); }
592 /* Things called with "do" */
593 termdo : DO term %prec UNIOP /* do $filename */
595 | DO block %prec '(' /* do { code */
596 { $$ = newUNOP(OP_NULL, OPf_SPECIAL, scope($2)); }
597 | DO WORD '(' ')' /* do somesub() */
598 { $$ = newUNOP(OP_ENTERSUB,
599 OPf_SPECIAL|OPf_STACKED,
600 prepend_elem(OP_LIST,
602 (OPpENTERSUB_AMPER<<8),
605 | DO WORD '(' expr ')' /* do somesub(@args) */
606 { $$ = newUNOP(OP_ENTERSUB,
607 OPf_SPECIAL|OPf_STACKED,
611 (OPpENTERSUB_AMPER<<8),
614 | DO scalar '(' ')' /* do $subref () */
615 { $$ = newUNOP(OP_ENTERSUB, OPf_SPECIAL|OPf_STACKED,
616 prepend_elem(OP_LIST,
617 scalar(newCVREF(0,scalar($2))), Nullop)); dep();}
618 | DO scalar '(' expr ')' /* do $subref (@args) */
619 { $$ = newUNOP(OP_ENTERSUB, OPf_SPECIAL|OPf_STACKED,
620 prepend_elem(OP_LIST,
622 scalar(newCVREF(0,scalar($2))))); dep();}
630 | term '?' term ':' term
631 { $$ = newCONDOP(0, $1, $3, $5); }
632 | REFGEN term /* \$x, \@y, \%z */
633 { $$ = newUNOP(OP_REFGEN, 0, mod($2,OP_REFGEN)); }
634 | myattrterm %prec UNIOP
636 | LOCAL term %prec UNIOP
637 { $$ = localize($2,$1); }
639 { $$ = sawparens($2); }
641 { $$ = sawparens(newNULLLIST()); }
650 | arylen %prec '(' /* $#x, $#{ something } */
651 { $$ = newUNOP(OP_AV2ARYLEN, 0, ref($1, OP_AV2ARYLEN));}
654 | '(' expr ')' '[' expr ']' /* list slice */
655 { $$ = newSLICEOP(0, $5, $2); }
656 | '(' ')' '[' expr ']' /* empty list slice! */
657 { $$ = newSLICEOP(0, $4, Nullop); }
658 | ary '[' expr ']' /* array slice */
659 { $$ = prepend_elem(OP_ASLICE,
660 newOP(OP_PUSHMARK, 0),
661 newLISTOP(OP_ASLICE, 0,
663 ref($1, OP_ASLICE))); }
664 | ary '{' expr ';' '}' /* @hash{@keys} */
665 { $$ = prepend_elem(OP_HSLICE,
666 newOP(OP_PUSHMARK, 0),
667 newLISTOP(OP_HSLICE, 0,
669 ref(oopsHV($1), OP_HSLICE)));
670 PL_expect = XOPERATOR; }
674 { $$ = newUNOP(OP_ENTERSUB, 0, scalar($1)); }
675 | amper '(' ')' /* &foo() */
676 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED, scalar($1)); }
677 | amper '(' expr ')' /* &foo(@args) */
678 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
679 append_elem(OP_LIST, $3, scalar($1))); }
680 | NOAMP WORD listexpr /* foo(@args) */
681 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
682 append_elem(OP_LIST, $3, scalar($2))); }
683 | LOOPEX /* loop exiting command (goto, last, dump, etc) */
684 { $$ = newOP($1, OPf_SPECIAL);
685 PL_hints |= HINT_BLOCK_SCOPE; }
687 { $$ = newLOOPEX($1,$2); }
688 | NOTOP argexpr /* not $foo */
689 { $$ = newUNOP(OP_NOT, 0, scalar($2)); }
690 | UNIOP /* Unary op, $_ implied */
691 { $$ = newOP($1, 0); }
692 | UNIOP block /* eval { foo }, I *think* */
693 { $$ = newUNOP($1, 0, $2); }
694 | UNIOP term /* Unary op */
695 { $$ = newUNOP($1, 0, $2); }
696 | UNIOPSUB term /* Sub treated as unop */
697 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
698 append_elem(OP_LIST, $2, scalar($1))); }
699 | FUNC0 /* Nullary operator */
700 { $$ = newOP($1, 0); }
702 { $$ = newOP($1, 0); }
703 | FUNC0SUB /* Sub treated as nullop */
704 { $$ = newUNOP(OP_ENTERSUB, OPf_STACKED,
706 | FUNC1 '(' ')' /* not () */
707 { $$ = newOP($1, OPf_SPECIAL); }
708 | FUNC1 '(' expr ')' /* not($foo) */
709 { $$ = newUNOP($1, 0, $3); }
710 | PMFUNC '(' term ')' /* split (/foo/) */
711 { $$ = pmruntime($1, $3, Nullop); }
712 | PMFUNC '(' term ',' term ')' /* split (/foo/,$bar) */
713 { $$ = pmruntime($1, $3, $5); }
718 /* "my" declarations, with optional attributes */
719 myattrterm: MY myterm myattrlist
720 { $$ = my_attrs($2,$3); }
722 { $$ = localize($2,$1); }
725 /* Things that can be "my"'d */
726 myterm : '(' expr ')'
727 { $$ = sawparens($2); }
729 { $$ = sawparens(newNULLLIST()); }
738 /* Basic list expressions */
739 listexpr: /* NULL */ %prec PREC_LOW
741 | argexpr %prec PREC_LOW
745 listexprcom: /* NULL */
753 /* A little bit of trickery to make "for my $foo (@bar)" actually be
756 { PL_in_my = 0; $$ = my($1); }
760 { $$ = newCVREF($1,$2); }
764 { $$ = newSVREF($2); }
768 { $$ = newAVREF($2); }
772 { $$ = newHVREF($2); }
775 arylen : DOLSHARP indirob
776 { $$ = newAVREF($2); }
780 { $$ = newGVREF(0,$2); }
783 /* Indirect objects */
786 | scalar %prec PREC_LOW
797 /* more stuff added to make perly_c.diff easier to apply */
802 #define yyparse() Perl_yyparse(pTHX)