3 * Copyright (c) 2004, 2005, 2006, 2007, 2008,
4 * 2009, 2010, 2011 by Larry Wall and others
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.
9 * Note that this file was originally generated as an output from
10 * GNU bison version 1.875, but now the code is statically maintained
11 * and edited; the bits that are dependent on perly.y are now
12 * #included from the files perly.tab and perly.act.
14 * Here is an important copyright statement from the original, generated
17 * As a special exception, when this file is copied by Bison into a
18 * Bison output file, you may use that output file without
19 * restriction. This special exception was added by the Free
20 * Software Foundation in version 1.24 of Bison.
25 #define PERL_IN_PERLY_C
30 typedef unsigned char yytype_uint8;
31 typedef signed char yytype_int8;
32 typedef unsigned short int yytype_uint16;
33 typedef short int yytype_int16;
34 typedef signed char yysigned_char;
36 /* YYINITDEPTH -- initial size of the parser's stacks. */
37 #define YYINITDEPTH 200
53 # define YY_NULLPTR NULL
56 /* contains all the parser state tables; auto-generated from perly.y */
59 # define YYSIZE_T size_t
64 #define YYACCEPT goto yyacceptlab
65 #define YYABORT goto yyabortlab
66 #define YYERROR goto yyerrlab1
68 /* Enable debugging if requested. */
71 # define yydebug (DEBUG_p_TEST)
73 # define YYFPRINTF PerlIO_printf
75 # define YYDPRINTF(Args) \
81 # define YYDSYMPRINTF(Title, Token, Value) \
84 YYFPRINTF (Perl_debug_log, "%s ", Title); \
85 yysymprint (aTHX_ Perl_debug_log, Token, Value); \
86 YYFPRINTF (Perl_debug_log, "\n"); \
90 /*--------------------------------.
91 | Print this symbol on YYOUTPUT. |
92 `--------------------------------*/
95 yysymprint(pTHX_ PerlIO * const yyoutput, int yytype, const YYSTYPE * const yyvaluep)
98 if (yytype < YYNTOKENS) {
99 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
101 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
103 YYFPRINTF (yyoutput, "0x%" UVxf, (UV)yyvaluep->ival);
107 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
109 YYFPRINTF (yyoutput, ")");
114 * print the top 8 items on the parse stack.
118 yy_stack_print (pTHX_ const yy_parser *parser)
120 const yy_stack_frame *ps, *min;
122 min = parser->ps - 8 + 1;
123 if (min <= parser->stack)
124 min = parser->stack + 1;
126 PerlIO_printf(Perl_debug_log, "\nindex:");
127 for (ps = min; ps <= parser->ps; ps++)
128 PerlIO_printf(Perl_debug_log, " %8d", (int)(ps - parser->stack));
130 PerlIO_printf(Perl_debug_log, "\nstate:");
131 for (ps = min; ps <= parser->ps; ps++)
132 PerlIO_printf(Perl_debug_log, " %8d", ps->state);
134 PerlIO_printf(Perl_debug_log, "\ntoken:");
135 for (ps = min; ps <= parser->ps; ps++)
136 PerlIO_printf(Perl_debug_log, " %8.8s", ps->name);
138 PerlIO_printf(Perl_debug_log, "\nvalue:");
139 for (ps = min; ps <= parser->ps; ps++) {
140 switch (yy_type_tab[yystos[ps->state]]) {
142 PerlIO_printf(Perl_debug_log, " %8.8s",
144 ? PL_op_name[ps->val.opval->op_type]
149 PerlIO_printf(Perl_debug_log, " %8" IVdf, (IV)ps->val.ival);
152 PerlIO_printf(Perl_debug_log, " %8" UVxf, (UV)ps->val.ival);
155 PerlIO_printf(Perl_debug_log, "\n\n");
158 # define YY_STACK_PRINT(parser) \
160 if (yydebug && DEBUG_v_TEST) \
161 yy_stack_print (aTHX_ parser); \
165 /*------------------------------------------------.
166 | Report that the YYRULE is going to be reduced. |
167 `------------------------------------------------*/
170 yy_reduce_print (pTHX_ int yyrule)
173 const unsigned int yylineno = yyrline[yyrule];
174 YYFPRINTF (Perl_debug_log, "Reducing stack by rule %d (line %u), ",
175 yyrule - 1, yylineno);
176 /* Print the symbols being reduced, and their result. */
177 #if PERL_BISON_VERSION >= 30000 /* 3.0+ */
178 for (yyi = 0; yyi < yyr2[yyrule]; yyi++)
179 YYFPRINTF (Perl_debug_log, "%s ",
180 yytname [yystos[(PL_parser->ps)[yyi + 1 - yyr2[yyrule]].state]]);
182 for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
183 YYFPRINTF (Perl_debug_log, "%s ", yytname [yyrhs[yyi]]);
185 YYFPRINTF (Perl_debug_log, "-> %s\n", yytname [yyr1[yyrule]]);
188 # define YY_REDUCE_PRINT(Rule) \
191 yy_reduce_print (aTHX_ Rule); \
194 #else /* !DEBUGGING */
195 # define YYDPRINTF(Args)
196 # define YYDSYMPRINTF(Title, Token, Value)
197 # define YY_STACK_PRINT(parser)
198 # define YY_REDUCE_PRINT(Rule)
199 #endif /* !DEBUGGING */
201 /* called during cleanup (via SAVEDESTRUCTOR_X) to free any items on the
202 * parse stack, thus avoiding leaks if we die */
205 S_clear_yystack(pTHX_ const yy_parser *parser)
207 yy_stack_frame *ps = parser->ps;
213 YYDPRINTF ((Perl_debug_log, "clearing the parse stack\n"));
215 for (i=0; i< parser->yylen; i++) {
216 SvREFCNT_dec(ps[-i].compcv);
220 /* now free whole the stack, including the just-reduced ops */
222 while (ps > parser->stack) {
223 LEAVE_SCOPE(ps->savestack_ix);
224 if (yy_type_tab[yystos[ps->state]] == toketype_opval
227 if (ps->compcv && (ps->compcv != PL_compcv)) {
228 PL_compcv = ps->compcv;
229 PAD_SET_CUR_NOSAVE(CvPADLIST(PL_compcv), 1);
230 PL_comppad_name = PadlistNAMES(CvPADLIST(PL_compcv));
232 YYDPRINTF ((Perl_debug_log, "(freeing op)\n"));
233 op_free(ps->val.opval);
235 SvREFCNT_dec(ps->compcv);
239 Safefree(parser->stack);
248 Perl_yyparse (pTHX_ int gramtype)
255 /* Lookahead token as an internal (translated) token number. */
258 yy_parser *parser; /* the parser object */
259 yy_stack_frame *ps; /* current parser stack frame */
261 #define YYPOPSTACK parser->ps = --ps
262 #define YYPUSHSTACK parser->ps = ++ps
264 /* The variable used to return semantic value and location from the
265 action routines: ie $$. */
268 YYDPRINTF ((Perl_debug_log, "Starting parse\n"));
272 ENTER; /* force parser state cleanup/restoration before we return */
273 SAVEPPTR(parser->yylval.pval);
274 SAVEINT(parser->yychar);
275 SAVEINT(parser->yyerrstatus);
276 SAVEINT(parser->yylen);
277 SAVEVPTR(parser->stack);
278 SAVEVPTR(parser->stack_max1);
279 SAVEVPTR(parser->ps);
281 /* initialise state for this parse */
282 parser->yychar = gramtype;
283 parser->yyerrstatus = 0;
285 Newx(parser->stack, YYINITDEPTH, yy_stack_frame);
286 parser->stack_max1 = parser->stack + YYINITDEPTH - 1;
287 ps = parser->ps = parser->stack;
289 SAVEDESTRUCTOR_X(S_clear_yystack, parser);
291 /*------------------------------------------------------------.
292 | yynewstate -- Push a new state, which is found in yystate. |
293 `------------------------------------------------------------*/
299 YYDPRINTF ((Perl_debug_log, "Entering state %d\n", yystate));
304 /* grow the stack? We always leave 1 spare slot,
305 * in case of a '' -> 'foo' reduction.
306 * Note that stack_max1 points to the (top-1)th allocated stack
307 * element to make this check fast */
309 if (ps >= parser->stack_max1) {
310 Size_t pos = ps - parser->stack;
311 Size_t newsize = 2 * (parser->stack_max1 + 2 - parser->stack);
312 /* this will croak on insufficient memory */
313 Renew(parser->stack, newsize, yy_stack_frame);
314 ps = parser->ps = parser->stack + pos;
315 parser->stack_max1 = parser->stack + newsize - 1;
317 YYDPRINTF((Perl_debug_log,
318 "parser stack size increased to %lu frames\n",
319 (unsigned long int)newsize));
323 /* Do appropriate processing given the current state. */
324 /* Read a lookahead token if we need one and don't already have one. */
326 /* First try to decide what to do without reference to lookahead token. */
328 yyn = yypact[yystate];
329 if (yyn == YYPACT_NINF)
332 /* Not known => get a lookahead token if don't already have one. */
334 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
335 if (parser->yychar == YYEMPTY) {
336 YYDPRINTF ((Perl_debug_log, "Reading a token:\n"));
337 parser->yychar = yylex();
340 if (parser->yychar <= YYEOF) {
341 parser->yychar = yytoken = YYEOF;
342 YYDPRINTF ((Perl_debug_log, "Now at end of input.\n"));
345 /* perly.tab is shipped based on an ASCII system, so need to index it
346 * with characters translated to ASCII. Although it's not designed for
347 * this purpose, we can use NATIVE_TO_UNI here. It returns its
348 * argument on ASCII platforms, and on EBCDIC translates native to
349 * ascii in the 0-255 range, leaving everything else unchanged. This
350 * jibes with yylex() returning some bare characters in that range, but
351 * all tokens it returns are either 0, or above 255. There could be a
352 * problem if NULs weren't 0, or were ever returned as raw chars by
354 yytoken = YYTRANSLATE (NATIVE_TO_UNI(parser->yychar));
355 YYDSYMPRINTF ("Next token is", yytoken, &parser->yylval);
358 /* If the proper action on seeing token YYTOKEN is to reduce or to
359 * detect an error, take that action.
360 * Casting yyn to unsigned allows a >=0 test to be included as
361 * part of the <=YYLAST test for speed */
363 if ((unsigned int)yyn > YYLAST || yycheck[yyn] != yytoken)
368 if (yyn == 0 || yyn == YYTABLE_NINF)
377 /* Shift the lookahead token. */
378 YYDPRINTF ((Perl_debug_log, "Shifting token %s, ", yytname[yytoken]));
380 /* Discard the token being shifted unless it is eof. */
381 if (parser->yychar != YYEOF)
382 parser->yychar = YYEMPTY;
386 ps->val = parser->yylval;
387 ps->compcv = (CV*)SvREFCNT_inc(PL_compcv);
388 ps->savestack_ix = PL_savestack_ix;
390 ps->name = (const char *)(yytname[yytoken]);
393 /* Count tokens shifted since error; after three, turn off error
395 if (parser->yyerrstatus)
396 parser->yyerrstatus--;
401 /*-----------------------------------------------------------.
402 | do the default action for the current state. |
403 `-----------------------------------------------------------*/
404 yyn = yydefact[yystate];
408 /*-----------------------------.
409 | yyreduce -- Do a reduction. |
410 `-----------------------------*/
412 /* yyn is the number of a rule to reduce with. */
413 parser->yylen = yyr2[yyn];
415 /* If YYLEN is nonzero, implement the default value of the action:
418 Otherwise, the following line sets YYVAL to garbage.
419 This behavior is undocumented and Bison
420 users should not rely upon it. Assigning to YYVAL
421 unconditionally makes the parser a bit smaller, and it avoids a
422 GCC warning that YYVAL may be used uninitialized. */
423 yyval = ps[1-parser->yylen].val;
425 YY_STACK_PRINT(parser);
426 YY_REDUCE_PRINT (yyn);
430 /* contains all the rule actions; auto-generated from perly.y */
437 for (i=0; i< parser->yylen; i++) {
438 SvREFCNT_dec(ps[-i].compcv);
442 parser->ps = ps -= (parser->yylen-1);
444 /* Now shift the result of the reduction. Determine what state
445 that goes to, based on the state we popped back to and the rule
446 number reduced by. */
449 ps->compcv = (CV*)SvREFCNT_inc(PL_compcv);
450 ps->savestack_ix = PL_savestack_ix;
452 ps->name = (const char *)(yytname [yyr1[yyn]]);
457 yystate = yypgoto[yyn - YYNTOKENS] + ps[-1].state;
458 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == ps[-1].state)
459 yystate = yytable[yystate];
461 yystate = yydefgoto[yyn - YYNTOKENS];
467 /*------------------------------------.
468 | yyerrlab -- here on detecting error |
469 `------------------------------------*/
471 /* If not already recovering from an error, report this error. */
472 if (!parser->yyerrstatus) {
473 yyerror ("syntax error");
477 if (parser->yyerrstatus == 3) {
478 /* If just tried and failed to reuse lookahead token after an
479 error, discard it. */
481 /* Return failure if at end of input. */
482 if (parser->yychar == YYEOF) {
483 /* Pop the error token. */
484 SvREFCNT_dec(ps->compcv);
486 /* Pop the rest of the stack. */
487 while (ps > parser->stack) {
488 YYDSYMPRINTF ("Error: popping", yystos[ps->state], &ps->val);
489 LEAVE_SCOPE(ps->savestack_ix);
490 if (yy_type_tab[yystos[ps->state]] == toketype_opval
493 YYDPRINTF ((Perl_debug_log, "(freeing op)\n"));
494 if (ps->compcv != PL_compcv) {
495 PL_compcv = ps->compcv;
496 PAD_SET_CUR_NOSAVE(CvPADLIST(PL_compcv), 1);
498 op_free(ps->val.opval);
500 SvREFCNT_dec(ps->compcv);
506 YYDSYMPRINTF ("Error: discarding", yytoken, &parser->yylval);
507 parser->yychar = YYEMPTY;
511 /* Else will try to reuse lookahead token after shifting the error
516 /*----------------------------------------------------.
517 | yyerrlab1 -- error raised explicitly by an action. |
518 `----------------------------------------------------*/
520 parser->yyerrstatus = 3; /* Each real token shifted decrements this. */
523 yyn = yypact[yystate];
524 if (yyn != YYPACT_NINF) {
526 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) {
533 /* Pop the current state because it cannot handle the error token. */
534 if (ps == parser->stack)
537 YYDSYMPRINTF ("Error: popping", yystos[ps->state], &ps->val);
538 LEAVE_SCOPE(ps->savestack_ix);
539 if (yy_type_tab[yystos[ps->state]] == toketype_opval && ps->val.opval) {
540 YYDPRINTF ((Perl_debug_log, "(freeing op)\n"));
541 if (ps->compcv != PL_compcv) {
542 PL_compcv = ps->compcv;
543 PAD_SET_CUR_NOSAVE(CvPADLIST(PL_compcv), 1);
545 op_free(ps->val.opval);
547 SvREFCNT_dec(ps->compcv);
551 YY_STACK_PRINT(parser);
557 YYDPRINTF ((Perl_debug_log, "Shifting error token, "));
561 ps->val = parser->yylval;
562 ps->compcv = (CV*)SvREFCNT_inc(PL_compcv);
563 ps->savestack_ix = PL_savestack_ix;
571 /*-------------------------------------.
572 | yyacceptlab -- YYACCEPT comes here. |
573 `-------------------------------------*/
576 for (ps=parser->ps; ps > parser->stack; ps--) {
577 SvREFCNT_dec(ps->compcv);
579 parser->ps = parser->stack; /* disable cleanup */
582 /*-----------------------------------.
583 | yyabortlab -- YYABORT comes here. |
584 `-----------------------------------*/
590 LEAVE; /* force parser stack cleanup before we return */
595 * ex: set ts=8 sts=4 sw=4 et: