home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / lang / bison.sit / bison.simple < prev    next >
Text File  |  1988-11-19  |  16KB  |  562 lines

  1. #line 2 "bison.simple"
  2.  
  3. /* Skeleton output parser for bison,
  4.    copyright (C) 1984 Bob Corbett and Richard Stallman
  5.  
  6.                NO WARRANTY
  7.  
  8.   BECAUSE THIS PROGRAM IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY
  9. NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT
  10. WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,
  11. RICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE THIS PROGRAM "AS IS"
  12. WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  13. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  14. FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY
  15. AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE
  16. DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  17. CORRECTION.
  18.  
  19.  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.
  20. STALLMAN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY
  21. WHO MAY MODIFY AND REDISTRIBUTE THIS PROGRAM AS PERMITTED BELOW, BE
  22. LIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR
  23. OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  24. USE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
  25. DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR
  26. A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) THIS
  27. PROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
  28. DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.
  29.  
  30.         GENERAL PUBLIC LICENSE TO COPY
  31.  
  32.   1. You may copy and distribute verbatim copies of this source file
  33. as you receive it, in any medium, provided that you conspicuously and
  34. appropriately publish on each copy a valid copyright notice "Copyright
  35. (C) 1985 Free Software Foundation, Inc."; and include following the
  36. copyright notice a verbatim copy of the above disclaimer of warranty
  37. and of this License.  You may charge a distribution fee for the
  38. physical act of transferring a copy.
  39.  
  40.   2. You may modify your copy or copies of this source file or
  41. any portion of it, and copy and distribute such modifications under
  42. the terms of Paragraph 1 above, provided that you also do the following:
  43.  
  44.     a) cause the modified files to carry prominent notices stating
  45.     that you changed the files and the date of any change; and
  46.  
  47.     b) cause the whole of any work that you distribute or publish,
  48.     that in whole or in part contains or is a derivative of this
  49.     program or any part thereof, to be licensed at no charge to all
  50.     third parties on terms identical to those contained in this
  51.     License Agreement (except that you may choose to grant more extensive
  52.     warranty protection to some or all third parties, at your option).
  53.  
  54.     c) You may charge a distribution fee for the physical act of
  55.     transferring a copy, and you may at your option offer warranty
  56.     protection in exchange for a fee.
  57.  
  58. Mere aggregation of another unrelated program with this program (or its
  59. derivative) on a volume of a storage or distribution medium does not bring
  60. the other program under the scope of these terms.
  61.  
  62.   3. You may copy and distribute this program (or a portion or derivative
  63. of it, under Paragraph 2) in object code or executable form under the terms
  64. of Paragraphs 1 and 2 above provided that you also do one of the following:
  65.  
  66.     a) accompany it with the complete corresponding machine-readable
  67.     source code, which must be distributed under the terms of
  68.     Paragraphs 1 and 2 above; or,
  69.  
  70.     b) accompany it with a written offer, valid for at least three
  71.     years, to give any third party free (except for a nominal
  72.     shipping charge) a complete machine-readable copy of the
  73.     corresponding source code, to be distributed under the terms of
  74.     Paragraphs 1 and 2 above; or,
  75.  
  76.     c) accompany it with the information you received as to where the
  77.     corresponding source code may be obtained.  (This alternative is
  78.     allowed only for noncommercial distribution and only if you
  79.     received the program in object code or executable form alone.)
  80.  
  81. For an executable file, complete source code means all the source code for
  82. all modules it contains; but, as a special exception, it need not include
  83. source code for modules which are standard libraries that accompany the
  84. operating system on which the executable file runs.
  85.  
  86.   4. You may not copy, sublicense, distribute or transfer this program
  87. except as expressly provided under this License Agreement.  Any attempt
  88. otherwise to copy, sublicense, distribute or transfer this program is void and
  89. your rights to use the program under this License agreement shall be
  90. automatically terminated.  However, parties who have received computer
  91. software programs from you with this License Agreement will not have
  92. their licenses terminated so long as such parties remain in full compliance.
  93.  
  94.   5. If you wish to incorporate parts of this program into other free
  95. programs whose distribution conditions are different, write to the Free
  96. Software Foundation at 675 Mass Ave, Cambridge, MA 02139.  We have not yet
  97. worked out a simple rule that can be stated here, but we will often permit
  98. this.  We will be guided by the two goals of preserving the free status of
  99. all derivatives of our free software and of promoting the sharing and reuse of
  100. software.
  101.  
  102.  
  103. In other words, you are welcome to use, share and improve this program.
  104. You are forbidden to forbid anyone else to use, share and improve
  105. what you give them.   Help stamp out software-hoarding!  */
  106.  
  107. /* This is the parser code that is written into each bison parser
  108.   when the %semantic_parser declaration is not specified in the grammar.
  109.   It was written by Richard Stallman by simplifying the hairy parser
  110.   used when %semantic_parser is specified.  */
  111.  
  112. /* Note: there must be only one dollar sign in this file.
  113.    It is replaced by the list of actions, each action
  114.    as one case of the switch.  */
  115.  
  116. #define yyerrok        (yyerrstatus = 0)
  117. #define yyclearin    (yychar = YYEMPTY)
  118. #define YYEMPTY        -2
  119. #define YYEOF        0
  120. #define YYFAIL        goto yyerrlab;
  121.  
  122. #define YYTERROR    1
  123.  
  124. #ifndef YYIMPURE
  125. #define YYLEX        yylex()
  126. #endif
  127.  
  128. #ifndef YYPURE
  129. #define YYLEX        yylex(&yylval, &yylloc)
  130. #endif
  131.  
  132. /* If nonreentrant, generate the variables here */
  133.  
  134. #ifndef YYIMPURE
  135.  
  136. int    yychar;            /*  the lookahead symbol        */
  137. YYSTYPE    yylval;            /*  the semantic value of the        */
  138.                 /*  lookahead symbol            */
  139.  
  140. YYLTYPE yylloc;            /*  location data for the lookahead    */
  141.                 /*  symbol                */
  142.  
  143. int yynerr;            /*  number of parse errors so far       */
  144.  
  145. #ifdef YYDEBUG
  146. int yydebug = 0;        /*  nonzero means print parse trace    */
  147. #endif
  148.  
  149. #endif  /* YYIMPURE */
  150.  
  151.  
  152. /*  YYMAXDEPTH indicates the initial size of the parser's stacks    */
  153.  
  154. #ifndef    YYMAXDEPTH
  155. #define YYMAXDEPTH 200
  156. #endif
  157.  
  158. /*  YYMAXLIMIT is the maximum size the stacks can grow to
  159.     (effective only if the built-in stack extension method is used).  */
  160.  
  161. #ifndef YYMAXLIMIT
  162. #define YYMAXLIMIT 10000
  163. #endif
  164.  
  165.  
  166. #line 165 "bison.simple"
  167. int
  168. yyparse()
  169. {
  170.   register int yystate;
  171.   register int yyn;
  172.   register short *yyssp;
  173.   register YYSTYPE *yyvsp;
  174.   YYLTYPE *yylsp;
  175.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  176.   int yychar1;        /*  lookahead token as an internal (translated) token number */
  177.  
  178.   short    yyssa[YYMAXDEPTH];    /*  the state stack            */
  179.   YYSTYPE yyvsa[YYMAXDEPTH];    /*  the semantic value stack        */
  180.   YYLTYPE yylsa[YYMAXDEPTH];    /*  the location stack            */
  181.  
  182.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  183.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  184.   YYLTYPE *yyls = yylsa;
  185.  
  186.   int yymaxdepth = YYMAXDEPTH;
  187.  
  188. #ifndef YYPURE
  189.   int yychar;
  190.   YYSTYPE yylval;
  191.   YYLTYPE yylloc;
  192. #endif
  193.  
  194. #ifdef YYDEBUG
  195.   extern int yydebug;
  196. #endif
  197.  
  198.  
  199.   YYSTYPE yyval;        /*  the variable used to return        */
  200.                 /*  semantic values from the action    */
  201.                 /*  routines                */
  202.  
  203.   int yylen;
  204.  
  205. #ifdef YYDEBUG
  206.   if (yydebug)
  207.     fprintf(stderr, "Starting parse\n");
  208. #endif
  209.  
  210.   yystate = 0;
  211.   yyerrstatus = 0;
  212.   yynerr = 0;
  213.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  214.  
  215.   /* Initialize stack pointers.
  216.      Waste one element of value and location stack
  217.      so that they stay on the same level as the state stack.  */
  218.  
  219.   yyssp = yyss - 1;
  220.   yyvsp = yyvs;
  221.   yylsp = yyls;
  222.  
  223. /* Push a new state, which is found in  yystate  .  */
  224. /* In all cases, when you get here, the value and location stacks
  225.    have just been pushed. so pushing a state here evens the stacks.  */
  226. yynewstate:
  227.  
  228.   *++yyssp = yystate;
  229.  
  230.   if (yyssp >= yyss + yymaxdepth - 1)
  231.     {
  232.       /* Give user a chance to reallocate the stack */
  233.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  234.       YYSTYPE *yyvs1 = yyvs;
  235.       YYLTYPE *yyls1 = yyls;
  236.       short *yyss1 = yyss;
  237.  
  238.       /* Get the current used size of the three stacks, in elements.  */
  239.       int size = yyssp - yyss + 1;
  240.  
  241. #ifdef yyoverflow
  242.       /* Each stack pointer address is followed by the size of
  243.      the data in use in that stack, in bytes.  */
  244.       yyoverflow("parser stack overflow",
  245.          &yyss1, size * sizeof (*yyssp),
  246.          &yyvs1, size * sizeof (*yyvsp),
  247.          &yyls1, size * sizeof (*yylsp),
  248.          &yymaxdepth);
  249.  
  250.       yyss = yyss1; yyvs = yyvs1; yyls = yyls1;
  251. #else /* no yyoverflow */
  252. #ifdef macintosh
  253. /* Macintosh-only macro */
  254. #define bcopy(src,dst,n) BlockMove(src,dst,(long)n)
  255. #endif
  256.       /* Extend the stack our own way.  */
  257.       if (yymaxdepth >= YYMAXLIMIT)
  258.     yyerror("parser stack overflow");
  259.       yymaxdepth *= 2;
  260.       if (yymaxdepth > YYMAXLIMIT)
  261.     yymaxdepth = YYMAXLIMIT;
  262.       yyss = (short *) alloca (yymaxdepth * sizeof (*yyssp));
  263.       bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  264.       yyvs = (YYSTYPE *) alloca (yymaxdepth * sizeof (*yyvsp));
  265.       bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  266. #ifdef YYLSP_NEEDED
  267.       yyls = (YYLTYPE *) alloca (yymaxdepth * sizeof (*yylsp));
  268.       bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  269. #endif
  270. #endif /* no yyoverflow */
  271.  
  272.       yyssp = yyss + size - 1;
  273.       yyvsp = yyvs + size - 1;
  274. #ifdef YYLSP_NEEDED
  275.       yylsp = yyls + size - 1;
  276. #endif
  277.  
  278. #ifdef YYDEBUG
  279.       if (yydebug)
  280.     fprintf(stderr, "Stack size increased to %d\n", yymaxdepth);
  281. #endif
  282.  
  283.       if (yyssp >= yyss + yymaxdepth - 1)
  284.     YYERROR;
  285.     }
  286.  
  287. #ifdef YYDEBUG
  288.   if (yydebug)
  289.     fprintf(stderr, "Entering state %d\n", yystate);
  290. #endif
  291.  
  292. /* Do appropriate processing given the current state.  */
  293. /* Read a lookahead token if we need one and don't already have one.  */
  294. yyresume:
  295.  
  296.   /* First try to decide what to do without reference to lookahead token.  */
  297.  
  298.   yyn = yypact[yystate];
  299.   if (yyn == YYFLAG)
  300.     goto yydefault;
  301.  
  302.   /* Not known => get a lookahead token if don't already have one.  */
  303.  
  304.   /* yychar is either YYEMPTY or YYEOF
  305.      or a valid token in external form.  */
  306.  
  307.   if (yychar == YYEMPTY)
  308.     {
  309. #ifdef YYDEBUG
  310.       if (yydebug)
  311.     fprintf(stderr, "Reading a token: ");
  312. #endif
  313.       yychar = YYLEX;
  314.     }
  315.  
  316.   /* Convert token to internal form (in yychar1) for indexing tables with */
  317.  
  318.   if (yychar <= 0)        /* This means end of input. */
  319.     {
  320.       yychar1 = 0;
  321.       yychar = YYEOF;        /* Don't call YYLEX any more */
  322.  
  323. #ifdef YYDEBUG
  324.       if (yydebug)
  325.     fprintf(stderr, "Now at end of input.\n");
  326. #endif
  327.     }
  328.   else
  329.     {
  330.       yychar1 = YYTRANSLATE(yychar);
  331.  
  332. #ifdef YYDEBUG
  333.       if (yydebug)
  334.     fprintf(stderr, "Next token is %d (%s)\n", yychar, yytname[yychar1]);
  335. #endif
  336.     }
  337.  
  338.   yyn += yychar1;
  339.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  340.     goto yydefault;
  341.  
  342.   yyn = yytable[yyn];
  343.  
  344.   /* yyn is what to do for this token type in this state.
  345.      Negative => reduce, -yyn is rule number.
  346.      Positive => shift, yyn is new state.
  347.        New state is final state => don't bother to shift,
  348.        just return success.
  349.      0, or most negative number => error.  */
  350.  
  351.   if (yyn < 0)
  352.     {
  353.       if (yyn == YYFLAG)
  354.     goto yyerrlab;
  355.       yyn = -yyn;
  356.       goto yyreduce;
  357.     }
  358.   else if (yyn == 0)
  359.     goto yyerrlab;
  360.  
  361.   if (yyn == YYFINAL)
  362.     YYACCEPT;
  363.  
  364.   /* Shift the lookahead token.  */
  365.  
  366. #ifdef YYDEBUG
  367.   if (yydebug)
  368.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  369. #endif
  370.  
  371.   /* Discard the token being shifted unless it is eof.  */
  372.   if (yychar != YYEOF)
  373.     yychar = YYEMPTY;
  374.  
  375.   *++yyvsp = yylval;
  376. #ifdef YYLSP_NEEDED
  377.   *++yylsp = yylloc;
  378. #endif
  379.  
  380.   /* count tokens shifted since error; after three, turn off error status.  */
  381.   if (yyerrstatus) yyerrstatus--;
  382.  
  383.   yystate = yyn;
  384.   goto yynewstate;
  385.  
  386. /* Do the default action for the current state.  */
  387. yydefault:
  388.  
  389.   yyn = yydefact[yystate];
  390.   if (yyn == 0)
  391.     goto yyerrlab;
  392.  
  393. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  394. yyreduce:
  395.   yylen = yyr2[yyn];
  396.   yyval = yyvsp[1-yylen]; /* implement default value of the action */
  397.  
  398. #ifdef YYDEBUG
  399.   if (yydebug)
  400.     {
  401.       if (yylen == 1)
  402.     fprintf (stderr, "Reducing 1 value via line %d, ",
  403.          yyrline[yyn]);
  404.       else
  405.     fprintf (stderr, "Reducing %d values via line %d, ",
  406.          yylen, yyrline[yyn]);
  407.     }
  408. #endif
  409.  
  410. $   /* the action file gets copied in in place of this dollarsign */
  411. #line 303 "bison.simple"
  412.  
  413.   yyvsp -= yylen;
  414.   yyssp -= yylen;
  415. #ifdef YYLSP_NEEDED
  416.   yylsp -= yylen;
  417. #endif
  418.  
  419. #ifdef YYDEBUG
  420.   if (yydebug)
  421.     {
  422.       short *ssp1 = yyss - 1;
  423.       fprintf (stderr, "state stack now", yyssp-yyss);
  424.       while (ssp1 != yyssp)
  425.     fprintf (stderr, " %d", *++ssp1);
  426.       fprintf (stderr, "\n");
  427.     }
  428. #endif
  429.  
  430.   *++yyvsp = yyval;
  431.  
  432. #ifdef YYLSP_NEEDED
  433.   yylsp++;
  434.   if (yylen == 0)
  435.     {
  436.       yylsp->first_line = yylloc.first_line;
  437.       yylsp->first_column = yylloc.first_column;
  438.       yylsp->last_line = (yylsp-1)->last_line;
  439.       yylsp->last_column = (yylsp-1)->last_column;
  440.       yylsp->text = 0;
  441.     }
  442.   else
  443.     {
  444.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  445.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  446.     }
  447. #endif
  448.  
  449.   /* Now "shift" the result of the reduction.
  450.      Determine what state that goes to,
  451.      based on the state we popped back to
  452.      and the rule number reduced by.  */
  453.  
  454.   yyn = yyr1[yyn];
  455.  
  456.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  457.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  458.     yystate = yytable[yystate];
  459.   else
  460.     yystate = yydefgoto[yyn - YYNTBASE];
  461.  
  462.   goto yynewstate;
  463.  
  464. yyerrlab:   /* here on detecting error */
  465.  
  466.   if (! yyerrstatus)
  467.     /* If not already recovering from an error, report this error.  */
  468.     {
  469.       ++yynerr;
  470.       yyerror("parse error");
  471.     }
  472.  
  473.   if (yyerrstatus == 3)
  474.     {
  475.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  476.  
  477.       /* return failure if at end of input */
  478.       if (yychar == YYEOF)
  479.     YYERROR;
  480.  
  481. #ifdef YYDEBUG
  482.       if (yydebug)
  483.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  484. #endif
  485.  
  486.       yychar = YYEMPTY;
  487.     }
  488.  
  489.   /* Else will try to reuse lookahead token
  490.      after shifting the error token.  */
  491.  
  492.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  493.  
  494.   goto yyerrhandle;
  495.  
  496. yyerrdefault:  /* current state does not do anything special for the error token. */
  497.  
  498. #if 0
  499.   /* This is wrong; only states that explicitly want error tokens
  500.      should shift them.  */
  501.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  502.   if (yyn) goto yydefault;
  503. #endif
  504.  
  505. yyerrpop:   /* pop the current state because it cannot handle the error token */
  506.  
  507.   if (yyssp == yyss) YYERROR;
  508.   yyvsp--;
  509.   yystate = *--yyssp;
  510. #ifdef YYLSP_NEEDED
  511.   yylsp--;
  512. #endif
  513.  
  514. #ifdef YYDEBUG
  515.   if (yydebug)
  516.     {
  517.       short *ssp1 = yyss - 1;
  518.       fprintf (stderr, "Error: state stack now", yyssp-yyss);
  519.       while (ssp1 != yyssp)
  520.     fprintf (stderr, " %d", *++ssp1);
  521.       fprintf (stderr, "\n");
  522.     }
  523. #endif
  524.  
  525. yyerrhandle:
  526.  
  527.   yyn = yypact[yystate];
  528.   if (yyn == YYFLAG)
  529.     goto yyerrdefault;
  530.  
  531.   yyn += YYTERROR;
  532.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  533.     goto yyerrdefault;
  534.  
  535.   yyn = yytable[yyn];
  536.   if (yyn < 0)
  537.     {
  538.       if (yyn == YYFLAG)
  539.     goto yyerrpop;
  540.       yyn = -yyn;
  541.       goto yyreduce;
  542.     }
  543.   else if (yyn == 0)
  544.     goto yyerrpop;
  545.  
  546.   if (yyn == YYFINAL)
  547.     YYACCEPT;
  548.  
  549. #ifdef YYDEBUG
  550.   if (yydebug)
  551.     fprintf(stderr, "Shifting error token, ");
  552. #endif
  553.  
  554.   *++yyvsp = yylval;
  555. #ifdef YYLSP_NEEDED
  556.   *++yylsp = yylloc;
  557. #endif
  558.  
  559.   yystate = yyn;
  560.   goto yynewstate;
  561. }
  562.