plural.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:39k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /* A Bison parser, made by GNU Bison 1.875a.  */
  2. /* Skeleton parser for Yacc-like parsing with Bison,
  3.    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 59 Temple Place - Suite 330,
  15.    Boston, MA 02111-1307, USA.  */
  16. /* As a special exception, when this file is copied by Bison into a
  17.    Bison output file, you may use that output file without restriction.
  18.    This special exception was added by the Free Software Foundation
  19.    in version 1.24 of Bison.  */
  20. /* Written by Richard Stallman by simplifying the original so called
  21.    ``semantic'' parser.  */
  22. /* All symbols defined below should begin with yy or YY, to avoid
  23.    infringing on user name space.  This should be done even for local
  24.    variables, as they might otherwise be expanded by user macros.
  25.    There are some unavoidable exceptions within include files to
  26.    define necessary library symbols; they are noted "INFRINGES ON
  27.    USER NAME SPACE" below.  */
  28. /* Identify Bison output.  */
  29. #define YYBISON 1
  30. /* Skeleton name.  */
  31. #define YYSKELETON_NAME "yacc.c"
  32. /* Pure parsers.  */
  33. #define YYPURE 1
  34. /* Using locations.  */
  35. #define YYLSP_NEEDED 0
  36. /* If NAME_PREFIX is specified substitute the variables and functions
  37.    names.  */
  38. #define yyparse __gettextparse
  39. #define yylex   __gettextlex
  40. #define yyerror __gettexterror
  41. #define yylval  __gettextlval
  42. #define yychar  __gettextchar
  43. #define yydebug __gettextdebug
  44. #define yynerrs __gettextnerrs
  45. /* Tokens.  */
  46. #ifndef YYTOKENTYPE
  47. # define YYTOKENTYPE
  48.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  49.       know about them.  */
  50.    enum yytokentype {
  51.      EQUOP2 = 258,
  52.      CMPOP2 = 259,
  53.      ADDOP2 = 260,
  54.      MULOP2 = 261,
  55.      NUMBER = 262
  56.    };
  57. #endif
  58. #define EQUOP2 258
  59. #define CMPOP2 259
  60. #define ADDOP2 260
  61. #define MULOP2 261
  62. #define NUMBER 262
  63. /* Copy the first part of user declarations.  */
  64. #line 1 "plural.y"
  65. /* Expression parsing for plural form selection.
  66.    Copyright (C) 2000, 2001 Free Software Foundation, Inc.
  67.    Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
  68.    This program is free software; you can redistribute it and/or modify it
  69.    under the terms of the GNU Library General Public License as published
  70.    by the Free Software Foundation; either version 2, or (at your option)
  71.    any later version.
  72.    This program is distributed in the hope that it will be useful,
  73.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  74.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  75.    Library General Public License for more details.
  76.    You should have received a copy of the GNU Library General Public
  77.    License along with this program; if not, write to the Free Software
  78.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  79.    USA.  */
  80. /* The bison generated parser uses alloca.  AIX 3 forces us to put this
  81.    declaration at the beginning of the file.  The declaration in bison's
  82.    skeleton file comes too late.  This must come before <config.h>
  83.    because <config.h> may include arbitrary system headers.  */
  84. #if defined _AIX && !defined __GNUC__
  85.  #pragma alloca
  86. #endif
  87. #ifdef HAVE_CONFIG_H
  88. # include <config.h>
  89. #endif
  90. #include <stddef.h>
  91. #include <stdlib.h>
  92. #include "plural-exp.h"
  93. /* The main function generated by the parser is called __gettextparse,
  94.    but we want it to be called PLURAL_PARSE.  */
  95. #ifndef _LIBC
  96. # define __gettextparse PLURAL_PARSE
  97. #endif
  98. #define YYLEX_PARAM &((struct parse_args *) arg)->cp
  99. #define YYPARSE_PARAM arg
  100. /* Enabling traces.  */
  101. #ifndef YYDEBUG
  102. # define YYDEBUG 0
  103. #endif
  104. /* Enabling verbose error messages.  */
  105. #ifdef YYERROR_VERBOSE
  106. # undef YYERROR_VERBOSE
  107. # define YYERROR_VERBOSE 1
  108. #else
  109. # define YYERROR_VERBOSE 0
  110. #endif
  111. #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
  112. #line 49 "plural.y"
  113. typedef union YYSTYPE {
  114.   unsigned long int num;
  115.   enum operator op;
  116.   struct expression *exp;
  117. } YYSTYPE;
  118. /* Line 191 of yacc.c.  */
  119. #line 151 "plural.c"
  120. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  121. # define YYSTYPE_IS_DECLARED 1
  122. # define YYSTYPE_IS_TRIVIAL 1
  123. #endif
  124. /* Copy the second part of user declarations.  */
  125. #line 55 "plural.y"
  126. /* Prototypes for local functions.  */
  127. static struct expression *new_exp PARAMS ((int nargs, enum operator op,
  128.    struct expression * const *args));
  129. static inline struct expression *new_exp_0 PARAMS ((enum operator op));
  130. static inline struct expression *new_exp_1 PARAMS ((enum operator op,
  131.    struct expression *right));
  132. static struct expression *new_exp_2 PARAMS ((enum operator op,
  133.      struct expression *left,
  134.      struct expression *right));
  135. static inline struct expression *new_exp_3 PARAMS ((enum operator op,
  136.    struct expression *bexp,
  137.    struct expression *tbranch,
  138.    struct expression *fbranch));
  139. static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
  140. static void yyerror PARAMS ((const char *str));
  141. /* Allocation of expressions.  */
  142. static struct expression *
  143. new_exp (nargs, op, args)
  144.      int nargs;
  145.      enum operator op;
  146.      struct expression * const *args;
  147. {
  148.   int i;
  149.   struct expression *newp;
  150.   /* If any of the argument could not be malloc'ed, just return NULL.  */
  151.   for (i = nargs - 1; i >= 0; i--)
  152.     if (args[i] == NULL)
  153.       goto fail;
  154.   /* Allocate a new expression.  */
  155.   newp = (struct expression *) malloc (sizeof (*newp));
  156.   if (newp != NULL)
  157.     {
  158.       newp->nargs = nargs;
  159.       newp->operation = op;
  160.       for (i = nargs - 1; i >= 0; i--)
  161. newp->val.args[i] = args[i];
  162.       return newp;
  163.     }
  164.  fail:
  165.   for (i = nargs - 1; i >= 0; i--)
  166.     FREE_EXPRESSION (args[i]);
  167.   return NULL;
  168. }
  169. static inline struct expression *
  170. new_exp_0 (op)
  171.      enum operator op;
  172. {
  173.   return new_exp (0, op, NULL);
  174. }
  175. static inline struct expression *
  176. new_exp_1 (op, right)
  177.      enum operator op;
  178.      struct expression *right;
  179. {
  180.   struct expression *args[1];
  181.   args[0] = right;
  182.   return new_exp (1, op, args);
  183. }
  184. static struct expression *
  185. new_exp_2 (op, left, right)
  186.      enum operator op;
  187.      struct expression *left;
  188.      struct expression *right;
  189. {
  190.   struct expression *args[2];
  191.   args[0] = left;
  192.   args[1] = right;
  193.   return new_exp (2, op, args);
  194. }
  195. static inline struct expression *
  196. new_exp_3 (op, bexp, tbranch, fbranch)
  197.      enum operator op;
  198.      struct expression *bexp;
  199.      struct expression *tbranch;
  200.      struct expression *fbranch;
  201. {
  202.   struct expression *args[3];
  203.   args[0] = bexp;
  204.   args[1] = tbranch;
  205.   args[2] = fbranch;
  206.   return new_exp (3, op, args);
  207. }
  208. /* Line 214 of yacc.c.  */
  209. #line 261 "plural.c"
  210. #if ! defined (yyoverflow) || YYERROR_VERBOSE
  211. /* The parser invokes alloca or malloc; define the necessary symbols.  */
  212. # if YYSTACK_USE_ALLOCA
  213. #  define YYSTACK_ALLOC alloca
  214. # else
  215. #  ifndef YYSTACK_USE_ALLOCA
  216. #   if defined (alloca) || defined (_ALLOCA_H)
  217. #    define YYSTACK_ALLOC alloca
  218. #   else
  219. #    ifdef __GNUC__
  220. #     define YYSTACK_ALLOC __builtin_alloca
  221. #    endif
  222. #   endif
  223. #  endif
  224. # endif
  225. # ifdef YYSTACK_ALLOC
  226.    /* Pacify GCC's `empty if-body' warning. */
  227. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
  228. # else
  229. #  if defined (__STDC__) || defined (__cplusplus)
  230. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  231. #   define YYSIZE_T size_t
  232. #  endif
  233. #  define YYSTACK_ALLOC malloc
  234. #  define YYSTACK_FREE free
  235. # endif
  236. #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
  237. #if (! defined (yyoverflow) 
  238.      && (! defined (__cplusplus) 
  239.  || (YYSTYPE_IS_TRIVIAL)))
  240. /* A type that is properly aligned for any stack member.  */
  241. union yyalloc
  242. {
  243.   short yyss;
  244.   YYSTYPE yyvs;
  245.   };
  246. /* The size of the maximum gap between one aligned stack and the next.  */
  247. # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
  248. /* The size of an array large to enough to hold all stacks, each with
  249.    N elements.  */
  250. # define YYSTACK_BYTES(N) 
  251.      ((N) * (sizeof (short) + sizeof (YYSTYPE))
  252.       + YYSTACK_GAP_MAXIMUM)
  253. /* Copy COUNT objects from FROM to TO.  The source and destination do
  254.    not overlap.  */
  255. # ifndef YYCOPY
  256. #  if 1 < __GNUC__
  257. #   define YYCOPY(To, From, Count) 
  258.       __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
  259. #  else
  260. #   define YYCOPY(To, From, Count)
  261.       do
  262. {
  263.   register YYSIZE_T yyi;
  264.   for (yyi = 0; yyi < (Count); yyi++)
  265.     (To)[yyi] = (From)[yyi];
  266. }
  267.       while (0)
  268. #  endif
  269. # endif
  270. /* Relocate STACK from its old location to the new one.  The
  271.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  272.    elements in the stack, and YYPTR gives the new location of the
  273.    stack.  Advance YYPTR to a properly aligned location for the next
  274.    stack.  */
  275. # define YYSTACK_RELOCATE(Stack)
  276.     do
  277.       {
  278. YYSIZE_T yynewbytes;
  279. YYCOPY (&yyptr->Stack, Stack, yysize);
  280. Stack = &yyptr->Stack;
  281. yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; 
  282. yyptr += yynewbytes / sizeof (*yyptr);
  283.       }
  284.     while (0)
  285. #endif
  286. #if defined (__STDC__) || defined (__cplusplus)
  287.    typedef signed char yysigned_char;
  288. #else
  289.    typedef short yysigned_char;
  290. #endif
  291. /* YYFINAL -- State number of the termination state. */
  292. #define YYFINAL  9
  293. /* YYLAST -- Last index in YYTABLE.  */
  294. #define YYLAST   54
  295. /* YYNTOKENS -- Number of terminals. */
  296. #define YYNTOKENS  16
  297. /* YYNNTS -- Number of nonterminals. */
  298. #define YYNNTS  3
  299. /* YYNRULES -- Number of rules. */
  300. #define YYNRULES  13
  301. /* YYNRULES -- Number of states. */
  302. #define YYNSTATES  27
  303. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  304. #define YYUNDEFTOK  2
  305. #define YYMAXUTOK   262
  306. #define YYTRANSLATE(YYX) 
  307.   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
  308. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  309. static const unsigned char yytranslate[] =
  310. {
  311.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  312.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  313.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  314.        2,     2,     2,    10,     2,     2,     2,     2,     5,     2,
  315.       14,    15,     2,     2,     2,     2,     2,     2,     2,     2,
  316.        2,     2,     2,     2,     2,     2,     2,     2,    12,     2,
  317.        2,     2,     2,     3,     2,     2,     2,     2,     2,     2,
  318.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  319.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  320.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  321.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  322.       13,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  323.        2,     2,     2,     2,     4,     2,     2,     2,     2,     2,
  324.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  325.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  326.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  327.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  328.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  329.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  330.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  331.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  332.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  333.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  334.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  335.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  336.        2,     2,     2,     2,     2,     2,     1,     2,     6,     7,
  337.        8,     9,    11
  338. };
  339. #if YYDEBUG
  340. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  341.    YYRHS.  */
  342. static const unsigned char yyprhs[] =
  343. {
  344.        0,     0,     3,     5,    11,    15,    19,    23,    27,    31,
  345.       35,    38,    40,    42
  346. };
  347. /* YYRHS -- A `-1'-separated list of the rules' RHS. */
  348. static const yysigned_char yyrhs[] =
  349. {
  350.       17,     0,    -1,    18,    -1,    18,     3,    18,    12,    18,
  351.       -1,    18,     4,    18,    -1,    18,     5,    18,    -1,    18,
  352.        6,    18,    -1,    18,     7,    18,    -1,    18,     8,    18,
  353.       -1,    18,     9,    18,    -1,    10,    18,    -1,    13,    -1,
  354.       11,    -1,    14,    18,    15,    -1
  355. };
  356. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  357. static const unsigned char yyrline[] =
  358. {
  359.        0,   174,   174,   182,   186,   190,   194,   198,   202,   206,
  360.      210,   214,   218,   223
  361. };
  362. #endif
  363. #if YYDEBUG || YYERROR_VERBOSE
  364. /* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  365.    First, the terminals, then, starting at YYNTOKENS, nonterminals. */
  366. static const char *const yytname[] =
  367. {
  368.   "$end", "error", "$undefined", "'?'", "'|'", "'&'", "EQUOP2", "CMPOP2", 
  369.   "ADDOP2", "MULOP2", "'!'", "NUMBER", "':'", "'n'", "'('", "')'", 
  370.   "$accept", "start", "exp", 0
  371. };
  372. #endif
  373. # ifdef YYPRINT
  374. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  375.    token YYLEX-NUM.  */
  376. static const unsigned short yytoknum[] =
  377. {
  378.        0,   256,   257,    63,   124,    38,   258,   259,   260,   261,
  379.       33,   262,    58,   110,    40,    41
  380. };
  381. # endif
  382. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  383. static const unsigned char yyr1[] =
  384. {
  385.        0,    16,    17,    18,    18,    18,    18,    18,    18,    18,
  386.       18,    18,    18,    18
  387. };
  388. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  389. static const unsigned char yyr2[] =
  390. {
  391.        0,     2,     1,     5,     3,     3,     3,     3,     3,     3,
  392.        2,     1,     1,     3
  393. };
  394. /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
  395.    STATE-NUM when YYTABLE doesn't specify something else to do.  Zero
  396.    means the default is an error.  */
  397. static const unsigned char yydefact[] =
  398. {
  399.        0,     0,    12,    11,     0,     0,     2,    10,     0,     1,
  400.        0,     0,     0,     0,     0,     0,     0,    13,     0,     4,
  401.        5,     6,     7,     8,     9,     0,     3
  402. };
  403. /* YYDEFGOTO[NTERM-NUM]. */
  404. static const yysigned_char yydefgoto[] =
  405. {
  406.       -1,     5,     6
  407. };
  408. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  409.    STATE-NUM.  */
  410. #define YYPACT_NINF -10
  411. static const yysigned_char yypact[] =
  412. {
  413.       -9,    -9,   -10,   -10,    -9,     8,    36,   -10,    13,   -10,
  414.       -9,    -9,    -9,    -9,    -9,    -9,    -9,   -10,    26,    41,
  415.       45,    18,    -2,    14,   -10,    -9,    36
  416. };
  417. /* YYPGOTO[NTERM-NUM].  */
  418. static const yysigned_char yypgoto[] =
  419. {
  420.      -10,   -10,    -1
  421. };
  422. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  423.    positive, shift that token.  If negative, reduce the rule which
  424.    number is the opposite.  If zero, do what YYDEFACT says.
  425.    If YYTABLE_NINF, syntax error.  */
  426. #define YYTABLE_NINF -1
  427. static const unsigned char yytable[] =
  428. {
  429.        7,     1,     2,     8,     3,     4,    15,    16,     9,    18,
  430.       19,    20,    21,    22,    23,    24,    10,    11,    12,    13,
  431.       14,    15,    16,    16,    26,    14,    15,    16,    17,    10,
  432.       11,    12,    13,    14,    15,    16,     0,     0,    25,    10,
  433.       11,    12,    13,    14,    15,    16,    12,    13,    14,    15,
  434.       16,    13,    14,    15,    16
  435. };
  436. static const yysigned_char yycheck[] =
  437. {
  438.        1,    10,    11,     4,    13,    14,     8,     9,     0,    10,
  439.       11,    12,    13,    14,    15,    16,     3,     4,     5,     6,
  440.        7,     8,     9,     9,    25,     7,     8,     9,    15,     3,
  441.        4,     5,     6,     7,     8,     9,    -1,    -1,    12,     3,
  442.        4,     5,     6,     7,     8,     9,     5,     6,     7,     8,
  443.        9,     6,     7,     8,     9
  444. };
  445. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  446.    symbol of state STATE-NUM.  */
  447. static const unsigned char yystos[] =
  448. {
  449.        0,    10,    11,    13,    14,    17,    18,    18,    18,     0,
  450.        3,     4,     5,     6,     7,     8,     9,    15,    18,    18,
  451.       18,    18,    18,    18,    18,    12,    18
  452. };
  453. #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
  454. # define YYSIZE_T __SIZE_TYPE__
  455. #endif
  456. #if ! defined (YYSIZE_T) && defined (size_t)
  457. # define YYSIZE_T size_t
  458. #endif
  459. #if ! defined (YYSIZE_T)
  460. # if defined (__STDC__) || defined (__cplusplus)
  461. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  462. #  define YYSIZE_T size_t
  463. # endif
  464. #endif
  465. #if ! defined (YYSIZE_T)
  466. # define YYSIZE_T unsigned int
  467. #endif
  468. #define yyerrok (yyerrstatus = 0)
  469. #define yyclearin (yychar = YYEMPTY)
  470. #define YYEMPTY (-2)
  471. #define YYEOF 0
  472. #define YYACCEPT goto yyacceptlab
  473. #define YYABORT goto yyabortlab
  474. #define YYERROR goto yyerrlab1
  475. /* Like YYERROR except do call yyerror.  This remains here temporarily
  476.    to ease the transition to the new meaning of YYERROR, for GCC.
  477.    Once GCC version 2 has supplanted version 1, this can go.  */
  478. #define YYFAIL goto yyerrlab
  479. #define YYRECOVERING()  (!!yyerrstatus)
  480. #define YYBACKUP(Token, Value)
  481. do
  482.   if (yychar == YYEMPTY && yylen == 1)
  483.     {
  484.       yychar = (Token);
  485.       yylval = (Value);
  486.       yytoken = YYTRANSLATE (yychar);
  487.       YYPOPSTACK;
  488.       goto yybackup;
  489.     }
  490.   else
  491.     { 
  492.       yyerror ("syntax error: cannot back up");
  493.       YYERROR;
  494.     }
  495. while (0)
  496. #define YYTERROR 1
  497. #define YYERRCODE 256
  498. /* YYLLOC_DEFAULT -- Compute the default location (before the actions
  499.    are run).  */
  500. #ifndef YYLLOC_DEFAULT
  501. # define YYLLOC_DEFAULT(Current, Rhs, N)         
  502.   Current.first_line   = Rhs[1].first_line;      
  503.   Current.first_column = Rhs[1].first_column;    
  504.   Current.last_line    = Rhs[N].last_line;       
  505.   Current.last_column  = Rhs[N].last_column;
  506. #endif
  507. /* YYLEX -- calling `yylex' with the right arguments.  */
  508. #ifdef YYLEX_PARAM
  509. # define YYLEX yylex (&yylval, YYLEX_PARAM)
  510. #else
  511. # define YYLEX yylex (&yylval)
  512. #endif
  513. /* Enable debugging if requested.  */
  514. #if YYDEBUG
  515. # ifndef YYFPRINTF
  516. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  517. #  define YYFPRINTF fprintf
  518. # endif
  519. # define YYDPRINTF(Args)
  520. do {
  521.   if (yydebug)
  522.     YYFPRINTF Args;
  523. } while (0)
  524. # define YYDSYMPRINT(Args)
  525. do {
  526.   if (yydebug)
  527.     yysymprint Args;
  528. } while (0)
  529. # define YYDSYMPRINTF(Title, Token, Value, Location)
  530. do {
  531.   if (yydebug)
  532.     {
  533.       YYFPRINTF (stderr, "%s ", Title);
  534.       yysymprint (stderr, 
  535.                   Token, Value);
  536.       YYFPRINTF (stderr, "n");
  537.     }
  538. } while (0)
  539. /*------------------------------------------------------------------.
  540. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  541. | TOP (cinluded).                                                   |
  542. `------------------------------------------------------------------*/
  543. #if defined (__STDC__) || defined (__cplusplus)
  544. static void
  545. yy_stack_print (short *bottom, short *top)
  546. #else
  547. static void
  548. yy_stack_print (bottom, top)
  549.     short *bottom;
  550.     short *top;
  551. #endif
  552. {
  553.   YYFPRINTF (stderr, "Stack now");
  554.   for (/* Nothing. */; bottom <= top; ++bottom)
  555.     YYFPRINTF (stderr, " %d", *bottom);
  556.   YYFPRINTF (stderr, "n");
  557. }
  558. # define YY_STACK_PRINT(Bottom, Top)
  559. do {
  560.   if (yydebug)
  561.     yy_stack_print ((Bottom), (Top));
  562. } while (0)
  563. /*------------------------------------------------.
  564. | Report that the YYRULE is going to be reduced.  |
  565. `------------------------------------------------*/
  566. #if defined (__STDC__) || defined (__cplusplus)
  567. static void
  568. yy_reduce_print (int yyrule)
  569. #else
  570. static void
  571. yy_reduce_print (yyrule)
  572.     int yyrule;
  573. #endif
  574. {
  575.   int yyi;
  576.   unsigned int yylineno = yyrline[yyrule];
  577.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
  578.              yyrule - 1, yylineno);
  579.   /* Print the symbols being reduced, and their result.  */
  580.   for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
  581.     YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);
  582.   YYFPRINTF (stderr, "-> %sn", yytname [yyr1[yyrule]]);
  583. }
  584. # define YY_REDUCE_PRINT(Rule)
  585. do {
  586.   if (yydebug)
  587.     yy_reduce_print (Rule);
  588. } while (0)
  589. /* Nonzero means print parse trace.  It is left uninitialized so that
  590.    multiple parsers can coexist.  */
  591. int yydebug;
  592. #else /* !YYDEBUG */
  593. # define YYDPRINTF(Args)
  594. # define YYDSYMPRINT(Args)
  595. # define YYDSYMPRINTF(Title, Token, Value, Location)
  596. # define YY_STACK_PRINT(Bottom, Top)
  597. # define YY_REDUCE_PRINT(Rule)
  598. #endif /* !YYDEBUG */
  599. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  600. #ifndef YYINITDEPTH
  601. # define YYINITDEPTH 200
  602. #endif
  603. /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
  604.    if the built-in stack extension method is used).
  605.    Do not make this value too large; the results are undefined if
  606.    SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
  607.    evaluated with infinite-precision integer arithmetic.  */
  608. #if YYMAXDEPTH == 0
  609. # undef YYMAXDEPTH
  610. #endif
  611. #ifndef YYMAXDEPTH
  612. # define YYMAXDEPTH 10000
  613. #endif
  614. #if YYERROR_VERBOSE
  615. # ifndef yystrlen
  616. #  if defined (__GLIBC__) && defined (_STRING_H)
  617. #   define yystrlen strlen
  618. #  else
  619. /* Return the length of YYSTR.  */
  620. static YYSIZE_T
  621. #   if defined (__STDC__) || defined (__cplusplus)
  622. yystrlen (const char *yystr)
  623. #   else
  624. yystrlen (yystr)
  625.      const char *yystr;
  626. #   endif
  627. {
  628.   register const char *yys = yystr;
  629.   while (*yys++ != '')
  630.     continue;
  631.   return yys - yystr - 1;
  632. }
  633. #  endif
  634. # endif
  635. # ifndef yystpcpy
  636. #  if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
  637. #   define yystpcpy stpcpy
  638. #  else
  639. /* Copy YYSRC to YYDEST, returning the address of the terminating '' in
  640.    YYDEST.  */
  641. static char *
  642. #   if defined (__STDC__) || defined (__cplusplus)
  643. yystpcpy (char *yydest, const char *yysrc)
  644. #   else
  645. yystpcpy (yydest, yysrc)
  646.      char *yydest;
  647.      const char *yysrc;
  648. #   endif
  649. {
  650.   register char *yyd = yydest;
  651.   register const char *yys = yysrc;
  652.   while ((*yyd++ = *yys++) != '')
  653.     continue;
  654.   return yyd - 1;
  655. }
  656. #  endif
  657. # endif
  658. #endif /* !YYERROR_VERBOSE */
  659. #if YYDEBUG
  660. /*--------------------------------.
  661. | Print this symbol on YYOUTPUT.  |
  662. `--------------------------------*/
  663. #if defined (__STDC__) || defined (__cplusplus)
  664. static void
  665. yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep)
  666. #else
  667. static void
  668. yysymprint (yyoutput, yytype, yyvaluep)
  669.     FILE *yyoutput;
  670.     int yytype;
  671.     YYSTYPE *yyvaluep;
  672. #endif
  673. {
  674.   /* Pacify ``unused variable'' warnings.  */
  675.   (void) yyvaluep;
  676.   if (yytype < YYNTOKENS)
  677.     {
  678.       YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  679. # ifdef YYPRINT
  680.       YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  681. # endif
  682.     }
  683.   else
  684.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
  685.   switch (yytype)
  686.     {
  687.       default:
  688.         break;
  689.     }
  690.   YYFPRINTF (yyoutput, ")");
  691. }
  692. #endif /* ! YYDEBUG */
  693. /*-----------------------------------------------.
  694. | Release the memory associated to this symbol.  |
  695. `-----------------------------------------------*/
  696. #if defined (__STDC__) || defined (__cplusplus)
  697. static void
  698. yydestruct (int yytype, YYSTYPE *yyvaluep)
  699. #else
  700. static void
  701. yydestruct (yytype, yyvaluep)
  702.     int yytype;
  703.     YYSTYPE *yyvaluep;
  704. #endif
  705. {
  706.   /* Pacify ``unused variable'' warnings.  */
  707.   (void) yyvaluep;
  708.   switch (yytype)
  709.     {
  710.       default:
  711.         break;
  712.     }
  713. }
  714. /* Prevent warnings from -Wmissing-prototypes.  */
  715. #ifdef YYPARSE_PARAM
  716. # if defined (__STDC__) || defined (__cplusplus)
  717. int yyparse (void *YYPARSE_PARAM);
  718. # else
  719. int yyparse ();
  720. # endif
  721. #else /* ! YYPARSE_PARAM */
  722. #if defined (__STDC__) || defined (__cplusplus)
  723. int yyparse (void);
  724. #else
  725. int yyparse ();
  726. #endif
  727. #endif /* ! YYPARSE_PARAM */
  728. /*----------.
  729. | yyparse.  |
  730. `----------*/
  731. #ifdef YYPARSE_PARAM
  732. # if defined (__STDC__) || defined (__cplusplus)
  733. int yyparse (void *YYPARSE_PARAM)
  734. # else
  735. int yyparse (YYPARSE_PARAM)
  736.   void *YYPARSE_PARAM;
  737. # endif
  738. #else /* ! YYPARSE_PARAM */
  739. #if defined (__STDC__) || defined (__cplusplus)
  740. int
  741. yyparse (void)
  742. #else
  743. int
  744. yyparse ()
  745. #endif
  746. #endif
  747. {
  748.   /* The lookahead symbol.  */
  749. int yychar;
  750. /* The semantic value of the lookahead symbol.  */
  751. YYSTYPE yylval;
  752. /* Number of syntax errors so far.  */
  753. int yynerrs;
  754.   register int yystate;
  755.   register int yyn;
  756.   int yyresult;
  757.   /* Number of tokens to shift before error messages enabled.  */
  758.   int yyerrstatus;
  759.   /* Lookahead token as an internal (translated) token number.  */
  760.   int yytoken = 0;
  761.   /* Three stacks and their tools:
  762.      `yyss': related to states,
  763.      `yyvs': related to semantic values,
  764.      `yyls': related to locations.
  765.      Refer to the stacks thru separate pointers, to allow yyoverflow
  766.      to reallocate them elsewhere.  */
  767.   /* The state stack.  */
  768.   short yyssa[YYINITDEPTH];
  769.   short *yyss = yyssa;
  770.   register short *yyssp;
  771.   /* The semantic value stack.  */
  772.   YYSTYPE yyvsa[YYINITDEPTH];
  773.   YYSTYPE *yyvs = yyvsa;
  774.   register YYSTYPE *yyvsp;
  775. #define YYPOPSTACK   (yyvsp--, yyssp--)
  776.   YYSIZE_T yystacksize = YYINITDEPTH;
  777.   /* The variables used to return semantic value and location from the
  778.      action routines.  */
  779.   YYSTYPE yyval;
  780.   /* When reducing, the number of symbols on the RHS of the reduced
  781.      rule.  */
  782.   int yylen;
  783.   YYDPRINTF ((stderr, "Starting parsen"));
  784.   yystate = 0;
  785.   yyerrstatus = 0;
  786.   yynerrs = 0;
  787.   yychar = YYEMPTY; /* Cause a token to be read.  */
  788.   /* Initialize stack pointers.
  789.      Waste one element of value and location stack
  790.      so that they stay on the same level as the state stack.
  791.      The wasted elements are never initialized.  */
  792.   yyssp = yyss;
  793.   yyvsp = yyvs;
  794.   goto yysetstate;
  795. /*------------------------------------------------------------.
  796. | yynewstate -- Push a new state, which is found in yystate.  |
  797. `------------------------------------------------------------*/
  798.  yynewstate:
  799.   /* In all cases, when you get here, the value and location stacks
  800.      have just been pushed. so pushing a state here evens the stacks.
  801.      */
  802.   yyssp++;
  803.  yysetstate:
  804.   *yyssp = yystate;
  805.   if (yyss + yystacksize - 1 <= yyssp)
  806.     {
  807.       /* Get the current used size of the three stacks, in elements.  */
  808.       YYSIZE_T yysize = yyssp - yyss + 1;
  809. #ifdef yyoverflow
  810.       {
  811. /* Give user a chance to reallocate the stack. Use copies of
  812.    these so that the &'s don't force the real ones into
  813.    memory.  */
  814. YYSTYPE *yyvs1 = yyvs;
  815. short *yyss1 = yyss;
  816. /* Each stack pointer address is followed by the size of the
  817.    data in use in that stack, in bytes.  This used to be a
  818.    conditional around just the two extra args, but that might
  819.    be undefined if yyoverflow is a macro.  */
  820. yyoverflow ("parser stack overflow",
  821.     &yyss1, yysize * sizeof (*yyssp),
  822.     &yyvs1, yysize * sizeof (*yyvsp),
  823.     &yystacksize);
  824. yyss = yyss1;
  825. yyvs = yyvs1;
  826.       }
  827. #else /* no yyoverflow */
  828. # ifndef YYSTACK_RELOCATE
  829.       goto yyoverflowlab;
  830. # else
  831.       /* Extend the stack our own way.  */
  832.       if (YYMAXDEPTH <= yystacksize)
  833. goto yyoverflowlab;
  834.       yystacksize *= 2;
  835.       if (YYMAXDEPTH < yystacksize)
  836. yystacksize = YYMAXDEPTH;
  837.       {
  838. short *yyss1 = yyss;
  839. union yyalloc *yyptr =
  840.   (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  841. if (! yyptr)
  842.   goto yyoverflowlab;
  843. YYSTACK_RELOCATE (yyss);
  844. YYSTACK_RELOCATE (yyvs);
  845. #  undef YYSTACK_RELOCATE
  846. if (yyss1 != yyssa)
  847.   YYSTACK_FREE (yyss1);
  848.       }
  849. # endif
  850. #endif /* no yyoverflow */
  851.       yyssp = yyss + yysize - 1;
  852.       yyvsp = yyvs + yysize - 1;
  853.       YYDPRINTF ((stderr, "Stack size increased to %lun",
  854.   (unsigned long int) yystacksize));
  855.       if (yyss + yystacksize - 1 <= yyssp)
  856. YYABORT;
  857.     }
  858.   YYDPRINTF ((stderr, "Entering state %dn", yystate));
  859.   goto yybackup;
  860. /*-----------.
  861. | yybackup.  |
  862. `-----------*/
  863. yybackup:
  864. /* Do appropriate processing given the current state.  */
  865. /* Read a lookahead token if we need one and don't already have one.  */
  866. /* yyresume: */
  867.   /* First try to decide what to do without reference to lookahead token.  */
  868.   yyn = yypact[yystate];
  869.   if (yyn == YYPACT_NINF)
  870.     goto yydefault;
  871.   /* Not known => get a lookahead token if don't already have one.  */
  872.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  873.   if (yychar == YYEMPTY)
  874.     {
  875.       YYDPRINTF ((stderr, "Reading a token: "));
  876.       yychar = YYLEX;
  877.     }
  878.   if (yychar <= YYEOF)
  879.     {
  880.       yychar = yytoken = YYEOF;
  881.       YYDPRINTF ((stderr, "Now at end of input.n"));
  882.     }
  883.   else
  884.     {
  885.       yytoken = YYTRANSLATE (yychar);
  886.       YYDSYMPRINTF ("Next token is", yytoken, &yylval, &yylloc);
  887.     }
  888.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  889.      detect an error, take that action.  */
  890.   yyn += yytoken;
  891.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  892.     goto yydefault;
  893.   yyn = yytable[yyn];
  894.   if (yyn <= 0)
  895.     {
  896.       if (yyn == 0 || yyn == YYTABLE_NINF)
  897. goto yyerrlab;
  898.       yyn = -yyn;
  899.       goto yyreduce;
  900.     }
  901.   if (yyn == YYFINAL)
  902.     YYACCEPT;
  903.   /* Shift the lookahead token.  */
  904.   YYDPRINTF ((stderr, "Shifting token %s, ", yytname[yytoken]));
  905.   /* Discard the token being shifted unless it is eof.  */
  906.   if (yychar != YYEOF)
  907.     yychar = YYEMPTY;
  908.   *++yyvsp = yylval;
  909.   /* Count tokens shifted since error; after three, turn off error
  910.      status.  */
  911.   if (yyerrstatus)
  912.     yyerrstatus--;
  913.   yystate = yyn;
  914.   goto yynewstate;
  915. /*-----------------------------------------------------------.
  916. | yydefault -- do the default action for the current state.  |
  917. `-----------------------------------------------------------*/
  918. yydefault:
  919.   yyn = yydefact[yystate];
  920.   if (yyn == 0)
  921.     goto yyerrlab;
  922.   goto yyreduce;
  923. /*-----------------------------.
  924. | yyreduce -- Do a reduction.  |
  925. `-----------------------------*/
  926. yyreduce:
  927.   /* yyn is the number of a rule to reduce with.  */
  928.   yylen = yyr2[yyn];
  929.   /* If YYLEN is nonzero, implement the default value of the action:
  930.      `$$ = $1'.
  931.      Otherwise, the following line sets YYVAL to garbage.
  932.      This behavior is undocumented and Bison
  933.      users should not rely upon it.  Assigning to YYVAL
  934.      unconditionally makes the parser a bit smaller, and it avoids a
  935.      GCC warning that YYVAL may be used uninitialized.  */
  936.   yyval = yyvsp[1-yylen];
  937.   YY_REDUCE_PRINT (yyn);
  938.   switch (yyn)
  939.     {
  940.         case 2:
  941. #line 175 "plural.y"
  942.     {
  943.     if (yyvsp[0].exp == NULL)
  944.       YYABORT;
  945.     ((struct parse_args *) arg)->res = yyvsp[0].exp;
  946.   }
  947.     break;
  948.   case 3:
  949. #line 183 "plural.y"
  950.     {
  951.     yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp);
  952.   }
  953.     break;
  954.   case 4:
  955. #line 187 "plural.y"
  956.     {
  957.     yyval.exp = new_exp_2 (lor, yyvsp[-2].exp, yyvsp[0].exp);
  958.   }
  959.     break;
  960.   case 5:
  961. #line 191 "plural.y"
  962.     {
  963.     yyval.exp = new_exp_2 (land, yyvsp[-2].exp, yyvsp[0].exp);
  964.   }
  965.     break;
  966.   case 6:
  967. #line 195 "plural.y"
  968.     {
  969.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  970.   }
  971.     break;
  972.   case 7:
  973. #line 199 "plural.y"
  974.     {
  975.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  976.   }
  977.     break;
  978.   case 8:
  979. #line 203 "plural.y"
  980.     {
  981.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  982.   }
  983.     break;
  984.   case 9:
  985. #line 207 "plural.y"
  986.     {
  987.     yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp);
  988.   }
  989.     break;
  990.   case 10:
  991. #line 211 "plural.y"
  992.     {
  993.     yyval.exp = new_exp_1 (lnot, yyvsp[0].exp);
  994.   }
  995.     break;
  996.   case 11:
  997. #line 215 "plural.y"
  998.     {
  999.     yyval.exp = new_exp_0 (var);
  1000.   }
  1001.     break;
  1002.   case 12:
  1003. #line 219 "plural.y"
  1004.     {
  1005.     if ((yyval.exp = new_exp_0 (num)) != NULL)
  1006.       yyval.exp->val.num = yyvsp[0].num;
  1007.   }
  1008.     break;
  1009.   case 13:
  1010. #line 224 "plural.y"
  1011.     {
  1012.     yyval.exp = yyvsp[-1].exp;
  1013.   }
  1014.     break;
  1015.     }
  1016. /* Line 999 of yacc.c.  */
  1017. #line 1236 "plural.c"
  1018.   yyvsp -= yylen;
  1019.   yyssp -= yylen;
  1020.   YY_STACK_PRINT (yyss, yyssp);
  1021.   *++yyvsp = yyval;
  1022.   /* Now `shift' the result of the reduction.  Determine what state
  1023.      that goes to, based on the state we popped back to and the rule
  1024.      number reduced by.  */
  1025.   yyn = yyr1[yyn];
  1026.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  1027.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  1028.     yystate = yytable[yystate];
  1029.   else
  1030.     yystate = yydefgoto[yyn - YYNTOKENS];
  1031.   goto yynewstate;
  1032. /*------------------------------------.
  1033. | yyerrlab -- here on detecting error |
  1034. `------------------------------------*/
  1035. yyerrlab:
  1036.   /* If not already recovering from an error, report this error.  */
  1037.   if (!yyerrstatus)
  1038.     {
  1039.       ++yynerrs;
  1040. #if YYERROR_VERBOSE
  1041.       yyn = yypact[yystate];
  1042.       if (YYPACT_NINF < yyn && yyn < YYLAST)
  1043. {
  1044.   YYSIZE_T yysize = 0;
  1045.   int yytype = YYTRANSLATE (yychar);
  1046.   char *yymsg;
  1047.   int yyx, yycount;
  1048.   yycount = 0;
  1049.   /* Start YYX at -YYN if negative to avoid negative indexes in
  1050.      YYCHECK.  */
  1051.   for (yyx = yyn < 0 ? -yyn : 0;
  1052.        yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++)
  1053.     if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
  1054.       yysize += yystrlen (yytname[yyx]) + 15, yycount++;
  1055.   yysize += yystrlen ("syntax error, unexpected ") + 1;
  1056.   yysize += yystrlen (yytname[yytype]);
  1057.   yymsg = (char *) YYSTACK_ALLOC (yysize);
  1058.   if (yymsg != 0)
  1059.     {
  1060.       char *yyp = yystpcpy (yymsg, "syntax error, unexpected ");
  1061.       yyp = yystpcpy (yyp, yytname[yytype]);
  1062.       if (yycount < 5)
  1063. {
  1064.   yycount = 0;
  1065.   for (yyx = yyn < 0 ? -yyn : 0;
  1066.        yyx < (int) (sizeof (yytname) / sizeof (char *));
  1067.        yyx++)
  1068.     if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
  1069.       {
  1070. const char *yyq = ! yycount ? ", expecting " : " or ";
  1071. yyp = yystpcpy (yyp, yyq);
  1072. yyp = yystpcpy (yyp, yytname[yyx]);
  1073. yycount++;
  1074.       }
  1075. }
  1076.       yyerror (yymsg);
  1077.       YYSTACK_FREE (yymsg);
  1078.     }
  1079.   else
  1080.     yyerror ("syntax error; also virtual memory exhausted");
  1081. }
  1082.       else
  1083. #endif /* YYERROR_VERBOSE */
  1084. yyerror ("syntax error");
  1085.     }
  1086.   if (yyerrstatus == 3)
  1087.     {
  1088.       /* If just tried and failed to reuse lookahead token after an
  1089.  error, discard it.  */
  1090.       /* Return failure if at end of input.  */
  1091.       if (yychar == YYEOF)
  1092.         {
  1093.   /* Pop the error token.  */
  1094.           YYPOPSTACK;
  1095.   /* Pop the rest of the stack.  */
  1096.   while (yyss < yyssp)
  1097.     {
  1098.       YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
  1099.       yydestruct (yystos[*yyssp], yyvsp);
  1100.       YYPOPSTACK;
  1101.     }
  1102.   YYABORT;
  1103.         }
  1104.       YYDSYMPRINTF ("Error: discarding", yytoken, &yylval, &yylloc);
  1105.       yydestruct (yytoken, &yylval);
  1106.       yychar = YYEMPTY;
  1107.     }
  1108.   /* Else will try to reuse lookahead token after shifting the error
  1109.      token.  */
  1110.   goto yyerrlab1;
  1111. /*----------------------------------------------------.
  1112. | yyerrlab1 -- error raised explicitly by an action.  |
  1113. `----------------------------------------------------*/
  1114. yyerrlab1:
  1115.   yyerrstatus = 3; /* Each real token shifted decrements this.  */
  1116.   for (;;)
  1117.     {
  1118.       yyn = yypact[yystate];
  1119.       if (yyn != YYPACT_NINF)
  1120. {
  1121.   yyn += YYTERROR;
  1122.   if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  1123.     {
  1124.       yyn = yytable[yyn];
  1125.       if (0 < yyn)
  1126. break;
  1127.     }
  1128. }
  1129.       /* Pop the current state because it cannot handle the error token.  */
  1130.       if (yyssp == yyss)
  1131. YYABORT;
  1132.       YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
  1133.       yydestruct (yystos[yystate], yyvsp);
  1134.       yyvsp--;
  1135.       yystate = *--yyssp;
  1136.       YY_STACK_PRINT (yyss, yyssp);
  1137.     }
  1138.   if (yyn == YYFINAL)
  1139.     YYACCEPT;
  1140.   YYDPRINTF ((stderr, "Shifting error token, "));
  1141.   *++yyvsp = yylval;
  1142.   yystate = yyn;
  1143.   goto yynewstate;
  1144. /*-------------------------------------.
  1145. | yyacceptlab -- YYACCEPT comes here.  |
  1146. `-------------------------------------*/
  1147. yyacceptlab:
  1148.   yyresult = 0;
  1149.   goto yyreturn;
  1150. /*-----------------------------------.
  1151. | yyabortlab -- YYABORT comes here.  |
  1152. `-----------------------------------*/
  1153. yyabortlab:
  1154.   yyresult = 1;
  1155.   goto yyreturn;
  1156. #ifndef yyoverflow
  1157. /*----------------------------------------------.
  1158. | yyoverflowlab -- parser overflow comes here.  |
  1159. `----------------------------------------------*/
  1160. yyoverflowlab:
  1161.   yyerror ("parser stack overflow");
  1162.   yyresult = 2;
  1163.   /* Fall through.  */
  1164. #endif
  1165. yyreturn:
  1166. #ifndef yyoverflow
  1167.   if (yyss != yyssa)
  1168.     YYSTACK_FREE (yyss);
  1169. #endif
  1170.   return yyresult;
  1171. }
  1172. #line 229 "plural.y"
  1173. void
  1174. internal_function
  1175. FREE_EXPRESSION (exp)
  1176.      struct expression *exp;
  1177. {
  1178.   if (exp == NULL)
  1179.     return;
  1180.   /* Handle the recursive case.  */
  1181.   switch (exp->nargs)
  1182.     {
  1183.     case 3:
  1184.       FREE_EXPRESSION (exp->val.args[2]);
  1185.       /* FALLTHROUGH */
  1186.     case 2:
  1187.       FREE_EXPRESSION (exp->val.args[1]);
  1188.       /* FALLTHROUGH */
  1189.     case 1:
  1190.       FREE_EXPRESSION (exp->val.args[0]);
  1191.       /* FALLTHROUGH */
  1192.     default:
  1193.       break;
  1194.     }
  1195.   free (exp);
  1196. }
  1197. static int
  1198. yylex (lval, pexp)
  1199.      YYSTYPE *lval;
  1200.      const char **pexp;
  1201. {
  1202.   const char *exp = *pexp;
  1203.   int result;
  1204.   while (1)
  1205.     {
  1206.       if (exp[0] == '')
  1207. {
  1208.   *pexp = exp;
  1209.   return YYEOF;
  1210. }
  1211.       if (exp[0] != ' ' && exp[0] != 't')
  1212. break;
  1213.       ++exp;
  1214.     }
  1215.   result = *exp++;
  1216.   switch (result)
  1217.     {
  1218.     case '0': case '1': case '2': case '3': case '4':
  1219.     case '5': case '6': case '7': case '8': case '9':
  1220.       {
  1221. unsigned long int n = result - '0';
  1222. while (exp[0] >= '0' && exp[0] <= '9')
  1223.   {
  1224.     n *= 10;
  1225.     n += exp[0] - '0';
  1226.     ++exp;
  1227.   }
  1228. lval->num = n;
  1229. result = NUMBER;
  1230.       }
  1231.       break;
  1232.     case '=':
  1233.       if (exp[0] == '=')
  1234. {
  1235.   ++exp;
  1236.   lval->op = equal;
  1237.   result = EQUOP2;
  1238. }
  1239.       else
  1240. result = YYERRCODE;
  1241.       break;
  1242.     case '!':
  1243.       if (exp[0] == '=')
  1244. {
  1245.   ++exp;
  1246.   lval->op = not_equal;
  1247.   result = EQUOP2;
  1248. }
  1249.       break;
  1250.     case '&':
  1251.     case '|':
  1252.       if (exp[0] == result)
  1253. ++exp;
  1254.       else
  1255. result = YYERRCODE;
  1256.       break;
  1257.     case '<':
  1258.       if (exp[0] == '=')
  1259. {
  1260.   ++exp;
  1261.   lval->op = less_or_equal;
  1262. }
  1263.       else
  1264. lval->op = less_than;
  1265.       result = CMPOP2;
  1266.       break;
  1267.     case '>':
  1268.       if (exp[0] == '=')
  1269. {
  1270.   ++exp;
  1271.   lval->op = greater_or_equal;
  1272. }
  1273.       else
  1274. lval->op = greater_than;
  1275.       result = CMPOP2;
  1276.       break;
  1277.     case '*':
  1278.       lval->op = mult;
  1279.       result = MULOP2;
  1280.       break;
  1281.     case '/':
  1282.       lval->op = divide;
  1283.       result = MULOP2;
  1284.       break;
  1285.     case '%':
  1286.       lval->op = module;
  1287.       result = MULOP2;
  1288.       break;
  1289.     case '+':
  1290.       lval->op = plus;
  1291.       result = ADDOP2;
  1292.       break;
  1293.     case '-':
  1294.       lval->op = minus;
  1295.       result = ADDOP2;
  1296.       break;
  1297.     case 'n':
  1298.     case '?':
  1299.     case ':':
  1300.     case '(':
  1301.     case ')':
  1302.       /* Nothing, just return the character.  */
  1303.       break;
  1304.     case ';':
  1305.     case 'n':
  1306.     case '':
  1307.       /* Be safe and let the user call this function again.  */
  1308.       --exp;
  1309.       result = YYEOF;
  1310.       break;
  1311.     default:
  1312.       result = YYERRCODE;
  1313. #if YYDEBUG != 0
  1314.       --exp;
  1315. #endif
  1316.       break;
  1317.     }
  1318.   *pexp = exp;
  1319.   return result;
  1320. }
  1321. static void
  1322. yyerror (str)
  1323.      const char *str;
  1324. {
  1325.   /* Do nothing.  We don't print error messages here.  */
  1326. }