]> git.saurik.com Git - bison.git/blob - src/parse-gram.c
Extract calc++ from the documentation.
[bison.git] / src / parse-gram.c
1 /* A Bison parser, made by GNU Bison 2.0a. */
2
3 /* Skeleton parser for Yacc-like parsing with Bison,
4 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
20
21 /* As a special exception, when this file is copied by Bison into a
22 Bison output file, you may use that output file without restriction.
23 This special exception was added by the Free Software Foundation
24 in version 1.24 of Bison. */
25
26 /* Written by Richard Stallman by simplifying the original so called
27 ``semantic'' parser. */
28
29 /* All symbols defined below should begin with yy or YY, to avoid
30 infringing on user name space. This should be done even for local
31 variables, as they might otherwise be expanded by user macros.
32 There are some unavoidable exceptions within include files to
33 define necessary library symbols; they are noted "INFRINGES ON
34 USER NAME SPACE" below. */
35
36 /* Identify Bison output. */
37 #define YYBISON 1
38
39 /* Skeleton name. */
40 #define YYSKELETON_NAME "yacc.c"
41
42 /* Pure parsers. */
43 #define YYPURE 1
44
45 /* Using locations. */
46 #define YYLSP_NEEDED 1
47
48 /* Substitute the variable and function names. */
49 #define yyparse gram_parse
50 #define yylex gram_lex
51 #define yyerror gram_error
52 #define yylval gram_lval
53 #define yychar gram_char
54 #define yydebug gram_debug
55 #define yynerrs gram_nerrs
56 #define yylloc gram_lloc
57
58 /* Tokens. */
59 #ifndef YYTOKENTYPE
60 # define YYTOKENTYPE
61 /* Put the tokens into the symbol table, so that GDB and other debuggers
62 know about them. */
63 enum yytokentype {
64 GRAM_EOF = 0,
65 STRING = 258,
66 INT = 259,
67 PERCENT_TOKEN = 260,
68 PERCENT_NTERM = 261,
69 PERCENT_TYPE = 262,
70 PERCENT_DESTRUCTOR = 263,
71 PERCENT_PRINTER = 264,
72 PERCENT_UNION = 265,
73 PERCENT_LEFT = 266,
74 PERCENT_RIGHT = 267,
75 PERCENT_NONASSOC = 268,
76 PERCENT_PREC = 269,
77 PERCENT_DPREC = 270,
78 PERCENT_MERGE = 271,
79 PERCENT_DEBUG = 272,
80 PERCENT_DEFAULT_PREC = 273,
81 PERCENT_DEFINE = 274,
82 PERCENT_DEFINES = 275,
83 PERCENT_ERROR_VERBOSE = 276,
84 PERCENT_EXPECT = 277,
85 PERCENT_EXPECT_RR = 278,
86 PERCENT_FILE_PREFIX = 279,
87 PERCENT_GLR_PARSER = 280,
88 PERCENT_INITIAL_ACTION = 281,
89 PERCENT_LEX_PARAM = 282,
90 PERCENT_LOCATIONS = 283,
91 PERCENT_NAME_PREFIX = 284,
92 PERCENT_NO_DEFAULT_PREC = 285,
93 PERCENT_NO_LINES = 286,
94 PERCENT_NONDETERMINISTIC_PARSER = 287,
95 PERCENT_OUTPUT = 288,
96 PERCENT_PARSE_PARAM = 289,
97 PERCENT_PURE_PARSER = 290,
98 PERCENT_SKELETON = 291,
99 PERCENT_START = 292,
100 PERCENT_TOKEN_TABLE = 293,
101 PERCENT_VERBOSE = 294,
102 PERCENT_YACC = 295,
103 TYPE = 296,
104 EQUAL = 297,
105 SEMICOLON = 298,
106 PIPE = 299,
107 ID = 300,
108 ID_COLON = 301,
109 PERCENT_PERCENT = 302,
110 PROLOGUE = 303,
111 EPILOGUE = 304,
112 BRACED_CODE = 305
113 };
114 #endif
115 #define GRAM_EOF 0
116 #define STRING 258
117 #define INT 259
118 #define PERCENT_TOKEN 260
119 #define PERCENT_NTERM 261
120 #define PERCENT_TYPE 262
121 #define PERCENT_DESTRUCTOR 263
122 #define PERCENT_PRINTER 264
123 #define PERCENT_UNION 265
124 #define PERCENT_LEFT 266
125 #define PERCENT_RIGHT 267
126 #define PERCENT_NONASSOC 268
127 #define PERCENT_PREC 269
128 #define PERCENT_DPREC 270
129 #define PERCENT_MERGE 271
130 #define PERCENT_DEBUG 272
131 #define PERCENT_DEFAULT_PREC 273
132 #define PERCENT_DEFINE 274
133 #define PERCENT_DEFINES 275
134 #define PERCENT_ERROR_VERBOSE 276
135 #define PERCENT_EXPECT 277
136 #define PERCENT_EXPECT_RR 278
137 #define PERCENT_FILE_PREFIX 279
138 #define PERCENT_GLR_PARSER 280
139 #define PERCENT_INITIAL_ACTION 281
140 #define PERCENT_LEX_PARAM 282
141 #define PERCENT_LOCATIONS 283
142 #define PERCENT_NAME_PREFIX 284
143 #define PERCENT_NO_DEFAULT_PREC 285
144 #define PERCENT_NO_LINES 286
145 #define PERCENT_NONDETERMINISTIC_PARSER 287
146 #define PERCENT_OUTPUT 288
147 #define PERCENT_PARSE_PARAM 289
148 #define PERCENT_PURE_PARSER 290
149 #define PERCENT_SKELETON 291
150 #define PERCENT_START 292
151 #define PERCENT_TOKEN_TABLE 293
152 #define PERCENT_VERBOSE 294
153 #define PERCENT_YACC 295
154 #define TYPE 296
155 #define EQUAL 297
156 #define SEMICOLON 298
157 #define PIPE 299
158 #define ID 300
159 #define ID_COLON 301
160 #define PERCENT_PERCENT 302
161 #define PROLOGUE 303
162 #define EPILOGUE 304
163 #define BRACED_CODE 305
164
165
166
167
168 /* Copy the first part of user declarations. */
169 #line 1 "parse-gram.y"
170 /* Bison Grammar Parser -*- C -*-
171
172 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
173
174 This file is part of Bison, the GNU Compiler Compiler.
175
176 This program is free software; you can redistribute it and/or modify
177 it under the terms of the GNU General Public License as published by
178 the Free Software Foundation; either version 2 of the License, or
179 (at your option) any later version.
180
181 This program is distributed in the hope that it will be useful,
182 but WITHOUT ANY WARRANTY; without even the implied warranty of
183 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
184 GNU General Public License for more details.
185
186 You should have received a copy of the GNU General Public License
187 along with this program; if not, write to the Free Software
188 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
189 02110-1301 USA
190 */
191
192 #include "system.h"
193
194 #include "complain.h"
195 #include "conflicts.h"
196 #include "files.h"
197 #include "getargs.h"
198 #include "gram.h"
199 #include "muscle_tab.h"
200 #include "output.h"
201 #include "quotearg.h"
202 #include "reader.h"
203 #include "symlist.h"
204
205 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
206 static YYLTYPE lloc_default (YYLTYPE const *, int);
207
208 #define YY_LOCATION_PRINT(File, Loc) \
209 location_print (File, Loc)
210
211 /* Request detailed syntax error messages, and pass them to GRAM_ERROR.
212 FIXME: depends on the undocumented availability of YYLLOC. */
213 #undef yyerror
214 #define yyerror(Msg) \
215 gram_error (&yylloc, Msg)
216 static void gram_error (location const *, char const *);
217
218 #define YYPRINT(File, Type, Value) \
219 print_token_value (File, Type, &Value)
220 static void print_token_value (FILE *, int, YYSTYPE const *);
221
222 static void add_param (char const *, char *, location);
223
224 symbol_class current_class = unknown_sym;
225 uniqstr current_type = 0;
226 symbol *current_lhs;
227 location current_lhs_location;
228 assoc current_assoc;
229 int current_prec = 0;
230
231
232 /* Enabling traces. */
233 #ifndef YYDEBUG
234 # define YYDEBUG 1
235 #endif
236
237 /* Enabling verbose error messages. */
238 #ifdef YYERROR_VERBOSE
239 # undef YYERROR_VERBOSE
240 # define YYERROR_VERBOSE 1
241 #else
242 # define YYERROR_VERBOSE 1
243 #endif
244
245 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
246 #line 82 "parse-gram.y"
247 typedef union YYSTYPE {
248 symbol *symbol;
249 symbol_list *list;
250 int integer;
251 char *chars;
252 assoc assoc;
253 uniqstr uniqstr;
254 } YYSTYPE;
255 /* Line 191 of yacc.c. */
256 #line 257 "parse-gram.c"
257 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
258 # define YYSTYPE_IS_DECLARED 1
259 # define YYSTYPE_IS_TRIVIAL 1
260 #endif
261
262 #if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
263 typedef struct YYLTYPE
264 {
265 int first_line;
266 int first_column;
267 int last_line;
268 int last_column;
269 } YYLTYPE;
270 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
271 # define YYLTYPE_IS_DECLARED 1
272 # define YYLTYPE_IS_TRIVIAL 1
273 #endif
274
275
276 /* Copy the second part of user declarations. */
277
278
279 /* Line 214 of yacc.c. */
280 #line 281 "parse-gram.c"
281
282 #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
283 # define YYSIZE_T __SIZE_TYPE__
284 #endif
285 #if ! defined (YYSIZE_T) && defined (size_t)
286 # define YYSIZE_T size_t
287 #endif
288 #if ! defined (YYSIZE_T) && (defined (__STDC__) || defined (__cplusplus))
289 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
290 # define YYSIZE_T size_t
291 #endif
292 #if ! defined (YYSIZE_T)
293 # define YYSIZE_T unsigned int
294 #endif
295
296 #if ! defined (yyoverflow) || YYERROR_VERBOSE
297
298 /* The parser invokes alloca or malloc; define the necessary symbols. */
299
300 # ifdef YYSTACK_USE_ALLOCA
301 # if YYSTACK_USE_ALLOCA
302 # ifdef __GNUC__
303 # define YYSTACK_ALLOC __builtin_alloca
304 # else
305 # define YYSTACK_ALLOC alloca
306 # if defined (__STDC__) || defined (__cplusplus)
307 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
308 # define YYINCLUDED_STDLIB_H
309 # endif
310 # endif
311 # endif
312 # endif
313
314 # ifdef YYSTACK_ALLOC
315 /* Pacify GCC's `empty if-body' warning. */
316 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
317 # ifndef YYSTACK_ALLOC_MAXIMUM
318 /* The OS might guarantee only one guard page at the bottom of the stack,
319 and a page size can be as small as 4096 bytes. So we cannot safely
320 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
321 to allow for a few compiler-allocated temporary stack slots. */
322 # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2005 */
323 # endif
324 # else
325 # define YYSTACK_ALLOC YYMALLOC
326 # define YYSTACK_FREE YYFREE
327 # ifndef YYSTACK_ALLOC_MAXIMUM
328 # define YYSTACK_ALLOC_MAXIMUM ((YYSIZE_T) -1)
329 # endif
330 # ifdef __cplusplus
331 extern "C" {
332 # endif
333 # ifndef YYMALLOC
334 # define YYMALLOC malloc
335 # if (! defined (malloc) && ! defined (YYINCLUDED_STDLIB_H) \
336 && (defined (__STDC__) || defined (__cplusplus)))
337 void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
338 # endif
339 # endif
340 # ifndef YYFREE
341 # define YYFREE free
342 # if (! defined (free) && ! defined (YYINCLUDED_STDLIB_H) \
343 && (defined (__STDC__) || defined (__cplusplus)))
344 void free (void *); /* INFRINGES ON USER NAME SPACE */
345 # endif
346 # endif
347 # ifdef __cplusplus
348 }
349 # endif
350 # endif
351 #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
352
353
354 #if (! defined (yyoverflow) \
355 && (! defined (__cplusplus) \
356 || (defined (YYLTYPE_IS_TRIVIAL) && YYLTYPE_IS_TRIVIAL \
357 && defined (YYSTYPE_IS_TRIVIAL) && YYSTYPE_IS_TRIVIAL)))
358
359 /* A type that is properly aligned for any stack member. */
360 union yyalloc
361 {
362 short int yyss;
363 YYSTYPE yyvs;
364 YYLTYPE yyls;
365 };
366
367 /* The size of the maximum gap between one aligned stack and the next. */
368 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
369
370 /* The size of an array large to enough to hold all stacks, each with
371 N elements. */
372 # define YYSTACK_BYTES(N) \
373 ((N) * (sizeof (short int) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
374 + 2 * YYSTACK_GAP_MAXIMUM)
375
376 /* Copy COUNT objects from FROM to TO. The source and destination do
377 not overlap. */
378 # ifndef YYCOPY
379 # if defined (__GNUC__) && 1 < __GNUC__
380 # define YYCOPY(To, From, Count) \
381 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
382 # else
383 # define YYCOPY(To, From, Count) \
384 do \
385 { \
386 YYSIZE_T yyi; \
387 for (yyi = 0; yyi < (Count); yyi++) \
388 (To)[yyi] = (From)[yyi]; \
389 } \
390 while (0)
391 # endif
392 # endif
393
394 /* Relocate STACK from its old location to the new one. The
395 local variables YYSIZE and YYSTACKSIZE give the old and new number of
396 elements in the stack, and YYPTR gives the new location of the
397 stack. Advance YYPTR to a properly aligned location for the next
398 stack. */
399 # define YYSTACK_RELOCATE(Stack) \
400 do \
401 { \
402 YYSIZE_T yynewbytes; \
403 YYCOPY (&yyptr->Stack, Stack, yysize); \
404 Stack = &yyptr->Stack; \
405 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
406 yyptr += yynewbytes / sizeof (*yyptr); \
407 } \
408 while (0)
409
410 #endif
411
412 #if defined (__STDC__) || defined (__cplusplus)
413 typedef signed char yysigned_char;
414 #else
415 typedef short int yysigned_char;
416 #endif
417
418 /* YYFINAL -- State number of the termination state. */
419 #define YYFINAL 3
420 /* YYLAST -- Last index in YYTABLE. */
421 #define YYLAST 158
422
423 /* YYNTOKENS -- Number of terminals. */
424 #define YYNTOKENS 51
425 /* YYNNTS -- Number of nonterminals. */
426 #define YYNNTS 25
427 /* YYNRULES -- Number of rules. */
428 #define YYNRULES 79
429 /* YYNRULES -- Number of states. */
430 #define YYNSTATES 108
431
432 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
433 #define YYUNDEFTOK 2
434 #define YYMAXUTOK 305
435
436 #define YYTRANSLATE(YYX) \
437 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
438
439 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
440 static const unsigned char yytranslate[] =
441 {
442 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
443 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
444 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
445 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
446 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
447 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
448 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
449 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
450 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
451 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
452 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
453 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
454 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
455 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
456 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
457 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
458 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
459 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
460 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
461 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
462 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
463 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
464 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
465 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
466 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
467 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
468 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
469 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
470 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
471 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
472 45, 46, 47, 48, 49, 50
473 };
474
475 #if YYDEBUG
476 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
477 YYRHS. */
478 static const unsigned char yyprhs[] =
479 {
480 0, 0, 3, 8, 9, 12, 14, 16, 18, 22,
481 24, 26, 29, 32, 36, 38, 40, 42, 44, 48,
482 50, 52, 56, 58, 60, 63, 65, 67, 69, 71,
483 73, 75, 78, 80, 83, 86, 88, 90, 91, 95,
484 96, 100, 104, 108, 110, 112, 114, 115, 117, 119,
485 122, 124, 126, 129, 132, 136, 138, 141, 143, 146,
486 148, 151, 154, 155, 159, 161, 165, 168, 169, 172,
487 175, 179, 183, 187, 189, 191, 193, 195, 197, 198
488 };
489
490 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
491 static const yysigned_char yyrhs[] =
492 {
493 52, 0, -1, 53, 47, 65, 75, -1, -1, 53,
494 54, -1, 55, -1, 48, -1, 17, -1, 19, 74,
495 74, -1, 20, -1, 21, -1, 22, 4, -1, 23,
496 4, -1, 24, 42, 74, -1, 25, -1, 26, -1,
497 27, -1, 28, -1, 29, 42, 74, -1, 31, -1,
498 32, -1, 33, 42, 74, -1, 34, -1, 35, -1,
499 36, 74, -1, 38, -1, 39, -1, 40, -1, 43,
500 -1, 59, -1, 56, -1, 37, 71, -1, 10, -1,
501 8, 62, -1, 9, 62, -1, 18, -1, 30, -1,
502 -1, 6, 57, 64, -1, -1, 5, 58, 64, -1,
503 7, 41, 62, -1, 60, 61, 62, -1, 11, -1,
504 12, -1, 13, -1, -1, 41, -1, 71, -1, 62,
505 71, -1, 41, -1, 45, -1, 45, 4, -1, 45,
506 73, -1, 45, 4, 73, -1, 63, -1, 64, 63,
507 -1, 66, -1, 65, 66, -1, 67, -1, 55, 43,
508 -1, 1, 43, -1, -1, 46, 68, 69, -1, 70,
509 -1, 69, 44, 70, -1, 69, 43, -1, -1, 70,
510 71, -1, 70, 72, -1, 70, 14, 71, -1, 70,
511 15, 4, -1, 70, 16, 41, -1, 45, -1, 73,
512 -1, 50, -1, 3, -1, 3, -1, -1, 47, 49,
513 -1
514 };
515
516 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
517 static const unsigned short int yyrline[] =
518 {
519 0, 175, 175, 183, 185, 189, 190, 191, 192, 193,
520 194, 195, 196, 197, 198, 203, 207, 208, 209, 210,
521 211, 212, 213, 214, 215, 216, 217, 218, 219, 223,
522 224, 225, 229, 235, 242, 249, 253, 260, 260, 265,
523 265, 270, 280, 295, 296, 297, 301, 302, 308, 309,
524 314, 318, 323, 329, 335, 346, 347, 356, 357, 363,
525 364, 369, 376, 376, 380, 381, 382, 387, 388, 390,
526 392, 394, 396, 401, 402, 406, 412, 421, 426, 428
527 };
528 #endif
529
530 #if YYDEBUG || YYERROR_VERBOSE
531 /* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
532 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
533 static const char *const yytname[] =
534 {
535 "end of file", "error", "$undefined", "string", "integer", "%token",
536 "%nterm", "%type", "%destructor {...}", "%printer {...}", "%union {...}",
537 "%left", "%right", "%nonassoc", "%prec", "%dprec", "%merge", "%debug",
538 "%default-prec", "%define", "%defines", "%error-verbose", "%expect",
539 "%expect-rr", "%file-prefix", "%glr-parser", "%initial-action {...}",
540 "%lex-param {...}", "%locations", "%name-prefix", "%no-default-prec",
541 "%no-lines", "%nondeterministic-parser", "%output", "%parse-param {...}",
542 "%pure-parser", "%skeleton", "%start", "%token-table", "%verbose",
543 "%yacc", "type", "=", ";", "|", "identifier", "identifier:", "%%",
544 "%{...%}", "epilogue", "{...}", "$accept", "input", "declarations",
545 "declaration", "grammar_declaration", "symbol_declaration", "@1", "@2",
546 "precedence_declaration", "precedence_declarator", "type.opt",
547 "symbols.1", "symbol_def", "symbol_defs.1", "grammar",
548 "rules_or_grammar_declaration", "rules", "@3", "rhses.1", "rhs",
549 "symbol", "action", "string_as_id", "string_content", "epilogue.opt", 0
550 };
551 #endif
552
553 /* INFRINGES ON USER NAME SPACE */
554 #ifndef _
555 # define _(msgid) msgid
556 #endif
557
558 # ifdef YYPRINT
559 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
560 token YYLEX-NUM. */
561 static const unsigned short int yytoknum[] =
562 {
563 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
564 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
565 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
566 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
567 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
568 305
569 };
570 # endif
571
572 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
573 static const unsigned char yyr1[] =
574 {
575 0, 51, 52, 53, 53, 54, 54, 54, 54, 54,
576 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
577 54, 54, 54, 54, 54, 54, 54, 54, 54, 55,
578 55, 55, 55, 55, 55, 55, 55, 57, 56, 58,
579 56, 56, 59, 60, 60, 60, 61, 61, 62, 62,
580 63, 63, 63, 63, 63, 64, 64, 65, 65, 66,
581 66, 66, 68, 67, 69, 69, 69, 70, 70, 70,
582 70, 70, 70, 71, 71, 72, 73, 74, 75, 75
583 };
584
585 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
586 static const unsigned char yyr2[] =
587 {
588 0, 2, 4, 0, 2, 1, 1, 1, 3, 1,
589 1, 2, 2, 3, 1, 1, 1, 1, 3, 1,
590 1, 3, 1, 1, 2, 1, 1, 1, 1, 1,
591 1, 2, 1, 2, 2, 1, 1, 0, 3, 0,
592 3, 3, 3, 1, 1, 1, 0, 1, 1, 2,
593 1, 1, 2, 2, 3, 1, 2, 1, 2, 1,
594 2, 2, 0, 3, 1, 3, 2, 0, 2, 2,
595 3, 3, 3, 1, 1, 1, 1, 1, 0, 2
596 };
597
598 /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
599 STATE-NUM when YYTABLE doesn't specify something else to do. Zero
600 means the default is an error. */
601 static const unsigned char yydefact[] =
602 {
603 3, 0, 0, 1, 39, 37, 0, 0, 0, 32,
604 43, 44, 45, 7, 35, 0, 9, 10, 0, 0,
605 0, 14, 15, 16, 17, 0, 36, 19, 20, 0,
606 22, 23, 0, 0, 25, 26, 27, 28, 0, 6,
607 4, 5, 30, 29, 46, 0, 0, 0, 76, 73,
608 33, 48, 74, 34, 77, 0, 11, 12, 0, 0,
609 0, 24, 31, 0, 62, 0, 0, 57, 59, 47,
610 0, 50, 51, 55, 40, 38, 41, 49, 8, 13,
611 18, 21, 61, 67, 60, 0, 58, 2, 42, 52,
612 53, 56, 63, 64, 79, 54, 66, 67, 0, 0,
613 0, 75, 68, 69, 65, 70, 71, 72
614 };
615
616 /* YYDEFGOTO[NTERM-NUM]. */
617 static const yysigned_char yydefgoto[] =
618 {
619 -1, 1, 2, 40, 65, 42, 46, 45, 43, 44,
620 70, 50, 73, 74, 66, 67, 68, 83, 92, 93,
621 51, 103, 52, 55, 87
622 };
623
624 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
625 STATE-NUM. */
626 #define YYPACT_NINF -67
627 static const yysigned_char yypact[] =
628 {
629 -67, 5, 110, -67, -67, -67, -34, 0, 0, -67,
630 -67, -67, -67, -67, -67, 13, -67, -67, 20, 31,
631 -17, -67, -67, -67, -67, -6, -67, -67, -67, -5,
632 -67, -67, 13, 0, -67, -67, -67, -67, 68, -67,
633 -67, -67, -67, -67, -3, -37, -37, 0, -67, -67,
634 0, -67, -67, 0, -67, 13, -67, -67, 13, 13,
635 13, -67, -67, -2, -67, 3, 21, -67, -67, -67,
636 0, -67, 6, -67, -37, -37, 0, -67, -67, -67,
637 -67, -67, -67, -67, -67, 1, -67, -67, 0, 39,
638 -67, -67, -32, -1, -67, -67, -67, -67, 0, 43,
639 7, -67, -67, -67, -1, -67, -67, -67
640 };
641
642 /* YYPGOTO[NTERM-NUM]. */
643 static const yysigned_char yypgoto[] =
644 {
645 -67, -67, -67, -67, 50, -67, -67, -67, -67, -67,
646 -67, -7, -56, 8, -67, -13, -67, -67, -67, -41,
647 -33, -67, -66, 29, -67
648 };
649
650 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
651 positive, shift that token. If negative, reduce the rule which
652 number is the opposite. If zero, do what YYDEFACT says.
653 If YYTABLE_NINF, syntax error. */
654 #define YYTABLE_NINF -79
655 static const yysigned_char yytable[] =
656 {
657 62, 53, 48, 48, 71, 3, 90, 47, 72, 48,
658 89, 96, 97, 98, 99, 100, 54, 77, 91, 91,
659 77, -78, 63, 95, 56, 58, 4, 5, 6, 7,
660 8, 9, 10, 11, 12, 57, 59, 60, 69, 14,
661 76, 82, 48, 77, 49, 49, 84, 106, 107, 101,
662 94, 26, 41, 86, 75, 77, 104, 0, 33, 0,
663 102, 61, 0, 88, 0, 105, 0, 64, 85, 63,
664 0, 102, 0, 4, 5, 6, 7, 8, 9, 10,
665 11, 12, 0, 0, 78, 0, 14, 79, 80, 81,
666 0, 0, 0, 0, 0, 0, 0, 0, 26, 0,
667 0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
668 0, 0, 0, 0, 64, 4, 5, 6, 7, 8,
669 9, 10, 11, 12, 0, 0, 0, 13, 14, 15,
670 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
671 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
672 36, 0, 0, 37, 0, 0, 0, 38, 39
673 };
674
675 static const yysigned_char yycheck[] =
676 {
677 33, 8, 3, 3, 41, 0, 72, 41, 45, 3,
678 4, 43, 44, 14, 15, 16, 3, 50, 74, 75,
679 53, 0, 1, 89, 4, 42, 5, 6, 7, 8,
680 9, 10, 11, 12, 13, 4, 42, 42, 41, 18,
681 47, 43, 3, 76, 45, 45, 43, 4, 41, 50,
682 49, 30, 2, 66, 46, 88, 97, -1, 37, -1,
683 93, 32, -1, 70, -1, 98, -1, 46, 47, 1,
684 -1, 104, -1, 5, 6, 7, 8, 9, 10, 11,
685 12, 13, -1, -1, 55, -1, 18, 58, 59, 60,
686 -1, -1, -1, -1, -1, -1, -1, -1, 30, -1,
687 -1, -1, -1, -1, -1, 37, -1, -1, -1, -1,
688 -1, -1, -1, -1, 46, 5, 6, 7, 8, 9,
689 10, 11, 12, 13, -1, -1, -1, 17, 18, 19,
690 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
691 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
692 40, -1, -1, 43, -1, -1, -1, 47, 48
693 };
694
695 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
696 symbol of state STATE-NUM. */
697 static const unsigned char yystos[] =
698 {
699 0, 52, 53, 0, 5, 6, 7, 8, 9, 10,
700 11, 12, 13, 17, 18, 19, 20, 21, 22, 23,
701 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
702 34, 35, 36, 37, 38, 39, 40, 43, 47, 48,
703 54, 55, 56, 59, 60, 58, 57, 41, 3, 45,
704 62, 71, 73, 62, 3, 74, 4, 4, 42, 42,
705 42, 74, 71, 1, 46, 55, 65, 66, 67, 41,
706 61, 41, 45, 63, 64, 64, 62, 71, 74, 74,
707 74, 74, 43, 68, 43, 47, 66, 75, 62, 4,
708 73, 63, 69, 70, 49, 73, 43, 44, 14, 15,
709 16, 50, 71, 72, 70, 71, 4, 41
710 };
711
712 #define yyerrok (yyerrstatus = 0)
713 #define yyclearin (yychar = YYEMPTY)
714 #define YYEMPTY (-2)
715 #define YYEOF 0
716
717 #define YYACCEPT goto yyacceptlab
718 #define YYABORT goto yyabortlab
719 #define YYERROR goto yyerrorlab
720
721
722 /* Like YYERROR except do call yyerror. This remains here temporarily
723 to ease the transition to the new meaning of YYERROR, for GCC.
724 Once GCC version 2 has supplanted version 1, this can go. */
725
726 #define YYFAIL goto yyerrlab
727
728 #define YYRECOVERING() (!!yyerrstatus)
729
730 #define YYBACKUP(Token, Value) \
731 do \
732 if (yychar == YYEMPTY && yylen == 1) \
733 { \
734 yychar = (Token); \
735 yylval = (Value); \
736 yytoken = YYTRANSLATE (yychar); \
737 YYPOPSTACK; \
738 goto yybackup; \
739 } \
740 else \
741 { \
742 yyerror (_("syntax error: cannot back up")); \
743 YYERROR; \
744 } \
745 while (0)
746
747
748 #define YYTERROR 1
749 #define YYERRCODE 256
750
751
752 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
753 If N is 0, then set CURRENT to the empty location which ends
754 the previous symbol: RHS[0] (always defined). */
755
756 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
757 #ifndef YYLLOC_DEFAULT
758 # define YYLLOC_DEFAULT(Current, Rhs, N) \
759 do \
760 if (N) \
761 { \
762 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
763 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
764 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
765 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
766 } \
767 else \
768 { \
769 (Current).first_line = (Current).last_line = \
770 YYRHSLOC (Rhs, 0).last_line; \
771 (Current).first_column = (Current).last_column = \
772 YYRHSLOC (Rhs, 0).last_column; \
773 } \
774 while (0)
775 #endif
776
777
778 /* YY_LOCATION_PRINT -- Print the location on the stream.
779 This macro was not mandated originally: define only if we know
780 we won't break user code: when these are the locations we know. */
781
782 #ifndef YY_LOCATION_PRINT
783 # if YYLTYPE_IS_TRIVIAL
784 # define YY_LOCATION_PRINT(File, Loc) \
785 fprintf (File, "%d.%d-%d.%d", \
786 (Loc).first_line, (Loc).first_column, \
787 (Loc).last_line, (Loc).last_column)
788 # else
789 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
790 # endif
791 #endif
792
793
794 /* YYLEX -- calling `yylex' with the right arguments. */
795
796 #ifdef YYLEX_PARAM
797 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
798 #else
799 # define YYLEX yylex (&yylval, &yylloc)
800 #endif
801
802 /* Enable debugging if requested. */
803 #if YYDEBUG
804
805 # ifndef YYFPRINTF
806 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
807 # define YYFPRINTF fprintf
808 # endif
809
810 # define YYDPRINTF(Args) \
811 do { \
812 if (yydebug) \
813 YYFPRINTF Args; \
814 } while (0)
815
816 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
817 do { \
818 if (yydebug) \
819 { \
820 YYFPRINTF (stderr, "%s ", Title); \
821 yysymprint (stderr, \
822 Type, Value, Location); \
823 YYFPRINTF (stderr, "\n"); \
824 } \
825 } while (0)
826
827 /*------------------------------------------------------------------.
828 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
829 | TOP (included). |
830 `------------------------------------------------------------------*/
831
832 #if defined (__STDC__) || defined (__cplusplus)
833 static void
834 yy_stack_print (short int *bottom, short int *top)
835 #else
836 static void
837 yy_stack_print (bottom, top)
838 short int *bottom;
839 short int *top;
840 #endif
841 {
842 YYFPRINTF (stderr, _("Stack now"));
843 for (/* Nothing. */; bottom <= top; ++bottom)
844 YYFPRINTF (stderr, " %d", *bottom);
845 YYFPRINTF (stderr, "\n");
846 }
847
848 # define YY_STACK_PRINT(Bottom, Top) \
849 do { \
850 if (yydebug) \
851 yy_stack_print ((Bottom), (Top)); \
852 } while (0)
853
854
855 /*------------------------------------------------.
856 | Report that the YYRULE is going to be reduced. |
857 `------------------------------------------------*/
858
859 #if defined (__STDC__) || defined (__cplusplus)
860 static void
861 yy_reduce_print (int yyrule)
862 #else
863 static void
864 yy_reduce_print (yyrule)
865 int yyrule;
866 #endif
867 {
868 int yyi;
869 unsigned int yylno = yyrline[yyrule];
870 YYFPRINTF (stderr, _("Reducing stack by rule %d (line %u), "),
871 yyrule - 1, yylno);
872 /* Print the symbols being reduced, and their result. */
873 for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
874 YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);
875 YYFPRINTF (stderr, "-> %s\n", yytname [yyr1[yyrule]]);
876 }
877
878 # define YY_REDUCE_PRINT(Rule) \
879 do { \
880 if (yydebug) \
881 yy_reduce_print (Rule); \
882 } while (0)
883
884 /* Nonzero means print parse trace. It is left uninitialized so that
885 multiple parsers can coexist. */
886 int yydebug;
887 #else /* !YYDEBUG */
888 # define YYDPRINTF(Args)
889 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
890 # define YY_STACK_PRINT(Bottom, Top)
891 # define YY_REDUCE_PRINT(Rule)
892 #endif /* !YYDEBUG */
893
894
895 /* YYINITDEPTH -- initial size of the parser's stacks. */
896 #ifndef YYINITDEPTH
897 # define YYINITDEPTH 200
898 #endif
899
900 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
901 if the built-in stack extension method is used).
902
903 Do not make this value too large; the results are undefined if
904 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
905 evaluated with infinite-precision integer arithmetic. */
906
907 #ifndef YYMAXDEPTH
908 # define YYMAXDEPTH 10000
909 #endif
910
911 \f
912
913 #if YYERROR_VERBOSE
914
915 # ifndef yystrlen
916 # if defined (__GLIBC__) && defined (_STRING_H)
917 # define yystrlen strlen
918 # else
919 /* Return the length of YYSTR. */
920 static YYSIZE_T
921 # if defined (__STDC__) || defined (__cplusplus)
922 yystrlen (const char *yystr)
923 # else
924 yystrlen (yystr)
925 const char *yystr;
926 # endif
927 {
928 const char *yys = yystr;
929
930 while (*yys++ != '\0')
931 continue;
932
933 return yys - yystr - 1;
934 }
935 # endif
936 # endif
937
938 # ifndef yystpcpy
939 # if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
940 # define yystpcpy stpcpy
941 # else
942 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
943 YYDEST. */
944 static char *
945 # if defined (__STDC__) || defined (__cplusplus)
946 yystpcpy (char *yydest, const char *yysrc)
947 # else
948 yystpcpy (yydest, yysrc)
949 char *yydest;
950 const char *yysrc;
951 # endif
952 {
953 char *yyd = yydest;
954 const char *yys = yysrc;
955
956 while ((*yyd++ = *yys++) != '\0')
957 continue;
958
959 return yyd - 1;
960 }
961 # endif
962 # endif
963
964 #endif /* !YYERROR_VERBOSE */
965
966 \f
967
968 #if YYDEBUG
969 /*--------------------------------.
970 | Print this symbol on YYOUTPUT. |
971 `--------------------------------*/
972
973 #if defined (__STDC__) || defined (__cplusplus)
974 static void
975 yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
976 #else
977 static void
978 yysymprint (yyoutput, yytype, yyvaluep, yylocationp)
979 FILE *yyoutput;
980 int yytype;
981 YYSTYPE *yyvaluep;
982 YYLTYPE *yylocationp;
983 #endif
984 {
985 /* Pacify ``unused variable'' warnings. */
986 (void) yyvaluep;
987 (void) yylocationp;
988
989 if (yytype < YYNTOKENS)
990 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
991 else
992 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
993
994 YY_LOCATION_PRINT (yyoutput, *yylocationp);
995 fprintf (yyoutput, ": ");
996
997 # ifdef YYPRINT
998 if (yytype < YYNTOKENS)
999 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
1000 # endif
1001 switch (yytype)
1002 {
1003 default:
1004 break;
1005 }
1006 YYFPRINTF (yyoutput, ")");
1007 }
1008
1009 #endif /* ! YYDEBUG */
1010 /*-----------------------------------------------.
1011 | Release the memory associated to this symbol. |
1012 `-----------------------------------------------*/
1013
1014 #if defined (__STDC__) || defined (__cplusplus)
1015 static void
1016 yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
1017 #else
1018 static void
1019 yydestruct (yymsg, yytype, yyvaluep, yylocationp)
1020 const char *yymsg;
1021 int yytype;
1022 YYSTYPE *yyvaluep;
1023 YYLTYPE *yylocationp;
1024 #endif
1025 {
1026 /* Pacify ``unused variable'' warnings. */
1027 (void) yyvaluep;
1028 (void) yylocationp;
1029
1030 if (!yymsg)
1031 yymsg = "Deleting";
1032 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
1033
1034 switch (yytype)
1035 {
1036
1037 default:
1038 break;
1039 }
1040 }
1041 \f
1042
1043 /* Prevent warnings from -Wmissing-prototypes. */
1044
1045 #ifdef YYPARSE_PARAM
1046 # if defined (__STDC__) || defined (__cplusplus)
1047 int yyparse (void *YYPARSE_PARAM);
1048 # else
1049 int yyparse ();
1050 # endif
1051 #else /* ! YYPARSE_PARAM */
1052 #if defined (__STDC__) || defined (__cplusplus)
1053 int yyparse (void);
1054 #else
1055 int yyparse ();
1056 #endif
1057 #endif /* ! YYPARSE_PARAM */
1058
1059
1060
1061
1062
1063
1064 /*----------.
1065 | yyparse. |
1066 `----------*/
1067
1068 #ifdef YYPARSE_PARAM
1069 # if defined (__STDC__) || defined (__cplusplus)
1070 int yyparse (void *YYPARSE_PARAM)
1071 # else
1072 int yyparse (YYPARSE_PARAM)
1073 void *YYPARSE_PARAM;
1074 # endif
1075 #else /* ! YYPARSE_PARAM */
1076 #if defined (__STDC__) || defined (__cplusplus)
1077 int
1078 yyparse (void)
1079 #else
1080 int
1081 yyparse ()
1082
1083 #endif
1084 #endif
1085 {
1086 /* The look-ahead symbol. */
1087 int yychar;
1088
1089 /* The semantic value of the look-ahead symbol. */
1090 YYSTYPE yylval;
1091
1092 /* Number of syntax errors so far. */
1093 int yynerrs;
1094 /* Location data for the look-ahead symbol. */
1095 YYLTYPE yylloc;
1096
1097 int yystate;
1098 int yyn;
1099 int yyresult;
1100 /* Number of tokens to shift before error messages enabled. */
1101 int yyerrstatus;
1102 /* Look-ahead token as an internal (translated) token number. */
1103 int yytoken = 0;
1104
1105 /* Three stacks and their tools:
1106 `yyss': related to states,
1107 `yyvs': related to semantic values,
1108 `yyls': related to locations.
1109
1110 Refer to the stacks thru separate pointers, to allow yyoverflow
1111 to reallocate them elsewhere. */
1112
1113 /* The state stack. */
1114 short int yyssa[YYINITDEPTH];
1115 short int *yyss = yyssa;
1116 short int *yyssp;
1117
1118 /* The semantic value stack. */
1119 YYSTYPE yyvsa[YYINITDEPTH];
1120 YYSTYPE *yyvs = yyvsa;
1121 YYSTYPE *yyvsp;
1122
1123 /* The location stack. */
1124 YYLTYPE yylsa[YYINITDEPTH];
1125 YYLTYPE *yyls = yylsa;
1126 YYLTYPE *yylsp;
1127 /* The locations where the error started and ended. */
1128 YYLTYPE yyerror_range[2];
1129
1130 #define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
1131
1132 YYSIZE_T yystacksize = YYINITDEPTH;
1133
1134 /* The variables used to return semantic value and location from the
1135 action routines. */
1136 YYSTYPE yyval;
1137 YYLTYPE yyloc;
1138
1139 /* When reducing, the number of symbols on the RHS of the reduced
1140 rule. */
1141 int yylen;
1142
1143 YYDPRINTF ((stderr, "Starting parse\n"));
1144
1145 yystate = 0;
1146 yyerrstatus = 0;
1147 yynerrs = 0;
1148 yychar = YYEMPTY; /* Cause a token to be read. */
1149
1150 /* Initialize stack pointers.
1151 Waste one element of value and location stack
1152 so that they stay on the same level as the state stack.
1153 The wasted elements are never initialized. */
1154
1155 yyssp = yyss;
1156 yyvsp = yyvs;
1157 yylsp = yyls;
1158 #if YYLTYPE_IS_TRIVIAL
1159 /* Initialize the default location before parsing starts. */
1160 yylloc.first_line = yylloc.last_line = 1;
1161 yylloc.first_column = yylloc.last_column = 0;
1162 #endif
1163
1164
1165 /* User initialization code. */
1166 #line 72 "parse-gram.y"
1167 {
1168 /* Bison's grammar can initial empty locations, hence a default
1169 location is needed. */
1170 yylloc.start.file = yylloc.end.file = current_file;
1171 yylloc.start.line = yylloc.end.line = 1;
1172 yylloc.start.column = yylloc.end.column = 0;
1173 }
1174 /* Line 869 of yacc.c. */
1175 #line 1176 "parse-gram.c"
1176 yyvsp[0] = yylval;
1177 yylsp[0] = yylloc;
1178
1179 goto yysetstate;
1180
1181 /*------------------------------------------------------------.
1182 | yynewstate -- Push a new state, which is found in yystate. |
1183 `------------------------------------------------------------*/
1184 yynewstate:
1185 /* In all cases, when you get here, the value and location stacks
1186 have just been pushed. so pushing a state here evens the stacks.
1187 */
1188 yyssp++;
1189
1190 yysetstate:
1191 *yyssp = yystate;
1192
1193 if (yyss + yystacksize - 1 <= yyssp)
1194 {
1195 /* Get the current used size of the three stacks, in elements. */
1196 YYSIZE_T yysize = yyssp - yyss + 1;
1197
1198 #ifdef yyoverflow
1199 {
1200 /* Give user a chance to reallocate the stack. Use copies of
1201 these so that the &'s don't force the real ones into
1202 memory. */
1203 YYSTYPE *yyvs1 = yyvs;
1204 short int *yyss1 = yyss;
1205 YYLTYPE *yyls1 = yyls;
1206
1207 /* Each stack pointer address is followed by the size of the
1208 data in use in that stack, in bytes. This used to be a
1209 conditional around just the two extra args, but that might
1210 be undefined if yyoverflow is a macro. */
1211 yyoverflow (_("parser stack overflow"),
1212 &yyss1, yysize * sizeof (*yyssp),
1213 &yyvs1, yysize * sizeof (*yyvsp),
1214 &yyls1, yysize * sizeof (*yylsp),
1215 &yystacksize);
1216 yyls = yyls1;
1217 yyss = yyss1;
1218 yyvs = yyvs1;
1219 }
1220 #else /* no yyoverflow */
1221 # ifndef YYSTACK_RELOCATE
1222 goto yyoverflowlab;
1223 # else
1224 /* Extend the stack our own way. */
1225 if (YYMAXDEPTH <= yystacksize)
1226 goto yyoverflowlab;
1227 yystacksize *= 2;
1228 if (YYMAXDEPTH < yystacksize)
1229 yystacksize = YYMAXDEPTH;
1230
1231 {
1232 short int *yyss1 = yyss;
1233 union yyalloc *yyptr =
1234 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
1235 if (! yyptr)
1236 goto yyoverflowlab;
1237 YYSTACK_RELOCATE (yyss);
1238 YYSTACK_RELOCATE (yyvs);
1239 YYSTACK_RELOCATE (yyls);
1240 # undef YYSTACK_RELOCATE
1241 if (yyss1 != yyssa)
1242 YYSTACK_FREE (yyss1);
1243 }
1244 # endif
1245 #endif /* no yyoverflow */
1246
1247 yyssp = yyss + yysize - 1;
1248 yyvsp = yyvs + yysize - 1;
1249 yylsp = yyls + yysize - 1;
1250
1251 YYDPRINTF ((stderr, _("Stack size increased to %lu\n"),
1252 (unsigned long int) yystacksize));
1253
1254 if (yyss + yystacksize - 1 <= yyssp)
1255 YYABORT;
1256 }
1257
1258 YYDPRINTF ((stderr, _("Entering state %d\n"), yystate));
1259
1260 goto yybackup;
1261
1262 /*-----------.
1263 | yybackup. |
1264 `-----------*/
1265 yybackup:
1266
1267 /* Do appropriate processing given the current state. */
1268 /* Read a look-ahead token if we need one and don't already have one. */
1269 /* yyresume: */
1270
1271 /* First try to decide what to do without reference to look-ahead token. */
1272
1273 yyn = yypact[yystate];
1274 if (yyn == YYPACT_NINF)
1275 goto yydefault;
1276
1277 /* Not known => get a look-ahead token if don't already have one. */
1278
1279 /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
1280 if (yychar == YYEMPTY)
1281 {
1282 YYDPRINTF ((stderr, _("Reading a token: ")));
1283 yychar = YYLEX;
1284 }
1285
1286 if (yychar <= YYEOF)
1287 {
1288 yychar = yytoken = YYEOF;
1289 YYDPRINTF ((stderr, _("Now at end of input.\n")));
1290 }
1291 else
1292 {
1293 yytoken = YYTRANSLATE (yychar);
1294 YY_SYMBOL_PRINT (_("Next token is"), yytoken, &yylval, &yylloc);
1295 }
1296
1297 /* If the proper action on seeing token YYTOKEN is to reduce or to
1298 detect an error, take that action. */
1299 yyn += yytoken;
1300 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
1301 goto yydefault;
1302 yyn = yytable[yyn];
1303 if (yyn <= 0)
1304 {
1305 if (yyn == 0 || yyn == YYTABLE_NINF)
1306 goto yyerrlab;
1307 yyn = -yyn;
1308 goto yyreduce;
1309 }
1310
1311 if (yyn == YYFINAL)
1312 YYACCEPT;
1313
1314 /* Shift the look-ahead token. */
1315 YY_SYMBOL_PRINT (_("Shifting"), yytoken, &yylval, &yylloc);
1316
1317 /* Discard the token being shifted unless it is eof. */
1318 if (yychar != YYEOF)
1319 yychar = YYEMPTY;
1320
1321 *++yyvsp = yylval;
1322 *++yylsp = yylloc;
1323
1324 /* Count tokens shifted since error; after three, turn off error
1325 status. */
1326 if (yyerrstatus)
1327 yyerrstatus--;
1328
1329 yystate = yyn;
1330 goto yynewstate;
1331
1332
1333 /*-----------------------------------------------------------.
1334 | yydefault -- do the default action for the current state. |
1335 `-----------------------------------------------------------*/
1336 yydefault:
1337 yyn = yydefact[yystate];
1338 if (yyn == 0)
1339 goto yyerrlab;
1340 goto yyreduce;
1341
1342
1343 /*-----------------------------.
1344 | yyreduce -- Do a reduction. |
1345 `-----------------------------*/
1346 yyreduce:
1347 /* yyn is the number of a rule to reduce with. */
1348 yylen = yyr2[yyn];
1349
1350 /* If YYLEN is nonzero, implement the default value of the action:
1351 `$$ = $1'.
1352
1353 Otherwise, the following line sets YYVAL to garbage.
1354 This behavior is undocumented and Bison
1355 users should not rely upon it. Assigning to YYVAL
1356 unconditionally makes the parser a bit smaller, and it avoids a
1357 GCC warning that YYVAL may be used uninitialized. */
1358 yyval = yyvsp[1-yylen];
1359
1360 /* Default location. */
1361 YYLLOC_DEFAULT (yyloc, yylsp - yylen, yylen);
1362 YY_REDUCE_PRINT (yyn);
1363 switch (yyn)
1364 {
1365 case 6:
1366 #line 190 "parse-gram.y"
1367 { prologue_augment ((yyvsp[0].chars), (yylsp[0])); }
1368 break;
1369
1370 case 7:
1371 #line 191 "parse-gram.y"
1372 { debug_flag = true; }
1373 break;
1374
1375 case 8:
1376 #line 192 "parse-gram.y"
1377 { muscle_insert ((yyvsp[-1].chars), (yyvsp[0].chars)); }
1378 break;
1379
1380 case 9:
1381 #line 193 "parse-gram.y"
1382 { defines_flag = true; }
1383 break;
1384
1385 case 10:
1386 #line 194 "parse-gram.y"
1387 { error_verbose = true; }
1388 break;
1389
1390 case 11:
1391 #line 195 "parse-gram.y"
1392 { expected_sr_conflicts = (yyvsp[0].integer); }
1393 break;
1394
1395 case 12:
1396 #line 196 "parse-gram.y"
1397 { expected_rr_conflicts = (yyvsp[0].integer); }
1398 break;
1399
1400 case 13:
1401 #line 197 "parse-gram.y"
1402 { spec_file_prefix = (yyvsp[0].chars); }
1403 break;
1404
1405 case 14:
1406 #line 199 "parse-gram.y"
1407 {
1408 nondeterministic_parser = true;
1409 glr_parser = true;
1410 }
1411 break;
1412
1413 case 15:
1414 #line 204 "parse-gram.y"
1415 {
1416 muscle_code_grow ("initial_action", (yyvsp[0].chars), (yylsp[0]));
1417 }
1418 break;
1419
1420 case 16:
1421 #line 207 "parse-gram.y"
1422 { add_param ("lex_param", (yyvsp[0].chars), (yylsp[0])); }
1423 break;
1424
1425 case 17:
1426 #line 208 "parse-gram.y"
1427 { locations_flag = true; }
1428 break;
1429
1430 case 18:
1431 #line 209 "parse-gram.y"
1432 { spec_name_prefix = (yyvsp[0].chars); }
1433 break;
1434
1435 case 19:
1436 #line 210 "parse-gram.y"
1437 { no_lines_flag = true; }
1438 break;
1439
1440 case 20:
1441 #line 211 "parse-gram.y"
1442 { nondeterministic_parser = true; }
1443 break;
1444
1445 case 21:
1446 #line 212 "parse-gram.y"
1447 { spec_outfile = (yyvsp[0].chars); }
1448 break;
1449
1450 case 22:
1451 #line 213 "parse-gram.y"
1452 { add_param ("parse_param", (yyvsp[0].chars), (yylsp[0])); }
1453 break;
1454
1455 case 23:
1456 #line 214 "parse-gram.y"
1457 { pure_parser = true; }
1458 break;
1459
1460 case 24:
1461 #line 215 "parse-gram.y"
1462 { skeleton = (yyvsp[0].chars); }
1463 break;
1464
1465 case 25:
1466 #line 216 "parse-gram.y"
1467 { token_table_flag = true; }
1468 break;
1469
1470 case 26:
1471 #line 217 "parse-gram.y"
1472 { report_flag = report_states; }
1473 break;
1474
1475 case 27:
1476 #line 218 "parse-gram.y"
1477 { yacc_flag = true; }
1478 break;
1479
1480 case 31:
1481 #line 226 "parse-gram.y"
1482 {
1483 grammar_start_symbol_set ((yyvsp[0].symbol), (yylsp[0]));
1484 }
1485 break;
1486
1487 case 32:
1488 #line 230 "parse-gram.y"
1489 {
1490 typed = true;
1491 MUSCLE_INSERT_INT ("stype_line", (yylsp[0]).start.line);
1492 muscle_insert ("stype", (yyvsp[0].chars));
1493 }
1494 break;
1495
1496 case 33:
1497 #line 236 "parse-gram.y"
1498 {
1499 symbol_list *list;
1500 for (list = (yyvsp[0].list); list; list = list->next)
1501 symbol_destructor_set (list->sym, (yyvsp[-1].chars), (yylsp[-1]));
1502 symbol_list_free ((yyvsp[0].list));
1503 }
1504 break;
1505
1506 case 34:
1507 #line 243 "parse-gram.y"
1508 {
1509 symbol_list *list;
1510 for (list = (yyvsp[0].list); list; list = list->next)
1511 symbol_printer_set (list->sym, (yyvsp[-1].chars), list->location);
1512 symbol_list_free ((yyvsp[0].list));
1513 }
1514 break;
1515
1516 case 35:
1517 #line 250 "parse-gram.y"
1518 {
1519 default_prec = true;
1520 }
1521 break;
1522
1523 case 36:
1524 #line 254 "parse-gram.y"
1525 {
1526 default_prec = false;
1527 }
1528 break;
1529
1530 case 37:
1531 #line 260 "parse-gram.y"
1532 { current_class = nterm_sym; }
1533 break;
1534
1535 case 38:
1536 #line 261 "parse-gram.y"
1537 {
1538 current_class = unknown_sym;
1539 current_type = NULL;
1540 }
1541 break;
1542
1543 case 39:
1544 #line 265 "parse-gram.y"
1545 { current_class = token_sym; }
1546 break;
1547
1548 case 40:
1549 #line 266 "parse-gram.y"
1550 {
1551 current_class = unknown_sym;
1552 current_type = NULL;
1553 }
1554 break;
1555
1556 case 41:
1557 #line 271 "parse-gram.y"
1558 {
1559 symbol_list *list;
1560 for (list = (yyvsp[0].list); list; list = list->next)
1561 symbol_type_set (list->sym, (yyvsp[-1].uniqstr), (yylsp[-1]));
1562 symbol_list_free ((yyvsp[0].list));
1563 }
1564 break;
1565
1566 case 42:
1567 #line 281 "parse-gram.y"
1568 {
1569 symbol_list *list;
1570 ++current_prec;
1571 for (list = (yyvsp[0].list); list; list = list->next)
1572 {
1573 symbol_type_set (list->sym, current_type, (yylsp[-1]));
1574 symbol_precedence_set (list->sym, current_prec, (yyvsp[-2].assoc), (yylsp[-2]));
1575 }
1576 symbol_list_free ((yyvsp[0].list));
1577 current_type = NULL;
1578 }
1579 break;
1580
1581 case 43:
1582 #line 295 "parse-gram.y"
1583 { (yyval.assoc) = left_assoc; }
1584 break;
1585
1586 case 44:
1587 #line 296 "parse-gram.y"
1588 { (yyval.assoc) = right_assoc; }
1589 break;
1590
1591 case 45:
1592 #line 297 "parse-gram.y"
1593 { (yyval.assoc) = non_assoc; }
1594 break;
1595
1596 case 46:
1597 #line 301 "parse-gram.y"
1598 { current_type = NULL; }
1599 break;
1600
1601 case 47:
1602 #line 302 "parse-gram.y"
1603 { current_type = (yyvsp[0].uniqstr); }
1604 break;
1605
1606 case 48:
1607 #line 308 "parse-gram.y"
1608 { (yyval.list) = symbol_list_new ((yyvsp[0].symbol), (yylsp[0])); }
1609 break;
1610
1611 case 49:
1612 #line 309 "parse-gram.y"
1613 { (yyval.list) = symbol_list_prepend ((yyvsp[-1].list), (yyvsp[0].symbol), (yylsp[0])); }
1614 break;
1615
1616 case 50:
1617 #line 315 "parse-gram.y"
1618 {
1619 current_type = (yyvsp[0].uniqstr);
1620 }
1621 break;
1622
1623 case 51:
1624 #line 319 "parse-gram.y"
1625 {
1626 symbol_class_set ((yyvsp[0].symbol), current_class, (yylsp[0]));
1627 symbol_type_set ((yyvsp[0].symbol), current_type, (yylsp[0]));
1628 }
1629 break;
1630
1631 case 52:
1632 #line 324 "parse-gram.y"
1633 {
1634 symbol_class_set ((yyvsp[-1].symbol), current_class, (yylsp[-1]));
1635 symbol_type_set ((yyvsp[-1].symbol), current_type, (yylsp[-1]));
1636 symbol_user_token_number_set ((yyvsp[-1].symbol), (yyvsp[0].integer), (yylsp[0]));
1637 }
1638 break;
1639
1640 case 53:
1641 #line 330 "parse-gram.y"
1642 {
1643 symbol_class_set ((yyvsp[-1].symbol), current_class, (yylsp[-1]));
1644 symbol_type_set ((yyvsp[-1].symbol), current_type, (yylsp[-1]));
1645 symbol_make_alias ((yyvsp[-1].symbol), (yyvsp[0].symbol), (yyloc));
1646 }
1647 break;
1648
1649 case 54:
1650 #line 336 "parse-gram.y"
1651 {
1652 symbol_class_set ((yyvsp[-2].symbol), current_class, (yylsp[-2]));
1653 symbol_type_set ((yyvsp[-2].symbol), current_type, (yylsp[-2]));
1654 symbol_user_token_number_set ((yyvsp[-2].symbol), (yyvsp[-1].integer), (yylsp[-1]));
1655 symbol_make_alias ((yyvsp[-2].symbol), (yyvsp[0].symbol), (yyloc));
1656 }
1657 break;
1658
1659 case 60:
1660 #line 365 "parse-gram.y"
1661 {
1662 if (yacc_flag)
1663 complain_at ((yyloc), _("POSIX forbids declarations in the grammar"));
1664 }
1665 break;
1666
1667 case 61:
1668 #line 370 "parse-gram.y"
1669 {
1670 yyerrok;
1671 }
1672 break;
1673
1674 case 62:
1675 #line 376 "parse-gram.y"
1676 { current_lhs = (yyvsp[0].symbol); current_lhs_location = (yylsp[0]); }
1677 break;
1678
1679 case 64:
1680 #line 380 "parse-gram.y"
1681 { grammar_rule_end ((yylsp[0])); }
1682 break;
1683
1684 case 65:
1685 #line 381 "parse-gram.y"
1686 { grammar_rule_end ((yylsp[0])); }
1687 break;
1688
1689 case 67:
1690 #line 387 "parse-gram.y"
1691 { grammar_rule_begin (current_lhs, current_lhs_location); }
1692 break;
1693
1694 case 68:
1695 #line 389 "parse-gram.y"
1696 { grammar_current_rule_symbol_append ((yyvsp[0].symbol), (yylsp[0])); }
1697 break;
1698
1699 case 69:
1700 #line 391 "parse-gram.y"
1701 { grammar_current_rule_action_append ((yyvsp[0].chars), (yylsp[0])); }
1702 break;
1703
1704 case 70:
1705 #line 393 "parse-gram.y"
1706 { grammar_current_rule_prec_set ((yyvsp[0].symbol), (yylsp[0])); }
1707 break;
1708
1709 case 71:
1710 #line 395 "parse-gram.y"
1711 { grammar_current_rule_dprec_set ((yyvsp[0].integer), (yylsp[0])); }
1712 break;
1713
1714 case 72:
1715 #line 397 "parse-gram.y"
1716 { grammar_current_rule_merge_set ((yyvsp[0].uniqstr), (yylsp[0])); }
1717 break;
1718
1719 case 73:
1720 #line 401 "parse-gram.y"
1721 { (yyval.symbol) = (yyvsp[0].symbol); }
1722 break;
1723
1724 case 74:
1725 #line 402 "parse-gram.y"
1726 { (yyval.symbol) = (yyvsp[0].symbol); }
1727 break;
1728
1729 case 75:
1730 #line 407 "parse-gram.y"
1731 { (yyval.chars) = (yyvsp[0].chars); }
1732 break;
1733
1734 case 76:
1735 #line 413 "parse-gram.y"
1736 {
1737 (yyval.symbol) = symbol_get (quotearg_style (c_quoting_style, (yyvsp[0].chars)), (yylsp[0]));
1738 symbol_class_set ((yyval.symbol), token_sym, (yylsp[0]));
1739 }
1740 break;
1741
1742 case 77:
1743 #line 422 "parse-gram.y"
1744 { (yyval.chars) = (yyvsp[0].chars); }
1745 break;
1746
1747 case 79:
1748 #line 429 "parse-gram.y"
1749 {
1750 muscle_code_grow ("epilogue", (yyvsp[0].chars), (yylsp[0]));
1751 scanner_last_string_free ();
1752 }
1753 break;
1754
1755
1756 default: break;
1757 }
1758
1759 /* Line 1065 of yacc.c. */
1760 #line 1761 "parse-gram.c"
1761 \f
1762 yyvsp -= yylen;
1763 yyssp -= yylen;
1764 yylsp -= yylen;
1765
1766 YY_STACK_PRINT (yyss, yyssp);
1767
1768 *++yyvsp = yyval;
1769 *++yylsp = yyloc;
1770
1771 /* Now `shift' the result of the reduction. Determine what state
1772 that goes to, based on the state we popped back to and the rule
1773 number reduced by. */
1774
1775 yyn = yyr1[yyn];
1776
1777 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
1778 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
1779 yystate = yytable[yystate];
1780 else
1781 yystate = yydefgoto[yyn - YYNTOKENS];
1782
1783 goto yynewstate;
1784
1785
1786 /*------------------------------------.
1787 | yyerrlab -- here on detecting error |
1788 `------------------------------------*/
1789 yyerrlab:
1790 /* If not already recovering from an error, report this error. */
1791 if (!yyerrstatus)
1792 {
1793 ++yynerrs;
1794 #if YYERROR_VERBOSE
1795 yyn = yypact[yystate];
1796
1797 if (YYPACT_NINF < yyn && yyn < YYLAST)
1798 {
1799 int yytype = YYTRANSLATE (yychar);
1800 YYSIZE_T yysize0 = yystrlen (yytname[yytype]);
1801 YYSIZE_T yysize = yysize0;
1802 YYSIZE_T yysize1;
1803 int yysize_overflow = 0;
1804 char *yymsg = 0;
1805 # define YYERROR_VERBOSE_ARGS_MAXIMUM 5
1806 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
1807 int yyx;
1808
1809 #if 0
1810 /* This is so xgettext sees the translatable formats that are
1811 constructed on the fly. */
1812 _("syntax error, unexpected %s");
1813 _("syntax error, unexpected %s, expecting %s");
1814 _("syntax error, unexpected %s, expecting %s or %s");
1815 _("syntax error, unexpected %s, expecting %s or %s or %s");
1816 _("syntax error, unexpected %s, expecting %s or %s or %s or %s");
1817 #endif
1818 char *yyfmt;
1819 char const *yyf;
1820 static char const yyunexpected[] = "syntax error, unexpected %s";
1821 static char const yyexpecting[] = ", expecting %s";
1822 static char const yyor[] = " or %s";
1823 char yyformat[sizeof yyunexpected
1824 + sizeof yyexpecting - 1
1825 + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
1826 * (sizeof yyor - 1))];
1827 char const *yyprefix = yyexpecting;
1828
1829 /* Start YYX at -YYN if negative to avoid negative indexes in
1830 YYCHECK. */
1831 int yyxbegin = yyn < 0 ? -yyn : 0;
1832
1833 /* Stay within bounds of both yycheck and yytname. */
1834 int yychecklim = YYLAST - yyn;
1835 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
1836 int yycount = 1;
1837
1838 yyarg[0] = yytname[yytype];
1839 yyfmt = yystpcpy (yyformat, yyunexpected);
1840
1841 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
1842 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
1843 {
1844 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
1845 {
1846 yycount = 1;
1847 yysize = yysize0;
1848 yyformat[sizeof yyunexpected - 1] = '\0';
1849 break;
1850 }
1851 yyarg[yycount++] = yytname[yyx];
1852 yysize1 = yysize + yystrlen (yytname[yyx]);
1853 yysize_overflow |= yysize1 < yysize;
1854 yysize = yysize1;
1855 yyfmt = yystpcpy (yyfmt, yyprefix);
1856 yyprefix = yyor;
1857 }
1858
1859 yyf = _(yyformat);
1860 yysize1 = yysize + yystrlen (yyf);
1861 yysize_overflow |= yysize1 < yysize;
1862 yysize = yysize1;
1863
1864 if (!yysize_overflow && yysize <= YYSTACK_ALLOC_MAXIMUM)
1865 yymsg = (char *) YYSTACK_ALLOC (yysize);
1866 if (yymsg)
1867 {
1868 /* Avoid sprintf, as that infringes on the user's name space.
1869 Don't have undefined behavior even if the translation
1870 produced a string with the wrong number of "%s"s. */
1871 char *yyp = yymsg;
1872 int yyi = 0;
1873 while ((*yyp = *yyf))
1874 {
1875 if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
1876 {
1877 yyp = yystpcpy (yyp, yyarg[yyi++]);
1878 yyf += 2;
1879 }
1880 else
1881 {
1882 yyp++;
1883 yyf++;
1884 }
1885 }
1886 yyerror (yymsg);
1887 YYSTACK_FREE (yymsg);
1888 }
1889 else
1890 yyerror (_("syntax error; also memory exhausted"));
1891 }
1892 else
1893 #endif /* YYERROR_VERBOSE */
1894 yyerror (_("syntax error"));
1895 }
1896
1897 yyerror_range[0] = yylloc;
1898
1899 if (yyerrstatus == 3)
1900 {
1901 /* If just tried and failed to reuse look-ahead token after an
1902 error, discard it. */
1903
1904 if (yychar <= YYEOF)
1905 {
1906 /* If at end of input, pop the error token,
1907 then the rest of the stack, then return failure. */
1908 if (yychar == YYEOF)
1909 YYABORT;
1910 }
1911 else
1912 {
1913 yydestruct (_("Error: discarding"), yytoken, &yylval, &yylloc);
1914 yychar = YYEMPTY;
1915 }
1916 }
1917
1918 /* Else will try to reuse look-ahead token after shifting the error
1919 token. */
1920 goto yyerrlab1;
1921
1922
1923 /*---------------------------------------------------.
1924 | yyerrorlab -- error raised explicitly by YYERROR. |
1925 `---------------------------------------------------*/
1926 yyerrorlab:
1927
1928 /* Pacify compilers like GCC when the user code never invokes
1929 YYERROR and the label yyerrorlab therefore never appears in user
1930 code. */
1931 if (0)
1932 goto yyerrorlab;
1933
1934 yyerror_range[0] = yylsp[1-yylen];
1935 yylsp -= yylen;
1936 yyvsp -= yylen;
1937 yyssp -= yylen;
1938 yystate = *yyssp;
1939 goto yyerrlab1;
1940
1941
1942 /*-------------------------------------------------------------.
1943 | yyerrlab1 -- common code for both syntax error and YYERROR. |
1944 `-------------------------------------------------------------*/
1945 yyerrlab1:
1946 yyerrstatus = 3; /* Each real token shifted decrements this. */
1947
1948 for (;;)
1949 {
1950 yyn = yypact[yystate];
1951 if (yyn != YYPACT_NINF)
1952 {
1953 yyn += YYTERROR;
1954 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
1955 {
1956 yyn = yytable[yyn];
1957 if (0 < yyn)
1958 break;
1959 }
1960 }
1961
1962 /* Pop the current state because it cannot handle the error token. */
1963 if (yyssp == yyss)
1964 YYABORT;
1965
1966 yyerror_range[0] = *yylsp;
1967 yydestruct (_("Error: popping"), yystos[yystate], yyvsp, yylsp);
1968 YYPOPSTACK;
1969 yystate = *yyssp;
1970 YY_STACK_PRINT (yyss, yyssp);
1971 }
1972
1973 if (yyn == YYFINAL)
1974 YYACCEPT;
1975
1976 *++yyvsp = yylval;
1977
1978 yyerror_range[1] = yylloc;
1979 /* Using YYLLOC is tempting, but would change the location of
1980 the look-ahead. YYLOC is available though. */
1981 YYLLOC_DEFAULT (yyloc, yyerror_range - 1, 2);
1982 *++yylsp = yyloc;
1983
1984 /* Shift the error token. */
1985 YY_SYMBOL_PRINT (_("Shifting"), yystos[yyn], yyvsp, yylsp);
1986
1987 yystate = yyn;
1988 goto yynewstate;
1989
1990
1991 /*-------------------------------------.
1992 | yyacceptlab -- YYACCEPT comes here. |
1993 `-------------------------------------*/
1994 yyacceptlab:
1995 yyresult = 0;
1996 goto yyreturn;
1997
1998 /*-----------------------------------.
1999 | yyabortlab -- YYABORT comes here. |
2000 `-----------------------------------*/
2001 yyabortlab:
2002 yyresult = 1;
2003 goto yyreturn;
2004
2005 #ifndef yyoverflow
2006 /*----------------------------------------------.
2007 | yyoverflowlab -- parser overflow comes here. |
2008 `----------------------------------------------*/
2009 yyoverflowlab:
2010 yyerror (_("parser stack overflow"));
2011 yyresult = 2;
2012 /* Fall through. */
2013 #endif
2014
2015 yyreturn:
2016 if (yychar != YYEOF && yychar != YYEMPTY)
2017 yydestruct (_("Error: discarding lookahead"),
2018 yytoken, &yylval, &yylloc);
2019 if (yyssp != yyss)
2020 for (;;)
2021 {
2022 yyerror_range[0] = *yylsp;
2023 YYPOPSTACK;
2024 if (yyssp == yyss)
2025 break;
2026 yydestruct (_("Error: popping"),
2027 yystos[*yyssp], yyvsp, yylsp);
2028 }
2029 #ifndef yyoverflow
2030 if (yyss != yyssa)
2031 YYSTACK_FREE (yyss);
2032 #endif
2033 return yyresult;
2034 }
2035
2036
2037 #line 435 "parse-gram.y"
2038
2039
2040
2041 /* Return the location of the left-hand side of a rule whose
2042 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
2043 the right-hand side, and return an empty location equal to the end
2044 boundary of RHS[0] if the right-hand side is empty. */
2045
2046 static YYLTYPE
2047 lloc_default (YYLTYPE const *rhs, int n)
2048 {
2049 int i;
2050 YYLTYPE loc;
2051
2052 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
2053 The bug is fixed in 7.4.2m, but play it safe for now. */
2054 loc.start = rhs[n].end;
2055 loc.end = rhs[n].end;
2056
2057 /* Ignore empty nonterminals the start of the the right-hand side.
2058 Do not bother to ignore them at the end of the right-hand side,
2059 since empty nonterminals have the same end as their predecessors. */
2060 for (i = 1; i <= n; i++)
2061 if (! equal_boundaries (rhs[i].start, rhs[i].end))
2062 {
2063 loc.start = rhs[i].start;
2064 break;
2065 }
2066
2067 return loc;
2068 }
2069
2070
2071 /* Add a lex-param or a parse-param (depending on TYPE) with
2072 declaration DECL and location LOC. */
2073
2074 static void
2075 add_param (char const *type, char *decl, location loc)
2076 {
2077 static char const alphanum[26 + 26 + 1 + 10] =
2078 "abcdefghijklmnopqrstuvwxyz"
2079 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
2080 "_"
2081 "0123456789";
2082 char const *name_start = NULL;
2083 char *p;
2084
2085 /* Stop on last actual character. */
2086 for (p = decl; p[1]; p++)
2087 if ((p == decl
2088 || ! memchr (alphanum, p[-1], sizeof alphanum))
2089 && memchr (alphanum, p[0], sizeof alphanum - 10))
2090 name_start = p;
2091
2092 /* Strip the surrounding '{' and '}', and any blanks just inside
2093 the braces. */
2094 while (*--p == ' ' || *p == '\t')
2095 continue;
2096 p[1] = '\0';
2097 while (*++decl == ' ' || *decl == '\t')
2098 continue;
2099
2100 if (! name_start)
2101 complain_at (loc, _("missing identifier in parameter declaration"));
2102 else
2103 {
2104 char *name;
2105 size_t name_len;
2106
2107 for (name_len = 1;
2108 memchr (alphanum, name_start[name_len], sizeof alphanum);
2109 name_len++)
2110 continue;
2111
2112 name = xmalloc (name_len + 1);
2113 memcpy (name, name_start, name_len);
2114 name[name_len] = '\0';
2115 muscle_pair_list_grow (type, decl, name);
2116 free (name);
2117 }
2118
2119 scanner_last_string_free ();
2120 }
2121
2122 /*----------------------------------------------------.
2123 | When debugging the parser, display tokens' values. |
2124 `----------------------------------------------------*/
2125
2126 static void
2127 print_token_value (FILE *file, int type, YYSTYPE const *value)
2128 {
2129 fputc (' ', file);
2130 switch (type)
2131 {
2132 case ID:
2133 fprintf (file, " = %s", value->symbol->tag);
2134 break;
2135
2136 case INT:
2137 fprintf (file, " = %d", value->integer);
2138 break;
2139
2140 case STRING:
2141 fprintf (file, " = \"%s\"", value->chars);
2142 break;
2143
2144 case TYPE:
2145 fprintf (file, " = <%s>", value->uniqstr);
2146 break;
2147
2148 case BRACED_CODE:
2149 case PERCENT_DESTRUCTOR:
2150 case PERCENT_LEX_PARAM:
2151 case PERCENT_PARSE_PARAM:
2152 case PERCENT_PRINTER:
2153 case PERCENT_UNION:
2154 case PROLOGUE:
2155 case EPILOGUE:
2156 fprintf (file, " = {{ %s }}", value->chars);
2157 break;
2158
2159 default:
2160 fprintf (file, "unknown token type");
2161 break;
2162 }
2163 }
2164
2165 static void
2166 gram_error (location const *loc, char const *msg)
2167 {
2168 complain_at (*loc, "%s", msg);
2169 }
2170
2171 char const *
2172 token_name (int type)
2173 {
2174 return yytname[type];
2175 }
2176