Branch data Line data Source code
1 : : /* A Bison parser, made by GNU Bison 3.0.2. */
2 : :
3 : : /* Bison implementation for Yacc-like parsers in C
4 : :
5 : : Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
6 : :
7 : : This program is free software: you can redistribute it and/or modify
8 : : it under the terms of the GNU General Public License as published by
9 : : the Free Software Foundation, either version 3 of the License, or
10 : : (at your option) any later version.
11 : :
12 : : This program is distributed in the hope that it will be useful,
13 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : : GNU General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 : :
20 : : /* As a special exception, you may create a larger work that contains
21 : : part or all of the Bison parser skeleton and distribute that work
22 : : under terms of your choice, so long as that work isn't itself a
23 : : parser generator using the skeleton or a modified version thereof
24 : : as a parser skeleton. Alternatively, if you modify or redistribute
25 : : the parser skeleton itself, you may (at your option) remove this
26 : : special exception, which will cause the skeleton and the resulting
27 : : Bison output files to be licensed under the GNU General Public
28 : : License without this special exception.
29 : :
30 : : This special exception was added by the Free Software Foundation in
31 : : version 2.2 of Bison. */
32 : :
33 : : /* C LALR(1) parser skeleton written by Richard Stallman, by
34 : : simplifying the original so-called "semantic" parser. */
35 : :
36 : : /* All symbols defined below should begin with yy or YY, to avoid
37 : : infringing on user name space. This should be done even for local
38 : : variables, as they might otherwise be expanded by user macros.
39 : : There are some unavoidable exceptions within include files to
40 : : define necessary library symbols; they are noted "INFRINGES ON
41 : : USER NAME SPACE" below. */
42 : :
43 : : /* Identify Bison output. */
44 : : #define YYBISON 1
45 : :
46 : : /* Bison version. */
47 : : #define YYBISON_VERSION "3.0.2"
48 : :
49 : : /* Skeleton name. */
50 : : #define YYSKELETON_NAME "yacc.c"
51 : :
52 : : /* Pure parsers. */
53 : : #define YYPURE 0
54 : :
55 : : /* Push parsers. */
56 : : #define YYPUSH 0
57 : :
58 : : /* Pull parsers. */
59 : : #define YYPULL 1
60 : :
61 : :
62 : : /* Substitute the variable and function names. */
63 : : #define yyparse dataset_parse
64 : : #define yylex dataset_lex
65 : : #define yyerror dataset_error
66 : : #define yydebug dataset_debug
67 : : #define yynerrs dataset_nerrs
68 : :
69 : : #define yylval dataset_lval
70 : : #define yychar dataset_char
71 : :
72 : : /* Copy the first part of user declarations. */
73 : : #line 3 "parse_dataset.y" /* yacc.c:339 */
74 : :
75 : : /*
76 : : * parse_dataset.y - parser for the Qucs dataset
77 : : *
78 : : * Copyright (C) 2003, 2004, 2006 Stefan Jahn <stefan@lkcc.org>
79 : : *
80 : : * This is free software; you can redistribute it and/or modify
81 : : * it under the terms of the GNU General Public License as published by
82 : : * the Free Software Foundation; either version 2, or (at your option)
83 : : * any later version.
84 : : *
85 : : * This software is distributed in the hope that it will be useful,
86 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
87 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
88 : : * GNU General Public License for more details.
89 : : *
90 : : * You should have received a copy of the GNU General Public License
91 : : * along with this package; see the file COPYING. If not, write to
92 : : * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
93 : : * Boston, MA 02110-1301, USA.
94 : : *
95 : : * $Id$
96 : : *
97 : : */
98 : :
99 : : #if HAVE_CONFIG_H
100 : : # include <config.h>
101 : : #endif
102 : :
103 : : #include <stdio.h>
104 : : #include <stdlib.h>
105 : : #include <string.h>
106 : :
107 : : #define YYERROR_VERBOSE 42
108 : : #define YYDEBUG 1
109 : : #define YYMAXDEPTH 10000000
110 : :
111 : : #include "logging.h"
112 : : #include "complex.h"
113 : : #include "object.h"
114 : : #include "vector.h"
115 : : #include "dataset.h"
116 : : #include "strlist.h"
117 : : #include "check_dataset.h"
118 : :
119 : : using namespace qucs;
120 : :
121 : :
122 : : #line 123 "parse_dataset.cpp" /* yacc.c:339 */
123 : :
124 : : # ifndef YY_NULLPTR
125 : : # if defined __cplusplus && 201103L <= __cplusplus
126 : : # define YY_NULLPTR nullptr
127 : : # else
128 : : # define YY_NULLPTR 0
129 : : # endif
130 : : # endif
131 : :
132 : : /* Enabling verbose error messages. */
133 : : #ifdef YYERROR_VERBOSE
134 : : # undef YYERROR_VERBOSE
135 : : # define YYERROR_VERBOSE 1
136 : : #else
137 : : # define YYERROR_VERBOSE 0
138 : : #endif
139 : :
140 : : /* In a future release of Bison, this section will be replaced
141 : : by #include "tokens_dataset.h". */
142 : : #ifndef YY_DATASET_TOKENS_DATASET_H_INCLUDED
143 : : # define YY_DATASET_TOKENS_DATASET_H_INCLUDED
144 : : /* Debug traces. */
145 : : #ifndef YYDEBUG
146 : : # define YYDEBUG 0
147 : : #endif
148 : : #if YYDEBUG
149 : : extern int dataset_debug;
150 : : #endif
151 : :
152 : : /* Token type. */
153 : : #ifndef YYTOKENTYPE
154 : : # define YYTOKENTYPE
155 : : enum yytokentype
156 : : {
157 : : InvalidCharacter = 258,
158 : : Identifier = 259,
159 : : REAL = 260,
160 : : IMAG = 261,
161 : : COMPLEX = 262,
162 : : Integer = 263,
163 : : Eol = 264,
164 : : IndepBegin = 265,
165 : : DepBegin = 266,
166 : : IndepEnd = 267,
167 : : DepEnd = 268,
168 : : Version = 269
169 : : };
170 : : #endif
171 : : /* Tokens. */
172 : : #define InvalidCharacter 258
173 : : #define Identifier 259
174 : : #define REAL 260
175 : : #define IMAG 261
176 : : #define COMPLEX 262
177 : : #define Integer 263
178 : : #define Eol 264
179 : : #define IndepBegin 265
180 : : #define DepBegin 266
181 : : #define IndepEnd 267
182 : : #define DepEnd 268
183 : : #define Version 269
184 : :
185 : : /* Value type. */
186 : : #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
187 : : typedef union YYSTYPE YYSTYPE;
188 : : union YYSTYPE
189 : : {
190 : : #line 67 "parse_dataset.y" /* yacc.c:355 */
191 : :
192 : : char * ident;
193 : : double f;
194 : : struct {
195 : : double r;
196 : : double i;
197 : : } c;
198 : : long n;
199 : : qucs::vector * v;
200 : : qucs::dataset * data;
201 : : qucs::strlist * list;
202 : :
203 : : #line 204 "parse_dataset.cpp" /* yacc.c:355 */
204 : : };
205 : : # define YYSTYPE_IS_TRIVIAL 1
206 : : # define YYSTYPE_IS_DECLARED 1
207 : : #endif
208 : :
209 : :
210 : : extern YYSTYPE dataset_lval;
211 : :
212 : : int dataset_parse (void);
213 : :
214 : : #endif /* !YY_DATASET_TOKENS_DATASET_H_INCLUDED */
215 : :
216 : : /* Copy the second part of user declarations. */
217 : :
218 : : #line 219 "parse_dataset.cpp" /* yacc.c:358 */
219 : :
220 : : #ifdef short
221 : : # undef short
222 : : #endif
223 : :
224 : : #ifdef YYTYPE_UINT8
225 : : typedef YYTYPE_UINT8 yytype_uint8;
226 : : #else
227 : : typedef unsigned char yytype_uint8;
228 : : #endif
229 : :
230 : : #ifdef YYTYPE_INT8
231 : : typedef YYTYPE_INT8 yytype_int8;
232 : : #else
233 : : typedef signed char yytype_int8;
234 : : #endif
235 : :
236 : : #ifdef YYTYPE_UINT16
237 : : typedef YYTYPE_UINT16 yytype_uint16;
238 : : #else
239 : : typedef unsigned short int yytype_uint16;
240 : : #endif
241 : :
242 : : #ifdef YYTYPE_INT16
243 : : typedef YYTYPE_INT16 yytype_int16;
244 : : #else
245 : : typedef short int yytype_int16;
246 : : #endif
247 : :
248 : : #ifndef YYSIZE_T
249 : : # ifdef __SIZE_TYPE__
250 : : # define YYSIZE_T __SIZE_TYPE__
251 : : # elif defined size_t
252 : : # define YYSIZE_T size_t
253 : : # elif ! defined YYSIZE_T
254 : : # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
255 : : # define YYSIZE_T size_t
256 : : # else
257 : : # define YYSIZE_T unsigned int
258 : : # endif
259 : : #endif
260 : :
261 : : #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
262 : :
263 : : #ifndef YY_
264 : : # if defined YYENABLE_NLS && YYENABLE_NLS
265 : : # if ENABLE_NLS
266 : : # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
267 : : # define YY_(Msgid) dgettext ("bison-runtime", Msgid)
268 : : # endif
269 : : # endif
270 : : # ifndef YY_
271 : : # define YY_(Msgid) Msgid
272 : : # endif
273 : : #endif
274 : :
275 : : #ifndef YY_ATTRIBUTE
276 : : # if (defined __GNUC__ \
277 : : && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
278 : : || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
279 : : # define YY_ATTRIBUTE(Spec) __attribute__(Spec)
280 : : # else
281 : : # define YY_ATTRIBUTE(Spec) /* empty */
282 : : # endif
283 : : #endif
284 : :
285 : : #ifndef YY_ATTRIBUTE_PURE
286 : : # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
287 : : #endif
288 : :
289 : : #ifndef YY_ATTRIBUTE_UNUSED
290 : : # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
291 : : #endif
292 : :
293 : : #if !defined _Noreturn \
294 : : && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
295 : : # if defined _MSC_VER && 1200 <= _MSC_VER
296 : : # define _Noreturn __declspec (noreturn)
297 : : # else
298 : : # define _Noreturn YY_ATTRIBUTE ((__noreturn__))
299 : : # endif
300 : : #endif
301 : :
302 : : /* Suppress unused-variable warnings by "using" E. */
303 : : #if ! defined lint || defined __GNUC__
304 : : # define YYUSE(E) ((void) (E))
305 : : #else
306 : : # define YYUSE(E) /* empty */
307 : : #endif
308 : :
309 : : #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
310 : : /* Suppress an incorrect diagnostic about yylval being uninitialized. */
311 : : # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
312 : : _Pragma ("GCC diagnostic push") \
313 : : _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
314 : : _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
315 : : # define YY_IGNORE_MAYBE_UNINITIALIZED_END \
316 : : _Pragma ("GCC diagnostic pop")
317 : : #else
318 : : # define YY_INITIAL_VALUE(Value) Value
319 : : #endif
320 : : #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
321 : : # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
322 : : # define YY_IGNORE_MAYBE_UNINITIALIZED_END
323 : : #endif
324 : : #ifndef YY_INITIAL_VALUE
325 : : # define YY_INITIAL_VALUE(Value) /* Nothing. */
326 : : #endif
327 : :
328 : :
329 : : #if ! defined yyoverflow || YYERROR_VERBOSE
330 : :
331 : : /* The parser invokes alloca or malloc; define the necessary symbols. */
332 : :
333 : : # ifdef YYSTACK_USE_ALLOCA
334 : : # if YYSTACK_USE_ALLOCA
335 : : # ifdef __GNUC__
336 : : # define YYSTACK_ALLOC __builtin_alloca
337 : : # elif defined __BUILTIN_VA_ARG_INCR
338 : : # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
339 : : # elif defined _AIX
340 : : # define YYSTACK_ALLOC __alloca
341 : : # elif defined _MSC_VER
342 : : # include <malloc.h> /* INFRINGES ON USER NAME SPACE */
343 : : # define alloca _alloca
344 : : # else
345 : : # define YYSTACK_ALLOC alloca
346 : : # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
347 : : # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
348 : : /* Use EXIT_SUCCESS as a witness for stdlib.h. */
349 : : # ifndef EXIT_SUCCESS
350 : : # define EXIT_SUCCESS 0
351 : : # endif
352 : : # endif
353 : : # endif
354 : : # endif
355 : : # endif
356 : :
357 : : # ifdef YYSTACK_ALLOC
358 : : /* Pacify GCC's 'empty if-body' warning. */
359 : : # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
360 : : # ifndef YYSTACK_ALLOC_MAXIMUM
361 : : /* The OS might guarantee only one guard page at the bottom of the stack,
362 : : and a page size can be as small as 4096 bytes. So we cannot safely
363 : : invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
364 : : to allow for a few compiler-allocated temporary stack slots. */
365 : : # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
366 : : # endif
367 : : # else
368 : : # define YYSTACK_ALLOC YYMALLOC
369 : : # define YYSTACK_FREE YYFREE
370 : : # ifndef YYSTACK_ALLOC_MAXIMUM
371 : : # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
372 : : # endif
373 : : # if (defined __cplusplus && ! defined EXIT_SUCCESS \
374 : : && ! ((defined YYMALLOC || defined malloc) \
375 : : && (defined YYFREE || defined free)))
376 : : # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
377 : : # ifndef EXIT_SUCCESS
378 : : # define EXIT_SUCCESS 0
379 : : # endif
380 : : # endif
381 : : # ifndef YYMALLOC
382 : : # define YYMALLOC malloc
383 : : # if ! defined malloc && ! defined EXIT_SUCCESS
384 : : void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
385 : : # endif
386 : : # endif
387 : : # ifndef YYFREE
388 : : # define YYFREE free
389 : : # if ! defined free && ! defined EXIT_SUCCESS
390 : : void free (void *); /* INFRINGES ON USER NAME SPACE */
391 : : # endif
392 : : # endif
393 : : # endif
394 : : #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
395 : :
396 : :
397 : : #if (! defined yyoverflow \
398 : : && (! defined __cplusplus \
399 : : || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
400 : :
401 : : /* A type that is properly aligned for any stack member. */
402 : : union yyalloc
403 : : {
404 : : yytype_int16 yyss_alloc;
405 : : YYSTYPE yyvs_alloc;
406 : : };
407 : :
408 : : /* The size of the maximum gap between one aligned stack and the next. */
409 : : # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
410 : :
411 : : /* The size of an array large to enough to hold all stacks, each with
412 : : N elements. */
413 : : # define YYSTACK_BYTES(N) \
414 : : ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
415 : : + YYSTACK_GAP_MAXIMUM)
416 : :
417 : : # define YYCOPY_NEEDED 1
418 : :
419 : : /* Relocate STACK from its old location to the new one. The
420 : : local variables YYSIZE and YYSTACKSIZE give the old and new number of
421 : : elements in the stack, and YYPTR gives the new location of the
422 : : stack. Advance YYPTR to a properly aligned location for the next
423 : : stack. */
424 : : # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
425 : : do \
426 : : { \
427 : : YYSIZE_T yynewbytes; \
428 : : YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
429 : : Stack = &yyptr->Stack_alloc; \
430 : : yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
431 : : yyptr += yynewbytes / sizeof (*yyptr); \
432 : : } \
433 : : while (0)
434 : :
435 : : #endif
436 : :
437 : : #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
438 : : /* Copy COUNT objects from SRC to DST. The source and destination do
439 : : not overlap. */
440 : : # ifndef YYCOPY
441 : : # if defined __GNUC__ && 1 < __GNUC__
442 : : # define YYCOPY(Dst, Src, Count) \
443 : : __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
444 : : # else
445 : : # define YYCOPY(Dst, Src, Count) \
446 : : do \
447 : : { \
448 : : YYSIZE_T yyi; \
449 : : for (yyi = 0; yyi < (Count); yyi++) \
450 : : (Dst)[yyi] = (Src)[yyi]; \
451 : : } \
452 : : while (0)
453 : : # endif
454 : : # endif
455 : : #endif /* !YYCOPY_NEEDED */
456 : :
457 : : /* YYFINAL -- State number of the termination state. */
458 : : #define YYFINAL 5
459 : : /* YYLAST -- Last index in YYTABLE. */
460 : : #define YYLAST 37
461 : :
462 : : /* YYNTOKENS -- Number of terminals. */
463 : : #define YYNTOKENS 17
464 : : /* YYNNTS -- Number of nonterminals. */
465 : : #define YYNNTS 7
466 : : /* YYNRULES -- Number of rules. */
467 : : #define YYNRULES 15
468 : : /* YYNSTATES -- Number of states. */
469 : : #define YYNSTATES 38
470 : :
471 : : /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
472 : : by yylex, with out-of-bounds checking. */
473 : : #define YYUNDEFTOK 2
474 : : #define YYMAXUTOK 269
475 : :
476 : : #define YYTRANSLATE(YYX) \
477 : : ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
478 : :
479 : : /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
480 : : as returned by yylex, without out-of-bounds checking. */
481 : : static const yytype_uint8 yytranslate[] =
482 : : {
483 : : 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
484 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
485 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
486 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
487 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
488 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
489 : : 15, 2, 16, 2, 2, 2, 2, 2, 2, 2,
490 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
491 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
492 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
493 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
494 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
495 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
496 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
497 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
498 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
499 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
500 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
501 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
502 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
503 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
504 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
505 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
506 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
507 : : 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
508 : : 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
509 : : 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
510 : : };
511 : :
512 : : #if YYDEBUG
513 : : /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
514 : : static const yytype_uint8 yyrline[] =
515 : : {
516 : : 0, 91, 91, 95, 100, 101, 102, 106, 116, 127,
517 : : 128, 131, 134, 137, 140, 141
518 : : };
519 : : #endif
520 : :
521 : : #if YYDEBUG || YYERROR_VERBOSE || 0
522 : : /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
523 : : First, the terminals, then, starting at YYNTOKENS, nonterminals. */
524 : : static const char *const yytname[] =
525 : : {
526 : : "$end", "error", "$undefined", "InvalidCharacter", "Identifier", "REAL",
527 : : "IMAG", "COMPLEX", "Integer", "Eol", "IndepBegin", "DepBegin",
528 : : "IndepEnd", "DepEnd", "Version", "'<'", "'>'", "$accept", "Input",
529 : : "VersionLine", "VariableList", "Variable", "FloatList", "IdentifierList", YY_NULLPTR
530 : : };
531 : : #endif
532 : :
533 : : # ifdef YYPRINT
534 : : /* YYTOKNUM[NUM] -- (External) token number corresponding to the
535 : : (internal) symbol number NUM (which must be that of a token). */
536 : : static const yytype_uint16 yytoknum[] =
537 : : {
538 : : 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
539 : : 265, 266, 267, 268, 269, 60, 62
540 : : };
541 : : # endif
542 : :
543 : : #define YYPACT_NINF -21
544 : :
545 : : #define yypact_value_is_default(Yystate) \
546 : : (!!((Yystate) == (-21)))
547 : :
548 : : #define YYTABLE_NINF -1
549 : :
550 : : #define yytable_value_is_error(Yytable_value) \
551 : : 0
552 : :
553 : : /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
554 : : STATE-NUM. */
555 : : static const yytype_int8 yypact[] =
556 : : {
557 : : -2, 8, 14, -9, -21, -21, -9, 5, -21, -9,
558 : : -21, 15, 16, -21, 10, 17, 6, 17, 7, 2,
559 : : -21, 2, 2, 2, 2, 2, 9, 11, -21, -21,
560 : : -21, -21, 13, 18, 12, 19, -21, -21
561 : : };
562 : :
563 : : /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
564 : : Performed when YYTABLE does not specify something else to do. Zero
565 : : means the default is an error. */
566 : : static const yytype_uint8 yydefact[] =
567 : : {
568 : : 0, 0, 0, 4, 3, 1, 4, 0, 2, 4,
569 : : 6, 0, 0, 5, 0, 14, 0, 14, 0, 9,
570 : : 15, 9, 9, 9, 9, 9, 0, 0, 10, 12,
571 : : 11, 13, 0, 0, 0, 0, 8, 7
572 : : };
573 : :
574 : : /* YYPGOTO[NTERM-NUM]. */
575 : : static const yytype_int8 yypgoto[] =
576 : : {
577 : : -21, -21, -21, 4, -21, -20, 20
578 : : };
579 : :
580 : : /* YYDEFGOTO[NTERM-NUM]. */
581 : : static const yytype_int8 yydefgoto[] =
582 : : {
583 : : -1, 2, 3, 8, 9, 26, 18
584 : : };
585 : :
586 : : /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
587 : : positive, shift that token. If negative, reduce the rule whose
588 : : number is the opposite. If YYTABLE_NINF, syntax error. */
589 : : static const yytype_uint8 yytable[] =
590 : : {
591 : : 6, 27, 28, 29, 30, 31, 7, 22, 23, 24,
592 : : 10, 25, 1, 13, 5, 11, 12, 4, 16, 14,
593 : : 15, 17, 19, 21, 32, 34, 33, 0, 36, 0,
594 : : 0, 35, 0, 0, 0, 37, 0, 20
595 : : };
596 : :
597 : : static const yytype_int8 yycheck[] =
598 : : {
599 : : 9, 21, 22, 23, 24, 25, 15, 5, 6, 7,
600 : : 6, 9, 14, 9, 0, 10, 11, 9, 8, 4,
601 : : 4, 4, 16, 16, 15, 12, 15, -1, 16, -1,
602 : : -1, 13, -1, -1, -1, 16, -1, 17
603 : : };
604 : :
605 : : /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
606 : : symbol of state STATE-NUM. */
607 : : static const yytype_uint8 yystos[] =
608 : : {
609 : : 0, 14, 18, 19, 9, 0, 9, 15, 20, 21,
610 : : 20, 10, 11, 20, 4, 4, 8, 4, 23, 16,
611 : : 23, 16, 5, 6, 7, 9, 22, 22, 22, 22,
612 : : 22, 22, 15, 15, 12, 13, 16, 16
613 : : };
614 : :
615 : : /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
616 : : static const yytype_uint8 yyr1[] =
617 : : {
618 : : 0, 17, 18, 19, 20, 20, 20, 21, 21, 22,
619 : : 22, 22, 22, 22, 23, 23
620 : : };
621 : :
622 : : /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
623 : : static const yytype_uint8 yyr2[] =
624 : : {
625 : : 0, 2, 2, 2, 0, 2, 2, 9, 9, 0,
626 : : 2, 2, 2, 2, 0, 2
627 : : };
628 : :
629 : :
630 : : #define yyerrok (yyerrstatus = 0)
631 : : #define yyclearin (yychar = YYEMPTY)
632 : : #define YYEMPTY (-2)
633 : : #define YYEOF 0
634 : :
635 : : #define YYACCEPT goto yyacceptlab
636 : : #define YYABORT goto yyabortlab
637 : : #define YYERROR goto yyerrorlab
638 : :
639 : :
640 : : #define YYRECOVERING() (!!yyerrstatus)
641 : :
642 : : #define YYBACKUP(Token, Value) \
643 : : do \
644 : : if (yychar == YYEMPTY) \
645 : : { \
646 : : yychar = (Token); \
647 : : yylval = (Value); \
648 : : YYPOPSTACK (yylen); \
649 : : yystate = *yyssp; \
650 : : goto yybackup; \
651 : : } \
652 : : else \
653 : : { \
654 : : yyerror (YY_("syntax error: cannot back up")); \
655 : : YYERROR; \
656 : : } \
657 : : while (0)
658 : :
659 : : /* Error token number */
660 : : #define YYTERROR 1
661 : : #define YYERRCODE 256
662 : :
663 : :
664 : :
665 : : /* Enable debugging if requested. */
666 : : #if YYDEBUG
667 : :
668 : : # ifndef YYFPRINTF
669 : : # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
670 : : # define YYFPRINTF fprintf
671 : : # endif
672 : :
673 : : # define YYDPRINTF(Args) \
674 : : do { \
675 : : if (yydebug) \
676 : : YYFPRINTF Args; \
677 : : } while (0)
678 : :
679 : : /* This macro is provided for backward compatibility. */
680 : : #ifndef YY_LOCATION_PRINT
681 : : # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
682 : : #endif
683 : :
684 : :
685 : : # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
686 : : do { \
687 : : if (yydebug) \
688 : : { \
689 : : YYFPRINTF (stderr, "%s ", Title); \
690 : : yy_symbol_print (stderr, \
691 : : Type, Value); \
692 : : YYFPRINTF (stderr, "\n"); \
693 : : } \
694 : : } while (0)
695 : :
696 : :
697 : : /*----------------------------------------.
698 : : | Print this symbol's value on YYOUTPUT. |
699 : : `----------------------------------------*/
700 : :
701 : : static void
702 : 0 : yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
703 : : {
704 : 0 : FILE *yyo = yyoutput;
705 : : YYUSE (yyo);
706 [ # # ]: 0 : if (!yyvaluep)
707 : 0 : return;
708 : : # ifdef YYPRINT
709 : : if (yytype < YYNTOKENS)
710 : : YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
711 : : # endif
712 : : YYUSE (yytype);
713 : : }
714 : :
715 : :
716 : : /*--------------------------------.
717 : : | Print this symbol on YYOUTPUT. |
718 : : `--------------------------------*/
719 : :
720 : : static void
721 : 0 : yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
722 : : {
723 : : YYFPRINTF (yyoutput, "%s %s (",
724 [ # # ]: 0 : yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
725 : :
726 : 0 : yy_symbol_value_print (yyoutput, yytype, yyvaluep);
727 : 0 : YYFPRINTF (yyoutput, ")");
728 : 0 : }
729 : :
730 : : /*------------------------------------------------------------------.
731 : : | yy_stack_print -- Print the state stack from its BOTTOM up to its |
732 : : | TOP (included). |
733 : : `------------------------------------------------------------------*/
734 : :
735 : : static void
736 : 0 : yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
737 : : {
738 : 0 : YYFPRINTF (stderr, "Stack now");
739 [ # # ]: 0 : for (; yybottom <= yytop; yybottom++)
740 : : {
741 : 0 : int yybot = *yybottom;
742 : 0 : YYFPRINTF (stderr, " %d", yybot);
743 : : }
744 : 0 : YYFPRINTF (stderr, "\n");
745 : 0 : }
746 : :
747 : : # define YY_STACK_PRINT(Bottom, Top) \
748 : : do { \
749 : : if (yydebug) \
750 : : yy_stack_print ((Bottom), (Top)); \
751 : : } while (0)
752 : :
753 : :
754 : : /*------------------------------------------------.
755 : : | Report that the YYRULE is going to be reduced. |
756 : : `------------------------------------------------*/
757 : :
758 : : static void
759 : 0 : yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)
760 : : {
761 : 0 : unsigned long int yylno = yyrline[yyrule];
762 : 0 : int yynrhs = yyr2[yyrule];
763 : : int yyi;
764 : : YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
765 : 0 : yyrule - 1, yylno);
766 : : /* The symbols being reduced. */
767 [ # # ]: 0 : for (yyi = 0; yyi < yynrhs; yyi++)
768 : : {
769 : 0 : YYFPRINTF (stderr, " $%d = ", yyi + 1);
770 : : yy_symbol_print (stderr,
771 : 0 : yystos[yyssp[yyi + 1 - yynrhs]],
772 : : &(yyvsp[(yyi + 1) - (yynrhs)])
773 : 0 : );
774 : 0 : YYFPRINTF (stderr, "\n");
775 : : }
776 : 0 : }
777 : :
778 : : # define YY_REDUCE_PRINT(Rule) \
779 : : do { \
780 : : if (yydebug) \
781 : : yy_reduce_print (yyssp, yyvsp, Rule); \
782 : : } while (0)
783 : :
784 : : /* Nonzero means print parse trace. It is left uninitialized so that
785 : : multiple parsers can coexist. */
786 : : int yydebug;
787 : : #else /* !YYDEBUG */
788 : : # define YYDPRINTF(Args)
789 : : # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
790 : : # define YY_STACK_PRINT(Bottom, Top)
791 : : # define YY_REDUCE_PRINT(Rule)
792 : : #endif /* !YYDEBUG */
793 : :
794 : :
795 : : /* YYINITDEPTH -- initial size of the parser's stacks. */
796 : : #ifndef YYINITDEPTH
797 : : # define YYINITDEPTH 200
798 : : #endif
799 : :
800 : : /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
801 : : if the built-in stack extension method is used).
802 : :
803 : : Do not make this value too large; the results are undefined if
804 : : YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
805 : : evaluated with infinite-precision integer arithmetic. */
806 : :
807 : : #ifndef YYMAXDEPTH
808 : : # define YYMAXDEPTH 10000
809 : : #endif
810 : :
811 : :
812 : : #if YYERROR_VERBOSE
813 : :
814 : : # ifndef yystrlen
815 : : # if defined __GLIBC__ && defined _STRING_H
816 : : # define yystrlen strlen
817 : : # else
818 : : /* Return the length of YYSTR. */
819 : : static YYSIZE_T
820 : 0 : yystrlen (const char *yystr)
821 : : {
822 : : YYSIZE_T yylen;
823 [ # # ]: 0 : for (yylen = 0; yystr[yylen]; yylen++)
824 : 0 : continue;
825 : 0 : return yylen;
826 : : }
827 : : # endif
828 : : # endif
829 : :
830 : : # ifndef yystpcpy
831 : : # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
832 : : # define yystpcpy stpcpy
833 : : # else
834 : : /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
835 : : YYDEST. */
836 : : static char *
837 : 0 : yystpcpy (char *yydest, const char *yysrc)
838 : : {
839 : 0 : char *yyd = yydest;
840 : 0 : const char *yys = yysrc;
841 : :
842 [ # # ]: 0 : while ((*yyd++ = *yys++) != '\0')
843 : 0 : continue;
844 : :
845 : 0 : return yyd - 1;
846 : : }
847 : : # endif
848 : : # endif
849 : :
850 : : # ifndef yytnamerr
851 : : /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
852 : : quotes and backslashes, so that it's suitable for yyerror. The
853 : : heuristic is that double-quoting is unnecessary unless the string
854 : : contains an apostrophe, a comma, or backslash (other than
855 : : backslash-backslash). YYSTR is taken from yytname. If YYRES is
856 : : null, do not copy; instead, return the length of what the result
857 : : would have been. */
858 : : static YYSIZE_T
859 : 0 : yytnamerr (char *yyres, const char *yystr)
860 : : {
861 [ # # ]: 0 : if (*yystr == '"')
862 : : {
863 : 0 : YYSIZE_T yyn = 0;
864 : 0 : char const *yyp = yystr;
865 : :
866 : 0 : for (;;)
867 [ # # # # ]: 0 : switch (*++yyp)
868 : : {
869 : : case '\'':
870 : : case ',':
871 : 0 : goto do_not_strip_quotes;
872 : :
873 : : case '\\':
874 [ # # ]: 0 : if (*++yyp != '\\')
875 : 0 : goto do_not_strip_quotes;
876 : : /* Fall through. */
877 : : default:
878 [ # # ]: 0 : if (yyres)
879 : 0 : yyres[yyn] = *yyp;
880 : 0 : yyn++;
881 : 0 : break;
882 : :
883 : : case '"':
884 [ # # ]: 0 : if (yyres)
885 : 0 : yyres[yyn] = '\0';
886 : 0 : return yyn;
887 : : }
888 : : do_not_strip_quotes: ;
889 : : }
890 : :
891 [ # # ]: 0 : if (! yyres)
892 : 0 : return yystrlen (yystr);
893 : :
894 : 0 : return yystpcpy (yyres, yystr) - yyres;
895 : : }
896 : : # endif
897 : :
898 : : /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
899 : : about the unexpected token YYTOKEN for the state stack whose top is
900 : : YYSSP.
901 : :
902 : : Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
903 : : not large enough to hold the message. In that case, also set
904 : : *YYMSG_ALLOC to the required number of bytes. Return 2 if the
905 : : required number of bytes is too large to store. */
906 : : static int
907 : 0 : yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
908 : : yytype_int16 *yyssp, int yytoken)
909 : : {
910 : 0 : YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
911 : 0 : YYSIZE_T yysize = yysize0;
912 : : enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
913 : : /* Internationalized format string. */
914 : 0 : const char *yyformat = YY_NULLPTR;
915 : : /* Arguments of yyformat. */
916 : : char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
917 : : /* Number of reported tokens (one for the "unexpected", one per
918 : : "expected"). */
919 : 0 : int yycount = 0;
920 : :
921 : : /* There are many possibilities here to consider:
922 : : - If this state is a consistent state with a default action, then
923 : : the only way this function was invoked is if the default action
924 : : is an error action. In that case, don't check for expected
925 : : tokens because there are none.
926 : : - The only way there can be no lookahead present (in yychar) is if
927 : : this state is a consistent state with a default action. Thus,
928 : : detecting the absence of a lookahead is sufficient to determine
929 : : that there is no unexpected or expected token to report. In that
930 : : case, just report a simple "syntax error".
931 : : - Don't assume there isn't a lookahead just because this state is a
932 : : consistent state with a default action. There might have been a
933 : : previous inconsistent state, consistent state with a non-default
934 : : action, or user semantic action that manipulated yychar.
935 : : - Of course, the expected token list depends on states to have
936 : : correct lookahead information, and it depends on the parser not
937 : : to perform extra reductions after fetching a lookahead from the
938 : : scanner and before detecting a syntax error. Thus, state merging
939 : : (from LALR or IELR) and default reductions corrupt the expected
940 : : token list. However, the list is correct for canonical LR with
941 : : one exception: it will still contain any token that will not be
942 : : accepted due to an error action in a later state.
943 : : */
944 [ # # ]: 0 : if (yytoken != YYEMPTY)
945 : : {
946 : 0 : int yyn = yypact[*yyssp];
947 : 0 : yyarg[yycount++] = yytname[yytoken];
948 [ # # ]: 0 : if (!yypact_value_is_default (yyn))
949 : : {
950 : : /* Start YYX at -YYN if negative to avoid negative indexes in
951 : : YYCHECK. In other words, skip the first -YYN actions for
952 : : this state because they are default actions. */
953 [ # # ]: 0 : int yyxbegin = yyn < 0 ? -yyn : 0;
954 : : /* Stay within bounds of both yycheck and yytname. */
955 : 0 : int yychecklim = YYLAST - yyn + 1;
956 : 0 : int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
957 : : int yyx;
958 : :
959 [ # # ]: 0 : for (yyx = yyxbegin; yyx < yyxend; ++yyx)
960 [ # # ][ # # ]: 0 : if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
961 : : && !yytable_value_is_error (yytable[yyx + yyn]))
962 : : {
963 [ # # ]: 0 : if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
964 : : {
965 : 0 : yycount = 1;
966 : 0 : yysize = yysize0;
967 : 0 : break;
968 : : }
969 : 0 : yyarg[yycount++] = yytname[yyx];
970 : : {
971 : 0 : YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
972 [ # # ]: 0 : if (! (yysize <= yysize1
973 : : && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
974 : 0 : return 2;
975 : 0 : yysize = yysize1;
976 : : }
977 : : }
978 : : }
979 : : }
980 : :
981 [ # # # # : 0 : switch (yycount)
# # # ]
982 : : {
983 : : # define YYCASE_(N, S) \
984 : : case N: \
985 : : yyformat = S; \
986 : : break
987 : 0 : YYCASE_(0, YY_("syntax error"));
988 : 0 : YYCASE_(1, YY_("syntax error, unexpected %s"));
989 : 0 : YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
990 : 0 : YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
991 : 0 : YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
992 : 0 : YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
993 : : # undef YYCASE_
994 : : }
995 : :
996 : : {
997 : 0 : YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
998 [ # # ]: 0 : if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
999 : 0 : return 2;
1000 : 0 : yysize = yysize1;
1001 : : }
1002 : :
1003 [ # # ]: 0 : if (*yymsg_alloc < yysize)
1004 : : {
1005 : 0 : *yymsg_alloc = 2 * yysize;
1006 [ # # ]: 0 : if (! (yysize <= *yymsg_alloc
1007 : 0 : && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
1008 : 0 : *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
1009 : 0 : return 1;
1010 : : }
1011 : :
1012 : : /* Avoid sprintf, as that infringes on the user's name space.
1013 : : Don't have undefined behavior even if the translation
1014 : : produced a string with the wrong number of "%s"s. */
1015 : : {
1016 : 0 : char *yyp = *yymsg;
1017 : 0 : int yyi = 0;
1018 [ # # ]: 0 : while ((*yyp = *yyformat) != '\0')
1019 [ # # ][ # # ]: 0 : if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
[ # # ]
1020 : : {
1021 : 0 : yyp += yytnamerr (yyp, yyarg[yyi++]);
1022 : 0 : yyformat += 2;
1023 : : }
1024 : : else
1025 : : {
1026 : 0 : yyp++;
1027 : 0 : yyformat++;
1028 : : }
1029 : : }
1030 : 0 : return 0;
1031 : : }
1032 : : #endif /* YYERROR_VERBOSE */
1033 : :
1034 : : /*-----------------------------------------------.
1035 : : | Release the memory associated to this symbol. |
1036 : : `-----------------------------------------------*/
1037 : :
1038 : : static void
1039 : 0 : yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
1040 : : {
1041 : : YYUSE (yyvaluep);
1042 [ # # ]: 0 : if (!yymsg)
1043 : 0 : yymsg = "Deleting";
1044 [ # # ]: 0 : YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
1045 : :
1046 : : YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
1047 : : YYUSE (yytype);
1048 : : YY_IGNORE_MAYBE_UNINITIALIZED_END
1049 : 0 : }
1050 : :
1051 : :
1052 : :
1053 : :
1054 : : /* The lookahead symbol. */
1055 : : int yychar;
1056 : :
1057 : : /* The semantic value of the lookahead symbol. */
1058 : : YYSTYPE yylval;
1059 : : /* Number of syntax errors so far. */
1060 : : int yynerrs;
1061 : :
1062 : :
1063 : : /*----------.
1064 : : | yyparse. |
1065 : : `----------*/
1066 : :
1067 : : int
1068 : 0 : yyparse (void)
1069 : : {
1070 : : int yystate;
1071 : : /* Number of tokens to shift before error messages enabled. */
1072 : : int yyerrstatus;
1073 : :
1074 : : /* The stacks and their tools:
1075 : : 'yyss': related to states.
1076 : : 'yyvs': related to semantic values.
1077 : :
1078 : : Refer to the stacks through separate pointers, to allow yyoverflow
1079 : : to reallocate them elsewhere. */
1080 : :
1081 : : /* The state stack. */
1082 : : yytype_int16 yyssa[YYINITDEPTH];
1083 : : yytype_int16 *yyss;
1084 : : yytype_int16 *yyssp;
1085 : :
1086 : : /* The semantic value stack. */
1087 : : YYSTYPE yyvsa[YYINITDEPTH];
1088 : : YYSTYPE *yyvs;
1089 : : YYSTYPE *yyvsp;
1090 : :
1091 : : YYSIZE_T yystacksize;
1092 : :
1093 : : int yyn;
1094 : : int yyresult;
1095 : : /* Lookahead token as an internal (translated) token number. */
1096 : 0 : int yytoken = 0;
1097 : : /* The variables used to return semantic value and location from the
1098 : : action routines. */
1099 : : YYSTYPE yyval;
1100 : :
1101 : : #if YYERROR_VERBOSE
1102 : : /* Buffer for error messages, and its allocated size. */
1103 : : char yymsgbuf[128];
1104 : 0 : char *yymsg = yymsgbuf;
1105 : 0 : YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
1106 : : #endif
1107 : :
1108 : : #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
1109 : :
1110 : : /* The number of symbols on the RHS of the reduced rule.
1111 : : Keep to zero when no symbol should be popped. */
1112 : 0 : int yylen = 0;
1113 : :
1114 : 0 : yyssp = yyss = yyssa;
1115 : 0 : yyvsp = yyvs = yyvsa;
1116 : 0 : yystacksize = YYINITDEPTH;
1117 : :
1118 [ # # ][ # # ]: 0 : YYDPRINTF ((stderr, "Starting parse\n"));
1119 : :
1120 : 0 : yystate = 0;
1121 : 0 : yyerrstatus = 0;
1122 : 0 : yynerrs = 0;
1123 : 0 : yychar = YYEMPTY; /* Cause a token to be read. */
1124 : 0 : goto yysetstate;
1125 : :
1126 : : /*------------------------------------------------------------.
1127 : : | yynewstate -- Push a new state, which is found in yystate. |
1128 : : `------------------------------------------------------------*/
1129 : : yynewstate:
1130 : : /* In all cases, when you get here, the value and location stacks
1131 : : have just been pushed. So pushing a state here evens the stacks. */
1132 : 0 : yyssp++;
1133 : :
1134 : : yysetstate:
1135 : 0 : *yyssp = yystate;
1136 : :
1137 [ # # ]: 0 : if (yyss + yystacksize - 1 <= yyssp)
1138 : : {
1139 : : /* Get the current used size of the three stacks, in elements. */
1140 : 0 : YYSIZE_T yysize = yyssp - yyss + 1;
1141 : :
1142 : : #ifdef yyoverflow
1143 : : {
1144 : : /* Give user a chance to reallocate the stack. Use copies of
1145 : : these so that the &'s don't force the real ones into
1146 : : memory. */
1147 : : YYSTYPE *yyvs1 = yyvs;
1148 : : yytype_int16 *yyss1 = yyss;
1149 : :
1150 : : /* Each stack pointer address is followed by the size of the
1151 : : data in use in that stack, in bytes. This used to be a
1152 : : conditional around just the two extra args, but that might
1153 : : be undefined if yyoverflow is a macro. */
1154 : : yyoverflow (YY_("memory exhausted"),
1155 : : &yyss1, yysize * sizeof (*yyssp),
1156 : : &yyvs1, yysize * sizeof (*yyvsp),
1157 : : &yystacksize);
1158 : :
1159 : : yyss = yyss1;
1160 : : yyvs = yyvs1;
1161 : : }
1162 : : #else /* no yyoverflow */
1163 : : # ifndef YYSTACK_RELOCATE
1164 : : goto yyexhaustedlab;
1165 : : # else
1166 : : /* Extend the stack our own way. */
1167 [ # # ]: 0 : if (YYMAXDEPTH <= yystacksize)
1168 : 0 : goto yyexhaustedlab;
1169 : 0 : yystacksize *= 2;
1170 [ # # ]: 0 : if (YYMAXDEPTH < yystacksize)
1171 : 0 : yystacksize = YYMAXDEPTH;
1172 : :
1173 : : {
1174 : 0 : yytype_int16 *yyss1 = yyss;
1175 : : union yyalloc *yyptr =
1176 : 0 : (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
1177 [ # # ]: 0 : if (! yyptr)
1178 : 0 : goto yyexhaustedlab;
1179 : 0 : YYSTACK_RELOCATE (yyss_alloc, yyss);
1180 : 0 : YYSTACK_RELOCATE (yyvs_alloc, yyvs);
1181 : : # undef YYSTACK_RELOCATE
1182 [ # # ]: 0 : if (yyss1 != yyssa)
1183 : 0 : YYSTACK_FREE (yyss1);
1184 : : }
1185 : : # endif
1186 : : #endif /* no yyoverflow */
1187 : :
1188 : 0 : yyssp = yyss + yysize - 1;
1189 : 0 : yyvsp = yyvs + yysize - 1;
1190 : :
1191 [ # # ][ # # ]: 0 : YYDPRINTF ((stderr, "Stack size increased to %lu\n",
1192 : : (unsigned long int) yystacksize));
1193 : :
1194 [ # # ]: 0 : if (yyss + yystacksize - 1 <= yyssp)
1195 : 0 : YYABORT;
1196 : : }
1197 : :
1198 [ # # ][ # # ]: 0 : YYDPRINTF ((stderr, "Entering state %d\n", yystate));
1199 : :
1200 [ # # ]: 0 : if (yystate == YYFINAL)
1201 : 0 : YYACCEPT;
1202 : :
1203 : 0 : goto yybackup;
1204 : :
1205 : : /*-----------.
1206 : : | yybackup. |
1207 : : `-----------*/
1208 : : yybackup:
1209 : :
1210 : : /* Do appropriate processing given the current state. Read a
1211 : : lookahead token if we need one and don't already have one. */
1212 : :
1213 : : /* First try to decide what to do without reference to lookahead token. */
1214 : 0 : yyn = yypact[yystate];
1215 [ # # ]: 0 : if (yypact_value_is_default (yyn))
1216 : 0 : goto yydefault;
1217 : :
1218 : : /* Not known => get a lookahead token if don't already have one. */
1219 : :
1220 : : /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1221 [ # # ]: 0 : if (yychar == YYEMPTY)
1222 : : {
1223 [ # # ][ # # ]: 0 : YYDPRINTF ((stderr, "Reading a token: "));
1224 [ # # ]: 0 : yychar = yylex ();
1225 : : }
1226 : :
1227 [ # # ]: 0 : if (yychar <= YYEOF)
1228 : : {
1229 : 0 : yychar = yytoken = YYEOF;
1230 [ # # ][ # # ]: 0 : YYDPRINTF ((stderr, "Now at end of input.\n"));
1231 : : }
1232 : : else
1233 : : {
1234 [ # # ]: 0 : yytoken = YYTRANSLATE (yychar);
1235 [ # # ][ # # ]: 0 : YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
[ # # ][ # # ]
1236 : : }
1237 : :
1238 : : /* If the proper action on seeing token YYTOKEN is to reduce or to
1239 : : detect an error, take that action. */
1240 : 0 : yyn += yytoken;
1241 [ # # ][ # # ]: 0 : if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
[ # # ]
1242 : : goto yydefault;
1243 : 0 : yyn = yytable[yyn];
1244 [ # # ]: 0 : if (yyn <= 0)
1245 : : {
1246 : : if (yytable_value_is_error (yyn))
1247 : : goto yyerrlab;
1248 : 0 : yyn = -yyn;
1249 : 0 : goto yyreduce;
1250 : : }
1251 : :
1252 : : /* Count tokens shifted since error; after three, turn off error
1253 : : status. */
1254 [ # # ]: 0 : if (yyerrstatus)
1255 : 0 : yyerrstatus--;
1256 : :
1257 : : /* Shift the lookahead token. */
1258 [ # # ][ # # ]: 0 : YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
[ # # ][ # # ]
1259 : :
1260 : : /* Discard the shifted token. */
1261 : 0 : yychar = YYEMPTY;
1262 : :
1263 : 0 : yystate = yyn;
1264 : : YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
1265 : 0 : *++yyvsp = yylval;
1266 : : YY_IGNORE_MAYBE_UNINITIALIZED_END
1267 : :
1268 : 0 : goto yynewstate;
1269 : :
1270 : :
1271 : : /*-----------------------------------------------------------.
1272 : : | yydefault -- do the default action for the current state. |
1273 : : `-----------------------------------------------------------*/
1274 : : yydefault:
1275 : 0 : yyn = yydefact[yystate];
1276 [ # # ]: 0 : if (yyn == 0)
1277 : 0 : goto yyerrlab;
1278 : 0 : goto yyreduce;
1279 : :
1280 : :
1281 : : /*-----------------------------.
1282 : : | yyreduce -- Do a reduction. |
1283 : : `-----------------------------*/
1284 : : yyreduce:
1285 : : /* yyn is the number of a rule to reduce with. */
1286 : 0 : yylen = yyr2[yyn];
1287 : :
1288 : : /* If YYLEN is nonzero, implement the default value of the action:
1289 : : '$$ = $1'.
1290 : :
1291 : : Otherwise, the following line sets YYVAL to garbage.
1292 : : This behavior is undocumented and Bison
1293 : : users should not rely upon it. Assigning to YYVAL
1294 : : unconditionally makes the parser a bit smaller, and it avoids a
1295 : : GCC warning that YYVAL may be used uninitialized. */
1296 : 0 : yyval = yyvsp[1-yylen];
1297 : :
1298 : :
1299 [ # # ][ # # ]: 0 : YY_REDUCE_PRINT (yyn);
1300 [ # # # # : 0 : switch (yyn)
# # # # #
# # # # #
# ]
1301 : : {
1302 : : case 2:
1303 : : #line 91 "parse_dataset.y" /* yacc.c:1661 */
1304 : : { /* describes a valid dataset */ }
1305 : : #line 1306 "parse_dataset.cpp" /* yacc.c:1661 */
1306 : 0 : break;
1307 : :
1308 : : case 3:
1309 : : #line 95 "parse_dataset.y" /* yacc.c:1661 */
1310 : : { /* version line */
1311 : : (yyval.data) = dataset_result = new dataset ();
1312 : : }
1313 : : #line 1314 "parse_dataset.cpp" /* yacc.c:1661 */
1314 : 0 : break;
1315 : :
1316 : : case 4:
1317 : : #line 100 "parse_dataset.y" /* yacc.c:1661 */
1318 : : { }
1319 : : #line 1320 "parse_dataset.cpp" /* yacc.c:1661 */
1320 : 0 : break;
1321 : :
1322 : : case 5:
1323 : : #line 101 "parse_dataset.y" /* yacc.c:1661 */
1324 : : { /* dependent and independent variable vectors */ }
1325 : : #line 1326 "parse_dataset.cpp" /* yacc.c:1661 */
1326 : 0 : break;
1327 : :
1328 : : case 6:
1329 : : #line 102 "parse_dataset.y" /* yacc.c:1661 */
1330 : : { /* skip to next line */ }
1331 : : #line 1332 "parse_dataset.cpp" /* yacc.c:1661 */
1332 : 0 : break;
1333 : :
1334 : : case 7:
1335 : : #line 106 "parse_dataset.y" /* yacc.c:1661 */
1336 : : {
1337 : : /* dependent variable vector */
1338 : : dataset_vector->setName ((yyvsp[-6].ident));
1339 : : dataset_vector->reverse ();
1340 : : dataset_vector->setDependencies (dataset_idents);
1341 : : dataset_result->appendVariable (dataset_vector);
1342 : : dataset_vector = NULL;
1343 : : dataset_idents = NULL;
1344 : : free ((yyvsp[-6].ident));
1345 : : }
1346 : : #line 1347 "parse_dataset.cpp" /* yacc.c:1661 */
1347 : 0 : break;
1348 : :
1349 : : case 8:
1350 : : #line 116 "parse_dataset.y" /* yacc.c:1661 */
1351 : : {
1352 : : /* independent variable vector */
1353 : : dataset_vector->setRequested ((yyvsp[-5].n));
1354 : : dataset_vector->setName ((yyvsp[-6].ident));
1355 : : dataset_vector->reverse ();
1356 : : dataset_result->appendDependency (dataset_vector);
1357 : : dataset_vector = NULL;
1358 : : free ((yyvsp[-6].ident));
1359 : : }
1360 : : #line 1361 "parse_dataset.cpp" /* yacc.c:1661 */
1361 : 0 : break;
1362 : :
1363 : : case 9:
1364 : : #line 127 "parse_dataset.y" /* yacc.c:1661 */
1365 : : { (yyval.v) = dataset_vector = new vector (); }
1366 : : #line 1367 "parse_dataset.cpp" /* yacc.c:1661 */
1367 : 0 : break;
1368 : :
1369 : : case 10:
1370 : : #line 128 "parse_dataset.y" /* yacc.c:1661 */
1371 : : {
1372 : : dataset_vector->add ((yyvsp[-1].f));
1373 : : }
1374 : : #line 1375 "parse_dataset.cpp" /* yacc.c:1661 */
1375 : 0 : break;
1376 : :
1377 : : case 11:
1378 : : #line 131 "parse_dataset.y" /* yacc.c:1661 */
1379 : : {
1380 : : dataset_vector->add (nr_complex_t ((yyvsp[-1].c).r, (yyvsp[-1].c).i));
1381 : : }
1382 : : #line 1383 "parse_dataset.cpp" /* yacc.c:1661 */
1383 : 0 : break;
1384 : :
1385 : : case 12:
1386 : : #line 134 "parse_dataset.y" /* yacc.c:1661 */
1387 : : {
1388 : : dataset_vector->add (nr_complex_t (0.0, (yyvsp[-1].f)));
1389 : : }
1390 : : #line 1391 "parse_dataset.cpp" /* yacc.c:1661 */
1391 : 0 : break;
1392 : :
1393 : : case 13:
1394 : : #line 137 "parse_dataset.y" /* yacc.c:1661 */
1395 : : { /* skip to next line */ }
1396 : : #line 1397 "parse_dataset.cpp" /* yacc.c:1661 */
1397 : 0 : break;
1398 : :
1399 : : case 14:
1400 : : #line 140 "parse_dataset.y" /* yacc.c:1661 */
1401 : : { (yyval.list) = dataset_idents = new strlist (); }
1402 : : #line 1403 "parse_dataset.cpp" /* yacc.c:1661 */
1403 : 0 : break;
1404 : :
1405 : : case 15:
1406 : : #line 141 "parse_dataset.y" /* yacc.c:1661 */
1407 : : {
1408 : : dataset_idents->add ((yyvsp[-1].ident));
1409 : : free ((yyvsp[-1].ident));
1410 : : }
1411 : : #line 1412 "parse_dataset.cpp" /* yacc.c:1661 */
1412 : 0 : break;
1413 : :
1414 : :
1415 : : #line 1416 "parse_dataset.cpp" /* yacc.c:1661 */
1416 : 0 : default: break;
1417 : : }
1418 : : /* User semantic actions sometimes alter yychar, and that requires
1419 : : that yytoken be updated with the new translation. We take the
1420 : : approach of translating immediately before every use of yytoken.
1421 : : One alternative is translating here after every semantic action,
1422 : : but that translation would be missed if the semantic action invokes
1423 : : YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
1424 : : if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
1425 : : incorrect destructor might then be invoked immediately. In the
1426 : : case of YYERROR or YYBACKUP, subsequent parser actions might lead
1427 : : to an incorrect destructor call or verbose syntax error message
1428 : : before the lookahead is translated. */
1429 [ # # ][ # # ]: 0 : YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
[ # # ][ # # ]
1430 : :
1431 : 0 : YYPOPSTACK (yylen);
1432 : 0 : yylen = 0;
1433 [ # # ][ # # ]: 0 : YY_STACK_PRINT (yyss, yyssp);
1434 : :
1435 : 0 : *++yyvsp = yyval;
1436 : :
1437 : : /* Now 'shift' the result of the reduction. Determine what state
1438 : : that goes to, based on the state we popped back to and the rule
1439 : : number reduced by. */
1440 : :
1441 : 0 : yyn = yyr1[yyn];
1442 : :
1443 : 0 : yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
1444 [ # # ][ # # ]: 0 : if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
[ # # ]
1445 : 0 : yystate = yytable[yystate];
1446 : : else
1447 : 0 : yystate = yydefgoto[yyn - YYNTOKENS];
1448 : :
1449 : 0 : goto yynewstate;
1450 : :
1451 : :
1452 : : /*--------------------------------------.
1453 : : | yyerrlab -- here on detecting error. |
1454 : : `--------------------------------------*/
1455 : : yyerrlab:
1456 : : /* Make sure we have latest lookahead translation. See comments at
1457 : : user semantic actions for why this is necessary. */
1458 [ # # ][ # # ]: 0 : yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
1459 : :
1460 : : /* If not already recovering from an error, report this error. */
1461 [ # # ]: 0 : if (!yyerrstatus)
1462 : : {
1463 : 0 : ++yynerrs;
1464 : : #if ! YYERROR_VERBOSE
1465 : : yyerror (YY_("syntax error"));
1466 : : #else
1467 : : # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
1468 : : yyssp, yytoken)
1469 : : {
1470 : 0 : char const *yymsgp = YY_("syntax error");
1471 : : int yysyntax_error_status;
1472 : 0 : yysyntax_error_status = YYSYNTAX_ERROR;
1473 [ # # ]: 0 : if (yysyntax_error_status == 0)
1474 : 0 : yymsgp = yymsg;
1475 [ # # ]: 0 : else if (yysyntax_error_status == 1)
1476 : : {
1477 [ # # ]: 0 : if (yymsg != yymsgbuf)
1478 : 0 : YYSTACK_FREE (yymsg);
1479 : 0 : yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
1480 [ # # ]: 0 : if (!yymsg)
1481 : : {
1482 : 0 : yymsg = yymsgbuf;
1483 : 0 : yymsg_alloc = sizeof yymsgbuf;
1484 : 0 : yysyntax_error_status = 2;
1485 : : }
1486 : : else
1487 : : {
1488 : 0 : yysyntax_error_status = YYSYNTAX_ERROR;
1489 : 0 : yymsgp = yymsg;
1490 : : }
1491 : : }
1492 [ # # ]: 0 : yyerror (yymsgp);
1493 [ # # ]: 0 : if (yysyntax_error_status == 2)
1494 : 0 : goto yyexhaustedlab;
1495 : : }
1496 : : # undef YYSYNTAX_ERROR
1497 : : #endif
1498 : : }
1499 : :
1500 : :
1501 : :
1502 [ # # ]: 0 : if (yyerrstatus == 3)
1503 : : {
1504 : : /* If just tried and failed to reuse lookahead token after an
1505 : : error, discard it. */
1506 : :
1507 [ # # ]: 0 : if (yychar <= YYEOF)
1508 : : {
1509 : : /* Return failure if at end of input. */
1510 [ # # ]: 0 : if (yychar == YYEOF)
1511 : 0 : YYABORT;
1512 : : }
1513 : : else
1514 : : {
1515 : : yydestruct ("Error: discarding",
1516 [ # # ]: 0 : yytoken, &yylval);
1517 : 0 : yychar = YYEMPTY;
1518 : : }
1519 : : }
1520 : :
1521 : : /* Else will try to reuse lookahead token after shifting the error
1522 : : token. */
1523 : 0 : goto yyerrlab1;
1524 : :
1525 : :
1526 : : /*---------------------------------------------------.
1527 : : | yyerrorlab -- error raised explicitly by YYERROR. |
1528 : : `---------------------------------------------------*/
1529 : : yyerrorlab:
1530 : :
1531 : : /* Pacify compilers like GCC when the user code never invokes
1532 : : YYERROR and the label yyerrorlab therefore never appears in user
1533 : : code. */
1534 : : if (/*CONSTCOND*/ 0)
1535 : : goto yyerrorlab;
1536 : :
1537 : : /* Do not reclaim the symbols of the rule whose action triggered
1538 : : this YYERROR. */
1539 : : YYPOPSTACK (yylen);
1540 : : yylen = 0;
1541 : : YY_STACK_PRINT (yyss, yyssp);
1542 : : yystate = *yyssp;
1543 : : goto yyerrlab1;
1544 : :
1545 : :
1546 : : /*-------------------------------------------------------------.
1547 : : | yyerrlab1 -- common code for both syntax error and YYERROR. |
1548 : : `-------------------------------------------------------------*/
1549 : : yyerrlab1:
1550 : 0 : yyerrstatus = 3; /* Each real token shifted decrements this. */
1551 : :
1552 : 0 : for (;;)
1553 : : {
1554 : 0 : yyn = yypact[yystate];
1555 [ # # ]: 0 : if (!yypact_value_is_default (yyn))
1556 : : {
1557 : 0 : yyn += YYTERROR;
1558 [ # # ][ # # ]: 0 : if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
[ # # ]
1559 : : {
1560 : 0 : yyn = yytable[yyn];
1561 [ # # ]: 0 : if (0 < yyn)
1562 : 0 : break;
1563 : : }
1564 : : }
1565 : :
1566 : : /* Pop the current state because it cannot handle the error token. */
1567 [ # # ]: 0 : if (yyssp == yyss)
1568 : 0 : YYABORT;
1569 : :
1570 : :
1571 : : yydestruct ("Error: popping",
1572 [ # # ]: 0 : yystos[yystate], yyvsp);
1573 : 0 : YYPOPSTACK (1);
1574 : 0 : yystate = *yyssp;
1575 [ # # ][ # # ]: 0 : YY_STACK_PRINT (yyss, yyssp);
1576 : : }
1577 : :
1578 : : YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
1579 : 0 : *++yyvsp = yylval;
1580 : : YY_IGNORE_MAYBE_UNINITIALIZED_END
1581 : :
1582 : :
1583 : : /* Shift the error token. */
1584 [ # # ][ # # ]: 0 : YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
[ # # ][ # # ]
1585 : :
1586 : 0 : yystate = yyn;
1587 : 0 : goto yynewstate;
1588 : :
1589 : :
1590 : : /*-------------------------------------.
1591 : : | yyacceptlab -- YYACCEPT comes here. |
1592 : : `-------------------------------------*/
1593 : : yyacceptlab:
1594 : 0 : yyresult = 0;
1595 : 0 : goto yyreturn;
1596 : :
1597 : : /*-----------------------------------.
1598 : : | yyabortlab -- YYABORT comes here. |
1599 : : `-----------------------------------*/
1600 : : yyabortlab:
1601 : 0 : yyresult = 1;
1602 : 0 : goto yyreturn;
1603 : :
1604 : : #if !defined yyoverflow || YYERROR_VERBOSE
1605 : : /*-------------------------------------------------.
1606 : : | yyexhaustedlab -- memory exhaustion comes here. |
1607 : : `-------------------------------------------------*/
1608 : : yyexhaustedlab:
1609 [ # # ]: 0 : yyerror (YY_("memory exhausted"));
1610 : 0 : yyresult = 2;
1611 : : /* Fall through. */
1612 : : #endif
1613 : :
1614 : : yyreturn:
1615 [ # # ]: 0 : if (yychar != YYEMPTY)
1616 : : {
1617 : : /* Make sure we have latest lookahead translation. See comments at
1618 : : user semantic actions for why this is necessary. */
1619 [ # # ]: 0 : yytoken = YYTRANSLATE (yychar);
1620 : : yydestruct ("Cleanup: discarding lookahead",
1621 [ # # ]: 0 : yytoken, &yylval);
1622 : : }
1623 : : /* Do not reclaim the symbols of the rule whose action triggered
1624 : : this YYABORT or YYACCEPT. */
1625 : 0 : YYPOPSTACK (yylen);
1626 [ # # ][ # # ]: 0 : YY_STACK_PRINT (yyss, yyssp);
1627 [ # # ]: 0 : while (yyssp != yyss)
1628 : : {
1629 : : yydestruct ("Cleanup: popping",
1630 [ # # ]: 0 : yystos[*yyssp], yyvsp);
1631 : 0 : YYPOPSTACK (1);
1632 : : }
1633 : : #ifndef yyoverflow
1634 [ # # ]: 0 : if (yyss != yyssa)
1635 : 0 : YYSTACK_FREE (yyss);
1636 : : #endif
1637 : : #if YYERROR_VERBOSE
1638 [ # # ]: 0 : if (yymsg != yymsgbuf)
1639 : 0 : YYSTACK_FREE (yymsg);
1640 : : #endif
1641 : 0 : return yyresult;
1642 : : }
1643 : : #line 147 "parse_dataset.y" /* yacc.c:1906 */
1644 : :
1645 : :
1646 : : int dataset_error (const char * error) {
1647 : : logprint (LOG_ERROR, "line %d: %s\n", dataset_lineno, error);
1648 : : return 0;
1649 : : }
|