plural.c
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:32k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. /*  A Bison parser, made from plural.y
  2.     by GNU Bison version 1.28  */
  3. #define YYBISON 1  /* Identify Bison output.  */
  4. #define yyparse __gettextparse
  5. #define yylex __gettextlex
  6. #define yyerror __gettexterror
  7. #define yylval __gettextlval
  8. #define yychar __gettextchar
  9. #define yydebug __gettextdebug
  10. #define yynerrs __gettextnerrs
  11. #define EQUOP2 257
  12. #define CMPOP2 258
  13. #define ADDOP2 259
  14. #define MULOP2 260
  15. #define NUMBER 261
  16. #line 1 "plural.y"
  17. /* Expression parsing for plural form selection.
  18.    Copyright (C) 2000, 2001 Free Software Foundation, Inc.
  19.    Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
  20.    This program is free software; you can redistribute it and/or modify it
  21.    under the terms of the GNU Library General Public License as published
  22.    by the Free Software Foundation; either version 2, or (at your option)
  23.    any later version.
  24.    This program is distributed in the hope that it will be useful,
  25.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  27.    Library General Public License for more details.
  28.    You should have received a copy of the GNU Library General Public
  29.    License along with this program; if not, write to the Free Software
  30.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  31.    USA.  */
  32. /* The bison generated parser uses alloca.  AIX 3 forces us to put this
  33.    declaration at the beginning of the file.  The declaration in bison's
  34.    skeleton file comes too late.  This must come before <config.h>
  35.    because <config.h> may include arbitrary system headers.  */
  36. #if defined _AIX && !defined __GNUC__
  37.  #pragma alloca
  38. #endif
  39. #ifdef HAVE_CONFIG_H
  40. # include <config.h>
  41. #endif
  42. #include <stddef.h>
  43. #include <stdlib.h>
  44. #include "plural-exp.h"
  45. /* The main function generated by the parser is called __gettextparse,
  46.    but we want it to be called PLURAL_PARSE.  */
  47. #ifndef _LIBC
  48. # define __gettextparse PLURAL_PARSE
  49. #endif
  50. #define YYLEX_PARAM &((struct parse_args *) arg)->cp
  51. #define YYPARSE_PARAM arg
  52. #line 49 "plural.y"
  53. typedef union {
  54.   unsigned long int num;
  55.   enum operator op;
  56.   struct expression *exp;
  57. } YYSTYPE;
  58. #line 55 "plural.y"
  59. /* Prototypes for local functions.  */
  60. static struct expression *new_exp PARAMS ((int nargs, enum operator op,
  61.    struct expression * const *args));
  62. static inline struct expression *new_exp_0 PARAMS ((enum operator op));
  63. static inline struct expression *new_exp_1 PARAMS ((enum operator op,
  64.    struct expression *right));
  65. static struct expression *new_exp_2 PARAMS ((enum operator op,
  66.      struct expression *left,
  67.      struct expression *right));
  68. static inline struct expression *new_exp_3 PARAMS ((enum operator op,
  69.    struct expression *bexp,
  70.    struct expression *tbranch,
  71.    struct expression *fbranch));
  72. static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
  73. static void yyerror PARAMS ((const char *str));
  74. /* Allocation of expressions.  */
  75. static struct expression *
  76. new_exp (nargs, op, args)
  77.      int nargs;
  78.      enum operator op;
  79.      struct expression * const *args;
  80. {
  81.   int i;
  82.   struct expression *newp;
  83.   /* If any of the argument could not be malloc'ed, just return NULL.  */
  84.   for (i = nargs - 1; i >= 0; i--)
  85.     if (args[i] == NULL)
  86.       goto fail;
  87.   /* Allocate a new expression.  */
  88.   newp = (struct expression *) malloc (sizeof (*newp));
  89.   if (newp != NULL)
  90.     {
  91.       newp->nargs = nargs;
  92.       newp->operation = op;
  93.       for (i = nargs - 1; i >= 0; i--)
  94. newp->val.args[i] = args[i];
  95.       return newp;
  96.     }
  97.  fail:
  98.   for (i = nargs - 1; i >= 0; i--)
  99.     FREE_EXPRESSION (args[i]);
  100.   return NULL;
  101. }
  102. static inline struct expression *
  103. new_exp_0 (op)
  104.      enum operator op;
  105. {
  106.   return new_exp (0, op, NULL);
  107. }
  108. static inline struct expression *
  109. new_exp_1 (op, right)
  110.      enum operator op;
  111.      struct expression *right;
  112. {
  113.   struct expression *args[1];
  114.   args[0] = right;
  115.   return new_exp (1, op, args);
  116. }
  117. static struct expression *
  118. new_exp_2 (op, left, right)
  119.      enum operator op;
  120.      struct expression *left;
  121.      struct expression *right;
  122. {
  123.   struct expression *args[2];
  124.   args[0] = left;
  125.   args[1] = right;
  126.   return new_exp (2, op, args);
  127. }
  128. static inline struct expression *
  129. new_exp_3 (op, bexp, tbranch, fbranch)
  130.      enum operator op;
  131.      struct expression *bexp;
  132.      struct expression *tbranch;
  133.      struct expression *fbranch;
  134. {
  135.   struct expression *args[3];
  136.   args[0] = bexp;
  137.   args[1] = tbranch;
  138.   args[2] = fbranch;
  139.   return new_exp (3, op, args);
  140. }
  141. #include <stdio.h>
  142. #ifndef __cplusplus
  143. #ifndef __STDC__
  144. #define const
  145. #endif
  146. #endif
  147. #define YYFINAL 27
  148. #define YYFLAG -32768
  149. #define YYNTBASE 16
  150. #define YYTRANSLATE(x) ((unsigned)(x) <= 261 ? yytranslate[x] : 18)
  151. static const char yytranslate[] = {     0,
  152.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  153.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  154.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  155.      2,     2,    10,     2,     2,     2,     2,     5,     2,    14,
  156.     15,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  157.      2,     2,     2,     2,     2,     2,     2,    12,     2,     2,
  158.      2,     2,     3,     2,     2,     2,     2,     2,     2,     2,
  159.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  160.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  161.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  162.      2,     2,     2,     2,     2,     2,     2,     2,     2,    13,
  163.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  164.      2,     2,     2,     4,     2,     2,     2,     2,     2,     2,
  165.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  166.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  167.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  168.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  169.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  170.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  171.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  172.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  173.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  174.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  175.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  176.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  177.      2,     2,     2,     2,     2,     1,     6,     7,     8,     9,
  178.     11
  179. };
  180. #if YYDEBUG != 0
  181. static const short yyprhs[] = {     0,
  182.      0,     2,     8,    12,    16,    20,    24,    28,    32,    35,
  183.     37,    39
  184. };
  185. static const short yyrhs[] = {    17,
  186.      0,    17,     3,    17,    12,    17,     0,    17,     4,    17,
  187.      0,    17,     5,    17,     0,    17,     6,    17,     0,    17,
  188.      7,    17,     0,    17,     8,    17,     0,    17,     9,    17,
  189.      0,    10,    17,     0,    13,     0,    11,     0,    14,    17,
  190.     15,     0
  191. };
  192. #endif
  193. #if YYDEBUG != 0
  194. static const short yyrline[] = { 0,
  195.    174,   182,   186,   190,   194,   198,   202,   206,   210,   214,
  196.    218,   223
  197. };
  198. #endif
  199. #if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
  200. static const char * const yytname[] = {   "$","error","$undefined.","'?'","'|'",
  201. "'&'","EQUOP2","CMPOP2","ADDOP2","MULOP2","'!'","NUMBER","':'","'n'","'('","')'",
  202. "start","exp", NULL
  203. };
  204. #endif
  205. static const short yyr1[] = {     0,
  206.     16,    17,    17,    17,    17,    17,    17,    17,    17,    17,
  207.     17,    17
  208. };
  209. static const short yyr2[] = {     0,
  210.      1,     5,     3,     3,     3,     3,     3,     3,     2,     1,
  211.      1,     3
  212. };
  213. static const short yydefact[] = {     0,
  214.      0,    11,    10,     0,     1,     9,     0,     0,     0,     0,
  215.      0,     0,     0,     0,    12,     0,     3,     4,     5,     6,
  216.      7,     8,     0,     2,     0,     0,     0
  217. };
  218. static const short yydefgoto[] = {    25,
  219.      5
  220. };
  221. static const short yypact[] = {    -9,
  222.     -9,-32768,-32768,    -9,    34,-32768,    11,    -9,    -9,    -9,
  223.     -9,    -9,    -9,    -9,-32768,    24,    39,    43,    16,    26,
  224.     -3,-32768,    -9,    34,    21,    53,-32768
  225. };
  226. static const short yypgoto[] = {-32768,
  227.     -1
  228. };
  229. #define YYLAST 53
  230. static const short yytable[] = {     6,
  231.      1,     2,     7,     3,     4,    14,    16,    17,    18,    19,
  232.     20,    21,    22,     8,     9,    10,    11,    12,    13,    14,
  233.     26,    24,    12,    13,    14,    15,     8,     9,    10,    11,
  234.     12,    13,    14,    13,    14,    23,     8,     9,    10,    11,
  235.     12,    13,    14,    10,    11,    12,    13,    14,    11,    12,
  236.     13,    14,    27
  237. };
  238. static const short yycheck[] = {     1,
  239.     10,    11,     4,    13,    14,     9,     8,     9,    10,    11,
  240.     12,    13,    14,     3,     4,     5,     6,     7,     8,     9,
  241.      0,    23,     7,     8,     9,    15,     3,     4,     5,     6,
  242.      7,     8,     9,     8,     9,    12,     3,     4,     5,     6,
  243.      7,     8,     9,     5,     6,     7,     8,     9,     6,     7,
  244.      8,     9,     0
  245. };
  246. #define YYPURE 1
  247. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  248. #line 3 "/usr/local/share/bison.simple"
  249. /* This file comes from bison-1.28.  */
  250. /* Skeleton output parser for bison,
  251.    Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
  252.    This program is free software; you can redistribute it and/or modify
  253.    it under the terms of the GNU General Public License as published by
  254.    the Free Software Foundation; either version 2, or (at your option)
  255.    any later version.
  256.    This program is distributed in the hope that it will be useful,
  257.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  258.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  259.    GNU General Public License for more details.
  260.    You should have received a copy of the GNU General Public License
  261.    along with this program; if not, write to the Free Software
  262.    Foundation, Inc., 59 Temple Place - Suite 330,
  263.    Boston, MA 02111-1307, USA.  */
  264. /* As a special exception, when this file is copied by Bison into a
  265.    Bison output file, you may use that output file without restriction.
  266.    This special exception was added by the Free Software Foundation
  267.    in version 1.24 of Bison.  */
  268. /* This is the parser code that is written into each bison parser
  269.   when the %semantic_parser declaration is not specified in the grammar.
  270.   It was written by Richard Stallman by simplifying the hairy parser
  271.   used when %semantic_parser is specified.  */
  272. #ifndef YYSTACK_USE_ALLOCA
  273. #ifdef alloca
  274. #define YYSTACK_USE_ALLOCA
  275. #else /* alloca not defined */
  276. #ifdef __GNUC__
  277. #define YYSTACK_USE_ALLOCA
  278. #define alloca __builtin_alloca
  279. #else /* not GNU C.  */
  280. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
  281. #define YYSTACK_USE_ALLOCA
  282. #include <alloca.h>
  283. #else /* not sparc */
  284. /* We think this test detects Watcom and Microsoft C.  */
  285. /* This used to test MSDOS, but that is a bad idea
  286.    since that symbol is in the user namespace.  */
  287. #if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
  288. #if 0 /* No need for malloc.h, which pollutes the namespace;
  289.  instead, just don't use alloca.  */
  290. #include <malloc.h>
  291. #endif
  292. #else /* not MSDOS, or __TURBOC__ */
  293. #if defined(_AIX)
  294. /* I don't know what this was needed for, but it pollutes the namespace.
  295.    So I turned it off.   rms, 2 May 1997.  */
  296. /* #include <malloc.h>  */
  297.  #pragma alloca
  298. #define YYSTACK_USE_ALLOCA
  299. #else /* not MSDOS, or __TURBOC__, or _AIX */
  300. #if 0
  301. #ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up,
  302.  and on HPUX 10.  Eventually we can turn this on.  */
  303. #define YYSTACK_USE_ALLOCA
  304. #define alloca __builtin_alloca
  305. #endif /* __hpux */
  306. #endif
  307. #endif /* not _AIX */
  308. #endif /* not MSDOS, or __TURBOC__ */
  309. #endif /* not sparc */
  310. #endif /* not GNU C */
  311. #endif /* alloca not defined */
  312. #endif /* YYSTACK_USE_ALLOCA not defined */
  313. #ifdef YYSTACK_USE_ALLOCA
  314. #define YYSTACK_ALLOC alloca
  315. #else
  316. #define YYSTACK_ALLOC malloc
  317. #endif
  318. /* Note: there must be only one dollar sign in this file.
  319.    It is replaced by the list of actions, each action
  320.    as one case of the switch.  */
  321. #define yyerrok (yyerrstatus = 0)
  322. #define yyclearin (yychar = YYEMPTY)
  323. #define YYEMPTY -2
  324. #define YYEOF 0
  325. #define YYACCEPT goto yyacceptlab
  326. #define YYABORT  goto yyabortlab
  327. #define YYERROR goto yyerrlab1
  328. /* Like YYERROR except do call yyerror.
  329.    This remains here temporarily to ease the
  330.    transition to the new meaning of YYERROR, for GCC.
  331.    Once GCC version 2 has supplanted version 1, this can go.  */
  332. #define YYFAIL goto yyerrlab
  333. #define YYRECOVERING()  (!!yyerrstatus)
  334. #define YYBACKUP(token, value) 
  335. do
  336.   if (yychar == YYEMPTY && yylen == 1)
  337.     { yychar = (token), yylval = (value);
  338.       yychar1 = YYTRANSLATE (yychar);
  339.       YYPOPSTACK;
  340.       goto yybackup;
  341.     }
  342.   else
  343.     { yyerror ("syntax error: cannot back up"); YYERROR; }
  344. while (0)
  345. #define YYTERROR 1
  346. #define YYERRCODE 256
  347. #ifndef YYPURE
  348. #define YYLEX yylex()
  349. #endif
  350. #ifdef YYPURE
  351. #ifdef YYLSP_NEEDED
  352. #ifdef YYLEX_PARAM
  353. #define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
  354. #else
  355. #define YYLEX yylex(&yylval, &yylloc)
  356. #endif
  357. #else /* not YYLSP_NEEDED */
  358. #ifdef YYLEX_PARAM
  359. #define YYLEX yylex(&yylval, YYLEX_PARAM)
  360. #else
  361. #define YYLEX yylex(&yylval)
  362. #endif
  363. #endif /* not YYLSP_NEEDED */
  364. #endif
  365. /* If nonreentrant, generate the variables here */
  366. #ifndef YYPURE
  367. int yychar; /*  the lookahead symbol */
  368. YYSTYPE yylval; /*  the semantic value of the */
  369. /*  lookahead symbol */
  370. #ifdef YYLSP_NEEDED
  371. YYLTYPE yylloc; /*  location data for the lookahead */
  372. /*  symbol */
  373. #endif
  374. int yynerrs; /*  number of parse errors so far       */
  375. #endif  /* not YYPURE */
  376. #if YYDEBUG != 0
  377. int yydebug; /*  nonzero means print parse trace */
  378. /* Since this is uninitialized, it does not stop multiple parsers
  379.    from coexisting.  */
  380. #endif
  381. /*  YYINITDEPTH indicates the initial size of the parser's stacks */
  382. #ifndef YYINITDEPTH
  383. #define YYINITDEPTH 200
  384. #endif
  385. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  386.     (effective only if the built-in stack extension method is used).  */
  387. #if YYMAXDEPTH == 0
  388. #undef YYMAXDEPTH
  389. #endif
  390. #ifndef YYMAXDEPTH
  391. #define YYMAXDEPTH 10000
  392. #endif
  393. /* Define __yy_memcpy.  Note that the size argument
  394.    should be passed with type unsigned int, because that is what the non-GCC
  395.    definitions require.  With GCC, __builtin_memcpy takes an arg
  396.    of type size_t, but it can handle unsigned int.  */
  397. #if __GNUC__ > 1 /* GNU C and GNU C++ define this.  */
  398. #define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
  399. #else /* not GNU C or C++ */
  400. #ifndef __cplusplus
  401. /* This is the most reliable way to avoid incompatibilities
  402.    in available built-in functions on various systems.  */
  403. static void
  404. __yy_memcpy (to, from, count)
  405.      char *to;
  406.      char *from;
  407.      unsigned int count;
  408. {
  409.   register char *f = from;
  410.   register char *t = to;
  411.   register int i = count;
  412.   while (i-- > 0)
  413.     *t++ = *f++;
  414. }
  415. #else /* __cplusplus */
  416. /* This is the most reliable way to avoid incompatibilities
  417.    in available built-in functions on various systems.  */
  418. static void
  419. __yy_memcpy (char *to, char *from, unsigned int count)
  420. {
  421.   register char *t = to;
  422.   register char *f = from;
  423.   register int i = count;
  424.   while (i-- > 0)
  425.     *t++ = *f++;
  426. }
  427. #endif
  428. #endif
  429. #line 217 "/usr/local/share/bison.simple"
  430. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  431.    into yyparse.  The argument should have type void *.
  432.    It should actually point to an object.
  433.    Grammar actions can access the variable by casting it
  434.    to the proper pointer type.  */
  435. #ifdef YYPARSE_PARAM
  436. #ifdef __cplusplus
  437. #define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
  438. #define YYPARSE_PARAM_DECL
  439. #else /* not __cplusplus */
  440. #define YYPARSE_PARAM_ARG YYPARSE_PARAM
  441. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  442. #endif /* not __cplusplus */
  443. #else /* not YYPARSE_PARAM */
  444. #define YYPARSE_PARAM_ARG
  445. #define YYPARSE_PARAM_DECL
  446. #endif /* not YYPARSE_PARAM */
  447. /* Prevent warning if -Wstrict-prototypes.  */
  448. #ifdef __GNUC__
  449. #ifdef YYPARSE_PARAM
  450. int yyparse (void *);
  451. #else
  452. int yyparse (void);
  453. #endif
  454. #endif
  455. int
  456. yyparse(YYPARSE_PARAM_ARG)
  457.      YYPARSE_PARAM_DECL
  458. {
  459.   register int yystate;
  460.   register int yyn;
  461.   register short *yyssp;
  462.   register YYSTYPE *yyvsp;
  463.   int yyerrstatus; /*  number of tokens to shift before error messages enabled */
  464.   int yychar1 = 0; /*  lookahead token as an internal (translated) token number */
  465.   short yyssa[YYINITDEPTH]; /*  the state stack */
  466.   YYSTYPE yyvsa[YYINITDEPTH]; /*  the semantic value stack */
  467.   short *yyss = yyssa; /*  refer to the stacks thru separate pointers */
  468.   YYSTYPE *yyvs = yyvsa; /*  to allow yyoverflow to reallocate them elsewhere */
  469. #ifdef YYLSP_NEEDED
  470.   YYLTYPE yylsa[YYINITDEPTH]; /*  the location stack */
  471.   YYLTYPE *yyls = yylsa;
  472.   YYLTYPE *yylsp;
  473. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  474. #else
  475. #define YYPOPSTACK   (yyvsp--, yyssp--)
  476. #endif
  477.   int yystacksize = YYINITDEPTH;
  478.   int yyfree_stacks = 0;
  479. #ifdef YYPURE
  480.   int yychar;
  481.   YYSTYPE yylval;
  482.   int yynerrs;
  483. #ifdef YYLSP_NEEDED
  484.   YYLTYPE yylloc;
  485. #endif
  486. #endif
  487.   YYSTYPE yyval; /*  the variable used to return */
  488. /*  semantic values from the action */
  489. /*  routines */
  490.   int yylen;
  491. #if YYDEBUG != 0
  492.   if (yydebug)
  493.     fprintf(stderr, "Starting parsen");
  494. #endif
  495.   yystate = 0;
  496.   yyerrstatus = 0;
  497.   yynerrs = 0;
  498.   yychar = YYEMPTY; /* Cause a token to be read.  */
  499.   /* Initialize stack pointers.
  500.      Waste one element of value and location stack
  501.      so that they stay on the same level as the state stack.
  502.      The wasted elements are never initialized.  */
  503.   yyssp = yyss - 1;
  504.   yyvsp = yyvs;
  505. #ifdef YYLSP_NEEDED
  506.   yylsp = yyls;
  507. #endif
  508. /* Push a new state, which is found in  yystate  .  */
  509. /* In all cases, when you get here, the value and location stacks
  510.    have just been pushed. so pushing a state here evens the stacks.  */
  511. yynewstate:
  512.   *++yyssp = yystate;
  513.   if (yyssp >= yyss + yystacksize - 1)
  514.     {
  515.       /* Give user a chance to reallocate the stack */
  516.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  517.       YYSTYPE *yyvs1 = yyvs;
  518.       short *yyss1 = yyss;
  519. #ifdef YYLSP_NEEDED
  520.       YYLTYPE *yyls1 = yyls;
  521. #endif
  522.       /* Get the current used size of the three stacks, in elements.  */
  523.       int size = yyssp - yyss + 1;
  524. #ifdef yyoverflow
  525.       /* Each stack pointer address is followed by the size of
  526.  the data in use in that stack, in bytes.  */
  527. #ifdef YYLSP_NEEDED
  528.       /* This used to be a conditional around just the two extra args,
  529.  but that might be undefined if yyoverflow is a macro.  */
  530.       yyoverflow("parser stack overflow",
  531.  &yyss1, size * sizeof (*yyssp),
  532.  &yyvs1, size * sizeof (*yyvsp),
  533.  &yyls1, size * sizeof (*yylsp),
  534.  &yystacksize);
  535. #else
  536.       yyoverflow("parser stack overflow",
  537.  &yyss1, size * sizeof (*yyssp),
  538.  &yyvs1, size * sizeof (*yyvsp),
  539.  &yystacksize);
  540. #endif
  541.       yyss = yyss1; yyvs = yyvs1;
  542. #ifdef YYLSP_NEEDED
  543.       yyls = yyls1;
  544. #endif
  545. #else /* no yyoverflow */
  546.       /* Extend the stack our own way.  */
  547.       if (yystacksize >= YYMAXDEPTH)
  548. {
  549.   yyerror("parser stack overflow");
  550.   if (yyfree_stacks)
  551.     {
  552.       free (yyss);
  553.       free (yyvs);
  554. #ifdef YYLSP_NEEDED
  555.       free (yyls);
  556. #endif
  557.     }
  558.   return 2;
  559. }
  560.       yystacksize *= 2;
  561.       if (yystacksize > YYMAXDEPTH)
  562. yystacksize = YYMAXDEPTH;
  563. #ifndef YYSTACK_USE_ALLOCA
  564.       yyfree_stacks = 1;
  565. #endif
  566.       yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));
  567.       __yy_memcpy ((char *)yyss, (char *)yyss1,
  568.    size * (unsigned int) sizeof (*yyssp));
  569.       yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp));
  570.       __yy_memcpy ((char *)yyvs, (char *)yyvs1,
  571.    size * (unsigned int) sizeof (*yyvsp));
  572. #ifdef YYLSP_NEEDED
  573.       yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp));
  574.       __yy_memcpy ((char *)yyls, (char *)yyls1,
  575.    size * (unsigned int) sizeof (*yylsp));
  576. #endif
  577. #endif /* no yyoverflow */
  578.       yyssp = yyss + size - 1;
  579.       yyvsp = yyvs + size - 1;
  580. #ifdef YYLSP_NEEDED
  581.       yylsp = yyls + size - 1;
  582. #endif
  583. #if YYDEBUG != 0
  584.       if (yydebug)
  585. fprintf(stderr, "Stack size increased to %dn", yystacksize);
  586. #endif
  587.       if (yyssp >= yyss + yystacksize - 1)
  588. YYABORT;
  589.     }
  590. #if YYDEBUG != 0
  591.   if (yydebug)
  592.     fprintf(stderr, "Entering state %dn", yystate);
  593. #endif
  594.   goto yybackup;
  595.  yybackup:
  596. /* Do appropriate processing given the current state.  */
  597. /* Read a lookahead token if we need one and don't already have one.  */
  598. /* yyresume: */
  599.   /* First try to decide what to do without reference to lookahead token.  */
  600.   yyn = yypact[yystate];
  601.   if (yyn == YYFLAG)
  602.     goto yydefault;
  603.   /* Not known => get a lookahead token if don't already have one.  */
  604.   /* yychar is either YYEMPTY or YYEOF
  605.      or a valid token in external form.  */
  606.   if (yychar == YYEMPTY)
  607.     {
  608. #if YYDEBUG != 0
  609.       if (yydebug)
  610. fprintf(stderr, "Reading a token: ");
  611. #endif
  612.       yychar = YYLEX;
  613.     }
  614.   /* Convert token to internal form (in yychar1) for indexing tables with */
  615.   if (yychar <= 0) /* This means end of input. */
  616.     {
  617.       yychar1 = 0;
  618.       yychar = YYEOF; /* Don't call YYLEX any more */
  619. #if YYDEBUG != 0
  620.       if (yydebug)
  621. fprintf(stderr, "Now at end of input.n");
  622. #endif
  623.     }
  624.   else
  625.     {
  626.       yychar1 = YYTRANSLATE(yychar);
  627. #if YYDEBUG != 0
  628.       if (yydebug)
  629. {
  630.   fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  631.   /* Give the individual parser a way to print the precise meaning
  632.      of a token, for further debugging info.  */
  633. #ifdef YYPRINT
  634.   YYPRINT (stderr, yychar, yylval);
  635. #endif
  636.   fprintf (stderr, ")n");
  637. }
  638. #endif
  639.     }
  640.   yyn += yychar1;
  641.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  642.     goto yydefault;
  643.   yyn = yytable[yyn];
  644.   /* yyn is what to do for this token type in this state.
  645.      Negative => reduce, -yyn is rule number.
  646.      Positive => shift, yyn is new state.
  647.        New state is final state => don't bother to shift,
  648.        just return success.
  649.      0, or most negative number => error.  */
  650.   if (yyn < 0)
  651.     {
  652.       if (yyn == YYFLAG)
  653. goto yyerrlab;
  654.       yyn = -yyn;
  655.       goto yyreduce;
  656.     }
  657.   else if (yyn == 0)
  658.     goto yyerrlab;
  659.   if (yyn == YYFINAL)
  660.     YYACCEPT;
  661.   /* Shift the lookahead token.  */
  662. #if YYDEBUG != 0
  663.   if (yydebug)
  664.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  665. #endif
  666.   /* Discard the token being shifted unless it is eof.  */
  667.   if (yychar != YYEOF)
  668.     yychar = YYEMPTY;
  669.   *++yyvsp = yylval;
  670. #ifdef YYLSP_NEEDED
  671.   *++yylsp = yylloc;
  672. #endif
  673.   /* count tokens shifted since error; after three, turn off error status.  */
  674.   if (yyerrstatus) yyerrstatus--;
  675.   yystate = yyn;
  676.   goto yynewstate;
  677. /* Do the default action for the current state.  */
  678. yydefault:
  679.   yyn = yydefact[yystate];
  680.   if (yyn == 0)
  681.     goto yyerrlab;
  682. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  683. yyreduce:
  684.   yylen = yyr2[yyn];
  685.   if (yylen > 0)
  686.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  687. #if YYDEBUG != 0
  688.   if (yydebug)
  689.     {
  690.       int i;
  691.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  692.        yyn, yyrline[yyn]);
  693.       /* Print the symbols being reduced, and their result.  */
  694.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  695. fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  696.       fprintf (stderr, " -> %sn", yytname[yyr1[yyn]]);
  697.     }
  698. #endif
  699.   switch (yyn) {
  700. case 1:
  701. #line 175 "plural.y"
  702. {
  703.     if (yyvsp[0].exp == NULL)
  704.       YYABORT;
  705.     ((struct parse_args *) arg)->res = yyvsp[0].exp;
  706.   ;
  707.     break;}
  708. case 2:
  709. #line 183 "plural.y"
  710. {
  711.     yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp);
  712.   ;
  713.     break;}
  714. case 3:
  715. #line 187 "plural.y"
  716. {
  717.     yyval.exp = new_exp_2 (lor, yyvsp[-2].exp, yyvsp[0].exp);
  718.   ;
  719.     break;}
  720. case 4:
  721. #line 191 "plural.y"
  722. {
  723.     yyval.exp = new_exp_2 (land, yyvsp[-2].exp, yyvsp[0].exp);
  724.   ;
  725.     break;}
  726. case 5:
  727. #line 195 "plural.y"
  728. {
  729.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  730.   ;
  731.     break;}
  732. case 6:
  733. #line 199 "plural.y"
  734. {
  735.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  736.   ;
  737.     break;}
  738. case 7:
  739. #line 203 "plural.y"
  740. {
  741.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  742.   ;
  743.     break;}
  744. case 8:
  745. #line 207 "plural.y"
  746. {
  747.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  748.   ;
  749.     break;}
  750. case 9:
  751. #line 211 "plural.y"
  752. {
  753.     yyval.exp = new_exp_1 (lnot, yyvsp[0].exp);
  754.   ;
  755.     break;}
  756. case 10:
  757. #line 215 "plural.y"
  758. {
  759.     yyval.exp = new_exp_0 (var);
  760.   ;
  761.     break;}
  762. case 11:
  763. #line 219 "plural.y"
  764. {
  765.     if ((yyval.exp = new_exp_0 (num)) != NULL)
  766.       yyval.exp->val.num = yyvsp[0].num;
  767.   ;
  768.     break;}
  769. case 12:
  770. #line 224 "plural.y"
  771. {
  772.     yyval.exp = yyvsp[-1].exp;
  773.   ;
  774.     break;}
  775. }
  776.    /* the action file gets copied in in place of this dollarsign */
  777. #line 543 "/usr/local/share/bison.simple"
  778.   yyvsp -= yylen;
  779.   yyssp -= yylen;
  780. #ifdef YYLSP_NEEDED
  781.   yylsp -= yylen;
  782. #endif
  783. #if YYDEBUG != 0
  784.   if (yydebug)
  785.     {
  786.       short *ssp1 = yyss - 1;
  787.       fprintf (stderr, "state stack now");
  788.       while (ssp1 != yyssp)
  789. fprintf (stderr, " %d", *++ssp1);
  790.       fprintf (stderr, "n");
  791.     }
  792. #endif
  793.   *++yyvsp = yyval;
  794. #ifdef YYLSP_NEEDED
  795.   yylsp++;
  796.   if (yylen == 0)
  797.     {
  798.       yylsp->first_line = yylloc.first_line;
  799.       yylsp->first_column = yylloc.first_column;
  800.       yylsp->last_line = (yylsp-1)->last_line;
  801.       yylsp->last_column = (yylsp-1)->last_column;
  802.       yylsp->text = 0;
  803.     }
  804.   else
  805.     {
  806.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  807.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  808.     }
  809. #endif
  810.   /* Now "shift" the result of the reduction.
  811.      Determine what state that goes to,
  812.      based on the state we popped back to
  813.      and the rule number reduced by.  */
  814.   yyn = yyr1[yyn];
  815.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  816.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  817.     yystate = yytable[yystate];
  818.   else
  819.     yystate = yydefgoto[yyn - YYNTBASE];
  820.   goto yynewstate;
  821. yyerrlab:   /* here on detecting error */
  822.   if (! yyerrstatus)
  823.     /* If not already recovering from an error, report this error.  */
  824.     {
  825.       ++yynerrs;
  826. #ifdef YYERROR_VERBOSE
  827.       yyn = yypact[yystate];
  828.       if (yyn > YYFLAG && yyn < YYLAST)
  829. {
  830.   int size = 0;
  831.   char *msg;
  832.   int x, count;
  833.   count = 0;
  834.   /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  835.   for (x = (yyn < 0 ? -yyn : 0);
  836.        x < (sizeof(yytname) / sizeof(char *)); x++)
  837.     if (yycheck[x + yyn] == x)
  838.       size += strlen(yytname[x]) + 15, count++;
  839.   msg = (char *) malloc(size + 15);
  840.   if (msg != 0)
  841.     {
  842.       strcpy(msg, "parse error");
  843.       if (count < 5)
  844. {
  845.   count = 0;
  846.   for (x = (yyn < 0 ? -yyn : 0);
  847.        x < (sizeof(yytname) / sizeof(char *)); x++)
  848.     if (yycheck[x + yyn] == x)
  849.       {
  850. strcat(msg, count == 0 ? ", expecting `" : " or `");
  851. strcat(msg, yytname[x]);
  852. strcat(msg, "'");
  853. count++;
  854.       }
  855. }
  856.       yyerror(msg);
  857.       free(msg);
  858.     }
  859.   else
  860.     yyerror ("parse error; also virtual memory exceeded");
  861. }
  862.       else
  863. #endif /* YYERROR_VERBOSE */
  864. yyerror("parse error");
  865.     }
  866.   goto yyerrlab1;
  867. yyerrlab1:   /* here on error raised explicitly by an action */
  868.   if (yyerrstatus == 3)
  869.     {
  870.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  871.       /* return failure if at end of input */
  872.       if (yychar == YYEOF)
  873. YYABORT;
  874. #if YYDEBUG != 0
  875.       if (yydebug)
  876. fprintf(stderr, "Discarding token %d (%s).n", yychar, yytname[yychar1]);
  877. #endif
  878.       yychar = YYEMPTY;
  879.     }
  880.   /* Else will try to reuse lookahead token
  881.      after shifting the error token.  */
  882.   yyerrstatus = 3; /* Each real token shifted decrements this */
  883.   goto yyerrhandle;
  884. yyerrdefault:  /* current state does not do anything special for the error token. */
  885. #if 0
  886.   /* This is wrong; only states that explicitly want error tokens
  887.      should shift them.  */
  888.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  889.   if (yyn) goto yydefault;
  890. #endif
  891. yyerrpop:   /* pop the current state because it cannot handle the error token */
  892.   if (yyssp == yyss) YYABORT;
  893.   yyvsp--;
  894.   yystate = *--yyssp;
  895. #ifdef YYLSP_NEEDED
  896.   yylsp--;
  897. #endif
  898. #if YYDEBUG != 0
  899.   if (yydebug)
  900.     {
  901.       short *ssp1 = yyss - 1;
  902.       fprintf (stderr, "Error: state stack now");
  903.       while (ssp1 != yyssp)
  904. fprintf (stderr, " %d", *++ssp1);
  905.       fprintf (stderr, "n");
  906.     }
  907. #endif
  908. yyerrhandle:
  909.   yyn = yypact[yystate];
  910.   if (yyn == YYFLAG)
  911.     goto yyerrdefault;
  912.   yyn += YYTERROR;
  913.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  914.     goto yyerrdefault;
  915.   yyn = yytable[yyn];
  916.   if (yyn < 0)
  917.     {
  918.       if (yyn == YYFLAG)
  919. goto yyerrpop;
  920.       yyn = -yyn;
  921.       goto yyreduce;
  922.     }
  923.   else if (yyn == 0)
  924.     goto yyerrpop;
  925.   if (yyn == YYFINAL)
  926.     YYACCEPT;
  927. #if YYDEBUG != 0
  928.   if (yydebug)
  929.     fprintf(stderr, "Shifting error token, ");
  930. #endif
  931.   *++yyvsp = yylval;
  932. #ifdef YYLSP_NEEDED
  933.   *++yylsp = yylloc;
  934. #endif
  935.   yystate = yyn;
  936.   goto yynewstate;
  937.  yyacceptlab:
  938.   /* YYACCEPT comes here.  */
  939.   if (yyfree_stacks)
  940.     {
  941.       free (yyss);
  942.       free (yyvs);
  943. #ifdef YYLSP_NEEDED
  944.       free (yyls);
  945. #endif
  946.     }
  947.   return 0;
  948.  yyabortlab:
  949.   /* YYABORT comes here.  */
  950.   if (yyfree_stacks)
  951.     {
  952.       free (yyss);
  953.       free (yyvs);
  954. #ifdef YYLSP_NEEDED
  955.       free (yyls);
  956. #endif
  957.     }
  958.   return 1;
  959. }
  960. #line 229 "plural.y"
  961. void
  962. internal_function
  963. FREE_EXPRESSION (exp)
  964.      struct expression *exp;
  965. {
  966.   if (exp == NULL)
  967.     return;
  968.   /* Handle the recursive case.  */
  969.   switch (exp->nargs)
  970.     {
  971.     case 3:
  972.       FREE_EXPRESSION (exp->val.args[2]);
  973.       /* FALLTHROUGH */
  974.     case 2:
  975.       FREE_EXPRESSION (exp->val.args[1]);
  976.       /* FALLTHROUGH */
  977.     case 1:
  978.       FREE_EXPRESSION (exp->val.args[0]);
  979.       /* FALLTHROUGH */
  980.     default:
  981.       break;
  982.     }
  983.   free (exp);
  984. }
  985. static int
  986. yylex (lval, pexp)
  987.      YYSTYPE *lval;
  988.      const char **pexp;
  989. {
  990.   const char *exp = *pexp;
  991.   int result;
  992.   while (1)
  993.     {
  994.       if (exp[0] == '')
  995. {
  996.   *pexp = exp;
  997.   return YYEOF;
  998. }
  999.       if (exp[0] != ' ' && exp[0] != 't')
  1000. break;
  1001.       ++exp;
  1002.     }
  1003.   result = *exp++;
  1004.   switch (result)
  1005.     {
  1006.     case '0': case '1': case '2': case '3': case '4':
  1007.     case '5': case '6': case '7': case '8': case '9':
  1008.       {
  1009. unsigned long int n = result - '0';
  1010. while (exp[0] >= '0' && exp[0] <= '9')
  1011.   {
  1012.     n *= 10;
  1013.     n += exp[0] - '0';
  1014.     ++exp;
  1015.   }
  1016. lval->num = n;
  1017. result = NUMBER;
  1018.       }
  1019.       break;
  1020.     case '=':
  1021.       if (exp[0] == '=')
  1022. {
  1023.   ++exp;
  1024.   lval->op = equal;
  1025.   result = EQUOP2;
  1026. }
  1027.       else
  1028. result = YYERRCODE;
  1029.       break;
  1030.     case '!':
  1031.       if (exp[0] == '=')
  1032. {
  1033.   ++exp;
  1034.   lval->op = not_equal;
  1035.   result = EQUOP2;
  1036. }
  1037.       break;
  1038.     case '&':
  1039.     case '|':
  1040.       if (exp[0] == result)
  1041. ++exp;
  1042.       else
  1043. result = YYERRCODE;
  1044.       break;
  1045.     case '<':
  1046.       if (exp[0] == '=')
  1047. {
  1048.   ++exp;
  1049.   lval->op = less_or_equal;
  1050. }
  1051.       else
  1052. lval->op = less_than;
  1053.       result = CMPOP2;
  1054.       break;
  1055.     case '>':
  1056.       if (exp[0] == '=')
  1057. {
  1058.   ++exp;
  1059.   lval->op = greater_or_equal;
  1060. }
  1061.       else
  1062. lval->op = greater_than;
  1063.       result = CMPOP2;
  1064.       break;
  1065.     case '*':
  1066.       lval->op = mult;
  1067.       result = MULOP2;
  1068.       break;
  1069.     case '/':
  1070.       lval->op = divide;
  1071.       result = MULOP2;
  1072.       break;
  1073.     case '%':
  1074.       lval->op = module;
  1075.       result = MULOP2;
  1076.       break;
  1077.     case '+':
  1078.       lval->op = plus;
  1079.       result = ADDOP2;
  1080.       break;
  1081.     case '-':
  1082.       lval->op = minus;
  1083.       result = ADDOP2;
  1084.       break;
  1085.     case 'n':
  1086.     case '?':
  1087.     case ':':
  1088.     case '(':
  1089.     case ')':
  1090.       /* Nothing, just return the character.  */
  1091.       break;
  1092.     case ';':
  1093.     case 'n':
  1094.     case '':
  1095.       /* Be safe and let the user call this function again.  */
  1096.       --exp;
  1097.       result = YYEOF;
  1098.       break;
  1099.     default:
  1100.       result = YYERRCODE;
  1101. #if YYDEBUG != 0
  1102.       --exp;
  1103. #endif
  1104.       break;
  1105.     }
  1106.   *pexp = exp;
  1107.   return result;
  1108. }
  1109. static void
  1110. yyerror (str)
  1111.      const char *str;
  1112. {
  1113.   /* Do nothing.  We don't print error messages here.  */
  1114. }