Commit d93cf734 authored by Michal Marek's avatar Michal Marek Committed by Greg Kroah-Hartman

genksyms: Fix segfault with invalid declarations

commit d920f7c6 upstream.

Do not try to recover too early and segfault when parsing invalid
declarations such as

echo 'int (int);' | scripts/genksyms/genksyms
echo 'int a, (int);' | scripts/genksyms/genksyms
echo 'extern void *__inline_memcpy((void *), (const void *), (__kernel_size_t));' | scripts/genksyms/genksyms

The last one was a real-life bug with
include/asm-generic/asm-prototypes.h on x86_64.
Reported-and-tested-by: default avatarBorislav Petkov <bp@alien8.de>
Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
[arnd: rebase to 4.4, regenerate parse.tab.{c,h}]
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5381db24
/* A Bison parser, made by GNU Bison 2.7. */ /* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison implementation for Yacc-like parsers in C /* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */ along with this program. If not, see <http://www.gnu.org/licenses/>. */
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
special exception, which will cause the skeleton and the resulting special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public Bison output files to be licensed under the GNU General Public
License without this special exception. License without this special exception.
This special exception was added by the Free Software Foundation in This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */ version 2.2 of Bison. */
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#define YYBISON 1 #define YYBISON 1
/* Bison version. */ /* Bison version. */
#define YYBISON_VERSION "2.7" #define YYBISON_VERSION "3.0.4"
/* Skeleton name. */ /* Skeleton name. */
#define YYSKELETON_NAME "yacc.c" #define YYSKELETON_NAME "yacc.c"
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
/* Copy the first part of user declarations. */ /* Copy the first part of user declarations. */
#line 24 "parse.y" /* yacc.c:339 */
#include <assert.h> #include <assert.h>
...@@ -113,13 +113,13 @@ static void record_compound(struct string_list **keyw, ...@@ -113,13 +113,13 @@ static void record_compound(struct string_list **keyw,
} }
#line 117 "parse.tab.c" /* yacc.c:339 */
# ifndef YY_NULLPTR
# ifndef YY_NULL
# if defined __cplusplus && 201103L <= __cplusplus # if defined __cplusplus && 201103L <= __cplusplus
# define YY_NULL nullptr # define YY_NULLPTR nullptr
# else # else
# define YY_NULL 0 # define YY_NULLPTR 0
# endif # endif
# endif # endif
...@@ -131,8 +131,11 @@ static void record_compound(struct string_list **keyw, ...@@ -131,8 +131,11 @@ static void record_compound(struct string_list **keyw,
# define YYERROR_VERBOSE 0 # define YYERROR_VERBOSE 0
#endif #endif
/* In a future release of Bison, this section will be replaced
/* Enabling traces. */ by #include "parse.tab.h". */
#ifndef YY_YY_PARSE_TAB_H_INCLUDED
# define YY_YY_PARSE_TAB_H_INCLUDED
/* Debug traces. */
#ifndef YYDEBUG #ifndef YYDEBUG
# define YYDEBUG 1 # define YYDEBUG 1
#endif #endif
...@@ -140,86 +143,73 @@ static void record_compound(struct string_list **keyw, ...@@ -140,86 +143,73 @@ static void record_compound(struct string_list **keyw,
extern int yydebug; extern int yydebug;
#endif #endif
/* Tokens. */ /* Token type. */
#ifndef YYTOKENTYPE #ifndef YYTOKENTYPE
# define YYTOKENTYPE # define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers enum yytokentype
know about them. */ {
enum yytokentype { ASM_KEYW = 258,
ASM_KEYW = 258, ATTRIBUTE_KEYW = 259,
ATTRIBUTE_KEYW = 259, AUTO_KEYW = 260,
AUTO_KEYW = 260, BOOL_KEYW = 261,
BOOL_KEYW = 261, CHAR_KEYW = 262,
CHAR_KEYW = 262, CONST_KEYW = 263,
CONST_KEYW = 263, DOUBLE_KEYW = 264,
DOUBLE_KEYW = 264, ENUM_KEYW = 265,
ENUM_KEYW = 265, EXTERN_KEYW = 266,
EXTERN_KEYW = 266, EXTENSION_KEYW = 267,
EXTENSION_KEYW = 267, FLOAT_KEYW = 268,
FLOAT_KEYW = 268, INLINE_KEYW = 269,
INLINE_KEYW = 269, INT_KEYW = 270,
INT_KEYW = 270, LONG_KEYW = 271,
LONG_KEYW = 271, REGISTER_KEYW = 272,
REGISTER_KEYW = 272, RESTRICT_KEYW = 273,
RESTRICT_KEYW = 273, SHORT_KEYW = 274,
SHORT_KEYW = 274, SIGNED_KEYW = 275,
SIGNED_KEYW = 275, STATIC_KEYW = 276,
STATIC_KEYW = 276, STRUCT_KEYW = 277,
STRUCT_KEYW = 277, TYPEDEF_KEYW = 278,
TYPEDEF_KEYW = 278, UNION_KEYW = 279,
UNION_KEYW = 279, UNSIGNED_KEYW = 280,
UNSIGNED_KEYW = 280, VOID_KEYW = 281,
VOID_KEYW = 281, VOLATILE_KEYW = 282,
VOLATILE_KEYW = 282, TYPEOF_KEYW = 283,
TYPEOF_KEYW = 283, EXPORT_SYMBOL_KEYW = 284,
EXPORT_SYMBOL_KEYW = 284, ASM_PHRASE = 285,
ASM_PHRASE = 285, ATTRIBUTE_PHRASE = 286,
ATTRIBUTE_PHRASE = 286, TYPEOF_PHRASE = 287,
TYPEOF_PHRASE = 287, BRACE_PHRASE = 288,
BRACE_PHRASE = 288, BRACKET_PHRASE = 289,
BRACKET_PHRASE = 289, EXPRESSION_PHRASE = 290,
EXPRESSION_PHRASE = 290, CHAR = 291,
CHAR = 291, DOTS = 292,
DOTS = 292, IDENT = 293,
IDENT = 293, INT = 294,
INT = 294, REAL = 295,
REAL = 295, STRING = 296,
STRING = 296, TYPE = 297,
TYPE = 297, OTHER = 298,
OTHER = 298, FILENAME = 299
FILENAME = 299 };
};
#endif #endif
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef int YYSTYPE; typedef int YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_DECLARED 1
#endif #endif
extern YYSTYPE yylval; extern YYSTYPE yylval;
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
#else
int yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int yyparse (void); int yyparse (void);
#else
int yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */
#endif /* !YY_YY_PARSE_TAB_H_INCLUDED */
/* Copy the second part of user declarations. */ /* Copy the second part of user declarations. */
#line 213 "parse.tab.c" /* yacc.c:358 */
#ifdef short #ifdef short
# undef short # undef short
...@@ -233,11 +223,8 @@ typedef unsigned char yytype_uint8; ...@@ -233,11 +223,8 @@ typedef unsigned char yytype_uint8;
#ifdef YYTYPE_INT8 #ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8; typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else #else
typedef short int yytype_int8; typedef signed char yytype_int8;
#endif #endif
#ifdef YYTYPE_UINT16 #ifdef YYTYPE_UINT16
...@@ -257,8 +244,7 @@ typedef short int yytype_int16; ...@@ -257,8 +244,7 @@ typedef short int yytype_int16;
# define YYSIZE_T __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__
# elif defined size_t # elif defined size_t
# define YYSIZE_T size_t # define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ # elif ! defined YYSIZE_T
|| defined __cplusplus || defined _MSC_VER)
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */ # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t # define YYSIZE_T size_t
# else # else
...@@ -280,6 +266,33 @@ typedef short int yytype_int16; ...@@ -280,6 +266,33 @@ typedef short int yytype_int16;
# endif # endif
#endif #endif
#ifndef YY_ATTRIBUTE
# if (defined __GNUC__ \
&& (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
|| defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
# define YY_ATTRIBUTE(Spec) __attribute__(Spec)
# else
# define YY_ATTRIBUTE(Spec) /* empty */
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
#endif
#if !defined _Noreturn \
&& (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
# if defined _MSC_VER && 1200 <= _MSC_VER
# define _Noreturn __declspec (noreturn)
# else
# define _Noreturn YY_ATTRIBUTE ((__noreturn__))
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */ /* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__ #if ! defined lint || defined __GNUC__
# define YYUSE(E) ((void) (E)) # define YYUSE(E) ((void) (E))
...@@ -287,24 +300,26 @@ typedef short int yytype_int16; ...@@ -287,24 +300,26 @@ typedef short int yytype_int16;
# define YYUSE(E) /* empty */ # define YYUSE(E) /* empty */
#endif #endif
/* Identity function, used to suppress warnings about constant conditions. */ #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
#ifndef lint /* Suppress an incorrect diagnostic about yylval being uninitialized. */
# define YYID(N) (N) # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
#else _Pragma ("GCC diagnostic push") \
#if (defined __STDC__ || defined __C99__FUNC__ \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
|| defined __cplusplus || defined _MSC_VER) _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
static int # define YY_IGNORE_MAYBE_UNINITIALIZED_END \
YYID (int yyi) _Pragma ("GCC diagnostic pop")
#else #else
static int # define YY_INITIAL_VALUE(Value) Value
YYID (yyi)
int yyi;
#endif #endif
{ #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
return yyi; # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
} # define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif #endif
#if ! defined yyoverflow || YYERROR_VERBOSE #if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */ /* The parser invokes alloca or malloc; define the necessary symbols. */
...@@ -322,8 +337,7 @@ YYID (yyi) ...@@ -322,8 +337,7 @@ YYID (yyi)
# define alloca _alloca # define alloca _alloca
# else # else
# define YYSTACK_ALLOC alloca # define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS # ifndef EXIT_SUCCESS
...@@ -335,8 +349,8 @@ YYID (yyi) ...@@ -335,8 +349,8 @@ YYID (yyi)
# endif # endif
# ifdef YYSTACK_ALLOC # ifdef YYSTACK_ALLOC
/* Pacify GCC's `empty if-body' warning. */ /* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM # ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack, /* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely and a page size can be as small as 4096 bytes. So we cannot safely
...@@ -352,7 +366,7 @@ YYID (yyi) ...@@ -352,7 +366,7 @@ YYID (yyi)
# endif # endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \ # if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \ && ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free))) && (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS # ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0 # define EXIT_SUCCESS 0
...@@ -360,15 +374,13 @@ YYID (yyi) ...@@ -360,15 +374,13 @@ YYID (yyi)
# endif # endif
# ifndef YYMALLOC # ifndef YYMALLOC
# define YYMALLOC malloc # define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ # if ! defined malloc && ! defined EXIT_SUCCESS
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif # endif
# endif # endif
# ifndef YYFREE # ifndef YYFREE
# define YYFREE free # define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ # if ! defined free && ! defined EXIT_SUCCESS
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */ void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif # endif
# endif # endif
...@@ -378,7 +390,7 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */ ...@@ -378,7 +390,7 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */
#if (! defined yyoverflow \ #if (! defined yyoverflow \
&& (! defined __cplusplus \ && (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */ /* A type that is properly aligned for any stack member. */
union yyalloc union yyalloc
...@@ -403,16 +415,16 @@ union yyalloc ...@@ -403,16 +415,16 @@ union yyalloc
elements in the stack, and YYPTR gives the new location of the elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next stack. Advance YYPTR to a properly aligned location for the next
stack. */ stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \ do \
{ \ { \
YYSIZE_T yynewbytes; \ YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \ Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \ yyptr += yynewbytes / sizeof (*yyptr); \
} \ } \
while (YYID (0)) while (0)
#endif #endif
...@@ -431,7 +443,7 @@ union yyalloc ...@@ -431,7 +443,7 @@ union yyalloc
for (yyi = 0; yyi < (Count); yyi++) \ for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \ (Dst)[yyi] = (Src)[yyi]; \
} \ } \
while (YYID (0)) while (0)
# endif # endif
# endif # endif
#endif /* !YYCOPY_NEEDED */ #endif /* !YYCOPY_NEEDED */
...@@ -439,25 +451,27 @@ union yyalloc ...@@ -439,25 +451,27 @@ union yyalloc
/* YYFINAL -- State number of the termination state. */ /* YYFINAL -- State number of the termination state. */
#define YYFINAL 4 #define YYFINAL 4
/* YYLAST -- Last index in YYTABLE. */ /* YYLAST -- Last index in YYTABLE. */
#define YYLAST 515 #define YYLAST 513
/* YYNTOKENS -- Number of terminals. */ /* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 54 #define YYNTOKENS 54
/* YYNNTS -- Number of nonterminals. */ /* YYNNTS -- Number of nonterminals. */
#define YYNNTS 49 #define YYNNTS 49
/* YYNRULES -- Number of rules. */ /* YYNRULES -- Number of rules. */
#define YYNRULES 133 #define YYNRULES 132
/* YYNRULES -- Number of states. */ /* YYNSTATES -- Number of states. */
#define YYNSTATES 188 #define YYNSTATES 186
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
by yylex, with out-of-bounds checking. */
#define YYUNDEFTOK 2 #define YYUNDEFTOK 2
#define YYMAXUTOK 299 #define YYMAXUTOK 299
#define YYTRANSLATE(YYX) \ #define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, without out-of-bounds checking. */
static const yytype_uint8 yytranslate[] = static const yytype_uint8 yytranslate[] =
{ {
0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
...@@ -493,69 +507,7 @@ static const yytype_uint8 yytranslate[] = ...@@ -493,69 +507,7 @@ static const yytype_uint8 yytranslate[] =
}; };
#if YYDEBUG #if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
YYRHS. */
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 5, 8, 9, 12, 13, 18, 19,
23, 25, 27, 29, 31, 34, 37, 41, 42, 44,
46, 50, 55, 56, 58, 60, 63, 65, 67, 69,
71, 73, 75, 77, 79, 81, 86, 88, 91, 94,
97, 101, 105, 109, 112, 115, 118, 120, 122, 124,
126, 128, 130, 132, 134, 136, 138, 140, 143, 144,
146, 148, 151, 153, 155, 157, 159, 162, 164, 166,
168, 173, 178, 181, 185, 189, 192, 194, 196, 198,
203, 208, 211, 215, 219, 222, 224, 228, 229, 231,
233, 237, 240, 243, 245, 246, 248, 250, 255, 260,
263, 267, 271, 275, 276, 278, 281, 285, 289, 290,
292, 294, 297, 301, 304, 305, 307, 309, 313, 316,
319, 321, 324, 325, 328, 332, 337, 339, 343, 345,
349, 352, 353, 355
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int8 yyrhs[] =
{
55, 0, -1, 56, -1, 55, 56, -1, -1, 57,
58, -1, -1, 12, 23, 59, 61, -1, -1, 23,
60, 61, -1, 61, -1, 85, -1, 100, -1, 102,
-1, 1, 45, -1, 1, 46, -1, 65, 62, 45,
-1, -1, 63, -1, 64, -1, 63, 47, 64, -1,
75, 101, 96, 86, -1, -1, 66, -1, 67, -1,
66, 67, -1, 68, -1, 69, -1, 5, -1, 17,
-1, 21, -1, 11, -1, 14, -1, 70, -1, 74,
-1, 28, 48, 82, 49, -1, 32, -1, 22, 38,
-1, 24, 38, -1, 10, 38, -1, 22, 38, 88,
-1, 24, 38, 88, -1, 10, 38, 97, -1, 10,
97, -1, 22, 88, -1, 24, 88, -1, 7, -1,
19, -1, 15, -1, 16, -1, 20, -1, 25, -1,
13, -1, 9, -1, 26, -1, 6, -1, 42, -1,
50, 72, -1, -1, 73, -1, 74, -1, 73, 74,
-1, 8, -1, 27, -1, 31, -1, 18, -1, 71,
75, -1, 76, -1, 38, -1, 42, -1, 76, 48,
79, 49, -1, 76, 48, 1, 49, -1, 76, 34,
-1, 48, 75, 49, -1, 48, 1, 49, -1, 71,
77, -1, 78, -1, 38, -1, 42, -1, 78, 48,
79, 49, -1, 78, 48, 1, 49, -1, 78, 34,
-1, 48, 77, 49, -1, 48, 1, 49, -1, 80,
37, -1, 80, -1, 81, 47, 37, -1, -1, 81,
-1, 82, -1, 81, 47, 82, -1, 66, 83, -1,
71, 83, -1, 84, -1, -1, 38, -1, 42, -1,
84, 48, 79, 49, -1, 84, 48, 1, 49, -1,
84, 34, -1, 48, 83, 49, -1, 48, 1, 49,
-1, 65, 75, 33, -1, -1, 87, -1, 51, 35,
-1, 52, 89, 46, -1, 52, 1, 46, -1, -1,
90, -1, 91, -1, 90, 91, -1, 65, 92, 45,
-1, 1, 45, -1, -1, 93, -1, 94, -1, 93,
47, 94, -1, 77, 96, -1, 38, 95, -1, 95,
-1, 53, 35, -1, -1, 96, 31, -1, 52, 98,
46, -1, 52, 98, 47, 46, -1, 99, -1, 98,
47, 99, -1, 38, -1, 38, 51, 35, -1, 30,
45, -1, -1, 30, -1, 29, 48, 38, 49, 45,
-1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] = static const yytype_uint16 yyrline[] =
{ {
0, 124, 124, 125, 129, 129, 135, 135, 137, 137, 0, 124, 124, 125, 129, 129, 135, 135, 137, 137,
...@@ -565,13 +517,13 @@ static const yytype_uint16 yyrline[] = ...@@ -565,13 +517,13 @@ static const yytype_uint16 yyrline[] =
237, 239, 241, 246, 249, 250, 254, 255, 256, 257, 237, 239, 241, 246, 249, 250, 254, 255, 256, 257,
258, 259, 260, 261, 262, 263, 264, 268, 273, 274, 258, 259, 260, 261, 262, 263, 264, 268, 273, 274,
278, 279, 283, 283, 283, 284, 292, 293, 297, 306, 278, 279, 283, 283, 283, 284, 292, 293, 297, 306,
315, 317, 319, 321, 323, 330, 331, 335, 336, 337, 315, 317, 319, 321, 328, 329, 333, 334, 335, 337,
339, 341, 343, 345, 350, 351, 352, 356, 357, 361, 339, 341, 343, 348, 349, 350, 354, 355, 359, 360,
362, 367, 372, 374, 378, 379, 387, 391, 393, 395, 365, 370, 372, 376, 377, 385, 389, 391, 393, 395,
397, 399, 404, 413, 414, 419, 424, 425, 429, 430, 397, 402, 411, 412, 417, 422, 423, 427, 428, 432,
434, 435, 439, 441, 446, 447, 451, 452, 456, 457, 433, 437, 439, 444, 445, 449, 450, 454, 455, 456,
458, 462, 466, 467, 471, 472, 476, 477, 480, 485, 460, 464, 465, 469, 470, 474, 475, 478, 483, 491,
493, 497, 498, 502 495, 496, 500
}; };
#endif #endif
...@@ -606,13 +558,13 @@ static const char *const yytname[] = ...@@ -606,13 +558,13 @@ static const char *const yytname[] =
"member_declarator_list_opt", "member_declarator_list", "member_declarator_list_opt", "member_declarator_list",
"member_declarator", "member_bitfield_declarator", "attribute_opt", "member_declarator", "member_bitfield_declarator", "attribute_opt",
"enum_body", "enumerator_list", "enumerator", "asm_definition", "enum_body", "enumerator_list", "enumerator", "asm_definition",
"asm_phrase_opt", "export_definition", YY_NULL "asm_phrase_opt", "export_definition", YY_NULLPTR
}; };
#endif #endif
# ifdef YYPRINT # ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to /* YYTOKNUM[NUM] -- (External) token number corresponding to the
token YYLEX-NUM. */ (internal) symbol number NUM (which must be that of a token). */
static const yytype_uint16 yytoknum[] = static const yytype_uint16 yytoknum[] =
{ {
0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
...@@ -624,47 +576,44 @@ static const yytype_uint16 yytoknum[] = ...@@ -624,47 +576,44 @@ static const yytype_uint16 yytoknum[] =
}; };
# endif # endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ #define YYPACT_NINF -135
static const yytype_uint8 yyr1[] =
{
0, 54, 55, 55, 57, 56, 59, 58, 60, 58,
58, 58, 58, 58, 58, 58, 61, 62, 62, 63,
63, 64, 65, 65, 66, 66, 67, 67, 68, 68,
68, 68, 68, 69, 69, 69, 69, 69, 69, 69,
69, 69, 69, 69, 69, 69, 70, 70, 70, 70,
70, 70, 70, 70, 70, 70, 70, 71, 72, 72,
73, 73, 74, 74, 74, 74, 75, 75, 76, 76,
76, 76, 76, 76, 76, 77, 77, 78, 78, 78,
78, 78, 78, 78, 79, 79, 79, 80, 80, 81,
81, 82, 83, 83, 84, 84, 84, 84, 84, 84,
84, 84, 85, 86, 86, 87, 88, 88, 89, 89,
90, 90, 91, 91, 92, 92, 93, 93, 94, 94,
94, 95, 96, 96, 97, 97, 98, 98, 99, 99,
100, 101, 101, 102
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ #define yypact_value_is_default(Yystate) \
static const yytype_uint8 yyr2[] = (!!((Yystate) == (-135)))
#define YYTABLE_NINF -109
#define yytable_value_is_error(Yytable_value) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{ {
0, 2, 1, 2, 0, 2, 0, 4, 0, 3, -135, 38, -135, 206, -135, -135, 22, -135, -135, -135,
1, 1, 1, 1, 2, 2, 3, 0, 1, 1, -135, -135, -24, -135, 20, -135, -135, -135, -135, -135,
3, 4, 0, 1, 1, 2, 1, 1, 1, 1, -135, -135, -135, -135, -23, -135, 6, -135, -135, -135,
1, 1, 1, 1, 1, 4, 1, 2, 2, 2, -2, 15, 24, -135, -135, -135, -135, -135, 41, 471,
3, 3, 3, 2, 2, 2, 1, 1, 1, 1, -135, -135, -135, -135, -135, -135, -135, -135, -135, -135,
1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 13, 36, -135, -135, 35, 106, -135, 471, 35, -135,
1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 471, 44, -135, -135, -135, 41, 39, 45, 48, -135,
4, 4, 2, 3, 3, 2, 1, 1, 1, 4, 41, -10, 25, -135, -135, 47, 34, -135, 471, -135,
4, 2, 3, 3, 2, 1, 3, 0, 1, 1, 26, -26, 53, 156, -135, -135, 41, -135, 387, 52,
3, 2, 2, 1, 0, 1, 1, 4, 4, 2, 57, 59, -135, 39, -135, -135, 41, -135, -135, -135,
3, 3, 3, 0, 1, 2, 3, 3, 0, 1, -135, -135, 252, 67, -135, -21, -135, -135, -135, 51,
1, 2, 3, 2, 0, 1, 1, 3, 2, 2, -135, 12, 83, 46, -135, 27, 84, 88, -135, -135,
1, 2, 0, 2, 3, 4, 1, 3, 1, 3, -135, 91, -135, 109, -135, -135, 3, 55, -135, 30,
2, 0, 1, 5 -135, 95, -135, -135, -135, -20, 92, 93, 108, 96,
-135, -135, -135, -135, -135, 97, -135, 98, -135, -135,
118, -135, 297, -135, -26, 101, -135, 104, -135, -135,
342, -135, -135, 120, -135, -135, -135, -135, -135, 433,
-135, -135, 111, 119, -135, -135, -135, 130, 136, -135,
-135, -135, -135, -135, -135, -135
}; };
/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE doesn't specify something else to do. Zero Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */ means the default is an error. */
static const yytype_uint8 yydefact[] = static const yytype_uint8 yydefact[] =
{ {
4, 4, 2, 0, 1, 3, 0, 28, 55, 46, 4, 4, 2, 0, 1, 3, 0, 28, 55, 46,
...@@ -673,191 +622,158 @@ static const yytype_uint8 yydefact[] = ...@@ -673,191 +622,158 @@ static const yytype_uint8 yydefact[] =
0, 0, 0, 64, 36, 56, 5, 10, 17, 23, 0, 0, 0, 64, 36, 56, 5, 10, 17, 23,
24, 26, 27, 33, 34, 11, 12, 13, 14, 15, 24, 26, 27, 33, 34, 11, 12, 13, 14, 15,
39, 0, 43, 6, 37, 0, 44, 22, 38, 45, 39, 0, 43, 6, 37, 0, 44, 22, 38, 45,
0, 0, 130, 68, 69, 0, 58, 0, 18, 19, 0, 0, 129, 68, 69, 0, 58, 0, 18, 19,
0, 131, 67, 25, 42, 128, 0, 126, 22, 40, 0, 130, 67, 25, 42, 127, 0, 125, 22, 40,
0, 114, 0, 0, 110, 9, 17, 41, 94, 0, 0, 113, 0, 0, 109, 9, 17, 41, 93, 0,
0, 0, 0, 57, 59, 60, 16, 0, 66, 132, 0, 0, 57, 59, 60, 16, 0, 66, 131, 101,
102, 122, 72, 0, 0, 124, 0, 7, 113, 107, 121, 72, 0, 0, 123, 0, 7, 112, 106, 76,
77, 78, 0, 0, 0, 122, 76, 0, 115, 116, 77, 0, 0, 0, 121, 75, 0, 114, 115, 119,
120, 106, 0, 111, 131, 95, 56, 0, 94, 91, 105, 0, 110, 130, 94, 56, 0, 93, 90, 92,
93, 35, 0, 74, 73, 61, 20, 103, 0, 0, 35, 0, 73, 61, 20, 102, 0, 0, 84, 87,
85, 88, 89, 129, 125, 127, 119, 0, 77, 0, 88, 128, 124, 126, 118, 0, 76, 0, 120, 74,
121, 75, 118, 81, 0, 112, 0, 0, 96, 0, 117, 80, 0, 111, 0, 0, 95, 0, 91, 98,
92, 99, 0, 133, 123, 0, 21, 104, 71, 70, 0, 132, 122, 0, 21, 103, 71, 70, 83, 0,
84, 0, 83, 82, 0, 0, 117, 101, 100, 0, 82, 81, 0, 0, 116, 100, 99, 0, 0, 104,
0, 105, 86, 90, 80, 79, 98, 97 85, 89, 79, 78, 97, 96
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 1, 2, 3, 36, 78, 57, 37, 67, 68,
69, 81, 39, 40, 41, 42, 43, 70, 93, 94,
44, 124, 72, 115, 116, 139, 140, 141, 142, 129,
130, 45, 166, 167, 56, 82, 83, 84, 117, 118,
119, 120, 137, 52, 76, 77, 46, 101, 47
}; };
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing /* YYPGOTO[NTERM-NUM]. */
STATE-NUM. */ static const yytype_int16 yypgoto[] =
#define YYPACT_NINF -92
static const yytype_int16 yypact[] =
{ {
-92, 19, -92, 208, -92, -92, 39, -92, -92, -92, -135, -135, 157, -135, -135, -135, -135, -48, -135, -135,
-92, -92, -27, -92, 23, -92, -92, -92, -92, -92, 90, -1, -60, -33, -135, -135, -135, -78, -135, -135,
-92, -92, -92, -92, -22, -92, 9, -92, -92, -92, -61, -31, -135, -92, -135, -134, -135, -135, -59, -41,
-6, 16, 25, -92, -92, -92, -92, -92, 31, 473, -135, -135, -135, -135, -18, -135, -135, 107, -135, -135,
-92, -92, -92, -92, -92, -92, -92, -92, -92, -92, 37, 80, 78, 143, -135, 94, -135, -135, -135
49, 37, -92, -92, 51, 108, -92, 473, 51, -92,
473, 59, -92, -92, -92, 12, -3, 60, 57, -92,
31, -7, 24, -92, -92, 55, 42, -92, 473, -92,
46, -21, 61, 158, -92, -92, 31, -92, 389, 71,
82, 88, 89, -92, -3, -92, -92, 31, -92, -92,
-92, -92, -92, 254, 73, -92, -24, -92, -92, -92,
90, -92, 17, 75, 45, -92, 32, 96, 95, -92,
-92, -92, 99, -92, 115, -92, -92, 3, 48, -92,
34, -92, 102, -92, -92, -92, -92, -11, 100, 103,
111, 104, -92, -92, -92, -92, -92, 106, -92, 113,
-92, -92, 126, -92, 299, -92, -21, 121, -92, 132,
-92, -92, 344, -92, -92, 125, -92, -92, -92, -92,
-92, 435, -92, -92, 138, 139, -92, -92, -92, 142,
143, -92, -92, -92, -92, -92, -92, -92
}; };
/* YYPGOTO[NTERM-NUM]. */ /* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] = static const yytype_int16 yydefgoto[] =
{ {
-92, -92, 192, -92, -92, -92, -92, -47, -92, -92, -1, 1, 2, 3, 36, 78, 57, 37, 67, 68,
97, 0, -60, -32, -92, -92, -92, -79, -92, -92, 69, 81, 39, 40, 41, 42, 43, 70, 92, 93,
-58, -26, -92, -38, -92, -91, -92, -92, -59, -28, 44, 123, 72, 114, 115, 137, 138, 139, 140, 128,
-92, -92, -92, -92, -20, -92, -92, 112, -92, -92, 129, 45, 164, 165, 56, 82, 83, 84, 116, 117,
41, 91, 83, 149, -92, 101, -92, -92, -92 118, 119, 135, 52, 76, 77, 46, 100, 47
}; };
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */ number is the opposite. If YYTABLE_NINF, syntax error. */
#define YYTABLE_NINF -110
static const yytype_int16 yytable[] = static const yytype_int16 yytable[] =
{ {
88, 89, 114, 38, 157, 10, 59, 73, 95, 128, 88, 89, 38, 113, 155, 94, 73, 71, 59, 85,
85, 50, 71, 91, 75, 20, 54, 110, 147, 4, 127, 162, 109, 145, 50, 54, 110, 75, 173, 147,
164, 111, 144, 99, 29, 51, 100, 112, 33, 66, 98, 149, 111, 99, 66, 142, 178, 112, 51, 55,
55, 107, 113, 114, 79, 114, 135, -94, 87, 92, 106, 163, 133, 113, 91, 113, 79, -93, 4, 97,
165, 125, 60, 88, 98, 158, 53, 58, 128, 128, 87, 124, 88, 53, 58, 156, 60, 10, 127, 127,
63, 127, -94, 66, 64, 148, 73, 86, 102, 111, 146, 126, -93, 66, 110, 73, 86, 20, 55, 101,
65, 55, 66, 175, 61, 112, 153, 66, 161, 63, 111, 151, 66, 61, 159, 51, 29, 48, 49, 62,
62, 180, 103, 64, 149, 75, 151, 114, 86, 65, 33, 107, 108, 102, 75, 152, 113, 86, 160, 63,
154, 66, 162, 148, 48, 49, 125, 111, 105, 106, 104, 105, 90, 64, 146, 157, 158, 55, 110, 65,
158, 108, 109, 112, 88, 66, 127, 90, 66, 159, 95, 66, 88, 124, 111, 96, 66, 156, 103, 120,
160, 51, 88, 55, 97, 96, 104, 121, 143, 80, 88, 130, 141, 126, 112, 66, 131, 80, 132, 88,
150, 88, 183, 7, 8, 9, 10, 11, 12, 13, 181, 7, 8, 9, 10, 11, 12, 13, 148, 15,
131, 15, 16, 17, 18, 19, 20, 21, 22, 23, 16, 17, 18, 19, 20, 21, 22, 23, 24, 153,
24, 132, 26, 27, 28, 29, 30, 133, 134, 33, 26, 27, 28, 29, 30, 154, 107, 33, 34, 98,
34, 155, 156, 113, 108, 99, -22, 163, 170, 168, 161, 166, 167, 169, -22, 168, 170, 171, 35, 162,
35, 171, 169, -22, -108, 172, -22, 164, -22, 122, 175, -22, -107, 176, -22, 179, -22, 121, 5, -22,
181, -22, 173, 7, 8, 9, 10, 11, 12, 13, 182, 7, 8, 9, 10, 11, 12, 13, 183, 15,
177, 15, 16, 17, 18, 19, 20, 21, 22, 23, 16, 17, 18, 19, 20, 21, 22, 23, 24, 184,
24, 178, 26, 27, 28, 29, 30, 184, 185, 33, 26, 27, 28, 29, 30, 185, 134, 33, 34, 144,
34, 186, 187, 5, 136, 123, -22, 176, 152, 74, 122, 174, 150, 74, -22, 0, 0, 0, 35, 143,
35, 146, 0, -22, -109, 0, -22, 145, -22, 6, 0, -22, -108, 0, -22, 0, -22, 6, 0, -22,
0, -22, 0, 7, 8, 9, 10, 11, 12, 13, 0, 7, 8, 9, 10, 11, 12, 13, 14, 15,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 26, 27, 28, 29, 30, 31, 32, 33, 34, 0,
34, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 35, 0,
35, 0, 0, -22, 0, 138, -22, 0, -22, 7, 0, -22, 0, 136, -22, 0, -22, 7, 8, 9,
8, 9, 10, 11, 12, 13, 0, 15, 16, 17, 10, 11, 12, 13, 0, 15, 16, 17, 18, 19,
18, 19, 20, 21, 22, 23, 24, 0, 26, 27, 20, 21, 22, 23, 24, 0, 26, 27, 28, 29,
28, 29, 30, 0, 0, 33, 34, 0, 0, 0, 30, 0, 0, 33, 34, 0, 0, 0, 0, -86,
0, -87, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 172, 0,
174, 0, 0, -87, 7, 8, 9, 10, 11, 12, 0, -86, 7, 8, 9, 10, 11, 12, 13, 0,
13, 0, 15, 16, 17, 18, 19, 20, 21, 22, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
23, 24, 0, 26, 27, 28, 29, 30, 0, 0, 0, 26, 27, 28, 29, 30, 0, 0, 33, 34,
33, 34, 0, 0, 0, 0, -87, 0, 0, 0, 0, 0, 0, 0, -86, 0, 0, 0, 0, 35,
0, 35, 0, 0, 0, 179, 0, 0, -87, 7, 0, 0, 0, 177, 0, 0, -86, 7, 8, 9,
8, 9, 10, 11, 12, 13, 0, 15, 16, 17, 10, 11, 12, 13, 0, 15, 16, 17, 18, 19,
18, 19, 20, 21, 22, 23, 24, 0, 26, 27, 20, 21, 22, 23, 24, 0, 26, 27, 28, 29,
28, 29, 30, 0, 0, 33, 34, 0, 0, 0, 30, 0, 0, 33, 34, 0, 0, 0, 0, -86,
0, -87, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0,
0, 0, 0, -87, 7, 8, 9, 10, 11, 12, 0, -86, 7, 8, 9, 10, 11, 12, 13, 0,
13, 0, 15, 16, 17, 18, 19, 20, 21, 22, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
23, 24, 0, 26, 27, 28, 29, 30, 0, 0, 0, 26, 27, 28, 29, 30, 0, 0, 33, 34,
33, 34, 0, 0, 0, 0, 0, 125, 0, 0, 0, 0, 0, 0, 0, 124, 0, 0, 0, 125,
0, 126, 0, 0, 0, 0, 0, 127, 0, 66, 0, 0, 0, 0, 0, 126, 0, 66, 7, 8,
7, 8, 9, 10, 11, 12, 13, 0, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 26,
27, 28, 29, 30, 0, 0, 33, 34, 0, 0,
0, 0, 182, 0, 0, 0, 0, 35, 7, 8,
9, 10, 11, 12, 13, 0, 15, 16, 17, 18, 9, 10, 11, 12, 13, 0, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 26, 27, 28, 19, 20, 21, 22, 23, 24, 0, 26, 27, 28,
29, 30, 0, 0, 33, 34, 0, 0, 0, 0, 29, 30, 0, 0, 33, 34, 0, 0, 0, 0,
0, 0, 0, 0, 0, 35 180, 0, 0, 0, 0, 35, 7, 8, 9, 10,
11, 12, 13, 0, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 26, 27, 28, 29, 30,
0, 0, 33, 34, 0, 0, 0, 0, 0, 0,
0, 0, 0, 35
}; };
#define yypact_value_is_default(Yystate) \
(!!((Yystate) == (-92)))
#define yytable_value_is_error(Yytable_value) \
YYID (0)
static const yytype_int16 yycheck[] = static const yytype_int16 yycheck[] =
{ {
60, 60, 81, 3, 1, 8, 26, 39, 66, 88, 60, 60, 3, 81, 1, 66, 39, 38, 26, 57,
57, 38, 38, 1, 38, 18, 38, 38, 1, 0, 88, 31, 38, 1, 38, 38, 42, 38, 152, 111,
31, 42, 46, 30, 27, 52, 33, 48, 31, 50, 30, 113, 48, 33, 50, 46, 160, 53, 52, 52,
52, 78, 53, 112, 54, 114, 94, 34, 58, 65, 78, 51, 93, 111, 65, 113, 54, 34, 0, 70,
51, 38, 48, 103, 70, 42, 23, 38, 127, 128, 58, 38, 102, 23, 38, 42, 48, 8, 126, 127,
38, 48, 49, 50, 42, 38, 88, 57, 34, 42, 38, 48, 49, 50, 42, 88, 57, 18, 52, 34,
48, 52, 50, 154, 48, 48, 34, 50, 34, 38, 48, 34, 50, 48, 34, 52, 27, 45, 46, 45,
45, 162, 48, 42, 112, 38, 114, 156, 78, 48, 31, 45, 46, 48, 38, 48, 154, 78, 48, 38,
48, 50, 48, 38, 45, 46, 38, 42, 46, 47, 46, 47, 38, 42, 38, 126, 127, 52, 42, 48,
42, 45, 46, 48, 154, 50, 48, 38, 50, 127, 45, 50, 152, 38, 48, 47, 50, 42, 51, 46,
128, 52, 162, 52, 47, 45, 51, 46, 35, 1, 160, 49, 35, 48, 53, 50, 49, 1, 49, 169,
35, 171, 171, 5, 6, 7, 8, 9, 10, 11, 169, 5, 6, 7, 8, 9, 10, 11, 35, 13,
49, 13, 14, 15, 16, 17, 18, 19, 20, 21, 14, 15, 16, 17, 18, 19, 20, 21, 22, 45,
22, 49, 24, 25, 26, 27, 28, 49, 49, 31, 24, 25, 26, 27, 28, 47, 45, 31, 32, 30,
32, 45, 47, 53, 45, 30, 38, 45, 37, 49, 45, 49, 49, 47, 38, 37, 49, 49, 42, 31,
42, 47, 49, 45, 46, 49, 48, 31, 50, 1, 49, 45, 46, 49, 48, 35, 50, 1, 1, 53,
35, 53, 49, 5, 6, 7, 8, 9, 10, 11, 49, 5, 6, 7, 8, 9, 10, 11, 49, 13,
49, 13, 14, 15, 16, 17, 18, 19, 20, 21, 14, 15, 16, 17, 18, 19, 20, 21, 22, 49,
22, 49, 24, 25, 26, 27, 28, 49, 49, 31, 24, 25, 26, 27, 28, 49, 96, 31, 32, 109,
32, 49, 49, 1, 97, 83, 38, 156, 115, 50, 83, 154, 114, 50, 38, -1, -1, -1, 42, 105,
42, 110, -1, 45, 46, -1, 48, 106, 50, 1, -1, 45, 46, -1, 48, -1, 50, 1, -1, 53,
-1, 53, -1, 5, 6, 7, 8, 9, 10, 11, -1, 5, 6, 7, 8, 9, 10, 11, 12, 13,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1,
32, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, 42, -1,
42, -1, -1, 45, -1, 1, 48, -1, 50, 5, -1, 45, -1, 1, 48, -1, 50, 5, 6, 7,
6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17,
16, 17, 18, 19, 20, 21, 22, -1, 24, 25, 18, 19, 20, 21, 22, -1, 24, 25, 26, 27,
26, 27, 28, -1, -1, 31, 32, -1, -1, -1, 28, -1, -1, 31, 32, -1, -1, -1, -1, 37,
-1, 37, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, 1, -1,
1, -1, -1, 49, 5, 6, 7, 8, 9, 10, -1, 49, 5, 6, 7, 8, 9, 10, 11, -1,
11, -1, 13, 14, 15, 16, 17, 18, 19, 20, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
21, 22, -1, 24, 25, 26, 27, 28, -1, -1, -1, 24, 25, 26, 27, 28, -1, -1, 31, 32,
31, 32, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 42,
-1, 42, -1, -1, -1, 1, -1, -1, 49, 5, -1, -1, -1, 1, -1, -1, 49, 5, 6, 7,
6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17,
16, 17, 18, 19, 20, 21, 22, -1, 24, 25, 18, 19, 20, 21, 22, -1, 24, 25, 26, 27,
26, 27, 28, -1, -1, 31, 32, -1, -1, -1, 28, -1, -1, 31, 32, -1, -1, -1, -1, 37,
-1, 37, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1,
-1, -1, -1, 49, 5, 6, 7, 8, 9, 10, -1, 49, 5, 6, 7, 8, 9, 10, 11, -1,
11, -1, 13, 14, 15, 16, 17, 18, 19, 20, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
21, 22, -1, 24, 25, 26, 27, 28, -1, -1, -1, 24, 25, 26, 27, 28, -1, -1, 31, 32,
31, 32, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, 42,
-1, 42, -1, -1, -1, -1, -1, 48, -1, 50, -1, -1, -1, -1, -1, 48, -1, 50, 5, 6,
5, 6, 7, 8, 9, 10, 11, -1, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, -1, 24,
25, 26, 27, 28, -1, -1, 31, 32, -1, -1,
-1, -1, 37, -1, -1, -1, -1, 42, 5, 6,
7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, -1, 24, 25, 26, 17, 18, 19, 20, 21, 22, -1, 24, 25, 26,
27, 28, -1, -1, 31, 32, -1, -1, -1, -1, 27, 28, -1, -1, 31, 32, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 42 37, -1, -1, -1, -1, 42, 5, 6, 7, 8,
9, 10, 11, -1, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, -1, 24, 25, 26, 27, 28,
-1, -1, 31, 32, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 42
}; };
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */ symbol of state STATE-NUM. */
static const yytype_uint8 yystos[] = static const yytype_uint8 yystos[] =
{ {
0, 55, 56, 57, 0, 56, 1, 5, 6, 7, 0, 55, 56, 57, 0, 56, 1, 5, 6, 7,
...@@ -869,42 +785,66 @@ static const yytype_uint8 yystos[] = ...@@ -869,42 +785,66 @@ static const yytype_uint8 yystos[] =
48, 48, 45, 38, 42, 48, 50, 62, 63, 64, 48, 48, 45, 38, 42, 48, 50, 62, 63, 64,
71, 75, 76, 67, 97, 38, 98, 99, 59, 88, 71, 75, 76, 67, 97, 38, 98, 99, 59, 88,
1, 65, 89, 90, 91, 61, 65, 88, 66, 82, 1, 65, 89, 90, 91, 61, 65, 88, 66, 82,
38, 1, 75, 72, 73, 74, 45, 47, 75, 30, 38, 75, 72, 73, 74, 45, 47, 75, 30, 33,
33, 101, 34, 48, 51, 46, 47, 61, 45, 46, 101, 34, 48, 51, 46, 47, 61, 45, 46, 38,
38, 42, 48, 53, 71, 77, 78, 92, 93, 94, 42, 48, 53, 71, 77, 78, 92, 93, 94, 95,
95, 46, 1, 91, 75, 38, 42, 48, 71, 83, 46, 1, 91, 75, 38, 42, 48, 71, 83, 84,
84, 49, 49, 49, 49, 74, 64, 96, 1, 79, 49, 49, 49, 74, 64, 96, 1, 79, 80, 81,
80, 81, 82, 35, 46, 99, 95, 1, 38, 77, 82, 35, 46, 99, 95, 1, 38, 77, 35, 77,
35, 77, 96, 34, 48, 45, 47, 1, 42, 83, 96, 34, 48, 45, 47, 1, 42, 83, 83, 34,
83, 34, 48, 45, 31, 51, 86, 87, 49, 49, 48, 45, 31, 51, 86, 87, 49, 49, 37, 47,
37, 47, 49, 49, 1, 79, 94, 49, 49, 1, 49, 49, 1, 79, 94, 49, 49, 1, 79, 35,
79, 35, 37, 82, 49, 49, 49, 49 37, 82, 49, 49, 49, 49
}; };
#define yyerrok (yyerrstatus = 0) /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
#define yyclearin (yychar = YYEMPTY) static const yytype_uint8 yyr1[] =
#define YYEMPTY (-2) {
#define YYEOF 0 0, 54, 55, 55, 57, 56, 59, 58, 60, 58,
58, 58, 58, 58, 58, 58, 61, 62, 62, 63,
#define YYACCEPT goto yyacceptlab 63, 64, 65, 65, 66, 66, 67, 67, 68, 68,
#define YYABORT goto yyabortlab 68, 68, 68, 69, 69, 69, 69, 69, 69, 69,
#define YYERROR goto yyerrorlab 69, 69, 69, 69, 69, 69, 70, 70, 70, 70,
70, 70, 70, 70, 70, 70, 70, 71, 72, 72,
73, 73, 74, 74, 74, 74, 75, 75, 76, 76,
/* Like YYERROR except do call yyerror. This remains here temporarily 76, 76, 76, 76, 77, 77, 78, 78, 78, 78,
to ease the transition to the new meaning of YYERROR, for GCC. 78, 78, 78, 79, 79, 79, 80, 80, 81, 81,
Once GCC version 2 has supplanted version 1, this can go. However, 82, 83, 83, 84, 84, 84, 84, 84, 84, 84,
YYFAIL appears to be in use. Nevertheless, it is formally deprecated 84, 85, 86, 86, 87, 88, 88, 89, 89, 90,
in Bison 2.4.2's NEWS entry, where a plan to phase it out is 90, 91, 91, 92, 92, 93, 93, 94, 94, 94,
discussed. */ 95, 96, 96, 97, 97, 98, 98, 99, 99, 100,
101, 101, 102
#define YYFAIL goto yyerrlab };
#if defined YYFAIL
/* This is here to suppress warnings from the GCC cpp's /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
-Wunused-macros. Normally we don't worry about that warning, but static const yytype_uint8 yyr2[] =
some users do, and we want to make it easy for users to remove {
YYFAIL uses, which will produce warnings from Bison 2.5. */ 0, 2, 1, 2, 0, 2, 0, 4, 0, 3,
#endif 1, 1, 1, 1, 2, 2, 3, 0, 1, 1,
3, 4, 0, 1, 1, 2, 1, 1, 1, 1,
1, 1, 1, 1, 1, 4, 1, 2, 2, 2,
3, 3, 3, 2, 2, 2, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 2, 0, 1,
1, 2, 1, 1, 1, 1, 2, 1, 1, 1,
4, 4, 2, 3, 2, 1, 1, 1, 4, 4,
2, 3, 3, 2, 1, 3, 0, 1, 1, 3,
2, 2, 1, 0, 1, 1, 4, 4, 2, 3,
3, 3, 0, 1, 2, 3, 3, 0, 1, 1,
2, 3, 2, 0, 1, 1, 3, 2, 2, 1,
2, 0, 2, 3, 4, 1, 3, 1, 3, 2,
0, 1, 5
};
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY (-2)
#define YYEOF 0
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYRECOVERING() (!!yyerrstatus) #define YYRECOVERING() (!!yyerrstatus)
...@@ -921,27 +861,15 @@ do \ ...@@ -921,27 +861,15 @@ do \
else \ else \
{ \ { \
yyerror (YY_("syntax error: cannot back up")); \ yyerror (YY_("syntax error: cannot back up")); \
YYERROR; \ YYERROR; \
} \ } \
while (YYID (0)) while (0)
/* Error token number */ /* Error token number */
#define YYTERROR 1 #define YYTERROR 1
#define YYERRCODE 256 #define YYERRCODE 256
/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif
/* YYLEX -- calling `yylex' with the right arguments. */
#ifdef YYLEX_PARAM
# define YYLEX yylex (YYLEX_PARAM)
#else
# define YYLEX yylex ()
#endif
/* Enable debugging if requested. */ /* Enable debugging if requested. */
#if YYDEBUG #if YYDEBUG
...@@ -951,40 +879,36 @@ while (YYID (0)) ...@@ -951,40 +879,36 @@ while (YYID (0))
# define YYFPRINTF fprintf # define YYFPRINTF fprintf
# endif # endif
# define YYDPRINTF(Args) \ # define YYDPRINTF(Args) \
do { \ do { \
if (yydebug) \ if (yydebug) \
YYFPRINTF Args; \ YYFPRINTF Args; \
} while (YYID (0)) } while (0)
/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \ do { \
if (yydebug) \ if (yydebug) \
{ \ { \
YYFPRINTF (stderr, "%s ", Title); \ YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \ yy_symbol_print (stderr, \
Type, Value); \ Type, Value); \
YYFPRINTF (stderr, "\n"); \ YYFPRINTF (stderr, "\n"); \
} \ } \
} while (YYID (0)) } while (0)
/*--------------------------------. /*----------------------------------------.
| Print this symbol on YYOUTPUT. | | Print this symbol's value on YYOUTPUT. |
`--------------------------------*/ `----------------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{ {
FILE *yyo = yyoutput; FILE *yyo = yyoutput;
YYUSE (yyo); YYUSE (yyo);
...@@ -993,14 +917,8 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep) ...@@ -993,14 +917,8 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep)
# ifdef YYPRINT # ifdef YYPRINT
if (yytype < YYNTOKENS) if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
YYUSE (yyoutput);
# endif # endif
switch (yytype) YYUSE (yytype);
{
default:
break;
}
} }
...@@ -1008,22 +926,11 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep) ...@@ -1008,22 +926,11 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep)
| Print this symbol on YYOUTPUT. | | Print this symbol on YYOUTPUT. |
`--------------------------------*/ `--------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{ {
if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "%s %s (",
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
else
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep); yy_symbol_value_print (yyoutput, yytype, yyvaluep);
YYFPRINTF (yyoutput, ")"); YYFPRINTF (yyoutput, ")");
...@@ -1034,16 +941,8 @@ yy_symbol_print (yyoutput, yytype, yyvaluep) ...@@ -1034,16 +941,8 @@ yy_symbol_print (yyoutput, yytype, yyvaluep)
| TOP (included). | | TOP (included). |
`------------------------------------------------------------------*/ `------------------------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
#else
static void
yy_stack_print (yybottom, yytop)
yytype_int16 *yybottom;
yytype_int16 *yytop;
#endif
{ {
YYFPRINTF (stderr, "Stack now"); YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++) for (; yybottom <= yytop; yybottom++)
...@@ -1054,49 +953,42 @@ yy_stack_print (yybottom, yytop) ...@@ -1054,49 +953,42 @@ yy_stack_print (yybottom, yytop)
YYFPRINTF (stderr, "\n"); YYFPRINTF (stderr, "\n");
} }
# define YY_STACK_PRINT(Bottom, Top) \ # define YY_STACK_PRINT(Bottom, Top) \
do { \ do { \
if (yydebug) \ if (yydebug) \
yy_stack_print ((Bottom), (Top)); \ yy_stack_print ((Bottom), (Top)); \
} while (YYID (0)) } while (0)
/*------------------------------------------------. /*------------------------------------------------.
| Report that the YYRULE is going to be reduced. | | Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/ `------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void static void
yy_reduce_print (YYSTYPE *yyvsp, int yyrule) yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)
#else
static void
yy_reduce_print (yyvsp, yyrule)
YYSTYPE *yyvsp;
int yyrule;
#endif
{ {
unsigned long int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule]; int yynrhs = yyr2[yyrule];
int yyi; int yyi;
unsigned long int yylno = yyrline[yyrule];
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
yyrule - 1, yylno); yyrule - 1, yylno);
/* The symbols being reduced. */ /* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++) for (yyi = 0; yyi < yynrhs; yyi++)
{ {
YYFPRINTF (stderr, " $%d = ", yyi + 1); YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], yy_symbol_print (stderr,
&(yyvsp[(yyi + 1) - (yynrhs)]) yystos[yyssp[yyi + 1 - yynrhs]],
); &(yyvsp[(yyi + 1) - (yynrhs)])
);
YYFPRINTF (stderr, "\n"); YYFPRINTF (stderr, "\n");
} }
} }
# define YY_REDUCE_PRINT(Rule) \ # define YY_REDUCE_PRINT(Rule) \
do { \ do { \
if (yydebug) \ if (yydebug) \
yy_reduce_print (yyvsp, Rule); \ yy_reduce_print (yyssp, yyvsp, Rule); \
} while (YYID (0)) } while (0)
/* Nonzero means print parse trace. It is left uninitialized so that /* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */ multiple parsers can coexist. */
...@@ -1110,7 +1002,7 @@ int yydebug; ...@@ -1110,7 +1002,7 @@ int yydebug;
/* YYINITDEPTH -- initial size of the parser's stacks. */ /* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH #ifndef YYINITDEPTH
# define YYINITDEPTH 200 # define YYINITDEPTH 200
#endif #endif
...@@ -1133,15 +1025,8 @@ int yydebug; ...@@ -1133,15 +1025,8 @@ int yydebug;
# define yystrlen strlen # define yystrlen strlen
# else # else
/* Return the length of YYSTR. */ /* Return the length of YYSTR. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static YYSIZE_T static YYSIZE_T
yystrlen (const char *yystr) yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
const char *yystr;
#endif
{ {
YYSIZE_T yylen; YYSIZE_T yylen;
for (yylen = 0; yystr[yylen]; yylen++) for (yylen = 0; yystr[yylen]; yylen++)
...@@ -1157,16 +1042,8 @@ yystrlen (yystr) ...@@ -1157,16 +1042,8 @@ yystrlen (yystr)
# else # else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */ YYDEST. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static char * static char *
yystpcpy (char *yydest, const char *yysrc) yystpcpy (char *yydest, const char *yysrc)
#else
static char *
yystpcpy (yydest, yysrc)
char *yydest;
const char *yysrc;
#endif
{ {
char *yyd = yydest; char *yyd = yydest;
const char *yys = yysrc; const char *yys = yysrc;
...@@ -1196,27 +1073,27 @@ yytnamerr (char *yyres, const char *yystr) ...@@ -1196,27 +1073,27 @@ yytnamerr (char *yyres, const char *yystr)
char const *yyp = yystr; char const *yyp = yystr;
for (;;) for (;;)
switch (*++yyp) switch (*++yyp)
{ {
case '\'': case '\'':
case ',': case ',':
goto do_not_strip_quotes; goto do_not_strip_quotes;
case '\\': case '\\':
if (*++yyp != '\\') if (*++yyp != '\\')
goto do_not_strip_quotes; goto do_not_strip_quotes;
/* Fall through. */ /* Fall through. */
default: default:
if (yyres) if (yyres)
yyres[yyn] = *yyp; yyres[yyn] = *yyp;
yyn++; yyn++;
break; break;
case '"': case '"':
if (yyres) if (yyres)
yyres[yyn] = '\0'; yyres[yyn] = '\0';
return yyn; return yyn;
} }
do_not_strip_quotes: ; do_not_strip_quotes: ;
} }
...@@ -1239,11 +1116,11 @@ static int ...@@ -1239,11 +1116,11 @@ static int
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
yytype_int16 *yyssp, int yytoken) yytype_int16 *yyssp, int yytoken)
{ {
YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]); YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
YYSIZE_T yysize = yysize0; YYSIZE_T yysize = yysize0;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */ /* Internationalized format string. */
const char *yyformat = YY_NULL; const char *yyformat = YY_NULLPTR;
/* Arguments of yyformat. */ /* Arguments of yyformat. */
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
/* Number of reported tokens (one for the "unexpected", one per /* Number of reported tokens (one for the "unexpected", one per
...@@ -1251,10 +1128,6 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, ...@@ -1251,10 +1128,6 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
int yycount = 0; int yycount = 0;
/* There are many possibilities here to consider: /* There are many possibilities here to consider:
- Assume YYFAIL is not used. It's too flawed to consider. See
<http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
for details. YYERROR is fine as it does not invoke this
function.
- If this state is a consistent state with a default action, then - If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected is an error action. In that case, don't check for expected
...@@ -1304,7 +1177,7 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, ...@@ -1304,7 +1177,7 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
} }
yyarg[yycount++] = yytname[yyx]; yyarg[yycount++] = yytname[yyx];
{ {
YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]); YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
if (! (yysize <= yysize1 if (! (yysize <= yysize1
&& yysize1 <= YYSTACK_ALLOC_MAXIMUM)) && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
return 2; return 2;
...@@ -1371,31 +1244,17 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, ...@@ -1371,31 +1244,17 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
| Release the memory associated to this symbol. | | Release the memory associated to this symbol. |
`-----------------------------------------------*/ `-----------------------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
#else
static void
yydestruct (yymsg, yytype, yyvaluep)
const char *yymsg;
int yytype;
YYSTYPE *yyvaluep;
#endif
{ {
YYUSE (yyvaluep); YYUSE (yyvaluep);
if (!yymsg) if (!yymsg)
yymsg = "Deleting"; yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
switch (yytype) YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
{ YYUSE (yytype);
YY_IGNORE_MAYBE_UNINITIALIZED_END
default:
break;
}
} }
...@@ -1404,18 +1263,8 @@ yydestruct (yymsg, yytype, yyvaluep) ...@@ -1404,18 +1263,8 @@ yydestruct (yymsg, yytype, yyvaluep)
/* The lookahead symbol. */ /* The lookahead symbol. */
int yychar; int yychar;
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
/* The semantic value of the lookahead symbol. */ /* The semantic value of the lookahead symbol. */
YYSTYPE yylval YY_INITIAL_VALUE(yyval_default); YYSTYPE yylval;
/* Number of syntax errors so far. */ /* Number of syntax errors so far. */
int yynerrs; int yynerrs;
...@@ -1424,35 +1273,16 @@ int yynerrs; ...@@ -1424,35 +1273,16 @@ int yynerrs;
| yyparse. | | yyparse. |
`----------*/ `----------*/
#ifdef YYPARSE_PARAM
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void *YYPARSE_PARAM)
#else
int
yyparse (YYPARSE_PARAM)
void *YYPARSE_PARAM;
#endif
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int int
yyparse (void) yyparse (void)
#else
int
yyparse ()
#endif
#endif
{ {
int yystate; int yystate;
/* Number of tokens to shift before error messages enabled. */ /* Number of tokens to shift before error messages enabled. */
int yyerrstatus; int yyerrstatus;
/* The stacks and their tools: /* The stacks and their tools:
`yyss': related to states. 'yyss': related to states.
`yyvs': related to semantic values. 'yyvs': related to semantic values.
Refer to the stacks through separate pointers, to allow yyoverflow Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */ to reallocate them elsewhere. */
...@@ -1520,23 +1350,23 @@ yyparse () ...@@ -1520,23 +1350,23 @@ yyparse ()
#ifdef yyoverflow #ifdef yyoverflow
{ {
/* Give user a chance to reallocate the stack. Use copies of /* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into these so that the &'s don't force the real ones into
memory. */ memory. */
YYSTYPE *yyvs1 = yyvs; YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss; yytype_int16 *yyss1 = yyss;
/* Each stack pointer address is followed by the size of the /* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */ be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"), yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp), &yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp), &yyvs1, yysize * sizeof (*yyvsp),
&yystacksize); &yystacksize);
yyss = yyss1; yyss = yyss1;
yyvs = yyvs1; yyvs = yyvs1;
} }
#else /* no yyoverflow */ #else /* no yyoverflow */
# ifndef YYSTACK_RELOCATE # ifndef YYSTACK_RELOCATE
...@@ -1544,22 +1374,22 @@ yyparse () ...@@ -1544,22 +1374,22 @@ yyparse ()
# else # else
/* Extend the stack our own way. */ /* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize) if (YYMAXDEPTH <= yystacksize)
goto yyexhaustedlab; goto yyexhaustedlab;
yystacksize *= 2; yystacksize *= 2;
if (YYMAXDEPTH < yystacksize) if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH; yystacksize = YYMAXDEPTH;
{ {
yytype_int16 *yyss1 = yyss; yytype_int16 *yyss1 = yyss;
union yyalloc *yyptr = union yyalloc *yyptr =
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr) if (! yyptr)
goto yyexhaustedlab; goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs); YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE # undef YYSTACK_RELOCATE
if (yyss1 != yyssa) if (yyss1 != yyssa)
YYSTACK_FREE (yyss1); YYSTACK_FREE (yyss1);
} }
# endif # endif
#endif /* no yyoverflow */ #endif /* no yyoverflow */
...@@ -1568,10 +1398,10 @@ yyparse () ...@@ -1568,10 +1398,10 @@ yyparse ()
yyvsp = yyvs + yysize - 1; yyvsp = yyvs + yysize - 1;
YYDPRINTF ((stderr, "Stack size increased to %lu\n", YYDPRINTF ((stderr, "Stack size increased to %lu\n",
(unsigned long int) yystacksize)); (unsigned long int) yystacksize));
if (yyss + yystacksize - 1 <= yyssp) if (yyss + yystacksize - 1 <= yyssp)
YYABORT; YYABORT;
} }
YYDPRINTF ((stderr, "Entering state %d\n", yystate)); YYDPRINTF ((stderr, "Entering state %d\n", yystate));
...@@ -1600,7 +1430,7 @@ yybackup: ...@@ -1600,7 +1430,7 @@ yybackup:
if (yychar == YYEMPTY) if (yychar == YYEMPTY)
{ {
YYDPRINTF ((stderr, "Reading a token: ")); YYDPRINTF ((stderr, "Reading a token: "));
yychar = YYLEX; yychar = yylex ();
} }
if (yychar <= YYEOF) if (yychar <= YYEOF)
...@@ -1665,7 +1495,7 @@ yyreduce: ...@@ -1665,7 +1495,7 @@ yyreduce:
yylen = yyr2[yyn]; yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action: /* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'. '$$ = $1'.
Otherwise, the following line sets YYVAL to garbage. Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison This behavior is undocumented and Bison
...@@ -1679,483 +1509,560 @@ yyreduce: ...@@ -1679,483 +1509,560 @@ yyreduce:
switch (yyn) switch (yyn)
{ {
case 4: case 4:
#line 129 "parse.y" /* yacc.c:1646 */
{ is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; } { is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; }
#line 1515 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 5: case 5:
#line 131 "parse.y" /* yacc.c:1646 */
{ free_list(*(yyvsp[(2) - (2)]), NULL); *(yyvsp[(2) - (2)]) = NULL; } { free_list(*(yyvsp[0]), NULL); *(yyvsp[0]) = NULL; }
#line 1521 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 6: case 6:
#line 135 "parse.y" /* yacc.c:1646 */
{ is_typedef = 1; } { is_typedef = 1; }
#line 1527 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 7: case 7:
#line 136 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1533 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 8: case 8:
#line 137 "parse.y" /* yacc.c:1646 */
{ is_typedef = 1; } { is_typedef = 1; }
#line 1539 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 9: case 9:
#line 138 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1545 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 14: case 14:
#line 143 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1551 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 15: case 15:
#line 144 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1557 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 16: case 16:
#line 149 "parse.y" /* yacc.c:1646 */
{ if (current_name) { { if (current_name) {
struct string_list *decl = (*(yyvsp[(3) - (3)]))->next; struct string_list *decl = (*(yyvsp[0]))->next;
(*(yyvsp[(3) - (3)]))->next = NULL; (*(yyvsp[0]))->next = NULL;
add_symbol(current_name, add_symbol(current_name,
is_typedef ? SYM_TYPEDEF : SYM_NORMAL, is_typedef ? SYM_TYPEDEF : SYM_NORMAL,
decl, is_extern); decl, is_extern);
current_name = NULL; current_name = NULL;
} }
(yyval) = (yyvsp[(3) - (3)]); (yyval) = (yyvsp[0]);
} }
#line 1572 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 17: case 17:
#line 162 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = NULL; }
#line 1578 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 19: case 19:
#line 168 "parse.y" /* yacc.c:1646 */
{ struct string_list *decl = *(yyvsp[(1) - (1)]); { struct string_list *decl = *(yyvsp[0]);
*(yyvsp[(1) - (1)]) = NULL; *(yyvsp[0]) = NULL;
add_symbol(current_name, add_symbol(current_name,
is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern); is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
current_name = NULL; current_name = NULL;
(yyval) = (yyvsp[(1) - (1)]); (yyval) = (yyvsp[0]);
} }
#line 1590 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 20: case 20:
#line 176 "parse.y" /* yacc.c:1646 */
{ struct string_list *decl = *(yyvsp[(3) - (3)]); { struct string_list *decl = *(yyvsp[0]);
*(yyvsp[(3) - (3)]) = NULL; *(yyvsp[0]) = NULL;
free_list(*(yyvsp[(2) - (3)]), NULL); free_list(*(yyvsp[-1]), NULL);
*(yyvsp[(2) - (3)]) = decl_spec; *(yyvsp[-1]) = decl_spec;
add_symbol(current_name, add_symbol(current_name,
is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern); is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
current_name = NULL; current_name = NULL;
(yyval) = (yyvsp[(3) - (3)]); (yyval) = (yyvsp[0]);
} }
#line 1604 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 21: case 21:
#line 189 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]) ? (yyvsp[(4) - (4)]) : (yyvsp[(3) - (4)]) ? (yyvsp[(3) - (4)]) : (yyvsp[(2) - (4)]) ? (yyvsp[(2) - (4)]) : (yyvsp[(1) - (4)]); } { (yyval) = (yyvsp[0]) ? (yyvsp[0]) : (yyvsp[-1]) ? (yyvsp[-1]) : (yyvsp[-2]) ? (yyvsp[-2]) : (yyvsp[-3]); }
#line 1610 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 22: case 22:
#line 194 "parse.y" /* yacc.c:1646 */
{ decl_spec = NULL; } { decl_spec = NULL; }
#line 1616 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 24: case 24:
#line 199 "parse.y" /* yacc.c:1646 */
{ decl_spec = *(yyvsp[(1) - (1)]); } { decl_spec = *(yyvsp[0]); }
#line 1622 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 25: case 25:
#line 200 "parse.y" /* yacc.c:1646 */
{ decl_spec = *(yyvsp[(2) - (2)]); } { decl_spec = *(yyvsp[0]); }
#line 1628 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 26: case 26:
#line 205 "parse.y" /* yacc.c:1646 */
{ /* Version 2 checksumming ignores storage class, as that { /* Version 2 checksumming ignores storage class, as that
is really irrelevant to the linkage. */ is really irrelevant to the linkage. */
remove_node((yyvsp[(1) - (1)])); remove_node((yyvsp[0]));
(yyval) = (yyvsp[(1) - (1)]); (yyval) = (yyvsp[0]);
} }
#line 1638 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 31: case 31:
#line 217 "parse.y" /* yacc.c:1646 */
{ is_extern = 1; (yyval) = (yyvsp[(1) - (1)]); } { is_extern = 1; (yyval) = (yyvsp[0]); }
#line 1644 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 32: case 32:
#line 218 "parse.y" /* yacc.c:1646 */
{ is_extern = 0; (yyval) = (yyvsp[(1) - (1)]); } { is_extern = 0; (yyval) = (yyvsp[0]); }
#line 1650 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 37: case 37:
#line 230 "parse.y" /* yacc.c:1646 */
{ remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_STRUCT; (yyval) = (yyvsp[(2) - (2)]); } { remove_node((yyvsp[-1])); (*(yyvsp[0]))->tag = SYM_STRUCT; (yyval) = (yyvsp[0]); }
#line 1656 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 38: case 38:
#line 232 "parse.y" /* yacc.c:1646 */
{ remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_UNION; (yyval) = (yyvsp[(2) - (2)]); } { remove_node((yyvsp[-1])); (*(yyvsp[0]))->tag = SYM_UNION; (yyval) = (yyvsp[0]); }
#line 1662 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 39: case 39:
#line 234 "parse.y" /* yacc.c:1646 */
{ remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_ENUM; (yyval) = (yyvsp[(2) - (2)]); } { remove_node((yyvsp[-1])); (*(yyvsp[0]))->tag = SYM_ENUM; (yyval) = (yyvsp[0]); }
#line 1668 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 40: case 40:
#line 238 "parse.y" /* yacc.c:1646 */
{ record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_STRUCT); (yyval) = (yyvsp[(3) - (3)]); } { record_compound((yyvsp[-2]), (yyvsp[-1]), (yyvsp[0]), SYM_STRUCT); (yyval) = (yyvsp[0]); }
#line 1674 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 41: case 41:
#line 240 "parse.y" /* yacc.c:1646 */
{ record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_UNION); (yyval) = (yyvsp[(3) - (3)]); } { record_compound((yyvsp[-2]), (yyvsp[-1]), (yyvsp[0]), SYM_UNION); (yyval) = (yyvsp[0]); }
#line 1680 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 42: case 42:
#line 242 "parse.y" /* yacc.c:1646 */
{ record_compound((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), SYM_ENUM); (yyval) = (yyvsp[(3) - (3)]); } { record_compound((yyvsp[-2]), (yyvsp[-1]), (yyvsp[0]), SYM_ENUM); (yyval) = (yyvsp[0]); }
#line 1686 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 43: case 43:
#line 247 "parse.y" /* yacc.c:1646 */
{ add_symbol(NULL, SYM_ENUM, NULL, 0); (yyval) = (yyvsp[(2) - (2)]); } { add_symbol(NULL, SYM_ENUM, NULL, 0); (yyval) = (yyvsp[0]); }
#line 1692 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 44: case 44:
#line 249 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1698 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 45: case 45:
#line 250 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1704 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 56: case 56:
#line 264 "parse.y" /* yacc.c:1646 */
{ (*(yyvsp[(1) - (1)]))->tag = SYM_TYPEDEF; (yyval) = (yyvsp[(1) - (1)]); } { (*(yyvsp[0]))->tag = SYM_TYPEDEF; (yyval) = (yyvsp[0]); }
#line 1710 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 57: case 57:
#line 269 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); } { (yyval) = (yyvsp[0]) ? (yyvsp[0]) : (yyvsp[-1]); }
#line 1716 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 58: case 58:
#line 273 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = NULL; }
#line 1722 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 61: case 61:
#line 279 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1728 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 65: case 65:
#line 285 "parse.y" /* yacc.c:1646 */
{ /* restrict has no effect in prototypes so ignore it */ { /* restrict has no effect in prototypes so ignore it */
remove_node((yyvsp[(1) - (1)])); remove_node((yyvsp[0]));
(yyval) = (yyvsp[(1) - (1)]); (yyval) = (yyvsp[0]);
} }
#line 1737 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 66: case 66:
#line 292 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1743 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 68: case 68:
#line 298 "parse.y" /* yacc.c:1646 */
{ if (current_name != NULL) { { if (current_name != NULL) {
error_with_pos("unexpected second declaration name"); error_with_pos("unexpected second declaration name");
YYERROR; YYERROR;
} else { } else {
current_name = (*(yyvsp[(1) - (1)]))->string; current_name = (*(yyvsp[0]))->string;
(yyval) = (yyvsp[(1) - (1)]); (yyval) = (yyvsp[0]);
} }
} }
#line 1756 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 69: case 69:
#line 307 "parse.y" /* yacc.c:1646 */
{ if (current_name != NULL) { { if (current_name != NULL) {
error_with_pos("unexpected second declaration name"); error_with_pos("unexpected second declaration name");
YYERROR; YYERROR;
} else { } else {
current_name = (*(yyvsp[(1) - (1)]))->string; current_name = (*(yyvsp[0]))->string;
(yyval) = (yyvsp[(1) - (1)]); (yyval) = (yyvsp[0]);
} }
} }
#line 1769 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 70: case 70:
#line 316 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1775 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 71: case 71:
#line 318 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1781 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 72: case 72:
#line 320 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1787 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 73: case 73:
#line 322 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1793 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 74: case 74:
#line 328 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1799 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 75: case 78:
#line 336 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1805 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 79: case 79:
#line 338 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1811 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 80: case 80:
#line 340 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1817 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 81: case 81:
#line 342 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1823 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 82: case 82:
#line 344 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1829 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 83: case 83:
#line 348 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1835 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 84: case 85:
#line 350 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1841 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 86: case 86:
#line 354 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = NULL; }
#line 1847 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 87: case 89:
#line 361 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = (yyvsp[0]); }
#line 1853 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 90: case 90:
#line 366 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]) ? (yyvsp[0]) : (yyvsp[-1]); }
#line 1859 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 91: case 91:
#line 371 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); } { (yyval) = (yyvsp[0]) ? (yyvsp[0]) : (yyvsp[-1]); }
#line 1865 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 92: case 93:
#line 376 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); } { (yyval) = NULL; }
#line 1871 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 94: case 94:
#line 378 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { /* For version 2 checksums, we don't want to remember
private parameter names. */
remove_node((yyvsp[0]));
(yyval) = (yyvsp[0]);
}
#line 1881 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 95: case 95:
#line 386 "parse.y" /* yacc.c:1646 */
{ /* For version 2 checksums, we don't want to remember { remove_node((yyvsp[0]));
private parameter names. */ (yyval) = (yyvsp[0]);
remove_node((yyvsp[(1) - (1)]));
(yyval) = (yyvsp[(1) - (1)]);
} }
#line 1889 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 96: case 96:
#line 390 "parse.y" /* yacc.c:1646 */
{ remove_node((yyvsp[(1) - (1)])); { (yyval) = (yyvsp[0]); }
(yyval) = (yyvsp[(1) - (1)]); #line 1895 "parse.tab.c" /* yacc.c:1646 */
}
break; break;
case 97: case 97:
#line 392 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1901 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 98: case 98:
#line 394 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 1907 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 99: case 99:
#line 396 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1913 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 100: case 100:
#line 398 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1919 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 101: case 101:
#line 403 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { struct string_list *decl = *(yyvsp[-1]);
break; *(yyvsp[-1]) = NULL;
case 102:
{ struct string_list *decl = *(yyvsp[(2) - (3)]);
*(yyvsp[(2) - (3)]) = NULL;
add_symbol(current_name, SYM_NORMAL, decl, is_extern); add_symbol(current_name, SYM_NORMAL, decl, is_extern);
(yyval) = (yyvsp[(3) - (3)]); (yyval) = (yyvsp[0]);
} }
#line 1929 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 103: case 102:
#line 411 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = NULL; }
#line 1935 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 105: case 104:
#line 418 "parse.y" /* yacc.c:1646 */
{ remove_list((yyvsp[0]), &(*(yyvsp[-1]))->next); (yyval) = (yyvsp[0]); }
#line 1941 "parse.tab.c" /* yacc.c:1646 */
break;
{ remove_list((yyvsp[(2) - (2)]), &(*(yyvsp[(1) - (2)]))->next); (yyval) = (yyvsp[(2) - (2)]); } case 105:
#line 422 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[0]); }
#line 1947 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 106: case 106:
#line 423 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1953 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 107: case 107:
#line 427 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = NULL; }
#line 1959 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 108: case 110:
#line 433 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = (yyvsp[0]); }
#line 1965 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 111: case 111:
#line 438 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 1971 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 112: case 112:
#line 440 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 1977 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 113: case 113:
#line 444 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = NULL; }
#line 1983 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 114: case 116:
#line 450 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = (yyvsp[0]); }
#line 1989 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 117: case 117:
#line 454 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]) ? (yyvsp[0]) : (yyvsp[-1]); }
#line 1995 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 118: case 118:
#line 455 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]) ? (yyvsp[(2) - (2)]) : (yyvsp[(1) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 2001 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 119: case 120:
#line 460 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 2007 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 121: case 121:
#line 464 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); }
break;
case 122:
{ (yyval) = NULL; } { (yyval) = NULL; }
#line 2013 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 124: case 123:
#line 469 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(3) - (3)]); } { (yyval) = (yyvsp[0]); }
#line 2019 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 125: case 124:
#line 470 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(4) - (4)]); } { (yyval) = (yyvsp[0]); }
#line 2025 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 128: case 127:
#line 479 "parse.y" /* yacc.c:1646 */
{ {
const char *name = strdup((*(yyvsp[(1) - (1)]))->string); const char *name = strdup((*(yyvsp[0]))->string);
add_symbol(name, SYM_ENUM_CONST, NULL, 0); add_symbol(name, SYM_ENUM_CONST, NULL, 0);
} }
#line 2034 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 129: case 128:
#line 484 "parse.y" /* yacc.c:1646 */
{ {
const char *name = strdup((*(yyvsp[(1) - (3)]))->string); const char *name = strdup((*(yyvsp[-2]))->string);
struct string_list *expr = copy_list_range(*(yyvsp[(3) - (3)]), *(yyvsp[(2) - (3)])); struct string_list *expr = copy_list_range(*(yyvsp[0]), *(yyvsp[-1]));
add_symbol(name, SYM_ENUM_CONST, expr, 0); add_symbol(name, SYM_ENUM_CONST, expr, 0);
} }
#line 2044 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 130: case 129:
#line 491 "parse.y" /* yacc.c:1646 */
{ (yyval) = (yyvsp[(2) - (2)]); } { (yyval) = (yyvsp[0]); }
#line 2050 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 131: case 130:
#line 495 "parse.y" /* yacc.c:1646 */
{ (yyval) = NULL; } { (yyval) = NULL; }
#line 2056 "parse.tab.c" /* yacc.c:1646 */
break; break;
case 133: case 132:
#line 501 "parse.y" /* yacc.c:1646 */
{ export_symbol((*(yyvsp[(3) - (5)]))->string); (yyval) = (yyvsp[(5) - (5)]); } { export_symbol((*(yyvsp[-2]))->string); (yyval) = (yyvsp[0]); }
#line 2062 "parse.tab.c" /* yacc.c:1646 */
break; break;
#line 2066 "parse.tab.c" /* yacc.c:1646 */
default: break; default: break;
} }
/* User semantic actions sometimes alter yychar, and that requires /* User semantic actions sometimes alter yychar, and that requires
...@@ -2177,7 +2084,7 @@ yyreduce: ...@@ -2177,7 +2084,7 @@ yyreduce:
*++yyvsp = yyval; *++yyvsp = yyval;
/* Now `shift' the result of the reduction. Determine what state /* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule that goes to, based on the state we popped back to and the rule
number reduced by. */ number reduced by. */
...@@ -2192,9 +2099,9 @@ yyreduce: ...@@ -2192,9 +2099,9 @@ yyreduce:
goto yynewstate; goto yynewstate;
/*------------------------------------. /*--------------------------------------.
| yyerrlab -- here on detecting error | | yyerrlab -- here on detecting error. |
`------------------------------------*/ `--------------------------------------*/
yyerrlab: yyerrlab:
/* Make sure we have latest lookahead translation. See comments at /* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */ user semantic actions for why this is necessary. */
...@@ -2245,20 +2152,20 @@ yyerrlab: ...@@ -2245,20 +2152,20 @@ yyerrlab:
if (yyerrstatus == 3) if (yyerrstatus == 3)
{ {
/* If just tried and failed to reuse lookahead token after an /* If just tried and failed to reuse lookahead token after an
error, discard it. */ error, discard it. */
if (yychar <= YYEOF) if (yychar <= YYEOF)
{ {
/* Return failure if at end of input. */ /* Return failure if at end of input. */
if (yychar == YYEOF) if (yychar == YYEOF)
YYABORT; YYABORT;
} }
else else
{ {
yydestruct ("Error: discarding", yydestruct ("Error: discarding",
yytoken, &yylval); yytoken, &yylval);
yychar = YYEMPTY; yychar = YYEMPTY;
} }
} }
/* Else will try to reuse lookahead token after shifting the error /* Else will try to reuse lookahead token after shifting the error
...@@ -2277,7 +2184,7 @@ yyerrorlab: ...@@ -2277,7 +2184,7 @@ yyerrorlab:
if (/*CONSTCOND*/ 0) if (/*CONSTCOND*/ 0)
goto yyerrorlab; goto yyerrorlab;
/* Do not reclaim the symbols of the rule which action triggered /* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */ this YYERROR. */
YYPOPSTACK (yylen); YYPOPSTACK (yylen);
yylen = 0; yylen = 0;
...@@ -2290,29 +2197,29 @@ yyerrorlab: ...@@ -2290,29 +2197,29 @@ yyerrorlab:
| yyerrlab1 -- common code for both syntax error and YYERROR. | | yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/ `-------------------------------------------------------------*/
yyerrlab1: yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */ yyerrstatus = 3; /* Each real token shifted decrements this. */
for (;;) for (;;)
{ {
yyn = yypact[yystate]; yyn = yypact[yystate];
if (!yypact_value_is_default (yyn)) if (!yypact_value_is_default (yyn))
{ {
yyn += YYTERROR; yyn += YYTERROR;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
{ {
yyn = yytable[yyn]; yyn = yytable[yyn];
if (0 < yyn) if (0 < yyn)
break; break;
} }
} }
/* Pop the current state because it cannot handle the error token. */ /* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss) if (yyssp == yyss)
YYABORT; YYABORT;
yydestruct ("Error: popping", yydestruct ("Error: popping",
yystos[yystate], yyvsp); yystos[yystate], yyvsp);
YYPOPSTACK (1); YYPOPSTACK (1);
yystate = *yyssp; yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp); YY_STACK_PRINT (yyss, yyssp);
...@@ -2363,14 +2270,14 @@ yyreturn: ...@@ -2363,14 +2270,14 @@ yyreturn:
yydestruct ("Cleanup: discarding lookahead", yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval); yytoken, &yylval);
} }
/* Do not reclaim the symbols of the rule which action triggered /* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */ this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen); YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp); YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss) while (yyssp != yyss)
{ {
yydestruct ("Cleanup: popping", yydestruct ("Cleanup: popping",
yystos[*yyssp], yyvsp); yystos[*yyssp], yyvsp);
YYPOPSTACK (1); YYPOPSTACK (1);
} }
#ifndef yyoverflow #ifndef yyoverflow
...@@ -2381,12 +2288,9 @@ yyreturn: ...@@ -2381,12 +2288,9 @@ yyreturn:
if (yymsg != yymsgbuf) if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg); YYSTACK_FREE (yymsg);
#endif #endif
/* Make sure YYID is used. */ return yyresult;
return YYID (yyresult);
} }
#line 505 "parse.y" /* yacc.c:1906 */
static void static void
......
/* A Bison parser, made by GNU Bison 2.7. */ /* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison interface for Yacc-like parsers in C /* Bison interface for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */ along with this program. If not, see <http://www.gnu.org/licenses/>. */
...@@ -26,93 +26,80 @@ ...@@ -26,93 +26,80 @@
special exception, which will cause the skeleton and the resulting special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public Bison output files to be licensed under the GNU General Public
License without this special exception. License without this special exception.
This special exception was added by the Free Software Foundation in This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */ version 2.2 of Bison. */
#ifndef YY_YY_SCRIPTS_GENKSYMS_PARSE_TAB_H_SHIPPED_INCLUDED #ifndef YY_YY_PARSE_TAB_H_INCLUDED
# define YY_YY_SCRIPTS_GENKSYMS_PARSE_TAB_H_SHIPPED_INCLUDED # define YY_YY_PARSE_TAB_H_INCLUDED
/* Enabling traces. */ /* Debug traces. */
#ifndef YYDEBUG #ifndef YYDEBUG
# define YYDEBUG 1 # define YYDEBUG 0
#endif #endif
#if YYDEBUG #if YYDEBUG
extern int yydebug; extern int yydebug;
#endif #endif
/* Tokens. */ /* Token type. */
#ifndef YYTOKENTYPE #ifndef YYTOKENTYPE
# define YYTOKENTYPE # define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers enum yytokentype
know about them. */ {
enum yytokentype { ASM_KEYW = 258,
ASM_KEYW = 258, ATTRIBUTE_KEYW = 259,
ATTRIBUTE_KEYW = 259, AUTO_KEYW = 260,
AUTO_KEYW = 260, BOOL_KEYW = 261,
BOOL_KEYW = 261, CHAR_KEYW = 262,
CHAR_KEYW = 262, CONST_KEYW = 263,
CONST_KEYW = 263, DOUBLE_KEYW = 264,
DOUBLE_KEYW = 264, ENUM_KEYW = 265,
ENUM_KEYW = 265, EXTERN_KEYW = 266,
EXTERN_KEYW = 266, EXTENSION_KEYW = 267,
EXTENSION_KEYW = 267, FLOAT_KEYW = 268,
FLOAT_KEYW = 268, INLINE_KEYW = 269,
INLINE_KEYW = 269, INT_KEYW = 270,
INT_KEYW = 270, LONG_KEYW = 271,
LONG_KEYW = 271, REGISTER_KEYW = 272,
REGISTER_KEYW = 272, RESTRICT_KEYW = 273,
RESTRICT_KEYW = 273, SHORT_KEYW = 274,
SHORT_KEYW = 274, SIGNED_KEYW = 275,
SIGNED_KEYW = 275, STATIC_KEYW = 276,
STATIC_KEYW = 276, STRUCT_KEYW = 277,
STRUCT_KEYW = 277, TYPEDEF_KEYW = 278,
TYPEDEF_KEYW = 278, UNION_KEYW = 279,
UNION_KEYW = 279, UNSIGNED_KEYW = 280,
UNSIGNED_KEYW = 280, VOID_KEYW = 281,
VOID_KEYW = 281, VOLATILE_KEYW = 282,
VOLATILE_KEYW = 282, TYPEOF_KEYW = 283,
TYPEOF_KEYW = 283, EXPORT_SYMBOL_KEYW = 284,
EXPORT_SYMBOL_KEYW = 284, ASM_PHRASE = 285,
ASM_PHRASE = 285, ATTRIBUTE_PHRASE = 286,
ATTRIBUTE_PHRASE = 286, TYPEOF_PHRASE = 287,
TYPEOF_PHRASE = 287, BRACE_PHRASE = 288,
BRACE_PHRASE = 288, BRACKET_PHRASE = 289,
BRACKET_PHRASE = 289, EXPRESSION_PHRASE = 290,
EXPRESSION_PHRASE = 290, CHAR = 291,
CHAR = 291, DOTS = 292,
DOTS = 292, IDENT = 293,
IDENT = 293, INT = 294,
INT = 294, REAL = 295,
REAL = 295, STRING = 296,
STRING = 296, TYPE = 297,
TYPE = 297, OTHER = 298,
OTHER = 298, FILENAME = 299
FILENAME = 299 };
};
#endif #endif
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef int YYSTYPE; typedef int YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_DECLARED 1
#endif #endif
extern YYSTYPE yylval; extern YYSTYPE yylval;
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
#else
int yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int yyparse (void); int yyparse (void);
#else
int yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */
#endif /* !YY_YY_SCRIPTS_GENKSYMS_PARSE_TAB_H_SHIPPED_INCLUDED */ #endif /* !YY_YY_PARSE_TAB_H_INCLUDED */
...@@ -320,8 +320,6 @@ direct_declarator: ...@@ -320,8 +320,6 @@ direct_declarator:
{ $$ = $2; } { $$ = $2; }
| '(' declarator ')' | '(' declarator ')'
{ $$ = $3; } { $$ = $3; }
| '(' error ')'
{ $$ = $3; }
; ;
/* Nested declarators differ from regular declarators in that they do /* Nested declarators differ from regular declarators in that they do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment