forked from charlietuna/JavaScriptCore-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGrammar.cpp
More file actions
5120 lines (4555 loc) · 283 KB
/
Grammar.cpp
File metadata and controls
5120 lines (4555 loc) · 283 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* A Bison parser, made by GNU Bison 2.3. */
/* Skeleton implementation for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "2.3"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 1
/* Using locations. */
#define YYLSP_NEEDED 1
/* Substitute the variable and function names. */
#define yyparse jscyyparse
#define yylex jscyylex
#define yyerror jscyyerror
#define yylval jscyylval
#define yychar jscyychar
#define yydebug jscyydebug
#define yynerrs jscyynerrs
#define yylloc jscyylloc
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
NULLTOKEN = 258,
TRUETOKEN = 259,
FALSETOKEN = 260,
BREAK = 261,
CASE = 262,
DEFAULT = 263,
FOR = 264,
NEW = 265,
VAR = 266,
CONSTTOKEN = 267,
CONTINUE = 268,
FUNCTION = 269,
RETURN = 270,
VOIDTOKEN = 271,
DELETETOKEN = 272,
IF = 273,
THISTOKEN = 274,
DO = 275,
WHILE = 276,
INTOKEN = 277,
INSTANCEOF = 278,
TYPEOF = 279,
SWITCH = 280,
WITH = 281,
RESERVED = 282,
THROW = 283,
TRY = 284,
CATCH = 285,
FINALLY = 286,
DEBUGGER = 287,
IF_WITHOUT_ELSE = 288,
ELSE = 289,
EQEQ = 290,
NE = 291,
STREQ = 292,
STRNEQ = 293,
LE = 294,
GE = 295,
OR = 296,
AND = 297,
PLUSPLUS = 298,
MINUSMINUS = 299,
LSHIFT = 300,
RSHIFT = 301,
URSHIFT = 302,
PLUSEQUAL = 303,
MINUSEQUAL = 304,
MULTEQUAL = 305,
DIVEQUAL = 306,
LSHIFTEQUAL = 307,
RSHIFTEQUAL = 308,
URSHIFTEQUAL = 309,
ANDEQUAL = 310,
MODEQUAL = 311,
XOREQUAL = 312,
OREQUAL = 313,
OPENBRACE = 314,
CLOSEBRACE = 315,
NUMBER = 316,
IDENT = 317,
STRING = 318,
AUTOPLUSPLUS = 319,
AUTOMINUSMINUS = 320
};
#endif
/* Tokens. */
#define NULLTOKEN 258
#define TRUETOKEN 259
#define FALSETOKEN 260
#define BREAK 261
#define CASE 262
#define DEFAULT 263
#define FOR 264
#define NEW 265
#define VAR 266
#define CONSTTOKEN 267
#define CONTINUE 268
#define FUNCTION 269
#define RETURN 270
#define VOIDTOKEN 271
#define DELETETOKEN 272
#define IF 273
#define THISTOKEN 274
#define DO 275
#define WHILE 276
#define INTOKEN 277
#define INSTANCEOF 278
#define TYPEOF 279
#define SWITCH 280
#define WITH 281
#define RESERVED 282
#define THROW 283
#define TRY 284
#define CATCH 285
#define FINALLY 286
#define DEBUGGER 287
#define IF_WITHOUT_ELSE 288
#define ELSE 289
#define EQEQ 290
#define NE 291
#define STREQ 292
#define STRNEQ 293
#define LE 294
#define GE 295
#define OR 296
#define AND 297
#define PLUSPLUS 298
#define MINUSMINUS 299
#define LSHIFT 300
#define RSHIFT 301
#define URSHIFT 302
#define PLUSEQUAL 303
#define MINUSEQUAL 304
#define MULTEQUAL 305
#define DIVEQUAL 306
#define LSHIFTEQUAL 307
#define RSHIFTEQUAL 308
#define URSHIFTEQUAL 309
#define ANDEQUAL 310
#define MODEQUAL 311
#define XOREQUAL 312
#define OREQUAL 313
#define OPENBRACE 314
#define CLOSEBRACE 315
#define NUMBER 316
#define IDENT 317
#define STRING 318
#define AUTOPLUSPLUS 319
#define AUTOMINUSMINUS 320
/* Copy the first part of user declarations. */
#line 3 "../../parser/Grammar.y"
/*
* Copyright (C) 1999-2000 Harri Porten ([email protected])
* Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2007 Eric Seidel <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "config.h"
#include "JSObject.h"
#include "JSString.h"
#include "Lexer.h"
#include "NodeConstructors.h"
#include "NodeInfo.h"
#include <stdlib.h>
#include <string.h>
#include <wtf/MathExtras.h>
#define YYMALLOC fastMalloc
#define YYFREE fastFree
#define YYMAXDEPTH 10000
#define YYENABLE_NLS 0
// Default values for bison.
#define YYDEBUG 0 // Set to 1 to debug a parse error.
#define jscyydebug 0 // Set to 1 to debug a parse error.
#if !OS(DARWIN)
// Avoid triggering warnings in older bison by not setting this on the Darwin platform.
// FIXME: Is this still needed?
#define YYERROR_VERBOSE
#endif
int jscyyerror(const char*);
static inline bool allowAutomaticSemicolon(JSC::Lexer&, int);
#define GLOBAL_DATA static_cast<JSGlobalData*>(globalPtr)
#define AUTO_SEMICOLON do { if (!allowAutomaticSemicolon(*GLOBAL_DATA->lexer, yychar)) YYABORT; } while (0)
using namespace JSC;
using namespace std;
static ExpressionNode* makeAssignNode(JSGlobalData*, ExpressionNode* left, Operator, ExpressionNode* right, bool leftHasAssignments, bool rightHasAssignments, int start, int divot, int end);
static ExpressionNode* makePrefixNode(JSGlobalData*, ExpressionNode*, Operator, int start, int divot, int end);
static ExpressionNode* makePostfixNode(JSGlobalData*, ExpressionNode*, Operator, int start, int divot, int end);
static PropertyNode* makeGetterOrSetterPropertyNode(JSGlobalData*, const Identifier& getOrSet, const Identifier& name, ParameterNode*, FunctionBodyNode*, const SourceCode&);
static ExpressionNodeInfo makeFunctionCallNode(JSGlobalData*, ExpressionNodeInfo function, ArgumentsNodeInfo, int start, int divot, int end);
static ExpressionNode* makeTypeOfNode(JSGlobalData*, ExpressionNode*);
static ExpressionNode* makeDeleteNode(JSGlobalData*, ExpressionNode*, int start, int divot, int end);
static ExpressionNode* makeNegateNode(JSGlobalData*, ExpressionNode*);
static NumberNode* makeNumberNode(JSGlobalData*, double);
static ExpressionNode* makeBitwiseNotNode(JSGlobalData*, ExpressionNode*);
static ExpressionNode* makeMultNode(JSGlobalData*, ExpressionNode* left, ExpressionNode* right, bool rightHasAssignments);
static ExpressionNode* makeDivNode(JSGlobalData*, ExpressionNode* left, ExpressionNode* right, bool rightHasAssignments);
static ExpressionNode* makeAddNode(JSGlobalData*, ExpressionNode* left, ExpressionNode* right, bool rightHasAssignments);
static ExpressionNode* makeSubNode(JSGlobalData*, ExpressionNode* left, ExpressionNode* right, bool rightHasAssignments);
static ExpressionNode* makeLeftShiftNode(JSGlobalData*, ExpressionNode* left, ExpressionNode* right, bool rightHasAssignments);
static ExpressionNode* makeRightShiftNode(JSGlobalData*, ExpressionNode* left, ExpressionNode* right, bool rightHasAssignments);
static StatementNode* makeVarStatementNode(JSGlobalData*, ExpressionNode*);
static ExpressionNode* combineCommaNodes(JSGlobalData*, ExpressionNode* list, ExpressionNode* init);
#if COMPILER(MSVC)
#pragma warning(disable: 4065)
#pragma warning(disable: 4244)
#pragma warning(disable: 4702)
#endif
#define YYPARSE_PARAM globalPtr
#define YYLEX_PARAM globalPtr
template <typename T> inline NodeDeclarationInfo<T> createNodeDeclarationInfo(T node,
ParserArenaData<DeclarationStacks::VarStack>* varDecls,
ParserArenaData<DeclarationStacks::FunctionStack>* funcDecls,
CodeFeatures info, int numConstants)
{
ASSERT((info & ~AllFeatures) == 0);
NodeDeclarationInfo<T> result = { node, varDecls, funcDecls, info, numConstants };
return result;
}
template <typename T> inline NodeInfo<T> createNodeInfo(T node, CodeFeatures info, int numConstants)
{
ASSERT((info & ~AllFeatures) == 0);
NodeInfo<T> result = { node, info, numConstants };
return result;
}
template <typename T> inline T mergeDeclarationLists(T decls1, T decls2)
{
// decls1 or both are null
if (!decls1)
return decls2;
// only decls1 is non-null
if (!decls2)
return decls1;
// Both are non-null
decls1->data.append(decls2->data);
// Manually release as much as possible from the now-defunct declaration lists
// to avoid accumulating so many unused heap allocated vectors.
decls2->data.clear();
return decls1;
}
static inline void appendToVarDeclarationList(JSGlobalData* globalData, ParserArenaData<DeclarationStacks::VarStack>*& varDecls, const Identifier& ident, unsigned attrs)
{
if (!varDecls)
varDecls = new (globalData) ParserArenaData<DeclarationStacks::VarStack>;
varDecls->data.append(make_pair(&ident, attrs));
}
static inline void appendToVarDeclarationList(JSGlobalData* globalData, ParserArenaData<DeclarationStacks::VarStack>*& varDecls, ConstDeclNode* decl)
{
unsigned attrs = DeclarationStacks::IsConstant;
if (decl->hasInitializer())
attrs |= DeclarationStacks::HasInitializer;
appendToVarDeclarationList(globalData, varDecls, decl->ident(), attrs);
}
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
#line 146 "../../parser/Grammar.y"
{
int intValue;
double doubleValue;
const Identifier* ident;
// expression subtrees
ExpressionNodeInfo expressionNode;
FuncDeclNodeInfo funcDeclNode;
PropertyNodeInfo propertyNode;
ArgumentsNodeInfo argumentsNode;
ConstDeclNodeInfo constDeclNode;
CaseBlockNodeInfo caseBlockNode;
CaseClauseNodeInfo caseClauseNode;
FuncExprNodeInfo funcExprNode;
// statement nodes
StatementNodeInfo statementNode;
FunctionBodyNode* functionBodyNode;
ProgramNode* programNode;
SourceElementsInfo sourceElements;
PropertyListInfo propertyList;
ArgumentListInfo argumentList;
VarDeclListInfo varDeclList;
ConstDeclListInfo constDeclList;
ClauseListInfo clauseList;
ElementListInfo elementList;
ParameterListInfo parameterList;
Operator op;
}
/* Line 193 of yacc.c. */
#line 409 "Grammar.cpp"
YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
typedef struct YYLTYPE
{
int first_line;
int first_column;
int last_line;
int last_column;
} YYLTYPE;
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
# define YYLTYPE_IS_DECLARED 1
# define YYLTYPE_IS_TRIVIAL 1
#endif
/* Copy the second part of user declarations. */
#line 178 "../../parser/Grammar.y"
template <typename T> inline void setStatementLocation(StatementNode* statement, const T& start, const T& end)
{
statement->setLoc(start.first_line, end.last_line);
}
static inline void setExceptionLocation(ThrowableExpressionData* node, unsigned start, unsigned divot, unsigned end)
{
node->setExceptionSourceCode(divot, divot - start, end - divot);
}
/* Line 216 of yacc.c. */
#line 447 "Grammar.cpp"
#ifdef short
# undef short
#endif
#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned int
# endif
#endif
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(msgid) dgettext ("bison-runtime", msgid)
# endif
# endif
# ifndef YY_
# define YY_(msgid) msgid
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(e) ((void) (e))
#else
# define YYUSE(e) /* empty */
#endif
/* Identity function, used to suppress warnings about constant conditions. */
#ifndef lint
# define YYID(n) (n)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static int
YYID (int i)
#else
static int
YYID (i)
int i;
#endif
{
return i;
}
#endif
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
# define _STDLIB_H 1
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's `empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined _STDLIB_H \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
# define _STDLIB_H 1
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
&& defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yytype_int16 yyss;
YYSTYPE yyvs;
YYLTYPE yyls;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
+ 2 * YYSTACK_GAP_MAXIMUM)
/* Copy COUNT objects from FROM to TO. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(To, From, Count) \
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
# else
# define YYCOPY(To, From, Count) \
do \
{ \
YYSIZE_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(To)[yyi] = (From)[yyi]; \
} \
while (YYID (0))
# endif
# endif
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack, Stack, yysize); \
Stack = &yyptr->Stack; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (YYID (0))
#endif
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 206
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 2349
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 88
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 194
/* YYNRULES -- Number of rules. */
#define YYNRULES 597
/* YYNRULES -- Number of states. */
#define YYNSTATES 1082
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
#define YYMAXUTOK 320
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 77, 2, 2, 2, 79, 82, 2,
68, 69, 78, 74, 70, 75, 73, 66, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 67, 87,
80, 86, 81, 85, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 71, 2, 72, 83, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 84, 2, 76, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65
};
#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 5, 7, 9, 11, 13, 15, 17,
21, 25, 29, 37, 46, 48, 52, 54, 57, 61,
66, 68, 70, 72, 74, 78, 82, 86, 92, 95,
100, 101, 103, 105, 108, 110, 112, 117, 121, 125,
127, 132, 136, 140, 142, 145, 147, 150, 153, 156,
161, 165, 168, 171, 176, 180, 183, 187, 189, 193,
195, 197, 199, 201, 203, 206, 209, 211, 214, 217,
220, 223, 226, 229, 232, 235, 238, 241, 244, 247,
250, 252, 254, 256, 258, 260, 264, 268, 272, 274,
278, 282, 286, 288, 292, 296, 298, 302, 306, 308,
312, 316, 320, 322, 326, 330, 334, 336, 340, 344,
348, 352, 356, 360, 362, 366, 370, 374, 378, 382,
384, 388, 392, 396, 400, 404, 408, 410, 414, 418,
422, 426, 428, 432, 436, 440, 444, 446, 450, 454,
458, 462, 464, 468, 470, 474, 476, 480, 482, 486,
488, 492, 494, 498, 500, 504, 506, 510, 512, 516,
518, 522, 524, 528, 530, 534, 536, 540, 542, 546,
548, 552, 554, 560, 562, 568, 570, 576, 578, 582,
584, 588, 590, 594, 596, 598, 600, 602, 604, 606,
608, 610, 612, 614, 616, 618, 620, 624, 626, 630,
632, 636, 638, 640, 642, 644, 646, 648, 650, 652,
654, 656, 658, 660, 662, 664, 666, 668, 670, 673,
677, 681, 685, 687, 690, 694, 699, 701, 704, 708,
713, 717, 721, 723, 727, 729, 732, 735, 738, 740,
743, 746, 752, 760, 768, 776, 782, 792, 803, 811,
820, 830, 831, 833, 834, 836, 839, 842, 846, 850,
853, 856, 860, 864, 867, 870, 874, 878, 884, 890,
894, 900, 901, 903, 905, 908, 912, 917, 920, 924,
928, 932, 936, 941, 949, 959, 962, 965, 973, 982,
989, 997, 1005, 1014, 1016, 1020, 1021, 1023, 1024, 1026,
1028, 1031, 1033, 1035, 1037, 1039, 1041, 1043, 1045, 1049,
1053, 1057, 1065, 1074, 1076, 1080, 1082, 1085, 1089, 1094,
1096, 1098, 1100, 1102, 1106, 1110, 1114, 1120, 1123, 1128,
1129, 1131, 1133, 1136, 1138, 1140, 1145, 1149, 1153, 1155,
1160, 1164, 1168, 1170, 1173, 1175, 1178, 1181, 1184, 1189,
1193, 1196, 1199, 1204, 1208, 1211, 1215, 1217, 1221, 1223,
1225, 1227, 1229, 1231, 1234, 1237, 1239, 1242, 1245, 1248,
1251, 1254, 1257, 1260, 1263, 1266, 1269, 1272, 1275, 1278,
1280, 1282, 1284, 1286, 1288, 1292, 1296, 1300, 1302, 1306,
1310, 1314, 1316, 1320, 1324, 1326, 1330, 1334, 1336, 1340,
1344, 1348, 1350, 1354, 1358, 1362, 1364, 1368, 1372, 1376,
1380, 1384, 1388, 1390, 1394, 1398, 1402, 1406, 1410, 1412,
1416, 1420, 1424, 1428, 1432, 1436, 1438, 1442, 1446, 1450,
1454, 1456, 1460, 1464, 1468, 1472, 1474, 1478, 1482, 1486,
1490, 1492, 1496, 1498, 1502, 1504, 1508, 1510, 1514, 1516,
1520, 1522, 1526, 1528, 1532, 1534, 1538, 1540, 1544, 1546,
1550, 1552, 1556, 1558, 1562, 1564, 1568, 1570, 1574, 1576,
1580, 1582, 1588, 1590, 1596, 1598, 1604, 1606, 1610, 1612,
1616, 1618, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636,
1638, 1640, 1642, 1644, 1646, 1648, 1652, 1654, 1658, 1660,
1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682,
1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1701, 1705,
1709, 1713, 1715, 1718, 1722, 1727, 1729, 1732, 1736, 1741,
1745, 1749, 1751, 1755, 1757, 1760, 1763, 1766, 1768, 1771,
1774, 1780, 1788, 1796, 1804, 1810, 1820, 1831, 1839, 1848,
1858, 1859, 1861, 1862, 1864, 1867, 1870, 1874, 1878, 1881,
1884, 1888, 1892, 1895, 1898, 1902, 1906, 1912, 1918, 1922,
1928, 1929, 1931, 1933, 1936, 1940, 1945, 1948, 1952, 1956,
1960, 1964, 1969, 1977, 1987, 1990, 1993, 2001, 2010, 2017,
2025, 2033, 2042, 2044, 2048, 2049, 2051, 2053
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
184, 0, -1, 3, -1, 4, -1, 5, -1, 61,
-1, 63, -1, 66, -1, 51, -1, 62, 67, 143,
-1, 63, 67, 143, -1, 61, 67, 143, -1, 62,
62, 68, 69, 59, 183, 60, -1, 62, 62, 68,
182, 69, 59, 183, 60, -1, 90, -1, 91, 70,
90, -1, 93, -1, 59, 60, -1, 59, 91, 60,
-1, 59, 91, 70, 60, -1, 19, -1, 89, -1,
94, -1, 62, -1, 68, 147, 69, -1, 71, 96,
72, -1, 71, 95, 72, -1, 71, 95, 70, 96,
72, -1, 96, 143, -1, 95, 70, 96, 143, -1,
-1, 97, -1, 70, -1, 97, 70, -1, 92, -1,
181, -1, 98, 71, 147, 72, -1, 98, 73, 62,
-1, 10, 98, 104, -1, 93, -1, 99, 71, 147,
72, -1, 99, 73, 62, -1, 10, 98, 104, -1,
98, -1, 10, 100, -1, 99, -1, 10, 100, -1,
98, 104, -1, 102, 104, -1, 102, 71, 147, 72,
-1, 102, 73, 62, -1, 99, 104, -1, 103, 104,
-1, 103, 71, 147, 72, -1, 103, 73, 62, -1,
68, 69, -1, 68, 105, 69, -1, 143, -1, 105,
70, 143, -1, 100, -1, 102, -1, 101, -1, 103,
-1, 106, -1, 106, 43, -1, 106, 44, -1, 107,
-1, 107, 43, -1, 107, 44, -1, 17, 111, -1,
16, 111, -1, 24, 111, -1, 43, 111, -1, 64,
111, -1, 44, 111, -1, 65, 111, -1, 74, 111,
-1, 75, 111, -1, 76, 111, -1, 77, 111, -1,
108, -1, 110, -1, 109, -1, 110, -1, 111, -1,
113, 78, 111, -1, 113, 66, 111, -1, 113, 79,
111, -1, 112, -1, 114, 78, 111, -1, 114, 66,
111, -1, 114, 79, 111, -1, 113, -1, 115, 74,
113, -1, 115, 75, 113, -1, 114, -1, 116, 74,
113, -1, 116, 75, 113, -1, 115, -1, 117, 45,
115, -1, 117, 46, 115, -1, 117, 47, 115, -1,
116, -1, 118, 45, 115, -1, 118, 46, 115, -1,
118, 47, 115, -1, 117, -1, 119, 80, 117, -1,
119, 81, 117, -1, 119, 39, 117, -1, 119, 40,
117, -1, 119, 23, 117, -1, 119, 22, 117, -1,
117, -1, 120, 80, 117, -1, 120, 81, 117, -1,
120, 39, 117, -1, 120, 40, 117, -1, 120, 23,
117, -1, 118, -1, 121, 80, 117, -1, 121, 81,
117, -1, 121, 39, 117, -1, 121, 40, 117, -1,
121, 23, 117, -1, 121, 22, 117, -1, 119, -1,
122, 35, 119, -1, 122, 36, 119, -1, 122, 37,
119, -1, 122, 38, 119, -1, 120, -1, 123, 35,
120, -1, 123, 36, 120, -1, 123, 37, 120, -1,
123, 38, 120, -1, 121, -1, 124, 35, 119, -1,
124, 36, 119, -1, 124, 37, 119, -1, 124, 38,
119, -1, 122, -1, 125, 82, 122, -1, 123, -1,
126, 82, 123, -1, 124, -1, 127, 82, 122, -1,
125, -1, 128, 83, 125, -1, 126, -1, 129, 83,
126, -1, 127, -1, 130, 83, 125, -1, 128, -1,
131, 84, 128, -1, 129, -1, 132, 84, 129, -1,
130, -1, 133, 84, 128, -1, 131, -1, 134, 42,
131, -1, 132, -1, 135, 42, 132, -1, 133, -1,
136, 42, 131, -1, 134, -1, 137, 41, 134, -1,
135, -1, 138, 41, 135, -1, 136, -1, 139, 41,
134, -1, 137, -1, 137, 85, 143, 67, 143, -1,
138, -1, 138, 85, 144, 67, 144, -1, 139, -1,
139, 85, 143, 67, 143, -1, 140, -1, 106, 146,
143, -1, 141, -1, 106, 146, 144, -1, 142, -1,
107, 146, 143, -1, 86, -1, 48, -1, 49, -1,
50, -1, 51, -1, 52, -1, 53, -1, 54, -1,
55, -1, 57, -1, 58, -1, 56, -1, 143, -1,
147, 70, 143, -1, 144, -1, 148, 70, 144, -1,
145, -1, 149, 70, 143, -1, 151, -1, 152, -1,
155, -1, 180, -1, 160, -1, 161, -1, 162, -1,
163, -1, 166, -1, 167, -1, 168, -1, 169, -1,
170, -1, 176, -1, 177, -1, 178, -1, 179, -1,
59, 60, -1, 59, 185, 60, -1, 11, 153, 87,
-1, 11, 153, 1, -1, 62, -1, 62, 158, -1,
153, 70, 62, -1, 153, 70, 62, 158, -1, 62,
-1, 62, 159, -1, 154, 70, 62, -1, 154, 70,
62, 159, -1, 12, 156, 87, -1, 12, 156, 1,
-1, 157, -1, 156, 70, 157, -1, 62, -1, 62,
158, -1, 86, 143, -1, 86, 144, -1, 87, -1,
149, 87, -1, 149, 1, -1, 18, 68, 147, 69,
150, -1, 18, 68, 147, 69, 150, 34, 150, -1,
20, 150, 21, 68, 147, 69, 87, -1, 20, 150,
21, 68, 147, 69, 1, -1, 21, 68, 147, 69,
150, -1, 9, 68, 165, 87, 164, 87, 164, 69,
150, -1, 9, 68, 11, 154, 87, 164, 87, 164,
69, 150, -1, 9, 68, 106, 22, 147, 69, 150,
-1, 9, 68, 11, 62, 22, 147, 69, 150, -1,
9, 68, 11, 62, 159, 22, 147, 69, 150, -1,
-1, 147, -1, -1, 148, -1, 13, 87, -1, 13,
1, -1, 13, 62, 87, -1, 13, 62, 1, -1,
6, 87, -1, 6, 1, -1, 6, 62, 87, -1,
6, 62, 1, -1, 15, 87, -1, 15, 1, -1,
15, 147, 87, -1, 15, 147, 1, -1, 26, 68,
147, 69, 150, -1, 25, 68, 147, 69, 171, -1,
59, 172, 60, -1, 59, 172, 175, 172, 60, -1,
-1, 173, -1, 174, -1, 173, 174, -1, 7, 147,
67, -1, 7, 147, 67, 185, -1, 8, 67, -1,
8, 67, 185, -1, 62, 67, 150, -1, 28, 147,
87, -1, 28, 147, 1, -1, 29, 151, 31, 151,
-1, 29, 151, 30, 68, 62, 69, 151, -1, 29,
151, 30, 68, 62, 69, 151, 31, 151, -1, 32,
87, -1, 32, 1, -1, 14, 62, 68, 69, 59,
183, 60, -1, 14, 62, 68, 182, 69, 59, 183,
60, -1, 14, 68, 69, 59, 183, 60, -1, 14,
68, 182, 69, 59, 183, 60, -1, 14, 62, 68,
69, 59, 183, 60, -1, 14, 62, 68, 182, 69,
59, 183, 60, -1, 62, -1, 182, 70, 62, -1,
-1, 281, -1, -1, 185, -1, 150, -1, 185, 150,
-1, 3, -1, 4, -1, 5, -1, 61, -1, 63,
-1, 66, -1, 51, -1, 62, 67, 240, -1, 63,
67, 240, -1, 61, 67, 240, -1, 62, 62, 68,
69, 59, 280, 60, -1, 62, 62, 68, 279, 69,
59, 280, 60, -1, 187, -1, 188, 70, 187, -1,
190, -1, 59, 60, -1, 59, 188, 60, -1, 59,
188, 70, 60, -1, 19, -1, 186, -1, 191, -1,
62, -1, 68, 244, 69, -1, 71, 193, 72, -1,
71, 192, 72, -1, 71, 192, 70, 193, 72, -1,
193, 240, -1, 192, 70, 193, 240, -1, -1, 194,
-1, 70, -1, 194, 70, -1, 189, -1, 278, -1,
195, 71, 244, 72, -1, 195, 73, 62, -1, 10,
195, 201, -1, 190, -1, 196, 71, 244, 72, -1,
196, 73, 62, -1, 10, 195, 201, -1, 195, -1,
10, 197, -1, 196, -1, 10, 197, -1, 195, 201,
-1, 199, 201, -1, 199, 71, 244, 72, -1, 199,
73, 62, -1, 196, 201, -1, 200, 201, -1, 200,
71, 244, 72, -1, 200, 73, 62, -1, 68, 69,
-1, 68, 202, 69, -1, 240, -1, 202, 70, 240,
-1, 197, -1, 199, -1, 198, -1, 200, -1, 203,
-1, 203, 43, -1, 203, 44, -1, 204, -1, 204,
43, -1, 204, 44, -1, 17, 208, -1, 16, 208,
-1, 24, 208, -1, 43, 208, -1, 64, 208, -1,
44, 208, -1, 65, 208, -1, 74, 208, -1, 75,
208, -1, 76, 208, -1, 77, 208, -1, 205, -1,
207, -1, 206, -1, 207, -1, 208, -1, 210, 78,
208, -1, 210, 66, 208, -1, 210, 79, 208, -1,
209, -1, 211, 78, 208, -1, 211, 66, 208, -1,
211, 79, 208, -1, 210, -1, 212, 74, 210, -1,
212, 75, 210, -1, 211, -1, 213, 74, 210, -1,
213, 75, 210, -1, 212, -1, 214, 45, 212, -1,
214, 46, 212, -1, 214, 47, 212, -1, 213, -1,
215, 45, 212, -1, 215, 46, 212, -1, 215, 47,
212, -1, 214, -1, 216, 80, 214, -1, 216, 81,
214, -1, 216, 39, 214, -1, 216, 40, 214, -1,
216, 23, 214, -1, 216, 22, 214, -1, 214, -1,
217, 80, 214, -1, 217, 81, 214, -1, 217, 39,
214, -1, 217, 40, 214, -1, 217, 23, 214, -1,
215, -1, 218, 80, 214, -1, 218, 81, 214, -1,
218, 39, 214, -1, 218, 40, 214, -1, 218, 23,
214, -1, 218, 22, 214, -1, 216, -1, 219, 35,
216, -1, 219, 36, 216, -1, 219, 37, 216, -1,
219, 38, 216, -1, 217, -1, 220, 35, 217, -1,
220, 36, 217, -1, 220, 37, 217, -1, 220, 38,
217, -1, 218, -1, 221, 35, 216, -1, 221, 36,
216, -1, 221, 37, 216, -1, 221, 38, 216, -1,
219, -1, 222, 82, 219, -1, 220, -1, 223, 82,
220, -1, 221, -1, 224, 82, 219, -1, 222, -1,
225, 83, 222, -1, 223, -1, 226, 83, 223, -1,
224, -1, 227, 83, 222, -1, 225, -1, 228, 84,
225, -1, 226, -1, 229, 84, 226, -1, 227, -1,
230, 84, 225, -1, 228, -1, 231, 42, 228, -1,
229, -1, 232, 42, 229, -1, 230, -1, 233, 42,
228, -1, 231, -1, 234, 41, 231, -1, 232, -1,
235, 41, 232, -1, 233, -1, 236, 41, 231, -1,
234, -1, 234, 85, 240, 67, 240, -1, 235, -1,
235, 85, 241, 67, 241, -1, 236, -1, 236, 85,
240, 67, 240, -1, 237, -1, 203, 243, 240, -1,
238, -1, 203, 243, 241, -1, 239, -1, 204, 243,
240, -1, 86, -1, 48, -1, 49, -1, 50, -1,
51, -1, 52, -1, 53, -1, 54, -1, 55, -1,
57, -1, 58, -1, 56, -1, 240, -1, 244, 70,
240, -1, 241, -1, 245, 70, 241, -1, 242, -1,
246, 70, 240, -1, 248, -1, 249, -1, 252, -1,
277, -1, 257, -1, 258, -1, 259, -1, 260, -1,
263, -1, 264, -1, 265, -1, 266, -1, 267, -1,
273, -1, 274, -1, 275, -1, 276, -1, 59, 60,
-1, 59, 281, 60, -1, 11, 250, 87, -1, 11,
250, 1, -1, 62, -1, 62, 255, -1, 250, 70,
62, -1, 250, 70, 62, 255, -1, 62, -1, 62,
256, -1, 251, 70, 62, -1, 251, 70, 62, 256,
-1, 12, 253, 87, -1, 12, 253, 1, -1, 254,
-1, 253, 70, 254, -1, 62, -1, 62, 255, -1,
86, 240, -1, 86, 241, -1, 87, -1, 246, 87,
-1, 246, 1, -1, 18, 68, 244, 69, 247, -1,
18, 68, 244, 69, 247, 34, 247, -1, 20, 247,
21, 68, 244, 69, 87, -1, 20, 247, 21, 68,
244, 69, 1, -1, 21, 68, 244, 69, 247, -1,
9, 68, 262, 87, 261, 87, 261, 69, 247, -1,
9, 68, 11, 251, 87, 261, 87, 261, 69, 247,
-1, 9, 68, 203, 22, 244, 69, 247, -1, 9,
68, 11, 62, 22, 244, 69, 247, -1, 9, 68,
11, 62, 256, 22, 244, 69, 247, -1, -1, 244,
-1, -1, 245, -1, 13, 87, -1, 13, 1, -1,
13, 62, 87, -1, 13, 62, 1, -1, 6, 87,
-1, 6, 1, -1, 6, 62, 87, -1, 6, 62,
1, -1, 15, 87, -1, 15, 1, -1, 15, 244,
87, -1, 15, 244, 1, -1, 26, 68, 244, 69,
247, -1, 25, 68, 244, 69, 268, -1, 59, 269,
60, -1, 59, 269, 272, 269, 60, -1, -1, 270,
-1, 271, -1, 270, 271, -1, 7, 244, 67, -1,
7, 244, 67, 281, -1, 8, 67, -1, 8, 67,
281, -1, 62, 67, 247, -1, 28, 244, 87, -1,
28, 244, 1, -1, 29, 248, 31, 248, -1, 29,
248, 30, 68, 62, 69, 248, -1, 29, 248, 30,
68, 62, 69, 248, 31, 248, -1, 32, 87, -1,
32, 1, -1, 14, 62, 68, 69, 59, 280, 60,
-1, 14, 62, 68, 279, 69, 59, 280, 60, -1,
14, 68, 69, 59, 280, 60, -1, 14, 68, 279,
69, 59, 280, 60, -1, 14, 62, 68, 69, 59,
280, 60, -1, 14, 62, 68, 279, 69, 59, 280,
60, -1, 62, -1, 279, 70, 62, -1, -1, 281,
-1, 247, -1, 281, 247, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 293, 293, 294, 295, 296, 297, 298, 309, 323,