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