plural.c 36 KB

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