blob: 7a4d658c20667d9f9d0df5facb5d534fa2c2f67e [file] [log] [blame]
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001/* A Bison parser, made by GNU Bison 2.5.1. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
Yann E. MORINc80de522013-09-03 17:49:04 +02003/* Bison implementation for Yacc-like parsers in C
Josh Triplett1456edb2009-10-15 11:03:20 -07004
Jan Beulich4a47f1e2015-06-15 13:00:59 +01005 Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
Josh Triplett1456edb2009-10-15 11:03:20 -07006
7 This program is free software: you can redistribute it and/or modify
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 it under the terms of the GNU General Public License as published by
Josh Triplett1456edb2009-10-15 11:03:20 -07009 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 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.
Josh Triplett1456edb2009-10-15 11:03:20 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 You should have received a copy of the GNU General Public License
Josh Triplett1456edb2009-10-15 11:03:20 -070018 along with this program. If not, see <http://www.gnu.org/licenses/>. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Sam Ravnborg14f31562007-09-26 20:15:39 +020020/* 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.
Josh Triplett1456edb2009-10-15 11:03:20 -070029
Sam Ravnborg14f31562007-09-26 20:15:39 +020030 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. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
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
Roman Zippelf6a88aa2006-06-08 22:12:44 -070046/* Bison version. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +010047#define YYBISON_VERSION "2.5.1"
Roman Zippelf6a88aa2006-06-08 22:12:44 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Skeleton name. */
50#define YYSKELETON_NAME "yacc.c"
51
52/* Pure parsers. */
53#define YYPURE 0
54
Josh Triplett1456edb2009-10-15 11:03:20 -070055/* Push parsers. */
56#define YYPUSH 0
57
58/* Pull parsers. */
59#define YYPULL 1
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* Using locations. */
62#define YYLSP_NEEDED 0
63
Roman Zippel7a884882005-11-08 21:34:51 -080064/* Substitute the variable and function names. */
Josh Triplett1456edb2009-10-15 11:03:20 -070065#define yyparse zconfparse
66#define yylex zconflex
67#define yyerror zconferror
68#define yylval zconflval
69#define yychar zconfchar
70#define yydebug zconfdebug
71#define yynerrs zconfnerrs
72
73
74/* Copy the first part of user declarations. */
75
76
77/*
78 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
79 * Released under the terms of the GNU GPL v2.0.
80 */
81
82#include <ctype.h>
83#include <stdarg.h>
84#include <stdio.h>
85#include <stdlib.h>
86#include <string.h>
87#include <stdbool.h>
88
Josh Triplett1456edb2009-10-15 11:03:20 -070089#include "lkc.h"
90
91#define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt)
92
93#define PRINTD 0x0001
94#define DEBUG_PARSE 0x0002
95
96int cdebug = PRINTD;
97
98extern int zconflex(void);
99static void zconfprint(const char *err, ...);
100static void zconf_error(const char *err, ...);
101static void zconferror(const char *err);
Arnaud Lacombe2f76b352011-05-23 01:08:19 -0400102static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken);
Josh Triplett1456edb2009-10-15 11:03:20 -0700103
Andi Kleene66f25d2010-01-13 17:02:44 +0100104struct symbol *symbol_hash[SYMBOL_HASHSIZE];
Josh Triplett1456edb2009-10-15 11:03:20 -0700105
106static struct menu *current_menu, *current_entry;
107
Josh Triplett1456edb2009-10-15 11:03:20 -0700108
109
110
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100111# ifndef YY_NULL
112# if defined __cplusplus && 201103L <= __cplusplus
113# define YY_NULL nullptr
114# else
115# define YY_NULL 0
116# endif
117# endif
118
Josh Triplett1456edb2009-10-15 11:03:20 -0700119/* Enabling traces. */
120#ifndef YYDEBUG
Arnaud Lacombe2f76b352011-05-23 01:08:19 -0400121# define YYDEBUG 1
Josh Triplett1456edb2009-10-15 11:03:20 -0700122#endif
123
124/* Enabling verbose error messages. */
125#ifdef YYERROR_VERBOSE
126# undef YYERROR_VERBOSE
127# define YYERROR_VERBOSE 1
128#else
129# define YYERROR_VERBOSE 0
130#endif
131
132/* Enabling the token table. */
133#ifndef YYTOKEN_TABLE
134# define YYTOKEN_TABLE 0
135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137
138/* Tokens. */
139#ifndef YYTOKENTYPE
140# define YYTOKENTYPE
141 /* Put the tokens into the symbol table, so that GDB and other debuggers
142 know about them. */
143 enum yytokentype {
144 T_MAINMENU = 258,
145 T_MENU = 259,
146 T_ENDMENU = 260,
147 T_SOURCE = 261,
148 T_CHOICE = 262,
149 T_ENDCHOICE = 263,
150 T_COMMENT = 264,
151 T_CONFIG = 265,
152 T_MENUCONFIG = 266,
153 T_HELP = 267,
154 T_HELPTEXT = 268,
155 T_IF = 269,
156 T_ENDIF = 270,
157 T_DEPENDS = 271,
Sam Ravnborg14f31562007-09-26 20:15:39 +0200158 T_OPTIONAL = 272,
159 T_PROMPT = 273,
160 T_TYPE = 274,
161 T_DEFAULT = 275,
162 T_SELECT = 276,
163 T_RANGE = 277,
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300164 T_VISIBLE = 278,
165 T_OPTION = 279,
166 T_ON = 280,
167 T_WORD = 281,
168 T_WORD_QUOTE = 282,
169 T_UNEQUAL = 283,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100170 T_LESS = 284,
171 T_LESS_EQUAL = 285,
172 T_GREATER = 286,
173 T_GREATER_EQUAL = 287,
174 T_CLOSE_PAREN = 288,
175 T_OPEN_PAREN = 289,
176 T_EOL = 290,
177 T_OR = 291,
178 T_AND = 292,
179 T_EQUAL = 293,
180 T_NOT = 294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 };
182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184
185
Sam Ravnborg14f31562007-09-26 20:15:39 +0200186#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
187typedef union YYSTYPE
Sam Ravnborg14f31562007-09-26 20:15:39 +0200188{
Josh Triplett1456edb2009-10-15 11:03:20 -0700189
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 char *string;
Roman Zippela02f0572005-11-08 21:34:53 -0800192 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct symbol *symbol;
194 struct expr *expr;
195 struct menu *menu;
Arnaud Lacombe2f76b352011-05-23 01:08:19 -0400196 const struct kconf_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Josh Triplett1456edb2009-10-15 11:03:20 -0700198
199
200} YYSTYPE;
201# define YYSTYPE_IS_TRIVIAL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202# define yystype YYSTYPE /* obsolescent; will be withdrawn */
203# define YYSTYPE_IS_DECLARED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#endif
205
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* Copy the second part of user declarations. */
208
209
Josh Triplett1456edb2009-10-15 11:03:20 -0700210/* Include zconf.hash.c here so it can see the token constants. */
211#include "zconf.hash.c"
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214
Sam Ravnborg14f31562007-09-26 20:15:39 +0200215#ifdef short
216# undef short
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700217#endif
Sam Ravnborg14f31562007-09-26 20:15:39 +0200218
219#ifdef YYTYPE_UINT8
220typedef YYTYPE_UINT8 yytype_uint8;
221#else
222typedef unsigned char yytype_uint8;
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700223#endif
Sam Ravnborg14f31562007-09-26 20:15:39 +0200224
225#ifdef YYTYPE_INT8
226typedef YYTYPE_INT8 yytype_int8;
227#elif (defined __STDC__ || defined __C99__FUNC__ \
228 || defined __cplusplus || defined _MSC_VER)
229typedef signed char yytype_int8;
230#else
231typedef short int yytype_int8;
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700232#endif
Sam Ravnborg14f31562007-09-26 20:15:39 +0200233
234#ifdef YYTYPE_UINT16
235typedef YYTYPE_UINT16 yytype_uint16;
236#else
237typedef unsigned short int yytype_uint16;
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700238#endif
239
Sam Ravnborg14f31562007-09-26 20:15:39 +0200240#ifdef YYTYPE_INT16
241typedef YYTYPE_INT16 yytype_int16;
242#else
243typedef short int yytype_int16;
244#endif
245
246#ifndef YYSIZE_T
247# ifdef __SIZE_TYPE__
248# define YYSIZE_T __SIZE_TYPE__
249# elif defined size_t
250# define YYSIZE_T size_t
251# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
252 || defined __cplusplus || defined _MSC_VER)
253# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
254# define YYSIZE_T size_t
255# else
256# define YYSIZE_T unsigned int
257# endif
258#endif
259
260#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
261
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700262#ifndef YY_
Arnaud Lacombe2f76b352011-05-23 01:08:19 -0400263# if defined YYENABLE_NLS && YYENABLE_NLS
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700264# if ENABLE_NLS
265# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
266# define YY_(msgid) dgettext ("bison-runtime", msgid)
267# endif
268# endif
269# ifndef YY_
270# define YY_(msgid) msgid
271# endif
272#endif
273
Sam Ravnborg14f31562007-09-26 20:15:39 +0200274/* Suppress unused-variable warnings by "using" E. */
275#if ! defined lint || defined __GNUC__
276# define YYUSE(e) ((void) (e))
277#else
278# define YYUSE(e) /* empty */
279#endif
280
281/* Identity function, used to suppress warnings about constant conditions. */
282#ifndef lint
283# define YYID(n) (n)
284#else
285#if (defined __STDC__ || defined __C99__FUNC__ \
286 || defined __cplusplus || defined _MSC_VER)
287static int
Josh Triplett1456edb2009-10-15 11:03:20 -0700288YYID (int yyi)
Sam Ravnborg14f31562007-09-26 20:15:39 +0200289#else
290static int
Josh Triplett1456edb2009-10-15 11:03:20 -0700291YYID (yyi)
292 int yyi;
Sam Ravnborg14f31562007-09-26 20:15:39 +0200293#endif
294{
Josh Triplett1456edb2009-10-15 11:03:20 -0700295 return yyi;
Sam Ravnborg14f31562007-09-26 20:15:39 +0200296}
297#endif
298
299#if ! defined yyoverflow || YYERROR_VERBOSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301/* The parser invokes alloca or malloc; define the necessary symbols. */
302
Roman Zippel7a884882005-11-08 21:34:51 -0800303# ifdef YYSTACK_USE_ALLOCA
304# if YYSTACK_USE_ALLOCA
305# ifdef __GNUC__
306# define YYSTACK_ALLOC __builtin_alloca
Sam Ravnborg14f31562007-09-26 20:15:39 +0200307# elif defined __BUILTIN_VA_ARG_INCR
308# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
309# elif defined _AIX
310# define YYSTACK_ALLOC __alloca
311# elif defined _MSC_VER
312# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
313# define alloca _alloca
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314# else
Roman Zippel7a884882005-11-08 21:34:51 -0800315# define YYSTACK_ALLOC alloca
Yann E. MORINc80de522013-09-03 17:49:04 +0200316# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200317 || defined __cplusplus || defined _MSC_VER)
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700318# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100319 /* Use EXIT_SUCCESS as a witness for stdlib.h. */
Yann E. MORINc80de522013-09-03 17:49:04 +0200320# ifndef EXIT_SUCCESS
321# define EXIT_SUCCESS 0
Sam Ravnborg14f31562007-09-26 20:15:39 +0200322# endif
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700323# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324# endif
325# endif
326# endif
327
328# ifdef YYSTACK_ALLOC
Sam Ravnborg14f31562007-09-26 20:15:39 +0200329 /* Pacify GCC's `empty if-body' warning. */
330# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700331# ifndef YYSTACK_ALLOC_MAXIMUM
332 /* The OS might guarantee only one guard page at the bottom of the stack,
333 and a page size can be as small as 4096 bytes. So we cannot safely
334 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
335 to allow for a few compiler-allocated temporary stack slots. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200336# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337# endif
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700338# else
Roman Zippel7a884882005-11-08 21:34:51 -0800339# define YYSTACK_ALLOC YYMALLOC
340# define YYSTACK_FREE YYFREE
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700341# ifndef YYSTACK_ALLOC_MAXIMUM
Sam Ravnborg14f31562007-09-26 20:15:39 +0200342# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700343# endif
Yann E. MORINc80de522013-09-03 17:49:04 +0200344# if (defined __cplusplus && ! defined EXIT_SUCCESS \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200345 && ! ((defined YYMALLOC || defined malloc) \
346 && (defined YYFREE || defined free)))
347# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
Yann E. MORINc80de522013-09-03 17:49:04 +0200348# ifndef EXIT_SUCCESS
349# define EXIT_SUCCESS 0
Sam Ravnborg14f31562007-09-26 20:15:39 +0200350# endif
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700351# endif
352# ifndef YYMALLOC
353# define YYMALLOC malloc
Yann E. MORINc80de522013-09-03 17:49:04 +0200354# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200355 || defined __cplusplus || defined _MSC_VER)
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700356void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
357# endif
358# endif
359# ifndef YYFREE
360# define YYFREE free
Yann E. MORINc80de522013-09-03 17:49:04 +0200361# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200362 || defined __cplusplus || defined _MSC_VER)
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700363void free (void *); /* INFRINGES ON USER NAME SPACE */
364# endif
365# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366# endif
Sam Ravnborg14f31562007-09-26 20:15:39 +0200367#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369
Sam Ravnborg14f31562007-09-26 20:15:39 +0200370#if (! defined yyoverflow \
371 && (! defined __cplusplus \
372 || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374/* A type that is properly aligned for any stack member. */
375union yyalloc
376{
Josh Triplett1456edb2009-10-15 11:03:20 -0700377 yytype_int16 yyss_alloc;
378 YYSTYPE yyvs_alloc;
379};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381/* The size of the maximum gap between one aligned stack and the next. */
382# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
383
384/* The size of an array large to enough to hold all stacks, each with
385 N elements. */
386# define YYSTACK_BYTES(N) \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200387 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 + YYSTACK_GAP_MAXIMUM)
389
Yann E. MORINc80de522013-09-03 17:49:04 +0200390# define YYCOPY_NEEDED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392/* Relocate STACK from its old location to the new one. The
393 local variables YYSIZE and YYSTACKSIZE give the old and new number of
394 elements in the stack, and YYPTR gives the new location of the
395 stack. Advance YYPTR to a properly aligned location for the next
396 stack. */
Josh Triplett1456edb2009-10-15 11:03:20 -0700397# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 do \
399 { \
400 YYSIZE_T yynewbytes; \
Josh Triplett1456edb2009-10-15 11:03:20 -0700401 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
402 Stack = &yyptr->Stack_alloc; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
404 yyptr += yynewbytes / sizeof (*yyptr); \
405 } \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200406 while (YYID (0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408#endif
409
Yann E. MORINc80de522013-09-03 17:49:04 +0200410#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100411/* Copy COUNT objects from SRC to DST. The source and destination do
Yann E. MORINc80de522013-09-03 17:49:04 +0200412 not overlap. */
413# ifndef YYCOPY
414# if defined __GNUC__ && 1 < __GNUC__
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100415# define YYCOPY(Dst, Src, Count) \
416 __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
Yann E. MORINc80de522013-09-03 17:49:04 +0200417# else
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100418# define YYCOPY(Dst, Src, Count) \
419 do \
420 { \
421 YYSIZE_T yyi; \
422 for (yyi = 0; yyi < (Count); yyi++) \
423 (Dst)[yyi] = (Src)[yyi]; \
424 } \
Yann E. MORINc80de522013-09-03 17:49:04 +0200425 while (YYID (0))
426# endif
427# endif
428#endif /* !YYCOPY_NEEDED */
429
Sam Ravnborg14f31562007-09-26 20:15:39 +0200430/* YYFINAL -- State number of the termination state. */
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400431#define YYFINAL 11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/* YYLAST -- Last index in YYTABLE. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100433#define YYLAST 298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Sam Ravnborg14f31562007-09-26 20:15:39 +0200435/* YYNTOKENS -- Number of terminals. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100436#define YYNTOKENS 40
Sam Ravnborg14f31562007-09-26 20:15:39 +0200437/* YYNNTS -- Number of nonterminals. */
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300438#define YYNNTS 50
Sam Ravnborg14f31562007-09-26 20:15:39 +0200439/* YYNRULES -- Number of rules. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100440#define YYNRULES 122
Sam Ravnborg14f31562007-09-26 20:15:39 +0200441/* YYNRULES -- Number of states. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100442#define YYNSTATES 199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
445#define YYUNDEFTOK 2
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100446#define YYMAXUTOK 294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700448#define YYTRANSLATE(YYX) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
450
451/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200452static const yytype_uint8 yytranslate[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
455 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
456 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
457 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
458 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
459 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
460 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
461 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
462 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
463 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
464 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
465 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
466 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
467 2, 2, 2, 2, 2, 2, 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, 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, 1, 2, 3, 4,
480 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
481 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300482 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100483 35, 36, 37, 38, 39
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484};
485
486#if YYDEBUG
487/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
488 YYRHS. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200489static const yytype_uint16 yyprhs[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400491 0, 0, 3, 6, 8, 11, 13, 14, 17, 20,
492 23, 26, 31, 36, 40, 42, 44, 46, 48, 50,
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300493 52, 54, 56, 58, 60, 62, 64, 66, 68, 72,
494 75, 79, 82, 86, 89, 90, 93, 96, 99, 102,
495 105, 108, 112, 117, 122, 127, 133, 137, 138, 142,
496 143, 146, 150, 153, 155, 159, 160, 163, 166, 169,
497 172, 175, 180, 184, 187, 192, 193, 196, 200, 202,
498 206, 207, 210, 213, 216, 220, 224, 228, 230, 234,
499 235, 238, 241, 244, 248, 252, 255, 258, 261, 262,
500 265, 268, 271, 276, 277, 280, 283, 286, 287, 290,
501 292, 294, 297, 300, 303, 305, 308, 309, 312, 314,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100502 318, 322, 326, 330, 334, 338, 342, 345, 349, 353,
503 355, 357, 358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504};
505
Sam Ravnborg14f31562007-09-26 20:15:39 +0200506/* YYRHS -- A `-1'-separated list of the rules' RHS. */
507static const yytype_int8 yyrhs[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100509 41, 0, -1, 85, 42, -1, 42, -1, 67, 43,
510 -1, 43, -1, -1, 43, 45, -1, 43, 59, -1,
511 43, 71, -1, 43, 84, -1, 43, 26, 1, 35,
512 -1, 43, 44, 1, 35, -1, 43, 1, 35, -1,
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400513 16, -1, 18, -1, 19, -1, 21, -1, 17, -1,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100514 22, -1, 20, -1, 23, -1, 35, -1, 65, -1,
515 75, -1, 48, -1, 50, -1, 73, -1, 26, 1,
516 35, -1, 1, 35, -1, 10, 26, 35, -1, 47,
517 51, -1, 11, 26, 35, -1, 49, 51, -1, -1,
518 51, 52, -1, 51, 53, -1, 51, 79, -1, 51,
519 77, -1, 51, 46, -1, 51, 35, -1, 19, 82,
520 35, -1, 18, 83, 86, 35, -1, 20, 87, 86,
521 35, -1, 21, 26, 86, 35, -1, 22, 88, 88,
522 86, 35, -1, 24, 54, 35, -1, -1, 54, 26,
523 55, -1, -1, 38, 83, -1, 7, 89, 35, -1,
524 56, 60, -1, 84, -1, 57, 62, 58, -1, -1,
525 60, 61, -1, 60, 79, -1, 60, 77, -1, 60,
526 35, -1, 60, 46, -1, 18, 83, 86, 35, -1,
527 19, 82, 35, -1, 17, 35, -1, 20, 26, 86,
528 35, -1, -1, 62, 45, -1, 14, 87, 85, -1,
529 84, -1, 63, 66, 64, -1, -1, 66, 45, -1,
530 66, 71, -1, 66, 59, -1, 3, 83, 85, -1,
531 4, 83, 35, -1, 68, 80, 78, -1, 84, -1,
532 69, 72, 70, -1, -1, 72, 45, -1, 72, 71,
533 -1, 72, 59, -1, 6, 83, 35, -1, 9, 83,
534 35, -1, 74, 78, -1, 12, 35, -1, 76, 13,
535 -1, -1, 78, 79, -1, 78, 35, -1, 78, 46,
536 -1, 16, 25, 87, 35, -1, -1, 80, 81, -1,
537 80, 35, -1, 23, 86, -1, -1, 83, 86, -1,
538 26, -1, 27, -1, 5, 35, -1, 8, 35, -1,
539 15, 35, -1, 35, -1, 85, 35, -1, -1, 14,
540 87, -1, 88, -1, 88, 29, 88, -1, 88, 30,
541 88, -1, 88, 31, 88, -1, 88, 32, 88, -1,
542 88, 38, 88, -1, 88, 28, 88, -1, 34, 87,
543 33, -1, 39, 87, -1, 87, 36, 87, -1, 87,
544 37, 87, -1, 26, -1, 27, -1, -1, 26, -1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545};
546
547/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200548static const yytype_uint16 yyrline[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100550 0, 108, 108, 108, 110, 110, 112, 114, 115, 116,
551 117, 118, 119, 123, 127, 127, 127, 127, 127, 127,
552 127, 127, 131, 132, 133, 134, 135, 136, 140, 141,
553 147, 155, 161, 169, 179, 181, 182, 183, 184, 185,
554 186, 189, 197, 203, 213, 219, 225, 228, 230, 241,
555 242, 247, 256, 261, 269, 272, 274, 275, 276, 277,
556 278, 281, 287, 298, 304, 314, 316, 321, 329, 337,
557 340, 342, 343, 344, 349, 356, 363, 368, 376, 379,
558 381, 382, 383, 386, 394, 401, 408, 414, 421, 423,
559 424, 425, 428, 436, 438, 439, 442, 449, 451, 456,
560 457, 460, 461, 462, 466, 467, 470, 471, 474, 475,
561 476, 477, 478, 479, 480, 481, 482, 483, 484, 487,
562 488, 491, 492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563};
564#endif
565
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700566#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
567/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
Sam Ravnborg14f31562007-09-26 20:15:39 +0200568 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static const char *const yytname[] =
570{
Roman Zippel7a884882005-11-08 21:34:51 -0800571 "$end", "error", "$undefined", "T_MAINMENU", "T_MENU", "T_ENDMENU",
572 "T_SOURCE", "T_CHOICE", "T_ENDCHOICE", "T_COMMENT", "T_CONFIG",
573 "T_MENUCONFIG", "T_HELP", "T_HELPTEXT", "T_IF", "T_ENDIF", "T_DEPENDS",
Sam Ravnborg14f31562007-09-26 20:15:39 +0200574 "T_OPTIONAL", "T_PROMPT", "T_TYPE", "T_DEFAULT", "T_SELECT", "T_RANGE",
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300575 "T_VISIBLE", "T_OPTION", "T_ON", "T_WORD", "T_WORD_QUOTE", "T_UNEQUAL",
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100576 "T_LESS", "T_LESS_EQUAL", "T_GREATER", "T_GREATER_EQUAL",
Sam Ravnborg14f31562007-09-26 20:15:39 +0200577 "T_CLOSE_PAREN", "T_OPEN_PAREN", "T_EOL", "T_OR", "T_AND", "T_EQUAL",
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400578 "T_NOT", "$accept", "input", "start", "stmt_list", "option_name",
579 "common_stmt", "option_error", "config_entry_start", "config_stmt",
Roman Zippela02f0572005-11-08 21:34:53 -0800580 "menuconfig_entry_start", "menuconfig_stmt", "config_option_list",
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700581 "config_option", "symbol_option", "symbol_option_list",
582 "symbol_option_arg", "choice", "choice_entry", "choice_end",
583 "choice_stmt", "choice_option_list", "choice_option", "choice_block",
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400584 "if_entry", "if_end", "if_stmt", "if_block", "mainmenu_stmt", "menu",
585 "menu_entry", "menu_end", "menu_stmt", "menu_block", "source_stmt",
586 "comment", "comment_stmt", "help_start", "help", "depends_list",
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300587 "depends", "visibility_list", "visible", "prompt_stmt_opt", "prompt",
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100588 "end", "nl", "if_expr", "expr", "symbol", "word_opt", YY_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589};
590#endif
591
592# ifdef YYPRINT
593/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
594 token YYLEX-NUM. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200595static const yytype_uint16 yytoknum[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
598 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
599 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100600 285, 286, 287, 288, 289, 290, 291, 292, 293, 294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601};
602# endif
603
604/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200605static const yytype_uint8 yyr1[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100607 0, 40, 41, 41, 42, 42, 43, 43, 43, 43,
608 43, 43, 43, 43, 44, 44, 44, 44, 44, 44,
609 44, 44, 45, 45, 45, 45, 45, 45, 46, 46,
610 47, 48, 49, 50, 51, 51, 51, 51, 51, 51,
611 51, 52, 52, 52, 52, 52, 53, 54, 54, 55,
612 55, 56, 57, 58, 59, 60, 60, 60, 60, 60,
613 60, 61, 61, 61, 61, 62, 62, 63, 64, 65,
614 66, 66, 66, 66, 67, 68, 69, 70, 71, 72,
615 72, 72, 72, 73, 74, 75, 76, 77, 78, 78,
616 78, 78, 79, 80, 80, 80, 81, 82, 82, 83,
617 83, 84, 84, 84, 85, 85, 86, 86, 87, 87,
618 87, 87, 87, 87, 87, 87, 87, 87, 87, 88,
619 88, 89, 89
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620};
621
622/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200623static const yytype_uint8 yyr2[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400625 0, 2, 2, 1, 2, 1, 0, 2, 2, 2,
626 2, 4, 4, 3, 1, 1, 1, 1, 1, 1,
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300627 1, 1, 1, 1, 1, 1, 1, 1, 3, 2,
628 3, 2, 3, 2, 0, 2, 2, 2, 2, 2,
629 2, 3, 4, 4, 4, 5, 3, 0, 3, 0,
630 2, 3, 2, 1, 3, 0, 2, 2, 2, 2,
631 2, 4, 3, 2, 4, 0, 2, 3, 1, 3,
632 0, 2, 2, 2, 3, 3, 3, 1, 3, 0,
633 2, 2, 2, 3, 3, 2, 2, 2, 0, 2,
634 2, 2, 4, 0, 2, 2, 2, 0, 2, 1,
635 1, 2, 2, 2, 1, 2, 0, 2, 1, 3,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100636 3, 3, 3, 3, 3, 3, 2, 3, 3, 1,
637 1, 0, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638};
639
Yann E. MORINc80de522013-09-03 17:49:04 +0200640/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
641 Performed when YYTABLE doesn't specify something else to do. Zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 means the default is an error. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200643static const yytype_uint8 yydefact[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300645 6, 0, 104, 0, 3, 0, 6, 6, 99, 100,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100646 0, 1, 0, 0, 0, 0, 121, 0, 0, 0,
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400647 0, 0, 0, 14, 18, 15, 16, 20, 17, 19,
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300648 21, 0, 22, 0, 7, 34, 25, 34, 26, 55,
649 65, 8, 70, 23, 93, 79, 9, 27, 88, 24,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100650 10, 0, 105, 2, 74, 13, 0, 101, 0, 122,
651 0, 102, 0, 0, 0, 119, 120, 0, 0, 0,
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300652 108, 103, 0, 0, 0, 0, 0, 0, 0, 88,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100653 0, 0, 75, 83, 51, 84, 30, 32, 0, 116,
654 0, 0, 67, 0, 0, 0, 0, 0, 0, 11,
655 12, 0, 0, 0, 0, 97, 0, 0, 0, 47,
656 0, 40, 39, 35, 36, 0, 38, 37, 0, 0,
657 97, 0, 59, 60, 56, 58, 57, 66, 54, 53,
658 71, 73, 69, 72, 68, 106, 95, 0, 94, 80,
659 82, 78, 81, 77, 90, 91, 89, 115, 117, 118,
660 114, 109, 110, 111, 112, 113, 29, 86, 0, 106,
661 0, 106, 106, 106, 0, 0, 0, 87, 63, 106,
662 0, 106, 0, 96, 0, 0, 41, 98, 0, 0,
663 106, 49, 46, 28, 0, 62, 0, 107, 92, 42,
664 43, 44, 0, 0, 48, 61, 64, 45, 50
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665};
666
Sam Ravnborg14f31562007-09-26 20:15:39 +0200667/* YYDEFGOTO[NTERM-NUM]. */
668static const yytype_int16 yydefgoto[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100670 -1, 3, 4, 5, 33, 34, 112, 35, 36, 37,
671 38, 74, 113, 114, 165, 194, 39, 40, 128, 41,
672 76, 124, 77, 42, 132, 43, 78, 6, 44, 45,
673 141, 46, 80, 47, 48, 49, 115, 116, 81, 117,
674 79, 138, 160, 161, 50, 7, 173, 69, 70, 60
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675};
676
677/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
678 STATE-NUM. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100679#define YYPACT_NINF -91
Sam Ravnborg14f31562007-09-26 20:15:39 +0200680static const yytype_int16 yypact[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100682 19, 37, -91, 13, -91, 79, -91, 20, -91, -91,
683 -16, -91, 21, 37, 25, 37, 41, 36, 37, 78,
684 83, 31, 56, -91, -91, -91, -91, -91, -91, -91,
685 -91, 116, -91, 127, -91, -91, -91, -91, -91, -91,
686 -91, -91, -91, -91, -91, -91, -91, -91, -91, -91,
687 -91, 147, -91, -91, 105, -91, 109, -91, 111, -91,
688 114, -91, 136, 137, 142, -91, -91, 31, 31, 76,
689 254, -91, 143, 146, 27, 115, 207, 258, 243, -14,
690 243, 179, -91, -91, -91, -91, -91, -91, -7, -91,
691 31, 31, 105, 51, 51, 51, 51, 51, 51, -91,
692 -91, 156, 168, 181, 37, 37, 31, 178, 51, -91,
693 206, -91, -91, -91, -91, 196, -91, -91, 175, 37,
694 37, 185, -91, -91, -91, -91, -91, -91, -91, -91,
695 -91, -91, -91, -91, -91, 214, -91, 230, -91, -91,
696 -91, -91, -91, -91, -91, -91, -91, -91, 183, -91,
697 -91, -91, -91, -91, -91, -91, -91, -91, 31, 214,
698 194, 214, 45, 214, 51, 26, 195, -91, -91, 214,
699 197, 214, 31, -91, 139, 208, -91, -91, 220, 224,
700 214, 222, -91, -91, 226, -91, 227, 123, -91, -91,
701 -91, -91, 235, 37, -91, -91, -91, -91, -91
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702};
703
704/* YYPGOTO[NTERM-NUM]. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200705static const yytype_int16 yypgoto[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100707 -91, -91, 264, 268, -91, 30, -65, -91, -91, -91,
708 -91, 238, -91, -91, -91, -91, -91, -91, -91, -12,
709 -91, -91, -91, -91, -91, -91, -91, -91, -91, -91,
710 -91, -5, -91, -91, -91, -91, -91, 200, 209, -61,
711 -91, -91, 170, -1, 65, 0, 118, -66, -90, -91
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712};
713
714/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
715 positive, shift that token. If negative, reduce the rule which
Yann E. MORINc80de522013-09-03 17:49:04 +0200716 number is the opposite. If YYTABLE_NINF, syntax error. */
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300717#define YYTABLE_NINF -86
Sam Ravnborg14f31562007-09-26 20:15:39 +0200718static const yytype_int16 yytable[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100720 10, 88, 89, 150, 151, 152, 153, 154, 155, 135,
721 54, 123, 56, 11, 58, 126, 145, 62, 164, 2,
722 146, 136, 1, 1, 148, 149, 147, -31, 101, 90,
723 91, -31, -31, -31, -31, -31, -31, -31, -31, 102,
724 162, -31, -31, 103, -31, 104, 105, 106, 107, 108,
725 -31, 109, 181, 110, 2, 52, 55, 65, 66, 172,
726 57, 182, 111, 8, 9, 67, 131, 59, 140, 92,
727 68, 61, 145, 133, 180, 142, 146, 65, 66, -5,
728 12, 90, 91, 13, 14, 15, 16, 17, 18, 19,
729 20, 71, 174, 21, 22, 23, 24, 25, 26, 27,
730 28, 29, 30, 159, 63, 31, 187, 127, 130, 64,
731 139, 2, 90, 91, 32, -33, 101, 72, 169, -33,
732 -33, -33, -33, -33, -33, -33, -33, 102, 73, -33,
733 -33, 103, -33, 104, 105, 106, 107, 108, -33, 109,
734 52, 110, 129, 134, 82, 143, 83, -4, 12, 84,
735 111, 13, 14, 15, 16, 17, 18, 19, 20, 90,
736 91, 21, 22, 23, 24, 25, 26, 27, 28, 29,
737 30, 85, 86, 31, 188, 90, 91, 87, 99, -85,
738 101, 100, 32, -85, -85, -85, -85, -85, -85, -85,
739 -85, 156, 198, -85, -85, 103, -85, -85, -85, -85,
740 -85, -85, -85, 157, 163, 110, 158, 166, 101, 167,
741 168, 171, -52, -52, 144, -52, -52, -52, -52, 102,
742 91, -52, -52, 103, 118, 119, 120, 121, 172, 176,
743 183, 101, 185, 110, -76, -76, -76, -76, -76, -76,
744 -76, -76, 122, 189, -76, -76, 103, 13, 14, 15,
745 16, 17, 18, 19, 20, 190, 110, 21, 22, 191,
746 193, 195, 196, 14, 15, 144, 17, 18, 19, 20,
747 197, 53, 21, 22, 51, 75, 125, 175, 32, 177,
748 178, 179, 93, 94, 95, 96, 97, 184, 137, 186,
749 170, 0, 98, 32, 0, 0, 0, 0, 192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750};
751
Yann E. MORINc80de522013-09-03 17:49:04 +0200752#define yypact_value_is_default(yystate) \
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100753 ((yystate) == (-91))
Yann E. MORINc80de522013-09-03 17:49:04 +0200754
755#define yytable_value_is_error(yytable_value) \
756 YYID (0)
757
Arnaud Lacombe09899c92010-11-06 18:30:24 -0300758static const yytype_int16 yycheck[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100760 1, 67, 68, 93, 94, 95, 96, 97, 98, 23,
761 10, 76, 13, 0, 15, 76, 81, 18, 108, 35,
762 81, 35, 3, 3, 90, 91, 33, 0, 1, 36,
763 37, 4, 5, 6, 7, 8, 9, 10, 11, 12,
764 106, 14, 15, 16, 17, 18, 19, 20, 21, 22,
765 23, 24, 26, 26, 35, 35, 35, 26, 27, 14,
766 35, 35, 35, 26, 27, 34, 78, 26, 80, 69,
767 39, 35, 137, 78, 164, 80, 137, 26, 27, 0,
768 1, 36, 37, 4, 5, 6, 7, 8, 9, 10,
769 11, 35, 158, 14, 15, 16, 17, 18, 19, 20,
770 21, 22, 23, 104, 26, 26, 172, 77, 78, 26,
771 80, 35, 36, 37, 35, 0, 1, 1, 119, 4,
772 5, 6, 7, 8, 9, 10, 11, 12, 1, 14,
773 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
774 35, 26, 77, 78, 35, 80, 35, 0, 1, 35,
775 35, 4, 5, 6, 7, 8, 9, 10, 11, 36,
776 37, 14, 15, 16, 17, 18, 19, 20, 21, 22,
777 23, 35, 35, 26, 35, 36, 37, 35, 35, 0,
778 1, 35, 35, 4, 5, 6, 7, 8, 9, 10,
779 11, 35, 193, 14, 15, 16, 17, 18, 19, 20,
780 21, 22, 23, 35, 26, 26, 25, 1, 1, 13,
781 35, 26, 5, 6, 35, 8, 9, 10, 11, 12,
782 37, 14, 15, 16, 17, 18, 19, 20, 14, 35,
783 35, 1, 35, 26, 4, 5, 6, 7, 8, 9,
784 10, 11, 35, 35, 14, 15, 16, 4, 5, 6,
785 7, 8, 9, 10, 11, 35, 26, 14, 15, 35,
786 38, 35, 35, 5, 6, 35, 8, 9, 10, 11,
787 35, 7, 14, 15, 6, 37, 76, 159, 35, 161,
788 162, 163, 28, 29, 30, 31, 32, 169, 79, 171,
789 120, -1, 38, 35, -1, -1, -1, -1, 180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790};
791
792/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
793 symbol of state STATE-NUM. */
Sam Ravnborg14f31562007-09-26 20:15:39 +0200794static const yytype_uint8 yystos[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100796 0, 3, 35, 41, 42, 43, 67, 85, 26, 27,
797 83, 0, 1, 4, 5, 6, 7, 8, 9, 10,
Arnaud Lacombec0920a12010-09-10 21:23:28 -0400798 11, 14, 15, 16, 17, 18, 19, 20, 21, 22,
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100799 23, 26, 35, 44, 45, 47, 48, 49, 50, 56,
800 57, 59, 63, 65, 68, 69, 71, 73, 74, 75,
801 84, 43, 35, 42, 85, 35, 83, 35, 83, 26,
802 89, 35, 83, 26, 26, 26, 27, 34, 39, 87,
803 88, 35, 1, 1, 51, 51, 60, 62, 66, 80,
804 72, 78, 35, 35, 35, 35, 35, 35, 87, 87,
805 36, 37, 85, 28, 29, 30, 31, 32, 38, 35,
806 35, 1, 12, 16, 18, 19, 20, 21, 22, 24,
807 26, 35, 46, 52, 53, 76, 77, 79, 17, 18,
808 19, 20, 35, 46, 61, 77, 79, 45, 58, 84,
809 45, 59, 64, 71, 84, 23, 35, 78, 81, 45,
810 59, 70, 71, 84, 35, 46, 79, 33, 87, 87,
811 88, 88, 88, 88, 88, 88, 35, 35, 25, 83,
812 82, 83, 87, 26, 88, 54, 1, 13, 35, 83,
813 82, 26, 14, 86, 87, 86, 35, 86, 86, 86,
814 88, 26, 35, 35, 86, 35, 86, 87, 35, 35,
815 35, 35, 86, 38, 55, 35, 35, 35, 83
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816};
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818#define yyerrok (yyerrstatus = 0)
819#define yyclearin (yychar = YYEMPTY)
820#define YYEMPTY (-2)
821#define YYEOF 0
822
823#define YYACCEPT goto yyacceptlab
824#define YYABORT goto yyabortlab
Roman Zippel7a884882005-11-08 21:34:51 -0800825#define YYERROR goto yyerrorlab
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827
828/* Like YYERROR except do call yyerror. This remains here temporarily
829 to ease the transition to the new meaning of YYERROR, for GCC.
Arnaud Lacombe2f76b352011-05-23 01:08:19 -0400830 Once GCC version 2 has supplanted version 1, this can go. However,
831 YYFAIL appears to be in use. Nevertheless, it is formally deprecated
832 in Bison 2.4.2's NEWS entry, where a plan to phase it out is
833 discussed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835#define YYFAIL goto yyerrlab
Arnaud Lacombe2f76b352011-05-23 01:08:19 -0400836#if defined YYFAIL
837 /* This is here to suppress warnings from the GCC cpp's
838 -Wunused-macros. Normally we don't worry about that warning, but
839 some users do, and we want to make it easy for users to remove
840 YYFAIL uses, which will produce warnings from Bison 2.5. */
841#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843#define YYRECOVERING() (!!yyerrstatus)
844
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100845#define YYBACKUP(Token, Value) \
846do \
847 if (yychar == YYEMPTY) \
848 { \
849 yychar = (Token); \
850 yylval = (Value); \
851 YYPOPSTACK (yylen); \
852 yystate = *yyssp; \
853 goto yybackup; \
854 } \
855 else \
856 { \
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700857 yyerror (YY_("syntax error: cannot back up")); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 YYERROR; \
859 } \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200860while (YYID (0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Roman Zippel7a884882005-11-08 21:34:51 -0800862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863#define YYTERROR 1
864#define YYERRCODE 256
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Roman Zippel7a884882005-11-08 21:34:51 -0800867/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
868 If N is 0, then set CURRENT to the empty location which ends
869 the previous symbol: RHS[0] (always defined). */
870
871#define YYRHSLOC(Rhs, K) ((Rhs)[K])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#ifndef YYLLOC_DEFAULT
Roman Zippel7a884882005-11-08 21:34:51 -0800873# define YYLLOC_DEFAULT(Current, Rhs, N) \
874 do \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200875 if (YYID (N)) \
Roman Zippel7a884882005-11-08 21:34:51 -0800876 { \
877 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
878 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
879 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
880 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
881 } \
882 else \
883 { \
884 (Current).first_line = (Current).last_line = \
885 YYRHSLOC (Rhs, 0).last_line; \
886 (Current).first_column = (Current).last_column = \
887 YYRHSLOC (Rhs, 0).last_column; \
888 } \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200889 while (YYID (0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#endif
891
Roman Zippel7a884882005-11-08 21:34:51 -0800892
Yann E. MORINc80de522013-09-03 17:49:04 +0200893/* This macro is provided for backward compatibility. */
Roman Zippel7a884882005-11-08 21:34:51 -0800894
895#ifndef YY_LOCATION_PRINT
Yann E. MORINc80de522013-09-03 17:49:04 +0200896# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
Roman Zippel7a884882005-11-08 21:34:51 -0800897#endif
898
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900/* YYLEX -- calling `yylex' with the right arguments. */
901
902#ifdef YYLEX_PARAM
903# define YYLEX yylex (YYLEX_PARAM)
904#else
905# define YYLEX yylex ()
906#endif
907
908/* Enable debugging if requested. */
909#if YYDEBUG
910
911# ifndef YYFPRINTF
912# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
913# define YYFPRINTF fprintf
914# endif
915
916# define YYDPRINTF(Args) \
917do { \
918 if (yydebug) \
919 YYFPRINTF Args; \
Sam Ravnborg14f31562007-09-26 20:15:39 +0200920} while (YYID (0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Sam Ravnborg14f31562007-09-26 20:15:39 +0200922# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
923do { \
924 if (yydebug) \
925 { \
926 YYFPRINTF (stderr, "%s ", Title); \
927 yy_symbol_print (stderr, \
928 Type, Value); \
929 YYFPRINTF (stderr, "\n"); \
930 } \
931} while (YYID (0))
932
933
934/*--------------------------------.
935| Print this symbol on YYOUTPUT. |
936`--------------------------------*/
937
938/*ARGSUSED*/
939#if (defined __STDC__ || defined __C99__FUNC__ \
940 || defined __cplusplus || defined _MSC_VER)
941static void
942yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
943#else
944static void
945yy_symbol_value_print (yyoutput, yytype, yyvaluep)
946 FILE *yyoutput;
947 int yytype;
948 YYSTYPE const * const yyvaluep;
949#endif
950{
Jan Beulich4a47f1e2015-06-15 13:00:59 +0100951 FILE *yyo = yyoutput;
952 YYUSE (yyo);
Sam Ravnborg14f31562007-09-26 20:15:39 +0200953 if (!yyvaluep)
954 return;
955# ifdef YYPRINT
956 if (yytype < YYNTOKENS)
957 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
958# else
959 YYUSE (yyoutput);
960# endif
961 switch (yytype)
962 {
963 default:
964 break;
965 }
966}
967
968
969/*--------------------------------.
970| Print this symbol on YYOUTPUT. |
971`--------------------------------*/
972
973#if (defined __STDC__ || defined __C99__FUNC__ \
974 || defined __cplusplus || defined _MSC_VER)
975static void
976yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
977#else
978static void
979yy_symbol_print (yyoutput, yytype, yyvaluep)
980 FILE *yyoutput;
981 int yytype;
982 YYSTYPE const * const yyvaluep;
983#endif
984{
985 if (yytype < YYNTOKENS)
986 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
987 else
988 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
989
990 yy_symbol_value_print (yyoutput, yytype, yyvaluep);
991 YYFPRINTF (yyoutput, ")");
992}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994/*------------------------------------------------------------------.
995| yy_stack_print -- Print the state stack from its BOTTOM up to its |
Roman Zippel7a884882005-11-08 21:34:51 -0800996| TOP (included). |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997`------------------------------------------------------------------*/
998
Sam Ravnborg14f31562007-09-26 20:15:39 +0200999#if (defined __STDC__ || defined __C99__FUNC__ \
1000 || defined __cplusplus || defined _MSC_VER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001static void
Josh Triplett1456edb2009-10-15 11:03:20 -07001002yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003#else
1004static void
Josh Triplett1456edb2009-10-15 11:03:20 -07001005yy_stack_print (yybottom, yytop)
1006 yytype_int16 *yybottom;
1007 yytype_int16 *yytop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008#endif
1009{
1010 YYFPRINTF (stderr, "Stack now");
Josh Triplett1456edb2009-10-15 11:03:20 -07001011 for (; yybottom <= yytop; yybottom++)
1012 {
1013 int yybot = *yybottom;
1014 YYFPRINTF (stderr, " %d", yybot);
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 YYFPRINTF (stderr, "\n");
1017}
1018
1019# define YY_STACK_PRINT(Bottom, Top) \
1020do { \
1021 if (yydebug) \
1022 yy_stack_print ((Bottom), (Top)); \
Sam Ravnborg14f31562007-09-26 20:15:39 +02001023} while (YYID (0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025
1026/*------------------------------------------------.
1027| Report that the YYRULE is going to be reduced. |
1028`------------------------------------------------*/
1029
Sam Ravnborg14f31562007-09-26 20:15:39 +02001030#if (defined __STDC__ || defined __C99__FUNC__ \
1031 || defined __cplusplus || defined _MSC_VER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static void
Sam Ravnborg14f31562007-09-26 20:15:39 +02001033yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034#else
1035static void
Sam Ravnborg14f31562007-09-26 20:15:39 +02001036yy_reduce_print (yyvsp, yyrule)
1037 YYSTYPE *yyvsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int yyrule;
1039#endif
1040{
Sam Ravnborg14f31562007-09-26 20:15:39 +02001041 int yynrhs = yyr2[yyrule];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int yyi;
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001043 unsigned long int yylno = yyrline[yyrule];
Sam Ravnborg14f31562007-09-26 20:15:39 +02001044 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
1045 yyrule - 1, yylno);
1046 /* The symbols being reduced. */
1047 for (yyi = 0; yyi < yynrhs; yyi++)
1048 {
Josh Triplett1456edb2009-10-15 11:03:20 -07001049 YYFPRINTF (stderr, " $%d = ", yyi + 1);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001050 yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
1051 &(yyvsp[(yyi + 1) - (yynrhs)])
1052 );
Josh Triplett1456edb2009-10-15 11:03:20 -07001053 YYFPRINTF (stderr, "\n");
Sam Ravnborg14f31562007-09-26 20:15:39 +02001054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
1057# define YY_REDUCE_PRINT(Rule) \
1058do { \
1059 if (yydebug) \
Sam Ravnborg14f31562007-09-26 20:15:39 +02001060 yy_reduce_print (yyvsp, Rule); \
1061} while (YYID (0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063/* Nonzero means print parse trace. It is left uninitialized so that
1064 multiple parsers can coexist. */
1065int yydebug;
1066#else /* !YYDEBUG */
1067# define YYDPRINTF(Args)
Roman Zippel7a884882005-11-08 21:34:51 -08001068# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069# define YY_STACK_PRINT(Bottom, Top)
1070# define YY_REDUCE_PRINT(Rule)
1071#endif /* !YYDEBUG */
1072
1073
1074/* YYINITDEPTH -- initial size of the parser's stacks. */
1075#ifndef YYINITDEPTH
1076# define YYINITDEPTH 200
1077#endif
1078
1079/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1080 if the built-in stack extension method is used).
1081
1082 Do not make this value too large; the results are undefined if
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001083 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 evaluated with infinite-precision integer arithmetic. */
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#ifndef YYMAXDEPTH
1087# define YYMAXDEPTH 10000
1088#endif
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091#if YYERROR_VERBOSE
1092
1093# ifndef yystrlen
Sam Ravnborg14f31562007-09-26 20:15:39 +02001094# if defined __GLIBC__ && defined _STRING_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095# define yystrlen strlen
1096# else
1097/* Return the length of YYSTR. */
Sam Ravnborg14f31562007-09-26 20:15:39 +02001098#if (defined __STDC__ || defined __C99__FUNC__ \
1099 || defined __cplusplus || defined _MSC_VER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100static YYSIZE_T
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101yystrlen (const char *yystr)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001102#else
1103static YYSIZE_T
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104yystrlen (yystr)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001105 const char *yystr;
1106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Sam Ravnborg14f31562007-09-26 20:15:39 +02001108 YYSIZE_T yylen;
1109 for (yylen = 0; yystr[yylen]; yylen++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 continue;
Sam Ravnborg14f31562007-09-26 20:15:39 +02001111 return yylen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113# endif
1114# endif
1115
1116# ifndef yystpcpy
Sam Ravnborg14f31562007-09-26 20:15:39 +02001117# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118# define yystpcpy stpcpy
1119# else
1120/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1121 YYDEST. */
Sam Ravnborg14f31562007-09-26 20:15:39 +02001122#if (defined __STDC__ || defined __C99__FUNC__ \
1123 || defined __cplusplus || defined _MSC_VER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124static char *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125yystpcpy (char *yydest, const char *yysrc)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001126#else
1127static char *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128yystpcpy (yydest, yysrc)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001129 char *yydest;
1130 const char *yysrc;
1131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001133 char *yyd = yydest;
1134 const char *yys = yysrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 while ((*yyd++ = *yys++) != '\0')
1137 continue;
1138
1139 return yyd - 1;
1140}
1141# endif
1142# endif
1143
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001144# ifndef yytnamerr
1145/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1146 quotes and backslashes, so that it's suitable for yyerror. The
1147 heuristic is that double-quoting is unnecessary unless the string
1148 contains an apostrophe, a comma, or backslash (other than
1149 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1150 null, do not copy; instead, return the length of what the result
1151 would have been. */
1152static YYSIZE_T
1153yytnamerr (char *yyres, const char *yystr)
1154{
1155 if (*yystr == '"')
1156 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001157 YYSIZE_T yyn = 0;
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001158 char const *yyp = yystr;
1159
1160 for (;;)
1161 switch (*++yyp)
1162 {
1163 case '\'':
1164 case ',':
1165 goto do_not_strip_quotes;
1166
1167 case '\\':
1168 if (*++yyp != '\\')
1169 goto do_not_strip_quotes;
1170 /* Fall through. */
1171 default:
1172 if (yyres)
1173 yyres[yyn] = *yyp;
1174 yyn++;
1175 break;
1176
1177 case '"':
1178 if (yyres)
1179 yyres[yyn] = '\0';
1180 return yyn;
1181 }
1182 do_not_strip_quotes: ;
1183 }
1184
1185 if (! yyres)
1186 return yystrlen (yystr);
1187
1188 return yystpcpy (yyres, yystr) - yyres;
1189}
1190# endif
1191
Yann E. MORINc80de522013-09-03 17:49:04 +02001192/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
1193 about the unexpected token YYTOKEN for the state stack whose top is
1194 YYSSP.
1195
1196 Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
1197 not large enough to hold the message. In that case, also set
1198 *YYMSG_ALLOC to the required number of bytes. Return 2 if the
1199 required number of bytes is too large to store. */
1200static int
1201yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
1202 yytype_int16 *yyssp, int yytoken)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001203{
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001204 YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
Yann E. MORINc80de522013-09-03 17:49:04 +02001205 YYSIZE_T yysize = yysize0;
1206 YYSIZE_T yysize1;
1207 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
1208 /* Internationalized format string. */
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001209 const char *yyformat = YY_NULL;
Yann E. MORINc80de522013-09-03 17:49:04 +02001210 /* Arguments of yyformat. */
1211 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
1212 /* Number of reported tokens (one for the "unexpected", one per
1213 "expected"). */
1214 int yycount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Yann E. MORINc80de522013-09-03 17:49:04 +02001216 /* There are many possibilities here to consider:
1217 - Assume YYFAIL is not used. It's too flawed to consider. See
1218 <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
1219 for details. YYERROR is fine as it does not invoke this
1220 function.
1221 - If this state is a consistent state with a default action, then
1222 the only way this function was invoked is if the default action
1223 is an error action. In that case, don't check for expected
1224 tokens because there are none.
1225 - The only way there can be no lookahead present (in yychar) is if
1226 this state is a consistent state with a default action. Thus,
1227 detecting the absence of a lookahead is sufficient to determine
1228 that there is no unexpected or expected token to report. In that
1229 case, just report a simple "syntax error".
1230 - Don't assume there isn't a lookahead just because this state is a
1231 consistent state with a default action. There might have been a
1232 previous inconsistent state, consistent state with a non-default
1233 action, or user semantic action that manipulated yychar.
1234 - Of course, the expected token list depends on states to have
1235 correct lookahead information, and it depends on the parser not
1236 to perform extra reductions after fetching a lookahead from the
1237 scanner and before detecting a syntax error. Thus, state merging
1238 (from LALR or IELR) and default reductions corrupt the expected
1239 token list. However, the list is correct for canonical LR with
1240 one exception: it will still contain any token that will not be
1241 accepted due to an error action in a later state.
1242 */
1243 if (yytoken != YYEMPTY)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001244 {
Yann E. MORINc80de522013-09-03 17:49:04 +02001245 int yyn = yypact[*yyssp];
1246 yyarg[yycount++] = yytname[yytoken];
1247 if (!yypact_value_is_default (yyn))
1248 {
1249 /* Start YYX at -YYN if negative to avoid negative indexes in
1250 YYCHECK. In other words, skip the first -YYN actions for
1251 this state because they are default actions. */
1252 int yyxbegin = yyn < 0 ? -yyn : 0;
1253 /* Stay within bounds of both yycheck and yytname. */
1254 int yychecklim = YYLAST - yyn + 1;
1255 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
1256 int yyx;
Sam Ravnborg14f31562007-09-26 20:15:39 +02001257
Yann E. MORINc80de522013-09-03 17:49:04 +02001258 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
1259 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
1260 && !yytable_value_is_error (yytable[yyx + yyn]))
1261 {
1262 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
1263 {
1264 yycount = 1;
1265 yysize = yysize0;
1266 break;
1267 }
1268 yyarg[yycount++] = yytname[yyx];
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001269 yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
Yann E. MORINc80de522013-09-03 17:49:04 +02001270 if (! (yysize <= yysize1
1271 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
1272 return 2;
1273 yysize = yysize1;
1274 }
1275 }
Sam Ravnborg14f31562007-09-26 20:15:39 +02001276 }
Yann E. MORINc80de522013-09-03 17:49:04 +02001277
1278 switch (yycount)
1279 {
1280# define YYCASE_(N, S) \
1281 case N: \
1282 yyformat = S; \
1283 break
1284 YYCASE_(0, YY_("syntax error"));
1285 YYCASE_(1, YY_("syntax error, unexpected %s"));
1286 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1287 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1288 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1289 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
1290# undef YYCASE_
1291 }
1292
1293 yysize1 = yysize + yystrlen (yyformat);
1294 if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
1295 return 2;
1296 yysize = yysize1;
1297
1298 if (*yymsg_alloc < yysize)
1299 {
1300 *yymsg_alloc = 2 * yysize;
1301 if (! (yysize <= *yymsg_alloc
1302 && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
1303 *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
1304 return 1;
1305 }
1306
1307 /* Avoid sprintf, as that infringes on the user's name space.
1308 Don't have undefined behavior even if the translation
1309 produced a string with the wrong number of "%s"s. */
1310 {
1311 char *yyp = *yymsg;
1312 int yyi = 0;
1313 while ((*yyp = *yyformat) != '\0')
1314 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
1315 {
1316 yyp += yytnamerr (yyp, yyarg[yyi++]);
1317 yyformat += 2;
1318 }
1319 else
1320 {
1321 yyp++;
1322 yyformat++;
1323 }
1324 }
1325 return 0;
Sam Ravnborg14f31562007-09-26 20:15:39 +02001326}
1327#endif /* YYERROR_VERBOSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329/*-----------------------------------------------.
1330| Release the memory associated to this symbol. |
1331`-----------------------------------------------*/
1332
Sam Ravnborg14f31562007-09-26 20:15:39 +02001333/*ARGSUSED*/
1334#if (defined __STDC__ || defined __C99__FUNC__ \
1335 || defined __cplusplus || defined _MSC_VER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336static void
Roman Zippel7a884882005-11-08 21:34:51 -08001337yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338#else
1339static void
Roman Zippel7a884882005-11-08 21:34:51 -08001340yydestruct (yymsg, yytype, yyvaluep)
1341 const char *yymsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 int yytype;
1343 YYSTYPE *yyvaluep;
1344#endif
1345{
Sam Ravnborg14f31562007-09-26 20:15:39 +02001346 YYUSE (yyvaluep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Roman Zippel7a884882005-11-08 21:34:51 -08001348 if (!yymsg)
1349 yymsg = "Deleting";
1350 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 switch (yytype)
1353 {
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001354 case 57: /* "choice_entry" */
Roman Zippela02f0572005-11-08 21:34:53 -08001355
Sam Ravnborg14f31562007-09-26 20:15:39 +02001356 {
Roman Zippela02f0572005-11-08 21:34:53 -08001357 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
1358 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1359 if (current_menu == (yyvaluep->menu))
1360 menu_end_menu();
1361};
1362
Sam Ravnborg14f31562007-09-26 20:15:39 +02001363 break;
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001364 case 63: /* "if_entry" */
Roman Zippela02f0572005-11-08 21:34:53 -08001365
Sam Ravnborg14f31562007-09-26 20:15:39 +02001366 {
Roman Zippela02f0572005-11-08 21:34:53 -08001367 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
1368 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1369 if (current_menu == (yyvaluep->menu))
1370 menu_end_menu();
1371};
1372
Sam Ravnborg14f31562007-09-26 20:15:39 +02001373 break;
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001374 case 69: /* "menu_entry" */
Roman Zippela02f0572005-11-08 21:34:53 -08001375
Sam Ravnborg14f31562007-09-26 20:15:39 +02001376 {
Roman Zippela02f0572005-11-08 21:34:53 -08001377 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
1378 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1379 if (current_menu == (yyvaluep->menu))
1380 menu_end_menu();
1381};
1382
Sam Ravnborg14f31562007-09-26 20:15:39 +02001383 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 default:
Sam Ravnborg14f31562007-09-26 20:15:39 +02001386 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Yann E. MORINc80de522013-09-03 17:49:04 +02001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/* Prevent warnings from -Wmissing-prototypes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392#ifdef YYPARSE_PARAM
Sam Ravnborg14f31562007-09-26 20:15:39 +02001393#if defined __STDC__ || defined __cplusplus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394int yyparse (void *YYPARSE_PARAM);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001395#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396int yyparse ();
Sam Ravnborg14f31562007-09-26 20:15:39 +02001397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398#else /* ! YYPARSE_PARAM */
Sam Ravnborg14f31562007-09-26 20:15:39 +02001399#if defined __STDC__ || defined __cplusplus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400int yyparse (void);
1401#else
1402int yyparse ();
1403#endif
1404#endif /* ! YYPARSE_PARAM */
1405
1406
Josh Triplett1456edb2009-10-15 11:03:20 -07001407/* The lookahead symbol. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408int yychar;
1409
Josh Triplett1456edb2009-10-15 11:03:20 -07001410/* The semantic value of the lookahead symbol. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411YYSTYPE yylval;
1412
1413/* Number of syntax errors so far. */
1414int yynerrs;
1415
1416
Yann E. MORINc80de522013-09-03 17:49:04 +02001417/*----------.
1418| yyparse. |
1419`----------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421#ifdef YYPARSE_PARAM
Sam Ravnborg14f31562007-09-26 20:15:39 +02001422#if (defined __STDC__ || defined __C99__FUNC__ \
1423 || defined __cplusplus || defined _MSC_VER)
1424int
1425yyparse (void *YYPARSE_PARAM)
1426#else
1427int
1428yyparse (YYPARSE_PARAM)
1429 void *YYPARSE_PARAM;
1430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431#else /* ! YYPARSE_PARAM */
Sam Ravnborg14f31562007-09-26 20:15:39 +02001432#if (defined __STDC__ || defined __C99__FUNC__ \
1433 || defined __cplusplus || defined _MSC_VER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434int
1435yyparse (void)
1436#else
1437int
1438yyparse ()
Sam Ravnborg14f31562007-09-26 20:15:39 +02001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440#endif
1441#endif
1442{
Josh Triplett1456edb2009-10-15 11:03:20 -07001443 int yystate;
1444 /* Number of tokens to shift before error messages enabled. */
1445 int yyerrstatus;
1446
1447 /* The stacks and their tools:
1448 `yyss': related to states.
1449 `yyvs': related to semantic values.
1450
Jan Beulich4a47f1e2015-06-15 13:00:59 +01001451 Refer to the stacks through separate pointers, to allow yyoverflow
Josh Triplett1456edb2009-10-15 11:03:20 -07001452 to reallocate them elsewhere. */
1453
1454 /* The state stack. */
1455 yytype_int16 yyssa[YYINITDEPTH];
1456 yytype_int16 *yyss;
1457 yytype_int16 *yyssp;
1458
1459 /* The semantic value stack. */
1460 YYSTYPE yyvsa[YYINITDEPTH];
1461 YYSTYPE *yyvs;
1462 YYSTYPE *yyvsp;
1463
1464 YYSIZE_T yystacksize;
1465
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001466 int yyn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int yyresult;
Josh Triplett1456edb2009-10-15 11:03:20 -07001468 /* Lookahead token as an internal (translated) token number. */
1469 int yytoken;
1470 /* The variables used to return semantic value and location from the
1471 action routines. */
1472 YYSTYPE yyval;
1473
Sam Ravnborg14f31562007-09-26 20:15:39 +02001474#if YYERROR_VERBOSE
1475 /* Buffer for error messages, and its allocated size. */
1476 char yymsgbuf[128];
1477 char *yymsg = yymsgbuf;
1478 YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
1479#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Sam Ravnborg14f31562007-09-26 20:15:39 +02001481#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Sam Ravnborg14f31562007-09-26 20:15:39 +02001483 /* The number of symbols on the RHS of the reduced rule.
1484 Keep to zero when no symbol should be popped. */
1485 int yylen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Josh Triplett1456edb2009-10-15 11:03:20 -07001487 yytoken = 0;
1488 yyss = yyssa;
1489 yyvs = yyvsa;
1490 yystacksize = YYINITDEPTH;
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 YYDPRINTF ((stderr, "Starting parse\n"));
1493
1494 yystate = 0;
1495 yyerrstatus = 0;
1496 yynerrs = 0;
Josh Triplett1456edb2009-10-15 11:03:20 -07001497 yychar = YYEMPTY; /* Cause a token to be read. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 /* Initialize stack pointers.
1500 Waste one element of value and location stack
1501 so that they stay on the same level as the state stack.
1502 The wasted elements are never initialized. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 yyssp = yyss;
1504 yyvsp = yyvs;
1505
1506 goto yysetstate;
1507
1508/*------------------------------------------------------------.
1509| yynewstate -- Push a new state, which is found in yystate. |
1510`------------------------------------------------------------*/
1511 yynewstate:
1512 /* In all cases, when you get here, the value and location stacks
Sam Ravnborg14f31562007-09-26 20:15:39 +02001513 have just been pushed. So pushing a state here evens the stacks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 yyssp++;
1515
1516 yysetstate:
1517 *yyssp = yystate;
1518
1519 if (yyss + yystacksize - 1 <= yyssp)
1520 {
1521 /* Get the current used size of the three stacks, in elements. */
1522 YYSIZE_T yysize = yyssp - yyss + 1;
1523
1524#ifdef yyoverflow
1525 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001526 /* Give user a chance to reallocate the stack. Use copies of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 these so that the &'s don't force the real ones into
1528 memory. */
1529 YYSTYPE *yyvs1 = yyvs;
Sam Ravnborg14f31562007-09-26 20:15:39 +02001530 yytype_int16 *yyss1 = yyss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /* Each stack pointer address is followed by the size of the
1533 data in use in that stack, in bytes. This used to be a
1534 conditional around just the two extra args, but that might
1535 be undefined if yyoverflow is a macro. */
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001536 yyoverflow (YY_("memory exhausted"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 &yyss1, yysize * sizeof (*yyssp),
1538 &yyvs1, yysize * sizeof (*yyvsp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 &yystacksize);
1540
1541 yyss = yyss1;
1542 yyvs = yyvs1;
1543 }
1544#else /* no yyoverflow */
1545# ifndef YYSTACK_RELOCATE
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001546 goto yyexhaustedlab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547# else
1548 /* Extend the stack our own way. */
1549 if (YYMAXDEPTH <= yystacksize)
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001550 goto yyexhaustedlab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 yystacksize *= 2;
1552 if (YYMAXDEPTH < yystacksize)
1553 yystacksize = YYMAXDEPTH;
1554
1555 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001556 yytype_int16 *yyss1 = yyss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 union yyalloc *yyptr =
1558 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
1559 if (! yyptr)
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001560 goto yyexhaustedlab;
Josh Triplett1456edb2009-10-15 11:03:20 -07001561 YYSTACK_RELOCATE (yyss_alloc, yyss);
1562 YYSTACK_RELOCATE (yyvs_alloc, yyvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563# undef YYSTACK_RELOCATE
1564 if (yyss1 != yyssa)
1565 YYSTACK_FREE (yyss1);
1566 }
1567# endif
1568#endif /* no yyoverflow */
1569
1570 yyssp = yyss + yysize - 1;
1571 yyvsp = yyvs + yysize - 1;
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
1574 (unsigned long int) yystacksize));
1575
1576 if (yyss + yystacksize - 1 <= yyssp)
1577 YYABORT;
1578 }
1579
1580 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
1581
Josh Triplett1456edb2009-10-15 11:03:20 -07001582 if (yystate == YYFINAL)
1583 YYACCEPT;
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto yybackup;
1586
1587/*-----------.
1588| yybackup. |
1589`-----------*/
1590yybackup:
1591
Sam Ravnborg14f31562007-09-26 20:15:39 +02001592 /* Do appropriate processing given the current state. Read a
Josh Triplett1456edb2009-10-15 11:03:20 -07001593 lookahead token if we need one and don't already have one. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Josh Triplett1456edb2009-10-15 11:03:20 -07001595 /* First try to decide what to do without reference to lookahead token. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 yyn = yypact[yystate];
Yann E. MORINc80de522013-09-03 17:49:04 +02001597 if (yypact_value_is_default (yyn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 goto yydefault;
1599
Josh Triplett1456edb2009-10-15 11:03:20 -07001600 /* Not known => get a lookahead token if don't already have one. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Josh Triplett1456edb2009-10-15 11:03:20 -07001602 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (yychar == YYEMPTY)
1604 {
1605 YYDPRINTF ((stderr, "Reading a token: "));
1606 yychar = YYLEX;
1607 }
1608
1609 if (yychar <= YYEOF)
1610 {
1611 yychar = yytoken = YYEOF;
1612 YYDPRINTF ((stderr, "Now at end of input.\n"));
1613 }
1614 else
1615 {
1616 yytoken = YYTRANSLATE (yychar);
Roman Zippel7a884882005-11-08 21:34:51 -08001617 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
1619
1620 /* If the proper action on seeing token YYTOKEN is to reduce or to
1621 detect an error, take that action. */
1622 yyn += yytoken;
1623 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
1624 goto yydefault;
1625 yyn = yytable[yyn];
1626 if (yyn <= 0)
1627 {
Yann E. MORINc80de522013-09-03 17:49:04 +02001628 if (yytable_value_is_error (yyn))
1629 goto yyerrlab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 yyn = -yyn;
1631 goto yyreduce;
1632 }
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /* Count tokens shifted since error; after three, turn off error
1635 status. */
1636 if (yyerrstatus)
1637 yyerrstatus--;
1638
Josh Triplett1456edb2009-10-15 11:03:20 -07001639 /* Shift the lookahead token. */
Sam Ravnborg14f31562007-09-26 20:15:39 +02001640 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
1641
Josh Triplett1456edb2009-10-15 11:03:20 -07001642 /* Discard the shifted token. */
1643 yychar = YYEMPTY;
Sam Ravnborg14f31562007-09-26 20:15:39 +02001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 yystate = yyn;
Sam Ravnborg14f31562007-09-26 20:15:39 +02001646 *++yyvsp = yylval;
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 goto yynewstate;
1649
1650
1651/*-----------------------------------------------------------.
1652| yydefault -- do the default action for the current state. |
1653`-----------------------------------------------------------*/
1654yydefault:
1655 yyn = yydefact[yystate];
1656 if (yyn == 0)
1657 goto yyerrlab;
1658 goto yyreduce;
1659
1660
1661/*-----------------------------.
1662| yyreduce -- Do a reduction. |
1663`-----------------------------*/
1664yyreduce:
1665 /* yyn is the number of a rule to reduce with. */
1666 yylen = yyr2[yyn];
1667
1668 /* If YYLEN is nonzero, implement the default value of the action:
1669 `$$ = $1'.
1670
1671 Otherwise, the following line sets YYVAL to garbage.
1672 This behavior is undocumented and Bison
1673 users should not rely upon it. Assigning to YYVAL
1674 unconditionally makes the parser a bit smaller, and it avoids a
1675 GCC warning that YYVAL may be used uninitialized. */
1676 yyval = yyvsp[1-yylen];
1677
1678
1679 YY_REDUCE_PRINT (yyn);
1680 switch (yyn)
1681 {
Arnaud Lacombec0920a12010-09-10 21:23:28 -04001682 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Yann E. MORINc80de522013-09-03 17:49:04 +02001684 { zconf_error("unexpected end statement"); }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 break;
1686
Arnaud Lacombec0920a12010-09-10 21:23:28 -04001687 case 11:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Yann E. MORINc80de522013-09-03 17:49:04 +02001689 { zconf_error("unknown statement \"%s\"", (yyvsp[(2) - (4)].string)); }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 break;
1691
Arnaud Lacombec0920a12010-09-10 21:23:28 -04001692 case 12:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Roman Zippela02f0572005-11-08 21:34:53 -08001694 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001695 zconf_error("unexpected option \"%s\"", kconf_id_strings + (yyvsp[(2) - (4)].id)->name);
Yann E. MORINc80de522013-09-03 17:49:04 +02001696}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 break;
1698
Arnaud Lacombec0920a12010-09-10 21:23:28 -04001699 case 13:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Yann E. MORINc80de522013-09-03 17:49:04 +02001701 { zconf_error("invalid statement"); }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 break;
1703
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001704 case 28:
Roman Zippela02f0572005-11-08 21:34:53 -08001705
Yann E. MORINc80de522013-09-03 17:49:04 +02001706 { zconf_error("unknown option \"%s\"", (yyvsp[(1) - (3)].string)); }
Roman Zippela02f0572005-11-08 21:34:53 -08001707 break;
1708
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001709 case 29:
Roman Zippela02f0572005-11-08 21:34:53 -08001710
Yann E. MORINc80de522013-09-03 17:49:04 +02001711 { zconf_error("invalid option"); }
Roman Zippela02f0572005-11-08 21:34:53 -08001712 break;
1713
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001714 case 30:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001717 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 sym->flags |= SYMBOL_OPTIONAL;
1719 menu_add_entry(sym);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001720 printd(DEBUG_PARSE, "%s:%d:config %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string));
Yann E. MORINc80de522013-09-03 17:49:04 +02001721}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 break;
1723
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001724 case 31:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 {
1727 menu_end_entry();
1728 printd(DEBUG_PARSE, "%s:%d:endconfig\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001729}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 break;
1731
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001732 case 32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001735 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 sym->flags |= SYMBOL_OPTIONAL;
1737 menu_add_entry(sym);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001738 printd(DEBUG_PARSE, "%s:%d:menuconfig %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string));
Yann E. MORINc80de522013-09-03 17:49:04 +02001739}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 break;
1741
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001742 case 33:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 {
1745 if (current_entry->prompt)
1746 current_entry->prompt->type = P_MENU;
1747 else
1748 zconfprint("warning: menuconfig statement without prompt");
1749 menu_end_entry();
1750 printd(DEBUG_PARSE, "%s:%d:endconfig\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001751}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
1753
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001754 case 41:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001757 menu_set_type((yyvsp[(1) - (3)].id)->stype);
Roman Zippel3370f9f2005-11-08 21:34:52 -08001758 printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
1759 zconf_curname(), zconf_lineno(),
Sam Ravnborg14f31562007-09-26 20:15:39 +02001760 (yyvsp[(1) - (3)].id)->stype);
Yann E. MORINc80de522013-09-03 17:49:04 +02001761}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 break;
1763
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001764 case 42:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001767 menu_add_prompt(P_PROMPT, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].expr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001769}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 break;
1771
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001772 case 43:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001775 menu_add_expr(P_DEFAULT, (yyvsp[(2) - (4)].expr), (yyvsp[(3) - (4)].expr));
1776 if ((yyvsp[(1) - (4)].id)->stype != S_UNKNOWN)
1777 menu_set_type((yyvsp[(1) - (4)].id)->stype);
Roman Zippel3370f9f2005-11-08 21:34:52 -08001778 printd(DEBUG_PARSE, "%s:%d:default(%u)\n",
1779 zconf_curname(), zconf_lineno(),
Sam Ravnborg14f31562007-09-26 20:15:39 +02001780 (yyvsp[(1) - (4)].id)->stype);
Yann E. MORINc80de522013-09-03 17:49:04 +02001781}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 break;
1783
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001784 case 44:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001787 menu_add_symbol(P_SELECT, sym_lookup((yyvsp[(2) - (4)].string), 0), (yyvsp[(3) - (4)].expr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 printd(DEBUG_PARSE, "%s:%d:select\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001789}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 break;
1791
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001792 case 45:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001795 menu_add_expr(P_RANGE, expr_alloc_comp(E_RANGE,(yyvsp[(2) - (5)].symbol), (yyvsp[(3) - (5)].symbol)), (yyvsp[(4) - (5)].expr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 printd(DEBUG_PARSE, "%s:%d:range\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001797}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 break;
1799
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001800 case 48:
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001801
1802 {
Arnaud Lacombe2f76b352011-05-23 01:08:19 -04001803 const struct kconf_id *id = kconf_id_lookup((yyvsp[(2) - (3)].string), strlen((yyvsp[(2) - (3)].string)));
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001804 if (id && id->flags & TF_OPTION)
Sam Ravnborg14f31562007-09-26 20:15:39 +02001805 menu_add_option(id->token, (yyvsp[(3) - (3)].string));
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001806 else
Sam Ravnborg14f31562007-09-26 20:15:39 +02001807 zconfprint("warning: ignoring unknown option %s", (yyvsp[(2) - (3)].string));
1808 free((yyvsp[(2) - (3)].string));
Yann E. MORINc80de522013-09-03 17:49:04 +02001809}
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001810 break;
1811
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001812 case 49:
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001813
Yann E. MORINc80de522013-09-03 17:49:04 +02001814 { (yyval.string) = NULL; }
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001815 break;
1816
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001817 case 50:
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001818
Yann E. MORINc80de522013-09-03 17:49:04 +02001819 { (yyval.string) = (yyvsp[(2) - (2)].string); }
Roman Zippelf6a88aa2006-06-08 22:12:44 -07001820 break;
1821
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001822 case 51:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 {
Roman Zippel5a1aa8a2008-02-29 05:11:50 +01001825 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), SYMBOL_CHOICE);
1826 sym->flags |= SYMBOL_AUTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 menu_add_entry(sym);
1828 menu_add_expr(P_CHOICE, NULL, NULL);
1829 printd(DEBUG_PARSE, "%s:%d:choice\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001830}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 break;
1832
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001833 case 52:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 {
Roman Zippela02f0572005-11-08 21:34:53 -08001836 (yyval.menu) = menu_add_menu();
Yann E. MORINc80de522013-09-03 17:49:04 +02001837}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 break;
1839
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001840 case 53:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001843 if (zconf_endtoken((yyvsp[(1) - (1)].id), T_CHOICE, T_ENDCHOICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 menu_end_menu();
1845 printd(DEBUG_PARSE, "%s:%d:endchoice\n", zconf_curname(), zconf_lineno());
1846 }
Yann E. MORINc80de522013-09-03 17:49:04 +02001847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 break;
1849
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001850 case 61:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001853 menu_add_prompt(P_PROMPT, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].expr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001855}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 break;
1857
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001858 case 62:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001861 if ((yyvsp[(1) - (3)].id)->stype == S_BOOLEAN || (yyvsp[(1) - (3)].id)->stype == S_TRISTATE) {
1862 menu_set_type((yyvsp[(1) - (3)].id)->stype);
Roman Zippel3370f9f2005-11-08 21:34:52 -08001863 printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
1864 zconf_curname(), zconf_lineno(),
Sam Ravnborg14f31562007-09-26 20:15:39 +02001865 (yyvsp[(1) - (3)].id)->stype);
Roman Zippel3370f9f2005-11-08 21:34:52 -08001866 } else
1867 YYERROR;
Yann E. MORINc80de522013-09-03 17:49:04 +02001868}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 break;
1870
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001871 case 63:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 {
1874 current_entry->sym->flags |= SYMBOL_OPTIONAL;
1875 printd(DEBUG_PARSE, "%s:%d:optional\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 break;
1878
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001879 case 64:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001882 if ((yyvsp[(1) - (4)].id)->stype == S_UNKNOWN) {
1883 menu_add_symbol(P_DEFAULT, sym_lookup((yyvsp[(2) - (4)].string), 0), (yyvsp[(3) - (4)].expr));
Roman Zippel3370f9f2005-11-08 21:34:52 -08001884 printd(DEBUG_PARSE, "%s:%d:default\n",
1885 zconf_curname(), zconf_lineno());
1886 } else
1887 YYERROR;
Yann E. MORINc80de522013-09-03 17:49:04 +02001888}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 break;
1890
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001891 case 67:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 {
1894 printd(DEBUG_PARSE, "%s:%d:if\n", zconf_curname(), zconf_lineno());
1895 menu_add_entry(NULL);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001896 menu_add_dep((yyvsp[(2) - (3)].expr));
Roman Zippela02f0572005-11-08 21:34:53 -08001897 (yyval.menu) = menu_add_menu();
Yann E. MORINc80de522013-09-03 17:49:04 +02001898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 break;
1900
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001901 case 68:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001904 if (zconf_endtoken((yyvsp[(1) - (1)].id), T_IF, T_ENDIF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 menu_end_menu();
1906 printd(DEBUG_PARSE, "%s:%d:endif\n", zconf_curname(), zconf_lineno());
1907 }
Yann E. MORINc80de522013-09-03 17:49:04 +02001908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 break;
1910
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001911 case 74:
Arnaud Lacombec0920a12010-09-10 21:23:28 -04001912
1913 {
1914 menu_add_prompt(P_MENU, (yyvsp[(2) - (3)].string), NULL);
Yann E. MORINc80de522013-09-03 17:49:04 +02001915}
Arnaud Lacombec0920a12010-09-10 21:23:28 -04001916 break;
1917
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001918 case 75:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 {
1921 menu_add_entry(NULL);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001922 menu_add_prompt(P_MENU, (yyvsp[(2) - (3)].string), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001924}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 break;
1926
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001927 case 76:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 {
Roman Zippela02f0572005-11-08 21:34:53 -08001930 (yyval.menu) = menu_add_menu();
Yann E. MORINc80de522013-09-03 17:49:04 +02001931}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 break;
1933
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001934 case 77:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001937 if (zconf_endtoken((yyvsp[(1) - (1)].id), T_MENU, T_ENDMENU)) {
Roman Zippela02f0572005-11-08 21:34:53 -08001938 menu_end_menu();
1939 printd(DEBUG_PARSE, "%s:%d:endmenu\n", zconf_curname(), zconf_lineno());
1940 }
Yann E. MORINc80de522013-09-03 17:49:04 +02001941}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 break;
1943
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001944 case 83:
Roman Zippela02f0572005-11-08 21:34:53 -08001945
1946 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001947 printd(DEBUG_PARSE, "%s:%d:source %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string));
1948 zconf_nextfile((yyvsp[(2) - (3)].string));
Yann E. MORINc80de522013-09-03 17:49:04 +02001949}
Roman Zippela02f0572005-11-08 21:34:53 -08001950 break;
1951
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001952 case 84:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 {
1955 menu_add_entry(NULL);
Sam Ravnborg14f31562007-09-26 20:15:39 +02001956 menu_add_prompt(P_COMMENT, (yyvsp[(2) - (3)].string), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001958}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 break;
1960
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001961 case 85:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 {
1964 menu_end_entry();
Yann E. MORINc80de522013-09-03 17:49:04 +02001965}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 break;
1967
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001968 case 86:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 {
1971 printd(DEBUG_PARSE, "%s:%d:help\n", zconf_curname(), zconf_lineno());
1972 zconf_starthelp();
Yann E. MORINc80de522013-09-03 17:49:04 +02001973}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 break;
1975
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001976 case 87:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001979 current_entry->help = (yyvsp[(2) - (2)].string);
Yann E. MORINc80de522013-09-03 17:49:04 +02001980}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 break;
1982
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001983 case 92:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02001986 menu_add_dep((yyvsp[(3) - (4)].expr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 printd(DEBUG_PARSE, "%s:%d:depends on\n", zconf_curname(), zconf_lineno());
Yann E. MORINc80de522013-09-03 17:49:04 +02001988}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 break;
1990
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001991 case 96:
1992
1993 {
1994 menu_add_visibility((yyvsp[(2) - (2)].expr));
Yann E. MORINc80de522013-09-03 17:49:04 +02001995}
Arnaud Lacombe09899c92010-11-06 18:30:24 -03001996 break;
1997
1998 case 98:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02002001 menu_add_prompt(P_PROMPT, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].expr));
Yann E. MORINc80de522013-09-03 17:49:04 +02002002}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 break;
2004
Roman Zippela02f0572005-11-08 21:34:53 -08002005 case 101:
2006
Yann E. MORINc80de522013-09-03 17:49:04 +02002007 { (yyval.id) = (yyvsp[(1) - (2)].id); }
Roman Zippela02f0572005-11-08 21:34:53 -08002008 break;
2009
2010 case 102:
2011
Yann E. MORINc80de522013-09-03 17:49:04 +02002012 { (yyval.id) = (yyvsp[(1) - (2)].id); }
Roman Zippela02f0572005-11-08 21:34:53 -08002013 break;
2014
2015 case 103:
2016
Yann E. MORINc80de522013-09-03 17:49:04 +02002017 { (yyval.id) = (yyvsp[(1) - (2)].id); }
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002018 break;
2019
2020 case 106:
2021
Yann E. MORINc80de522013-09-03 17:49:04 +02002022 { (yyval.expr) = NULL; }
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002023 break;
2024
2025 case 107:
2026
Yann E. MORINc80de522013-09-03 17:49:04 +02002027 { (yyval.expr) = (yyvsp[(2) - (2)].expr); }
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002028 break;
2029
2030 case 108:
2031
Yann E. MORINc80de522013-09-03 17:49:04 +02002032 { (yyval.expr) = expr_alloc_symbol((yyvsp[(1) - (1)].symbol)); }
Roman Zippel5a1aa8a2008-02-29 05:11:50 +01002033 break;
2034
2035 case 109:
2036
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002037 { (yyval.expr) = expr_alloc_comp(E_LTH, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); }
Arnaud Lacombec0920a12010-09-10 21:23:28 -04002038 break;
2039
2040 case 110:
2041
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002042 { (yyval.expr) = expr_alloc_comp(E_LEQ, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); }
Arnaud Lacombec0920a12010-09-10 21:23:28 -04002043 break;
2044
2045 case 111:
2046
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002047 { (yyval.expr) = expr_alloc_comp(E_GTH, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); }
Arnaud Lacombec0920a12010-09-10 21:23:28 -04002048 break;
2049
2050 case 112:
2051
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002052 { (yyval.expr) = expr_alloc_comp(E_GEQ, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); }
Arnaud Lacombe09899c92010-11-06 18:30:24 -03002053 break;
2054
2055 case 113:
2056
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002057 { (yyval.expr) = expr_alloc_comp(E_EQUAL, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); }
Arnaud Lacombe09899c92010-11-06 18:30:24 -03002058 break;
2059
2060 case 114:
2061
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002062 { (yyval.expr) = expr_alloc_comp(E_UNEQUAL, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); }
Arnaud Lacombe09899c92010-11-06 18:30:24 -03002063 break;
2064
2065 case 115:
2066
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002067 { (yyval.expr) = (yyvsp[(2) - (3)].expr); }
Arnaud Lacombe09899c92010-11-06 18:30:24 -03002068 break;
2069
2070 case 116:
2071
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002072 { (yyval.expr) = expr_alloc_one(E_NOT, (yyvsp[(2) - (2)].expr)); }
Arnaud Lacombe09899c92010-11-06 18:30:24 -03002073 break;
2074
2075 case 117:
2076
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002077 { (yyval.expr) = expr_alloc_two(E_OR, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
2078 break;
2079
2080 case 118:
2081
2082 { (yyval.expr) = expr_alloc_two(E_AND, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
2083 break;
2084
2085 case 119:
2086
2087 { (yyval.symbol) = sym_lookup((yyvsp[(1) - (1)].string), 0); free((yyvsp[(1) - (1)].string)); }
2088 break;
2089
2090 case 120:
2091
2092 { (yyval.symbol) = sym_lookup((yyvsp[(1) - (1)].string), SYMBOL_CONST); free((yyvsp[(1) - (1)].string)); }
2093 break;
2094
2095 case 121:
2096
Yann E. MORINc80de522013-09-03 17:49:04 +02002097 { (yyval.string) = NULL; }
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002098 break;
2099
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002102 default: break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
Yann E. MORINc80de522013-09-03 17:49:04 +02002104 /* User semantic actions sometimes alter yychar, and that requires
2105 that yytoken be updated with the new translation. We take the
2106 approach of translating immediately before every use of yytoken.
2107 One alternative is translating here after every semantic action,
2108 but that translation would be missed if the semantic action invokes
2109 YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
2110 if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
2111 incorrect destructor might then be invoked immediately. In the
2112 case of YYERROR or YYBACKUP, subsequent parser actions might lead
2113 to an incorrect destructor call or verbose syntax error message
2114 before the lookahead is translated. */
Sam Ravnborg14f31562007-09-26 20:15:39 +02002115 YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Sam Ravnborg14f31562007-09-26 20:15:39 +02002117 YYPOPSTACK (yylen);
2118 yylen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 YY_STACK_PRINT (yyss, yyssp);
2120
2121 *++yyvsp = yyval;
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 /* Now `shift' the result of the reduction. Determine what state
2124 that goes to, based on the state we popped back to and the rule
2125 number reduced by. */
2126
2127 yyn = yyr1[yyn];
2128
2129 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
2130 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
2131 yystate = yytable[yystate];
2132 else
2133 yystate = yydefgoto[yyn - YYNTOKENS];
2134
2135 goto yynewstate;
2136
2137
2138/*------------------------------------.
2139| yyerrlab -- here on detecting error |
2140`------------------------------------*/
2141yyerrlab:
Yann E. MORINc80de522013-09-03 17:49:04 +02002142 /* Make sure we have latest lookahead translation. See comments at
2143 user semantic actions for why this is necessary. */
2144 yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 /* If not already recovering from an error, report this error. */
2147 if (!yyerrstatus)
2148 {
2149 ++yynerrs;
Sam Ravnborg14f31562007-09-26 20:15:39 +02002150#if ! YYERROR_VERBOSE
2151 yyerror (YY_("syntax error"));
2152#else
Yann E. MORINc80de522013-09-03 17:49:04 +02002153# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
2154 yyssp, yytoken)
Sam Ravnborg14f31562007-09-26 20:15:39 +02002155 {
Yann E. MORINc80de522013-09-03 17:49:04 +02002156 char const *yymsgp = YY_("syntax error");
2157 int yysyntax_error_status;
2158 yysyntax_error_status = YYSYNTAX_ERROR;
2159 if (yysyntax_error_status == 0)
2160 yymsgp = yymsg;
2161 else if (yysyntax_error_status == 1)
2162 {
2163 if (yymsg != yymsgbuf)
2164 YYSTACK_FREE (yymsg);
2165 yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
2166 if (!yymsg)
2167 {
2168 yymsg = yymsgbuf;
2169 yymsg_alloc = sizeof yymsgbuf;
2170 yysyntax_error_status = 2;
2171 }
2172 else
2173 {
2174 yysyntax_error_status = YYSYNTAX_ERROR;
2175 yymsgp = yymsg;
2176 }
2177 }
2178 yyerror (yymsgp);
2179 if (yysyntax_error_status == 2)
2180 goto yyexhaustedlab;
Sam Ravnborg14f31562007-09-26 20:15:39 +02002181 }
Yann E. MORINc80de522013-09-03 17:49:04 +02002182# undef YYSYNTAX_ERROR
Sam Ravnborg14f31562007-09-26 20:15:39 +02002183#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
2185
2186
2187
2188 if (yyerrstatus == 3)
2189 {
Josh Triplett1456edb2009-10-15 11:03:20 -07002190 /* If just tried and failed to reuse lookahead token after an
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 error, discard it. */
2192
Roman Zippel7a884882005-11-08 21:34:51 -08002193 if (yychar <= YYEOF)
Sam Ravnborg14f31562007-09-26 20:15:39 +02002194 {
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002195 /* Return failure if at end of input. */
Roman Zippel7a884882005-11-08 21:34:51 -08002196 if (yychar == YYEOF)
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002197 YYABORT;
Sam Ravnborg14f31562007-09-26 20:15:39 +02002198 }
Roman Zippel7a884882005-11-08 21:34:51 -08002199 else
2200 {
Sam Ravnborg14f31562007-09-26 20:15:39 +02002201 yydestruct ("Error: discarding",
2202 yytoken, &yylval);
Roman Zippel7a884882005-11-08 21:34:51 -08002203 yychar = YYEMPTY;
2204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
2206
Josh Triplett1456edb2009-10-15 11:03:20 -07002207 /* Else will try to reuse lookahead token after shifting the error
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 token. */
2209 goto yyerrlab1;
2210
2211
Roman Zippel7a884882005-11-08 21:34:51 -08002212/*---------------------------------------------------.
2213| yyerrorlab -- error raised explicitly by YYERROR. |
2214`---------------------------------------------------*/
2215yyerrorlab:
2216
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002217 /* Pacify compilers like GCC when the user code never invokes
2218 YYERROR and the label yyerrorlab therefore never appears in user
2219 code. */
Sam Ravnborg14f31562007-09-26 20:15:39 +02002220 if (/*CONSTCOND*/ 0)
Roman Zippel7a884882005-11-08 21:34:51 -08002221 goto yyerrorlab;
Roman Zippel7a884882005-11-08 21:34:51 -08002222
Sam Ravnborg14f31562007-09-26 20:15:39 +02002223 /* Do not reclaim the symbols of the rule which action triggered
2224 this YYERROR. */
2225 YYPOPSTACK (yylen);
2226 yylen = 0;
2227 YY_STACK_PRINT (yyss, yyssp);
Roman Zippel7a884882005-11-08 21:34:51 -08002228 yystate = *yyssp;
2229 goto yyerrlab1;
2230
2231
2232/*-------------------------------------------------------------.
2233| yyerrlab1 -- common code for both syntax error and YYERROR. |
2234`-------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235yyerrlab1:
2236 yyerrstatus = 3; /* Each real token shifted decrements this. */
2237
2238 for (;;)
2239 {
2240 yyn = yypact[yystate];
Yann E. MORINc80de522013-09-03 17:49:04 +02002241 if (!yypact_value_is_default (yyn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 {
2243 yyn += YYTERROR;
2244 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
2245 {
2246 yyn = yytable[yyn];
2247 if (0 < yyn)
2248 break;
2249 }
2250 }
2251
2252 /* Pop the current state because it cannot handle the error token. */
2253 if (yyssp == yyss)
2254 YYABORT;
2255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Sam Ravnborg14f31562007-09-26 20:15:39 +02002257 yydestruct ("Error: popping",
2258 yystos[yystate], yyvsp);
2259 YYPOPSTACK (1);
Roman Zippel7a884882005-11-08 21:34:51 -08002260 yystate = *yyssp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 YY_STACK_PRINT (yyss, yyssp);
2262 }
2263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 *++yyvsp = yylval;
2265
2266
Sam Ravnborg14f31562007-09-26 20:15:39 +02002267 /* Shift the error token. */
Roman Zippel7a884882005-11-08 21:34:51 -08002268 YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 yystate = yyn;
2271 goto yynewstate;
2272
2273
2274/*-------------------------------------.
2275| yyacceptlab -- YYACCEPT comes here. |
2276`-------------------------------------*/
2277yyacceptlab:
2278 yyresult = 0;
2279 goto yyreturn;
2280
2281/*-----------------------------------.
2282| yyabortlab -- YYABORT comes here. |
2283`-----------------------------------*/
2284yyabortlab:
2285 yyresult = 1;
2286 goto yyreturn;
2287
Jan Beulich4a47f1e2015-06-15 13:00:59 +01002288#if !defined yyoverflow || YYERROR_VERBOSE
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002289/*-------------------------------------------------.
2290| yyexhaustedlab -- memory exhaustion comes here. |
2291`-------------------------------------------------*/
2292yyexhaustedlab:
2293 yyerror (YY_("memory exhausted"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 yyresult = 2;
2295 /* Fall through. */
2296#endif
2297
2298yyreturn:
Josh Triplett1456edb2009-10-15 11:03:20 -07002299 if (yychar != YYEMPTY)
Yann E. MORINc80de522013-09-03 17:49:04 +02002300 {
2301 /* Make sure we have latest lookahead translation. See comments at
2302 user semantic actions for why this is necessary. */
2303 yytoken = YYTRANSLATE (yychar);
2304 yydestruct ("Cleanup: discarding lookahead",
2305 yytoken, &yylval);
2306 }
Sam Ravnborg14f31562007-09-26 20:15:39 +02002307 /* Do not reclaim the symbols of the rule which action triggered
2308 this YYABORT or YYACCEPT. */
2309 YYPOPSTACK (yylen);
2310 YY_STACK_PRINT (yyss, yyssp);
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002311 while (yyssp != yyss)
2312 {
2313 yydestruct ("Cleanup: popping",
2314 yystos[*yyssp], yyvsp);
Sam Ravnborg14f31562007-09-26 20:15:39 +02002315 YYPOPSTACK (1);
Roman Zippelf6a88aa2006-06-08 22:12:44 -07002316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317#ifndef yyoverflow
2318 if (yyss != yyssa)
2319 YYSTACK_FREE (yyss);
2320#endif
Sam Ravnborg14f31562007-09-26 20:15:39 +02002321#if YYERROR_VERBOSE
2322 if (yymsg != yymsgbuf)
2323 YYSTACK_FREE (yymsg);
2324#endif
2325 /* Make sure YYID is used. */
2326 return YYID (yyresult);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327}
2328
2329
2330
2331
2332
2333void conf_parse(const char *name)
2334{
2335 struct symbol *sym;
2336 int i;
2337
2338 zconf_initscan(name);
2339
2340 sym_init();
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +02002341 _menu_init();
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +02002342 rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Roman Zippela02f0572005-11-08 21:34:53 -08002344 if (getenv("ZCONF_DEBUG"))
2345 zconfdebug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 zconfparse();
2347 if (zconfnerrs)
2348 exit(1);
Yann E. MORINc80de522013-09-03 17:49:04 +02002349 if (!modules_sym)
2350 modules_sym = sym_find( "n" );
Arnaud Lacombec0920a12010-09-10 21:23:28 -04002351
2352 rootmenu.prompt->text = _(rootmenu.prompt->text);
2353 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text);
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 menu_finalize(&rootmenu);
2356 for_all_symbols(i, sym) {
Sam Ravnborg5447d342007-05-06 09:20:10 +02002357 if (sym_check_deps(sym))
2358 zconfnerrs++;
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09002359 }
Sam Ravnborg5447d342007-05-06 09:20:10 +02002360 if (zconfnerrs)
2361 exit(1);
Karsten Wiesebfc10002006-12-13 00:34:07 -08002362 sym_set_change_count(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363}
2364
Josh Triplett65166572009-10-15 12:13:36 -07002365static const char *zconf_tokenname(int token)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
2367 switch (token) {
2368 case T_MENU: return "menu";
2369 case T_ENDMENU: return "endmenu";
2370 case T_CHOICE: return "choice";
2371 case T_ENDCHOICE: return "endchoice";
2372 case T_IF: return "if";
2373 case T_ENDIF: return "endif";
Roman Zippela02f0572005-11-08 21:34:53 -08002374 case T_DEPENDS: return "depends";
Arnaud Lacombe09899c92010-11-06 18:30:24 -03002375 case T_VISIBLE: return "visible";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 return "<token>";
2378}
2379
Arnaud Lacombe2f76b352011-05-23 01:08:19 -04002380static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
Roman Zippela02f0572005-11-08 21:34:53 -08002382 if (id->token != endtoken) {
2383 zconf_error("unexpected '%s' within %s block",
2384 kconf_id_strings + id->name, zconf_tokenname(starttoken));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 zconfnerrs++;
2386 return false;
2387 }
2388 if (current_menu->file != current_file) {
Roman Zippela02f0572005-11-08 21:34:53 -08002389 zconf_error("'%s' in different file than '%s'",
2390 kconf_id_strings + id->name, zconf_tokenname(starttoken));
2391 fprintf(stderr, "%s:%d: location of the '%s'\n",
2392 current_menu->file->name, current_menu->lineno,
2393 zconf_tokenname(starttoken));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 zconfnerrs++;
2395 return false;
2396 }
2397 return true;
2398}
2399
2400static void zconfprint(const char *err, ...)
2401{
2402 va_list ap;
2403
Roman Zippela02f0572005-11-08 21:34:53 -08002404 fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
2405 va_start(ap, err);
2406 vfprintf(stderr, err, ap);
2407 va_end(ap);
2408 fprintf(stderr, "\n");
2409}
2410
2411static void zconf_error(const char *err, ...)
2412{
2413 va_list ap;
2414
2415 zconfnerrs++;
2416 fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 va_start(ap, err);
2418 vfprintf(stderr, err, ap);
2419 va_end(ap);
2420 fprintf(stderr, "\n");
2421}
2422
2423static void zconferror(const char *err)
2424{
2425 fprintf(stderr, "%s:%d: %s\n", zconf_curname(), zconf_lineno() + 1, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426}
2427
Josh Triplett65166572009-10-15 12:13:36 -07002428static void print_quoted_string(FILE *out, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429{
2430 const char *p;
2431 int len;
2432
2433 putc('"', out);
2434 while ((p = strchr(str, '"'))) {
2435 len = p - str;
2436 if (len)
2437 fprintf(out, "%.*s", len, str);
2438 fputs("\\\"", out);
2439 str = p + 1;
2440 }
2441 fputs(str, out);
2442 putc('"', out);
2443}
2444
Josh Triplett65166572009-10-15 12:13:36 -07002445static void print_symbol(FILE *out, struct menu *menu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
2447 struct symbol *sym = menu->sym;
2448 struct property *prop;
2449
2450 if (sym_is_choice(sym))
Li Zefanc6ccc302010-04-14 11:44:20 +08002451 fprintf(out, "\nchoice\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 else
Li Zefanc6ccc302010-04-14 11:44:20 +08002453 fprintf(out, "\nconfig %s\n", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 switch (sym->type) {
2455 case S_BOOLEAN:
2456 fputs(" boolean\n", out);
2457 break;
2458 case S_TRISTATE:
2459 fputs(" tristate\n", out);
2460 break;
2461 case S_STRING:
2462 fputs(" string\n", out);
2463 break;
2464 case S_INT:
2465 fputs(" integer\n", out);
2466 break;
2467 case S_HEX:
2468 fputs(" hex\n", out);
2469 break;
2470 default:
2471 fputs(" ???\n", out);
2472 break;
2473 }
2474 for (prop = sym->prop; prop; prop = prop->next) {
2475 if (prop->menu != menu)
2476 continue;
2477 switch (prop->type) {
2478 case P_PROMPT:
2479 fputs(" prompt ", out);
2480 print_quoted_string(out, prop->text);
2481 if (!expr_is_yes(prop->visible.expr)) {
2482 fputs(" if ", out);
2483 expr_fprint(prop->visible.expr, out);
2484 }
2485 fputc('\n', out);
2486 break;
2487 case P_DEFAULT:
2488 fputs( " default ", out);
2489 expr_fprint(prop->expr, out);
2490 if (!expr_is_yes(prop->visible.expr)) {
2491 fputs(" if ", out);
2492 expr_fprint(prop->visible.expr, out);
2493 }
2494 fputc('\n', out);
2495 break;
2496 case P_CHOICE:
2497 fputs(" #choice value\n", out);
2498 break;
Li Zefanc6ccc302010-04-14 11:44:20 +08002499 case P_SELECT:
2500 fputs( " select ", out);
2501 expr_fprint(prop->expr, out);
2502 fputc('\n', out);
2503 break;
2504 case P_RANGE:
2505 fputs( " range ", out);
2506 expr_fprint(prop->expr, out);
2507 fputc('\n', out);
2508 break;
2509 case P_MENU:
2510 fputs( " menu ", out);
2511 print_quoted_string(out, prop->text);
2512 fputc('\n', out);
2513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 default:
2515 fprintf(out, " unknown prop %d!\n", prop->type);
2516 break;
2517 }
2518 }
Sam Ravnborg03d29122007-07-21 00:00:36 +02002519 if (menu->help) {
2520 int len = strlen(menu->help);
2521 while (menu->help[--len] == '\n')
2522 menu->help[len] = 0;
2523 fprintf(out, " help\n%s\n", menu->help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
2527void zconfdump(FILE *out)
2528{
2529 struct property *prop;
2530 struct symbol *sym;
2531 struct menu *menu;
2532
2533 menu = rootmenu.list;
2534 while (menu) {
2535 if ((sym = menu->sym))
2536 print_symbol(out, menu);
2537 else if ((prop = menu->prompt)) {
2538 switch (prop->type) {
2539 case P_COMMENT:
2540 fputs("\ncomment ", out);
2541 print_quoted_string(out, prop->text);
2542 fputs("\n", out);
2543 break;
2544 case P_MENU:
2545 fputs("\nmenu ", out);
2546 print_quoted_string(out, prop->text);
2547 fputs("\n", out);
2548 break;
2549 default:
2550 ;
2551 }
2552 if (!expr_is_yes(prop->visible.expr)) {
2553 fputs(" depends ", out);
2554 expr_fprint(prop->visible.expr, out);
2555 fputc('\n', out);
2556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
2558
2559 if (menu->list)
2560 menu = menu->list;
2561 else if (menu->next)
2562 menu = menu->next;
2563 else while ((menu = menu->parent)) {
2564 if (menu->prompt && menu->prompt->type == P_MENU)
2565 fputs("\nendmenu\n", out);
2566 if (menu->next) {
2567 menu = menu->next;
2568 break;
2569 }
2570 }
2571 }
2572}
2573
Arnaud Lacombe2f76b352011-05-23 01:08:19 -04002574#include "zconf.lex.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575#include "util.c"
2576#include "confdata.c"
2577#include "expr.c"
2578#include "symbol.c"
2579#include "menu.c"
2580