2.9
[glibc/nacl-glibc.git] / intl / plural.y
bloba1ffb9e1ca09e43e5c25c765cd0eea662baf8b0b
1 %{
2 /* Expression parsing for plural form selection.
3 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
22 /* The bison generated parser uses alloca. AIX 3 forces us to put this
23 declaration at the beginning of the file. The declaration in bison's
24 skeleton file comes too late. This must come before <config.h>
25 because <config.h> may include arbitrary system headers. */
26 #if defined _AIX && !defined __GNUC__
27 #pragma alloca
28 #endif
29 #ifdef HAVE_CONFIG_H
30 # include <config.h>
31 #endif
33 #include <stddef.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include "plural-exp.h"
38 /* The main function generated by the parser is called __gettextparse,
39 but we want it to be called PLURAL_PARSE. */
40 #ifndef _LIBC
41 # define __gettextparse PLURAL_PARSE
42 #endif
44 #define YYLEX_PARAM &((struct parse_args *) arg)->cp
45 #define YYPARSE_PARAM arg
47 %pure_parser
48 %expect 7
50 %union {
51 unsigned long int num;
52 enum operator op;
53 struct expression *exp;
57 /* Prototypes for local functions. */
58 static struct expression *new_exp PARAMS ((int nargs, enum operator op,
59 struct expression * const *args));
60 static inline struct expression *new_exp_0 PARAMS ((enum operator op));
61 static inline struct expression *new_exp_1 PARAMS ((enum operator op,
62 struct expression *right));
63 static struct expression *new_exp_2 PARAMS ((enum operator op,
64 struct expression *left,
65 struct expression *right));
66 static inline struct expression *new_exp_3 PARAMS ((enum operator op,
67 struct expression *bexp,
68 struct expression *tbranch,
69 struct expression *fbranch));
70 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
71 static void yyerror PARAMS ((const char *str));
73 /* Allocation of expressions. */
75 static struct expression *
76 new_exp (nargs, op, args)
77 int nargs;
78 enum operator op;
79 struct expression * const *args;
81 int i;
82 struct expression *newp;
84 /* If any of the argument could not be malloc'ed, just return NULL. */
85 for (i = nargs - 1; i >= 0; i--)
86 if (args[i] == NULL)
87 goto fail;
89 /* Allocate a new expression. */
90 newp = (struct expression *) malloc (sizeof (*newp));
91 if (newp != NULL)
93 newp->nargs = nargs;
94 newp->operation = op;
95 for (i = nargs - 1; i >= 0; i--)
96 newp->val.args[i] = args[i];
97 return newp;
100 fail:
101 for (i = nargs - 1; i >= 0; i--)
102 FREE_EXPRESSION (args[i]);
104 return NULL;
107 static inline struct expression *
108 new_exp_0 (op)
109 enum operator op;
111 return new_exp (0, op, NULL);
114 static inline struct expression *
115 new_exp_1 (op, right)
116 enum operator op;
117 struct expression *right;
119 struct expression *args[1];
121 args[0] = right;
122 return new_exp (1, op, args);
125 static struct expression *
126 new_exp_2 (op, left, right)
127 enum operator op;
128 struct expression *left;
129 struct expression *right;
131 struct expression *args[2];
133 args[0] = left;
134 args[1] = right;
135 return new_exp (2, op, args);
138 static inline struct expression *
139 new_exp_3 (op, bexp, tbranch, fbranch)
140 enum operator op;
141 struct expression *bexp;
142 struct expression *tbranch;
143 struct expression *fbranch;
145 struct expression *args[3];
147 args[0] = bexp;
148 args[1] = tbranch;
149 args[2] = fbranch;
150 return new_exp (3, op, args);
155 /* This declares that all operators have the same associativity and the
156 precedence order as in C. See [Harbison, Steele: C, A Reference Manual].
157 There is no unary minus and no bitwise operators.
158 Operators with the same syntactic behaviour have been merged into a single
159 token, to save space in the array generated by bison. */
160 %right '?' /* ? */
161 %left '|' /* || */
162 %left '&' /* && */
163 %left EQUOP2 /* == != */
164 %left CMPOP2 /* < > <= >= */
165 %left ADDOP2 /* + - */
166 %left MULOP2 /* * / % */
167 %right '!' /* ! */
169 %token <op> EQUOP2 CMPOP2 ADDOP2 MULOP2
170 %token <num> NUMBER
171 %type <exp> exp
175 start: exp
177 if ($1 == NULL)
178 YYABORT;
179 ((struct parse_args *) arg)->res = $1;
183 exp: exp '?' exp ':' exp
185 $$ = new_exp_3 (qmop, $1, $3, $5);
187 | exp '|' exp
189 $$ = new_exp_2 (lor, $1, $3);
191 | exp '&' exp
193 $$ = new_exp_2 (land, $1, $3);
195 | exp EQUOP2 exp
197 $$ = new_exp_2 ($2, $1, $3);
199 | exp CMPOP2 exp
201 $$ = new_exp_2 ($2, $1, $3);
203 | exp ADDOP2 exp
205 $$ = new_exp_2 ($2, $1, $3);
207 | exp MULOP2 exp
209 $$ = new_exp_2 ($2, $1, $3);
211 | '!' exp
213 $$ = new_exp_1 (lnot, $2);
215 | 'n'
217 $$ = new_exp_0 (var);
219 | NUMBER
221 if (($$ = new_exp_0 (num)) != NULL)
222 $$->val.num = $1;
224 | '(' exp ')'
226 $$ = $2;
232 void
233 internal_function
234 FREE_EXPRESSION (exp)
235 struct expression *exp;
237 if (exp == NULL)
238 return;
240 /* Handle the recursive case. */
241 switch (exp->nargs)
243 case 3:
244 FREE_EXPRESSION (exp->val.args[2]);
245 /* FALLTHROUGH */
246 case 2:
247 FREE_EXPRESSION (exp->val.args[1]);
248 /* FALLTHROUGH */
249 case 1:
250 FREE_EXPRESSION (exp->val.args[0]);
251 /* FALLTHROUGH */
252 default:
253 break;
256 free (exp);
260 static int
261 yylex (lval, pexp)
262 YYSTYPE *lval;
263 const char **pexp;
265 const char *exp = *pexp;
266 int result;
268 while (1)
270 if (exp[0] == '\0')
272 *pexp = exp;
273 return YYEOF;
276 if (exp[0] != ' ' && exp[0] != '\t')
277 break;
279 ++exp;
282 result = *exp++;
283 switch (result)
285 case '0': case '1': case '2': case '3': case '4':
286 case '5': case '6': case '7': case '8': case '9':
288 unsigned long int n = result - '0';
289 while (exp[0] >= '0' && exp[0] <= '9')
291 n *= 10;
292 n += exp[0] - '0';
293 ++exp;
295 lval->num = n;
296 result = NUMBER;
298 break;
300 case '=':
301 if (exp[0] == '=')
303 ++exp;
304 lval->op = equal;
305 result = EQUOP2;
307 else
308 result = YYERRCODE;
309 break;
311 case '!':
312 if (exp[0] == '=')
314 ++exp;
315 lval->op = not_equal;
316 result = EQUOP2;
318 break;
320 case '&':
321 case '|':
322 if (exp[0] == result)
323 ++exp;
324 else
325 result = YYERRCODE;
326 break;
328 case '<':
329 if (exp[0] == '=')
331 ++exp;
332 lval->op = less_or_equal;
334 else
335 lval->op = less_than;
336 result = CMPOP2;
337 break;
339 case '>':
340 if (exp[0] == '=')
342 ++exp;
343 lval->op = greater_or_equal;
345 else
346 lval->op = greater_than;
347 result = CMPOP2;
348 break;
350 case '*':
351 lval->op = mult;
352 result = MULOP2;
353 break;
355 case '/':
356 lval->op = divide;
357 result = MULOP2;
358 break;
360 case '%':
361 lval->op = module;
362 result = MULOP2;
363 break;
365 case '+':
366 lval->op = plus;
367 result = ADDOP2;
368 break;
370 case '-':
371 lval->op = minus;
372 result = ADDOP2;
373 break;
375 case 'n':
376 case '?':
377 case ':':
378 case '(':
379 case ')':
380 /* Nothing, just return the character. */
381 break;
383 case ';':
384 case '\n':
385 case '\0':
386 /* Be safe and let the user call this function again. */
387 --exp;
388 result = YYEOF;
389 break;
391 default:
392 result = YYERRCODE;
393 #if YYDEBUG != 0
394 --exp;
395 #endif
396 break;
399 *pexp = exp;
401 return result;
405 static void
406 yyerror (str)
407 const char *str;
409 /* Do nothing. We don't print error messages here. */