Loading...
1/* A Bison parser, made by GNU Bison 2.7. */
2
3/* Bison implementation for Yacc-like parsers in C
4
5 Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20/* As a special exception, you may create a larger work that contains
21 part or all of the Bison parser skeleton and distribute that work
22 under terms of your choice, so long as that work isn't itself a
23 parser generator using the skeleton or a modified version thereof
24 as a parser skeleton. Alternatively, if you modify or redistribute
25 the parser skeleton itself, you may (at your option) remove this
26 special exception, which will cause the skeleton and the resulting
27 Bison output files to be licensed under the GNU General Public
28 License without this special exception.
29
30 This special exception was added by the Free Software Foundation in
31 version 2.2 of Bison. */
32
33/* C LALR(1) parser skeleton written by Richard Stallman, by
34 simplifying the original so-called "semantic" parser. */
35
36/* All symbols defined below should begin with yy or YY, to avoid
37 infringing on user name space. This should be done even for local
38 variables, as they might otherwise be expanded by user macros.
39 There are some unavoidable exceptions within include files to
40 define necessary library symbols; they are noted "INFRINGES ON
41 USER NAME SPACE" below. */
42
43/* Identify Bison output. */
44#define YYBISON 1
45
46/* Bison version. */
47#define YYBISON_VERSION "2.7"
48
49/* Skeleton name. */
50#define YYSKELETON_NAME "yacc.c"
51
52/* Pure parsers. */
53#define YYPURE 0
54
55/* Push parsers. */
56#define YYPUSH 0
57
58/* Pull parsers. */
59#define YYPULL 1
60
61
62
63
64/* Copy the first part of user declarations. */
65
66
67
68#include <assert.h>
69#include <stdlib.h>
70#include <string.h>
71#include "genksyms.h"
72
73static int is_typedef;
74static int is_extern;
75static char *current_name;
76static struct string_list *decl_spec;
77
78static void yyerror(const char *);
79
80static inline void
81remove_node(struct string_list **p)
82{
83 struct string_list *node = *p;
84 *p = node->next;
85 free_node(node);
86}
87
88static inline void
89remove_list(struct string_list **pb, struct string_list **pe)
90{
91 struct string_list *b = *pb, *e = *pe;
92 *pb = e;
93 free_list(b, e);
94}
95
96/* Record definition of a struct/union/enum */
97static void record_compound(struct string_list **keyw,
98 struct string_list **ident,
99 struct string_list **body,
100 enum symbol_type type)
101{
102 struct string_list *b = *body, *i = *ident, *r;
103
104 if (i->in_source_file) {
105 remove_node(keyw);
106 (*ident)->tag = type;
107 remove_list(body, ident);
108 return;
109 }
110 r = copy_node(i); r->tag = type;
111 r->next = (*keyw)->next; *body = r; (*keyw)->next = NULL;
112 add_symbol(i->string, type, b, is_extern);
113}
114
115
116
117
118# ifndef YY_NULL
119# if defined __cplusplus && 201103L <= __cplusplus
120# define YY_NULL nullptr
121# else
122# define YY_NULL 0
123# endif
124# endif
125
126/* Enabling verbose error messages. */
127#ifdef YYERROR_VERBOSE
128# undef YYERROR_VERBOSE
129# define YYERROR_VERBOSE 1
130#else
131# define YYERROR_VERBOSE 0
132#endif
133
134
135/* Enabling traces. */
136#ifndef YYDEBUG
137# define YYDEBUG 1
138#endif
139#if YYDEBUG
140extern int yydebug;
141#endif
142
143/* Tokens. */
144#ifndef YYTOKENTYPE
145# define YYTOKENTYPE
146 /* Put the tokens into the symbol table, so that GDB and other debuggers
147 know about them. */
148 enum yytokentype {
149 ASM_KEYW = 258,
150 ATTRIBUTE_KEYW = 259,
151 AUTO_KEYW = 260,
152 BOOL_KEYW = 261,
153 CHAR_KEYW = 262,
154 CONST_KEYW = 263,
155 DOUBLE_KEYW = 264,
156 ENUM_KEYW = 265,
157 EXTERN_KEYW = 266,
158 EXTENSION_KEYW = 267,
159 FLOAT_KEYW = 268,
160 INLINE_KEYW = 269,
161 INT_KEYW = 270,
162 LONG_KEYW = 271,
163 REGISTER_KEYW = 272,
164 RESTRICT_KEYW = 273,
165 SHORT_KEYW = 274,
166 SIGNED_KEYW = 275,
167 STATIC_KEYW = 276,
168 STRUCT_KEYW = 277,
169 TYPEDEF_KEYW = 278,
170 UNION_KEYW = 279,
171 UNSIGNED_KEYW = 280,
172 VOID_KEYW = 281,
173 VOLATILE_KEYW = 282,
174 TYPEOF_KEYW = 283,
175 VA_LIST_KEYW = 284,
176 EXPORT_SYMBOL_KEYW = 285,
177 ASM_PHRASE = 286,
178 ATTRIBUTE_PHRASE = 287,
179 TYPEOF_PHRASE = 288,
180 BRACE_PHRASE = 289,
181 BRACKET_PHRASE = 290,
182 EXPRESSION_PHRASE = 291,
183 CHAR = 292,
184 DOTS = 293,
185 IDENT = 294,
186 INT = 295,
187 REAL = 296,
188 STRING = 297,
189 TYPE = 298,
190 OTHER = 299,
191 FILENAME = 300
192 };
193#endif
194
195
196#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
197typedef int YYSTYPE;
198# define YYSTYPE_IS_TRIVIAL 1
199# define yystype YYSTYPE /* obsolescent; will be withdrawn */
200# define YYSTYPE_IS_DECLARED 1
201#endif
202
203extern YYSTYPE yylval;
204
205#ifdef YYPARSE_PARAM
206#if defined __STDC__ || defined __cplusplus
207int yyparse (void *YYPARSE_PARAM);
208#else
209int yyparse ();
210#endif
211#else /* ! YYPARSE_PARAM */
212#if defined __STDC__ || defined __cplusplus
213int yyparse (void);
214#else
215int yyparse ();
216#endif
217#endif /* ! YYPARSE_PARAM */
218
219
220
221/* Copy the second part of user declarations. */
222
223
224
225#ifdef short
226# undef short
227#endif
228
229#ifdef YYTYPE_UINT8
230typedef YYTYPE_UINT8 yytype_uint8;
231#else
232typedef unsigned char yytype_uint8;
233#endif
234
235#ifdef YYTYPE_INT8
236typedef YYTYPE_INT8 yytype_int8;
237#elif (defined __STDC__ || defined __C99__FUNC__ \
238 || defined __cplusplus || defined _MSC_VER)
239typedef signed char yytype_int8;
240#else
241typedef short int yytype_int8;
242#endif
243
244#ifdef YYTYPE_UINT16
245typedef YYTYPE_UINT16 yytype_uint16;
246#else
247typedef unsigned short int yytype_uint16;
248#endif
249
250#ifdef YYTYPE_INT16
251typedef YYTYPE_INT16 yytype_int16;
252#else
253typedef short int yytype_int16;
254#endif
255
256#ifndef YYSIZE_T
257# ifdef __SIZE_TYPE__
258# define YYSIZE_T __SIZE_TYPE__
259# elif defined size_t
260# define YYSIZE_T size_t
261# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
262 || defined __cplusplus || defined _MSC_VER)
263# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
264# define YYSIZE_T size_t
265# else
266# define YYSIZE_T unsigned int
267# endif
268#endif
269
270#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
271
272#ifndef YY_
273# if defined YYENABLE_NLS && YYENABLE_NLS
274# if ENABLE_NLS
275# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
276# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
277# endif
278# endif
279# ifndef YY_
280# define YY_(Msgid) Msgid
281# endif
282#endif
283
284/* Suppress unused-variable warnings by "using" E. */
285#if ! defined lint || defined __GNUC__
286# define YYUSE(E) ((void) (E))
287#else
288# define YYUSE(E) /* empty */
289#endif
290
291/* Identity function, used to suppress warnings about constant conditions. */
292#ifndef lint
293# define YYID(N) (N)
294#else
295#if (defined __STDC__ || defined __C99__FUNC__ \
296 || defined __cplusplus || defined _MSC_VER)
297static int
298YYID (int yyi)
299#else
300static int
301YYID (yyi)
302 int yyi;
303#endif
304{
305 return yyi;
306}
307#endif
308
309#if ! defined yyoverflow || YYERROR_VERBOSE
310
311/* The parser invokes alloca or malloc; define the necessary symbols. */
312
313# ifdef YYSTACK_USE_ALLOCA
314# if YYSTACK_USE_ALLOCA
315# ifdef __GNUC__
316# define YYSTACK_ALLOC __builtin_alloca
317# elif defined __BUILTIN_VA_ARG_INCR
318# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
319# elif defined _AIX
320# define YYSTACK_ALLOC __alloca
321# elif defined _MSC_VER
322# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
323# define alloca _alloca
324# else
325# define YYSTACK_ALLOC alloca
326# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
327 || defined __cplusplus || defined _MSC_VER)
328# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
329 /* Use EXIT_SUCCESS as a witness for stdlib.h. */
330# ifndef EXIT_SUCCESS
331# define EXIT_SUCCESS 0
332# endif
333# endif
334# endif
335# endif
336# endif
337
338# ifdef YYSTACK_ALLOC
339 /* Pacify GCC's `empty if-body' warning. */
340# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
341# ifndef YYSTACK_ALLOC_MAXIMUM
342 /* The OS might guarantee only one guard page at the bottom of the stack,
343 and a page size can be as small as 4096 bytes. So we cannot safely
344 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
345 to allow for a few compiler-allocated temporary stack slots. */
346# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
347# endif
348# else
349# define YYSTACK_ALLOC YYMALLOC
350# define YYSTACK_FREE YYFREE
351# ifndef YYSTACK_ALLOC_MAXIMUM
352# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
353# endif
354# if (defined __cplusplus && ! defined EXIT_SUCCESS \
355 && ! ((defined YYMALLOC || defined malloc) \
356 && (defined YYFREE || defined free)))
357# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
358# ifndef EXIT_SUCCESS
359# define EXIT_SUCCESS 0
360# endif
361# endif
362# ifndef YYMALLOC
363# define YYMALLOC malloc
364# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
365 || defined __cplusplus || defined _MSC_VER)
366void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
367# endif
368# endif
369# ifndef YYFREE
370# define YYFREE free
371# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
372 || defined __cplusplus || defined _MSC_VER)
373void free (void *); /* INFRINGES ON USER NAME SPACE */
374# endif
375# endif
376# endif
377#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
378
379
380#if (! defined yyoverflow \
381 && (! defined __cplusplus \
382 || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
383
384/* A type that is properly aligned for any stack member. */
385union yyalloc
386{
387 yytype_int16 yyss_alloc;
388 YYSTYPE yyvs_alloc;
389};
390
391/* The size of the maximum gap between one aligned stack and the next. */
392# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
393
394/* The size of an array large to enough to hold all stacks, each with
395 N elements. */
396# define YYSTACK_BYTES(N) \
397 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
398 + YYSTACK_GAP_MAXIMUM)
399
400# define YYCOPY_NEEDED 1
401
402/* Relocate STACK from its old location to the new one. The
403 local variables YYSIZE and YYSTACKSIZE give the old and new number of
404 elements in the stack, and YYPTR gives the new location of the
405 stack. Advance YYPTR to a properly aligned location for the next
406 stack. */
407# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
408 do \
409 { \
410 YYSIZE_T yynewbytes; \
411 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
412 Stack = &yyptr->Stack_alloc; \
413 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
414 yyptr += yynewbytes / sizeof (*yyptr); \
415 } \
416 while (YYID (0))
417
418#endif
419
420#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
421/* Copy COUNT objects from SRC to DST. The source and destination do
422 not overlap. */
423# ifndef YYCOPY
424# if defined __GNUC__ && 1 < __GNUC__
425# define YYCOPY(Dst, Src, Count) \
426 __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
427# else
428# define YYCOPY(Dst, Src, Count) \
429 do \
430 { \
431 YYSIZE_T yyi; \
432 for (yyi = 0; yyi < (Count); yyi++) \
433 (Dst)[yyi] = (Src)[yyi]; \
434 } \
435 while (YYID (0))
436# endif
437# endif
438#endif /* !YYCOPY_NEEDED */
439
440/* YYFINAL -- State number of the termination state. */
441#define YYFINAL 4
442/* YYLAST -- Last index in YYTABLE. */
443#define YYLAST 524
444
445/* YYNTOKENS -- Number of terminals. */
446#define YYNTOKENS 55
447/* YYNNTS -- Number of nonterminals. */
448#define YYNNTS 49
449/* YYNRULES -- Number of rules. */
450#define YYNRULES 134
451/* YYNRULES -- Number of states. */
452#define YYNSTATES 189
453
454/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
455#define YYUNDEFTOK 2
456#define YYMAXUTOK 300
457
458#define YYTRANSLATE(YYX) \
459 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
460
461/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
462static const yytype_uint8 yytranslate[] =
463{
464 0, 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, 2, 2, 2, 2,
468 49, 50, 51, 2, 48, 2, 2, 2, 2, 2,
469 2, 2, 2, 2, 2, 2, 2, 2, 54, 46,
470 2, 52, 2, 2, 2, 2, 2, 2, 2, 2,
471 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
472 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
473 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
474 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
475 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
476 2, 2, 2, 53, 2, 47, 2, 2, 2, 2,
477 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
478 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
479 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
480 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
481 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
482 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
483 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
484 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
485 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
486 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
487 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
488 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
489 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
490 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
491 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
492 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
493 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
494 45
495};
496
497#if YYDEBUG
498/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
499 YYRHS. */
500static const yytype_uint16 yyprhs[] =
501{
502 0, 0, 3, 5, 8, 9, 12, 13, 18, 19,
503 23, 25, 27, 29, 31, 34, 37, 41, 42, 44,
504 46, 50, 55, 56, 58, 60, 63, 65, 67, 69,
505 71, 73, 75, 77, 79, 81, 86, 88, 91, 94,
506 97, 101, 105, 109, 112, 115, 118, 120, 122, 124,
507 126, 128, 130, 132, 134, 136, 138, 140, 142, 145,
508 146, 148, 150, 153, 155, 157, 159, 161, 164, 166,
509 168, 170, 175, 180, 183, 187, 191, 194, 196, 198,
510 200, 205, 210, 213, 217, 221, 224, 226, 230, 231,
511 233, 235, 239, 242, 245, 247, 248, 250, 252, 257,
512 262, 265, 269, 273, 277, 278, 280, 283, 287, 291,
513 292, 294, 296, 299, 303, 306, 307, 309, 311, 315,
514 318, 321, 323, 326, 327, 330, 334, 339, 341, 345,
515 347, 351, 354, 355, 357
516};
517
518/* YYRHS -- A `-1'-separated list of the rules' RHS. */
519static const yytype_int8 yyrhs[] =
520{
521 56, 0, -1, 57, -1, 56, 57, -1, -1, 58,
522 59, -1, -1, 12, 23, 60, 62, -1, -1, 23,
523 61, 62, -1, 62, -1, 86, -1, 101, -1, 103,
524 -1, 1, 46, -1, 1, 47, -1, 66, 63, 46,
525 -1, -1, 64, -1, 65, -1, 64, 48, 65, -1,
526 76, 102, 97, 87, -1, -1, 67, -1, 68, -1,
527 67, 68, -1, 69, -1, 70, -1, 5, -1, 17,
528 -1, 21, -1, 11, -1, 14, -1, 71, -1, 75,
529 -1, 28, 49, 83, 50, -1, 33, -1, 22, 39,
530 -1, 24, 39, -1, 10, 39, -1, 22, 39, 89,
531 -1, 24, 39, 89, -1, 10, 39, 98, -1, 10,
532 98, -1, 22, 89, -1, 24, 89, -1, 7, -1,
533 19, -1, 15, -1, 16, -1, 20, -1, 25, -1,
534 13, -1, 9, -1, 26, -1, 6, -1, 29, -1,
535 43, -1, 51, 73, -1, -1, 74, -1, 75, -1,
536 74, 75, -1, 8, -1, 27, -1, 32, -1, 18,
537 -1, 72, 76, -1, 77, -1, 39, -1, 43, -1,
538 77, 49, 80, 50, -1, 77, 49, 1, 50, -1,
539 77, 35, -1, 49, 76, 50, -1, 49, 1, 50,
540 -1, 72, 78, -1, 79, -1, 39, -1, 43, -1,
541 79, 49, 80, 50, -1, 79, 49, 1, 50, -1,
542 79, 35, -1, 49, 78, 50, -1, 49, 1, 50,
543 -1, 81, 38, -1, 81, -1, 82, 48, 38, -1,
544 -1, 82, -1, 83, -1, 82, 48, 83, -1, 67,
545 84, -1, 72, 84, -1, 85, -1, -1, 39, -1,
546 43, -1, 85, 49, 80, 50, -1, 85, 49, 1,
547 50, -1, 85, 35, -1, 49, 84, 50, -1, 49,
548 1, 50, -1, 66, 76, 34, -1, -1, 88, -1,
549 52, 36, -1, 53, 90, 47, -1, 53, 1, 47,
550 -1, -1, 91, -1, 92, -1, 91, 92, -1, 66,
551 93, 46, -1, 1, 46, -1, -1, 94, -1, 95,
552 -1, 94, 48, 95, -1, 78, 97, -1, 39, 96,
553 -1, 96, -1, 54, 36, -1, -1, 97, 32, -1,
554 53, 99, 47, -1, 53, 99, 48, 47, -1, 100,
555 -1, 99, 48, 100, -1, 39, -1, 39, 52, 36,
556 -1, 31, 46, -1, -1, 31, -1, 30, 49, 39,
557 50, 46, -1
558};
559
560/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
561static const yytype_uint16 yyrline[] =
562{
563 0, 125, 125, 126, 130, 130, 136, 136, 138, 138,
564 140, 141, 142, 143, 144, 145, 149, 163, 164, 168,
565 176, 189, 195, 196, 200, 201, 205, 211, 215, 216,
566 217, 218, 219, 223, 224, 225, 226, 230, 232, 234,
567 238, 240, 242, 247, 250, 251, 255, 256, 257, 258,
568 259, 260, 261, 262, 263, 264, 265, 266, 270, 275,
569 276, 280, 281, 285, 285, 285, 286, 294, 295, 299,
570 308, 317, 319, 321, 323, 325, 332, 333, 337, 338,
571 339, 341, 343, 345, 347, 352, 353, 354, 358, 359,
572 363, 364, 369, 374, 376, 380, 381, 389, 393, 395,
573 397, 399, 401, 406, 415, 416, 421, 426, 427, 431,
574 432, 436, 437, 441, 443, 448, 449, 453, 454, 458,
575 459, 460, 464, 468, 469, 473, 474, 478, 479, 482,
576 487, 495, 499, 500, 504
577};
578#endif
579
580#if YYDEBUG || YYERROR_VERBOSE || 0
581/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
582 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
583static const char *const yytname[] =
584{
585 "$end", "error", "$undefined", "ASM_KEYW", "ATTRIBUTE_KEYW",
586 "AUTO_KEYW", "BOOL_KEYW", "CHAR_KEYW", "CONST_KEYW", "DOUBLE_KEYW",
587 "ENUM_KEYW", "EXTERN_KEYW", "EXTENSION_KEYW", "FLOAT_KEYW",
588 "INLINE_KEYW", "INT_KEYW", "LONG_KEYW", "REGISTER_KEYW", "RESTRICT_KEYW",
589 "SHORT_KEYW", "SIGNED_KEYW", "STATIC_KEYW", "STRUCT_KEYW",
590 "TYPEDEF_KEYW", "UNION_KEYW", "UNSIGNED_KEYW", "VOID_KEYW",
591 "VOLATILE_KEYW", "TYPEOF_KEYW", "VA_LIST_KEYW", "EXPORT_SYMBOL_KEYW",
592 "ASM_PHRASE", "ATTRIBUTE_PHRASE", "TYPEOF_PHRASE", "BRACE_PHRASE",
593 "BRACKET_PHRASE", "EXPRESSION_PHRASE", "CHAR", "DOTS", "IDENT", "INT",
594 "REAL", "STRING", "TYPE", "OTHER", "FILENAME", "';'", "'}'", "','",
595 "'('", "')'", "'*'", "'='", "'{'", "':'", "$accept", "declaration_seq",
596 "declaration", "$@1", "declaration1", "$@2", "$@3", "simple_declaration",
597 "init_declarator_list_opt", "init_declarator_list", "init_declarator",
598 "decl_specifier_seq_opt", "decl_specifier_seq", "decl_specifier",
599 "storage_class_specifier", "type_specifier", "simple_type_specifier",
600 "ptr_operator", "cvar_qualifier_seq_opt", "cvar_qualifier_seq",
601 "cvar_qualifier", "declarator", "direct_declarator", "nested_declarator",
602 "direct_nested_declarator", "parameter_declaration_clause",
603 "parameter_declaration_list_opt", "parameter_declaration_list",
604 "parameter_declaration", "m_abstract_declarator",
605 "direct_m_abstract_declarator", "function_definition", "initializer_opt",
606 "initializer", "class_body", "member_specification_opt",
607 "member_specification", "member_declaration",
608 "member_declarator_list_opt", "member_declarator_list",
609 "member_declarator", "member_bitfield_declarator", "attribute_opt",
610 "enum_body", "enumerator_list", "enumerator", "asm_definition",
611 "asm_phrase_opt", "export_definition", YY_NULL
612};
613#endif
614
615# ifdef YYPRINT
616/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
617 token YYLEX-NUM. */
618static const yytype_uint16 yytoknum[] =
619{
620 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
621 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
622 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
623 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
624 295, 296, 297, 298, 299, 300, 59, 125, 44, 40,
625 41, 42, 61, 123, 58
626};
627# endif
628
629/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
630static const yytype_uint8 yyr1[] =
631{
632 0, 55, 56, 56, 58, 57, 60, 59, 61, 59,
633 59, 59, 59, 59, 59, 59, 62, 63, 63, 64,
634 64, 65, 66, 66, 67, 67, 68, 68, 69, 69,
635 69, 69, 69, 70, 70, 70, 70, 70, 70, 70,
636 70, 70, 70, 70, 70, 70, 71, 71, 71, 71,
637 71, 71, 71, 71, 71, 71, 71, 71, 72, 73,
638 73, 74, 74, 75, 75, 75, 75, 76, 76, 77,
639 77, 77, 77, 77, 77, 77, 78, 78, 79, 79,
640 79, 79, 79, 79, 79, 80, 80, 80, 81, 81,
641 82, 82, 83, 84, 84, 85, 85, 85, 85, 85,
642 85, 85, 85, 86, 87, 87, 88, 89, 89, 90,
643 90, 91, 91, 92, 92, 93, 93, 94, 94, 95,
644 95, 95, 96, 97, 97, 98, 98, 99, 99, 100,
645 100, 101, 102, 102, 103
646};
647
648/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
649static const yytype_uint8 yyr2[] =
650{
651 0, 2, 1, 2, 0, 2, 0, 4, 0, 3,
652 1, 1, 1, 1, 2, 2, 3, 0, 1, 1,
653 3, 4, 0, 1, 1, 2, 1, 1, 1, 1,
654 1, 1, 1, 1, 1, 4, 1, 2, 2, 2,
655 3, 3, 3, 2, 2, 2, 1, 1, 1, 1,
656 1, 1, 1, 1, 1, 1, 1, 1, 2, 0,
657 1, 1, 2, 1, 1, 1, 1, 2, 1, 1,
658 1, 4, 4, 2, 3, 3, 2, 1, 1, 1,
659 4, 4, 2, 3, 3, 2, 1, 3, 0, 1,
660 1, 3, 2, 2, 1, 0, 1, 1, 4, 4,
661 2, 3, 3, 3, 0, 1, 2, 3, 3, 0,
662 1, 1, 2, 3, 2, 0, 1, 1, 3, 2,
663 2, 1, 2, 0, 2, 3, 4, 1, 3, 1,
664 3, 2, 0, 1, 5
665};
666
667/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
668 Performed when YYTABLE doesn't specify something else to do. Zero
669 means the default is an error. */
670static const yytype_uint8 yydefact[] =
671{
672 4, 4, 2, 0, 1, 3, 0, 28, 55, 46,
673 63, 53, 0, 31, 0, 52, 32, 48, 49, 29,
674 66, 47, 50, 30, 0, 8, 0, 51, 54, 64,
675 0, 56, 0, 0, 65, 36, 57, 5, 10, 17,
676 23, 24, 26, 27, 33, 34, 11, 12, 13, 14,
677 15, 39, 0, 43, 6, 37, 0, 44, 22, 38,
678 45, 0, 0, 131, 69, 70, 0, 59, 0, 18,
679 19, 0, 132, 68, 25, 42, 129, 0, 127, 22,
680 40, 0, 115, 0, 0, 111, 9, 17, 41, 95,
681 0, 0, 0, 0, 58, 60, 61, 16, 0, 67,
682 133, 103, 123, 73, 0, 0, 125, 0, 7, 114,
683 108, 78, 79, 0, 0, 0, 123, 77, 0, 116,
684 117, 121, 107, 0, 112, 132, 96, 57, 0, 95,
685 92, 94, 35, 0, 75, 74, 62, 20, 104, 0,
686 0, 86, 89, 90, 130, 126, 128, 120, 0, 78,
687 0, 122, 76, 119, 82, 0, 113, 0, 0, 97,
688 0, 93, 100, 0, 134, 124, 0, 21, 105, 72,
689 71, 85, 0, 84, 83, 0, 0, 118, 102, 101,
690 0, 0, 106, 87, 91, 81, 80, 99, 98
691};
692
693/* YYDEFGOTO[NTERM-NUM]. */
694static const yytype_int16 yydefgoto[] =
695{
696 -1, 1, 2, 3, 37, 79, 58, 38, 68, 69,
697 70, 82, 40, 41, 42, 43, 44, 71, 94, 95,
698 45, 125, 73, 116, 117, 140, 141, 142, 143, 130,
699 131, 46, 167, 168, 57, 83, 84, 85, 118, 119,
700 120, 121, 138, 53, 77, 78, 47, 102, 48
701};
702
703/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
704 STATE-NUM. */
705#define YYPACT_NINF -111
706static const yytype_int16 yypact[] =
707{
708 -111, 13, -111, 210, -111, -111, 28, -111, -111, -111,
709 -111, -111, -27, -111, 44, -111, -111, -111, -111, -111,
710 -111, -111, -111, -111, -24, -111, -20, -111, -111, -111,
711 31, -111, 32, 42, -111, -111, -111, -111, -111, 34,
712 481, -111, -111, -111, -111, -111, -111, -111, -111, -111,
713 -111, 51, 56, -111, -111, 52, 108, -111, 481, 52,
714 -111, 481, 58, -111, -111, -111, 19, 0, 54, 55,
715 -111, 34, 30, -18, -111, -111, 68, -25, -111, 481,
716 -111, 45, 33, 59, 159, -111, -111, 34, -111, 395,
717 57, 60, 81, 88, -111, 0, -111, -111, 34, -111,
718 -111, -111, -111, -111, 257, 72, -111, -23, -111, -111,
719 -111, 85, -111, 20, 106, 47, -111, -10, 97, 96,
720 -111, -111, -111, 99, -111, 115, -111, -111, 5, 50,
721 -111, 11, -111, 102, -111, -111, -111, -111, -22, 100,
722 103, 111, 104, -111, -111, -111, -111, -111, 113, -111,
723 121, -111, -111, 124, -111, 303, -111, 33, 132, -111,
724 139, -111, -111, 349, -111, -111, 122, -111, -111, -111,
725 -111, -111, 442, -111, -111, 140, 143, -111, -111, -111,
726 144, 145, -111, -111, -111, -111, -111, -111, -111
727};
728
729/* YYPGOTO[NTERM-NUM]. */
730static const yytype_int16 yypgoto[] =
731{
732 -111, -111, 160, -111, -111, -111, -111, -51, -111, -111,
733 98, -1, -61, -37, -111, -111, -111, -78, -111, -111,
734 -53, -30, -111, -66, -111, -110, -111, -111, -60, -63,
735 -111, -111, -111, -111, -21, -111, -111, 116, -111, -111,
736 40, 90, 83, 152, -111, 105, -111, -111, -111
737};
738
739/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
740 positive, shift that token. If negative, reduce the rule which
741 number is the opposite. If YYTABLE_NINF, syntax error. */
742#define YYTABLE_NINF -111
743static const yytype_int16 yytable[] =
744{
745 89, 90, 39, 74, 115, 60, 158, 86, 10, 72,
746 165, 129, 51, 4, 96, 55, 76, 103, 20, 59,
747 92, 148, 106, 107, 145, 154, 52, 29, 108, 56,
748 166, 104, 34, 56, 80, 115, 93, 115, 88, 155,
749 -95, 99, 136, 89, 126, 176, 162, 150, 159, 152,
750 129, 129, 74, 181, 128, -95, 67, 87, 64, 149,
751 163, 100, 65, 112, 101, 160, 161, 54, 66, 113,
752 67, 67, 111, 64, 49, 50, 112, 65, 87, 115,
753 61, 62, 113, 66, 67, 67, 149, 114, 63, 126,
754 112, 109, 110, 159, 89, 76, 113, 91, 67, 128,
755 97, 67, 89, 98, 52, 56, 122, 132, 144, 81,
756 133, 89, 184, 7, 8, 9, 10, 11, 12, 13,
757 105, 15, 16, 17, 18, 19, 20, 21, 22, 23,
758 24, 134, 26, 27, 28, 29, 30, 31, 135, 114,
759 34, 35, 151, 156, 157, 109, 100, -22, 164, 171,
760 169, 36, 172, 170, -22, -109, 165, -22, 182, -22,
761 123, 5, -22, 173, 7, 8, 9, 10, 11, 12,
762 13, 174, 15, 16, 17, 18, 19, 20, 21, 22,
763 23, 24, 178, 26, 27, 28, 29, 30, 31, 179,
764 185, 34, 35, 186, 187, 188, 137, 177, -22, 153,
765 124, 147, 36, 75, 0, -22, -110, 0, -22, 0,
766 -22, 6, 146, -22, 0, 7, 8, 9, 10, 11,
767 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
768 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
769 32, 33, 34, 35, 0, 0, 0, 0, 0, -22,
770 0, 0, 0, 36, 0, 0, -22, 0, 139, -22,
771 0, -22, 7, 8, 9, 10, 11, 12, 13, 0,
772 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
773 0, 26, 27, 28, 29, 30, 31, 0, 0, 34,
774 35, 0, 0, 0, 0, -88, 0, 0, 0, 0,
775 36, 0, 0, 0, 175, 0, 0, -88, 7, 8,
776 9, 10, 11, 12, 13, 0, 15, 16, 17, 18,
777 19, 20, 21, 22, 23, 24, 0, 26, 27, 28,
778 29, 30, 31, 0, 0, 34, 35, 0, 0, 0,
779 0, -88, 0, 0, 0, 0, 36, 0, 0, 0,
780 180, 0, 0, -88, 7, 8, 9, 10, 11, 12,
781 13, 0, 15, 16, 17, 18, 19, 20, 21, 22,
782 23, 24, 0, 26, 27, 28, 29, 30, 31, 0,
783 0, 34, 35, 0, 0, 0, 0, -88, 0, 0,
784 0, 0, 36, 0, 0, 0, 0, 0, 0, -88,
785 7, 8, 9, 10, 11, 12, 13, 0, 15, 16,
786 17, 18, 19, 20, 21, 22, 23, 24, 0, 26,
787 27, 28, 29, 30, 31, 0, 0, 34, 35, 0,
788 0, 0, 0, 0, 126, 0, 0, 0, 127, 0,
789 0, 0, 0, 0, 128, 0, 67, 7, 8, 9,
790 10, 11, 12, 13, 0, 15, 16, 17, 18, 19,
791 20, 21, 22, 23, 24, 0, 26, 27, 28, 29,
792 30, 31, 0, 0, 34, 35, 0, 0, 0, 0,
793 183, 0, 0, 0, 0, 36, 7, 8, 9, 10,
794 11, 12, 13, 0, 15, 16, 17, 18, 19, 20,
795 21, 22, 23, 24, 0, 26, 27, 28, 29, 30,
796 31, 0, 0, 34, 35, 0, 0, 0, 0, 0,
797 0, 0, 0, 0, 36
798};
799
800#define yypact_value_is_default(Yystate) \
801 (!!((Yystate) == (-111)))
802
803#define yytable_value_is_error(Yytable_value) \
804 YYID (0)
805
806static const yytype_int16 yycheck[] =
807{
808 61, 61, 3, 40, 82, 26, 1, 58, 8, 39,
809 32, 89, 39, 0, 67, 39, 39, 35, 18, 39,
810 1, 1, 47, 48, 47, 35, 53, 27, 79, 53,
811 52, 49, 32, 53, 55, 113, 66, 115, 59, 49,
812 35, 71, 95, 104, 39, 155, 35, 113, 43, 115,
813 128, 129, 89, 163, 49, 50, 51, 58, 39, 39,
814 49, 31, 43, 43, 34, 128, 129, 23, 49, 49,
815 51, 51, 39, 39, 46, 47, 43, 43, 79, 157,
816 49, 49, 49, 49, 51, 51, 39, 54, 46, 39,
817 43, 46, 47, 43, 155, 39, 49, 39, 51, 49,
818 46, 51, 163, 48, 53, 53, 47, 50, 36, 1,
819 50, 172, 172, 5, 6, 7, 8, 9, 10, 11,
820 52, 13, 14, 15, 16, 17, 18, 19, 20, 21,
821 22, 50, 24, 25, 26, 27, 28, 29, 50, 54,
822 32, 33, 36, 46, 48, 46, 31, 39, 46, 38,
823 50, 43, 48, 50, 46, 47, 32, 49, 36, 51,
824 1, 1, 54, 50, 5, 6, 7, 8, 9, 10,
825 11, 50, 13, 14, 15, 16, 17, 18, 19, 20,
826 21, 22, 50, 24, 25, 26, 27, 28, 29, 50,
827 50, 32, 33, 50, 50, 50, 98, 157, 39, 116,
828 84, 111, 43, 51, -1, 46, 47, -1, 49, -1,
829 51, 1, 107, 54, -1, 5, 6, 7, 8, 9,
830 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
831 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
832 30, 31, 32, 33, -1, -1, -1, -1, -1, 39,
833 -1, -1, -1, 43, -1, -1, 46, -1, 1, 49,
834 -1, 51, 5, 6, 7, 8, 9, 10, 11, -1,
835 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
836 -1, 24, 25, 26, 27, 28, 29, -1, -1, 32,
837 33, -1, -1, -1, -1, 38, -1, -1, -1, -1,
838 43, -1, -1, -1, 1, -1, -1, 50, 5, 6,
839 7, 8, 9, 10, 11, -1, 13, 14, 15, 16,
840 17, 18, 19, 20, 21, 22, -1, 24, 25, 26,
841 27, 28, 29, -1, -1, 32, 33, -1, -1, -1,
842 -1, 38, -1, -1, -1, -1, 43, -1, -1, -1,
843 1, -1, -1, 50, 5, 6, 7, 8, 9, 10,
844 11, -1, 13, 14, 15, 16, 17, 18, 19, 20,
845 21, 22, -1, 24, 25, 26, 27, 28, 29, -1,
846 -1, 32, 33, -1, -1, -1, -1, 38, -1, -1,
847 -1, -1, 43, -1, -1, -1, -1, -1, -1, 50,
848 5, 6, 7, 8, 9, 10, 11, -1, 13, 14,
849 15, 16, 17, 18, 19, 20, 21, 22, -1, 24,
850 25, 26, 27, 28, 29, -1, -1, 32, 33, -1,
851 -1, -1, -1, -1, 39, -1, -1, -1, 43, -1,
852 -1, -1, -1, -1, 49, -1, 51, 5, 6, 7,
853 8, 9, 10, 11, -1, 13, 14, 15, 16, 17,
854 18, 19, 20, 21, 22, -1, 24, 25, 26, 27,
855 28, 29, -1, -1, 32, 33, -1, -1, -1, -1,
856 38, -1, -1, -1, -1, 43, 5, 6, 7, 8,
857 9, 10, 11, -1, 13, 14, 15, 16, 17, 18,
858 19, 20, 21, 22, -1, 24, 25, 26, 27, 28,
859 29, -1, -1, 32, 33, -1, -1, -1, -1, -1,
860 -1, -1, -1, -1, 43
861};
862
863/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
864 symbol of state STATE-NUM. */
865static const yytype_uint8 yystos[] =
866{
867 0, 56, 57, 58, 0, 57, 1, 5, 6, 7,
868 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
869 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
870 28, 29, 30, 31, 32, 33, 43, 59, 62, 66,
871 67, 68, 69, 70, 71, 75, 86, 101, 103, 46,
872 47, 39, 53, 98, 23, 39, 53, 89, 61, 39,
873 89, 49, 49, 46, 39, 43, 49, 51, 63, 64,
874 65, 72, 76, 77, 68, 98, 39, 99, 100, 60,
875 89, 1, 66, 90, 91, 92, 62, 66, 89, 67,
876 83, 39, 1, 76, 73, 74, 75, 46, 48, 76,
877 31, 34, 102, 35, 49, 52, 47, 48, 62, 46,
878 47, 39, 43, 49, 54, 72, 78, 79, 93, 94,
879 95, 96, 47, 1, 92, 76, 39, 43, 49, 72,
880 84, 85, 50, 50, 50, 50, 75, 65, 97, 1,
881 80, 81, 82, 83, 36, 47, 100, 96, 1, 39,
882 78, 36, 78, 97, 35, 49, 46, 48, 1, 43,
883 84, 84, 35, 49, 46, 32, 52, 87, 88, 50,
884 50, 38, 48, 50, 50, 1, 80, 95, 50, 50,
885 1, 80, 36, 38, 83, 50, 50, 50, 50
886};
887
888#define yyerrok (yyerrstatus = 0)
889#define yyclearin (yychar = YYEMPTY)
890#define YYEMPTY (-2)
891#define YYEOF 0
892
893#define YYACCEPT goto yyacceptlab
894#define YYABORT goto yyabortlab
895#define YYERROR goto yyerrorlab
896
897
898/* Like YYERROR except do call yyerror. This remains here temporarily
899 to ease the transition to the new meaning of YYERROR, for GCC.
900 Once GCC version 2 has supplanted version 1, this can go. However,
901 YYFAIL appears to be in use. Nevertheless, it is formally deprecated
902 in Bison 2.4.2's NEWS entry, where a plan to phase it out is
903 discussed. */
904
905#define YYFAIL goto yyerrlab
906#if defined YYFAIL
907 /* This is here to suppress warnings from the GCC cpp's
908 -Wunused-macros. Normally we don't worry about that warning, but
909 some users do, and we want to make it easy for users to remove
910 YYFAIL uses, which will produce warnings from Bison 2.5. */
911#endif
912
913#define YYRECOVERING() (!!yyerrstatus)
914
915#define YYBACKUP(Token, Value) \
916do \
917 if (yychar == YYEMPTY) \
918 { \
919 yychar = (Token); \
920 yylval = (Value); \
921 YYPOPSTACK (yylen); \
922 yystate = *yyssp; \
923 goto yybackup; \
924 } \
925 else \
926 { \
927 yyerror (YY_("syntax error: cannot back up")); \
928 YYERROR; \
929 } \
930while (YYID (0))
931
932/* Error token number */
933#define YYTERROR 1
934#define YYERRCODE 256
935
936
937/* This macro is provided for backward compatibility. */
938#ifndef YY_LOCATION_PRINT
939# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
940#endif
941
942
943/* YYLEX -- calling `yylex' with the right arguments. */
944#ifdef YYLEX_PARAM
945# define YYLEX yylex (YYLEX_PARAM)
946#else
947# define YYLEX yylex ()
948#endif
949
950/* Enable debugging if requested. */
951#if YYDEBUG
952
953# ifndef YYFPRINTF
954# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
955# define YYFPRINTF fprintf
956# endif
957
958# define YYDPRINTF(Args) \
959do { \
960 if (yydebug) \
961 YYFPRINTF Args; \
962} while (YYID (0))
963
964# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
965do { \
966 if (yydebug) \
967 { \
968 YYFPRINTF (stderr, "%s ", Title); \
969 yy_symbol_print (stderr, \
970 Type, Value); \
971 YYFPRINTF (stderr, "\n"); \
972 } \
973} while (YYID (0))
974
975
976/*--------------------------------.
977| Print this symbol on YYOUTPUT. |
978`--------------------------------*/
979
980/*ARGSUSED*/
981#if (defined __STDC__ || defined __C99__FUNC__ \
982 || defined __cplusplus || defined _MSC_VER)
983static void
984yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
985#else
986static void
987yy_symbol_value_print (yyoutput, yytype, yyvaluep)
988 FILE *yyoutput;
989 int yytype;
990 YYSTYPE const * const yyvaluep;
991#endif
992{
993 FILE *yyo = yyoutput;
994 YYUSE (yyo);
995 if (!yyvaluep)
996 return;
997# ifdef YYPRINT
998 if (yytype < YYNTOKENS)
999 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
1000# else
1001 YYUSE (yyoutput);
1002# endif
1003 switch (yytype)
1004 {
1005 default:
1006 break;
1007 }
1008}
1009
1010
1011/*--------------------------------.
1012| Print this symbol on YYOUTPUT. |
1013`--------------------------------*/
1014
1015#if (defined __STDC__ || defined __C99__FUNC__ \
1016 || defined __cplusplus || defined _MSC_VER)
1017static void
1018yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
1019#else
1020static void
1021yy_symbol_print (yyoutput, yytype, yyvaluep)
1022 FILE *yyoutput;
1023 int yytype;
1024 YYSTYPE const * const yyvaluep;
1025#endif
1026{
1027 if (yytype < YYNTOKENS)
1028 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
1029 else
1030 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
1031
1032 yy_symbol_value_print (yyoutput, yytype, yyvaluep);
1033 YYFPRINTF (yyoutput, ")");
1034}
1035
1036/*------------------------------------------------------------------.
1037| yy_stack_print -- Print the state stack from its BOTTOM up to its |
1038| TOP (included). |
1039`------------------------------------------------------------------*/
1040
1041#if (defined __STDC__ || defined __C99__FUNC__ \
1042 || defined __cplusplus || defined _MSC_VER)
1043static void
1044yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
1045#else
1046static void
1047yy_stack_print (yybottom, yytop)
1048 yytype_int16 *yybottom;
1049 yytype_int16 *yytop;
1050#endif
1051{
1052 YYFPRINTF (stderr, "Stack now");
1053 for (; yybottom <= yytop; yybottom++)
1054 {
1055 int yybot = *yybottom;
1056 YYFPRINTF (stderr, " %d", yybot);
1057 }
1058 YYFPRINTF (stderr, "\n");
1059}
1060
1061# define YY_STACK_PRINT(Bottom, Top) \
1062do { \
1063 if (yydebug) \
1064 yy_stack_print ((Bottom), (Top)); \
1065} while (YYID (0))
1066
1067
1068/*------------------------------------------------.
1069| Report that the YYRULE is going to be reduced. |
1070`------------------------------------------------*/
1071
1072#if (defined __STDC__ || defined __C99__FUNC__ \
1073 || defined __cplusplus || defined _MSC_VER)
1074static void
1075yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
1076#else
1077static void
1078yy_reduce_print (yyvsp, yyrule)
1079 YYSTYPE *yyvsp;
1080 int yyrule;
1081#endif
1082{
1083 int yynrhs = yyr2[yyrule];
1084 int yyi;
1085 unsigned long int yylno = yyrline[yyrule];
1086 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
1087 yyrule - 1, yylno);
1088 /* The symbols being reduced. */
1089 for (yyi = 0; yyi < yynrhs; yyi++)
1090 {
1091 YYFPRINTF (stderr, " $%d = ", yyi + 1);
1092 yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
1093 &(yyvsp[(yyi + 1) - (yynrhs)])
1094 );
1095 YYFPRINTF (stderr, "\n");
1096 }
1097}
1098
1099# define YY_REDUCE_PRINT(Rule) \
1100do { \
1101 if (yydebug) \
1102 yy_reduce_print (yyvsp, Rule); \
1103} while (YYID (0))
1104
1105/* Nonzero means print parse trace. It is left uninitialized so that
1106 multiple parsers can coexist. */
1107int yydebug;
1108#else /* !YYDEBUG */
1109# define YYDPRINTF(Args)
1110# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
1111# define YY_STACK_PRINT(Bottom, Top)
1112# define YY_REDUCE_PRINT(Rule)
1113#endif /* !YYDEBUG */
1114
1115
1116/* YYINITDEPTH -- initial size of the parser's stacks. */
1117#ifndef YYINITDEPTH
1118# define YYINITDEPTH 200
1119#endif
1120
1121/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1122 if the built-in stack extension method is used).
1123
1124 Do not make this value too large; the results are undefined if
1125 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
1126 evaluated with infinite-precision integer arithmetic. */
1127
1128#ifndef YYMAXDEPTH
1129# define YYMAXDEPTH 10000
1130#endif
1131
1132
1133#if YYERROR_VERBOSE
1134
1135# ifndef yystrlen
1136# if defined __GLIBC__ && defined _STRING_H
1137# define yystrlen strlen
1138# else
1139/* Return the length of YYSTR. */
1140#if (defined __STDC__ || defined __C99__FUNC__ \
1141 || defined __cplusplus || defined _MSC_VER)
1142static YYSIZE_T
1143yystrlen (const char *yystr)
1144#else
1145static YYSIZE_T
1146yystrlen (yystr)
1147 const char *yystr;
1148#endif
1149{
1150 YYSIZE_T yylen;
1151 for (yylen = 0; yystr[yylen]; yylen++)
1152 continue;
1153 return yylen;
1154}
1155# endif
1156# endif
1157
1158# ifndef yystpcpy
1159# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
1160# define yystpcpy stpcpy
1161# else
1162/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1163 YYDEST. */
1164#if (defined __STDC__ || defined __C99__FUNC__ \
1165 || defined __cplusplus || defined _MSC_VER)
1166static char *
1167yystpcpy (char *yydest, const char *yysrc)
1168#else
1169static char *
1170yystpcpy (yydest, yysrc)
1171 char *yydest;
1172 const char *yysrc;
1173#endif
1174{
1175 char *yyd = yydest;
1176 const char *yys = yysrc;
1177
1178 while ((*yyd++ = *yys++) != '\0')
1179 continue;
1180
1181 return yyd - 1;
1182}
1183# endif
1184# endif
1185
1186# ifndef yytnamerr
1187/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1188 quotes and backslashes, so that it's suitable for yyerror. The
1189 heuristic is that double-quoting is unnecessary unless the string
1190 contains an apostrophe, a comma, or backslash (other than
1191 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1192 null, do not copy; instead, return the length of what the result
1193 would have been. */
1194static YYSIZE_T
1195yytnamerr (char *yyres, const char *yystr)
1196{
1197 if (*yystr == '"')
1198 {
1199 YYSIZE_T yyn = 0;
1200 char const *yyp = yystr;
1201
1202 for (;;)
1203 switch (*++yyp)
1204 {
1205 case '\'':
1206 case ',':
1207 goto do_not_strip_quotes;
1208
1209 case '\\':
1210 if (*++yyp != '\\')
1211 goto do_not_strip_quotes;
1212 /* Fall through. */
1213 default:
1214 if (yyres)
1215 yyres[yyn] = *yyp;
1216 yyn++;
1217 break;
1218
1219 case '"':
1220 if (yyres)
1221 yyres[yyn] = '\0';
1222 return yyn;
1223 }
1224 do_not_strip_quotes: ;
1225 }
1226
1227 if (! yyres)
1228 return yystrlen (yystr);
1229
1230 return yystpcpy (yyres, yystr) - yyres;
1231}
1232# endif
1233
1234/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
1235 about the unexpected token YYTOKEN for the state stack whose top is
1236 YYSSP.
1237
1238 Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
1239 not large enough to hold the message. In that case, also set
1240 *YYMSG_ALLOC to the required number of bytes. Return 2 if the
1241 required number of bytes is too large to store. */
1242static int
1243yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
1244 yytype_int16 *yyssp, int yytoken)
1245{
1246 YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
1247 YYSIZE_T yysize = yysize0;
1248 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
1249 /* Internationalized format string. */
1250 const char *yyformat = YY_NULL;
1251 /* Arguments of yyformat. */
1252 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
1253 /* Number of reported tokens (one for the "unexpected", one per
1254 "expected"). */
1255 int yycount = 0;
1256
1257 /* There are many possibilities here to consider:
1258 - Assume YYFAIL is not used. It's too flawed to consider. See
1259 <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
1260 for details. YYERROR is fine as it does not invoke this
1261 function.
1262 - If this state is a consistent state with a default action, then
1263 the only way this function was invoked is if the default action
1264 is an error action. In that case, don't check for expected
1265 tokens because there are none.
1266 - The only way there can be no lookahead present (in yychar) is if
1267 this state is a consistent state with a default action. Thus,
1268 detecting the absence of a lookahead is sufficient to determine
1269 that there is no unexpected or expected token to report. In that
1270 case, just report a simple "syntax error".
1271 - Don't assume there isn't a lookahead just because this state is a
1272 consistent state with a default action. There might have been a
1273 previous inconsistent state, consistent state with a non-default
1274 action, or user semantic action that manipulated yychar.
1275 - Of course, the expected token list depends on states to have
1276 correct lookahead information, and it depends on the parser not
1277 to perform extra reductions after fetching a lookahead from the
1278 scanner and before detecting a syntax error. Thus, state merging
1279 (from LALR or IELR) and default reductions corrupt the expected
1280 token list. However, the list is correct for canonical LR with
1281 one exception: it will still contain any token that will not be
1282 accepted due to an error action in a later state.
1283 */
1284 if (yytoken != YYEMPTY)
1285 {
1286 int yyn = yypact[*yyssp];
1287 yyarg[yycount++] = yytname[yytoken];
1288 if (!yypact_value_is_default (yyn))
1289 {
1290 /* Start YYX at -YYN if negative to avoid negative indexes in
1291 YYCHECK. In other words, skip the first -YYN actions for
1292 this state because they are default actions. */
1293 int yyxbegin = yyn < 0 ? -yyn : 0;
1294 /* Stay within bounds of both yycheck and yytname. */
1295 int yychecklim = YYLAST - yyn + 1;
1296 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
1297 int yyx;
1298
1299 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
1300 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
1301 && !yytable_value_is_error (yytable[yyx + yyn]))
1302 {
1303 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
1304 {
1305 yycount = 1;
1306 yysize = yysize0;
1307 break;
1308 }
1309 yyarg[yycount++] = yytname[yyx];
1310 {
1311 YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
1312 if (! (yysize <= yysize1
1313 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
1314 return 2;
1315 yysize = yysize1;
1316 }
1317 }
1318 }
1319 }
1320
1321 switch (yycount)
1322 {
1323# define YYCASE_(N, S) \
1324 case N: \
1325 yyformat = S; \
1326 break
1327 YYCASE_(0, YY_("syntax error"));
1328 YYCASE_(1, YY_("syntax error, unexpected %s"));
1329 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1330 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1331 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1332 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
1333# undef YYCASE_
1334 }
1335
1336 {
1337 YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
1338 if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
1339 return 2;
1340 yysize = yysize1;
1341 }
1342
1343 if (*yymsg_alloc < yysize)
1344 {
1345 *yymsg_alloc = 2 * yysize;
1346 if (! (yysize <= *yymsg_alloc
1347 && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
1348 *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
1349 return 1;
1350 }
1351
1352 /* Avoid sprintf, as that infringes on the user's name space.
1353 Don't have undefined behavior even if the translation
1354 produced a string with the wrong number of "%s"s. */
1355 {
1356 char *yyp = *yymsg;
1357 int yyi = 0;
1358 while ((*yyp = *yyformat) != '\0')
1359 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
1360 {
1361 yyp += yytnamerr (yyp, yyarg[yyi++]);
1362 yyformat += 2;
1363 }
1364 else
1365 {
1366 yyp++;
1367 yyformat++;
1368 }
1369 }
1370 return 0;
1371}
1372#endif /* YYERROR_VERBOSE */
1373
1374/*-----------------------------------------------.
1375| Release the memory associated to this symbol. |
1376`-----------------------------------------------*/
1377
1378/*ARGSUSED*/
1379#if (defined __STDC__ || defined __C99__FUNC__ \
1380 || defined __cplusplus || defined _MSC_VER)
1381static void
1382yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
1383#else
1384static void
1385yydestruct (yymsg, yytype, yyvaluep)
1386 const char *yymsg;
1387 int yytype;
1388 YYSTYPE *yyvaluep;
1389#endif
1390{
1391 YYUSE (yyvaluep);
1392
1393 if (!yymsg)
1394 yymsg = "Deleting";
1395 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
1396
1397 switch (yytype)
1398 {
1399
1400 default:
1401 break;
1402 }
1403}
1404
1405
1406
1407
1408/* The lookahead symbol. */
1409int yychar;
1410
1411
1412#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
1413# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
1414# define YY_IGNORE_MAYBE_UNINITIALIZED_END
1415#endif
1416#ifndef YY_INITIAL_VALUE
1417# define YY_INITIAL_VALUE(Value) /* Nothing. */
1418#endif
1419
1420/* The semantic value of the lookahead symbol. */
1421YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);
1422
1423/* Number of syntax errors so far. */
1424int yynerrs;
1425
1426
1427/*----------.
1428| yyparse. |
1429`----------*/
1430
1431#ifdef YYPARSE_PARAM
1432#if (defined __STDC__ || defined __C99__FUNC__ \
1433 || defined __cplusplus || defined _MSC_VER)
1434int
1435yyparse (void *YYPARSE_PARAM)
1436#else
1437int
1438yyparse (YYPARSE_PARAM)
1439 void *YYPARSE_PARAM;
1440#endif
1441#else /* ! YYPARSE_PARAM */
1442#if (defined __STDC__ || defined __C99__FUNC__ \
1443 || defined __cplusplus || defined _MSC_VER)
1444int
1445yyparse (void)
1446#else
1447int
1448yyparse ()
1449
1450#endif
1451#endif
1452{
1453 int yystate;
1454 /* Number of tokens to shift before error messages enabled. */
1455 int yyerrstatus;
1456
1457 /* The stacks and their tools:
1458 `yyss': related to states.
1459 `yyvs': related to semantic values.
1460
1461 Refer to the stacks through separate pointers, to allow yyoverflow
1462 to reallocate them elsewhere. */
1463
1464 /* The state stack. */
1465 yytype_int16 yyssa[YYINITDEPTH];
1466 yytype_int16 *yyss;
1467 yytype_int16 *yyssp;
1468
1469 /* The semantic value stack. */
1470 YYSTYPE yyvsa[YYINITDEPTH];
1471 YYSTYPE *yyvs;
1472 YYSTYPE *yyvsp;
1473
1474 YYSIZE_T yystacksize;
1475
1476 int yyn;
1477 int yyresult;
1478 /* Lookahead token as an internal (translated) token number. */
1479 int yytoken = 0;
1480 /* The variables used to return semantic value and location from the
1481 action routines. */
1482 YYSTYPE yyval;
1483
1484#if YYERROR_VERBOSE
1485 /* Buffer for error messages, and its allocated size. */
1486 char yymsgbuf[128];
1487 char *yymsg = yymsgbuf;
1488 YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
1489#endif
1490
1491#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
1492
1493 /* The number of symbols on the RHS of the reduced rule.
1494 Keep to zero when no symbol should be popped. */
1495 int yylen = 0;
1496
1497 yyssp = yyss = yyssa;
1498 yyvsp = yyvs = yyvsa;
1499 yystacksize = YYINITDEPTH;
1500
1501 YYDPRINTF ((stderr, "Starting parse\n"));
1502
1503 yystate = 0;
1504 yyerrstatus = 0;
1505 yynerrs = 0;
1506 yychar = YYEMPTY; /* Cause a token to be read. */
1507 goto yysetstate;
1508
1509/*------------------------------------------------------------.
1510| yynewstate -- Push a new state, which is found in yystate. |
1511`------------------------------------------------------------*/
1512 yynewstate:
1513 /* In all cases, when you get here, the value and location stacks
1514 have just been pushed. So pushing a state here evens the stacks. */
1515 yyssp++;
1516
1517 yysetstate:
1518 *yyssp = yystate;
1519
1520 if (yyss + yystacksize - 1 <= yyssp)
1521 {
1522 /* Get the current used size of the three stacks, in elements. */
1523 YYSIZE_T yysize = yyssp - yyss + 1;
1524
1525#ifdef yyoverflow
1526 {
1527 /* Give user a chance to reallocate the stack. Use copies of
1528 these so that the &'s don't force the real ones into
1529 memory. */
1530 YYSTYPE *yyvs1 = yyvs;
1531 yytype_int16 *yyss1 = yyss;
1532
1533 /* Each stack pointer address is followed by the size of the
1534 data in use in that stack, in bytes. This used to be a
1535 conditional around just the two extra args, but that might
1536 be undefined if yyoverflow is a macro. */
1537 yyoverflow (YY_("memory exhausted"),
1538 &yyss1, yysize * sizeof (*yyssp),
1539 &yyvs1, yysize * sizeof (*yyvsp),
1540 &yystacksize);
1541
1542 yyss = yyss1;
1543 yyvs = yyvs1;
1544 }
1545#else /* no yyoverflow */
1546# ifndef YYSTACK_RELOCATE
1547 goto yyexhaustedlab;
1548# else
1549 /* Extend the stack our own way. */
1550 if (YYMAXDEPTH <= yystacksize)
1551 goto yyexhaustedlab;
1552 yystacksize *= 2;
1553 if (YYMAXDEPTH < yystacksize)
1554 yystacksize = YYMAXDEPTH;
1555
1556 {
1557 yytype_int16 *yyss1 = yyss;
1558 union yyalloc *yyptr =
1559 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
1560 if (! yyptr)
1561 goto yyexhaustedlab;
1562 YYSTACK_RELOCATE (yyss_alloc, yyss);
1563 YYSTACK_RELOCATE (yyvs_alloc, yyvs);
1564# undef YYSTACK_RELOCATE
1565 if (yyss1 != yyssa)
1566 YYSTACK_FREE (yyss1);
1567 }
1568# endif
1569#endif /* no yyoverflow */
1570
1571 yyssp = yyss + yysize - 1;
1572 yyvsp = yyvs + yysize - 1;
1573
1574 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
1575 (unsigned long int) yystacksize));
1576
1577 if (yyss + yystacksize - 1 <= yyssp)
1578 YYABORT;
1579 }
1580
1581 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
1582
1583 if (yystate == YYFINAL)
1584 YYACCEPT;
1585
1586 goto yybackup;
1587
1588/*-----------.
1589| yybackup. |
1590`-----------*/
1591yybackup:
1592
1593 /* Do appropriate processing given the current state. Read a
1594 lookahead token if we need one and don't already have one. */
1595
1596 /* First try to decide what to do without reference to lookahead token. */
1597 yyn = yypact[yystate];
1598 if (yypact_value_is_default (yyn))
1599 goto yydefault;
1600
1601 /* Not known => get a lookahead token if don't already have one. */
1602
1603 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1604 if (yychar == YYEMPTY)
1605 {
1606 YYDPRINTF ((stderr, "Reading a token: "));
1607 yychar = YYLEX;
1608 }
1609
1610 if (yychar <= YYEOF)
1611 {
1612 yychar = yytoken = YYEOF;
1613 YYDPRINTF ((stderr, "Now at end of input.\n"));
1614 }
1615 else
1616 {
1617 yytoken = YYTRANSLATE (yychar);
1618 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
1619 }
1620
1621 /* If the proper action on seeing token YYTOKEN is to reduce or to
1622 detect an error, take that action. */
1623 yyn += yytoken;
1624 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
1625 goto yydefault;
1626 yyn = yytable[yyn];
1627 if (yyn <= 0)
1628 {
1629 if (yytable_value_is_error (yyn))
1630 goto yyerrlab;
1631 yyn = -yyn;
1632 goto yyreduce;
1633 }
1634
1635 /* Count tokens shifted since error; after three, turn off error
1636 status. */
1637 if (yyerrstatus)
1638 yyerrstatus--;
1639
1640 /* Shift the lookahead token. */
1641 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
1642
1643 /* Discard the shifted token. */
1644 yychar = YYEMPTY;
1645
1646 yystate = yyn;
1647 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
1648 *++yyvsp = yylval;
1649 YY_IGNORE_MAYBE_UNINITIALIZED_END
1650
1651 goto yynewstate;
1652
1653
1654/*-----------------------------------------------------------.
1655| yydefault -- do the default action for the current state. |
1656`-----------------------------------------------------------*/
1657yydefault:
1658 yyn = yydefact[yystate];
1659 if (yyn == 0)
1660 goto yyerrlab;
1661 goto yyreduce;
1662
1663
1664/*-----------------------------.
1665| yyreduce -- Do a reduction. |
1666`-----------------------------*/
1667yyreduce:
1668 /* yyn is the number of a rule to reduce with. */
1669 yylen = yyr2[yyn];
1670
1671 /* If YYLEN is nonzero, implement the default value of the action:
1672 `$$ = $1'.
1673
1674 Otherwise, the following line sets YYVAL to garbage.
1675 This behavior is undocumented and Bison
1676 users should not rely upon it. Assigning to YYVAL
1677 unconditionally makes the parser a bit smaller, and it avoids a
1678 GCC warning that YYVAL may be used uninitialized. */
1679 yyval = yyvsp[1-yylen];
1680
1681
1682 YY_REDUCE_PRINT (yyn);
1683 switch (yyn)
1684 {
1685 case 4:
1686
1687 { is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; }
1688 break;
1689
1690 case 5:
1691
1692 { free_list(*(yyvsp[(2) - (2)]), NULL); *(yyvsp[(2) - (2)]) = NULL; }
1693 break;
1694
1695 case 6:
1696
1697 { is_typedef = 1; }
1698 break;
1699
1700 case 7:
1701
1702 { (yyval) = (yyvsp[(4) - (4)]); }
1703 break;
1704
1705 case 8:
1706
1707 { is_typedef = 1; }
1708 break;
1709
1710 case 9:
1711
1712 { (yyval) = (yyvsp[(3) - (3)]); }
1713 break;
1714
1715 case 14:
1716
1717 { (yyval) = (yyvsp[(2) - (2)]); }
1718 break;
1719
1720 case 15:
1721
1722 { (yyval) = (yyvsp[(2) - (2)]); }
1723 break;
1724
1725 case 16:
1726
1727 { if (current_name) {
1728 struct string_list *decl = (*(yyvsp[(3) - (3)]))->next;
1729 (*(yyvsp[(3) - (3)]))->next = NULL;
1730 add_symbol(current_name,
1731 is_typedef ? SYM_TYPEDEF : SYM_NORMAL,
1732 decl, is_extern);
1733 current_name = NULL;
1734 }
1735 (yyval) = (yyvsp[(3) - (3)]);
1736 }
1737 break;
1738
1739 case 17:
1740
1741 { (yyval) = NULL; }
1742 break;
1743
1744 case 19:
1745
1746 { struct string_list *decl = *(yyvsp[(1) - (1)]);
1747 *(yyvsp[(1) - (1)]) = NULL;
1748 add_symbol(current_name,
1749 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
1750 current_name = NULL;
1751 (yyval) = (yyvsp[(1) - (1)]);
1752 }
1753 break;
1754
1755 case 20:
1756
1757 { struct string_list *decl = *(yyvsp[(3) - (3)]);
1758 *(yyvsp[(3) - (3)]) = NULL;
1759 free_list(*(yyvsp[(2) - (3)]), NULL);
1760 *(yyvsp[(2) - (3)]) = decl_spec;
1761 add_symbol(current_name,
1762 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
1763 current_name = NULL;
1764 (yyval) = (yyvsp[(3) - (3)]);
1765 }
1766 break;
1767
1768 case 21:
1769
1770 { (yyval) = (yyvsp[(4) - (4)]) ? (yyvsp[(4) - (4)]) : (yyvsp[(3) - (4)]) ? (yyvsp[(3) - (4)]) : (yyvsp[(2) - (4)]) ? (yyvsp[(2) - (4)]) : (yyvsp[(1) - (4)]); }
1771 break;
1772
1773 case 22:
1774
1775 { decl_spec = NULL; }
1776 break;
1777
1778 case 24:
1779
1780 { decl_spec = *(yyvsp[(1) - (1)]); }
1781 break;
1782
1783 case 25:
1784
1785 { decl_spec = *(yyvsp[(2) - (2)]); }
1786 break;
1787
1788 case 26:
1789
1790 { /* Version 2 checksumming ignores storage class, as that
1791 is really irrelevant to the linkage. */
1792 remove_node((yyvsp[(1) - (1)]));
1793 (yyval) = (yyvsp[(1) - (1)]);
1794 }
1795 break;
1796
1797 case 31:
1798
1799 { is_extern = 1; (yyval) = (yyvsp[(1) - (1)]); }
1800 break;
1801
1802 case 32:
1803
1804 { is_extern = 0; (yyval) = (yyvsp[(1) - (1)]); }
1805 break;
1806
1807 case 37:
1808
1809 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_STRUCT; (yyval) = (yyvsp[(2) - (2)]); }
1810 break;
1811
1812 case 38:
1813
1814 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_UNION; (yyval) = (yyvsp[(2) - (2)]); }
1815 break;
1816
1817 case 39:
1818
1819 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_ENUM; (yyval) = (yyvsp[(2) - (2)]); }
1820 break;
1821
1822 case 40:
1823
1824 { record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_STRUCT); (yyval) = (yyvsp[(3) - (3)]); }
1825 break;
1826
1827 case 41:
1828
1829 { record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_UNION); (yyval) = (yyvsp[(3) - (3)]); }
1830 break;
1831
1832 case 42:
1833
1834 { record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_ENUM); (yyval) = (yyvsp[(3) - (3)]); }
1835 break;
1836
1837 case 43:
1838
1839 { add_symbol(NULL, SYM_ENUM, NULL, 0); (yyval) = (yyvsp[(2) - (2)]); }
1840 break;
1841
1842 case 44:
1843
1844 { (yyval) = (yyvsp[(2) - (2)]); }
1845 break;
1846
1847 case 45:
1848
1849 { (yyval) = (yyvsp[(2) - (2)]); }
1850 break;
1851
1852 case 57:
1853
1854 { (*(yyvsp[(1) - (1)]))->tag = SYM_TYPEDEF; (yyval) = (yyvsp[(1) - (1)]); }
1855 break;
1856
1857 case 58:
1858
1859 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
1860 break;
1861
1862 case 59:
1863
1864 { (yyval) = NULL; }
1865 break;
1866
1867 case 62:
1868
1869 { (yyval) = (yyvsp[(2) - (2)]); }
1870 break;
1871
1872 case 66:
1873
1874 { /* restrict has no effect in prototypes so ignore it */
1875 remove_node((yyvsp[(1) - (1)]));
1876 (yyval) = (yyvsp[(1) - (1)]);
1877 }
1878 break;
1879
1880 case 67:
1881
1882 { (yyval) = (yyvsp[(2) - (2)]); }
1883 break;
1884
1885 case 69:
1886
1887 { if (current_name != NULL) {
1888 error_with_pos("unexpected second declaration name");
1889 YYERROR;
1890 } else {
1891 current_name = (*(yyvsp[(1) - (1)]))->string;
1892 (yyval) = (yyvsp[(1) - (1)]);
1893 }
1894 }
1895 break;
1896
1897 case 70:
1898
1899 { if (current_name != NULL) {
1900 error_with_pos("unexpected second declaration name");
1901 YYERROR;
1902 } else {
1903 current_name = (*(yyvsp[(1) - (1)]))->string;
1904 (yyval) = (yyvsp[(1) - (1)]);
1905 }
1906 }
1907 break;
1908
1909 case 71:
1910
1911 { (yyval) = (yyvsp[(4) - (4)]); }
1912 break;
1913
1914 case 72:
1915
1916 { (yyval) = (yyvsp[(4) - (4)]); }
1917 break;
1918
1919 case 73:
1920
1921 { (yyval) = (yyvsp[(2) - (2)]); }
1922 break;
1923
1924 case 74:
1925
1926 { (yyval) = (yyvsp[(3) - (3)]); }
1927 break;
1928
1929 case 75:
1930
1931 { (yyval) = (yyvsp[(3) - (3)]); }
1932 break;
1933
1934 case 76:
1935
1936 { (yyval) = (yyvsp[(2) - (2)]); }
1937 break;
1938
1939 case 80:
1940
1941 { (yyval) = (yyvsp[(4) - (4)]); }
1942 break;
1943
1944 case 81:
1945
1946 { (yyval) = (yyvsp[(4) - (4)]); }
1947 break;
1948
1949 case 82:
1950
1951 { (yyval) = (yyvsp[(2) - (2)]); }
1952 break;
1953
1954 case 83:
1955
1956 { (yyval) = (yyvsp[(3) - (3)]); }
1957 break;
1958
1959 case 84:
1960
1961 { (yyval) = (yyvsp[(3) - (3)]); }
1962 break;
1963
1964 case 85:
1965
1966 { (yyval) = (yyvsp[(2) - (2)]); }
1967 break;
1968
1969 case 87:
1970
1971 { (yyval) = (yyvsp[(3) - (3)]); }
1972 break;
1973
1974 case 88:
1975
1976 { (yyval) = NULL; }
1977 break;
1978
1979 case 91:
1980
1981 { (yyval) = (yyvsp[(3) - (3)]); }
1982 break;
1983
1984 case 92:
1985
1986 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
1987 break;
1988
1989 case 93:
1990
1991 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
1992 break;
1993
1994 case 95:
1995
1996 { (yyval) = NULL; }
1997 break;
1998
1999 case 96:
2000
2001 { /* For version 2 checksums, we don't want to remember
2002 private parameter names. */
2003 remove_node((yyvsp[(1) - (1)]));
2004 (yyval) = (yyvsp[(1) - (1)]);
2005 }
2006 break;
2007
2008 case 97:
2009
2010 { remove_node((yyvsp[(1) - (1)]));
2011 (yyval) = (yyvsp[(1) - (1)]);
2012 }
2013 break;
2014
2015 case 98:
2016
2017 { (yyval) = (yyvsp[(4) - (4)]); }
2018 break;
2019
2020 case 99:
2021
2022 { (yyval) = (yyvsp[(4) - (4)]); }
2023 break;
2024
2025 case 100:
2026
2027 { (yyval) = (yyvsp[(2) - (2)]); }
2028 break;
2029
2030 case 101:
2031
2032 { (yyval) = (yyvsp[(3) - (3)]); }
2033 break;
2034
2035 case 102:
2036
2037 { (yyval) = (yyvsp[(3) - (3)]); }
2038 break;
2039
2040 case 103:
2041
2042 { struct string_list *decl = *(yyvsp[(2) - (3)]);
2043 *(yyvsp[(2) - (3)]) = NULL;
2044 add_symbol(current_name, SYM_NORMAL, decl, is_extern);
2045 (yyval) = (yyvsp[(3) - (3)]);
2046 }
2047 break;
2048
2049 case 104:
2050
2051 { (yyval) = NULL; }
2052 break;
2053
2054 case 106:
2055
2056 { remove_list((yyvsp[(2) - (2)]), &(*(yyvsp[(1) - (2)]))->next); (yyval) = (yyvsp[(2) - (2)]); }
2057 break;
2058
2059 case 107:
2060
2061 { (yyval) = (yyvsp[(3) - (3)]); }
2062 break;
2063
2064 case 108:
2065
2066 { (yyval) = (yyvsp[(3) - (3)]); }
2067 break;
2068
2069 case 109:
2070
2071 { (yyval) = NULL; }
2072 break;
2073
2074 case 112:
2075
2076 { (yyval) = (yyvsp[(2) - (2)]); }
2077 break;
2078
2079 case 113:
2080
2081 { (yyval) = (yyvsp[(3) - (3)]); }
2082 break;
2083
2084 case 114:
2085
2086 { (yyval) = (yyvsp[(2) - (2)]); }
2087 break;
2088
2089 case 115:
2090
2091 { (yyval) = NULL; }
2092 break;
2093
2094 case 118:
2095
2096 { (yyval) = (yyvsp[(3) - (3)]); }
2097 break;
2098
2099 case 119:
2100
2101 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
2102 break;
2103
2104 case 120:
2105
2106 { (yyval) = (yyvsp[(2) - (2)]); }
2107 break;
2108
2109 case 122:
2110
2111 { (yyval) = (yyvsp[(2) - (2)]); }
2112 break;
2113
2114 case 123:
2115
2116 { (yyval) = NULL; }
2117 break;
2118
2119 case 125:
2120
2121 { (yyval) = (yyvsp[(3) - (3)]); }
2122 break;
2123
2124 case 126:
2125
2126 { (yyval) = (yyvsp[(4) - (4)]); }
2127 break;
2128
2129 case 129:
2130
2131 {
2132 const char *name = strdup((*(yyvsp[(1) - (1)]))->string);
2133 add_symbol(name, SYM_ENUM_CONST, NULL, 0);
2134 }
2135 break;
2136
2137 case 130:
2138
2139 {
2140 const char *name = strdup((*(yyvsp[(1) - (3)]))->string);
2141 struct string_list *expr = copy_list_range(*(yyvsp[(3) - (3)]), *(yyvsp[(2) - (3)]));
2142 add_symbol(name, SYM_ENUM_CONST, expr, 0);
2143 }
2144 break;
2145
2146 case 131:
2147
2148 { (yyval) = (yyvsp[(2) - (2)]); }
2149 break;
2150
2151 case 132:
2152
2153 { (yyval) = NULL; }
2154 break;
2155
2156 case 134:
2157
2158 { export_symbol((*(yyvsp[(3) - (5)]))->string); (yyval) = (yyvsp[(5) - (5)]); }
2159 break;
2160
2161
2162
2163 default: break;
2164 }
2165 /* User semantic actions sometimes alter yychar, and that requires
2166 that yytoken be updated with the new translation. We take the
2167 approach of translating immediately before every use of yytoken.
2168 One alternative is translating here after every semantic action,
2169 but that translation would be missed if the semantic action invokes
2170 YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
2171 if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
2172 incorrect destructor might then be invoked immediately. In the
2173 case of YYERROR or YYBACKUP, subsequent parser actions might lead
2174 to an incorrect destructor call or verbose syntax error message
2175 before the lookahead is translated. */
2176 YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
2177
2178 YYPOPSTACK (yylen);
2179 yylen = 0;
2180 YY_STACK_PRINT (yyss, yyssp);
2181
2182 *++yyvsp = yyval;
2183
2184 /* Now `shift' the result of the reduction. Determine what state
2185 that goes to, based on the state we popped back to and the rule
2186 number reduced by. */
2187
2188 yyn = yyr1[yyn];
2189
2190 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
2191 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
2192 yystate = yytable[yystate];
2193 else
2194 yystate = yydefgoto[yyn - YYNTOKENS];
2195
2196 goto yynewstate;
2197
2198
2199/*------------------------------------.
2200| yyerrlab -- here on detecting error |
2201`------------------------------------*/
2202yyerrlab:
2203 /* Make sure we have latest lookahead translation. See comments at
2204 user semantic actions for why this is necessary. */
2205 yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
2206
2207 /* If not already recovering from an error, report this error. */
2208 if (!yyerrstatus)
2209 {
2210 ++yynerrs;
2211#if ! YYERROR_VERBOSE
2212 yyerror (YY_("syntax error"));
2213#else
2214# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
2215 yyssp, yytoken)
2216 {
2217 char const *yymsgp = YY_("syntax error");
2218 int yysyntax_error_status;
2219 yysyntax_error_status = YYSYNTAX_ERROR;
2220 if (yysyntax_error_status == 0)
2221 yymsgp = yymsg;
2222 else if (yysyntax_error_status == 1)
2223 {
2224 if (yymsg != yymsgbuf)
2225 YYSTACK_FREE (yymsg);
2226 yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
2227 if (!yymsg)
2228 {
2229 yymsg = yymsgbuf;
2230 yymsg_alloc = sizeof yymsgbuf;
2231 yysyntax_error_status = 2;
2232 }
2233 else
2234 {
2235 yysyntax_error_status = YYSYNTAX_ERROR;
2236 yymsgp = yymsg;
2237 }
2238 }
2239 yyerror (yymsgp);
2240 if (yysyntax_error_status == 2)
2241 goto yyexhaustedlab;
2242 }
2243# undef YYSYNTAX_ERROR
2244#endif
2245 }
2246
2247
2248
2249 if (yyerrstatus == 3)
2250 {
2251 /* If just tried and failed to reuse lookahead token after an
2252 error, discard it. */
2253
2254 if (yychar <= YYEOF)
2255 {
2256 /* Return failure if at end of input. */
2257 if (yychar == YYEOF)
2258 YYABORT;
2259 }
2260 else
2261 {
2262 yydestruct ("Error: discarding",
2263 yytoken, &yylval);
2264 yychar = YYEMPTY;
2265 }
2266 }
2267
2268 /* Else will try to reuse lookahead token after shifting the error
2269 token. */
2270 goto yyerrlab1;
2271
2272
2273/*---------------------------------------------------.
2274| yyerrorlab -- error raised explicitly by YYERROR. |
2275`---------------------------------------------------*/
2276yyerrorlab:
2277
2278 /* Pacify compilers like GCC when the user code never invokes
2279 YYERROR and the label yyerrorlab therefore never appears in user
2280 code. */
2281 if (/*CONSTCOND*/ 0)
2282 goto yyerrorlab;
2283
2284 /* Do not reclaim the symbols of the rule which action triggered
2285 this YYERROR. */
2286 YYPOPSTACK (yylen);
2287 yylen = 0;
2288 YY_STACK_PRINT (yyss, yyssp);
2289 yystate = *yyssp;
2290 goto yyerrlab1;
2291
2292
2293/*-------------------------------------------------------------.
2294| yyerrlab1 -- common code for both syntax error and YYERROR. |
2295`-------------------------------------------------------------*/
2296yyerrlab1:
2297 yyerrstatus = 3; /* Each real token shifted decrements this. */
2298
2299 for (;;)
2300 {
2301 yyn = yypact[yystate];
2302 if (!yypact_value_is_default (yyn))
2303 {
2304 yyn += YYTERROR;
2305 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
2306 {
2307 yyn = yytable[yyn];
2308 if (0 < yyn)
2309 break;
2310 }
2311 }
2312
2313 /* Pop the current state because it cannot handle the error token. */
2314 if (yyssp == yyss)
2315 YYABORT;
2316
2317
2318 yydestruct ("Error: popping",
2319 yystos[yystate], yyvsp);
2320 YYPOPSTACK (1);
2321 yystate = *yyssp;
2322 YY_STACK_PRINT (yyss, yyssp);
2323 }
2324
2325 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
2326 *++yyvsp = yylval;
2327 YY_IGNORE_MAYBE_UNINITIALIZED_END
2328
2329
2330 /* Shift the error token. */
2331 YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
2332
2333 yystate = yyn;
2334 goto yynewstate;
2335
2336
2337/*-------------------------------------.
2338| yyacceptlab -- YYACCEPT comes here. |
2339`-------------------------------------*/
2340yyacceptlab:
2341 yyresult = 0;
2342 goto yyreturn;
2343
2344/*-----------------------------------.
2345| yyabortlab -- YYABORT comes here. |
2346`-----------------------------------*/
2347yyabortlab:
2348 yyresult = 1;
2349 goto yyreturn;
2350
2351#if !defined yyoverflow || YYERROR_VERBOSE
2352/*-------------------------------------------------.
2353| yyexhaustedlab -- memory exhaustion comes here. |
2354`-------------------------------------------------*/
2355yyexhaustedlab:
2356 yyerror (YY_("memory exhausted"));
2357 yyresult = 2;
2358 /* Fall through. */
2359#endif
2360
2361yyreturn:
2362 if (yychar != YYEMPTY)
2363 {
2364 /* Make sure we have latest lookahead translation. See comments at
2365 user semantic actions for why this is necessary. */
2366 yytoken = YYTRANSLATE (yychar);
2367 yydestruct ("Cleanup: discarding lookahead",
2368 yytoken, &yylval);
2369 }
2370 /* Do not reclaim the symbols of the rule which action triggered
2371 this YYABORT or YYACCEPT. */
2372 YYPOPSTACK (yylen);
2373 YY_STACK_PRINT (yyss, yyssp);
2374 while (yyssp != yyss)
2375 {
2376 yydestruct ("Cleanup: popping",
2377 yystos[*yyssp], yyvsp);
2378 YYPOPSTACK (1);
2379 }
2380#ifndef yyoverflow
2381 if (yyss != yyssa)
2382 YYSTACK_FREE (yyss);
2383#endif
2384#if YYERROR_VERBOSE
2385 if (yymsg != yymsgbuf)
2386 YYSTACK_FREE (yymsg);
2387#endif
2388 /* Make sure YYID is used. */
2389 return YYID (yyresult);
2390}
2391
2392
2393
2394
2395
2396static void
2397yyerror(const char *e)
2398{
2399 error_with_pos("%s", e);
2400}
1/* A Bison parser, made by GNU Bison 2.5.1. */
2
3/* Bison implementation for Yacc-like parsers in C
4
5 Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20/* As a special exception, you may create a larger work that contains
21 part or all of the Bison parser skeleton and distribute that work
22 under terms of your choice, so long as that work isn't itself a
23 parser generator using the skeleton or a modified version thereof
24 as a parser skeleton. Alternatively, if you modify or redistribute
25 the parser skeleton itself, you may (at your option) remove this
26 special exception, which will cause the skeleton and the resulting
27 Bison output files to be licensed under the GNU General Public
28 License without this special exception.
29
30 This special exception was added by the Free Software Foundation in
31 version 2.2 of Bison. */
32
33/* C LALR(1) parser skeleton written by Richard Stallman, by
34 simplifying the original so-called "semantic" parser. */
35
36/* All symbols defined below should begin with yy or YY, to avoid
37 infringing on user name space. This should be done even for local
38 variables, as they might otherwise be expanded by user macros.
39 There are some unavoidable exceptions within include files to
40 define necessary library symbols; they are noted "INFRINGES ON
41 USER NAME SPACE" below. */
42
43/* Identify Bison output. */
44#define YYBISON 1
45
46/* Bison version. */
47#define YYBISON_VERSION "2.5.1"
48
49/* Skeleton name. */
50#define YYSKELETON_NAME "yacc.c"
51
52/* Pure parsers. */
53#define YYPURE 0
54
55/* Push parsers. */
56#define YYPUSH 0
57
58/* Pull parsers. */
59#define YYPULL 1
60
61/* Using locations. */
62#define YYLSP_NEEDED 0
63
64
65
66/* Copy the first part of user declarations. */
67
68
69
70#include <assert.h>
71#include <stdlib.h>
72#include <string.h>
73#include "genksyms.h"
74
75static int is_typedef;
76static int is_extern;
77static char *current_name;
78static struct string_list *decl_spec;
79
80static void yyerror(const char *);
81
82static inline void
83remove_node(struct string_list **p)
84{
85 struct string_list *node = *p;
86 *p = node->next;
87 free_node(node);
88}
89
90static inline void
91remove_list(struct string_list **pb, struct string_list **pe)
92{
93 struct string_list *b = *pb, *e = *pe;
94 *pb = e;
95 free_list(b, e);
96}
97
98/* Record definition of a struct/union/enum */
99static void record_compound(struct string_list **keyw,
100 struct string_list **ident,
101 struct string_list **body,
102 enum symbol_type type)
103{
104 struct string_list *b = *body, *i = *ident, *r;
105
106 if (i->in_source_file) {
107 remove_node(keyw);
108 (*ident)->tag = type;
109 remove_list(body, ident);
110 return;
111 }
112 r = copy_node(i); r->tag = type;
113 r->next = (*keyw)->next; *body = r; (*keyw)->next = NULL;
114 add_symbol(i->string, type, b, is_extern);
115}
116
117
118
119
120# ifndef YY_NULL
121# if defined __cplusplus && 201103L <= __cplusplus
122# define YY_NULL nullptr
123# else
124# define YY_NULL 0
125# endif
126# endif
127
128/* Enabling traces. */
129#ifndef YYDEBUG
130# define YYDEBUG 1
131#endif
132
133/* Enabling verbose error messages. */
134#ifdef YYERROR_VERBOSE
135# undef YYERROR_VERBOSE
136# define YYERROR_VERBOSE 1
137#else
138# define YYERROR_VERBOSE 0
139#endif
140
141/* Enabling the token table. */
142#ifndef YYTOKEN_TABLE
143# define YYTOKEN_TABLE 0
144#endif
145
146
147/* Tokens. */
148#ifndef YYTOKENTYPE
149# define YYTOKENTYPE
150 /* Put the tokens into the symbol table, so that GDB and other debuggers
151 know about them. */
152 enum yytokentype {
153 ASM_KEYW = 258,
154 ATTRIBUTE_KEYW = 259,
155 AUTO_KEYW = 260,
156 BOOL_KEYW = 261,
157 CHAR_KEYW = 262,
158 CONST_KEYW = 263,
159 DOUBLE_KEYW = 264,
160 ENUM_KEYW = 265,
161 EXTERN_KEYW = 266,
162 EXTENSION_KEYW = 267,
163 FLOAT_KEYW = 268,
164 INLINE_KEYW = 269,
165 INT_KEYW = 270,
166 LONG_KEYW = 271,
167 REGISTER_KEYW = 272,
168 RESTRICT_KEYW = 273,
169 SHORT_KEYW = 274,
170 SIGNED_KEYW = 275,
171 STATIC_KEYW = 276,
172 STRUCT_KEYW = 277,
173 TYPEDEF_KEYW = 278,
174 UNION_KEYW = 279,
175 UNSIGNED_KEYW = 280,
176 VOID_KEYW = 281,
177 VOLATILE_KEYW = 282,
178 TYPEOF_KEYW = 283,
179 EXPORT_SYMBOL_KEYW = 284,
180 ASM_PHRASE = 285,
181 ATTRIBUTE_PHRASE = 286,
182 TYPEOF_PHRASE = 287,
183 BRACE_PHRASE = 288,
184 BRACKET_PHRASE = 289,
185 EXPRESSION_PHRASE = 290,
186 CHAR = 291,
187 DOTS = 292,
188 IDENT = 293,
189 INT = 294,
190 REAL = 295,
191 STRING = 296,
192 TYPE = 297,
193 OTHER = 298,
194 FILENAME = 299
195 };
196#endif
197
198
199
200#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
201typedef int YYSTYPE;
202# define YYSTYPE_IS_TRIVIAL 1
203# define yystype YYSTYPE /* obsolescent; will be withdrawn */
204# define YYSTYPE_IS_DECLARED 1
205#endif
206
207
208/* Copy the second part of user declarations. */
209
210
211
212#ifdef short
213# undef short
214#endif
215
216#ifdef YYTYPE_UINT8
217typedef YYTYPE_UINT8 yytype_uint8;
218#else
219typedef unsigned char yytype_uint8;
220#endif
221
222#ifdef YYTYPE_INT8
223typedef YYTYPE_INT8 yytype_int8;
224#elif (defined __STDC__ || defined __C99__FUNC__ \
225 || defined __cplusplus || defined _MSC_VER)
226typedef signed char yytype_int8;
227#else
228typedef short int yytype_int8;
229#endif
230
231#ifdef YYTYPE_UINT16
232typedef YYTYPE_UINT16 yytype_uint16;
233#else
234typedef unsigned short int yytype_uint16;
235#endif
236
237#ifdef YYTYPE_INT16
238typedef YYTYPE_INT16 yytype_int16;
239#else
240typedef short int yytype_int16;
241#endif
242
243#ifndef YYSIZE_T
244# ifdef __SIZE_TYPE__
245# define YYSIZE_T __SIZE_TYPE__
246# elif defined size_t
247# define YYSIZE_T size_t
248# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
249 || defined __cplusplus || defined _MSC_VER)
250# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
251# define YYSIZE_T size_t
252# else
253# define YYSIZE_T unsigned int
254# endif
255#endif
256
257#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
258
259#ifndef YY_
260# if defined YYENABLE_NLS && YYENABLE_NLS
261# if ENABLE_NLS
262# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
263# define YY_(msgid) dgettext ("bison-runtime", msgid)
264# endif
265# endif
266# ifndef YY_
267# define YY_(msgid) msgid
268# endif
269#endif
270
271/* Suppress unused-variable warnings by "using" E. */
272#if ! defined lint || defined __GNUC__
273# define YYUSE(e) ((void) (e))
274#else
275# define YYUSE(e) /* empty */
276#endif
277
278/* Identity function, used to suppress warnings about constant conditions. */
279#ifndef lint
280# define YYID(n) (n)
281#else
282#if (defined __STDC__ || defined __C99__FUNC__ \
283 || defined __cplusplus || defined _MSC_VER)
284static int
285YYID (int yyi)
286#else
287static int
288YYID (yyi)
289 int yyi;
290#endif
291{
292 return yyi;
293}
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# elif defined __BUILTIN_VA_ARG_INCR
305# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
306# elif defined _AIX
307# define YYSTACK_ALLOC __alloca
308# elif defined _MSC_VER
309# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
310# define alloca _alloca
311# else
312# define YYSTACK_ALLOC alloca
313# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
314 || defined __cplusplus || defined _MSC_VER)
315# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
316 /* Use EXIT_SUCCESS as a witness for stdlib.h. */
317# ifndef EXIT_SUCCESS
318# define EXIT_SUCCESS 0
319# endif
320# endif
321# endif
322# endif
323# endif
324
325# ifdef YYSTACK_ALLOC
326 /* Pacify GCC's `empty if-body' warning. */
327# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
328# ifndef YYSTACK_ALLOC_MAXIMUM
329 /* The OS might guarantee only one guard page at the bottom of the stack,
330 and a page size can be as small as 4096 bytes. So we cannot safely
331 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
332 to allow for a few compiler-allocated temporary stack slots. */
333# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
334# endif
335# else
336# define YYSTACK_ALLOC YYMALLOC
337# define YYSTACK_FREE YYFREE
338# ifndef YYSTACK_ALLOC_MAXIMUM
339# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
340# endif
341# if (defined __cplusplus && ! defined EXIT_SUCCESS \
342 && ! ((defined YYMALLOC || defined malloc) \
343 && (defined YYFREE || defined free)))
344# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
345# ifndef EXIT_SUCCESS
346# define EXIT_SUCCESS 0
347# endif
348# endif
349# ifndef YYMALLOC
350# define YYMALLOC malloc
351# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
352 || defined __cplusplus || defined _MSC_VER)
353void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
354# endif
355# endif
356# ifndef YYFREE
357# define YYFREE free
358# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
359 || defined __cplusplus || defined _MSC_VER)
360void free (void *); /* INFRINGES ON USER NAME SPACE */
361# endif
362# endif
363# endif
364#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
365
366
367#if (! defined yyoverflow \
368 && (! defined __cplusplus \
369 || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
370
371/* A type that is properly aligned for any stack member. */
372union yyalloc
373{
374 yytype_int16 yyss_alloc;
375 YYSTYPE yyvs_alloc;
376};
377
378/* The size of the maximum gap between one aligned stack and the next. */
379# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
380
381/* The size of an array large to enough to hold all stacks, each with
382 N elements. */
383# define YYSTACK_BYTES(N) \
384 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
385 + YYSTACK_GAP_MAXIMUM)
386
387# define YYCOPY_NEEDED 1
388
389/* Relocate STACK from its old location to the new one. The
390 local variables YYSIZE and YYSTACKSIZE give the old and new number of
391 elements in the stack, and YYPTR gives the new location of the
392 stack. Advance YYPTR to a properly aligned location for the next
393 stack. */
394# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
395 do \
396 { \
397 YYSIZE_T yynewbytes; \
398 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
399 Stack = &yyptr->Stack_alloc; \
400 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
401 yyptr += yynewbytes / sizeof (*yyptr); \
402 } \
403 while (YYID (0))
404
405#endif
406
407#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
408/* Copy COUNT objects from SRC to DST. The source and destination do
409 not overlap. */
410# ifndef YYCOPY
411# if defined __GNUC__ && 1 < __GNUC__
412# define YYCOPY(Dst, Src, Count) \
413 __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
414# else
415# define YYCOPY(Dst, Src, Count) \
416 do \
417 { \
418 YYSIZE_T yyi; \
419 for (yyi = 0; yyi < (Count); yyi++) \
420 (Dst)[yyi] = (Src)[yyi]; \
421 } \
422 while (YYID (0))
423# endif
424# endif
425#endif /* !YYCOPY_NEEDED */
426
427/* YYFINAL -- State number of the termination state. */
428#define YYFINAL 4
429/* YYLAST -- Last index in YYTABLE. */
430#define YYLAST 514
431
432/* YYNTOKENS -- Number of terminals. */
433#define YYNTOKENS 54
434/* YYNNTS -- Number of nonterminals. */
435#define YYNNTS 49
436/* YYNRULES -- Number of rules. */
437#define YYNRULES 132
438/* YYNRULES -- Number of states. */
439#define YYNSTATES 187
440
441/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
442#define YYUNDEFTOK 2
443#define YYMAXUTOK 299
444
445#define YYTRANSLATE(YYX) \
446 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
447
448/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
449static const yytype_uint8 yytranslate[] =
450{
451 0, 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 48, 49, 50, 2, 47, 2, 2, 2, 2, 2,
456 2, 2, 2, 2, 2, 2, 2, 2, 53, 45,
457 2, 51, 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, 52, 2, 46, 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, 2, 2, 2, 2,
468 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
469 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
470 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
471 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
472 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
473 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
474 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
475 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
476 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
477 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
478 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
479 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
480 35, 36, 37, 38, 39, 40, 41, 42, 43, 44
481};
482
483#if YYDEBUG
484/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
485 YYRHS. */
486static const yytype_uint16 yyprhs[] =
487{
488 0, 0, 3, 5, 8, 9, 12, 13, 18, 19,
489 23, 25, 27, 29, 31, 34, 37, 41, 42, 44,
490 46, 50, 55, 56, 58, 60, 63, 65, 67, 69,
491 71, 73, 75, 77, 79, 81, 86, 88, 91, 94,
492 97, 101, 105, 109, 112, 115, 118, 120, 122, 124,
493 126, 128, 130, 132, 134, 136, 138, 140, 143, 144,
494 146, 148, 151, 153, 155, 157, 159, 162, 164, 166,
495 171, 176, 179, 183, 187, 190, 192, 194, 196, 201,
496 206, 209, 213, 217, 220, 222, 226, 227, 229, 231,
497 235, 238, 241, 243, 244, 246, 248, 253, 258, 261,
498 265, 269, 273, 274, 276, 279, 283, 287, 288, 290,
499 292, 295, 299, 302, 303, 305, 307, 311, 314, 317,
500 319, 322, 323, 326, 330, 335, 337, 341, 343, 347,
501 350, 351, 353
502};
503
504/* YYRHS -- A `-1'-separated list of the rules' RHS. */
505static const yytype_int8 yyrhs[] =
506{
507 55, 0, -1, 56, -1, 55, 56, -1, -1, 57,
508 58, -1, -1, 12, 23, 59, 61, -1, -1, 23,
509 60, 61, -1, 61, -1, 85, -1, 100, -1, 102,
510 -1, 1, 45, -1, 1, 46, -1, 65, 62, 45,
511 -1, -1, 63, -1, 64, -1, 63, 47, 64, -1,
512 75, 101, 96, 86, -1, -1, 66, -1, 67, -1,
513 66, 67, -1, 68, -1, 69, -1, 5, -1, 17,
514 -1, 21, -1, 11, -1, 14, -1, 70, -1, 74,
515 -1, 28, 48, 82, 49, -1, 32, -1, 22, 38,
516 -1, 24, 38, -1, 10, 38, -1, 22, 38, 88,
517 -1, 24, 38, 88, -1, 10, 38, 97, -1, 10,
518 97, -1, 22, 88, -1, 24, 88, -1, 7, -1,
519 19, -1, 15, -1, 16, -1, 20, -1, 25, -1,
520 13, -1, 9, -1, 26, -1, 6, -1, 42, -1,
521 50, 72, -1, -1, 73, -1, 74, -1, 73, 74,
522 -1, 8, -1, 27, -1, 31, -1, 18, -1, 71,
523 75, -1, 76, -1, 38, -1, 76, 48, 79, 49,
524 -1, 76, 48, 1, 49, -1, 76, 34, -1, 48,
525 75, 49, -1, 48, 1, 49, -1, 71, 77, -1,
526 78, -1, 38, -1, 42, -1, 78, 48, 79, 49,
527 -1, 78, 48, 1, 49, -1, 78, 34, -1, 48,
528 77, 49, -1, 48, 1, 49, -1, 80, 37, -1,
529 80, -1, 81, 47, 37, -1, -1, 81, -1, 82,
530 -1, 81, 47, 82, -1, 66, 83, -1, 71, 83,
531 -1, 84, -1, -1, 38, -1, 42, -1, 84, 48,
532 79, 49, -1, 84, 48, 1, 49, -1, 84, 34,
533 -1, 48, 83, 49, -1, 48, 1, 49, -1, 65,
534 75, 33, -1, -1, 87, -1, 51, 35, -1, 52,
535 89, 46, -1, 52, 1, 46, -1, -1, 90, -1,
536 91, -1, 90, 91, -1, 65, 92, 45, -1, 1,
537 45, -1, -1, 93, -1, 94, -1, 93, 47, 94,
538 -1, 77, 96, -1, 38, 95, -1, 95, -1, 53,
539 35, -1, -1, 96, 31, -1, 52, 98, 46, -1,
540 52, 98, 47, 46, -1, 99, -1, 98, 47, 99,
541 -1, 38, -1, 38, 51, 35, -1, 30, 45, -1,
542 -1, 30, -1, 29, 48, 38, 49, 45, -1
543};
544
545/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
546static const yytype_uint16 yyrline[] =
547{
548 0, 124, 124, 125, 129, 129, 135, 135, 137, 137,
549 139, 140, 141, 142, 143, 144, 148, 162, 163, 167,
550 175, 188, 194, 195, 199, 200, 204, 210, 214, 215,
551 216, 217, 218, 222, 223, 224, 225, 229, 231, 233,
552 237, 239, 241, 246, 249, 250, 254, 255, 256, 257,
553 258, 259, 260, 261, 262, 263, 264, 268, 273, 274,
554 278, 279, 283, 283, 283, 284, 292, 293, 297, 306,
555 308, 310, 312, 314, 321, 322, 326, 327, 328, 330,
556 332, 334, 336, 341, 342, 343, 347, 348, 352, 353,
557 358, 363, 365, 369, 370, 378, 382, 384, 386, 388,
558 390, 395, 404, 405, 410, 415, 416, 420, 421, 425,
559 426, 430, 432, 437, 438, 442, 443, 447, 448, 449,
560 453, 457, 458, 462, 463, 467, 468, 471, 476, 484,
561 488, 489, 493
562};
563#endif
564
565#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
566/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
567 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
568static const char *const yytname[] =
569{
570 "$end", "error", "$undefined", "ASM_KEYW", "ATTRIBUTE_KEYW",
571 "AUTO_KEYW", "BOOL_KEYW", "CHAR_KEYW", "CONST_KEYW", "DOUBLE_KEYW",
572 "ENUM_KEYW", "EXTERN_KEYW", "EXTENSION_KEYW", "FLOAT_KEYW",
573 "INLINE_KEYW", "INT_KEYW", "LONG_KEYW", "REGISTER_KEYW", "RESTRICT_KEYW",
574 "SHORT_KEYW", "SIGNED_KEYW", "STATIC_KEYW", "STRUCT_KEYW",
575 "TYPEDEF_KEYW", "UNION_KEYW", "UNSIGNED_KEYW", "VOID_KEYW",
576 "VOLATILE_KEYW", "TYPEOF_KEYW", "EXPORT_SYMBOL_KEYW", "ASM_PHRASE",
577 "ATTRIBUTE_PHRASE", "TYPEOF_PHRASE", "BRACE_PHRASE", "BRACKET_PHRASE",
578 "EXPRESSION_PHRASE", "CHAR", "DOTS", "IDENT", "INT", "REAL", "STRING",
579 "TYPE", "OTHER", "FILENAME", "';'", "'}'", "','", "'('", "')'", "'*'",
580 "'='", "'{'", "':'", "$accept", "declaration_seq", "declaration", "$@1",
581 "declaration1", "$@2", "$@3", "simple_declaration",
582 "init_declarator_list_opt", "init_declarator_list", "init_declarator",
583 "decl_specifier_seq_opt", "decl_specifier_seq", "decl_specifier",
584 "storage_class_specifier", "type_specifier", "simple_type_specifier",
585 "ptr_operator", "cvar_qualifier_seq_opt", "cvar_qualifier_seq",
586 "cvar_qualifier", "declarator", "direct_declarator", "nested_declarator",
587 "direct_nested_declarator", "parameter_declaration_clause",
588 "parameter_declaration_list_opt", "parameter_declaration_list",
589 "parameter_declaration", "m_abstract_declarator",
590 "direct_m_abstract_declarator", "function_definition", "initializer_opt",
591 "initializer", "class_body", "member_specification_opt",
592 "member_specification", "member_declaration",
593 "member_declarator_list_opt", "member_declarator_list",
594 "member_declarator", "member_bitfield_declarator", "attribute_opt",
595 "enum_body", "enumerator_list", "enumerator", "asm_definition",
596 "asm_phrase_opt", "export_definition", YY_NULL
597};
598#endif
599
600# ifdef YYPRINT
601/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
602 token YYLEX-NUM. */
603static const yytype_uint16 yytoknum[] =
604{
605 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
606 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
607 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
608 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
609 295, 296, 297, 298, 299, 59, 125, 44, 40, 41,
610 42, 61, 123, 58
611};
612# endif
613
614/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
615static const yytype_uint8 yyr1[] =
616{
617 0, 54, 55, 55, 57, 56, 59, 58, 60, 58,
618 58, 58, 58, 58, 58, 58, 61, 62, 62, 63,
619 63, 64, 65, 65, 66, 66, 67, 67, 68, 68,
620 68, 68, 68, 69, 69, 69, 69, 69, 69, 69,
621 69, 69, 69, 69, 69, 69, 70, 70, 70, 70,
622 70, 70, 70, 70, 70, 70, 70, 71, 72, 72,
623 73, 73, 74, 74, 74, 74, 75, 75, 76, 76,
624 76, 76, 76, 76, 77, 77, 78, 78, 78, 78,
625 78, 78, 78, 79, 79, 79, 80, 80, 81, 81,
626 82, 83, 83, 84, 84, 84, 84, 84, 84, 84,
627 84, 85, 86, 86, 87, 88, 88, 89, 89, 90,
628 90, 91, 91, 92, 92, 93, 93, 94, 94, 94,
629 95, 96, 96, 97, 97, 98, 98, 99, 99, 100,
630 101, 101, 102
631};
632
633/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
634static const yytype_uint8 yyr2[] =
635{
636 0, 2, 1, 2, 0, 2, 0, 4, 0, 3,
637 1, 1, 1, 1, 2, 2, 3, 0, 1, 1,
638 3, 4, 0, 1, 1, 2, 1, 1, 1, 1,
639 1, 1, 1, 1, 1, 4, 1, 2, 2, 2,
640 3, 3, 3, 2, 2, 2, 1, 1, 1, 1,
641 1, 1, 1, 1, 1, 1, 1, 2, 0, 1,
642 1, 2, 1, 1, 1, 1, 2, 1, 1, 4,
643 4, 2, 3, 3, 2, 1, 1, 1, 4, 4,
644 2, 3, 3, 2, 1, 3, 0, 1, 1, 3,
645 2, 2, 1, 0, 1, 1, 4, 4, 2, 3,
646 3, 3, 0, 1, 2, 3, 3, 0, 1, 1,
647 2, 3, 2, 0, 1, 1, 3, 2, 2, 1,
648 2, 0, 2, 3, 4, 1, 3, 1, 3, 2,
649 0, 1, 5
650};
651
652/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
653 Performed when YYTABLE doesn't specify something else to do. Zero
654 means the default is an error. */
655static const yytype_uint8 yydefact[] =
656{
657 4, 4, 2, 0, 1, 3, 0, 28, 55, 46,
658 62, 53, 0, 31, 0, 52, 32, 48, 49, 29,
659 65, 47, 50, 30, 0, 8, 0, 51, 54, 63,
660 0, 0, 0, 64, 36, 56, 5, 10, 17, 23,
661 24, 26, 27, 33, 34, 11, 12, 13, 14, 15,
662 39, 0, 43, 6, 37, 0, 44, 22, 38, 45,
663 0, 0, 129, 68, 0, 58, 0, 18, 19, 0,
664 130, 67, 25, 42, 127, 0, 125, 22, 40, 0,
665 113, 0, 0, 109, 9, 17, 41, 93, 0, 0,
666 0, 0, 57, 59, 60, 16, 0, 66, 131, 101,
667 121, 71, 0, 0, 123, 0, 7, 112, 106, 76,
668 77, 0, 0, 0, 121, 75, 0, 114, 115, 119,
669 105, 0, 110, 130, 94, 56, 0, 93, 90, 92,
670 35, 0, 73, 72, 61, 20, 102, 0, 0, 84,
671 87, 88, 128, 124, 126, 118, 0, 76, 0, 120,
672 74, 117, 80, 0, 111, 0, 0, 95, 0, 91,
673 98, 0, 132, 122, 0, 21, 103, 70, 69, 83,
674 0, 82, 81, 0, 0, 116, 100, 99, 0, 0,
675 104, 85, 89, 79, 78, 97, 96
676};
677
678/* YYDEFGOTO[NTERM-NUM]. */
679static const yytype_int16 yydefgoto[] =
680{
681 -1, 1, 2, 3, 36, 77, 57, 37, 66, 67,
682 68, 80, 39, 40, 41, 42, 43, 69, 92, 93,
683 44, 123, 71, 114, 115, 138, 139, 140, 141, 128,
684 129, 45, 165, 166, 56, 81, 82, 83, 116, 117,
685 118, 119, 136, 52, 75, 76, 46, 100, 47
686};
687
688/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
689 STATE-NUM. */
690#define YYPACT_NINF -140
691static const yytype_int16 yypact[] =
692{
693 -140, 29, -140, 207, -140, -140, 40, -140, -140, -140,
694 -140, -140, -27, -140, 44, -140, -140, -140, -140, -140,
695 -140, -140, -140, -140, -22, -140, -18, -140, -140, -140,
696 -9, 22, 28, -140, -140, -140, -140, -140, 42, 472,
697 -140, -140, -140, -140, -140, -140, -140, -140, -140, -140,
698 46, 43, -140, -140, 47, 107, -140, 472, 47, -140,
699 472, 62, -140, -140, 16, -3, 57, 56, -140, 42,
700 35, -11, -140, -140, 53, 48, -140, 472, -140, 51,
701 21, 59, 157, -140, -140, 42, -140, 388, 58, 60,
702 70, 81, -140, -3, -140, -140, 42, -140, -140, -140,
703 -140, -140, 253, 71, -140, -20, -140, -140, -140, 83,
704 -140, 5, 102, 34, -140, 12, 95, 94, -140, -140,
705 -140, 97, -140, 113, -140, -140, 2, 41, -140, 27,
706 -140, 99, -140, -140, -140, -140, -24, 98, 101, 109,
707 104, -140, -140, -140, -140, -140, 105, -140, 110, -140,
708 -140, 117, -140, 298, -140, 21, 112, -140, 120, -140,
709 -140, 343, -140, -140, 121, -140, -140, -140, -140, -140,
710 434, -140, -140, 131, 137, -140, -140, -140, 138, 141,
711 -140, -140, -140, -140, -140, -140, -140
712};
713
714/* YYPGOTO[NTERM-NUM]. */
715static const yytype_int16 yypgoto[] =
716{
717 -140, -140, 190, -140, -140, -140, -140, -45, -140, -140,
718 96, 1, -60, -31, -140, -140, -140, -78, -140, -140,
719 -55, -7, -140, -92, -140, -139, -140, -140, -59, -39,
720 -140, -140, -140, -140, -13, -140, -140, 111, -140, -140,
721 39, 87, 84, 147, -140, 106, -140, -140, -140
722};
723
724/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
725 positive, shift that token. If negative, reduce the rule which
726 number is the opposite. If YYTABLE_NINF, syntax error. */
727#define YYTABLE_NINF -109
728static const yytype_int16 yytable[] =
729{
730 87, 88, 113, 156, 38, 10, 146, 163, 72, 127,
731 94, 50, 84, 59, 174, 20, 54, 90, 74, 148,
732 58, 150, 179, 101, 29, 51, 143, 164, 33, 4,
733 55, 70, 106, 113, 55, 113, -93, 102, 134, 60,
734 124, 78, 87, 147, 157, 86, 152, 110, 127, 127,
735 126, -93, 65, 111, 63, 65, 72, 91, 85, 109,
736 153, 160, 97, 110, 64, 98, 65, 53, 99, 111,
737 61, 65, 147, 62, 112, 161, 110, 113, 85, 124,
738 63, 74, 111, 157, 65, 48, 49, 158, 159, 126,
739 64, 65, 65, 87, 104, 105, 107, 108, 51, 55,
740 89, 87, 95, 96, 103, 120, 142, 130, 79, 131,
741 87, 182, 7, 8, 9, 10, 11, 12, 13, 132,
742 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
743 133, 26, 27, 28, 29, 30, 112, 149, 33, 34,
744 154, 155, 107, 98, 162, -22, 169, 167, 163, 35,
745 168, 170, -22, -107, 171, -22, 180, -22, 121, 172,
746 -22, 176, 7, 8, 9, 10, 11, 12, 13, 177,
747 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
748 183, 26, 27, 28, 29, 30, 184, 185, 33, 34,
749 186, 5, 135, 122, 175, -22, 145, 73, 151, 35,
750 0, 0, -22, -108, 0, -22, 0, -22, 6, 0,
751 -22, 144, 7, 8, 9, 10, 11, 12, 13, 14,
752 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
753 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
754 0, 0, 0, 0, 0, -22, 0, 0, 0, 35,
755 0, 0, -22, 0, 137, -22, 0, -22, 7, 8,
756 9, 10, 11, 12, 13, 0, 15, 16, 17, 18,
757 19, 20, 21, 22, 23, 24, 0, 26, 27, 28,
758 29, 30, 0, 0, 33, 34, 0, 0, 0, 0,
759 -86, 0, 0, 0, 0, 35, 0, 0, 0, 173,
760 0, 0, -86, 7, 8, 9, 10, 11, 12, 13,
761 0, 15, 16, 17, 18, 19, 20, 21, 22, 23,
762 24, 0, 26, 27, 28, 29, 30, 0, 0, 33,
763 34, 0, 0, 0, 0, -86, 0, 0, 0, 0,
764 35, 0, 0, 0, 178, 0, 0, -86, 7, 8,
765 9, 10, 11, 12, 13, 0, 15, 16, 17, 18,
766 19, 20, 21, 22, 23, 24, 0, 26, 27, 28,
767 29, 30, 0, 0, 33, 34, 0, 0, 0, 0,
768 -86, 0, 0, 0, 0, 35, 0, 0, 0, 0,
769 0, 0, -86, 7, 8, 9, 10, 11, 12, 13,
770 0, 15, 16, 17, 18, 19, 20, 21, 22, 23,
771 24, 0, 26, 27, 28, 29, 30, 0, 0, 33,
772 34, 0, 0, 0, 0, 0, 124, 0, 0, 0,
773 125, 0, 0, 0, 0, 0, 126, 0, 65, 7,
774 8, 9, 10, 11, 12, 13, 0, 15, 16, 17,
775 18, 19, 20, 21, 22, 23, 24, 0, 26, 27,
776 28, 29, 30, 0, 0, 33, 34, 0, 0, 0,
777 0, 181, 0, 0, 0, 0, 35, 7, 8, 9,
778 10, 11, 12, 13, 0, 15, 16, 17, 18, 19,
779 20, 21, 22, 23, 24, 0, 26, 27, 28, 29,
780 30, 0, 0, 33, 34, 0, 0, 0, 0, 0,
781 0, 0, 0, 0, 35
782};
783
784#define yypact_value_is_default(yystate) \
785 ((yystate) == (-140))
786
787#define yytable_value_is_error(yytable_value) \
788 YYID (0)
789
790static const yytype_int16 yycheck[] =
791{
792 60, 60, 80, 1, 3, 8, 1, 31, 39, 87,
793 65, 38, 57, 26, 153, 18, 38, 1, 38, 111,
794 38, 113, 161, 34, 27, 52, 46, 51, 31, 0,
795 52, 38, 77, 111, 52, 113, 34, 48, 93, 48,
796 38, 54, 102, 38, 42, 58, 34, 42, 126, 127,
797 48, 49, 50, 48, 38, 50, 87, 64, 57, 38,
798 48, 34, 69, 42, 48, 30, 50, 23, 33, 48,
799 48, 50, 38, 45, 53, 48, 42, 155, 77, 38,
800 38, 38, 48, 42, 50, 45, 46, 126, 127, 48,
801 48, 50, 50, 153, 46, 47, 45, 46, 52, 52,
802 38, 161, 45, 47, 51, 46, 35, 49, 1, 49,
803 170, 170, 5, 6, 7, 8, 9, 10, 11, 49,
804 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
805 49, 24, 25, 26, 27, 28, 53, 35, 31, 32,
806 45, 47, 45, 30, 45, 38, 37, 49, 31, 42,
807 49, 47, 45, 46, 49, 48, 35, 50, 1, 49,
808 53, 49, 5, 6, 7, 8, 9, 10, 11, 49,
809 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
810 49, 24, 25, 26, 27, 28, 49, 49, 31, 32,
811 49, 1, 96, 82, 155, 38, 109, 50, 114, 42,
812 -1, -1, 45, 46, -1, 48, -1, 50, 1, -1,
813 53, 105, 5, 6, 7, 8, 9, 10, 11, 12,
814 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
815 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
816 -1, -1, -1, -1, -1, 38, -1, -1, -1, 42,
817 -1, -1, 45, -1, 1, 48, -1, 50, 5, 6,
818 7, 8, 9, 10, 11, -1, 13, 14, 15, 16,
819 17, 18, 19, 20, 21, 22, -1, 24, 25, 26,
820 27, 28, -1, -1, 31, 32, -1, -1, -1, -1,
821 37, -1, -1, -1, -1, 42, -1, -1, -1, 1,
822 -1, -1, 49, 5, 6, 7, 8, 9, 10, 11,
823 -1, 13, 14, 15, 16, 17, 18, 19, 20, 21,
824 22, -1, 24, 25, 26, 27, 28, -1, -1, 31,
825 32, -1, -1, -1, -1, 37, -1, -1, -1, -1,
826 42, -1, -1, -1, 1, -1, -1, 49, 5, 6,
827 7, 8, 9, 10, 11, -1, 13, 14, 15, 16,
828 17, 18, 19, 20, 21, 22, -1, 24, 25, 26,
829 27, 28, -1, -1, 31, 32, -1, -1, -1, -1,
830 37, -1, -1, -1, -1, 42, -1, -1, -1, -1,
831 -1, -1, 49, 5, 6, 7, 8, 9, 10, 11,
832 -1, 13, 14, 15, 16, 17, 18, 19, 20, 21,
833 22, -1, 24, 25, 26, 27, 28, -1, -1, 31,
834 32, -1, -1, -1, -1, -1, 38, -1, -1, -1,
835 42, -1, -1, -1, -1, -1, 48, -1, 50, 5,
836 6, 7, 8, 9, 10, 11, -1, 13, 14, 15,
837 16, 17, 18, 19, 20, 21, 22, -1, 24, 25,
838 26, 27, 28, -1, -1, 31, 32, -1, -1, -1,
839 -1, 37, -1, -1, -1, -1, 42, 5, 6, 7,
840 8, 9, 10, 11, -1, 13, 14, 15, 16, 17,
841 18, 19, 20, 21, 22, -1, 24, 25, 26, 27,
842 28, -1, -1, 31, 32, -1, -1, -1, -1, -1,
843 -1, -1, -1, -1, 42
844};
845
846/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
847 symbol of state STATE-NUM. */
848static const yytype_uint8 yystos[] =
849{
850 0, 55, 56, 57, 0, 56, 1, 5, 6, 7,
851 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
852 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
853 28, 29, 30, 31, 32, 42, 58, 61, 65, 66,
854 67, 68, 69, 70, 74, 85, 100, 102, 45, 46,
855 38, 52, 97, 23, 38, 52, 88, 60, 38, 88,
856 48, 48, 45, 38, 48, 50, 62, 63, 64, 71,
857 75, 76, 67, 97, 38, 98, 99, 59, 88, 1,
858 65, 89, 90, 91, 61, 65, 88, 66, 82, 38,
859 1, 75, 72, 73, 74, 45, 47, 75, 30, 33,
860 101, 34, 48, 51, 46, 47, 61, 45, 46, 38,
861 42, 48, 53, 71, 77, 78, 92, 93, 94, 95,
862 46, 1, 91, 75, 38, 42, 48, 71, 83, 84,
863 49, 49, 49, 49, 74, 64, 96, 1, 79, 80,
864 81, 82, 35, 46, 99, 95, 1, 38, 77, 35,
865 77, 96, 34, 48, 45, 47, 1, 42, 83, 83,
866 34, 48, 45, 31, 51, 86, 87, 49, 49, 37,
867 47, 49, 49, 1, 79, 94, 49, 49, 1, 79,
868 35, 37, 82, 49, 49, 49, 49
869};
870
871#define yyerrok (yyerrstatus = 0)
872#define yyclearin (yychar = YYEMPTY)
873#define YYEMPTY (-2)
874#define YYEOF 0
875
876#define YYACCEPT goto yyacceptlab
877#define YYABORT goto yyabortlab
878#define YYERROR goto yyerrorlab
879
880
881/* Like YYERROR except do call yyerror. This remains here temporarily
882 to ease the transition to the new meaning of YYERROR, for GCC.
883 Once GCC version 2 has supplanted version 1, this can go. However,
884 YYFAIL appears to be in use. Nevertheless, it is formally deprecated
885 in Bison 2.4.2's NEWS entry, where a plan to phase it out is
886 discussed. */
887
888#define YYFAIL goto yyerrlab
889#if defined YYFAIL
890 /* This is here to suppress warnings from the GCC cpp's
891 -Wunused-macros. Normally we don't worry about that warning, but
892 some users do, and we want to make it easy for users to remove
893 YYFAIL uses, which will produce warnings from Bison 2.5. */
894#endif
895
896#define YYRECOVERING() (!!yyerrstatus)
897
898#define YYBACKUP(Token, Value) \
899do \
900 if (yychar == YYEMPTY) \
901 { \
902 yychar = (Token); \
903 yylval = (Value); \
904 YYPOPSTACK (yylen); \
905 yystate = *yyssp; \
906 goto yybackup; \
907 } \
908 else \
909 { \
910 yyerror (YY_("syntax error: cannot back up")); \
911 YYERROR; \
912 } \
913while (YYID (0))
914
915
916#define YYTERROR 1
917#define YYERRCODE 256
918
919
920/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
921 If N is 0, then set CURRENT to the empty location which ends
922 the previous symbol: RHS[0] (always defined). */
923
924#define YYRHSLOC(Rhs, K) ((Rhs)[K])
925#ifndef YYLLOC_DEFAULT
926# define YYLLOC_DEFAULT(Current, Rhs, N) \
927 do \
928 if (YYID (N)) \
929 { \
930 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
931 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
932 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
933 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
934 } \
935 else \
936 { \
937 (Current).first_line = (Current).last_line = \
938 YYRHSLOC (Rhs, 0).last_line; \
939 (Current).first_column = (Current).last_column = \
940 YYRHSLOC (Rhs, 0).last_column; \
941 } \
942 while (YYID (0))
943#endif
944
945
946/* This macro is provided for backward compatibility. */
947
948#ifndef YY_LOCATION_PRINT
949# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
950#endif
951
952
953/* YYLEX -- calling `yylex' with the right arguments. */
954
955#ifdef YYLEX_PARAM
956# define YYLEX yylex (YYLEX_PARAM)
957#else
958# define YYLEX yylex ()
959#endif
960
961/* Enable debugging if requested. */
962#if YYDEBUG
963
964# ifndef YYFPRINTF
965# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
966# define YYFPRINTF fprintf
967# endif
968
969# define YYDPRINTF(Args) \
970do { \
971 if (yydebug) \
972 YYFPRINTF Args; \
973} while (YYID (0))
974
975# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
976do { \
977 if (yydebug) \
978 { \
979 YYFPRINTF (stderr, "%s ", Title); \
980 yy_symbol_print (stderr, \
981 Type, Value); \
982 YYFPRINTF (stderr, "\n"); \
983 } \
984} while (YYID (0))
985
986
987/*--------------------------------.
988| Print this symbol on YYOUTPUT. |
989`--------------------------------*/
990
991/*ARGSUSED*/
992#if (defined __STDC__ || defined __C99__FUNC__ \
993 || defined __cplusplus || defined _MSC_VER)
994static void
995yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
996#else
997static void
998yy_symbol_value_print (yyoutput, yytype, yyvaluep)
999 FILE *yyoutput;
1000 int yytype;
1001 YYSTYPE const * const yyvaluep;
1002#endif
1003{
1004 FILE *yyo = yyoutput;
1005 YYUSE (yyo);
1006 if (!yyvaluep)
1007 return;
1008# ifdef YYPRINT
1009 if (yytype < YYNTOKENS)
1010 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
1011# else
1012 YYUSE (yyoutput);
1013# endif
1014 switch (yytype)
1015 {
1016 default:
1017 break;
1018 }
1019}
1020
1021
1022/*--------------------------------.
1023| Print this symbol on YYOUTPUT. |
1024`--------------------------------*/
1025
1026#if (defined __STDC__ || defined __C99__FUNC__ \
1027 || defined __cplusplus || defined _MSC_VER)
1028static void
1029yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
1030#else
1031static void
1032yy_symbol_print (yyoutput, yytype, yyvaluep)
1033 FILE *yyoutput;
1034 int yytype;
1035 YYSTYPE const * const yyvaluep;
1036#endif
1037{
1038 if (yytype < YYNTOKENS)
1039 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
1040 else
1041 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
1042
1043 yy_symbol_value_print (yyoutput, yytype, yyvaluep);
1044 YYFPRINTF (yyoutput, ")");
1045}
1046
1047/*------------------------------------------------------------------.
1048| yy_stack_print -- Print the state stack from its BOTTOM up to its |
1049| TOP (included). |
1050`------------------------------------------------------------------*/
1051
1052#if (defined __STDC__ || defined __C99__FUNC__ \
1053 || defined __cplusplus || defined _MSC_VER)
1054static void
1055yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
1056#else
1057static void
1058yy_stack_print (yybottom, yytop)
1059 yytype_int16 *yybottom;
1060 yytype_int16 *yytop;
1061#endif
1062{
1063 YYFPRINTF (stderr, "Stack now");
1064 for (; yybottom <= yytop; yybottom++)
1065 {
1066 int yybot = *yybottom;
1067 YYFPRINTF (stderr, " %d", yybot);
1068 }
1069 YYFPRINTF (stderr, "\n");
1070}
1071
1072# define YY_STACK_PRINT(Bottom, Top) \
1073do { \
1074 if (yydebug) \
1075 yy_stack_print ((Bottom), (Top)); \
1076} while (YYID (0))
1077
1078
1079/*------------------------------------------------.
1080| Report that the YYRULE is going to be reduced. |
1081`------------------------------------------------*/
1082
1083#if (defined __STDC__ || defined __C99__FUNC__ \
1084 || defined __cplusplus || defined _MSC_VER)
1085static void
1086yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
1087#else
1088static void
1089yy_reduce_print (yyvsp, yyrule)
1090 YYSTYPE *yyvsp;
1091 int yyrule;
1092#endif
1093{
1094 int yynrhs = yyr2[yyrule];
1095 int yyi;
1096 unsigned long int yylno = yyrline[yyrule];
1097 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
1098 yyrule - 1, yylno);
1099 /* The symbols being reduced. */
1100 for (yyi = 0; yyi < yynrhs; yyi++)
1101 {
1102 YYFPRINTF (stderr, " $%d = ", yyi + 1);
1103 yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
1104 &(yyvsp[(yyi + 1) - (yynrhs)])
1105 );
1106 YYFPRINTF (stderr, "\n");
1107 }
1108}
1109
1110# define YY_REDUCE_PRINT(Rule) \
1111do { \
1112 if (yydebug) \
1113 yy_reduce_print (yyvsp, Rule); \
1114} while (YYID (0))
1115
1116/* Nonzero means print parse trace. It is left uninitialized so that
1117 multiple parsers can coexist. */
1118int yydebug;
1119#else /* !YYDEBUG */
1120# define YYDPRINTF(Args)
1121# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
1122# define YY_STACK_PRINT(Bottom, Top)
1123# define YY_REDUCE_PRINT(Rule)
1124#endif /* !YYDEBUG */
1125
1126
1127/* YYINITDEPTH -- initial size of the parser's stacks. */
1128#ifndef YYINITDEPTH
1129# define YYINITDEPTH 200
1130#endif
1131
1132/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1133 if the built-in stack extension method is used).
1134
1135 Do not make this value too large; the results are undefined if
1136 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
1137 evaluated with infinite-precision integer arithmetic. */
1138
1139#ifndef YYMAXDEPTH
1140# define YYMAXDEPTH 10000
1141#endif
1142
1143
1144#if YYERROR_VERBOSE
1145
1146# ifndef yystrlen
1147# if defined __GLIBC__ && defined _STRING_H
1148# define yystrlen strlen
1149# else
1150/* Return the length of YYSTR. */
1151#if (defined __STDC__ || defined __C99__FUNC__ \
1152 || defined __cplusplus || defined _MSC_VER)
1153static YYSIZE_T
1154yystrlen (const char *yystr)
1155#else
1156static YYSIZE_T
1157yystrlen (yystr)
1158 const char *yystr;
1159#endif
1160{
1161 YYSIZE_T yylen;
1162 for (yylen = 0; yystr[yylen]; yylen++)
1163 continue;
1164 return yylen;
1165}
1166# endif
1167# endif
1168
1169# ifndef yystpcpy
1170# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
1171# define yystpcpy stpcpy
1172# else
1173/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1174 YYDEST. */
1175#if (defined __STDC__ || defined __C99__FUNC__ \
1176 || defined __cplusplus || defined _MSC_VER)
1177static char *
1178yystpcpy (char *yydest, const char *yysrc)
1179#else
1180static char *
1181yystpcpy (yydest, yysrc)
1182 char *yydest;
1183 const char *yysrc;
1184#endif
1185{
1186 char *yyd = yydest;
1187 const char *yys = yysrc;
1188
1189 while ((*yyd++ = *yys++) != '\0')
1190 continue;
1191
1192 return yyd - 1;
1193}
1194# endif
1195# endif
1196
1197# ifndef yytnamerr
1198/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1199 quotes and backslashes, so that it's suitable for yyerror. The
1200 heuristic is that double-quoting is unnecessary unless the string
1201 contains an apostrophe, a comma, or backslash (other than
1202 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1203 null, do not copy; instead, return the length of what the result
1204 would have been. */
1205static YYSIZE_T
1206yytnamerr (char *yyres, const char *yystr)
1207{
1208 if (*yystr == '"')
1209 {
1210 YYSIZE_T yyn = 0;
1211 char const *yyp = yystr;
1212
1213 for (;;)
1214 switch (*++yyp)
1215 {
1216 case '\'':
1217 case ',':
1218 goto do_not_strip_quotes;
1219
1220 case '\\':
1221 if (*++yyp != '\\')
1222 goto do_not_strip_quotes;
1223 /* Fall through. */
1224 default:
1225 if (yyres)
1226 yyres[yyn] = *yyp;
1227 yyn++;
1228 break;
1229
1230 case '"':
1231 if (yyres)
1232 yyres[yyn] = '\0';
1233 return yyn;
1234 }
1235 do_not_strip_quotes: ;
1236 }
1237
1238 if (! yyres)
1239 return yystrlen (yystr);
1240
1241 return yystpcpy (yyres, yystr) - yyres;
1242}
1243# endif
1244
1245/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
1246 about the unexpected token YYTOKEN for the state stack whose top is
1247 YYSSP.
1248
1249 Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
1250 not large enough to hold the message. In that case, also set
1251 *YYMSG_ALLOC to the required number of bytes. Return 2 if the
1252 required number of bytes is too large to store. */
1253static int
1254yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
1255 yytype_int16 *yyssp, int yytoken)
1256{
1257 YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
1258 YYSIZE_T yysize = yysize0;
1259 YYSIZE_T yysize1;
1260 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
1261 /* Internationalized format string. */
1262 const char *yyformat = YY_NULL;
1263 /* Arguments of yyformat. */
1264 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
1265 /* Number of reported tokens (one for the "unexpected", one per
1266 "expected"). */
1267 int yycount = 0;
1268
1269 /* There are many possibilities here to consider:
1270 - Assume YYFAIL is not used. It's too flawed to consider. See
1271 <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
1272 for details. YYERROR is fine as it does not invoke this
1273 function.
1274 - If this state is a consistent state with a default action, then
1275 the only way this function was invoked is if the default action
1276 is an error action. In that case, don't check for expected
1277 tokens because there are none.
1278 - The only way there can be no lookahead present (in yychar) is if
1279 this state is a consistent state with a default action. Thus,
1280 detecting the absence of a lookahead is sufficient to determine
1281 that there is no unexpected or expected token to report. In that
1282 case, just report a simple "syntax error".
1283 - Don't assume there isn't a lookahead just because this state is a
1284 consistent state with a default action. There might have been a
1285 previous inconsistent state, consistent state with a non-default
1286 action, or user semantic action that manipulated yychar.
1287 - Of course, the expected token list depends on states to have
1288 correct lookahead information, and it depends on the parser not
1289 to perform extra reductions after fetching a lookahead from the
1290 scanner and before detecting a syntax error. Thus, state merging
1291 (from LALR or IELR) and default reductions corrupt the expected
1292 token list. However, the list is correct for canonical LR with
1293 one exception: it will still contain any token that will not be
1294 accepted due to an error action in a later state.
1295 */
1296 if (yytoken != YYEMPTY)
1297 {
1298 int yyn = yypact[*yyssp];
1299 yyarg[yycount++] = yytname[yytoken];
1300 if (!yypact_value_is_default (yyn))
1301 {
1302 /* Start YYX at -YYN if negative to avoid negative indexes in
1303 YYCHECK. In other words, skip the first -YYN actions for
1304 this state because they are default actions. */
1305 int yyxbegin = yyn < 0 ? -yyn : 0;
1306 /* Stay within bounds of both yycheck and yytname. */
1307 int yychecklim = YYLAST - yyn + 1;
1308 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
1309 int yyx;
1310
1311 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
1312 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
1313 && !yytable_value_is_error (yytable[yyx + yyn]))
1314 {
1315 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
1316 {
1317 yycount = 1;
1318 yysize = yysize0;
1319 break;
1320 }
1321 yyarg[yycount++] = yytname[yyx];
1322 yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
1323 if (! (yysize <= yysize1
1324 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
1325 return 2;
1326 yysize = yysize1;
1327 }
1328 }
1329 }
1330
1331 switch (yycount)
1332 {
1333# define YYCASE_(N, S) \
1334 case N: \
1335 yyformat = S; \
1336 break
1337 YYCASE_(0, YY_("syntax error"));
1338 YYCASE_(1, YY_("syntax error, unexpected %s"));
1339 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1340 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1341 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1342 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
1343# undef YYCASE_
1344 }
1345
1346 yysize1 = yysize + yystrlen (yyformat);
1347 if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
1348 return 2;
1349 yysize = yysize1;
1350
1351 if (*yymsg_alloc < yysize)
1352 {
1353 *yymsg_alloc = 2 * yysize;
1354 if (! (yysize <= *yymsg_alloc
1355 && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
1356 *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
1357 return 1;
1358 }
1359
1360 /* Avoid sprintf, as that infringes on the user's name space.
1361 Don't have undefined behavior even if the translation
1362 produced a string with the wrong number of "%s"s. */
1363 {
1364 char *yyp = *yymsg;
1365 int yyi = 0;
1366 while ((*yyp = *yyformat) != '\0')
1367 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
1368 {
1369 yyp += yytnamerr (yyp, yyarg[yyi++]);
1370 yyformat += 2;
1371 }
1372 else
1373 {
1374 yyp++;
1375 yyformat++;
1376 }
1377 }
1378 return 0;
1379}
1380#endif /* YYERROR_VERBOSE */
1381
1382/*-----------------------------------------------.
1383| Release the memory associated to this symbol. |
1384`-----------------------------------------------*/
1385
1386/*ARGSUSED*/
1387#if (defined __STDC__ || defined __C99__FUNC__ \
1388 || defined __cplusplus || defined _MSC_VER)
1389static void
1390yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
1391#else
1392static void
1393yydestruct (yymsg, yytype, yyvaluep)
1394 const char *yymsg;
1395 int yytype;
1396 YYSTYPE *yyvaluep;
1397#endif
1398{
1399 YYUSE (yyvaluep);
1400
1401 if (!yymsg)
1402 yymsg = "Deleting";
1403 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
1404
1405 switch (yytype)
1406 {
1407
1408 default:
1409 break;
1410 }
1411}
1412
1413
1414/* Prevent warnings from -Wmissing-prototypes. */
1415#ifdef YYPARSE_PARAM
1416#if defined __STDC__ || defined __cplusplus
1417int yyparse (void *YYPARSE_PARAM);
1418#else
1419int yyparse ();
1420#endif
1421#else /* ! YYPARSE_PARAM */
1422#if defined __STDC__ || defined __cplusplus
1423int yyparse (void);
1424#else
1425int yyparse ();
1426#endif
1427#endif /* ! YYPARSE_PARAM */
1428
1429
1430/* The lookahead symbol. */
1431int yychar;
1432
1433/* The semantic value of the lookahead symbol. */
1434YYSTYPE yylval;
1435
1436/* Number of syntax errors so far. */
1437int yynerrs;
1438
1439
1440/*----------.
1441| yyparse. |
1442`----------*/
1443
1444#ifdef YYPARSE_PARAM
1445#if (defined __STDC__ || defined __C99__FUNC__ \
1446 || defined __cplusplus || defined _MSC_VER)
1447int
1448yyparse (void *YYPARSE_PARAM)
1449#else
1450int
1451yyparse (YYPARSE_PARAM)
1452 void *YYPARSE_PARAM;
1453#endif
1454#else /* ! YYPARSE_PARAM */
1455#if (defined __STDC__ || defined __C99__FUNC__ \
1456 || defined __cplusplus || defined _MSC_VER)
1457int
1458yyparse (void)
1459#else
1460int
1461yyparse ()
1462
1463#endif
1464#endif
1465{
1466 int yystate;
1467 /* Number of tokens to shift before error messages enabled. */
1468 int yyerrstatus;
1469
1470 /* The stacks and their tools:
1471 `yyss': related to states.
1472 `yyvs': related to semantic values.
1473
1474 Refer to the stacks through separate pointers, to allow yyoverflow
1475 to reallocate them elsewhere. */
1476
1477 /* The state stack. */
1478 yytype_int16 yyssa[YYINITDEPTH];
1479 yytype_int16 *yyss;
1480 yytype_int16 *yyssp;
1481
1482 /* The semantic value stack. */
1483 YYSTYPE yyvsa[YYINITDEPTH];
1484 YYSTYPE *yyvs;
1485 YYSTYPE *yyvsp;
1486
1487 YYSIZE_T yystacksize;
1488
1489 int yyn;
1490 int yyresult;
1491 /* Lookahead token as an internal (translated) token number. */
1492 int yytoken;
1493 /* The variables used to return semantic value and location from the
1494 action routines. */
1495 YYSTYPE yyval;
1496
1497#if YYERROR_VERBOSE
1498 /* Buffer for error messages, and its allocated size. */
1499 char yymsgbuf[128];
1500 char *yymsg = yymsgbuf;
1501 YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
1502#endif
1503
1504#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
1505
1506 /* The number of symbols on the RHS of the reduced rule.
1507 Keep to zero when no symbol should be popped. */
1508 int yylen = 0;
1509
1510 yytoken = 0;
1511 yyss = yyssa;
1512 yyvs = yyvsa;
1513 yystacksize = YYINITDEPTH;
1514
1515 YYDPRINTF ((stderr, "Starting parse\n"));
1516
1517 yystate = 0;
1518 yyerrstatus = 0;
1519 yynerrs = 0;
1520 yychar = YYEMPTY; /* Cause a token to be read. */
1521
1522 /* Initialize stack pointers.
1523 Waste one element of value and location stack
1524 so that they stay on the same level as the state stack.
1525 The wasted elements are never initialized. */
1526 yyssp = yyss;
1527 yyvsp = yyvs;
1528
1529 goto yysetstate;
1530
1531/*------------------------------------------------------------.
1532| yynewstate -- Push a new state, which is found in yystate. |
1533`------------------------------------------------------------*/
1534 yynewstate:
1535 /* In all cases, when you get here, the value and location stacks
1536 have just been pushed. So pushing a state here evens the stacks. */
1537 yyssp++;
1538
1539 yysetstate:
1540 *yyssp = yystate;
1541
1542 if (yyss + yystacksize - 1 <= yyssp)
1543 {
1544 /* Get the current used size of the three stacks, in elements. */
1545 YYSIZE_T yysize = yyssp - yyss + 1;
1546
1547#ifdef yyoverflow
1548 {
1549 /* Give user a chance to reallocate the stack. Use copies of
1550 these so that the &'s don't force the real ones into
1551 memory. */
1552 YYSTYPE *yyvs1 = yyvs;
1553 yytype_int16 *yyss1 = yyss;
1554
1555 /* Each stack pointer address is followed by the size of the
1556 data in use in that stack, in bytes. This used to be a
1557 conditional around just the two extra args, but that might
1558 be undefined if yyoverflow is a macro. */
1559 yyoverflow (YY_("memory exhausted"),
1560 &yyss1, yysize * sizeof (*yyssp),
1561 &yyvs1, yysize * sizeof (*yyvsp),
1562 &yystacksize);
1563
1564 yyss = yyss1;
1565 yyvs = yyvs1;
1566 }
1567#else /* no yyoverflow */
1568# ifndef YYSTACK_RELOCATE
1569 goto yyexhaustedlab;
1570# else
1571 /* Extend the stack our own way. */
1572 if (YYMAXDEPTH <= yystacksize)
1573 goto yyexhaustedlab;
1574 yystacksize *= 2;
1575 if (YYMAXDEPTH < yystacksize)
1576 yystacksize = YYMAXDEPTH;
1577
1578 {
1579 yytype_int16 *yyss1 = yyss;
1580 union yyalloc *yyptr =
1581 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
1582 if (! yyptr)
1583 goto yyexhaustedlab;
1584 YYSTACK_RELOCATE (yyss_alloc, yyss);
1585 YYSTACK_RELOCATE (yyvs_alloc, yyvs);
1586# undef YYSTACK_RELOCATE
1587 if (yyss1 != yyssa)
1588 YYSTACK_FREE (yyss1);
1589 }
1590# endif
1591#endif /* no yyoverflow */
1592
1593 yyssp = yyss + yysize - 1;
1594 yyvsp = yyvs + yysize - 1;
1595
1596 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
1597 (unsigned long int) yystacksize));
1598
1599 if (yyss + yystacksize - 1 <= yyssp)
1600 YYABORT;
1601 }
1602
1603 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
1604
1605 if (yystate == YYFINAL)
1606 YYACCEPT;
1607
1608 goto yybackup;
1609
1610/*-----------.
1611| yybackup. |
1612`-----------*/
1613yybackup:
1614
1615 /* Do appropriate processing given the current state. Read a
1616 lookahead token if we need one and don't already have one. */
1617
1618 /* First try to decide what to do without reference to lookahead token. */
1619 yyn = yypact[yystate];
1620 if (yypact_value_is_default (yyn))
1621 goto yydefault;
1622
1623 /* Not known => get a lookahead token if don't already have one. */
1624
1625 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1626 if (yychar == YYEMPTY)
1627 {
1628 YYDPRINTF ((stderr, "Reading a token: "));
1629 yychar = YYLEX;
1630 }
1631
1632 if (yychar <= YYEOF)
1633 {
1634 yychar = yytoken = YYEOF;
1635 YYDPRINTF ((stderr, "Now at end of input.\n"));
1636 }
1637 else
1638 {
1639 yytoken = YYTRANSLATE (yychar);
1640 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
1641 }
1642
1643 /* If the proper action on seeing token YYTOKEN is to reduce or to
1644 detect an error, take that action. */
1645 yyn += yytoken;
1646 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
1647 goto yydefault;
1648 yyn = yytable[yyn];
1649 if (yyn <= 0)
1650 {
1651 if (yytable_value_is_error (yyn))
1652 goto yyerrlab;
1653 yyn = -yyn;
1654 goto yyreduce;
1655 }
1656
1657 /* Count tokens shifted since error; after three, turn off error
1658 status. */
1659 if (yyerrstatus)
1660 yyerrstatus--;
1661
1662 /* Shift the lookahead token. */
1663 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
1664
1665 /* Discard the shifted token. */
1666 yychar = YYEMPTY;
1667
1668 yystate = yyn;
1669 *++yyvsp = yylval;
1670
1671 goto yynewstate;
1672
1673
1674/*-----------------------------------------------------------.
1675| yydefault -- do the default action for the current state. |
1676`-----------------------------------------------------------*/
1677yydefault:
1678 yyn = yydefact[yystate];
1679 if (yyn == 0)
1680 goto yyerrlab;
1681 goto yyreduce;
1682
1683
1684/*-----------------------------.
1685| yyreduce -- Do a reduction. |
1686`-----------------------------*/
1687yyreduce:
1688 /* yyn is the number of a rule to reduce with. */
1689 yylen = yyr2[yyn];
1690
1691 /* If YYLEN is nonzero, implement the default value of the action:
1692 `$$ = $1'.
1693
1694 Otherwise, the following line sets YYVAL to garbage.
1695 This behavior is undocumented and Bison
1696 users should not rely upon it. Assigning to YYVAL
1697 unconditionally makes the parser a bit smaller, and it avoids a
1698 GCC warning that YYVAL may be used uninitialized. */
1699 yyval = yyvsp[1-yylen];
1700
1701
1702 YY_REDUCE_PRINT (yyn);
1703 switch (yyn)
1704 {
1705 case 4:
1706
1707 { is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; }
1708 break;
1709
1710 case 5:
1711
1712 { free_list(*(yyvsp[(2) - (2)]), NULL); *(yyvsp[(2) - (2)]) = NULL; }
1713 break;
1714
1715 case 6:
1716
1717 { is_typedef = 1; }
1718 break;
1719
1720 case 7:
1721
1722 { (yyval) = (yyvsp[(4) - (4)]); }
1723 break;
1724
1725 case 8:
1726
1727 { is_typedef = 1; }
1728 break;
1729
1730 case 9:
1731
1732 { (yyval) = (yyvsp[(3) - (3)]); }
1733 break;
1734
1735 case 14:
1736
1737 { (yyval) = (yyvsp[(2) - (2)]); }
1738 break;
1739
1740 case 15:
1741
1742 { (yyval) = (yyvsp[(2) - (2)]); }
1743 break;
1744
1745 case 16:
1746
1747 { if (current_name) {
1748 struct string_list *decl = (*(yyvsp[(3) - (3)]))->next;
1749 (*(yyvsp[(3) - (3)]))->next = NULL;
1750 add_symbol(current_name,
1751 is_typedef ? SYM_TYPEDEF : SYM_NORMAL,
1752 decl, is_extern);
1753 current_name = NULL;
1754 }
1755 (yyval) = (yyvsp[(3) - (3)]);
1756 }
1757 break;
1758
1759 case 17:
1760
1761 { (yyval) = NULL; }
1762 break;
1763
1764 case 19:
1765
1766 { struct string_list *decl = *(yyvsp[(1) - (1)]);
1767 *(yyvsp[(1) - (1)]) = NULL;
1768 add_symbol(current_name,
1769 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
1770 current_name = NULL;
1771 (yyval) = (yyvsp[(1) - (1)]);
1772 }
1773 break;
1774
1775 case 20:
1776
1777 { struct string_list *decl = *(yyvsp[(3) - (3)]);
1778 *(yyvsp[(3) - (3)]) = NULL;
1779 free_list(*(yyvsp[(2) - (3)]), NULL);
1780 *(yyvsp[(2) - (3)]) = decl_spec;
1781 add_symbol(current_name,
1782 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
1783 current_name = NULL;
1784 (yyval) = (yyvsp[(3) - (3)]);
1785 }
1786 break;
1787
1788 case 21:
1789
1790 { (yyval) = (yyvsp[(4) - (4)]) ? (yyvsp[(4) - (4)]) : (yyvsp[(3) - (4)]) ? (yyvsp[(3) - (4)]) : (yyvsp[(2) - (4)]) ? (yyvsp[(2) - (4)]) : (yyvsp[(1) - (4)]); }
1791 break;
1792
1793 case 22:
1794
1795 { decl_spec = NULL; }
1796 break;
1797
1798 case 24:
1799
1800 { decl_spec = *(yyvsp[(1) - (1)]); }
1801 break;
1802
1803 case 25:
1804
1805 { decl_spec = *(yyvsp[(2) - (2)]); }
1806 break;
1807
1808 case 26:
1809
1810 { /* Version 2 checksumming ignores storage class, as that
1811 is really irrelevant to the linkage. */
1812 remove_node((yyvsp[(1) - (1)]));
1813 (yyval) = (yyvsp[(1) - (1)]);
1814 }
1815 break;
1816
1817 case 31:
1818
1819 { is_extern = 1; (yyval) = (yyvsp[(1) - (1)]); }
1820 break;
1821
1822 case 32:
1823
1824 { is_extern = 0; (yyval) = (yyvsp[(1) - (1)]); }
1825 break;
1826
1827 case 37:
1828
1829 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_STRUCT; (yyval) = (yyvsp[(2) - (2)]); }
1830 break;
1831
1832 case 38:
1833
1834 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_UNION; (yyval) = (yyvsp[(2) - (2)]); }
1835 break;
1836
1837 case 39:
1838
1839 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_ENUM; (yyval) = (yyvsp[(2) - (2)]); }
1840 break;
1841
1842 case 40:
1843
1844 { record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_STRUCT); (yyval) = (yyvsp[(3) - (3)]); }
1845 break;
1846
1847 case 41:
1848
1849 { record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_UNION); (yyval) = (yyvsp[(3) - (3)]); }
1850 break;
1851
1852 case 42:
1853
1854 { record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_ENUM); (yyval) = (yyvsp[(3) - (3)]); }
1855 break;
1856
1857 case 43:
1858
1859 { add_symbol(NULL, SYM_ENUM, NULL, 0); (yyval) = (yyvsp[(2) - (2)]); }
1860 break;
1861
1862 case 44:
1863
1864 { (yyval) = (yyvsp[(2) - (2)]); }
1865 break;
1866
1867 case 45:
1868
1869 { (yyval) = (yyvsp[(2) - (2)]); }
1870 break;
1871
1872 case 56:
1873
1874 { (*(yyvsp[(1) - (1)]))->tag = SYM_TYPEDEF; (yyval) = (yyvsp[(1) - (1)]); }
1875 break;
1876
1877 case 57:
1878
1879 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
1880 break;
1881
1882 case 58:
1883
1884 { (yyval) = NULL; }
1885 break;
1886
1887 case 61:
1888
1889 { (yyval) = (yyvsp[(2) - (2)]); }
1890 break;
1891
1892 case 65:
1893
1894 { /* restrict has no effect in prototypes so ignore it */
1895 remove_node((yyvsp[(1) - (1)]));
1896 (yyval) = (yyvsp[(1) - (1)]);
1897 }
1898 break;
1899
1900 case 66:
1901
1902 { (yyval) = (yyvsp[(2) - (2)]); }
1903 break;
1904
1905 case 68:
1906
1907 { if (current_name != NULL) {
1908 error_with_pos("unexpected second declaration name");
1909 YYERROR;
1910 } else {
1911 current_name = (*(yyvsp[(1) - (1)]))->string;
1912 (yyval) = (yyvsp[(1) - (1)]);
1913 }
1914 }
1915 break;
1916
1917 case 69:
1918
1919 { (yyval) = (yyvsp[(4) - (4)]); }
1920 break;
1921
1922 case 70:
1923
1924 { (yyval) = (yyvsp[(4) - (4)]); }
1925 break;
1926
1927 case 71:
1928
1929 { (yyval) = (yyvsp[(2) - (2)]); }
1930 break;
1931
1932 case 72:
1933
1934 { (yyval) = (yyvsp[(3) - (3)]); }
1935 break;
1936
1937 case 73:
1938
1939 { (yyval) = (yyvsp[(3) - (3)]); }
1940 break;
1941
1942 case 74:
1943
1944 { (yyval) = (yyvsp[(2) - (2)]); }
1945 break;
1946
1947 case 78:
1948
1949 { (yyval) = (yyvsp[(4) - (4)]); }
1950 break;
1951
1952 case 79:
1953
1954 { (yyval) = (yyvsp[(4) - (4)]); }
1955 break;
1956
1957 case 80:
1958
1959 { (yyval) = (yyvsp[(2) - (2)]); }
1960 break;
1961
1962 case 81:
1963
1964 { (yyval) = (yyvsp[(3) - (3)]); }
1965 break;
1966
1967 case 82:
1968
1969 { (yyval) = (yyvsp[(3) - (3)]); }
1970 break;
1971
1972 case 83:
1973
1974 { (yyval) = (yyvsp[(2) - (2)]); }
1975 break;
1976
1977 case 85:
1978
1979 { (yyval) = (yyvsp[(3) - (3)]); }
1980 break;
1981
1982 case 86:
1983
1984 { (yyval) = NULL; }
1985 break;
1986
1987 case 89:
1988
1989 { (yyval) = (yyvsp[(3) - (3)]); }
1990 break;
1991
1992 case 90:
1993
1994 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
1995 break;
1996
1997 case 91:
1998
1999 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
2000 break;
2001
2002 case 93:
2003
2004 { (yyval) = NULL; }
2005 break;
2006
2007 case 94:
2008
2009 { /* For version 2 checksums, we don't want to remember
2010 private parameter names. */
2011 remove_node((yyvsp[(1) - (1)]));
2012 (yyval) = (yyvsp[(1) - (1)]);
2013 }
2014 break;
2015
2016 case 95:
2017
2018 { remove_node((yyvsp[(1) - (1)]));
2019 (yyval) = (yyvsp[(1) - (1)]);
2020 }
2021 break;
2022
2023 case 96:
2024
2025 { (yyval) = (yyvsp[(4) - (4)]); }
2026 break;
2027
2028 case 97:
2029
2030 { (yyval) = (yyvsp[(4) - (4)]); }
2031 break;
2032
2033 case 98:
2034
2035 { (yyval) = (yyvsp[(2) - (2)]); }
2036 break;
2037
2038 case 99:
2039
2040 { (yyval) = (yyvsp[(3) - (3)]); }
2041 break;
2042
2043 case 100:
2044
2045 { (yyval) = (yyvsp[(3) - (3)]); }
2046 break;
2047
2048 case 101:
2049
2050 { struct string_list *decl = *(yyvsp[(2) - (3)]);
2051 *(yyvsp[(2) - (3)]) = NULL;
2052 add_symbol(current_name, SYM_NORMAL, decl, is_extern);
2053 (yyval) = (yyvsp[(3) - (3)]);
2054 }
2055 break;
2056
2057 case 102:
2058
2059 { (yyval) = NULL; }
2060 break;
2061
2062 case 104:
2063
2064 { remove_list((yyvsp[(2) - (2)]), &(*(yyvsp[(1) - (2)]))->next); (yyval) = (yyvsp[(2) - (2)]); }
2065 break;
2066
2067 case 105:
2068
2069 { (yyval) = (yyvsp[(3) - (3)]); }
2070 break;
2071
2072 case 106:
2073
2074 { (yyval) = (yyvsp[(3) - (3)]); }
2075 break;
2076
2077 case 107:
2078
2079 { (yyval) = NULL; }
2080 break;
2081
2082 case 110:
2083
2084 { (yyval) = (yyvsp[(2) - (2)]); }
2085 break;
2086
2087 case 111:
2088
2089 { (yyval) = (yyvsp[(3) - (3)]); }
2090 break;
2091
2092 case 112:
2093
2094 { (yyval) = (yyvsp[(2) - (2)]); }
2095 break;
2096
2097 case 113:
2098
2099 { (yyval) = NULL; }
2100 break;
2101
2102 case 116:
2103
2104 { (yyval) = (yyvsp[(3) - (3)]); }
2105 break;
2106
2107 case 117:
2108
2109 { (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); }
2110 break;
2111
2112 case 118:
2113
2114 { (yyval) = (yyvsp[(2) - (2)]); }
2115 break;
2116
2117 case 120:
2118
2119 { (yyval) = (yyvsp[(2) - (2)]); }
2120 break;
2121
2122 case 121:
2123
2124 { (yyval) = NULL; }
2125 break;
2126
2127 case 123:
2128
2129 { (yyval) = (yyvsp[(3) - (3)]); }
2130 break;
2131
2132 case 124:
2133
2134 { (yyval) = (yyvsp[(4) - (4)]); }
2135 break;
2136
2137 case 127:
2138
2139 {
2140 const char *name = strdup((*(yyvsp[(1) - (1)]))->string);
2141 add_symbol(name, SYM_ENUM_CONST, NULL, 0);
2142 }
2143 break;
2144
2145 case 128:
2146
2147 {
2148 const char *name = strdup((*(yyvsp[(1) - (3)]))->string);
2149 struct string_list *expr = copy_list_range(*(yyvsp[(3) - (3)]), *(yyvsp[(2) - (3)]));
2150 add_symbol(name, SYM_ENUM_CONST, expr, 0);
2151 }
2152 break;
2153
2154 case 129:
2155
2156 { (yyval) = (yyvsp[(2) - (2)]); }
2157 break;
2158
2159 case 130:
2160
2161 { (yyval) = NULL; }
2162 break;
2163
2164 case 132:
2165
2166 { export_symbol((*(yyvsp[(3) - (5)]))->string); (yyval) = (yyvsp[(5) - (5)]); }
2167 break;
2168
2169
2170
2171 default: break;
2172 }
2173 /* User semantic actions sometimes alter yychar, and that requires
2174 that yytoken be updated with the new translation. We take the
2175 approach of translating immediately before every use of yytoken.
2176 One alternative is translating here after every semantic action,
2177 but that translation would be missed if the semantic action invokes
2178 YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
2179 if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
2180 incorrect destructor might then be invoked immediately. In the
2181 case of YYERROR or YYBACKUP, subsequent parser actions might lead
2182 to an incorrect destructor call or verbose syntax error message
2183 before the lookahead is translated. */
2184 YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
2185
2186 YYPOPSTACK (yylen);
2187 yylen = 0;
2188 YY_STACK_PRINT (yyss, yyssp);
2189
2190 *++yyvsp = yyval;
2191
2192 /* Now `shift' the result of the reduction. Determine what state
2193 that goes to, based on the state we popped back to and the rule
2194 number reduced by. */
2195
2196 yyn = yyr1[yyn];
2197
2198 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
2199 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
2200 yystate = yytable[yystate];
2201 else
2202 yystate = yydefgoto[yyn - YYNTOKENS];
2203
2204 goto yynewstate;
2205
2206
2207/*------------------------------------.
2208| yyerrlab -- here on detecting error |
2209`------------------------------------*/
2210yyerrlab:
2211 /* Make sure we have latest lookahead translation. See comments at
2212 user semantic actions for why this is necessary. */
2213 yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
2214
2215 /* If not already recovering from an error, report this error. */
2216 if (!yyerrstatus)
2217 {
2218 ++yynerrs;
2219#if ! YYERROR_VERBOSE
2220 yyerror (YY_("syntax error"));
2221#else
2222# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
2223 yyssp, yytoken)
2224 {
2225 char const *yymsgp = YY_("syntax error");
2226 int yysyntax_error_status;
2227 yysyntax_error_status = YYSYNTAX_ERROR;
2228 if (yysyntax_error_status == 0)
2229 yymsgp = yymsg;
2230 else if (yysyntax_error_status == 1)
2231 {
2232 if (yymsg != yymsgbuf)
2233 YYSTACK_FREE (yymsg);
2234 yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
2235 if (!yymsg)
2236 {
2237 yymsg = yymsgbuf;
2238 yymsg_alloc = sizeof yymsgbuf;
2239 yysyntax_error_status = 2;
2240 }
2241 else
2242 {
2243 yysyntax_error_status = YYSYNTAX_ERROR;
2244 yymsgp = yymsg;
2245 }
2246 }
2247 yyerror (yymsgp);
2248 if (yysyntax_error_status == 2)
2249 goto yyexhaustedlab;
2250 }
2251# undef YYSYNTAX_ERROR
2252#endif
2253 }
2254
2255
2256
2257 if (yyerrstatus == 3)
2258 {
2259 /* If just tried and failed to reuse lookahead token after an
2260 error, discard it. */
2261
2262 if (yychar <= YYEOF)
2263 {
2264 /* Return failure if at end of input. */
2265 if (yychar == YYEOF)
2266 YYABORT;
2267 }
2268 else
2269 {
2270 yydestruct ("Error: discarding",
2271 yytoken, &yylval);
2272 yychar = YYEMPTY;
2273 }
2274 }
2275
2276 /* Else will try to reuse lookahead token after shifting the error
2277 token. */
2278 goto yyerrlab1;
2279
2280
2281/*---------------------------------------------------.
2282| yyerrorlab -- error raised explicitly by YYERROR. |
2283`---------------------------------------------------*/
2284yyerrorlab:
2285
2286 /* Pacify compilers like GCC when the user code never invokes
2287 YYERROR and the label yyerrorlab therefore never appears in user
2288 code. */
2289 if (/*CONSTCOND*/ 0)
2290 goto yyerrorlab;
2291
2292 /* Do not reclaim the symbols of the rule which action triggered
2293 this YYERROR. */
2294 YYPOPSTACK (yylen);
2295 yylen = 0;
2296 YY_STACK_PRINT (yyss, yyssp);
2297 yystate = *yyssp;
2298 goto yyerrlab1;
2299
2300
2301/*-------------------------------------------------------------.
2302| yyerrlab1 -- common code for both syntax error and YYERROR. |
2303`-------------------------------------------------------------*/
2304yyerrlab1:
2305 yyerrstatus = 3; /* Each real token shifted decrements this. */
2306
2307 for (;;)
2308 {
2309 yyn = yypact[yystate];
2310 if (!yypact_value_is_default (yyn))
2311 {
2312 yyn += YYTERROR;
2313 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
2314 {
2315 yyn = yytable[yyn];
2316 if (0 < yyn)
2317 break;
2318 }
2319 }
2320
2321 /* Pop the current state because it cannot handle the error token. */
2322 if (yyssp == yyss)
2323 YYABORT;
2324
2325
2326 yydestruct ("Error: popping",
2327 yystos[yystate], yyvsp);
2328 YYPOPSTACK (1);
2329 yystate = *yyssp;
2330 YY_STACK_PRINT (yyss, yyssp);
2331 }
2332
2333 *++yyvsp = yylval;
2334
2335
2336 /* Shift the error token. */
2337 YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
2338
2339 yystate = yyn;
2340 goto yynewstate;
2341
2342
2343/*-------------------------------------.
2344| yyacceptlab -- YYACCEPT comes here. |
2345`-------------------------------------*/
2346yyacceptlab:
2347 yyresult = 0;
2348 goto yyreturn;
2349
2350/*-----------------------------------.
2351| yyabortlab -- YYABORT comes here. |
2352`-----------------------------------*/
2353yyabortlab:
2354 yyresult = 1;
2355 goto yyreturn;
2356
2357#if !defined yyoverflow || YYERROR_VERBOSE
2358/*-------------------------------------------------.
2359| yyexhaustedlab -- memory exhaustion comes here. |
2360`-------------------------------------------------*/
2361yyexhaustedlab:
2362 yyerror (YY_("memory exhausted"));
2363 yyresult = 2;
2364 /* Fall through. */
2365#endif
2366
2367yyreturn:
2368 if (yychar != YYEMPTY)
2369 {
2370 /* Make sure we have latest lookahead translation. See comments at
2371 user semantic actions for why this is necessary. */
2372 yytoken = YYTRANSLATE (yychar);
2373 yydestruct ("Cleanup: discarding lookahead",
2374 yytoken, &yylval);
2375 }
2376 /* Do not reclaim the symbols of the rule which action triggered
2377 this YYABORT or YYACCEPT. */
2378 YYPOPSTACK (yylen);
2379 YY_STACK_PRINT (yyss, yyssp);
2380 while (yyssp != yyss)
2381 {
2382 yydestruct ("Cleanup: popping",
2383 yystos[*yyssp], yyvsp);
2384 YYPOPSTACK (1);
2385 }
2386#ifndef yyoverflow
2387 if (yyss != yyssa)
2388 YYSTACK_FREE (yyss);
2389#endif
2390#if YYERROR_VERBOSE
2391 if (yymsg != yymsgbuf)
2392 YYSTACK_FREE (yymsg);
2393#endif
2394 /* Make sure YYID is used. */
2395 return YYID (yyresult);
2396}
2397
2398
2399
2400
2401
2402static void
2403yyerror(const char *e)
2404{
2405 error_with_pos("%s", e);
2406}
2407