summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-05-26 15:24:21 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-05-26 15:24:21 +0000
commit1f8d3f5d5d2edbacba705858e1fe5af530389b9c (patch)
tree475bb04e5b9fa6510484440e847805be95f532d2 /gnu
parentcbfc74933876bce03bce3138d5d7bc7587d161d7 (diff)
Remove bison/yacc output files and change Makefiles rules to regenerate
them.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/egcs/gcc/Makefile.in32
-rw-r--r--gnu/egcs/gcc/c-parse.c3945
-rw-r--r--gnu/egcs/gcc/c-parse.h64
-rw-r--r--gnu/egcs/gcc/c-parse.y2238
-rw-r--r--gnu/egcs/gcc/cexp.c2138
-rw-r--r--gnu/egcs/gcc/cp/Make-lang.in9
-rw-r--r--gnu/egcs/gcc/cp/Makefile.in8
-rw-r--r--gnu/egcs/gcc/cp/parse.c8393
-rw-r--r--gnu/egcs/gcc/cp/parse.h90
-rw-r--r--gnu/egcs/gcc/objc/Make-lang.in15
-rw-r--r--gnu/egcs/gcc/objc/objc-parse.c5195
-rw-r--r--gnu/egcs/gcc/objc/objc-parse.y3003
12 files changed, 31 insertions, 25099 deletions
diff --git a/gnu/egcs/gcc/Makefile.in b/gnu/egcs/gcc/Makefile.in
index 9d1ebddc66f..07cbc29c820 100644
--- a/gnu/egcs/gcc/Makefile.in
+++ b/gnu/egcs/gcc/Makefile.in
@@ -1310,18 +1310,18 @@ s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
# C language specific files.
-c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
- $(srcdir)/c-parse.h c-tree.h input.h flags.h system.h toplev.h
- $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
-$(srcdir)/c-parse.h: $(srcdir)/c-parse.c
-$(srcdir)/c-parse.c: $(srcdir)/c-parse.y
- cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o c-parse.c c-parse.y
-$(srcdir)/c-parse.y: c-parse.in
+c-parse.o : c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
+ c-parse.h c-tree.h input.h flags.h system.h toplev.h
+ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c c-parse.c
+c-parse.h: c-parse.c
+c-parse.c: c-parse.y
+ $(BISON) $(BISONFLAGS) -o c-parse.c -d c-parse.y
+c-parse.y: c-parse.in
echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
-e "/^ifc$$/d" -e "/^end ifc$$/d" \
$(srcdir)/c-parse.in >>tmp-c-parse.y
- $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
+ $(srcdir)/move-if-change tmp-c-parse.y c-parse.y
$(srcdir)/c-gperf.h: c-parse.gperf
gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \
@@ -1335,7 +1335,7 @@ c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h \
c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h toplev.h \
output.h
c-lex.o : c-lex.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-lex.h c-tree.h \
- $(srcdir)/c-parse.h input.h intl.h flags.h $(srcdir)/c-gperf.h c-pragma.h \
+ c-parse.h input.h intl.h flags.h $(srcdir)/c-gperf.h c-pragma.h \
toplev.h output.h mbchar.h
c-aux-info.o : c-aux-info.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h \
toplev.h
@@ -1924,7 +1924,7 @@ $(top_builddir)/intl/libintl.a:
# Make sure all the headers are there for xgettext to scan.
$(INTL_TARGETS): $(srcdir)/c-gperf.h \
- $(srcdir)/c-parse.c $(srcdir)/c-parse.h $(srcdir)/cexp.c
+ c-parse.c c-parse.h cexp.c
intl.all intl.install intl.uninstall intl.distdir \
intl.mostlyclean intl.clean intl.distclean intl.maintainer-clean:
@@ -1950,10 +1950,10 @@ cpp$(exeext): $(CCCP)$(exeext)
CCCP_OBJS = cccp.o cexp.o intl.o prefix.o version.o @extra_cpp_objs@ mbchar.o
cccp$(exeext): $(CCCP_OBJS) $(LIBDEPS)
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(CCCP_OBJS) $(LIBS)
-cexp.o: $(srcdir)/cexp.c $(CONFIG_H) system.h
- $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
-$(srcdir)/cexp.c: $(srcdir)/cexp.y
- cd $(srcdir); $(BISON) -o cexp.c cexp.y
+cexp.o: cexp.c $(CONFIG_H) system.h
+ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c cexp.c
+cexp.c: $(srcdir)/cexp.y
+ $(BISON) -o cexp.c $(srcdir)/cexp.y
# We use $(libsubdir)/$(unlibsubdir) to match the
# -iprefix argument which gcc will pass if GCC_EXEC_PREFIX is used.
@@ -2834,8 +2834,8 @@ distdir-cvs: force
# This target exists to do the initial work before the language specific
# stuff gets done.
-distdir-start: doc $(srcdir)/INSTALL $(srcdir)/c-parse.y $(srcdir)/c-gperf.h \
- $(srcdir)/c-parse.c $(srcdir)/cexp.c $(srcdir)/config.in \
+distdir-start: doc $(srcdir)/INSTALL c-parse.y $(srcdir)/c-gperf.h \
+ c-parse.c cexp.c $(srcdir)/config.in \
$(srcdir)/version.c TAGS
@case '$(USE_NLS)' in \
yes) ;; \
diff --git a/gnu/egcs/gcc/c-parse.c b/gnu/egcs/gcc/c-parse.c
deleted file mode 100644
index 85a70035d5f..00000000000
--- a/gnu/egcs/gcc/c-parse.c
+++ /dev/null
@@ -1,3945 +0,0 @@
-
-/* A Bison parser, made from c-parse.y
- by GNU Bison version 1.25
- */
-
-#define YYBISON 1 /* Identify Bison output. */
-
-#define IDENTIFIER 258
-#define TYPENAME 259
-#define SCSPEC 260
-#define TYPESPEC 261
-#define TYPE_QUAL 262
-#define CONSTANT 263
-#define STRING 264
-#define ELLIPSIS 265
-#define SIZEOF 266
-#define ENUM 267
-#define STRUCT 268
-#define UNION 269
-#define IF 270
-#define ELSE 271
-#define WHILE 272
-#define DO 273
-#define FOR 274
-#define SWITCH 275
-#define CASE 276
-#define DEFAULT 277
-#define BREAK 278
-#define CONTINUE 279
-#define RETURN 280
-#define GOTO 281
-#define ASM_KEYWORD 282
-#define TYPEOF 283
-#define ALIGNOF 284
-#define ATTRIBUTE 285
-#define EXTENSION 286
-#define LABEL 287
-#define REALPART 288
-#define IMAGPART 289
-#define ASSIGN 290
-#define OROR 291
-#define ANDAND 292
-#define EQCOMPARE 293
-#define ARITHCOMPARE 294
-#define LSHIFT 295
-#define RSHIFT 296
-#define UNARY 297
-#define PLUSPLUS 298
-#define MINUSMINUS 299
-#define HYPERUNARY 300
-#define POINTSAT 301
-#define INTERFACE 302
-#define IMPLEMENTATION 303
-#define END 304
-#define SELECTOR 305
-#define DEFS 306
-#define ENCODE 307
-#define CLASSNAME 308
-#define PUBLIC 309
-#define PRIVATE 310
-#define PROTECTED 311
-#define PROTOCOL 312
-#define OBJECTNAME 313
-#define CLASS 314
-#define ALIAS 315
-#define OBJC_STRING 316
-
-#line 56 "c-parse.y"
-
-#include "config.h"
-#include "system.h"
-#include <setjmp.h>
-
-#include "tree.h"
-#include "input.h"
-#include "c-lex.h"
-#include "c-tree.h"
-#include "flags.h"
-#include "output.h"
-#include "toplev.h"
-
-#ifdef MULTIBYTE_CHARS
-#include <locale.h>
-#endif
-
-
-/* Since parsers are distinct for each language, put the language string
- definition here. */
-char *language_string = "GNU C";
-
-/* Like YYERROR but do call yyerror. */
-#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
-
-/* Cause the `yydebug' variable to be defined. */
-#define YYDEBUG 1
-
-#line 87 "c-parse.y"
-typedef union {long itype; tree ttype; enum tree_code code;
- char *filename; int lineno; int ends_in_label; } YYSTYPE;
-#line 204 "c-parse.y"
-
-/* Number of statements (loosely speaking) and compound statements
- seen so far. */
-static int stmt_count;
-static int compstmt_count;
-
-/* Input file and line number of the end of the body of last simple_if;
- used by the stmt-rule immediately after simple_if returns. */
-static char *if_stmt_file;
-static int if_stmt_line;
-
-/* List of types and structure classes of the current declaration. */
-static tree current_declspecs = NULL_TREE;
-static tree prefix_attributes = NULL_TREE;
-
-/* Stack of saved values of current_declspecs and prefix_attributes. */
-static tree declspec_stack;
-
-/* 1 if we explained undeclared var errors. */
-static int undeclared_variable_notice;
-
-
-/* Tell yyparse how to print a token's value, if yydebug is set. */
-
-#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
-extern void yyprint PROTO ((FILE *, int, YYSTYPE));
-#include <stdio.h>
-
-#ifndef __cplusplus
-#ifndef __STDC__
-#define const
-#endif
-#endif
-
-
-
-#define YYFINAL 692
-#define YYFLAG -32768
-#define YYNTBASE 84
-
-#define YYTRANSLATE(x) ((unsigned)(x) <= 316 ? yytranslate[x] : 241)
-
-static const char 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, 80, 2, 2, 2, 52, 43, 2, 59,
- 76, 50, 48, 81, 49, 58, 51, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 38, 77, 2,
- 36, 2, 37, 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,
- 60, 2, 83, 42, 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, 82, 41, 78, 79, 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,
- 39, 40, 44, 45, 46, 47, 53, 54, 55, 56,
- 57, 61, 62, 63, 64, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75
-};
-
-#if YYDEBUG != 0
-static const short yyprhs[] = { 0,
- 0, 1, 3, 4, 7, 8, 12, 14, 16, 22,
- 25, 29, 34, 39, 42, 45, 48, 51, 53, 54,
- 55, 63, 68, 69, 70, 78, 83, 84, 85, 92,
- 96, 98, 100, 102, 104, 106, 108, 110, 112, 114,
- 116, 117, 119, 121, 125, 127, 130, 133, 136, 139,
- 142, 147, 150, 155, 158, 161, 163, 165, 167, 172,
- 173, 181, 183, 187, 191, 195, 199, 203, 207, 211,
- 215, 219, 223, 227, 231, 232, 237, 238, 243, 244,
- 245, 253, 254, 260, 264, 268, 270, 272, 274, 278,
- 282, 283, 288, 293, 298, 302, 306, 309, 312, 314,
- 317, 318, 320, 323, 327, 329, 331, 334, 337, 342,
- 347, 350, 353, 357, 359, 361, 364, 367, 368, 369,
- 374, 379, 383, 387, 390, 393, 396, 399, 403, 404,
- 407, 410, 413, 416, 420, 421, 424, 427, 429, 431,
- 434, 437, 439, 441, 444, 447, 450, 454, 455, 458,
- 460, 462, 464, 469, 474, 476, 478, 480, 482, 486,
- 488, 492, 493, 498, 499, 506, 510, 511, 518, 522,
- 523, 525, 527, 530, 537, 539, 543, 544, 546, 551,
- 558, 563, 565, 567, 569, 571, 573, 574, 579, 581,
- 582, 585, 587, 591, 595, 598, 599, 604, 606, 607,
- 612, 614, 616, 618, 621, 624, 630, 634, 635, 636,
- 642, 643, 644, 650, 652, 654, 658, 662, 667, 671,
- 675, 679, 681, 685, 690, 695, 699, 703, 707, 709,
- 713, 717, 721, 726, 731, 735, 739, 741, 743, 746,
- 748, 751, 753, 756, 757, 765, 771, 774, 775, 783,
- 789, 792, 793, 802, 803, 811, 814, 815, 817, 818,
- 820, 822, 825, 826, 830, 833, 837, 839, 843, 845,
- 847, 850, 852, 856, 861, 868, 874, 876, 880, 882,
- 884, 888, 891, 894, 895, 897, 899, 902, 903, 906,
- 910, 914, 917, 921, 926, 930, 933, 937, 940, 944,
- 946, 948, 951, 954, 955, 957, 960, 961, 962, 964,
- 966, 969, 973, 975, 978, 980, 983, 990, 996, 1002,
- 1005, 1008, 1013, 1014, 1019, 1020, 1021, 1025, 1030, 1034,
- 1036, 1038, 1040, 1042, 1045, 1046, 1051, 1053, 1057, 1058,
- 1059, 1067, 1073, 1076, 1077, 1078, 1079, 1092, 1093, 1100,
- 1103, 1106, 1109, 1113, 1120, 1129, 1140, 1153, 1157, 1162,
- 1164, 1166, 1167, 1174, 1178, 1184, 1187, 1191, 1192, 1194,
- 1195, 1197, 1198, 1200, 1202, 1206, 1211, 1213, 1217, 1218,
- 1221, 1224, 1225, 1230, 1233, 1234, 1236, 1238, 1242, 1244,
- 1248, 1253, 1258, 1263, 1268, 1273, 1274, 1277, 1279, 1282,
- 1284, 1288, 1290, 1294
-};
-
-static const short yyrhs[] = { -1,
- 85, 0, 0, 86, 88, 0, 0, 85, 87, 88,
- 0, 90, 0, 89, 0, 27, 59, 99, 76, 77,
- 0, 240, 88, 0, 122, 136, 77, 0, 129, 122,
- 136, 77, 0, 125, 122, 135, 77, 0, 129, 77,
- 0, 125, 77, 0, 1, 77, 0, 1, 78, 0,
- 77, 0, 0, 0, 125, 122, 164, 91, 116, 92,
- 198, 0, 125, 122, 164, 1, 0, 0, 0, 129,
- 122, 167, 93, 116, 94, 198, 0, 129, 122, 167,
- 1, 0, 0, 0, 122, 167, 95, 116, 96, 198,
- 0, 122, 167, 1, 0, 3, 0, 4, 0, 43,
- 0, 49, 0, 48, 0, 54, 0, 55, 0, 79,
- 0, 80, 0, 101, 0, 0, 101, 0, 107, 0,
- 101, 81, 107, 0, 113, 0, 50, 105, 0, 240,
- 105, 0, 98, 105, 0, 40, 97, 0, 103, 102,
- 0, 103, 59, 185, 76, 0, 104, 102, 0, 104,
- 59, 185, 76, 0, 33, 105, 0, 34, 105, 0,
- 11, 0, 29, 0, 102, 0, 59, 185, 76, 105,
- 0, 0, 59, 185, 76, 82, 106, 150, 78, 0,
- 105, 0, 107, 48, 107, 0, 107, 49, 107, 0,
- 107, 50, 107, 0, 107, 51, 107, 0, 107, 52,
- 107, 0, 107, 46, 107, 0, 107, 47, 107, 0,
- 107, 45, 107, 0, 107, 44, 107, 0, 107, 43,
- 107, 0, 107, 41, 107, 0, 107, 42, 107, 0,
- 0, 107, 40, 108, 107, 0, 0, 107, 39, 109,
- 107, 0, 0, 0, 107, 37, 110, 99, 38, 111,
- 107, 0, 0, 107, 37, 112, 38, 107, 0, 107,
- 36, 107, 0, 107, 35, 107, 0, 3, 0, 8,
- 0, 115, 0, 59, 99, 76, 0, 59, 1, 76,
- 0, 0, 59, 114, 200, 76, 0, 113, 59, 100,
- 76, 0, 113, 60, 99, 83, 0, 113, 58, 97,
- 0, 113, 57, 97, 0, 113, 54, 0, 113, 55,
- 0, 9, 0, 115, 9, 0, 0, 118, 0, 118,
- 10, 0, 205, 206, 119, 0, 117, 0, 193, 0,
- 118, 117, 0, 117, 193, 0, 127, 122, 135, 77,
- 0, 130, 122, 136, 77, 0, 127, 77, 0, 130,
- 77, 0, 205, 206, 124, 0, 120, 0, 193, 0,
- 121, 120, 0, 120, 193, 0, 0, 0, 125, 122,
- 135, 77, 0, 129, 122, 136, 77, 0, 125, 122,
- 158, 0, 129, 122, 161, 0, 125, 77, 0, 129,
- 77, 0, 240, 124, 0, 133, 126, 0, 129, 133,
- 126, 0, 0, 126, 134, 0, 126, 5, 0, 126,
- 143, 0, 133, 128, 0, 130, 133, 128, 0, 0,
- 128, 134, 0, 128, 5, 0, 130, 0, 143, 0,
- 129, 130, 0, 129, 143, 0, 7, 0, 5, 0,
- 130, 7, 0, 130, 5, 0, 133, 132, 0, 187,
- 133, 132, 0, 0, 132, 134, 0, 6, 0, 171,
- 0, 4, 0, 28, 59, 99, 76, 0, 28, 59,
- 185, 76, 0, 6, 0, 7, 0, 171, 0, 138,
- 0, 135, 81, 138, 0, 140, 0, 136, 81, 138,
- 0, 0, 27, 59, 115, 76, 0, 0, 164, 137,
- 142, 36, 139, 148, 0, 164, 137, 142, 0, 0,
- 167, 137, 142, 36, 141, 148, 0, 167, 137, 142,
- 0, 0, 143, 0, 144, 0, 143, 144, 0, 30,
- 59, 59, 145, 76, 76, 0, 146, 0, 145, 81,
- 146, 0, 0, 147, 0, 147, 59, 3, 76, 0,
- 147, 59, 3, 81, 101, 76, 0, 147, 59, 100,
- 76, 0, 97, 0, 5, 0, 6, 0, 7, 0,
- 107, 0, 0, 82, 149, 150, 78, 0, 1, 0,
- 0, 151, 176, 0, 152, 0, 151, 81, 152, 0,
- 156, 36, 154, 0, 157, 154, 0, 0, 97, 38,
- 153, 154, 0, 154, 0, 0, 82, 155, 150, 78,
- 0, 107, 0, 1, 0, 157, 0, 156, 157, 0,
- 58, 97, 0, 60, 107, 10, 107, 83, 0, 60,
- 107, 83, 0, 0, 0, 164, 159, 116, 160, 200,
- 0, 0, 0, 167, 162, 116, 163, 200, 0, 165,
- 0, 167, 0, 59, 165, 76, 0, 165, 59, 235,
- 0, 165, 60, 99, 83, 0, 165, 60, 83, 0,
- 50, 188, 165, 0, 143, 123, 165, 0, 4, 0,
- 166, 59, 235, 0, 166, 60, 50, 83, 0, 166,
- 60, 99, 83, 0, 166, 60, 83, 0, 50, 188,
- 166, 0, 143, 123, 166, 0, 4, 0, 167, 59,
- 235, 0, 59, 167, 76, 0, 50, 188, 167, 0,
- 167, 60, 50, 83, 0, 167, 60, 99, 83, 0,
- 167, 60, 83, 0, 143, 123, 167, 0, 3, 0,
- 13, 0, 13, 143, 0, 14, 0, 14, 143, 0,
- 12, 0, 12, 143, 0, 0, 168, 97, 82, 172,
- 178, 78, 142, 0, 168, 82, 178, 78, 142, 0,
- 168, 97, 0, 0, 169, 97, 82, 173, 178, 78,
- 142, 0, 169, 82, 178, 78, 142, 0, 169, 97,
- 0, 0, 170, 97, 82, 174, 183, 177, 78, 142,
- 0, 0, 170, 82, 175, 183, 177, 78, 142, 0,
- 170, 97, 0, 0, 81, 0, 0, 81, 0, 179,
- 0, 179, 180, 0, 0, 179, 180, 77, 0, 179,
- 77, 0, 131, 122, 181, 0, 131, 0, 187, 122,
- 181, 0, 187, 0, 1, 0, 240, 180, 0, 182,
- 0, 181, 81, 182, 0, 205, 206, 164, 142, 0,
- 205, 206, 164, 38, 107, 142, 0, 205, 206, 38,
- 107, 142, 0, 184, 0, 183, 81, 184, 0, 1,
- 0, 97, 0, 97, 36, 107, 0, 131, 186, 0,
- 187, 186, 0, 0, 189, 0, 7, 0, 187, 7,
- 0, 0, 188, 7, 0, 59, 189, 76, 0, 50,
- 188, 189, 0, 50, 188, 0, 189, 59, 228, 0,
- 189, 60, 99, 83, 0, 189, 60, 83, 0, 59,
- 228, 0, 60, 99, 83, 0, 60, 83, 0, 143,
- 123, 189, 0, 191, 0, 208, 0, 191, 208, 0,
- 191, 193, 0, 0, 190, 0, 1, 77, 0, 0,
- 0, 196, 0, 197, 0, 196, 197, 0, 32, 239,
- 77, 0, 200, 0, 1, 200, 0, 82, 0, 199,
- 78, 0, 199, 194, 195, 121, 192, 78, 0, 199,
- 194, 195, 1, 78, 0, 199, 194, 195, 190, 78,
- 0, 202, 207, 0, 202, 1, 0, 15, 59, 99,
- 76, 0, 0, 18, 204, 207, 17, 0, 0, 0,
- 205, 206, 210, 0, 205, 206, 221, 207, 0, 205,
- 206, 209, 0, 210, 0, 221, 0, 200, 0, 218,
- 0, 99, 77, 0, 0, 201, 16, 211, 207, 0,
- 201, 0, 201, 16, 1, 0, 0, 0, 17, 212,
- 59, 99, 76, 213, 207, 0, 203, 59, 99, 76,
- 77, 0, 203, 1, 0, 0, 0, 0, 19, 59,
- 223, 77, 214, 223, 77, 215, 223, 76, 216, 207,
- 0, 0, 20, 59, 99, 76, 217, 207, 0, 23,
- 77, 0, 24, 77, 0, 25, 77, 0, 25, 99,
- 77, 0, 27, 222, 59, 99, 76, 77, 0, 27,
- 222, 59, 99, 38, 224, 76, 77, 0, 27, 222,
- 59, 99, 38, 224, 38, 224, 76, 77, 0, 27,
- 222, 59, 99, 38, 224, 38, 224, 38, 227, 76,
- 77, 0, 26, 97, 77, 0, 26, 50, 99, 77,
- 0, 77, 0, 219, 0, 0, 19, 59, 113, 76,
- 220, 207, 0, 21, 107, 38, 0, 21, 107, 10,
- 107, 38, 0, 22, 38, 0, 97, 38, 142, 0,
- 0, 7, 0, 0, 99, 0, 0, 225, 0, 226,
- 0, 225, 81, 226, 0, 9, 59, 99, 76, 0,
- 115, 0, 227, 81, 115, 0, 0, 229, 230, 0,
- 232, 76, 0, 0, 233, 77, 231, 230, 0, 1,
- 76, 0, 0, 10, 0, 233, 0, 233, 81, 10,
- 0, 234, 0, 233, 81, 234, 0, 125, 122, 166,
- 142, 0, 125, 122, 167, 142, 0, 125, 122, 186,
- 142, 0, 129, 122, 167, 142, 0, 129, 122, 186,
- 142, 0, 0, 236, 237, 0, 230, 0, 238, 76,
- 0, 3, 0, 238, 81, 3, 0, 97, 0, 239,
- 81, 97, 0, 31, 0
-};
-
-#endif
-
-#if YYDEBUG != 0
-static const short yyrline[] = { 0,
- 233, 238, 252, 254, 254, 255, 257, 259, 260, 268,
- 272, 283, 288, 293, 295, 297, 298, 299, 304, 311,
- 313, 318, 323, 329, 331, 336, 341, 347, 349, 354,
- 361, 363, 366, 368, 370, 372, 374, 376, 378, 382,
- 386, 389, 392, 395, 399, 401, 404, 407, 411, 439,
- 445, 448, 451, 454, 456, 460, 464, 468, 470, 473,
- 477, 504, 506, 508, 510, 512, 514, 516, 518, 520,
- 522, 524, 526, 528, 530, 534, 536, 540, 542, 545,
- 549, 551, 558, 561, 569, 580, 679, 680, 682, 688,
- 690, 704, 727, 729, 731, 735, 741, 743, 748, 750,
- 755, 757, 758, 768, 773, 775, 776, 777, 784, 790,
- 795, 798, 806, 811, 813, 814, 815, 822, 833, 837,
- 843, 848, 853, 858, 860, 862, 871, 874, 878, 880,
- 882, 887, 891, 894, 898, 901, 903, 915, 918, 920,
- 922, 926, 930, 932, 935, 948, 951, 955, 957, 965,
- 966, 967, 971, 973, 979, 980, 981, 984, 986, 989,
- 991, 994, 997, 1003, 1010, 1012, 1019, 1026, 1029, 1036,
- 1039, 1043, 1046, 1050, 1055, 1058, 1062, 1065, 1067, 1069,
- 1071, 1078, 1080, 1081, 1082, 1087, 1089, 1094, 1102, 1107,
- 1111, 1114, 1116, 1121, 1123, 1124, 1127, 1127, 1130, 1133,
- 1135, 1137, 1140, 1142, 1145, 1151, 1153, 1157, 1168, 1176,
- 1180, 1191, 1199, 1206, 1208, 1213, 1216, 1221, 1223, 1225,
- 1232, 1234, 1242, 1248, 1253, 1255, 1257, 1264, 1266, 1272,
- 1278, 1280, 1282, 1287, 1289, 1296, 1298, 1301, 1304, 1308,
- 1311, 1315, 1318, 1322, 1327, 1329, 1333, 1335, 1337, 1339,
- 1343, 1345, 1348, 1351, 1354, 1357, 1361, 1363, 1366, 1368,
- 1373, 1376, 1381, 1383, 1385, 1399, 1406, 1411, 1417, 1422,
- 1424, 1429, 1431, 1435, 1439, 1443, 1453, 1455, 1460, 1465,
- 1468, 1472, 1475, 1479, 1482, 1485, 1488, 1492, 1495, 1499,
- 1503, 1505, 1507, 1509, 1511, 1513, 1515, 1517, 1521, 1529,
- 1537, 1539, 1541, 1545, 1547, 1550, 1553, 1564, 1566, 1571,
- 1573, 1576, 1590, 1593, 1596, 1598, 1600, 1608, 1616, 1627,
- 1632, 1635, 1649, 1658, 1662, 1666, 1670, 1676, 1680, 1685,
- 1688, 1693, 1696, 1697, 1714, 1719, 1722, 1734, 1736, 1746,
- 1756, 1757, 1765, 1768, 1780, 1784, 1801, 1811, 1820, 1825,
- 1830, 1835, 1839, 1843, 1854, 1861, 1868, 1875, 1886, 1892,
- 1895, 1900, 1923, 1957, 1988, 2019, 2034, 2048, 2052, 2056,
- 2059, 2064, 2066, 2069, 2071, 2075, 2080, 2083, 2089, 2094,
- 2099, 2101, 2110, 2111, 2117, 2119, 2129, 2131, 2135, 2138,
- 2144, 2154, 2163, 2172, 2182, 2196, 2201, 2206, 2208, 2217,
- 2220, 2225, 2228, 2232
-};
-#endif
-
-
-#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
-
-static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
-"TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
-"ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
-"BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ATTRIBUTE",
-"EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'","OROR",
-"ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT","'+'",
-"'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
-"'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
-"CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
-"OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
-"@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
-"unop","expr","exprlist","nonnull_exprlist","unary_expr","sizeof","alignof",
-"cast_expr","@9","expr_no_commas","@10","@11","@12","@13","@14","primary","@15",
-"string","old_style_parm_decls","lineno_datadecl","datadecls","datadecl","lineno_decl",
-"decls","setspecs","setattrs","decl","typed_declspecs","reserved_declspecs",
-"typed_declspecs_no_prefix_attr","reserved_declspecs_no_prefix_attr","declmods",
-"declmods_no_prefix_attr","typed_typespecs","reserved_typespecquals","typespec",
-"typespecqual_reserved","initdecls","notype_initdecls","maybeasm","initdcl",
-"@16","notype_initdcl","@17","maybe_attribute","attributes","attribute","attribute_list",
-"attrib","any_word","init","@18","initlist_maybe_comma","initlist1","initelt",
-"@19","initval","@20","designator_list","designator","nested_function","@21",
-"@22","notype_nested_function","@23","@24","declarator","after_type_declarator",
-"parm_declarator","notype_declarator","struct_head","union_head","enum_head",
-"structsp","@25","@26","@27","@28","maybecomma","maybecomma_warn","component_decl_list",
-"component_decl_list2","component_decl","components","component_declarator",
-"enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
-"absdcl1","stmts","lineno_stmt_or_labels","xstmts","errstmt","pushlevel","maybe_label_decls",
-"label_decls","label_decl","compstmt_or_error","compstmt_start","compstmt","simple_if",
-"if_prefix","do_stmt_start","@29","save_filename","save_lineno","lineno_labeled_stmt",
-"lineno_stmt_or_label","stmt_or_label","stmt","@30","@31","@32","@33","@34",
-"@35","@36","all_iter_stmt","all_iter_stmt_simple","@37","label","maybe_type_qual",
-"xexpr","asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist",
-"@38","parmlist_1","@39","parmlist_2","parms","parm","parmlist_or_identifiers",
-"@40","parmlist_or_identifiers_1","identifiers","identifiers_or_typenames","extension", NULL
-};
-#endif
-
-static const short yyr1[] = { 0,
- 84, 84, 86, 85, 87, 85, 88, 88, 88, 88,
- 89, 89, 89, 89, 89, 89, 89, 89, 91, 92,
- 90, 90, 93, 94, 90, 90, 95, 96, 90, 90,
- 97, 97, 98, 98, 98, 98, 98, 98, 98, 99,
- 100, 100, 101, 101, 102, 102, 102, 102, 102, 102,
- 102, 102, 102, 102, 102, 103, 104, 105, 105, 106,
- 105, 107, 107, 107, 107, 107, 107, 107, 107, 107,
- 107, 107, 107, 107, 108, 107, 109, 107, 110, 111,
- 107, 112, 107, 107, 107, 113, 113, 113, 113, 113,
- 114, 113, 113, 113, 113, 113, 113, 113, 115, 115,
- 116, 116, 116, 117, 118, 118, 118, 118, 119, 119,
- 119, 119, 120, 121, 121, 121, 121, 122, 123, 124,
- 124, 124, 124, 124, 124, 124, 125, 125, 126, 126,
- 126, 126, 127, 127, 128, 128, 128, 129, 129, 129,
- 129, 130, 130, 130, 130, 131, 131, 132, 132, 133,
- 133, 133, 133, 133, 134, 134, 134, 135, 135, 136,
- 136, 137, 137, 139, 138, 138, 141, 140, 140, 142,
- 142, 143, 143, 144, 145, 145, 146, 146, 146, 146,
- 146, 147, 147, 147, 147, 148, 149, 148, 148, 150,
- 150, 151, 151, 152, 152, 153, 152, 152, 155, 154,
- 154, 154, 156, 156, 157, 157, 157, 159, 160, 158,
- 162, 163, 161, 164, 164, 165, 165, 165, 165, 165,
- 165, 165, 166, 166, 166, 166, 166, 166, 166, 167,
- 167, 167, 167, 167, 167, 167, 167, 168, 168, 169,
- 169, 170, 170, 172, 171, 171, 171, 173, 171, 171,
- 171, 174, 171, 175, 171, 171, 176, 176, 177, 177,
- 178, 178, 179, 179, 179, 180, 180, 180, 180, 180,
- 180, 181, 181, 182, 182, 182, 183, 183, 183, 184,
- 184, 185, 185, 186, 186, 187, 187, 188, 188, 189,
- 189, 189, 189, 189, 189, 189, 189, 189, 189, 190,
- 191, 191, 191, 192, 192, 193, 194, 195, 195, 196,
- 196, 197, 198, 198, 199, 200, 200, 200, 200, 201,
- 201, 202, 204, 203, 205, 206, 207, 207, 208, 209,
- 209, 210, 210, 210, 211, 210, 210, 210, 212, 213,
- 210, 210, 210, 214, 215, 216, 210, 217, 210, 210,
- 210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
- 218, 220, 219, 221, 221, 221, 221, 222, 222, 223,
- 223, 224, 224, 225, 225, 226, 227, 227, 229, 228,
- 230, 231, 230, 230, 232, 232, 232, 232, 233, 233,
- 234, 234, 234, 234, 234, 236, 235, 237, 237, 238,
- 238, 239, 239, 240
-};
-
-static const short yyr2[] = { 0,
- 0, 1, 0, 2, 0, 3, 1, 1, 5, 2,
- 3, 4, 4, 2, 2, 2, 2, 1, 0, 0,
- 7, 4, 0, 0, 7, 4, 0, 0, 6, 3,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 0, 1, 1, 3, 1, 2, 2, 2, 2, 2,
- 4, 2, 4, 2, 2, 1, 1, 1, 4, 0,
- 7, 1, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 0, 4, 0, 4, 0, 0,
- 7, 0, 5, 3, 3, 1, 1, 1, 3, 3,
- 0, 4, 4, 4, 3, 3, 2, 2, 1, 2,
- 0, 1, 2, 3, 1, 1, 2, 2, 4, 4,
- 2, 2, 3, 1, 1, 2, 2, 0, 0, 4,
- 4, 3, 3, 2, 2, 2, 2, 3, 0, 2,
- 2, 2, 2, 3, 0, 2, 2, 1, 1, 2,
- 2, 1, 1, 2, 2, 2, 3, 0, 2, 1,
- 1, 1, 4, 4, 1, 1, 1, 1, 3, 1,
- 3, 0, 4, 0, 6, 3, 0, 6, 3, 0,
- 1, 1, 2, 6, 1, 3, 0, 1, 4, 6,
- 4, 1, 1, 1, 1, 1, 0, 4, 1, 0,
- 2, 1, 3, 3, 2, 0, 4, 1, 0, 4,
- 1, 1, 1, 2, 2, 5, 3, 0, 0, 5,
- 0, 0, 5, 1, 1, 3, 3, 4, 3, 3,
- 3, 1, 3, 4, 4, 3, 3, 3, 1, 3,
- 3, 3, 4, 4, 3, 3, 1, 1, 2, 1,
- 2, 1, 2, 0, 7, 5, 2, 0, 7, 5,
- 2, 0, 8, 0, 7, 2, 0, 1, 0, 1,
- 1, 2, 0, 3, 2, 3, 1, 3, 1, 1,
- 2, 1, 3, 4, 6, 5, 1, 3, 1, 1,
- 3, 2, 2, 0, 1, 1, 2, 0, 2, 3,
- 3, 2, 3, 4, 3, 2, 3, 2, 3, 1,
- 1, 2, 2, 0, 1, 2, 0, 0, 1, 1,
- 2, 3, 1, 2, 1, 2, 6, 5, 5, 2,
- 2, 4, 0, 4, 0, 0, 3, 4, 3, 1,
- 1, 1, 1, 2, 0, 4, 1, 3, 0, 0,
- 7, 5, 2, 0, 0, 0, 12, 0, 6, 2,
- 2, 2, 3, 6, 8, 10, 12, 3, 4, 1,
- 1, 0, 6, 3, 5, 2, 3, 0, 1, 0,
- 1, 0, 1, 1, 3, 4, 1, 3, 0, 2,
- 2, 0, 4, 2, 0, 1, 1, 3, 1, 3,
- 4, 4, 4, 4, 4, 0, 2, 1, 2, 1,
- 3, 1, 3, 1
-};
-
-static const short yydefact[] = { 3,
- 5, 0, 0, 0, 152, 143, 150, 142, 242, 238,
- 240, 0, 0, 0, 404, 18, 4, 8, 7, 0,
- 118, 118, 138, 129, 139, 172, 0, 0, 0, 151,
- 0, 6, 16, 17, 243, 239, 241, 0, 0, 0,
- 237, 288, 0, 0, 160, 119, 0, 15, 0, 14,
- 0, 140, 129, 141, 145, 144, 127, 173, 31, 32,
- 263, 247, 263, 251, 254, 256, 10, 86, 87, 99,
- 56, 57, 0, 0, 0, 33, 35, 34, 0, 36,
- 37, 0, 38, 39, 0, 0, 40, 58, 0, 0,
- 62, 43, 45, 88, 0, 286, 0, 284, 148, 0,
- 284, 177, 0, 0, 11, 0, 0, 30, 0, 396,
- 0, 0, 170, 222, 288, 0, 0, 158, 119, 0,
- 214, 215, 0, 0, 128, 131, 155, 156, 130, 132,
- 157, 0, 0, 244, 0, 248, 0, 252, 54, 55,
- 49, 46, 0, 0, 0, 0, 48, 0, 0, 0,
- 50, 0, 52, 0, 0, 79, 77, 75, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 97, 98, 0, 0, 41, 0, 100, 47, 153, 288,
- 379, 0, 119, 282, 285, 146, 154, 287, 148, 283,
- 183, 184, 185, 182, 0, 175, 178, 289, 232, 231,
- 161, 162, 236, 0, 230, 0, 0, 235, 0, 0,
- 28, 0, 325, 106, 326, 169, 171, 0, 0, 13,
- 0, 0, 22, 0, 170, 396, 0, 12, 26, 0,
- 170, 270, 265, 118, 262, 118, 0, 263, 170, 263,
- 279, 280, 259, 277, 0, 90, 89, 315, 307, 0,
- 0, 9, 44, 0, 0, 85, 84, 0, 0, 0,
- 0, 73, 74, 72, 71, 70, 68, 69, 63, 64,
- 65, 66, 67, 96, 95, 0, 42, 0, 292, 0,
- 296, 0, 298, 0, 0, 379, 0, 149, 147, 0,
- 177, 41, 0, 0, 400, 386, 118, 118, 398, 0,
- 387, 389, 397, 0, 233, 234, 306, 0, 108, 103,
- 107, 0, 167, 220, 216, 159, 221, 20, 166, 217,
- 219, 0, 24, 246, 325, 264, 325, 271, 0, 250,
- 0, 0, 260, 0, 259, 316, 308, 92, 60, 59,
- 51, 53, 0, 0, 78, 76, 93, 94, 291, 290,
- 380, 297, 299, 293, 295, 0, 174, 176, 86, 0,
- 163, 384, 284, 284, 381, 382, 0, 399, 0, 0,
- 29, 313, 104, 118, 118, 135, 0, 0, 164, 218,
- 0, 266, 272, 326, 268, 170, 170, 281, 278, 170,
- 0, 0, 0, 309, 310, 0, 80, 83, 294, 179,
- 0, 181, 229, 288, 379, 119, 170, 170, 170, 288,
- 119, 170, 170, 0, 388, 390, 401, 314, 111, 0,
- 112, 0, 135, 133, 189, 187, 186, 168, 21, 0,
- 25, 325, 0, 245, 249, 255, 170, 402, 0, 0,
- 0, 325, 0, 0, 115, 326, 301, 311, 202, 86,
- 0, 0, 199, 0, 201, 0, 257, 192, 198, 0,
- 0, 0, 0, 292, 0, 396, 0, 391, 392, 393,
- 292, 0, 394, 395, 383, 0, 0, 162, 134, 137,
- 136, 0, 165, 273, 0, 170, 253, 312, 0, 318,
- 117, 116, 305, 0, 319, 303, 326, 302, 0, 205,
- 0, 0, 196, 61, 0, 191, 0, 204, 195, 81,
- 180, 227, 228, 223, 0, 226, 0, 109, 110, 0,
- 170, 0, 274, 403, 317, 0, 152, 0, 339, 323,
- 0, 0, 0, 0, 0, 0, 0, 0, 368, 360,
- 0, 0, 113, 118, 118, 332, 337, 0, 0, 329,
- 330, 333, 361, 331, 0, 0, 207, 0, 0, 193,
- 194, 224, 225, 188, 276, 170, 0, 0, 325, 370,
- 0, 0, 366, 350, 351, 352, 0, 0, 0, 369,
- 0, 170, 334, 124, 0, 125, 0, 0, 321, 326,
- 320, 343, 0, 126, 0, 200, 197, 275, 0, 0,
- 0, 371, 45, 0, 0, 0, 364, 353, 0, 358,
- 0, 367, 0, 122, 208, 0, 123, 211, 338, 325,
- 0, 0, 206, 322, 0, 324, 362, 344, 348, 0,
- 359, 0, 120, 0, 121, 0, 336, 327, 325, 0,
- 340, 325, 370, 325, 365, 372, 0, 209, 212, 328,
- 342, 325, 363, 0, 349, 0, 0, 373, 374, 354,
- 0, 0, 341, 345, 0, 372, 0, 0, 210, 213,
- 370, 0, 0, 355, 375, 0, 376, 0, 0, 346,
- 377, 0, 356, 325, 0, 0, 347, 357, 378, 0,
- 0, 0
-};
-
-static const short yydefgoto[] = { 690,
- 1, 2, 3, 17, 18, 19, 224, 378, 230, 381,
- 112, 308, 454, 85, 144, 276, 87, 88, 89, 90,
- 91, 396, 92, 261, 260, 258, 462, 259, 93, 145,
- 94, 211, 212, 213, 373, 441, 442, 20, 107, 543,
- 297, 57, 374, 424, 298, 23, 98, 186, 24, 129,
- 117, 44, 113, 118, 430, 45, 377, 216, 217, 26,
- 195, 196, 197, 428, 482, 456, 457, 458, 559, 459,
- 502, 460, 461, 614, 634, 661, 617, 636, 662, 202,
- 121, 407, 122, 27, 28, 29, 30, 238, 240, 245,
- 137, 506, 334, 132, 133, 235, 382, 383, 243, 244,
- 100, 184, 101, 103, 185, 443, 444, 494, 214, 337,
- 393, 394, 395, 371, 249, 372, 547, 548, 549, 569,
- 590, 312, 591, 447, 550, 551, 620, 568, 652, 643,
- 671, 684, 644, 552, 553, 642, 554, 581, 604, 657,
- 658, 659, 682, 281, 282, 299, 414, 300, 301, 302,
- 205, 206, 303, 304, 439, 95
-};
-
-static const short yypact[] = { 95,
- 110, 2206, 2206, 260,-32768,-32768,-32768,-32768, 40, 40,
- 40, 57, 59, 89,-32768,-32768,-32768,-32768,-32768, 42,
- 99, 2234, 79,-32768, 40,-32768, 87, 93, 108,-32768,
- 2206,-32768,-32768,-32768, 40, 40, 40, 2068, 2002, 125,
--32768,-32768, 42, 147,-32768, 40, 1355,-32768, 257,-32768,
- 42, 79,-32768, 40,-32768,-32768, 696,-32768,-32768,-32768,
--32768, 76,-32768, 124,-32768, 132,-32768,-32768,-32768,-32768,
--32768,-32768, 2068, 2068, 373,-32768,-32768,-32768, 2068,-32768,
--32768, 721,-32768,-32768, 2068, 149, 153,-32768, 2095, 2122,
--32768, 2335, 881, 231, 2068,-32768, 186, 319,-32768, 203,
- 578, 708, 627, 304,-32768, 257, 42,-32768, 194,-32768,
- 1430, 438, 40,-32768,-32768, 257, 177,-32768, 40, 276,
- 398, 417, 188, 1417, 696,-32768,-32768,-32768,-32768, 40,
--32768, 208, 778,-32768, 214,-32768, 468,-32768,-32768,-32768,
--32768,-32768, 223, 269, 288, 312,-32768, 315, 2068, 721,
--32768, 721,-32768, 2068, 2068, 362,-32768,-32768, 2068, 2068,
- 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068,
--32768,-32768, 373, 373, 2068, 2068,-32768,-32768,-32768,-32768,
- 319, 1457, 40,-32768, 426, 760,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 50,-32768, 344,-32768, 417,-32768,
--32768, 385, 417, 419,-32768, 611, 1512,-32768, 349, 361,
--32768, 316, 70,-32768,-32768, 405, 40, 545, 323,-32768,
- 257, 257,-32768, 438, 40,-32768, 1539,-32768,-32768, 438,
- 40,-32768,-32768, 428, 370, 198, 953,-32768, 40,-32768,
--32768, 413, 383,-32768, 468,-32768,-32768,-32768, 376, 391,
- 1891,-32768, 2335, 402, 411, 2335, 2335, 2068, 443, 2068,
- 2068, 1564, 1645, 1859, 1078, 747, 838, 838, 356, 356,
--32768,-32768,-32768,-32768,-32768, 432, 153, 412, 463, 485,
--32768, 871,-32768, 434, 319,-32768, 1594,-32768, 760, 445,
- 708, 2149, 54, 448,-32768,-32768,-32768, 1036,-32768, 450,
- 197,-32768,-32768, 81,-32768,-32768,-32768, 39,-32768,-32768,
--32768, 846,-32768, 398,-32768,-32768, 398,-32768, 483,-32768,
--32768, 452,-32768,-32768,-32768,-32768,-32768,-32768, 461,-32768,
- 473, 2068, 373, 480, 383,-32768, 496,-32768,-32768,-32768,
--32768,-32768, 508, 2068, 2258, 1483,-32768,-32768, 426,-32768,
--32768,-32768, 426,-32768,-32768, 493,-32768,-32768, 85, 510,
--32768,-32768, 550, 497,-32768,-32768, 1006,-32768, 585, 288,
--32768,-32768,-32768, 512, 328,-32768, 1291, 39,-32768,-32768,
- 39, 513,-32768,-32768, 513, 40, 40, 2335,-32768, 40,
- 515, 373, 814, 496,-32768, 1111,-32768, 2351,-32768,-32768,
- 2068,-32768,-32768,-32768, 497, 40, 133, 140, 40,-32768,
- 40, 140, 40, 871,-32768,-32768,-32768,-32768,-32768, 257,
--32768, 42,-32768, 692,-32768,-32768, 2335,-32768,-32768, 1291,
--32768,-32768, 430,-32768,-32768,-32768, 40,-32768, 220, 433,
- 641, 518, 520, 894,-32768,-32768,-32768,-32768,-32768, 563,
- 373, 2068,-32768, 564, 2335, 525, 526,-32768,-32768, 326,
- 1231, 2068, 146, 500, 550,-32768, 1621,-32768,-32768,-32768,
- 423, 497,-32768,-32768,-32768, 237, 250, 112, 692,-32768,
--32768, 1111,-32768,-32768, 2068, 49,-32768,-32768, 373,-32768,
--32768,-32768,-32768, 541,-32768,-32768,-32768,-32768, 1757,-32768,
- 2245, 1111,-32768,-32768, 1171,-32768, 1346,-32768,-32768, 2351,
--32768, 504, 504,-32768, 1676,-32768, 537,-32768,-32768, 544,
- 1778, 2068,-32768,-32768,-32768, 1837, 588, 570,-32768,-32768,
- 572, 576, 2068, 598, 566, 596, 2015, 193, 633,-32768,
- 638, 601,-32768, 602, 2238,-32768, 664, 974, 66,-32768,
--32768,-32768,-32768,-32768, 1948, 2068,-32768, 604, 1346,-32768,
--32768,-32768,-32768,-32768,-32768, 1778, 2068, 624,-32768, 2068,
- 2068, 1701,-32768,-32768,-32768,-32768, 615, 2068, 616,-32768,
- 629, 40,-32768,-32768, 257,-32768, 42, 1054,-32768,-32768,
--32768,-32768, 2068,-32768, 2290,-32768,-32768,-32768, 618, 2068,
- 714,-32768, 687, 659, 662, 2068,-32768,-32768, 666,-32768,
- 2068,-32768, 271,-32768, 266, 284,-32768, 158,-32768,-32768,
- 1837, 663,-32768,-32768, 672,-32768,-32768,-32768,-32768, 2308,
--32768, 24,-32768, 438,-32768, 438,-32768,-32768,-32768, 674,
--32768,-32768, 2068,-32768,-32768, 744, 679,-32768,-32768,-32768,
--32768,-32768,-32768, 681,-32768, 700, 43, 684,-32768,-32768,
- 288, 288,-32768,-32768, 2068, 744, 691, 744,-32768,-32768,
- 2068, 702, 61,-32768,-32768, 705,-32768, 419, 706,-32768,
- 231, 176,-32768,-32768, 709, 419,-32768,-32768, 231, 787,
- 789,-32768
-};
-
-static const short yypgoto[] = {-32768,
--32768,-32768,-32768, 103,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, -24,-32768, -38, 516, -110, 477,-32768,-32768,
- -21,-32768, 255,-32768,-32768,-32768,-32768,-32768, 232,-32768,
- -194, -199, 591,-32768,-32768, 363,-32768, -3, -60, 252,
- 10, 757,-32768, 389, 19, -14, -90, 635, 27, -169,
- -390, -49, -114, -68,-32768,-32768,-32768, -171, 26, 68,
--32768, 522,-32768, 386,-32768, -347,-32768, 325,-32768, -405,
--32768,-32768, 406,-32768,-32768,-32768,-32768,-32768,-32768, -42,
- -77, 105, -9,-32768,-32768,-32768, -43,-32768,-32768,-32768,
--32768,-32768, 511, -37,-32768, 612, 538, 435, 625, 546,
- -35, -92, -72, -91, -105, 429,-32768,-32768, -185,-32768,
--32768,-32768, 486, 16,-32768, -125,-32768,-32768,-32768,-32768,
- -57, -361, -461, 456,-32768, 261,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768, 283,-32768, -503, 226,
--32768, 238,-32768, 621,-32768, -250,-32768,-32768,-32768, 543,
- -193,-32768,-32768,-32768,-32768, 13
-};
-
-
-#define YYLAST 2403
-
-
-static const short yytable[] = { 86,
- 97, 123, 62, 64, 66, 225, 120, 52, 190, 293,
- 47, 21, 21, 131, 31, 31, 288, 49, 51, 250,
- 22, 22, 433, 218, 318, 135, 309, 25, 25, 476,
- 323, 351, 320, 104, 35, 36, 37, 201, 219, 370,
- 21, 124, 234, 31, 41, 46, 146, 54, 53, 22,
- 141, 139, 140, 319, 215, 509, 25, 142, 222, 324,
- 236, 646, 177, 147, 277, 99, 592, 330, 46, 14,
- -102, 14, 209, 178, 119, 280, 46, 194, 14, 310,
- 666, 131, 130, 55, 499, 56, 522, 225, 279, 59,
- 60, 42, 58, 199, -1, 59, 60, 203, 678, 647,
- 43, 561, 58, 58, 58, 32, 104, 601, 99, -2,
- 59, 60, 242, 58, 254, 38, 255, 39, 667, 288,
- 248, 58, 285, 183, 593, 290, 183, 189, 46, 361,
- 291, 119, 46, 67, 520, 526, 679, 278, 109, 654,
- 314, 119, 131, 284, 317, 237, 234, 40, 274, 275,
- 130, -102, 316, 597, 558, 215, 368, 134, 637, 99,
- 400, 369, 14, 475, 236, 401, 215, 676, 61, 14,
- 110, 111, 215, 349, 63, 48, 99, 650, 99, 353,
- 653, 277, 655, 102, 109, 142, 58, -162, 322, 65,
- 663, 466, 467, -162, 613, 59, 60, 58, 110, 111,
- 329, 5, 331, 7, 188, 136, 183, 445, 199, 9,
- 10, 11, 203, 138, 434, 435, 110, 111, 436, 343,
- 242, 511, 687, 105, 148, 13, 149, 106, 621, 340,
- 325, 25, 327, 149, -162, 468, 469, 470, -162, 177,
- 473, 474, 578, 119, 418, 131, 119, 119, 356, 237,
- 58, 685, 204, 220, 481, 491, 686, 221, 496, 41,
- 114, 179, 189, 99, 228, 487, 194, 384, 106, 384,
- 409, 413, 514, 366, -269, -269, 223, 367, 187, -19,
- -19, -19, -19, 52, 58, 231, 14, -19, -19, -19,
- 463, 239, 109, 363, 364, -162, 488, 375, 246, 280,
- 489, -162, 109, -19, 183, -162, 115, 25, 242, 481,
- 183, -162, 464, 518, 523, 116, 210, 221, 471, -105,
- -105, -105, -105, 54, 53, -105, 519, -105, -105, -105,
- 106, 5, 55, 7, 56, 446, 33, 34, 376, 9,
- 10, 11, -162, -105, 247, 465, -162, 633, 14, 565,
- 472, 221, -162, 408, 412, 13, -162, -19, 349, 353,
- 635, 507, 110, 111, 106, 349, 353, 438, 180, 248,
- 420, 422, 477, 546, 384, 59, 60, 181, 182, 200,
- 131, 226, 227, 451, 446, 452, 497, 251, 406, 411,
- 486, 252, 25, 429, 598, 104, 431, -105, 315, -82,
- 546, 423, 292, 253, 421, 168, 169, 170, 256, 257,
- 612, 109, 478, 262, 263, 264, 265, 266, 267, 268,
- 269, 270, 271, 272, 273, 41, 500, 70, 517, 198,
- 411, 306, 41, 114, 648, 131, 649, 307, 210, 25,
- 313, -325, -325, -325, -325, 119, 326, 46, 332, -325,
- -325, -325, 14, 336, 199, 203, 226, 227, 119, 14,
- 542, 199, 203, 333, 524, -325, 338, 485, 241, 198,
- 59, 60, 410, 58, 541, 110, 111, 341, 58, 115,
- 344, 405, 182, 681, 286, 287, 342, 542, 116, 406,
- 406, 689, 14, 142, 348, 546, 411, 411, 577, 41,
- 225, 541, 41, 403, -267, -267, 198, 347, 544, 307,
- 490, 555, 180, 579, 345, 346, 352, 545, 379, -101,
- 357, 181, 182, 362, 25, 365, 14, 392, 599, 14,
- 52, 602, 605, 178, 380, 669, 670, 616, 386, 609,
- 585, 587, 615, 286, 287, 397, 410, 41, 114, 404,
- 387, 198, 41, 403, 622, 405, 182, 390, 405, 182,
- 350, 625, 466, 467, 544, 151, 153, 555, 512, 513,
- 54, 53, 632, 545, 14, 399, 215, 618, 215, 14,
- 25, 5, 542, 7, 188, 402, 388, 417, 419, 9,
- 10, 11, 437, 432, 115, -304, 541, 495, 398, 404,
- -31, 503, 504, 116, 602, 13, 505, 14, 405, 182,
- 119, 294, 46, 295, 5, 6, 7, 8, 525, 563,
- 296, 564, 9, 10, 11, -32, 672, 180, 567, 41,
- 570, 427, 602, 198, 571, 573, 181, 182, 13, 580,
- 14, 210, 574, -114, -114, -114, -114, -114, -114, -114,
- 455, -114, -114, -114, -114, -114, 14, -114, -114, -114,
- -114, -114, -114, -114, -114, -114, -114, -114, -114, -114,
- -114, -114, 575, -114, -114, 582, 42, 583, 584, 588,
- -114, 596, 600, -114, 427, 43, -385, 611, -114, -114,
- -114, 608, 610, 624, -114, -114, 480, 127, 128, -114,
- 126, 127, 128, 9, 10, 11, 501, 9, 10, 11,
- 59, 60, 191, 192, 193, 455, 510, -114, -114, -114,
- -114, 143, -114, 68, 5, 14, 7, 96, 69, 70,
- 626, 71, 9, 10, 11, 628, 455, 629, 640, 521,
- 171, 172, 631, 173, 174, 175, 176, 641, 13, 72,
- 651, 15, 656, 73, 74, 660, 455, 664, 665, 455,
- 75, 455, 627, 76, 668, 127, 128, 674, 77, 78,
- 79, 9, 10, 11, 80, 81, 566, 677, 232, 82,
- 680, 5, 683, 7, 96, 688, 691, 572, 692, 9,
- 10, 11, 164, 165, 166, 167, 168, 169, 170, 83,
- 84, 603, -91, 311, 492, 13, 594, 360, 15, 125,
- 595, 479, 358, 455, 440, 483, -325, -325, -325, -325,
- -325, -325, -325, 289, -325, -325, -325, -325, -325, 560,
- -325, -325, -325, -325, -325, -325, -325, -325, -325, -325,
- -325, -325, -325, -325, -325, 391, -325, -325, 328, 5,
- 6, 7, 8, -325, 233, -261, -325, 9, 10, 11,
- 630, -325, -325, -325, 385, 508, 484, -325, -325, 335,
- 493, 294, -325, 13, 5, 6, 7, 8, 389, 448,
- 296, 638, 9, 10, 11, 166, 167, 168, 169, 170,
- -325, 673, -325, -325, 210, -325, -325, -325, 13, 498,
- 14, -325, -325, 639, -325, 675, 354, 0, -325, 416,
- -325, -325, -325, -325, -325, -325, -325, -325, -325, -325,
- -325, 0, -325, 0, -325, 0, -325, -325, 0, 0,
- 0, 0, 0, -325, 171, 172, -325, 173, 174, 175,
- 176, -325, -325, -325, 0, 0, -385, -325, -325, 0,
- 0, 0, -325, 232, 0, 0, 5, 0, 7, 96,
- 0, 0, 0, 0, 9, 10, 11, 0, 0, 0,
- -325, -300, -325, -325, 589, -325, -325, -325, 0, 0,
- 13, -325, -325, 15, -325, 0, 0, 0, -325, 0,
- -325, -325, -325, -325, -325, -325, -325, -325, -325, -325,
- -325, 0, -325, 0, -325, 0, -325, -325, 0, 5,
- 6, 7, 8, -325, 0, 415, -325, 9, 10, 11,
- 0, -325, -325, -325, 0, 0, 0, -325, -325, 0,
- 0, 0, -325, 13, 0, 14, 0, 0, 0, 5,
- 6, 7, 8, 0, 0, 0, 0, 9, 10, 11,
- -325, 0, -325, -325, 619, -325, -335, -335, 0, 0,
- 0, -335, -335, 13, -335, 14, 0, 0, -335, 0,
- -335, -335, -335, -335, -335, -335, -335, -335, -335, -335,
- -335, 0, -335, 0, -335, 0, -335, -335, 0, 0,
- 0, 0, 0, -335, 0, 0, -335, 0, 0, 0,
- 0, -335, -335, -335, 0, 0, 0, -335, -335, 0,
- 0, 449, -335, 450, 60, 0, 0, 0, 69, 70,
- 0, 71, 163, 164, 165, 166, 167, 168, 169, 170,
- -335, 0, -335, -335, 0, -335, 0, 0, 0, 72,
- 0, 15, 0, 73, 74, 0, 0, 0, 0, 0,
- 75, 0, 0, 76, 0, 0, 0, 0, 77, 78,
- 79, 0, 0, 0, 80, 81, 0, 0, 451, 82,
- 452, 449, 0, 450, 60, 0, 0, 0, 69, 70,
- 0, 71, 0, 0, 0, 0, 0, 0, -190, 83,
- 84, 0, 453, 0, 0, 0, 0, 0, 0, 72,
- 0, 15, 0, 73, 74, 0, 0, 0, 0, 0,
- 75, 0, 0, 76, 0, 0, 0, 0, 77, 78,
- 79, 0, 0, 0, 80, 81, 0, 0, 451, 82,
- 452, 449, 0, 68, 0, 0, 0, 0, 69, 70,
- 0, 71, 0, 0, 0, 0, 0, 0, -258, 83,
- 84, 0, 453, 0, 0, 0, 0, 0, 0, 72,
- 0, 15, 0, 73, 74, 0, -203, 0, 0, 0,
- 75, 0, 0, 76, 0, 0, 0, 0, 77, 78,
- 79, 0, 0, 0, 80, 81, 0, 0, -203, 82,
- -203, 425, 0, 68, 0, 0, 0, 0, 69, 70,
- 0, 71, 0, 0, 0, 0, 0, 0, 0, 83,
- 84, 0, 453, 0, 0, 0, 0, 0, 0, 72,
- 0, 15, 0, 73, 74, 0, 0, 0, 0, 0,
- 75, 0, 0, 76, 0, 0, 0, 0, 77, 78,
- 79, 0, 0, 0, 80, 81, 449, 0, 68, 82,
- 0, 0, 0, 69, 70, 108, 71, 0, -27, -27,
- -27, -27, 0, 0, 0, 0, -27, -27, -27, 83,
- 84, 0, 426, 0, 72, 0, 15, 0, 73, 74,
- 0, 109, -27, 0, -162, 75, 0, 0, 76, 0,
- -162, 0, 0, 77, 78, 79, 0, 0, 0, 80,
- 81, 0, 0, 0, 82, 0, 0, 0, 0, 0,
- 0, 0, 0, 110, 111, 0, 0, 229, 0, 0,
- -23, -23, -23, -23, 83, 84, 0, 453, -23, -23,
- -23, -162, 68, 0, 0, -162, -27, 69, 70, 0,
- 71, 0, 0, 109, -23, 0, -162, 0, 0, 0,
- 0, 0, -162, 0, 0, 0, 0, 0, 72, 68,
- 15, 0, 73, 74, 69, 70, 0, 71, 0, 75,
- 0, 0, 76, 0, 0, 110, 111, 77, 78, 207,
- 0, 0, 0, 80, 81, 72, 0, 15, 82, 73,
- 74, 0, 0, -162, 0, 0, 75, -162, -23, 76,
- 0, 0, 0, 0, 77, 78, 79, 0, 83, 84,
- 80, 81, 208, 0, 68, 82, 0, 0, 0, 69,
- 70, 0, 71, 159, 160, 161, 162, 163, 164, 165,
- 166, 167, 168, 169, 170, 83, 84, 0, 0, 283,
- 72, 68, 15, 0, 73, 74, 69, 70, 0, 71,
- 0, 75, 0, 0, 76, 0, 0, 0, 0, 77,
- 78, 79, 0, 0, 0, 80, 81, 72, 0, 15,
- 82, 73, 74, 0, 0, 0, 0, 0, 75, 0,
- 0, 76, 0, 0, 0, 0, 77, 78, 79, 0,
- 83, 84, 80, 81, 305, 0, 68, 82, 0, 0,
- 0, 69, 70, 0, 71, 160, 161, 162, 163, 164,
- 165, 166, 167, 168, 169, 170, 0, 83, 84, 0,
- 0, 321, 72, 68, 15, 0, 73, 74, 69, 70,
- 0, 71, 0, 75, 0, 0, 76, 0, 0, 0,
- 0, 77, 78, 79, 0, 0, 0, 80, 81, 72,
- 0, 15, 82, 73, 74, 0, 0, 0, 0, 0,
- 75, 0, 0, 76, 0, 0, 0, 0, 77, 78,
- 515, 0, 83, 84, 80, 81, 355, 0, 68, 82,
- 0, 0, 0, 69, 70, 0, 71, 161, 162, 163,
- 164, 165, 166, 167, 168, 169, 170, 0, 0, 83,
- 84, 0, 0, 516, 72, 0, 15, 0, 73, 74,
- 606, 0, 0, 0, 0, 75, 0, 0, 76, 0,
- 0, 0, 0, 77, 78, 79, 0, 0, 0, 80,
- 81, 0, 0, 0, 82, 154, 155, 156, 607, 157,
- 158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
- 168, 169, 170, 0, 83, 84, 0, 0, 562, 450,
- 527, 6, 7, 8, 69, 70, 0, 71, 9, 10,
- 11, 528, 0, 529, 530, 531, 532, 533, 534, 535,
- 536, 537, 538, 539, 13, 72, 14, 15, 0, 73,
- 74, 0, 0, 0, 0, 0, 75, 0, 0, 76,
- 0, 0, 0, 0, 77, 78, 79, 14, 0, 0,
- 80, 81, 154, 155, 156, 82, 157, 158, 159, 160,
- 161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
- 0, 0, 0, 540, 0, 83, 84, 0, 248, 450,
- 60, 0, 0, 0, 69, 70, 0, 71, 0, 0,
- 0, 528, 0, 529, 530, 531, 532, 533, 534, 535,
- 536, 537, 538, 539, 0, 72, 0, 15, 0, 73,
- 74, 0, 0, 0, 0, 0, 75, 0, 0, 76,
- 0, 0, 0, 0, 77, 78, 79, 0, 0, 0,
- 80, 81, 0, 68, 0, 82, 0, 0, 69, 70,
- 0, 71, 162, 163, 164, 165, 166, 167, 168, 169,
- 170, 0, 0, 540, 0, 83, 84, 0, 248, 72,
- 0, 15, 0, 73, 74, 0, 0, 0, 0, 0,
- 75, 0, 0, 76, 0, 0, 0, 0, 77, 78,
- 79, 0, 0, 0, 80, 81, 0, 0, 0, 82,
- 68, 5, 6, 7, 8, 69, 70, 0, 71, 9,
- 10, 11, 0, 0, 0, 0, 0, 0, 0, 83,
- 84, 0, 339, 0, 0, 13, 72, 14, 15, 0,
- 73, 74, 0, 0, 0, 0, 0, 75, 0, 0,
- 76, 0, 0, 0, 0, 77, 78, 79, 0, 0,
- 0, 80, 81, 0, 68, 5, 82, 7, 96, 69,
- 70, 0, 71, 9, 10, 11, 0, 68, 0, 0,
- 0, 0, 69, 70, 0, 71, 83, 84, 0, 13,
- 72, 0, 15, 0, 73, 74, 0, 0, 0, 0,
- 0, 75, 0, 72, 76, 15, 0, 73, 74, 77,
- 78, 79, 0, 0, 75, 80, 81, 76, 0, 0,
- 82, 0, 77, 78, 79, 0, 0, 0, 80, 81,
- 68, 0, 0, 82, 0, 69, 70, 0, 71, 0,
- 83, 84, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 576, 0, 83, 84, 0, 72, 68, 15, 0,
- 73, 74, 69, 70, 0, 71, 0, 75, 0, 0,
- 76, 0, 0, 0, 0, 77, 78, 79, 0, 0,
- 0, 80, 81, 72, 68, 15, 82, 73, 74, 69,
- 70, 0, 71, 0, 75, 0, 0, 76, 0, 0,
- 0, 0, 77, 78, 79, 0, 83, 84, 80, 81,
- 72, 359, 15, 150, 73, 74, 69, 70, 0, 71,
- 0, 75, 0, 0, 76, 0, 0, 0, 0, 77,
- 78, 79, 0, 83, 84, 80, 81, 72, 0, 15,
- 152, 73, 74, 0, 0, 0, 0, 0, 75, 0,
- 0, 76, 0, 0, 0, 0, 77, 78, 79, 0,
- 83, 84, 80, 81, 0, 0, 4, 82, -118, 5,
- 6, 7, 8, 0, 0, 0, 0, 9, 10, 11,
- 0, 0, 0, 0, 0, 0, 0, 83, 84, 0,
- 0, 0, 12, 13, 0, 14, 15, 5, 6, 7,
- 8, 5, 6, 7, 8, 9, 10, 11, 0, 9,
- 10, 11, 0, 0, 556, -118, 0, 0, 0, 0,
- 0, 13, 0, 14, -118, 13, 0, 14, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 154,
- 155, 156, 16, 157, 158, 159, 160, 161, 162, 163,
- 164, 165, 166, 167, 168, 169, 170, 158, 159, 160,
- 161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
- 50, 0, 0, 0, 586, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 154, 155, 156, 557, 157, 158,
- 159, 160, 161, 162, 163, 164, 165, 166, 167, 168,
- 169, 170, 154, 155, 156, 645, 157, 158, 159, 160,
- 161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 154,
- 155, 156, 623, 157, 158, 159, 160, 161, 162, 163,
- 164, 165, 166, 167, 168, 169, 170, 156, 0, 157,
- 158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
- 168, 169, 170
-};
-
-static const short yycheck[] = { 38,
- 39, 51, 27, 28, 29, 120, 49, 22, 101, 204,
- 20, 2, 3, 57, 2, 3, 186, 21, 22, 145,
- 2, 3, 384, 115, 224, 63, 212, 2, 3, 420,
- 230, 282, 226, 43, 9, 10, 11, 106, 116, 1,
- 31, 51, 133, 31, 3, 20, 82, 22, 22, 31,
- 75, 73, 74, 225, 112, 461, 31, 79, 119, 231,
- 133, 38, 9, 85, 175, 39, 1, 239, 43, 30,
- 1, 30, 111, 95, 49, 181, 51, 102, 30, 10,
- 38, 125, 57, 5, 446, 7, 38, 202, 180, 3,
- 4, 50, 25, 103, 0, 3, 4, 107, 38, 76,
- 59, 507, 35, 36, 37, 3, 116, 569, 82, 0,
- 3, 4, 137, 46, 150, 59, 152, 59, 76, 289,
- 82, 54, 183, 98, 59, 76, 101, 101, 103, 76,
- 81, 106, 107, 31, 482, 497, 76, 176, 27, 643,
- 218, 116, 186, 182, 222, 133, 237, 59, 173, 174,
- 125, 82, 221, 559, 502, 213, 76, 82, 620, 133,
- 76, 81, 30, 414, 237, 81, 224, 671, 82, 30,
- 59, 60, 230, 279, 82, 77, 150, 639, 152, 285,
- 642, 292, 644, 59, 27, 207, 119, 30, 227, 82,
- 652, 59, 60, 36, 585, 3, 4, 130, 59, 60,
- 238, 4, 240, 6, 7, 82, 181, 393, 218, 12,
- 13, 14, 222, 82, 386, 387, 59, 60, 390, 258,
- 245, 76, 684, 77, 76, 28, 81, 81, 590, 251,
- 234, 206, 236, 81, 77, 407, 408, 409, 81, 9,
- 412, 413, 50, 218, 370, 289, 221, 222, 287, 237,
- 183, 76, 59, 77, 424, 441, 81, 81, 444, 3,
- 4, 76, 236, 237, 77, 437, 291, 325, 81, 327,
- 363, 364, 466, 77, 77, 78, 1, 81, 76, 4,
- 5, 6, 7, 298, 217, 78, 30, 12, 13, 14,
- 401, 78, 27, 297, 298, 30, 77, 312, 76, 405,
- 81, 36, 27, 28, 279, 30, 50, 282, 333, 479,
- 285, 36, 404, 77, 486, 59, 1, 81, 410, 4,
- 5, 6, 7, 298, 298, 10, 77, 12, 13, 14,
- 81, 4, 5, 6, 7, 393, 77, 78, 312, 12,
- 13, 14, 77, 28, 76, 406, 81, 77, 30, 521,
- 411, 81, 77, 363, 364, 28, 81, 82, 464, 465,
- 77, 36, 59, 60, 81, 471, 472, 392, 50, 82,
- 374, 375, 422, 499, 432, 3, 4, 59, 60, 76,
- 424, 59, 60, 58, 442, 60, 444, 76, 363, 364,
- 433, 77, 367, 378, 566, 405, 381, 82, 76, 38,
- 526, 375, 59, 149, 77, 50, 51, 52, 154, 155,
- 582, 27, 422, 159, 160, 161, 162, 163, 164, 165,
- 166, 167, 168, 169, 170, 3, 451, 9, 467, 7,
- 405, 83, 3, 4, 634, 479, 636, 77, 1, 414,
- 36, 4, 5, 6, 7, 420, 77, 422, 36, 12,
- 13, 14, 30, 78, 464, 465, 59, 60, 433, 30,
- 499, 471, 472, 81, 489, 28, 76, 38, 1, 7,
- 3, 4, 50, 406, 499, 59, 60, 76, 411, 50,
- 38, 59, 60, 678, 59, 60, 76, 526, 59, 464,
- 465, 686, 30, 515, 83, 621, 471, 472, 537, 3,
- 615, 526, 3, 4, 77, 78, 7, 76, 499, 77,
- 78, 499, 50, 538, 260, 261, 83, 499, 36, 82,
- 76, 59, 60, 76, 499, 76, 30, 32, 567, 30,
- 545, 570, 571, 555, 83, 661, 662, 587, 78, 578,
- 544, 545, 585, 59, 60, 38, 50, 3, 4, 50,
- 78, 7, 3, 4, 593, 59, 60, 78, 59, 60,
- 76, 600, 59, 60, 555, 89, 90, 555, 464, 465,
- 545, 545, 611, 555, 30, 83, 634, 587, 636, 30,
- 555, 4, 621, 6, 7, 76, 332, 3, 77, 12,
- 13, 14, 78, 81, 50, 78, 621, 78, 344, 50,
- 38, 38, 78, 59, 643, 28, 81, 30, 59, 60,
- 585, 1, 587, 3, 4, 5, 6, 7, 78, 83,
- 10, 78, 12, 13, 14, 38, 665, 50, 59, 3,
- 59, 377, 671, 7, 59, 38, 59, 60, 28, 7,
- 30, 1, 77, 3, 4, 5, 6, 7, 8, 9,
- 396, 11, 12, 13, 14, 15, 30, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 30, 31, 77, 33, 34, 38, 50, 77, 77, 16,
- 40, 78, 59, 43, 430, 59, 76, 59, 48, 49,
- 50, 77, 77, 76, 54, 55, 5, 6, 7, 59,
- 5, 6, 7, 12, 13, 14, 452, 12, 13, 14,
- 3, 4, 5, 6, 7, 461, 462, 77, 78, 79,
- 80, 1, 82, 3, 4, 30, 6, 7, 8, 9,
- 17, 11, 12, 13, 14, 77, 482, 76, 76, 485,
- 54, 55, 77, 57, 58, 59, 60, 76, 28, 29,
- 77, 31, 9, 33, 34, 77, 502, 77, 59, 505,
- 40, 507, 76, 43, 81, 6, 7, 77, 48, 49,
- 50, 12, 13, 14, 54, 55, 522, 76, 1, 59,
- 76, 4, 77, 6, 7, 77, 0, 533, 0, 12,
- 13, 14, 46, 47, 48, 49, 50, 51, 52, 79,
- 80, 570, 82, 213, 442, 28, 555, 292, 31, 53,
- 556, 423, 291, 559, 1, 430, 3, 4, 5, 6,
- 7, 8, 9, 189, 11, 12, 13, 14, 15, 505,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 28, 29, 30, 31, 335, 33, 34, 237, 4,
- 5, 6, 7, 40, 77, 78, 43, 12, 13, 14,
- 606, 48, 49, 50, 327, 460, 432, 54, 55, 245,
- 442, 1, 59, 28, 4, 5, 6, 7, 333, 394,
- 10, 621, 12, 13, 14, 48, 49, 50, 51, 52,
- 77, 666, 79, 80, 1, 82, 3, 4, 28, 444,
- 30, 8, 9, 621, 11, 668, 286, -1, 15, 367,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, -1, 29, -1, 31, -1, 33, 34, -1, -1,
- -1, -1, -1, 40, 54, 55, 43, 57, 58, 59,
- 60, 48, 49, 50, -1, -1, 76, 54, 55, -1,
- -1, -1, 59, 1, -1, -1, 4, -1, 6, 7,
- -1, -1, -1, -1, 12, 13, 14, -1, -1, -1,
- 77, 78, 79, 80, 1, 82, 3, 4, -1, -1,
- 28, 8, 9, 31, 11, -1, -1, -1, 15, -1,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, -1, 29, -1, 31, -1, 33, 34, -1, 4,
- 5, 6, 7, 40, -1, 10, 43, 12, 13, 14,
- -1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
- -1, -1, 59, 28, -1, 30, -1, -1, -1, 4,
- 5, 6, 7, -1, -1, -1, -1, 12, 13, 14,
- 77, -1, 79, 80, 1, 82, 3, 4, -1, -1,
- -1, 8, 9, 28, 11, 30, -1, -1, 15, -1,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, -1, 29, -1, 31, -1, 33, 34, -1, -1,
- -1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
- -1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
- -1, 1, 59, 3, 4, -1, -1, -1, 8, 9,
- -1, 11, 45, 46, 47, 48, 49, 50, 51, 52,
- 77, -1, 79, 80, -1, 82, -1, -1, -1, 29,
- -1, 31, -1, 33, 34, -1, -1, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, -1, -1, 54, 55, -1, -1, 58, 59,
- 60, 1, -1, 3, 4, -1, -1, -1, 8, 9,
- -1, 11, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, 82, -1, -1, -1, -1, -1, -1, 29,
- -1, 31, -1, 33, 34, -1, -1, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, -1, -1, 54, 55, -1, -1, 58, 59,
- 60, 1, -1, 3, -1, -1, -1, -1, 8, 9,
- -1, 11, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, 82, -1, -1, -1, -1, -1, -1, 29,
- -1, 31, -1, 33, 34, -1, 36, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, -1, -1, 54, 55, -1, -1, 58, 59,
- 60, 1, -1, 3, -1, -1, -1, -1, 8, 9,
- -1, 11, -1, -1, -1, -1, -1, -1, -1, 79,
- 80, -1, 82, -1, -1, -1, -1, -1, -1, 29,
- -1, 31, -1, 33, 34, -1, -1, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, -1, -1, 54, 55, 1, -1, 3, 59,
- -1, -1, -1, 8, 9, 1, 11, -1, 4, 5,
- 6, 7, -1, -1, -1, -1, 12, 13, 14, 79,
- 80, -1, 82, -1, 29, -1, 31, -1, 33, 34,
- -1, 27, 28, -1, 30, 40, -1, -1, 43, -1,
- 36, -1, -1, 48, 49, 50, -1, -1, -1, 54,
- 55, -1, -1, -1, 59, -1, -1, -1, -1, -1,
- -1, -1, -1, 59, 60, -1, -1, 1, -1, -1,
- 4, 5, 6, 7, 79, 80, -1, 82, 12, 13,
- 14, 77, 3, -1, -1, 81, 82, 8, 9, -1,
- 11, -1, -1, 27, 28, -1, 30, -1, -1, -1,
- -1, -1, 36, -1, -1, -1, -1, -1, 29, 3,
- 31, -1, 33, 34, 8, 9, -1, 11, -1, 40,
- -1, -1, 43, -1, -1, 59, 60, 48, 49, 50,
- -1, -1, -1, 54, 55, 29, -1, 31, 59, 33,
- 34, -1, -1, 77, -1, -1, 40, 81, 82, 43,
- -1, -1, -1, -1, 48, 49, 50, -1, 79, 80,
- 54, 55, 83, -1, 3, 59, -1, -1, -1, 8,
- 9, -1, 11, 41, 42, 43, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 79, 80, -1, -1, 83,
- 29, 3, 31, -1, 33, 34, 8, 9, -1, 11,
- -1, 40, -1, -1, 43, -1, -1, -1, -1, 48,
- 49, 50, -1, -1, -1, 54, 55, 29, -1, 31,
- 59, 33, 34, -1, -1, -1, -1, -1, 40, -1,
- -1, 43, -1, -1, -1, -1, 48, 49, 50, -1,
- 79, 80, 54, 55, 83, -1, 3, 59, -1, -1,
- -1, 8, 9, -1, 11, 42, 43, 44, 45, 46,
- 47, 48, 49, 50, 51, 52, -1, 79, 80, -1,
- -1, 83, 29, 3, 31, -1, 33, 34, 8, 9,
- -1, 11, -1, 40, -1, -1, 43, -1, -1, -1,
- -1, 48, 49, 50, -1, -1, -1, 54, 55, 29,
- -1, 31, 59, 33, 34, -1, -1, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, 79, 80, 54, 55, 83, -1, 3, 59,
- -1, -1, -1, 8, 9, -1, 11, 43, 44, 45,
- 46, 47, 48, 49, 50, 51, 52, -1, -1, 79,
- 80, -1, -1, 83, 29, -1, 31, -1, 33, 34,
- 10, -1, -1, -1, -1, 40, -1, -1, 43, -1,
- -1, -1, -1, 48, 49, 50, -1, -1, -1, 54,
- 55, -1, -1, -1, 59, 35, 36, 37, 38, 39,
- 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
- 50, 51, 52, -1, 79, 80, -1, -1, 83, 3,
- 4, 5, 6, 7, 8, 9, -1, 11, 12, 13,
- 14, 15, -1, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, 30, 31, -1, 33,
- 34, -1, -1, -1, -1, -1, 40, -1, -1, 43,
- -1, -1, -1, -1, 48, 49, 50, 30, -1, -1,
- 54, 55, 35, 36, 37, 59, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
- -1, -1, -1, 77, -1, 79, 80, -1, 82, 3,
- 4, -1, -1, -1, 8, 9, -1, 11, -1, -1,
- -1, 15, -1, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, -1, 29, -1, 31, -1, 33,
- 34, -1, -1, -1, -1, -1, 40, -1, -1, 43,
- -1, -1, -1, -1, 48, 49, 50, -1, -1, -1,
- 54, 55, -1, 3, -1, 59, -1, -1, 8, 9,
- -1, 11, 44, 45, 46, 47, 48, 49, 50, 51,
- 52, -1, -1, 77, -1, 79, 80, -1, 82, 29,
- -1, 31, -1, 33, 34, -1, -1, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, -1, -1, 54, 55, -1, -1, -1, 59,
- 3, 4, 5, 6, 7, 8, 9, -1, 11, 12,
- 13, 14, -1, -1, -1, -1, -1, -1, -1, 79,
- 80, -1, 82, -1, -1, 28, 29, 30, 31, -1,
- 33, 34, -1, -1, -1, -1, -1, 40, -1, -1,
- 43, -1, -1, -1, -1, 48, 49, 50, -1, -1,
- -1, 54, 55, -1, 3, 4, 59, 6, 7, 8,
- 9, -1, 11, 12, 13, 14, -1, 3, -1, -1,
- -1, -1, 8, 9, -1, 11, 79, 80, -1, 28,
- 29, -1, 31, -1, 33, 34, -1, -1, -1, -1,
- -1, 40, -1, 29, 43, 31, -1, 33, 34, 48,
- 49, 50, -1, -1, 40, 54, 55, 43, -1, -1,
- 59, -1, 48, 49, 50, -1, -1, -1, 54, 55,
- 3, -1, -1, 59, -1, 8, 9, -1, 11, -1,
- 79, 80, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 77, -1, 79, 80, -1, 29, 3, 31, -1,
- 33, 34, 8, 9, -1, 11, -1, 40, -1, -1,
- 43, -1, -1, -1, -1, 48, 49, 50, -1, -1,
- -1, 54, 55, 29, 3, 31, 59, 33, 34, 8,
- 9, -1, 11, -1, 40, -1, -1, 43, -1, -1,
- -1, -1, 48, 49, 50, -1, 79, 80, 54, 55,
- 29, 3, 31, 59, 33, 34, 8, 9, -1, 11,
- -1, 40, -1, -1, 43, -1, -1, -1, -1, 48,
- 49, 50, -1, 79, 80, 54, 55, 29, -1, 31,
- 59, 33, 34, -1, -1, -1, -1, -1, 40, -1,
- -1, 43, -1, -1, -1, -1, 48, 49, 50, -1,
- 79, 80, 54, 55, -1, -1, 1, 59, 3, 4,
- 5, 6, 7, -1, -1, -1, -1, 12, 13, 14,
- -1, -1, -1, -1, -1, -1, -1, 79, 80, -1,
- -1, -1, 27, 28, -1, 30, 31, 4, 5, 6,
- 7, 4, 5, 6, 7, 12, 13, 14, -1, 12,
- 13, 14, -1, -1, 10, 50, -1, -1, -1, -1,
- -1, 28, -1, 30, 59, 28, -1, 30, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 35,
- 36, 37, 77, 39, 40, 41, 42, 43, 44, 45,
- 46, 47, 48, 49, 50, 51, 52, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
- 77, -1, -1, -1, 77, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 35, 36, 37, 83, 39, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- 51, 52, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 35,
- 36, 37, 83, 39, 40, 41, 42, 43, 44, 45,
- 46, 47, 48, 49, 50, 51, 52, 37, -1, 39,
- 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
- 50, 51, 52
-};
-/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
-#line 3 "/usr/lib/bison.simple"
-
-/* Skeleton output parser for bison,
- Copyright (C) 1984, 1989, 1990 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* As a special exception, when this file is copied by Bison into a
- Bison output file, you may use that output file without restriction.
- This special exception was added by the Free Software Foundation
- in version 1.24 of Bison. */
-
-#ifndef alloca
-#ifdef __GNUC__
-#define alloca __builtin_alloca
-#else /* not GNU C. */
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
-#include <alloca.h>
-#else /* not sparc */
-#if defined (MSDOS) && !defined (__TURBOC__)
-#include <malloc.h>
-#else /* not MSDOS, or __TURBOC__ */
-#if defined(_AIX)
-#include <malloc.h>
- #pragma alloca
-#else /* not MSDOS, __TURBOC__, or _AIX */
-#ifdef __hpux
-#ifdef __cplusplus
-extern "C" {
-void *alloca (unsigned int);
-};
-#else /* not __cplusplus */
-void *alloca ();
-#endif /* not __cplusplus */
-#endif /* __hpux */
-#endif /* not _AIX */
-#endif /* not MSDOS, or __TURBOC__ */
-#endif /* not sparc. */
-#endif /* not GNU C. */
-#endif /* alloca not defined. */
-
-/* This is the parser code that is written into each bison parser
- when the %semantic_parser declaration is not specified in the grammar.
- It was written by Richard Stallman by simplifying the hairy parser
- used when %semantic_parser is specified. */
-
-/* Note: there must be only one dollar sign in this file.
- It is replaced by the list of actions, each action
- as one case of the switch. */
-
-#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY -2
-#define YYEOF 0
-#define YYACCEPT return(0)
-#define YYABORT return(1)
-#define YYERROR goto yyerrlab1
-/* Like YYERROR except do call yyerror.
- This remains here temporarily to ease the
- transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. */
-#define YYFAIL goto yyerrlab
-#define YYRECOVERING() (!!yyerrstatus)
-#define YYBACKUP(token, value) \
-do \
- if (yychar == YYEMPTY && yylen == 1) \
- { yychar = (token), yylval = (value); \
- yychar1 = YYTRANSLATE (yychar); \
- YYPOPSTACK; \
- goto yybackup; \
- } \
- else \
- { yyerror ("syntax error: cannot back up"); YYERROR; } \
-while (0)
-
-#define YYTERROR 1
-#define YYERRCODE 256
-
-#ifndef YYPURE
-#define YYLEX yylex()
-#endif
-
-#ifdef YYPURE
-#ifdef YYLSP_NEEDED
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval, &yylloc)
-#endif
-#else /* not YYLSP_NEEDED */
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval)
-#endif
-#endif /* not YYLSP_NEEDED */
-#endif
-
-/* If nonreentrant, generate the variables here */
-
-#ifndef YYPURE
-
-int yychar; /* the lookahead symbol */
-YYSTYPE yylval; /* the semantic value of the */
- /* lookahead symbol */
-
-#ifdef YYLSP_NEEDED
-YYLTYPE yylloc; /* location data for the lookahead */
- /* symbol */
-#endif
-
-int yynerrs; /* number of parse errors so far */
-#endif /* not YYPURE */
-
-#if YYDEBUG != 0
-int yydebug; /* nonzero means print parse trace */
-/* Since this is uninitialized, it does not stop multiple parsers
- from coexisting. */
-#endif
-
-/* YYINITDEPTH indicates the initial size of the parser's stacks */
-
-#ifndef YYINITDEPTH
-#define YYINITDEPTH 200
-#endif
-
-/* YYMAXDEPTH is the maximum size the stacks can grow to
- (effective only if the built-in stack extension method is used). */
-
-#if YYMAXDEPTH == 0
-#undef YYMAXDEPTH
-#endif
-
-#ifndef YYMAXDEPTH
-#define YYMAXDEPTH 10000
-#endif
-
-/* Prevent warning if -Wstrict-prototypes. */
-#ifdef __GNUC__
-int yyparse (void);
-#endif
-
-#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
-#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
-#else /* not GNU C or C++ */
-#ifndef __cplusplus
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (to, from, count)
- char *to;
- char *from;
- int count;
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#else /* __cplusplus */
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (char *to, char *from, int count)
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#endif
-#endif
-
-#line 196 "/usr/lib/bison.simple"
-
-/* The user can define YYPARSE_PARAM as the name of an argument to be passed
- into yyparse. The argument should have type void *.
- It should actually point to an object.
- Grammar actions can access the variable by casting it
- to the proper pointer type. */
-
-#ifdef YYPARSE_PARAM
-#ifdef __cplusplus
-#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL
-#else /* not __cplusplus */
-#define YYPARSE_PARAM_ARG YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
-#endif /* not __cplusplus */
-#else /* not YYPARSE_PARAM */
-#define YYPARSE_PARAM_ARG
-#define YYPARSE_PARAM_DECL
-#endif /* not YYPARSE_PARAM */
-
-int
-yyparse(YYPARSE_PARAM_ARG)
- YYPARSE_PARAM_DECL
-{
- register int yystate;
- register int yyn;
- register short *yyssp;
- register YYSTYPE *yyvsp;
- int yyerrstatus; /* number of tokens to shift before error messages enabled */
- int yychar1 = 0; /* lookahead token as an internal (translated) token number */
-
- short yyssa[YYINITDEPTH]; /* the state stack */
- YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
-
- short *yyss = yyssa; /* refer to the stacks thru separate pointers */
- YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
-
-#ifdef YYLSP_NEEDED
- YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
- YYLTYPE *yyls = yylsa;
- YYLTYPE *yylsp;
-
-#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
-#else
-#define YYPOPSTACK (yyvsp--, yyssp--)
-#endif
-
- int yystacksize = YYINITDEPTH;
-
-#ifdef YYPURE
- int yychar;
- YYSTYPE yylval;
- int yynerrs;
-#ifdef YYLSP_NEEDED
- YYLTYPE yylloc;
-#endif
-#endif
-
- YYSTYPE yyval; /* the variable used to return */
- /* semantic values from the action */
- /* routines */
-
- int yylen;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Starting parse\n");
-#endif
-
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
-
- /* Initialize stack pointers.
- Waste one element of value and location stack
- so that they stay on the same level as the state stack.
- The wasted elements are never initialized. */
-
- yyssp = yyss - 1;
- yyvsp = yyvs;
-#ifdef YYLSP_NEEDED
- yylsp = yyls;
-#endif
-
-/* Push a new state, which is found in yystate . */
-/* In all cases, when you get here, the value and location stacks
- have just been pushed. so pushing a state here evens the stacks. */
-yynewstate:
-
- *++yyssp = yystate;
-
- if (yyssp >= yyss + yystacksize - 1)
- {
- /* Give user a chance to reallocate the stack */
- /* Use copies of these so that the &'s don't force the real ones into memory. */
- YYSTYPE *yyvs1 = yyvs;
- short *yyss1 = yyss;
-#ifdef YYLSP_NEEDED
- YYLTYPE *yyls1 = yyls;
-#endif
-
- /* Get the current used size of the three stacks, in elements. */
- int size = yyssp - yyss + 1;
-
-#ifdef yyoverflow
- /* Each stack pointer address is followed by the size of
- the data in use in that stack, in bytes. */
-#ifdef YYLSP_NEEDED
- /* This used to be a conditional around just the two extra args,
- but that might be undefined if yyoverflow is a macro. */
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yyls1, size * sizeof (*yylsp),
- &yystacksize);
-#else
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yystacksize);
-#endif
-
- yyss = yyss1; yyvs = yyvs1;
-#ifdef YYLSP_NEEDED
- yyls = yyls1;
-#endif
-#else /* no yyoverflow */
- /* Extend the stack our own way. */
- if (yystacksize >= YYMAXDEPTH)
- {
- yyerror("parser stack overflow");
- return 2;
- }
- yystacksize *= 2;
- if (yystacksize > YYMAXDEPTH)
- yystacksize = YYMAXDEPTH;
- yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
- __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
- yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
- __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
-#ifdef YYLSP_NEEDED
- yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
- __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
-#endif
-#endif /* no yyoverflow */
-
- yyssp = yyss + size - 1;
- yyvsp = yyvs + size - 1;
-#ifdef YYLSP_NEEDED
- yylsp = yyls + size - 1;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Stack size increased to %d\n", yystacksize);
-#endif
-
- if (yyssp >= yyss + yystacksize - 1)
- YYABORT;
- }
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Entering state %d\n", yystate);
-#endif
-
- goto yybackup;
- yybackup:
-
-/* Do appropriate processing given the current state. */
-/* Read a lookahead token if we need one and don't already have one. */
-/* yyresume: */
-
- /* First try to decide what to do without reference to lookahead token. */
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* yychar is either YYEMPTY or YYEOF
- or a valid token in external form. */
-
- if (yychar == YYEMPTY)
- {
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Reading a token: ");
-#endif
- yychar = YYLEX;
- }
-
- /* Convert token to internal form (in yychar1) for indexing tables with */
-
- if (yychar <= 0) /* This means end of input. */
- {
- yychar1 = 0;
- yychar = YYEOF; /* Don't call YYLEX any more */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Now at end of input.\n");
-#endif
- }
- else
- {
- yychar1 = YYTRANSLATE(yychar);
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
- /* Give the individual parser a way to print the precise meaning
- of a token, for further debugging info. */
-#ifdef YYPRINT
- YYPRINT (stderr, yychar, yylval);
-#endif
- fprintf (stderr, ")\n");
- }
-#endif
- }
-
- yyn += yychar1;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
- goto yydefault;
-
- yyn = yytable[yyn];
-
- /* yyn is what to do for this token type in this state.
- Negative => reduce, -yyn is rule number.
- Positive => shift, yyn is new state.
- New state is final state => don't bother to shift,
- just return success.
- 0, or most negative number => error. */
-
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrlab;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- /* Shift the lookahead token. */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
-#endif
-
- /* Discard the token being shifted unless it is eof. */
- if (yychar != YYEOF)
- yychar = YYEMPTY;
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- /* count tokens shifted since error; after three, turn off error status. */
- if (yyerrstatus) yyerrstatus--;
-
- yystate = yyn;
- goto yynewstate;
-
-/* Do the default action for the current state. */
-yydefault:
-
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
-
-/* Do a reduction. yyn is the number of a rule to reduce with. */
-yyreduce:
- yylen = yyr2[yyn];
- if (yylen > 0)
- yyval = yyvsp[1-yylen]; /* implement default value of the action */
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- int i;
-
- fprintf (stderr, "Reducing via rule %d (line %d), ",
- yyn, yyrline[yyn]);
-
- /* Print the symbols being reduced, and their result. */
- for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
- fprintf (stderr, "%s ", yytname[yyrhs[i]]);
- fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
- }
-#endif
-
-
- switch (yyn) {
-
-case 1:
-#line 234 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids an empty source file");
- finish_file ();
- ;
- break;}
-case 2:
-#line 239 "c-parse.y"
-{
- /* In case there were missing closebraces,
- get us back to the global binding level. */
- while (! global_bindings_p ())
- poplevel (0, 0, 0);
- finish_file ();
- ;
- break;}
-case 3:
-#line 253 "c-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 5:
-#line 254 "c-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 9:
-#line 261 "c-parse.y"
-{ STRIP_NOPS (yyvsp[-2].ttype);
- if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
- || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
- assemble_asm (yyvsp[-2].ttype);
- else
- error ("argument of `asm' is not a constant string"); ;
- break;}
-case 10:
-#line 269 "c-parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 11:
-#line 274 "c-parse.y"
-{ if (pedantic)
- error ("ANSI C forbids data definition with no type or storage class");
- else if (!flag_traditional)
- warning ("data definition has no type or storage class");
-
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 12:
-#line 284 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 13:
-#line 289 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 14:
-#line 294 "c-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 15:
-#line 296 "c-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 18:
-#line 300 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
- break;}
-case 19:
-#line 306 "c-parse.y"
-{ if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 20:
-#line 311 "c-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 21:
-#line 313 "c-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 22:
-#line 319 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 23:
-#line 324 "c-parse.y"
-{ if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 24:
-#line 329 "c-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 25:
-#line 331 "c-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 26:
-#line 337 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 27:
-#line 342 "c-parse.y"
-{ if (! start_function (NULL_TREE, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 28:
-#line 347 "c-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 29:
-#line 349 "c-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 30:
-#line 355 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 33:
-#line 367 "c-parse.y"
-{ yyval.code = ADDR_EXPR; ;
- break;}
-case 34:
-#line 369 "c-parse.y"
-{ yyval.code = NEGATE_EXPR; ;
- break;}
-case 35:
-#line 371 "c-parse.y"
-{ yyval.code = CONVERT_EXPR; ;
- break;}
-case 36:
-#line 373 "c-parse.y"
-{ yyval.code = PREINCREMENT_EXPR; ;
- break;}
-case 37:
-#line 375 "c-parse.y"
-{ yyval.code = PREDECREMENT_EXPR; ;
- break;}
-case 38:
-#line 377 "c-parse.y"
-{ yyval.code = BIT_NOT_EXPR; ;
- break;}
-case 39:
-#line 379 "c-parse.y"
-{ yyval.code = TRUTH_NOT_EXPR; ;
- break;}
-case 40:
-#line 383 "c-parse.y"
-{ yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
- break;}
-case 41:
-#line 388 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 43:
-#line 394 "c-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 44:
-#line 396 "c-parse.y"
-{ chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 46:
-#line 402 "c-parse.y"
-{ yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
- break;}
-case 47:
-#line 405 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- pedantic = yyvsp[-1].itype; ;
- break;}
-case 48:
-#line 408 "c-parse.y"
-{ yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
- overflow_warning (yyval.ttype); ;
- break;}
-case 49:
-#line 412 "c-parse.y"
-{ tree label = lookup_label (yyvsp[0].ttype);
- if (pedantic)
- pedwarn ("ANSI C forbids `&&'");
- if (label == 0)
- yyval.ttype = null_pointer_node;
- else
- {
- TREE_USED (label) = 1;
- yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
- TREE_CONSTANT (yyval.ttype) = 1;
- }
- ;
- break;}
-case 50:
-#line 440 "c-parse.y"
-{ skip_evaluation--;
- if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
- && DECL_C_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
- error ("`sizeof' applied to a bit-field");
- yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
- break;}
-case 51:
-#line 446 "c-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 52:
-#line 449 "c-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
- break;}
-case 53:
-#line 452 "c-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 54:
-#line 455 "c-parse.y"
-{ yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
- break;}
-case 55:
-#line 457 "c-parse.y"
-{ yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
- break;}
-case 56:
-#line 461 "c-parse.y"
-{ skip_evaluation++; ;
- break;}
-case 57:
-#line 465 "c-parse.y"
-{ skip_evaluation++; ;
- break;}
-case 59:
-#line 471 "c-parse.y"
-{ tree type = groktypename (yyvsp[-2].ttype);
- yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
- break;}
-case 60:
-#line 474 "c-parse.y"
-{ start_init (NULL_TREE, NULL, 0);
- yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
- really_start_incremental_init (yyvsp[-2].ttype); ;
- break;}
-case 61:
-#line 478 "c-parse.y"
-{ char *name;
- tree result = pop_init_level (0);
- tree type = yyvsp[-5].ttype;
- finish_init ();
-
- if (pedantic && ! flag_isoc9x)
- pedwarn ("ANSI C forbids constructor expressions");
- if (TYPE_NAME (type) != 0)
- {
- if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
- name = IDENTIFIER_POINTER (TYPE_NAME (type));
- else
- name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
- }
- else
- name = "";
- yyval.ttype = result;
- if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
- {
- int failure = complete_array_type (type, yyval.ttype, 1);
- if (failure)
- abort ();
- }
- ;
- break;}
-case 63:
-#line 507 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 64:
-#line 509 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 65:
-#line 511 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 66:
-#line 513 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 67:
-#line 515 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 68:
-#line 517 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 69:
-#line 519 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 70:
-#line 521 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 71:
-#line 523 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 72:
-#line 525 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 73:
-#line 527 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 74:
-#line 529 "c-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 75:
-#line 531 "c-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
- break;}
-case 76:
-#line 534 "c-parse.y"
-{ skip_evaluation -= yyvsp[-3].ttype == boolean_false_node;
- yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 77:
-#line 537 "c-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
- break;}
-case 78:
-#line 540 "c-parse.y"
-{ skip_evaluation -= yyvsp[-3].ttype == boolean_true_node;
- yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 79:
-#line 543 "c-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
- break;}
-case 80:
-#line 546 "c-parse.y"
-{ skip_evaluation += ((yyvsp[-4].ttype == boolean_true_node)
- - (yyvsp[-4].ttype == boolean_false_node)); ;
- break;}
-case 81:
-#line 549 "c-parse.y"
-{ skip_evaluation -= yyvsp[-6].ttype == boolean_true_node;
- yyval.ttype = build_conditional_expr (yyvsp[-6].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 82:
-#line 552 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
- /* Make sure first operand is calculated only once. */
- yyvsp[0].ttype = save_expr (yyvsp[-1].ttype);
- yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[0].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
- break;}
-case 83:
-#line 559 "c-parse.y"
-{ skip_evaluation -= yyvsp[-4].ttype == boolean_true_node;
- yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 84:
-#line 562 "c-parse.y"
-{ char class;
- yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
- class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR);
- ;
- break;}
-case 85:
-#line 570 "c-parse.y"
-{ char class;
- yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
- /* This inhibits warnings in truthvalue_conversion. */
- class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK);
- ;
- break;}
-case 86:
-#line 582 "c-parse.y"
-{
- yyval.ttype = lastiddecl;
- if (!yyval.ttype || yyval.ttype == error_mark_node)
- {
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- {
- /* Ordinary implicit function declaration. */
- yyval.ttype = implicitly_declare (yyvsp[0].ttype);
- assemble_external (yyval.ttype);
- TREE_USED (yyval.ttype) = 1;
- }
- }
- else if (current_function_decl == 0)
- {
- error ("`%s' undeclared here (not in a function)",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = error_mark_node;
- }
- else
- {
- {
- if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
- || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
- {
- error ("`%s' undeclared (first use in this function)",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
-
- if (! undeclared_variable_notice)
- {
- error ("(Each undeclared identifier is reported only once");
- error ("for each function it appears in.)");
- undeclared_variable_notice = 1;
- }
- }
- yyval.ttype = error_mark_node;
- /* Prevent repeated error messages. */
- IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
- IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
- }
- }
- }
- else if (TREE_TYPE (yyval.ttype) == error_mark_node)
- yyval.ttype = error_mark_node;
- else if (C_DECL_ANTICIPATED (yyval.ttype))
- {
- /* The first time we see a build-in function used,
- if it has not been declared. */
- C_DECL_ANTICIPATED (yyval.ttype) = 0;
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- /* Omit the implicit declaration we
- would ordinarily do, so we don't lose
- the actual built in type.
- But print a diagnostic for the mismatch. */
- if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
- error ("`%s' implicitly declared as function",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
- else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
- != TYPE_MODE (integer_type_node))
- && (TREE_TYPE (TREE_TYPE (yyval.ttype))
- != void_type_node))
- pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
- /* If it really returns void, change that to int. */
- if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
- TREE_TYPE (yyval.ttype)
- = build_function_type (integer_type_node,
- TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
- }
- else
- pedwarn ("built-in function `%s' used without declaration",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
-
- /* Do what we would ordinarily do when a fn is used. */
- assemble_external (yyval.ttype);
- TREE_USED (yyval.ttype) = 1;
- }
- else
- {
- assemble_external (yyval.ttype);
- TREE_USED (yyval.ttype) = 1;
- }
-
- if (TREE_CODE (yyval.ttype) == CONST_DECL)
- {
- yyval.ttype = DECL_INITIAL (yyval.ttype);
- /* This is to prevent an enum whose value is 0
- from being considered a null pointer constant. */
- yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
- TREE_CONSTANT (yyval.ttype) = 1;
- }
- ;
- break;}
-case 88:
-#line 681 "c-parse.y"
-{ yyval.ttype = combine_strings (yyvsp[0].ttype); ;
- break;}
-case 89:
-#line 683 "c-parse.y"
-{ char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
- yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 90:
-#line 689 "c-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 91:
-#line 691 "c-parse.y"
-{ if (current_function_decl == 0)
- {
- error ("braced-group within expression allowed only inside a function");
- YYERROR;
- }
- /* We must force a BLOCK for this level
- so that, if it is not expanded later,
- there is a way to turn off the entire subtree of blocks
- that are contained in it. */
- keep_next_level ();
- push_iterator_stack ();
- push_label_level ();
- yyval.ttype = expand_start_stmt_expr (); ;
- break;}
-case 92:
-#line 705 "c-parse.y"
-{ tree rtl_exp;
- if (pedantic)
- pedwarn ("ANSI C forbids braced-groups within expressions");
- pop_iterator_stack ();
- pop_label_level ();
- rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
- /* The statements have side effects, so the group does. */
- TREE_SIDE_EFFECTS (rtl_exp) = 1;
-
- if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
- {
- /* Make a BIND_EXPR for the BLOCK already made. */
- yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
- NULL_TREE, rtl_exp, yyvsp[-1].ttype);
- /* Remove the block from the tree at this point.
- It gets put back at the proper place
- when the BIND_EXPR is expanded. */
- delete_block (yyvsp[-1].ttype);
- }
- else
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 93:
-#line 728 "c-parse.y"
-{ yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 94:
-#line 730 "c-parse.y"
-{ yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 95:
-#line 732 "c-parse.y"
-{
- yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 96:
-#line 736 "c-parse.y"
-{
- tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
-
- yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
- ;
- break;}
-case 97:
-#line 742 "c-parse.y"
-{ yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
- break;}
-case 98:
-#line 744 "c-parse.y"
-{ yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
- break;}
-case 100:
-#line 751 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 103:
-#line 760 "c-parse.y"
-{ c_mark_varargs ();
- if (pedantic)
- pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
- break;}
-case 104:
-#line 770 "c-parse.y"
-{ ;
- break;}
-case 109:
-#line 786 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 110:
-#line 791 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 111:
-#line 796 "c-parse.y"
-{ shadow_tag_warned (yyvsp[-1].ttype, 1);
- pedwarn ("empty declaration"); ;
- break;}
-case 112:
-#line 799 "c-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 113:
-#line 808 "c-parse.y"
-{ ;
- break;}
-case 118:
-#line 823 "c-parse.y"
-{ yyval.itype = suspend_momentary ();
- pending_xref_error ();
- declspec_stack = tree_cons (prefix_attributes,
- current_declspecs,
- declspec_stack);
- split_specs_attrs (yyvsp[0].ttype,
- &current_declspecs, &prefix_attributes); ;
- break;}
-case 119:
-#line 834 "c-parse.y"
-{ prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
- break;}
-case 120:
-#line 839 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 121:
-#line 844 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 122:
-#line 849 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 123:
-#line 854 "c-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 124:
-#line 859 "c-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 125:
-#line 861 "c-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 126:
-#line 863 "c-parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 127:
-#line 873 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 128:
-#line 875 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 129:
-#line 879 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 130:
-#line 881 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 131:
-#line 883 "c-parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 132:
-#line 888 "c-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 133:
-#line 893 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 134:
-#line 895 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 135:
-#line 900 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 136:
-#line 902 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 137:
-#line 904 "c-parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 138:
-#line 917 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 139:
-#line 919 "c-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
- break;}
-case 140:
-#line 921 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 141:
-#line 923 "c-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 142:
-#line 928 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 143:
-#line 931 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 144:
-#line 933 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 145:
-#line 936 "c-parse.y"
-{ if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
- TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
- break;}
-case 146:
-#line 950 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 147:
-#line 952 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 148:
-#line 956 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 149:
-#line 958 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 152:
-#line 968 "c-parse.y"
-{ /* For a typedef name, record the meaning, not the name.
- In case of `foo foo, bar;'. */
- yyval.ttype = lookup_name (yyvsp[0].ttype); ;
- break;}
-case 153:
-#line 972 "c-parse.y"
-{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
- break;}
-case 154:
-#line 974 "c-parse.y"
-{ yyval.ttype = groktypename (yyvsp[-1].ttype); ;
- break;}
-case 162:
-#line 996 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 163:
-#line 998 "c-parse.y"
-{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 164:
-#line 1005 "c-parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes);
- start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
- break;}
-case 165:
-#line 1010 "c-parse.y"
-{ finish_init ();
- finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 166:
-#line 1013 "c-parse.y"
-{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- finish_decl (d, NULL_TREE, yyvsp[-1].ttype);
- ;
- break;}
-case 167:
-#line 1021 "c-parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes);
- start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
- break;}
-case 168:
-#line 1026 "c-parse.y"
-{ finish_init ();
- decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype, prefix_attributes);
- finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 169:
-#line 1030 "c-parse.y"
-{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 170:
-#line 1038 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 171:
-#line 1040 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 172:
-#line 1045 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 173:
-#line 1047 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 174:
-#line 1052 "c-parse.y"
-{ yyval.ttype = yyvsp[-2].ttype; ;
- break;}
-case 175:
-#line 1057 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 176:
-#line 1059 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 177:
-#line 1064 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 178:
-#line 1066 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 179:
-#line 1068 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
- break;}
-case 180:
-#line 1070 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
- break;}
-case 181:
-#line 1072 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 187:
-#line 1090 "c-parse.y"
-{ really_start_incremental_init (NULL_TREE);
- /* Note that the call to clear_momentary
- is in process_init_element. */
- push_momentary (); ;
- break;}
-case 188:
-#line 1095 "c-parse.y"
-{ yyval.ttype = pop_init_level (0);
- if (yyval.ttype == error_mark_node
- && ! (yychar == STRING || yychar == CONSTANT))
- pop_momentary ();
- else
- pop_momentary_nofree (); ;
- break;}
-case 189:
-#line 1103 "c-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 190:
-#line 1109 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids empty initializer braces"); ;
- break;}
-case 196:
-#line 1125 "c-parse.y"
-{ set_init_label (yyvsp[-1].ttype); ;
- break;}
-case 199:
-#line 1132 "c-parse.y"
-{ push_init_level (0); ;
- break;}
-case 200:
-#line 1134 "c-parse.y"
-{ process_init_element (pop_init_level (0)); ;
- break;}
-case 201:
-#line 1136 "c-parse.y"
-{ process_init_element (yyvsp[0].ttype); ;
- break;}
-case 205:
-#line 1147 "c-parse.y"
-{ set_init_label (yyvsp[0].ttype); ;
- break;}
-case 206:
-#line 1152 "c-parse.y"
-{ set_init_index (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 207:
-#line 1154 "c-parse.y"
-{ set_init_index (yyvsp[-1].ttype, NULL_TREE); ;
- break;}
-case 208:
-#line 1159 "c-parse.y"
-{ push_c_function_context ();
- if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); ;
- break;}
-case 209:
-#line 1168 "c-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 210:
-#line 1176 "c-parse.y"
-{ finish_function (1);
- pop_c_function_context (); ;
- break;}
-case 211:
-#line 1182 "c-parse.y"
-{ push_c_function_context ();
- if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); ;
- break;}
-case 212:
-#line 1191 "c-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 213:
-#line 1199 "c-parse.y"
-{ finish_function (1);
- pop_c_function_context (); ;
- break;}
-case 216:
-#line 1215 "c-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 217:
-#line 1217 "c-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 218:
-#line 1222 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 219:
-#line 1224 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 220:
-#line 1226 "c-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 221:
-#line 1233 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 223:
-#line 1244 "c-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 224:
-#line 1249 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, NULL_TREE);
- if (! flag_isoc9x)
- error ("`[*]' in parameter declaration only allowed in ISO C 9x");
- ;
- break;}
-case 225:
-#line 1254 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 226:
-#line 1256 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 227:
-#line 1258 "c-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 228:
-#line 1265 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 230:
-#line 1274 "c-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 231:
-#line 1279 "c-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 232:
-#line 1281 "c-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 233:
-#line 1283 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, NULL_TREE);
- if (! flag_isoc9x)
- error ("`[*]' in parameter declaration only allowed in ISO C 9x");
- ;
- break;}
-case 234:
-#line 1288 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 235:
-#line 1290 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 236:
-#line 1297 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 238:
-#line 1303 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 239:
-#line 1305 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 240:
-#line 1310 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 241:
-#line 1312 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 242:
-#line 1317 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 243:
-#line 1319 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 244:
-#line 1324 "c-parse.y"
-{ yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
- /* Start scope of tag before parsing components. */
- ;
- break;}
-case 245:
-#line 1328 "c-parse.y"
-{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 246:
-#line 1330 "c-parse.y"
-{ yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
- yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
- ;
- break;}
-case 247:
-#line 1334 "c-parse.y"
-{ yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
- break;}
-case 248:
-#line 1336 "c-parse.y"
-{ yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
- break;}
-case 249:
-#line 1338 "c-parse.y"
-{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 250:
-#line 1340 "c-parse.y"
-{ yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
- yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
- ;
- break;}
-case 251:
-#line 1344 "c-parse.y"
-{ yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
- break;}
-case 252:
-#line 1346 "c-parse.y"
-{ yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = start_enum (yyvsp[-1].ttype); ;
- break;}
-case 253:
-#line 1349 "c-parse.y"
-{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-7].ttype, yyvsp[0].ttype));
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 254:
-#line 1352 "c-parse.y"
-{ yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = start_enum (NULL_TREE); ;
- break;}
-case 255:
-#line 1355 "c-parse.y"
-{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-6].ttype, yyvsp[0].ttype));
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 256:
-#line 1358 "c-parse.y"
-{ yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
- break;}
-case 260:
-#line 1369 "c-parse.y"
-{ if (pedantic && ! flag_isoc9x)
- pedwarn ("comma at end of enumerator list"); ;
- break;}
-case 261:
-#line 1375 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 262:
-#line 1377 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- pedwarn ("no semicolon at end of struct or union"); ;
- break;}
-case 263:
-#line 1382 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 264:
-#line 1384 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 265:
-#line 1386 "c-parse.y"
-{ if (pedantic)
- pedwarn ("extra semicolon in struct or union specified"); ;
- break;}
-case 266:
-#line 1401 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 267:
-#line 1407 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag(yyvsp[0].ttype);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 268:
-#line 1412 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 269:
-#line 1418 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag(yyvsp[0].ttype);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 270:
-#line 1423 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 271:
-#line 1425 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- pedantic = yyvsp[-1].itype; ;
- break;}
-case 273:
-#line 1432 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 274:
-#line 1437 "c-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 275:
-#line 1441 "c-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 276:
-#line 1444 "c-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 278:
-#line 1456 "c-parse.y"
-{ if (yyvsp[-2].ttype == error_mark_node)
- yyval.ttype = yyvsp[-2].ttype;
- else
- yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
- break;}
-case 279:
-#line 1461 "c-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 280:
-#line 1467 "c-parse.y"
-{ yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 281:
-#line 1469 "c-parse.y"
-{ yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 282:
-#line 1474 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 283:
-#line 1476 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 284:
-#line 1481 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 286:
-#line 1487 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 287:
-#line 1489 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 288:
-#line 1494 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 289:
-#line 1496 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 290:
-#line 1501 "c-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 291:
-#line 1504 "c-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 292:
-#line 1506 "c-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 293:
-#line 1508 "c-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 294:
-#line 1510 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 295:
-#line 1512 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 296:
-#line 1514 "c-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 297:
-#line 1516 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 298:
-#line 1518 "c-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
- break;}
-case 299:
-#line 1522 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 300:
-#line 1531 "c-parse.y"
-{
- if (pedantic && yyvsp[0].ends_in_label)
- pedwarn ("ANSI C forbids label at end of compound statement");
- ;
- break;}
-case 302:
-#line 1540 "c-parse.y"
-{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
- break;}
-case 303:
-#line 1542 "c-parse.y"
-{ yyval.ends_in_label = 0; ;
- break;}
-case 307:
-#line 1554 "c-parse.y"
-{ emit_line_note (input_filename, lineno);
- pushlevel (0);
- clear_last_expr ();
- push_momentary ();
- expand_start_bindings (0);
- ;
- break;}
-case 309:
-#line 1567 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids label declarations"); ;
- break;}
-case 312:
-#line 1578 "c-parse.y"
-{ tree link;
- for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
- {
- tree label = shadow_label (TREE_VALUE (link));
- C_DECLARED_LABEL_FLAG (label) = 1;
- declare_nonlocal_label (label);
- }
- ;
- break;}
-case 313:
-#line 1592 "c-parse.y"
-{;
- break;}
-case 315:
-#line 1596 "c-parse.y"
-{ compstmt_count++; ;
- break;}
-case 316:
-#line 1599 "c-parse.y"
-{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
- break;}
-case 317:
-#line 1601 "c-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- yyval.ttype = poplevel (1, 1, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 318:
-#line 1609 "c-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- yyval.ttype = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 319:
-#line 1617 "c-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- yyval.ttype = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 322:
-#line 1637 "c-parse.y"
-{ emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- c_expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0,
- compstmt_count);
- yyval.itype = stmt_count;
- if_stmt_file = yyvsp[-5].filename;
- if_stmt_line = yyvsp[-4].lineno;
- position_after_white_space (); ;
- break;}
-case 323:
-#line 1651 "c-parse.y"
-{ stmt_count++;
- compstmt_count++;
- emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- expand_start_loop_continue_elsewhere (1);
- position_after_white_space (); ;
- break;}
-case 324:
-#line 1659 "c-parse.y"
-{ expand_loop_continue_here (); ;
- break;}
-case 325:
-#line 1663 "c-parse.y"
-{ yyval.filename = input_filename; ;
- break;}
-case 326:
-#line 1667 "c-parse.y"
-{ yyval.lineno = lineno; ;
- break;}
-case 327:
-#line 1672 "c-parse.y"
-{ ;
- break;}
-case 328:
-#line 1677 "c-parse.y"
-{ ;
- break;}
-case 329:
-#line 1682 "c-parse.y"
-{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
- break;}
-case 330:
-#line 1687 "c-parse.y"
-{ yyval.ends_in_label = 0; ;
- break;}
-case 331:
-#line 1689 "c-parse.y"
-{ yyval.ends_in_label = 1; ;
- break;}
-case 332:
-#line 1695 "c-parse.y"
-{ stmt_count++; ;
- break;}
-case 334:
-#line 1698 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
-/* It appears that this should not be done--that a non-lvalue array
- shouldn't get an error if the value isn't used.
- Section 3.2.2.1 says that an array lvalue gets converted to a pointer
- if it appears as a top-level expression,
- but says nothing about non-lvalue arrays. */
-#if 0
- /* Call default_conversion to get an error
- on referring to a register array if pedantic. */
- if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
- || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
- yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
-#endif
- iterator_expand (yyvsp[-1].ttype);
- clear_momentary (); ;
- break;}
-case 335:
-#line 1715 "c-parse.y"
-{ c_expand_start_else ();
- yyvsp[-1].itype = stmt_count;
- position_after_white_space (); ;
- break;}
-case 336:
-#line 1719 "c-parse.y"
-{ c_expand_end_cond ();
- if (extra_warnings && stmt_count == yyvsp[-3].itype)
- warning ("empty body in an else-statement"); ;
- break;}
-case 337:
-#line 1723 "c-parse.y"
-{ c_expand_end_cond ();
- /* This warning is here instead of in simple_if, because we
- do not want a warning if an empty if is followed by an
- else statement. Increment stmt_count so we don't
- give a second error if this is a nested `if'. */
- if (extra_warnings && stmt_count++ == yyvsp[0].itype)
- warning_with_file_and_line (if_stmt_file, if_stmt_line,
- "empty body in an if-statement"); ;
- break;}
-case 338:
-#line 1735 "c-parse.y"
-{ c_expand_end_cond (); ;
- break;}
-case 339:
-#line 1737 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
- /* The emit_nop used to come before emit_line_note,
- but that made the nop seem like part of the preceding line.
- And that was confusing when the preceding line was
- inside of an if statement and was not really executed.
- I think it ought to work to put the nop after the line number.
- We will see. --rms, July 15, 1991. */
- emit_nop (); ;
- break;}
-case 340:
-#line 1747 "c-parse.y"
-{ /* Don't start the loop till we have succeeded
- in parsing the end test. This is to make sure
- that we end every loop we start. */
- expand_start_loop (1);
- emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-1].ttype));
- position_after_white_space (); ;
- break;}
-case 341:
-#line 1756 "c-parse.y"
-{ expand_end_loop (); ;
- break;}
-case 342:
-#line 1759 "c-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-2].ttype));
- expand_end_loop ();
- clear_momentary (); ;
- break;}
-case 343:
-#line 1766 "c-parse.y"
-{ expand_end_loop ();
- clear_momentary (); ;
- break;}
-case 344:
-#line 1770 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
- /* Next step is to call expand_start_loop_continue_elsewhere,
- but wait till after we parse the entire for (...).
- Otherwise, invalid input might cause us to call that
- fn without calling expand_end_loop. */
- ;
- break;}
-case 345:
-#line 1782 "c-parse.y"
-{ yyvsp[0].lineno = lineno;
- yyval.filename = input_filename; ;
- break;}
-case 346:
-#line 1785 "c-parse.y"
-{
- /* Start the loop. Doing this after parsing
- all the expressions ensures we will end the loop. */
- expand_start_loop_continue_elsewhere (1);
- /* Emit the end-test, with a line number. */
- emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
- if (yyvsp[-4].ttype)
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-4].ttype));
- /* Don't let the tree nodes for $9 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- yyvsp[-3].lineno = lineno;
- yyvsp[-2].filename = input_filename;
- position_after_white_space (); ;
- break;}
-case 347:
-#line 1801 "c-parse.y"
-{ /* Emit the increment expression, with a line number. */
- emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
- expand_loop_continue_here ();
- if (yyvsp[-3].ttype)
- c_expand_expr_stmt (yyvsp[-3].ttype);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary ();
- expand_end_loop (); ;
- break;}
-case 348:
-#line 1812 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- c_expand_start_case (yyvsp[-1].ttype);
- /* Don't let the tree nodes for $3 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- position_after_white_space (); ;
- break;}
-case 349:
-#line 1820 "c-parse.y"
-{ expand_end_case (yyvsp[-3].ttype);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 350:
-#line 1826 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
- if ( ! expand_exit_something ())
- error ("break statement not within loop or switch"); ;
- break;}
-case 351:
-#line 1831 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
- if (! expand_continue_loop (NULL_PTR))
- error ("continue statement not within a loop"); ;
- break;}
-case 352:
-#line 1836 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
- c_expand_return (NULL_TREE); ;
- break;}
-case 353:
-#line 1840 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
- c_expand_return (yyvsp[-1].ttype); ;
- break;}
-case 354:
-#line 1844 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
- STRIP_NOPS (yyvsp[-2].ttype);
- if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
- || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
- expand_asm (yyvsp[-2].ttype);
- else
- error ("argument of `asm' is not a constant string"); ;
- break;}
-case 355:
-#line 1855 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
- c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
- yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 356:
-#line 1862 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
- c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
- yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 357:
-#line 1870 "c-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
- c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
- yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 358:
-#line 1876 "c-parse.y"
-{ tree decl;
- stmt_count++;
- emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
- decl = lookup_label (yyvsp[-1].ttype);
- if (decl != 0)
- {
- TREE_USED (decl) = 1;
- expand_goto (decl);
- }
- ;
- break;}
-case 359:
-#line 1887 "c-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids `goto *expr;'");
- stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
- break;}
-case 362:
-#line 1902 "c-parse.y"
-{
- /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-
- yyval.itype = 0;
- if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
- error ("invalid `for (ITERATOR)' syntax");
- else if (! ITERATOR_P (yyvsp[-1].ttype))
- error ("`%s' is not an iterator",
- IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
- else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
- error ("`for (%s)' inside expansion of same iterator",
- IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
- else
- {
- yyval.itype = 1;
- iterator_for_loop_start (yyvsp[-1].ttype);
- }
- ;
- break;}
-case 363:
-#line 1923 "c-parse.y"
-{
- if (yyvsp[-1].itype)
- iterator_for_loop_end (yyvsp[-3].ttype);
- ;
- break;}
-case 364:
-#line 1958 "c-parse.y"
-{ register tree value = check_case_value (yyvsp[-1].ttype);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- stmt_count++;
-
- if (value != error_mark_node)
- {
- tree duplicate;
- int success;
-
- if (pedantic && ! INTEGRAL_TYPE_P (TREE_TYPE (value)))
- pedwarn ("label must have integral type in ANSI C");
-
- success = pushcase (value, convert_and_check,
- label, &duplicate);
-
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); ;
- break;}
-case 365:
-#line 1989 "c-parse.y"
-{ register tree value1 = check_case_value (yyvsp[-3].ttype);
- register tree value2 = check_case_value (yyvsp[-1].ttype);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- if (pedantic)
- pedwarn ("ANSI C forbids case ranges");
- stmt_count++;
-
- if (value1 != error_mark_node && value2 != error_mark_node)
- {
- tree duplicate;
- int success = pushcase_range (value1, value2,
- convert_and_check, label,
- &duplicate);
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 4)
- warning ("empty case range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); ;
- break;}
-case 366:
-#line 2020 "c-parse.y"
-{
- tree duplicate;
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
- int success = pushcase (NULL_TREE, 0, label, &duplicate);
- stmt_count++;
- if (success == 1)
- error ("default label not within a switch statement");
- else if (success == 2)
- {
- error ("multiple default labels in one switch");
- error_with_decl (duplicate, "this is the first default label");
- }
- position_after_white_space (); ;
- break;}
-case 367:
-#line 2035 "c-parse.y"
-{ tree label = define_label (input_filename, lineno, yyvsp[-2].ttype);
- stmt_count++;
- emit_nop ();
- if (label)
- {
- expand_label (label);
- decl_attributes (label, yyvsp[0].ttype, NULL_TREE);
- }
- position_after_white_space (); ;
- break;}
-case 368:
-#line 2050 "c-parse.y"
-{ emit_line_note (input_filename, lineno);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 369:
-#line 2053 "c-parse.y"
-{ emit_line_note (input_filename, lineno); ;
- break;}
-case 370:
-#line 2058 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 372:
-#line 2065 "c-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 375:
-#line 2072 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 376:
-#line 2077 "c-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 377:
-#line 2082 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
- break;}
-case 378:
-#line 2084 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
- break;}
-case 379:
-#line 2090 "c-parse.y"
-{ pushlevel (0);
- clear_parm_order ();
- declare_parm_level (0); ;
- break;}
-case 380:
-#line 2094 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); ;
- break;}
-case 382:
-#line 2102 "c-parse.y"
-{ tree parm;
- if (pedantic)
- pedwarn ("ANSI C forbids forward parameter declarations");
- /* Mark the forward decls as such. */
- for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
- TREE_ASM_WRITTEN (parm) = 1;
- clear_parm_order (); ;
- break;}
-case 383:
-#line 2110 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 384:
-#line 2112 "c-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
- break;}
-case 385:
-#line 2118 "c-parse.y"
-{ yyval.ttype = get_parm_info (0); ;
- break;}
-case 386:
-#line 2120 "c-parse.y"
-{ yyval.ttype = get_parm_info (0);
- /* Gcc used to allow this as an extension. However, it does
- not work for all targets, and thus has been disabled.
- Also, since func (...) and func () are indistinguishable,
- it caused problems with the code in expand_builtin which
- tries to verify that BUILT_IN_NEXT_ARG is being used
- correctly. */
- error ("ANSI C requires a named argument before `...'");
- ;
- break;}
-case 387:
-#line 2130 "c-parse.y"
-{ yyval.ttype = get_parm_info (1); ;
- break;}
-case 388:
-#line 2132 "c-parse.y"
-{ yyval.ttype = get_parm_info (0); ;
- break;}
-case 389:
-#line 2137 "c-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 390:
-#line 2139 "c-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 391:
-#line 2146 "c-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 392:
-#line 2155 "c-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 393:
-#line 2164 "c-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 394:
-#line 2173 "c-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 395:
-#line 2183 "c-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 396:
-#line 2197 "c-parse.y"
-{ pushlevel (0);
- clear_parm_order ();
- declare_parm_level (1); ;
- break;}
-case 397:
-#line 2201 "c-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); ;
- break;}
-case 399:
-#line 2209 "c-parse.y"
-{ tree t;
- for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
- if (TREE_VALUE (t) == NULL_TREE)
- error ("`...' in old-style identifier list");
- yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 400:
-#line 2219 "c-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 401:
-#line 2221 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 402:
-#line 2227 "c-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 403:
-#line 2229 "c-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 404:
-#line 2234 "c-parse.y"
-{ yyval.itype = pedantic;
- pedantic = 0; ;
- break;}
-}
- /* the action file gets copied in in place of this dollarsign */
-#line 498 "/usr/lib/bison.simple"
-
- yyvsp -= yylen;
- yyssp -= yylen;
-#ifdef YYLSP_NEEDED
- yylsp -= yylen;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
- *++yyvsp = yyval;
-
-#ifdef YYLSP_NEEDED
- yylsp++;
- if (yylen == 0)
- {
- yylsp->first_line = yylloc.first_line;
- yylsp->first_column = yylloc.first_column;
- yylsp->last_line = (yylsp-1)->last_line;
- yylsp->last_column = (yylsp-1)->last_column;
- yylsp->text = 0;
- }
- else
- {
- yylsp->last_line = (yylsp+yylen-1)->last_line;
- yylsp->last_column = (yylsp+yylen-1)->last_column;
- }
-#endif
-
- /* Now "shift" the result of the reduction.
- Determine what state that goes to,
- based on the state we popped back to
- and the rule number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
- if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTBASE];
-
- goto yynewstate;
-
-yyerrlab: /* here on detecting error */
-
- if (! yyerrstatus)
- /* If not already recovering from an error, report this error. */
- {
- ++yynerrs;
-
-#ifdef YYERROR_VERBOSE
- yyn = yypact[yystate];
-
- if (yyn > YYFLAG && yyn < YYLAST)
- {
- int size = 0;
- char *msg;
- int x, count;
-
- count = 0;
- /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- size += strlen(yytname[x]) + 15, count++;
- msg = (char *) malloc(size + 15);
- if (msg != 0)
- {
- strcpy(msg, "parse error");
-
- if (count < 5)
- {
- count = 0;
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- {
- strcat(msg, count == 0 ? ", expecting `" : " or `");
- strcat(msg, yytname[x]);
- strcat(msg, "'");
- count++;
- }
- }
- yyerror(msg);
- free(msg);
- }
- else
- yyerror ("parse error; also virtual memory exceeded");
- }
- else
-#endif /* YYERROR_VERBOSE */
- yyerror("parse error");
- }
-
- goto yyerrlab1;
-yyerrlab1: /* here on error raised explicitly by an action */
-
- if (yyerrstatus == 3)
- {
- /* if just tried and failed to reuse lookahead token after an error, discard it. */
-
- /* return failure if at end of input */
- if (yychar == YYEOF)
- YYABORT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
-#endif
-
- yychar = YYEMPTY;
- }
-
- /* Else will try to reuse lookahead token
- after shifting the error token. */
-
- yyerrstatus = 3; /* Each real token shifted decrements this */
-
- goto yyerrhandle;
-
-yyerrdefault: /* current state does not do anything special for the error token. */
-
-#if 0
- /* This is wrong; only states that explicitly want error tokens
- should shift them. */
- yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
- if (yyn) goto yydefault;
-#endif
-
-yyerrpop: /* pop the current state because it cannot handle the error token */
-
- if (yyssp == yyss) YYABORT;
- yyvsp--;
- yystate = *--yyssp;
-#ifdef YYLSP_NEEDED
- yylsp--;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "Error: state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
-yyerrhandle:
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yyerrdefault;
-
- yyn += YYTERROR;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
- goto yyerrdefault;
-
- yyn = yytable[yyn];
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrpop;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrpop;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting error token, ");
-#endif
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- yystate = yyn;
- goto yynewstate;
-}
-#line 2238 "c-parse.y"
-
diff --git a/gnu/egcs/gcc/c-parse.h b/gnu/egcs/gcc/c-parse.h
deleted file mode 100644
index 21b3d0caf6b..00000000000
--- a/gnu/egcs/gcc/c-parse.h
+++ /dev/null
@@ -1,64 +0,0 @@
-typedef union {long itype; tree ttype; enum tree_code code;
- char *filename; int lineno; int ends_in_label; } YYSTYPE;
-#define IDENTIFIER 258
-#define TYPENAME 259
-#define SCSPEC 260
-#define TYPESPEC 261
-#define TYPE_QUAL 262
-#define CONSTANT 263
-#define STRING 264
-#define ELLIPSIS 265
-#define SIZEOF 266
-#define ENUM 267
-#define STRUCT 268
-#define UNION 269
-#define IF 270
-#define ELSE 271
-#define WHILE 272
-#define DO 273
-#define FOR 274
-#define SWITCH 275
-#define CASE 276
-#define DEFAULT 277
-#define BREAK 278
-#define CONTINUE 279
-#define RETURN 280
-#define GOTO 281
-#define ASM_KEYWORD 282
-#define TYPEOF 283
-#define ALIGNOF 284
-#define ATTRIBUTE 285
-#define EXTENSION 286
-#define LABEL 287
-#define REALPART 288
-#define IMAGPART 289
-#define ASSIGN 290
-#define OROR 291
-#define ANDAND 292
-#define EQCOMPARE 293
-#define ARITHCOMPARE 294
-#define LSHIFT 295
-#define RSHIFT 296
-#define UNARY 297
-#define PLUSPLUS 298
-#define MINUSMINUS 299
-#define HYPERUNARY 300
-#define POINTSAT 301
-#define INTERFACE 302
-#define IMPLEMENTATION 303
-#define END 304
-#define SELECTOR 305
-#define DEFS 306
-#define ENCODE 307
-#define CLASSNAME 308
-#define PUBLIC 309
-#define PRIVATE 310
-#define PROTECTED 311
-#define PROTOCOL 312
-#define OBJECTNAME 313
-#define CLASS 314
-#define ALIAS 315
-#define OBJC_STRING 316
-
-
-extern YYSTYPE yylval;
diff --git a/gnu/egcs/gcc/c-parse.y b/gnu/egcs/gcc/c-parse.y
deleted file mode 100644
index bb69dfed313..00000000000
--- a/gnu/egcs/gcc/c-parse.y
+++ /dev/null
@@ -1,2238 +0,0 @@
-/*WARNING: This file is automatically generated!*/
-/* YACC parser for C syntax and for Objective C. -*-c-*-
- Copyright (C) 1987, 88, 89, 92-98, 1999 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC 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.
-
-GNU CC 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 GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-/* This file defines the grammar of C and that of Objective C.
- ifobjc ... end ifobjc conditionals contain code for Objective C only.
- ifc ... end ifc conditionals contain code for C only.
- Sed commands in Makefile.in are used to convert this file into
- c-parse.y and into objc-parse.y. */
-
-/* To whomever it may concern: I have heard that such a thing was once
- written by AT&T, but I have never seen it. */
-
-%expect 51
-
-/* These are the 23 conflicts you should get in parse.output;
- the state numbers may vary if minor changes in the grammar are made.
-
-State 42 contains 1 shift/reduce conflict. (Two ways to parse ATTRIBUTE.)
-State 44 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 103 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 110 contains 1 shift/reduce conflict. (Two ways to parse ATTRIBUTE.)
-State 111 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 115 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 132 contains 1 shift/reduce conflict. (See comment at component_decl.)
-State 180 contains 1 shift/reduce conflict. (Two ways to parse ATTRIBUTE.)
-State 194 contains 2 shift/reduce conflict. (Four ways to parse this.)
-State 202 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 214 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 220 contains 1 shift/reduce conflict. (Two ways to recover from error.)
-State 304 contains 2 shift/reduce conflicts. (Four ways to parse this.)
-State 335 contains 2 shift/reduce conflicts. (Four ways to parse this.)
-State 347 contains 1 shift/reduce conflict. (Two ways to parse ATTRIBUTES.)
-State 352 contains 1 shift/reduce conflict. (Two ways to parse ATTRIBUTES.)
-State 383 contains 2 shift/reduce conflicts. (Four ways to parse this.)
-State 434 contains 2 shift/reduce conflicts. (Four ways to parse this.) */
-
-
-%{
-#include "config.h"
-#include "system.h"
-#include <setjmp.h>
-
-#include "tree.h"
-#include "input.h"
-#include "c-lex.h"
-#include "c-tree.h"
-#include "flags.h"
-#include "output.h"
-#include "toplev.h"
-
-#ifdef MULTIBYTE_CHARS
-#include <locale.h>
-#endif
-
-
-/* Since parsers are distinct for each language, put the language string
- definition here. */
-char *language_string = "GNU C";
-
-/* Like YYERROR but do call yyerror. */
-#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
-
-/* Cause the `yydebug' variable to be defined. */
-#define YYDEBUG 1
-%}
-
-%start program
-
-%union {long itype; tree ttype; enum tree_code code;
- char *filename; int lineno; int ends_in_label; }
-
-/* All identifiers that are not reserved words
- and are not declared typedefs in the current block */
-%token IDENTIFIER
-
-/* All identifiers that are declared typedefs in the current block.
- In some contexts, they are treated just like IDENTIFIER,
- but they can also serve as typespecs in declarations. */
-%token TYPENAME
-
-/* Reserved words that specify storage class.
- yylval contains an IDENTIFIER_NODE which indicates which one. */
-%token SCSPEC
-
-/* Reserved words that specify type.
- yylval contains an IDENTIFIER_NODE which indicates which one. */
-%token TYPESPEC
-
-/* Reserved words that qualify type: "const", "volatile", or "restrict".
- yylval contains an IDENTIFIER_NODE which indicates which one. */
-%token TYPE_QUAL
-
-/* Character or numeric constants.
- yylval is the node for the constant. */
-%token CONSTANT
-
-/* String constants in raw form.
- yylval is a STRING_CST node. */
-%token STRING
-
-/* "...", used for functions with variable arglists. */
-%token ELLIPSIS
-
-/* the reserved words */
-/* SCO include files test "ASM", so use something else. */
-%token SIZEOF ENUM STRUCT UNION IF ELSE WHILE DO FOR SWITCH CASE DEFAULT
-%token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF
-%token ATTRIBUTE EXTENSION LABEL
-%token REALPART IMAGPART
-
-/* Add precedence rules to solve dangling else s/r conflict */
-%nonassoc IF
-%nonassoc ELSE
-
-/* Define the operator tokens and their precedences.
- The value is an integer because, if used, it is the tree code
- to use in the expression made from the operator. */
-
-%right <code> ASSIGN '='
-%right <code> '?' ':'
-%left <code> OROR
-%left <code> ANDAND
-%left <code> '|'
-%left <code> '^'
-%left <code> '&'
-%left <code> EQCOMPARE
-%left <code> ARITHCOMPARE
-%left <code> LSHIFT RSHIFT
-%left <code> '+' '-'
-%left <code> '*' '/' '%'
-%right <code> UNARY PLUSPLUS MINUSMINUS
-%left HYPERUNARY
-%left <code> POINTSAT '.' '(' '['
-
-/* The Objective-C keywords. These are included in C and in
- Objective C, so that the token codes are the same in both. */
-%token INTERFACE IMPLEMENTATION END SELECTOR DEFS ENCODE
-%token CLASSNAME PUBLIC PRIVATE PROTECTED PROTOCOL OBJECTNAME CLASS ALIAS
-
-/* Objective-C string constants in raw form.
- yylval is an OBJC_STRING_CST node. */
-%token OBJC_STRING
-
-
-%type <code> unop
-
-%type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist exprlist
-%type <ttype> expr_no_commas cast_expr unary_expr primary string STRING
-%type <ttype> typed_declspecs reserved_declspecs
-%type <ttype> typed_typespecs reserved_typespecquals
-%type <ttype> declmods typespec typespecqual_reserved
-%type <ttype> typed_declspecs_no_prefix_attr reserved_declspecs_no_prefix_attr
-%type <ttype> declmods_no_prefix_attr
-%type <ttype> SCSPEC TYPESPEC TYPE_QUAL nonempty_type_quals maybe_type_qual
-%type <ttype> initdecls notype_initdecls initdcl notype_initdcl
-%type <ttype> init maybeasm
-%type <ttype> asm_operands nonnull_asm_operands asm_operand asm_clobbers
-%type <ttype> maybe_attribute attributes attribute attribute_list attrib
-%type <ttype> any_word
-
-%type <ttype> compstmt
-
-%type <ttype> declarator
-%type <ttype> notype_declarator after_type_declarator
-%type <ttype> parm_declarator
-
-%type <ttype> structsp component_decl_list component_decl_list2
-%type <ttype> component_decl components component_declarator
-%type <ttype> enumlist enumerator
-%type <ttype> struct_head union_head enum_head
-%type <ttype> typename absdcl absdcl1 type_quals
-%type <ttype> xexpr parms parm identifiers
-
-%type <ttype> parmlist parmlist_1 parmlist_2
-%type <ttype> parmlist_or_identifiers parmlist_or_identifiers_1
-%type <ttype> identifiers_or_typenames
-
-%type <itype> setspecs
-
-%type <ends_in_label> lineno_stmt_or_label lineno_stmt_or_labels stmt_or_label
-
-%type <filename> save_filename
-%type <lineno> save_lineno
-
-
-%{
-/* Number of statements (loosely speaking) and compound statements
- seen so far. */
-static int stmt_count;
-static int compstmt_count;
-
-/* Input file and line number of the end of the body of last simple_if;
- used by the stmt-rule immediately after simple_if returns. */
-static char *if_stmt_file;
-static int if_stmt_line;
-
-/* List of types and structure classes of the current declaration. */
-static tree current_declspecs = NULL_TREE;
-static tree prefix_attributes = NULL_TREE;
-
-/* Stack of saved values of current_declspecs and prefix_attributes. */
-static tree declspec_stack;
-
-/* 1 if we explained undeclared var errors. */
-static int undeclared_variable_notice;
-
-
-/* Tell yyparse how to print a token's value, if yydebug is set. */
-
-#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
-extern void yyprint PROTO ((FILE *, int, YYSTYPE));
-%}
-
-%%
-program: /* empty */
- { if (pedantic)
- pedwarn ("ANSI C forbids an empty source file");
- finish_file ();
- }
- | extdefs
- {
- /* In case there were missing closebraces,
- get us back to the global binding level. */
- while (! global_bindings_p ())
- poplevel (0, 0, 0);
- finish_file ();
- }
- ;
-
-/* the reason for the strange actions in this rule
- is so that notype_initdecls when reached via datadef
- can find a valid list of type and sc specs in $0. */
-
-extdefs:
- {$<ttype>$ = NULL_TREE; } extdef
- | extdefs {$<ttype>$ = NULL_TREE; } extdef
- ;
-
-extdef:
- fndef
- | datadef
- | ASM_KEYWORD '(' expr ')' ';'
- { STRIP_NOPS ($3);
- if ((TREE_CODE ($3) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND ($3, 0)) == STRING_CST)
- || TREE_CODE ($3) == STRING_CST)
- assemble_asm ($3);
- else
- error ("argument of `asm' is not a constant string"); }
- | extension extdef
- { pedantic = $<itype>1; }
- ;
-
-datadef:
- setspecs notype_initdecls ';'
- { if (pedantic)
- error ("ANSI C forbids data definition with no type or storage class");
- else if (!flag_traditional)
- warning ("data definition has no type or storage class");
-
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($1); }
- | declmods setspecs notype_initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods ';'
- { pedwarn ("empty declaration"); }
- | typed_declspecs ';'
- { shadow_tag ($1); }
- | error ';'
- | error '}'
- | ';'
- { if (pedantic)
- pedwarn ("ANSI C does not allow extra `;' outside of a function"); }
- ;
-
-fndef:
- typed_declspecs setspecs declarator
- { if (! start_function (current_declspecs, $3,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
- compstmt_or_error
- { finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs declarator error
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_declarator
- { if (! start_function (current_declspecs, $3,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
- compstmt_or_error
- { finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_declarator error
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | setspecs notype_declarator
- { if (! start_function (NULL_TREE, $2,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
- compstmt_or_error
- { finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($1); }
- | setspecs notype_declarator error
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($1); }
- ;
-
-identifier:
- IDENTIFIER
- | TYPENAME
- ;
-
-unop: '&'
- { $$ = ADDR_EXPR; }
- | '-'
- { $$ = NEGATE_EXPR; }
- | '+'
- { $$ = CONVERT_EXPR; }
- | PLUSPLUS
- { $$ = PREINCREMENT_EXPR; }
- | MINUSMINUS
- { $$ = PREDECREMENT_EXPR; }
- | '~'
- { $$ = BIT_NOT_EXPR; }
- | '!'
- { $$ = TRUTH_NOT_EXPR; }
- ;
-
-expr: nonnull_exprlist
- { $$ = build_compound_expr ($1); }
- ;
-
-exprlist:
- /* empty */
- { $$ = NULL_TREE; }
- | nonnull_exprlist
- ;
-
-nonnull_exprlist:
- expr_no_commas
- { $$ = build_tree_list (NULL_TREE, $1); }
- | nonnull_exprlist ',' expr_no_commas
- { chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-unary_expr:
- primary
- | '*' cast_expr %prec UNARY
- { $$ = build_indirect_ref ($2, "unary *"); }
- /* __extension__ turns off -pedantic for following primary. */
- | extension cast_expr %prec UNARY
- { $$ = $2;
- pedantic = $<itype>1; }
- | unop cast_expr %prec UNARY
- { $$ = build_unary_op ($1, $2, 0);
- overflow_warning ($$); }
- /* Refer to the address of a label as a pointer. */
- | ANDAND identifier
- { tree label = lookup_label ($2);
- if (pedantic)
- pedwarn ("ANSI C forbids `&&'");
- if (label == 0)
- $$ = null_pointer_node;
- else
- {
- TREE_USED (label) = 1;
- $$ = build1 (ADDR_EXPR, ptr_type_node, label);
- TREE_CONSTANT ($$) = 1;
- }
- }
-/* This seems to be impossible on some machines, so let's turn it off.
- You can use __builtin_next_arg to find the anonymous stack args.
- | '&' ELLIPSIS
- { tree types = TYPE_ARG_TYPES (TREE_TYPE (current_function_decl));
- $$ = error_mark_node;
- if (TREE_VALUE (tree_last (types)) == void_type_node)
- error ("`&...' used in function with fixed number of arguments");
- else
- {
- if (pedantic)
- pedwarn ("ANSI C forbids `&...'");
- $$ = tree_last (DECL_ARGUMENTS (current_function_decl));
- $$ = build_unary_op (ADDR_EXPR, $$, 0);
- } }
-*/
- | sizeof unary_expr %prec UNARY
- { skip_evaluation--;
- if (TREE_CODE ($2) == COMPONENT_REF
- && DECL_C_BIT_FIELD (TREE_OPERAND ($2, 1)))
- error ("`sizeof' applied to a bit-field");
- $$ = c_sizeof (TREE_TYPE ($2)); }
- | sizeof '(' typename ')' %prec HYPERUNARY
- { skip_evaluation--;
- $$ = c_sizeof (groktypename ($3)); }
- | alignof unary_expr %prec UNARY
- { skip_evaluation--;
- $$ = c_alignof_expr ($2); }
- | alignof '(' typename ')' %prec HYPERUNARY
- { skip_evaluation--;
- $$ = c_alignof (groktypename ($3)); }
- | REALPART cast_expr %prec UNARY
- { $$ = build_unary_op (REALPART_EXPR, $2, 0); }
- | IMAGPART cast_expr %prec UNARY
- { $$ = build_unary_op (IMAGPART_EXPR, $2, 0); }
- ;
-
-sizeof:
- SIZEOF { skip_evaluation++; }
- ;
-
-alignof:
- ALIGNOF { skip_evaluation++; }
- ;
-
-cast_expr:
- unary_expr
- | '(' typename ')' cast_expr %prec UNARY
- { tree type = groktypename ($2);
- $$ = build_c_cast (type, $4); }
- | '(' typename ')' '{'
- { start_init (NULL_TREE, NULL, 0);
- $2 = groktypename ($2);
- really_start_incremental_init ($2); }
- initlist_maybe_comma '}' %prec UNARY
- { char *name;
- tree result = pop_init_level (0);
- tree type = $2;
- finish_init ();
-
- if (pedantic && ! flag_isoc9x)
- pedwarn ("ANSI C forbids constructor expressions");
- if (TYPE_NAME (type) != 0)
- {
- if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
- name = IDENTIFIER_POINTER (TYPE_NAME (type));
- else
- name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
- }
- else
- name = "";
- $$ = result;
- if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
- {
- int failure = complete_array_type (type, $$, 1);
- if (failure)
- abort ();
- }
- }
- ;
-
-expr_no_commas:
- cast_expr
- | expr_no_commas '+' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '-' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '*' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '/' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '%' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas LSHIFT expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas RSHIFT expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas ARITHCOMPARE expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas EQCOMPARE expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '&' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '|' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '^' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas ANDAND
- { $1 = truthvalue_conversion (default_conversion ($1));
- skip_evaluation += $1 == boolean_false_node; }
- expr_no_commas
- { skip_evaluation -= $1 == boolean_false_node;
- $$ = parser_build_binary_op (TRUTH_ANDIF_EXPR, $1, $4); }
- | expr_no_commas OROR
- { $1 = truthvalue_conversion (default_conversion ($1));
- skip_evaluation += $1 == boolean_true_node; }
- expr_no_commas
- { skip_evaluation -= $1 == boolean_true_node;
- $$ = parser_build_binary_op (TRUTH_ORIF_EXPR, $1, $4); }
- | expr_no_commas '?'
- { $1 = truthvalue_conversion (default_conversion ($1));
- skip_evaluation += $1 == boolean_false_node; }
- expr ':'
- { skip_evaluation += (($1 == boolean_true_node)
- - ($1 == boolean_false_node)); }
- expr_no_commas
- { skip_evaluation -= $1 == boolean_true_node;
- $$ = build_conditional_expr ($1, $4, $7); }
- | expr_no_commas '?'
- { if (pedantic)
- pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
- /* Make sure first operand is calculated only once. */
- $<ttype>2 = save_expr ($1);
- $1 = truthvalue_conversion (default_conversion ($<ttype>2));
- skip_evaluation += $1 == boolean_true_node; }
- ':' expr_no_commas
- { skip_evaluation -= $1 == boolean_true_node;
- $$ = build_conditional_expr ($1, $<ttype>2, $5); }
- | expr_no_commas '=' expr_no_commas
- { char class;
- $$ = build_modify_expr ($1, NOP_EXPR, $3);
- class = TREE_CODE_CLASS (TREE_CODE ($$));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR);
- }
- | expr_no_commas ASSIGN expr_no_commas
- { char class;
- $$ = build_modify_expr ($1, $2, $3);
- /* This inhibits warnings in truthvalue_conversion. */
- class = TREE_CODE_CLASS (TREE_CODE ($$));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE ($$, ERROR_MARK);
- }
- ;
-
-primary:
- IDENTIFIER
- {
- $$ = lastiddecl;
- if (!$$ || $$ == error_mark_node)
- {
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- {
- /* Ordinary implicit function declaration. */
- $$ = implicitly_declare ($1);
- assemble_external ($$);
- TREE_USED ($$) = 1;
- }
- }
- else if (current_function_decl == 0)
- {
- error ("`%s' undeclared here (not in a function)",
- IDENTIFIER_POINTER ($1));
- $$ = error_mark_node;
- }
- else
- {
- {
- if (IDENTIFIER_GLOBAL_VALUE ($1) != error_mark_node
- || IDENTIFIER_ERROR_LOCUS ($1) != current_function_decl)
- {
- error ("`%s' undeclared (first use in this function)",
- IDENTIFIER_POINTER ($1));
-
- if (! undeclared_variable_notice)
- {
- error ("(Each undeclared identifier is reported only once");
- error ("for each function it appears in.)");
- undeclared_variable_notice = 1;
- }
- }
- $$ = error_mark_node;
- /* Prevent repeated error messages. */
- IDENTIFIER_GLOBAL_VALUE ($1) = error_mark_node;
- IDENTIFIER_ERROR_LOCUS ($1) = current_function_decl;
- }
- }
- }
- else if (TREE_TYPE ($$) == error_mark_node)
- $$ = error_mark_node;
- else if (C_DECL_ANTICIPATED ($$))
- {
- /* The first time we see a build-in function used,
- if it has not been declared. */
- C_DECL_ANTICIPATED ($$) = 0;
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- /* Omit the implicit declaration we
- would ordinarily do, so we don't lose
- the actual built in type.
- But print a diagnostic for the mismatch. */
- if (TREE_CODE ($$) != FUNCTION_DECL)
- error ("`%s' implicitly declared as function",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
- else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE ($$)))
- != TYPE_MODE (integer_type_node))
- && (TREE_TYPE (TREE_TYPE ($$))
- != void_type_node))
- pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
- /* If it really returns void, change that to int. */
- if (TREE_TYPE (TREE_TYPE ($$)) == void_type_node)
- TREE_TYPE ($$)
- = build_function_type (integer_type_node,
- TYPE_ARG_TYPES (TREE_TYPE ($$)));
- }
- else
- pedwarn ("built-in function `%s' used without declaration",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
-
- /* Do what we would ordinarily do when a fn is used. */
- assemble_external ($$);
- TREE_USED ($$) = 1;
- }
- else
- {
- assemble_external ($$);
- TREE_USED ($$) = 1;
- }
-
- if (TREE_CODE ($$) == CONST_DECL)
- {
- $$ = DECL_INITIAL ($$);
- /* This is to prevent an enum whose value is 0
- from being considered a null pointer constant. */
- $$ = build1 (NOP_EXPR, TREE_TYPE ($$), $$);
- TREE_CONSTANT ($$) = 1;
- }
- }
- | CONSTANT
- | string
- { $$ = combine_strings ($1); }
- | '(' expr ')'
- { char class = TREE_CODE_CLASS (TREE_CODE ($2));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE ($2, ERROR_MARK);
- $$ = $2; }
- | '(' error ')'
- { $$ = error_mark_node; }
- | '('
- { if (current_function_decl == 0)
- {
- error ("braced-group within expression allowed only inside a function");
- YYERROR;
- }
- /* We must force a BLOCK for this level
- so that, if it is not expanded later,
- there is a way to turn off the entire subtree of blocks
- that are contained in it. */
- keep_next_level ();
- push_iterator_stack ();
- push_label_level ();
- $<ttype>$ = expand_start_stmt_expr (); }
- compstmt ')'
- { tree rtl_exp;
- if (pedantic)
- pedwarn ("ANSI C forbids braced-groups within expressions");
- pop_iterator_stack ();
- pop_label_level ();
- rtl_exp = expand_end_stmt_expr ($<ttype>2);
- /* The statements have side effects, so the group does. */
- TREE_SIDE_EFFECTS (rtl_exp) = 1;
-
- if (TREE_CODE ($3) == BLOCK)
- {
- /* Make a BIND_EXPR for the BLOCK already made. */
- $$ = build (BIND_EXPR, TREE_TYPE (rtl_exp),
- NULL_TREE, rtl_exp, $3);
- /* Remove the block from the tree at this point.
- It gets put back at the proper place
- when the BIND_EXPR is expanded. */
- delete_block ($3);
- }
- else
- $$ = $3;
- }
- | primary '(' exprlist ')' %prec '.'
- { $$ = build_function_call ($1, $3); }
- | primary '[' expr ']' %prec '.'
- { $$ = build_array_ref ($1, $3); }
- | primary '.' identifier
- {
- $$ = build_component_ref ($1, $3);
- }
- | primary POINTSAT identifier
- {
- tree expr = build_indirect_ref ($1, "->");
-
- $$ = build_component_ref (expr, $3);
- }
- | primary PLUSPLUS
- { $$ = build_unary_op (POSTINCREMENT_EXPR, $1, 0); }
- | primary MINUSMINUS
- { $$ = build_unary_op (POSTDECREMENT_EXPR, $1, 0); }
- ;
-
-/* Produces a STRING_CST with perhaps more STRING_CSTs chained onto it. */
-string:
- STRING
- | string STRING
- { $$ = chainon ($1, $2); }
- ;
-
-
-old_style_parm_decls:
- /* empty */
- | datadecls
- | datadecls ELLIPSIS
- /* ... is used here to indicate a varargs function. */
- { c_mark_varargs ();
- if (pedantic)
- pedwarn ("ANSI C does not permit use of `varargs.h'"); }
- ;
-
-/* The following are analogous to lineno_decl, decls and decl
- except that they do not allow nested functions.
- They are used for old-style parm decls. */
-lineno_datadecl:
- save_filename save_lineno datadecl
- { }
- ;
-
-datadecls:
- lineno_datadecl
- | errstmt
- | datadecls lineno_datadecl
- | lineno_datadecl errstmt
- ;
-
-/* We don't allow prefix attributes here because they cause reduce/reduce
- conflicts: we can't know whether we're parsing a function decl with
- attribute suffix, or function defn with attribute prefix on first old
- style parm. */
-datadecl:
- typed_declspecs_no_prefix_attr setspecs initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods_no_prefix_attr setspecs notype_initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs_no_prefix_attr ';'
- { shadow_tag_warned ($1, 1);
- pedwarn ("empty declaration"); }
- | declmods_no_prefix_attr ';'
- { pedwarn ("empty declaration"); }
- ;
-
-/* This combination which saves a lineno before a decl
- is the normal thing to use, rather than decl itself.
- This is to avoid shift/reduce conflicts in contexts
- where statement labels are allowed. */
-lineno_decl:
- save_filename save_lineno decl
- { }
- ;
-
-decls:
- lineno_decl
- | errstmt
- | decls lineno_decl
- | lineno_decl errstmt
- ;
-
-/* records the type and storage class specs to use for processing
- the declarators that follow.
- Maintains a stack of outer-level values of current_declspecs,
- for the sake of parm declarations nested in function declarators. */
-setspecs: /* empty */
- { $$ = suspend_momentary ();
- pending_xref_error ();
- declspec_stack = tree_cons (prefix_attributes,
- current_declspecs,
- declspec_stack);
- split_specs_attrs ($<ttype>0,
- &current_declspecs, &prefix_attributes); }
- ;
-
-/* ??? Yuck. See after_type_declarator. */
-setattrs: /* empty */
- { prefix_attributes = chainon (prefix_attributes, $<ttype>0); }
- ;
-
-decl:
- typed_declspecs setspecs initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs nested_function
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_nested_function
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs ';'
- { shadow_tag ($1); }
- | declmods ';'
- { pedwarn ("empty declaration"); }
- | extension decl
- { pedantic = $<itype>1; }
- ;
-
-/* Declspecs which contain at least one type specifier or typedef name.
- (Just `const' or `volatile' is not enough.)
- A typedef'd name following these is taken as a name to be declared.
- Declspecs have a non-NULL TREE_VALUE, attributes do not. */
-
-typed_declspecs:
- typespec reserved_declspecs
- { $$ = tree_cons (NULL_TREE, $1, $2); }
- | declmods typespec reserved_declspecs
- { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
- ;
-
-reserved_declspecs: /* empty */
- { $$ = NULL_TREE; }
- | reserved_declspecs typespecqual_reserved
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- | reserved_declspecs SCSPEC
- { if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER ($2));
- $$ = tree_cons (NULL_TREE, $2, $1); }
- | reserved_declspecs attributes
- { $$ = tree_cons ($2, NULL_TREE, $1); }
- ;
-
-typed_declspecs_no_prefix_attr:
- typespec reserved_declspecs_no_prefix_attr
- { $$ = tree_cons (NULL_TREE, $1, $2); }
- | declmods_no_prefix_attr typespec reserved_declspecs_no_prefix_attr
- { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
- ;
-
-reserved_declspecs_no_prefix_attr:
- /* empty */
- { $$ = NULL_TREE; }
- | reserved_declspecs_no_prefix_attr typespecqual_reserved
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- | reserved_declspecs_no_prefix_attr SCSPEC
- { if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER ($2));
- $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-/* List of just storage classes, type modifiers, and prefix attributes.
- A declaration can start with just this, but then it cannot be used
- to redeclare a typedef-name.
- Declspecs have a non-NULL TREE_VALUE, attributes do not. */
-
-declmods:
- declmods_no_prefix_attr
- { $$ = $1; }
- | attributes
- { $$ = tree_cons ($1, NULL_TREE, NULL_TREE); }
- | declmods declmods_no_prefix_attr
- { $$ = chainon ($2, $1); }
- | declmods attributes
- { $$ = tree_cons ($2, NULL_TREE, $1); }
- ;
-
-declmods_no_prefix_attr:
- TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
- TREE_STATIC ($$) = 1; }
- | SCSPEC
- { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
- | declmods_no_prefix_attr TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $2, $1);
- TREE_STATIC ($$) = 1; }
- | declmods_no_prefix_attr SCSPEC
- { if (extra_warnings && TREE_STATIC ($1))
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER ($2));
- $$ = tree_cons (NULL_TREE, $2, $1);
- TREE_STATIC ($$) = TREE_STATIC ($1); }
- ;
-
-
-/* Used instead of declspecs where storage classes are not allowed
- (that is, for typenames and structure components).
- Don't accept a typedef-name if anything but a modifier precedes it. */
-
-typed_typespecs:
- typespec reserved_typespecquals
- { $$ = tree_cons (NULL_TREE, $1, $2); }
- | nonempty_type_quals typespec reserved_typespecquals
- { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
- ;
-
-reserved_typespecquals: /* empty */
- { $$ = NULL_TREE; }
- | reserved_typespecquals typespecqual_reserved
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-/* A typespec (but not a type qualifier).
- Once we have seen one of these in a declaration,
- if a typedef name appears then it is being redeclared. */
-
-typespec: TYPESPEC
- | structsp
- | TYPENAME
- { /* For a typedef name, record the meaning, not the name.
- In case of `foo foo, bar;'. */
- $$ = lookup_name ($1); }
- | TYPEOF '(' expr ')'
- { $$ = TREE_TYPE ($3); }
- | TYPEOF '(' typename ')'
- { $$ = groktypename ($3); }
- ;
-
-/* A typespec that is a reserved word, or a type qualifier. */
-
-typespecqual_reserved: TYPESPEC
- | TYPE_QUAL
- | structsp
- ;
-
-initdecls:
- initdcl
- | initdecls ',' initdcl
- ;
-
-notype_initdecls:
- notype_initdcl
- | notype_initdecls ',' initdcl
- ;
-
-maybeasm:
- /* empty */
- { $$ = NULL_TREE; }
- | ASM_KEYWORD '(' string ')'
- { if (TREE_CHAIN ($3)) $3 = combine_strings ($3);
- $$ = $3;
- }
- ;
-
-initdcl:
- declarator maybeasm maybe_attribute '='
- { $<ttype>$ = start_decl ($1, current_declspecs, 1,
- $3, prefix_attributes);
- start_init ($<ttype>$, $2, global_bindings_p ()); }
- init
-/* Note how the declaration of the variable is in effect while its init is parsed! */
- { finish_init ();
- finish_decl ($<ttype>5, $6, $2); }
- | declarator maybeasm maybe_attribute
- { tree d = start_decl ($1, current_declspecs, 0,
- $3, prefix_attributes);
- finish_decl (d, NULL_TREE, $2);
- }
- ;
-
-notype_initdcl:
- notype_declarator maybeasm maybe_attribute '='
- { $<ttype>$ = start_decl ($1, current_declspecs, 1,
- $3, prefix_attributes);
- start_init ($<ttype>$, $2, global_bindings_p ()); }
- init
-/* Note how the declaration of the variable is in effect while its init is parsed! */
- { finish_init ();
- decl_attributes ($<ttype>5, $3, prefix_attributes);
- finish_decl ($<ttype>5, $6, $2); }
- | notype_declarator maybeasm maybe_attribute
- { tree d = start_decl ($1, current_declspecs, 0,
- $3, prefix_attributes);
- finish_decl (d, NULL_TREE, $2); }
- ;
-/* the * rules are dummies to accept the Apollo extended syntax
- so that the header files compile. */
-maybe_attribute:
- /* empty */
- { $$ = NULL_TREE; }
- | attributes
- { $$ = $1; }
- ;
-
-attributes:
- attribute
- { $$ = $1; }
- | attributes attribute
- { $$ = chainon ($1, $2); }
- ;
-
-attribute:
- ATTRIBUTE '(' '(' attribute_list ')' ')'
- { $$ = $4; }
- ;
-
-attribute_list:
- attrib
- { $$ = $1; }
- | attribute_list ',' attrib
- { $$ = chainon ($1, $3); }
- ;
-
-attrib:
- /* empty */
- { $$ = NULL_TREE; }
- | any_word
- { $$ = build_tree_list ($1, NULL_TREE); }
- | any_word '(' IDENTIFIER ')'
- { $$ = build_tree_list ($1, build_tree_list (NULL_TREE, $3)); }
- | any_word '(' IDENTIFIER ',' nonnull_exprlist ')'
- { $$ = build_tree_list ($1, tree_cons (NULL_TREE, $3, $5)); }
- | any_word '(' exprlist ')'
- { $$ = build_tree_list ($1, $3); }
- ;
-
-/* This still leaves out most reserved keywords,
- shouldn't we include them? */
-
-any_word:
- identifier
- | SCSPEC
- | TYPESPEC
- | TYPE_QUAL
- ;
-
-/* Initializers. `init' is the entry point. */
-
-init:
- expr_no_commas
- | '{'
- { really_start_incremental_init (NULL_TREE);
- /* Note that the call to clear_momentary
- is in process_init_element. */
- push_momentary (); }
- initlist_maybe_comma '}'
- { $$ = pop_init_level (0);
- if ($$ == error_mark_node
- && ! (yychar == STRING || yychar == CONSTANT))
- pop_momentary ();
- else
- pop_momentary_nofree (); }
-
- | error
- { $$ = error_mark_node; }
- ;
-
-/* `initlist_maybe_comma' is the guts of an initializer in braces. */
-initlist_maybe_comma:
- /* empty */
- { if (pedantic)
- pedwarn ("ANSI C forbids empty initializer braces"); }
- | initlist1 maybecomma
- ;
-
-initlist1:
- initelt
- | initlist1 ',' initelt
- ;
-
-/* `initelt' is a single element of an initializer.
- It may use braces. */
-initelt:
- designator_list '=' initval
- | designator initval
- | identifier ':'
- { set_init_label ($1); }
- initval
- | initval
- ;
-
-initval:
- '{'
- { push_init_level (0); }
- initlist_maybe_comma '}'
- { process_init_element (pop_init_level (0)); }
- | expr_no_commas
- { process_init_element ($1); }
- | error
- ;
-
-designator_list:
- designator
- | designator_list designator
- ;
-
-designator:
- '.' identifier
- { set_init_label ($2); }
- /* These are for labeled elements. The syntax for an array element
- initializer conflicts with the syntax for an Objective-C message,
- so don't include these productions in the Objective-C grammar. */
- | '[' expr_no_commas ELLIPSIS expr_no_commas ']'
- { set_init_index ($2, $4); }
- | '[' expr_no_commas ']'
- { set_init_index ($2, NULL_TREE); }
- ;
-
-nested_function:
- declarator
- { push_c_function_context ();
- if (! start_function (current_declspecs, $1,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
-/* This used to use compstmt_or_error.
- That caused a bug with input `f(g) int g {}',
- where the use of YYERROR1 above caused an error
- which then was handled by compstmt_or_error.
- There followed a repeated execution of that same rule,
- which called YYERROR1 again, and so on. */
- compstmt
- { finish_function (1);
- pop_c_function_context (); }
- ;
-
-notype_nested_function:
- notype_declarator
- { push_c_function_context ();
- if (! start_function (current_declspecs, $1,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
-/* This used to use compstmt_or_error.
- That caused a bug with input `f(g) int g {}',
- where the use of YYERROR1 above caused an error
- which then was handled by compstmt_or_error.
- There followed a repeated execution of that same rule,
- which called YYERROR1 again, and so on. */
- compstmt
- { finish_function (1);
- pop_c_function_context (); }
- ;
-
-/* Any kind of declarator (thus, all declarators allowed
- after an explicit typespec). */
-
-declarator:
- after_type_declarator
- | notype_declarator
- ;
-
-/* A declarator that is allowed only after an explicit typespec. */
-
-after_type_declarator:
- '(' after_type_declarator ')'
- { $$ = $2; }
- | after_type_declarator '(' parmlist_or_identifiers %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
-/* | after_type_declarator '(' error ')' %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
- poplevel (0, 0, 0); } */
- | after_type_declarator '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | after_type_declarator '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- | '*' type_quals after_type_declarator %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- /* ??? Yuck. setattrs is a quick hack. We can't use
- prefix_attributes because $1 only applies to this
- declarator. We assume setspecs has already been done.
- setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
- attributes could be recognized here or in `attributes'). */
- | attributes setattrs after_type_declarator
- { $$ = $3; }
- | TYPENAME
- ;
-
-/* Kinds of declarator that can appear in a parameter list
- in addition to notype_declarator. This is like after_type_declarator
- but does not allow a typedef name in parentheses as an identifier
- (because it would conflict with a function with that typedef as arg). */
-
-parm_declarator:
- parm_declarator '(' parmlist_or_identifiers %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
-/* | parm_declarator '(' error ')' %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
- poplevel (0, 0, 0); } */
- | parm_declarator '[' '*' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
- if (! flag_isoc9x)
- error ("`[*]' in parameter declaration only allowed in ISO C 9x");
- }
- | parm_declarator '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | parm_declarator '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- | '*' type_quals parm_declarator %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- /* ??? Yuck. setattrs is a quick hack. We can't use
- prefix_attributes because $1 only applies to this
- declarator. We assume setspecs has already been done.
- setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
- attributes could be recognized here or in `attributes'). */
- | attributes setattrs parm_declarator
- { $$ = $3; }
- | TYPENAME
- ;
-
-/* A declarator allowed whether or not there has been
- an explicit typespec. These cannot redeclare a typedef-name. */
-
-notype_declarator:
- notype_declarator '(' parmlist_or_identifiers %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
-/* | notype_declarator '(' error ')' %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
- poplevel (0, 0, 0); } */
- | '(' notype_declarator ')'
- { $$ = $2; }
- | '*' type_quals notype_declarator %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- | notype_declarator '[' '*' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
- if (! flag_isoc9x)
- error ("`[*]' in parameter declaration only allowed in ISO C 9x");
- }
- | notype_declarator '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | notype_declarator '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- /* ??? Yuck. setattrs is a quick hack. We can't use
- prefix_attributes because $1 only applies to this
- declarator. We assume setspecs has already been done.
- setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
- attributes could be recognized here or in `attributes'). */
- | attributes setattrs notype_declarator
- { $$ = $3; }
- | IDENTIFIER
- ;
-
-struct_head:
- STRUCT
- { $$ = NULL_TREE; }
- | STRUCT attributes
- { $$ = $2; }
- ;
-
-union_head:
- UNION
- { $$ = NULL_TREE; }
- | UNION attributes
- { $$ = $2; }
- ;
-
-enum_head:
- ENUM
- { $$ = NULL_TREE; }
- | ENUM attributes
- { $$ = $2; }
- ;
-
-structsp:
- struct_head identifier '{'
- { $$ = start_struct (RECORD_TYPE, $2);
- /* Start scope of tag before parsing components. */
- }
- component_decl_list '}' maybe_attribute
- { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
- | struct_head '{' component_decl_list '}' maybe_attribute
- { $$ = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
- $3, chainon ($1, $5));
- }
- | struct_head identifier
- { $$ = xref_tag (RECORD_TYPE, $2); }
- | union_head identifier '{'
- { $$ = start_struct (UNION_TYPE, $2); }
- component_decl_list '}' maybe_attribute
- { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
- | union_head '{' component_decl_list '}' maybe_attribute
- { $$ = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
- $3, chainon ($1, $5));
- }
- | union_head identifier
- { $$ = xref_tag (UNION_TYPE, $2); }
- | enum_head identifier '{'
- { $<itype>3 = suspend_momentary ();
- $$ = start_enum ($2); }
- enumlist maybecomma_warn '}' maybe_attribute
- { $$= finish_enum ($<ttype>4, nreverse ($5), chainon ($1, $8));
- resume_momentary ($<itype>3); }
- | enum_head '{'
- { $<itype>2 = suspend_momentary ();
- $$ = start_enum (NULL_TREE); }
- enumlist maybecomma_warn '}' maybe_attribute
- { $$= finish_enum ($<ttype>3, nreverse ($4), chainon ($1, $7));
- resume_momentary ($<itype>2); }
- | enum_head identifier
- { $$ = xref_tag (ENUMERAL_TYPE, $2); }
- ;
-
-maybecomma:
- /* empty */
- | ','
- ;
-
-maybecomma_warn:
- /* empty */
- | ','
- { if (pedantic && ! flag_isoc9x)
- pedwarn ("comma at end of enumerator list"); }
- ;
-
-component_decl_list:
- component_decl_list2
- { $$ = $1; }
- | component_decl_list2 component_decl
- { $$ = chainon ($1, $2);
- pedwarn ("no semicolon at end of struct or union"); }
- ;
-
-component_decl_list2: /* empty */
- { $$ = NULL_TREE; }
- | component_decl_list2 component_decl ';'
- { $$ = chainon ($1, $2); }
- | component_decl_list2 ';'
- { if (pedantic)
- pedwarn ("extra semicolon in struct or union specified"); }
- ;
-
-/* There is a shift-reduce conflict here, because `components' may
- start with a `typename'. It happens that shifting (the default resolution)
- does the right thing, because it treats the `typename' as part of
- a `typed_typespecs'.
-
- It is possible that this same technique would allow the distinction
- between `notype_initdecls' and `initdecls' to be eliminated.
- But I am being cautious and not trying it. */
-
-component_decl:
- typed_typespecs setspecs components
- { $$ = $3;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_typespecs
- { if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag($1);
- $$ = NULL_TREE; }
- | nonempty_type_quals setspecs components
- { $$ = $3;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | nonempty_type_quals
- { if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag($1);
- $$ = NULL_TREE; }
- | error
- { $$ = NULL_TREE; }
- | extension component_decl
- { $$ = $2;
- pedantic = $<itype>1; }
- ;
-
-components:
- component_declarator
- | components ',' component_declarator
- { $$ = chainon ($1, $3); }
- ;
-
-component_declarator:
- save_filename save_lineno declarator maybe_attribute
- { $$ = grokfield ($1, $2, $3, current_declspecs, NULL_TREE);
- decl_attributes ($$, $4, prefix_attributes); }
- | save_filename save_lineno
- declarator ':' expr_no_commas maybe_attribute
- { $$ = grokfield ($1, $2, $3, current_declspecs, $5);
- decl_attributes ($$, $6, prefix_attributes); }
- | save_filename save_lineno ':' expr_no_commas maybe_attribute
- { $$ = grokfield ($1, $2, NULL_TREE, current_declspecs, $4);
- decl_attributes ($$, $5, prefix_attributes); }
- ;
-
-/* We chain the enumerators in reverse order.
- They are put in forward order where enumlist is used.
- (The order used to be significant, but no longer is so.
- However, we still maintain the order, just to be clean.) */
-
-enumlist:
- enumerator
- | enumlist ',' enumerator
- { if ($1 == error_mark_node)
- $$ = $1;
- else
- $$ = chainon ($3, $1); }
- | error
- { $$ = error_mark_node; }
- ;
-
-
-enumerator:
- identifier
- { $$ = build_enumerator ($1, NULL_TREE); }
- | identifier '=' expr_no_commas
- { $$ = build_enumerator ($1, $3); }
- ;
-
-typename:
- typed_typespecs absdcl
- { $$ = build_tree_list ($1, $2); }
- | nonempty_type_quals absdcl
- { $$ = build_tree_list ($1, $2); }
- ;
-
-absdcl: /* an absolute declarator */
- /* empty */
- { $$ = NULL_TREE; }
- | absdcl1
- ;
-
-nonempty_type_quals:
- TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
- | nonempty_type_quals TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-type_quals:
- /* empty */
- { $$ = NULL_TREE; }
- | type_quals TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-absdcl1: /* a nonempty absolute declarator */
- '(' absdcl1 ')'
- { $$ = $2; }
- /* `(typedef)1' is `int'. */
- | '*' type_quals absdcl1 %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- | '*' type_quals %prec UNARY
- { $$ = make_pointer_declarator ($2, NULL_TREE); }
- | absdcl1 '(' parmlist %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
- | absdcl1 '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | absdcl1 '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- | '(' parmlist %prec '.'
- { $$ = build_nt (CALL_EXPR, NULL_TREE, $2, NULL_TREE); }
- | '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, NULL_TREE, $2); }
- | '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); }
- /* ??? It appears we have to support attributes here, however
- using prefix_attributes is wrong. */
- | attributes setattrs absdcl1
- { $$ = $3; }
- ;
-
-/* at least one statement, the first of which parses without error. */
-/* stmts is used only after decls, so an invalid first statement
- is actually regarded as an invalid decl and part of the decls. */
-
-stmts:
- lineno_stmt_or_labels
- {
- if (pedantic && $1)
- pedwarn ("ANSI C forbids label at end of compound statement");
- }
- ;
-
-lineno_stmt_or_labels:
- lineno_stmt_or_label
- | lineno_stmt_or_labels lineno_stmt_or_label
- { $$ = $2; }
- | lineno_stmt_or_labels errstmt
- { $$ = 0; }
- ;
-
-xstmts:
- /* empty */
- | stmts
- ;
-
-errstmt: error ';'
- ;
-
-pushlevel: /* empty */
- { emit_line_note (input_filename, lineno);
- pushlevel (0);
- clear_last_expr ();
- push_momentary ();
- expand_start_bindings (0);
- }
- ;
-
-/* Read zero or more forward-declarations for labels
- that nested functions can jump to. */
-maybe_label_decls:
- /* empty */
- | label_decls
- { if (pedantic)
- pedwarn ("ANSI C forbids label declarations"); }
- ;
-
-label_decls:
- label_decl
- | label_decls label_decl
- ;
-
-label_decl:
- LABEL identifiers_or_typenames ';'
- { tree link;
- for (link = $2; link; link = TREE_CHAIN (link))
- {
- tree label = shadow_label (TREE_VALUE (link));
- C_DECLARED_LABEL_FLAG (label) = 1;
- declare_nonlocal_label (label);
- }
- }
- ;
-
-/* This is the body of a function definition.
- It causes syntax errors to ignore to the next openbrace. */
-compstmt_or_error:
- compstmt
- {}
- | error compstmt
- ;
-
-compstmt_start: '{' { compstmt_count++; }
-
-compstmt: compstmt_start '}'
- { $$ = convert (void_type_node, integer_zero_node); }
- | compstmt_start pushlevel maybe_label_decls decls xstmts '}'
- { emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- $$ = poplevel (1, 1, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- | compstmt_start pushlevel maybe_label_decls error '}'
- { emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- $$ = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- | compstmt_start pushlevel maybe_label_decls stmts '}'
- { emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- $$ = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- ;
-
-/* Value is number of statements counted as of the closeparen. */
-simple_if:
- if_prefix lineno_labeled_stmt
-/* Make sure c_expand_end_cond is run once
- for each call to c_expand_start_cond.
- Otherwise a crash is likely. */
- | if_prefix error
- ;
-
-if_prefix:
- IF '(' expr ')'
- { emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_start_cond (truthvalue_conversion ($3), 0,
- compstmt_count);
- $<itype>$ = stmt_count;
- if_stmt_file = $<filename>-1;
- if_stmt_line = $<lineno>0;
- position_after_white_space (); }
- ;
-
-/* This is a subroutine of stmt.
- It is used twice, once for valid DO statements
- and once for catching errors in parsing the end test. */
-do_stmt_start:
- DO
- { stmt_count++;
- compstmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- expand_start_loop_continue_elsewhere (1);
- position_after_white_space (); }
- lineno_labeled_stmt WHILE
- { expand_loop_continue_here (); }
- ;
-
-save_filename:
- { $$ = input_filename; }
- ;
-
-save_lineno:
- { $$ = lineno; }
- ;
-
-lineno_labeled_stmt:
- save_filename save_lineno stmt
- { }
-/* | save_filename save_lineno error
- { }
-*/
- | save_filename save_lineno label lineno_labeled_stmt
- { }
- ;
-
-lineno_stmt_or_label:
- save_filename save_lineno stmt_or_label
- { $$ = $3; }
- ;
-
-stmt_or_label:
- stmt
- { $$ = 0; }
- | label
- { $$ = 1; }
- ;
-
-/* Parse a single real statement, not including any labels. */
-stmt:
- compstmt
- { stmt_count++; }
- | all_iter_stmt
- | expr ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
-/* It appears that this should not be done--that a non-lvalue array
- shouldn't get an error if the value isn't used.
- Section 3.2.2.1 says that an array lvalue gets converted to a pointer
- if it appears as a top-level expression,
- but says nothing about non-lvalue arrays. */
-#if 0
- /* Call default_conversion to get an error
- on referring to a register array if pedantic. */
- if (TREE_CODE (TREE_TYPE ($1)) == ARRAY_TYPE
- || TREE_CODE (TREE_TYPE ($1)) == FUNCTION_TYPE)
- $1 = default_conversion ($1);
-#endif
- iterator_expand ($1);
- clear_momentary (); }
- | simple_if ELSE
- { c_expand_start_else ();
- $<itype>1 = stmt_count;
- position_after_white_space (); }
- lineno_labeled_stmt
- { c_expand_end_cond ();
- if (extra_warnings && stmt_count == $<itype>1)
- warning ("empty body in an else-statement"); }
- | simple_if %prec IF
- { c_expand_end_cond ();
- /* This warning is here instead of in simple_if, because we
- do not want a warning if an empty if is followed by an
- else statement. Increment stmt_count so we don't
- give a second error if this is a nested `if'. */
- if (extra_warnings && stmt_count++ == $<itype>1)
- warning_with_file_and_line (if_stmt_file, if_stmt_line,
- "empty body in an if-statement"); }
-/* Make sure c_expand_end_cond is run once
- for each call to c_expand_start_cond.
- Otherwise a crash is likely. */
- | simple_if ELSE error
- { c_expand_end_cond (); }
- | WHILE
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- /* The emit_nop used to come before emit_line_note,
- but that made the nop seem like part of the preceding line.
- And that was confusing when the preceding line was
- inside of an if statement and was not really executed.
- I think it ought to work to put the nop after the line number.
- We will see. --rms, July 15, 1991. */
- emit_nop (); }
- '(' expr ')'
- { /* Don't start the loop till we have succeeded
- in parsing the end test. This is to make sure
- that we end every loop we start. */
- expand_start_loop (1);
- emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion ($4));
- position_after_white_space (); }
- lineno_labeled_stmt
- { expand_end_loop (); }
- | do_stmt_start
- '(' expr ')' ';'
- { emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion ($3));
- expand_end_loop ();
- clear_momentary (); }
-/* This rule is needed to make sure we end every loop we start. */
- | do_stmt_start error
- { expand_end_loop ();
- clear_momentary (); }
- | FOR
- '(' xexpr ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- if ($3) c_expand_expr_stmt ($3);
- /* Next step is to call expand_start_loop_continue_elsewhere,
- but wait till after we parse the entire for (...).
- Otherwise, invalid input might cause us to call that
- fn without calling expand_end_loop. */
- }
- xexpr ';'
- /* Can't emit now; wait till after expand_start_loop... */
- { $<lineno>7 = lineno;
- $<filename>$ = input_filename; }
- xexpr ')'
- {
- /* Start the loop. Doing this after parsing
- all the expressions ensures we will end the loop. */
- expand_start_loop_continue_elsewhere (1);
- /* Emit the end-test, with a line number. */
- emit_line_note ($<filename>8, $<lineno>7);
- if ($6)
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion ($6));
- /* Don't let the tree nodes for $9 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- $<lineno>7 = lineno;
- $<filename>8 = input_filename;
- position_after_white_space (); }
- lineno_labeled_stmt
- { /* Emit the increment expression, with a line number. */
- emit_line_note ($<filename>8, $<lineno>7);
- expand_loop_continue_here ();
- if ($9)
- c_expand_expr_stmt ($9);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary ();
- expand_end_loop (); }
- | SWITCH '(' expr ')'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_start_case ($3);
- /* Don't let the tree nodes for $3 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- position_after_white_space (); }
- lineno_labeled_stmt
- { expand_end_case ($3);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- | BREAK ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- if ( ! expand_exit_something ())
- error ("break statement not within loop or switch"); }
- | CONTINUE ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- if (! expand_continue_loop (NULL_PTR))
- error ("continue statement not within a loop"); }
- | RETURN ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_return (NULL_TREE); }
- | RETURN expr ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_return ($2); }
- | ASM_KEYWORD maybe_type_qual '(' expr ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- STRIP_NOPS ($4);
- if ((TREE_CODE ($4) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND ($4, 0)) == STRING_CST)
- || TREE_CODE ($4) == STRING_CST)
- expand_asm ($4);
- else
- error ("argument of `asm' is not a constant string"); }
- /* This is the case with just output operands. */
- | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_asm_operands ($4, $6, NULL_TREE, NULL_TREE,
- $2 == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); }
- /* This is the case with input operands as well. */
- | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':' asm_operands ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_asm_operands ($4, $6, $8, NULL_TREE,
- $2 == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); }
- /* This is the case with clobbered registers as well. */
- | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':'
- asm_operands ':' asm_clobbers ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_asm_operands ($4, $6, $8, $10,
- $2 == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); }
- | GOTO identifier ';'
- { tree decl;
- stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- decl = lookup_label ($2);
- if (decl != 0)
- {
- TREE_USED (decl) = 1;
- expand_goto (decl);
- }
- }
- | GOTO '*' expr ';'
- { if (pedantic)
- pedwarn ("ANSI C forbids `goto *expr;'");
- stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- expand_computed_goto (convert (ptr_type_node, $3)); }
- | ';'
- ;
-
-all_iter_stmt:
- all_iter_stmt_simple
-/* | all_iter_stmt_with_decl */
- ;
-
-all_iter_stmt_simple:
- FOR '(' primary ')'
- {
- /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-
- $<itype>$ = 0;
- if (TREE_CODE ($3) != VAR_DECL)
- error ("invalid `for (ITERATOR)' syntax");
- else if (! ITERATOR_P ($3))
- error ("`%s' is not an iterator",
- IDENTIFIER_POINTER (DECL_NAME ($3)));
- else if (ITERATOR_BOUND_P ($3))
- error ("`for (%s)' inside expansion of same iterator",
- IDENTIFIER_POINTER (DECL_NAME ($3)));
- else
- {
- $<itype>$ = 1;
- iterator_for_loop_start ($3);
- }
- }
- lineno_labeled_stmt
- {
- if ($<itype>5)
- iterator_for_loop_end ($3);
- }
-
-/* This really should allow any kind of declaration,
- for generality. Fix it before turning it back on.
-
-all_iter_stmt_with_decl:
- FOR '(' ITERATOR pushlevel setspecs iterator_spec ')'
- {
-*/ /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-/*
- iterator_for_loop_start ($6);
- }
- lineno_labeled_stmt
- {
- iterator_for_loop_end ($6);
- emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- $<ttype>$ = poplevel (1, 1, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary ();
- }
-*/
-
-/* Any kind of label, including jump labels and case labels.
- ANSI C accepts labels only before statements, but we allow them
- also at the end of a compound statement. */
-
-label: CASE expr_no_commas ':'
- { register tree value = check_case_value ($2);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- stmt_count++;
-
- if (value != error_mark_node)
- {
- tree duplicate;
- int success;
-
- if (pedantic && ! INTEGRAL_TYPE_P (TREE_TYPE (value)))
- pedwarn ("label must have integral type in ANSI C");
-
- success = pushcase (value, convert_and_check,
- label, &duplicate);
-
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); }
- | CASE expr_no_commas ELLIPSIS expr_no_commas ':'
- { register tree value1 = check_case_value ($2);
- register tree value2 = check_case_value ($4);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- if (pedantic)
- pedwarn ("ANSI C forbids case ranges");
- stmt_count++;
-
- if (value1 != error_mark_node && value2 != error_mark_node)
- {
- tree duplicate;
- int success = pushcase_range (value1, value2,
- convert_and_check, label,
- &duplicate);
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 4)
- warning ("empty case range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); }
- | DEFAULT ':'
- {
- tree duplicate;
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
- int success = pushcase (NULL_TREE, 0, label, &duplicate);
- stmt_count++;
- if (success == 1)
- error ("default label not within a switch statement");
- else if (success == 2)
- {
- error ("multiple default labels in one switch");
- error_with_decl (duplicate, "this is the first default label");
- }
- position_after_white_space (); }
- | identifier ':' maybe_attribute
- { tree label = define_label (input_filename, lineno, $1);
- stmt_count++;
- emit_nop ();
- if (label)
- {
- expand_label (label);
- decl_attributes (label, $3, NULL_TREE);
- }
- position_after_white_space (); }
- ;
-
-/* Either a type-qualifier or nothing. First thing in an `asm' statement. */
-
-maybe_type_qual:
- /* empty */
- { emit_line_note (input_filename, lineno);
- $$ = NULL_TREE; }
- | TYPE_QUAL
- { emit_line_note (input_filename, lineno); }
- ;
-
-xexpr:
- /* empty */
- { $$ = NULL_TREE; }
- | expr
- ;
-
-/* These are the operands other than the first string and colon
- in asm ("addextend %2,%1": "=dm" (x), "0" (y), "g" (*x)) */
-asm_operands: /* empty */
- { $$ = NULL_TREE; }
- | nonnull_asm_operands
- ;
-
-nonnull_asm_operands:
- asm_operand
- | nonnull_asm_operands ',' asm_operand
- { $$ = chainon ($1, $3); }
- ;
-
-asm_operand:
- STRING '(' expr ')'
- { $$ = build_tree_list ($1, $3); }
- ;
-
-asm_clobbers:
- string
- { $$ = tree_cons (NULL_TREE, combine_strings ($1), NULL_TREE); }
- | asm_clobbers ',' string
- { $$ = tree_cons (NULL_TREE, combine_strings ($3), $1); }
- ;
-
-/* This is what appears inside the parens in a function declarator.
- Its value is a list of ..._TYPE nodes. */
-parmlist:
- { pushlevel (0);
- clear_parm_order ();
- declare_parm_level (0); }
- parmlist_1
- { $$ = $2;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); }
- ;
-
-parmlist_1:
- parmlist_2 ')'
- | parms ';'
- { tree parm;
- if (pedantic)
- pedwarn ("ANSI C forbids forward parameter declarations");
- /* Mark the forward decls as such. */
- for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
- TREE_ASM_WRITTEN (parm) = 1;
- clear_parm_order (); }
- parmlist_1
- { $$ = $4; }
- | error ')'
- { $$ = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); }
- ;
-
-/* This is what appears inside the parens in a function declarator.
- Is value is represented in the format that grokdeclarator expects. */
-parmlist_2: /* empty */
- { $$ = get_parm_info (0); }
- | ELLIPSIS
- { $$ = get_parm_info (0);
- /* Gcc used to allow this as an extension. However, it does
- not work for all targets, and thus has been disabled.
- Also, since func (...) and func () are indistinguishable,
- it caused problems with the code in expand_builtin which
- tries to verify that BUILT_IN_NEXT_ARG is being used
- correctly. */
- error ("ANSI C requires a named argument before `...'");
- }
- | parms
- { $$ = get_parm_info (1); }
- | parms ',' ELLIPSIS
- { $$ = get_parm_info (0); }
- ;
-
-parms:
- parm
- { push_parm_decl ($1); }
- | parms ',' parm
- { push_parm_decl ($3); }
- ;
-
-/* A single parameter declaration or parameter type name,
- as found in a parmlist. */
-parm:
- typed_declspecs setspecs parm_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs notype_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs absdcl maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
-
- | declmods setspecs absdcl maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- ;
-
-/* This is used in a function definition
- where either a parmlist or an identifier list is ok.
- Its value is a list of ..._TYPE nodes or a list of identifiers. */
-parmlist_or_identifiers:
- { pushlevel (0);
- clear_parm_order ();
- declare_parm_level (1); }
- parmlist_or_identifiers_1
- { $$ = $2;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); }
- ;
-
-parmlist_or_identifiers_1:
- parmlist_1
- | identifiers ')'
- { tree t;
- for (t = $1; t; t = TREE_CHAIN (t))
- if (TREE_VALUE (t) == NULL_TREE)
- error ("`...' in old-style identifier list");
- $$ = tree_cons (NULL_TREE, NULL_TREE, $1); }
- ;
-
-/* A nonempty list of identifiers. */
-identifiers:
- IDENTIFIER
- { $$ = build_tree_list (NULL_TREE, $1); }
- | identifiers ',' IDENTIFIER
- { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-/* A nonempty list of identifiers, including typenames. */
-identifiers_or_typenames:
- identifier
- { $$ = build_tree_list (NULL_TREE, $1); }
- | identifiers_or_typenames ',' identifier
- { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-extension:
- EXTENSION
- { $<itype>$ = pedantic;
- pedantic = 0; }
- ;
-
-%%
diff --git a/gnu/egcs/gcc/cexp.c b/gnu/egcs/gcc/cexp.c
deleted file mode 100644
index ed318a9e3e4..00000000000
--- a/gnu/egcs/gcc/cexp.c
+++ /dev/null
@@ -1,2138 +0,0 @@
-
-/* A Bison parser, made from cexp.y
- by GNU Bison version 1.25
- */
-
-#define YYBISON 1 /* Identify Bison output. */
-
-#define INT 258
-#define CHAR 259
-#define NAME 260
-#define ERROR 261
-#define OR 262
-#define AND 263
-#define EQUAL 264
-#define NOTEQUAL 265
-#define LEQ 266
-#define GEQ 267
-#define LSH 268
-#define RSH 269
-#define UNARY 270
-
-#line 27 "cexp.y"
-
-#include "config.h"
-
-#include "system.h"
-#include "intl.h"
-#include <setjmp.h>
-/* #define YYDEBUG 1 */
-
-#ifdef MULTIBYTE_CHARS
-#include "mbchar.h"
-#include <locale.h>
-#endif /* MULTIBYTE_CHARS */
-
-typedef unsigned char U_CHAR;
-
-/* This is used for communicating lists of keywords with cccp.c. */
-struct arglist {
- struct arglist *next;
- U_CHAR *name;
- int length;
- int argno;
-};
-
-HOST_WIDEST_INT parse_c_expression PROTO((char *, int));
-
-static int yylex PROTO((void));
-static void yyerror PVPROTO((const char *, ...))
- ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
-static HOST_WIDEST_INT expression_value;
-#ifdef TEST_EXP_READER
-static int expression_signedp;
-#endif
-
-static jmp_buf parse_return_error;
-
-/* Nonzero means count most punctuation as part of a name. */
-static int keyword_parsing = 0;
-
-/* Nonzero means do not evaluate this expression.
- This is a count, since unevaluated expressions can nest. */
-static int skip_evaluation;
-
-/* Nonzero means warn if undefined identifiers are evaluated. */
-static int warn_undef;
-
-/* some external tables of character types */
-extern unsigned char is_idstart[], is_idchar[], is_space[];
-
-/* Flag for -pedantic. */
-extern int pedantic;
-
-/* Flag for -traditional. */
-extern int traditional;
-
-/* Flag for -lang-c89. */
-extern int c89;
-
-#ifndef CHAR_TYPE_SIZE
-#define CHAR_TYPE_SIZE BITS_PER_UNIT
-#endif
-
-#ifndef INT_TYPE_SIZE
-#define INT_TYPE_SIZE BITS_PER_WORD
-#endif
-
-#ifndef LONG_TYPE_SIZE
-#define LONG_TYPE_SIZE BITS_PER_WORD
-#endif
-
-#ifndef WCHAR_TYPE_SIZE
-#define WCHAR_TYPE_SIZE INT_TYPE_SIZE
-#endif
-
-#ifndef MAX_CHAR_TYPE_SIZE
-#define MAX_CHAR_TYPE_SIZE CHAR_TYPE_SIZE
-#endif
-
-#ifndef MAX_INT_TYPE_SIZE
-#define MAX_INT_TYPE_SIZE INT_TYPE_SIZE
-#endif
-
-#ifndef MAX_LONG_TYPE_SIZE
-#define MAX_LONG_TYPE_SIZE LONG_TYPE_SIZE
-#endif
-
-#ifndef MAX_WCHAR_TYPE_SIZE
-#define MAX_WCHAR_TYPE_SIZE WCHAR_TYPE_SIZE
-#endif
-
-#define MAX_CHAR_TYPE_MASK (MAX_CHAR_TYPE_SIZE < HOST_BITS_PER_WIDEST_INT \
- ? (~ (~ (HOST_WIDEST_INT) 0 << MAX_CHAR_TYPE_SIZE)) \
- : ~ (HOST_WIDEST_INT) 0)
-
-#define MAX_WCHAR_TYPE_MASK (MAX_WCHAR_TYPE_SIZE < HOST_BITS_PER_WIDEST_INT \
- ? ~ (~ (HOST_WIDEST_INT) 0 << MAX_WCHAR_TYPE_SIZE) \
- : ~ (HOST_WIDEST_INT) 0)
-
-/* Suppose A1 + B1 = SUM1, using 2's complement arithmetic ignoring overflow.
- Suppose A, B and SUM have the same respective signs as A1, B1, and SUM1.
- Suppose SIGNEDP is negative if the result is signed, zero if unsigned.
- Then this yields nonzero if overflow occurred during the addition.
- Overflow occurs if A and B have the same sign, but A and SUM differ in sign,
- and SIGNEDP is negative.
- Use `^' to test whether signs differ, and `< 0' to isolate the sign. */
-#define overflow_sum_sign(a, b, sum, signedp) \
- ((~((a) ^ (b)) & ((a) ^ (sum)) & (signedp)) < 0)
-
-struct constant;
-
-HOST_WIDEST_INT parse_escape PROTO((char **, HOST_WIDEST_INT));
-int check_assertion PROTO((U_CHAR *, int, int, struct arglist *));
-struct hashnode *lookup PROTO((U_CHAR *, int, int));
-void error PVPROTO((const char *, ...)) ATTRIBUTE_PRINTF_1;
-void verror PROTO((const char *, va_list));
-void pedwarn PVPROTO((const char *, ...)) ATTRIBUTE_PRINTF_1;
-void warning PVPROTO((const char *, ...)) ATTRIBUTE_PRINTF_1;
-
-static int parse_number PROTO((int));
-static HOST_WIDEST_INT left_shift PROTO((struct constant *, unsigned HOST_WIDEST_INT));
-static HOST_WIDEST_INT right_shift PROTO((struct constant *, unsigned HOST_WIDEST_INT));
-static void integer_overflow PROTO((void));
-
-/* `signedp' values */
-#define SIGNED (~0)
-#define UNSIGNED 0
-
-#line 154 "cexp.y"
-typedef union {
- struct constant {HOST_WIDEST_INT value; int signedp;} integer;
- struct name {U_CHAR *address; int length;} name;
- struct arglist *keywords;
-} YYSTYPE;
-#include <stdio.h>
-
-#ifndef __cplusplus
-#ifndef __STDC__
-#define const
-#endif
-#endif
-
-
-
-#define YYFINAL 77
-#define YYFLAG -32768
-#define YYNTBASE 34
-
-#define YYTRANSLATE(x) ((unsigned)(x) <= 270 ? yytranslate[x] : 43)
-
-static const char 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, 29, 2, 31, 2, 27, 14, 2, 32,
- 33, 25, 23, 9, 24, 2, 26, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 8, 2, 17,
- 2, 18, 7, 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, 13, 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, 12, 2, 30, 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, 10, 11, 15, 16, 19, 20, 21, 22, 28
-};
-
-#if YYDEBUG != 0
-static const short yyprhs[] = { 0,
- 0, 2, 4, 8, 11, 14, 17, 20, 23, 24,
- 31, 35, 39, 43, 47, 51, 55, 59, 63, 67,
- 71, 75, 79, 83, 87, 91, 95, 99, 100, 105,
- 106, 111, 112, 113, 121, 123, 125, 127, 128, 133
-};
-
-static const short yyrhs[] = { 35,
- 0, 36, 0, 35, 9, 36, 0, 24, 36, 0,
- 29, 36, 0, 23, 36, 0, 30, 36, 0, 31,
- 5, 0, 0, 31, 5, 37, 32, 42, 33, 0,
- 32, 35, 33, 0, 36, 25, 36, 0, 36, 26,
- 36, 0, 36, 27, 36, 0, 36, 23, 36, 0,
- 36, 24, 36, 0, 36, 21, 36, 0, 36, 22,
- 36, 0, 36, 15, 36, 0, 36, 16, 36, 0,
- 36, 19, 36, 0, 36, 20, 36, 0, 36, 17,
- 36, 0, 36, 18, 36, 0, 36, 14, 36, 0,
- 36, 13, 36, 0, 36, 12, 36, 0, 0, 36,
- 11, 38, 36, 0, 0, 36, 10, 39, 36, 0,
- 0, 0, 36, 7, 40, 36, 8, 41, 36, 0,
- 3, 0, 4, 0, 5, 0, 0, 32, 42, 33,
- 42, 0, 5, 42, 0
-};
-
-#endif
-
-#if YYDEBUG != 0
-static const short yyrline[] = { 0,
- 184, 194, 195, 202, 207, 210, 212, 215, 219, 221,
- 226, 231, 244, 261, 274, 280, 286, 292, 298, 301,
- 304, 311, 318, 325, 332, 335, 338, 341, 344, 347,
- 350, 353, 355, 358, 361, 363, 365, 373, 375, 388
-};
-#endif
-
-
-#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
-
-static const char * const yytname[] = { "$","error","$undefined.","INT","CHAR",
-"NAME","ERROR","'?'","':'","','","OR","AND","'|'","'^'","'&'","EQUAL","NOTEQUAL",
-"'<'","'>'","LEQ","GEQ","LSH","RSH","'+'","'-'","'*'","'/'","'%'","UNARY","'!'",
-"'~'","'#'","'('","')'","start","exp1","exp","@1","@2","@3","@4","@5","keywords", NULL
-};
-#endif
-
-static const short yyr1[] = { 0,
- 34, 35, 35, 36, 36, 36, 36, 36, 37, 36,
- 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
- 36, 36, 36, 36, 36, 36, 36, 38, 36, 39,
- 36, 40, 41, 36, 36, 36, 36, 42, 42, 42
-};
-
-static const short yyr2[] = { 0,
- 1, 1, 3, 2, 2, 2, 2, 2, 0, 6,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 0, 4, 0,
- 4, 0, 0, 7, 1, 1, 1, 0, 4, 2
-};
-
-static const short yydefact[] = { 0,
- 35, 36, 37, 0, 0, 0, 0, 0, 0, 1,
- 2, 6, 4, 5, 7, 8, 0, 0, 32, 30,
- 28, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 11, 3,
- 0, 0, 0, 27, 26, 25, 19, 20, 23, 24,
- 21, 22, 17, 18, 15, 16, 12, 13, 14, 38,
- 0, 31, 29, 38, 38, 0, 33, 40, 0, 10,
- 0, 38, 34, 39, 0, 0, 0
-};
-
-static const short yydefgoto[] = { 75,
- 10, 11, 38, 43, 42, 41, 71, 66
-};
-
-static const short yypact[] = { 12,
--32768,-32768,-32768, 12, 12, 12, 12, 1, 12, 4,
- 79,-32768,-32768,-32768,-32768, -21, 31, 12,-32768,-32768,
--32768, 12, 12, 12, 12, 12, 12, 12, 12, 12,
- 12, 12, 12, 12, 12, 12, 12, 30,-32768, 79,
- 12, 12, 12, 110, 124, 137, 148, 148, 155, 155,
- 155, 155, 160, 160, -17, -17,-32768,-32768,-32768, 2,
- 58, 34, 95, 2, 2, 54,-32768,-32768, 55,-32768,
- 12, 2, 79,-32768, 63, 188,-32768
-};
-
-static const short yypgoto[] = {-32768,
- 180, -4,-32768,-32768,-32768,-32768,-32768, -60
-};
-
-
-#define YYLAST 189
-
-
-static const short yytable[] = { 12,
- 13, 14, 15, 68, 69, 16, 64, 35, 36, 37,
- -9, 74, 18, 40, 1, 2, 3, 44, 45, 46,
- 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
- 57, 58, 59, 65, 4, 5, 61, 62, 63, 18,
- 6, 7, 8, 9, 21, 22, 23, 24, 25, 26,
- 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 60, 76, 39, 19, 67, 73, 20, 21, 22,
- 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 19, 70, 72, 20, 21,
- 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
- 32, 33, 34, 35, 36, 37, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
- 36, 37, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 24, 25, 26,
- 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 25, 26, 27, 28, 29, 30, 31, 32, 33,
- 34, 35, 36, 37, 27, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 31, 32, 33, 34, 35,
- 36, 37, 33, 34, 35, 36, 37, 77, 17
-};
-
-static const short yycheck[] = { 4,
- 5, 6, 7, 64, 65, 5, 5, 25, 26, 27,
- 32, 72, 9, 18, 3, 4, 5, 22, 23, 24,
- 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
- 35, 36, 37, 32, 23, 24, 41, 42, 43, 9,
- 29, 30, 31, 32, 11, 12, 13, 14, 15, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 32, 0, 33, 7, 8, 71, 10, 11, 12,
- 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 7, 33, 33, 10, 11,
- 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
- 22, 23, 24, 25, 26, 27, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 13, 14, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 14, 15, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 21, 22, 23, 24, 25,
- 26, 27, 23, 24, 25, 26, 27, 0, 9
-};
-/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
-#line 3 "/tmp/sky/share/bison.simple"
-
-/* Skeleton output parser for bison,
- Copyright (C) 1984, 1989, 1990 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* As a special exception, when this file is copied by Bison into a
- Bison output file, you may use that output file without restriction.
- This special exception was added by the Free Software Foundation
- in version 1.24 of Bison. */
-
-#ifndef alloca
-#ifdef __GNUC__
-#define alloca __builtin_alloca
-#else /* not GNU C. */
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
-#include <alloca.h>
-#else /* not sparc */
-#if defined (MSDOS) && !defined (__TURBOC__)
-#include <malloc.h>
-#else /* not MSDOS, or __TURBOC__ */
-#if defined(_AIX)
-#include <malloc.h>
- #pragma alloca
-#else /* not MSDOS, __TURBOC__, or _AIX */
-#ifdef __hpux
-#ifdef __cplusplus
-extern "C" {
-void *alloca (unsigned int);
-};
-#else /* not __cplusplus */
-void *alloca ();
-#endif /* not __cplusplus */
-#endif /* __hpux */
-#endif /* not _AIX */
-#endif /* not MSDOS, or __TURBOC__ */
-#endif /* not sparc. */
-#endif /* not GNU C. */
-#endif /* alloca not defined. */
-
-/* This is the parser code that is written into each bison parser
- when the %semantic_parser declaration is not specified in the grammar.
- It was written by Richard Stallman by simplifying the hairy parser
- used when %semantic_parser is specified. */
-
-/* Note: there must be only one dollar sign in this file.
- It is replaced by the list of actions, each action
- as one case of the switch. */
-
-#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY -2
-#define YYEOF 0
-#define YYACCEPT return(0)
-#define YYABORT return(1)
-#define YYERROR goto yyerrlab1
-/* Like YYERROR except do call yyerror.
- This remains here temporarily to ease the
- transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. */
-#define YYFAIL goto yyerrlab
-#define YYRECOVERING() (!!yyerrstatus)
-#define YYBACKUP(token, value) \
-do \
- if (yychar == YYEMPTY && yylen == 1) \
- { yychar = (token), yylval = (value); \
- yychar1 = YYTRANSLATE (yychar); \
- YYPOPSTACK; \
- goto yybackup; \
- } \
- else \
- { yyerror ("syntax error: cannot back up"); YYERROR; } \
-while (0)
-
-#define YYTERROR 1
-#define YYERRCODE 256
-
-#ifndef YYPURE
-#define YYLEX yylex()
-#endif
-
-#ifdef YYPURE
-#ifdef YYLSP_NEEDED
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval, &yylloc)
-#endif
-#else /* not YYLSP_NEEDED */
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval)
-#endif
-#endif /* not YYLSP_NEEDED */
-#endif
-
-/* If nonreentrant, generate the variables here */
-
-#ifndef YYPURE
-
-int yychar; /* the lookahead symbol */
-YYSTYPE yylval; /* the semantic value of the */
- /* lookahead symbol */
-
-#ifdef YYLSP_NEEDED
-YYLTYPE yylloc; /* location data for the lookahead */
- /* symbol */
-#endif
-
-int yynerrs; /* number of parse errors so far */
-#endif /* not YYPURE */
-
-#if YYDEBUG != 0
-int yydebug; /* nonzero means print parse trace */
-/* Since this is uninitialized, it does not stop multiple parsers
- from coexisting. */
-#endif
-
-/* YYINITDEPTH indicates the initial size of the parser's stacks */
-
-#ifndef YYINITDEPTH
-#define YYINITDEPTH 200
-#endif
-
-/* YYMAXDEPTH is the maximum size the stacks can grow to
- (effective only if the built-in stack extension method is used). */
-
-#if YYMAXDEPTH == 0
-#undef YYMAXDEPTH
-#endif
-
-#ifndef YYMAXDEPTH
-#define YYMAXDEPTH 10000
-#endif
-
-/* Prevent warning if -Wstrict-prototypes. */
-#ifdef __GNUC__
-int yyparse (void);
-#endif
-
-#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
-#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
-#else /* not GNU C or C++ */
-#ifndef __cplusplus
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (to, from, count)
- char *to;
- char *from;
- int count;
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#else /* __cplusplus */
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (char *to, char *from, int count)
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#endif
-#endif
-
-#line 196 "/tmp/sky/share/bison.simple"
-
-/* The user can define YYPARSE_PARAM as the name of an argument to be passed
- into yyparse. The argument should have type void *.
- It should actually point to an object.
- Grammar actions can access the variable by casting it
- to the proper pointer type. */
-
-#ifdef YYPARSE_PARAM
-#ifdef __cplusplus
-#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL
-#else /* not __cplusplus */
-#define YYPARSE_PARAM_ARG YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
-#endif /* not __cplusplus */
-#else /* not YYPARSE_PARAM */
-#define YYPARSE_PARAM_ARG
-#define YYPARSE_PARAM_DECL
-#endif /* not YYPARSE_PARAM */
-
-int
-yyparse(YYPARSE_PARAM_ARG)
- YYPARSE_PARAM_DECL
-{
- register int yystate;
- register int yyn;
- register short *yyssp;
- register YYSTYPE *yyvsp;
- int yyerrstatus; /* number of tokens to shift before error messages enabled */
- int yychar1 = 0; /* lookahead token as an internal (translated) token number */
-
- short yyssa[YYINITDEPTH]; /* the state stack */
- YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
-
- short *yyss = yyssa; /* refer to the stacks thru separate pointers */
- YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
-
-#ifdef YYLSP_NEEDED
- YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
- YYLTYPE *yyls = yylsa;
- YYLTYPE *yylsp;
-
-#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
-#else
-#define YYPOPSTACK (yyvsp--, yyssp--)
-#endif
-
- int yystacksize = YYINITDEPTH;
-
-#ifdef YYPURE
- int yychar;
- YYSTYPE yylval;
- int yynerrs;
-#ifdef YYLSP_NEEDED
- YYLTYPE yylloc;
-#endif
-#endif
-
- YYSTYPE yyval; /* the variable used to return */
- /* semantic values from the action */
- /* routines */
-
- int yylen;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Starting parse\n");
-#endif
-
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
-
- /* Initialize stack pointers.
- Waste one element of value and location stack
- so that they stay on the same level as the state stack.
- The wasted elements are never initialized. */
-
- yyssp = yyss - 1;
- yyvsp = yyvs;
-#ifdef YYLSP_NEEDED
- yylsp = yyls;
-#endif
-
-/* Push a new state, which is found in yystate . */
-/* In all cases, when you get here, the value and location stacks
- have just been pushed. so pushing a state here evens the stacks. */
-yynewstate:
-
- *++yyssp = yystate;
-
- if (yyssp >= yyss + yystacksize - 1)
- {
- /* Give user a chance to reallocate the stack */
- /* Use copies of these so that the &'s don't force the real ones into memory. */
- YYSTYPE *yyvs1 = yyvs;
- short *yyss1 = yyss;
-#ifdef YYLSP_NEEDED
- YYLTYPE *yyls1 = yyls;
-#endif
-
- /* Get the current used size of the three stacks, in elements. */
- int size = yyssp - yyss + 1;
-
-#ifdef yyoverflow
- /* Each stack pointer address is followed by the size of
- the data in use in that stack, in bytes. */
-#ifdef YYLSP_NEEDED
- /* This used to be a conditional around just the two extra args,
- but that might be undefined if yyoverflow is a macro. */
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yyls1, size * sizeof (*yylsp),
- &yystacksize);
-#else
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yystacksize);
-#endif
-
- yyss = yyss1; yyvs = yyvs1;
-#ifdef YYLSP_NEEDED
- yyls = yyls1;
-#endif
-#else /* no yyoverflow */
- /* Extend the stack our own way. */
- if (yystacksize >= YYMAXDEPTH)
- {
- yyerror("parser stack overflow");
- return 2;
- }
- yystacksize *= 2;
- if (yystacksize > YYMAXDEPTH)
- yystacksize = YYMAXDEPTH;
- yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
- __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
- yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
- __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
-#ifdef YYLSP_NEEDED
- yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
- __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
-#endif
-#endif /* no yyoverflow */
-
- yyssp = yyss + size - 1;
- yyvsp = yyvs + size - 1;
-#ifdef YYLSP_NEEDED
- yylsp = yyls + size - 1;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Stack size increased to %d\n", yystacksize);
-#endif
-
- if (yyssp >= yyss + yystacksize - 1)
- YYABORT;
- }
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Entering state %d\n", yystate);
-#endif
-
- goto yybackup;
- yybackup:
-
-/* Do appropriate processing given the current state. */
-/* Read a lookahead token if we need one and don't already have one. */
-/* yyresume: */
-
- /* First try to decide what to do without reference to lookahead token. */
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* yychar is either YYEMPTY or YYEOF
- or a valid token in external form. */
-
- if (yychar == YYEMPTY)
- {
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Reading a token: ");
-#endif
- yychar = YYLEX;
- }
-
- /* Convert token to internal form (in yychar1) for indexing tables with */
-
- if (yychar <= 0) /* This means end of input. */
- {
- yychar1 = 0;
- yychar = YYEOF; /* Don't call YYLEX any more */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Now at end of input.\n");
-#endif
- }
- else
- {
- yychar1 = YYTRANSLATE(yychar);
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
- /* Give the individual parser a way to print the precise meaning
- of a token, for further debugging info. */
-#ifdef YYPRINT
- YYPRINT (stderr, yychar, yylval);
-#endif
- fprintf (stderr, ")\n");
- }
-#endif
- }
-
- yyn += yychar1;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
- goto yydefault;
-
- yyn = yytable[yyn];
-
- /* yyn is what to do for this token type in this state.
- Negative => reduce, -yyn is rule number.
- Positive => shift, yyn is new state.
- New state is final state => don't bother to shift,
- just return success.
- 0, or most negative number => error. */
-
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrlab;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- /* Shift the lookahead token. */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
-#endif
-
- /* Discard the token being shifted unless it is eof. */
- if (yychar != YYEOF)
- yychar = YYEMPTY;
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- /* count tokens shifted since error; after three, turn off error status. */
- if (yyerrstatus) yyerrstatus--;
-
- yystate = yyn;
- goto yynewstate;
-
-/* Do the default action for the current state. */
-yydefault:
-
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
-
-/* Do a reduction. yyn is the number of a rule to reduce with. */
-yyreduce:
- yylen = yyr2[yyn];
- if (yylen > 0)
- yyval = yyvsp[1-yylen]; /* implement default value of the action */
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- int i;
-
- fprintf (stderr, "Reducing via rule %d (line %d), ",
- yyn, yyrline[yyn]);
-
- /* Print the symbols being reduced, and their result. */
- for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
- fprintf (stderr, "%s ", yytname[yyrhs[i]]);
- fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
- }
-#endif
-
-
- switch (yyn) {
-
-case 1:
-#line 185 "cexp.y"
-{
- expression_value = yyvsp[0].integer.value;
-#ifdef TEST_EXP_READER
- expression_signedp = yyvsp[0].integer.signedp;
-#endif
- ;
- break;}
-case 3:
-#line 196 "cexp.y"
-{ if (pedantic)
- pedwarn ("comma operator in operand of `#if'");
- yyval.integer = yyvsp[0].integer; ;
- break;}
-case 4:
-#line 203 "cexp.y"
-{ yyval.integer.value = - yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[0].integer.signedp;
- if ((yyval.integer.value & yyvsp[0].integer.value & yyval.integer.signedp) < 0)
- integer_overflow (); ;
- break;}
-case 5:
-#line 208 "cexp.y"
-{ yyval.integer.value = ! yyvsp[0].integer.value;
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 6:
-#line 211 "cexp.y"
-{ yyval.integer = yyvsp[0].integer; ;
- break;}
-case 7:
-#line 213 "cexp.y"
-{ yyval.integer.value = ~ yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[0].integer.signedp; ;
- break;}
-case 8:
-#line 216 "cexp.y"
-{ yyval.integer.value = check_assertion (yyvsp[0].name.address, yyvsp[0].name.length,
- 0, NULL_PTR);
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 9:
-#line 220 "cexp.y"
-{ keyword_parsing = 1; ;
- break;}
-case 10:
-#line 222 "cexp.y"
-{ yyval.integer.value = check_assertion (yyvsp[-4].name.address, yyvsp[-4].name.length,
- 1, yyvsp[-1].keywords);
- keyword_parsing = 0;
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 11:
-#line 227 "cexp.y"
-{ yyval.integer = yyvsp[-1].integer; ;
- break;}
-case 12:
-#line 232 "cexp.y"
-{ yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp;
- if (yyval.integer.signedp)
- {
- yyval.integer.value = yyvsp[-2].integer.value * yyvsp[0].integer.value;
- if (yyvsp[-2].integer.value
- && (yyval.integer.value / yyvsp[-2].integer.value != yyvsp[0].integer.value
- || (yyval.integer.value & yyvsp[-2].integer.value & yyvsp[0].integer.value) < 0))
- integer_overflow ();
- }
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- * yyvsp[0].integer.value); ;
- break;}
-case 13:
-#line 245 "cexp.y"
-{ if (yyvsp[0].integer.value == 0)
- {
- if (!skip_evaluation)
- error ("division by zero in #if");
- yyvsp[0].integer.value = 1;
- }
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp;
- if (yyval.integer.signedp)
- {
- yyval.integer.value = yyvsp[-2].integer.value / yyvsp[0].integer.value;
- if ((yyval.integer.value & yyvsp[-2].integer.value & yyvsp[0].integer.value) < 0)
- integer_overflow ();
- }
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- / yyvsp[0].integer.value); ;
- break;}
-case 14:
-#line 262 "cexp.y"
-{ if (yyvsp[0].integer.value == 0)
- {
- if (!skip_evaluation)
- error ("division by zero in #if");
- yyvsp[0].integer.value = 1;
- }
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp;
- if (yyval.integer.signedp)
- yyval.integer.value = yyvsp[-2].integer.value % yyvsp[0].integer.value;
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- % yyvsp[0].integer.value); ;
- break;}
-case 15:
-#line 275 "cexp.y"
-{ yyval.integer.value = yyvsp[-2].integer.value + yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp;
- if (overflow_sum_sign (yyvsp[-2].integer.value, yyvsp[0].integer.value,
- yyval.integer.value, yyval.integer.signedp))
- integer_overflow (); ;
- break;}
-case 16:
-#line 281 "cexp.y"
-{ yyval.integer.value = yyvsp[-2].integer.value - yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp;
- if (overflow_sum_sign (yyval.integer.value, yyvsp[0].integer.value,
- yyvsp[-2].integer.value, yyval.integer.signedp))
- integer_overflow (); ;
- break;}
-case 17:
-#line 287 "cexp.y"
-{ yyval.integer.signedp = yyvsp[-2].integer.signedp;
- if ((yyvsp[0].integer.value & yyvsp[0].integer.signedp) < 0)
- yyval.integer.value = right_shift (&yyvsp[-2].integer, -yyvsp[0].integer.value);
- else
- yyval.integer.value = left_shift (&yyvsp[-2].integer, yyvsp[0].integer.value); ;
- break;}
-case 18:
-#line 293 "cexp.y"
-{ yyval.integer.signedp = yyvsp[-2].integer.signedp;
- if ((yyvsp[0].integer.value & yyvsp[0].integer.signedp) < 0)
- yyval.integer.value = left_shift (&yyvsp[-2].integer, -yyvsp[0].integer.value);
- else
- yyval.integer.value = right_shift (&yyvsp[-2].integer, yyvsp[0].integer.value); ;
- break;}
-case 19:
-#line 299 "cexp.y"
-{ yyval.integer.value = (yyvsp[-2].integer.value == yyvsp[0].integer.value);
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 20:
-#line 302 "cexp.y"
-{ yyval.integer.value = (yyvsp[-2].integer.value != yyvsp[0].integer.value);
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 21:
-#line 305 "cexp.y"
-{ yyval.integer.signedp = SIGNED;
- if (yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp)
- yyval.integer.value = yyvsp[-2].integer.value <= yyvsp[0].integer.value;
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- <= yyvsp[0].integer.value); ;
- break;}
-case 22:
-#line 312 "cexp.y"
-{ yyval.integer.signedp = SIGNED;
- if (yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp)
- yyval.integer.value = yyvsp[-2].integer.value >= yyvsp[0].integer.value;
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- >= yyvsp[0].integer.value); ;
- break;}
-case 23:
-#line 319 "cexp.y"
-{ yyval.integer.signedp = SIGNED;
- if (yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp)
- yyval.integer.value = yyvsp[-2].integer.value < yyvsp[0].integer.value;
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- < yyvsp[0].integer.value); ;
- break;}
-case 24:
-#line 326 "cexp.y"
-{ yyval.integer.signedp = SIGNED;
- if (yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp)
- yyval.integer.value = yyvsp[-2].integer.value > yyvsp[0].integer.value;
- else
- yyval.integer.value = ((unsigned HOST_WIDEST_INT) yyvsp[-2].integer.value
- > yyvsp[0].integer.value); ;
- break;}
-case 25:
-#line 333 "cexp.y"
-{ yyval.integer.value = yyvsp[-2].integer.value & yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp; ;
- break;}
-case 26:
-#line 336 "cexp.y"
-{ yyval.integer.value = yyvsp[-2].integer.value ^ yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp; ;
- break;}
-case 27:
-#line 339 "cexp.y"
-{ yyval.integer.value = yyvsp[-2].integer.value | yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[-2].integer.signedp & yyvsp[0].integer.signedp; ;
- break;}
-case 28:
-#line 342 "cexp.y"
-{ skip_evaluation += !yyvsp[-1].integer.value; ;
- break;}
-case 29:
-#line 344 "cexp.y"
-{ skip_evaluation -= !yyvsp[-3].integer.value;
- yyval.integer.value = (yyvsp[-3].integer.value && yyvsp[0].integer.value);
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 30:
-#line 348 "cexp.y"
-{ skip_evaluation += !!yyvsp[-1].integer.value; ;
- break;}
-case 31:
-#line 350 "cexp.y"
-{ skip_evaluation -= !!yyvsp[-3].integer.value;
- yyval.integer.value = (yyvsp[-3].integer.value || yyvsp[0].integer.value);
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 32:
-#line 354 "cexp.y"
-{ skip_evaluation += !yyvsp[-1].integer.value; ;
- break;}
-case 33:
-#line 356 "cexp.y"
-{ skip_evaluation += !!yyvsp[-4].integer.value - !yyvsp[-4].integer.value; ;
- break;}
-case 34:
-#line 358 "cexp.y"
-{ skip_evaluation -= !!yyvsp[-6].integer.value;
- yyval.integer.value = yyvsp[-6].integer.value ? yyvsp[-3].integer.value : yyvsp[0].integer.value;
- yyval.integer.signedp = yyvsp[-3].integer.signedp & yyvsp[0].integer.signedp; ;
- break;}
-case 35:
-#line 362 "cexp.y"
-{ yyval.integer = yylval.integer; ;
- break;}
-case 36:
-#line 364 "cexp.y"
-{ yyval.integer = yylval.integer; ;
- break;}
-case 37:
-#line 366 "cexp.y"
-{ if (warn_undef && !skip_evaluation)
- warning ("`%.*s' is not defined",
- yyvsp[0].name.length, yyvsp[0].name.address);
- yyval.integer.value = 0;
- yyval.integer.signedp = SIGNED; ;
- break;}
-case 38:
-#line 374 "cexp.y"
-{ yyval.keywords = 0; ;
- break;}
-case 39:
-#line 376 "cexp.y"
-{ struct arglist *temp;
- yyval.keywords = (struct arglist *) xmalloc (sizeof (struct arglist));
- yyval.keywords->next = yyvsp[-2].keywords;
- yyval.keywords->name = (U_CHAR *) "(";
- yyval.keywords->length = 1;
- temp = yyval.keywords;
- while (temp != 0 && temp->next != 0)
- temp = temp->next;
- temp->next = (struct arglist *) xmalloc (sizeof (struct arglist));
- temp->next->next = yyvsp[0].keywords;
- temp->next->name = (U_CHAR *) ")";
- temp->next->length = 1; ;
- break;}
-case 40:
-#line 389 "cexp.y"
-{ yyval.keywords = (struct arglist *) xmalloc (sizeof (struct arglist));
- yyval.keywords->name = yyvsp[-1].name.address;
- yyval.keywords->length = yyvsp[-1].name.length;
- yyval.keywords->next = yyvsp[0].keywords; ;
- break;}
-}
- /* the action file gets copied in in place of this dollarsign */
-#line 498 "/tmp/sky/share/bison.simple"
-
- yyvsp -= yylen;
- yyssp -= yylen;
-#ifdef YYLSP_NEEDED
- yylsp -= yylen;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
- *++yyvsp = yyval;
-
-#ifdef YYLSP_NEEDED
- yylsp++;
- if (yylen == 0)
- {
- yylsp->first_line = yylloc.first_line;
- yylsp->first_column = yylloc.first_column;
- yylsp->last_line = (yylsp-1)->last_line;
- yylsp->last_column = (yylsp-1)->last_column;
- yylsp->text = 0;
- }
- else
- {
- yylsp->last_line = (yylsp+yylen-1)->last_line;
- yylsp->last_column = (yylsp+yylen-1)->last_column;
- }
-#endif
-
- /* Now "shift" the result of the reduction.
- Determine what state that goes to,
- based on the state we popped back to
- and the rule number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
- if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTBASE];
-
- goto yynewstate;
-
-yyerrlab: /* here on detecting error */
-
- if (! yyerrstatus)
- /* If not already recovering from an error, report this error. */
- {
- ++yynerrs;
-
-#ifdef YYERROR_VERBOSE
- yyn = yypact[yystate];
-
- if (yyn > YYFLAG && yyn < YYLAST)
- {
- int size = 0;
- char *msg;
- int x, count;
-
- count = 0;
- /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- size += strlen(yytname[x]) + 15, count++;
- msg = (char *) malloc(size + 15);
- if (msg != 0)
- {
- strcpy(msg, "parse error");
-
- if (count < 5)
- {
- count = 0;
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- {
- strcat(msg, count == 0 ? ", expecting `" : " or `");
- strcat(msg, yytname[x]);
- strcat(msg, "'");
- count++;
- }
- }
- yyerror(msg);
- free(msg);
- }
- else
- yyerror ("parse error; also virtual memory exceeded");
- }
- else
-#endif /* YYERROR_VERBOSE */
- yyerror("parse error");
- }
-
- goto yyerrlab1;
-yyerrlab1: /* here on error raised explicitly by an action */
-
- if (yyerrstatus == 3)
- {
- /* if just tried and failed to reuse lookahead token after an error, discard it. */
-
- /* return failure if at end of input */
- if (yychar == YYEOF)
- YYABORT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
-#endif
-
- yychar = YYEMPTY;
- }
-
- /* Else will try to reuse lookahead token
- after shifting the error token. */
-
- yyerrstatus = 3; /* Each real token shifted decrements this */
-
- goto yyerrhandle;
-
-yyerrdefault: /* current state does not do anything special for the error token. */
-
-#if 0
- /* This is wrong; only states that explicitly want error tokens
- should shift them. */
- yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
- if (yyn) goto yydefault;
-#endif
-
-yyerrpop: /* pop the current state because it cannot handle the error token */
-
- if (yyssp == yyss) YYABORT;
- yyvsp--;
- yystate = *--yyssp;
-#ifdef YYLSP_NEEDED
- yylsp--;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "Error: state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
-yyerrhandle:
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yyerrdefault;
-
- yyn += YYTERROR;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
- goto yyerrdefault;
-
- yyn = yytable[yyn];
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrpop;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrpop;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting error token, ");
-#endif
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- yystate = yyn;
- goto yynewstate;
-}
-#line 394 "cexp.y"
-
-
-/* During parsing of a C expression, the pointer to the next character
- is in this variable. */
-
-static char *lexptr;
-
-/* Take care of parsing a number (anything that starts with a digit).
- Set yylval and return the token type; update lexptr.
- LEN is the number of characters in it. */
-
-/* maybe needs to actually deal with floating point numbers */
-
-static int
-parse_number (olen)
- int olen;
-{
- register char *p = lexptr;
- register int c;
- register unsigned HOST_WIDEST_INT n = 0, nd, max_over_base;
- register int base = 10;
- register int len = olen;
- register int overflow = 0;
- register int digit, largest_digit = 0;
- int spec_long = 0;
-
- yylval.integer.signedp = SIGNED;
-
- if (*p == '0') {
- base = 8;
- if (len >= 3 && (p[1] == 'x' || p[1] == 'X')) {
- p += 2;
- base = 16;
- len -= 2;
- }
- }
-
- max_over_base = (unsigned HOST_WIDEST_INT) -1 / base;
-
- for (; len > 0; len--) {
- c = *p++;
-
- if (c >= '0' && c <= '9')
- digit = c - '0';
- else if (base == 16 && c >= 'a' && c <= 'f')
- digit = c - 'a' + 10;
- else if (base == 16 && c >= 'A' && c <= 'F')
- digit = c - 'A' + 10;
- else {
- /* `l' means long, and `u' means unsigned. */
- while (1) {
- if (c == 'l' || c == 'L')
- {
- if (!pedantic < spec_long)
- yyerror ("too many `l's in integer constant");
- spec_long++;
- }
- else if (c == 'u' || c == 'U')
- {
- if (! yylval.integer.signedp)
- yyerror ("two `u's in integer constant");
- yylval.integer.signedp = UNSIGNED;
- }
- else {
- if (c == '.' || c == 'e' || c == 'E' || c == 'p' || c == 'P')
- yyerror ("Floating point numbers not allowed in #if expressions");
- else
- yyerror ("missing white space after number `%.*s'",
- (int) (p - lexptr - 1), lexptr);
- }
-
- if (--len == 0)
- break;
- c = *p++;
- }
- /* Don't look for any more digits after the suffixes. */
- break;
- }
- if (largest_digit < digit)
- largest_digit = digit;
- nd = n * base + digit;
- overflow |= (max_over_base < n) | (nd < n);
- n = nd;
- }
-
- if (base <= largest_digit)
- pedwarn ("integer constant contains digits beyond the radix");
-
- if (overflow)
- pedwarn ("integer constant out of range");
-
- /* If too big to be signed, consider it unsigned. */
- if (((HOST_WIDEST_INT) n & yylval.integer.signedp) < 0)
- {
- if (base == 10)
- warning ("integer constant is so large that it is unsigned");
- yylval.integer.signedp = UNSIGNED;
- }
-
- lexptr = p;
- yylval.integer.value = n;
- return INT;
-}
-
-struct token {
- const char *operator;
- int token;
-};
-
-static struct token tokentab2[] = {
- {"&&", AND},
- {"||", OR},
- {"<<", LSH},
- {">>", RSH},
- {"==", EQUAL},
- {"!=", NOTEQUAL},
- {"<=", LEQ},
- {">=", GEQ},
- {"++", ERROR},
- {"--", ERROR},
- {NULL, ERROR}
-};
-
-/* Read one token, getting characters through lexptr. */
-
-static int
-yylex ()
-{
- register int c;
- register int namelen;
- register unsigned char *tokstart;
- register struct token *toktab;
- int wide_flag;
- HOST_WIDEST_INT mask;
-
- retry:
-
- tokstart = (unsigned char *) lexptr;
- c = *tokstart;
- /* See if it is a special token of length 2. */
- if (! keyword_parsing)
- for (toktab = tokentab2; toktab->operator != NULL; toktab++)
- if (c == *toktab->operator && tokstart[1] == toktab->operator[1]) {
- lexptr += 2;
- if (toktab->token == ERROR)
- yyerror ("`%s' not allowed in operand of `#if'", toktab->operator);
- return toktab->token;
- }
-
- switch (c) {
- case '\n':
- return 0;
-
- case ' ':
- case '\t':
- case '\r':
- lexptr++;
- goto retry;
-
- case 'L':
- /* Capital L may start a wide-string or wide-character constant. */
- if (lexptr[1] == '\'')
- {
- lexptr++;
- wide_flag = 1;
- mask = MAX_WCHAR_TYPE_MASK;
- goto char_constant;
- }
- if (lexptr[1] == '"')
- {
- lexptr++;
- wide_flag = 1;
- mask = MAX_WCHAR_TYPE_MASK;
- goto string_constant;
- }
- break;
-
- case '\'':
- wide_flag = 0;
- mask = MAX_CHAR_TYPE_MASK;
- char_constant:
- lexptr++;
- if (keyword_parsing) {
- char *start_ptr = lexptr - 1;
- while (1) {
- c = *lexptr++;
- if (c == '\\')
- c = parse_escape (&lexptr, mask);
- else if (c == '\'')
- break;
- }
- yylval.name.address = tokstart;
- yylval.name.length = lexptr - start_ptr;
- return NAME;
- }
-
- /* This code for reading a character constant
- handles multicharacter constants and wide characters.
- It is mostly copied from c-lex.c. */
- {
- register HOST_WIDEST_INT result = 0;
- register int num_chars = 0;
- int chars_seen = 0;
- unsigned width = MAX_CHAR_TYPE_SIZE;
- int max_chars;
-#ifdef MULTIBYTE_CHARS
- int longest_char = local_mb_cur_max ();
- char *token_buffer = (char *) alloca (longest_char);
- (void) local_mbtowc (NULL_PTR, NULL_PTR, 0);
-#endif
-
- max_chars = MAX_LONG_TYPE_SIZE / width;
- if (wide_flag)
- width = MAX_WCHAR_TYPE_SIZE;
-
- while (1)
- {
- c = *lexptr++;
-
- if (c == '\'' || c == EOF)
- break;
-
- ++chars_seen;
- if (c == '\\')
- {
- c = parse_escape (&lexptr, mask);
- }
- else
- {
-#ifdef MULTIBYTE_CHARS
- wchar_t wc;
- int i;
- int char_len = -1;
- for (i = 1; i <= longest_char; ++i)
- {
- token_buffer[i - 1] = c;
- char_len = local_mbtowc (& wc, token_buffer, i);
- if (char_len != -1)
- break;
- c = *lexptr++;
- }
- if (char_len > 1)
- {
- /* mbtowc sometimes needs an extra char before accepting */
- if (char_len < i)
- lexptr--;
- if (! wide_flag)
- {
- /* Merge character into result; ignore excess chars. */
- for (i = 1; i <= char_len; ++i)
- {
- if (i > max_chars)
- break;
- if (width < HOST_BITS_PER_INT)
- result = (result << width)
- | (token_buffer[i - 1]
- & ((1 << width) - 1));
- else
- result = token_buffer[i - 1];
- }
- num_chars += char_len;
- continue;
- }
- }
- else
- {
- if (char_len == -1)
- warning ("Ignoring invalid multibyte character");
- }
- if (wide_flag)
- c = wc;
-#endif /* ! MULTIBYTE_CHARS */
- }
-
- if (wide_flag)
- {
- if (chars_seen == 1) /* only keep the first one */
- result = c;
- continue;
- }
-
- /* Merge character into result; ignore excess chars. */
- num_chars++;
- if (num_chars <= max_chars)
- {
- if (width < HOST_BITS_PER_INT)
- result = (result << width) | (c & ((1 << width) - 1));
- else
- result = c;
- }
- }
-
- if (c != '\'')
- error ("malformatted character constant");
- else if (chars_seen == 0)
- error ("empty character constant");
- else if (num_chars > max_chars)
- {
- num_chars = max_chars;
- error ("character constant too long");
- }
- else if (chars_seen != 1 && ! traditional)
- warning ("multi-character character constant");
-
- /* If char type is signed, sign-extend the constant. */
- if (! wide_flag)
- {
- int num_bits = num_chars * width;
- if (num_bits == 0)
- /* We already got an error; avoid invalid shift. */
- yylval.integer.value = 0;
- else if (lookup ((U_CHAR *) "__CHAR_UNSIGNED__",
- sizeof ("__CHAR_UNSIGNED__") - 1, -1)
- || ((result >> (num_bits - 1)) & 1) == 0)
- yylval.integer.value
- = result & (~ (unsigned HOST_WIDEST_INT) 0
- >> (HOST_BITS_PER_WIDEST_INT - num_bits));
- else
- yylval.integer.value
- = result | ~(~ (unsigned HOST_WIDEST_INT) 0
- >> (HOST_BITS_PER_WIDEST_INT - num_bits));
- }
- else
- {
- yylval.integer.value = result;
- }
- }
-
- /* This is always a signed type. */
- yylval.integer.signedp = SIGNED;
-
- return CHAR;
-
- /* some of these chars are invalid in constant expressions;
- maybe do something about them later */
- case '/':
- case '+':
- case '-':
- case '*':
- case '%':
- case '|':
- case '&':
- case '^':
- case '~':
- case '!':
- case '@':
- case '<':
- case '>':
- case '[':
- case ']':
- case '.':
- case '?':
- case ':':
- case '=':
- case '{':
- case '}':
- case ',':
- case '#':
- if (keyword_parsing)
- break;
- case '(':
- case ')':
- lexptr++;
- return c;
-
- case '"':
- mask = MAX_CHAR_TYPE_MASK;
- string_constant:
- if (keyword_parsing) {
- char *start_ptr = lexptr;
- lexptr++;
- while (1) {
- c = *lexptr++;
- if (c == '\\')
- c = parse_escape (&lexptr, mask);
- else if (c == '"')
- break;
- }
- yylval.name.address = tokstart;
- yylval.name.length = lexptr - start_ptr;
- return NAME;
- }
- yyerror ("string constants not allowed in #if expressions");
- return ERROR;
- }
-
- if (c >= '0' && c <= '9' && !keyword_parsing) {
- /* It's a number */
- for (namelen = 1; ; namelen++) {
- int d = tokstart[namelen];
- if (! ((is_idchar[d] || d == '.')
- || ((d == '-' || d == '+')
- && (c == 'e' || c == 'E'
- || ((c == 'p' || c == 'P') && ! c89))
- && ! traditional)))
- break;
- c = d;
- }
- return parse_number (namelen);
- }
-
- /* It is a name. See how long it is. */
-
- if (keyword_parsing) {
- for (namelen = 0;; namelen++) {
- if (is_space[tokstart[namelen]])
- break;
- if (tokstart[namelen] == '(' || tokstart[namelen] == ')')
- break;
- if (tokstart[namelen] == '"' || tokstart[namelen] == '\'')
- break;
- }
- } else {
- if (!is_idstart[c]) {
- yyerror ("Invalid token in expression");
- return ERROR;
- }
-
- for (namelen = 0; is_idchar[tokstart[namelen]]; namelen++)
- ;
- }
-
- lexptr += namelen;
- yylval.name.address = tokstart;
- yylval.name.length = namelen;
- return NAME;
-}
-
-
-/* Parse a C escape sequence. STRING_PTR points to a variable
- containing a pointer to the string to parse. That pointer
- is updated past the characters we use. The value of the
- escape sequence is returned.
-
- RESULT_MASK is used to mask out the result;
- an error is reported if bits are lost thereby.
-
- A negative value means the sequence \ newline was seen,
- which is supposed to be equivalent to nothing at all.
-
- If \ is followed by a null character, we return a negative
- value and leave the string pointer pointing at the null character.
-
- If \ is followed by 000, we return 0 and leave the string pointer
- after the zeros. A value of 0 does not mean end of string. */
-
-HOST_WIDEST_INT
-parse_escape (string_ptr, result_mask)
- char **string_ptr;
- HOST_WIDEST_INT result_mask;
-{
- register int c = *(*string_ptr)++;
- switch (c)
- {
- case 'a':
- return TARGET_BELL;
- case 'b':
- return TARGET_BS;
- case 'e':
- case 'E':
- if (pedantic)
- pedwarn ("non-ANSI-standard escape sequence, `\\%c'", c);
- return 033;
- case 'f':
- return TARGET_FF;
- case 'n':
- return TARGET_NEWLINE;
- case 'r':
- return TARGET_CR;
- case 't':
- return TARGET_TAB;
- case 'v':
- return TARGET_VT;
- case '\n':
- return -2;
- case 0:
- (*string_ptr)--;
- return 0;
-
- case '0':
- case '1':
- case '2':
- case '3':
- case '4':
- case '5':
- case '6':
- case '7':
- {
- register HOST_WIDEST_INT i = c - '0';
- register int count = 0;
- while (++count < 3)
- {
- c = *(*string_ptr)++;
- if (c >= '0' && c <= '7')
- i = (i << 3) + c - '0';
- else
- {
- (*string_ptr)--;
- break;
- }
- }
- if (i != (i & result_mask))
- {
- i &= result_mask;
- pedwarn ("octal escape sequence out of range");
- }
- return i;
- }
- case 'x':
- {
- register unsigned HOST_WIDEST_INT i = 0, overflow = 0;
- register int digits_found = 0, digit;
- for (;;)
- {
- c = *(*string_ptr)++;
- if (c >= '0' && c <= '9')
- digit = c - '0';
- else if (c >= 'a' && c <= 'f')
- digit = c - 'a' + 10;
- else if (c >= 'A' && c <= 'F')
- digit = c - 'A' + 10;
- else
- {
- (*string_ptr)--;
- break;
- }
- overflow |= i ^ (i << 4 >> 4);
- i = (i << 4) + digit;
- digits_found = 1;
- }
- if (!digits_found)
- yyerror ("\\x used with no following hex digits");
- if (overflow | (i != (i & result_mask)))
- {
- i &= result_mask;
- pedwarn ("hex escape sequence out of range");
- }
- return i;
- }
- default:
- return c;
- }
-}
-
-static void
-integer_overflow ()
-{
- if (!skip_evaluation && pedantic)
- pedwarn ("integer overflow in preprocessor expression");
-}
-
-static HOST_WIDEST_INT
-left_shift (a, b)
- struct constant *a;
- unsigned HOST_WIDEST_INT b;
-{
- /* It's unclear from the C standard whether shifts can overflow.
- The following code ignores overflow; perhaps a C standard
- interpretation ruling is needed. */
- if (b >= HOST_BITS_PER_WIDEST_INT)
- return 0;
- else
- return (unsigned HOST_WIDEST_INT) a->value << b;
-}
-
-static HOST_WIDEST_INT
-right_shift (a, b)
- struct constant *a;
- unsigned HOST_WIDEST_INT b;
-{
- if (b >= HOST_BITS_PER_WIDEST_INT)
- return a->signedp ? a->value >> (HOST_BITS_PER_WIDEST_INT - 1) : 0;
- else if (a->signedp)
- return a->value >> b;
- else
- return (unsigned HOST_WIDEST_INT) a->value >> b;
-}
-
-/* This page contains the entry point to this file. */
-
-/* Parse STRING as an expression, and complain if this fails
- to use up all of the contents of STRING.
- STRING may contain '\0' bytes; it is terminated by the first '\n'
- outside a string constant, so that we can diagnose '\0' properly.
- If WARN_UNDEFINED is nonzero, warn if undefined identifiers are evaluated.
- We do not support C comments. They should be removed before
- this function is called. */
-
-HOST_WIDEST_INT
-parse_c_expression (string, warn_undefined)
- char *string;
- int warn_undefined;
-{
- lexptr = string;
- warn_undef = warn_undefined;
-
- /* if there is some sort of scanning error, just return 0 and assume
- the parsing routine has printed an error message somewhere.
- there is surely a better thing to do than this. */
- if (setjmp (parse_return_error))
- return 0;
-
- if (yyparse () != 0)
- abort ();
-
- if (*lexptr != '\n')
- error ("Junk after end of expression.");
-
- return expression_value; /* set by yyparse () */
-}
-
-static void
-yyerror VPROTO ((const char * msgid, ...))
-{
-#ifndef ANSI_PROTOTYPES
- const char * msgid;
-#endif
- va_list args;
-
- VA_START (args, msgid);
-
-#ifndef ANSI_PROTOTYPES
- msgid = va_arg (args, const char *);
-#endif
-
- verror (msgid, args);
- va_end (args);
- skip_evaluation = 0;
- longjmp (parse_return_error, 1);
-}
-
-
-#ifdef TEST_EXP_READER
-
-#if YYDEBUG
-extern int yydebug;
-#endif
-
-int pedantic;
-int traditional;
-int c89;
-
-int main PROTO((int, char **));
-static void initialize_random_junk PROTO((void));
-static void print_unsigned_host_widest_int PROTO((unsigned HOST_WIDEST_INT));
-
-/* Main program for testing purposes. */
-int
-main (argc, argv)
- int argc;
- char **argv;
-{
- int n, c;
- char buf[1024];
- unsigned HOST_WIDEST_INT u;
-
- pedantic = 1 < argc;
- traditional = 2 < argc;
- c89 = 3 < argc;
-#if YYDEBUG
- yydebug = 4 < argc;
-#endif
- initialize_random_junk ();
-
- for (;;) {
- printf ("enter expression: ");
- n = 0;
- while ((buf[n] = c = getchar ()) != '\n' && c != EOF)
- n++;
- if (c == EOF)
- break;
- parse_c_expression (buf, 1);
- printf ("parser returned ");
- u = (unsigned HOST_WIDEST_INT) expression_value;
- if (expression_value < 0 && expression_signedp) {
- u = -u;
- printf ("-");
- }
- if (u == 0)
- printf ("0");
- else
- print_unsigned_host_widest_int (u);
- if (! expression_signedp)
- printf("u");
- printf ("\n");
- }
-
- return 0;
-}
-
-static void
-print_unsigned_host_widest_int (u)
- unsigned HOST_WIDEST_INT u;
-{
- if (u) {
- print_unsigned_host_widest_int (u / 10);
- putchar ('0' + (int) (u % 10));
- }
-}
-
-/* table to tell if char can be part of a C identifier. */
-unsigned char is_idchar[256];
-/* table to tell if char can be first char of a c identifier. */
-unsigned char is_idstart[256];
-/* table to tell if c is horizontal or vertical space. */
-unsigned char is_space[256];
-
-/*
- * initialize random junk in the hash table and maybe other places
- */
-static void
-initialize_random_junk ()
-{
- register int i;
-
- /*
- * Set up is_idchar and is_idstart tables. These should be
- * faster than saying (is_alpha (c) || c == '_'), etc.
- * Must do set up these things before calling any routines tthat
- * refer to them.
- */
- for (i = 'a'; i <= 'z'; i++) {
- ++is_idchar[i - 'a' + 'A'];
- ++is_idchar[i];
- ++is_idstart[i - 'a' + 'A'];
- ++is_idstart[i];
- }
- for (i = '0'; i <= '9'; i++)
- ++is_idchar[i];
- ++is_idchar['_'];
- ++is_idstart['_'];
- ++is_idchar['$'];
- ++is_idstart['$'];
-
- ++is_space[' '];
- ++is_space['\t'];
- ++is_space['\v'];
- ++is_space['\f'];
- ++is_space['\n'];
- ++is_space['\r'];
-}
-
-void
-error VPROTO ((char * msgid, ...))
-{
-#ifndef ANSI_PROTOTYPES
- char * msgid;
-#endif
- va_list args;
-
- VA_START (args, msgid);
-
-#ifndef ANSI_PROTOTYPES
- msgid = va_arg (args, char *);
-#endif
-
- fprintf (stderr, "error: ");
- vfprintf (stderr, _(msgid), args);
- fprintf (stderr, "\n");
- va_end (args);
-}
-
-void
-pedwarn VPROTO ((char * msgid, ...))
-{
-#ifndef ANSI_PROTOTYPES
- char * msgid;
-#endif
- va_list args;
-
- VA_START (args, msgid);
-
-#ifndef ANSI_PROTOTYPES
- msgid = va_arg (args, char *);
-#endif
-
- fprintf (stderr, "pedwarn: ");
- vfprintf (stderr, _(msgid), args);
- fprintf (stderr, "\n");
- va_end (args);
-}
-
-void
-warning VPROTO ((char * msgid, ...))
-{
-#ifndef ANSI_PROTOTYPES
- char * msgid;
-#endif
- va_list args;
-
- VA_START (args, msgid);
-
-#ifndef ANSI_PROTOTYPES
- msgid = va_arg (args, char *);
-#endif
-
- fprintf (stderr, "warning: ");
- vfprintf (stderr, _(msgid), args);
- fprintf (stderr, "\n");
- va_end (args);
-}
-
-
-int
-check_assertion (name, sym_length, tokens_specified, tokens)
- U_CHAR *name;
- int sym_length;
- int tokens_specified;
- struct arglist *tokens;
-{
- return 0;
-}
-
-struct hashnode *
-lookup (name, len, hash)
- U_CHAR *name;
- int len;
- int hash;
-{
- return (DEFAULT_SIGNED_CHAR) ? 0 : ((struct hashnode *) -1);
-}
-
-PTR
-xmalloc (size)
- size_t size;
-{
- return (PTR) malloc (size);
-}
-#endif
diff --git a/gnu/egcs/gcc/cp/Make-lang.in b/gnu/egcs/gcc/cp/Make-lang.in
index d5d4e4d4cef..8c675cb639c 100644
--- a/gnu/egcs/gcc/cp/Make-lang.in
+++ b/gnu/egcs/gcc/cp/Make-lang.in
@@ -78,13 +78,12 @@ C++ c++: cc1plus$(exeext)
g++spec.o: $(srcdir)/cp/g++spec.c
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/cp/g++spec.c
-$(INTL_TARGETS): $(srcdir)/cp/parse.c
-$(srcdir)/cp/parse.c: $(srcdir)/cp/parse.y
- @cp_srcdir=`sed -n 's/^srcdir[ ]*=[ ]*//p' cp/Makefile` && \
- echo "cd cp && $(MAKE) $$cp_srcdir/parse.c" && \
+$(INTL_TARGETS): parse.c
+parse.c: $(srcdir)/cp/parse.y
+ @echo "cd cp && $(MAKE) parse.c" && \
cd cp && \
$(MAKE) $(SUBDIR_FLAGS_TO_PASS) $(CXX_FLAGS_TO_PASS) \
- $$cp_srcdir/parse.c
+ parse.c
# Create the compiler driver for g++.
GXX_OBJS = gcc.o g++spec.o intl.o prefix.o version.o
diff --git a/gnu/egcs/gcc/cp/Makefile.in b/gnu/egcs/gcc/cp/Makefile.in
index 616525c29cf..ddf96aa5ed3 100644
--- a/gnu/egcs/gcc/cp/Makefile.in
+++ b/gnu/egcs/gcc/cp/Makefile.in
@@ -215,8 +215,8 @@ RTL_H = $(srcdir)/../rtl.h $(srcdir)/../rtl.def \
TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h $(srcdir)/../tree.def \
$(srcdir)/../machmode.h $(srcdir)/../machmode.def
CXX_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
-PARSE_H = $(srcdir)/parse.h
-PARSE_C = $(srcdir)/parse.c
+PARSE_H = parse.h
+PARSE_C = parse.c
EXPR_H = $(srcdir)/../expr.h ../insn-codes.h
parse.o : $(PARSE_C) $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h lex.h \
@@ -229,8 +229,8 @@ CONFLICTS = expect 30 shift/reduce conflicts and 42 reduce/reduce conflicts.
$(PARSE_H) : $(PARSE_C)
$(PARSE_C) : $(srcdir)/parse.y
@echo $(CONFLICTS)
- cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o parse.c parse.y
- cd $(srcdir); grep '^#define[ ]*YYEMPTY' parse.c >>parse.h
+ $(BISON) $(BISONFLAGS) -d -o parse.c $(srcdir)/parse.y
+ grep '^#define[ ]*YYEMPTY' parse.c >>parse.h
#$(PARSE_C) $(PARSE_H) : stamp-parse ; @true
#stamp-parse: $(srcdir)/parse.y
# @echo $(CONFLICTS)
diff --git a/gnu/egcs/gcc/cp/parse.c b/gnu/egcs/gcc/cp/parse.c
deleted file mode 100644
index f5285b3a885..00000000000
--- a/gnu/egcs/gcc/cp/parse.c
+++ /dev/null
@@ -1,8393 +0,0 @@
-
-/* A Bison parser, made from parse.y
- by GNU Bison version 1.25
- */
-
-#define YYBISON 1 /* Identify Bison output. */
-
-#define IDENTIFIER 258
-#define TYPENAME 259
-#define SELFNAME 260
-#define PFUNCNAME 261
-#define SCSPEC 262
-#define TYPESPEC 263
-#define CV_QUALIFIER 264
-#define CONSTANT 265
-#define STRING 266
-#define ELLIPSIS 267
-#define SIZEOF 268
-#define ENUM 269
-#define IF 270
-#define ELSE 271
-#define WHILE 272
-#define DO 273
-#define FOR 274
-#define SWITCH 275
-#define CASE 276
-#define DEFAULT 277
-#define BREAK 278
-#define CONTINUE 279
-#define RETURN_KEYWORD 280
-#define GOTO 281
-#define ASM_KEYWORD 282
-#define TYPEOF 283
-#define ALIGNOF 284
-#define SIGOF 285
-#define ATTRIBUTE 286
-#define EXTENSION 287
-#define LABEL 288
-#define REALPART 289
-#define IMAGPART 290
-#define AGGR 291
-#define VISSPEC 292
-#define DELETE 293
-#define NEW 294
-#define THIS 295
-#define OPERATOR 296
-#define CXX_TRUE 297
-#define CXX_FALSE 298
-#define NAMESPACE 299
-#define TYPENAME_KEYWORD 300
-#define USING 301
-#define LEFT_RIGHT 302
-#define TEMPLATE 303
-#define TYPEID 304
-#define DYNAMIC_CAST 305
-#define STATIC_CAST 306
-#define REINTERPRET_CAST 307
-#define CONST_CAST 308
-#define SCOPE 309
-#define EMPTY 310
-#define PTYPENAME 311
-#define NSNAME 312
-#define THROW 313
-#define ASSIGN 314
-#define OROR 315
-#define ANDAND 316
-#define MIN_MAX 317
-#define EQCOMPARE 318
-#define ARITHCOMPARE 319
-#define LSHIFT 320
-#define RSHIFT 321
-#define POINTSAT_STAR 322
-#define DOT_STAR 323
-#define UNARY 324
-#define PLUSPLUS 325
-#define MINUSMINUS 326
-#define HYPERUNARY 327
-#define PAREN_STAR_PAREN 328
-#define POINTSAT 329
-#define TRY 330
-#define CATCH 331
-#define PRE_PARSED_FUNCTION_DECL 332
-#define EXTERN_LANG_STRING 333
-#define ALL 334
-#define PRE_PARSED_CLASS_DECL 335
-#define DEFARG 336
-#define DEFARG_MARKER 337
-#define TYPENAME_DEFN 338
-#define IDENTIFIER_DEFN 339
-#define PTYPENAME_DEFN 340
-#define END_OF_LINE 341
-#define END_OF_SAVED_INPUT 342
-
-#line 29 "parse.y"
-
-/* Cause the `yydebug' variable to be defined. */
-#define YYDEBUG 1
-
-#include "config.h"
-
-#include "system.h"
-
-#include "tree.h"
-#include "input.h"
-#include "flags.h"
-#include "lex.h"
-#include "cp-tree.h"
-#include "output.h"
-#include "except.h"
-#include "toplev.h"
-
-/* Since parsers are distinct for each language, put the language string
- definition here. (fnf) */
-char *language_string = "GNU C++";
-
-extern tree void_list_node;
-extern struct obstack permanent_obstack;
-
-extern int end_of_file;
-
-/* Like YYERROR but do call yyerror. */
-#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
-
-#define OP0(NODE) (TREE_OPERAND (NODE, 0))
-#define OP1(NODE) (TREE_OPERAND (NODE, 1))
-
-/* Contains the statement keyword (if/while/do) to include in an
- error message if the user supplies an empty conditional expression. */
-static const char *cond_stmt_keyword;
-
-static tree empty_parms PROTO((void));
-static int parse_decl PROTO((tree, tree, tree, int, tree *));
-
-/* Nonzero if we have an `extern "C"' acting as an extern specifier. */
-int have_extern_spec;
-int used_extern_spec;
-
-/* Cons up an empty parameter list. */
-#ifdef __GNUC__
-__inline
-#endif
-static tree
-empty_parms ()
-{
- tree parms;
-
- if (strict_prototype
- || current_class_type != NULL)
- parms = void_list_node;
- else
- parms = NULL_TREE;
- return parms;
-}
-
-
-#line 93 "parse.y"
-typedef union {long itype; tree ttype; char *strtype; enum tree_code code; flagged_type_tree ftype; } YYSTYPE;
-#line 287 "parse.y"
-
-/* List of types and structure classes of the current declaration. */
-static tree current_declspecs;
-
-/* List of prefix attributes in effect.
- Prefix attributes are parsed by the reserved_declspecs and declmods
- rules. They create a list that contains *both* declspecs and attrs. */
-/* ??? It is not clear yet that all cases where an attribute can now appear in
- a declspec list have been updated. */
-static tree prefix_attributes;
-
-/* When defining an aggregate, this is the kind of the most recent one
- being defined. (For example, this might be class_type_node.) */
-static tree current_aggr;
-
-/* When defining an enumeration, this is the type of the enumeration. */
-static tree current_enum_type;
-
-/* Tell yyparse how to print a token's value, if yydebug is set. */
-
-#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
-extern void yyprint PROTO((FILE *, int, YYSTYPE));
-extern tree combine_strings PROTO((tree));
-
-static int
-parse_decl(declarator, specs_attrs, attributes, initialized, decl)
- tree declarator;
- tree specs_attrs;
- tree attributes;
- int initialized;
- tree* decl;
-{
- int sm;
-
- split_specs_attrs (specs_attrs, &current_declspecs, &prefix_attributes);
- if (current_declspecs
- && TREE_CODE (current_declspecs) != TREE_LIST)
- current_declspecs = build_decl_list (NULL_TREE, current_declspecs);
- if (have_extern_spec && !used_extern_spec)
- {
- current_declspecs = decl_tree_cons (NULL_TREE,
- get_identifier ("extern"),
- current_declspecs);
- used_extern_spec = 1;
- }
- sm = suspend_momentary ();
- *decl = start_decl (declarator, current_declspecs, initialized,
- attributes, prefix_attributes);
- return sm;
-}
-#include <stdio.h>
-
-#ifndef __cplusplus
-#ifndef __STDC__
-#define const
-#endif
-#endif
-
-
-
-#define YYFINAL 1668
-#define YYFLAG -32768
-#define YYNTBASE 112
-
-#define YYTRANSLATE(x) ((unsigned)(x) <= 342 ? yytranslate[x] : 400)
-
-static const char 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, 110, 2, 2, 2, 82, 70, 2, 93,
- 108, 80, 78, 59, 79, 92, 81, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 62, 60, 74,
- 64, 75, 65, 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,
- 94, 2, 111, 69, 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, 58, 68, 109, 88, 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, 61, 63, 66, 67, 71, 72, 73, 76,
- 77, 83, 84, 85, 86, 87, 89, 90, 91, 95,
- 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
- 106, 107
-};
-
-#if YYDEBUG != 0
-static const short yyprhs[] = { 0,
- 0, 1, 3, 4, 7, 10, 12, 13, 14, 15,
- 17, 19, 20, 23, 26, 28, 30, 36, 41, 47,
- 52, 53, 60, 61, 67, 69, 72, 74, 77, 78,
- 85, 88, 92, 96, 100, 104, 109, 110, 116, 119,
- 123, 125, 127, 130, 133, 135, 138, 139, 145, 149,
- 151, 155, 157, 158, 161, 164, 168, 170, 174, 176,
- 180, 182, 186, 189, 192, 195, 197, 199, 205, 210,
- 213, 216, 220, 224, 227, 230, 234, 238, 241, 244,
- 247, 250, 253, 255, 257, 259, 260, 262, 265, 266,
- 268, 273, 277, 281, 282, 291, 297, 298, 308, 315,
- 316, 325, 331, 332, 342, 349, 352, 355, 357, 360,
- 362, 369, 374, 381, 386, 389, 391, 394, 397, 399,
- 402, 404, 407, 410, 415, 418, 422, 423, 424, 426,
- 430, 433, 437, 439, 444, 447, 452, 455, 460, 463,
- 465, 467, 469, 471, 473, 475, 477, 479, 481, 483,
- 485, 486, 493, 494, 501, 502, 508, 509, 515, 516,
- 524, 525, 533, 534, 541, 542, 549, 550, 551, 557,
- 563, 565, 567, 573, 579, 580, 582, 584, 585, 587,
- 589, 593, 595, 597, 599, 601, 603, 605, 607, 609,
- 611, 613, 615, 619, 621, 625, 626, 628, 630, 631,
- 639, 641, 643, 647, 652, 656, 657, 661, 663, 667,
- 671, 675, 679, 681, 683, 685, 688, 691, 694, 697,
- 700, 703, 706, 711, 714, 719, 722, 726, 730, 735,
- 741, 748, 755, 763, 766, 771, 777, 780, 783, 785,
- 786, 791, 796, 800, 802, 806, 809, 813, 818, 820,
- 823, 829, 831, 835, 839, 843, 847, 851, 855, 859,
- 863, 867, 871, 875, 879, 883, 887, 891, 895, 899,
- 903, 907, 913, 917, 921, 923, 926, 930, 934, 936,
- 938, 940, 942, 944, 945, 951, 957, 963, 969, 975,
- 977, 979, 981, 983, 986, 988, 991, 994, 998, 1003,
- 1008, 1010, 1012, 1014, 1018, 1020, 1022, 1024, 1026, 1030,
- 1034, 1038, 1039, 1044, 1049, 1052, 1057, 1060, 1065, 1068,
- 1071, 1073, 1078, 1080, 1088, 1096, 1104, 1112, 1117, 1122,
- 1125, 1128, 1131, 1133, 1138, 1141, 1144, 1150, 1154, 1157,
- 1160, 1166, 1170, 1176, 1180, 1185, 1192, 1195, 1197, 1200,
- 1202, 1205, 1207, 1209, 1211, 1214, 1215, 1218, 1221, 1225,
- 1229, 1233, 1236, 1239, 1242, 1244, 1246, 1248, 1251, 1254,
- 1257, 1260, 1262, 1264, 1266, 1268, 1271, 1274, 1278, 1282,
- 1286, 1291, 1293, 1296, 1299, 1302, 1304, 1306, 1308, 1311,
- 1314, 1317, 1319, 1321, 1324, 1327, 1331, 1333, 1336, 1338,
- 1340, 1342, 1347, 1352, 1357, 1362, 1364, 1366, 1368, 1370,
- 1374, 1376, 1380, 1382, 1386, 1387, 1392, 1393, 1400, 1404,
- 1405, 1410, 1412, 1416, 1420, 1421, 1426, 1430, 1431, 1433,
- 1435, 1438, 1445, 1447, 1451, 1452, 1454, 1459, 1466, 1471,
- 1473, 1475, 1477, 1479, 1481, 1485, 1486, 1489, 1491, 1494,
- 1498, 1503, 1505, 1507, 1511, 1516, 1520, 1526, 1528, 1533,
- 1537, 1541, 1542, 1546, 1550, 1554, 1555, 1558, 1561, 1562,
- 1570, 1575, 1576, 1583, 1587, 1590, 1593, 1596, 1597, 1598,
- 1599, 1610, 1612, 1613, 1615, 1616, 1618, 1620, 1623, 1626,
- 1629, 1632, 1635, 1638, 1641, 1644, 1647, 1651, 1656, 1660,
- 1663, 1667, 1669, 1670, 1674, 1677, 1680, 1682, 1684, 1685,
- 1688, 1692, 1694, 1699, 1701, 1705, 1707, 1709, 1714, 1719,
- 1722, 1725, 1729, 1733, 1734, 1736, 1740, 1743, 1746, 1748,
- 1751, 1754, 1757, 1760, 1763, 1766, 1769, 1771, 1774, 1777,
- 1781, 1784, 1787, 1792, 1797, 1800, 1802, 1808, 1813, 1815,
- 1816, 1818, 1822, 1823, 1825, 1829, 1831, 1833, 1835, 1837,
- 1842, 1847, 1852, 1857, 1862, 1866, 1871, 1876, 1881, 1886,
- 1890, 1892, 1896, 1898, 1902, 1905, 1907, 1915, 1916, 1919,
- 1921, 1924, 1925, 1928, 1933, 1938, 1941, 1946, 1948, 1951,
- 1955, 1959, 1962, 1965, 1969, 1971, 1976, 1981, 1985, 1989,
- 1992, 1994, 1996, 1999, 2001, 2003, 2006, 2009, 2011, 2014,
- 2018, 2022, 2025, 2028, 2032, 2034, 2038, 2042, 2045, 2048,
- 2052, 2054, 2059, 2063, 2068, 2072, 2074, 2077, 2080, 2083,
- 2086, 2089, 2091, 2094, 2099, 2104, 2107, 2109, 2111, 2113,
- 2115, 2118, 2123, 2126, 2129, 2132, 2135, 2137, 2140, 2143,
- 2146, 2149, 2153, 2155, 2158, 2162, 2167, 2170, 2173, 2176,
- 2179, 2182, 2185, 2190, 2193, 2195, 2198, 2201, 2205, 2207,
- 2211, 2214, 2218, 2221, 2224, 2228, 2230, 2234, 2239, 2241,
- 2244, 2248, 2251, 2254, 2256, 2260, 2263, 2266, 2268, 2271,
- 2275, 2277, 2281, 2283, 2290, 2295, 2300, 2304, 2310, 2314,
- 2318, 2322, 2325, 2327, 2329, 2332, 2335, 2338, 2339, 2341,
- 2343, 2346, 2350, 2352, 2355, 2356, 2360, 2361, 2362, 2368,
- 2370, 2371, 2374, 2376, 2378, 2380, 2383, 2384, 2389, 2391,
- 2392, 2393, 2399, 2400, 2401, 2409, 2410, 2411, 2412, 2413,
- 2426, 2427, 2428, 2436, 2437, 2443, 2444, 2452, 2453, 2458,
- 2461, 2464, 2467, 2471, 2478, 2487, 2498, 2511, 2516, 2520,
- 2523, 2526, 2528, 2530, 2532, 2534, 2536, 2537, 2538, 2545,
- 2546, 2547, 2553, 2555, 2558, 2559, 2560, 2566, 2568, 2570,
- 2574, 2578, 2581, 2584, 2587, 2590, 2593, 2595, 2598, 2599,
- 2601, 2602, 2604, 2606, 2607, 2609, 2611, 2615, 2620, 2622,
- 2626, 2627, 2629, 2631, 2633, 2636, 2639, 2642, 2644, 2647,
- 2650, 2651, 2655, 2657, 2659, 2661, 2664, 2667, 2670, 2675,
- 2678, 2681, 2684, 2687, 2690, 2693, 2695, 2698, 2700, 2703,
- 2705, 2707, 2708, 2709, 2711, 2712, 2717, 2720, 2722, 2724,
- 2728, 2729, 2733, 2737, 2741, 2743, 2746, 2749, 2752, 2755,
- 2758, 2761, 2764, 2767, 2770, 2773, 2776, 2779, 2782, 2785,
- 2788, 2791, 2794, 2797, 2800, 2803, 2806, 2809, 2812, 2816,
- 2819, 2822, 2825, 2828, 2832, 2835, 2838, 2843, 2848, 2852
-};
-
-static const short yyrhs[] = { -1,
- 113, 0, 0, 114, 120, 0, 113, 120, 0, 113,
- 0, 0, 0, 0, 32, 0, 27, 0, 0, 121,
- 122, 0, 148, 147, 0, 144, 0, 141, 0, 119,
- 93, 219, 108, 60, 0, 133, 58, 115, 109, 0,
- 133, 116, 148, 117, 147, 0, 133, 116, 144, 117,
- 0, 0, 44, 163, 58, 123, 115, 109, 0, 0,
- 44, 58, 124, 115, 109, 0, 125, 0, 127, 60,
- 0, 129, 0, 118, 122, 0, 0, 44, 163, 64,
- 126, 132, 60, 0, 46, 313, 0, 46, 327, 313,
- 0, 46, 327, 209, 0, 46, 131, 163, 0, 46,
- 327, 163, 0, 46, 327, 131, 163, 0, 0, 46,
- 44, 130, 132, 60, 0, 57, 54, 0, 131, 57,
- 54, 0, 209, 0, 313, 0, 327, 313, 0, 327,
- 209, 0, 98, 0, 133, 98, 0, 0, 48, 74,
- 135, 136, 75, 0, 48, 74, 75, 0, 140, 0,
- 136, 59, 140, 0, 163, 0, 0, 269, 137, 0,
- 45, 137, 0, 134, 269, 137, 0, 138, 0, 138,
- 64, 225, 0, 391, 0, 391, 64, 204, 0, 139,
- 0, 139, 64, 184, 0, 134, 142, 0, 134, 1,
- 0, 148, 147, 0, 143, 0, 141, 0, 133, 116,
- 148, 117, 147, 0, 133, 116, 143, 117, 0, 118,
- 142, 0, 236, 60, 0, 229, 235, 60, 0, 226,
- 234, 60, 0, 261, 60, 0, 236, 60, 0, 229,
- 235, 60, 0, 226, 234, 60, 0, 229, 60, 0,
- 166, 60, 0, 226, 60, 0, 1, 60, 0, 1,
- 109, 0, 60, 0, 220, 0, 159, 0, 0, 158,
- 0, 158, 60, 0, 0, 107, 0, 154, 146, 145,
- 338, 0, 154, 146, 362, 0, 154, 146, 1, 0,
- 0, 318, 5, 93, 150, 382, 108, 298, 394, 0,
- 318, 5, 47, 298, 394, 0, 0, 327, 318, 5,
- 93, 151, 382, 108, 298, 394, 0, 327, 318, 5,
- 47, 298, 394, 0, 0, 318, 179, 93, 152, 382,
- 108, 298, 394, 0, 318, 179, 47, 298, 394, 0,
- 0, 327, 318, 179, 93, 153, 382, 108, 298, 394,
- 0, 327, 318, 179, 47, 298, 394, 0, 226, 223,
- 0, 229, 310, 0, 310, 0, 229, 149, 0, 149,
- 0, 5, 93, 382, 108, 298, 394, 0, 5, 47,
- 298, 394, 0, 179, 93, 382, 108, 298, 394, 0,
- 179, 47, 298, 394, 0, 229, 155, 0, 155, 0,
- 226, 223, 0, 229, 310, 0, 310, 0, 229, 149,
- 0, 149, 0, 25, 3, 0, 157, 253, 0, 157,
- 93, 196, 108, 0, 157, 47, 0, 62, 160, 161,
- 0, 0, 0, 162, 0, 161, 59, 162, 0, 161,
- 1, 0, 93, 196, 108, 0, 47, 0, 164, 93,
- 196, 108, 0, 164, 47, 0, 306, 93, 196, 108,
- 0, 306, 47, 0, 320, 93, 196, 108, 0, 320,
- 47, 0, 3, 0, 4, 0, 5, 0, 56, 0,
- 57, 0, 3, 0, 56, 0, 57, 0, 104, 0,
- 103, 0, 105, 0, 0, 48, 175, 232, 60, 167,
- 176, 0, 0, 48, 175, 226, 223, 168, 176, 0,
- 0, 48, 175, 310, 169, 176, 0, 0, 48, 175,
- 149, 170, 176, 0, 0, 7, 48, 175, 232, 60,
- 171, 176, 0, 0, 7, 48, 175, 226, 223, 172,
- 176, 0, 0, 7, 48, 175, 310, 173, 176, 0,
- 0, 7, 48, 175, 149, 174, 176, 0, 0, 0,
- 56, 74, 182, 181, 180, 0, 4, 74, 182, 181,
- 180, 0, 179, 0, 177, 0, 163, 74, 182, 75,
- 180, 0, 5, 74, 182, 181, 180, 0, 0, 75,
- 0, 77, 0, 0, 183, 0, 184, 0, 183, 59,
- 184, 0, 225, 0, 56, 0, 204, 0, 79, 0,
- 78, 0, 86, 0, 87, 0, 110, 0, 195, 0,
- 204, 0, 47, 0, 93, 186, 108, 0, 47, 0,
- 93, 190, 108, 0, 0, 190, 0, 1, 0, 0,
- 372, 223, 237, 246, 64, 191, 254, 0, 186, 0,
- 109, 0, 335, 333, 109, 0, 335, 333, 1, 109,
- 0, 335, 1, 109, 0, 0, 58, 194, 192, 0,
- 347, 0, 204, 59, 204, 0, 204, 59, 1, 0,
- 195, 59, 204, 0, 195, 59, 1, 0, 204, 0,
- 195, 0, 214, 0, 118, 203, 0, 80, 203, 0,
- 70, 203, 0, 88, 203, 0, 185, 203, 0, 67,
- 163, 0, 13, 197, 0, 13, 93, 225, 108, 0,
- 29, 197, 0, 29, 93, 225, 108, 0, 216, 297,
- 0, 216, 297, 201, 0, 216, 200, 297, 0, 216,
- 200, 297, 201, 0, 216, 93, 199, 225, 198, 0,
- 216, 93, 199, 225, 198, 201, 0, 216, 200, 93,
- 199, 225, 198, 0, 216, 200, 93, 199, 225, 198,
- 201, 0, 217, 203, 0, 217, 94, 111, 203, 0,
- 217, 94, 186, 111, 203, 0, 34, 203, 0, 35,
- 203, 0, 108, 0, 0, 93, 199, 196, 108, 0,
- 58, 199, 196, 109, 0, 93, 196, 108, 0, 47,
- 0, 93, 232, 108, 0, 64, 254, 0, 93, 225,
- 108, 0, 202, 93, 225, 108, 0, 197, 0, 202,
- 197, 0, 202, 58, 255, 267, 109, 0, 203, 0,
- 204, 83, 204, 0, 204, 84, 204, 0, 204, 78,
- 204, 0, 204, 79, 204, 0, 204, 80, 204, 0,
- 204, 81, 204, 0, 204, 82, 204, 0, 204, 76,
- 204, 0, 204, 77, 204, 0, 204, 73, 204, 0,
- 204, 74, 204, 0, 204, 75, 204, 0, 204, 72,
- 204, 0, 204, 71, 204, 0, 204, 70, 204, 0,
- 204, 68, 204, 0, 204, 69, 204, 0, 204, 67,
- 204, 0, 204, 66, 204, 0, 204, 65, 377, 62,
- 204, 0, 204, 64, 204, 0, 204, 63, 204, 0,
- 61, 0, 61, 204, 0, 88, 392, 163, 0, 88,
- 392, 177, 0, 207, 0, 399, 0, 3, 0, 56,
- 0, 57, 0, 0, 6, 74, 206, 182, 181, 0,
- 399, 74, 206, 182, 181, 0, 48, 163, 74, 182,
- 181, 0, 48, 6, 74, 182, 181, 0, 48, 399,
- 74, 182, 181, 0, 205, 0, 4, 0, 5, 0,
- 211, 0, 247, 211, 0, 205, 0, 80, 210, 0,
- 70, 210, 0, 93, 210, 108, 0, 3, 74, 182,
- 181, 0, 57, 74, 183, 181, 0, 312, 0, 205,
- 0, 212, 0, 93, 210, 108, 0, 205, 0, 10,
- 0, 218, 0, 219, 0, 93, 186, 108, 0, 93,
- 210, 108, 0, 93, 1, 108, 0, 0, 93, 215,
- 339, 108, 0, 205, 93, 196, 108, 0, 205, 47,
- 0, 214, 93, 196, 108, 0, 214, 47, 0, 214,
- 94, 186, 111, 0, 214, 86, 0, 214, 87, 0,
- 40, 0, 9, 93, 196, 108, 0, 316, 0, 50,
- 74, 225, 75, 93, 186, 108, 0, 51, 74, 225,
- 75, 93, 186, 108, 0, 52, 74, 225, 75, 93,
- 186, 108, 0, 53, 74, 225, 75, 93, 186, 108,
- 0, 49, 93, 186, 108, 0, 49, 93, 225, 108,
- 0, 327, 3, 0, 327, 207, 0, 327, 399, 0,
- 315, 0, 315, 93, 196, 108, 0, 315, 47, 0,
- 221, 208, 0, 221, 208, 93, 196, 108, 0, 221,
- 208, 47, 0, 221, 209, 0, 221, 315, 0, 221,
- 209, 93, 196, 108, 0, 221, 209, 47, 0, 221,
- 315, 93, 196, 108, 0, 221, 315, 47, 0, 221,
- 88, 8, 47, 0, 221, 8, 54, 88, 8, 47,
- 0, 221, 1, 0, 39, 0, 327, 39, 0, 38,
- 0, 327, 217, 0, 42, 0, 43, 0, 11, 0,
- 219, 11, 0, 0, 214, 92, 0, 214, 91, 0,
- 232, 234, 60, 0, 226, 234, 60, 0, 229, 235,
- 60, 0, 226, 60, 0, 229, 60, 0, 118, 222,
- 0, 304, 0, 310, 0, 47, 0, 224, 47, 0,
- 230, 331, 0, 299, 331, 0, 232, 331, 0, 230,
- 0, 299, 0, 230, 0, 227, 0, 229, 232, 0,
- 232, 228, 0, 232, 231, 228, 0, 229, 232, 228,
- 0, 229, 232, 231, 0, 229, 232, 231, 228, 0,
- 7, 0, 228, 233, 0, 228, 7, 0, 228, 247,
- 0, 247, 0, 299, 0, 7, 0, 229, 9, 0,
- 229, 7, 0, 229, 247, 0, 247, 0, 232, 0,
- 299, 232, 0, 232, 231, 0, 299, 232, 231, 0,
- 233, 0, 231, 233, 0, 261, 0, 8, 0, 307,
- 0, 28, 93, 186, 108, 0, 28, 93, 225, 108,
- 0, 30, 93, 186, 108, 0, 30, 93, 225, 108,
- 0, 8, 0, 9, 0, 261, 0, 242, 0, 234,
- 59, 238, 0, 243, 0, 235, 59, 238, 0, 244,
- 0, 236, 59, 238, 0, 0, 119, 93, 219, 108,
- 0, 0, 223, 237, 246, 64, 239, 254, 0, 223,
- 237, 246, 0, 0, 246, 64, 241, 254, 0, 246,
- 0, 223, 237, 240, 0, 310, 237, 240, 0, 0,
- 310, 237, 245, 240, 0, 149, 237, 246, 0, 0,
- 247, 0, 248, 0, 247, 248, 0, 31, 93, 93,
- 249, 108, 108, 0, 250, 0, 249, 59, 250, 0,
- 0, 251, 0, 251, 93, 3, 108, 0, 251, 93,
- 3, 59, 196, 108, 0, 251, 93, 196, 108, 0,
- 163, 0, 7, 0, 8, 0, 9, 0, 163, 0,
- 252, 59, 163, 0, 0, 64, 254, 0, 204, 0,
- 58, 109, 0, 58, 255, 109, 0, 58, 255, 59,
- 109, 0, 1, 0, 254, 0, 255, 59, 254, 0,
- 94, 204, 111, 254, 0, 163, 62, 254, 0, 255,
- 59, 163, 62, 254, 0, 97, 0, 256, 146, 145,
- 338, 0, 256, 146, 362, 0, 256, 146, 1, 0,
- 0, 258, 257, 147, 0, 102, 204, 107, 0, 102,
- 1, 107, 0, 0, 260, 259, 0, 260, 1, 0,
- 0, 14, 163, 58, 262, 295, 268, 109, 0, 14,
- 163, 58, 109, 0, 0, 14, 58, 263, 295, 268,
- 109, 0, 14, 58, 109, 0, 14, 163, 0, 14,
- 325, 0, 45, 320, 0, 0, 0, 0, 276, 58,
- 264, 282, 109, 246, 265, 260, 266, 258, 0, 276,
- 0, 0, 59, 0, 0, 59, 0, 36, 0, 269,
- 7, 0, 269, 8, 0, 269, 9, 0, 269, 36,
- 0, 269, 247, 0, 269, 163, 0, 269, 165, 0,
- 270, 58, 0, 270, 62, 0, 269, 318, 163, 0,
- 269, 327, 318, 163, 0, 269, 327, 163, 0, 269,
- 178, 0, 269, 318, 178, 0, 270, 0, 0, 271,
- 274, 277, 0, 272, 277, 0, 269, 58, 0, 275,
- 0, 273, 0, 0, 62, 392, 0, 62, 392, 278,
- 0, 279, 0, 278, 59, 392, 279, 0, 280, 0,
- 281, 392, 280, 0, 320, 0, 306, 0, 30, 93,
- 186, 108, 0, 30, 93, 225, 108, 0, 37, 392,
- 0, 7, 392, 0, 281, 37, 392, 0, 281, 7,
- 392, 0, 0, 284, 0, 282, 283, 284, 0, 282,
- 283, 0, 37, 62, 0, 285, 0, 284, 285, 0,
- 286, 60, 0, 286, 109, 0, 156, 62, 0, 156,
- 95, 0, 156, 25, 0, 156, 58, 0, 60, 0,
- 118, 285, 0, 134, 285, 0, 134, 226, 60, 0,
- 226, 287, 0, 229, 288, 0, 310, 237, 246, 253,
- 0, 149, 237, 246, 253, 0, 62, 204, 0, 1,
- 0, 229, 155, 237, 246, 253, 0, 155, 237, 246,
- 253, 0, 127, 0, 0, 289, 0, 287, 59, 290,
- 0, 0, 292, 0, 288, 59, 294, 0, 291, 0,
- 292, 0, 293, 0, 294, 0, 304, 237, 246, 253,
- 0, 4, 62, 204, 246, 0, 310, 237, 246, 253,
- 0, 149, 237, 246, 253, 0, 3, 62, 204, 246,
- 0, 62, 204, 246, 0, 304, 237, 246, 253, 0,
- 4, 62, 204, 246, 0, 310, 237, 246, 253, 0,
- 3, 62, 204, 246, 0, 62, 204, 246, 0, 296,
- 0, 295, 59, 296, 0, 163, 0, 163, 64, 204,
- 0, 372, 328, 0, 372, 0, 93, 199, 225, 198,
- 94, 186, 111, 0, 0, 298, 9, 0, 9, 0,
- 299, 9, 0, 0, 300, 186, 0, 300, 93, 196,
- 108, 0, 300, 93, 382, 108, 0, 300, 47, 0,
- 300, 93, 1, 108, 0, 304, 0, 247, 304, 0,
- 80, 299, 303, 0, 70, 299, 303, 0, 80, 303,
- 0, 70, 303, 0, 326, 298, 303, 0, 305, 0,
- 305, 302, 298, 394, 0, 305, 94, 301, 111, 0,
- 305, 94, 111, 0, 93, 303, 108, 0, 318, 317,
- 0, 317, 0, 317, 0, 327, 317, 0, 306, 0,
- 308, 0, 327, 308, 0, 318, 317, 0, 310, 0,
- 247, 310, 0, 80, 299, 309, 0, 70, 299, 309,
- 0, 80, 309, 0, 70, 309, 0, 326, 298, 309,
- 0, 213, 0, 80, 299, 309, 0, 70, 299, 309,
- 0, 80, 311, 0, 70, 311, 0, 326, 298, 309,
- 0, 312, 0, 213, 302, 298, 394, 0, 93, 311,
- 108, 0, 213, 94, 301, 111, 0, 213, 94, 111,
- 0, 314, 0, 318, 212, 0, 318, 209, 0, 318,
- 208, 0, 318, 205, 0, 318, 208, 0, 314, 0,
- 327, 314, 0, 232, 93, 196, 108, 0, 232, 93,
- 210, 108, 0, 232, 224, 0, 4, 0, 5, 0,
- 177, 0, 319, 0, 318, 319, 0, 318, 48, 324,
- 54, 0, 4, 54, 0, 5, 54, 0, 57, 54,
- 0, 177, 54, 0, 321, 0, 327, 321, 0, 322,
- 163, 0, 322, 177, 0, 322, 324, 0, 322, 48,
- 324, 0, 323, 0, 322, 323, 0, 322, 324, 54,
- 0, 322, 48, 324, 54, 0, 4, 54, 0, 5,
- 54, 0, 177, 54, 0, 56, 54, 0, 3, 54,
- 0, 57, 54, 0, 163, 74, 182, 181, 0, 327,
- 317, 0, 308, 0, 327, 308, 0, 318, 80, 0,
- 327, 318, 80, 0, 54, 0, 80, 298, 328, 0,
- 80, 298, 0, 70, 298, 328, 0, 70, 298, 0,
- 326, 298, 0, 326, 298, 328, 0, 329, 0, 94,
- 186, 111, 0, 329, 94, 301, 111, 0, 331, 0,
- 247, 331, 0, 80, 299, 330, 0, 80, 330, 0,
- 80, 299, 0, 80, 0, 70, 299, 330, 0, 70,
- 330, 0, 70, 299, 0, 70, 0, 326, 298, 0,
- 326, 298, 330, 0, 332, 0, 93, 330, 108, 0,
- 90, 0, 332, 93, 382, 108, 298, 394, 0, 332,
- 47, 298, 394, 0, 332, 94, 301, 111, 0, 332,
- 94, 111, 0, 93, 383, 108, 298, 394, 0, 202,
- 298, 394, 0, 224, 298, 394, 0, 94, 301, 111,
- 0, 94, 111, 0, 346, 0, 334, 0, 333, 346,
- 0, 333, 334, 0, 1, 60, 0, 0, 336, 0,
- 337, 0, 336, 337, 0, 33, 252, 60, 0, 339,
- 0, 1, 339, 0, 0, 58, 340, 192, 0, 0,
- 0, 15, 342, 188, 343, 344, 0, 339, 0, 0,
- 345, 347, 0, 339, 0, 347, 0, 222, 0, 186,
- 60, 0, 0, 341, 16, 348, 344, 0, 341, 0,
- 0, 0, 17, 349, 188, 350, 193, 0, 0, 0,
- 18, 351, 344, 17, 352, 187, 60, 0, 0, 0,
- 0, 0, 19, 353, 93, 375, 354, 189, 60, 355,
- 377, 108, 356, 193, 0, 0, 0, 20, 357, 93,
- 190, 108, 358, 344, 0, 0, 21, 204, 62, 359,
- 346, 0, 0, 21, 204, 12, 204, 62, 360, 346,
- 0, 0, 22, 62, 361, 346, 0, 23, 60, 0,
- 24, 60, 0, 25, 60, 0, 25, 186, 60, 0,
- 119, 376, 93, 219, 108, 60, 0, 119, 376, 93,
- 219, 62, 378, 108, 60, 0, 119, 376, 93, 219,
- 62, 378, 62, 378, 108, 60, 0, 119, 376, 93,
- 219, 62, 378, 62, 378, 62, 381, 108, 60, 0,
- 26, 80, 186, 60, 0, 26, 163, 60, 0, 374,
- 346, 0, 374, 109, 0, 60, 0, 365, 0, 129,
- 0, 128, 0, 125, 0, 0, 0, 95, 363, 145,
- 339, 364, 368, 0, 0, 0, 95, 366, 339, 367,
- 368, 0, 369, 0, 368, 369, 0, 0, 0, 96,
- 370, 373, 371, 339, 0, 230, 0, 299, 0, 93,
- 12, 108, 0, 93, 391, 108, 0, 3, 62, 0,
- 56, 62, 0, 4, 62, 0, 5, 62, 0, 377,
- 60, 0, 222, 0, 58, 192, 0, 0, 9, 0,
- 0, 186, 0, 1, 0, 0, 379, 0, 380, 0,
- 379, 59, 380, 0, 11, 93, 186, 108, 0, 11,
- 0, 381, 59, 11, 0, 0, 383, 0, 225, 0,
- 387, 0, 388, 12, 0, 387, 12, 0, 225, 12,
- 0, 12, 0, 387, 62, 0, 225, 62, 0, 0,
- 64, 385, 386, 0, 101, 0, 254, 0, 389, 0,
- 391, 384, 0, 388, 390, 0, 388, 393, 0, 388,
- 393, 64, 254, 0, 387, 59, 0, 225, 59, 0,
- 227, 223, 0, 230, 223, 0, 232, 223, 0, 227,
- 331, 0, 227, 0, 229, 310, 0, 391, 0, 391,
- 384, 0, 389, 0, 225, 0, 0, 0, 310, 0,
- 0, 61, 93, 396, 108, 0, 61, 47, 0, 225,
- 0, 395, 0, 396, 59, 395, 0, 0, 80, 298,
- 397, 0, 70, 298, 397, 0, 326, 298, 397, 0,
- 41, 0, 398, 80, 0, 398, 81, 0, 398, 82,
- 0, 398, 78, 0, 398, 79, 0, 398, 70, 0,
- 398, 68, 0, 398, 69, 0, 398, 88, 0, 398,
- 59, 0, 398, 73, 0, 398, 74, 0, 398, 75,
- 0, 398, 72, 0, 398, 63, 0, 398, 64, 0,
- 398, 76, 0, 398, 77, 0, 398, 86, 0, 398,
- 87, 0, 398, 67, 0, 398, 66, 0, 398, 110,
- 0, 398, 65, 62, 0, 398, 71, 0, 398, 91,
- 0, 398, 83, 0, 398, 47, 0, 398, 94, 111,
- 0, 398, 39, 0, 398, 38, 0, 398, 39, 94,
- 111, 0, 398, 38, 94, 111, 0, 398, 372, 397,
- 0, 398, 1, 0
-};
-
-#endif
-
-#if YYDEBUG != 0
-static const short yyrline[] = { 0,
- 340, 342, 350, 353, 354, 358, 360, 363, 368, 372,
- 378, 382, 385, 389, 392, 394, 396, 399, 401, 404,
- 407, 409, 411, 413, 415, 416, 418, 419, 423, 426,
- 435, 438, 440, 444, 447, 449, 453, 456, 468, 475,
- 483, 485, 486, 488, 492, 495, 501, 504, 506, 511,
- 514, 518, 521, 524, 527, 531, 536, 546, 548, 550,
- 552, 554, 567, 570, 574, 577, 579, 581, 584, 587,
- 591, 593, 595, 597, 602, 604, 606, 608, 610, 611,
- 618, 619, 620, 623, 626, 630, 632, 633, 636, 638,
- 641, 644, 650, 654, 657, 659, 663, 665, 667, 671,
- 673, 675, 679, 681, 683, 689, 693, 696, 699, 702,
- 707, 710, 712, 714, 720, 732, 735, 740, 745, 748,
- 753, 758, 767, 770, 772, 776, 789, 809, 812, 814,
- 815, 818, 825, 831, 833, 835, 837, 839, 842, 847,
- 849, 850, 851, 852, 855, 857, 858, 861, 863, 864,
- 867, 872, 872, 876, 876, 879, 879, 882, 882, 886,
- 886, 891, 891, 894, 894, 897, 899, 902, 909, 913,
- 916, 919, 921, 925, 931, 940, 942, 950, 953, 956,
- 959, 963, 966, 968, 971, 974, 976, 978, 980, 984,
- 987, 990, 995, 999, 1004, 1008, 1011, 1012, 1016, 1035,
- 1042, 1045, 1047, 1048, 1049, 1052, 1056, 1057, 1061, 1065,
- 1068, 1070, 1074, 1077, 1080, 1084, 1087, 1089, 1091, 1093,
- 1096, 1100, 1102, 1105, 1107, 1113, 1116, 1119, 1122, 1134,
- 1139, 1143, 1147, 1152, 1154, 1158, 1162, 1164, 1173, 1177,
- 1180, 1183, 1188, 1191, 1193, 1201, 1214, 1219, 1225, 1227,
- 1229, 1242, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259,
- 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279,
- 1281, 1283, 1285, 1289, 1291, 1293, 1310, 1313, 1315, 1316,
- 1317, 1318, 1319, 1322, 1334, 1337, 1341, 1344, 1346, 1351,
- 1353, 1354, 1357, 1359, 1367, 1369, 1371, 1373, 1377, 1380,
- 1384, 1388, 1389, 1390, 1394, 1402, 1403, 1404, 1418, 1420,
- 1423, 1425, 1436, 1441, 1443, 1445, 1447, 1449, 1451, 1453,
- 1456, 1458, 1475, 1476, 1480, 1484, 1488, 1492, 1494, 1498,
- 1500, 1502, 1510, 1512, 1514, 1516, 1520, 1522, 1524, 1526,
- 1531, 1533, 1535, 1537, 1540, 1542, 1544, 1588, 1591, 1595,
- 1598, 1602, 1605, 1610, 1612, 1616, 1629, 1632, 1639, 1646,
- 1651, 1653, 1658, 1660, 1667, 1669, 1673, 1677, 1683, 1687,
- 1690, 1694, 1697, 1707, 1709, 1712, 1716, 1719, 1722, 1725,
- 1728, 1734, 1740, 1742, 1747, 1749, 1767, 1770, 1772, 1775,
- 1781, 1783, 1793, 1797, 1800, 1803, 1808, 1811, 1819, 1821,
- 1823, 1825, 1828, 1831, 1846, 1865, 1868, 1870, 1873, 1875,
- 1879, 1881, 1885, 1887, 1891, 1894, 1898, 1904, 1905, 1917,
- 1924, 1927, 1933, 1937, 1942, 1948, 1949, 1957, 1960, 1964,
- 1967, 1971, 1976, 1979, 1983, 1986, 1988, 1990, 1992, 1999,
- 2001, 2002, 2003, 2007, 2010, 2014, 2017, 2023, 2025, 2028,
- 2031, 2034, 2040, 2043, 2046, 2048, 2050, 2054, 2060, 2068,
- 2075, 2079, 2081, 2086, 2089, 2092, 2094, 2096, 2100, 2105,
- 2112, 2116, 2120, 2127, 2131, 2134, 2137, 2143, 2145, 2157,
- 2161, 2166, 2188, 2190, 2193, 2195, 2200, 2202, 2204, 2206,
- 2208, 2210, 2214, 2222, 2225, 2227, 2231, 2238, 2244, 2250,
- 2256, 2266, 2272, 2276, 2283, 2311, 2321, 2327, 2330, 2333,
- 2335, 2339, 2341, 2345, 2350, 2356, 2359, 2360, 2381, 2404,
- 2406, 2410, 2421, 2435, 2436, 2437, 2438, 2441, 2456, 2461,
- 2467, 2469, 2474, 2476, 2478, 2480, 2482, 2484, 2487, 2497,
- 2504, 2529, 2535, 2538, 2541, 2543, 2554, 2559, 2562, 2567,
- 2570, 2577, 2587, 2590, 2597, 2607, 2609, 2612, 2614, 2617,
- 2624, 2632, 2639, 2645, 2651, 2659, 2663, 2668, 2672, 2675,
- 2684, 2686, 2690, 2693, 2698, 2702, 2708, 2719, 2722, 2726,
- 2730, 2738, 2743, 2749, 2752, 2754, 2756, 2762, 2764, 2773,
- 2776, 2778, 2780, 2782, 2786, 2789, 2792, 2794, 2796, 2798,
- 2802, 2805, 2816, 2826, 2828, 2829, 2833, 2841, 2843, 2851,
- 2854, 2856, 2858, 2860, 2864, 2867, 2870, 2872, 2874, 2876,
- 2880, 2883, 2886, 2888, 2890, 2892, 2894, 2901, 2905, 2910,
- 2914, 2919, 2921, 2925, 2928, 2930, 2933, 2935, 2936, 2939,
- 2941, 2943, 2949, 2960, 2966, 2972, 2986, 2988, 2992, 3006,
- 3008, 3010, 3014, 3020, 3033, 3035, 3039, 3052, 3058, 3060,
- 3061, 3062, 3070, 3075, 3084, 3085, 3089, 3092, 3098, 3104,
- 3107, 3109, 3111, 3113, 3117, 3121, 3125, 3128, 3132, 3134,
- 3143, 3146, 3148, 3150, 3152, 3154, 3156, 3158, 3160, 3164,
- 3168, 3172, 3176, 3177, 3179, 3181, 3183, 3185, 3187, 3189,
- 3191, 3193, 3201, 3203, 3204, 3205, 3208, 3214, 3216, 3221,
- 3223, 3226, 3240, 3243, 3246, 3250, 3253, 3260, 3262, 3265,
- 3267, 3269, 3272, 3275, 3278, 3281, 3283, 3286, 3290, 3292,
- 3298, 3300, 3301, 3303, 3308, 3310, 3312, 3314, 3316, 3319,
- 3320, 3322, 3325, 3326, 3329, 3329, 3332, 3332, 3335, 3335,
- 3337, 3339, 3341, 3343, 3349, 3355, 3358, 3361, 3367, 3369,
- 3371, 3375, 3377, 3378, 3379, 3381, 3384, 3391, 3396, 3402,
- 3406, 3408, 3411, 3413, 3416, 3420, 3422, 3425, 3427, 3430,
- 3447, 3453, 3461, 3463, 3465, 3469, 3472, 3473, 3481, 3485,
- 3489, 3492, 3493, 3499, 3502, 3505, 3507, 3511, 3516, 3519,
- 3529, 3534, 3535, 3542, 3545, 3548, 3550, 3553, 3555, 3565,
- 3579, 3583, 3586, 3588, 3592, 3596, 3599, 3602, 3604, 3608,
- 3610, 3617, 3624, 3627, 3631, 3635, 3639, 3645, 3649, 3654,
- 3656, 3659, 3664, 3670, 3681, 3684, 3686, 3690, 3695, 3697,
- 3704, 3707, 3709, 3711, 3717, 3722, 3725, 3727, 3729, 3731,
- 3733, 3735, 3737, 3739, 3741, 3743, 3745, 3747, 3749, 3751,
- 3753, 3755, 3757, 3759, 3761, 3763, 3765, 3767, 3769, 3771,
- 3773, 3775, 3777, 3779, 3781, 3783, 3785, 3787, 3790, 3792
-};
-#endif
-
-
-#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
-
-static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
-"TYPENAME","SELFNAME","PFUNCNAME","SCSPEC","TYPESPEC","CV_QUALIFIER","CONSTANT",
-"STRING","ELLIPSIS","SIZEOF","ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH",
-"CASE","DEFAULT","BREAK","CONTINUE","RETURN_KEYWORD","GOTO","ASM_KEYWORD","TYPEOF",
-"ALIGNOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","REALPART","IMAGPART","AGGR",
-"VISSPEC","DELETE","NEW","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","NAMESPACE",
-"TYPENAME_KEYWORD","USING","LEFT_RIGHT","TEMPLATE","TYPEID","DYNAMIC_CAST","STATIC_CAST",
-"REINTERPRET_CAST","CONST_CAST","SCOPE","EMPTY","PTYPENAME","NSNAME","'{'","','",
-"';'","THROW","':'","ASSIGN","'='","'?'","OROR","ANDAND","'|'","'^'","'&'","MIN_MAX",
-"EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'",
-"'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS","MINUSMINUS","'~'","HYPERUNARY",
-"PAREN_STAR_PAREN","POINTSAT","'.'","'('","'['","TRY","CATCH","PRE_PARSED_FUNCTION_DECL",
-"EXTERN_LANG_STRING","ALL","PRE_PARSED_CLASS_DECL","DEFARG","DEFARG_MARKER",
-"TYPENAME_DEFN","IDENTIFIER_DEFN","PTYPENAME_DEFN","END_OF_LINE","END_OF_SAVED_INPUT",
-"')'","'}'","'!'","']'","program","extdefs","@1","extdefs_opt",".hush_warning",
-".warning_ok","extension","asm_keyword","lang_extdef","@2","extdef","@3","@4",
-"namespace_alias","@5","using_decl","namespace_using_decl","using_directive",
-"@6","namespace_qualifier","any_id","extern_lang_string","template_header","@7",
-"template_parm_list","maybe_identifier","template_type_parm","template_template_parm",
-"template_parm","template_def","template_extdef","template_datadef","datadef",
-"ctor_initializer_opt","maybe_return_init","eat_saved_input","fndef","constructor_declarator",
-"@8","@9","@10","@11","fn.def1","component_constructor_declarator","fn.def2",
-"return_id","return_init","base_init",".set_base_init","member_init_list","member_init",
-"identifier","notype_identifier","identifier_defn","explicit_instantiation",
-"@12","@13","@14","@15","@16","@17","@18","@19","begin_explicit_instantiation",
-"end_explicit_instantiation","template_type","apparent_template_type","self_template_type",
-".finish_template_type","template_close_bracket","template_arg_list_opt","template_arg_list",
-"template_arg","unop","expr","paren_expr_or_null","paren_cond_or_null","xcond",
-"condition","@20","compstmtend","already_scoped_stmt","@21","nontrivial_exprlist",
-"nonnull_exprlist","unary_expr",".finish_new_placement",".begin_new_placement",
-"new_placement","new_initializer","regcast_or_absdcl","cast_expr","expr_no_commas",
-"notype_unqualified_id","do_id","template_id","object_template_id","unqualified_id",
-"expr_or_declarator_intern","expr_or_declarator","notype_template_declarator",
-"direct_notype_declarator","primary","@22","new","delete","boolean.literal",
-"string","nodecls","object","decl","declarator","fcast_or_absdcl","type_id",
-"typed_declspecs","typed_declspecs1","reserved_declspecs","declmods","typed_typespecs",
-"reserved_typespecquals","typespec","typespecqual_reserved","initdecls","notype_initdecls",
-"nomods_initdecls","maybeasm","initdcl","@23","initdcl0_innards","@24","initdcl0",
-"notype_initdcl0","nomods_initdcl0","@25","maybe_attribute","attributes","attribute",
-"attribute_list","attrib","any_word","identifiers_or_typenames","maybe_init",
-"init","initlist","fn.defpen","pending_inline","pending_inlines","defarg_again",
-"pending_defargs","structsp","@26","@27","@28","@29","@30","maybecomma","maybecomma_warn",
-"aggr","named_class_head_sans_basetype","named_class_head_sans_basetype_defn",
-"named_complex_class_head_sans_basetype","named_class_head","@31","unnamed_class_head",
-"class_head","maybe_base_class_list","base_class_list","base_class","base_class.1",
-"base_class_access_list","opt.component_decl_list","access_specifier","component_decl_list",
-"component_decl","component_decl_1","components","notype_components","component_declarator0",
-"component_declarator","after_type_component_declarator0","notype_component_declarator0",
-"after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
-"new_type_id","cv_qualifiers","nonempty_cv_qualifiers","suspend_mom","nonmomentary_expr",
-"maybe_parmlist","after_type_declarator_intern","after_type_declarator","direct_after_type_declarator",
-"nonnested_type","complete_type_name","nested_type","notype_declarator_intern",
-"notype_declarator","complex_notype_declarator","complex_direct_notype_declarator",
-"qualified_id","notype_qualified_id","overqualified_id","functional_cast","type_name",
-"nested_name_specifier","nested_name_specifier_1","typename_sub","typename_sub0",
-"typename_sub1","typename_sub2","explicit_template_type","complex_type_name",
-"ptr_to_mem","global_scope","new_declarator","direct_new_declarator","absdcl_intern",
-"absdcl","direct_abstract_declarator","stmts","errstmt","maybe_label_decls",
-"label_decls","label_decl","compstmt_or_error","compstmt","@32","simple_if",
-"@33","@34","implicitly_scoped_stmt","@35","stmt","simple_stmt","@36","@37",
-"@38","@39","@40","@41","@42","@43","@44","@45","@46","@47","@48","@49","function_try_block",
-"@50","@51","try_block","@52","@53","handler_seq","handler","@54","@55","type_specifier_seq",
-"handler_args","label_colon","for.init.statement","maybe_cv_qualifier","xexpr",
-"asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist",
-"complex_parmlist","defarg","@56","defarg1","parms","parms_comma","named_parm",
-"full_parm","parm","see_typename","bad_parm","exception_specification_opt","ansi_raise_identifier",
-"ansi_raise_identifiers","conversion_declarator","operator","operator_name", NULL
-};
-#endif
-
-static const short yyr1[] = { 0,
- 112, 112, 114, 113, 113, 115, 115, 116, 117, 118,
- 119, 121, 120, 122, 122, 122, 122, 122, 122, 122,
- 123, 122, 124, 122, 122, 122, 122, 122, 126, 125,
- 127, 127, 127, 128, 128, 128, 130, 129, 131, 131,
- 132, 132, 132, 132, 133, 133, 135, 134, 134, 136,
- 136, 137, 137, 138, 138, 139, 140, 140, 140, 140,
- 140, 140, 141, 141, 142, 142, 142, 142, 142, 142,
- 143, 143, 143, 143, 144, 144, 144, 144, 144, 144,
- 144, 144, 144, 145, 145, 146, 146, 146, 147, 147,
- 148, 148, 148, 150, 149, 149, 151, 149, 149, 152,
- 149, 149, 153, 149, 149, 154, 154, 154, 154, 154,
- 155, 155, 155, 155, 156, 156, 156, 156, 156, 156,
- 156, 157, 158, 158, 158, 159, 160, 161, 161, 161,
- 161, 162, 162, 162, 162, 162, 162, 162, 162, 163,
- 163, 163, 163, 163, 164, 164, 164, 165, 165, 165,
- 167, 166, 168, 166, 169, 166, 170, 166, 171, 166,
- 172, 166, 173, 166, 174, 166, 175, 176, 177, 177,
- 177, 178, 178, 179, 180, 181, 181, 182, 182, 183,
- 183, 184, 184, 184, 185, 185, 185, 185, 185, 186,
- 186, 187, 187, 188, 188, 189, 189, 189, 191, 190,
- 190, 192, 192, 192, 192, 194, 193, 193, 195, 195,
- 195, 195, 196, 196, 197, 197, 197, 197, 197, 197,
- 197, 197, 197, 197, 197, 197, 197, 197, 197, 197,
- 197, 197, 197, 197, 197, 197, 197, 197, 198, 199,
- 200, 200, 201, 201, 201, 201, 202, 202, 203, 203,
- 203, 204, 204, 204, 204, 204, 204, 204, 204, 204,
- 204, 204, 204, 204, 204, 204, 204, 204, 204, 204,
- 204, 204, 204, 204, 204, 204, 205, 205, 205, 205,
- 205, 205, 205, 206, 207, 207, 208, 208, 208, 209,
- 209, 209, 210, 210, 211, 211, 211, 211, 212, 212,
- 213, 213, 213, 213, 214, 214, 214, 214, 214, 214,
- 214, 215, 214, 214, 214, 214, 214, 214, 214, 214,
- 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
- 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
- 214, 214, 214, 214, 214, 214, 214, 216, 216, 217,
- 217, 218, 218, 219, 219, 220, 221, 221, 222, 222,
- 222, 222, 222, 222, 223, 223, 224, 224, 225, 225,
- 225, 225, 225, 226, 226, 227, 227, 227, 227, 227,
- 227, 228, 228, 228, 228, 228, 229, 229, 229, 229,
- 229, 229, 230, 230, 230, 230, 231, 231, 232, 232,
- 232, 232, 232, 232, 232, 233, 233, 233, 234, 234,
- 235, 235, 236, 236, 237, 237, 239, 238, 238, 241,
- 240, 240, 242, 243, 245, 244, 244, 246, 246, 247,
- 247, 248, 249, 249, 250, 250, 250, 250, 250, 251,
- 251, 251, 251, 252, 252, 253, 253, 254, 254, 254,
- 254, 254, 255, 255, 255, 255, 255, 256, 257, 257,
- 257, 258, 258, 259, 259, 260, 260, 260, 262, 261,
- 261, 263, 261, 261, 261, 261, 261, 264, 265, 266,
- 261, 261, 267, 267, 268, 268, 269, 269, 269, 269,
- 269, 269, 270, 271, 271, 271, 272, 272, 272, 272,
- 272, 273, 274, 273, 273, 275, 276, 276, 277, 277,
- 277, 278, 278, 279, 279, 280, 280, 280, 280, 281,
- 281, 281, 281, 282, 282, 282, 282, 283, 284, 284,
- 285, 285, 285, 285, 285, 285, 285, 285, 285, 285,
- 286, 286, 286, 286, 286, 286, 286, 286, 286, 287,
- 287, 287, 288, 288, 288, 289, 289, 290, 290, 291,
- 291, 292, 292, 292, 292, 293, 293, 294, 294, 294,
- 295, 295, 296, 296, 297, 297, 297, 298, 298, 299,
- 299, 300, 301, 302, 302, 302, 302, 303, 303, 304,
- 304, 304, 304, 304, 304, 305, 305, 305, 305, 305,
- 305, 306, 306, 307, 307, 307, 308, 309, 309, 310,
- 310, 310, 310, 310, 310, 311, 311, 311, 311, 311,
- 311, 312, 312, 312, 312, 312, 312, 313, 313, 314,
- 314, 315, 315, 316, 316, 316, 317, 317, 317, 318,
- 318, 318, 319, 319, 319, 319, 320, 320, 321, 321,
- 321, 321, 322, 322, 322, 322, 323, 323, 323, 323,
- 323, 323, 324, 325, 325, 325, 326, 326, 327, 328,
- 328, 328, 328, 328, 328, 328, 329, 329, 330, 330,
- 331, 331, 331, 331, 331, 331, 331, 331, 331, 331,
- 331, 332, 332, 332, 332, 332, 332, 332, 332, 332,
- 332, 332, 333, 333, 333, 333, 334, 335, 335, 336,
- 336, 337, 338, 338, 340, 339, 342, 343, 341, 344,
- 345, 344, 346, 346, 347, 347, 348, 347, 347, 349,
- 350, 347, 351, 352, 347, 353, 354, 355, 356, 347,
- 357, 358, 347, 359, 347, 360, 347, 361, 347, 347,
- 347, 347, 347, 347, 347, 347, 347, 347, 347, 347,
- 347, 347, 347, 347, 347, 347, 363, 364, 362, 366,
- 367, 365, 368, 368, 370, 371, 369, 372, 372, 373,
- 373, 374, 374, 374, 374, 375, 375, 375, 376, 376,
- 377, 377, 377, 378, 378, 379, 379, 380, 381, 381,
- 382, 382, 382, 383, 383, 383, 383, 383, 383, 383,
- 385, 384, 386, 386, 387, 387, 387, 387, 387, 388,
- 388, 389, 389, 389, 389, 389, 389, 390, 390, 391,
- 391, 392, 393, 393, 394, 394, 394, 395, 396, 396,
- 397, 397, 397, 397, 398, 399, 399, 399, 399, 399,
- 399, 399, 399, 399, 399, 399, 399, 399, 399, 399,
- 399, 399, 399, 399, 399, 399, 399, 399, 399, 399,
- 399, 399, 399, 399, 399, 399, 399, 399, 399, 399
-};
-
-static const short yyr2[] = { 0,
- 0, 1, 0, 2, 2, 1, 0, 0, 0, 1,
- 1, 0, 2, 2, 1, 1, 5, 4, 5, 4,
- 0, 6, 0, 5, 1, 2, 1, 2, 0, 6,
- 2, 3, 3, 3, 3, 4, 0, 5, 2, 3,
- 1, 1, 2, 2, 1, 2, 0, 5, 3, 1,
- 3, 1, 0, 2, 2, 3, 1, 3, 1, 3,
- 1, 3, 2, 2, 2, 1, 1, 5, 4, 2,
- 2, 3, 3, 2, 2, 3, 3, 2, 2, 2,
- 2, 2, 1, 1, 1, 0, 1, 2, 0, 1,
- 4, 3, 3, 0, 8, 5, 0, 9, 6, 0,
- 8, 5, 0, 9, 6, 2, 2, 1, 2, 1,
- 6, 4, 6, 4, 2, 1, 2, 2, 1, 2,
- 1, 2, 2, 4, 2, 3, 0, 0, 1, 3,
- 2, 3, 1, 4, 2, 4, 2, 4, 2, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 0, 6, 0, 6, 0, 5, 0, 5, 0, 7,
- 0, 7, 0, 6, 0, 6, 0, 0, 5, 5,
- 1, 1, 5, 5, 0, 1, 1, 0, 1, 1,
- 3, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 3, 1, 3, 0, 1, 1, 0, 7,
- 1, 1, 3, 4, 3, 0, 3, 1, 3, 3,
- 3, 3, 1, 1, 1, 2, 2, 2, 2, 2,
- 2, 2, 4, 2, 4, 2, 3, 3, 4, 5,
- 6, 6, 7, 2, 4, 5, 2, 2, 1, 0,
- 4, 4, 3, 1, 3, 2, 3, 4, 1, 2,
- 5, 1, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 5, 3, 3, 1, 2, 3, 3, 1, 1,
- 1, 1, 1, 0, 5, 5, 5, 5, 5, 1,
- 1, 1, 1, 2, 1, 2, 2, 3, 4, 4,
- 1, 1, 1, 3, 1, 1, 1, 1, 3, 3,
- 3, 0, 4, 4, 2, 4, 2, 4, 2, 2,
- 1, 4, 1, 7, 7, 7, 7, 4, 4, 2,
- 2, 2, 1, 4, 2, 2, 5, 3, 2, 2,
- 5, 3, 5, 3, 4, 6, 2, 1, 2, 1,
- 2, 1, 1, 1, 2, 0, 2, 2, 3, 3,
- 3, 2, 2, 2, 1, 1, 1, 2, 2, 2,
- 2, 1, 1, 1, 1, 2, 2, 3, 3, 3,
- 4, 1, 2, 2, 2, 1, 1, 1, 2, 2,
- 2, 1, 1, 2, 2, 3, 1, 2, 1, 1,
- 1, 4, 4, 4, 4, 1, 1, 1, 1, 3,
- 1, 3, 1, 3, 0, 4, 0, 6, 3, 0,
- 4, 1, 3, 3, 0, 4, 3, 0, 1, 1,
- 2, 6, 1, 3, 0, 1, 4, 6, 4, 1,
- 1, 1, 1, 1, 3, 0, 2, 1, 2, 3,
- 4, 1, 1, 3, 4, 3, 5, 1, 4, 3,
- 3, 0, 3, 3, 3, 0, 2, 2, 0, 7,
- 4, 0, 6, 3, 2, 2, 2, 0, 0, 0,
- 10, 1, 0, 1, 0, 1, 1, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 3, 4, 3, 2,
- 3, 1, 0, 3, 2, 2, 1, 1, 0, 2,
- 3, 1, 4, 1, 3, 1, 1, 4, 4, 2,
- 2, 3, 3, 0, 1, 3, 2, 2, 1, 2,
- 2, 2, 2, 2, 2, 2, 1, 2, 2, 3,
- 2, 2, 4, 4, 2, 1, 5, 4, 1, 0,
- 1, 3, 0, 1, 3, 1, 1, 1, 1, 4,
- 4, 4, 4, 4, 3, 4, 4, 4, 4, 3,
- 1, 3, 1, 3, 2, 1, 7, 0, 2, 1,
- 2, 0, 2, 4, 4, 2, 4, 1, 2, 3,
- 3, 2, 2, 3, 1, 4, 4, 3, 3, 2,
- 1, 1, 2, 1, 1, 2, 2, 1, 2, 3,
- 3, 2, 2, 3, 1, 3, 3, 2, 2, 3,
- 1, 4, 3, 4, 3, 1, 2, 2, 2, 2,
- 2, 1, 2, 4, 4, 2, 1, 1, 1, 1,
- 2, 4, 2, 2, 2, 2, 1, 2, 2, 2,
- 2, 3, 1, 2, 3, 4, 2, 2, 2, 2,
- 2, 2, 4, 2, 1, 2, 2, 3, 1, 3,
- 2, 3, 2, 2, 3, 1, 3, 4, 1, 2,
- 3, 2, 2, 1, 3, 2, 2, 1, 2, 3,
- 1, 3, 1, 6, 4, 4, 3, 5, 3, 3,
- 3, 2, 1, 1, 2, 2, 2, 0, 1, 1,
- 2, 3, 1, 2, 0, 3, 0, 0, 5, 1,
- 0, 2, 1, 1, 1, 2, 0, 4, 1, 0,
- 0, 5, 0, 0, 7, 0, 0, 0, 0, 12,
- 0, 0, 7, 0, 5, 0, 7, 0, 4, 2,
- 2, 2, 3, 6, 8, 10, 12, 4, 3, 2,
- 2, 1, 1, 1, 1, 1, 0, 0, 6, 0,
- 0, 5, 1, 2, 0, 0, 5, 1, 1, 3,
- 3, 2, 2, 2, 2, 2, 1, 2, 0, 1,
- 0, 1, 1, 0, 1, 1, 3, 4, 1, 3,
- 0, 1, 1, 1, 2, 2, 2, 1, 2, 2,
- 0, 3, 1, 1, 1, 2, 2, 2, 4, 2,
- 2, 2, 2, 2, 2, 1, 2, 1, 2, 1,
- 1, 0, 0, 1, 0, 4, 2, 1, 1, 3,
- 0, 3, 3, 3, 1, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 3, 2,
- 2, 2, 2, 3, 2, 2, 4, 4, 3, 2
-};
-
-static const short yydefact[] = { 3,
- 12, 12, 5, 0, 4, 0, 281, 637, 638, 0,
- 388, 400, 580, 0, 11, 0, 0, 0, 10, 487,
- 845, 0, 0, 0, 167, 669, 282, 283, 83, 0,
- 0, 832, 0, 45, 0, 0, 13, 25, 0, 27,
- 8, 0, 16, 15, 89, 110, 86, 0, 639, 171,
- 302, 279, 303, 615, 0, 375, 0, 374, 393, 0,
- 413, 392, 430, 399, 0, 502, 503, 509, 508, 507,
- 482, 387, 604, 401, 605, 108, 301, 626, 602, 0,
- 640, 578, 0, 0, 280, 81, 82, 178, 643, 178,
- 644, 178, 284, 167, 140, 141, 142, 143, 144, 472,
- 475, 0, 665, 0, 476, 0, 0, 0, 0, 141,
- 142, 143, 144, 23, 0, 0, 0, 0, 0, 0,
- 0, 477, 647, 0, 653, 0, 0, 0, 37, 0,
- 0, 31, 0, 0, 47, 0, 178, 645, 0, 0,
- 0, 613, 608, 0, 0, 0, 612, 0, 0, 0,
- 0, 302, 0, 293, 582, 0, 0, 301, 578, 28,
- 0, 26, 3, 46, 0, 64, 388, 0, 0, 8,
- 67, 63, 66, 89, 0, 0, 0, 399, 90, 14,
- 0, 428, 0, 0, 446, 87, 79, 646, 582, 0,
- 578, 80, 0, 0, 0, 106, 0, 409, 365, 595,
- 366, 601, 0, 578, 390, 389, 78, 109, 376, 0,
- 411, 391, 107, 382, 406, 407, 377, 395, 397, 386,
- 408, 0, 75, 431, 488, 489, 490, 491, 506, 149,
- 148, 150, 493, 494, 172, 500, 492, 0, 0, 495,
- 496, 509, 832, 505, 478, 581, 394, 0, 425, 638,
- 0, 667, 171, 630, 631, 627, 607, 641, 0, 606,
- 603, 0, 880, 876, 875, 873, 855, 860, 861, 0,
- 867, 866, 852, 853, 851, 870, 859, 856, 857, 858,
- 862, 863, 849, 850, 846, 847, 848, 872, 864, 865,
- 854, 871, 0, 868, 778, 393, 779, 841, 284, 281,
- 580, 306, 354, 0, 0, 0, 0, 350, 348, 321,
- 352, 353, 0, 0, 0, 0, 0, 282, 283, 275,
- 0, 0, 186, 185, 0, 187, 188, 0, 0, 189,
- 0, 0, 179, 180, 0, 249, 0, 252, 184, 305,
- 215, 0, 0, 307, 308, 0, 182, 372, 393, 373,
- 632, 333, 323, 0, 0, 0, 0, 178, 0, 474,
- 0, 469, 0, 666, 664, 0, 190, 191, 0, 0,
- 0, 435, 3, 21, 29, 661, 657, 658, 660, 662,
- 659, 140, 141, 142, 0, 143, 144, 649, 650, 654,
- 651, 648, 0, 291, 292, 290, 629, 628, 33, 32,
- 49, 0, 157, 0, 0, 393, 155, 0, 0, 609,
- 611, 0, 610, 141, 142, 277, 278, 297, 0, 619,
- 296, 0, 618, 0, 304, 282, 283, 0, 0, 0,
- 295, 294, 623, 0, 0, 12, 0, 167, 9, 9,
- 70, 0, 65, 0, 0, 71, 74, 0, 427, 429,
- 122, 93, 127, 767, 0, 85, 84, 92, 125, 0,
- 0, 123, 88, 625, 0, 0, 586, 0, 835, 0,
- 0, 593, 588, 0, 592, 0, 0, 0, 0, 0,
- 578, 428, 0, 77, 582, 578, 600, 0, 379, 380,
- 0, 76, 428, 384, 383, 385, 378, 398, 415, 414,
- 178, 497, 501, 499, 0, 504, 510, 0, 396, 428,
- 578, 94, 0, 0, 0, 0, 578, 100, 579, 614,
- 638, 668, 171, 0, 0, 869, 874, 395, 578, 578,
- 0, 578, 879, 178, 0, 0, 0, 222, 0, 0,
- 224, 237, 238, 0, 0, 0, 0, 0, 276, 221,
- 218, 217, 219, 0, 0, 0, 0, 0, 305, 0,
- 0, 0, 216, 176, 177, 299, 0, 220, 0, 0,
- 250, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 315, 0, 317, 319, 320, 358, 357,
- 0, 0, 240, 240, 0, 226, 576, 0, 234, 355,
- 347, 0, 0, 832, 336, 339, 340, 0, 0, 367,
- 688, 684, 693, 0, 582, 578, 578, 578, 369, 691,
- 0, 636, 371, 0, 0, 370, 335, 0, 330, 349,
- 331, 351, 633, 0, 332, 175, 175, 0, 165, 0,
- 393, 163, 573, 485, 571, 471, 0, 0, 402, 0,
- 0, 403, 404, 405, 441, 442, 443, 440, 0, 433,
- 436, 0, 3, 0, 652, 178, 655, 0, 41, 42,
- 0, 53, 0, 0, 57, 61, 50, 831, 826, 0,
- 372, 393, 53, 373, 830, 59, 168, 153, 151, 168,
- 175, 300, 617, 616, 304, 0, 620, 0, 18, 20,
- 89, 9, 9, 73, 72, 0, 128, 356, 0, 715,
- 91, 713, 452, 0, 448, 447, 214, 0, 213, 583,
- 624, 0, 808, 0, 803, 393, 0, 802, 804, 833,
- 815, 0, 0, 622, 589, 591, 590, 0, 0, 0,
- 0, 0, 0, 578, 599, 0, 423, 422, 410, 598,
- 0, 835, 594, 381, 412, 424, 428, 0, 498, 637,
- 638, 832, 0, 832, 639, 511, 512, 514, 832, 517,
- 516, 0, 546, 638, 0, 537, 0, 0, 549, 0,
- 121, 116, 0, 171, 550, 553, 0, 0, 529, 0,
- 119, 426, 835, 801, 178, 178, 642, 178, 835, 801,
- 578, 97, 578, 103, 878, 877, 841, 841, 841, 0,
- 0, 0, 0, 636, 0, 0, 0, 0, 393, 0,
- 0, 0, 311, 0, 309, 310, 0, 247, 181, 281,
- 637, 638, 282, 283, 0, 0, 453, 483, 0, 274,
- 273, 793, 792, 0, 271, 270, 268, 269, 267, 266,
- 265, 262, 263, 264, 260, 261, 255, 256, 257, 258,
- 259, 253, 254, 0, 0, 0, 0, 0, 240, 228,
- 244, 0, 0, 227, 578, 578, 0, 578, 575, 676,
- 0, 0, 0, 0, 0, 338, 0, 342, 0, 344,
- 0, 0, 687, 686, 679, 683, 682, 831, 392, 0,
- 0, 702, 0, 0, 835, 368, 835, 689, 578, 801,
- 582, 688, 684, 0, 0, 578, 0, 392, 0, 0,
- 0, 0, 170, 174, 285, 168, 161, 159, 168, 0,
- 486, 0, 485, 212, 211, 210, 209, 435, 0, 0,
- 24, 0, 0, 656, 0, 38, 44, 43, 55, 52,
- 53, 0, 48, 0, 0, 688, 684, 0, 822, 578,
- 825, 827, 0, 823, 824, 54, 493, 0, 158, 168,
- 168, 156, 169, 298, 17, 19, 69, 89, 416, 145,
- 133, 146, 147, 0, 126, 129, 0, 0, 0, 0,
- 714, 708, 449, 0, 124, 587, 584, 807, 821, 810,
- 0, 585, 806, 820, 809, 805, 834, 817, 828, 818,
- 811, 816, 837, 0, 0, 0, 0, 420, 597, 596,
- 419, 175, 521, 0, 520, 832, 832, 832, 0, 578,
- 801, 545, 538, 550, 539, 428, 428, 535, 536, 533,
- 534, 578, 801, 281, 637, 0, 415, 117, 541, 551,
- 556, 557, 415, 415, 0, 0, 415, 115, 542, 554,
- 415, 0, 428, 0, 530, 531, 532, 428, 96, 0,
- 0, 0, 0, 102, 0, 835, 801, 835, 801, 843,
- 842, 844, 286, 322, 223, 225, 328, 329, 0, 0,
- 0, 0, 310, 313, 0, 0, 0, 0, 248, 0,
- 314, 316, 318, 0, 0, 0, 0, 229, 246, 0,
- 0, 673, 671, 0, 674, 582, 235, 0, 0, 178,
- 345, 0, 0, 0, 680, 685, 681, 692, 578, 701,
- 699, 700, 690, 835, 0, 697, 0, 0, 634, 635,
- 688, 684, 0, 0, 334, 166, 168, 168, 164, 574,
- 572, 473, 0, 434, 432, 281, 0, 22, 30, 663,
- 56, 51, 58, 62, 0, 687, 683, 688, 684, 0,
- 392, 602, 0, 578, 689, 60, 154, 152, 68, 0,
- 131, 0, 135, 0, 137, 0, 139, 0, 768, 0,
- 202, 716, 0, 709, 710, 0, 450, 688, 684, 0,
- 305, 0, 632, 829, 0, 0, 838, 839, 0, 0,
- 0, 0, 0, 0, 417, 173, 0, 0, 0, 523,
- 522, 515, 835, 0, 540, 446, 446, 835, 0, 0,
- 0, 428, 428, 0, 428, 428, 0, 428, 0, 528,
- 479, 0, 446, 578, 288, 287, 289, 578, 99, 0,
- 105, 0, 0, 0, 0, 0, 0, 456, 0, 454,
- 251, 272, 242, 241, 239, 230, 0, 243, 245, 672,
- 670, 677, 675, 0, 236, 0, 0, 337, 341, 343,
- 835, 695, 578, 696, 162, 160, 470, 0, 437, 439,
- 0, 687, 683, 688, 684, 0, 578, 607, 689, 132,
- 130, 0, 0, 0, 0, 444, 0, 0, 281, 637,
- 638, 717, 730, 733, 736, 741, 0, 0, 0, 0,
- 0, 0, 0, 0, 282, 762, 770, 0, 789, 766,
- 765, 764, 0, 725, 0, 0, 393, 0, 704, 723,
- 729, 703, 724, 763, 0, 711, 451, 0, 635, 819,
- 813, 814, 812, 0, 836, 421, 0, 518, 519, 513,
- 112, 578, 544, 548, 114, 578, 428, 428, 565, 446,
- 281, 637, 0, 552, 558, 559, 415, 415, 446, 446,
- 0, 446, 555, 466, 543, 835, 835, 578, 578, 0,
- 0, 0, 0, 455, 0, 0, 231, 232, 678, 346,
- 287, 698, 835, 0, 687, 683, 0, 689, 134, 136,
- 138, 775, 769, 773, 0, 712, 707, 205, 782, 784,
- 785, 0, 0, 721, 0, 0, 0, 748, 750, 751,
- 752, 0, 0, 0, 0, 0, 0, 0, 783, 0,
- 364, 790, 0, 726, 362, 415, 0, 363, 0, 415,
- 0, 0, 0, 203, 706, 705, 727, 761, 760, 310,
- 840, 418, 835, 835, 564, 561, 563, 0, 0, 428,
- 428, 428, 560, 562, 547, 0, 95, 101, 835, 835,
- 324, 325, 326, 327, 457, 0, 233, 694, 438, 688,
- 684, 0, 0, 0, 774, 445, 194, 0, 718, 731,
- 720, 0, 0, 0, 0, 0, 744, 0, 753, 0,
- 759, 39, 144, 34, 144, 0, 35, 771, 0, 360,
- 361, 0, 0, 0, 359, 204, 721, 111, 113, 428,
- 428, 570, 446, 446, 468, 0, 467, 462, 98, 104,
- 577, 392, 0, 776, 201, 0, 393, 0, 721, 0,
- 734, 722, 708, 787, 737, 0, 0, 0, 0, 749,
- 758, 40, 36, 0, 0, 728, 569, 567, 566, 568,
- 0, 0, 481, 0, 0, 0, 195, 415, 719, 206,
- 732, 208, 0, 788, 0, 786, 742, 746, 745, 772,
- 794, 0, 465, 464, 458, 86, 89, 780, 781, 777,
- 428, 708, 192, 0, 0, 198, 0, 197, 721, 0,
- 0, 0, 795, 796, 754, 0, 463, 0, 207, 0,
- 735, 738, 743, 747, 0, 794, 0, 0, 461, 0,
- 460, 199, 193, 0, 0, 0, 755, 797, 459, 0,
- 0, 798, 0, 0, 200, 739, 799, 0, 756, 0,
- 0, 0, 740, 800, 757, 0, 0, 0
-};
-
-static const short yydefgoto[] = { 1666,
- 436, 2, 437, 165, 710, 331, 181, 3, 4, 37,
- 673, 373, 1340, 674, 789, 1341, 1342, 393, 1447, 678,
- 41, 790, 402, 684, 959, 685, 686, 687, 43, 172,
- 173, 44, 455, 184, 180, 45, 46, 804, 1087, 810,
- 1089, 47, 792, 793, 185, 186, 456, 717, 995, 996,
- 653, 997, 234, 48, 981, 980, 700, 697, 1158, 1157,
- 939, 936, 136, 979, 49, 236, 50, 933, 566, 332,
- 333, 334, 335, 1343, 1615, 1509, 1617, 1556, 1650, 1202,
- 1591, 1612, 367, 925, 336, 1276, 877, 605, 884, 337,
- 338, 368, 340, 358, 52, 255, 679, 418, 154, 53,
- 54, 341, 561, 342, 343, 344, 345, 457, 346, 1344,
- 499, 627, 347, 1345, 56, 217, 690, 348, 218, 539,
- 219, 197, 210, 60, 482, 500, 1367, 757, 1224, 198,
- 211, 61, 510, 758, 62, 63, 669, 670, 671, 1317,
- 462, 847, 848, 1606, 1607, 1583, 1547, 1486, 64, 657,
- 361, 508, 1394, 1548, 1108, 942, 65, 66, 67, 68,
- 69, 242, 70, 71, 244, 776, 777, 778, 779, 797,
- 1074, 798, 799, 800, 1059, 1069, 1060, 1384, 1061, 1062,
- 1385, 1386, 654, 655, 606, 915, 350, 465, 466, 191,
- 480, 473, 200, 73, 74, 75, 142, 143, 157, 77,
- 132, 351, 352, 353, 79, 354, 81, 781, 123, 124,
- 125, 515, 105, 82, 355, 889, 890, 910, 905, 630,
- 1348, 1349, 1203, 1204, 1205, 721, 1350, 1002, 1351, 1432,
- 1559, 1512, 1513, 1352, 1353, 1537, 1433, 1560, 1434, 1593,
- 1435, 1595, 1644, 1660, 1436, 1619, 1569, 1620, 1518, 458,
- 718, 1315, 1354, 1450, 1574, 1423, 1424, 1504, 1586, 1558,
- 1554, 1355, 1565, 1453, 854, 1622, 1623, 1624, 1658, 737,
- 911, 1022, 1216, 1363, 739, 740, 741, 1018, 742, 148,
- 1020, 744, 1218, 1219, 533, 84, 85
-};
-
-static const short yypact[] = { 108,
- 127,-32768,-32768, 6638,-32768, 55, 57, 72, 240, 62,
- 142,-32768,-32768, 625,-32768, 150, 208, 211,-32768,-32768,
--32768, 756, 883, 1366, 130,-32768, 188, 338,-32768, 2656,
- 2656,-32768, 422,-32768, 6638, 223,-32768,-32768, 279,-32768,
- 98, 4351,-32768,-32768, 268, 823, 365, 293, 423,-32768,
--32768,-32768,-32768, 123, 3083,-32768, 6545,-32768, 2122, 781,
--32768, 465,-32768,-32768, 2046, 404,-32768, 436,-32768,-32768,
- 474, 4127,-32768,-32768,-32768, 1037,-32768,-32768,-32768, 2040,
--32768,-32768, 431, 3562, 460,-32768,-32768, 10933,-32768, 10933,
--32768, 10933,-32768,-32768,-32768, 72, 240, 188, 503, 458,
- 523, 423,-32768, 621,-32768, 431, 11019, 11019, 491,-32768,
--32768,-32768,-32768,-32768, 330, 541, 579, 772, 794, 552,
- 558,-32768,-32768, 897,-32768, 618, 72, 240,-32768, 188,
- 503,-32768, 1941, 1787, 556, 12117, 10933,-32768, 10933, 6884,
- 4421,-32768,-32768, 2343, 606, 4421,-32768, 764, 4782, 4782,
- 422, 508, 551,-32768, 555, 1198, 577, 589,-32768,-32768,
- 676,-32768, 591,-32768, 4576,-32768,-32768, 130, 3913, 613,
--32768,-32768,-32768, 268, 1640, 12172, 868, 655,-32768,-32768,
- 628, 465, 745, 137, 283, 695,-32768,-32768, 653, 187,
--32768,-32768, 5207, 5207, 6890, 1037, 903,-32768,-32768, 242,
--32768,-32768, 3275,-32768,-32768,-32768,-32768,-32768, 2122, 909,
--32768, 465, 1037,-32768,-32768,-32768, 2314, 2122,-32768, 465,
--32768, 1640,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, 703,-32768, 423,-32768, 465, 1413, 1023,-32768,
--32768, 436,-32768,-32768,-32768,-32768, 1086, 431,-32768, 526,
- 777,-32768, 316,-32768,-32768,-32768,-32768,-32768, 5793,-32768,
--32768, 251,-32768, 704, 709,-32768,-32768,-32768,-32768, 760,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, 714,-32768,-32768, 1086, 4127, 578,-32768,-32768,
- 736,-32768,-32768, 11627, 11713, 11799, 11799,-32768,-32768,-32768,
--32768,-32768, 738, 763, 773, 804, 824, 1205, 503, 11105,
- 1446, 11799,-32768,-32768, 11799,-32768,-32768, 11799, 8717,-32768,
- 11799, 328, 844,-32768, 11799,-32768, 11191,-32768, 12355, 367,
- 1836, 3337, 11277,-32768, 894, 2675,-32768, 2485, 3147, 5599,
--32768, 368,-32768, 2011, 2176, 328, 328, 10933, 12117,-32768,
- 1446, 800, 1446,-32768,-32768, 816, 871, 12288, 848, 849,
- 872, 1718, 591,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768, 541, 579, 772, 1446, 794, 552, 920, 558,-32768,
- 955,-32768, 1549, 72, 240,-32768,-32768,-32768,-32768,-32768,
--32768, 12226,-32768, 1640, 5776, 1791,-32768, 328, 817,-32768,
--32768, 466,-32768, 932, 941,-32768,-32768,-32768, 4421,-32768,
--32768, 4421,-32768, 913,-32768,-32768,-32768, 1198, 1198, 1198,
--32768,-32768,-32768, 5793, 95, 914, 925,-32768,-32768,-32768,
--32768, 12117,-32768, 931, 937,-32768,-32768, 676,-32768, 465,
--32768,-32768,-32768,-32768, 111,-32768,-32768,-32768,-32768, 9269,
- 11105,-32768,-32768,-32768, 11105, 935,-32768, 5148, 113, 7300,
- 5886,-32768,-32768, 5886,-32768, 6144, 6144, 6890, 7304, 943,
--32768, 465, 1640,-32768, 946,-32768,-32768, 6312, 2314, 2122,
- 1640,-32768, 465,-32768,-32768, 465, 2314,-32768, 1016,-32768,
- 10933, 703,-32768,-32768, 1413,-32768, 944, 5002, 1086, 465,
--32768,-32768, 986, 988, 1013, 995,-32768,-32768,-32768,-32768,
- 731,-32768, 427, 967, 970,-32768,-32768, 1086,-32768,-32768,
- 647,-32768,-32768, 10933, 11105, 736, 8717,-32768, 500, 8717,
--32768,-32768,-32768, 11019, 6398, 6398, 6398, 6398, 12333,-32768,
--32768,-32768,-32768, 974, 11369, 11369, 8717, 976, 49, 978,
- 1032, 984,-32768,-32768,-32768,-32768, 10933,-32768, 8808, 8717,
--32768, 11105, 11105, 7914, 11105, 11105, 11105, 11105, 11105, 11105,
- 11105, 11105, 11105, 11105, 11105, 11105, 11105, 11105, 11105, 11105,
- 11105, 11105, 11105,-32768, 11105,-32768,-32768,-32768,-32768,-32768,
- 11105, 11105,-32768,-32768, 2929, 285, 662, 9810,-32768,-32768,
--32768, 1044, 777, 1094, 509, 515, 522, 2194, 606,-32768,
- 1931, 1931,-32768, 6174, 993, 1024, 1059,-32768,-32768, 313,
- 10308, 1046,-32768, 805, 431,-32768,-32768, 11105,-32768,-32768,
--32768,-32768,-32768, 192, 460,-32768,-32768, 328,-32768, 1640,
- 1850,-32768, 1045, 1057,-32768,-32768, 1446, 920,-32768, 9542,
- 9633,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 58,-32768,
- 1026, 1029, 591, 1549, 1071, 10933,-32768, 1081,-32768,-32768,
- 1787, 1616, 1106, 406, 1079, 1082,-32768,-32768, 2205, 12172,
- 2205, 4040, 2046, 11935,-32768, 1083,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 1050, 1051,-32768, 1092,-32768,-32768,
- 268,-32768,-32768,-32768,-32768, 99, 1218, 1103, 1032,-32768,
--32768,-32768,-32768, 5532, 12333,-32768, 871, 1060, 12288,-32768,
--32768, 1061,-32768, 1067, 496, 4877, 1073,-32768, 75, 7833,
- 1118, 1120, 525,-32768,-32768,-32768,-32768, 5886, 5886, 6444,
- 6444, 7304, 805,-32768,-32768, 6312,-32768, 1124,-32768,-32768,
- 1056, 113,-32768, 2314,-32768,-32768, 465, 1114,-32768, 579,
- 772,-32768, 1098,-32768, 558, 1134,-32768,-32768, 524,-32768,
--32768, 1482,-32768, 896, 928,-32768, 11105, 11867,-32768, 11867,
- 122, 122, 315, 557, 6631, 11990, 93, 5893,-32768, 69,
- 122,-32768, 113, 4217, 10933, 10933,-32768, 10933, 113, 4217,
--32768,-32768,-32768,-32768,-32768,-32768, 637, 637, 637, 328,
- 1087, 1089, 10584, 1059, 1095, 1097, 1099, 1125, 5395, 1133,
- 1135, 1138,-32768, 1111,-32768,-32768, 1117,-32768,-32768, 1153,
- 733, 734, 432, 171, 11105, 1165,-32768, 1171, 1127, 12333,
- 12333,-32768,-32768, 1178, 12373, 12390, 6994, 3455, 3620, 4256,
- 3132, 1790, 1790, 1790, 2527, 2527, 1322, 1322, 707, 707,
- 707,-32768,-32768, 1139, 1141, 1132, 11105, 11019,-32768, 285,
--32768, 9269, 11105,-32768,-32768,-32768, 11105,-32768,-32768, 1152,
- 11799, 1142, 1162, 1185, 1216,-32768, 11105,-32768, 11105,-32768,
- 11105, 1948, 3403,-32768,-32768, 3403,-32768, 156, 1948, 1144,
- 1158,-32768, 1159, 6398, 113,-32768, 113, 4475,-32768, 4217,
- 1166, 4662, 4662, 8438, 1161, 11191, 1168, 3753, 3684, 2176,
- 1107, 1175,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 11105,
- 1446, 1164, 1057,-32768, 12333,-32768, 12333, 1718, 1177, 11455,
--32768, 1181, 1234,-32768, 328,-32768,-32768,-32768,-32768,-32768,
- 1576, 12226,-32768, 6398, 10933, 3002, 3002, 5308,-32768,-32768,
--32768,-32768, 3275,-32768,-32768,-32768, 1239, 11105,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768, 268,-32768, 541,
--32768, 794, 552, 11105, 1237,-32768, 641, 652, 661, 1032,
--32768, 83,-32768, 32,-32768,-32768,-32768,-32768,-32768,-32768,
- 10400,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1120, 1233,
--32768,-32768,-32768, 6398, 968, 968, 1732,-32768,-32768,-32768,
- 1235,-32768,-32768, 11019,-32768,-32768,-32768,-32768, 1475,-32768,
- 4217, 12333,-32768, 2422,-32768, 465, 465,-32768,-32768,-32768,
--32768,-32768, 4217, 451, 789, 11105, 1016,-32768, 1242,-32768,
--32768,-32768, 215, 226, 2040, 606, 396, 122, 1245,-32768,
- 459, 1244, 465, 7092,-32768,-32768,-32768, 465,-32768, 1199,
- 328, 328, 328,-32768, 1200, 113, 4217, 113, 4217,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1217, 1223,
- 1229, 1230, 1050,-32768, 12221, 9269, 8902, 1215,-32768, 11105,
--32768,-32768,-32768, 1219, 1224, 1225, 6398,-32768,-32768, 1227,
- 190, 861, 861, 1214, 861,-32768,-32768, 11799, 1319, 10933,
--32768, 1228, 1231, 1232,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768, 113, 1238,-32768, 1226, 3753,-32768,-32768,
- 3264, 3264, 5989, 3811,-32768,-32768,-32768,-32768,-32768, 12333,
--32768,-32768, 1236,-32768,-32768, 153, 1240,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 5660, 3422, 3422, 4112, 4112, 5308,
- 5772, 54, 3275,-32768, 4229, 12355,-32768,-32768,-32768, 1246,
--32768, 1218,-32768, 11105,-32768, 11105,-32768, 11105,-32768, 1446,
--32768,-32768, 8345, 1308,-32768, 8993,-32768, 10492, 10492, 8532,
- 182, 1247, 250,-32768, 9269, 9084,-32768,-32768, 155, 2164,
- 2164, 1688, 1688, 9269,-32768,-32768, 1251, 1254, 944,-32768,
--32768,-32768, 113, 1256,-32768, 1279, 1279, 113, 1257, 11105,
- 11105, 7597, 465, 6764, 465, 465, 1129, 465, 7497,-32768,
--32768, 7702, 1279,-32768,-32768, 1296,-32768,-32768,-32768, 1266,
--32768, 1270, 11105, 11105, 11105, 11105, 9269,-32768, 1291,-32768,
--32768, 12333,-32768,-32768,-32768, 471, 1225,-32768,-32768,-32768,
--32768,-32768,-32768, 1268,-32768, 1334, 328,-32768,-32768,-32768,
- 113,-32768,-32768,-32768,-32768,-32768,-32768, 11105,-32768,-32768,
- 5772, 3422, 3422, 4771, 4771, 7427,-32768, 277, 4229,-32768,
--32768, 1274, 1275, 1277, 1290,-32768, 952, 161, 1329, 810,
- 819,-32768,-32768,-32768,-32768,-32768, 11105, 1330, 1335, 1336,
- 10670, 262, 1446, 415, 583,-32768,-32768, 10761, 1385,-32768,
--32768,-32768, 1349,-32768, 7537, 12058, 6768, 8235,-32768,-32768,
- 1403,-32768,-32768,-32768, 9919,-32768,-32768, 1321, 1381,-32768,
--32768,-32768,-32768, 6398,-32768,-32768, 9269,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768, 7597, 7597,-32768, 1279,
- 594, 905, 11105,-32768,-32768,-32768, 1016, 1016, 1279, 1279,
- 731, 1279,-32768,-32768,-32768, 113, 113,-32768,-32768, 1323,
- 1324, 1325, 1340,-32768, 9269, 11105,-32768, 471,-32768,-32768,
--32768,-32768, 113, 1344, 4799, 4799, 805, 6024,-32768,-32768,
--32768,-32768, 1290,-32768, 1446,-32768,-32768,-32768,-32768,-32768,
--32768, 665, 665, 1032, 1337, 1345, 7997,-32768,-32768,-32768,
--32768, 1367, 11105, 1377, 1378, 1390, 1569, 1583,-32768, 1032,
--32768,-32768, 1360,-32768,-32768, 1016, 958,-32768, 994, 1016,
- 10847, 1014, 176,-32768,-32768,-32768,-32768,-32768,-32768, 336,
--32768,-32768, 113, 113,-32768,-32768,-32768, 11105, 11105, 7597,
- 465, 465,-32768,-32768,-32768, 8103,-32768,-32768, 113, 113,
--32768,-32768,-32768,-32768,-32768, 1347,-32768,-32768,-32768, 7801,
- 7801, 6295, 2286, 1369,-32768,-32768,-32768, 11019,-32768,-32768,
--32768, 1442, 10215, 8626, 11019, 11105,-32768, 10027,-32768, 1400,
--32768,-32768, 1409,-32768, 1390, 1569,-32768,-32768, 676,-32768,
--32768, 11541, 11541, 9178,-32768,-32768, 1032,-32768,-32768, 7597,
- 7597,-32768, 1279, 1279,-32768, 9724,-32768,-32768,-32768,-32768,
--32768, 2286, 5469,-32768,-32768, 1357, 410, 1640, 1032, 10121,
--32768,-32768, 83,-32768,-32768, 1406, 1363, 12311, 10027,-32768,
--32768,-32768,-32768, 1290, 81,-32768,-32768,-32768,-32768,-32768,
- 1365, 12243, 1376, 1373, 1382, 1032,-32768, 1016,-32768,-32768,
--32768,-32768, 673,-32768, 9360,-32768,-32768,-32768,-32768, 1290,
- 1466, 1436,-32768,-32768,-32768, 365, 268,-32768,-32768,-32768,
- 465, 83,-32768, 11105, 1437,-32768, 1439,-32768, 1032, 10027,
- 1414, 667, 1449,-32768,-32768, 186,-32768, 1451,-32768, 1405,
--32768,-32768,-32768,-32768, 11105, 1466, 1463, 1466,-32768, 111,
--32768,-32768,-32768, 9451, 1417, 685,-32768,-32768,-32768, 9269,
- 1425,-32768, 1529, 1481,-32768,-32768,-32768, 179,-32768, 10121,
- 1533, 1485,-32768,-32768,-32768, 1546, 1548,-32768
-};
-
-static const short yypgoto[] = {-32768,
- 1558,-32768, -301, 1393, -385, 29, 8, 1562,-32768, 1531,
--32768,-32768, 265,-32768, 376,-32768, 382,-32768, 121, 901,
- 37, 31,-32768,-32768, -632,-32768,-32768, 608, 39, 1402,
- 1136, 1427, -703, -24, -172, 6, 116,-32768,-32768,-32768,
--32768,-32768, 799,-32768,-32768,-32768,-32768,-32768,-32768, 412,
- 687,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, 1502, -668, 6906, 1364, 79, -587, -311, -67,
- 1469, -518,-32768, 1604,-32768, 181,-32768, -1404,-32768, -1267,
- -45,-32768, 2063, 1435, -283, 341, -553,-32768, -856, 6731,
- 1649, 1869, 4947, 1331, -325, -99, -92, 1646, -129, -51,
- 246,-32768,-32768,-32768, -339,-32768, -153,-32768,-32768, -1273,
- -52, -345, 6249, 40, 1515, -124, 146, 347, -191, -4,
- -128, -174, -167, -2, 174, 85,-32768, -365,-32768,-32768,
--32768,-32768,-32768, 274, 1342, -57,-32768, 681,-32768,-32768,
- -1179, -211, 907,-32768,-32768,-32768,-32768,-32768, 10,-32768,
--32768,-32768,-32768,-32768,-32768, 693, -366,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 1396,-32768, 418, 611,-32768,-32768,
--32768, 581, -751,-32768,-32768,-32768,-32768,-32768,-32768, 862,
--32768, 408, 1004, 722, 1062, 2110, 109, 22, -471, 1465,
- 3545, 353,-32768, -494,-32768, 12, 291, 438, -143, 740,
- -84, 5317, 1320,-32768, 6267, 2755, 1981, -12, -106,-32768,
- 1550, -65,-32768, 5689, 3720, -372,-32768, 2404, -165,-32768,
--32768, 327,-32768,-32768, 472, 43, -335,-32768,-32768,-32768,
--32768, -1459,-32768, -1246, -1436,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 51,
--32768,-32768,-32768,-32768,-32768, 106, -1361,-32768,-32768, -56,
--32768,-32768,-32768,-32768, -1447, 48,-32768, 50,-32768, -685,
- -361, 672,-32768,-32768,-32768,-32768, -392,-32768, -383, -180,
--32768, 998, 322,-32768, 169,-32768, -234
-};
-
-
-#define YYLAST 12474
-
-
-static const short yytable[] = { 59,
- 444, 443, 196, 632, 224, 420, 423, 435, 445, 695,
- 122, 36, 780, 761, 1000, 642, 516, 490, 696, 392,
- 538, 541, 356, 1118, 357, 103, 432, 298, 256, 641,
- 59, 982, 35, 397, 42, 693, 1043, 59, 1045, 177,
- 398, 399, 36, 55, 646, 647, 1075, 174, 839, 400,
- 878, 178, 209, 571, 711, 509, 1373, 1374, 391, 934,
- 976, 1505, 507, 35, 1451, 42, 1566, 247, 221, 408,
- 169, 672, 42, 1395, 55, 190, 1562, 1576, 170, 296,
- 171, 175, 224, 349, 489, 349, 1013, 349, 495, 498,
- 1206, 610, 256, 497, 260, 594, 701, 702, 224, 1589,
- -601, 1466, 349, 349, 528, 610, 738, -1, 1469, 610,
- 1567, 719, 72, 983, 86, 1200, 948, 364, 1080, 722,
- 645, 519, 196, 1592, 1085, 89, -2, 766, 1076, 1072,
- 88, 406, 349, 1014, 349, 93, 1015, 452, 141, 146,
- 1207, 595, 1601, 72, 802, 90, -601, -601, 15, 57,
- 72, 256, -415, 913, 224, 163, -295, 528, 253, 1633,
- 59, -601, 224, 87, 59, 949, 177, 1008, 720, -582,
- 440, 209, 208, 743, 174, 404, 190, 1077, 178, 224,
- 57, -415, 629, 633, 636, -415, 1639, 176, 1602, 94,
- 1618, 1201, 297, 824, -356, 164, 1651, 169, 453, 42,
- 1477, 1073, 708, 135, 55, 170, 989, 171, 175, 1483,
- 1484, 1298, 1485, 1364, 1009, -582, 189, 1010, 221, 182,
- 1427, 190, 998, 1592, 138, 837, 221, 221, -302, 308,
- -415, 454, -144, 467, 1145, 1427, 620, 1661, 1505, -365,
- 1564, 15, 107, -356, 72, 26, 615, 453, 726, 249,
- -366, 403, 15, 616, 8, 521, 221, 419, 422, 260,
- 1299, 137, 1365, 838, 95, 110, 111, 1156, 38, 1428,
- 1159, 1570, -365, 72, -302, -302, -365, 72, 155, 468,
- 454, 405, 823, -366, 1536, 607, 1662, -366, -582, -295,
- 648, 208, 247, 91, 716, 1594, -626, 1279, 363, 38,
- 108, 471, 474, 109, 642, 221, 130, 131, 680, -365,
- 57, 1187, 1188, 92, 176, 161, 961, 112, 113, 675,
- -366, 147, 1599, -600, 349, 1117, 987, 988, 1171, 459,
- 522, 881, 420, 423, -582, 485, 935, 296, 162, 1048,
- 523, 1443, -626, -626, 1629, 247, 460, 695, 882, 432,
- 58, 698, 187, 349, 651, 1234, 1019, -626, 221, 919,
- 495, 498, 517, 1579, 1580, 764, 260, 1239, 495, -600,
- -600, 952, 1049, 1634, 179, 461, 1050, 883, 516, 39,
- 498, 58, -304, 1001, -600, 40, 493, 374, 58, 183,
- 632, 138, 224, 375, 155, 155, 155, 692, 650, 498,
- 209, 1260, 564, 1262, 565, 920, 921, 199, 518, 1051,
- 39, 139, 224, 594, 637, 221, 40, 215, 216, 1407,
- -120, 224, 15, 14, 7, 127, 128, 10, -304, -304,
- 295, 411, 683, 768, 8, 9, 413, 59, 224, 177,
- 155, 76, 738, -298, 1226, 20, 1174, 713, 738, 1147,
- 297, 178, 18, -120, 23, 449, 620, -120, 129, 595,
- 638, 240, 21, 736, 962, 241, 820, 72, 26, 127,
- 128, 1446, 76, 813, 649, 26, 188, 27, 28, 76,
- 963, 175, 58, -118, 147, 15, 130, 131, 1295, 1296,
- -120, 149, 201, -143, 213, 18, 349, 243, 221, 221,
- 1075, 150, 823, 59, 405, 137, 221, 1008, 1093, 32,
- 694, 58, 1240, 363, 151, 58, -118, 881, 221, 814,
- -118, 130, 131, 971, 88, 629, 633, 199, 636, 349,
- 1037, 245, 349, 299, 882, 349, 788, 221, 986, 349,
- 829, 829, 829, 829, 780, 522, 620, 795, 607, 520,
- 72, 1497, 349, -118, 1009, 896, 138, 1010, 738, -831,
- 1038, 898, 349, 883, 1406, 349, 360, 759, 900, 695,
- 633, 1023, 511, 407, 199, 765, 694, 410, 696, 91,
- 362, 127, 128, 372, 748, 749, 794, 176, 957, 680,
- 642, 1033, 823, 1035, 376, 693, 958, 937, 1039, 92,
- 296, 897, 76, 1052, 641, 380, 76, 899, 955, 127,
- 128, 381, 201, 213, 901, -295, 72, 1024, 512, 692,
- 116, 117, 118, 791, 8, 9, 736, 95, 96, 97,
- 401, 26, 377, 130, 131, 495, 969, 528, 974, 975,
- 127, 128, 571, 1170, 1449, 519, 260, 529, 189, 1053,
- 127, 128, 90, 796, 1284, 1478, 137, 530, 425, 201,
- 221, 130, 131, 633, 1199, 127, 128, 88, 363, 122,
- 1119, 349, 767, 119, 120, 392, 130, 131, 26, 738,
- 98, 99, 100, 975, 433, 209, 303, 1193, 295, 247,
- 26, 738, 130, 131, 363, 645, -621, 998, 1195, -7,
- 101, 221, 130, 131, 999, 58, 529, 1197, 115, 703,
- 164, 1507, 704, 297, 447, 26, 530, 130, 131, 1613,
- 448, 155, 155, 155, 707, 738, 252, 738, 1636, 903,
- 906, 885, 694, 1194, 780, 692, 1135, 1081, 1082, 694,
- 1083, 886, 1058, 1135, 1196, 221, 1653, 451, 691, 1280,
- 1281, 233, 1283, 1198, 463, 887, 199, 1508, 95, 110,
- 111, 411, 1135, 464, 413, 1614, 95, 414, 415, 1255,
- 1256, 1257, 158, 221, 1637, 824, 501, 811, 520, 95,
- 110, 111, 513, 59, 91, 59, 89, 91, 58, 592,
- 593, 209, 1654, 59, -141, -142, 652, 524, 432, 692,
- 349, 349, 525, 349, 92, 692, 90, 92, 8, 9,
- 388, 112, 113, 114, 691, 1189, 788, 21, 788, 98,
- 113, 526, 745, 812, 527, 378, 788, 795, 535, 1044,
- 544, 745, 112, 113, 416, 199, 545, 795, 221, 222,
- 223, 201, 89, 199, 224, 92, 546, 379, 694, 15,
- 1241, 224, 363, -415, 58, 1229, 1230, 1231, 1025, 1026,
- 130, 131, 90, 89, 127, 128, 794, 137, 794, 519,
- 224, 1430, 91, 349, 794, 567, 794, 547, 1121, 76,
- 1431, -415, -415, 90, 252, 116, 117, 118, 158, 158,
- 158, 564, 92, 565, 1268, 1270, 72, 548, 72, 382,
- 383, 384, 567, 791, 610, 791, 72, 410, 656, 829,
- 1057, 1067, 694, 791, 26, 692, 130, 131, 694, 736,
- 201, 256, 1640, 659, 502, 504, 222, 446, 201, 660,
- 885, 127, 128, 796, 158, 796, 26, 514, 119, 120,
- 886, 260, 1040, 796, 385, 801, 116, 770, 771, 91,
- 772, 295, 386, 387, 887, 662, 663, 692, 89, 829,
- 349, 483, 484, 692, 1046, 1047, 1479, 491, 492, 92,
- 691, 8, 9, 773, 1078, 1411, 246, 691, 90, 664,
- 774, 26, 1135, 130, 131, 1090, 1091, 1092, 1041, 483,
- 714, 1058, 683, 676, 1270, 491, 715, 26, 18, 119,
- 120, 824, 199, 1360, 1362, 90, 736, 550, 677, 1135,
- 1425, 1426, 1366, 256, 92, 1135, 483, 1530, 432, 829,
- 705, 26, -6, 130, 131, 95, 96, 97, 694, 349,
- 903, 906, 694, 709, 420, 423, 692, 1220, 703, 704,
- 1031, 199, 15, 199, 199, 731, 707, 1221, 692, 658,
- 755, 432, 491, 1531, -578, 1404, 760, -578, 668, 805,
- 1222, 806, 1287, 15, 420, 423, 807, -415, 808, 59,
- 694, 658, 483, 1535, 1176, 1177, 694, 815, 98, 99,
- 816, 833, 692, 835, 692, 836, 691, 201, 199, 720,
- 224, 838, 916, 215, 216, -415, -415, 893, 1511, 14,
- -415, 895, 788, 912, -578, 916, -578, -578, 940, -578,
- 8, 9, 829, 795, 1528, 941, 914, 224, 950, 694,
- -578, 20, -578, 224, 954, 349, 201, 972, 201, 201,
- 23, 256, 127, 1391, 58, 1135, 58, 951, -578, -578,
- 956, 20, 964, 253, 58, 965, 978, 1063, 692, 694,
- 691, 985, 794, -578, 363, 1472, 691, -298, 984, 1057,
- 695, 694, 130, 131, 453, 224, 1029, 1005, 1006, 1585,
- 1457, 432, 1462, 201, 1007, 692, 363, 1017, 1459, 999,
- 1012, -830, 72, 1021, 130, 131, 522, 1028, 1032, 791,
- 1034, 769, 1036, 1495, 1094, 694, 1095, 694, 1347, 1099,
- 300, 1511, 1096, 10, 1097, 736, 1098, 1100, 522, 1101,
- 1339, 824, 1102, 155, -140, 158, 158, 158, 1103, 796,
- 990, 770, 771, 1511, 1104, 801, 1106, 801, 18, 1107,
- 1243, 1338, 1064, 1071, 1109, 801, 1245, 1246, 21, 1110,
- 1243, 1248, 1113, 224, 1246, 1126, 1111, 59, 1112, 1129,
- 1610, 1138, 1128, 426, 427, 846, 155, 147, 1130, 903,
- 906, 694, 1131, -183, 991, 1139, 691, 428, 1149, 1140,
- 691, 26, 1162, 992, 993, 1150, 1146, 429, 137, -183,
- 788, -183, 1155, 1511, 1165, 32, 1302, 1303, 694, 1168,
- 430, 795, 1456, 1169, 1456, 1192, 1215, -52, 1225, 894,
- 1244, 692, -52, 1249, 722, 1250, 1254, 1258, 691, 1263,
- 994, 72, 501, -52, 691, 1264, 1302, 1303, 694, 1236,
- 1237, 1265, 1266, 1271, 1282, 523, 1286, 1273, 1025, 1026,
- 794, 1274, 1275, 1347, 1278, 1288, 1294, 1135, 1289, 1290,
- 1200, 209, 460, 1347, 1297, 1293, 1251, 1300, 1346, -663,
- 1347, 1253, 1405, 1310, 1359, 1339, 221, 691, 1368, 829,
- 72, 1369, 1339, 1372, 1376, 528, 1338, 791, 960, 127,
- 128, 140, 140, 1398, 156, 1575, 1338, 1399, 1409, 977,
- 1410, 1419, 1420, 1338, 1421, 1422, 1135, 691, 420, 423,
- 1429, 1438, -304, 1452, 1439, 1440, 1063, 796, 212, 691,
- 220, 589, 590, 591, 592, 593, 237, -304, 1454, 129,
- 846, -304, 1415, 1416, 694, 95, 96, 97, 1467, 26,
- 58, 130, 131, 155, 155, 155, 1519, -304, 1470, 1514,
- 1491, 1492, 1493, 691, 1627, 691, 1521, 1515, 1655, -304,
- -304, 375, -304, 1522, -304, 224, 72, 1494, 95, 110,
- 111, 1499, 1529, 155, 155, 155, 72, 1551, 1561, 1571,
- 363, 1553, 1572, 72, 1587, 1596, 411, 413, 98, 99,
- 1597, 1603, 1605, -304, -304, 520, 1621, 116, 770, 771,
- 1608, 1064, 140, 1346, 116, 770, 771, 140, -304, 1609,
- 156, 156, 156, 1346, 224, 1625, 1631, 692, 1632, 691,
- 1346, 112, 113, 1557, 773, 1588, 1635, 1638, 1347, 1347,
- 1557, 801, 1643, 1347, 1642, 1379, 1380, 212, 1389, 1390,
- 1339, 1392, 1647, 450, 1652, 1339, 691, 745, 26, 349,
- 119, 120, 1656, 745, 470, 470, 479, 119, 120, 1657,
- 1659, 1338, 1338, 1664, 1665, 1667, 1338, 1668, 692, 58,
- 220, 300, 394, 395, 10, 1347, 691, 1, 496, 220,
- 1481, 1482, 442, 5, 1347, 160, 221, 1339, 1526, 1172,
- 441, 95, 110, 111, 953, 745, 1339, 712, 95, 110,
- 111, 1626, 225, 226, 227, 95, 110, 111, 1338, 21,
- 1557, 439, 703, 704, 1068, 359, 1387, 1338, 58, 707,
- 140, 503, 26, 1311, 27, 319, 18, 409, 1415, 1416,
- 694, 228, 410, 1510, 1663, 1347, 297, 1408, 382, 383,
- 384, 72, 72, 297, 112, 1523, 72, 1339, 1164, 534,
- 1004, 112, 113, 493, 668, 1163, 32, 506, 112, 1525,
- 748, 749, 7, 8, 9, 10, 1370, 960, 1338, 1232,
- 1475, 1476, 691, 745, 1252, 1347, 1393, 1070, 1346, 1346,
- 943, 694, 1161, 1346, 486, 617, 880, 1339, 72, 26,
- 156, 386, 387, 390, 1465, 1356, 1641, 72, 153, 1600,
- 21, 1388, 1649, 1646, 58, 1471, 1388, 1648, 1338, 801,
- 1214, 8, 9, 26, 58, 27, 28, 199, 0, 199,
- 0, 58, 0, 297, 0, 1346, 155, 158, 0, 193,
- 366, 370, 0, 0, 1346, 0, 0, 0, 18, 194,
- 95, 110, 111, 0, 665, 666, 667, 32, 72, 0,
- 0, 0, 195, 0, 0, 8, 9, 0, 0, 0,
- 519, 26, 0, 130, 131, 0, 212, 220, 0, 0,
- 158, 0, 0, 1542, 1543, 1544, 0, 1220, 0, 1030,
- 140, 1611, 18, 140, 0, 1346, 0, 1221, 72, 156,
- 156, 156, 0, 112, 113, 140, 0, 155, 155, 155,
- 1222, 0, 201, 1460, 201, 26, 0, 130, 131, 300,
- 394, 395, 10, 1269, 0, 421, 424, 214, 215, 216,
- 1079, 1220, 0, 0, 14, 1346, 1084, 0, 0, 0,
- 0, 1221, 470, 1577, 1578, 470, 0, 479, 479, 479,
- 0, 18, 0, 450, 1222, 0, 20, 21, 0, 470,
- 496, 220, 0, 0, 450, 23, 0, 0, 496, 0,
- 153, 0, 27, 319, 0, 0, 0, 0, 691, 0,
- 699, 450, 0, 0, 295, 745, 214, 215, 216, 58,
- 58, 295, 0, 14, 58, 585, 586, 587, 588, 589,
- 590, 591, 592, 593, 32, 0, 0, 0, 156, 0,
- 18, 156, 596, 0, 1628, 20, 1316, 0, 0, 0,
- 0, 0, 1269, 0, 23, 728, 156, 156, 156, 691,
- 0, 0, 734, 0, 745, 0, 58, 0, 0, 938,
- 199, 156, 1141, 0, 1142, 58, 689, 158, 158, 158,
- 0, 597, 598, 0, 0, 0, 599, 600, 601, 602,
- 0, 0, 558, 0, 127, 128, 0, 0, 0, 13,
- 0, 295, 0, 300, 394, 395, 10, 158, 158, 158,
- 0, 127, 128, 0, 542, 543, 339, 0, 339, 0,
- 339, 18, 902, 902, 0, 909, 58, 0, 0, 821,
- 551, 0, 928, 552, 560, 0, 553, 620, 18, 563,
- 0, 21, 689, 568, 26, 0, 130, 131, 251, 0,
- 0, 609, 220, 0, 620, 201, 27, 319, 0, 0,
- 621, 26, 0, 130, 131, 339, 58, 339, 0, 0,
- 622, 0, 0, 300, 8, 9, 10, 621, 1444, 1445,
- 623, 0, 0, 624, 625, 0, 0, 622, 32, 874,
- 0, 212, 0, 220, 237, 875, 0, 623, 0, 0,
- 624, 625, 7, 8, 250, 10, 0, 0, 95, 96,
- 97, 21, 225, 226, 227, 0, 0, 0, 251, 0,
- 258, 0, 0, 0, 0, 0, 27, 319, 730, 0,
- 0, 0, 932, 0, 421, 706, 18, 220, 0, 0,
- 21, 228, 0, 1259, 258, 1261, 0, 251, 0, 470,
- 470, 479, 479, 479, 0, 27, 28, 470, 32, 26,
- 0, 98, 99, 229, 0, 496, 0, 0, 450, 0,
- 0, 1506, 0, 258, 0, 0, 0, 0, 0, 252,
- 0, 0, 421, 424, 258, 0, 0, 32, 214, 215,
- 216, 0, 0, 1524, 1527, 14, 0, 212, 689, 0,
- 558, 1292, 0, 558, 0, 689, 0, 826, 230, 231,
- 232, 0, 18, 0, 0, 0, 0, 20, 0, 0,
- 558, 0, 0, 0, 156, 0, 23, 8, 9, 0,
- 0, 0, 13, 558, 0, 0, 0, 853, 639, 8,
- 9, 10, 560, 258, 0, 560, 0, 0, 549, 0,
- 0, 259, 0, 0, 18, 0, 300, 127, 128, 10,
- 158, 421, 834, 551, 552, 876, 0, 7, 8, 9,
- 10, 892, 1573, 308, 640, 560, 21, 26, 258, 130,
- 131, 0, 0, 0, 0, 0, 339, 0, 0, 26,
- 1371, 130, 131, 1220, 21, 1375, 0, 0, 0, 0,
- 0, 251, 258, 1221, 902, 21, 0, 902, 0, 27,
- 319, 620, 0, 0, 689, 0, 1222, 0, 26, 902,
- 27, 28, 0, 1148, 1148, 928, 0, 0, 434, 0,
- 0, 158, 158, 158, 966, 0, 927, 0, 0, 0,
- 0, 32, 0, 0, 967, 0, 0, 0, 1412, 8,
- 9, 0, 32, 0, 623, 0, 0, 968, 625, 0,
- 469, 0, 237, 0, 0, 0, 0, 1175, 1175, 1181,
- 0, 1114, 1115, 488, 0, 0, 18, 1120, 689, 0,
- 494, 215, 216, 0, 689, 0, 0, 14, 725, 729,
- 0, 1132, 620, 1133, 258, 1134, 729, 0, 0, 26,
- 0, 130, 131, 0, 18, 7, 127, 128, 10, 20,
- 0, 0, 1181, 0, 0, 1500, 0, 0, 23, 0,
- 0, 0, 0, 0, 0, 1501, 1223, 1223, 1223, 339,
- 0, 0, 0, 0, 0, 623, 0, 0, 1502, 625,
- 0, 0, 0, 21, 1167, 0, 0, 450, 450, 0,
- 251, 0, 258, 1487, 1488, 0, 421, 706, 27, 28,
- 0, 0, 339, 729, 0, 0, 0, 0, 0, 0,
- 1498, 0, 0, 0, 450, 0, 0, 0, 0, 450,
- 0, 0, 252, 0, 1054, 1055, 9, 10, 1190, 0,
- 32, 0, 0, 0, 689, 339, 0, 725, 689, 0,
- 850, 851, 0, 855, 856, 857, 858, 859, 860, 861,
- 862, 863, 864, 865, 866, 867, 868, 869, 870, 871,
- 872, 873, 21, 729, 0, 0, 0, 0, 927, 729,
- 1538, 1539, 0, 0, 0, 26, 689, 27, 28, 0,
- 0, 1235, 689, 1056, 0, 258, 1549, 1550, 127, 128,
- 1124, 193, 1148, 1148, 928, 0, 0, 0, 0, 729,
- 0, 194, 0, 0, 0, 0, 729, 0, 0, 32,
- 0, 258, 0, 0, 195, 0, 0, 1175, 1175, 1301,
- 1301, 1181, 0, 727, 0, 689, 1175, 558, 945, 947,
- 727, 620, 0, 0, 0, 0, 0, 0, 26, 1127,
- 130, 131, 0, 0, 339, 0, 0, 0, 0, 1301,
- 1301, 1181, 0, 0, 621, 689, 0, 0, 0, 0,
- 0, 1223, 1223, 1223, 622, 0, 0, 689, 421, 834,
- 551, 552, 0, 0, 623, 0, 0, 624, 625, 0,
- 0, 0, 0, 450, 450, 0, 450, 450, 0, 450,
- 756, 0, 725, 0, 0, 762, 0, 727, 258, 0,
- 0, 689, 0, 689, 587, 588, 589, 590, 591, 592,
- 593, 0, 0, 153, 258, 0, 0, 0, 0, 0,
- 803, 0, 0, 0, 0, 0, 809, 0, 1312, 0,
- 1313, 0, 1314, 0, 0, 0, 0, 1227, 817, 818,
- 0, 819, 0, 1175, 1175, 1301, 1301, 1181, 0, 0,
- 1175, 0, 0, 0, 0, 1042, 1212, 727, 7, 127,
- 128, 10, 0, 727, 13, 0, 0, 689, 0, 0,
- 0, 0, 0, 339, 339, 611, 339, 300, 394, 395,
- 10, 0, 612, 0, 0, 0, 18, 212, 220, 0,
- 0, 729, 0, 727, 689, 0, 21, 0, 0, 0,
- 727, 0, 0, 0, 0, 0, 0, 0, 0, 26,
- 0, 27, 28, 1105, 0, 21, 0, 0, 450, 450,
- 0, 0, 613, 0, 689, 30, 0, 0, 26, 0,
- 27, 319, 1414, 258, 0, 31, 917, 918, 0, 0,
- 0, 917, 0, 32, 0, 729, 729, 0, 33, 0,
- 725, 729, 0, 0, 0, 0, 1503, 1503, 80, 1503,
- 0, 0, 614, 0, 0, 729, 0, 729, 104, 729,
- 0, 0, 0, 0, 0, 0, 1285, 0, 133, 0,
- 0, 0, 0, 0, 144, 144, 0, 144, 0, 80,
- 0, 0, 0, 0, 0, 0, 80, 421, 706, 0,
- 0, 0, 479, 0, 0, 0, 0, 0, 1160, 203,
- 0, 80, 0, 558, 0, 0, 0, 0, 729, 238,
- 689, 450, 450, 450, 421, 424, 104, 0, 0, 0,
- 0, 0, 0, 339, 0, 0, 0, 262, 104, 0,
- 0, 1503, 1503, 1552, 0, 0, 1186, 0, 0, 0,
- 0, 0, 0, 0, 421, 1358, 551, 552, 0, 0,
- 104, 0, 729, 1027, 0, 0, 1400, 1401, 1402, 1403,
- 0, 0, 0, 479, 479, 479, 0, 0, 0, 729,
- 0, 450, 450, 0, 0, 727, 0, 0, 133, 0,
- 80, 0, 0, 0, 144, 144, 0, 0, 0, 412,
- 144, 0, 0, 144, 144, 144, 0, 0, 0, 258,
- 0, 258, 0, 0, 0, 0, 0, 0, 0, 80,
- 1086, 0, 1088, 80, 1242, 0, 0, 0, 0, 203,
- 80, 0, 8, 9, 1442, 0, 12, 13, 0, 727,
- 727, 0, 14, 0, 0, 727, 0, 203, 203, 203,
- 421, 706, 450, 258, 0, 0, 16, 0, 17, 727,
- 0, 727, 0, 727, 20, 0, 0, 0, 0, 0,
- 0, 0, 0, 23, 725, 725, 203, 0, 1272, 0,
- 0, 0, 26, 0, 130, 131, 563, 0, 0, 0,
- 0, 0, 0, 505, 1122, 1123, 0, 1125, 339, 0,
- 0, 0, 104, 0, 7, 8, 9, 10, 0, 1496,
- 13, 0, 727, 144, 0, 0, 689, 0, 0, 0,
- 0, 879, 0, 0, 904, 907, 0, 0, 1144, 0,
- 0, 0, 18, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 21, 0, 0, 258, 1520, 0, 620, 0,
- 0, 104, 531, 0, 0, 26, 727, 27, 28, 0,
- 0, 0, 729, 0, 729, 0, 729, 689, 0, 0,
- 0, 966, 0, 727, 725, 0, 0, 0, 0, 1185,
- 0, 967, 0, 725, 725, 7, 8, 9, 10, 32,
- 0, 623, 725, 0, 968, 625, 104, 0, 0, 0,
- 618, 0, 531, 531, 634, 0, 1212, 0, 1377, 1378,
- 0, 1555, 0, 80, 0, 0, 0, 853, 1555, 0,
- 0, 0, 0, 21, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 258, 725, 26, 558, 27, 28,
- 0, 0, 192, 0, 0, 0, 0, 133, 0, 1233,
- 127, 128, 193, 0, 215, 216, 104, 0, 203, 104,
- 14, 1238, 194, 258, 0, 0, 729, 0, 0, 0,
- 32, 0, 0, 144, 0, 195, 144, 0, 421, 1358,
- 551, 552, 20, 0, 0, 0, 0, 0, 144, 0,
- 0, 23, 0, 620, 0, 1437, 80, 0, 1555, 0,
- 26, 0, 130, 131, 582, 583, 584, 585, 586, 587,
- 588, 589, 590, 591, 592, 593, 621, 1630, 0, 0,
- 0, 0, 0, 0, 203, 203, 622, 258, 203, 0,
- 203, 203, 203, 753, 0, 725, 623, 203, 1645, 631,
- 625, 0, 203, 0, 0, 203, 0, 853, 1291, 0,
- 0, 1480, 0, 0, 0, 0, 727, 0, 727, 0,
- 727, 0, 80, 0, 0, 0, 300, 127, 128, 10,
- 0, 0, 13, 725, 0, 0, 0, 7, 8, 9,
- 10, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1309, 18, 0, 0, 0, 0, 104,
- 104, 104, 104, 0, 21, 0, 1136, 0, 0, 1137,
- 620, 0, 0, 0, 0, 21, 0, 26, 0, 27,
- 319, 1143, 251, 0, 0, 904, 907, 0, 0, 729,
- 27, 28, 0, 1151, 0, 0, 0, 0, 0, 0,
- 8, 9, 0, 1152, 12, 13, 1540, 1541, 0, 0,
- 14, 32, 0, 623, 252, 0, 1153, 625, 0, 104,
- 727, 531, 32, 1396, 16, 0, 17, 1397, 0, 904,
- 907, 0, 20, 618, 0, 531, 531, 0, 634, 0,
- 0, 23, 0, 0, 1568, 929, 0, 0, 0, 931,
- 26, 0, 130, 131, 603, 0, 0, 258, 0, 0,
- 0, 0, 1413, 0, 203, 0, 127, 128, 0, 0,
- 0, 246, 0, 0, 1582, 0, 1418, 0, 0, 0,
- 0, 0, 0, 0, 7, 8, 9, 10, 133, 604,
- 246, 0, 0, 18, 0, 133, 0, 0, 0, 0,
- 0, 0, 0, 203, 973, 203, 203, 238, 634, 620,
- 0, 0, 18, 0, 0, 0, 26, 0, 130, 131,
- 0, 0, 21, 0, 0, 0, 0, 0, 620, 0,
- 0, 0, 621, 0, 0, 26, 0, 27, 28, 0,
- 0, 1473, 622, 0, 0, 1474, 0, 0, 0, 0,
- 203, 966, 623, 0, 973, 624, 625, 0, 0, 0,
- 0, 967, 203, 203, 753, 753, 753, 1489, 1490, 32,
- 203, 623, 0, 0, 968, 625, 0, 0, 725, 0,
- 0, 0, 0, 727, 579, 580, 581, 582, 583, 584,
- 585, 586, 587, 588, 589, 590, 591, 592, 593, 133,
- 0, 0, 80, 0, 80, 0, 0, 0, 0, 1065,
- 80, 0, 80, 0, 904, 907, 0, 0, 104, 0,
- 0, 0, 263, 0, 104, 8, 9, 0, 0, 12,
- 13, 531, 531, 531, 0, 14, 0, 0, 0, 1136,
- 1137, 904, 907, 531, 0, 0, 0, 0, 1143, 16,
- 0, 17, 0, 0, 0, 0, 0, 20, 0, 264,
- 265, 0, 0, 0, 0, 0, 23, 0, 266, 0,
- 0, 904, 907, 0, 0, 26, 0, 130, 131, 0,
- 267, 0, 0, 0, 268, 269, 270, 271, 272, 273,
- 274, 275, 276, 277, 278, 279, 280, 281, 282, 283,
- 284, 285, 286, 287, 288, 0, 0, 289, 290, 291,
- 0, 0, 292, 0, 0, 293, 531, 531, 0, 0,
- 531, 0, 0, 531, 0, 0, 0, 0, 104, 0,
- 0, 294, 531, 0, 104, 0, 929, 929, 929, 0,
- 0, 0, 531, 0, 1154, 0, 300, 8, 9, 10,
- 580, 581, 582, 583, 584, 585, 586, 587, 588, 589,
- 590, 591, 592, 593, 0, 1136, 1137, 904, 907, 0,
- 0, 0, 1143, 0, 0, 0, 104, 0, 104, 0,
- 203, 203, 1183, 83, 21, 0, 0, 0, 0, 0,
- 0, 251, 0, 106, 0, 0, 0, 472, 475, 27,
- 319, 0, 126, 134, 0, 0, 0, 0, 0, 145,
- 145, 0, 145, 0, 83, 300, 127, 128, 10, 0,
- 0, 83, 0, 252, 0, 1183, 0, 0, 0, 0,
- 0, 32, 0, 0, 145, 0, 83, 0, 104, 753,
- 753, 753, 0, 18, 239, 0, 0, 0, 0, 0,
- 0, 248, 0, 21, 0, 104, 0, 0, 1065, 620,
- 0, 0, 0, 248, 0, 0, 26, 104, 27, 319,
- 0, 0, 0, 300, 8, 9, 10, 0, 1136, 1137,
- 1247, 1143, 1151, 0, 0, 0, 0, 0, 80, 0,
- 0, 0, 1152, 0, 0, 0, 0, 0, 0, 0,
- 32, 104, 623, 104, 0, 1153, 625, 0, 0, 0,
- 0, 21, 0, 0, 0, 83, 0, 0, 251, 145,
- 145, 0, 0, 0, 0, 145, 27, 319, 145, 145,
- 145, 104, 0, 0, 0, 0, 531, 531, 0, 531,
- 0, 0, 0, 0, 83, 0, 0, 0, 83, 0,
- 522, 0, 0, 0, 145, 83, 0, 0, 32, 0,
- 0, 0, 531, 904, 907, 531, 531, 634, 0, 0,
- 0, 0, 145, 145, 145, 7, 8, 9, 10, 167,
- 12, 13, 0, 0, 0, 0, 14, 0, 0, 203,
- 203, 203, 203, 203, 1183, 753, 0, 0, 0, 203,
- 16, 145, 17, 18, 19, 0, 0, 0, 20, 0,
- 0, 0, 0, 21, 0, 0, 0, 23, 0, 0,
- 168, 0, 1183, 1183, 1183, 0, 26, 0, 27, 28,
- 0, 0, 0, 0, 753, 753, 753, 753, 145, 0,
- 0, 0, 30, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 31, 0, 0, 0, 0, 0, 203, 0,
- 32, 0, 0, 144, 0, 33, 80, 0, 0, 0,
- 34, 0, 0, 0, 0, 746, 248, 145, 747, 0,
- 472, 475, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 763, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 7, 8, 9, 10, 214, 215, 216, 0,
- 0, 0, 0, 14, 0, 753, 203, 203, 753, 753,
- 1417, 248, 0, 203, 0, 619, 0, 145, 145, 635,
- 18, 0, 0, 0, 644, 20, 0, 0, 83, 0,
- 21, 0, 0, 0, 23, 0, 620, 0, 0, 0,
- 0, 0, 0, 26, 0, 27, 28, 0, 0, 203,
- 973, 203, 0, 0, 0, 0, 0, 0, 0, 966,
- 0, 0, 681, 0, 7, 8, 9, 10, 104, 967,
- 13, 248, 0, 145, 248, 0, 0, 32, 0, 623,
- 8, 9, 968, 625, 12, 246, 0, 0, 145, 0,
- 14, 145, 18, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 21, 145, 16, 0, 17, 0, 620, 0,
- 0, 83, 20, 0, 0, 26, 0, 27, 28, 753,
- 753, 23, 753, 0, 0, 0, 0, 0, 0, 0,
- 26, 1178, 130, 131, 0, 0, 0, 0, 0, 145,
- 145, 1179, 0, 145, 0, 145, 145, 145, 145, 32,
- 0, 623, 145, 0, 1180, 625, 0, 145, 0, 0,
- 145, 0, 0, 0, 0, 1183, 0, 0, 0, 0,
- 8, 9, 0, 167, 12, 13, 782, 83, 733, 0,
- 14, 7, 8, 9, 10, 0, 0, 519, 0, 0,
- 0, 0, 0, 0, 16, 0, 17, 18, 0, 0,
- 0, 0, 20, 0, 753, 753, 1417, 753, 0, 18,
- 0, 23, 0, 0, 248, 248, 248, 248, 0, 21,
- 26, 0, 130, 131, 0, 620, 0, 0, 0, 0,
- 0, 0, 26, 0, 27, 28, 1183, 1183, 1183, 0,
- 0, 0, 746, 747, 472, 475, 0, 0, 966, 0,
- 763, 0, 0, 0, 0, 0, 753, 104, 967, 0,
- 0, 0, 203, 0, 0, 0, 32, 0, 623, 0,
- 0, 968, 625, 0, 248, 0, 145, 581, 582, 583,
- 584, 585, 586, 587, 588, 589, 590, 591, 592, 593,
- 145, 145, 0, 635, 0, 0, 0, 0, 0, 0,
- 930, 166, 0, 7, 8, 9, 10, 167, 12, 13,
- 0, 0, 0, 644, 14, 0, 0, 0, 0, 145,
- 0, 0, 0, 0, 0, 0, 0, 0, 16, 0,
- 17, 18, 19, 0, 0, 0, 20, 0, 0, 0,
- 0, 21, 0, 681, 0, 23, 0, 0, 168, 0,
- 0, 126, 0, 0, 26, 0, 27, 28, 145, 635,
- 145, 145, 239, 635, 0, 0, 0, 0, 0, 0,
- 30, 0, 0, 7, 127, 128, 10, 0, 0, 246,
- 31, 0, 0, 0, 0, 0, 782, 0, 32, 0,
- 0, 0, 0, 33, 0, 0, 0, 0, 34, 0,
- 0, 18, 0, 0, 0, 145, 0, 0, 0, 635,
- 0, 21, 0, 0, 0, 0, 0, 145, 145, 145,
- 145, 145, 0, 0, 26, 145, 27, 28, 127, 128,
- 0, 0, 0, 519, 0, 0, 0, 0, 0, 0,
- 30, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 31, 0, 0, 0, 134, 18, 0, 83, 32, 83,
- 472, 475, 0, 33, 1066, 83, 0, 83, 0, 0,
- 0, 620, 0, 248, 0, 0, 0, 0, 26, 248,
- 130, 131, 0, 0, 0, 0, 145, 145, 145, 0,
- 0, 0, 0, 0, 621, 0, 0, 0, 145, 0,
- 0, 0, 0, 0, 622, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 623, 0, 0, 624, 625, 746,
- 747, 763, 0, 0, 0, 0, 6, 0, 7, 8,
- 9, 10, 11, 12, 13, 0, 0, 0, 0, 14,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 16, 0, 17, 18, 0, 0, 0,
- 0, 20, 0, 0, 0, 0, 21, 0, 0, 0,
- 23, 145, 145, 438, 0, 145, 0, 0, 145, 26,
- 0, 27, 28, 248, 0, 29, 0, 145, 0, 248,
- 0, 930, 930, 930, 0, 30, 0, 145, 0, 644,
- 0, 0, 0, 0, 0, 31, 0, 0, 0, 0,
- 0, 0, 0, 32, 300, 8, 9, 10, 33, 12,
- 301, 302, 303, 0, 304, 14, 0, 0, 0, 0,
- 0, 248, 0, 248, 0, 145, 145, 635, 0, 16,
- 305, 17, 18, 19, 0, 306, 307, 20, 0, 308,
- 309, 310, 21, 311, 312, 0, 23, 0, 620, 0,
- 313, 314, 315, 316, 317, 26, 0, 27, 319, 0,
- 746, 747, 472, 475, 0, 0, 0, 0, 321, 763,
- 930, 922, 0, 0, 0, 0, 0, 0, 0, 323,
- 324, 923, 0, 248, 145, 145, 145, 326, 327, 328,
- 0, 623, 472, 475, 924, 625, 0, 0, 782, 0,
- 248, 0, 0, 1066, 472, 475, 0, 0, 0, 0,
- 0, 330, 248, 300, 8, 9, 10, 0, 0, 13,
- 0, 0, 0, 0, 7, 127, 128, 10, 0, 0,
- 13, 0, 0, 83, 0, 0, 0, 0, 0, 0,
- 0, 18, 8, 9, 0, 0, 248, 246, 248, 0,
- 0, 21, 18, 0, 0, 0, 0, 620, 0, 0,
- 0, 0, 21, 0, 26, 0, 27, 319, 0, 18,
- 0, 0, 0, 0, 0, 26, 248, 27, 28, 0,
- 1304, 145, 145, 0, 145, 620, 746, 747, 472, 475,
- 1305, 149, 26, 763, 130, 131, 0, 0, 32, 0,
- 623, 150, 0, 1306, 625, 0, 0, 145, 1500, 32,
- 145, 145, 635, 0, 151, 0, 0, 0, 1501, 7,
- 8, 9, 10, 214, 215, 216, 0, 0, 623, 0,
- 14, 1502, 625, 0, 145, 145, 145, 145, 145, 635,
- 145, 0, 0, 0, 145, 0, 0, 18, 0, 0,
- 0, 782, 20, 0, 0, 0, 0, 21, 0, 0,
- 0, 23, 0, 620, 0, 0, 0, 930, 930, 930,
- 26, 0, 27, 28, 0, 0, 0, 0, 0, 145,
- 145, 145, 145, 0, 0, 0, 966, 0, 782, 0,
- 51, 0, 0, 0, 0, 0, 967, 0, 0, 746,
- 747, 0, 763, 145, 32, 0, 623, 0, 145, 1011,
- 625, 83, 0, 0, 0, 0, 51, 51, 0, 152,
- 0, 51, 0, 0, 0, 0, 0, 0, 51, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 51, 783, 51, 7, 8, 784, 10, 167, 12,
- 13, 0, 0, 0, 0, 14, 0, 0, 0, 0,
- 145, 145, 145, 145, 145, 635, 254, 0, 145, 16,
- 0, 17, 18, 19, 0, 0, 0, 20, -524, 0,
- 0, 0, 21, 0, 472, 475, 23, 785, 0, 168,
- 0, 0, 0, 1448, 0, 26, 0, 27, 28, 0,
- 0, 786, 0, 787, 145, 635, 145, 0, 0, 0,
- 0, 30, 0, 0, 0, 0, 472, 475, 0, 396,
- 396, 31, 51, 248, 0, 0, 51, 51, 0, 32,
- 254, 0, 51, 0, 33, 152, 152, 152, 0, 0,
- 0, 0, 431, 0, 0, 0, 0, 0, 0, 0,
- -524, 51, 0, 0, 0, 51, 0, 0, 0, 0,
- 0, 51, 51, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 145, 145, 0, 145, 0, 51,
- 51, 152, 0, 0, 0, 0, 0, 0, 732, 254,
- 300, 8, 9, 10, 167, 12, 301, 302, 303, 733,
- 304, 14, 0, 0, 0, 0, 0, 0, 51, 0,
- 0, 0, 0, 0, 0, 16, 305, 17, 18, 19,
- 930, 306, 307, 20, 0, 308, 309, 310, 21, 311,
- 312, 0, 23, 0, 0, 0, 313, 314, 315, 316,
- 317, 26, 0, 27, 319, 51, 0, 0, 320, 7,
- 8, 9, 10, 0, 321, 13, 0, 322, 0, 145,
- 145, 635, 145, 0, 0, 323, 324, 325, 0, 0,
- 0, 0, 0, 326, 327, 328, 0, 18, 0, 0,
- 329, 0, 0, 0, 0, 0, 0, 21, 0, 0,
- 0, 930, 930, 930, 0, -801, 0, 330, 0, 0,
- 26, 0, 27, 28, 0, 0, 0, 0, 0, 0,
- 0, 145, 248, 0, 0, 559, 193, 145, 0, 0,
- 0, 0, 0, 0, 0, 0, 194, 0, 0, 0,
- 0, 0, 396, 0, 32, 0, 0, 0, 0, 195,
- 254, 0, 0, 0, 0, 51, 0, 0, 0, 0,
- 7, 8, 9, 10, 167, 12, 13, 0, 0, 733,
- 78, 14, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 16, 0, 17, 18, 396,
- 0, 0, 0, 20, 0, 0, 78, 78, 21, 78,
- 51, 78, 23, 0, 620, 0, 0, 0, 78, 0,
- 0, 26, 0, 27, 28, 51, 0, 0, 51, 0,
- 0, 78, 0, 78, 431, 431, 431, 1178, 0, 0,
- 51, 0, 0, 0, 0, 0, 0, 1179, 51, 0,
- 0, 0, 0, 0, 0, 32, 0, 623, 127, 128,
- 1180, 625, 215, 216, 0, 0, 0, 0, 14, 0,
- 0, 0, 0, 0, 0, 0, 51, 51, 0, 0,
- 51, 0, 152, 152, 152, 431, 0, 0, 0, 51,
- 20, 0, 0, 0, 51, 0, 0, 51, 0, 23,
- 0, 620, 0, 0, 0, 0, 0, 0, 26, 0,
- 130, 131, 78, 0, 51, 0, 78, 78, 0, 0,
- 0, 0, 78, 0, 621, 78, 78, 78, 0, 0,
- 0, 0, 8, 9, 622, 167, 12, 13, 0, 0,
- 1584, 78, 14, 559, 623, 78, 559, 624, 625, 0,
- 0, 78, 78, 0, 0, 0, 16, 0, 17, 18,
- 0, 559, 559, 559, 20, 0, 0, 0, 0, 78,
- 78, 78, 0, 23, 0, 0, 559, 0, 0, 0,
- 0, 0, 26, 0, 130, 131, 0, 0, 0, 0,
- 0, 0, 723, 0, 840, 841, 842, 10, 78, 12,
- 536, 302, 303, 0, 304, 14, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
- 305, 17, 0, 19, 254, 306, 307, 20, 0, 308,
- 309, 310, 21, 311, 312, 78, 23, 559, 0, 0,
- 313, 314, 315, 316, 317, 26, 0, 843, 844, 724,
- 0, 0, 320, 0, 0, 0, 51, 0, 321, 0,
- 0, 322, 8, 9, 0, 0, 12, 246, 0, 323,
- 324, 325, 14, 0, 0, 0, 0, 326, 327, 328,
- 396, 0, 0, 0, 329, 845, 16, 396, 17, 0,
- 0, 0, 0, 0, 20, 51, 51, 51, 51, 0,
- 1003, 330, 0, 23, 0, 620, 0, 0, 0, 0,
- 0, 0, 26, 0, 130, 131, 0, 0, 0, 0,
- 0, 0, 7, 8, 9, 10, 0, 0, 621, 0,
- 0, 643, 0, 0, 0, 78, 0, 0, 622, 0,
- 0, 0, 51, 0, 0, 0, 51, 0, 623, 0,
- 18, 624, 625, 0, 51, 51, 431, 431, 431, 0,
- 21, 0, 51, 0, 0, 0, 620, 0, 0, 0,
- 0, 0, 0, 26, 0, 27, 28, 0, 0, 0,
- 78, 159, 0, 0, 0, 0, 0, 0, 0, 966,
- 0, 0, 0, 0, 51, 78, 51, 0, 78, 967,
- 0, 51, 51, 204, 51, 0, 0, 32, 0, 623,
- 78, 0, 968, 625, 0, 0, 0, 0, 78, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 559,
- 0, 0, 0, 0, 300, 8, 9, 10, 0, 8,
- 9, 0, 205, 12, 206, 0, 78, 78, 0, 14,
- 78, 0, 78, 78, 78, 7, 127, 128, 10, 78,
- 0, 519, 18, 16, 78, 17, 18, 78, 0, 0,
- 0, 20, 21, 0, 0, 0, 0, 0, 620, 0,
- 23, 0, 0, 18, 78, 26, 0, 27, 319, 26,
- 0, 130, 131, 21, 0, 0, 0, 159, 159, 159,
- 0, 1304, 0, 0, 0, 0, 26, 0, 27, 28,
- 0, 1305, 0, 0, 0, 0, 0, 0, 0, 32,
- 0, 623, 30, 204, 1306, 625, 0, 0, 559, 559,
- 559, 0, 31, 0, 431, 254, 0, 0, 0, 0,
- 32, 204, 204, 481, 0, 33, 0, 0, 7, 8,
- 9, 10, 0, 783, 246, 7, 8, 784, 10, 167,
- 12, 13, 0, 0, 0, 0, 14, 0, 0, 0,
- 204, 0, 51, 51, 152, 0, 18, 0, 0, 254,
- 16, 0, 17, 18, 19, 0, 21, 0, 20, -525,
- 0, 0, 0, 21, 0, 643, 0, 23, 785, 26,
- 168, 27, 28, 0, 0, 0, 26, 0, 27, 28,
- 0, 0, 786, 0, 787, 193, 0, 1211, 0, 0,
- 0, 0, 30, 0, 0, 194, 78, 0, 0, 0,
- 0, 0, 31, 32, 0, 0, 0, 0, 195, 0,
- 32, 0, 0, 0, 0, 33, 532, 0, 0, 0,
- 51, 300, 8, 9, 10, 167, 12, 13, 0, 0,
- 733, -525, 14, 0, 0, 78, 78, 78, 78, 0,
- 0, 254, 0, 0, 0, 0, 16, 0, 17, 18,
- 51, 0, 0, 0, 20, 0, 0, 8, 9, 21,
- 0, 0, 519, 23, 0, 620, 628, 628, 628, 0,
- 0, 0, 26, 0, 27, 319, 0, 0, 0, 0,
- 0, 0, 78, 0, 18, 0, 78, 0, 1151, 0,
- 0, 0, 0, 0, 78, 78, 0, 0, 1152, 0,
- 620, 0, 78, 0, 0, 0, 32, 26, 623, 130,
- 131, 1153, 625, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 204, 1500, 431, 0, 0, 431, 431, 431,
- 254, 0, 0, 1501, 78, 0, 78, 0, 0, 0,
- 0, 78, 78, 623, 78, 0, 1502, 625, 0, 0,
- 0, 51, 51, 51, 152, 152, 152, 431, 0, 254,
- 0, 51, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 7, 8, 9, 10,
- 0, 0, 13, 0, 1211, 1211, 1211, 0, 204, 204,
- 0, 0, 204, 0, 481, 481, 481, 754, 0, 0,
- 0, 204, 0, 0, 18, 0, 204, 8, 9, 204,
- 167, 12, 13, 0, 21, 733, 0, 14, 0, 0,
- 51, 0, 0, 0, 0, 51, 0, 26, 51, 27,
- 28, 16, 0, 17, 18, 0, 0, 0, 0, 20,
- 0, 0, 0, 476, 0, 0, 0, 0, 23, 0,
- 620, 0, 0, 477, 0, 0, 0, 26, 0, 130,
- 131, 32, 0, 0, 0, 0, 478, 0, 0, 0,
- 0, 0, 0, 621, 0, 0, 643, 431, 51, 51,
- 431, 431, 431, 622, 0, 51, 0, 0, 0, 0,
- 0, 0, 0, 623, 0, 0, 624, 625, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 78, 78, 78, 0, 0, 0, 0, 0,
- 0, 51, 51, 51, 0, 888, 0, 0, 8, 9,
- 0, 167, 12, 13, 0, 0, 733, 0, 14, 628,
- 628, 0, 628, 0, 7, 8, 9, 10, 0, 628,
- 519, 202, 16, 0, 17, 18, 0, 1213, 0, 0,
- 20, 0, 0, 0, 0, 0, 0, 0, 204, 23,
- 0, 620, 18, 0, 0, 0, 257, 0, 26, 261,
- 130, 131, 21, 0, 0, 369, 371, 0, 0, 0,
- 78, 0, 0, 0, 1500, 26, 0, 27, 28, 0,
- 257, 0, 365, 0, 1501, 0, 0, 970, 0, 970,
- 970, 193, 628, 0, 623, 0, 0, 1502, 625, 0,
- 78, 194, 0, 0, 0, 0, 0, 0, 0, 32,
- 0, 8, 9, 0, 195, 12, 13, 1211, 0, 0,
- 0, 14, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 970, 16, 0, 17, 0, 0,
- 0, 0, 0, 20, 0, 0, 204, 204, 754, 754,
- 754, 202, 23, 0, 204, 0, 300, 8, 9, 10,
- 0, 26, 13, 130, 131, 0, 0, 0, 0, 202,
- 202, 202, 0, 0, 0, 0, 0, 0, 0, 487,
- 0, 0, 0, 0, 18, 0, 0, 0, 1211, 1211,
- 1211, 0, 0, 204, 21, 0, 0, 0, 202, 0,
- 0, 78, 78, 78, 78, 78, 78, 26, 0, 27,
- 319, 78, 0, 0, 51, 532, 532, 532, 0, 0,
- 0, 0, 0, 750, 261, 0, 0, 628, 0, 0,
- 0, 0, 0, 751, 1213, 1213, 1213, 0, 257, 0,
- 0, 32, 0, 0, 0, 0, 752, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 7, 8, 9,
- 10, 205, 12, 206, 0, 0, 0, 0, 14, 0,
- 78, 0, 0, 0, 0, 78, 0, 0, 78, 0,
- 0, 0, 16, 0, 17, 18, 0, 562, 0, 0,
- 20, 0, 0, 0, 0, 21, 0, 0, 0, 23,
- 628, 628, 0, 0, 628, 0, 0, 628, 26, 0,
- 27, 28, 0, 0, 207, 0, 628, 0, 0, 0,
- 628, 628, 628, 0, 30, 0, 628, 0, 78, 78,
- 257, 261, 0, 0, 31, 78, 0, 0, 0, 0,
- 0, 0, 32, 1054, 1055, 9, 10, 33, 6, 0,
- 7, 8, 9, 10, 11, 12, 13, 0, 0, 0,
- 688, 14, 0, 0, 970, 970, 1184, 0, 0, 0,
- 0, 78, 78, 78, 15, 16, 0, 17, 18, 19,
- 202, 21, 0, 20, 0, 0, 0, 0, 21, 0,
- 0, 22, 23, 24, 26, 25, 27, 28, 0, 0,
- 0, 26, 1056, 27, 28, 0, 0, 29, 0, 1184,
- 193, 0, 0, 0, 0, 0, 0, 30, 0, 0,
- 194, 0, 0, 754, 754, 754, 735, 31, 32, 0,
- 0, 0, 0, 195, 0, 32, 0, 0, 0, 0,
- 33, 0, 204, 0, 0, 34, 202, 202, 0, 0,
- 202, 0, 202, 202, 202, 202, 0, 0, 0, 202,
- 0, 0, 0, 0, 202, 0, 0, 202, 0, 0,
- 0, 0, 0, 0, 0, 0, 1381, 1382, 9, 10,
- 7, 8, 9, 10, 214, 215, 216, 1213, 0, 0,
- 0, 14, 0, 0, 0, 822, 0, 0, 825, 0,
- 0, 0, 827, 828, 830, 831, 832, 0, 18, 0,
- 0, 0, 0, 20, 21, 562, 0, 0, 21, 0,
- 888, 888, 23, 888, 620, 0, 0, 26, 849, 27,
- 28, 26, 0, 27, 28, 1383, 0, 0, 0, 0,
- 0, 0, 0, 193, 0, 0, 628, 193, 0, 628,
- 628, 628, 0, 194, 0, 0, 0, 194, 1213, 1213,
- 1213, 32, 0, 0, 0, 32, 195, 0, 0, 0,
- 1461, 0, 0, 970, 970, 970, 1184, 1184, 1184, 1307,
- 0, 0, 908, 970, 78, 0, 0, 0, 0, 908,
- 0, 0, 0, 0, 0, 0, 7, 127, 128, 10,
- 0, 0, 7, 8, 9, 10, 1184, 1184, 1184, 0,
- 257, 261, 0, 0, 0, 0, 0, 0, 754, 754,
- 754, 754, 0, 0, 18, 0, 202, 0, 0, 102,
- 18, 0, 0, 0, 21, 0, 0, 0, 121, 102,
- 21, 0, 204, 0, 0, 102, 102, 26, 102, 27,
- 28, 0, 0, 26, 0, 27, 28, 0, 0, 0,
- 0, 0, 0, 30, 0, 202, 0, 202, 202, 476,
- 0, 0, 0, 31, 0, 0, 0, 0, 0, 477,
- 235, 32, 0, 0, 0, 0, 33, 32, 0, 0,
- 0, 0, 478, 0, 0, 0, 0, 0, 688, 1307,
- 970, 970, 1307, 1307, 1307, 0, 0, 970, 0, 0,
- 0, 0, 202, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 202, 202, 202, 202, 202, 487,
- 0, 0, 202, 0, 0, 0, 0, 0, 0, 389,
- 0, 121, 0, 204, 0, 204, 0, 0, 102, 102,
- 0, 0, 0, 0, 0, 102, 102, 0, 261, 102,
- 102, 102, 735, 417, 102, 102, 102, 0, 735, 0,
- 0, 202, 578, 579, 580, 581, 582, 583, 584, 585,
- 586, 587, 588, 589, 590, 591, 592, 593, 626, 626,
- 626, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 783, 0, 7, 8, 784, 10, 167, 12,
- 13, 0, 0, 1307, 1307, 14, 1307, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
- 0, 17, 18, 19, 0, 0, 1116, 20, -527, 0,
- 0, 0, 21, 0, 0, 0, 23, 785, 0, 168,
- 0, 0, 0, 235, 102, 26, 0, 27, 28, 481,
- 0, 786, 0, 787, 0, 0, 0, 0, 0, 0,
- 0, 30, 849, 0, 102, 0, 0, 0, 735, 0,
- 0, 31, 908, 0, 0, 0, 0, 0, 0, 32,
- 0, 0, 0, 0, 33, 0, 0, 0, 1307, 1307,
- 1307, 1307, 0, 0, 0, 257, 261, 257, 0, 0,
- -527, 0, 0, 102, 0, 0, 0, 0, 0, 0,
- 688, 0, 1173, 0, 0, 0, 908, 0, 0, 0,
- 481, 481, 481, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 202, 202, 1182, 0, 0, 0, 0, 257,
- 1307, 0, 0, 0, 0, 0, 204, 0, 0, 0,
- 0, 102, 0, 102, 102, 0, 0, 0, 0, 908,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1217, 0, 0, 0, 0, 1182, 0, 0,
- 0, 0, 1228, 0, 0, 0, 0, 0, 0, 735,
- 0, 202, 202, 202, 0, 0, 0, 0, 102, 0,
- 0, 735, 7, 8, 9, 10, 300, 8, 9, 10,
- 202, 0, 0, 0, 0, 0, 0, 102, 0, 0,
- 0, 0, 0, 0, 102, 0, 0, 102, 0, 0,
- 18, 487, 0, 0, 18, 735, 0, 735, 0, 102,
- 21, 0, 0, 0, 21, 0, 0, 0, 0, 0,
- 0, 626, 626, 26, 626, 27, 28, 26, 0, 27,
- 319, 926, 0, 0, 0, 1277, 0, 0, 0, 193,
- 0, 0, 0, 750, 0, 0, 0, 0, 0, 194,
- 0, 0, 0, 751, 0, 0, 0, 32, 0, 0,
- 0, 32, 195, 0, 0, 0, 752, 0, 0, 0,
- 0, 908, 0, 0, 0, 0, 0, 0, 0, 0,
- 102, 0, 775, 0, 0, 0, 0, 0, 0, 626,
- 257, 626, 626, 0, 626, 0, 0, 0, 908, 300,
- 8, 9, 10, 167, 12, 13, 102, 0, 733, 0,
- 14, 202, 202, 202, 202, 202, 1182, 202, 0, 1308,
- 0, 202, 0, 0, 16, 0, 17, 18, 908, 0,
- 0, 0, 20, 0, 0, 0, 626, 21, 0, 0,
- 0, 23, 0, 620, 1182, 1182, 1182, 0, 0, 0,
- 26, 0, 27, 319, 0, 0, 202, 202, 202, 202,
- 0, 0, 0, 0, 0, 0, 1304, 0, 0, 1381,
- 127, 128, 10, 0, 0, 0, 1305, 0, 0, 0,
- 202, 0, 102, 0, 32, 0, 623, 0, 0, 1306,
- 625, 0, 0, 102, 102, 0, 102, 102, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 21, 0, 7,
- 8, 9, 10, 0, 0, 0, 0, 0, 0, 0,
- 26, 0, 27, 28, 908, 0, 0, 0, 1383, 626,
- 0, 0, 0, 0, 0, 0, 30, 202, 202, 202,
- 202, 202, 1182, 0, 0, 202, 31, 21, 0, 102,
- 0, 0, 0, 0, 32, 0, 102, 121, 0, 33,
- 26, 0, 27, 28, 0, 0, 1455, 0, 235, 0,
- 0, 0, 0, 0, 0, 0, 193, 0, 0, 0,
- 0, 202, 1217, 202, 0, 0, 194, 0, 0, 0,
- 0, 0, 775, 0, 32, 0, 0, 18, 0, 195,
- 0, 0, 626, 626, 0, 0, 626, 0, 0, 626,
- 0, 0, 0, 0, 0, 0, 0, 0, 626, 0,
- 0, 0, 926, 926, 926, 0, 0, 0, 626, 572,
- 573, 574, 575, 576, 577, 578, 579, 580, 581, 582,
- 583, 584, 585, 586, 587, 588, 589, 590, 591, 592,
- 593, 202, 202, 1308, 202, 0, 0, 775, 0, 0,
- 102, 0, 0, 0, 0, 0, 626, 626, 626, 0,
- 0, 0, 783, 0, 7, 8, 784, 10, 167, 12,
- 13, 0, 0, 0, 0, 14, 0, 0, 0, 0,
- 0, 0, 102, 102, 102, 0, 0, 1182, 0, 16,
- 0, 17, 18, 19, 102, 0, 0, 20, -526, 0,
- 0, 926, 21, 0, 0, 0, 23, 785, 0, 168,
- 908, 0, 0, 0, 0, 26, 0, 27, 28, 0,
- 0, 786, 0, 787, 0, 0, 202, 202, 1182, 202,
- 0, 30, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 31, 562, 0, 0, 0, 0, 0, 0, 32,
- 0, 0, 0, 0, 33, 0, 0, 0, 1182, 1182,
- 1182, 688, 0, 0, 8, 9, 0, 102, 102, 13,
- -526, 102, 0, 0, 102, 0, 0, 0, 202, 0,
- 0, 0, 0, 102, 202, 0, 0, 0, 0, 0,
- 0, 18, 0, 102, 0, 7, 8, 9, 10, 167,
- 12, 13, 0, 0, 1016, 0, 14, 620, 0, 0,
- 0, 0, 0, 0, 26, 0, 130, 131, 0, 0,
- 16, 0, 17, 18, 0, 0, 0, 0, 20, 0,
- 1500, 0, 0, 21, 0, 0, 0, 23, 626, 0,
- 1501, 626, 626, 626, 0, 0, 26, 0, 27, 28,
- 623, 0, 0, 1502, 625, 0, 0, 0, 0, 0,
- 0, 0, 30, 0, 0, 626, 626, 626, 626, 626,
- 626, 626, 31, 0, 852, 626, 300, 8, 9, 10,
- 32, 12, 536, 302, 303, 33, 304, 14, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 926, 926,
- 926, 16, 305, 17, 775, 19, 0, 306, 307, 20,
- 0, 308, 309, 310, 21, 311, 312, 0, 23, 0,
- 0, 0, 313, 314, 315, 316, 317, 26, 0, 27,
- 319, 102, 0, 0, 320, -791, 0, 0, 0, 0,
- 321, 0, 0, 322, 0, 0, 0, 0, 0, 0,
- 0, 323, 324, 325, 0, 0, 0, 0, 0, 326,
- 327, 328, 0, 0, 0, 0, 329, 0, 1516, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 330, 0, 0, 0, 102, 102, 0,
- 102, 626, 626, 626, 626, 626, 626, 0, 0, 626,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 102, 0, 0, 102, 102, 1517, 572,
- 573, 574, 575, 576, 577, 578, 579, 580, 581, 582,
- 583, 584, 585, 586, 587, 588, 589, 590, 591, 592,
- 593, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 775, 0, 0,
- 0, 0, 0, 1545, 0, -480, -480, -480, -480, -480,
- -480, -480, 0, 0, -480, 0, -480, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, -480, 0, -480,
- 0, 0, 0, -480, 775, 0, 0, 0, -480, 0,
- 0, 0, 0, -480, 0, 626, 626, -480, 626, -480,
- 0, 0, 102, 0, 102, 0, -480, 0, -480, -480,
- -480, -480, -480, 0, -480, -480, -480, -480, -480, -480,
- -480, -480, -480, -480, -480, -480, -480, -480, -480, -480,
- -480, -480, -480, -480, -480, -480, -480, 0, -480, -480,
- -480, 0, -480, -480, -480, -480, -480, -480, 0, -480,
- 0, 0, 0, 0, 1546, 0, 0, 0, 0, -480,
- -480, -480, 0, -480, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 626, 626, 626, 626, 0, 1463, 0, 1319, 1320, 1321,
- 10, 167, 12, 301, 302, 303, 0, 304, 14, 1322,
- 0, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331,
- 1332, 15, 16, 305, 17, 18, 19, 0, 306, 307,
- 20, 0, 308, 309, 310, 21, 311, 312, 1333, 23,
- 1334, 0, 626, 313, 314, 315, 316, 317, 26, 0,
- 1335, 319, 720, 0, 1336, 320, 0, 0, 0, 0,
- 0, 321, 0, 0, 322, 0, 0, 0, 0, 0,
- 0, 0, 323, 324, 325, 0, 0, 0, 0, 0,
- 326, 327, 328, 0, 0, 0, 0, 329, 0, 1337,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1464, 330, 1318, 0, 1319, 1320, 1321,
- 10, 167, 12, 301, 302, 303, 0, 304, 14, 1322,
- 0, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331,
- 1332, 15, 16, 305, 17, 18, 19, 0, 306, 307,
- 20, 0, 308, 309, 310, 21, 311, 312, 1333, 23,
- 1334, 0, 0, 313, 314, 315, 316, 317, 26, 0,
- 1335, 319, 720, 0, 1336, 320, 0, 0, 0, 0,
- 0, 321, 0, 0, 322, 0, 0, 0, 0, 0,
- 0, 0, 323, 324, 325, 0, 0, 0, 0, 0,
- 326, 327, 328, 0, 0, 0, 0, 329, 554, 1337,
- 300, 8, 9, 10, 167, 12, 301, 302, 303, 733,
- 304, 14, 0, 0, 330, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 16, 305, 17, 18, 19,
- 0, 306, 307, 20, 0, 308, 309, 310, 21, 311,
- 312, 0, 23, 0, 620, 0, 313, 314, 315, 316,
- 317, 26, 0, 27, 319, -312, 0, 0, 320, 0,
- 0, 0, 0, 0, 321, 0, 0, 922, 0, 0,
- 0, 0, 0, 0, 0, 323, 324, 923, 0, 0,
- 0, 0, 0, 326, 327, 328, 0, 623, 0, 0,
- 924, 625, 554, 0, 7, 8, 9, 10, 167, 12,
- 301, 302, 303, 733, 304, 14, 0, 330, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
- 305, 17, 18, 19, 0, 306, 307, 20, 0, 308,
- 309, 310, 21, 311, 312, 0, 23, 0, 620, 0,
- 313, 314, 315, 316, 317, 26, 0, 27, 28, -312,
- 0, 0, 320, 0, 0, 0, 0, 0, 321, 0,
- 0, 1208, 0, 0, 0, 0, 0, 0, 0, 323,
- 324, 1209, 0, 0, 0, 0, 0, 326, 327, 328,
- 0, 623, 0, 0, 1210, 625, 852, 0, 300, 8,
- 9, 10, 167, 12, 301, 302, 303, 0, 304, 14,
- 0, 330, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 16, 305, 17, 18, 19, 0, 306,
- 307, 20, 0, 308, 309, 310, 21, 311, 312, 0,
- 23, 0, 0, 0, 313, 314, 315, 316, 317, 26,
- 0, 27, 319, 1563, 0, -791, 320, 0, 0, 0,
- 0, 0, 321, 0, 0, 322, 0, 0, 0, 0,
- 0, 0, 0, 323, 324, 325, 0, 0, 0, 0,
- 0, 326, 327, 328, 0, 0, 0, 554, 329, 300,
- 8, 9, 10, 0, 12, 301, 302, 303, 0, 304,
- 14, 0, 0, 0, 0, 330, 0, 0, 0, 0,
- 0, 0, 0, 0, 16, 305, 17, 18, 19, 0,
- 306, 307, 20, 0, 308, 309, 310, 21, 311, 312,
- 0, 23, 0, 0, 0, 313, 314, 315, 316, 317,
- 26, 0, 27, 319, -312, 0, 0, 320, 0, 0,
- 0, 0, 0, 321, 0, 0, 555, 0, 0, 0,
- 0, 0, 0, 0, 323, 324, 556, 0, 0, 0,
- 0, 0, 326, 327, 328, 0, 0, 0, 723, 557,
- 840, 841, 842, 10, 0, 12, 536, 302, 303, 0,
- 304, 14, 0, 0, 0, 0, 330, 0, 0, 0,
- 0, 0, 0, 0, 0, 16, 305, 17, 0, 19,
- 0, 306, 307, 20, 0, 308, 309, 310, 21, 311,
- 312, 0, 23, 0, 0, 0, 313, 314, 315, 316,
- 317, 26, 0, 843, 844, 724, 0, 0, 320, 0,
- 0, 0, 0, 0, 321, 0, 0, 322, 0, 0,
- 0, 0, 0, 0, 0, 323, 324, 325, 0, 0,
- 0, 0, 0, 326, 327, 328, 0, 0, 0, 0,
- 329, 845, 723, 0, 840, 841, 842, 10, 0, 12,
- 536, 302, 303, 0, 304, 14, 0, 330, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
- 305, 17, 0, 19, 0, 306, 307, 20, 0, 308,
- 309, 310, 21, 311, 312, 0, 23, 0, 0, 0,
- 313, 314, 315, 316, 317, 26, 0, 843, 844, 724,
- 0, 0, 320, 0, 0, 0, 0, 0, 321, 0,
- 0, 322, 0, 0, 0, 0, 0, 0, 0, 323,
- 324, 325, 0, 0, 0, 0, 0, 326, 327, 328,
- 0, 0, 0, 723, 329, 840, 841, 842, 10, 0,
- 12, 536, 302, 303, 0, 304, 14, 0, 0, 0,
- -484, 330, 0, 0, 0, 0, 0, 0, 0, 0,
- 16, 305, 17, 0, 19, 0, 306, 307, 20, 0,
- 308, 309, 310, 21, 311, 312, 0, 23, 0, 0,
- 0, 313, 314, 315, 316, 317, 26, 0, 843, 844,
- 724, 0, 0, 320, 0, 0, 0, 0, 0, 321,
- 0, 0, 322, 0, 0, 0, 0, 0, 0, 0,
- 323, 324, 325, 0, 0, 0, 0, 0, 326, 327,
- 328, 0, 0, 0, 723, 329, 300, 8, 9, 10,
- 0, 12, 536, 302, 303, 0, 304, 14, 0, 0,
- 0, 1357, 330, 0, 0, 0, 0, 0, 0, 0,
- 0, 16, 305, 17, 0, 19, 0, 306, 307, 20,
- 0, 308, 309, 310, 21, 311, 312, 0, 23, 0,
- 0, 0, 313, 314, 315, 316, 317, 26, 0, 27,
- 319, 724, 0, 0, 320, 0, 0, 0, 0, 0,
- 321, 0, 0, 322, 0, 0, 0, 0, 0, 0,
- 0, 323, 324, 325, 0, 0, 0, 0, 0, 326,
- 327, 328, 0, 0, 0, 0, 329, 0, 554, 0,
- 7, 8, 9, 10, 1361, 12, 301, 302, 303, 0,
- 304, 14, 0, 330, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 16, 305, 17, 18, 19,
- 0, 306, 307, 20, 0, 308, 309, 310, 21, 311,
- 312, 0, 23, 0, 0, 0, 313, 314, 315, 316,
- 317, 26, 0, 27, 28, -312, 0, 0, 320, 0,
- 0, 0, 0, 0, 321, 0, 0, 1532, 0, 0,
- 0, 0, 0, 0, 0, 323, 324, 1533, 0, 0,
- 0, 0, 0, 326, 327, 328, 0, 0, 0, 723,
- 1534, 300, 8, 9, 10, 0, 12, 536, 302, 303,
- 0, 304, 14, 0, 0, 0, 0, 330, 0, 0,
- 0, 0, 0, 0, 0, 0, 16, 305, 17, 0,
- 19, 0, 306, 307, 20, 0, 308, 309, 310, 21,
- 311, 312, 0, 23, 0, 0, 0, 313, 314, 315,
- 316, 317, 26, 0, 27, 319, 724, 0, 0, 320,
- 0, 0, 0, 0, 0, 321, 0, 0, 322, 0,
- 0, 0, 0, 0, 0, 0, 323, 324, 325, 0,
- 0, 0, 0, 0, 326, 327, 328, 0, 0, 0,
- 1616, 329, 300, 8, 9, 10, 0, 12, 301, 302,
- 303, 0, 304, 14, 0, 0, 0, 0, 330, 0,
- 0, 0, 0, 0, 0, 0, 0, 16, 305, 17,
- 0, 19, 0, 306, 307, 20, 0, 308, 309, 310,
- 21, 311, 312, 0, 23, 0, 0, 0, 313, 314,
- 315, 316, 317, 26, 0, 27, 319, 0, 0, -196,
- 320, 0, 0, 0, 0, 0, 321, 0, 0, 322,
- 0, 0, 0, 0, 0, 0, 0, 323, 324, 325,
- 0, 0, 0, 0, 0, 326, 327, 328, 0, 0,
- 0, 852, 329, 300, 8, 9, 10, 0, 12, 536,
- 302, 303, 0, 304, 14, 0, 0, 0, 0, 330,
- 0, 0, 0, 0, 0, 0, 0, 0, 16, 305,
- 17, 0, 19, 0, 306, 307, 20, 0, 308, 309,
- 310, 21, 311, 312, 0, 23, 0, 0, 0, 313,
- 314, 315, 316, 317, 26, 0, 27, 319, 0, 0,
- 0, 320, 0, 0, 0, 0, 0, 321, 0, 0,
- 322, 0, 0, 0, 0, 0, 0, 0, 323, 324,
- 325, 0, 0, 0, 0, 0, 326, 327, 328, 0,
- 0, 0, 944, 329, 300, 8, 9, 10, 0, 12,
- 536, 302, 303, 0, 304, 14, 0, 0, -791, 0,
- 330, 0, 0, 0, 0, 0, 0, 0, 0, 16,
- 305, 17, 0, 19, 0, 306, 307, 20, 0, 308,
- 309, 310, 21, 311, 312, 0, 23, 0, 0, 0,
- 313, 314, 315, 316, 317, 26, 0, 27, 319, 0,
- 0, 0, 320, 0, 0, 0, 0, 0, 321, 0,
- 0, 322, 0, 0, 0, 0, 0, 0, 0, 323,
- 324, 325, 0, 0, 0, 0, 0, 326, 327, 328,
- 0, 0, 0, 946, 329, 300, 8, 9, 10, 0,
- 12, 536, 302, 303, 0, 304, 14, 0, 0, 0,
- 0, 330, 0, 0, 0, 0, 0, 0, 0, 0,
- 16, 305, 17, 0, 19, 0, 306, 307, 20, 0,
- 308, 309, 310, 21, 311, 312, 0, 23, 0, 0,
- 0, 313, 314, 315, 316, 317, 26, 0, 27, 319,
- 0, 0, 0, 320, 0, 0, 0, 0, 0, 321,
- 0, 0, 322, 0, 0, 0, 0, 0, 0, 0,
- 323, 324, 325, 0, 0, 0, 0, 0, 326, 327,
- 328, 0, 0, 0, 1581, 329, 300, 8, 9, 10,
- 0, 12, 536, 302, 303, 0, 304, 14, 0, 0,
- 0, 0, 330, 0, 0, 0, 0, 0, 0, 0,
- 0, 16, 305, 17, 0, 19, 0, 306, 307, 20,
- 0, 308, 309, 310, 21, 311, 312, 0, 23, 0,
- 0, 0, 313, 314, 315, 316, 317, 26, 0, 27,
- 319, 0, 0, 0, 320, 0, 0, 0, 0, 0,
- 321, 0, 0, 322, 0, 0, 0, 0, 0, 0,
- 0, 323, 324, 325, 0, 0, 0, 0, 0, 326,
- 327, 328, 300, 8, 9, 10, 329, 12, 536, 302,
- 303, 0, 304, 14, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 330, 0, 0, 0, 16, 305, 17,
- 0, 19, 0, 306, 307, 20, 0, 308, 309, 310,
- 21, 311, 312, 0, 23, 0, 0, 0, 313, 314,
- 315, 316, 317, 26, 0, 27, 319, 0, 0, 0,
- 320, 0, 0, 0, 0, 0, 321, 0, 0, 322,
- 0, 0, 0, 0, 0, 0, 0, 323, 324, 325,
- 0, 0, 0, 0, 0, 326, 327, 328, 0, 0,
- 0, 0, 329, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 330,
- 891, 1319, 1320, 1321, 10, 167, 12, 301, 302, 303,
- 0, 304, 14, 1322, 0, 1323, 1324, 1325, 1326, 1327,
- 1328, 1329, 1330, 1331, 1332, 15, 16, 305, 17, 18,
- 19, 0, 306, 307, 20, 0, 308, 309, 310, 21,
- 311, 312, 1333, 23, 1334, 0, 0, 313, 314, 315,
- 316, 317, 26, 0, 1335, 319, 720, 0, 1336, 320,
- 0, 0, 0, 0, 0, 321, 0, 0, 322, 0,
- 0, 0, 0, 0, 0, 0, 323, 324, 325, 0,
- 0, 0, 0, 0, 326, 327, 328, 0, 0, 0,
- 0, 329, 0, 1337, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1468, 330, 1319,
- 1320, 1321, 10, 167, 12, 301, 302, 303, 0, 304,
- 14, 1322, 0, 1323, 1324, 1325, 1326, 1327, 1328, 1329,
- 1330, 1331, 1332, 15, 16, 305, 17, 18, 19, 0,
- 306, 307, 20, 0, 308, 309, 310, 21, 311, 312,
- 1333, 23, 1334, 0, 0, 313, 314, 315, 316, 317,
- 26, 0, 1335, 319, 720, 0, 1336, 320, 0, 0,
- 0, 0, 0, 321, 0, 0, 322, 0, 0, 0,
- 0, 0, 0, 0, 323, 324, 325, 0, 0, 0,
- 0, 0, 326, 327, 328, 0, 0, 0, 0, 329,
- 0, 1337, 0, 1319, 1320, 1321, 10, 167, 12, 301,
- 302, 303, 0, 304, 14, 1322, 330, 1323, 1324, 1325,
- 1326, 1327, 1328, 1329, 1330, 1331, 1332, 15, 16, 305,
- 17, 18, 19, 0, 306, 307, 20, 0, 308, 309,
- 310, 21, 311, 312, 1333, 23, 1334, 0, 0, 313,
- 314, 315, 316, 317, 26, 0, 1335, 319, 1590, 0,
- 1336, 320, 0, 0, 0, 0, 0, 321, 0, 0,
- 322, 0, 0, 0, 0, 0, 0, 0, 323, 324,
- 325, 0, 0, 0, 0, 0, 326, 327, 328, 0,
- 0, 0, 0, 329, 0, 1337, 0, 1319, 1320, 1321,
- 10, 167, 12, 301, 302, 303, 0, 304, 14, 1322,
- 330, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331,
- 1332, 15, 16, 305, 17, 18, 19, 0, 306, 307,
- 20, 0, 308, 309, 310, 21, 311, 312, 1333, 23,
- 1334, 0, 0, 313, 314, 315, 316, 317, 26, 0,
- 1335, 319, 0, 0, 1336, 320, 0, 0, 0, 0,
- 0, 321, 0, 0, 322, 0, 0, 0, 0, 0,
- 0, 0, 323, 324, 325, 0, 0, 0, 0, 0,
- 326, 327, 328, 0, 0, 0, 0, 329, 0, 1337,
- 300, 8, 9, 10, 167, 12, 301, 302, 303, 733,
- 304, 14, 0, 0, 330, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 16, 305, 17, 18, 19,
- 0, 306, 307, 20, 0, 308, 309, 310, 21, 311,
- 312, 0, 23, 0, 620, 0, 313, 314, 315, 316,
- 317, 26, 0, 27, 319, 0, 0, 0, 320, 0,
- 0, 0, 0, 0, 321, 0, 0, 922, 0, 0,
- 0, 0, 0, 0, 0, 323, 324, 923, 0, 0,
- 0, 0, 0, 326, 327, 328, 0, 623, 0, 0,
- 924, 625, 7, 8, 9, 10, 167, 12, 301, 302,
- 303, 733, 304, 14, 0, 0, 0, 330, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 16, 305, 17,
- 18, 19, 0, 306, 307, 20, 0, 308, 309, 310,
- 21, 311, 312, 0, 23, 0, 620, 0, 313, 314,
- 315, 316, 317, 26, 0, 27, 28, 0, 0, 0,
- 320, 0, 0, 0, 0, 0, 321, 0, 0, 1208,
- 0, 0, 0, 0, 0, 0, 0, 323, 324, 1209,
- 0, 0, 0, 0, 0, 326, 327, 328, 0, 623,
- 0, 0, 1210, 625, 7, 8, 9, 10, 0, 12,
- 301, 302, 303, 0, 304, 14, 0, 0, 0, 330,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
- 305, 17, 18, 19, 0, 306, 307, 20, 0, 308,
- 309, 310, 21, 311, 312, 0, 23, 0, 620, 0,
- 313, 314, 315, 316, 317, 26, 0, 27, 28, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 321, 0,
- 0, 1208, 0, 0, 0, 0, 0, 0, 0, 323,
- 324, 1209, 0, 0, 0, 0, 0, 326, 327, 328,
- 0, 623, 0, 0, 1210, 625, 300, 8, 9, 10,
- 0, 12, 536, 302, 303, 0, 304, 14, 0, 0,
- 0, 330, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 16, 305, 17, 18, 19, 0, 306, 307, 20,
- 0, 308, 309, 310, 21, 311, 312, 0, 23, 0,
- 0, 0, 313, 314, 315, 316, 317, 26, 0, 27,
- 319, 0, 0, 0, 320, 0, 0, 0, 0, 0,
- 321, 0, 0, 555, 0, 0, 0, 0, 0, 0,
- 0, 323, 324, 556, 0, 0, 0, 0, 0, 326,
- 327, 328, 300, 8, 9, 10, 557, 12, 536, 302,
- 303, 0, 304, 14, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 330, 0, 0, 0, 16, 305, 17,
- 0, 19, 0, 306, 307, 20, 0, 308, 309, 310,
- 21, 311, 312, 0, 23, 0, 0, 0, 313, 314,
- 315, 316, 317, 26, 0, 27, 319, 0, 0, 1441,
- 320, 0, 0, 0, 0, 0, 321, 0, 0, 322,
- 0, 0, 0, 0, 0, 0, 0, 323, 324, 325,
- 0, 0, 0, 0, 0, 326, 327, 328, 0, 0,
- 0, 0, 329, 300, 8, 9, 10, 167, 12, 301,
- 302, 303, 0, 304, 14, 0, 0, 0, 0, 330,
- 0, 0, 0, 0, 0, 0, 0, 0, 16, 305,
- 17, 18, 19, 0, 306, 307, 20, 0, 308, 309,
- 310, 21, 311, 312, 0, 23, 0, 0, 0, 313,
- 314, 315, 316, 317, 26, 0, 27, 319, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 321, 0, 0,
- 322, 0, 0, 0, 0, 0, 0, 0, 323, 324,
- 325, 0, 0, 0, 0, 0, 326, 327, 328, 7,
- 8, 9, 10, 329, 12, 536, 302, 303, 0, 304,
- 14, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 330, 0, 0, 0, 16, 305, 17, 18, 19, 0,
- 306, 307, 20, 0, 308, 309, 310, 21, 311, 312,
- 0, 23, 0, 0, 0, 313, 314, 315, 316, 317,
- 26, 0, 27, 28, 0, 0, 0, 320, 0, 0,
- 0, 0, 0, 321, 0, 0, 1532, 0, 0, 0,
- 0, 0, 0, 0, 323, 324, 1533, 0, 0, 0,
- 0, 0, 326, 327, 328, 300, 8, 9, 10, 1534,
- 12, 301, 302, 303, 0, 304, 14, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 330, 0, 0, 0,
- 16, 305, 17, 0, 19, 0, 306, 307, 20, 0,
- 308, 309, 310, 21, 311, 312, 0, 23, 0, 0,
- 0, 313, 314, 315, 316, 317, 26, 0, 318, 319,
- 0, 0, 0, 320, 0, 0, 0, 0, 0, 321,
- 0, 0, 322, 0, 0, 0, 0, 0, 0, 0,
- 323, 324, 325, 0, 0, 0, 0, 0, 326, 327,
- 328, 300, 8, 9, 10, 329, 12, 301, 302, 303,
- 0, 304, 14, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 330, 0, 0, 0, 16, 305, 17, 0,
- 19, 0, 306, 307, 20, 0, 308, 309, 310, 21,
- 311, 312, 0, 23, 0, 0, 0, 313, 314, 315,
- 316, 317, 26, 0, 27, 319, 0, 0, 0, 320,
- 0, 0, 0, 0, 0, 321, 0, 0, 322, 0,
- 0, 0, 0, 0, 0, 0, 323, 324, 325, 0,
- 0, 0, 0, 0, 326, 327, 328, 300, 8, 9,
- 10, 329, 12, 536, 302, 303, 0, 304, 14, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 330, 0,
- 0, 0, 16, 305, 17, 0, 19, 0, 306, 307,
- 20, 0, 308, 309, 310, 21, 311, 312, 0, 23,
- 0, 0, 0, 313, 314, 315, 316, 317, 26, 0,
- 27, 319, 0, 0, 0, 320, 0, 0, 0, 0,
- 0, 321, 0, 0, 322, 0, 0, 0, 0, 0,
- 0, 0, 323, 324, 325, 0, 0, 0, 0, 0,
- 326, 327, 328, 300, 8, 9, 10, 329, 12, 536,
- 302, 303, 0, 304, 14, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 330, 0, 0, 0, 16, 305,
- 17, 0, 19, 0, 306, 307, 20, 0, 308, 309,
- 310, 21, 311, 312, 0, 23, 0, 0, 0, 313,
- 314, 315, 316, 317, 26, 0, 27, 319, 569, 0,
- 0, 0, 0, 0, 0, 0, 0, 321, 0, 0,
- 322, 0, 0, 0, 0, 0, 0, 0, 323, 324,
- 325, 0, 0, 0, 0, 0, 326, 327, 328, 300,
- 8, 9, 10, 570, 12, 536, 302, 303, 0, 304,
- 14, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 330, 0, 0, 0, 16, 305, 17, 0, 19, 0,
- 306, 307, 20, 0, 308, 309, 310, 21, 311, 312,
- 0, 23, 0, 0, 0, 313, 314, 315, 316, 317,
- 26, 0, 27, 319, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 321, 0, 0, 322, 0, 0, 0,
- 0, 0, 0, 0, 323, 324, 325, 0, 0, 0,
- 0, 0, 326, 327, 328, 0, 0, 0, 0, 329,
- 608, 300, 8, 9, 10, 0, 12, 536, 302, 303,
- 0, 304, 14, 0, 0, 0, 330, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 16, 305, 17, 18,
- 19, 0, 306, 307, 20, 0, 308, 309, 310, 21,
- 311, 312, 0, 23, 0, 0, 0, 313, 314, 315,
- 316, 317, 26, 0, 27, 319, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 321, 0, 0, 555, 0,
- 0, 0, 0, 0, 0, 0, 323, 324, 556, 0,
- 0, 0, 0, 0, 326, 327, 328, 1166, 8, 9,
- 10, 557, 12, 536, 302, 303, 0, 304, 14, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 330, 0,
- 0, 0, 16, 305, 17, 0, 19, 0, 306, 307,
- 20, 0, 308, 309, 310, 21, 311, 312, 0, 23,
- 0, 0, 0, 313, 314, 315, 316, 317, 26, 0,
- 27, 319, 0, 0, 0, 320, 0, 0, 0, 0,
- 0, 321, 0, 0, 322, 0, 0, 0, 0, 0,
- 0, 0, 323, 324, 325, 0, 0, 0, 0, 0,
- 326, 327, 328, 7, 8, 9, 10, 329, 12, 301,
- 302, 303, 0, 304, 14, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 330, 0, 0, 0, 16, 305,
- 17, 18, 19, 0, 306, 307, 20, 0, 308, 309,
- 310, 21, 311, 312, 0, 23, 0, 0, 0, 313,
- 314, 315, 316, 317, 26, 0, 27, 28, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 321, 0, 0,
- 1532, 0, 0, 0, 0, 0, 0, 0, 323, 324,
- 1533, 0, 0, 0, 0, 0, 326, 327, 328, 300,
- 8, 9, 10, 1534, 12, 536, 302, 303, 0, 304,
- 14, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 330, 0, 0, 0, 16, 305, 17, 0, 19, 0,
- 306, 307, 20, 0, 308, 309, 310, 21, 311, 312,
- 0, 23, 0, 0, 0, 313, 314, 315, 316, 317,
- 26, 0, 27, 319, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 321, 0, 0, 322, 0, 0, 0,
- 0, 0, 0, 0, 323, 324, 325, 0, 0, 0,
- 0, 0, 326, 327, 328, 300, 8, 9, 10, 537,
- 12, 536, 302, 303, 0, 304, 14, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 330, 0, 0, 0,
- 16, 305, 17, 0, 19, 0, 306, 307, 20, 0,
- 308, 309, 310, 21, 311, 312, 0, 23, 0, 0,
- 0, 313, 314, 315, 316, 317, 26, 0, 27, 319,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 321,
- 0, 0, 322, 0, 0, 0, 0, 0, 0, 0,
- 323, 324, 325, 0, 0, 0, 0, 0, 326, 327,
- 328, 300, 8, 9, 10, 540, 12, 536, 302, 303,
- 0, 304, 14, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 330, 0, 0, 0, 16, 305, 17, 0,
- 19, 0, 306, 307, 20, 0, 308, 309, 310, 21,
- 311, 312, 0, 23, 0, 0, 0, 313, 314, 315,
- 316, 317, 26, 0, 27, 319, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 321, 0, 783, 322, 7,
- 8, 784, 10, 167, 12, 13, 323, 324, 325, 0,
- 14, 0, 0, 0, 326, 327, 328, 0, 0, 0,
- 0, 329, 0, 0, 16, 0, 17, 18, 19, 0,
- 0, 0, 20, 0, 0, 0, 0, 21, 330, 0,
- 0, 23, 785, 0, 168, 0, 0, 0, 0, 0,
- 26, 0, 27, 28, 0, 0, 786, 0, 787, 0,
- 0, 0, 0, 0, 0, 0, 30, -387, 8, 9,
- -387, -387, 12, 246, 0, 0, 31, 0, 14, 0,
- 0, 0, 0, 0, 32, 0, 0, 0, 0, 33,
- 0, 0, 16, 0, 17, -387, 0, 0, 0, 0,
- 20, 0, 0, 0, 0, -387, 0, 0, 0, 23,
- 0, 620, 0, 0, 0, 0, 0, 0, 26, 0,
- 130, 131, 1054, 8, 784, 10, 205, 12, 206, 0,
- 0, 0, 0, 14, 621, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 622, 0, 0, 16, 0, 17,
- 18, 0, -387, 0, 623, 20, 0, 624, 625, 0,
- 21, 0, 0, 0, 23, 0, 0, 0, 0, 0,
- 0, 0, 0, 26, 0, 27, 28, 0, 0, 0,
- 0, 1056, 0, 0, 0, 0, 0, 0, 0, 30,
- 7, 8, 9, 10, 205, 12, 206, 0, 0, 31,
- 0, 14, 0, 0, 0, 0, 0, 32, 0, 0,
- 0, 0, 33, 0, 0, 16, 0, 17, 18, 0,
- 0, 0, 0, 20, 0, 0, 0, 0, 21, 0,
- 0, 0, 23, 0, 0, 0, 0, 0, 0, 0,
- 0, 26, 0, 27, 28, 0, 0, 1458, 0, 7,
- 8, 9, 10, 167, 12, 13, 0, 30, 0, 0,
- 14, 0, 0, 0, 0, 0, 0, 31, 0, 0,
- 0, 0, 0, 0, 16, 32, 17, 18, 0, 0,
- 33, 0, 20, 0, 0, 0, 0, 21, 0, 0,
- 0, 23, 0, 0, 0, 0, 0, 0, 0, 0,
- 26, 0, 27, 28, 7, 8, 9, 10, 205, 12,
- 206, 0, 0, 0, 0, 14, 30, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 31, 0, 0, 16,
- 0, 17, 18, 0, 32, 0, 0, 20, 0, 33,
- 0, 0, 21, 0, 0, 0, 23, 0, 0, 0,
- 0, 0, 0, 0, 0, 26, 0, 27, 28, 8,
- 9, 0, 167, 12, 13, 0, 0, 0, 0, 14,
- 0, 30, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 31, 0, 16, 0, 17, 18, 0, 0, 32,
- 0, 20, 0, 0, 33, 0, 0, 0, 0, 0,
- 682, 0, 0, 168, 0, 0, 0, 0, 0, 26,
- 0, 130, 131, 572, 573, 574, 575, 576, 577, 578,
- 579, 580, 581, 582, 583, 584, 585, 586, 587, 588,
- 589, 590, 591, 592, 593, 572, 573, 574, 575, 576,
- 577, 578, 579, 580, 581, 582, 583, 584, 585, 586,
- 587, 588, 589, 590, 591, 592, 593, 0, 0, 0,
- 0, 1267, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 661, 0, 0, 1604,
- 572, 573, 574, 575, 576, 577, 578, 579, 580, 581,
- 582, 583, 584, 585, 586, 587, 588, 589, 590, 591,
- 592, 593, 1598, 572, 573, 574, 575, 576, 577, 578,
- 579, 580, 581, 582, 583, 584, 585, 586, 587, 588,
- 589, 590, 591, 592, 593, 572, 573, 574, 575, 576,
- 577, 578, 579, 580, 581, 582, 583, 584, 585, 586,
- 587, 588, 589, 590, 591, 592, 593, 572, 573, 574,
- 575, 576, 577, 578, 579, 580, 581, 582, 583, 0,
- 585, 586, 587, 588, 589, 590, 591, 592, 593, 576,
- 577, 578, 579, 580, 581, 582, 583, 584, 585, 586,
- 587, 588, 589, 590, 591, 592, 593, 577, 578, 579,
- 580, 581, 582, 583, 584, 585, 586, 587, 588, 589,
- 590, 591, 592, 593
-};
-
-static const short yycheck[] = { 4,
- 175, 174, 55, 349, 62, 149, 150, 161, 176, 402,
- 23, 4, 507, 485, 718, 355, 251, 209, 402, 126,
- 304, 305, 90, 880, 92, 14, 156, 84, 80, 355,
- 35, 700, 4, 133, 4, 402, 788, 42, 790, 42,
- 133, 134, 35, 4, 356, 357, 798, 42, 567, 134,
- 604, 42, 57, 337, 440, 247, 1236, 1237, 124, 647,
- 693, 1423, 243, 35, 1338, 35, 1514, 72, 59, 137,
- 42, 373, 42, 1253, 35, 54, 1513, 1537, 42, 84,
- 42, 42, 140, 88, 209, 90, 12, 92, 217, 218,
- 59, 11, 144, 218, 83, 47, 408, 409, 156, 1559,
- 47, 1348, 107, 108, 296, 11, 468, 0, 1355, 11,
- 1515, 1, 4, 701, 60, 33, 59, 106, 804, 455,
- 355, 9, 175, 1560, 810, 54, 0, 493, 60, 37,
- 74, 136, 137, 59, 139, 74, 62, 1, 30, 31,
- 109, 93, 62, 35, 510, 74, 93, 94, 27, 4,
- 42, 203, 31, 625, 212, 58, 108, 349, 80, 1619,
- 165, 108, 220, 109, 169, 108, 169, 12, 58, 47,
- 165, 176, 57, 61, 169, 136, 155, 109, 169, 237,
- 35, 60, 348, 349, 350, 64, 1, 42, 108, 48,
- 1595, 109, 84, 539, 58, 98, 1644, 169, 62, 169,
- 1380, 109, 108, 74, 165, 169, 108, 169, 169, 1389,
- 1390, 59, 1392, 59, 59, 93, 94, 62, 209, 46,
- 60, 200, 717, 1660, 54, 561, 217, 218, 47, 38,
- 109, 95, 62, 47, 920, 60, 47, 59, 1600, 25,
- 1514, 27, 93, 58, 136, 54, 346, 62, 460, 76,
- 25, 136, 27, 346, 4, 5, 247, 149, 150, 248,
- 108, 74, 108, 108, 3, 4, 5, 936, 4, 109,
- 939, 1518, 58, 165, 93, 94, 62, 169, 33, 93,
- 95, 136, 93, 58, 109, 342, 108, 62, 47, 108,
- 358, 176, 297, 54, 448, 1563, 47, 108, 48, 35,
- 93, 193, 194, 93, 644, 296, 56, 57, 393, 95,
- 165, 980, 981, 74, 169, 93, 683, 56, 57, 385,
- 95, 31, 1569, 47, 329, 879, 712, 713, 961, 47,
- 80, 47, 476, 477, 93, 94, 648, 342, 60, 25,
- 262, 80, 93, 94, 1612, 350, 64, 740, 64, 479,
- 4, 404, 60, 358, 359, 1041, 740, 108, 349, 47,
- 489, 490, 47, 1543, 1544, 490, 355, 1053, 497, 93,
- 94, 673, 58, 1620, 107, 93, 62, 93, 613, 4,
- 509, 35, 47, 719, 108, 4, 213, 58, 42, 25,
- 736, 54, 450, 64, 149, 150, 151, 402, 359, 528,
- 405, 1087, 75, 1089, 77, 93, 94, 55, 93, 95,
- 35, 74, 470, 47, 47, 406, 35, 8, 9, 1276,
- 25, 479, 27, 14, 3, 4, 5, 6, 93, 94,
- 84, 141, 402, 501, 4, 5, 146, 442, 496, 442,
- 195, 4, 804, 108, 1032, 36, 965, 442, 810, 921,
- 342, 442, 31, 58, 45, 182, 47, 62, 44, 93,
- 93, 58, 41, 468, 59, 62, 534, 359, 54, 4,
- 5, 57, 35, 47, 359, 54, 54, 56, 57, 42,
- 75, 442, 136, 25, 194, 27, 56, 57, 1157, 1158,
- 95, 70, 55, 62, 57, 31, 501, 62, 489, 490,
- 1252, 80, 93, 508, 359, 74, 497, 12, 820, 88,
- 402, 165, 62, 48, 93, 169, 58, 47, 509, 93,
- 62, 56, 57, 689, 74, 691, 692, 175, 694, 534,
- 7, 58, 537, 74, 64, 540, 508, 528, 711, 544,
- 545, 546, 547, 548, 1039, 80, 47, 508, 605, 259,
- 442, 1408, 557, 95, 59, 47, 54, 62, 920, 64,
- 37, 47, 567, 93, 94, 570, 109, 483, 47, 962,
- 736, 47, 47, 136, 222, 491, 468, 140, 962, 54,
- 58, 4, 5, 93, 476, 477, 508, 442, 681, 674,
- 930, 772, 93, 774, 54, 962, 681, 650, 779, 74,
- 605, 93, 165, 47, 930, 54, 169, 93, 676, 4,
- 5, 54, 175, 176, 93, 108, 508, 93, 93, 624,
- 3, 4, 5, 508, 4, 5, 631, 3, 4, 5,
- 75, 54, 54, 56, 57, 764, 689, 829, 691, 692,
- 4, 5, 926, 955, 62, 9, 635, 70, 94, 93,
- 4, 5, 74, 508, 1126, 62, 74, 80, 108, 222,
- 651, 56, 57, 829, 1000, 4, 5, 74, 48, 682,
- 882, 676, 499, 56, 57, 782, 56, 57, 54, 1041,
- 56, 57, 58, 736, 108, 690, 11, 47, 342, 694,
- 54, 1053, 56, 57, 48, 930, 108, 1192, 47, 109,
- 14, 692, 56, 57, 717, 359, 70, 47, 22, 419,
- 98, 47, 422, 605, 60, 54, 80, 56, 57, 47,
- 93, 476, 477, 478, 434, 1087, 80, 1089, 62, 621,
- 622, 70, 624, 93, 1229, 740, 902, 805, 806, 631,
- 808, 80, 795, 909, 93, 736, 62, 3, 402, 1122,
- 1123, 65, 1125, 93, 60, 94, 404, 93, 3, 4,
- 5, 471, 928, 111, 474, 93, 3, 4, 5, 1081,
- 1082, 1083, 33, 764, 108, 1121, 74, 47, 488, 3,
- 4, 5, 6, 788, 54, 790, 54, 54, 442, 83,
- 84, 796, 108, 798, 62, 62, 359, 94, 928, 804,
- 805, 806, 94, 808, 74, 810, 74, 74, 4, 5,
- 124, 56, 57, 58, 468, 988, 788, 41, 790, 56,
- 57, 62, 470, 93, 111, 54, 798, 788, 93, 790,
- 93, 479, 56, 57, 148, 483, 74, 798, 829, 59,
- 60, 404, 54, 491, 902, 74, 74, 54, 740, 27,
- 62, 909, 48, 31, 508, 1036, 1037, 1038, 750, 751,
- 56, 57, 74, 54, 4, 5, 788, 74, 790, 9,
- 928, 62, 54, 878, 796, 59, 798, 74, 883, 442,
- 62, 59, 60, 74, 80, 3, 4, 5, 149, 150,
- 151, 75, 74, 77, 1106, 1107, 788, 74, 790, 3,
- 4, 5, 59, 788, 11, 790, 798, 470, 109, 914,
- 795, 796, 804, 798, 54, 920, 56, 57, 810, 924,
- 483, 973, 1626, 108, 238, 239, 59, 60, 491, 59,
- 70, 4, 5, 788, 195, 790, 54, 251, 56, 57,
- 80, 930, 47, 798, 48, 508, 3, 4, 5, 54,
- 7, 605, 56, 57, 94, 108, 108, 962, 54, 964,
- 965, 59, 60, 968, 791, 792, 62, 59, 60, 74,
- 624, 4, 5, 30, 801, 1287, 9, 631, 74, 108,
- 37, 54, 1148, 56, 57, 817, 818, 819, 93, 59,
- 60, 1044, 962, 74, 1206, 59, 60, 54, 31, 56,
- 57, 1347, 650, 1215, 1216, 74, 1011, 321, 54, 1175,
- 59, 60, 1224, 1065, 74, 1181, 59, 60, 1148, 1024,
- 108, 54, 109, 56, 57, 3, 4, 5, 920, 1034,
- 922, 923, 924, 109, 1178, 1179, 1041, 70, 748, 749,
- 767, 689, 27, 691, 692, 111, 756, 80, 1053, 363,
- 108, 1181, 59, 60, 9, 1267, 111, 12, 372, 74,
- 93, 74, 1130, 27, 1208, 1209, 54, 31, 74, 1074,
- 962, 385, 59, 60, 966, 967, 968, 111, 56, 57,
- 111, 108, 1087, 108, 1089, 108, 740, 650, 736, 58,
- 1148, 108, 47, 8, 9, 59, 60, 54, 1434, 14,
- 64, 8, 1074, 111, 59, 47, 61, 62, 64, 64,
- 4, 5, 1117, 1074, 1450, 59, 93, 1175, 93, 1011,
- 75, 36, 77, 1181, 54, 1130, 689, 690, 691, 692,
- 45, 1183, 4, 5, 788, 1301, 790, 109, 93, 94,
- 60, 36, 64, 1065, 798, 64, 64, 795, 1153, 1041,
- 804, 60, 1074, 108, 48, 1367, 810, 108, 108, 1044,
- 1553, 1053, 56, 57, 62, 1223, 111, 108, 108, 1553,
- 1345, 1301, 1347, 736, 108, 1180, 48, 740, 1346, 1192,
- 108, 64, 1074, 64, 56, 57, 80, 64, 75, 1074,
- 93, 505, 59, 1405, 108, 1087, 108, 1089, 1203, 75,
- 3, 1537, 108, 6, 108, 1210, 108, 75, 80, 75,
- 1203, 1557, 75, 968, 62, 476, 477, 478, 108, 1074,
- 3, 4, 5, 1559, 108, 788, 62, 790, 31, 59,
- 1057, 1203, 795, 796, 108, 798, 1063, 1064, 41, 62,
- 1067, 1068, 111, 1301, 1071, 94, 108, 1252, 108, 88,
- 1586, 108, 111, 56, 57, 569, 1011, 967, 74, 1151,
- 1152, 1153, 47, 59, 47, 108, 920, 70, 108, 111,
- 924, 54, 109, 56, 57, 108, 111, 80, 74, 75,
- 1252, 77, 108, 1619, 108, 88, 1178, 1179, 1180, 109,
- 93, 1252, 1345, 60, 1347, 59, 64, 59, 64, 613,
- 59, 1306, 64, 59, 1640, 62, 108, 108, 962, 93,
- 93, 1203, 74, 75, 968, 93, 1208, 1209, 1210, 1046,
- 1047, 93, 93, 109, 111, 1247, 8, 109, 1220, 1221,
- 1252, 108, 108, 1338, 108, 108, 111, 1503, 108, 108,
- 33, 1346, 64, 1348, 109, 108, 1073, 108, 1203, 54,
- 1355, 1078, 62, 108, 108, 1348, 1347, 1011, 108, 1364,
- 1252, 108, 1355, 108, 108, 1557, 1338, 1252, 682, 4,
- 5, 30, 31, 108, 33, 1529, 1348, 108, 111, 693,
- 47, 108, 108, 1355, 108, 96, 1552, 1041, 1532, 1533,
- 62, 62, 12, 9, 60, 60, 1044, 1252, 57, 1053,
- 59, 80, 81, 82, 83, 84, 65, 27, 60, 44,
- 724, 31, 1304, 1305, 1306, 3, 4, 5, 16, 54,
- 1074, 56, 57, 1178, 1179, 1180, 60, 47, 108, 93,
- 108, 108, 108, 1087, 1607, 1089, 60, 93, 1650, 59,
- 60, 64, 62, 54, 64, 1503, 1338, 108, 3, 4,
- 5, 108, 93, 1208, 1209, 1210, 1348, 111, 17, 60,
- 48, 93, 54, 1355, 108, 60, 1176, 1177, 56, 57,
- 108, 107, 97, 93, 94, 1185, 11, 3, 4, 5,
- 108, 1044, 141, 1338, 3, 4, 5, 146, 108, 108,
- 149, 150, 151, 1348, 1552, 60, 60, 1502, 60, 1153,
- 1355, 56, 57, 1508, 30, 1558, 93, 59, 1513, 1514,
- 1515, 1074, 108, 1518, 64, 1242, 1243, 176, 1245, 1246,
- 1513, 1248, 60, 182, 108, 1518, 1180, 1175, 54, 1534,
- 56, 57, 108, 1181, 193, 194, 195, 56, 57, 11,
- 60, 1513, 1514, 11, 60, 0, 1518, 0, 1553, 1203,
- 209, 3, 4, 5, 6, 1560, 1210, 0, 217, 218,
- 1387, 1388, 170, 2, 1569, 35, 1557, 1560, 1448, 962,
- 169, 3, 4, 5, 674, 1223, 1569, 442, 3, 4,
- 5, 1606, 7, 8, 9, 3, 4, 5, 1560, 41,
- 1595, 165, 1302, 1303, 796, 94, 1244, 1569, 1252, 1309,
- 259, 238, 54, 1192, 56, 57, 31, 139, 1500, 1501,
- 1502, 36, 1175, 1433, 1660, 1620, 1508, 1277, 3, 4,
- 5, 1513, 1514, 1515, 56, 57, 1518, 1620, 948, 299,
- 724, 56, 57, 1460, 948, 943, 88, 242, 56, 57,
- 1532, 1533, 3, 4, 5, 6, 1229, 961, 1620, 1039,
- 1377, 1378, 1306, 1301, 1074, 1660, 1249, 796, 1513, 1514,
- 657, 1553, 941, 1518, 200, 346, 605, 1660, 1560, 54,
- 329, 56, 57, 124, 1348, 1204, 1626, 1569, 33, 1574,
- 41, 1244, 1640, 1636, 1338, 1364, 1249, 1638, 1660, 1252,
- 1019, 4, 5, 54, 1348, 56, 57, 1345, -1, 1347,
- -1, 1355, -1, 1595, -1, 1560, 1461, 968, -1, 70,
- 107, 108, -1, -1, 1569, -1, -1, -1, 31, 80,
- 3, 4, 5, -1, 7, 8, 9, 88, 1620, -1,
- -1, -1, 93, -1, -1, 4, 5, -1, -1, -1,
- 9, 54, -1, 56, 57, -1, 405, 406, -1, -1,
- 1011, -1, -1, 1480, 1481, 1482, -1, 70, -1, 762,
- 419, 1588, 31, 422, -1, 1620, -1, 80, 1660, 428,
- 429, 430, -1, 56, 57, 434, -1, 1532, 1533, 1534,
- 93, -1, 1345, 1346, 1347, 54, -1, 56, 57, 3,
- 4, 5, 6, 1107, -1, 150, 151, 7, 8, 9,
- 803, 70, -1, -1, 14, 1660, 809, -1, -1, -1,
- -1, 80, 471, 1540, 1541, 474, -1, 476, 477, 478,
- -1, 31, -1, 482, 93, -1, 36, 41, -1, 488,
- 489, 490, -1, -1, 493, 45, -1, -1, 497, -1,
- 195, -1, 56, 57, -1, -1, -1, -1, 1502, -1,
- 60, 510, -1, -1, 1508, 1503, 7, 8, 9, 1513,
- 1514, 1515, -1, 14, 1518, 76, 77, 78, 79, 80,
- 81, 82, 83, 84, 88, -1, -1, -1, 537, -1,
- 31, 540, 47, -1, 1611, 36, 1200, -1, -1, -1,
- -1, -1, 1206, -1, 45, 461, 555, 556, 557, 1553,
- -1, -1, 468, -1, 1552, -1, 1560, -1, -1, 60,
- 1558, 570, 915, -1, 917, 1569, 402, 1178, 1179, 1180,
- -1, 86, 87, -1, -1, -1, 91, 92, 93, 94,
- -1, -1, 329, -1, 4, 5, -1, -1, -1, 9,
- -1, 1595, -1, 3, 4, 5, 6, 1208, 1209, 1210,
- -1, 4, 5, -1, 306, 307, 88, -1, 90, -1,
- 92, 31, 621, 622, -1, 624, 1620, -1, -1, 535,
- 322, -1, 631, 325, 329, -1, 328, 47, 31, 331,
- -1, 41, 468, 335, 54, -1, 56, 57, 48, -1,
- -1, 343, 651, -1, 47, 1558, 56, 57, -1, -1,
- 70, 54, -1, 56, 57, 137, 1660, 139, -1, -1,
- 80, -1, -1, 3, 4, 5, 6, 70, 1332, 1333,
- 90, -1, -1, 93, 94, -1, -1, 80, 88, 595,
- -1, 690, -1, 692, 693, 601, -1, 90, -1, -1,
- 93, 94, 3, 4, 5, 6, -1, -1, 3, 4,
- 5, 41, 7, 8, 9, -1, -1, -1, 48, -1,
- 80, -1, -1, -1, -1, -1, 56, 57, 465, -1,
- -1, -1, 638, -1, 429, 430, 31, 736, -1, -1,
- 41, 36, -1, 1086, 104, 1088, -1, 48, -1, 748,
- 749, 750, 751, 752, -1, 56, 57, 756, 88, 54,
- -1, 56, 57, 58, -1, 764, -1, -1, 767, -1,
- -1, 1425, -1, 133, -1, -1, -1, -1, -1, 80,
- -1, -1, 477, 478, 144, -1, -1, 88, 7, 8,
- 9, -1, -1, 1447, 1448, 14, -1, 796, 624, -1,
- 537, 1144, -1, 540, -1, 631, -1, 544, 103, 104,
- 105, -1, 31, -1, -1, -1, -1, 36, -1, -1,
- 557, -1, -1, -1, 823, -1, 45, 4, 5, -1,
- -1, -1, 9, 570, -1, -1, -1, 574, 3, 4,
- 5, 6, 537, 203, -1, 540, -1, -1, 320, -1,
- -1, 82, -1, -1, 31, -1, 3, 4, 5, 6,
- 1461, 556, 557, 555, 556, 602, -1, 3, 4, 5,
- 6, 608, 1526, 38, 39, 570, 41, 54, 238, 56,
- 57, -1, -1, -1, -1, -1, 358, -1, -1, 54,
- 1233, 56, 57, 70, 41, 1238, -1, -1, -1, -1,
- -1, 48, 262, 80, 903, 41, -1, 906, -1, 56,
- 57, 47, -1, -1, 740, -1, 93, -1, 54, 918,
- 56, 57, -1, 922, 923, 924, -1, -1, 159, -1,
- -1, 1532, 1533, 1534, 70, -1, 631, -1, -1, -1,
- -1, 88, -1, -1, 80, -1, -1, -1, 1291, 4,
- 5, -1, 88, -1, 90, -1, -1, 93, 94, -1,
- 191, -1, 961, -1, -1, -1, -1, 966, 967, 968,
- -1, 877, 878, 204, -1, -1, 31, 883, 804, -1,
- 7, 8, 9, -1, 810, -1, -1, 14, 460, 461,
- -1, 897, 47, 899, 354, 901, 468, -1, -1, 54,
- -1, 56, 57, -1, 31, 3, 4, 5, 6, 36,
- -1, -1, 1011, -1, -1, 70, -1, -1, 45, -1,
- -1, -1, -1, -1, -1, 80, 1025, 1026, 1027, 501,
- -1, -1, -1, -1, -1, 90, -1, -1, 93, 94,
- -1, -1, -1, 41, 950, -1, -1, 1046, 1047, -1,
- 48, -1, 412, 1396, 1397, -1, 751, 752, 56, 57,
- -1, -1, 534, 535, -1, -1, -1, -1, -1, -1,
- 1413, -1, -1, -1, 1073, -1, -1, -1, -1, 1078,
- -1, -1, 80, -1, 3, 4, 5, 6, 994, -1,
- 88, -1, -1, -1, 920, 567, -1, 569, 924, -1,
- 572, 573, -1, 575, 576, 577, 578, 579, 580, 581,
- 582, 583, 584, 585, 586, 587, 588, 589, 590, 591,
- 592, 593, 41, 595, -1, -1, -1, -1, 823, 601,
- 1473, 1474, -1, -1, -1, 54, 962, 56, 57, -1,
- -1, 60, 968, 62, -1, 505, 1489, 1490, 4, 5,
- 887, 70, 1151, 1152, 1153, -1, -1, -1, -1, 631,
- -1, 80, -1, -1, -1, -1, 638, -1, -1, 88,
- -1, 531, -1, -1, 93, -1, -1, 1176, 1177, 1178,
- 1179, 1180, -1, 461, -1, 1011, 1185, 924, 660, 661,
- 468, 47, -1, -1, -1, -1, -1, -1, 54, 891,
- 56, 57, -1, -1, 676, -1, -1, -1, -1, 1208,
- 1209, 1210, -1, -1, 70, 1041, -1, -1, -1, -1,
- -1, 1220, 1221, 1222, 80, -1, -1, 1053, 923, 924,
- 922, 923, -1, -1, 90, -1, -1, 93, 94, -1,
- -1, -1, -1, 1242, 1243, -1, 1245, 1246, -1, 1248,
- 481, -1, 724, -1, -1, 486, -1, 535, 618, -1,
- -1, 1087, -1, 1089, 78, 79, 80, 81, 82, 83,
- 84, -1, -1, 968, 634, -1, -1, -1, -1, -1,
- 511, -1, -1, -1, -1, -1, 517, -1, 1194, -1,
- 1196, -1, 1198, -1, -1, -1, -1, 1034, 529, 530,
- -1, 532, -1, 1302, 1303, 1304, 1305, 1306, -1, -1,
- 1309, -1, -1, -1, -1, 787, 1011, 595, 3, 4,
- 5, 6, -1, 601, 9, -1, -1, 1153, -1, -1,
- -1, -1, -1, 805, 806, 1, 808, 3, 4, 5,
- 6, -1, 8, -1, -1, -1, 31, 1346, 1347, -1,
- -1, 823, -1, 631, 1180, -1, 41, -1, -1, -1,
- 638, -1, -1, -1, -1, -1, -1, -1, -1, 54,
- -1, 56, 57, 845, -1, 41, -1, -1, 1377, 1378,
- -1, -1, 48, -1, 1210, 70, -1, -1, 54, -1,
- 56, 57, 1298, 753, -1, 80, 627, 628, -1, -1,
- -1, 632, -1, 88, -1, 877, 878, -1, 93, -1,
- 882, 883, -1, -1, -1, -1, 1415, 1416, 4, 1418,
- -1, -1, 88, -1, -1, 897, -1, 899, 14, 901,
- -1, -1, -1, -1, -1, -1, 1128, -1, 24, -1,
- -1, -1, -1, -1, 30, 31, -1, 33, -1, 35,
- -1, -1, -1, -1, -1, -1, 42, 1152, 1153, -1,
- -1, -1, 1461, -1, -1, -1, -1, -1, 940, 55,
- -1, 57, -1, 1210, -1, -1, -1, -1, 950, 65,
- 1306, 1480, 1481, 1482, 1179, 1180, 72, -1, -1, -1,
- -1, -1, -1, 965, -1, -1, -1, 83, 84, -1,
- -1, 1500, 1501, 1502, -1, -1, 978, -1, -1, -1,
- -1, -1, -1, -1, 1209, 1210, 1208, 1209, -1, -1,
- 106, -1, 994, 754, -1, -1, 1263, 1264, 1265, 1266,
- -1, -1, -1, 1532, 1533, 1534, -1, -1, -1, 1011,
- -1, 1540, 1541, -1, -1, 823, -1, -1, 134, -1,
- 136, -1, -1, -1, 140, 141, -1, -1, -1, 145,
- 146, -1, -1, 149, 150, 151, -1, -1, -1, 929,
- -1, 931, -1, -1, -1, -1, -1, -1, -1, 165,
- 811, -1, 813, 169, 1056, -1, -1, -1, -1, 175,
- 176, -1, 4, 5, 1331, -1, 8, 9, -1, 877,
- 878, -1, 14, -1, -1, 883, -1, 193, 194, 195,
- 1305, 1306, 1611, 973, -1, -1, 28, -1, 30, 897,
- -1, 899, -1, 901, 36, -1, -1, -1, -1, -1,
- -1, -1, -1, 45, 1106, 1107, 222, -1, 1110, -1,
- -1, -1, 54, -1, 56, 57, 1338, -1, -1, -1,
- -1, -1, -1, 239, 885, 886, -1, 888, 1130, -1,
- -1, -1, 248, -1, 3, 4, 5, 6, -1, 1406,
- 9, -1, 950, 259, -1, -1, 1502, -1, -1, -1,
- -1, 93, -1, -1, 621, 622, -1, -1, 919, -1,
- -1, -1, 31, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 41, -1, -1, 1065, 1443, -1, 47, -1,
- -1, 297, 298, -1, -1, 54, 994, 56, 57, -1,
- -1, -1, 1194, -1, 1196, -1, 1198, 1553, -1, -1,
- -1, 70, -1, 1011, 1206, -1, -1, -1, -1, 970,
- -1, 80, -1, 1215, 1216, 3, 4, 5, 6, 88,
- -1, 90, 1224, -1, 93, 94, 342, -1, -1, -1,
- 346, -1, 348, 349, 350, -1, 1461, -1, 1240, 1241,
- -1, 1508, -1, 359, -1, -1, -1, 1514, 1515, -1,
- -1, -1, -1, 41, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 1154, 1267, 54, 1534, 56, 57,
- -1, -1, 60, -1, -1, -1, -1, 393, -1, 1040,
- 4, 5, 70, -1, 8, 9, 402, -1, 404, 405,
- 14, 1052, 80, 1183, -1, -1, 1298, -1, -1, -1,
- 88, -1, -1, 419, -1, 93, 422, -1, 1533, 1534,
- 1532, 1533, 36, -1, -1, -1, -1, -1, 434, -1,
- -1, 45, -1, 47, -1, 1327, 442, -1, 1595, -1,
- 54, -1, 56, 57, 73, 74, 75, 76, 77, 78,
- 79, 80, 81, 82, 83, 84, 70, 1614, -1, -1,
- -1, -1, -1, -1, 470, 471, 80, 1247, 474, -1,
- 476, 477, 478, 479, -1, 1367, 90, 483, 1635, 93,
- 94, -1, 488, -1, -1, 491, -1, 1644, 1139, -1,
- -1, 1383, -1, -1, -1, -1, 1194, -1, 1196, -1,
- 1198, -1, 508, -1, -1, -1, 3, 4, 5, 6,
- -1, -1, 9, 1405, -1, -1, -1, 3, 4, 5,
- 6, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 1184, 31, -1, -1, -1, -1, 545,
- 546, 547, 548, -1, 41, -1, 903, -1, -1, 906,
- 47, -1, -1, -1, -1, 41, -1, 54, -1, 56,
- 57, 918, 48, -1, -1, 922, 923, -1, -1, 1461,
- 56, 57, -1, 70, -1, -1, -1, -1, -1, -1,
- 4, 5, -1, 80, 8, 9, 1478, 1479, -1, -1,
- 14, 88, -1, 90, 80, -1, 93, 94, -1, 605,
- 1298, 607, 88, 1254, 28, -1, 30, 1258, -1, 966,
- 967, -1, 36, 619, -1, 621, 622, -1, 624, -1,
- -1, 45, -1, -1, 1516, 631, -1, -1, -1, 635,
- 54, -1, 56, 57, 58, -1, -1, 1417, -1, -1,
- -1, -1, 1293, -1, 650, -1, 4, 5, -1, -1,
- -1, 9, -1, -1, 1546, -1, 1307, -1, -1, -1,
- -1, -1, -1, -1, 3, 4, 5, 6, 674, 93,
- 9, -1, -1, 31, -1, 681, -1, -1, -1, -1,
- -1, -1, -1, 689, 690, 691, 692, 693, 694, 47,
- -1, -1, 31, -1, -1, -1, 54, -1, 56, 57,
- -1, -1, 41, -1, -1, -1, -1, -1, 47, -1,
- -1, -1, 70, -1, -1, 54, -1, 56, 57, -1,
- -1, 1372, 80, -1, -1, 1376, -1, -1, -1, -1,
- 736, 70, 90, -1, 740, 93, 94, -1, -1, -1,
- -1, 80, 748, 749, 750, 751, 752, 1398, 1399, 88,
- 756, 90, -1, -1, 93, 94, -1, -1, 1650, -1,
- -1, -1, -1, 1461, 70, 71, 72, 73, 74, 75,
- 76, 77, 78, 79, 80, 81, 82, 83, 84, 785,
- -1, -1, 788, -1, 790, -1, -1, -1, -1, 795,
- 796, -1, 798, -1, 1151, 1152, -1, -1, 804, -1,
- -1, -1, 1, -1, 810, 4, 5, -1, -1, 8,
- 9, 817, 818, 819, -1, 14, -1, -1, -1, 1176,
- 1177, 1178, 1179, 829, -1, -1, -1, -1, 1185, 28,
- -1, 30, -1, -1, -1, -1, -1, 36, -1, 38,
- 39, -1, -1, -1, -1, -1, 45, -1, 47, -1,
- -1, 1208, 1209, -1, -1, 54, -1, 56, 57, -1,
- 59, -1, -1, -1, 63, 64, 65, 66, 67, 68,
- 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
- 79, 80, 81, 82, 83, -1, -1, 86, 87, 88,
- -1, -1, 91, -1, -1, 94, 902, 903, -1, -1,
- 906, -1, -1, 909, -1, -1, -1, -1, 914, -1,
- -1, 110, 918, -1, 920, -1, 922, 923, 924, -1,
- -1, -1, 928, -1, 930, -1, 3, 4, 5, 6,
- 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
- 81, 82, 83, 84, -1, 1302, 1303, 1304, 1305, -1,
- -1, -1, 1309, -1, -1, -1, 962, -1, 964, -1,
- 966, 967, 968, 4, 41, -1, -1, -1, -1, -1,
- -1, 48, -1, 14, -1, -1, -1, 193, 194, 56,
- 57, -1, 23, 24, -1, -1, -1, -1, -1, 30,
- 31, -1, 33, -1, 35, 3, 4, 5, 6, -1,
- -1, 42, -1, 80, -1, 1011, -1, -1, -1, -1,
- -1, 88, -1, -1, 55, -1, 57, -1, 1024, 1025,
- 1026, 1027, -1, 31, 65, -1, -1, -1, -1, -1,
- -1, 72, -1, 41, -1, 1041, -1, -1, 1044, 47,
- -1, -1, -1, 84, -1, -1, 54, 1053, 56, 57,
- -1, -1, -1, 3, 4, 5, 6, -1, 1415, 1416,
- 1066, 1418, 70, -1, -1, -1, -1, -1, 1074, -1,
- -1, -1, 80, -1, -1, -1, -1, -1, -1, -1,
- 88, 1087, 90, 1089, -1, 93, 94, -1, -1, -1,
- -1, 41, -1, -1, -1, 136, -1, -1, 48, 140,
- 141, -1, -1, -1, -1, 146, 56, 57, 149, 150,
- 151, 1117, -1, -1, -1, -1, 1122, 1123, -1, 1125,
- -1, -1, -1, -1, 165, -1, -1, -1, 169, -1,
- 80, -1, -1, -1, 175, 176, -1, -1, 88, -1,
- -1, -1, 1148, 1500, 1501, 1151, 1152, 1153, -1, -1,
- -1, -1, 193, 194, 195, 3, 4, 5, 6, 7,
- 8, 9, -1, -1, -1, -1, 14, -1, -1, 1175,
- 1176, 1177, 1178, 1179, 1180, 1181, -1, -1, -1, 1185,
- 28, 222, 30, 31, 32, -1, -1, -1, 36, -1,
- -1, -1, -1, 41, -1, -1, -1, 45, -1, -1,
- 48, -1, 1208, 1209, 1210, -1, 54, -1, 56, 57,
- -1, -1, -1, -1, 1220, 1221, 1222, 1223, 259, -1,
- -1, -1, 70, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 80, -1, -1, -1, -1, -1, 1244, -1,
- 88, -1, -1, 1249, -1, 93, 1252, -1, -1, -1,
- 98, -1, -1, -1, -1, 471, 297, 298, 474, -1,
- 476, 477, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 488, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 3, 4, 5, 6, 7, 8, 9, -1,
- -1, -1, -1, 14, -1, 1301, 1302, 1303, 1304, 1305,
- 1306, 342, -1, 1309, -1, 346, -1, 348, 349, 350,
- 31, -1, -1, -1, 355, 36, -1, -1, 359, -1,
- 41, -1, -1, -1, 45, -1, 47, -1, -1, -1,
- -1, -1, -1, 54, -1, 56, 57, -1, -1, 1345,
- 1346, 1347, -1, -1, -1, -1, -1, -1, -1, 70,
- -1, -1, 393, -1, 3, 4, 5, 6, 1364, 80,
- 9, 402, -1, 404, 405, -1, -1, 88, -1, 90,
- 4, 5, 93, 94, 8, 9, -1, -1, 419, -1,
- 14, 422, 31, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 41, 434, 28, -1, 30, -1, 47, -1,
- -1, 442, 36, -1, -1, 54, -1, 56, 57, 1415,
- 1416, 45, 1418, -1, -1, -1, -1, -1, -1, -1,
- 54, 70, 56, 57, -1, -1, -1, -1, -1, 470,
- 471, 80, -1, 474, -1, 476, 477, 478, 479, 88,
- -1, 90, 483, -1, 93, 94, -1, 488, -1, -1,
- 491, -1, -1, -1, -1, 1461, -1, -1, -1, -1,
- 4, 5, -1, 7, 8, 9, 507, 508, 12, -1,
- 14, 3, 4, 5, 6, -1, -1, 9, -1, -1,
- -1, -1, -1, -1, 28, -1, 30, 31, -1, -1,
- -1, -1, 36, -1, 1500, 1501, 1502, 1503, -1, 31,
- -1, 45, -1, -1, 545, 546, 547, 548, -1, 41,
- 54, -1, 56, 57, -1, 47, -1, -1, -1, -1,
- -1, -1, 54, -1, 56, 57, 1532, 1533, 1534, -1,
- -1, -1, 748, 749, 750, 751, -1, -1, 70, -1,
- 756, -1, -1, -1, -1, -1, 1552, 1553, 80, -1,
- -1, -1, 1558, -1, -1, -1, 88, -1, 90, -1,
- -1, 93, 94, -1, 605, -1, 607, 72, 73, 74,
- 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
- 621, 622, -1, 624, -1, -1, -1, -1, -1, -1,
- 631, 1, -1, 3, 4, 5, 6, 7, 8, 9,
- -1, -1, -1, 644, 14, -1, -1, -1, -1, 650,
- -1, -1, -1, -1, -1, -1, -1, -1, 28, -1,
- 30, 31, 32, -1, -1, -1, 36, -1, -1, -1,
- -1, 41, -1, 674, -1, 45, -1, -1, 48, -1,
- -1, 682, -1, -1, 54, -1, 56, 57, 689, 690,
- 691, 692, 693, 694, -1, -1, -1, -1, -1, -1,
- 70, -1, -1, 3, 4, 5, 6, -1, -1, 9,
- 80, -1, -1, -1, -1, -1, 717, -1, 88, -1,
- -1, -1, -1, 93, -1, -1, -1, -1, 98, -1,
- -1, 31, -1, -1, -1, 736, -1, -1, -1, 740,
- -1, 41, -1, -1, -1, -1, -1, 748, 749, 750,
- 751, 752, -1, -1, 54, 756, 56, 57, 4, 5,
- -1, -1, -1, 9, -1, -1, -1, -1, -1, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 80, -1, -1, -1, 785, 31, -1, 788, 88, 790,
- 966, 967, -1, 93, 795, 796, -1, 798, -1, -1,
- -1, 47, -1, 804, -1, -1, -1, -1, 54, 810,
- 56, 57, -1, -1, -1, -1, 817, 818, 819, -1,
- -1, -1, -1, -1, 70, -1, -1, -1, 829, -1,
- -1, -1, -1, -1, 80, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 90, -1, -1, 93, 94, 1025,
- 1026, 1027, -1, -1, -1, -1, 1, -1, 3, 4,
- 5, 6, 7, 8, 9, -1, -1, -1, -1, 14,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 28, -1, 30, 31, -1, -1, -1,
- -1, 36, -1, -1, -1, -1, 41, -1, -1, -1,
- 45, 902, 903, 48, -1, 906, -1, -1, 909, 54,
- -1, 56, 57, 914, -1, 60, -1, 918, -1, 920,
- -1, 922, 923, 924, -1, 70, -1, 928, -1, 930,
- -1, -1, -1, -1, -1, 80, -1, -1, -1, -1,
- -1, -1, -1, 88, 3, 4, 5, 6, 93, 8,
- 9, 10, 11, -1, 13, 14, -1, -1, -1, -1,
- -1, 962, -1, 964, -1, 966, 967, 968, -1, 28,
- 29, 30, 31, 32, -1, 34, 35, 36, -1, 38,
- 39, 40, 41, 42, 43, -1, 45, -1, 47, -1,
- 49, 50, 51, 52, 53, 54, -1, 56, 57, -1,
- 1176, 1177, 1178, 1179, -1, -1, -1, -1, 67, 1185,
- 1011, 70, -1, -1, -1, -1, -1, -1, -1, 78,
- 79, 80, -1, 1024, 1025, 1026, 1027, 86, 87, 88,
- -1, 90, 1208, 1209, 93, 94, -1, -1, 1039, -1,
- 1041, -1, -1, 1044, 1220, 1221, -1, -1, -1, -1,
- -1, 110, 1053, 3, 4, 5, 6, -1, -1, 9,
- -1, -1, -1, -1, 3, 4, 5, 6, -1, -1,
- 9, -1, -1, 1074, -1, -1, -1, -1, -1, -1,
- -1, 31, 4, 5, -1, -1, 1087, 9, 1089, -1,
- -1, 41, 31, -1, -1, -1, -1, 47, -1, -1,
- -1, -1, 41, -1, 54, -1, 56, 57, -1, 31,
- -1, -1, -1, -1, -1, 54, 1117, 56, 57, -1,
- 70, 1122, 1123, -1, 1125, 47, 1302, 1303, 1304, 1305,
- 80, 70, 54, 1309, 56, 57, -1, -1, 88, -1,
- 90, 80, -1, 93, 94, -1, -1, 1148, 70, 88,
- 1151, 1152, 1153, -1, 93, -1, -1, -1, 80, 3,
- 4, 5, 6, 7, 8, 9, -1, -1, 90, -1,
- 14, 93, 94, -1, 1175, 1176, 1177, 1178, 1179, 1180,
- 1181, -1, -1, -1, 1185, -1, -1, 31, -1, -1,
- -1, 1192, 36, -1, -1, -1, -1, 41, -1, -1,
- -1, 45, -1, 47, -1, -1, -1, 1208, 1209, 1210,
- 54, -1, 56, 57, -1, -1, -1, -1, -1, 1220,
- 1221, 1222, 1223, -1, -1, -1, 70, -1, 1229, -1,
- 4, -1, -1, -1, -1, -1, 80, -1, -1, 1415,
- 1416, -1, 1418, 1244, 88, -1, 90, -1, 1249, 93,
- 94, 1252, -1, -1, -1, -1, 30, 31, -1, 33,
- -1, 35, -1, -1, -1, -1, -1, -1, 42, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 55, 1, 57, 3, 4, 5, 6, 7, 8,
- 9, -1, -1, -1, -1, 14, -1, -1, -1, -1,
- 1301, 1302, 1303, 1304, 1305, 1306, 80, -1, 1309, 28,
- -1, 30, 31, 32, -1, -1, -1, 36, 37, -1,
- -1, -1, 41, -1, 1500, 1501, 45, 46, -1, 48,
- -1, -1, -1, 1334, -1, 54, -1, 56, 57, -1,
- -1, 60, -1, 62, 1345, 1346, 1347, -1, -1, -1,
- -1, 70, -1, -1, -1, -1, 1532, 1533, -1, 133,
- 134, 80, 136, 1364, -1, -1, 140, 141, -1, 88,
- 144, -1, 146, -1, 93, 149, 150, 151, -1, -1,
- -1, -1, 156, -1, -1, -1, -1, -1, -1, -1,
- 109, 165, -1, -1, -1, 169, -1, -1, -1, -1,
- -1, 175, 176, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 1415, 1416, -1, 1418, -1, 193,
- 194, 195, -1, -1, -1, -1, -1, -1, 1, 203,
- 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
- 13, 14, -1, -1, -1, -1, -1, -1, 222, -1,
- -1, -1, -1, -1, -1, 28, 29, 30, 31, 32,
- 1461, 34, 35, 36, -1, 38, 39, 40, 41, 42,
- 43, -1, 45, -1, -1, -1, 49, 50, 51, 52,
- 53, 54, -1, 56, 57, 259, -1, -1, 61, 3,
- 4, 5, 6, -1, 67, 9, -1, 70, -1, 1500,
- 1501, 1502, 1503, -1, -1, 78, 79, 80, -1, -1,
- -1, -1, -1, 86, 87, 88, -1, 31, -1, -1,
- 93, -1, -1, -1, -1, -1, -1, 41, -1, -1,
- -1, 1532, 1533, 1534, -1, 108, -1, 110, -1, -1,
- 54, -1, 56, 57, -1, -1, -1, -1, -1, -1,
- -1, 1552, 1553, -1, -1, 329, 70, 1558, -1, -1,
- -1, -1, -1, -1, -1, -1, 80, -1, -1, -1,
- -1, -1, 346, -1, 88, -1, -1, -1, -1, 93,
- 354, -1, -1, -1, -1, 359, -1, -1, -1, -1,
- 3, 4, 5, 6, 7, 8, 9, -1, -1, 12,
- 4, 14, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, -1, 30, 31, 393,
- -1, -1, -1, 36, -1, -1, 30, 31, 41, 33,
- 404, 35, 45, -1, 47, -1, -1, -1, 42, -1,
- -1, 54, -1, 56, 57, 419, -1, -1, 422, -1,
- -1, 55, -1, 57, 428, 429, 430, 70, -1, -1,
- 434, -1, -1, -1, -1, -1, -1, 80, 442, -1,
- -1, -1, -1, -1, -1, 88, -1, 90, 4, 5,
- 93, 94, 8, 9, -1, -1, -1, -1, 14, -1,
- -1, -1, -1, -1, -1, -1, 470, 471, -1, -1,
- 474, -1, 476, 477, 478, 479, -1, -1, -1, 483,
- 36, -1, -1, -1, 488, -1, -1, 491, -1, 45,
- -1, 47, -1, -1, -1, -1, -1, -1, 54, -1,
- 56, 57, 136, -1, 508, -1, 140, 141, -1, -1,
- -1, -1, 146, -1, 70, 149, 150, 151, -1, -1,
- -1, -1, 4, 5, 80, 7, 8, 9, -1, -1,
- 12, 165, 14, 537, 90, 169, 540, 93, 94, -1,
- -1, 175, 176, -1, -1, -1, 28, -1, 30, 31,
- -1, 555, 556, 557, 36, -1, -1, -1, -1, 193,
- 194, 195, -1, 45, -1, -1, 570, -1, -1, -1,
- -1, -1, 54, -1, 56, 57, -1, -1, -1, -1,
- -1, -1, 1, -1, 3, 4, 5, 6, 222, 8,
- 9, 10, 11, -1, 13, 14, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 28,
- 29, 30, -1, 32, 618, 34, 35, 36, -1, 38,
- 39, 40, 41, 42, 43, 259, 45, 631, -1, -1,
- 49, 50, 51, 52, 53, 54, -1, 56, 57, 58,
- -1, -1, 61, -1, -1, -1, 650, -1, 67, -1,
- -1, 70, 4, 5, -1, -1, 8, 9, -1, 78,
- 79, 80, 14, -1, -1, -1, -1, 86, 87, 88,
- 674, -1, -1, -1, 93, 94, 28, 681, 30, -1,
- -1, -1, -1, -1, 36, 689, 690, 691, 692, -1,
- 109, 110, -1, 45, -1, 47, -1, -1, -1, -1,
- -1, -1, 54, -1, 56, 57, -1, -1, -1, -1,
- -1, -1, 3, 4, 5, 6, -1, -1, 70, -1,
- -1, 355, -1, -1, -1, 359, -1, -1, 80, -1,
- -1, -1, 736, -1, -1, -1, 740, -1, 90, -1,
- 31, 93, 94, -1, 748, 749, 750, 751, 752, -1,
- 41, -1, 756, -1, -1, -1, 47, -1, -1, -1,
- -1, -1, -1, 54, -1, 56, 57, -1, -1, -1,
- 404, 33, -1, -1, -1, -1, -1, -1, -1, 70,
- -1, -1, -1, -1, 788, 419, 790, -1, 422, 80,
- -1, 795, 796, 55, 798, -1, -1, 88, -1, 90,
- 434, -1, 93, 94, -1, -1, -1, -1, 442, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 823,
- -1, -1, -1, -1, 3, 4, 5, 6, -1, 4,
- 5, -1, 7, 8, 9, -1, 470, 471, -1, 14,
- 474, -1, 476, 477, 478, 3, 4, 5, 6, 483,
- -1, 9, 31, 28, 488, 30, 31, 491, -1, -1,
- -1, 36, 41, -1, -1, -1, -1, -1, 47, -1,
- 45, -1, -1, 31, 508, 54, -1, 56, 57, 54,
- -1, 56, 57, 41, -1, -1, -1, 149, 150, 151,
- -1, 70, -1, -1, -1, -1, 54, -1, 56, 57,
- -1, 80, -1, -1, -1, -1, -1, -1, -1, 88,
- -1, 90, 70, 175, 93, 94, -1, -1, 922, 923,
- 924, -1, 80, -1, 928, 929, -1, -1, -1, -1,
- 88, 193, 194, 195, -1, 93, -1, -1, 3, 4,
- 5, 6, -1, 1, 9, 3, 4, 5, 6, 7,
- 8, 9, -1, -1, -1, -1, 14, -1, -1, -1,
- 222, -1, 966, 967, 968, -1, 31, -1, -1, 973,
- 28, -1, 30, 31, 32, -1, 41, -1, 36, 37,
- -1, -1, -1, 41, -1, 619, -1, 45, 46, 54,
- 48, 56, 57, -1, -1, -1, 54, -1, 56, 57,
- -1, -1, 60, -1, 62, 70, -1, 1011, -1, -1,
- -1, -1, 70, -1, -1, 80, 650, -1, -1, -1,
- -1, -1, 80, 88, -1, -1, -1, -1, 93, -1,
- 88, -1, -1, -1, -1, 93, 298, -1, -1, -1,
- 1044, 3, 4, 5, 6, 7, 8, 9, -1, -1,
- 12, 109, 14, -1, -1, 689, 690, 691, 692, -1,
- -1, 1065, -1, -1, -1, -1, 28, -1, 30, 31,
- 1074, -1, -1, -1, 36, -1, -1, 4, 5, 41,
- -1, -1, 9, 45, -1, 47, 348, 349, 350, -1,
- -1, -1, 54, -1, 56, 57, -1, -1, -1, -1,
- -1, -1, 736, -1, 31, -1, 740, -1, 70, -1,
- -1, -1, -1, -1, 748, 749, -1, -1, 80, -1,
- 47, -1, 756, -1, -1, -1, 88, 54, 90, 56,
- 57, 93, 94, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 404, 70, 1148, -1, -1, 1151, 1152, 1153,
- 1154, -1, -1, 80, 788, -1, 790, -1, -1, -1,
- -1, 795, 796, 90, 798, -1, 93, 94, -1, -1,
- -1, 1175, 1176, 1177, 1178, 1179, 1180, 1181, -1, 1183,
- -1, 1185, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 3, 4, 5, 6,
- -1, -1, 9, -1, 1208, 1209, 1210, -1, 470, 471,
- -1, -1, 474, -1, 476, 477, 478, 479, -1, -1,
- -1, 483, -1, -1, 31, -1, 488, 4, 5, 491,
- 7, 8, 9, -1, 41, 12, -1, 14, -1, -1,
- 1244, -1, -1, -1, -1, 1249, -1, 54, 1252, 56,
- 57, 28, -1, 30, 31, -1, -1, -1, -1, 36,
- -1, -1, -1, 70, -1, -1, -1, -1, 45, -1,
- 47, -1, -1, 80, -1, -1, -1, 54, -1, 56,
- 57, 88, -1, -1, -1, -1, 93, -1, -1, -1,
- -1, -1, -1, 70, -1, -1, 930, 1301, 1302, 1303,
- 1304, 1305, 1306, 80, -1, 1309, -1, -1, -1, -1,
- -1, -1, -1, 90, -1, -1, 93, 94, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 966, 967, 968, -1, -1, -1, -1, -1,
- -1, 1345, 1346, 1347, -1, 607, -1, -1, 4, 5,
- -1, 7, 8, 9, -1, -1, 12, -1, 14, 621,
- 622, -1, 624, -1, 3, 4, 5, 6, -1, 631,
- 9, 55, 28, -1, 30, 31, -1, 1011, -1, -1,
- 36, -1, -1, -1, -1, -1, -1, -1, 650, 45,
- -1, 47, 31, -1, -1, -1, 80, -1, 54, 83,
- 56, 57, 41, -1, -1, 107, 108, -1, -1, -1,
- 1044, -1, -1, -1, 70, 54, -1, 56, 57, -1,
- 104, -1, 106, -1, 80, -1, -1, 689, -1, 691,
- 692, 70, 694, -1, 90, -1, -1, 93, 94, -1,
- 1074, 80, -1, -1, -1, -1, -1, -1, -1, 88,
- -1, 4, 5, -1, 93, 8, 9, 1461, -1, -1,
- -1, 14, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 736, 28, -1, 30, -1, -1,
- -1, -1, -1, 36, -1, -1, 748, 749, 750, 751,
- 752, 175, 45, -1, 756, -1, 3, 4, 5, 6,
- -1, 54, 9, 56, 57, -1, -1, -1, -1, 193,
- 194, 195, -1, -1, -1, -1, -1, -1, -1, 203,
- -1, -1, -1, -1, 31, -1, -1, -1, 1532, 1533,
- 1534, -1, -1, 795, 41, -1, -1, -1, 222, -1,
- -1, 1175, 1176, 1177, 1178, 1179, 1180, 54, -1, 56,
- 57, 1185, -1, -1, 1558, 817, 818, 819, -1, -1,
- -1, -1, -1, 70, 248, -1, -1, 829, -1, -1,
- -1, -1, -1, 80, 1208, 1209, 1210, -1, 262, -1,
- -1, 88, -1, -1, -1, -1, 93, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 3, 4, 5,
- 6, 7, 8, 9, -1, -1, -1, -1, 14, -1,
- 1244, -1, -1, -1, -1, 1249, -1, -1, 1252, -1,
- -1, -1, 28, -1, 30, 31, -1, 329, -1, -1,
- 36, -1, -1, -1, -1, 41, -1, -1, -1, 45,
- 902, 903, -1, -1, 906, -1, -1, 909, 54, -1,
- 56, 57, -1, -1, 60, -1, 918, -1, -1, -1,
- 922, 923, 924, -1, 70, -1, 928, -1, 1302, 1303,
- 354, 355, -1, -1, 80, 1309, -1, -1, -1, -1,
- -1, -1, 88, 3, 4, 5, 6, 93, 1, -1,
- 3, 4, 5, 6, 7, 8, 9, -1, -1, -1,
- 402, 14, -1, -1, 966, 967, 968, -1, -1, -1,
- -1, 1345, 1346, 1347, 27, 28, -1, 30, 31, 32,
- 404, 41, -1, 36, -1, -1, -1, -1, 41, -1,
- -1, 44, 45, 46, 54, 48, 56, 57, -1, -1,
- -1, 54, 62, 56, 57, -1, -1, 60, -1, 1011,
- 70, -1, -1, -1, -1, -1, -1, 70, -1, -1,
- 80, -1, -1, 1025, 1026, 1027, 468, 80, 88, -1,
- -1, -1, -1, 93, -1, 88, -1, -1, -1, -1,
- 93, -1, 1044, -1, -1, 98, 470, 471, -1, -1,
- 474, -1, 476, 477, 478, 479, -1, -1, -1, 483,
- -1, -1, -1, -1, 488, -1, -1, 491, -1, -1,
- -1, -1, -1, -1, -1, -1, 3, 4, 5, 6,
- 3, 4, 5, 6, 7, 8, 9, 1461, -1, -1,
- -1, 14, -1, -1, -1, 537, -1, -1, 540, -1,
- -1, -1, 544, 545, 546, 547, 548, -1, 31, -1,
- -1, -1, -1, 36, 41, 557, -1, -1, 41, -1,
- 1122, 1123, 45, 1125, 47, -1, -1, 54, 570, 56,
- 57, 54, -1, 56, 57, 62, -1, -1, -1, -1,
- -1, -1, -1, 70, -1, -1, 1148, 70, -1, 1151,
- 1152, 1153, -1, 80, -1, -1, -1, 80, 1532, 1533,
- 1534, 88, -1, -1, -1, 88, 93, -1, -1, -1,
- 93, -1, -1, 1175, 1176, 1177, 1178, 1179, 1180, 1181,
- -1, -1, 624, 1185, 1558, -1, -1, -1, -1, 631,
- -1, -1, -1, -1, -1, -1, 3, 4, 5, 6,
- -1, -1, 3, 4, 5, 6, 1208, 1209, 1210, -1,
- 634, 635, -1, -1, -1, -1, -1, -1, 1220, 1221,
- 1222, 1223, -1, -1, 31, -1, 650, -1, -1, 14,
- 31, -1, -1, -1, 41, -1, -1, -1, 23, 24,
- 41, -1, 1244, -1, -1, 30, 31, 54, 33, 56,
- 57, -1, -1, 54, -1, 56, 57, -1, -1, -1,
- -1, -1, -1, 70, -1, 689, -1, 691, 692, 70,
- -1, -1, -1, 80, -1, -1, -1, -1, -1, 80,
- 65, 88, -1, -1, -1, -1, 93, 88, -1, -1,
- -1, -1, 93, -1, -1, -1, -1, -1, 740, 1301,
- 1302, 1303, 1304, 1305, 1306, -1, -1, 1309, -1, -1,
- -1, -1, 736, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 748, 749, 750, 751, 752, 753,
- -1, -1, 756, -1, -1, -1, -1, -1, -1, 124,
- -1, 126, -1, 1345, -1, 1347, -1, -1, 133, 134,
- -1, -1, -1, -1, -1, 140, 141, -1, 782, 144,
- 145, 146, 804, 148, 149, 150, 151, -1, 810, -1,
- -1, 795, 69, 70, 71, 72, 73, 74, 75, 76,
- 77, 78, 79, 80, 81, 82, 83, 84, 348, 349,
- 350, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 1, -1, 3, 4, 5, 6, 7, 8,
- 9, -1, -1, 1415, 1416, 14, 1418, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 28,
- -1, 30, 31, 32, -1, -1, 878, 36, 37, -1,
- -1, -1, 41, -1, -1, -1, 45, 46, -1, 48,
- -1, -1, -1, 238, 239, 54, -1, 56, 57, 1461,
- -1, 60, -1, 62, -1, -1, -1, -1, -1, -1,
- -1, 70, 914, -1, 259, -1, -1, -1, 920, -1,
- -1, 80, 924, -1, -1, -1, -1, -1, -1, 88,
- -1, -1, -1, -1, 93, -1, -1, -1, 1500, 1501,
- 1502, 1503, -1, -1, -1, 929, 930, 931, -1, -1,
- 109, -1, -1, 298, -1, -1, -1, -1, -1, -1,
- 962, -1, 964, -1, -1, -1, 968, -1, -1, -1,
- 1532, 1533, 1534, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 966, 967, 968, -1, -1, -1, -1, 973,
- 1552, -1, -1, -1, -1, -1, 1558, -1, -1, -1,
- -1, 346, -1, 348, 349, -1, -1, -1, -1, 1011,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 1024, -1, -1, -1, -1, 1011, -1, -1,
- -1, -1, 1034, -1, -1, -1, -1, -1, -1, 1041,
- -1, 1025, 1026, 1027, -1, -1, -1, -1, 393, -1,
- -1, 1053, 3, 4, 5, 6, 3, 4, 5, 6,
- 1044, -1, -1, -1, -1, -1, -1, 412, -1, -1,
- -1, -1, -1, -1, 419, -1, -1, 422, -1, -1,
- 31, 1065, -1, -1, 31, 1087, -1, 1089, -1, 434,
- 41, -1, -1, -1, 41, -1, -1, -1, -1, -1,
- -1, 621, 622, 54, 624, 56, 57, 54, -1, 56,
- 57, 631, -1, -1, -1, 1117, -1, -1, -1, 70,
- -1, -1, -1, 70, -1, -1, -1, -1, -1, 80,
- -1, -1, -1, 80, -1, -1, -1, 88, -1, -1,
- -1, 88, 93, -1, -1, -1, 93, -1, -1, -1,
- -1, 1153, -1, -1, -1, -1, -1, -1, -1, -1,
- 505, -1, 507, -1, -1, -1, -1, -1, -1, 689,
- 1154, 691, 692, -1, 694, -1, -1, -1, 1180, 3,
- 4, 5, 6, 7, 8, 9, 531, -1, 12, -1,
- 14, 1175, 1176, 1177, 1178, 1179, 1180, 1181, -1, 1183,
- -1, 1185, -1, -1, 28, -1, 30, 31, 1210, -1,
- -1, -1, 36, -1, -1, -1, 736, 41, -1, -1,
- -1, 45, -1, 47, 1208, 1209, 1210, -1, -1, -1,
- 54, -1, 56, 57, -1, -1, 1220, 1221, 1222, 1223,
- -1, -1, -1, -1, -1, -1, 70, -1, -1, 3,
- 4, 5, 6, -1, -1, -1, 80, -1, -1, -1,
- 1244, -1, 607, -1, 88, -1, 90, -1, -1, 93,
- 94, -1, -1, 618, 619, -1, 621, 622, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 41, -1, 3,
- 4, 5, 6, -1, -1, -1, -1, -1, -1, -1,
- 54, -1, 56, 57, 1306, -1, -1, -1, 62, 829,
- -1, -1, -1, -1, -1, -1, 70, 1301, 1302, 1303,
- 1304, 1305, 1306, -1, -1, 1309, 80, 41, -1, 674,
- -1, -1, -1, -1, 88, -1, 681, 682, -1, 93,
- 54, -1, 56, 57, -1, -1, 60, -1, 693, -1,
- -1, -1, -1, -1, -1, -1, 70, -1, -1, -1,
- -1, 1345, 1364, 1347, -1, -1, 80, -1, -1, -1,
- -1, -1, 717, -1, 88, -1, -1, 31, -1, 93,
- -1, -1, 902, 903, -1, -1, 906, -1, -1, 909,
- -1, -1, -1, -1, -1, -1, -1, -1, 918, -1,
- -1, -1, 922, 923, 924, -1, -1, -1, 928, 63,
- 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
- 84, 1415, 1416, 1417, 1418, -1, -1, 782, -1, -1,
- 785, -1, -1, -1, -1, -1, 966, 967, 968, -1,
- -1, -1, 1, -1, 3, 4, 5, 6, 7, 8,
- 9, -1, -1, -1, -1, 14, -1, -1, -1, -1,
- -1, -1, 817, 818, 819, -1, -1, 1461, -1, 28,
- -1, 30, 31, 32, 829, -1, -1, 36, 37, -1,
- -1, 1011, 41, -1, -1, -1, 45, 46, -1, 48,
- 1502, -1, -1, -1, -1, 54, -1, 56, 57, -1,
- -1, 60, -1, 62, -1, -1, 1500, 1501, 1502, 1503,
- -1, 70, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 80, 1534, -1, -1, -1, -1, -1, -1, 88,
- -1, -1, -1, -1, 93, -1, -1, -1, 1532, 1533,
- 1534, 1553, -1, -1, 4, 5, -1, 902, 903, 9,
- 109, 906, -1, -1, 909, -1, -1, -1, 1552, -1,
- -1, -1, -1, 918, 1558, -1, -1, -1, -1, -1,
- -1, 31, -1, 928, -1, 3, 4, 5, 6, 7,
- 8, 9, -1, -1, 12, -1, 14, 47, -1, -1,
- -1, -1, -1, -1, 54, -1, 56, 57, -1, -1,
- 28, -1, 30, 31, -1, -1, -1, -1, 36, -1,
- 70, -1, -1, 41, -1, -1, -1, 45, 1148, -1,
- 80, 1151, 1152, 1153, -1, -1, 54, -1, 56, 57,
- 90, -1, -1, 93, 94, -1, -1, -1, -1, -1,
- -1, -1, 70, -1, -1, 1175, 1176, 1177, 1178, 1179,
- 1180, 1181, 80, -1, 1, 1185, 3, 4, 5, 6,
- 88, 8, 9, 10, 11, 93, 13, 14, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 1208, 1209,
- 1210, 28, 29, 30, 1039, 32, -1, 34, 35, 36,
- -1, 38, 39, 40, 41, 42, 43, -1, 45, -1,
- -1, -1, 49, 50, 51, 52, 53, 54, -1, 56,
- 57, 1066, -1, -1, 61, 62, -1, -1, -1, -1,
- 67, -1, -1, 70, -1, -1, -1, -1, -1, -1,
- -1, 78, 79, 80, -1, -1, -1, -1, -1, 86,
- 87, 88, -1, -1, -1, -1, 93, -1, 12, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 110, -1, -1, -1, 1122, 1123, -1,
- 1125, 1301, 1302, 1303, 1304, 1305, 1306, -1, -1, 1309,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 1148, -1, -1, 1151, 1152, 62, 63,
- 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
- 84, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 1192, -1, -1,
- -1, -1, -1, 1, -1, 3, 4, 5, 6, 7,
- 8, 9, -1, -1, 12, -1, 14, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 25, -1, 27,
- -1, -1, -1, 31, 1229, -1, -1, -1, 36, -1,
- -1, -1, -1, 41, -1, 1415, 1416, 45, 1418, 47,
- -1, -1, 1247, -1, 1249, -1, 54, -1, 56, 57,
- 58, 59, 60, -1, 62, 63, 64, 65, 66, 67,
- 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, 84, -1, 86, 87,
- 88, -1, 90, 91, 92, 93, 94, 95, -1, 97,
- -1, -1, -1, -1, 102, -1, -1, -1, -1, 107,
- 108, 109, -1, 111, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 1500, 1501, 1502, 1503, -1, 1, -1, 3, 4, 5,
- 6, 7, 8, 9, 10, 11, -1, 13, 14, 15,
- -1, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, 32, -1, 34, 35,
- 36, -1, 38, 39, 40, 41, 42, 43, 44, 45,
- 46, -1, 1552, 49, 50, 51, 52, 53, 54, -1,
- 56, 57, 58, -1, 60, 61, -1, -1, -1, -1,
- -1, 67, -1, -1, 70, -1, -1, -1, -1, -1,
- -1, -1, 78, 79, 80, -1, -1, -1, -1, -1,
- 86, 87, 88, -1, -1, -1, -1, 93, -1, 95,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 109, 110, 1, -1, 3, 4, 5,
- 6, 7, 8, 9, 10, 11, -1, 13, 14, 15,
- -1, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, 32, -1, 34, 35,
- 36, -1, 38, 39, 40, 41, 42, 43, 44, 45,
- 46, -1, -1, 49, 50, 51, 52, 53, 54, -1,
- 56, 57, 58, -1, 60, 61, -1, -1, -1, -1,
- -1, 67, -1, -1, 70, -1, -1, -1, -1, -1,
- -1, -1, 78, 79, 80, -1, -1, -1, -1, -1,
- 86, 87, 88, -1, -1, -1, -1, 93, 1, 95,
- 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
- 13, 14, -1, -1, 110, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, 29, 30, 31, 32,
- -1, 34, 35, 36, -1, 38, 39, 40, 41, 42,
- 43, -1, 45, -1, 47, -1, 49, 50, 51, 52,
- 53, 54, -1, 56, 57, 58, -1, -1, 61, -1,
- -1, -1, -1, -1, 67, -1, -1, 70, -1, -1,
- -1, -1, -1, -1, -1, 78, 79, 80, -1, -1,
- -1, -1, -1, 86, 87, 88, -1, 90, -1, -1,
- 93, 94, 1, -1, 3, 4, 5, 6, 7, 8,
- 9, 10, 11, 12, 13, 14, -1, 110, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 28,
- 29, 30, 31, 32, -1, 34, 35, 36, -1, 38,
- 39, 40, 41, 42, 43, -1, 45, -1, 47, -1,
- 49, 50, 51, 52, 53, 54, -1, 56, 57, 58,
- -1, -1, 61, -1, -1, -1, -1, -1, 67, -1,
- -1, 70, -1, -1, -1, -1, -1, -1, -1, 78,
- 79, 80, -1, -1, -1, -1, -1, 86, 87, 88,
- -1, 90, -1, -1, 93, 94, 1, -1, 3, 4,
- 5, 6, 7, 8, 9, 10, 11, -1, 13, 14,
- -1, 110, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 28, 29, 30, 31, 32, -1, 34,
- 35, 36, -1, 38, 39, 40, 41, 42, 43, -1,
- 45, -1, -1, -1, 49, 50, 51, 52, 53, 54,
- -1, 56, 57, 58, -1, 60, 61, -1, -1, -1,
- -1, -1, 67, -1, -1, 70, -1, -1, -1, -1,
- -1, -1, -1, 78, 79, 80, -1, -1, -1, -1,
- -1, 86, 87, 88, -1, -1, -1, 1, 93, 3,
- 4, 5, 6, -1, 8, 9, 10, 11, -1, 13,
- 14, -1, -1, -1, -1, 110, -1, -1, -1, -1,
- -1, -1, -1, -1, 28, 29, 30, 31, 32, -1,
- 34, 35, 36, -1, 38, 39, 40, 41, 42, 43,
- -1, 45, -1, -1, -1, 49, 50, 51, 52, 53,
- 54, -1, 56, 57, 58, -1, -1, 61, -1, -1,
- -1, -1, -1, 67, -1, -1, 70, -1, -1, -1,
- -1, -1, -1, -1, 78, 79, 80, -1, -1, -1,
- -1, -1, 86, 87, 88, -1, -1, -1, 1, 93,
- 3, 4, 5, 6, -1, 8, 9, 10, 11, -1,
- 13, 14, -1, -1, -1, -1, 110, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, 29, 30, -1, 32,
- -1, 34, 35, 36, -1, 38, 39, 40, 41, 42,
- 43, -1, 45, -1, -1, -1, 49, 50, 51, 52,
- 53, 54, -1, 56, 57, 58, -1, -1, 61, -1,
- -1, -1, -1, -1, 67, -1, -1, 70, -1, -1,
- -1, -1, -1, -1, -1, 78, 79, 80, -1, -1,
- -1, -1, -1, 86, 87, 88, -1, -1, -1, -1,
- 93, 94, 1, -1, 3, 4, 5, 6, -1, 8,
- 9, 10, 11, -1, 13, 14, -1, 110, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 28,
- 29, 30, -1, 32, -1, 34, 35, 36, -1, 38,
- 39, 40, 41, 42, 43, -1, 45, -1, -1, -1,
- 49, 50, 51, 52, 53, 54, -1, 56, 57, 58,
- -1, -1, 61, -1, -1, -1, -1, -1, 67, -1,
- -1, 70, -1, -1, -1, -1, -1, -1, -1, 78,
- 79, 80, -1, -1, -1, -1, -1, 86, 87, 88,
- -1, -1, -1, 1, 93, 3, 4, 5, 6, -1,
- 8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
- 109, 110, -1, -1, -1, -1, -1, -1, -1, -1,
- 28, 29, 30, -1, 32, -1, 34, 35, 36, -1,
- 38, 39, 40, 41, 42, 43, -1, 45, -1, -1,
- -1, 49, 50, 51, 52, 53, 54, -1, 56, 57,
- 58, -1, -1, 61, -1, -1, -1, -1, -1, 67,
- -1, -1, 70, -1, -1, -1, -1, -1, -1, -1,
- 78, 79, 80, -1, -1, -1, -1, -1, 86, 87,
- 88, -1, -1, -1, 1, 93, 3, 4, 5, 6,
- -1, 8, 9, 10, 11, -1, 13, 14, -1, -1,
- -1, 109, 110, -1, -1, -1, -1, -1, -1, -1,
- -1, 28, 29, 30, -1, 32, -1, 34, 35, 36,
- -1, 38, 39, 40, 41, 42, 43, -1, 45, -1,
- -1, -1, 49, 50, 51, 52, 53, 54, -1, 56,
- 57, 58, -1, -1, 61, -1, -1, -1, -1, -1,
- 67, -1, -1, 70, -1, -1, -1, -1, -1, -1,
- -1, 78, 79, 80, -1, -1, -1, -1, -1, 86,
- 87, 88, -1, -1, -1, -1, 93, -1, 1, -1,
- 3, 4, 5, 6, 101, 8, 9, 10, 11, -1,
- 13, 14, -1, 110, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, 29, 30, 31, 32,
- -1, 34, 35, 36, -1, 38, 39, 40, 41, 42,
- 43, -1, 45, -1, -1, -1, 49, 50, 51, 52,
- 53, 54, -1, 56, 57, 58, -1, -1, 61, -1,
- -1, -1, -1, -1, 67, -1, -1, 70, -1, -1,
- -1, -1, -1, -1, -1, 78, 79, 80, -1, -1,
- -1, -1, -1, 86, 87, 88, -1, -1, -1, 1,
- 93, 3, 4, 5, 6, -1, 8, 9, 10, 11,
- -1, 13, 14, -1, -1, -1, -1, 110, -1, -1,
- -1, -1, -1, -1, -1, -1, 28, 29, 30, -1,
- 32, -1, 34, 35, 36, -1, 38, 39, 40, 41,
- 42, 43, -1, 45, -1, -1, -1, 49, 50, 51,
- 52, 53, 54, -1, 56, 57, 58, -1, -1, 61,
- -1, -1, -1, -1, -1, 67, -1, -1, 70, -1,
- -1, -1, -1, -1, -1, -1, 78, 79, 80, -1,
- -1, -1, -1, -1, 86, 87, 88, -1, -1, -1,
- 1, 93, 3, 4, 5, 6, -1, 8, 9, 10,
- 11, -1, 13, 14, -1, -1, -1, -1, 110, -1,
- -1, -1, -1, -1, -1, -1, -1, 28, 29, 30,
- -1, 32, -1, 34, 35, 36, -1, 38, 39, 40,
- 41, 42, 43, -1, 45, -1, -1, -1, 49, 50,
- 51, 52, 53, 54, -1, 56, 57, -1, -1, 60,
- 61, -1, -1, -1, -1, -1, 67, -1, -1, 70,
- -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
- -1, -1, -1, -1, -1, 86, 87, 88, -1, -1,
- -1, 1, 93, 3, 4, 5, 6, -1, 8, 9,
- 10, 11, -1, 13, 14, -1, -1, -1, -1, 110,
- -1, -1, -1, -1, -1, -1, -1, -1, 28, 29,
- 30, -1, 32, -1, 34, 35, 36, -1, 38, 39,
- 40, 41, 42, 43, -1, 45, -1, -1, -1, 49,
- 50, 51, 52, 53, 54, -1, 56, 57, -1, -1,
- -1, 61, -1, -1, -1, -1, -1, 67, -1, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, -1, -1, -1, -1, 86, 87, 88, -1,
- -1, -1, 1, 93, 3, 4, 5, 6, -1, 8,
- 9, 10, 11, -1, 13, 14, -1, -1, 108, -1,
- 110, -1, -1, -1, -1, -1, -1, -1, -1, 28,
- 29, 30, -1, 32, -1, 34, 35, 36, -1, 38,
- 39, 40, 41, 42, 43, -1, 45, -1, -1, -1,
- 49, 50, 51, 52, 53, 54, -1, 56, 57, -1,
- -1, -1, 61, -1, -1, -1, -1, -1, 67, -1,
- -1, 70, -1, -1, -1, -1, -1, -1, -1, 78,
- 79, 80, -1, -1, -1, -1, -1, 86, 87, 88,
- -1, -1, -1, 1, 93, 3, 4, 5, 6, -1,
- 8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
- -1, 110, -1, -1, -1, -1, -1, -1, -1, -1,
- 28, 29, 30, -1, 32, -1, 34, 35, 36, -1,
- 38, 39, 40, 41, 42, 43, -1, 45, -1, -1,
- -1, 49, 50, 51, 52, 53, 54, -1, 56, 57,
- -1, -1, -1, 61, -1, -1, -1, -1, -1, 67,
- -1, -1, 70, -1, -1, -1, -1, -1, -1, -1,
- 78, 79, 80, -1, -1, -1, -1, -1, 86, 87,
- 88, -1, -1, -1, 1, 93, 3, 4, 5, 6,
- -1, 8, 9, 10, 11, -1, 13, 14, -1, -1,
- -1, -1, 110, -1, -1, -1, -1, -1, -1, -1,
- -1, 28, 29, 30, -1, 32, -1, 34, 35, 36,
- -1, 38, 39, 40, 41, 42, 43, -1, 45, -1,
- -1, -1, 49, 50, 51, 52, 53, 54, -1, 56,
- 57, -1, -1, -1, 61, -1, -1, -1, -1, -1,
- 67, -1, -1, 70, -1, -1, -1, -1, -1, -1,
- -1, 78, 79, 80, -1, -1, -1, -1, -1, 86,
- 87, 88, 3, 4, 5, 6, 93, 8, 9, 10,
- 11, -1, 13, 14, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 110, -1, -1, -1, 28, 29, 30,
- -1, 32, -1, 34, 35, 36, -1, 38, 39, 40,
- 41, 42, 43, -1, 45, -1, -1, -1, 49, 50,
- 51, 52, 53, 54, -1, 56, 57, -1, -1, -1,
- 61, -1, -1, -1, -1, -1, 67, -1, -1, 70,
- -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
- -1, -1, -1, -1, -1, 86, 87, 88, -1, -1,
- -1, -1, 93, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 110,
- 111, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- -1, 13, 14, 15, -1, 17, 18, 19, 20, 21,
- 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
- 32, -1, 34, 35, 36, -1, 38, 39, 40, 41,
- 42, 43, 44, 45, 46, -1, -1, 49, 50, 51,
- 52, 53, 54, -1, 56, 57, 58, -1, 60, 61,
- -1, -1, -1, -1, -1, 67, -1, -1, 70, -1,
- -1, -1, -1, -1, -1, -1, 78, 79, 80, -1,
- -1, -1, -1, -1, 86, 87, 88, -1, -1, -1,
- -1, 93, -1, 95, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 109, 110, 3,
- 4, 5, 6, 7, 8, 9, 10, 11, -1, 13,
- 14, 15, -1, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, 30, 31, 32, -1,
- 34, 35, 36, -1, 38, 39, 40, 41, 42, 43,
- 44, 45, 46, -1, -1, 49, 50, 51, 52, 53,
- 54, -1, 56, 57, 58, -1, 60, 61, -1, -1,
- -1, -1, -1, 67, -1, -1, 70, -1, -1, -1,
- -1, -1, -1, -1, 78, 79, 80, -1, -1, -1,
- -1, -1, 86, 87, 88, -1, -1, -1, -1, 93,
- -1, 95, -1, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, -1, 13, 14, 15, 110, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 30, 31, 32, -1, 34, 35, 36, -1, 38, 39,
- 40, 41, 42, 43, 44, 45, 46, -1, -1, 49,
- 50, 51, 52, 53, 54, -1, 56, 57, 58, -1,
- 60, 61, -1, -1, -1, -1, -1, 67, -1, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, -1, -1, -1, -1, 86, 87, 88, -1,
- -1, -1, -1, 93, -1, 95, -1, 3, 4, 5,
- 6, 7, 8, 9, 10, 11, -1, 13, 14, 15,
- 110, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, 32, -1, 34, 35,
- 36, -1, 38, 39, 40, 41, 42, 43, 44, 45,
- 46, -1, -1, 49, 50, 51, 52, 53, 54, -1,
- 56, 57, -1, -1, 60, 61, -1, -1, -1, -1,
- -1, 67, -1, -1, 70, -1, -1, -1, -1, -1,
- -1, -1, 78, 79, 80, -1, -1, -1, -1, -1,
- 86, 87, 88, -1, -1, -1, -1, 93, -1, 95,
- 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
- 13, 14, -1, -1, 110, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, 29, 30, 31, 32,
- -1, 34, 35, 36, -1, 38, 39, 40, 41, 42,
- 43, -1, 45, -1, 47, -1, 49, 50, 51, 52,
- 53, 54, -1, 56, 57, -1, -1, -1, 61, -1,
- -1, -1, -1, -1, 67, -1, -1, 70, -1, -1,
- -1, -1, -1, -1, -1, 78, 79, 80, -1, -1,
- -1, -1, -1, 86, 87, 88, -1, 90, -1, -1,
- 93, 94, 3, 4, 5, 6, 7, 8, 9, 10,
- 11, 12, 13, 14, -1, -1, -1, 110, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 28, 29, 30,
- 31, 32, -1, 34, 35, 36, -1, 38, 39, 40,
- 41, 42, 43, -1, 45, -1, 47, -1, 49, 50,
- 51, 52, 53, 54, -1, 56, 57, -1, -1, -1,
- 61, -1, -1, -1, -1, -1, 67, -1, -1, 70,
- -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
- -1, -1, -1, -1, -1, 86, 87, 88, -1, 90,
- -1, -1, 93, 94, 3, 4, 5, 6, -1, 8,
- 9, 10, 11, -1, 13, 14, -1, -1, -1, 110,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 28,
- 29, 30, 31, 32, -1, 34, 35, 36, -1, 38,
- 39, 40, 41, 42, 43, -1, 45, -1, 47, -1,
- 49, 50, 51, 52, 53, 54, -1, 56, 57, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 67, -1,
- -1, 70, -1, -1, -1, -1, -1, -1, -1, 78,
- 79, 80, -1, -1, -1, -1, -1, 86, 87, 88,
- -1, 90, -1, -1, 93, 94, 3, 4, 5, 6,
- -1, 8, 9, 10, 11, -1, 13, 14, -1, -1,
- -1, 110, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 28, 29, 30, 31, 32, -1, 34, 35, 36,
- -1, 38, 39, 40, 41, 42, 43, -1, 45, -1,
- -1, -1, 49, 50, 51, 52, 53, 54, -1, 56,
- 57, -1, -1, -1, 61, -1, -1, -1, -1, -1,
- 67, -1, -1, 70, -1, -1, -1, -1, -1, -1,
- -1, 78, 79, 80, -1, -1, -1, -1, -1, 86,
- 87, 88, 3, 4, 5, 6, 93, 8, 9, 10,
- 11, -1, 13, 14, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 110, -1, -1, -1, 28, 29, 30,
- -1, 32, -1, 34, 35, 36, -1, 38, 39, 40,
- 41, 42, 43, -1, 45, -1, -1, -1, 49, 50,
- 51, 52, 53, 54, -1, 56, 57, -1, -1, 60,
- 61, -1, -1, -1, -1, -1, 67, -1, -1, 70,
- -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
- -1, -1, -1, -1, -1, 86, 87, 88, -1, -1,
- -1, -1, 93, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, -1, 13, 14, -1, -1, -1, -1, 110,
- -1, -1, -1, -1, -1, -1, -1, -1, 28, 29,
- 30, 31, 32, -1, 34, 35, 36, -1, 38, 39,
- 40, 41, 42, 43, -1, 45, -1, -1, -1, 49,
- 50, 51, 52, 53, 54, -1, 56, 57, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 67, -1, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, -1, -1, -1, -1, 86, 87, 88, 3,
- 4, 5, 6, 93, 8, 9, 10, 11, -1, 13,
- 14, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 110, -1, -1, -1, 28, 29, 30, 31, 32, -1,
- 34, 35, 36, -1, 38, 39, 40, 41, 42, 43,
- -1, 45, -1, -1, -1, 49, 50, 51, 52, 53,
- 54, -1, 56, 57, -1, -1, -1, 61, -1, -1,
- -1, -1, -1, 67, -1, -1, 70, -1, -1, -1,
- -1, -1, -1, -1, 78, 79, 80, -1, -1, -1,
- -1, -1, 86, 87, 88, 3, 4, 5, 6, 93,
- 8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 110, -1, -1, -1,
- 28, 29, 30, -1, 32, -1, 34, 35, 36, -1,
- 38, 39, 40, 41, 42, 43, -1, 45, -1, -1,
- -1, 49, 50, 51, 52, 53, 54, -1, 56, 57,
- -1, -1, -1, 61, -1, -1, -1, -1, -1, 67,
- -1, -1, 70, -1, -1, -1, -1, -1, -1, -1,
- 78, 79, 80, -1, -1, -1, -1, -1, 86, 87,
- 88, 3, 4, 5, 6, 93, 8, 9, 10, 11,
- -1, 13, 14, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 110, -1, -1, -1, 28, 29, 30, -1,
- 32, -1, 34, 35, 36, -1, 38, 39, 40, 41,
- 42, 43, -1, 45, -1, -1, -1, 49, 50, 51,
- 52, 53, 54, -1, 56, 57, -1, -1, -1, 61,
- -1, -1, -1, -1, -1, 67, -1, -1, 70, -1,
- -1, -1, -1, -1, -1, -1, 78, 79, 80, -1,
- -1, -1, -1, -1, 86, 87, 88, 3, 4, 5,
- 6, 93, 8, 9, 10, 11, -1, 13, 14, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 110, -1,
- -1, -1, 28, 29, 30, -1, 32, -1, 34, 35,
- 36, -1, 38, 39, 40, 41, 42, 43, -1, 45,
- -1, -1, -1, 49, 50, 51, 52, 53, 54, -1,
- 56, 57, -1, -1, -1, 61, -1, -1, -1, -1,
- -1, 67, -1, -1, 70, -1, -1, -1, -1, -1,
- -1, -1, 78, 79, 80, -1, -1, -1, -1, -1,
- 86, 87, 88, 3, 4, 5, 6, 93, 8, 9,
- 10, 11, -1, 13, 14, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 110, -1, -1, -1, 28, 29,
- 30, -1, 32, -1, 34, 35, 36, -1, 38, 39,
- 40, 41, 42, 43, -1, 45, -1, -1, -1, 49,
- 50, 51, 52, 53, 54, -1, 56, 57, 58, -1,
- -1, -1, -1, -1, -1, -1, -1, 67, -1, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, -1, -1, -1, -1, 86, 87, 88, 3,
- 4, 5, 6, 93, 8, 9, 10, 11, -1, 13,
- 14, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 110, -1, -1, -1, 28, 29, 30, -1, 32, -1,
- 34, 35, 36, -1, 38, 39, 40, 41, 42, 43,
- -1, 45, -1, -1, -1, 49, 50, 51, 52, 53,
- 54, -1, 56, 57, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 67, -1, -1, 70, -1, -1, -1,
- -1, -1, -1, -1, 78, 79, 80, -1, -1, -1,
- -1, -1, 86, 87, 88, -1, -1, -1, -1, 93,
- 94, 3, 4, 5, 6, -1, 8, 9, 10, 11,
- -1, 13, 14, -1, -1, -1, 110, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 28, 29, 30, 31,
- 32, -1, 34, 35, 36, -1, 38, 39, 40, 41,
- 42, 43, -1, 45, -1, -1, -1, 49, 50, 51,
- 52, 53, 54, -1, 56, 57, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 67, -1, -1, 70, -1,
- -1, -1, -1, -1, -1, -1, 78, 79, 80, -1,
- -1, -1, -1, -1, 86, 87, 88, 3, 4, 5,
- 6, 93, 8, 9, 10, 11, -1, 13, 14, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 110, -1,
- -1, -1, 28, 29, 30, -1, 32, -1, 34, 35,
- 36, -1, 38, 39, 40, 41, 42, 43, -1, 45,
- -1, -1, -1, 49, 50, 51, 52, 53, 54, -1,
- 56, 57, -1, -1, -1, 61, -1, -1, -1, -1,
- -1, 67, -1, -1, 70, -1, -1, -1, -1, -1,
- -1, -1, 78, 79, 80, -1, -1, -1, -1, -1,
- 86, 87, 88, 3, 4, 5, 6, 93, 8, 9,
- 10, 11, -1, 13, 14, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 110, -1, -1, -1, 28, 29,
- 30, 31, 32, -1, 34, 35, 36, -1, 38, 39,
- 40, 41, 42, 43, -1, 45, -1, -1, -1, 49,
- 50, 51, 52, 53, 54, -1, 56, 57, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 67, -1, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, 78, 79,
- 80, -1, -1, -1, -1, -1, 86, 87, 88, 3,
- 4, 5, 6, 93, 8, 9, 10, 11, -1, 13,
- 14, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 110, -1, -1, -1, 28, 29, 30, -1, 32, -1,
- 34, 35, 36, -1, 38, 39, 40, 41, 42, 43,
- -1, 45, -1, -1, -1, 49, 50, 51, 52, 53,
- 54, -1, 56, 57, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 67, -1, -1, 70, -1, -1, -1,
- -1, -1, -1, -1, 78, 79, 80, -1, -1, -1,
- -1, -1, 86, 87, 88, 3, 4, 5, 6, 93,
- 8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 110, -1, -1, -1,
- 28, 29, 30, -1, 32, -1, 34, 35, 36, -1,
- 38, 39, 40, 41, 42, 43, -1, 45, -1, -1,
- -1, 49, 50, 51, 52, 53, 54, -1, 56, 57,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 67,
- -1, -1, 70, -1, -1, -1, -1, -1, -1, -1,
- 78, 79, 80, -1, -1, -1, -1, -1, 86, 87,
- 88, 3, 4, 5, 6, 93, 8, 9, 10, 11,
- -1, 13, 14, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 110, -1, -1, -1, 28, 29, 30, -1,
- 32, -1, 34, 35, 36, -1, 38, 39, 40, 41,
- 42, 43, -1, 45, -1, -1, -1, 49, 50, 51,
- 52, 53, 54, -1, 56, 57, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 67, -1, 1, 70, 3,
- 4, 5, 6, 7, 8, 9, 78, 79, 80, -1,
- 14, -1, -1, -1, 86, 87, 88, -1, -1, -1,
- -1, 93, -1, -1, 28, -1, 30, 31, 32, -1,
- -1, -1, 36, -1, -1, -1, -1, 41, 110, -1,
- -1, 45, 46, -1, 48, -1, -1, -1, -1, -1,
- 54, -1, 56, 57, -1, -1, 60, -1, 62, -1,
- -1, -1, -1, -1, -1, -1, 70, 3, 4, 5,
- 6, 7, 8, 9, -1, -1, 80, -1, 14, -1,
- -1, -1, -1, -1, 88, -1, -1, -1, -1, 93,
- -1, -1, 28, -1, 30, 31, -1, -1, -1, -1,
- 36, -1, -1, -1, -1, 41, -1, -1, -1, 45,
- -1, 47, -1, -1, -1, -1, -1, -1, 54, -1,
- 56, 57, 3, 4, 5, 6, 7, 8, 9, -1,
- -1, -1, -1, 14, 70, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 80, -1, -1, 28, -1, 30,
- 31, -1, 88, -1, 90, 36, -1, 93, 94, -1,
- 41, -1, -1, -1, 45, -1, -1, -1, -1, -1,
- -1, -1, -1, 54, -1, 56, 57, -1, -1, -1,
- -1, 62, -1, -1, -1, -1, -1, -1, -1, 70,
- 3, 4, 5, 6, 7, 8, 9, -1, -1, 80,
- -1, 14, -1, -1, -1, -1, -1, 88, -1, -1,
- -1, -1, 93, -1, -1, 28, -1, 30, 31, -1,
- -1, -1, -1, 36, -1, -1, -1, -1, 41, -1,
- -1, -1, 45, -1, -1, -1, -1, -1, -1, -1,
- -1, 54, -1, 56, 57, -1, -1, 60, -1, 3,
- 4, 5, 6, 7, 8, 9, -1, 70, -1, -1,
- 14, -1, -1, -1, -1, -1, -1, 80, -1, -1,
- -1, -1, -1, -1, 28, 88, 30, 31, -1, -1,
- 93, -1, 36, -1, -1, -1, -1, 41, -1, -1,
- -1, 45, -1, -1, -1, -1, -1, -1, -1, -1,
- 54, -1, 56, 57, 3, 4, 5, 6, 7, 8,
- 9, -1, -1, -1, -1, 14, 70, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 80, -1, -1, 28,
- -1, 30, 31, -1, 88, -1, -1, 36, -1, 93,
- -1, -1, 41, -1, -1, -1, 45, -1, -1, -1,
- -1, -1, -1, -1, -1, 54, -1, 56, 57, 4,
- 5, -1, 7, 8, 9, -1, -1, -1, -1, 14,
- -1, 70, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 80, -1, 28, -1, 30, 31, -1, -1, 88,
- -1, 36, -1, -1, 93, -1, -1, -1, -1, -1,
- 45, -1, -1, 48, -1, -1, -1, -1, -1, 54,
- -1, 56, 57, 63, 64, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
- 80, 81, 82, 83, 84, 63, 64, 65, 66, 67,
- 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, 84, -1, -1, -1,
- -1, 111, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 59, -1, -1, 107,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
- 83, 84, 62, 63, 64, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
- 80, 81, 82, 83, 84, 63, 64, 65, 66, 67,
- 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, 84, 63, 64, 65,
- 66, 67, 68, 69, 70, 71, 72, 73, 74, -1,
- 76, 77, 78, 79, 80, 81, 82, 83, 84, 67,
- 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, 84, 68, 69, 70,
- 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
- 81, 82, 83, 84
-};
-/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
-#line 3 "/usr/lib/bison.simple"
-
-/* Skeleton output parser for bison,
- Copyright (C) 1984, 1989, 1990 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* As a special exception, when this file is copied by Bison into a
- Bison output file, you may use that output file without restriction.
- This special exception was added by the Free Software Foundation
- in version 1.24 of Bison. */
-
-#ifndef alloca
-#ifdef __GNUC__
-#define alloca __builtin_alloca
-#else /* not GNU C. */
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
-#include <alloca.h>
-#else /* not sparc */
-#if defined (MSDOS) && !defined (__TURBOC__)
-#include <malloc.h>
-#else /* not MSDOS, or __TURBOC__ */
-#if defined(_AIX)
-#include <malloc.h>
- #pragma alloca
-#else /* not MSDOS, __TURBOC__, or _AIX */
-#ifdef __hpux
-#ifdef __cplusplus
-extern "C" {
-void *alloca (unsigned int);
-};
-#else /* not __cplusplus */
-void *alloca ();
-#endif /* not __cplusplus */
-#endif /* __hpux */
-#endif /* not _AIX */
-#endif /* not MSDOS, or __TURBOC__ */
-#endif /* not sparc. */
-#endif /* not GNU C. */
-#endif /* alloca not defined. */
-
-/* This is the parser code that is written into each bison parser
- when the %semantic_parser declaration is not specified in the grammar.
- It was written by Richard Stallman by simplifying the hairy parser
- used when %semantic_parser is specified. */
-
-/* Note: there must be only one dollar sign in this file.
- It is replaced by the list of actions, each action
- as one case of the switch. */
-
-#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY -2
-#define YYEOF 0
-#define YYACCEPT return(0)
-#define YYABORT return(1)
-#define YYERROR goto yyerrlab1
-/* Like YYERROR except do call yyerror.
- This remains here temporarily to ease the
- transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. */
-#define YYFAIL goto yyerrlab
-#define YYRECOVERING() (!!yyerrstatus)
-#define YYBACKUP(token, value) \
-do \
- if (yychar == YYEMPTY && yylen == 1) \
- { yychar = (token), yylval = (value); \
- yychar1 = YYTRANSLATE (yychar); \
- YYPOPSTACK; \
- goto yybackup; \
- } \
- else \
- { yyerror ("syntax error: cannot back up"); YYERROR; } \
-while (0)
-
-#define YYTERROR 1
-#define YYERRCODE 256
-
-#ifndef YYPURE
-#define YYLEX yylex()
-#endif
-
-#ifdef YYPURE
-#ifdef YYLSP_NEEDED
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval, &yylloc)
-#endif
-#else /* not YYLSP_NEEDED */
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval)
-#endif
-#endif /* not YYLSP_NEEDED */
-#endif
-
-/* If nonreentrant, generate the variables here */
-
-#ifndef YYPURE
-
-int yychar; /* the lookahead symbol */
-YYSTYPE yylval; /* the semantic value of the */
- /* lookahead symbol */
-
-#ifdef YYLSP_NEEDED
-YYLTYPE yylloc; /* location data for the lookahead */
- /* symbol */
-#endif
-
-int yynerrs; /* number of parse errors so far */
-#endif /* not YYPURE */
-
-#if YYDEBUG != 0
-int yydebug; /* nonzero means print parse trace */
-/* Since this is uninitialized, it does not stop multiple parsers
- from coexisting. */
-#endif
-
-/* YYINITDEPTH indicates the initial size of the parser's stacks */
-
-#ifndef YYINITDEPTH
-#define YYINITDEPTH 200
-#endif
-
-/* YYMAXDEPTH is the maximum size the stacks can grow to
- (effective only if the built-in stack extension method is used). */
-
-#if YYMAXDEPTH == 0
-#undef YYMAXDEPTH
-#endif
-
-#ifndef YYMAXDEPTH
-#define YYMAXDEPTH 10000
-#endif
-
-/* Prevent warning if -Wstrict-prototypes. */
-#ifdef __GNUC__
-int yyparse (void);
-#endif
-
-#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
-#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
-#else /* not GNU C or C++ */
-#ifndef __cplusplus
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (to, from, count)
- char *to;
- char *from;
- int count;
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#else /* __cplusplus */
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (char *to, char *from, int count)
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#endif
-#endif
-
-#line 196 "/usr/lib/bison.simple"
-
-/* The user can define YYPARSE_PARAM as the name of an argument to be passed
- into yyparse. The argument should have type void *.
- It should actually point to an object.
- Grammar actions can access the variable by casting it
- to the proper pointer type. */
-
-#ifdef YYPARSE_PARAM
-#ifdef __cplusplus
-#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL
-#else /* not __cplusplus */
-#define YYPARSE_PARAM_ARG YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
-#endif /* not __cplusplus */
-#else /* not YYPARSE_PARAM */
-#define YYPARSE_PARAM_ARG
-#define YYPARSE_PARAM_DECL
-#endif /* not YYPARSE_PARAM */
-
-int
-yyparse(YYPARSE_PARAM_ARG)
- YYPARSE_PARAM_DECL
-{
- register int yystate;
- register int yyn;
- register short *yyssp;
- register YYSTYPE *yyvsp;
- int yyerrstatus; /* number of tokens to shift before error messages enabled */
- int yychar1 = 0; /* lookahead token as an internal (translated) token number */
-
- short yyssa[YYINITDEPTH]; /* the state stack */
- YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
-
- short *yyss = yyssa; /* refer to the stacks thru separate pointers */
- YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
-
-#ifdef YYLSP_NEEDED
- YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
- YYLTYPE *yyls = yylsa;
- YYLTYPE *yylsp;
-
-#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
-#else
-#define YYPOPSTACK (yyvsp--, yyssp--)
-#endif
-
- int yystacksize = YYINITDEPTH;
-
-#ifdef YYPURE
- int yychar;
- YYSTYPE yylval;
- int yynerrs;
-#ifdef YYLSP_NEEDED
- YYLTYPE yylloc;
-#endif
-#endif
-
- YYSTYPE yyval; /* the variable used to return */
- /* semantic values from the action */
- /* routines */
-
- int yylen;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Starting parse\n");
-#endif
-
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
-
- /* Initialize stack pointers.
- Waste one element of value and location stack
- so that they stay on the same level as the state stack.
- The wasted elements are never initialized. */
-
- yyssp = yyss - 1;
- yyvsp = yyvs;
-#ifdef YYLSP_NEEDED
- yylsp = yyls;
-#endif
-
-/* Push a new state, which is found in yystate . */
-/* In all cases, when you get here, the value and location stacks
- have just been pushed. so pushing a state here evens the stacks. */
-yynewstate:
-
- *++yyssp = yystate;
-
- if (yyssp >= yyss + yystacksize - 1)
- {
- /* Give user a chance to reallocate the stack */
- /* Use copies of these so that the &'s don't force the real ones into memory. */
- YYSTYPE *yyvs1 = yyvs;
- short *yyss1 = yyss;
-#ifdef YYLSP_NEEDED
- YYLTYPE *yyls1 = yyls;
-#endif
-
- /* Get the current used size of the three stacks, in elements. */
- int size = yyssp - yyss + 1;
-
-#ifdef yyoverflow
- /* Each stack pointer address is followed by the size of
- the data in use in that stack, in bytes. */
-#ifdef YYLSP_NEEDED
- /* This used to be a conditional around just the two extra args,
- but that might be undefined if yyoverflow is a macro. */
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yyls1, size * sizeof (*yylsp),
- &yystacksize);
-#else
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yystacksize);
-#endif
-
- yyss = yyss1; yyvs = yyvs1;
-#ifdef YYLSP_NEEDED
- yyls = yyls1;
-#endif
-#else /* no yyoverflow */
- /* Extend the stack our own way. */
- if (yystacksize >= YYMAXDEPTH)
- {
- yyerror("parser stack overflow");
- return 2;
- }
- yystacksize *= 2;
- if (yystacksize > YYMAXDEPTH)
- yystacksize = YYMAXDEPTH;
- yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
- __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
- yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
- __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
-#ifdef YYLSP_NEEDED
- yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
- __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
-#endif
-#endif /* no yyoverflow */
-
- yyssp = yyss + size - 1;
- yyvsp = yyvs + size - 1;
-#ifdef YYLSP_NEEDED
- yylsp = yyls + size - 1;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Stack size increased to %d\n", yystacksize);
-#endif
-
- if (yyssp >= yyss + yystacksize - 1)
- YYABORT;
- }
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Entering state %d\n", yystate);
-#endif
-
- goto yybackup;
- yybackup:
-
-/* Do appropriate processing given the current state. */
-/* Read a lookahead token if we need one and don't already have one. */
-/* yyresume: */
-
- /* First try to decide what to do without reference to lookahead token. */
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* yychar is either YYEMPTY or YYEOF
- or a valid token in external form. */
-
- if (yychar == YYEMPTY)
- {
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Reading a token: ");
-#endif
- yychar = YYLEX;
- }
-
- /* Convert token to internal form (in yychar1) for indexing tables with */
-
- if (yychar <= 0) /* This means end of input. */
- {
- yychar1 = 0;
- yychar = YYEOF; /* Don't call YYLEX any more */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Now at end of input.\n");
-#endif
- }
- else
- {
- yychar1 = YYTRANSLATE(yychar);
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
- /* Give the individual parser a way to print the precise meaning
- of a token, for further debugging info. */
-#ifdef YYPRINT
- YYPRINT (stderr, yychar, yylval);
-#endif
- fprintf (stderr, ")\n");
- }
-#endif
- }
-
- yyn += yychar1;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
- goto yydefault;
-
- yyn = yytable[yyn];
-
- /* yyn is what to do for this token type in this state.
- Negative => reduce, -yyn is rule number.
- Positive => shift, yyn is new state.
- New state is final state => don't bother to shift,
- just return success.
- 0, or most negative number => error. */
-
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrlab;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- /* Shift the lookahead token. */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
-#endif
-
- /* Discard the token being shifted unless it is eof. */
- if (yychar != YYEOF)
- yychar = YYEMPTY;
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- /* count tokens shifted since error; after three, turn off error status. */
- if (yyerrstatus) yyerrstatus--;
-
- yystate = yyn;
- goto yynewstate;
-
-/* Do the default action for the current state. */
-yydefault:
-
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
-
-/* Do a reduction. yyn is the number of a rule to reduce with. */
-yyreduce:
- yylen = yyr2[yyn];
- if (yylen > 0)
- yyval = yyvsp[1-yylen]; /* implement default value of the action */
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- int i;
-
- fprintf (stderr, "Reducing via rule %d (line %d), ",
- yyn, yyrline[yyn]);
-
- /* Print the symbols being reduced, and their result. */
- for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
- fprintf (stderr, "%s ", yytname[yyrhs[i]]);
- fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
- }
-#endif
-
-
- switch (yyn) {
-
-case 2:
-#line 343 "parse.y"
-{ finish_translation_unit (); ;
- break;}
-case 3:
-#line 351 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 4:
-#line 353 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 5:
-#line 355 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 8:
-#line 364 "parse.y"
-{ have_extern_spec = 1;
- used_extern_spec = 0;
- yyval.ttype = NULL_TREE; ;
- break;}
-case 9:
-#line 369 "parse.y"
-{ have_extern_spec = 0; ;
- break;}
-case 10:
-#line 374 "parse.y"
-{ yyval.itype = pedantic;
- pedantic = 0; ;
- break;}
-case 12:
-#line 383 "parse.y"
-{ if (pending_lang_change) do_pending_lang_change(); ;
- break;}
-case 13:
-#line 385 "parse.y"
-{ if (! toplevel_bindings_p () && ! pseudo_global_level_p())
- pop_everything (); ;
- break;}
-case 14:
-#line 391 "parse.y"
-{ if (pending_inlines) do_pending_inlines (); ;
- break;}
-case 15:
-#line 393 "parse.y"
-{ if (pending_inlines) do_pending_inlines (); ;
- break;}
-case 16:
-#line 395 "parse.y"
-{ if (pending_inlines) do_pending_inlines (); ;
- break;}
-case 17:
-#line 397 "parse.y"
-{ if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
- assemble_asm (yyvsp[-2].ttype); ;
- break;}
-case 18:
-#line 400 "parse.y"
-{ pop_lang_context (); ;
- break;}
-case 19:
-#line 402 "parse.y"
-{ if (pending_inlines) do_pending_inlines ();
- pop_lang_context (); ;
- break;}
-case 20:
-#line 405 "parse.y"
-{ if (pending_inlines) do_pending_inlines ();
- pop_lang_context (); ;
- break;}
-case 21:
-#line 408 "parse.y"
-{ push_namespace (yyvsp[-1].ttype); ;
- break;}
-case 22:
-#line 410 "parse.y"
-{ pop_namespace (); ;
- break;}
-case 23:
-#line 412 "parse.y"
-{ push_namespace (NULL_TREE); ;
- break;}
-case 24:
-#line 414 "parse.y"
-{ pop_namespace (); ;
- break;}
-case 26:
-#line 417 "parse.y"
-{ do_toplevel_using_decl (yyvsp[-1].ttype); ;
- break;}
-case 28:
-#line 420 "parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 29:
-#line 425 "parse.y"
-{ begin_only_namespace_names (); ;
- break;}
-case 30:
-#line 427 "parse.y"
-{
- end_only_namespace_names ();
- if (lastiddecl)
- yyvsp[-1].ttype = lastiddecl;
- do_namespace_alias (yyvsp[-4].ttype, yyvsp[-1].ttype);
- ;
- break;}
-case 31:
-#line 437 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 32:
-#line 439 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 33:
-#line 441 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 34:
-#line 446 "parse.y"
-{ yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 35:
-#line 448 "parse.y"
-{ yyval.ttype = build_parse_node (SCOPE_REF, global_namespace, yyvsp[0].ttype); ;
- break;}
-case 36:
-#line 450 "parse.y"
-{ yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 37:
-#line 455 "parse.y"
-{ begin_only_namespace_names (); ;
- break;}
-case 38:
-#line 457 "parse.y"
-{
- end_only_namespace_names ();
- /* If no declaration was found, the using-directive is
- invalid. Since that was not reported, we need the
- identifier for the error message. */
- if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE && lastiddecl)
- yyvsp[-1].ttype = lastiddecl;
- do_using_directive (yyvsp[-1].ttype);
- ;
- break;}
-case 39:
-#line 470 "parse.y"
-{
- if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE)
- yyval.ttype = lastiddecl;
- got_scope = yyval.ttype;
- ;
- break;}
-case 40:
-#line 476 "parse.y"
-{
- yyval.ttype = yyvsp[-1].ttype;
- if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE)
- yyval.ttype = lastiddecl;
- got_scope = yyval.ttype;
- ;
- break;}
-case 43:
-#line 487 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 44:
-#line 489 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 45:
-#line 494 "parse.y"
-{ push_lang_context (yyvsp[0].ttype); ;
- break;}
-case 46:
-#line 496 "parse.y"
-{ if (current_lang_name != yyvsp[0].ttype)
- cp_error ("use of linkage spec `%D' is different from previous spec `%D'", yyvsp[0].ttype, current_lang_name);
- pop_lang_context (); push_lang_context (yyvsp[0].ttype); ;
- break;}
-case 47:
-#line 503 "parse.y"
-{ begin_template_parm_list (); ;
- break;}
-case 48:
-#line 505 "parse.y"
-{ yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
- break;}
-case 49:
-#line 507 "parse.y"
-{ begin_specialization();
- yyval.ttype = NULL_TREE; ;
- break;}
-case 50:
-#line 513 "parse.y"
-{ yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 51:
-#line 515 "parse.y"
-{ yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 52:
-#line 520 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 53:
-#line 522 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 54:
-#line 526 "parse.y"
-{ yyval.ttype = finish_template_type_parm (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 55:
-#line 528 "parse.y"
-{ yyval.ttype = finish_template_type_parm (class_type_node, yyvsp[0].ttype); ;
- break;}
-case 56:
-#line 533 "parse.y"
-{ yyval.ttype = finish_template_template_parm (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 57:
-#line 545 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 58:
-#line 547 "parse.y"
-{ yyval.ttype = build_tree_list (groktypename (yyvsp[0].ftype.t), yyvsp[-2].ttype); ;
- break;}
-case 59:
-#line 549 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); ;
- break;}
-case 60:
-#line 551 "parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-2].ftype.t); ;
- break;}
-case 61:
-#line 553 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 62:
-#line 555 "parse.y"
-{
- if (TREE_CODE (yyvsp[0].ttype) != TEMPLATE_DECL
- && TREE_CODE (yyvsp[0].ttype) != TEMPLATE_TEMPLATE_PARM
- && TREE_CODE (yyvsp[0].ttype) != TYPE_DECL)
- {
- error ("invalid default template argument");
- yyvsp[0].ttype = error_mark_node;
- }
- yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype);
- ;
- break;}
-case 63:
-#line 569 "parse.y"
-{ finish_template_decl (yyvsp[-1].ttype); ;
- break;}
-case 64:
-#line 571 "parse.y"
-{ finish_template_decl (yyvsp[-1].ttype); ;
- break;}
-case 65:
-#line 576 "parse.y"
-{ if (pending_inlines) do_pending_inlines (); ;
- break;}
-case 66:
-#line 578 "parse.y"
-{ if (pending_inlines) do_pending_inlines (); ;
- break;}
-case 67:
-#line 580 "parse.y"
-{ if (pending_inlines) do_pending_inlines (); ;
- break;}
-case 68:
-#line 582 "parse.y"
-{ if (pending_inlines) do_pending_inlines ();
- pop_lang_context (); ;
- break;}
-case 69:
-#line 585 "parse.y"
-{ if (pending_inlines) do_pending_inlines ();
- pop_lang_context (); ;
- break;}
-case 70:
-#line 588 "parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 72:
-#line 594 "parse.y"
-{;
- break;}
-case 73:
-#line 596 "parse.y"
-{ note_list_got_semicolon (yyvsp[-2].ftype.t); ;
- break;}
-case 74:
-#line 598 "parse.y"
-{ maybe_process_partial_specialization (yyvsp[-1].ftype.t);
- note_got_semicolon (yyvsp[-1].ftype.t); ;
- break;}
-case 76:
-#line 605 "parse.y"
-{;
- break;}
-case 77:
-#line 607 "parse.y"
-{ note_list_got_semicolon (yyvsp[-2].ftype.t); ;
- break;}
-case 78:
-#line 609 "parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 80:
-#line 612 "parse.y"
-{
- tree t, attrs;
- split_specs_attrs (yyvsp[-1].ftype.t, &t, &attrs);
- shadow_tag (t);
- note_list_got_semicolon (yyvsp[-1].ftype.t);
- ;
- break;}
-case 84:
-#line 625 "parse.y"
-{ yyval.itype = 0; ;
- break;}
-case 85:
-#line 627 "parse.y"
-{ yyval.itype = 1; ;
- break;}
-case 91:
-#line 643 "parse.y"
-{ finish_function (lineno, (int)yyvsp[-1].itype, 0); ;
- break;}
-case 92:
-#line 645 "parse.y"
-{
- int nested = (hack_decl_function_context
- (current_function_decl) != NULL_TREE);
- finish_function (lineno, (int)yyvsp[0].itype, nested);
- ;
- break;}
-case 93:
-#line 651 "parse.y"
-{ ;
- break;}
-case 94:
-#line 656 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 95:
-#line 658 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 96:
-#line 660 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
- yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 97:
-#line 664 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 98:
-#line 666 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 99:
-#line 668 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
- yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 100:
-#line 672 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 101:
-#line 674 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 102:
-#line 676 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
- yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 103:
-#line 680 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 104:
-#line 682 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 105:
-#line 684 "parse.y"
-{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
- yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 106:
-#line 691 "parse.y"
-{ if (!begin_function_definition (yyvsp[-1].ftype.t, yyvsp[0].ttype))
- YYERROR1; ;
- break;}
-case 107:
-#line 694 "parse.y"
-{ if (!begin_function_definition (yyvsp[-1].ttype, yyvsp[0].ttype))
- YYERROR1; ;
- break;}
-case 108:
-#line 697 "parse.y"
-{ if (!begin_function_definition (NULL_TREE, yyvsp[0].ttype))
- YYERROR1; ;
- break;}
-case 109:
-#line 700 "parse.y"
-{ if (!begin_function_definition (yyvsp[-1].ttype, yyvsp[0].ttype))
- YYERROR1; ;
- break;}
-case 110:
-#line 703 "parse.y"
-{ if (!begin_function_definition (NULL_TREE, yyvsp[0].ttype))
- YYERROR1; ;
- break;}
-case 111:
-#line 709 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-5].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 112:
-#line 711 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-3].ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 113:
-#line 713 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-5].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 114:
-#line 715 "parse.y"
-{ yyval.ttype = make_call_declarator (yyvsp[-3].ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 115:
-#line 722 "parse.y"
-{ tree specs, attrs;
- split_specs_attrs (yyvsp[-1].ttype, &specs, &attrs);
- attrs = build_tree_list (attrs, NULL_TREE);
- yyval.ttype = start_method (specs, yyvsp[0].ttype, attrs);
- rest_of_mdef:
- if (! yyval.ttype)
- YYERROR1;
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- reinit_parse_for_method (yychar, yyval.ttype); ;
- break;}
-case 116:
-#line 733 "parse.y"
-{ yyval.ttype = start_method (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- goto rest_of_mdef; ;
- break;}
-case 117:
-#line 736 "parse.y"
-{ tree specs, attrs;
- split_specs_attrs (yyvsp[-1].ftype.t, &specs, &attrs);
- attrs = build_tree_list (attrs, NULL_TREE);
- yyval.ttype = start_method (specs, yyvsp[0].ttype, attrs); goto rest_of_mdef; ;
- break;}
-case 118:
-#line 741 "parse.y"
-{ tree specs, attrs;
- split_specs_attrs (yyvsp[-1].ttype, &specs, &attrs);
- attrs = build_tree_list (attrs, NULL_TREE);
- yyval.ttype = start_method (specs, yyvsp[0].ttype, attrs); goto rest_of_mdef; ;
- break;}
-case 119:
-#line 746 "parse.y"
-{ yyval.ttype = start_method (NULL_TREE, yyval.ttype, NULL_TREE);
- goto rest_of_mdef; ;
- break;}
-case 120:
-#line 749 "parse.y"
-{ tree specs, attrs;
- split_specs_attrs (yyvsp[-1].ttype, &specs, &attrs);
- attrs = build_tree_list (attrs, NULL_TREE);
- yyval.ttype = start_method (specs, yyvsp[0].ttype, attrs); goto rest_of_mdef; ;
- break;}
-case 121:
-#line 754 "parse.y"
-{ yyval.ttype = start_method (NULL_TREE, yyval.ttype, NULL_TREE);
- goto rest_of_mdef; ;
- break;}
-case 122:
-#line 760 "parse.y"
-{
- if (! current_function_parms_stored)
- store_parm_decls ();
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 123:
-#line 769 "parse.y"
-{ store_return_init (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 124:
-#line 771 "parse.y"
-{ store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 125:
-#line 773 "parse.y"
-{ store_return_init (yyval.ttype, NULL_TREE); ;
- break;}
-case 126:
-#line 778 "parse.y"
-{
- if (yyvsp[0].itype == 0)
- error ("no base initializers given following ':'");
- setup_vtbl_ptr ();
- /* Always keep the BLOCK node associated with the outermost
- pair of curley braces of a function. These are needed
- for correct operation of dwarfout.c. */
- keep_next_level ();
- ;
- break;}
-case 127:
-#line 791 "parse.y"
-{
- if (! current_function_parms_stored)
- store_parm_decls ();
-
- if (DECL_CONSTRUCTOR_P (current_function_decl))
- {
- /* Make a contour for the initializer list. */
- pushlevel (0);
- clear_last_expr ();
- expand_start_bindings (0);
- }
- else if (current_class_type == NULL_TREE)
- error ("base initializers not allowed for non-member functions");
- else if (! DECL_CONSTRUCTOR_P (current_function_decl))
- error ("only constructors take base initializers");
- ;
- break;}
-case 128:
-#line 811 "parse.y"
-{ yyval.itype = 0; ;
- break;}
-case 129:
-#line 813 "parse.y"
-{ yyval.itype = 1; ;
- break;}
-case 132:
-#line 820 "parse.y"
-{
- if (current_class_name)
- pedwarn ("anachronistic old style base class initializer");
- expand_member_init (current_class_ref, NULL_TREE, yyvsp[-1].ttype);
- ;
- break;}
-case 133:
-#line 826 "parse.y"
-{
- if (current_class_name)
- pedwarn ("anachronistic old style base class initializer");
- expand_member_init (current_class_ref, NULL_TREE, void_type_node);
- ;
- break;}
-case 134:
-#line 832 "parse.y"
-{ expand_member_init (current_class_ref, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 135:
-#line 834 "parse.y"
-{ expand_member_init (current_class_ref, yyvsp[-1].ttype, void_type_node); ;
- break;}
-case 136:
-#line 836 "parse.y"
-{ expand_member_init (current_class_ref, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 137:
-#line 838 "parse.y"
-{ expand_member_init (current_class_ref, yyvsp[-1].ttype, void_type_node); ;
- break;}
-case 138:
-#line 840 "parse.y"
-{ expand_member_init (current_class_ref, TYPE_MAIN_DECL (yyvsp[-3].ttype),
- yyvsp[-1].ttype); ;
- break;}
-case 139:
-#line 843 "parse.y"
-{ expand_member_init (current_class_ref, TYPE_MAIN_DECL (yyvsp[-1].ttype),
- void_type_node); ;
- break;}
-case 151:
-#line 869 "parse.y"
-{ do_type_instantiation (yyvsp[-1].ftype.t, NULL_TREE);
- yyungetc (';', 1); ;
- break;}
-case 153:
-#line 873 "parse.y"
-{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
- do_decl_instantiation (specs, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 155:
-#line 877 "parse.y"
-{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 157:
-#line 880 "parse.y"
-{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 159:
-#line 883 "parse.y"
-{ do_type_instantiation (yyvsp[-1].ftype.t, yyvsp[-4].ttype);
- yyungetc (';', 1); ;
- break;}
-case 161:
-#line 888 "parse.y"
-{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
- do_decl_instantiation (specs, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 163:
-#line 892 "parse.y"
-{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-3].ttype); ;
- break;}
-case 165:
-#line 895 "parse.y"
-{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-3].ttype); ;
- break;}
-case 167:
-#line 900 "parse.y"
-{ begin_explicit_instantiation(); ;
- break;}
-case 168:
-#line 903 "parse.y"
-{ end_explicit_instantiation(); ;
- break;}
-case 169:
-#line 912 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 170:
-#line 915 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 173:
-#line 923 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 174:
-#line 928 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 175:
-#line 932 "parse.y"
-{
- if (yychar == YYEMPTY)
- yychar = YYLEX;
-
- yyval.ttype = finish_template_type (yyvsp[-3].ttype, yyvsp[-1].ttype,
- yychar == SCOPE);
- ;
- break;}
-case 177:
-#line 943 "parse.y"
-{
- /* Handle `Class<Class<Type>>' without space in the `>>' */
- pedwarn ("`>>' should be `> >' in template class name");
- yyungetc ('>', 1);
- ;
- break;}
-case 178:
-#line 952 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 180:
-#line 958 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
- break;}
-case 181:
-#line 960 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 182:
-#line 965 "parse.y"
-{ yyval.ttype = groktypename (yyvsp[0].ftype.t); ;
- break;}
-case 183:
-#line 967 "parse.y"
-{ yyval.ttype = lastiddecl; ;
- break;}
-case 185:
-#line 973 "parse.y"
-{ yyval.code = NEGATE_EXPR; ;
- break;}
-case 186:
-#line 975 "parse.y"
-{ yyval.code = CONVERT_EXPR; ;
- break;}
-case 187:
-#line 977 "parse.y"
-{ yyval.code = PREINCREMENT_EXPR; ;
- break;}
-case 188:
-#line 979 "parse.y"
-{ yyval.code = PREDECREMENT_EXPR; ;
- break;}
-case 189:
-#line 981 "parse.y"
-{ yyval.code = TRUTH_NOT_EXPR; ;
- break;}
-case 190:
-#line 986 "parse.y"
-{ yyval.ttype = build_x_compound_expr (yyval.ttype); ;
- break;}
-case 192:
-#line 992 "parse.y"
-{ error ("ANSI C++ forbids an empty condition for `%s'",
- cond_stmt_keyword);
- yyval.ttype = integer_zero_node; ;
- break;}
-case 193:
-#line 996 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 194:
-#line 1001 "parse.y"
-{ error ("ANSI C++ forbids an empty condition for `%s'",
- cond_stmt_keyword);
- yyval.ttype = integer_zero_node; ;
- break;}
-case 195:
-#line 1005 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 196:
-#line 1010 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 198:
-#line 1013 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 199:
-#line 1018 "parse.y"
-{ {
- tree d;
- for (d = getdecls (); d; d = TREE_CHAIN (d))
- if (TREE_CODE (d) == TYPE_DECL) {
- tree s = TREE_TYPE (d);
- if (TREE_CODE (s) == RECORD_TYPE)
- cp_error ("definition of class `%T' in condition", s);
- else if (TREE_CODE (s) == ENUMERAL_TYPE)
- cp_error ("definition of enum `%T' in condition", s);
- }
- }
- current_declspecs = yyvsp[-4].ftype.t;
- yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, /*prefix_attributes*/ NULL_TREE);
- ;
- break;}
-case 200:
-#line 1035 "parse.y"
-{
- cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 1, LOOKUP_ONLYCONVERTING);
- resume_momentary (yyvsp[-2].itype);
- yyval.ttype = convert_from_reference (yyvsp[-1].ttype);
- if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
- cp_error ("definition of array `%#D' in condition", yyval.ttype);
- ;
- break;}
-case 206:
-#line 1054 "parse.y"
-{ yyval.ttype = begin_compound_stmt (1); ;
- break;}
-case 207:
-#line 1056 "parse.y"
-{ finish_compound_stmt (1, yyvsp[-1].ttype); ;
- break;}
-case 209:
-#line 1063 "parse.y"
-{ yyval.ttype = expr_tree_cons (NULL_TREE, yyval.ttype,
- build_expr_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 210:
-#line 1066 "parse.y"
-{ yyval.ttype = expr_tree_cons (NULL_TREE, yyval.ttype,
- build_expr_list (NULL_TREE, error_mark_node)); ;
- break;}
-case 211:
-#line 1069 "parse.y"
-{ chainon (yyval.ttype, build_expr_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 212:
-#line 1071 "parse.y"
-{ chainon (yyval.ttype, build_expr_list (NULL_TREE, error_mark_node)); ;
- break;}
-case 213:
-#line 1076 "parse.y"
-{ yyval.ttype = build_expr_list (NULL_TREE, yyval.ttype); ;
- break;}
-case 215:
-#line 1082 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 216:
-#line 1085 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- pedantic = yyvsp[-1].itype; ;
- break;}
-case 217:
-#line 1088 "parse.y"
-{ yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
- break;}
-case 218:
-#line 1090 "parse.y"
-{ yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
- break;}
-case 219:
-#line 1092 "parse.y"
-{ yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
- break;}
-case 220:
-#line 1094 "parse.y"
-{ yyval.ttype = finish_unary_op_expr (yyvsp[-1].code, yyvsp[0].ttype); ;
- break;}
-case 221:
-#line 1097 "parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C++ forbids `&&'");
- yyval.ttype = finish_label_address_expr (yyvsp[0].ttype); ;
- break;}
-case 222:
-#line 1101 "parse.y"
-{ yyval.ttype = expr_sizeof (yyvsp[0].ttype); ;
- break;}
-case 223:
-#line 1103 "parse.y"
-{ yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ftype.t));
- check_for_new_type ("sizeof", yyvsp[-1].ftype); ;
- break;}
-case 224:
-#line 1106 "parse.y"
-{ yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
- break;}
-case 225:
-#line 1108 "parse.y"
-{ yyval.ttype = c_alignof (groktypename (yyvsp[-1].ftype.t));
- check_for_new_type ("alignof", yyvsp[-1].ftype); ;
- break;}
-case 226:
-#line 1114 "parse.y"
-{ yyval.ttype = build_new (NULL_TREE, yyvsp[0].ftype.t, NULL_TREE, yyvsp[-1].itype);
- check_for_new_type ("new", yyvsp[0].ftype); ;
- break;}
-case 227:
-#line 1117 "parse.y"
-{ yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype, yyvsp[-2].itype);
- check_for_new_type ("new", yyvsp[-1].ftype); ;
- break;}
-case 228:
-#line 1120 "parse.y"
-{ yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ftype.t, NULL_TREE, yyvsp[-2].itype);
- check_for_new_type ("new", yyvsp[0].ftype); ;
- break;}
-case 229:
-#line 1123 "parse.y"
-{ yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ftype.t, yyvsp[0].ttype, yyvsp[-3].itype);
- check_for_new_type ("new", yyvsp[-1].ftype); ;
- break;}
-case 230:
-#line 1136 "parse.y"
-{ yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ftype.t),
- NULL_TREE, yyvsp[-4].itype);
- check_for_new_type ("new", yyvsp[-1].ftype); ;
- break;}
-case 231:
-#line 1141 "parse.y"
-{ yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ftype.t), yyvsp[0].ttype, yyvsp[-5].itype);
- check_for_new_type ("new", yyvsp[-2].ftype); ;
- break;}
-case 232:
-#line 1145 "parse.y"
-{ yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-1].ftype.t), NULL_TREE, yyvsp[-5].itype);
- check_for_new_type ("new", yyvsp[-1].ftype); ;
- break;}
-case 233:
-#line 1149 "parse.y"
-{ yyval.ttype = build_new (yyvsp[-5].ttype, groktypename(yyvsp[-2].ftype.t), yyvsp[0].ttype, yyvsp[-6].itype);
- check_for_new_type ("new", yyvsp[-2].ftype); ;
- break;}
-case 234:
-#line 1153 "parse.y"
-{ yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
- break;}
-case 235:
-#line 1155 "parse.y"
-{ yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
- if (yychar == YYEMPTY)
- yychar = YYLEX; ;
- break;}
-case 236:
-#line 1159 "parse.y"
-{ yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
- if (yychar == YYEMPTY)
- yychar = YYLEX; ;
- break;}
-case 237:
-#line 1163 "parse.y"
-{ yyval.ttype = build_x_unary_op (REALPART_EXPR, yyvsp[0].ttype); ;
- break;}
-case 238:
-#line 1165 "parse.y"
-{ yyval.ttype = build_x_unary_op (IMAGPART_EXPR, yyvsp[0].ttype); ;
- break;}
-case 239:
-#line 1175 "parse.y"
-{ finish_new_placement (NULL_TREE, yyvsp[-2].itype); ;
- break;}
-case 240:
-#line 1178 "parse.y"
-{ yyval.itype = begin_new_placement (); ;
- break;}
-case 241:
-#line 1182 "parse.y"
-{ yyval.ttype = finish_new_placement (yyvsp[-1].ttype, yyvsp[-2].itype); ;
- break;}
-case 242:
-#line 1184 "parse.y"
-{ cp_pedwarn ("old style placement syntax, use () instead");
- yyval.ttype = finish_new_placement (yyvsp[-1].ttype, yyvsp[-2].itype); ;
- break;}
-case 243:
-#line 1190 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 244:
-#line 1192 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 245:
-#line 1194 "parse.y"
-{
- cp_error ("`%T' is not a valid expression", yyvsp[-1].ftype.t);
- yyval.ttype = error_mark_node;
- ;
- break;}
-case 246:
-#line 1202 "parse.y"
-{
- if (pedantic)
- pedwarn ("ANSI C++ forbids initialization of new expression with `='");
- if (TREE_CODE (yyvsp[0].ttype) != TREE_LIST
- && TREE_CODE (yyvsp[0].ttype) != CONSTRUCTOR)
- yyval.ttype = build_expr_list (NULL_TREE, yyvsp[0].ttype);
- else
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 247:
-#line 1216 "parse.y"
-{ yyvsp[-1].ftype.t = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[-1].ftype.t), 0);
- yyval.ttype = make_call_declarator (NULL_TREE, yyvsp[-1].ftype.t, NULL_TREE, NULL_TREE);
- check_for_new_type ("cast", yyvsp[-1].ftype); ;
- break;}
-case 248:
-#line 1220 "parse.y"
-{ yyvsp[-1].ftype.t = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[-1].ftype.t), 0);
- yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-1].ftype.t, NULL_TREE, NULL_TREE);
- check_for_new_type ("cast", yyvsp[-1].ftype); ;
- break;}
-case 250:
-#line 1228 "parse.y"
-{ yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 251:
-#line 1230 "parse.y"
-{
- tree init = build_nt (CONSTRUCTOR, NULL_TREE,
- nreverse (yyvsp[-2].ttype));
- if (pedantic)
- pedwarn ("ANSI C++ forbids constructor-expressions");
- /* Indicate that this was a GNU C constructor expression. */
- TREE_HAS_CONSTRUCTOR (init) = 1;
-
- yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
- ;
- break;}
-case 253:
-#line 1246 "parse.y"
-{ yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 254:
-#line 1248 "parse.y"
-{ yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 255:
-#line 1250 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 256:
-#line 1252 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 257:
-#line 1254 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 258:
-#line 1256 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 259:
-#line 1258 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 260:
-#line 1260 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 261:
-#line 1262 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 262:
-#line 1264 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 263:
-#line 1266 "parse.y"
-{ yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 264:
-#line 1268 "parse.y"
-{ yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 265:
-#line 1270 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 266:
-#line 1272 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 267:
-#line 1274 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 268:
-#line 1276 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 269:
-#line 1278 "parse.y"
-{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 270:
-#line 1280 "parse.y"
-{ yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 271:
-#line 1282 "parse.y"
-{ yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 272:
-#line 1284 "parse.y"
-{ yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 273:
-#line 1286 "parse.y"
-{ yyval.ttype = build_x_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype);
- if (yyval.ttype != error_mark_node)
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
- break;}
-case 274:
-#line 1290 "parse.y"
-{ yyval.ttype = build_x_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
- break;}
-case 275:
-#line 1292 "parse.y"
-{ yyval.ttype = build_throw (NULL_TREE); ;
- break;}
-case 276:
-#line 1294 "parse.y"
-{ yyval.ttype = build_throw (yyvsp[0].ttype); ;
- break;}
-case 277:
-#line 1312 "parse.y"
-{ yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
- break;}
-case 278:
-#line 1314 "parse.y"
-{ yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
- break;}
-case 284:
-#line 1323 "parse.y"
-{
- /* If lastiddecl is a TREE_LIST, it's a baselink, which
- means that we're in an expression like S::f<int>, so
- don't do_identifier; we only do that for unqualified
- identifiers. */
- if (lastiddecl && TREE_CODE (lastiddecl) != TREE_LIST)
- yyval.ttype = do_identifier (yyvsp[-1].ttype, 1, NULL_TREE);
- else
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 285:
-#line 1336 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 286:
-#line 1338 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 287:
-#line 1343 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 288:
-#line 1345 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 289:
-#line 1348 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 294:
-#line 1360 "parse.y"
-{
- /* Provide support for '(' attributes '*' declarator ')'
- etc */
- yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 296:
-#line 1370 "parse.y"
-{ yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
- break;}
-case 297:
-#line 1372 "parse.y"
-{ yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
- break;}
-case 298:
-#line 1374 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 299:
-#line 1379 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 300:
-#line 1381 "parse.y"
-{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 304:
-#line 1391 "parse.y"
-{ yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
- break;}
-case 305:
-#line 1396 "parse.y"
-{
- if (TREE_CODE (yyvsp[0].ttype) == BIT_NOT_EXPR)
- yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyvsp[0].ttype, 0));
- else
- yyval.ttype = finish_id_expr (yyvsp[0].ttype);
- ;
- break;}
-case 308:
-#line 1405 "parse.y"
-{
- if (processing_template_decl)
- push_obstacks (&permanent_obstack, &permanent_obstack);
- yyval.ttype = combine_strings (yyval.ttype);
- /* combine_strings doesn't set up TYPE_MAIN_VARIANT of
- a const array the way we want, so fix it. */
- if (flag_const_strings)
- TREE_TYPE (yyval.ttype) = build_cplus_array_type
- (TREE_TYPE (TREE_TYPE (yyval.ttype)),
- TYPE_DOMAIN (TREE_TYPE (yyval.ttype)));
- if (processing_template_decl)
- pop_obstacks ();
- ;
- break;}
-case 309:
-#line 1419 "parse.y"
-{ yyval.ttype = finish_parenthesized_expr (yyvsp[-1].ttype); ;
- break;}
-case 310:
-#line 1421 "parse.y"
-{ yyvsp[-1].ttype = reparse_decl_as_expr (NULL_TREE, yyvsp[-1].ttype);
- yyval.ttype = finish_parenthesized_expr (yyvsp[-1].ttype); ;
- break;}
-case 311:
-#line 1424 "parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 312:
-#line 1426 "parse.y"
-{ tree scope = current_scope ();
- if (!scope || TREE_CODE (scope) != FUNCTION_DECL)
- {
- error ("braced-group within expression allowed only inside a function");
- YYERROR;
- }
- if (pedantic)
- pedwarn ("ANSI C++ forbids braced-groups within expressions");
- yyval.ttype = begin_stmt_expr ();
- ;
- break;}
-case 313:
-#line 1437 "parse.y"
-{ yyval.ttype = finish_stmt_expr (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 314:
-#line 1442 "parse.y"
-{ yyval.ttype = finish_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype, 1); ;
- break;}
-case 315:
-#line 1444 "parse.y"
-{ yyval.ttype = finish_call_expr (yyvsp[-1].ttype, NULL_TREE, 1); ;
- break;}
-case 316:
-#line 1446 "parse.y"
-{ yyval.ttype = finish_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype, 0); ;
- break;}
-case 317:
-#line 1448 "parse.y"
-{ yyval.ttype = finish_call_expr (yyvsp[-1].ttype, NULL_TREE, 0); ;
- break;}
-case 318:
-#line 1450 "parse.y"
-{ yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 319:
-#line 1452 "parse.y"
-{ yyval.ttype = finish_increment_expr (yyvsp[-1].ttype, POSTINCREMENT_EXPR); ;
- break;}
-case 320:
-#line 1454 "parse.y"
-{ yyval.ttype = finish_increment_expr (yyvsp[-1].ttype, POSTDECREMENT_EXPR); ;
- break;}
-case 321:
-#line 1457 "parse.y"
-{ yyval.ttype = finish_this_expr (); ;
- break;}
-case 322:
-#line 1459 "parse.y"
-{
- /* This is a C cast in C++'s `functional' notation
- using the "implicit int" extension so that:
- `const (3)' is equivalent to `const int (3)'. */
- tree type;
-
- if (yyvsp[-1].ttype == error_mark_node)
- {
- yyval.ttype = error_mark_node;
- break;
- }
-
- type = cp_build_qualified_type (integer_type_node,
- cp_type_qual_from_rid (yyvsp[-3].ttype));
- yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
- ;
- break;}
-case 324:
-#line 1477 "parse.y"
-{ tree type = groktypename (yyvsp[-4].ftype.t);
- check_for_new_type ("dynamic_cast", yyvsp[-4].ftype);
- yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
- break;}
-case 325:
-#line 1481 "parse.y"
-{ tree type = groktypename (yyvsp[-4].ftype.t);
- check_for_new_type ("static_cast", yyvsp[-4].ftype);
- yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
- break;}
-case 326:
-#line 1485 "parse.y"
-{ tree type = groktypename (yyvsp[-4].ftype.t);
- check_for_new_type ("reinterpret_cast", yyvsp[-4].ftype);
- yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
- break;}
-case 327:
-#line 1489 "parse.y"
-{ tree type = groktypename (yyvsp[-4].ftype.t);
- check_for_new_type ("const_cast", yyvsp[-4].ftype);
- yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
- break;}
-case 328:
-#line 1493 "parse.y"
-{ yyval.ttype = build_x_typeid (yyvsp[-1].ttype); ;
- break;}
-case 329:
-#line 1495 "parse.y"
-{ tree type = groktypename (yyvsp[-1].ftype.t);
- check_for_new_type ("typeid", yyvsp[-1].ftype);
- yyval.ttype = get_typeid (TYPE_MAIN_VARIANT (type)); ;
- break;}
-case 330:
-#line 1499 "parse.y"
-{ yyval.ttype = do_scoped_id (yyvsp[0].ttype, 1); ;
- break;}
-case 331:
-#line 1501 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 332:
-#line 1503 "parse.y"
-{
- got_scope = NULL_TREE;
- if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- yyval.ttype = do_scoped_id (yyvsp[0].ttype, 1);
- else
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 333:
-#line 1511 "parse.y"
-{ yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
- break;}
-case 334:
-#line 1513 "parse.y"
-{ yyval.ttype = finish_qualified_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 335:
-#line 1515 "parse.y"
-{ yyval.ttype = finish_qualified_call_expr (yyvsp[-1].ttype, NULL_TREE); ;
- break;}
-case 336:
-#line 1517 "parse.y"
-{
- yyval.ttype = build_x_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1);
- ;
- break;}
-case 337:
-#line 1521 "parse.y"
-{ yyval.ttype = finish_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
- break;}
-case 338:
-#line 1523 "parse.y"
-{ yyval.ttype = finish_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 339:
-#line 1525 "parse.y"
-{ yyval.ttype = build_x_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
- break;}
-case 340:
-#line 1527 "parse.y"
-{ if (processing_template_decl)
- yyval.ttype = build_min_nt (COMPONENT_REF, yyvsp[-1].ttype, copy_to_permanent (yyvsp[0].ttype));
- else
- yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
- break;}
-case 341:
-#line 1532 "parse.y"
-{ yyval.ttype = finish_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
- break;}
-case 342:
-#line 1534 "parse.y"
-{ yyval.ttype = finish_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 343:
-#line 1536 "parse.y"
-{ yyval.ttype = finish_qualified_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
- break;}
-case 344:
-#line 1538 "parse.y"
-{ yyval.ttype = finish_qualified_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 345:
-#line 1541 "parse.y"
-{ yyval.ttype = finish_pseudo_destructor_call_expr (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 346:
-#line 1543 "parse.y"
-{ yyval.ttype = finish_pseudo_destructor_call_expr (yyvsp[-5].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
- break;}
-case 347:
-#line 1545 "parse.y"
-{
- yyval.ttype = error_mark_node;
- ;
- break;}
-case 348:
-#line 1590 "parse.y"
-{ yyval.itype = 0; ;
- break;}
-case 349:
-#line 1592 "parse.y"
-{ got_scope = NULL_TREE; yyval.itype = 1; ;
- break;}
-case 350:
-#line 1597 "parse.y"
-{ yyval.itype = 0; ;
- break;}
-case 351:
-#line 1599 "parse.y"
-{ got_scope = NULL_TREE; yyval.itype = 1; ;
- break;}
-case 352:
-#line 1604 "parse.y"
-{ yyval.ttype = boolean_true_node; ;
- break;}
-case 353:
-#line 1606 "parse.y"
-{ yyval.ttype = boolean_false_node; ;
- break;}
-case 355:
-#line 1613 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 356:
-#line 1618 "parse.y"
-{
- if (! current_function_parms_stored)
- store_parm_decls ();
- setup_vtbl_ptr ();
- /* Always keep the BLOCK node associated with the outermost
- pair of curley braces of a function. These are needed
- for correct operation of dwarfout.c. */
- keep_next_level ();
- ;
- break;}
-case 357:
-#line 1631 "parse.y"
-{ got_object = TREE_TYPE (yyval.ttype); ;
- break;}
-case 358:
-#line 1633 "parse.y"
-{
- yyval.ttype = build_x_arrow (yyval.ttype);
- got_object = TREE_TYPE (yyval.ttype);
- ;
- break;}
-case 359:
-#line 1641 "parse.y"
-{
- resume_momentary (yyvsp[-1].itype);
- if (yyvsp[-2].ftype.t && IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ftype.t)))
- note_got_semicolon (yyvsp[-2].ftype.t);
- ;
- break;}
-case 360:
-#line 1647 "parse.y"
-{
- resume_momentary (yyvsp[-1].itype);
- note_list_got_semicolon (yyvsp[-2].ftype.t);
- ;
- break;}
-case 361:
-#line 1652 "parse.y"
-{ resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 362:
-#line 1654 "parse.y"
-{
- shadow_tag (yyvsp[-1].ftype.t);
- note_list_got_semicolon (yyvsp[-1].ftype.t);
- ;
- break;}
-case 363:
-#line 1659 "parse.y"
-{ warning ("empty declaration"); ;
- break;}
-case 364:
-#line 1661 "parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 367:
-#line 1675 "parse.y"
-{ yyval.ttype = make_call_declarator (NULL_TREE, empty_parms (),
- NULL_TREE, NULL_TREE); ;
- break;}
-case 368:
-#line 1678 "parse.y"
-{ yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), NULL_TREE,
- NULL_TREE); ;
- break;}
-case 369:
-#line 1685 "parse.y"
-{ yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 370:
-#line 1688 "parse.y"
-{ yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 371:
-#line 1691 "parse.y"
-{ yyval.ftype.t = build_decl_list (build_decl_list (NULL_TREE, yyvsp[-1].ftype.t),
- yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 372:
-#line 1695 "parse.y"
-{ yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 373:
-#line 1698 "parse.y"
-{ yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 376:
-#line 1714 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ttype);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 377:
-#line 1717 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 378:
-#line 1720 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-2].ftype.t, chainon (yyvsp[-1].ttype, yyvsp[0].ttype));
- yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ;
- break;}
-case 379:
-#line 1723 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ttype));
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 380:
-#line 1726 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ttype));
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 381:
-#line 1729 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-2].ftype.t,
- chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyvsp[-3].ttype)));
- yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ;
- break;}
-case 382:
-#line 1736 "parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyval.ttype));
- yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
- break;}
-case 383:
-#line 1741 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyval.ttype); ;
- break;}
-case 384:
-#line 1743 "parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
- break;}
-case 385:
-#line 1748 "parse.y"
-{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 386:
-#line 1750 "parse.y"
-{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
- break;}
-case 387:
-#line 1769 "parse.y"
-{ yyval.ttype = yyvsp[0].ftype.t; TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 388:
-#line 1771 "parse.y"
-{ yyval.ttype = hash_tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
- break;}
-case 389:
-#line 1773 "parse.y"
-{ yyval.ttype = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 390:
-#line 1776 "parse.y"
-{ if (extra_warnings && TREE_STATIC (yyval.ttype))
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
- TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
- break;}
-case 391:
-#line 1782 "parse.y"
-{ yyval.ttype = hash_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 392:
-#line 1784 "parse.y"
-{ yyval.ttype = hash_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
- break;}
-case 393:
-#line 1795 "parse.y"
-{ yyval.ftype.t = build_decl_list (NULL_TREE, yyvsp[0].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 394:
-#line 1798 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 395:
-#line 1801 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 396:
-#line 1804 "parse.y"
-{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ftype.t));
- yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ;
- break;}
-case 397:
-#line 1810 "parse.y"
-{ yyval.ttype = build_decl_list (NULL_TREE, yyvsp[0].ftype.t); ;
- break;}
-case 398:
-#line 1812 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ttype); ;
- break;}
-case 400:
-#line 1822 "parse.y"
-{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
- break;}
-case 401:
-#line 1824 "parse.y"
-{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
- break;}
-case 402:
-#line 1826 "parse.y"
-{ yyval.ftype.t = finish_typeof (yyvsp[-1].ttype);
- yyval.ftype.new_type_flag = 0; ;
- break;}
-case 403:
-#line 1829 "parse.y"
-{ yyval.ftype.t = groktypename (yyvsp[-1].ftype.t);
- yyval.ftype.new_type_flag = 0; ;
- break;}
-case 404:
-#line 1832 "parse.y"
-{ tree type = TREE_TYPE (yyvsp[-1].ttype);
-
- yyval.ftype.new_type_flag = 0;
- if (IS_AGGR_TYPE (type))
- {
- sorry ("sigof type specifier");
- yyval.ftype.t = type;
- }
- else
- {
- error ("`sigof' applied to non-aggregate expression");
- yyval.ftype.t = error_mark_node;
- }
- ;
- break;}
-case 405:
-#line 1847 "parse.y"
-{ tree type = groktypename (yyvsp[-1].ftype.t);
-
- yyval.ftype.new_type_flag = 0;
- if (IS_AGGR_TYPE (type))
- {
- sorry ("sigof type specifier");
- yyval.ftype.t = type;
- }
- else
- {
- error("`sigof' applied to non-aggregate type");
- yyval.ftype.t = error_mark_node;
- }
- ;
- break;}
-case 406:
-#line 1867 "parse.y"
-{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
- break;}
-case 407:
-#line 1869 "parse.y"
-{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
- break;}
-case 410:
-#line 1876 "parse.y"
-{ check_multiple_declarators (); ;
- break;}
-case 412:
-#line 1882 "parse.y"
-{ check_multiple_declarators (); ;
- break;}
-case 414:
-#line 1888 "parse.y"
-{ check_multiple_declarators (); ;
- break;}
-case 415:
-#line 1893 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 416:
-#line 1895 "parse.y"
-{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 417:
-#line 1900 "parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes); ;
- break;}
-case 418:
-#line 1904 "parse.y"
-{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 1, LOOKUP_ONLYCONVERTING); ;
- break;}
-case 419:
-#line 1906 "parse.y"
-{ yyval.ttype = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- cp_finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 1, 0); ;
- break;}
-case 420:
-#line 1919 "parse.y"
-{ yyvsp[0].itype = parse_decl (yyvsp[-3].ttype, yyvsp[-4].ttype,
- yyvsp[-1].ttype, 1, &yyval.ttype); ;
- break;}
-case 421:
-#line 1924 "parse.y"
-{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 1,
- LOOKUP_ONLYCONVERTING);
- yyval.itype = yyvsp[-2].itype; ;
- break;}
-case 422:
-#line 1928 "parse.y"
-{ tree d;
- yyval.itype = parse_decl (yyvsp[-2].ttype, yyvsp[-3].ttype, yyvsp[0].ttype, 0, &d);
- cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 1, 0); ;
- break;}
-case 423:
-#line 1935 "parse.y"
-{ yyval.itype = yyvsp[0].itype; ;
- break;}
-case 424:
-#line 1939 "parse.y"
-{ yyval.itype = yyvsp[0].itype; ;
- break;}
-case 425:
-#line 1944 "parse.y"
-{ /* Set things up as initdcl0_innards expects. */
- yyvsp[0].ttype = yyvsp[-1].ttype;
- yyvsp[-1].ttype = NULL_TREE; ;
- break;}
-case 426:
-#line 1948 "parse.y"
-{;
- break;}
-case 427:
-#line 1950 "parse.y"
-{ tree d;
- parse_decl(yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype, 0, &d);
- cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 1, 0); ;
- break;}
-case 428:
-#line 1959 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 429:
-#line 1961 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 430:
-#line 1966 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 431:
-#line 1968 "parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 432:
-#line 1973 "parse.y"
-{ yyval.ttype = yyvsp[-2].ttype; ;
- break;}
-case 433:
-#line 1978 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 434:
-#line 1980 "parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 435:
-#line 1985 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 436:
-#line 1987 "parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 437:
-#line 1989 "parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
- break;}
-case 438:
-#line 1991 "parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
- break;}
-case 439:
-#line 1993 "parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 444:
-#line 2009 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 445:
-#line 2011 "parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 446:
-#line 2016 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 447:
-#line 2018 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 449:
-#line 2026 "parse.y"
-{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
- TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
- break;}
-case 450:
-#line 2029 "parse.y"
-{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
- TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
- break;}
-case 451:
-#line 2032 "parse.y"
-{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
- TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
- break;}
-case 452:
-#line 2035 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 453:
-#line 2042 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
- break;}
-case 454:
-#line 2044 "parse.y"
-{ yyval.ttype = expr_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
- break;}
-case 455:
-#line 2047 "parse.y"
-{ yyval.ttype = build_expr_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 456:
-#line 2049 "parse.y"
-{ yyval.ttype = build_expr_list (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 457:
-#line 2051 "parse.y"
-{ yyval.ttype = expr_tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
- break;}
-case 458:
-#line 2056 "parse.y"
-{ start_function (NULL_TREE, TREE_VALUE (yyvsp[0].ttype),
- NULL_TREE, 2);
- reinit_parse_for_function (); ;
- break;}
-case 459:
-#line 2062 "parse.y"
-{
- int nested = (hack_decl_function_context
- (current_function_decl) != NULL_TREE);
- finish_function (lineno, (int)yyvsp[-1].itype | 2, nested);
- process_next_inline (yyvsp[-3].ttype);
- ;
- break;}
-case 460:
-#line 2069 "parse.y"
-{
- int nested = (hack_decl_function_context
- (current_function_decl) != NULL_TREE);
- finish_function (lineno, (int)yyvsp[0].itype | 2, nested);
- process_next_inline (yyvsp[-2].ttype);
- ;
- break;}
-case 461:
-#line 2076 "parse.y"
-{ process_next_inline (yyvsp[-2].ttype); ;
- break;}
-case 464:
-#line 2088 "parse.y"
-{ replace_defarg (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 465:
-#line 2090 "parse.y"
-{ replace_defarg (yyvsp[-2].ttype, error_mark_node); ;
- break;}
-case 467:
-#line 2095 "parse.y"
-{ do_pending_defargs (); ;
- break;}
-case 468:
-#line 2097 "parse.y"
-{ do_pending_defargs (); ;
- break;}
-case 469:
-#line 2102 "parse.y"
-{ yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = current_enum_type;
- current_enum_type = start_enum (yyvsp[-1].ttype); ;
- break;}
-case 470:
-#line 2106 "parse.y"
-{ TYPE_VALUES (current_enum_type) = yyvsp[-2].ttype;
- yyval.ftype.t = finish_enum (current_enum_type);
- yyval.ftype.new_type_flag = 1;
- current_enum_type = yyvsp[-3].ttype;
- resume_momentary ((int) yyvsp[-4].itype);
- check_for_missing_semicolon (yyval.ftype.t); ;
- break;}
-case 471:
-#line 2113 "parse.y"
-{ yyval.ftype.t = finish_enum (start_enum (yyvsp[-2].ttype));
- yyval.ftype.new_type_flag = 1;
- check_for_missing_semicolon (yyval.ftype.t); ;
- break;}
-case 472:
-#line 2117 "parse.y"
-{ yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = current_enum_type;
- current_enum_type = start_enum (make_anon_name ()); ;
- break;}
-case 473:
-#line 2121 "parse.y"
-{ TYPE_VALUES (current_enum_type) = yyvsp[-2].ttype;
- yyval.ftype.t = finish_enum (current_enum_type);
- yyval.ftype.new_type_flag = 1;
- current_enum_type = yyvsp[-3].ttype;
- resume_momentary ((int) yyvsp[-5].itype);
- check_for_missing_semicolon (yyval.ftype.t); ;
- break;}
-case 474:
-#line 2128 "parse.y"
-{ yyval.ftype.t = finish_enum (start_enum (make_anon_name()));
- yyval.ftype.new_type_flag = 1;
- check_for_missing_semicolon (yyval.ftype.t); ;
- break;}
-case 475:
-#line 2132 "parse.y"
-{ yyval.ftype.t = xref_tag (enum_type_node, yyvsp[0].ttype, 1);
- yyval.ftype.new_type_flag = 0; ;
- break;}
-case 476:
-#line 2135 "parse.y"
-{ yyval.ftype.t = xref_tag (enum_type_node, yyvsp[0].ttype, 1);
- yyval.ftype.new_type_flag = 0; ;
- break;}
-case 477:
-#line 2138 "parse.y"
-{ yyval.ftype.t = yyvsp[0].ttype;
- yyval.ftype.new_type_flag = 0;
- if (!processing_template_decl)
- cp_pedwarn ("using `typename' outside of template"); ;
- break;}
-case 478:
-#line 2144 "parse.y"
-{ yyvsp[-1].ftype.t = begin_class_definition (yyvsp[-1].ftype.t); ;
- break;}
-case 479:
-#line 2146 "parse.y"
-{
- int semi;
-
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- semi = yychar == ';';
-
- yyval.ttype = finish_class_definition (yyvsp[-5].ftype.t, yyvsp[0].ttype, semi,
- yyvsp[-5].ftype.new_type_flag);
- ;
- break;}
-case 480:
-#line 2157 "parse.y"
-{
- begin_inline_definitions ();
- ;
- break;}
-case 481:
-#line 2161 "parse.y"
-{
- finish_inline_definitions ();
- yyval.ftype.t = yyvsp[-3].ttype;
- yyval.ftype.new_type_flag = 1;
- ;
- break;}
-case 482:
-#line 2167 "parse.y"
-{
- if (yyvsp[0].ftype.new_type_flag)
- pop_scope (CP_DECL_CONTEXT (TYPE_MAIN_DECL (yyvsp[0].ftype.t)));
- yyval.ftype.new_type_flag = 0;
- if (TYPE_BINFO (yyvsp[0].ftype.t) == NULL_TREE)
- {
- cp_error ("%T is not a class type", yyvsp[0].ftype.t);
- yyval.ftype.t = error_mark_node;
- }
- else
- {
- yyval.ftype.t = yyvsp[0].ftype.t;
- /* struct B: public A; is not accepted by the WP grammar. */
- if (TYPE_BINFO_BASETYPES (yyval.ftype.t) && !TYPE_SIZE (yyval.ftype.t)
- && ! TYPE_BEING_DEFINED (yyval.ftype.t))
- cp_error ("base clause without member specification for `%#T'",
- yyval.ftype.t);
- }
- ;
- break;}
-case 486:
-#line 2196 "parse.y"
-{ if (pedantic && !in_system_header)
- pedwarn ("comma at end of enumerator list"); ;
- break;}
-case 488:
-#line 2203 "parse.y"
-{ error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
- break;}
-case 489:
-#line 2205 "parse.y"
-{ error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
- break;}
-case 490:
-#line 2207 "parse.y"
-{ error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
- break;}
-case 491:
-#line 2209 "parse.y"
-{ error ("no body nor ';' separates two class, struct or union declarations"); ;
- break;}
-case 492:
-#line 2211 "parse.y"
-{ yyval.ttype = build_decl_list (yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 493:
-#line 2216 "parse.y"
-{
- current_aggr = yyvsp[-1].ttype;
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 494:
-#line 2224 "parse.y"
-{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 495:
-#line 2226 "parse.y"
-{ yyungetc ('{', 1); ;
- break;}
-case 496:
-#line 2228 "parse.y"
-{ yyungetc (':', 1); ;
- break;}
-case 497:
-#line 2233 "parse.y"
-{
- current_aggr = yyvsp[-2].ttype;
- yyval.ftype.t = handle_class_head (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = 1;
- ;
- break;}
-case 498:
-#line 2239 "parse.y"
-{
- current_aggr = yyvsp[-3].ttype;
- yyval.ftype.t = handle_class_head (yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = 1;
- ;
- break;}
-case 499:
-#line 2245 "parse.y"
-{
- current_aggr = yyvsp[-2].ttype;
- yyval.ftype.t = handle_class_head (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = 1;
- ;
- break;}
-case 500:
-#line 2251 "parse.y"
-{
- current_aggr = yyvsp[-1].ttype;
- yyval.ftype.t = yyvsp[0].ttype;
- yyval.ftype.new_type_flag = 0;
- ;
- break;}
-case 501:
-#line 2257 "parse.y"
-{
- current_aggr = yyvsp[-2].ttype;
- yyval.ftype.t = yyvsp[0].ttype;
- if (CP_DECL_CONTEXT (yyval.ftype.t))
- push_scope (CP_DECL_CONTEXT (yyval.ftype.t));
- yyval.ftype.new_type_flag = 1;
- ;
- break;}
-case 502:
-#line 2268 "parse.y"
-{
- yyval.ftype.t = xref_tag (current_aggr, yyvsp[0].ttype, 1);
- yyval.ftype.new_type_flag = 0;
- ;
- break;}
-case 503:
-#line 2273 "parse.y"
-{ yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, 0); ;
- break;}
-case 504:
-#line 2277 "parse.y"
-{
- yyval.ftype.t = yyvsp[-1].ttype;
- yyval.ftype.new_type_flag = 0;
- if (yyvsp[0].ttype)
- xref_basetypes (current_aggr, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 505:
-#line 2285 "parse.y"
-{
- if (yyvsp[-1].ftype.t != error_mark_node)
- {
- yyval.ftype.t = TREE_TYPE (yyvsp[-1].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag;
- if (current_aggr == union_type_node
- && TREE_CODE (yyval.ftype.t) != UNION_TYPE)
- cp_pedwarn ("`union' tag used in declaring `%#T'",
- yyval.ftype.t);
- else if (TREE_CODE (yyval.ftype.t) == UNION_TYPE
- && current_aggr != union_type_node)
- cp_pedwarn ("non-`union' tag used in declaring `%#T'", yyval.ftype);
- else if (TREE_CODE (yyval.ftype.t) == RECORD_TYPE)
- /* We might be specializing a template with a different
- class-key; deal. */
- CLASSTYPE_DECLARED_CLASS (yyval.ftype.t)
- = (current_aggr == class_type_node);
- if (yyvsp[0].ttype)
- {
- maybe_process_partial_specialization (yyval.ftype.t);
- xref_basetypes (current_aggr, yyvsp[-1].ftype.t, yyval.ftype.t, yyvsp[0].ttype);
- }
- }
- ;
- break;}
-case 506:
-#line 2313 "parse.y"
-{ yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), 0);
- yyungetc ('{', 1); ;
- break;}
-case 507:
-#line 2323 "parse.y"
-{
- yyval.ftype.t = yyvsp[0].ttype;
- yyval.ftype.new_type_flag = 0;
- ;
- break;}
-case 509:
-#line 2332 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 510:
-#line 2334 "parse.y"
-{ yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
- break;}
-case 511:
-#line 2336 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 513:
-#line 2342 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 514:
-#line 2347 "parse.y"
-{ yyval.ttype = finish_base_specifier (access_default_node, yyvsp[0].ttype,
- current_aggr
- == signature_type_node); ;
- break;}
-case 515:
-#line 2351 "parse.y"
-{ yyval.ttype = finish_base_specifier (yyvsp[-2].ttype, yyvsp[0].ttype,
- current_aggr
- == signature_type_node); ;
- break;}
-case 516:
-#line 2358 "parse.y"
-{ if (yyval.ttype != error_mark_node) yyval.ttype = TYPE_MAIN_DECL (yyvsp[0].ttype); ;
- break;}
-case 518:
-#line 2361 "parse.y"
-{
- if (current_aggr == signature_type_node)
- {
- if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
- {
- sorry ("`sigof' as base signature specifier");
- yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
- }
- else
- {
- error ("`sigof' applied to non-aggregate expression");
- yyval.ttype = error_mark_node;
- }
- }
- else
- {
- error ("`sigof' in struct or class declaration");
- yyval.ttype = error_mark_node;
- }
- ;
- break;}
-case 519:
-#line 2382 "parse.y"
-{
- if (current_aggr == signature_type_node)
- {
- if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ftype.t)))
- {
- sorry ("`sigof' as base signature specifier");
- yyval.ttype = groktypename (yyvsp[-1].ftype.t);
- }
- else
- {
- error ("`sigof' applied to non-aggregate expression");
- yyval.ttype = error_mark_node;
- }
- }
- else
- {
- error ("`sigof' in struct or class declaration");
- yyval.ttype = error_mark_node;
- }
- ;
- break;}
-case 521:
-#line 2407 "parse.y"
-{ if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL])
- cp_error ("`%D' access", yyvsp[-1].ttype);
- yyval.ttype = access_default_virtual_node; ;
- break;}
-case 522:
-#line 2411 "parse.y"
-{
- if (yyvsp[-2].ttype != access_default_virtual_node)
- error ("multiple access specifiers");
- else if (yyvsp[-1].ttype == access_public_node)
- yyval.ttype = access_public_virtual_node;
- else if (yyvsp[-1].ttype == access_protected_node)
- yyval.ttype = access_protected_virtual_node;
- else /* $2 == access_private_node */
- yyval.ttype = access_private_virtual_node;
- ;
- break;}
-case 523:
-#line 2422 "parse.y"
-{ if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL])
- cp_error ("`%D' access", yyvsp[-1].ttype);
- else if (yyval.ttype == access_public_node)
- yyval.ttype = access_public_virtual_node;
- else if (yyval.ttype == access_protected_node)
- yyval.ttype = access_protected_virtual_node;
- else if (yyval.ttype == access_private_node)
- yyval.ttype = access_private_virtual_node;
- else
- error ("multiple `virtual' specifiers");
- ;
- break;}
-case 528:
-#line 2443 "parse.y"
-{
- if (current_aggr == signature_type_node)
- {
- error ("access specifier not allowed in signature");
- yyvsp[-1].ttype = access_public_node;
- }
-
- current_access_specifier = yyvsp[-1].ttype;
- ;
- break;}
-case 529:
-#line 2458 "parse.y"
-{
- finish_member_declaration (yyvsp[0].ttype);
- ;
- break;}
-case 530:
-#line 2462 "parse.y"
-{
- finish_member_declaration (yyvsp[0].ttype);
- ;
- break;}
-case 532:
-#line 2470 "parse.y"
-{ error ("missing ';' before right brace");
- yyungetc ('}', 0); ;
- break;}
-case 533:
-#line 2475 "parse.y"
-{ yyval.ttype = finish_method (yyval.ttype); ;
- break;}
-case 534:
-#line 2477 "parse.y"
-{ yyval.ttype = finish_method (yyval.ttype); ;
- break;}
-case 535:
-#line 2479 "parse.y"
-{ yyval.ttype = finish_method (yyval.ttype); ;
- break;}
-case 536:
-#line 2481 "parse.y"
-{ yyval.ttype = finish_method (yyval.ttype); ;
- break;}
-case 537:
-#line 2483 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 538:
-#line 2485 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- pedantic = yyvsp[-1].itype; ;
- break;}
-case 539:
-#line 2488 "parse.y"
-{
- if (yyvsp[0].ttype)
- yyval.ttype = finish_member_template_decl (yyvsp[0].ttype);
- else
- /* The component was already processed. */
- yyval.ttype = NULL_TREE;
-
- finish_template_decl (yyvsp[-1].ttype);
- ;
- break;}
-case 540:
-#line 2498 "parse.y"
-{
- yyval.ttype = finish_member_class_template (yyvsp[-1].ftype.t);
- finish_template_decl (yyvsp[-2].ttype);
- ;
- break;}
-case 541:
-#line 2509 "parse.y"
-{
- /* Most of the productions for component_decl only
- allow the creation of one new member, so we call
- finish_member_declaration in component_decl_list.
- For this rule and the next, however, there can be
- more than one member, e.g.:
-
- int i, j;
-
- and we need the first member to be fully
- registered before the second is processed.
- Therefore, the rules for components take care of
- this processing. To avoid registering the
- components more than once, we send NULL_TREE up
- here; that lets finish_member_declaration know
- that there is nothing to do. */
- if (!yyvsp[0].itype)
- grok_x_components (yyvsp[-1].ftype.t);
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 542:
-#line 2530 "parse.y"
-{
- if (!yyvsp[0].itype)
- grok_x_components (yyvsp[-1].ttype);
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 543:
-#line 2536 "parse.y"
-{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
- break;}
-case 544:
-#line 2539 "parse.y"
-{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
- break;}
-case 545:
-#line 2542 "parse.y"
-{ yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 546:
-#line 2544 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 547:
-#line 2555 "parse.y"
-{ tree specs, attrs;
- split_specs_attrs (yyvsp[-4].ttype, &specs, &attrs);
- yyval.ttype = grokfield (yyvsp[-3].ttype, specs, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, attrs)); ;
- break;}
-case 548:
-#line 2560 "parse.y"
-{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
- break;}
-case 549:
-#line 2563 "parse.y"
-{ yyval.ttype = do_class_using_decl (yyvsp[0].ttype); ;
- break;}
-case 550:
-#line 2569 "parse.y"
-{ yyval.itype = 0; ;
- break;}
-case 551:
-#line 2571 "parse.y"
-{
- if (PROCESSING_REAL_TEMPLATE_DECL_P ())
- yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype);
- finish_member_declaration (yyvsp[0].ttype);
- yyval.itype = 1;
- ;
- break;}
-case 552:
-#line 2578 "parse.y"
-{
- check_multiple_declarators ();
- if (PROCESSING_REAL_TEMPLATE_DECL_P ())
- yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype);
- finish_member_declaration (yyvsp[0].ttype);
- yyval.itype = 2;
- ;
- break;}
-case 553:
-#line 2589 "parse.y"
-{ yyval.itype = 0; ;
- break;}
-case 554:
-#line 2591 "parse.y"
-{
- if (PROCESSING_REAL_TEMPLATE_DECL_P ())
- yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype);
- finish_member_declaration (yyvsp[0].ttype);
- yyval.itype = 1;
- ;
- break;}
-case 555:
-#line 2598 "parse.y"
-{
- check_multiple_declarators ();
- if (PROCESSING_REAL_TEMPLATE_DECL_P ())
- yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype);
- finish_member_declaration (yyvsp[0].ttype);
- yyval.itype = 2;
- ;
- break;}
-case 560:
-#line 2619 "parse.y"
-{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
- &prefix_attributes);
- yyvsp[-4].ttype = current_declspecs;
- yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
- break;}
-case 561:
-#line 2625 "parse.y"
-{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
- &prefix_attributes);
- yyvsp[-4].ttype = current_declspecs;
- yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
- cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 562:
-#line 2634 "parse.y"
-{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
- &prefix_attributes);
- yyvsp[-4].ttype = current_declspecs;
- yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
- break;}
-case 563:
-#line 2640 "parse.y"
-{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
- &prefix_attributes);
- yyvsp[-4].ttype = current_declspecs;
- yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
- break;}
-case 564:
-#line 2646 "parse.y"
-{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
- &prefix_attributes);
- yyvsp[-4].ttype = current_declspecs;
- yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
- cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 565:
-#line 2652 "parse.y"
-{ split_specs_attrs (yyvsp[-3].ttype, &current_declspecs,
- &prefix_attributes);
- yyvsp[-3].ttype = current_declspecs;
- yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
- cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 566:
-#line 2661 "parse.y"
-{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
- break;}
-case 567:
-#line 2664 "parse.y"
-{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
- cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 568:
-#line 2670 "parse.y"
-{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
- build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
- break;}
-case 569:
-#line 2673 "parse.y"
-{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
- cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 570:
-#line 2676 "parse.y"
-{ yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
- cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 572:
-#line 2687 "parse.y"
-{ TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 573:
-#line 2692 "parse.y"
-{ yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE, current_enum_type); ;
- break;}
-case 574:
-#line 2694 "parse.y"
-{ yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype, current_enum_type); ;
- break;}
-case 575:
-#line 2700 "parse.y"
-{ yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 576:
-#line 2703 "parse.y"
-{ yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 577:
-#line 2710 "parse.y"
-{
- if (pedantic)
- pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
- yyval.ftype.t = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ftype.t), yyvsp[-1].ttype);
- yyval.ftype.t = build_decl_list (TREE_PURPOSE (yyvsp[-4].ftype.t), yyval.ftype.t);
- yyval.ftype.new_type_flag = yyvsp[-4].ftype.new_type_flag;
- ;
- break;}
-case 578:
-#line 2721 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 579:
-#line 2723 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
- break;}
-case 580:
-#line 2728 "parse.y"
-{ yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- yyval.ftype.new_type_flag = 0; ;
- break;}
-case 581:
-#line 2731 "parse.y"
-{ yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 582:
-#line 2740 "parse.y"
-{ yyval.itype = suspend_momentary (); ;
- break;}
-case 583:
-#line 2745 "parse.y"
-{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 584:
-#line 2751 "parse.y"
-{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 585:
-#line 2753 "parse.y"
-{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 586:
-#line 2755 "parse.y"
-{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = empty_parms (); ;
- break;}
-case 587:
-#line 2757 "parse.y"
-{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = NULL_TREE; ;
- break;}
-case 589:
-#line 2765 "parse.y"
-{
- /* Provide support for '(' attributes '*' declarator ')'
- etc */
- yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 590:
-#line 2775 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 591:
-#line 2777 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 592:
-#line 2779 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 593:
-#line 2781 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 594:
-#line 2783 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
- ;
- break;}
-case 596:
-#line 2791 "parse.y"
-{ yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 597:
-#line 2793 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 598:
-#line 2795 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
- break;}
-case 599:
-#line 2797 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 600:
-#line 2799 "parse.y"
-{ push_nested_class (yyvsp[-1].ttype, 3);
- yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
- TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
- break;}
-case 602:
-#line 2807 "parse.y"
-{
- if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- {
- yyval.ttype = lookup_name (yyvsp[0].ttype, 1);
- maybe_note_name_used_in_class (yyvsp[0].ttype, yyval.ttype);
- }
- else
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 603:
-#line 2817 "parse.y"
-{
- if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
- else
- yyval.ttype = yyvsp[0].ttype;
- got_scope = NULL_TREE;
- ;
- break;}
-case 606:
-#line 2830 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 607:
-#line 2835 "parse.y"
-{ yyval.ttype = get_type_decl (yyvsp[0].ttype); ;
- break;}
-case 609:
-#line 2844 "parse.y"
-{
- /* Provide support for '(' attributes '*' declarator ')'
- etc */
- yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 610:
-#line 2853 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 611:
-#line 2855 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 612:
-#line 2857 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 613:
-#line 2859 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 614:
-#line 2861 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
- ;
- break;}
-case 616:
-#line 2869 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 617:
-#line 2871 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 618:
-#line 2873 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 619:
-#line 2875 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 620:
-#line 2877 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
- ;
- break;}
-case 622:
-#line 2885 "parse.y"
-{ yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 623:
-#line 2887 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 624:
-#line 2889 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 625:
-#line 2891 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
- break;}
-case 626:
-#line 2893 "parse.y"
-{ enter_scope_of (yyvsp[0].ttype); ;
- break;}
-case 627:
-#line 2895 "parse.y"
-{ got_scope = NULL_TREE;
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype);
- enter_scope_of (yyval.ttype);
- ;
- break;}
-case 628:
-#line 2903 "parse.y"
-{ got_scope = NULL_TREE;
- yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 629:
-#line 2906 "parse.y"
-{ got_scope = NULL_TREE;
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 630:
-#line 2912 "parse.y"
-{ got_scope = NULL_TREE;
- yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 631:
-#line 2915 "parse.y"
-{ got_scope = NULL_TREE;
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 633:
-#line 2922 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 634:
-#line 2927 "parse.y"
-{ yyval.ttype = build_functional_cast (yyvsp[-3].ftype.t, yyvsp[-1].ttype); ;
- break;}
-case 635:
-#line 2929 "parse.y"
-{ yyval.ttype = reparse_decl_as_expr (yyvsp[-3].ftype.t, yyvsp[-1].ttype); ;
- break;}
-case 636:
-#line 2931 "parse.y"
-{ yyval.ttype = reparse_absdcl_as_expr (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 641:
-#line 2942 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 642:
-#line 2944 "parse.y"
-{ got_scope = yyval.ttype = make_typename_type (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 643:
-#line 2951 "parse.y"
-{
- if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE)
- {
- yyval.ttype = lastiddecl;
- maybe_note_name_used_in_class (yyvsp[-1].ttype, yyval.ttype);
- }
- got_scope = yyval.ttype =
- complete_type (TYPE_MAIN_VARIANT (TREE_TYPE (yyval.ttype)));
- ;
- break;}
-case 644:
-#line 2961 "parse.y"
-{
- if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE)
- yyval.ttype = lastiddecl;
- got_scope = yyval.ttype = TREE_TYPE (yyval.ttype);
- ;
- break;}
-case 645:
-#line 2967 "parse.y"
-{
- if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE)
- yyval.ttype = lastiddecl;
- got_scope = yyval.ttype;
- ;
- break;}
-case 646:
-#line 2973 "parse.y"
-{ got_scope = yyval.ttype = complete_type (TREE_TYPE (yyvsp[-1].ttype)); ;
- break;}
-case 648:
-#line 2989 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 649:
-#line 2994 "parse.y"
-{
- if (TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype)) == 't')
- yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype);
- else if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype);
- else
- {
- yyval.ttype = yyvsp[0].ttype;
- if (TREE_CODE (yyval.ttype) == TYPE_DECL)
- yyval.ttype = TREE_TYPE (yyval.ttype);
- }
- ;
- break;}
-case 650:
-#line 3007 "parse.y"
-{ yyval.ttype = TREE_TYPE (yyvsp[0].ttype); ;
- break;}
-case 651:
-#line 3009 "parse.y"
-{ yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 652:
-#line 3011 "parse.y"
-{ yyval.ttype = make_typename_type (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 653:
-#line 3016 "parse.y"
-{
- if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype);
- ;
- break;}
-case 654:
-#line 3021 "parse.y"
-{
- if (TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype)) == 't')
- yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype);
- else if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype);
- else
- {
- yyval.ttype = yyvsp[0].ttype;
- if (TREE_CODE (yyval.ttype) == TYPE_DECL)
- yyval.ttype = TREE_TYPE (yyval.ttype);
- }
- ;
- break;}
-case 655:
-#line 3034 "parse.y"
-{ got_scope = yyval.ttype = make_typename_type (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 656:
-#line 3036 "parse.y"
-{ got_scope = yyval.ttype = make_typename_type (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 657:
-#line 3041 "parse.y"
-{
- if (TREE_CODE (yyvsp[-1].ttype) != IDENTIFIER_NODE)
- yyvsp[-1].ttype = lastiddecl;
-
- /* Retrieve the type for the identifier, which might involve
- some computation. */
- got_scope = yyval.ttype = complete_type (IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype));
-
- if (yyval.ttype == error_mark_node)
- cp_error ("`%T' is not a class or namespace", yyvsp[-1].ttype);
- ;
- break;}
-case 658:
-#line 3053 "parse.y"
-{
- if (TREE_CODE (yyvsp[-1].ttype) != IDENTIFIER_NODE)
- yyval.ttype = lastiddecl;
- got_scope = yyval.ttype = complete_type (TREE_TYPE (yyval.ttype));
- ;
- break;}
-case 659:
-#line 3059 "parse.y"
-{ got_scope = yyval.ttype = complete_type (TREE_TYPE (yyval.ttype)); ;
- break;}
-case 662:
-#line 3063 "parse.y"
-{
- if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE)
- yyval.ttype = lastiddecl;
- got_scope = yyval.ttype;
- ;
- break;}
-case 663:
-#line 3072 "parse.y"
-{ yyval.ttype = build_min_nt (TEMPLATE_ID_EXPR, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 664:
-#line 3077 "parse.y"
-{
- if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
- yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
- else
- yyval.ttype = yyvsp[0].ttype;
- got_scope = NULL_TREE;
- ;
- break;}
-case 666:
-#line 3086 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 667:
-#line 3091 "parse.y"
-{ got_scope = NULL_TREE; ;
- break;}
-case 668:
-#line 3093 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
- break;}
-case 669:
-#line 3100 "parse.y"
-{ got_scope = void_type_node; ;
- break;}
-case 670:
-#line 3106 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 671:
-#line 3108 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 672:
-#line 3110 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 673:
-#line 3112 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 674:
-#line 3114 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
- ;
- break;}
-case 675:
-#line 3118 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
- ;
- break;}
-case 677:
-#line 3127 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 678:
-#line 3129 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 680:
-#line 3135 "parse.y"
-{
- /* Provide support for '(' attributes '*' declarator ')'
- etc */
- yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 681:
-#line 3145 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 682:
-#line 3147 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 683:
-#line 3149 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ftype.t, NULL_TREE); ;
- break;}
-case 684:
-#line 3151 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
- break;}
-case 685:
-#line 3153 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 686:
-#line 3155 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 687:
-#line 3157 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[0].ftype.t, NULL_TREE); ;
- break;}
-case 688:
-#line 3159 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
- break;}
-case 689:
-#line 3161 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
- ;
- break;}
-case 690:
-#line 3165 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
- ;
- break;}
-case 692:
-#line 3174 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 694:
-#line 3178 "parse.y"
-{ yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 695:
-#line 3180 "parse.y"
-{ yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 696:
-#line 3182 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 697:
-#line 3184 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
- break;}
-case 698:
-#line 3186 "parse.y"
-{ yyval.ttype = make_call_declarator (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 699:
-#line 3188 "parse.y"
-{ set_quals_and_spec (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 700:
-#line 3190 "parse.y"
-{ set_quals_and_spec (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 701:
-#line 3192 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 702:
-#line 3194 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
- break;}
-case 709:
-#line 3217 "parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C++ forbids label declarations"); ;
- break;}
-case 712:
-#line 3228 "parse.y"
-{ tree link;
- for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
- {
- tree label = shadow_label (TREE_VALUE (link));
- C_DECLARED_LABEL_FLAG (label) = 1;
- declare_nonlocal_label (label);
- }
- ;
- break;}
-case 713:
-#line 3242 "parse.y"
-{;
- break;}
-case 715:
-#line 3248 "parse.y"
-{ yyval.ttype = begin_compound_stmt (0); ;
- break;}
-case 716:
-#line 3250 "parse.y"
-{ yyval.ttype = finish_compound_stmt (0, yyvsp[-1].ttype); ;
- break;}
-case 717:
-#line 3255 "parse.y"
-{
- yyval.ttype = begin_if_stmt ();
- cond_stmt_keyword = "if";
- ;
- break;}
-case 718:
-#line 3260 "parse.y"
-{ finish_if_stmt_cond (yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 719:
-#line 3262 "parse.y"
-{ yyval.ttype = finish_then_clause (yyvsp[-3].ttype); ;
- break;}
-case 721:
-#line 3267 "parse.y"
-{ yyval.ttype = begin_compound_stmt (0); ;
- break;}
-case 722:
-#line 3269 "parse.y"
-{ yyval.ttype = finish_compound_stmt (0, yyvsp[-1].ttype); ;
- break;}
-case 723:
-#line 3274 "parse.y"
-{;
- break;}
-case 725:
-#line 3280 "parse.y"
-{ finish_stmt (); ;
- break;}
-case 726:
-#line 3282 "parse.y"
-{ finish_expr_stmt (yyvsp[-1].ttype); ;
- break;}
-case 727:
-#line 3284 "parse.y"
-{ begin_else_clause (); ;
- break;}
-case 728:
-#line 3286 "parse.y"
-{
- finish_else_clause (yyvsp[-3].ttype);
- finish_if_stmt ();
- ;
- break;}
-case 729:
-#line 3291 "parse.y"
-{ finish_if_stmt (); ;
- break;}
-case 730:
-#line 3293 "parse.y"
-{
- yyval.ttype = begin_while_stmt ();
- cond_stmt_keyword = "while";
- ;
- break;}
-case 731:
-#line 3298 "parse.y"
-{ finish_while_stmt_cond (yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 732:
-#line 3300 "parse.y"
-{ finish_while_stmt (yyvsp[-3].ttype); ;
- break;}
-case 733:
-#line 3302 "parse.y"
-{ yyval.ttype = begin_do_stmt (); ;
- break;}
-case 734:
-#line 3304 "parse.y"
-{
- finish_do_body (yyvsp[-2].ttype);
- cond_stmt_keyword = "do";
- ;
- break;}
-case 735:
-#line 3309 "parse.y"
-{ finish_do_stmt (yyvsp[-1].ttype, yyvsp[-5].ttype); ;
- break;}
-case 736:
-#line 3311 "parse.y"
-{ yyval.ttype = begin_for_stmt (); ;
- break;}
-case 737:
-#line 3313 "parse.y"
-{ finish_for_init_stmt (yyvsp[-2].ttype); ;
- break;}
-case 738:
-#line 3315 "parse.y"
-{ finish_for_cond (yyvsp[-1].ttype, yyvsp[-5].ttype); ;
- break;}
-case 739:
-#line 3317 "parse.y"
-{ finish_for_expr (yyvsp[-1].ttype, yyvsp[-8].ttype); ;
- break;}
-case 740:
-#line 3319 "parse.y"
-{ finish_for_stmt (yyvsp[-3].ttype, yyvsp[-10].ttype); ;
- break;}
-case 741:
-#line 3321 "parse.y"
-{ begin_switch_stmt (); ;
- break;}
-case 742:
-#line 3323 "parse.y"
-{ yyval.ttype = finish_switch_cond (yyvsp[-1].ttype); ;
- break;}
-case 743:
-#line 3325 "parse.y"
-{ finish_switch_stmt (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 744:
-#line 3327 "parse.y"
-{ finish_case_label (yyvsp[-1].ttype, NULL_TREE); ;
- break;}
-case 746:
-#line 3330 "parse.y"
-{ finish_case_label (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 748:
-#line 3333 "parse.y"
-{ finish_case_label (NULL_TREE, NULL_TREE); ;
- break;}
-case 750:
-#line 3336 "parse.y"
-{ finish_break_stmt (); ;
- break;}
-case 751:
-#line 3338 "parse.y"
-{ finish_continue_stmt (); ;
- break;}
-case 752:
-#line 3340 "parse.y"
-{ finish_return_stmt (NULL_TREE); ;
- break;}
-case 753:
-#line 3342 "parse.y"
-{ finish_return_stmt (yyvsp[-1].ttype); ;
- break;}
-case 754:
-#line 3344 "parse.y"
-{
- finish_asm_stmt (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
- NULL_TREE);
- ;
- break;}
-case 755:
-#line 3350 "parse.y"
-{
- finish_asm_stmt (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
- NULL_TREE);
- ;
- break;}
-case 756:
-#line 3356 "parse.y"
-{ finish_asm_stmt (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 757:
-#line 3360 "parse.y"
-{ finish_asm_stmt (yyvsp[-10].ttype, yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype); ;
- break;}
-case 758:
-#line 3362 "parse.y"
-{
- if (pedantic)
- pedwarn ("ANSI C++ forbids computed gotos");
- finish_goto_stmt (yyvsp[-1].ttype);
- ;
- break;}
-case 759:
-#line 3368 "parse.y"
-{ finish_goto_stmt (yyvsp[-1].ttype); ;
- break;}
-case 760:
-#line 3370 "parse.y"
-{ finish_stmt (); ;
- break;}
-case 761:
-#line 3372 "parse.y"
-{ error ("label must be followed by statement");
- yyungetc ('}', 0);
- finish_stmt (); ;
- break;}
-case 762:
-#line 3376 "parse.y"
-{ finish_stmt (); ;
- break;}
-case 765:
-#line 3380 "parse.y"
-{ do_local_using_decl (yyvsp[0].ttype); ;
- break;}
-case 767:
-#line 3386 "parse.y"
-{
- if (! current_function_parms_stored)
- store_parm_decls ();
- expand_start_early_try_stmts ();
- ;
- break;}
-case 768:
-#line 3392 "parse.y"
-{
- expand_start_all_catch ();
- ;
- break;}
-case 769:
-#line 3396 "parse.y"
-{
- expand_end_all_catch ();
- yyval.itype = yyvsp[-3].itype;
- ;
- break;}
-case 770:
-#line 3404 "parse.y"
-{ yyval.ttype = begin_try_block (); ;
- break;}
-case 771:
-#line 3406 "parse.y"
-{ finish_try_block (yyvsp[-1].ttype); ;
- break;}
-case 772:
-#line 3408 "parse.y"
-{ finish_handler_sequence (yyvsp[-3].ttype); ;
- break;}
-case 775:
-#line 3418 "parse.y"
-{ yyval.ttype = begin_handler(); ;
- break;}
-case 776:
-#line 3420 "parse.y"
-{ finish_handler_parms (yyvsp[-1].ttype); ;
- break;}
-case 777:
-#line 3422 "parse.y"
-{ finish_handler (yyvsp[-3].ttype); ;
- break;}
-case 780:
-#line 3432 "parse.y"
-{ expand_start_catch_block (NULL_TREE, NULL_TREE); ;
- break;}
-case 781:
-#line 3448 "parse.y"
-{ check_for_new_type ("inside exception declarations", yyvsp[-1].ftype);
- expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ftype.t),
- TREE_VALUE (yyvsp[-1].ftype.t)); ;
- break;}
-case 782:
-#line 3455 "parse.y"
-{ tree label;
- do_label:
- label = define_label (input_filename, lineno, yyvsp[-1].ttype);
- if (label && ! minimal_parse_mode)
- expand_label (label);
- ;
- break;}
-case 783:
-#line 3462 "parse.y"
-{ goto do_label; ;
- break;}
-case 784:
-#line 3464 "parse.y"
-{ goto do_label; ;
- break;}
-case 785:
-#line 3466 "parse.y"
-{ goto do_label; ;
- break;}
-case 786:
-#line 3471 "parse.y"
-{ if (yyvsp[-1].ttype) cplus_expand_expr_stmt (yyvsp[-1].ttype); ;
- break;}
-case 788:
-#line 3474 "parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C++ forbids compound statements inside for initializations");
- ;
- break;}
-case 789:
-#line 3483 "parse.y"
-{ emit_line_note (input_filename, lineno);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 790:
-#line 3486 "parse.y"
-{ emit_line_note (input_filename, lineno); ;
- break;}
-case 791:
-#line 3491 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 793:
-#line 3494 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 794:
-#line 3501 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 797:
-#line 3508 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
- break;}
-case 798:
-#line 3513 "parse.y"
-{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 799:
-#line 3518 "parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
- break;}
-case 800:
-#line 3520 "parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
- break;}
-case 801:
-#line 3531 "parse.y"
-{
- yyval.ttype = empty_parms();
- ;
- break;}
-case 803:
-#line 3536 "parse.y"
-{ yyval.ttype = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[0].ftype.t), 0);
- check_for_new_type ("inside parameter list", yyvsp[0].ftype); ;
- break;}
-case 804:
-#line 3544 "parse.y"
-{ yyval.ttype = finish_parmlist (yyval.ttype, 0); ;
- break;}
-case 805:
-#line 3546 "parse.y"
-{ yyval.ttype = finish_parmlist (yyvsp[-1].ttype, 1); ;
- break;}
-case 806:
-#line 3549 "parse.y"
-{ yyval.ttype = finish_parmlist (yyvsp[-1].ttype, 1); ;
- break;}
-case 807:
-#line 3551 "parse.y"
-{ yyval.ttype = finish_parmlist (build_tree_list (NULL_TREE,
- yyvsp[-1].ftype.t), 1); ;
- break;}
-case 808:
-#line 3554 "parse.y"
-{ yyval.ttype = finish_parmlist (NULL_TREE, 1); ;
- break;}
-case 809:
-#line 3556 "parse.y"
-{
- /* This helps us recover from really nasty
- parse errors, for example, a missing right
- parenthesis. */
- yyerror ("possibly missing ')'");
- yyval.ttype = finish_parmlist (yyvsp[-1].ttype, 0);
- yyungetc (':', 0);
- yychar = ')';
- ;
- break;}
-case 810:
-#line 3566 "parse.y"
-{
- /* This helps us recover from really nasty
- parse errors, for example, a missing right
- parenthesis. */
- yyerror ("possibly missing ')'");
- yyval.ttype = finish_parmlist (build_tree_list (NULL_TREE,
- yyvsp[-1].ftype.t), 0);
- yyungetc (':', 0);
- yychar = ')';
- ;
- break;}
-case 811:
-#line 3581 "parse.y"
-{ maybe_snarf_defarg (); ;
- break;}
-case 812:
-#line 3583 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 815:
-#line 3594 "parse.y"
-{ check_for_new_type ("in a parameter list", yyvsp[0].ftype);
- yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); ;
- break;}
-case 816:
-#line 3597 "parse.y"
-{ check_for_new_type ("in a parameter list", yyvsp[-1].ftype);
- yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-1].ftype.t); ;
- break;}
-case 817:
-#line 3600 "parse.y"
-{ check_for_new_type ("in a parameter list", yyvsp[0].ftype);
- yyval.ttype = chainon (yyval.ttype, yyvsp[0].ftype.t); ;
- break;}
-case 818:
-#line 3603 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 819:
-#line 3605 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 821:
-#line 3611 "parse.y"
-{ check_for_new_type ("in a parameter list", yyvsp[-1].ftype);
- yyval.ttype = build_tree_list (NULL_TREE, yyvsp[-1].ftype.t); ;
- break;}
-case 822:
-#line 3621 "parse.y"
-{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag;
- yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype); ;
- break;}
-case 823:
-#line 3625 "parse.y"
-{ yyval.ftype.t = build_tree_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 824:
-#line 3628 "parse.y"
-{ yyval.ftype.t = build_tree_list (build_decl_list (NULL_TREE, yyvsp[-1].ftype.t),
- yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 825:
-#line 3632 "parse.y"
-{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
- yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 826:
-#line 3636 "parse.y"
-{ tree specs = strip_attrs (yyvsp[0].ftype.t);
- yyval.ftype.t = build_tree_list (specs, NULL_TREE);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 827:
-#line 3640 "parse.y"
-{ tree specs = strip_attrs (yyvsp[-1].ttype);
- yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype);
- yyval.ftype.new_type_flag = 0; ;
- break;}
-case 828:
-#line 3647 "parse.y"
-{ yyval.ftype.t = build_tree_list (NULL_TREE, yyvsp[0].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
- break;}
-case 829:
-#line 3650 "parse.y"
-{ yyval.ftype.t = build_tree_list (yyvsp[0].ttype, yyvsp[-1].ftype.t);
- yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
- break;}
-case 832:
-#line 3661 "parse.y"
-{ see_typename (); ;
- break;}
-case 833:
-#line 3666 "parse.y"
-{
- error ("type specifier omitted for parameter");
- yyval.ttype = build_tree_list (integer_type_node, NULL_TREE);
- ;
- break;}
-case 834:
-#line 3671 "parse.y"
-{
- error ("type specifier omitted for parameter");
- if (TREE_CODE (yyval.ttype) == SCOPE_REF
- && (TREE_CODE (TREE_OPERAND (yyval.ttype, 0)) == TEMPLATE_TYPE_PARM
- || TREE_CODE (TREE_OPERAND (yyval.ttype, 0)) == TEMPLATE_TEMPLATE_PARM))
- cp_error (" perhaps you want `typename %E' to make it a type", yyval.ttype);
- yyval.ttype = build_tree_list (integer_type_node, yyval.ttype);
- ;
- break;}
-case 835:
-#line 3683 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 836:
-#line 3685 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 837:
-#line 3687 "parse.y"
-{ yyval.ttype = build_decl_list (NULL_TREE, NULL_TREE); ;
- break;}
-case 838:
-#line 3692 "parse.y"
-{ yyval.ttype = build_decl_list (NULL_TREE, groktypename(yyvsp[0].ftype.t)); ;
- break;}
-case 840:
-#line 3698 "parse.y"
-{
- TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 841:
-#line 3706 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 842:
-#line 3708 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 843:
-#line 3710 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 844:
-#line 3712 "parse.y"
-{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
- yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
- ;
- break;}
-case 845:
-#line 3719 "parse.y"
-{ got_scope = NULL_TREE; ;
- break;}
-case 846:
-#line 3724 "parse.y"
-{ yyval.ttype = ansi_opname[MULT_EXPR]; ;
- break;}
-case 847:
-#line 3726 "parse.y"
-{ yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
- break;}
-case 848:
-#line 3728 "parse.y"
-{ yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
- break;}
-case 849:
-#line 3730 "parse.y"
-{ yyval.ttype = ansi_opname[PLUS_EXPR]; ;
- break;}
-case 850:
-#line 3732 "parse.y"
-{ yyval.ttype = ansi_opname[MINUS_EXPR]; ;
- break;}
-case 851:
-#line 3734 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
- break;}
-case 852:
-#line 3736 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
- break;}
-case 853:
-#line 3738 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
- break;}
-case 854:
-#line 3740 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
- break;}
-case 855:
-#line 3742 "parse.y"
-{ yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
- break;}
-case 856:
-#line 3744 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
- break;}
-case 857:
-#line 3746 "parse.y"
-{ yyval.ttype = ansi_opname[LT_EXPR]; ;
- break;}
-case 858:
-#line 3748 "parse.y"
-{ yyval.ttype = ansi_opname[GT_EXPR]; ;
- break;}
-case 859:
-#line 3750 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
- break;}
-case 860:
-#line 3752 "parse.y"
-{ yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
- break;}
-case 861:
-#line 3754 "parse.y"
-{ yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
- break;}
-case 862:
-#line 3756 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
- break;}
-case 863:
-#line 3758 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
- break;}
-case 864:
-#line 3760 "parse.y"
-{ yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
- break;}
-case 865:
-#line 3762 "parse.y"
-{ yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
- break;}
-case 866:
-#line 3764 "parse.y"
-{ yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
- break;}
-case 867:
-#line 3766 "parse.y"
-{ yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
- break;}
-case 868:
-#line 3768 "parse.y"
-{ yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
- break;}
-case 869:
-#line 3770 "parse.y"
-{ yyval.ttype = ansi_opname[COND_EXPR]; ;
- break;}
-case 870:
-#line 3772 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
- break;}
-case 871:
-#line 3774 "parse.y"
-{ yyval.ttype = ansi_opname[COMPONENT_REF]; ;
- break;}
-case 872:
-#line 3776 "parse.y"
-{ yyval.ttype = ansi_opname[MEMBER_REF]; ;
- break;}
-case 873:
-#line 3778 "parse.y"
-{ yyval.ttype = ansi_opname[CALL_EXPR]; ;
- break;}
-case 874:
-#line 3780 "parse.y"
-{ yyval.ttype = ansi_opname[ARRAY_REF]; ;
- break;}
-case 875:
-#line 3782 "parse.y"
-{ yyval.ttype = ansi_opname[NEW_EXPR]; ;
- break;}
-case 876:
-#line 3784 "parse.y"
-{ yyval.ttype = ansi_opname[DELETE_EXPR]; ;
- break;}
-case 877:
-#line 3786 "parse.y"
-{ yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
- break;}
-case 878:
-#line 3788 "parse.y"
-{ yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
- break;}
-case 879:
-#line 3791 "parse.y"
-{ yyval.ttype = grokoptypename (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
- break;}
-case 880:
-#line 3793 "parse.y"
-{ yyval.ttype = ansi_opname[ERROR_MARK]; ;
- break;}
-}
- /* the action file gets copied in in place of this dollarsign */
-#line 498 "/usr/lib/bison.simple"
-
- yyvsp -= yylen;
- yyssp -= yylen;
-#ifdef YYLSP_NEEDED
- yylsp -= yylen;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
- *++yyvsp = yyval;
-
-#ifdef YYLSP_NEEDED
- yylsp++;
- if (yylen == 0)
- {
- yylsp->first_line = yylloc.first_line;
- yylsp->first_column = yylloc.first_column;
- yylsp->last_line = (yylsp-1)->last_line;
- yylsp->last_column = (yylsp-1)->last_column;
- yylsp->text = 0;
- }
- else
- {
- yylsp->last_line = (yylsp+yylen-1)->last_line;
- yylsp->last_column = (yylsp+yylen-1)->last_column;
- }
-#endif
-
- /* Now "shift" the result of the reduction.
- Determine what state that goes to,
- based on the state we popped back to
- and the rule number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
- if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTBASE];
-
- goto yynewstate;
-
-yyerrlab: /* here on detecting error */
-
- if (! yyerrstatus)
- /* If not already recovering from an error, report this error. */
- {
- ++yynerrs;
-
-#ifdef YYERROR_VERBOSE
- yyn = yypact[yystate];
-
- if (yyn > YYFLAG && yyn < YYLAST)
- {
- int size = 0;
- char *msg;
- int x, count;
-
- count = 0;
- /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- size += strlen(yytname[x]) + 15, count++;
- msg = (char *) malloc(size + 15);
- if (msg != 0)
- {
- strcpy(msg, "parse error");
-
- if (count < 5)
- {
- count = 0;
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- {
- strcat(msg, count == 0 ? ", expecting `" : " or `");
- strcat(msg, yytname[x]);
- strcat(msg, "'");
- count++;
- }
- }
- yyerror(msg);
- free(msg);
- }
- else
- yyerror ("parse error; also virtual memory exceeded");
- }
- else
-#endif /* YYERROR_VERBOSE */
- yyerror("parse error");
- }
-
- goto yyerrlab1;
-yyerrlab1: /* here on error raised explicitly by an action */
-
- if (yyerrstatus == 3)
- {
- /* if just tried and failed to reuse lookahead token after an error, discard it. */
-
- /* return failure if at end of input */
- if (yychar == YYEOF)
- YYABORT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
-#endif
-
- yychar = YYEMPTY;
- }
-
- /* Else will try to reuse lookahead token
- after shifting the error token. */
-
- yyerrstatus = 3; /* Each real token shifted decrements this */
-
- goto yyerrhandle;
-
-yyerrdefault: /* current state does not do anything special for the error token. */
-
-#if 0
- /* This is wrong; only states that explicitly want error tokens
- should shift them. */
- yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
- if (yyn) goto yydefault;
-#endif
-
-yyerrpop: /* pop the current state because it cannot handle the error token */
-
- if (yyssp == yyss) YYABORT;
- yyvsp--;
- yystate = *--yyssp;
-#ifdef YYLSP_NEEDED
- yylsp--;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "Error: state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
-yyerrhandle:
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yyerrdefault;
-
- yyn += YYTERROR;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
- goto yyerrdefault;
-
- yyn = yytable[yyn];
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrpop;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrpop;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting error token, ");
-#endif
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- yystate = yyn;
- goto yynewstate;
-}
-#line 3796 "parse.y"
-
-
-#ifdef SPEW_DEBUG
-const char *
-debug_yytranslate (value)
- int value;
-{
- return yytname[YYTRANSLATE (value)];
-}
-
-#endif
diff --git a/gnu/egcs/gcc/cp/parse.h b/gnu/egcs/gcc/cp/parse.h
deleted file mode 100644
index c3615429efe..00000000000
--- a/gnu/egcs/gcc/cp/parse.h
+++ /dev/null
@@ -1,90 +0,0 @@
-typedef union {long itype; tree ttype; char *strtype; enum tree_code code; flagged_type_tree ftype; } YYSTYPE;
-#define IDENTIFIER 258
-#define TYPENAME 259
-#define SELFNAME 260
-#define PFUNCNAME 261
-#define SCSPEC 262
-#define TYPESPEC 263
-#define CV_QUALIFIER 264
-#define CONSTANT 265
-#define STRING 266
-#define ELLIPSIS 267
-#define SIZEOF 268
-#define ENUM 269
-#define IF 270
-#define ELSE 271
-#define WHILE 272
-#define DO 273
-#define FOR 274
-#define SWITCH 275
-#define CASE 276
-#define DEFAULT 277
-#define BREAK 278
-#define CONTINUE 279
-#define RETURN_KEYWORD 280
-#define GOTO 281
-#define ASM_KEYWORD 282
-#define TYPEOF 283
-#define ALIGNOF 284
-#define SIGOF 285
-#define ATTRIBUTE 286
-#define EXTENSION 287
-#define LABEL 288
-#define REALPART 289
-#define IMAGPART 290
-#define AGGR 291
-#define VISSPEC 292
-#define DELETE 293
-#define NEW 294
-#define THIS 295
-#define OPERATOR 296
-#define CXX_TRUE 297
-#define CXX_FALSE 298
-#define NAMESPACE 299
-#define TYPENAME_KEYWORD 300
-#define USING 301
-#define LEFT_RIGHT 302
-#define TEMPLATE 303
-#define TYPEID 304
-#define DYNAMIC_CAST 305
-#define STATIC_CAST 306
-#define REINTERPRET_CAST 307
-#define CONST_CAST 308
-#define SCOPE 309
-#define EMPTY 310
-#define PTYPENAME 311
-#define NSNAME 312
-#define THROW 313
-#define ASSIGN 314
-#define OROR 315
-#define ANDAND 316
-#define MIN_MAX 317
-#define EQCOMPARE 318
-#define ARITHCOMPARE 319
-#define LSHIFT 320
-#define RSHIFT 321
-#define POINTSAT_STAR 322
-#define DOT_STAR 323
-#define UNARY 324
-#define PLUSPLUS 325
-#define MINUSMINUS 326
-#define HYPERUNARY 327
-#define PAREN_STAR_PAREN 328
-#define POINTSAT 329
-#define TRY 330
-#define CATCH 331
-#define PRE_PARSED_FUNCTION_DECL 332
-#define EXTERN_LANG_STRING 333
-#define ALL 334
-#define PRE_PARSED_CLASS_DECL 335
-#define DEFARG 336
-#define DEFARG_MARKER 337
-#define TYPENAME_DEFN 338
-#define IDENTIFIER_DEFN 339
-#define PTYPENAME_DEFN 340
-#define END_OF_LINE 341
-#define END_OF_SAVED_INPUT 342
-
-
-extern YYSTYPE yylval;
-#define YYEMPTY -2
diff --git a/gnu/egcs/gcc/objc/Make-lang.in b/gnu/egcs/gcc/objc/Make-lang.in
index 9a84f0f59ca..773116f73ab 100644
--- a/gnu/egcs/gcc/objc/Make-lang.in
+++ b/gnu/egcs/gcc/objc/Make-lang.in
@@ -64,30 +64,29 @@ cc1obj$(exeext): $(P) $(OBJS) $(OBJC_OBJS) $(LIBDEPS)
# Objective C language specific files.
-objc-parse.o : $(srcdir)/objc/objc-parse.c \
+objc-parse.o : objc-parse.c \
$(CONFIG_H) $(TREE_H) $(srcdir)/toplev.h \
$(srcdir)/c-lex.h $(srcdir)/c-tree.h $(srcdir)/input.h \
$(srcdir)/flags.h $(srcdir)/output.h $(srcdir)/objc/objc-act.h system.h
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -I$(srcdir)/objc \
- -c $(srcdir)/objc/objc-parse.c
+ -c objc-parse.c
-$(INTL_TARGETS): $(srcdir)/objc/objc-parse.c
-$(srcdir)/objc/objc-parse.c : $(srcdir)/objc/objc-parse.y
- cd $(srcdir)/objc; \
+$(INTL_TARGETS): objc-parse.c
+objc-parse.c : objc-parse.y
$(BISON) $(BISONFLAGS) -o objc-parse.c objc-parse.y
-$(srcdir)/objc/objc-parse.y: $(srcdir)/c-parse.in
+objc-parse.y: $(srcdir)/c-parse.in
echo '/*WARNING: This file is automatically generated!*/' >tmp-objc-prs.y
sed -e "/^ifc$$/,/^end ifc$$/d" \
-e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
$(srcdir)/c-parse.in >>tmp-objc-prs.y
- $(srcdir)/move-if-change tmp-objc-prs.y $(srcdir)/objc/objc-parse.y
+ $(srcdir)/move-if-change tmp-objc-prs.y objc-parse.y
objc-act.o : $(srcdir)/objc/objc-act.c \
$(CONFIG_H) $(TREE_H) $(RTL_H) system.h \
$(srcdir)/c-tree.h $(srcdir)/c-lex.h $(srcdir)/toplev.h \
$(srcdir)/flags.h $(srcdir)/objc/objc-act.h $(srcdir)/input.h \
- $(srcdir)/function.h $(srcdir)/output.h $(srcdir)/c-parse.h
+ $(srcdir)/function.h $(srcdir)/output.h c-parse.h
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -I$(srcdir)/objc \
-c $(srcdir)/objc/objc-act.c
diff --git a/gnu/egcs/gcc/objc/objc-parse.c b/gnu/egcs/gcc/objc/objc-parse.c
deleted file mode 100644
index b95312d8708..00000000000
--- a/gnu/egcs/gcc/objc/objc-parse.c
+++ /dev/null
@@ -1,5195 +0,0 @@
-
-/* A Bison parser, made from objc-parse.y
- by GNU Bison version 1.25
- */
-
-#define YYBISON 1 /* Identify Bison output. */
-
-#define IDENTIFIER 258
-#define TYPENAME 259
-#define SCSPEC 260
-#define TYPESPEC 261
-#define TYPE_QUAL 262
-#define CONSTANT 263
-#define STRING 264
-#define ELLIPSIS 265
-#define SIZEOF 266
-#define ENUM 267
-#define STRUCT 268
-#define UNION 269
-#define IF 270
-#define ELSE 271
-#define WHILE 272
-#define DO 273
-#define FOR 274
-#define SWITCH 275
-#define CASE 276
-#define DEFAULT 277
-#define BREAK 278
-#define CONTINUE 279
-#define RETURN 280
-#define GOTO 281
-#define ASM_KEYWORD 282
-#define TYPEOF 283
-#define ALIGNOF 284
-#define ATTRIBUTE 285
-#define EXTENSION 286
-#define LABEL 287
-#define REALPART 288
-#define IMAGPART 289
-#define ASSIGN 290
-#define OROR 291
-#define ANDAND 292
-#define EQCOMPARE 293
-#define ARITHCOMPARE 294
-#define LSHIFT 295
-#define RSHIFT 296
-#define UNARY 297
-#define PLUSPLUS 298
-#define MINUSMINUS 299
-#define HYPERUNARY 300
-#define POINTSAT 301
-#define INTERFACE 302
-#define IMPLEMENTATION 303
-#define END 304
-#define SELECTOR 305
-#define DEFS 306
-#define ENCODE 307
-#define CLASSNAME 308
-#define PUBLIC 309
-#define PRIVATE 310
-#define PROTECTED 311
-#define PROTOCOL 312
-#define OBJECTNAME 313
-#define CLASS 314
-#define ALIAS 315
-#define OBJC_STRING 316
-
-#line 33 "objc-parse.y"
-
-#include "config.h"
-#include "system.h"
-#include <setjmp.h>
-
-#include "tree.h"
-#include "input.h"
-#include "c-lex.h"
-#include "c-tree.h"
-#include "flags.h"
-#include "output.h"
-#include "toplev.h"
-
-#ifdef MULTIBYTE_CHARS
-#include <locale.h>
-#endif
-
-#include "objc-act.h"
-
-/* Since parsers are distinct for each language, put the language string
- definition here. */
-char *language_string = "GNU Obj-C";
-
-/* Like YYERROR but do call yyerror. */
-#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
-
-/* Cause the `yydebug' variable to be defined. */
-#define YYDEBUG 1
-
-#line 65 "objc-parse.y"
-typedef union {long itype; tree ttype; enum tree_code code;
- char *filename; int lineno; int ends_in_label; } YYSTYPE;
-#line 193 "objc-parse.y"
-
-/* Number of statements (loosely speaking) and compound statements
- seen so far. */
-static int stmt_count;
-static int compstmt_count;
-
-/* Input file and line number of the end of the body of last simple_if;
- used by the stmt-rule immediately after simple_if returns. */
-static char *if_stmt_file;
-static int if_stmt_line;
-
-/* List of types and structure classes of the current declaration. */
-static tree current_declspecs = NULL_TREE;
-static tree prefix_attributes = NULL_TREE;
-
-/* Stack of saved values of current_declspecs and prefix_attributes. */
-static tree declspec_stack;
-
-/* 1 if we explained undeclared var errors. */
-static int undeclared_variable_notice;
-
-/* Objective-C specific information */
-
-tree objc_interface_context;
-tree objc_implementation_context;
-tree objc_method_context;
-tree objc_ivar_chain;
-tree objc_ivar_context;
-enum tree_code objc_inherit_code;
-int objc_receiver_context;
-int objc_public_flag;
-
-
-/* Tell yyparse how to print a token's value, if yydebug is set. */
-
-#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
-extern void yyprint PROTO ((FILE *, int, YYSTYPE));
-#include <stdio.h>
-
-#ifndef __cplusplus
-#ifndef __STDC__
-#define const
-#endif
-#endif
-
-
-
-#define YYFINAL 955
-#define YYFLAG -32768
-#define YYNTBASE 84
-
-#define YYTRANSLATE(x) ((unsigned)(x) <= 316 ? yytranslate[x] : 311)
-
-static const char 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, 80, 2, 2, 2, 52, 43, 2, 59,
- 76, 50, 48, 81, 49, 58, 51, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 38, 77, 2,
- 36, 2, 37, 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,
- 60, 2, 83, 42, 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, 82, 41, 78, 79, 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,
- 39, 40, 44, 45, 46, 47, 53, 54, 55, 56,
- 57, 61, 62, 63, 64, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75
-};
-
-#if YYDEBUG != 0
-static const short yyprhs[] = { 0,
- 0, 1, 3, 4, 7, 8, 12, 14, 16, 18,
- 24, 27, 31, 36, 41, 44, 47, 50, 53, 55,
- 56, 57, 65, 70, 71, 72, 80, 85, 86, 87,
- 94, 98, 100, 102, 104, 106, 108, 110, 112, 114,
- 116, 118, 120, 122, 123, 125, 127, 131, 133, 136,
- 139, 142, 145, 148, 153, 156, 161, 164, 167, 169,
- 171, 173, 178, 179, 187, 189, 193, 197, 201, 205,
- 209, 213, 217, 221, 225, 229, 233, 237, 238, 243,
- 244, 249, 250, 251, 259, 260, 266, 270, 274, 276,
- 278, 280, 284, 288, 289, 294, 299, 304, 308, 312,
- 315, 318, 320, 322, 324, 326, 328, 330, 333, 335,
- 338, 339, 341, 344, 348, 350, 352, 355, 358, 363,
- 368, 371, 374, 378, 380, 382, 385, 388, 389, 390,
- 395, 400, 404, 408, 411, 414, 417, 420, 424, 425,
- 428, 431, 434, 437, 441, 442, 445, 448, 450, 452,
- 455, 458, 460, 462, 465, 468, 471, 475, 476, 479,
- 481, 483, 485, 488, 491, 493, 498, 503, 505, 507,
- 509, 511, 515, 517, 521, 522, 527, 528, 535, 539,
- 540, 547, 551, 552, 554, 556, 559, 566, 568, 572,
- 573, 575, 580, 587, 592, 594, 596, 598, 600, 602,
- 603, 608, 610, 611, 614, 616, 620, 624, 627, 628,
- 633, 635, 636, 641, 643, 645, 647, 650, 653, 654,
- 655, 661, 662, 663, 669, 671, 673, 677, 681, 686,
- 690, 694, 698, 700, 702, 706, 711, 715, 719, 723,
- 725, 729, 733, 737, 742, 746, 750, 752, 754, 757,
- 759, 762, 764, 767, 768, 776, 782, 785, 786, 794,
- 800, 803, 804, 813, 814, 822, 825, 826, 828, 829,
- 831, 833, 836, 837, 841, 844, 849, 853, 855, 859,
- 861, 863, 866, 868, 872, 877, 884, 890, 892, 896,
- 898, 900, 904, 907, 910, 911, 913, 915, 918, 919,
- 922, 926, 930, 933, 937, 942, 946, 949, 953, 956,
- 960, 962, 964, 967, 970, 971, 973, 976, 977, 978,
- 980, 982, 985, 989, 991, 994, 996, 999, 1006, 1012,
- 1018, 1021, 1024, 1029, 1030, 1035, 1036, 1037, 1041, 1046,
- 1050, 1052, 1054, 1056, 1058, 1061, 1062, 1067, 1069, 1073,
- 1074, 1075, 1083, 1089, 1092, 1093, 1094, 1095, 1108, 1109,
- 1116, 1119, 1122, 1125, 1129, 1136, 1145, 1156, 1169, 1173,
- 1178, 1180, 1182, 1183, 1190, 1194, 1200, 1203, 1207, 1208,
- 1210, 1211, 1213, 1214, 1216, 1218, 1222, 1227, 1229, 1233,
- 1234, 1237, 1240, 1241, 1246, 1249, 1250, 1252, 1254, 1258,
- 1260, 1264, 1269, 1274, 1279, 1284, 1289, 1290, 1293, 1295,
- 1298, 1300, 1304, 1306, 1310, 1312, 1314, 1316, 1318, 1320,
- 1322, 1324, 1326, 1330, 1334, 1339, 1340, 1341, 1352, 1353,
- 1360, 1361, 1362, 1375, 1376, 1385, 1386, 1393, 1396, 1397,
- 1406, 1411, 1412, 1422, 1428, 1429, 1436, 1437, 1439, 1443,
- 1447, 1449, 1451, 1453, 1455, 1456, 1460, 1463, 1467, 1471,
- 1473, 1474, 1476, 1480, 1482, 1486, 1489, 1490, 1491, 1492,
- 1500, 1501, 1502, 1503, 1511, 1512, 1513, 1516, 1518, 1520,
- 1523, 1524, 1528, 1530, 1532, 1533, 1534, 1540, 1541, 1542,
- 1548, 1553, 1555, 1561, 1564, 1565, 1568, 1569, 1571, 1573,
- 1575, 1578, 1581, 1586, 1589, 1592, 1594, 1598, 1601, 1604,
- 1607, 1608, 1611, 1612, 1616, 1618, 1620, 1623, 1625, 1627,
- 1629, 1631, 1633, 1635, 1637, 1639, 1641, 1643, 1645, 1647,
- 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667,
- 1669, 1671, 1673, 1680, 1684, 1690, 1693, 1695, 1697, 1699,
- 1702, 1704, 1708, 1711, 1713, 1715, 1716, 1717, 1724, 1726,
- 1728, 1730, 1733, 1736, 1738, 1743, 1748
-};
-
-static const short yyrhs[] = { -1,
- 85, 0, 0, 86, 88, 0, 0, 85, 87, 88,
- 0, 90, 0, 89, 0, 242, 0, 27, 59, 99,
- 76, 77, 0, 241, 88, 0, 123, 137, 77, 0,
- 130, 123, 137, 77, 0, 126, 123, 136, 77, 0,
- 130, 77, 0, 126, 77, 0, 1, 77, 0, 1,
- 78, 0, 77, 0, 0, 0, 126, 123, 165, 91,
- 117, 92, 199, 0, 126, 123, 165, 1, 0, 0,
- 0, 130, 123, 168, 93, 117, 94, 199, 0, 130,
- 123, 168, 1, 0, 0, 0, 123, 168, 95, 117,
- 96, 199, 0, 123, 168, 1, 0, 3, 0, 4,
- 0, 72, 0, 67, 0, 43, 0, 49, 0, 48,
- 0, 54, 0, 55, 0, 79, 0, 80, 0, 101,
- 0, 0, 101, 0, 107, 0, 101, 81, 107, 0,
- 113, 0, 50, 105, 0, 241, 105, 0, 98, 105,
- 0, 40, 97, 0, 103, 102, 0, 103, 59, 186,
- 76, 0, 104, 102, 0, 104, 59, 186, 76, 0,
- 33, 105, 0, 34, 105, 0, 11, 0, 29, 0,
- 102, 0, 59, 186, 76, 105, 0, 0, 59, 186,
- 76, 82, 106, 151, 78, 0, 105, 0, 107, 48,
- 107, 0, 107, 49, 107, 0, 107, 50, 107, 0,
- 107, 51, 107, 0, 107, 52, 107, 0, 107, 46,
- 107, 0, 107, 47, 107, 0, 107, 45, 107, 0,
- 107, 44, 107, 0, 107, 43, 107, 0, 107, 41,
- 107, 0, 107, 42, 107, 0, 0, 107, 40, 108,
- 107, 0, 0, 107, 39, 109, 107, 0, 0, 0,
- 107, 37, 110, 99, 38, 111, 107, 0, 0, 107,
- 37, 112, 38, 107, 0, 107, 36, 107, 0, 107,
- 35, 107, 0, 3, 0, 8, 0, 115, 0, 59,
- 99, 76, 0, 59, 1, 76, 0, 0, 59, 114,
- 201, 76, 0, 113, 59, 100, 76, 0, 113, 60,
- 99, 83, 0, 113, 58, 97, 0, 113, 57, 97,
- 0, 113, 54, 0, 113, 55, 0, 302, 0, 308,
- 0, 309, 0, 310, 0, 116, 0, 9, 0, 115,
- 9, 0, 75, 0, 116, 75, 0, 0, 119, 0,
- 119, 10, 0, 206, 207, 120, 0, 118, 0, 194,
- 0, 119, 118, 0, 118, 194, 0, 128, 123, 136,
- 77, 0, 131, 123, 137, 77, 0, 128, 77, 0,
- 131, 77, 0, 206, 207, 125, 0, 121, 0, 194,
- 0, 122, 121, 0, 121, 194, 0, 0, 0, 126,
- 123, 136, 77, 0, 130, 123, 137, 77, 0, 126,
- 123, 159, 0, 130, 123, 162, 0, 126, 77, 0,
- 130, 77, 0, 241, 125, 0, 134, 127, 0, 130,
- 134, 127, 0, 0, 127, 135, 0, 127, 5, 0,
- 127, 144, 0, 134, 129, 0, 131, 134, 129, 0,
- 0, 129, 135, 0, 129, 5, 0, 131, 0, 144,
- 0, 130, 131, 0, 130, 144, 0, 7, 0, 5,
- 0, 131, 7, 0, 131, 5, 0, 134, 133, 0,
- 188, 134, 133, 0, 0, 133, 135, 0, 6, 0,
- 172, 0, 4, 0, 67, 258, 0, 72, 258, 0,
- 259, 0, 28, 59, 99, 76, 0, 28, 59, 186,
- 76, 0, 6, 0, 7, 0, 172, 0, 139, 0,
- 136, 81, 139, 0, 141, 0, 137, 81, 139, 0,
- 0, 27, 59, 115, 76, 0, 0, 165, 138, 143,
- 36, 140, 149, 0, 165, 138, 143, 0, 0, 168,
- 138, 143, 36, 142, 149, 0, 168, 138, 143, 0,
- 0, 144, 0, 145, 0, 144, 145, 0, 30, 59,
- 59, 146, 76, 76, 0, 147, 0, 146, 81, 147,
- 0, 0, 148, 0, 148, 59, 3, 76, 0, 148,
- 59, 3, 81, 101, 76, 0, 148, 59, 100, 76,
- 0, 97, 0, 5, 0, 6, 0, 7, 0, 107,
- 0, 0, 82, 150, 151, 78, 0, 1, 0, 0,
- 152, 177, 0, 153, 0, 152, 81, 153, 0, 157,
- 36, 155, 0, 158, 155, 0, 0, 97, 38, 154,
- 155, 0, 155, 0, 0, 82, 156, 151, 78, 0,
- 107, 0, 1, 0, 158, 0, 157, 158, 0, 58,
- 97, 0, 0, 0, 165, 160, 117, 161, 201, 0,
- 0, 0, 168, 163, 117, 164, 201, 0, 166, 0,
- 168, 0, 59, 166, 76, 0, 166, 59, 236, 0,
- 166, 60, 99, 83, 0, 166, 60, 83, 0, 50,
- 189, 166, 0, 144, 124, 166, 0, 4, 0, 72,
- 0, 167, 59, 236, 0, 167, 60, 99, 83, 0,
- 167, 60, 83, 0, 50, 189, 167, 0, 144, 124,
- 167, 0, 4, 0, 168, 59, 236, 0, 59, 168,
- 76, 0, 50, 189, 168, 0, 168, 60, 99, 83,
- 0, 168, 60, 83, 0, 144, 124, 168, 0, 3,
- 0, 13, 0, 13, 144, 0, 14, 0, 14, 144,
- 0, 12, 0, 12, 144, 0, 0, 169, 97, 82,
- 173, 179, 78, 143, 0, 169, 82, 179, 78, 143,
- 0, 169, 97, 0, 0, 170, 97, 82, 174, 179,
- 78, 143, 0, 170, 82, 179, 78, 143, 0, 170,
- 97, 0, 0, 171, 97, 82, 175, 184, 178, 78,
- 143, 0, 0, 171, 82, 176, 184, 178, 78, 143,
- 0, 171, 97, 0, 0, 81, 0, 0, 81, 0,
- 180, 0, 180, 181, 0, 0, 180, 181, 77, 0,
- 180, 77, 0, 65, 59, 67, 76, 0, 132, 123,
- 182, 0, 132, 0, 188, 123, 182, 0, 188, 0,
- 1, 0, 241, 181, 0, 183, 0, 182, 81, 183,
- 0, 206, 207, 165, 143, 0, 206, 207, 165, 38,
- 107, 143, 0, 206, 207, 38, 107, 143, 0, 185,
- 0, 184, 81, 185, 0, 1, 0, 97, 0, 97,
- 36, 107, 0, 132, 187, 0, 188, 187, 0, 0,
- 190, 0, 7, 0, 188, 7, 0, 0, 189, 7,
- 0, 59, 190, 76, 0, 50, 189, 190, 0, 50,
- 189, 0, 190, 59, 229, 0, 190, 60, 99, 83,
- 0, 190, 60, 83, 0, 59, 229, 0, 60, 99,
- 83, 0, 60, 83, 0, 144, 124, 190, 0, 192,
- 0, 209, 0, 192, 209, 0, 192, 194, 0, 0,
- 191, 0, 1, 77, 0, 0, 0, 197, 0, 198,
- 0, 197, 198, 0, 32, 240, 77, 0, 201, 0,
- 1, 201, 0, 82, 0, 200, 78, 0, 200, 195,
- 196, 122, 193, 78, 0, 200, 195, 196, 1, 78,
- 0, 200, 195, 196, 191, 78, 0, 203, 208, 0,
- 203, 1, 0, 15, 59, 99, 76, 0, 0, 18,
- 205, 208, 17, 0, 0, 0, 206, 207, 211, 0,
- 206, 207, 222, 208, 0, 206, 207, 210, 0, 211,
- 0, 222, 0, 201, 0, 219, 0, 99, 77, 0,
- 0, 202, 16, 212, 208, 0, 202, 0, 202, 16,
- 1, 0, 0, 0, 17, 213, 59, 99, 76, 214,
- 208, 0, 204, 59, 99, 76, 77, 0, 204, 1,
- 0, 0, 0, 0, 19, 59, 224, 77, 215, 224,
- 77, 216, 224, 76, 217, 208, 0, 0, 20, 59,
- 99, 76, 218, 208, 0, 23, 77, 0, 24, 77,
- 0, 25, 77, 0, 25, 99, 77, 0, 27, 223,
- 59, 99, 76, 77, 0, 27, 223, 59, 99, 38,
- 225, 76, 77, 0, 27, 223, 59, 99, 38, 225,
- 38, 225, 76, 77, 0, 27, 223, 59, 99, 38,
- 225, 38, 225, 38, 228, 76, 77, 0, 26, 97,
- 77, 0, 26, 50, 99, 77, 0, 77, 0, 220,
- 0, 0, 19, 59, 113, 76, 221, 208, 0, 21,
- 107, 38, 0, 21, 107, 10, 107, 38, 0, 22,
- 38, 0, 97, 38, 143, 0, 0, 7, 0, 0,
- 99, 0, 0, 226, 0, 227, 0, 226, 81, 227,
- 0, 9, 59, 99, 76, 0, 115, 0, 228, 81,
- 115, 0, 0, 230, 231, 0, 233, 76, 0, 0,
- 234, 77, 232, 231, 0, 1, 76, 0, 0, 10,
- 0, 234, 0, 234, 81, 10, 0, 235, 0, 234,
- 81, 235, 0, 126, 123, 167, 143, 0, 126, 123,
- 168, 143, 0, 126, 123, 187, 143, 0, 130, 123,
- 168, 143, 0, 130, 123, 187, 143, 0, 0, 237,
- 238, 0, 231, 0, 239, 76, 0, 3, 0, 239,
- 81, 3, 0, 97, 0, 240, 81, 97, 0, 31,
- 0, 246, 0, 244, 0, 245, 0, 256, 0, 266,
- 0, 63, 0, 97, 0, 243, 81, 97, 0, 73,
- 243, 77, 0, 74, 97, 97, 77, 0, 0, 0,
- 61, 97, 258, 82, 247, 260, 78, 248, 273, 63,
- 0, 0, 61, 97, 258, 249, 273, 63, 0, 0,
- 0, 61, 97, 38, 97, 258, 82, 250, 260, 78,
- 251, 273, 63, 0, 0, 61, 97, 38, 97, 258,
- 252, 273, 63, 0, 0, 62, 97, 82, 253, 260,
- 78, 0, 62, 97, 0, 0, 62, 97, 38, 97,
- 82, 254, 260, 78, 0, 62, 97, 38, 97, 0,
- 0, 61, 97, 59, 97, 76, 258, 255, 273, 63,
- 0, 62, 97, 59, 97, 76, 0, 0, 71, 97,
- 258, 257, 273, 63, 0, 0, 259, 0, 45, 243,
- 45, 0, 260, 261, 262, 0, 262, 0, 69, 0,
- 70, 0, 68, 0, 0, 262, 263, 77, 0, 262,
- 77, 0, 132, 123, 264, 0, 188, 123, 264, 0,
- 1, 0, 0, 265, 0, 264, 81, 265, 0, 165,
- 0, 165, 38, 107, 0, 38, 107, 0, 0, 0,
- 0, 48, 267, 283, 268, 284, 269, 199, 0, 0,
- 0, 0, 49, 270, 283, 271, 284, 272, 199, 0,
- 0, 0, 274, 275, 0, 278, 0, 89, 0, 275,
- 278, 0, 0, 275, 276, 89, 0, 77, 0, 1,
- 0, 0, 0, 48, 279, 283, 280, 277, 0, 0,
- 0, 49, 281, 283, 282, 277, 0, 59, 186, 76,
- 292, 0, 292, 0, 59, 186, 76, 293, 290, 0,
- 293, 290, 0, 0, 77, 285, 0, 0, 286, 0,
- 287, 0, 194, 0, 286, 287, 0, 287, 194, 0,
- 126, 123, 288, 77, 0, 126, 77, 0, 130, 77,
- 0, 289, 0, 288, 81, 289, 0, 167, 143, 0,
- 168, 143, 0, 187, 143, 0, 0, 81, 10, 0,
- 0, 81, 291, 233, 0, 294, 0, 296, 0, 293,
- 296, 0, 3, 0, 4, 0, 72, 0, 295, 0,
- 12, 0, 13, 0, 14, 0, 15, 0, 16, 0,
- 17, 0, 18, 0, 19, 0, 20, 0, 21, 0,
- 22, 0, 23, 0, 24, 0, 25, 0, 26, 0,
- 27, 0, 11, 0, 28, 0, 29, 0, 6, 0,
- 7, 0, 294, 38, 59, 186, 76, 97, 0, 294,
- 38, 97, 0, 38, 59, 186, 76, 97, 0, 38,
- 97, 0, 294, 0, 298, 0, 300, 0, 298, 300,
- 0, 101, 0, 294, 38, 299, 0, 38, 299, 0,
- 99, 0, 67, 0, 0, 0, 60, 303, 301, 304,
- 297, 83, 0, 294, 0, 306, 0, 307, 0, 306,
- 307, 0, 294, 38, 0, 38, 0, 64, 59, 305,
- 76, 0, 71, 59, 97, 76, 0, 66, 59, 186,
- 76, 0
-};
-
-#endif
-
-#if YYDEBUG != 0
-static const short yyrline[] = { 0,
- 233, 238, 252, 254, 254, 255, 257, 259, 260, 261,
- 269, 273, 284, 289, 294, 296, 298, 299, 300, 305,
- 312, 314, 319, 324, 330, 332, 337, 342, 348, 350,
- 355, 362, 364, 365, 366, 369, 371, 373, 375, 377,
- 379, 381, 385, 389, 392, 395, 398, 402, 404, 407,
- 410, 414, 442, 448, 451, 454, 457, 459, 463, 467,
- 471, 473, 476, 480, 507, 509, 511, 513, 515, 517,
- 519, 521, 523, 525, 527, 529, 531, 533, 537, 539,
- 543, 545, 548, 552, 554, 561, 564, 572, 583, 743,
- 744, 746, 752, 754, 768, 791, 793, 795, 807, 821,
- 823, 825, 827, 829, 831, 833, 838, 840, 846, 848,
- 852, 854, 855, 865, 870, 872, 873, 874, 881, 887,
- 892, 895, 903, 908, 910, 911, 912, 919, 930, 934,
- 940, 945, 950, 955, 957, 959, 968, 971, 975, 977,
- 979, 984, 988, 991, 995, 998, 1000, 1012, 1015, 1017,
- 1019, 1023, 1027, 1029, 1032, 1045, 1048, 1052, 1054, 1062,
- 1063, 1064, 1068, 1070, 1075, 1077, 1079, 1085, 1086, 1087,
- 1090, 1092, 1095, 1097, 1100, 1103, 1109, 1116, 1118, 1125,
- 1132, 1135, 1142, 1145, 1149, 1152, 1156, 1161, 1164, 1168,
- 1171, 1173, 1175, 1177, 1184, 1186, 1187, 1188, 1193, 1195,
- 1200, 1208, 1213, 1217, 1220, 1222, 1227, 1229, 1230, 1233,
- 1233, 1236, 1239, 1241, 1243, 1246, 1248, 1251, 1259, 1270,
- 1278, 1282, 1293, 1301, 1308, 1310, 1315, 1318, 1323, 1325,
- 1327, 1334, 1336, 1337, 1345, 1351, 1353, 1355, 1362, 1364,
- 1370, 1376, 1378, 1380, 1382, 1389, 1391, 1394, 1397, 1401,
- 1404, 1408, 1411, 1415, 1420, 1422, 1426, 1428, 1430, 1432,
- 1436, 1438, 1441, 1444, 1447, 1450, 1454, 1456, 1459, 1461,
- 1466, 1469, 1474, 1476, 1478, 1482, 1506, 1513, 1518, 1524,
- 1529, 1531, 1536, 1538, 1542, 1546, 1550, 1560, 1562, 1567,
- 1572, 1575, 1579, 1582, 1586, 1589, 1592, 1595, 1599, 1602,
- 1606, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1628,
- 1636, 1644, 1646, 1648, 1652, 1654, 1657, 1660, 1673, 1675,
- 1680, 1682, 1685, 1699, 1702, 1705, 1707, 1709, 1717, 1725,
- 1736, 1741, 1744, 1758, 1767, 1771, 1775, 1779, 1785, 1789,
- 1794, 1797, 1802, 1805, 1806, 1823, 1828, 1831, 1843, 1845,
- 1855, 1865, 1866, 1874, 1877, 1889, 1893, 1910, 1920, 1929,
- 1934, 1939, 1944, 1948, 1952, 1963, 1970, 1977, 1984, 1995,
- 2001, 2004, 2009, 2032, 2066, 2097, 2128, 2143, 2157, 2161,
- 2165, 2168, 2173, 2175, 2178, 2180, 2184, 2189, 2192, 2198,
- 2203, 2208, 2210, 2219, 2220, 2226, 2228, 2238, 2240, 2244,
- 2247, 2253, 2263, 2272, 2281, 2291, 2305, 2310, 2315, 2317,
- 2326, 2329, 2334, 2337, 2341, 2349, 2351, 2352, 2353, 2354,
- 2355, 2369, 2372, 2376, 2382, 2388, 2395, 2400, 2406, 2413,
- 2419, 2425, 2430, 2436, 2443, 2449, 2455, 2461, 2469, 2475,
- 2481, 2489, 2496, 2502, 2511, 2518, 2526, 2531, 2534, 2544,
- 2546, 2549, 2551, 2552, 2555, 2560, 2561, 2578, 2585, 2591,
- 2595, 2598, 2599, 2602, 2610, 2616, 2625, 2635, 2642, 2646,
- 2651, 2660, 2667, 2671, 2681, 2683, 2684, 2686, 2688, 2689,
- 2690, 2691, 2693, 2695, 2698, 2706, 2713, 2713, 2720, 2726,
- 2728, 2734, 2739, 2744, 2753, 2755, 2761, 2763, 2766, 2768,
- 2769, 2770, 2773, 2779, 2781, 2785, 2788, 2795, 2801, 2806,
- 2813, 2818, 2823, 2828, 2835, 2839, 2842, 2848, 2850, 2851,
- 2852, 2855, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864,
- 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874,
- 2875, 2875, 2878, 2884, 2889, 2894, 2900, 2902, 2905, 2907,
- 2914, 2926, 2931, 2937, 2939, 2945, 2949, 2950, 2956, 2958,
- 2961, 2963, 2969, 2974, 2980, 2987, 2996
-};
-#endif
-
-
-#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
-
-static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
-"TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
-"ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
-"BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ATTRIBUTE",
-"EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'","OROR",
-"ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT","'+'",
-"'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
-"'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
-"CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
-"OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
-"@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
-"unop","expr","exprlist","nonnull_exprlist","unary_expr","sizeof","alignof",
-"cast_expr","@9","expr_no_commas","@10","@11","@12","@13","@14","primary","@15",
-"string","objc_string","old_style_parm_decls","lineno_datadecl","datadecls",
-"datadecl","lineno_decl","decls","setspecs","setattrs","decl","typed_declspecs",
-"reserved_declspecs","typed_declspecs_no_prefix_attr","reserved_declspecs_no_prefix_attr",
-"declmods","declmods_no_prefix_attr","typed_typespecs","reserved_typespecquals",
-"typespec","typespecqual_reserved","initdecls","notype_initdecls","maybeasm",
-"initdcl","@16","notype_initdcl","@17","maybe_attribute","attributes","attribute",
-"attribute_list","attrib","any_word","init","@18","initlist_maybe_comma","initlist1",
-"initelt","@19","initval","@20","designator_list","designator","nested_function",
-"@21","@22","notype_nested_function","@23","@24","declarator","after_type_declarator",
-"parm_declarator","notype_declarator","struct_head","union_head","enum_head",
-"structsp","@25","@26","@27","@28","maybecomma","maybecomma_warn","component_decl_list",
-"component_decl_list2","component_decl","components","component_declarator",
-"enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
-"absdcl1","stmts","lineno_stmt_or_labels","xstmts","errstmt","pushlevel","maybe_label_decls",
-"label_decls","label_decl","compstmt_or_error","compstmt_start","compstmt","simple_if",
-"if_prefix","do_stmt_start","@29","save_filename","save_lineno","lineno_labeled_stmt",
-"lineno_stmt_or_label","stmt_or_label","stmt","@30","@31","@32","@33","@34",
-"@35","@36","all_iter_stmt","all_iter_stmt_simple","@37","label","maybe_type_qual",
-"xexpr","asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist",
-"@38","parmlist_1","@39","parmlist_2","parms","parm","parmlist_or_identifiers",
-"@40","parmlist_or_identifiers_1","identifiers","identifiers_or_typenames","extension",
-"objcdef","identifier_list","classdecl","aliasdecl","classdef","@41","@42","@43",
-"@44","@45","@46","@47","@48","@49","protocoldef","@50","protocolrefs","non_empty_protocolrefs",
-"ivar_decl_list","visibility_spec","ivar_decls","ivar_decl","ivars","ivar_declarator",
-"methoddef","@51","@52","@53","@54","@55","@56","methodprotolist","@57","methodprotolist2",
-"@58","semi_or_error","methodproto","@59","@60","@61","@62","methoddecl","optarglist",
-"myxdecls","mydecls","mydecl","myparms","myparm","optparmlist","@63","unaryselector",
-"keywordselector","selector","reservedwords","keyworddecl","messageargs","keywordarglist",
-"keywordexpr","keywordarg","receiver","objcmessageexpr","@64","@65","selectorarg",
-"keywordnamelist","keywordname","objcselectorexpr","objcprotocolexpr","objcencodeexpr", NULL
-};
-#endif
-
-static const short yyr1[] = { 0,
- 84, 84, 86, 85, 87, 85, 88, 88, 88, 88,
- 88, 89, 89, 89, 89, 89, 89, 89, 89, 91,
- 92, 90, 90, 93, 94, 90, 90, 95, 96, 90,
- 90, 97, 97, 97, 97, 98, 98, 98, 98, 98,
- 98, 98, 99, 100, 100, 101, 101, 102, 102, 102,
- 102, 102, 102, 102, 102, 102, 102, 102, 103, 104,
- 105, 105, 106, 105, 107, 107, 107, 107, 107, 107,
- 107, 107, 107, 107, 107, 107, 107, 108, 107, 109,
- 107, 110, 111, 107, 112, 107, 107, 107, 113, 113,
- 113, 113, 113, 114, 113, 113, 113, 113, 113, 113,
- 113, 113, 113, 113, 113, 113, 115, 115, 116, 116,
- 117, 117, 117, 118, 119, 119, 119, 119, 120, 120,
- 120, 120, 121, 122, 122, 122, 122, 123, 124, 125,
- 125, 125, 125, 125, 125, 125, 126, 126, 127, 127,
- 127, 127, 128, 128, 129, 129, 129, 130, 130, 130,
- 130, 131, 131, 131, 131, 132, 132, 133, 133, 134,
- 134, 134, 134, 134, 134, 134, 134, 135, 135, 135,
- 136, 136, 137, 137, 138, 138, 140, 139, 139, 142,
- 141, 141, 143, 143, 144, 144, 145, 146, 146, 147,
- 147, 147, 147, 147, 148, 148, 148, 148, 149, 150,
- 149, 149, 151, 151, 152, 152, 153, 153, 154, 153,
- 153, 156, 155, 155, 155, 157, 157, 158, 160, 161,
- 159, 163, 164, 162, 165, 165, 166, 166, 166, 166,
- 166, 166, 166, 166, 167, 167, 167, 167, 167, 167,
- 168, 168, 168, 168, 168, 168, 168, 169, 169, 170,
- 170, 171, 171, 173, 172, 172, 172, 174, 172, 172,
- 172, 175, 172, 176, 172, 172, 177, 177, 178, 178,
- 179, 179, 180, 180, 180, 180, 181, 181, 181, 181,
- 181, 181, 182, 182, 183, 183, 183, 184, 184, 184,
- 185, 185, 186, 186, 187, 187, 188, 188, 189, 189,
- 190, 190, 190, 190, 190, 190, 190, 190, 190, 190,
- 191, 192, 192, 192, 193, 193, 194, 195, 196, 196,
- 197, 197, 198, 199, 199, 200, 201, 201, 201, 201,
- 202, 202, 203, 205, 204, 206, 207, 208, 208, 209,
- 210, 210, 211, 211, 211, 212, 211, 211, 211, 213,
- 214, 211, 211, 211, 215, 216, 217, 211, 218, 211,
- 211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
- 211, 219, 221, 220, 222, 222, 222, 222, 223, 223,
- 224, 224, 225, 225, 226, 226, 227, 228, 228, 230,
- 229, 231, 232, 231, 231, 233, 233, 233, 233, 234,
- 234, 235, 235, 235, 235, 235, 237, 236, 238, 238,
- 239, 239, 240, 240, 241, 242, 242, 242, 242, 242,
- 242, 243, 243, 244, 245, 247, 248, 246, 249, 246,
- 250, 251, 246, 252, 246, 253, 246, 246, 254, 246,
- 246, 255, 246, 246, 257, 256, 258, 258, 259, 260,
- 260, 261, 261, 261, 262, 262, 262, 263, 263, 263,
- 264, 264, 264, 265, 265, 265, 267, 268, 269, 266,
- 270, 271, 272, 266, 273, 274, 273, 275, 275, 275,
- 276, 275, 277, 277, 279, 280, 278, 281, 282, 278,
- 283, 283, 283, 283, 284, 284, 285, 285, 286, 286,
- 286, 286, 287, 287, 287, 288, 288, 289, 289, 289,
- 290, 290, 291, 290, 292, 293, 293, 294, 294, 294,
- 294, 295, 295, 295, 295, 295, 295, 295, 295, 295,
- 295, 295, 295, 295, 295, 295, 295, 295, 295, 295,
- 295, 295, 296, 296, 296, 296, 297, 297, 298, 298,
- 299, 300, 300, 301, 301, 303, 304, 302, 305, 305,
- 306, 306, 307, 307, 308, 309, 310
-};
-
-static const short yyr2[] = { 0,
- 0, 1, 0, 2, 0, 3, 1, 1, 1, 5,
- 2, 3, 4, 4, 2, 2, 2, 2, 1, 0,
- 0, 7, 4, 0, 0, 7, 4, 0, 0, 6,
- 3, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 0, 1, 1, 3, 1, 2, 2,
- 2, 2, 2, 4, 2, 4, 2, 2, 1, 1,
- 1, 4, 0, 7, 1, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 0, 4, 0,
- 4, 0, 0, 7, 0, 5, 3, 3, 1, 1,
- 1, 3, 3, 0, 4, 4, 4, 3, 3, 2,
- 2, 1, 1, 1, 1, 1, 1, 2, 1, 2,
- 0, 1, 2, 3, 1, 1, 2, 2, 4, 4,
- 2, 2, 3, 1, 1, 2, 2, 0, 0, 4,
- 4, 3, 3, 2, 2, 2, 2, 3, 0, 2,
- 2, 2, 2, 3, 0, 2, 2, 1, 1, 2,
- 2, 1, 1, 2, 2, 2, 3, 0, 2, 1,
- 1, 1, 2, 2, 1, 4, 4, 1, 1, 1,
- 1, 3, 1, 3, 0, 4, 0, 6, 3, 0,
- 6, 3, 0, 1, 1, 2, 6, 1, 3, 0,
- 1, 4, 6, 4, 1, 1, 1, 1, 1, 0,
- 4, 1, 0, 2, 1, 3, 3, 2, 0, 4,
- 1, 0, 4, 1, 1, 1, 2, 2, 0, 0,
- 5, 0, 0, 5, 1, 1, 3, 3, 4, 3,
- 3, 3, 1, 1, 3, 4, 3, 3, 3, 1,
- 3, 3, 3, 4, 3, 3, 1, 1, 2, 1,
- 2, 1, 2, 0, 7, 5, 2, 0, 7, 5,
- 2, 0, 8, 0, 7, 2, 0, 1, 0, 1,
- 1, 2, 0, 3, 2, 4, 3, 1, 3, 1,
- 1, 2, 1, 3, 4, 6, 5, 1, 3, 1,
- 1, 3, 2, 2, 0, 1, 1, 2, 0, 2,
- 3, 3, 2, 3, 4, 3, 2, 3, 2, 3,
- 1, 1, 2, 2, 0, 1, 2, 0, 0, 1,
- 1, 2, 3, 1, 2, 1, 2, 6, 5, 5,
- 2, 2, 4, 0, 4, 0, 0, 3, 4, 3,
- 1, 1, 1, 1, 2, 0, 4, 1, 3, 0,
- 0, 7, 5, 2, 0, 0, 0, 12, 0, 6,
- 2, 2, 2, 3, 6, 8, 10, 12, 3, 4,
- 1, 1, 0, 6, 3, 5, 2, 3, 0, 1,
- 0, 1, 0, 1, 1, 3, 4, 1, 3, 0,
- 2, 2, 0, 4, 2, 0, 1, 1, 3, 1,
- 3, 4, 4, 4, 4, 4, 0, 2, 1, 2,
- 1, 3, 1, 3, 1, 1, 1, 1, 1, 1,
- 1, 1, 3, 3, 4, 0, 0, 10, 0, 6,
- 0, 0, 12, 0, 8, 0, 6, 2, 0, 8,
- 4, 0, 9, 5, 0, 6, 0, 1, 3, 3,
- 1, 1, 1, 1, 0, 3, 2, 3, 3, 1,
- 0, 1, 3, 1, 3, 2, 0, 0, 0, 7,
- 0, 0, 0, 7, 0, 0, 2, 1, 1, 2,
- 0, 3, 1, 1, 0, 0, 5, 0, 0, 5,
- 4, 1, 5, 2, 0, 2, 0, 1, 1, 1,
- 2, 2, 4, 2, 2, 1, 3, 2, 2, 2,
- 0, 2, 0, 3, 1, 1, 2, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 6, 3, 5, 2, 1, 1, 1, 2,
- 1, 3, 2, 1, 1, 0, 0, 6, 1, 1,
- 1, 2, 2, 1, 4, 4, 4
-};
-
-static const short yydefact[] = { 3,
- 5, 0, 0, 0, 162, 153, 160, 152, 252, 248,
- 250, 0, 0, 0, 415, 0, 467, 471, 0, 0,
- 421, 447, 0, 447, 0, 0, 19, 4, 8, 7,
- 0, 128, 128, 148, 139, 149, 185, 0, 0, 0,
- 161, 0, 9, 417, 418, 416, 419, 165, 420, 6,
- 17, 18, 253, 249, 251, 0, 0, 0, 32, 33,
- 35, 34, 422, 0, 0, 0, 447, 438, 163, 448,
- 447, 164, 0, 0, 247, 299, 0, 0, 173, 129,
- 0, 16, 0, 15, 0, 150, 139, 151, 155, 154,
- 137, 186, 273, 257, 273, 261, 264, 266, 11, 89,
- 90, 107, 59, 60, 0, 0, 0, 36, 38, 37,
- 0, 39, 40, 0, 556, 0, 0, 0, 109, 41,
- 42, 0, 0, 43, 61, 0, 0, 65, 46, 48,
- 91, 106, 0, 102, 103, 104, 105, 297, 0, 295,
- 158, 0, 295, 190, 449, 0, 518, 519, 541, 542,
- 538, 522, 523, 524, 525, 526, 527, 528, 529, 530,
- 531, 532, 533, 534, 535, 536, 537, 539, 540, 0,
- 0, 520, 468, 492, 511, 515, 521, 516, 472, 0,
- 0, 429, 0, 0, 436, 445, 424, 0, 0, 0,
- 12, 0, 0, 31, 0, 407, 0, 0, 183, 233,
- 299, 0, 234, 0, 171, 129, 0, 225, 226, 0,
- 0, 138, 141, 168, 169, 140, 142, 170, 0, 0,
- 0, 254, 0, 258, 0, 262, 57, 58, 52, 49,
- 0, 0, 0, 0, 0, 0, 0, 0, 51, 0,
- 0, 0, 53, 0, 55, 0, 0, 82, 80, 78,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 100, 101, 0, 0, 44, 0, 108, 110,
- 50, 166, 299, 390, 0, 129, 293, 296, 156, 167,
- 298, 158, 294, 196, 197, 198, 195, 0, 188, 191,
- 423, 0, 546, 0, 495, 513, 494, 0, 517, 0,
- 495, 447, 0, 426, 476, 441, 0, 455, 476, 425,
- 300, 243, 242, 174, 175, 246, 0, 241, 0, 245,
- 0, 0, 29, 0, 336, 116, 337, 182, 184, 0,
- 0, 14, 0, 0, 23, 0, 183, 407, 0, 13,
- 27, 0, 0, 183, 281, 275, 128, 272, 128, 0,
- 273, 183, 273, 290, 291, 269, 288, 0, 93, 92,
- 326, 318, 0, 0, 555, 554, 557, 564, 559, 0,
- 560, 561, 0, 0, 10, 47, 0, 0, 88, 87,
- 0, 0, 0, 0, 76, 77, 75, 74, 73, 71,
- 72, 66, 67, 68, 69, 70, 99, 98, 0, 45,
- 0, 303, 0, 307, 0, 309, 0, 0, 390, 0,
- 159, 157, 0, 190, 44, 0, 0, 0, 469, 512,
- 396, 0, 544, 473, 434, 447, 455, 0, 0, 439,
- 444, 0, 0, 0, 0, 0, 411, 397, 128, 128,
- 409, 0, 398, 400, 408, 0, 244, 317, 0, 118,
- 113, 117, 0, 180, 231, 227, 172, 232, 21, 179,
- 228, 230, 0, 25, 0, 256, 336, 274, 336, 282,
- 0, 260, 0, 0, 270, 0, 269, 327, 319, 95,
- 63, 62, 0, 563, 565, 0, 562, 567, 566, 54,
- 56, 0, 0, 81, 79, 96, 97, 302, 301, 391,
- 308, 310, 304, 306, 0, 187, 189, 89, 0, 0,
- 491, 511, 128, 0, 500, 496, 498, 0, 0, 514,
- 398, 0, 0, 431, 476, 442, 0, 430, 485, 488,
- 479, 0, 128, 128, 481, 478, 455, 454, 452, 453,
- 437, 455, 460, 457, 128, 128, 0, 446, 176, 395,
- 295, 295, 392, 393, 0, 410, 0, 0, 30, 324,
- 114, 128, 128, 145, 0, 0, 177, 229, 0, 276,
- 277, 283, 337, 279, 183, 183, 292, 289, 183, 0,
- 0, 0, 320, 321, 0, 0, 547, 0, 548, 549,
- 83, 86, 305, 192, 0, 194, 545, 493, 504, 295,
- 505, 501, 502, 470, 0, 474, 455, 0, 476, 427,
- 0, 0, 175, 0, 0, 0, 480, 0, 0, 461,
- 461, 456, 240, 299, 390, 129, 183, 183, 183, 299,
- 129, 183, 183, 0, 399, 401, 412, 325, 121, 0,
- 122, 0, 145, 143, 202, 200, 199, 181, 22, 0,
- 26, 336, 0, 255, 259, 265, 183, 413, 0, 0,
- 0, 336, 0, 0, 125, 337, 312, 322, 215, 89,
- 0, 212, 0, 214, 0, 267, 205, 211, 0, 0,
- 551, 553, 0, 558, 0, 550, 0, 0, 183, 183,
- 183, 0, 506, 543, 0, 435, 0, 476, 486, 489,
- 482, 440, 0, 464, 458, 462, 459, 303, 0, 407,
- 0, 402, 403, 404, 303, 0, 405, 406, 394, 0,
- 0, 144, 147, 146, 0, 178, 284, 0, 183, 263,
- 323, 0, 329, 127, 126, 316, 0, 330, 314, 337,
- 313, 0, 218, 0, 209, 64, 0, 204, 0, 217,
- 208, 552, 84, 193, 508, 509, 510, 503, 295, 432,
- 443, 0, 0, 0, 466, 0, 0, 238, 239, 235,
- 237, 0, 119, 120, 0, 183, 0, 285, 414, 328,
- 0, 162, 0, 350, 334, 0, 0, 0, 0, 0,
- 0, 0, 0, 379, 447, 447, 371, 0, 0, 123,
- 128, 128, 343, 348, 0, 0, 340, 341, 344, 372,
- 342, 0, 0, 0, 206, 207, 507, 476, 428, 484,
- 483, 487, 490, 465, 463, 236, 201, 287, 183, 0,
- 0, 336, 381, 0, 0, 377, 361, 362, 363, 0,
- 0, 0, 380, 0, 183, 345, 134, 0, 135, 0,
- 0, 332, 337, 331, 354, 0, 136, 213, 210, 0,
- 286, 0, 0, 0, 382, 48, 0, 0, 0, 375,
- 364, 0, 369, 0, 378, 0, 132, 219, 0, 133,
- 222, 349, 336, 0, 0, 433, 333, 0, 335, 373,
- 355, 359, 0, 370, 0, 130, 0, 131, 0, 347,
- 338, 336, 0, 351, 336, 381, 336, 376, 383, 0,
- 220, 223, 339, 353, 336, 374, 0, 360, 0, 0,
- 384, 385, 365, 0, 0, 352, 356, 0, 383, 0,
- 0, 221, 224, 381, 0, 0, 366, 386, 0, 387,
- 0, 0, 357, 388, 0, 367, 336, 0, 0, 358,
- 368, 389, 0, 0, 0
-};
-
-static const short yydefgoto[] = { 953,
- 1, 2, 3, 28, 29, 30, 336, 566, 342, 569,
- 198, 449, 673, 122, 232, 399, 124, 125, 126, 127,
- 128, 585, 129, 384, 383, 381, 687, 382, 130, 233,
- 131, 132, 323, 324, 325, 561, 661, 662, 31, 193,
- 800, 439, 91, 562, 644, 440, 34, 140, 279, 35,
- 216, 204, 78, 199, 205, 650, 79, 565, 328, 329,
- 37, 288, 289, 290, 648, 725, 675, 676, 677, 814,
- 678, 744, 679, 680, 877, 897, 924, 880, 899, 925,
- 315, 208, 689, 209, 38, 39, 40, 41, 351, 353,
- 358, 225, 748, 476, 220, 221, 348, 571, 572, 356,
- 357, 142, 691, 143, 189, 278, 663, 664, 737, 326,
- 479, 582, 583, 584, 559, 362, 560, 804, 805, 806,
- 832, 853, 453, 854, 667, 807, 808, 883, 831, 915,
- 906, 934, 947, 907, 809, 810, 905, 811, 844, 867,
- 920, 921, 922, 945, 404, 405, 441, 634, 442, 443,
- 444, 318, 319, 445, 446, 659, 133, 43, 64, 44,
- 45, 46, 427, 698, 305, 607, 818, 525, 308, 537,
- 609, 47, 309, 69, 48, 432, 542, 433, 547, 705,
- 706, 49, 65, 295, 519, 66, 301, 523, 428, 429,
- 535, 616, 822, 536, 611, 763, 612, 764, 173, 419,
- 516, 517, 518, 692, 693, 297, 421, 174, 175, 176,
- 177, 178, 588, 589, 682, 590, 367, 134, 235, 483,
- 370, 371, 372, 135, 136, 137
-};
-
-static const short yypact[] = { 109,
- 118, 3183, 3183, 412,-32768,-32768,-32768,-32768, 91, 91,
- 91, 65, 100, 136,-32768, 270,-32768,-32768, 270, 270,
--32768, 132, 270, 132, 270, 270,-32768,-32768,-32768,-32768,
- 103, 128, 699, 378,-32768, 91,-32768, 119, 131, 203,
--32768, 3183,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, 91, 91, 91, 2892, 2730, 155,-32768,-32768,
--32768,-32768,-32768, 68, 3447, 3447, 70, 61,-32768,-32768,
- 132,-32768, 112, 270,-32768,-32768, 103, 167,-32768, 91,
- 1306,-32768, 434,-32768, 103, 378,-32768, 91,-32768,-32768,
- 900,-32768, 160, 153, 160, 159,-32768, 175,-32768,-32768,
--32768,-32768,-32768,-32768, 2892, 2892, 270,-32768,-32768,-32768,
- 2892,-32768,-32768, 1480,-32768, 195, 231, 239,-32768,-32768,
--32768, 2892, 216, 225,-32768, 2946, 3000,-32768, 3714, 1127,
- 315, 255, 2892,-32768,-32768,-32768,-32768,-32768, 251, 418,
--32768, 279, 2078, 314,-32768, 270,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 292,
- 3610,-32768,-32768,-32768, 2624, 327,-32768,-32768,-32768, 270,
- 270, 286, 270, 270,-32768,-32768,-32768, 321, 252, 301,
--32768, 434, 103,-32768, 319,-32768, 2093, 744, 91,-32768,
--32768, 434,-32768, 188,-32768, 91, 1969, 422, 471, 259,
- 1950, 900,-32768,-32768,-32768,-32768, 91,-32768, 332, 340,
- 1881,-32768, 347,-32768, 227,-32768,-32768,-32768,-32768,-32768,
- 357, 359, 338, 368, 2784, 3475, 3610, 270,-32768, 377,
- 2892, 1480,-32768, 1480,-32768, 2892, 2892, 408,-32768,-32768,
- 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892,
- 2892, 2892,-32768,-32768, 270, 270, 2892, 2892,-32768,-32768,
--32768,-32768,-32768, 418, 2152, 91,-32768, 481, 708,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768, 22,-32768, 411,
--32768, 3610,-32768, 391, 402, 491,-32768, 327,-32768, 404,
- 402, 132, 433,-32768, 449, 441, 439,-32768, 449,-32768,
--32768, 471,-32768,-32768, 518, 471, 538,-32768, 3336,-32768,
- 467, 483,-32768, 1021, 82,-32768,-32768, 536, 91, 386,
- 350,-32768, 434, 434,-32768, 744, 91,-32768, 2211,-32768,
--32768, 744, 520, 91,-32768,-32768, 475, 502, 1385, 3385,
- 160, 91, 160,-32768, 560, 523,-32768, 227,-32768,-32768,
--32768, 540, 525, 2544,-32768,-32768,-32768,-32768, 578, 544,
- 3475,-32768, 562, 565,-32768, 3714, 569, 570, 3714, 3714,
- 2892, 604, 2892, 2892, 1690, 1278, 969, 958, 1297, 563,
- 563, 533, 533,-32768,-32768,-32768,-32768,-32768, 571, 225,
- 577, 369, 355,-32768, 3355,-32768, 579, 418,-32768, 2270,
--32768, 708, 580, 314, 3054, 588, 3511, 2048,-32768,-32768,
- 3568, 3610,-32768,-32768, 583, 132,-32768, 590, 3258,-32768,
--32768, 457, 3131, 608, 75, 591,-32768,-32768,-32768, 3614,
--32768, 596, 276,-32768,-32768, 232,-32768,-32768, 90,-32768,
--32768,-32768, 848,-32768, 422,-32768,-32768, 422,-32768, 637,
--32768,-32768, 593,-32768, 601,-32768,-32768,-32768,-32768,-32768,
- 600,-32768, 602, 2892, 270, 603, 523,-32768, 650,-32768,
--32768,-32768, 3539,-32768,-32768, 578,-32768,-32768,-32768,-32768,
--32768, 646, 2892, 1612, 996,-32768,-32768, 481,-32768,-32768,
--32768, 481,-32768,-32768, 612,-32768,-32768, 234, 609, 270,
--32768, 2624, 610, 2663,-32768,-32768, 3614, 2067, 90,-32768,
- 618, 624, 90,-32768, 449,-32768, 530,-32768,-32768,-32768,
--32768, 103, 128, 699, 450,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768, 3644, 631,-32768,-32768,-32768,
- 573, 344,-32768,-32768, 3580,-32768, 706, 338,-32768,-32768,
--32768, 640, 550,-32768, 1795, 90,-32768,-32768, 90,-32768,
- 629,-32768,-32768, 629, 91, 91, 3714,-32768, 91, 641,
- 270, 1056, 650,-32768, 1560, 2892, 685, 643, 3539,-32768,
--32768, 1533,-32768,-32768, 2892,-32768,-32768,-32768,-32768, 573,
--32768,-32768,-32768,-32768, 270,-32768,-32768, 661, 449,-32768,
- 3447, 3447, 245, 434, 103, 3286,-32768, 561, 3149, 284,
- 284,-32768,-32768,-32768, 344, 91, 202, 220, 91,-32768,
- 91, 220, 91, 3355,-32768,-32768,-32768,-32768,-32768, 434,
--32768, 103,-32768, 796,-32768,-32768, 3714,-32768,-32768, 1795,
--32768,-32768, 436,-32768,-32768,-32768, 91,-32768, 285, 512,
- 920, 652, 653, 1140,-32768,-32768,-32768,-32768,-32768, 694,
- 270,-32768, 695, 3714, 656, 654,-32768,-32768, 80, 1720,
- 225,-32768, 2892,-32768, 685,-32768, 2892, 250, 202, 220,
- 91, 294,-32768,-32768, 581,-32768, 675, 449,-32768,-32768,
--32768,-32768, 2892, 702, 662,-32768, 662, 633, 573,-32768,
- 2329,-32768,-32768,-32768, 342, 344,-32768,-32768,-32768, 336,
- 426, 796,-32768,-32768, 1560,-32768,-32768, 2892, 89,-32768,
--32768, 270,-32768,-32768,-32768,-32768, 664,-32768,-32768,-32768,
--32768, 2410,-32768, 1560,-32768,-32768, 1640,-32768, 1870,-32768,
--32768,-32768, 1533,-32768,-32768,-32768,-32768,-32768, 573,-32768,
--32768, 683, 81, 81, 3714, 2892, 284, 566, 566,-32768,
--32768, 669,-32768,-32768, 677, 3678, 2892,-32768,-32768,-32768,
- 2490, 715, 700,-32768,-32768, 701, 705, 2892, 727, 691,
- 707, 2838, 170, 780, 222, 233,-32768, 750, 716,-32768,
- 717, 3366,-32768, 776, 1220, 87,-32768,-32768,-32768,-32768,
--32768, 2652, 720, 1870,-32768,-32768,-32768, 449,-32768,-32768,
--32768,-32768,-32768, 3714,-32768,-32768,-32768,-32768, 3678, 2892,
- 736,-32768, 2892, 2892, 3655,-32768,-32768,-32768,-32768, 722,
- 2892, 729,-32768, 753, 91,-32768,-32768, 434,-32768, 103,
- 1400,-32768,-32768,-32768,-32768, 2892,-32768,-32768,-32768, 751,
--32768, 739, 2892, 802,-32768, 787, 743, 746, 2892,-32768,
--32768, 748,-32768, 2892,-32768, 447,-32768, 172, 462,-32768,
- 461,-32768,-32768, 2490, 747,-32768,-32768, 754,-32768,-32768,
--32768,-32768, 3696,-32768, 64,-32768, 744,-32768, 744,-32768,
--32768,-32768, 752,-32768,-32768, 2892,-32768,-32768, 818, 756,
--32768,-32768,-32768,-32768,-32768,-32768, 760,-32768, 779, 79,
- 762,-32768,-32768, 338, 338,-32768,-32768, 2892, 818, 771,
- 818,-32768,-32768, 2892, 775, 162,-32768,-32768, 781,-32768,
- 538, 782,-32768, 315, 257,-32768,-32768, 788, 538,-32768,
--32768, 315, 858, 867,-32768
-};
-
-static const short yypgoto[] = {-32768,
--32768,-32768,-32768, 83, -371,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, -14,-32768, -56, 453, -228, 508,-32768,-32768,
- -32,-32768, 628,-32768,-32768,-32768,-32768,-32768, 38,-32768,
- -297,-32768, -305, 548,-32768,-32768, 215,-32768, 3, -166,
- 88, 5, 804,-32768, 249, 12, -29, -170, 613, 47,
- -249, -572, -69, -189, -111,-32768,-32768,-32768, 207, 54,
- 17,-32768, 480,-32768, 253,-32768, -630,-32768, 152,-32768,
- -605,-32768,-32768, 229,-32768,-32768,-32768,-32768,-32768,-32768,
- -51, -113, -482, -18,-32768,-32768,-32768, -64,-32768,-32768,
--32768,-32768,-32768, 424, -50,-32768, 559, 442, 258, 558,
- 443, -59, -99, -169, -173, -198, 260,-32768,-32768, -282,
--32768,-32768,-32768, 334, -412,-32768, -223,-32768,-32768,-32768,
--32768, -160, -524, -755, 288,-32768, 35,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768, 71,-32768, -738,
- 27,-32768, 26,-32768, 549,-32768, -357,-32768, 541, 543,
- 406, -304,-32768,-32768,-32768,-32768, 19,-32768, 934,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768, -21, -5, -349,-32768, 425,-32768, 345,
- 204,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -286,-32768,
--32768,-32768, 208, 438,-32768,-32768,-32768,-32768, -37, 676,
--32768,-32768, 459,-32768, 219, 469,-32768, 568, 572, -142,
--32768, -132,-32768,-32768, 299, 399,-32768,-32768,-32768,-32768,
--32768,-32768, 619,-32768,-32768,-32768
-};
-
-
-#define YYLAST 3766
-
-
-static const short yytable[] = { 123,
- 139, 63, 72, 86, 67, 68, 32, 32, 71, 363,
- 63, 74, 81, 33, 33, 210, 70, 337, 70, 435,
- 42, 42, 434, 94, 96, 98, 218, 330, 179, 411,
- 459, 207, 298, 461, 83, 85, 464, 327, 400, 334,
- 277, 450, 299, 283, 223, 182, 32, 500, 653, 186,
- 347, 349, 92, 33, 234, 36, 36, 531, 190, 188,
- 42, 70, 53, 54, 55, 70, 211, 720, 627, 92,
- 92, 92, 227, 228, 751, 403, 864, 527, 230, 87,
- 314, 820, -112, 269, 80, 50, 88, 855, 331, 239,
- 558, 451, 229, 369, 775, 36, 92, 413, 183, 402,
- 271, 909, 414, 141, 92, 75, 604, 180, -1, 408,
- 606, 294, 145, 813, 16, 749, 929, -2, 14, 184,
- 14, 59, 60, 56, 99, 337, 777, 900, 181, 287,
- 80, 291, 14, 59, 60, 515, 206, 671, 80, 910,
- 321, 742, 185, 816, 217, 856, 913, 218, 146, 916,
- 549, 918, 76, 649, 930, 293, 651, 821, 57, 926,
- 141, 77, 411, -112, 327, 302, 303, 917, 306, 307,
- 312, 361, 59, 60, 316, 327, 16, 373, 366, 347,
- 349, 327, 377, 190, 378, 61, 400, 618, 187, 282,
- 62, 950, 146, 276, 58, 939, 276, 61, 195, 941,
- 93, -175, 62, 498, 82, 59, 60, -175, 859, 502,
- 355, 401, 95, 144, 218, 781, 455, 141, 407, 841,
- 458, 457, 92, 374, 219, 768, 769, 354, 486, 59,
- 60, 14, 416, 92, 222, 603, 61, 942, 608, 350,
- 224, 62, 80, 191, 701, 206, 80, 192, -175, 14,
- 397, 398, -175, 236, 75, 206, 226, 695, 311, -35,
- 710, 711, 545, 546, 332, 217, 16, 141, 333, 61,
- -34, 195, 59, 60, 62, 876, 719, 16, 196, 197,
- 425, 14, 463, 141, 97, 423, 75, 200, 141, 237,
- 141, 240, 92, 61, 59, 60, 70, 238, 62, 665,
- 471, 76, 473, 196, 197, 241, 573, 556, 573, 594,
- 77, 312, 557, 14, 595, 316, 59, 60, 284, 285,
- 286, 703, 697, 269, 492, 754, 272, 276, 884, 270,
- 241, 482, 948, 201, 638, 340, 61, 949, 141, 192,
- 587, 62, 202, 355, 75, 92, 75, 218, 311, 467,
- 292, 469, 554, 505, 280, 203, 555, 681, 61, 196,
- 197, 731, 522, 62, 300, 732, 688, 304, 350, 298,
- 758, 14, 36, 14, 759, 311, 313, 317, 734, 299,
- 61, 739, 89, 206, 90, 62, 206, 206, 75, 200,
- 343, 630, 311, 630, 724, 282, 141, 310, 14, 287,
- 625, 275, 625, 275, 526, 770, 59, 60, 338, 339,
- 86, 762, 773, 409, 410, 14, 333, 344, 273, 361,
- 70, 666, 513, 563, 352, 456, 403, 274, 275, 514,
- 499, 532, 359, 533, 360, 201, 75, 200, 75, 200,
- 534, 551, 552, 364, 202, -85, 685, 14, 545, 546,
- 708, 629, 633, 375, 681, 276, 715, 203, 36, 709,
- 355, 276, 422, 14, 716, 14, 417, 273, 141, 415,
- 61, 36, 724, 728, 36, 62, 274, 275, 418, 141,
- 338, 339, 36, 201, 86, 201, 87, 195, 51, 52,
- -175, 573, 202, 88, 202, 597, -175, 529, 530, 564,
- 420, 666, 774, 740, 86, 203, 192, 203, 426, 498,
- 502, -475, -477, 613, 431, 600, 498, 502, 803, 196,
- 197, 513, 430, 896, 538, 539, 540, 333, 514, 196,
- 197, 860, 628, 632, 541, 614, 615, -175, 898, 409,
- 410, -175, 192, 460, 195, 210, 102, 620, 621, 447,
- 466, -278, -278, 5, 89, 7, 90, 803, 472, 448,
- 87, 9, 10, 11, 640, 642, 658, 88, 704, 704,
- 36, 454, 721, 699, 700, 75, 623, 13, 468, 218,
- 87, 690, 260, 261, 262, 80, 465, 88, 448, 733,
- 694, 911, 282, 912, 16, 474, 613, 538, 539, 540,
- 480, 729, 14, 475, 626, 631, 190, 610, 36, 643,
- 258, 259, 260, 261, 262, 484, 22, 478, 532, 485,
- 533, 24, 624, 613, 710, 711, 641, 534, 538, 539,
- 540, 625, 275, 243, 245, 75, 623, 488, 702, 311,
- 489, 493, 92, 944, 490, 491, 496, 92, 538, 539,
- 540, 952, 528, 626, 772, 506, 743, 218, 760, 497,
- 803, 501, 14, 510, 524, 141, 550, 206, 80, 36,
- 548, 553, 567, 206, 206, 568, 570, 575, 631, 576,
- 579, 581, 624, 591, 596, 799, 599, 36, 337, 312,
- 316, 625, 275, 206, 593, 80, 312, 316, 555, 605,
- 932, 933, 5, 6, 7, 8, 206, 622, 637, 652,
- 9, 10, 11, 214, 215, 704, 639, 779, 657, 9,
- 10, 11, 683, 696, 799, 684, 13, 798, 14, -315,
- 738, -32, 745, 746, 747, 840, 327, 761, 327, 766,
- 690, 780, 767, 16, 322, 819, 801, -336, -336, -336,
- -336, 826, -33, 802, 827, -336, -336, -336, 830, 833,
- 812, 626, 626, 834, 836, 22, 798, 837, 631, 631,
- 24, -336, 86, 862, 72, 84, 865, 868, 842, 271,
- 879, 654, 655, 838, 872, 656, 843, 845, -336, 70,
- 70, 851, 846, 847, 863, 36, 878, 858, 871, 885,
- 723, 214, 215, 848, 850, 873, 888, 9, 10, 11,
- -336, 874, 626, 886, 887, -336, 801, 895, 889, 891,
- 206, 892, 903, 802, 894, -111, 919, 799, 914, 904,
- 812, 881, 923, 712, 713, 714, 927, 928, 717, 718,
- 263, 264, 931, 265, 266, 267, 268, 937, 87, 865,
- 940, 5, 6, 7, 8, 88, 943, 954, 946, 9,
- 10, 11, 890, 730, 951, 36, 955, 509, 376, 798,
- 866, 935, 452, 379, 380, 13, 735, 865, 385, 386,
- 387, 388, 389, 390, 391, 392, 393, 394, 395, 396,
- 212, 722, 16, 507, 412, 755, 756, 757, 815, 857,
- 580, 206, 726, 80, 213, 214, 215, 750, 470, 727,
- 574, 9, 10, 11, 22, 477, 668, 578, 901, 24,
- 322, 736, -124, -124, -124, -124, -124, -124, -124, 14,
- -124, -124, -124, -124, -124, 778, -124, -124, -124, -124,
- -124, -124, -124, -124, -124, -124, -124, -124, -124, -124,
- -124, 741, -124, -124, 902, 936, 938, 503, 73, -124,
- 636, 520, -124, 521, -124, 707, 619, -124, -124, -124,
- 825, 823, 617, -124, -124, 602, 424, 817, -124, -124,
- 598, 752, 828, -124, 511, -124, -124, 686, 512, 487,
- -124, -124, 0, 0, -124, 0, -124, -124, -124, -124,
- 0, -124, 255, 256, 257, 258, 259, 260, 261, 262,
- 494, 495, 254, 255, 256, 257, 258, 259, 260, 261,
- 262, 322, 0, 0, -115, -115, -115, -115, 0, 0,
- -115, 0, -115, -115, -115, 861, 251, 252, 253, 254,
- 255, 256, 257, 258, 259, 260, 261, 262, -115, 0,
- 0, 875, 0, 0, 0, 0, 660, 0, -336, -336,
- -336, -336, -336, -336, -336, -115, -336, -336, -336, -336,
- -336, 0, -336, -336, -336, -336, -336, -336, -336, -336,
- -336, -336, -336, -336, -336, -336, -336, -115, -336, -336,
- 0, 0, -115, 0, 0, -336, 0, 0, -336, 0,
- -336, 577, -115, -336, -336, -336, 0, 0, 0, -336,
- -336, 0, 0, 0, -336, -336, 0, 0, 0, -336,
- 592, -336, -336, 0, 0, 0, -336, -336, 0, 0,
- -336, 0, -336, 0, -336, -336, 0, -336, 0, 0,
- 322, 0, -336, -336, 0, 0, 0, -336, -336, 0,
- -336, 0, 0, 0, -336, 0, -336, -336, -336, -336,
- -336, -336, -336, -336, -336, -336, -336, 0, -336, 0,
- -336, 0, -336, -336, 0, 0, 0, 0, 0, -336,
- 263, 264, -336, 265, 266, 267, 268, -336, -336, -336,
- 0, 0, 647, -336, -336, 0, 0, 0, -336, -336,
- 0, 0, 0, -336, 0, -336, -336, 0, 0, 0,
- -336, -336, 674, 0, -336, 0, -336, -311, -336, -336,
- 852, -336, -336, -336, 0, 0, 0, -336, -336, 0,
- -336, 0, 0, 0, -336, 0, -336, -336, -336, -336,
- -336, -336, -336, -336, -336, -336, -336, 0, -336, 0,
- -336, 0, -336, -336, 0, 0, 0, 0, 0, -336,
- 0, 0, -336, 0, 0, 0, 0, -336, -336, -336,
- 0, 0, 0, -336, -336, 0, 0, 647, -336, -336,
- 0, 0, 0, -336, 0, -336, -336, 0, 0, 0,
- -336, -336, 0, 0, -336, 0, -336, 0, -336, -336,
- 0, -336, 0, 0, 0, 0, 194, 674, 0, -28,
- -28, -28, -28, 0, 753, 0, 0, -28, -28, -28,
- 253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
- 765, 0, 195, -28, 0, -175, 0, 0, 0, 0,
- 0, -175, 256, 257, 258, 259, 260, 261, 262, 0,
- -28, 0, 674, 0, 0, 776, 0, 0, 0, 0,
- 0, 0, 0, 0, 196, 197, 0, 0, 0, 0,
- 0, 674, -28, 0, 674, 0, 674, -28, 0, 0,
- 0, 0, -175, 0, 0, 0, -175, -28, 5, 0,
- 7, 281, 0, 824, 0, 0, 9, 10, 11, 0,
- 882, 0, -346, -346, 829, 0, 0, -346, -346, 0,
- -346, 0, 13, 0, -346, 835, -346, -346, -346, -346,
- -346, -346, -346, -346, -346, -346, -346, 0, -346, 16,
- -346, 0, -346, -346, 0, 0, 0, 0, 0, -346,
- 0, 674, -346, 0, 0, 0, 0, -346, -346, -346,
- 0, 22, 0, -346, -346, 0, 24, 0, -346, -346,
- 0, -280, -280, -346, 0, -346, -346, 0, 0, 0,
- -346, -346, 0, 0, -346, 0, -346, 0, -346, -346,
- 231, -346, 100, 5, 0, 7, 138, 101, 102, 0,
- 103, 9, 10, 11, 0, 0, 893, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 13, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 16, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 0, 0, 114, 115,
- 0, 0, 0, 116, 0, 117, 22, 0, 0, 0,
- 118, 24, 0, 0, 119, 0, 0, 0, 120, 121,
- 669, -94, 670, 60, 0, 0, 0, 101, 102, 248,
- 103, 249, 250, 251, 252, 253, 254, 255, 256, 257,
- 258, 259, 260, 261, 262, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 0, 671, 114, 115,
- 0, 0, 0, 116, 0, 117, 61, 0, 0, 0,
- 118, 62, 0, 0, 119, 0, 0, -203, 120, 121,
- 669, 672, 670, 60, 0, 0, 0, 101, 102, 0,
- 103, 250, 251, 252, 253, 254, 255, 256, 257, 258,
- 259, 260, 261, 262, 0, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 0, 671, 114, 115,
- 0, 0, 0, 116, 0, 117, 61, 0, 0, 0,
- 118, 62, 0, 0, 119, 0, 0, -268, 120, 121,
- 669, 672, 100, 0, 0, 0, 0, 101, 102, 0,
- 103, 252, 253, 254, 255, 256, 257, 258, 259, 260,
- 261, 262, 0, 0, 0, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 0, -216, 0, 0, 0, 107,
- 0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 0, -216, 114, 115,
- 0, 0, 0, 116, 0, 117, 0, 0, 0, 0,
- 118, 0, 0, 0, 119, 645, 0, 100, 120, 121,
- 0, 672, 101, 102, 0, 103, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 104, 0, 15, 0, 105, 106, 0,
- 0, 0, 0, 0, 107, 0, 0, 108, 0, 0,
- 0, 0, 109, 110, 111, 0, 0, 0, 112, 113,
- 0, 0, 0, 114, 115, 0, 0, 0, 116, 0,
- 117, 0, 0, 0, 0, 118, 0, 0, 0, 119,
- 669, 0, 100, 120, 121, 0, 646, 101, 102, 0,
- 103, 345, 0, 0, 5, 0, 7, 138, 0, 0,
- 0, 0, 9, 10, 11, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 13, 107,
- 0, 15, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 16, 0, 0, 114, 115,
- 0, 0, 0, 116, 0, 117, 0, 0, 0, 0,
- 118, 0, 0, 0, 119, 0, 0, 22, 120, 121,
- 341, 672, 24, -24, -24, -24, -24, 346, -271, 0,
- 0, -24, -24, -24, 0, 0, 0, 0, 0, 335,
- 0, 0, -20, -20, -20, -20, 195, -24, 0, -175,
- -20, -20, -20, 0, 0, -175, 0, 0, 0, 0,
- 0, 0, 0, 0, -24, 195, -20, 0, -175, 0,
- 0, 0, 0, 0, -175, 0, 0, 0, 196, 197,
- 0, 0, 0, -20, 0, 0, -24, 0, 0, 0,
- 0, -24, 0, 0, 0, 0, -175, 0, 0, 0,
- -175, -24, 0, 0, 0, -20, 0, 0, 0, 0,
- -20, 0, 0, 0, 0, -175, 0, 0, 322, -175,
- -20, 5, 6, 7, 8, 0, 0, 0, 0, 9,
- 10, 11, 0, 0, 0, 0, 0, 322, 0, 0,
- -499, -499, -499, -499, 0, 13, 0, 14, -499, -499,
- -499, 5, 0, 7, 281, 0, 0, 0, 0, 9,
- 10, 11, 16, 0, -499, 100, -499, 0, 0, 0,
- 101, 102, 0, 103, 0, 13, 0, 14, 0, 0,
- 0, -499, 0, 0, 22, 0, 0, 0, 0, 24,
- 0, 104, 16, 15, 0, 105, 106, 273, 0, -497,
- 0, 0, 107, -499, 0, 108, 274, 275, -499, 0,
- 109, 110, 111, 0, 22, 0, 112, 113, -499, 24,
- 0, 114, 115, 0, 100, 0, 116, 0, 117, 101,
- 102, 0, 103, 118, 0, 0, 0, 119, 0, 0,
- 0, 120, 121, 0, 0, 320, 0, 0, 0, 0,
- 104, 0, 15, 0, 105, 106, 0, 0, 0, 0,
- 0, 107, 0, 0, 108, 0, 0, 0, 0, 109,
- 110, 111, 0, 0, 0, 112, 113, 0, 0, 0,
- 114, 115, 0, 100, 0, 116, 0, 117, 101, 102,
- 0, 103, 118, 0, 0, 0, 119, 0, 0, 0,
- 120, 121, 0, 0, 406, 0, 0, 0, 0, 104,
- 0, 15, 0, 105, 106, 0, 0, 0, 0, 0,
- 107, 0, 0, 108, 0, 0, 0, 0, 109, 110,
- 111, 0, 0, 0, 112, 113, 0, 0, 0, 114,
- 115, 0, 100, 0, 116, 0, 117, 101, 102, 0,
- 103, 118, 0, 0, 0, 119, 0, 0, 0, 120,
- 121, 0, 0, 462, 0, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 0, 0, 114, 115,
- 0, 100, 0, 116, 0, 117, 101, 102, 0, 103,
- 118, 0, 0, 0, 119, 0, 0, 0, 120, 121,
- 0, 0, 504, 0, 0, 0, 0, 104, 0, 15,
- 0, 105, 106, 0, 0, 0, 0, 0, 107, 0,
- 0, 108, 0, 0, 0, 0, 109, 110, 111, 0,
- 0, 0, 112, 113, 0, 0, 0, 114, 115, 0,
- 0, 0, 116, 0, 117, 0, 0, 0, 0, 118,
- 0, 0, 0, 119, 0, 0, 0, 120, 121, 0,
- 0, 771, 670, 782, 6, 7, 8, 101, 102, 0,
- 103, 9, 10, 11, 783, 0, 784, 785, 786, 787,
- 788, 789, 790, 791, 792, 793, 794, 13, 104, 14,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 16, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 0, 0, 114, 115,
- 0, 0, 0, 116, 0, 117, 795, 0, 0, 0,
- 118, 796, 0, 0, 119, 0, 797, 0, 120, 121,
- 0, 361, 670, 60, 0, 0, 0, 101, 102, 0,
- 103, 0, 0, 0, 783, 0, 784, 785, 786, 787,
- 788, 789, 790, 791, 792, 793, 794, 0, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 100, 0, 114, 115,
- 0, 101, 102, 116, 103, 117, 61, 0, 0, 0,
- 118, 62, 0, 0, 119, 0, 797, 0, 120, 121,
- 0, 361, 104, 0, 15, 0, 105, 106, 0, 0,
- 0, 0, 0, 107, 0, 0, 108, 0, 0, 0,
- 0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
- 0, 0, 114, 115, 0, 0, 0, 116, 0, 117,
- 0, 0, 0, 0, 118, 0, 0, 0, 119, 0,
- 0, 0, 120, 121, 0, 481, 147, 148, 0, 149,
- 150, 0, 0, 0, 151, 152, 153, 154, 155, 156,
- 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
- 167, 168, 169, 0, 100, 5, 6, 7, 8, 101,
- 102, 170, 103, 9, 10, 11, 5, 6, 7, 8,
- 0, 0, 0, 0, 9, 10, 11, 0, 0, 13,
- 104, 14, 15, 0, 105, 106, 0, 0, 0, 0,
- 13, 107, 14, 0, 108, 172, 16, 0, 0, 109,
- 110, 111, 0, 0, 296, 112, 113, 16, 0, 0,
- 114, 115, 0, 0, 0, 116, 0, 117, 22, 0,
- 0, 0, 118, 24, 0, 0, 119, 0, 0, 22,
- 120, 121, 100, 5, 24, 7, 138, 101, 102, 601,
- 103, 9, 10, 11, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 13, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 16, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 100, 0, 114, 115,
- 0, 101, 102, 116, 103, 117, 22, 0, 0, 0,
- 118, 24, 0, 0, 119, 0, 0, 0, 120, 121,
- 0, 0, 104, 0, 15, 0, 105, 106, 0, 0,
- 0, 0, 0, 107, 0, 0, 108, 0, 0, 0,
- 0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
- 100, 0, 114, 115, 0, 101, 102, 116, 103, 117,
- 365, 0, 0, 0, 118, 0, 0, 0, 119, 0,
- 0, 0, 120, 121, 0, 0, 104, 0, 15, 0,
- 105, 106, 0, 0, 0, 0, 0, 107, 0, 0,
- 108, 0, 0, 0, 0, 109, 110, 111, 0, 0,
- 0, 112, 113, 0, 100, 0, 114, 115, 0, 101,
- 102, 116, 103, 117, 0, 0, 0, 0, 118, 0,
- 0, 0, 119, 0, 839, 0, 120, 121, 0, 0,
- 104, 0, 15, 0, 105, 106, 0, 0, 0, 0,
- 0, 107, 0, 0, 108, 0, 0, 0, 0, 109,
- 110, 111, 0, 0, 0, 112, 113, 0, 100, 0,
- 114, 115, 0, 101, 102, 116, 103, 117, 0, 0,
- 0, 0, 118, 0, 0, 0, 119, 0, 0, 0,
- 120, 121, 0, 0, 104, 0, 15, 0, 105, 106,
- 0, 0, 0, 0, 0, 107, 0, 0, 108, 0,
- 0, 0, 0, 109, 110, 111, 0, 0, 0, 112,
- 113, 0, 100, 0, 242, 115, 0, 101, 102, 116,
- 103, 117, 0, 0, 0, 0, 118, 0, 0, 0,
- 119, 0, 0, 0, 120, 121, 0, 0, 104, 0,
- 15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
- 0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
- 0, 0, 0, 112, 113, 0, 508, 0, 244, 115,
- 0, 101, 102, 116, 103, 117, 0, 0, 0, 0,
- 118, 0, 0, 0, 119, 0, 0, 0, 120, 121,
- 0, 0, 104, 0, 15, 0, 105, 106, 0, 0,
- 0, 0, 0, 107, 0, 0, 108, 0, 0, 0,
- 0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
- 0, 0, 114, 115, 0, 0, 0, 116, 0, 117,
- 0, 0, 0, 0, 118, 0, 0, 0, 119, 0,
- 0, 543, 120, 121, 5, 0, 7, 138, 0, 0,
- 0, 0, 9, 10, 11, 0, 0, 0, 0, 543,
- 0, 0, 5, 0, 7, 138, 0, 0, 13, 0,
- 9, 10, 11, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 16, 13, 0, 0, 0,
- 0, 0, 0, 4, 0, -128, 5, 6, 7, 8,
- 0, 0, 0, 16, 9, 10, 11, 22, -451, -451,
- -451, 0, 24, 0, 0, 0, 0, 544, -451, 12,
- 13, 0, 14, 15, 0, 22, -450, -450, -450, 0,
- 24, 0, 0, 0, 0, 544, -450, 16, 0, 0,
- 17, 18, -128, 0, 0, 0, 0, 0, 0, 0,
- 0, -128, 0, 19, 20, 21, 0, 0, 0, 22,
- 0, 0, 0, 23, 24, 25, 26, 0, 4, 27,
- -128, 5, 6, 7, 8, 0, 0, 0, 0, 9,
- 10, 11, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 13, 4, 14, -128, 5,
- 6, 7, 8, 0, 0, 0, 0, 9, 10, 11,
- 0, 0, 16, 0, 0, 529, 530, -128, 0, 0,
- 0, 0, 0, 13, 0, 14, -128, 0, 0, 0,
- 0, 0, 0, 0, 22, 0, 0, 0, 0, 24,
- 16, 0, 0, 0, 27, -128, 436, 0, 437, 5,
- 6, 7, 8, 0, -128, 438, 0, 9, 10, 11,
- 0, 0, 22, 0, 0, 436, 0, 24, 5, 6,
- 7, 8, 27, 13, 438, 14, 9, 10, 11, 5,
- 6, 7, 8, 0, 0, 0, 0, 9, 10, 11,
- 16, 0, 13, 0, 14, 345, 0, 0, 5, 0,
- 7, 138, 0, 13, 0, 14, 9, 10, 11, 16,
- 0, 0, 22, 0, 0, 0, 0, 24, 0, 0,
- 16, -396, 13, 0, 0, 15, 0, 0, 0, 0,
- 0, 22, 0, 0, 0, 0, 24, 0, 0, 16,
- -396, 0, 22, 0, 0, 0, 0, 24, 0, 0,
- 0, 0, 849, 0, 0, 0, 0, 0, 0, 147,
- 148, 22, 149, 150, 0, 0, 24, 151, 152, 153,
- 154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
- 164, 165, 166, 167, 168, 169, 0, 147, 148, 0,
- 149, 150, 0, 0, 170, 151, 152, 153, 154, 155,
- 156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
- 166, 167, 168, 169, 0, 171, 0, 0, 0, 0,
- 0, 0, 368, 147, 148, 0, 149, 150, 172, 0,
- 0, 151, 152, 153, 154, 155, 156, 157, 158, 159,
- 160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
- 0, 147, 148, 0, 149, 150, 172, 0, 170, 151,
- 152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
- 162, 163, 164, 165, 166, 167, 168, 169, 0, 0,
- 0, 5, 6, 7, 8, 0, 586, 438, 0, 9,
- 10, 11, 172, 5, 6, 7, 8, 0, 0, 635,
- 0, 9, 10, 11, 0, 13, 0, 14, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 13, 0, 14,
- 172, 0, 16, 5, 0, 7, 138, 5, 6, 7,
- 8, 9, 10, 11, 16, 9, 10, 11, 0, 0,
- 0, 0, 0, 0, 22, 0, 0, 13, 0, 24,
- 0, 13, 0, 14, 0, 0, 22, 5, 0, 7,
- 281, 24, 0, 0, 16, 9, 10, 11, 16, 0,
- 0, 0, 0, 0, 869, 0, 0, 0, 0, 0,
- 0, 13, 0, 0, 0, 0, 22, 0, 0, 0,
- 22, 24, 0, 0, 0, 24, 0, 0, 16, 246,
- 247, 248, 870, 249, 250, 251, 252, 253, 254, 255,
- 256, 257, 258, 259, 260, 261, 262, 14, 0, 0,
- 22, 0, 246, 247, 248, 24, 249, 250, 251, 252,
- 253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
- 246, 247, 248, 908, 249, 250, 251, 252, 253, 254,
- 255, 256, 257, 258, 259, 260, 261, 262, 246, 247,
- 248, 0, 249, 250, 251, 252, 253, 254, 255, 256,
- 257, 258, 259, 260, 261, 262
-};
-
-static const short yycheck[] = { 56,
- 57, 16, 24, 33, 19, 20, 2, 3, 23, 233,
- 25, 26, 31, 2, 3, 85, 22, 207, 24, 317,
- 2, 3, 309, 38, 39, 40, 91, 201, 66, 279,
- 336, 83, 175, 338, 32, 33, 342, 198, 267, 206,
- 140, 324, 175, 143, 95, 67, 42, 405, 573, 71,
- 221, 221, 36, 42, 114, 2, 3, 429, 77, 74,
- 42, 67, 9, 10, 11, 71, 85, 640, 551, 53,
- 54, 55, 105, 106, 680, 274, 832, 427, 111, 33,
- 192, 1, 1, 9, 31, 3, 33, 1, 202, 122,
- 1, 10, 107, 236, 725, 42, 80, 76, 38, 273,
- 133, 38, 81, 57, 88, 3, 519, 38, 0, 276,
- 523, 171, 45, 744, 45, 36, 38, 0, 30, 59,
- 30, 3, 4, 59, 42, 315, 38, 883, 59, 144,
- 77, 146, 30, 3, 4, 418, 83, 58, 85, 76,
- 197, 666, 82, 749, 91, 59, 902, 212, 81, 905,
- 76, 907, 50, 566, 76, 170, 569, 77, 59, 915,
- 114, 59, 412, 82, 325, 180, 181, 906, 183, 184,
- 189, 82, 3, 4, 193, 336, 45, 237, 235, 350,
- 350, 342, 242, 202, 244, 67, 415, 537, 77, 143,
- 72, 947, 81, 140, 59, 934, 143, 67, 27, 38,
- 82, 30, 72, 402, 77, 3, 4, 36, 814, 408,
- 225, 268, 82, 59, 279, 740, 330, 171, 275, 50,
- 334, 333, 206, 238, 65, 708, 709, 1, 371, 3,
- 4, 30, 292, 217, 82, 518, 67, 76, 525, 221,
- 82, 72, 189, 77, 616, 192, 193, 81, 77, 30,
- 265, 266, 81, 59, 3, 202, 82, 607, 7, 38,
- 59, 60, 433, 433, 77, 212, 45, 221, 81, 67,
- 38, 27, 3, 4, 72, 848, 634, 45, 59, 60,
- 302, 30, 339, 237, 82, 300, 3, 4, 242, 59,
- 244, 76, 276, 67, 3, 4, 302, 59, 72, 582,
- 351, 50, 353, 59, 60, 81, 467, 76, 469, 76,
- 59, 330, 81, 30, 81, 334, 3, 4, 5, 6,
- 7, 38, 609, 9, 381, 76, 76, 274, 853, 75,
- 81, 364, 76, 50, 558, 77, 67, 81, 292, 81,
- 483, 72, 59, 358, 3, 329, 3, 412, 7, 347,
- 59, 349, 77, 410, 76, 72, 81, 586, 67, 59,
- 60, 77, 422, 72, 38, 81, 595, 82, 350, 512,
- 77, 30, 319, 30, 81, 7, 76, 59, 661, 512,
- 67, 664, 5, 330, 7, 72, 333, 334, 3, 4,
- 59, 50, 7, 50, 644, 349, 350, 77, 30, 414,
- 59, 60, 59, 60, 426, 710, 3, 4, 59, 60,
- 440, 698, 77, 59, 60, 30, 81, 78, 50, 82,
- 426, 582, 418, 453, 78, 76, 625, 59, 60, 418,
- 76, 429, 76, 429, 76, 50, 3, 4, 3, 4,
- 429, 439, 440, 76, 59, 38, 589, 30, 619, 619,
- 624, 551, 552, 77, 683, 402, 630, 72, 405, 626,
- 475, 408, 59, 30, 631, 30, 76, 50, 422, 59,
- 67, 418, 722, 38, 421, 72, 59, 60, 77, 433,
- 59, 60, 429, 50, 514, 50, 440, 27, 77, 78,
- 30, 652, 59, 440, 59, 510, 36, 48, 49, 453,
- 10, 662, 77, 664, 534, 72, 81, 72, 76, 708,
- 709, 63, 63, 532, 76, 513, 715, 716, 742, 59,
- 60, 517, 82, 77, 68, 69, 70, 81, 517, 59,
- 60, 818, 551, 552, 78, 533, 534, 77, 77, 59,
- 60, 81, 81, 337, 27, 615, 9, 545, 546, 83,
- 344, 77, 78, 4, 5, 6, 7, 781, 352, 77,
- 514, 12, 13, 14, 562, 563, 581, 514, 620, 621,
- 517, 36, 642, 611, 612, 3, 4, 28, 77, 644,
- 534, 600, 50, 51, 52, 532, 67, 534, 77, 78,
- 605, 897, 546, 899, 45, 36, 615, 68, 69, 70,
- 76, 653, 30, 81, 551, 552, 625, 78, 555, 563,
- 48, 49, 50, 51, 52, 38, 67, 78, 616, 76,
- 616, 72, 50, 642, 59, 60, 77, 616, 68, 69,
- 70, 59, 60, 126, 127, 3, 4, 76, 78, 7,
- 76, 38, 626, 941, 76, 76, 76, 631, 68, 69,
- 70, 949, 63, 600, 711, 76, 671, 722, 78, 83,
- 884, 83, 30, 76, 82, 619, 76, 614, 615, 616,
- 63, 76, 36, 620, 621, 83, 76, 78, 625, 78,
- 78, 32, 50, 38, 76, 742, 77, 634, 878, 708,
- 709, 59, 60, 640, 83, 642, 715, 716, 81, 76,
- 924, 925, 4, 5, 6, 7, 653, 77, 3, 81,
- 12, 13, 14, 6, 7, 767, 77, 732, 78, 12,
- 13, 14, 38, 63, 781, 83, 28, 742, 30, 78,
- 78, 38, 38, 78, 81, 792, 897, 63, 899, 38,
- 759, 78, 81, 45, 1, 63, 742, 4, 5, 6,
- 7, 83, 38, 742, 78, 12, 13, 14, 59, 59,
- 742, 708, 709, 59, 38, 67, 781, 77, 715, 716,
- 72, 28, 802, 830, 796, 77, 833, 834, 793, 812,
- 850, 575, 576, 77, 841, 579, 7, 38, 45, 795,
- 796, 16, 77, 77, 59, 742, 848, 78, 77, 856,
- 5, 6, 7, 801, 802, 77, 863, 12, 13, 14,
- 67, 59, 759, 63, 76, 72, 812, 874, 17, 77,
- 767, 76, 76, 812, 77, 82, 9, 884, 77, 76,
- 812, 850, 77, 627, 628, 629, 77, 59, 632, 633,
- 54, 55, 81, 57, 58, 59, 60, 77, 802, 906,
- 76, 4, 5, 6, 7, 802, 76, 0, 77, 12,
- 13, 14, 76, 657, 77, 812, 0, 415, 241, 884,
- 833, 928, 325, 246, 247, 28, 662, 934, 251, 252,
- 253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
- 87, 643, 45, 414, 282, 689, 690, 691, 747, 812,
- 477, 848, 650, 850, 5, 6, 7, 679, 350, 652,
- 469, 12, 13, 14, 67, 358, 583, 475, 884, 72,
- 1, 662, 3, 4, 5, 6, 7, 8, 9, 30,
- 11, 12, 13, 14, 15, 729, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, 664, 33, 34, 884, 929, 931, 409, 25, 40,
- 555, 421, 43, 421, 45, 621, 542, 48, 49, 50,
- 767, 764, 535, 54, 55, 517, 301, 759, 59, 60,
- 512, 683, 776, 64, 417, 66, 67, 589, 417, 371,
- 71, 72, -1, -1, 75, -1, 77, 78, 79, 80,
- -1, 82, 45, 46, 47, 48, 49, 50, 51, 52,
- 383, 384, 44, 45, 46, 47, 48, 49, 50, 51,
- 52, 1, -1, -1, 4, 5, 6, 7, -1, -1,
- 10, -1, 12, 13, 14, 829, 41, 42, 43, 44,
- 45, 46, 47, 48, 49, 50, 51, 52, 28, -1,
- -1, 845, -1, -1, -1, -1, 1, -1, 3, 4,
- 5, 6, 7, 8, 9, 45, 11, 12, 13, 14,
- 15, -1, 17, 18, 19, 20, 21, 22, 23, 24,
- 25, 26, 27, 28, 29, 30, 31, 67, 33, 34,
- -1, -1, 72, -1, -1, 40, -1, -1, 43, -1,
- 45, 474, 82, 48, 49, 50, -1, -1, -1, 54,
- 55, -1, -1, -1, 59, 60, -1, -1, -1, 64,
- 493, 66, 67, -1, -1, -1, 71, 72, -1, -1,
- 75, -1, 77, -1, 79, 80, -1, 82, -1, -1,
- 1, -1, 3, 4, -1, -1, -1, 8, 9, -1,
- 11, -1, -1, -1, 15, -1, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- 54, 55, 43, 57, 58, 59, 60, 48, 49, 50,
- -1, -1, 565, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, 585, -1, 75, -1, 77, 78, 79, 80,
- 1, 82, 3, 4, -1, -1, -1, 8, 9, -1,
- 11, -1, -1, -1, 15, -1, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, 650, 59, 60,
- -1, -1, -1, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, 77, -1, 79, 80,
- -1, 82, -1, -1, -1, -1, 1, 680, -1, 4,
- 5, 6, 7, -1, 687, -1, -1, 12, 13, 14,
- 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
- 703, -1, 27, 28, -1, 30, -1, -1, -1, -1,
- -1, 36, 46, 47, 48, 49, 50, 51, 52, -1,
- 45, -1, 725, -1, -1, 728, -1, -1, -1, -1,
- -1, -1, -1, -1, 59, 60, -1, -1, -1, -1,
- -1, 744, 67, -1, 747, -1, 749, 72, -1, -1,
- -1, -1, 77, -1, -1, -1, 81, 82, 4, -1,
- 6, 7, -1, 766, -1, -1, 12, 13, 14, -1,
- 1, -1, 3, 4, 777, -1, -1, 8, 9, -1,
- 11, -1, 28, -1, 15, 788, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, -1, 29, 45,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, 814, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, 67, -1, 54, 55, -1, 72, -1, 59, 60,
- -1, 77, 78, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, 77, -1, 79, 80,
- 1, 82, 3, 4, -1, 6, 7, 8, 9, -1,
- 11, 12, 13, 14, -1, -1, 869, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 28, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, 45, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, -1, -1, 79, 80,
- 1, 82, 3, 4, -1, -1, -1, 8, 9, 37,
- 11, 39, 40, 41, 42, 43, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, 58, 59, 60,
- -1, -1, -1, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, -1, 78, 79, 80,
- 1, 82, 3, 4, -1, -1, -1, 8, 9, -1,
- 11, 40, 41, 42, 43, 44, 45, 46, 47, 48,
- 49, 50, 51, 52, -1, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, 58, 59, 60,
- -1, -1, -1, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, -1, 78, 79, 80,
- 1, 82, 3, -1, -1, -1, -1, 8, 9, -1,
- 11, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- 51, 52, -1, -1, -1, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, -1, 36, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, 58, 59, 60,
- -1, -1, -1, 64, -1, 66, -1, -1, -1, -1,
- 71, -1, -1, -1, 75, 1, -1, 3, 79, 80,
- -1, 82, 8, 9, -1, 11, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 29, -1, 31, -1, 33, 34, -1,
- -1, -1, -1, -1, 40, -1, -1, 43, -1, -1,
- -1, -1, 48, 49, 50, -1, -1, -1, 54, 55,
- -1, -1, -1, 59, 60, -1, -1, -1, 64, -1,
- 66, -1, -1, -1, -1, 71, -1, -1, -1, 75,
- 1, -1, 3, 79, 80, -1, 82, 8, 9, -1,
- 11, 1, -1, -1, 4, -1, 6, 7, -1, -1,
- -1, -1, 12, 13, 14, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, 28, 40,
- -1, 31, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, 45, -1, -1, 59, 60,
- -1, -1, -1, 64, -1, 66, -1, -1, -1, -1,
- 71, -1, -1, -1, 75, -1, -1, 67, 79, 80,
- 1, 82, 72, 4, 5, 6, 7, 77, 78, -1,
- -1, 12, 13, 14, -1, -1, -1, -1, -1, 1,
- -1, -1, 4, 5, 6, 7, 27, 28, -1, 30,
- 12, 13, 14, -1, -1, 36, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, 27, 28, -1, 30, -1,
- -1, -1, -1, -1, 36, -1, -1, -1, 59, 60,
- -1, -1, -1, 45, -1, -1, 67, -1, -1, -1,
- -1, 72, -1, -1, -1, -1, 77, -1, -1, -1,
- 81, 82, -1, -1, -1, 67, -1, -1, -1, -1,
- 72, -1, -1, -1, -1, 77, -1, -1, 1, 81,
- 82, 4, 5, 6, 7, -1, -1, -1, -1, 12,
- 13, 14, -1, -1, -1, -1, -1, 1, -1, -1,
- 4, 5, 6, 7, -1, 28, -1, 30, 12, 13,
- 14, 4, -1, 6, 7, -1, -1, -1, -1, 12,
- 13, 14, 45, -1, 28, 3, 30, -1, -1, -1,
- 8, 9, -1, 11, -1, 28, -1, 30, -1, -1,
- -1, 45, -1, -1, 67, -1, -1, -1, -1, 72,
- -1, 29, 45, 31, -1, 33, 34, 50, -1, 82,
- -1, -1, 40, 67, -1, 43, 59, 60, 72, -1,
- 48, 49, 50, -1, 67, -1, 54, 55, 82, 72,
- -1, 59, 60, -1, 3, -1, 64, -1, 66, 8,
- 9, -1, 11, 71, -1, -1, -1, 75, -1, -1,
- -1, 79, 80, -1, -1, 83, -1, -1, -1, -1,
- 29, -1, 31, -1, 33, 34, -1, -1, -1, -1,
- -1, 40, -1, -1, 43, -1, -1, -1, -1, 48,
- 49, 50, -1, -1, -1, 54, 55, -1, -1, -1,
- 59, 60, -1, 3, -1, 64, -1, 66, 8, 9,
- -1, 11, 71, -1, -1, -1, 75, -1, -1, -1,
- 79, 80, -1, -1, 83, -1, -1, -1, -1, 29,
- -1, 31, -1, 33, 34, -1, -1, -1, -1, -1,
- 40, -1, -1, 43, -1, -1, -1, -1, 48, 49,
- 50, -1, -1, -1, 54, 55, -1, -1, -1, 59,
- 60, -1, 3, -1, 64, -1, 66, 8, 9, -1,
- 11, 71, -1, -1, -1, 75, -1, -1, -1, 79,
- 80, -1, -1, 83, -1, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, -1, 59, 60,
- -1, 3, -1, 64, -1, 66, 8, 9, -1, 11,
- 71, -1, -1, -1, 75, -1, -1, -1, 79, 80,
- -1, -1, 83, -1, -1, -1, -1, 29, -1, 31,
- -1, 33, 34, -1, -1, -1, -1, -1, 40, -1,
- -1, 43, -1, -1, -1, -1, 48, 49, 50, -1,
- -1, -1, 54, 55, -1, -1, -1, 59, 60, -1,
- -1, -1, 64, -1, 66, -1, -1, -1, -1, 71,
- -1, -1, -1, 75, -1, -1, -1, 79, 80, -1,
- -1, 83, 3, 4, 5, 6, 7, 8, 9, -1,
- 11, 12, 13, 14, 15, -1, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, 45, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, -1, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, 77, -1, 79, 80,
- -1, 82, 3, 4, -1, -1, -1, 8, 9, -1,
- 11, -1, -1, -1, 15, -1, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, 3, -1, 59, 60,
- -1, 8, 9, 64, 11, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, 77, -1, 79, 80,
- -1, 82, 29, -1, 31, -1, 33, 34, -1, -1,
- -1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
- -1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
- -1, -1, 59, 60, -1, -1, -1, 64, -1, 66,
- -1, -1, -1, -1, 71, -1, -1, -1, 75, -1,
- -1, -1, 79, 80, -1, 82, 3, 4, -1, 6,
- 7, -1, -1, -1, 11, 12, 13, 14, 15, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 28, 29, -1, 3, 4, 5, 6, 7, 8,
- 9, 38, 11, 12, 13, 14, 4, 5, 6, 7,
- -1, -1, -1, -1, 12, 13, 14, -1, -1, 28,
- 29, 30, 31, -1, 33, 34, -1, -1, -1, -1,
- 28, 40, 30, -1, 43, 72, 45, -1, -1, 48,
- 49, 50, -1, -1, 81, 54, 55, 45, -1, -1,
- 59, 60, -1, -1, -1, 64, -1, 66, 67, -1,
- -1, -1, 71, 72, -1, -1, 75, -1, -1, 67,
- 79, 80, 3, 4, 72, 6, 7, 8, 9, 77,
- 11, 12, 13, 14, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 28, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, 45, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, 3, -1, 59, 60,
- -1, 8, 9, 64, 11, 66, 67, -1, -1, -1,
- 71, 72, -1, -1, 75, -1, -1, -1, 79, 80,
- -1, -1, 29, -1, 31, -1, 33, 34, -1, -1,
- -1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
- -1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
- 3, -1, 59, 60, -1, 8, 9, 64, 11, 66,
- 67, -1, -1, -1, 71, -1, -1, -1, 75, -1,
- -1, -1, 79, 80, -1, -1, 29, -1, 31, -1,
- 33, 34, -1, -1, -1, -1, -1, 40, -1, -1,
- 43, -1, -1, -1, -1, 48, 49, 50, -1, -1,
- -1, 54, 55, -1, 3, -1, 59, 60, -1, 8,
- 9, 64, 11, 66, -1, -1, -1, -1, 71, -1,
- -1, -1, 75, -1, 77, -1, 79, 80, -1, -1,
- 29, -1, 31, -1, 33, 34, -1, -1, -1, -1,
- -1, 40, -1, -1, 43, -1, -1, -1, -1, 48,
- 49, 50, -1, -1, -1, 54, 55, -1, 3, -1,
- 59, 60, -1, 8, 9, 64, 11, 66, -1, -1,
- -1, -1, 71, -1, -1, -1, 75, -1, -1, -1,
- 79, 80, -1, -1, 29, -1, 31, -1, 33, 34,
- -1, -1, -1, -1, -1, 40, -1, -1, 43, -1,
- -1, -1, -1, 48, 49, 50, -1, -1, -1, 54,
- 55, -1, 3, -1, 59, 60, -1, 8, 9, 64,
- 11, 66, -1, -1, -1, -1, 71, -1, -1, -1,
- 75, -1, -1, -1, 79, 80, -1, -1, 29, -1,
- 31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
- -1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
- -1, -1, -1, 54, 55, -1, 3, -1, 59, 60,
- -1, 8, 9, 64, 11, 66, -1, -1, -1, -1,
- 71, -1, -1, -1, 75, -1, -1, -1, 79, 80,
- -1, -1, 29, -1, 31, -1, 33, 34, -1, -1,
- -1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
- -1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
- -1, -1, 59, 60, -1, -1, -1, 64, -1, 66,
- -1, -1, -1, -1, 71, -1, -1, -1, 75, -1,
- -1, 1, 79, 80, 4, -1, 6, 7, -1, -1,
- -1, -1, 12, 13, 14, -1, -1, -1, -1, 1,
- -1, -1, 4, -1, 6, 7, -1, -1, 28, -1,
- 12, 13, 14, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 45, 28, -1, -1, -1,
- -1, -1, -1, 1, -1, 3, 4, 5, 6, 7,
- -1, -1, -1, 45, 12, 13, 14, 67, 68, 69,
- 70, -1, 72, -1, -1, -1, -1, 77, 78, 27,
- 28, -1, 30, 31, -1, 67, 68, 69, 70, -1,
- 72, -1, -1, -1, -1, 77, 78, 45, -1, -1,
- 48, 49, 50, -1, -1, -1, -1, -1, -1, -1,
- -1, 59, -1, 61, 62, 63, -1, -1, -1, 67,
- -1, -1, -1, 71, 72, 73, 74, -1, 1, 77,
- 3, 4, 5, 6, 7, -1, -1, -1, -1, 12,
- 13, 14, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, 1, 30, 3, 4,
- 5, 6, 7, -1, -1, -1, -1, 12, 13, 14,
- -1, -1, 45, -1, -1, 48, 49, 50, -1, -1,
- -1, -1, -1, 28, -1, 30, 59, -1, -1, -1,
- -1, -1, -1, -1, 67, -1, -1, -1, -1, 72,
- 45, -1, -1, -1, 77, 50, 1, -1, 3, 4,
- 5, 6, 7, -1, 59, 10, -1, 12, 13, 14,
- -1, -1, 67, -1, -1, 1, -1, 72, 4, 5,
- 6, 7, 77, 28, 10, 30, 12, 13, 14, 4,
- 5, 6, 7, -1, -1, -1, -1, 12, 13, 14,
- 45, -1, 28, -1, 30, 1, -1, -1, 4, -1,
- 6, 7, -1, 28, -1, 30, 12, 13, 14, 45,
- -1, -1, 67, -1, -1, -1, -1, 72, -1, -1,
- 45, 76, 28, -1, -1, 31, -1, -1, -1, -1,
- -1, 67, -1, -1, -1, -1, 72, -1, -1, 45,
- 76, -1, 67, -1, -1, -1, -1, 72, -1, -1,
- -1, -1, 77, -1, -1, -1, -1, -1, -1, 3,
- 4, 67, 6, 7, -1, -1, 72, 11, 12, 13,
- 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, -1, 3, 4, -1,
- 6, 7, -1, -1, 38, 11, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, -1, 59, -1, -1, -1, -1,
- -1, -1, 38, 3, 4, -1, 6, 7, 72, -1,
- -1, 11, 12, 13, 14, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- -1, 3, 4, -1, 6, 7, 72, -1, 38, 11,
- 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
- 22, 23, 24, 25, 26, 27, 28, 29, -1, -1,
- -1, 4, 5, 6, 7, -1, 38, 10, -1, 12,
- 13, 14, 72, 4, 5, 6, 7, -1, -1, 10,
- -1, 12, 13, 14, -1, 28, -1, 30, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 28, -1, 30,
- 72, -1, 45, 4, -1, 6, 7, 4, 5, 6,
- 7, 12, 13, 14, 45, 12, 13, 14, -1, -1,
- -1, -1, -1, -1, 67, -1, -1, 28, -1, 72,
- -1, 28, -1, 30, -1, -1, 67, 4, -1, 6,
- 7, 72, -1, -1, 45, 12, 13, 14, 45, -1,
- -1, -1, -1, -1, 10, -1, -1, -1, -1, -1,
- -1, 28, -1, -1, -1, -1, 67, -1, -1, -1,
- 67, 72, -1, -1, -1, 72, -1, -1, 45, 35,
- 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
- 46, 47, 48, 49, 50, 51, 52, 30, -1, -1,
- 67, -1, 35, 36, 37, 72, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
- 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, 49, 50, 51, 52, 35, 36,
- 37, -1, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, 49, 50, 51, 52
-};
-/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
-#line 3 "/usr/lib/bison.simple"
-
-/* Skeleton output parser for bison,
- Copyright (C) 1984, 1989, 1990 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* As a special exception, when this file is copied by Bison into a
- Bison output file, you may use that output file without restriction.
- This special exception was added by the Free Software Foundation
- in version 1.24 of Bison. */
-
-#ifndef alloca
-#ifdef __GNUC__
-#define alloca __builtin_alloca
-#else /* not GNU C. */
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
-#include <alloca.h>
-#else /* not sparc */
-#if defined (MSDOS) && !defined (__TURBOC__)
-#include <malloc.h>
-#else /* not MSDOS, or __TURBOC__ */
-#if defined(_AIX)
-#include <malloc.h>
- #pragma alloca
-#else /* not MSDOS, __TURBOC__, or _AIX */
-#ifdef __hpux
-#ifdef __cplusplus
-extern "C" {
-void *alloca (unsigned int);
-};
-#else /* not __cplusplus */
-void *alloca ();
-#endif /* not __cplusplus */
-#endif /* __hpux */
-#endif /* not _AIX */
-#endif /* not MSDOS, or __TURBOC__ */
-#endif /* not sparc. */
-#endif /* not GNU C. */
-#endif /* alloca not defined. */
-
-/* This is the parser code that is written into each bison parser
- when the %semantic_parser declaration is not specified in the grammar.
- It was written by Richard Stallman by simplifying the hairy parser
- used when %semantic_parser is specified. */
-
-/* Note: there must be only one dollar sign in this file.
- It is replaced by the list of actions, each action
- as one case of the switch. */
-
-#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY -2
-#define YYEOF 0
-#define YYACCEPT return(0)
-#define YYABORT return(1)
-#define YYERROR goto yyerrlab1
-/* Like YYERROR except do call yyerror.
- This remains here temporarily to ease the
- transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. */
-#define YYFAIL goto yyerrlab
-#define YYRECOVERING() (!!yyerrstatus)
-#define YYBACKUP(token, value) \
-do \
- if (yychar == YYEMPTY && yylen == 1) \
- { yychar = (token), yylval = (value); \
- yychar1 = YYTRANSLATE (yychar); \
- YYPOPSTACK; \
- goto yybackup; \
- } \
- else \
- { yyerror ("syntax error: cannot back up"); YYERROR; } \
-while (0)
-
-#define YYTERROR 1
-#define YYERRCODE 256
-
-#ifndef YYPURE
-#define YYLEX yylex()
-#endif
-
-#ifdef YYPURE
-#ifdef YYLSP_NEEDED
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval, &yylloc)
-#endif
-#else /* not YYLSP_NEEDED */
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval)
-#endif
-#endif /* not YYLSP_NEEDED */
-#endif
-
-/* If nonreentrant, generate the variables here */
-
-#ifndef YYPURE
-
-int yychar; /* the lookahead symbol */
-YYSTYPE yylval; /* the semantic value of the */
- /* lookahead symbol */
-
-#ifdef YYLSP_NEEDED
-YYLTYPE yylloc; /* location data for the lookahead */
- /* symbol */
-#endif
-
-int yynerrs; /* number of parse errors so far */
-#endif /* not YYPURE */
-
-#if YYDEBUG != 0
-int yydebug; /* nonzero means print parse trace */
-/* Since this is uninitialized, it does not stop multiple parsers
- from coexisting. */
-#endif
-
-/* YYINITDEPTH indicates the initial size of the parser's stacks */
-
-#ifndef YYINITDEPTH
-#define YYINITDEPTH 200
-#endif
-
-/* YYMAXDEPTH is the maximum size the stacks can grow to
- (effective only if the built-in stack extension method is used). */
-
-#if YYMAXDEPTH == 0
-#undef YYMAXDEPTH
-#endif
-
-#ifndef YYMAXDEPTH
-#define YYMAXDEPTH 10000
-#endif
-
-/* Prevent warning if -Wstrict-prototypes. */
-#ifdef __GNUC__
-int yyparse (void);
-#endif
-
-#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
-#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
-#else /* not GNU C or C++ */
-#ifndef __cplusplus
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (to, from, count)
- char *to;
- char *from;
- int count;
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#else /* __cplusplus */
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (char *to, char *from, int count)
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#endif
-#endif
-
-#line 196 "/usr/lib/bison.simple"
-
-/* The user can define YYPARSE_PARAM as the name of an argument to be passed
- into yyparse. The argument should have type void *.
- It should actually point to an object.
- Grammar actions can access the variable by casting it
- to the proper pointer type. */
-
-#ifdef YYPARSE_PARAM
-#ifdef __cplusplus
-#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL
-#else /* not __cplusplus */
-#define YYPARSE_PARAM_ARG YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
-#endif /* not __cplusplus */
-#else /* not YYPARSE_PARAM */
-#define YYPARSE_PARAM_ARG
-#define YYPARSE_PARAM_DECL
-#endif /* not YYPARSE_PARAM */
-
-int
-yyparse(YYPARSE_PARAM_ARG)
- YYPARSE_PARAM_DECL
-{
- register int yystate;
- register int yyn;
- register short *yyssp;
- register YYSTYPE *yyvsp;
- int yyerrstatus; /* number of tokens to shift before error messages enabled */
- int yychar1 = 0; /* lookahead token as an internal (translated) token number */
-
- short yyssa[YYINITDEPTH]; /* the state stack */
- YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
-
- short *yyss = yyssa; /* refer to the stacks thru separate pointers */
- YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
-
-#ifdef YYLSP_NEEDED
- YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
- YYLTYPE *yyls = yylsa;
- YYLTYPE *yylsp;
-
-#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
-#else
-#define YYPOPSTACK (yyvsp--, yyssp--)
-#endif
-
- int yystacksize = YYINITDEPTH;
-
-#ifdef YYPURE
- int yychar;
- YYSTYPE yylval;
- int yynerrs;
-#ifdef YYLSP_NEEDED
- YYLTYPE yylloc;
-#endif
-#endif
-
- YYSTYPE yyval; /* the variable used to return */
- /* semantic values from the action */
- /* routines */
-
- int yylen;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Starting parse\n");
-#endif
-
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
-
- /* Initialize stack pointers.
- Waste one element of value and location stack
- so that they stay on the same level as the state stack.
- The wasted elements are never initialized. */
-
- yyssp = yyss - 1;
- yyvsp = yyvs;
-#ifdef YYLSP_NEEDED
- yylsp = yyls;
-#endif
-
-/* Push a new state, which is found in yystate . */
-/* In all cases, when you get here, the value and location stacks
- have just been pushed. so pushing a state here evens the stacks. */
-yynewstate:
-
- *++yyssp = yystate;
-
- if (yyssp >= yyss + yystacksize - 1)
- {
- /* Give user a chance to reallocate the stack */
- /* Use copies of these so that the &'s don't force the real ones into memory. */
- YYSTYPE *yyvs1 = yyvs;
- short *yyss1 = yyss;
-#ifdef YYLSP_NEEDED
- YYLTYPE *yyls1 = yyls;
-#endif
-
- /* Get the current used size of the three stacks, in elements. */
- int size = yyssp - yyss + 1;
-
-#ifdef yyoverflow
- /* Each stack pointer address is followed by the size of
- the data in use in that stack, in bytes. */
-#ifdef YYLSP_NEEDED
- /* This used to be a conditional around just the two extra args,
- but that might be undefined if yyoverflow is a macro. */
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yyls1, size * sizeof (*yylsp),
- &yystacksize);
-#else
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yystacksize);
-#endif
-
- yyss = yyss1; yyvs = yyvs1;
-#ifdef YYLSP_NEEDED
- yyls = yyls1;
-#endif
-#else /* no yyoverflow */
- /* Extend the stack our own way. */
- if (yystacksize >= YYMAXDEPTH)
- {
- yyerror("parser stack overflow");
- return 2;
- }
- yystacksize *= 2;
- if (yystacksize > YYMAXDEPTH)
- yystacksize = YYMAXDEPTH;
- yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
- __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
- yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
- __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
-#ifdef YYLSP_NEEDED
- yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
- __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
-#endif
-#endif /* no yyoverflow */
-
- yyssp = yyss + size - 1;
- yyvsp = yyvs + size - 1;
-#ifdef YYLSP_NEEDED
- yylsp = yyls + size - 1;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Stack size increased to %d\n", yystacksize);
-#endif
-
- if (yyssp >= yyss + yystacksize - 1)
- YYABORT;
- }
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Entering state %d\n", yystate);
-#endif
-
- goto yybackup;
- yybackup:
-
-/* Do appropriate processing given the current state. */
-/* Read a lookahead token if we need one and don't already have one. */
-/* yyresume: */
-
- /* First try to decide what to do without reference to lookahead token. */
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* yychar is either YYEMPTY or YYEOF
- or a valid token in external form. */
-
- if (yychar == YYEMPTY)
- {
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Reading a token: ");
-#endif
- yychar = YYLEX;
- }
-
- /* Convert token to internal form (in yychar1) for indexing tables with */
-
- if (yychar <= 0) /* This means end of input. */
- {
- yychar1 = 0;
- yychar = YYEOF; /* Don't call YYLEX any more */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Now at end of input.\n");
-#endif
- }
- else
- {
- yychar1 = YYTRANSLATE(yychar);
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
- /* Give the individual parser a way to print the precise meaning
- of a token, for further debugging info. */
-#ifdef YYPRINT
- YYPRINT (stderr, yychar, yylval);
-#endif
- fprintf (stderr, ")\n");
- }
-#endif
- }
-
- yyn += yychar1;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
- goto yydefault;
-
- yyn = yytable[yyn];
-
- /* yyn is what to do for this token type in this state.
- Negative => reduce, -yyn is rule number.
- Positive => shift, yyn is new state.
- New state is final state => don't bother to shift,
- just return success.
- 0, or most negative number => error. */
-
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrlab;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- /* Shift the lookahead token. */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
-#endif
-
- /* Discard the token being shifted unless it is eof. */
- if (yychar != YYEOF)
- yychar = YYEMPTY;
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- /* count tokens shifted since error; after three, turn off error status. */
- if (yyerrstatus) yyerrstatus--;
-
- yystate = yyn;
- goto yynewstate;
-
-/* Do the default action for the current state. */
-yydefault:
-
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
-
-/* Do a reduction. yyn is the number of a rule to reduce with. */
-yyreduce:
- yylen = yyr2[yyn];
- if (yylen > 0)
- yyval = yyvsp[1-yylen]; /* implement default value of the action */
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- int i;
-
- fprintf (stderr, "Reducing via rule %d (line %d), ",
- yyn, yyrline[yyn]);
-
- /* Print the symbols being reduced, and their result. */
- for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
- fprintf (stderr, "%s ", yytname[yyrhs[i]]);
- fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
- }
-#endif
-
-
- switch (yyn) {
-
-case 1:
-#line 234 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids an empty source file");
- finish_file ();
- ;
- break;}
-case 2:
-#line 239 "objc-parse.y"
-{
- /* In case there were missing closebraces,
- get us back to the global binding level. */
- while (! global_bindings_p ())
- poplevel (0, 0, 0);
- finish_file ();
- ;
- break;}
-case 3:
-#line 253 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 5:
-#line 254 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 10:
-#line 262 "objc-parse.y"
-{ STRIP_NOPS (yyvsp[-2].ttype);
- if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
- || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
- assemble_asm (yyvsp[-2].ttype);
- else
- error ("argument of `asm' is not a constant string"); ;
- break;}
-case 11:
-#line 270 "objc-parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 12:
-#line 275 "objc-parse.y"
-{ if (pedantic)
- error ("ANSI C forbids data definition with no type or storage class");
- else if (!flag_traditional)
- warning ("data definition has no type or storage class");
-
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 13:
-#line 285 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 14:
-#line 290 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 15:
-#line 295 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 16:
-#line 297 "objc-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 19:
-#line 301 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
- break;}
-case 20:
-#line 307 "objc-parse.y"
-{ if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 21:
-#line 312 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 22:
-#line 314 "objc-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 23:
-#line 320 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 24:
-#line 325 "objc-parse.y"
-{ if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 25:
-#line 330 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 26:
-#line 332 "objc-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 27:
-#line 338 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 28:
-#line 343 "objc-parse.y"
-{ if (! start_function (NULL_TREE, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 29:
-#line 348 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 30:
-#line 350 "objc-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 31:
-#line 356 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 36:
-#line 370 "objc-parse.y"
-{ yyval.code = ADDR_EXPR; ;
- break;}
-case 37:
-#line 372 "objc-parse.y"
-{ yyval.code = NEGATE_EXPR; ;
- break;}
-case 38:
-#line 374 "objc-parse.y"
-{ yyval.code = CONVERT_EXPR; ;
- break;}
-case 39:
-#line 376 "objc-parse.y"
-{ yyval.code = PREINCREMENT_EXPR; ;
- break;}
-case 40:
-#line 378 "objc-parse.y"
-{ yyval.code = PREDECREMENT_EXPR; ;
- break;}
-case 41:
-#line 380 "objc-parse.y"
-{ yyval.code = BIT_NOT_EXPR; ;
- break;}
-case 42:
-#line 382 "objc-parse.y"
-{ yyval.code = TRUTH_NOT_EXPR; ;
- break;}
-case 43:
-#line 386 "objc-parse.y"
-{ yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
- break;}
-case 44:
-#line 391 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 46:
-#line 397 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 47:
-#line 399 "objc-parse.y"
-{ chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 49:
-#line 405 "objc-parse.y"
-{ yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
- break;}
-case 50:
-#line 408 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- pedantic = yyvsp[-1].itype; ;
- break;}
-case 51:
-#line 411 "objc-parse.y"
-{ yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
- overflow_warning (yyval.ttype); ;
- break;}
-case 52:
-#line 415 "objc-parse.y"
-{ tree label = lookup_label (yyvsp[0].ttype);
- if (pedantic)
- pedwarn ("ANSI C forbids `&&'");
- if (label == 0)
- yyval.ttype = null_pointer_node;
- else
- {
- TREE_USED (label) = 1;
- yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
- TREE_CONSTANT (yyval.ttype) = 1;
- }
- ;
- break;}
-case 53:
-#line 443 "objc-parse.y"
-{ skip_evaluation--;
- if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
- && DECL_C_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
- error ("`sizeof' applied to a bit-field");
- yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
- break;}
-case 54:
-#line 449 "objc-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 55:
-#line 452 "objc-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
- break;}
-case 56:
-#line 455 "objc-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 57:
-#line 458 "objc-parse.y"
-{ yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
- break;}
-case 58:
-#line 460 "objc-parse.y"
-{ yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
- break;}
-case 59:
-#line 464 "objc-parse.y"
-{ skip_evaluation++; ;
- break;}
-case 60:
-#line 468 "objc-parse.y"
-{ skip_evaluation++; ;
- break;}
-case 62:
-#line 474 "objc-parse.y"
-{ tree type = groktypename (yyvsp[-2].ttype);
- yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
- break;}
-case 63:
-#line 477 "objc-parse.y"
-{ start_init (NULL_TREE, NULL, 0);
- yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
- really_start_incremental_init (yyvsp[-2].ttype); ;
- break;}
-case 64:
-#line 481 "objc-parse.y"
-{ char *name;
- tree result = pop_init_level (0);
- tree type = yyvsp[-5].ttype;
- finish_init ();
-
- if (pedantic && ! flag_isoc9x)
- pedwarn ("ANSI C forbids constructor expressions");
- if (TYPE_NAME (type) != 0)
- {
- if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
- name = IDENTIFIER_POINTER (TYPE_NAME (type));
- else
- name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
- }
- else
- name = "";
- yyval.ttype = result;
- if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
- {
- int failure = complete_array_type (type, yyval.ttype, 1);
- if (failure)
- abort ();
- }
- ;
- break;}
-case 66:
-#line 510 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 67:
-#line 512 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 68:
-#line 514 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 69:
-#line 516 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 70:
-#line 518 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 71:
-#line 520 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 72:
-#line 522 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 73:
-#line 524 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 74:
-#line 526 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 75:
-#line 528 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 76:
-#line 530 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 77:
-#line 532 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 78:
-#line 534 "objc-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
- break;}
-case 79:
-#line 537 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-3].ttype == boolean_false_node;
- yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 80:
-#line 540 "objc-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
- break;}
-case 81:
-#line 543 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-3].ttype == boolean_true_node;
- yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 82:
-#line 546 "objc-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
- break;}
-case 83:
-#line 549 "objc-parse.y"
-{ skip_evaluation += ((yyvsp[-4].ttype == boolean_true_node)
- - (yyvsp[-4].ttype == boolean_false_node)); ;
- break;}
-case 84:
-#line 552 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-6].ttype == boolean_true_node;
- yyval.ttype = build_conditional_expr (yyvsp[-6].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 85:
-#line 555 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
- /* Make sure first operand is calculated only once. */
- yyvsp[0].ttype = save_expr (yyvsp[-1].ttype);
- yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[0].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
- break;}
-case 86:
-#line 562 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-4].ttype == boolean_true_node;
- yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 87:
-#line 565 "objc-parse.y"
-{ char class;
- yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
- class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR);
- ;
- break;}
-case 88:
-#line 573 "objc-parse.y"
-{ char class;
- yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
- /* This inhibits warnings in truthvalue_conversion. */
- class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK);
- ;
- break;}
-case 89:
-#line 585 "objc-parse.y"
-{
- yyval.ttype = lastiddecl;
- if (!yyval.ttype || yyval.ttype == error_mark_node)
- {
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- tree decl;
-
- if (objc_receiver_context
- && ! (objc_receiver_context
- && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
- /* we have a message to super */
- yyval.ttype = get_super_receiver ();
- else if (objc_method_context
- && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
- {
- if (is_private (decl))
- yyval.ttype = error_mark_node;
- else
- yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
- }
- else
- {
- /* Ordinary implicit function declaration. */
- yyval.ttype = implicitly_declare (yyvsp[0].ttype);
- assemble_external (yyval.ttype);
- TREE_USED (yyval.ttype) = 1;
- }
- }
- else if (current_function_decl == 0)
- {
- error ("`%s' undeclared here (not in a function)",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = error_mark_node;
- }
- else
- {
- tree decl;
-
- if (objc_receiver_context
- && ! strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super"))
- /* we have a message to super */
- yyval.ttype = get_super_receiver ();
- else if (objc_method_context
- && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
- {
- if (is_private (decl))
- yyval.ttype = error_mark_node;
- else
- yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
- }
- else
- {
- if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
- || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
- {
- error ("`%s' undeclared (first use in this function)",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
-
- if (! undeclared_variable_notice)
- {
- error ("(Each undeclared identifier is reported only once");
- error ("for each function it appears in.)");
- undeclared_variable_notice = 1;
- }
- }
- yyval.ttype = error_mark_node;
- /* Prevent repeated error messages. */
- IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
- IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
- }
- }
- }
- else if (TREE_TYPE (yyval.ttype) == error_mark_node)
- yyval.ttype = error_mark_node;
- else if (C_DECL_ANTICIPATED (yyval.ttype))
- {
- /* The first time we see a build-in function used,
- if it has not been declared. */
- C_DECL_ANTICIPATED (yyval.ttype) = 0;
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- /* Omit the implicit declaration we
- would ordinarily do, so we don't lose
- the actual built in type.
- But print a diagnostic for the mismatch. */
- if (objc_method_context
- && is_ivar (objc_ivar_chain, yyvsp[0].ttype))
- error ("Instance variable `%s' implicitly declared as function",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
- else
- if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
- error ("`%s' implicitly declared as function",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
- else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
- != TYPE_MODE (integer_type_node))
- && (TREE_TYPE (TREE_TYPE (yyval.ttype))
- != void_type_node))
- pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
- /* If it really returns void, change that to int. */
- if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
- TREE_TYPE (yyval.ttype)
- = build_function_type (integer_type_node,
- TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
- }
- else
- pedwarn ("built-in function `%s' used without declaration",
- IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
-
- /* Do what we would ordinarily do when a fn is used. */
- assemble_external (yyval.ttype);
- TREE_USED (yyval.ttype) = 1;
- }
- else
- {
- assemble_external (yyval.ttype);
- TREE_USED (yyval.ttype) = 1;
- /* we have a definition - still check if iVariable */
-
- if (!objc_receiver_context
- || (objc_receiver_context
- && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
- {
- tree decl;
-
- if (objc_method_context
- && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
- {
- if (IDENTIFIER_LOCAL_VALUE (yyvsp[0].ttype))
- warning ("local declaration of `%s' hides instance variable",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- else
- {
- if (is_private (decl))
- yyval.ttype = error_mark_node;
- else
- yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
- }
- }
- }
- else /* we have a message to super */
- yyval.ttype = get_super_receiver ();
- }
-
- if (TREE_CODE (yyval.ttype) == CONST_DECL)
- {
- yyval.ttype = DECL_INITIAL (yyval.ttype);
- /* This is to prevent an enum whose value is 0
- from being considered a null pointer constant. */
- yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
- TREE_CONSTANT (yyval.ttype) = 1;
- }
- ;
- break;}
-case 91:
-#line 745 "objc-parse.y"
-{ yyval.ttype = combine_strings (yyvsp[0].ttype); ;
- break;}
-case 92:
-#line 747 "objc-parse.y"
-{ char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
- yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 93:
-#line 753 "objc-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 94:
-#line 755 "objc-parse.y"
-{ if (current_function_decl == 0)
- {
- error ("braced-group within expression allowed only inside a function");
- YYERROR;
- }
- /* We must force a BLOCK for this level
- so that, if it is not expanded later,
- there is a way to turn off the entire subtree of blocks
- that are contained in it. */
- keep_next_level ();
- push_iterator_stack ();
- push_label_level ();
- yyval.ttype = expand_start_stmt_expr (); ;
- break;}
-case 95:
-#line 769 "objc-parse.y"
-{ tree rtl_exp;
- if (pedantic)
- pedwarn ("ANSI C forbids braced-groups within expressions");
- pop_iterator_stack ();
- pop_label_level ();
- rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
- /* The statements have side effects, so the group does. */
- TREE_SIDE_EFFECTS (rtl_exp) = 1;
-
- if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
- {
- /* Make a BIND_EXPR for the BLOCK already made. */
- yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
- NULL_TREE, rtl_exp, yyvsp[-1].ttype);
- /* Remove the block from the tree at this point.
- It gets put back at the proper place
- when the BIND_EXPR is expanded. */
- delete_block (yyvsp[-1].ttype);
- }
- else
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 96:
-#line 792 "objc-parse.y"
-{ yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 97:
-#line 794 "objc-parse.y"
-{ yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 98:
-#line 796 "objc-parse.y"
-{
- if (doing_objc_thang)
- {
- if (is_public (yyvsp[-2].ttype, yyvsp[0].ttype))
- yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
- else
- yyval.ttype = error_mark_node;
- }
- else
- yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 99:
-#line 808 "objc-parse.y"
-{
- tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
-
- if (doing_objc_thang)
- {
- if (is_public (expr, yyvsp[0].ttype))
- yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
- else
- yyval.ttype = error_mark_node;
- }
- else
- yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
- ;
- break;}
-case 100:
-#line 822 "objc-parse.y"
-{ yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
- break;}
-case 101:
-#line 824 "objc-parse.y"
-{ yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
- break;}
-case 102:
-#line 826 "objc-parse.y"
-{ yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
- break;}
-case 103:
-#line 828 "objc-parse.y"
-{ yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
- break;}
-case 104:
-#line 830 "objc-parse.y"
-{ yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
- break;}
-case 105:
-#line 832 "objc-parse.y"
-{ yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
- break;}
-case 106:
-#line 834 "objc-parse.y"
-{ yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
- break;}
-case 108:
-#line 841 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 110:
-#line 849 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 113:
-#line 857 "objc-parse.y"
-{ c_mark_varargs ();
- if (pedantic)
- pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
- break;}
-case 114:
-#line 867 "objc-parse.y"
-{ ;
- break;}
-case 119:
-#line 883 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 120:
-#line 888 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 121:
-#line 893 "objc-parse.y"
-{ shadow_tag_warned (yyvsp[-1].ttype, 1);
- pedwarn ("empty declaration"); ;
- break;}
-case 122:
-#line 896 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 123:
-#line 905 "objc-parse.y"
-{ ;
- break;}
-case 128:
-#line 920 "objc-parse.y"
-{ yyval.itype = suspend_momentary ();
- pending_xref_error ();
- declspec_stack = tree_cons (prefix_attributes,
- current_declspecs,
- declspec_stack);
- split_specs_attrs (yyvsp[0].ttype,
- &current_declspecs, &prefix_attributes); ;
- break;}
-case 129:
-#line 931 "objc-parse.y"
-{ prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
- break;}
-case 130:
-#line 936 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 131:
-#line 941 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 132:
-#line 946 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 133:
-#line 951 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 134:
-#line 956 "objc-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 135:
-#line 958 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 136:
-#line 960 "objc-parse.y"
-{ pedantic = yyvsp[-1].itype; ;
- break;}
-case 137:
-#line 970 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 138:
-#line 972 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 139:
-#line 976 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 140:
-#line 978 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 141:
-#line 980 "objc-parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 142:
-#line 985 "objc-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 143:
-#line 990 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 144:
-#line 992 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 145:
-#line 997 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 146:
-#line 999 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 147:
-#line 1001 "objc-parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 148:
-#line 1014 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 149:
-#line 1016 "objc-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
- break;}
-case 150:
-#line 1018 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 151:
-#line 1020 "objc-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 152:
-#line 1025 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 153:
-#line 1028 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 154:
-#line 1030 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 155:
-#line 1033 "objc-parse.y"
-{ if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
- TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
- break;}
-case 156:
-#line 1047 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 157:
-#line 1049 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 158:
-#line 1053 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 159:
-#line 1055 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 162:
-#line 1065 "objc-parse.y"
-{ /* For a typedef name, record the meaning, not the name.
- In case of `foo foo, bar;'. */
- yyval.ttype = lookup_name (yyvsp[0].ttype); ;
- break;}
-case 163:
-#line 1069 "objc-parse.y"
-{ yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 164:
-#line 1071 "objc-parse.y"
-{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
- break;}
-case 165:
-#line 1076 "objc-parse.y"
-{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
- break;}
-case 166:
-#line 1078 "objc-parse.y"
-{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
- break;}
-case 167:
-#line 1080 "objc-parse.y"
-{ yyval.ttype = groktypename (yyvsp[-1].ttype); ;
- break;}
-case 175:
-#line 1102 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 176:
-#line 1104 "objc-parse.y"
-{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 177:
-#line 1111 "objc-parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes);
- start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
- break;}
-case 178:
-#line 1116 "objc-parse.y"
-{ finish_init ();
- finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 179:
-#line 1119 "objc-parse.y"
-{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- finish_decl (d, NULL_TREE, yyvsp[-1].ttype);
- ;
- break;}
-case 180:
-#line 1127 "objc-parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes);
- start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
- break;}
-case 181:
-#line 1132 "objc-parse.y"
-{ finish_init ();
- decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype, prefix_attributes);
- finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 182:
-#line 1136 "objc-parse.y"
-{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 183:
-#line 1144 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 184:
-#line 1146 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 185:
-#line 1151 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 186:
-#line 1153 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 187:
-#line 1158 "objc-parse.y"
-{ yyval.ttype = yyvsp[-2].ttype; ;
- break;}
-case 188:
-#line 1163 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 189:
-#line 1165 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 190:
-#line 1170 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 191:
-#line 1172 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 192:
-#line 1174 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
- break;}
-case 193:
-#line 1176 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
- break;}
-case 194:
-#line 1178 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 200:
-#line 1196 "objc-parse.y"
-{ really_start_incremental_init (NULL_TREE);
- /* Note that the call to clear_momentary
- is in process_init_element. */
- push_momentary (); ;
- break;}
-case 201:
-#line 1201 "objc-parse.y"
-{ yyval.ttype = pop_init_level (0);
- if (yyval.ttype == error_mark_node
- && ! (yychar == STRING || yychar == CONSTANT))
- pop_momentary ();
- else
- pop_momentary_nofree (); ;
- break;}
-case 202:
-#line 1209 "objc-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 203:
-#line 1215 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids empty initializer braces"); ;
- break;}
-case 209:
-#line 1231 "objc-parse.y"
-{ set_init_label (yyvsp[-1].ttype); ;
- break;}
-case 212:
-#line 1238 "objc-parse.y"
-{ push_init_level (0); ;
- break;}
-case 213:
-#line 1240 "objc-parse.y"
-{ process_init_element (pop_init_level (0)); ;
- break;}
-case 214:
-#line 1242 "objc-parse.y"
-{ process_init_element (yyvsp[0].ttype); ;
- break;}
-case 218:
-#line 1253 "objc-parse.y"
-{ set_init_label (yyvsp[0].ttype); ;
- break;}
-case 219:
-#line 1261 "objc-parse.y"
-{ push_c_function_context ();
- if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); ;
- break;}
-case 220:
-#line 1270 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 221:
-#line 1278 "objc-parse.y"
-{ finish_function (1);
- pop_c_function_context (); ;
- break;}
-case 222:
-#line 1284 "objc-parse.y"
-{ push_c_function_context ();
- if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); ;
- break;}
-case 223:
-#line 1293 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 224:
-#line 1301 "objc-parse.y"
-{ finish_function (1);
- pop_c_function_context (); ;
- break;}
-case 227:
-#line 1317 "objc-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 228:
-#line 1319 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 229:
-#line 1324 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 230:
-#line 1326 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 231:
-#line 1328 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 232:
-#line 1335 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 235:
-#line 1347 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 236:
-#line 1352 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 237:
-#line 1354 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 238:
-#line 1356 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 239:
-#line 1363 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 241:
-#line 1372 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 242:
-#line 1377 "objc-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 243:
-#line 1379 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 244:
-#line 1381 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 245:
-#line 1383 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 246:
-#line 1390 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 248:
-#line 1396 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 249:
-#line 1398 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 250:
-#line 1403 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 251:
-#line 1405 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 252:
-#line 1410 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 253:
-#line 1412 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 254:
-#line 1417 "objc-parse.y"
-{ yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
- /* Start scope of tag before parsing components. */
- ;
- break;}
-case 255:
-#line 1421 "objc-parse.y"
-{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 256:
-#line 1423 "objc-parse.y"
-{ yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
- yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
- ;
- break;}
-case 257:
-#line 1427 "objc-parse.y"
-{ yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
- break;}
-case 258:
-#line 1429 "objc-parse.y"
-{ yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
- break;}
-case 259:
-#line 1431 "objc-parse.y"
-{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 260:
-#line 1433 "objc-parse.y"
-{ yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
- yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
- ;
- break;}
-case 261:
-#line 1437 "objc-parse.y"
-{ yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
- break;}
-case 262:
-#line 1439 "objc-parse.y"
-{ yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = start_enum (yyvsp[-1].ttype); ;
- break;}
-case 263:
-#line 1442 "objc-parse.y"
-{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-7].ttype, yyvsp[0].ttype));
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 264:
-#line 1445 "objc-parse.y"
-{ yyvsp[0].itype = suspend_momentary ();
- yyval.ttype = start_enum (NULL_TREE); ;
- break;}
-case 265:
-#line 1448 "objc-parse.y"
-{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-6].ttype, yyvsp[0].ttype));
- resume_momentary (yyvsp[-5].itype); ;
- break;}
-case 266:
-#line 1451 "objc-parse.y"
-{ yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
- break;}
-case 270:
-#line 1462 "objc-parse.y"
-{ if (pedantic && ! flag_isoc9x)
- pedwarn ("comma at end of enumerator list"); ;
- break;}
-case 271:
-#line 1468 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 272:
-#line 1470 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- pedwarn ("no semicolon at end of struct or union"); ;
- break;}
-case 273:
-#line 1475 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 274:
-#line 1477 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 275:
-#line 1479 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("extra semicolon in struct or union specified"); ;
- break;}
-case 276:
-#line 1483 "objc-parse.y"
-{
- tree interface = lookup_interface (yyvsp[-1].ttype);
-
- if (interface)
- yyval.ttype = get_class_ivars (interface);
- else
- {
- error ("Cannot find interface declaration for `%s'",
- IDENTIFIER_POINTER (yyvsp[-1].ttype));
- yyval.ttype = NULL_TREE;
- }
- ;
- break;}
-case 277:
-#line 1508 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 278:
-#line 1514 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag(yyvsp[0].ttype);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 279:
-#line 1519 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 280:
-#line 1525 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag(yyvsp[0].ttype);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 281:
-#line 1530 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 282:
-#line 1532 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- pedantic = yyvsp[-1].itype; ;
- break;}
-case 284:
-#line 1539 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 285:
-#line 1544 "objc-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 286:
-#line 1548 "objc-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 287:
-#line 1551 "objc-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 289:
-#line 1563 "objc-parse.y"
-{ if (yyvsp[-2].ttype == error_mark_node)
- yyval.ttype = yyvsp[-2].ttype;
- else
- yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
- break;}
-case 290:
-#line 1568 "objc-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 291:
-#line 1574 "objc-parse.y"
-{ yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 292:
-#line 1576 "objc-parse.y"
-{ yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 293:
-#line 1581 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 294:
-#line 1583 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 295:
-#line 1588 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 297:
-#line 1594 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 298:
-#line 1596 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 299:
-#line 1601 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 300:
-#line 1603 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 301:
-#line 1608 "objc-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 302:
-#line 1611 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 303:
-#line 1613 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 304:
-#line 1615 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 305:
-#line 1617 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 306:
-#line 1619 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 307:
-#line 1621 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 308:
-#line 1623 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 309:
-#line 1625 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
- break;}
-case 310:
-#line 1629 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 311:
-#line 1638 "objc-parse.y"
-{
- if (pedantic && yyvsp[0].ends_in_label)
- pedwarn ("ANSI C forbids label at end of compound statement");
- ;
- break;}
-case 313:
-#line 1647 "objc-parse.y"
-{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
- break;}
-case 314:
-#line 1649 "objc-parse.y"
-{ yyval.ends_in_label = 0; ;
- break;}
-case 318:
-#line 1661 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- pushlevel (0);
- clear_last_expr ();
- push_momentary ();
- expand_start_bindings (0);
- if (objc_method_context)
- add_objc_decls ();
- ;
- break;}
-case 320:
-#line 1676 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids label declarations"); ;
- break;}
-case 323:
-#line 1687 "objc-parse.y"
-{ tree link;
- for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
- {
- tree label = shadow_label (TREE_VALUE (link));
- C_DECLARED_LABEL_FLAG (label) = 1;
- declare_nonlocal_label (label);
- }
- ;
- break;}
-case 324:
-#line 1701 "objc-parse.y"
-{;
- break;}
-case 326:
-#line 1705 "objc-parse.y"
-{ compstmt_count++; ;
- break;}
-case 327:
-#line 1708 "objc-parse.y"
-{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
- break;}
-case 328:
-#line 1710 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- yyval.ttype = poplevel (1, 1, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 329:
-#line 1718 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- yyval.ttype = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 330:
-#line 1726 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- yyval.ttype = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 333:
-#line 1746 "objc-parse.y"
-{ emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- c_expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0,
- compstmt_count);
- yyval.itype = stmt_count;
- if_stmt_file = yyvsp[-5].filename;
- if_stmt_line = yyvsp[-4].lineno;
- position_after_white_space (); ;
- break;}
-case 334:
-#line 1760 "objc-parse.y"
-{ stmt_count++;
- compstmt_count++;
- emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- expand_start_loop_continue_elsewhere (1);
- position_after_white_space (); ;
- break;}
-case 335:
-#line 1768 "objc-parse.y"
-{ expand_loop_continue_here (); ;
- break;}
-case 336:
-#line 1772 "objc-parse.y"
-{ yyval.filename = input_filename; ;
- break;}
-case 337:
-#line 1776 "objc-parse.y"
-{ yyval.lineno = lineno; ;
- break;}
-case 338:
-#line 1781 "objc-parse.y"
-{ ;
- break;}
-case 339:
-#line 1786 "objc-parse.y"
-{ ;
- break;}
-case 340:
-#line 1791 "objc-parse.y"
-{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
- break;}
-case 341:
-#line 1796 "objc-parse.y"
-{ yyval.ends_in_label = 0; ;
- break;}
-case 342:
-#line 1798 "objc-parse.y"
-{ yyval.ends_in_label = 1; ;
- break;}
-case 343:
-#line 1804 "objc-parse.y"
-{ stmt_count++; ;
- break;}
-case 345:
-#line 1807 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
-/* It appears that this should not be done--that a non-lvalue array
- shouldn't get an error if the value isn't used.
- Section 3.2.2.1 says that an array lvalue gets converted to a pointer
- if it appears as a top-level expression,
- but says nothing about non-lvalue arrays. */
-#if 0
- /* Call default_conversion to get an error
- on referring to a register array if pedantic. */
- if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
- || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
- yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
-#endif
- iterator_expand (yyvsp[-1].ttype);
- clear_momentary (); ;
- break;}
-case 346:
-#line 1824 "objc-parse.y"
-{ c_expand_start_else ();
- yyvsp[-1].itype = stmt_count;
- position_after_white_space (); ;
- break;}
-case 347:
-#line 1828 "objc-parse.y"
-{ c_expand_end_cond ();
- if (extra_warnings && stmt_count == yyvsp[-3].itype)
- warning ("empty body in an else-statement"); ;
- break;}
-case 348:
-#line 1832 "objc-parse.y"
-{ c_expand_end_cond ();
- /* This warning is here instead of in simple_if, because we
- do not want a warning if an empty if is followed by an
- else statement. Increment stmt_count so we don't
- give a second error if this is a nested `if'. */
- if (extra_warnings && stmt_count++ == yyvsp[0].itype)
- warning_with_file_and_line (if_stmt_file, if_stmt_line,
- "empty body in an if-statement"); ;
- break;}
-case 349:
-#line 1844 "objc-parse.y"
-{ c_expand_end_cond (); ;
- break;}
-case 350:
-#line 1846 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
- /* The emit_nop used to come before emit_line_note,
- but that made the nop seem like part of the preceding line.
- And that was confusing when the preceding line was
- inside of an if statement and was not really executed.
- I think it ought to work to put the nop after the line number.
- We will see. --rms, July 15, 1991. */
- emit_nop (); ;
- break;}
-case 351:
-#line 1856 "objc-parse.y"
-{ /* Don't start the loop till we have succeeded
- in parsing the end test. This is to make sure
- that we end every loop we start. */
- expand_start_loop (1);
- emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-1].ttype));
- position_after_white_space (); ;
- break;}
-case 352:
-#line 1865 "objc-parse.y"
-{ expand_end_loop (); ;
- break;}
-case 353:
-#line 1868 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-2].ttype));
- expand_end_loop ();
- clear_momentary (); ;
- break;}
-case 354:
-#line 1875 "objc-parse.y"
-{ expand_end_loop ();
- clear_momentary (); ;
- break;}
-case 355:
-#line 1879 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
- /* Next step is to call expand_start_loop_continue_elsewhere,
- but wait till after we parse the entire for (...).
- Otherwise, invalid input might cause us to call that
- fn without calling expand_end_loop. */
- ;
- break;}
-case 356:
-#line 1891 "objc-parse.y"
-{ yyvsp[0].lineno = lineno;
- yyval.filename = input_filename; ;
- break;}
-case 357:
-#line 1894 "objc-parse.y"
-{
- /* Start the loop. Doing this after parsing
- all the expressions ensures we will end the loop. */
- expand_start_loop_continue_elsewhere (1);
- /* Emit the end-test, with a line number. */
- emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
- if (yyvsp[-4].ttype)
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-4].ttype));
- /* Don't let the tree nodes for $9 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- yyvsp[-3].lineno = lineno;
- yyvsp[-2].filename = input_filename;
- position_after_white_space (); ;
- break;}
-case 358:
-#line 1910 "objc-parse.y"
-{ /* Emit the increment expression, with a line number. */
- emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
- expand_loop_continue_here ();
- if (yyvsp[-3].ttype)
- c_expand_expr_stmt (yyvsp[-3].ttype);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary ();
- expand_end_loop (); ;
- break;}
-case 359:
-#line 1921 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- c_expand_start_case (yyvsp[-1].ttype);
- /* Don't let the tree nodes for $3 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- position_after_white_space (); ;
- break;}
-case 360:
-#line 1929 "objc-parse.y"
-{ expand_end_case (yyvsp[-3].ttype);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); ;
- break;}
-case 361:
-#line 1935 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
- if ( ! expand_exit_something ())
- error ("break statement not within loop or switch"); ;
- break;}
-case 362:
-#line 1940 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
- if (! expand_continue_loop (NULL_PTR))
- error ("continue statement not within a loop"); ;
- break;}
-case 363:
-#line 1945 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
- c_expand_return (NULL_TREE); ;
- break;}
-case 364:
-#line 1949 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
- c_expand_return (yyvsp[-1].ttype); ;
- break;}
-case 365:
-#line 1953 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
- STRIP_NOPS (yyvsp[-2].ttype);
- if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
- || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
- expand_asm (yyvsp[-2].ttype);
- else
- error ("argument of `asm' is not a constant string"); ;
- break;}
-case 366:
-#line 1964 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
- c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
- yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 367:
-#line 1971 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
- c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
- yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 368:
-#line 1979 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
- c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
- yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 369:
-#line 1985 "objc-parse.y"
-{ tree decl;
- stmt_count++;
- emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
- decl = lookup_label (yyvsp[-1].ttype);
- if (decl != 0)
- {
- TREE_USED (decl) = 1;
- expand_goto (decl);
- }
- ;
- break;}
-case 370:
-#line 1996 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids `goto *expr;'");
- stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
- break;}
-case 373:
-#line 2011 "objc-parse.y"
-{
- /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-
- yyval.itype = 0;
- if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
- error ("invalid `for (ITERATOR)' syntax");
- else if (! ITERATOR_P (yyvsp[-1].ttype))
- error ("`%s' is not an iterator",
- IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
- else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
- error ("`for (%s)' inside expansion of same iterator",
- IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
- else
- {
- yyval.itype = 1;
- iterator_for_loop_start (yyvsp[-1].ttype);
- }
- ;
- break;}
-case 374:
-#line 2032 "objc-parse.y"
-{
- if (yyvsp[-1].itype)
- iterator_for_loop_end (yyvsp[-3].ttype);
- ;
- break;}
-case 375:
-#line 2067 "objc-parse.y"
-{ register tree value = check_case_value (yyvsp[-1].ttype);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- stmt_count++;
-
- if (value != error_mark_node)
- {
- tree duplicate;
- int success;
-
- if (pedantic && ! INTEGRAL_TYPE_P (TREE_TYPE (value)))
- pedwarn ("label must have integral type in ANSI C");
-
- success = pushcase (value, convert_and_check,
- label, &duplicate);
-
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); ;
- break;}
-case 376:
-#line 2098 "objc-parse.y"
-{ register tree value1 = check_case_value (yyvsp[-3].ttype);
- register tree value2 = check_case_value (yyvsp[-1].ttype);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- if (pedantic)
- pedwarn ("ANSI C forbids case ranges");
- stmt_count++;
-
- if (value1 != error_mark_node && value2 != error_mark_node)
- {
- tree duplicate;
- int success = pushcase_range (value1, value2,
- convert_and_check, label,
- &duplicate);
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 4)
- warning ("empty case range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); ;
- break;}
-case 377:
-#line 2129 "objc-parse.y"
-{
- tree duplicate;
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
- int success = pushcase (NULL_TREE, 0, label, &duplicate);
- stmt_count++;
- if (success == 1)
- error ("default label not within a switch statement");
- else if (success == 2)
- {
- error ("multiple default labels in one switch");
- error_with_decl (duplicate, "this is the first default label");
- }
- position_after_white_space (); ;
- break;}
-case 378:
-#line 2144 "objc-parse.y"
-{ tree label = define_label (input_filename, lineno, yyvsp[-2].ttype);
- stmt_count++;
- emit_nop ();
- if (label)
- {
- expand_label (label);
- decl_attributes (label, yyvsp[0].ttype, NULL_TREE);
- }
- position_after_white_space (); ;
- break;}
-case 379:
-#line 2159 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 380:
-#line 2162 "objc-parse.y"
-{ emit_line_note (input_filename, lineno); ;
- break;}
-case 381:
-#line 2167 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 383:
-#line 2174 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 386:
-#line 2181 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 387:
-#line 2186 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 388:
-#line 2191 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
- break;}
-case 389:
-#line 2193 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
- break;}
-case 390:
-#line 2199 "objc-parse.y"
-{ pushlevel (0);
- clear_parm_order ();
- declare_parm_level (0); ;
- break;}
-case 391:
-#line 2203 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); ;
- break;}
-case 393:
-#line 2211 "objc-parse.y"
-{ tree parm;
- if (pedantic)
- pedwarn ("ANSI C forbids forward parameter declarations");
- /* Mark the forward decls as such. */
- for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
- TREE_ASM_WRITTEN (parm) = 1;
- clear_parm_order (); ;
- break;}
-case 394:
-#line 2219 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 395:
-#line 2221 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
- break;}
-case 396:
-#line 2227 "objc-parse.y"
-{ yyval.ttype = get_parm_info (0); ;
- break;}
-case 397:
-#line 2229 "objc-parse.y"
-{ yyval.ttype = get_parm_info (0);
- /* Gcc used to allow this as an extension. However, it does
- not work for all targets, and thus has been disabled.
- Also, since func (...) and func () are indistinguishable,
- it caused problems with the code in expand_builtin which
- tries to verify that BUILT_IN_NEXT_ARG is being used
- correctly. */
- error ("ANSI C requires a named argument before `...'");
- ;
- break;}
-case 398:
-#line 2239 "objc-parse.y"
-{ yyval.ttype = get_parm_info (1); ;
- break;}
-case 399:
-#line 2241 "objc-parse.y"
-{ yyval.ttype = get_parm_info (0); ;
- break;}
-case 400:
-#line 2246 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 401:
-#line 2248 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 402:
-#line 2255 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 403:
-#line 2264 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 404:
-#line 2273 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 405:
-#line 2282 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 406:
-#line 2292 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 407:
-#line 2306 "objc-parse.y"
-{ pushlevel (0);
- clear_parm_order ();
- declare_parm_level (1); ;
- break;}
-case 408:
-#line 2310 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); ;
- break;}
-case 410:
-#line 2318 "objc-parse.y"
-{ tree t;
- for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
- if (TREE_VALUE (t) == NULL_TREE)
- error ("`...' in old-style identifier list");
- yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 411:
-#line 2328 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 412:
-#line 2330 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 413:
-#line 2336 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 414:
-#line 2338 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 415:
-#line 2343 "objc-parse.y"
-{ yyval.itype = pedantic;
- pedantic = 0; ;
- break;}
-case 421:
-#line 2356 "objc-parse.y"
-{
- if (objc_implementation_context)
- {
- finish_class (objc_implementation_context);
- objc_ivar_chain = NULL_TREE;
- objc_implementation_context = NULL_TREE;
- }
- else
- warning ("`@end' must appear in an implementation context");
- ;
- break;}
-case 422:
-#line 2371 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 423:
-#line 2373 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 424:
-#line 2378 "objc-parse.y"
-{
- objc_declare_class (yyvsp[-1].ttype);
- ;
- break;}
-case 425:
-#line 2384 "objc-parse.y"
-{
- objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
- ;
- break;}
-case 426:
-#line 2390 "objc-parse.y"
-{
- objc_interface_context = objc_ivar_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
- objc_public_flag = 0;
- ;
- break;}
-case 427:
-#line 2396 "objc-parse.y"
-{
- continue_class (objc_interface_context);
- ;
- break;}
-case 428:
-#line 2401 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 429:
-#line 2407 "objc-parse.y"
-{
- objc_interface_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-1].ttype, NULL_TREE, yyvsp[0].ttype);
- continue_class (objc_interface_context);
- ;
- break;}
-case 430:
-#line 2414 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 431:
-#line 2420 "objc-parse.y"
-{
- objc_interface_context = objc_ivar_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[-1].ttype);
- objc_public_flag = 0;
- ;
- break;}
-case 432:
-#line 2426 "objc-parse.y"
-{
- continue_class (objc_interface_context);
- ;
- break;}
-case 433:
-#line 2431 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 434:
-#line 2437 "objc-parse.y"
-{
- objc_interface_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- continue_class (objc_interface_context);
- ;
- break;}
-case 435:
-#line 2444 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 436:
-#line 2450 "objc-parse.y"
-{
- objc_implementation_context = objc_ivar_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
- objc_public_flag = 0;
- ;
- break;}
-case 437:
-#line 2456 "objc-parse.y"
-{
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 438:
-#line 2462 "objc-parse.y"
-{
- objc_implementation_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[0].ttype, NULL_TREE, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 439:
-#line 2470 "objc-parse.y"
-{
- objc_implementation_context = objc_ivar_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
- objc_public_flag = 0;
- ;
- break;}
-case 440:
-#line 2476 "objc-parse.y"
-{
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 441:
-#line 2482 "objc-parse.y"
-{
- objc_implementation_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 442:
-#line 2490 "objc-parse.y"
-{
- objc_interface_context
- = start_class (CATEGORY_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
- continue_class (objc_interface_context);
- ;
- break;}
-case 443:
-#line 2497 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 444:
-#line 2503 "objc-parse.y"
-{
- objc_implementation_context
- = start_class (CATEGORY_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 445:
-#line 2513 "objc-parse.y"
-{
- remember_protocol_qualifiers ();
- objc_interface_context
- = start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 446:
-#line 2519 "objc-parse.y"
-{
- forget_protocol_qualifiers();
- finish_protocol(objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 447:
-#line 2528 "objc-parse.y"
-{
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 449:
-#line 2536 "objc-parse.y"
-{
- if (yyvsp[-2].code == LT_EXPR && yyvsp[0].code == GT_EXPR)
- yyval.ttype = yyvsp[-1].ttype;
- else
- YYERROR1;
- ;
- break;}
-case 452:
-#line 2550 "objc-parse.y"
-{ objc_public_flag = 2; ;
- break;}
-case 453:
-#line 2551 "objc-parse.y"
-{ objc_public_flag = 0; ;
- break;}
-case 454:
-#line 2552 "objc-parse.y"
-{ objc_public_flag = 1; ;
- break;}
-case 455:
-#line 2557 "objc-parse.y"
-{
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 457:
-#line 2562 "objc-parse.y"
-{
- if (pedantic)
- pedwarn ("extra semicolon in struct or union specified");
- ;
- break;}
-case 458:
-#line 2580 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 459:
-#line 2586 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-1].itype); ;
- break;}
-case 460:
-#line 2592 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 461:
-#line 2597 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 464:
-#line 2604 "objc-parse.y"
-{
- yyval.ttype = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- yyvsp[0].ttype, current_declspecs,
- NULL_TREE);
- ;
- break;}
-case 465:
-#line 2611 "objc-parse.y"
-{
- yyval.ttype = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- yyvsp[-2].ttype, current_declspecs, yyvsp[0].ttype);
- ;
- break;}
-case 466:
-#line 2617 "objc-parse.y"
-{
- yyval.ttype = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- NULL_TREE,
- current_declspecs, yyvsp[0].ttype);
- ;
- break;}
-case 467:
-#line 2627 "objc-parse.y"
-{
- remember_protocol_qualifiers ();
- if (objc_implementation_context)
- objc_inherit_code = CLASS_METHOD_DECL;
- else
- fatal ("method definition not in class context");
- ;
- break;}
-case 468:
-#line 2635 "objc-parse.y"
-{
- forget_protocol_qualifiers ();
- add_class_method (objc_implementation_context, yyvsp[0].ttype);
- start_method_def (yyvsp[0].ttype);
- objc_method_context = yyvsp[0].ttype;
- ;
- break;}
-case 469:
-#line 2642 "objc-parse.y"
-{
- continue_method_def ();
- ;
- break;}
-case 470:
-#line 2646 "objc-parse.y"
-{
- finish_method_def ();
- objc_method_context = NULL_TREE;
- ;
- break;}
-case 471:
-#line 2652 "objc-parse.y"
-{
- remember_protocol_qualifiers ();
- if (objc_implementation_context)
- objc_inherit_code = INSTANCE_METHOD_DECL;
- else
- fatal ("method definition not in class context");
- ;
- break;}
-case 472:
-#line 2660 "objc-parse.y"
-{
- forget_protocol_qualifiers ();
- add_instance_method (objc_implementation_context, yyvsp[0].ttype);
- start_method_def (yyvsp[0].ttype);
- objc_method_context = yyvsp[0].ttype;
- ;
- break;}
-case 473:
-#line 2667 "objc-parse.y"
-{
- continue_method_def ();
- ;
- break;}
-case 474:
-#line 2671 "objc-parse.y"
-{
- finish_method_def ();
- objc_method_context = NULL_TREE;
- ;
- break;}
-case 476:
-#line 2683 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 481:
-#line 2690 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 485:
-#line 2700 "objc-parse.y"
-{
- /* Remember protocol qualifiers in prototypes. */
- remember_protocol_qualifiers ();
- objc_inherit_code = CLASS_METHOD_DECL;
- ;
- break;}
-case 486:
-#line 2706 "objc-parse.y"
-{
- /* Forget protocol qualifiers here. */
- forget_protocol_qualifiers ();
- add_class_method (objc_interface_context, yyvsp[0].ttype);
- ;
- break;}
-case 488:
-#line 2714 "objc-parse.y"
-{
- /* Remember protocol qualifiers in prototypes. */
- remember_protocol_qualifiers ();
- objc_inherit_code = INSTANCE_METHOD_DECL;
- ;
- break;}
-case 489:
-#line 2720 "objc-parse.y"
-{
- /* Forget protocol qualifiers here. */
- forget_protocol_qualifiers ();
- add_instance_method (objc_interface_context, yyvsp[0].ttype);
- ;
- break;}
-case 491:
-#line 2730 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 492:
-#line 2735 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 493:
-#line 2740 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 494:
-#line 2745 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 503:
-#line 2775 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary (yyvsp[-2].itype); ;
- break;}
-case 504:
-#line 2780 "objc-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 505:
-#line 2782 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 506:
-#line 2787 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 507:
-#line 2789 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 508:
-#line 2797 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype)); ;
- break;}
-case 509:
-#line 2802 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype)); ;
- break;}
-case 510:
-#line 2807 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype)); ;
- break;}
-case 511:
-#line 2815 "objc-parse.y"
-{
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 512:
-#line 2819 "objc-parse.y"
-{
- /* oh what a kludge! */
- yyval.ttype = (tree)1;
- ;
- break;}
-case 513:
-#line 2824 "objc-parse.y"
-{
- pushlevel (0);
- ;
- break;}
-case 514:
-#line 2828 "objc-parse.y"
-{
- /* returns a tree list node generated by get_parm_info */
- yyval.ttype = yyvsp[0].ttype;
- poplevel (0, 0, 0);
- ;
- break;}
-case 517:
-#line 2843 "objc-parse.y"
-{
- yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 522:
-#line 2856 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 523:
-#line 2857 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 524:
-#line 2858 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 525:
-#line 2859 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 526:
-#line 2860 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 527:
-#line 2861 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 528:
-#line 2862 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 529:
-#line 2863 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 530:
-#line 2864 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 531:
-#line 2865 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 532:
-#line 2866 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 533:
-#line 2867 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 534:
-#line 2868 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 535:
-#line 2869 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 536:
-#line 2870 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 537:
-#line 2871 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 538:
-#line 2872 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 539:
-#line 2873 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 540:
-#line 2874 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 543:
-#line 2880 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 544:
-#line 2885 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
- ;
- break;}
-case 545:
-#line 2890 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 546:
-#line 2895 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
- ;
- break;}
-case 550:
-#line 2908 "objc-parse.y"
-{
- yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 551:
-#line 2916 "objc-parse.y"
-{
- if (TREE_CHAIN (yyvsp[0].ttype) == NULL_TREE)
- /* just return the expr., remove a level of indirection */
- yyval.ttype = TREE_VALUE (yyvsp[0].ttype);
- else
- /* we have a comma expr., we will collapse later */
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 552:
-#line 2928 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 553:
-#line 2932 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
- ;
- break;}
-case 555:
-#line 2940 "objc-parse.y"
-{
- yyval.ttype = get_class_reference (yyvsp[0].ttype);
- ;
- break;}
-case 556:
-#line 2947 "objc-parse.y"
-{ objc_receiver_context = 1; ;
- break;}
-case 557:
-#line 2949 "objc-parse.y"
-{ objc_receiver_context = 0; ;
- break;}
-case 558:
-#line 2951 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
- ;
- break;}
-case 562:
-#line 2964 "objc-parse.y"
-{
- yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 563:
-#line 2971 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
- ;
- break;}
-case 564:
-#line 2975 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
- ;
- break;}
-case 565:
-#line 2982 "objc-parse.y"
-{
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 566:
-#line 2989 "objc-parse.y"
-{
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 567:
-#line 2998 "objc-parse.y"
-{
- yyval.ttype = groktypename (yyvsp[-1].ttype);
- ;
- break;}
-}
- /* the action file gets copied in in place of this dollarsign */
-#line 498 "/usr/lib/bison.simple"
-
- yyvsp -= yylen;
- yyssp -= yylen;
-#ifdef YYLSP_NEEDED
- yylsp -= yylen;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
- *++yyvsp = yyval;
-
-#ifdef YYLSP_NEEDED
- yylsp++;
- if (yylen == 0)
- {
- yylsp->first_line = yylloc.first_line;
- yylsp->first_column = yylloc.first_column;
- yylsp->last_line = (yylsp-1)->last_line;
- yylsp->last_column = (yylsp-1)->last_column;
- yylsp->text = 0;
- }
- else
- {
- yylsp->last_line = (yylsp+yylen-1)->last_line;
- yylsp->last_column = (yylsp+yylen-1)->last_column;
- }
-#endif
-
- /* Now "shift" the result of the reduction.
- Determine what state that goes to,
- based on the state we popped back to
- and the rule number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
- if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTBASE];
-
- goto yynewstate;
-
-yyerrlab: /* here on detecting error */
-
- if (! yyerrstatus)
- /* If not already recovering from an error, report this error. */
- {
- ++yynerrs;
-
-#ifdef YYERROR_VERBOSE
- yyn = yypact[yystate];
-
- if (yyn > YYFLAG && yyn < YYLAST)
- {
- int size = 0;
- char *msg;
- int x, count;
-
- count = 0;
- /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- size += strlen(yytname[x]) + 15, count++;
- msg = (char *) malloc(size + 15);
- if (msg != 0)
- {
- strcpy(msg, "parse error");
-
- if (count < 5)
- {
- count = 0;
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- {
- strcat(msg, count == 0 ? ", expecting `" : " or `");
- strcat(msg, yytname[x]);
- strcat(msg, "'");
- count++;
- }
- }
- yyerror(msg);
- free(msg);
- }
- else
- yyerror ("parse error; also virtual memory exceeded");
- }
- else
-#endif /* YYERROR_VERBOSE */
- yyerror("parse error");
- }
-
- goto yyerrlab1;
-yyerrlab1: /* here on error raised explicitly by an action */
-
- if (yyerrstatus == 3)
- {
- /* if just tried and failed to reuse lookahead token after an error, discard it. */
-
- /* return failure if at end of input */
- if (yychar == YYEOF)
- YYABORT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
-#endif
-
- yychar = YYEMPTY;
- }
-
- /* Else will try to reuse lookahead token
- after shifting the error token. */
-
- yyerrstatus = 3; /* Each real token shifted decrements this */
-
- goto yyerrhandle;
-
-yyerrdefault: /* current state does not do anything special for the error token. */
-
-#if 0
- /* This is wrong; only states that explicitly want error tokens
- should shift them. */
- yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
- if (yyn) goto yydefault;
-#endif
-
-yyerrpop: /* pop the current state because it cannot handle the error token */
-
- if (yyssp == yyss) YYABORT;
- yyvsp--;
- yystate = *--yyssp;
-#ifdef YYLSP_NEEDED
- yylsp--;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "Error: state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
-yyerrhandle:
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yyerrdefault;
-
- yyn += YYTERROR;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
- goto yyerrdefault;
-
- yyn = yytable[yyn];
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrpop;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrpop;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting error token, ");
-#endif
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- yystate = yyn;
- goto yynewstate;
-}
-#line 3003 "objc-parse.y"
-
diff --git a/gnu/egcs/gcc/objc/objc-parse.y b/gnu/egcs/gcc/objc/objc-parse.y
deleted file mode 100644
index 1ad13219c4d..00000000000
--- a/gnu/egcs/gcc/objc/objc-parse.y
+++ /dev/null
@@ -1,3003 +0,0 @@
-/*WARNING: This file is automatically generated!*/
-/* YACC parser for C syntax and for Objective C. -*-c-*-
- Copyright (C) 1987, 88, 89, 92-98, 1999 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC 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.
-
-GNU CC 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 GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-/* This file defines the grammar of C and that of Objective C.
- ifobjc ... end ifobjc conditionals contain code for Objective C only.
- ifc ... end ifc conditionals contain code for C only.
- Sed commands in Makefile.in are used to convert this file into
- c-parse.y and into objc-parse.y. */
-
-/* To whomever it may concern: I have heard that such a thing was once
- written by AT&T, but I have never seen it. */
-
-%expect 66
-
-%{
-#include "config.h"
-#include "system.h"
-#include <setjmp.h>
-
-#include "tree.h"
-#include "input.h"
-#include "c-lex.h"
-#include "c-tree.h"
-#include "flags.h"
-#include "output.h"
-#include "toplev.h"
-
-#ifdef MULTIBYTE_CHARS
-#include <locale.h>
-#endif
-
-#include "objc-act.h"
-
-/* Since parsers are distinct for each language, put the language string
- definition here. */
-char *language_string = "GNU Obj-C";
-
-/* Like YYERROR but do call yyerror. */
-#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
-
-/* Cause the `yydebug' variable to be defined. */
-#define YYDEBUG 1
-%}
-
-%start program
-
-%union {long itype; tree ttype; enum tree_code code;
- char *filename; int lineno; int ends_in_label; }
-
-/* All identifiers that are not reserved words
- and are not declared typedefs in the current block */
-%token IDENTIFIER
-
-/* All identifiers that are declared typedefs in the current block.
- In some contexts, they are treated just like IDENTIFIER,
- but they can also serve as typespecs in declarations. */
-%token TYPENAME
-
-/* Reserved words that specify storage class.
- yylval contains an IDENTIFIER_NODE which indicates which one. */
-%token SCSPEC
-
-/* Reserved words that specify type.
- yylval contains an IDENTIFIER_NODE which indicates which one. */
-%token TYPESPEC
-
-/* Reserved words that qualify type: "const", "volatile", or "restrict".
- yylval contains an IDENTIFIER_NODE which indicates which one. */
-%token TYPE_QUAL
-
-/* Character or numeric constants.
- yylval is the node for the constant. */
-%token CONSTANT
-
-/* String constants in raw form.
- yylval is a STRING_CST node. */
-%token STRING
-
-/* "...", used for functions with variable arglists. */
-%token ELLIPSIS
-
-/* the reserved words */
-/* SCO include files test "ASM", so use something else. */
-%token SIZEOF ENUM STRUCT UNION IF ELSE WHILE DO FOR SWITCH CASE DEFAULT
-%token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF
-%token ATTRIBUTE EXTENSION LABEL
-%token REALPART IMAGPART
-
-/* Add precedence rules to solve dangling else s/r conflict */
-%nonassoc IF
-%nonassoc ELSE
-
-/* Define the operator tokens and their precedences.
- The value is an integer because, if used, it is the tree code
- to use in the expression made from the operator. */
-
-%right <code> ASSIGN '='
-%right <code> '?' ':'
-%left <code> OROR
-%left <code> ANDAND
-%left <code> '|'
-%left <code> '^'
-%left <code> '&'
-%left <code> EQCOMPARE
-%left <code> ARITHCOMPARE
-%left <code> LSHIFT RSHIFT
-%left <code> '+' '-'
-%left <code> '*' '/' '%'
-%right <code> UNARY PLUSPLUS MINUSMINUS
-%left HYPERUNARY
-%left <code> POINTSAT '.' '(' '['
-
-/* The Objective-C keywords. These are included in C and in
- Objective C, so that the token codes are the same in both. */
-%token INTERFACE IMPLEMENTATION END SELECTOR DEFS ENCODE
-%token CLASSNAME PUBLIC PRIVATE PROTECTED PROTOCOL OBJECTNAME CLASS ALIAS
-
-/* Objective-C string constants in raw form.
- yylval is an OBJC_STRING_CST node. */
-%token OBJC_STRING
-
-
-%type <code> unop
-
-%type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist exprlist
-%type <ttype> expr_no_commas cast_expr unary_expr primary string STRING
-%type <ttype> typed_declspecs reserved_declspecs
-%type <ttype> typed_typespecs reserved_typespecquals
-%type <ttype> declmods typespec typespecqual_reserved
-%type <ttype> typed_declspecs_no_prefix_attr reserved_declspecs_no_prefix_attr
-%type <ttype> declmods_no_prefix_attr
-%type <ttype> SCSPEC TYPESPEC TYPE_QUAL nonempty_type_quals maybe_type_qual
-%type <ttype> initdecls notype_initdecls initdcl notype_initdcl
-%type <ttype> init maybeasm
-%type <ttype> asm_operands nonnull_asm_operands asm_operand asm_clobbers
-%type <ttype> maybe_attribute attributes attribute attribute_list attrib
-%type <ttype> any_word
-
-%type <ttype> compstmt
-
-%type <ttype> declarator
-%type <ttype> notype_declarator after_type_declarator
-%type <ttype> parm_declarator
-
-%type <ttype> structsp component_decl_list component_decl_list2
-%type <ttype> component_decl components component_declarator
-%type <ttype> enumlist enumerator
-%type <ttype> struct_head union_head enum_head
-%type <ttype> typename absdcl absdcl1 type_quals
-%type <ttype> xexpr parms parm identifiers
-
-%type <ttype> parmlist parmlist_1 parmlist_2
-%type <ttype> parmlist_or_identifiers parmlist_or_identifiers_1
-%type <ttype> identifiers_or_typenames
-
-%type <itype> setspecs
-
-%type <ends_in_label> lineno_stmt_or_label lineno_stmt_or_labels stmt_or_label
-
-%type <filename> save_filename
-%type <lineno> save_lineno
-
-/* the Objective-C nonterminals */
-
-%type <ttype> ivar_decl_list ivar_decls ivar_decl ivars ivar_declarator
-%type <ttype> methoddecl unaryselector keywordselector selector
-%type <ttype> keyworddecl receiver objcmessageexpr messageargs
-%type <ttype> keywordexpr keywordarglist keywordarg
-%type <ttype> myparms myparm optparmlist reservedwords objcselectorexpr
-%type <ttype> selectorarg keywordnamelist keywordname objcencodeexpr
-%type <ttype> objc_string non_empty_protocolrefs protocolrefs identifier_list objcprotocolexpr
-
-%type <ttype> CLASSNAME OBJC_STRING OBJECTNAME
-
-%{
-/* Number of statements (loosely speaking) and compound statements
- seen so far. */
-static int stmt_count;
-static int compstmt_count;
-
-/* Input file and line number of the end of the body of last simple_if;
- used by the stmt-rule immediately after simple_if returns. */
-static char *if_stmt_file;
-static int if_stmt_line;
-
-/* List of types and structure classes of the current declaration. */
-static tree current_declspecs = NULL_TREE;
-static tree prefix_attributes = NULL_TREE;
-
-/* Stack of saved values of current_declspecs and prefix_attributes. */
-static tree declspec_stack;
-
-/* 1 if we explained undeclared var errors. */
-static int undeclared_variable_notice;
-
-/* Objective-C specific information */
-
-tree objc_interface_context;
-tree objc_implementation_context;
-tree objc_method_context;
-tree objc_ivar_chain;
-tree objc_ivar_context;
-enum tree_code objc_inherit_code;
-int objc_receiver_context;
-int objc_public_flag;
-
-
-/* Tell yyparse how to print a token's value, if yydebug is set. */
-
-#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
-extern void yyprint PROTO ((FILE *, int, YYSTYPE));
-%}
-
-%%
-program: /* empty */
- { if (pedantic)
- pedwarn ("ANSI C forbids an empty source file");
- finish_file ();
- }
- | extdefs
- {
- /* In case there were missing closebraces,
- get us back to the global binding level. */
- while (! global_bindings_p ())
- poplevel (0, 0, 0);
- finish_file ();
- }
- ;
-
-/* the reason for the strange actions in this rule
- is so that notype_initdecls when reached via datadef
- can find a valid list of type and sc specs in $0. */
-
-extdefs:
- {$<ttype>$ = NULL_TREE; } extdef
- | extdefs {$<ttype>$ = NULL_TREE; } extdef
- ;
-
-extdef:
- fndef
- | datadef
- | objcdef
- | ASM_KEYWORD '(' expr ')' ';'
- { STRIP_NOPS ($3);
- if ((TREE_CODE ($3) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND ($3, 0)) == STRING_CST)
- || TREE_CODE ($3) == STRING_CST)
- assemble_asm ($3);
- else
- error ("argument of `asm' is not a constant string"); }
- | extension extdef
- { pedantic = $<itype>1; }
- ;
-
-datadef:
- setspecs notype_initdecls ';'
- { if (pedantic)
- error ("ANSI C forbids data definition with no type or storage class");
- else if (!flag_traditional)
- warning ("data definition has no type or storage class");
-
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($1); }
- | declmods setspecs notype_initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods ';'
- { pedwarn ("empty declaration"); }
- | typed_declspecs ';'
- { shadow_tag ($1); }
- | error ';'
- | error '}'
- | ';'
- { if (pedantic)
- pedwarn ("ANSI C does not allow extra `;' outside of a function"); }
- ;
-
-fndef:
- typed_declspecs setspecs declarator
- { if (! start_function (current_declspecs, $3,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
- compstmt_or_error
- { finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs declarator error
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_declarator
- { if (! start_function (current_declspecs, $3,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
- compstmt_or_error
- { finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_declarator error
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | setspecs notype_declarator
- { if (! start_function (NULL_TREE, $2,
- prefix_attributes, NULL_TREE, 0))
- YYERROR1;
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
- compstmt_or_error
- { finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($1); }
- | setspecs notype_declarator error
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($1); }
- ;
-
-identifier:
- IDENTIFIER
- | TYPENAME
- | OBJECTNAME
- | CLASSNAME
- ;
-
-unop: '&'
- { $$ = ADDR_EXPR; }
- | '-'
- { $$ = NEGATE_EXPR; }
- | '+'
- { $$ = CONVERT_EXPR; }
- | PLUSPLUS
- { $$ = PREINCREMENT_EXPR; }
- | MINUSMINUS
- { $$ = PREDECREMENT_EXPR; }
- | '~'
- { $$ = BIT_NOT_EXPR; }
- | '!'
- { $$ = TRUTH_NOT_EXPR; }
- ;
-
-expr: nonnull_exprlist
- { $$ = build_compound_expr ($1); }
- ;
-
-exprlist:
- /* empty */
- { $$ = NULL_TREE; }
- | nonnull_exprlist
- ;
-
-nonnull_exprlist:
- expr_no_commas
- { $$ = build_tree_list (NULL_TREE, $1); }
- | nonnull_exprlist ',' expr_no_commas
- { chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-unary_expr:
- primary
- | '*' cast_expr %prec UNARY
- { $$ = build_indirect_ref ($2, "unary *"); }
- /* __extension__ turns off -pedantic for following primary. */
- | extension cast_expr %prec UNARY
- { $$ = $2;
- pedantic = $<itype>1; }
- | unop cast_expr %prec UNARY
- { $$ = build_unary_op ($1, $2, 0);
- overflow_warning ($$); }
- /* Refer to the address of a label as a pointer. */
- | ANDAND identifier
- { tree label = lookup_label ($2);
- if (pedantic)
- pedwarn ("ANSI C forbids `&&'");
- if (label == 0)
- $$ = null_pointer_node;
- else
- {
- TREE_USED (label) = 1;
- $$ = build1 (ADDR_EXPR, ptr_type_node, label);
- TREE_CONSTANT ($$) = 1;
- }
- }
-/* This seems to be impossible on some machines, so let's turn it off.
- You can use __builtin_next_arg to find the anonymous stack args.
- | '&' ELLIPSIS
- { tree types = TYPE_ARG_TYPES (TREE_TYPE (current_function_decl));
- $$ = error_mark_node;
- if (TREE_VALUE (tree_last (types)) == void_type_node)
- error ("`&...' used in function with fixed number of arguments");
- else
- {
- if (pedantic)
- pedwarn ("ANSI C forbids `&...'");
- $$ = tree_last (DECL_ARGUMENTS (current_function_decl));
- $$ = build_unary_op (ADDR_EXPR, $$, 0);
- } }
-*/
- | sizeof unary_expr %prec UNARY
- { skip_evaluation--;
- if (TREE_CODE ($2) == COMPONENT_REF
- && DECL_C_BIT_FIELD (TREE_OPERAND ($2, 1)))
- error ("`sizeof' applied to a bit-field");
- $$ = c_sizeof (TREE_TYPE ($2)); }
- | sizeof '(' typename ')' %prec HYPERUNARY
- { skip_evaluation--;
- $$ = c_sizeof (groktypename ($3)); }
- | alignof unary_expr %prec UNARY
- { skip_evaluation--;
- $$ = c_alignof_expr ($2); }
- | alignof '(' typename ')' %prec HYPERUNARY
- { skip_evaluation--;
- $$ = c_alignof (groktypename ($3)); }
- | REALPART cast_expr %prec UNARY
- { $$ = build_unary_op (REALPART_EXPR, $2, 0); }
- | IMAGPART cast_expr %prec UNARY
- { $$ = build_unary_op (IMAGPART_EXPR, $2, 0); }
- ;
-
-sizeof:
- SIZEOF { skip_evaluation++; }
- ;
-
-alignof:
- ALIGNOF { skip_evaluation++; }
- ;
-
-cast_expr:
- unary_expr
- | '(' typename ')' cast_expr %prec UNARY
- { tree type = groktypename ($2);
- $$ = build_c_cast (type, $4); }
- | '(' typename ')' '{'
- { start_init (NULL_TREE, NULL, 0);
- $2 = groktypename ($2);
- really_start_incremental_init ($2); }
- initlist_maybe_comma '}' %prec UNARY
- { char *name;
- tree result = pop_init_level (0);
- tree type = $2;
- finish_init ();
-
- if (pedantic && ! flag_isoc9x)
- pedwarn ("ANSI C forbids constructor expressions");
- if (TYPE_NAME (type) != 0)
- {
- if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
- name = IDENTIFIER_POINTER (TYPE_NAME (type));
- else
- name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
- }
- else
- name = "";
- $$ = result;
- if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
- {
- int failure = complete_array_type (type, $$, 1);
- if (failure)
- abort ();
- }
- }
- ;
-
-expr_no_commas:
- cast_expr
- | expr_no_commas '+' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '-' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '*' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '/' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '%' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas LSHIFT expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas RSHIFT expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas ARITHCOMPARE expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas EQCOMPARE expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '&' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '|' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas '^' expr_no_commas
- { $$ = parser_build_binary_op ($2, $1, $3); }
- | expr_no_commas ANDAND
- { $1 = truthvalue_conversion (default_conversion ($1));
- skip_evaluation += $1 == boolean_false_node; }
- expr_no_commas
- { skip_evaluation -= $1 == boolean_false_node;
- $$ = parser_build_binary_op (TRUTH_ANDIF_EXPR, $1, $4); }
- | expr_no_commas OROR
- { $1 = truthvalue_conversion (default_conversion ($1));
- skip_evaluation += $1 == boolean_true_node; }
- expr_no_commas
- { skip_evaluation -= $1 == boolean_true_node;
- $$ = parser_build_binary_op (TRUTH_ORIF_EXPR, $1, $4); }
- | expr_no_commas '?'
- { $1 = truthvalue_conversion (default_conversion ($1));
- skip_evaluation += $1 == boolean_false_node; }
- expr ':'
- { skip_evaluation += (($1 == boolean_true_node)
- - ($1 == boolean_false_node)); }
- expr_no_commas
- { skip_evaluation -= $1 == boolean_true_node;
- $$ = build_conditional_expr ($1, $4, $7); }
- | expr_no_commas '?'
- { if (pedantic)
- pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
- /* Make sure first operand is calculated only once. */
- $<ttype>2 = save_expr ($1);
- $1 = truthvalue_conversion (default_conversion ($<ttype>2));
- skip_evaluation += $1 == boolean_true_node; }
- ':' expr_no_commas
- { skip_evaluation -= $1 == boolean_true_node;
- $$ = build_conditional_expr ($1, $<ttype>2, $5); }
- | expr_no_commas '=' expr_no_commas
- { char class;
- $$ = build_modify_expr ($1, NOP_EXPR, $3);
- class = TREE_CODE_CLASS (TREE_CODE ($$));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR);
- }
- | expr_no_commas ASSIGN expr_no_commas
- { char class;
- $$ = build_modify_expr ($1, $2, $3);
- /* This inhibits warnings in truthvalue_conversion. */
- class = TREE_CODE_CLASS (TREE_CODE ($$));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE ($$, ERROR_MARK);
- }
- ;
-
-primary:
- IDENTIFIER
- {
- $$ = lastiddecl;
- if (!$$ || $$ == error_mark_node)
- {
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- tree decl;
-
- if (objc_receiver_context
- && ! (objc_receiver_context
- && strcmp (IDENTIFIER_POINTER ($1), "super")))
- /* we have a message to super */
- $$ = get_super_receiver ();
- else if (objc_method_context
- && (decl = is_ivar (objc_ivar_chain, $1)))
- {
- if (is_private (decl))
- $$ = error_mark_node;
- else
- $$ = build_ivar_reference ($1);
- }
- else
- {
- /* Ordinary implicit function declaration. */
- $$ = implicitly_declare ($1);
- assemble_external ($$);
- TREE_USED ($$) = 1;
- }
- }
- else if (current_function_decl == 0)
- {
- error ("`%s' undeclared here (not in a function)",
- IDENTIFIER_POINTER ($1));
- $$ = error_mark_node;
- }
- else
- {
- tree decl;
-
- if (objc_receiver_context
- && ! strcmp (IDENTIFIER_POINTER ($1), "super"))
- /* we have a message to super */
- $$ = get_super_receiver ();
- else if (objc_method_context
- && (decl = is_ivar (objc_ivar_chain, $1)))
- {
- if (is_private (decl))
- $$ = error_mark_node;
- else
- $$ = build_ivar_reference ($1);
- }
- else
- {
- if (IDENTIFIER_GLOBAL_VALUE ($1) != error_mark_node
- || IDENTIFIER_ERROR_LOCUS ($1) != current_function_decl)
- {
- error ("`%s' undeclared (first use in this function)",
- IDENTIFIER_POINTER ($1));
-
- if (! undeclared_variable_notice)
- {
- error ("(Each undeclared identifier is reported only once");
- error ("for each function it appears in.)");
- undeclared_variable_notice = 1;
- }
- }
- $$ = error_mark_node;
- /* Prevent repeated error messages. */
- IDENTIFIER_GLOBAL_VALUE ($1) = error_mark_node;
- IDENTIFIER_ERROR_LOCUS ($1) = current_function_decl;
- }
- }
- }
- else if (TREE_TYPE ($$) == error_mark_node)
- $$ = error_mark_node;
- else if (C_DECL_ANTICIPATED ($$))
- {
- /* The first time we see a build-in function used,
- if it has not been declared. */
- C_DECL_ANTICIPATED ($$) = 0;
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- if (yychar == '(')
- {
- /* Omit the implicit declaration we
- would ordinarily do, so we don't lose
- the actual built in type.
- But print a diagnostic for the mismatch. */
- if (objc_method_context
- && is_ivar (objc_ivar_chain, $1))
- error ("Instance variable `%s' implicitly declared as function",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
- else
- if (TREE_CODE ($$) != FUNCTION_DECL)
- error ("`%s' implicitly declared as function",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
- else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE ($$)))
- != TYPE_MODE (integer_type_node))
- && (TREE_TYPE (TREE_TYPE ($$))
- != void_type_node))
- pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
- /* If it really returns void, change that to int. */
- if (TREE_TYPE (TREE_TYPE ($$)) == void_type_node)
- TREE_TYPE ($$)
- = build_function_type (integer_type_node,
- TYPE_ARG_TYPES (TREE_TYPE ($$)));
- }
- else
- pedwarn ("built-in function `%s' used without declaration",
- IDENTIFIER_POINTER (DECL_NAME ($$)));
-
- /* Do what we would ordinarily do when a fn is used. */
- assemble_external ($$);
- TREE_USED ($$) = 1;
- }
- else
- {
- assemble_external ($$);
- TREE_USED ($$) = 1;
- /* we have a definition - still check if iVariable */
-
- if (!objc_receiver_context
- || (objc_receiver_context
- && strcmp (IDENTIFIER_POINTER ($1), "super")))
- {
- tree decl;
-
- if (objc_method_context
- && (decl = is_ivar (objc_ivar_chain, $1)))
- {
- if (IDENTIFIER_LOCAL_VALUE ($1))
- warning ("local declaration of `%s' hides instance variable",
- IDENTIFIER_POINTER ($1));
- else
- {
- if (is_private (decl))
- $$ = error_mark_node;
- else
- $$ = build_ivar_reference ($1);
- }
- }
- }
- else /* we have a message to super */
- $$ = get_super_receiver ();
- }
-
- if (TREE_CODE ($$) == CONST_DECL)
- {
- $$ = DECL_INITIAL ($$);
- /* This is to prevent an enum whose value is 0
- from being considered a null pointer constant. */
- $$ = build1 (NOP_EXPR, TREE_TYPE ($$), $$);
- TREE_CONSTANT ($$) = 1;
- }
- }
- | CONSTANT
- | string
- { $$ = combine_strings ($1); }
- | '(' expr ')'
- { char class = TREE_CODE_CLASS (TREE_CODE ($2));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE ($2, ERROR_MARK);
- $$ = $2; }
- | '(' error ')'
- { $$ = error_mark_node; }
- | '('
- { if (current_function_decl == 0)
- {
- error ("braced-group within expression allowed only inside a function");
- YYERROR;
- }
- /* We must force a BLOCK for this level
- so that, if it is not expanded later,
- there is a way to turn off the entire subtree of blocks
- that are contained in it. */
- keep_next_level ();
- push_iterator_stack ();
- push_label_level ();
- $<ttype>$ = expand_start_stmt_expr (); }
- compstmt ')'
- { tree rtl_exp;
- if (pedantic)
- pedwarn ("ANSI C forbids braced-groups within expressions");
- pop_iterator_stack ();
- pop_label_level ();
- rtl_exp = expand_end_stmt_expr ($<ttype>2);
- /* The statements have side effects, so the group does. */
- TREE_SIDE_EFFECTS (rtl_exp) = 1;
-
- if (TREE_CODE ($3) == BLOCK)
- {
- /* Make a BIND_EXPR for the BLOCK already made. */
- $$ = build (BIND_EXPR, TREE_TYPE (rtl_exp),
- NULL_TREE, rtl_exp, $3);
- /* Remove the block from the tree at this point.
- It gets put back at the proper place
- when the BIND_EXPR is expanded. */
- delete_block ($3);
- }
- else
- $$ = $3;
- }
- | primary '(' exprlist ')' %prec '.'
- { $$ = build_function_call ($1, $3); }
- | primary '[' expr ']' %prec '.'
- { $$ = build_array_ref ($1, $3); }
- | primary '.' identifier
- {
- if (doing_objc_thang)
- {
- if (is_public ($1, $3))
- $$ = build_component_ref ($1, $3);
- else
- $$ = error_mark_node;
- }
- else
- $$ = build_component_ref ($1, $3);
- }
- | primary POINTSAT identifier
- {
- tree expr = build_indirect_ref ($1, "->");
-
- if (doing_objc_thang)
- {
- if (is_public (expr, $3))
- $$ = build_component_ref (expr, $3);
- else
- $$ = error_mark_node;
- }
- else
- $$ = build_component_ref (expr, $3);
- }
- | primary PLUSPLUS
- { $$ = build_unary_op (POSTINCREMENT_EXPR, $1, 0); }
- | primary MINUSMINUS
- { $$ = build_unary_op (POSTDECREMENT_EXPR, $1, 0); }
- | objcmessageexpr
- { $$ = build_message_expr ($1); }
- | objcselectorexpr
- { $$ = build_selector_expr ($1); }
- | objcprotocolexpr
- { $$ = build_protocol_expr ($1); }
- | objcencodeexpr
- { $$ = build_encode_expr ($1); }
- | objc_string
- { $$ = build_objc_string_object ($1); }
- ;
-
-/* Produces a STRING_CST with perhaps more STRING_CSTs chained onto it. */
-string:
- STRING
- | string STRING
- { $$ = chainon ($1, $2); }
- ;
-
-/* Produces an OBJC_STRING_CST with perhaps more OBJC_STRING_CSTs chained
- onto it. */
-objc_string:
- OBJC_STRING
- | objc_string OBJC_STRING
- { $$ = chainon ($1, $2); }
- ;
-
-old_style_parm_decls:
- /* empty */
- | datadecls
- | datadecls ELLIPSIS
- /* ... is used here to indicate a varargs function. */
- { c_mark_varargs ();
- if (pedantic)
- pedwarn ("ANSI C does not permit use of `varargs.h'"); }
- ;
-
-/* The following are analogous to lineno_decl, decls and decl
- except that they do not allow nested functions.
- They are used for old-style parm decls. */
-lineno_datadecl:
- save_filename save_lineno datadecl
- { }
- ;
-
-datadecls:
- lineno_datadecl
- | errstmt
- | datadecls lineno_datadecl
- | lineno_datadecl errstmt
- ;
-
-/* We don't allow prefix attributes here because they cause reduce/reduce
- conflicts: we can't know whether we're parsing a function decl with
- attribute suffix, or function defn with attribute prefix on first old
- style parm. */
-datadecl:
- typed_declspecs_no_prefix_attr setspecs initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods_no_prefix_attr setspecs notype_initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs_no_prefix_attr ';'
- { shadow_tag_warned ($1, 1);
- pedwarn ("empty declaration"); }
- | declmods_no_prefix_attr ';'
- { pedwarn ("empty declaration"); }
- ;
-
-/* This combination which saves a lineno before a decl
- is the normal thing to use, rather than decl itself.
- This is to avoid shift/reduce conflicts in contexts
- where statement labels are allowed. */
-lineno_decl:
- save_filename save_lineno decl
- { }
- ;
-
-decls:
- lineno_decl
- | errstmt
- | decls lineno_decl
- | lineno_decl errstmt
- ;
-
-/* records the type and storage class specs to use for processing
- the declarators that follow.
- Maintains a stack of outer-level values of current_declspecs,
- for the sake of parm declarations nested in function declarators. */
-setspecs: /* empty */
- { $$ = suspend_momentary ();
- pending_xref_error ();
- declspec_stack = tree_cons (prefix_attributes,
- current_declspecs,
- declspec_stack);
- split_specs_attrs ($<ttype>0,
- &current_declspecs, &prefix_attributes); }
- ;
-
-/* ??? Yuck. See after_type_declarator. */
-setattrs: /* empty */
- { prefix_attributes = chainon (prefix_attributes, $<ttype>0); }
- ;
-
-decl:
- typed_declspecs setspecs initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_initdecls ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs nested_function
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_nested_function
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs ';'
- { shadow_tag ($1); }
- | declmods ';'
- { pedwarn ("empty declaration"); }
- | extension decl
- { pedantic = $<itype>1; }
- ;
-
-/* Declspecs which contain at least one type specifier or typedef name.
- (Just `const' or `volatile' is not enough.)
- A typedef'd name following these is taken as a name to be declared.
- Declspecs have a non-NULL TREE_VALUE, attributes do not. */
-
-typed_declspecs:
- typespec reserved_declspecs
- { $$ = tree_cons (NULL_TREE, $1, $2); }
- | declmods typespec reserved_declspecs
- { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
- ;
-
-reserved_declspecs: /* empty */
- { $$ = NULL_TREE; }
- | reserved_declspecs typespecqual_reserved
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- | reserved_declspecs SCSPEC
- { if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER ($2));
- $$ = tree_cons (NULL_TREE, $2, $1); }
- | reserved_declspecs attributes
- { $$ = tree_cons ($2, NULL_TREE, $1); }
- ;
-
-typed_declspecs_no_prefix_attr:
- typespec reserved_declspecs_no_prefix_attr
- { $$ = tree_cons (NULL_TREE, $1, $2); }
- | declmods_no_prefix_attr typespec reserved_declspecs_no_prefix_attr
- { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
- ;
-
-reserved_declspecs_no_prefix_attr:
- /* empty */
- { $$ = NULL_TREE; }
- | reserved_declspecs_no_prefix_attr typespecqual_reserved
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- | reserved_declspecs_no_prefix_attr SCSPEC
- { if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER ($2));
- $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-/* List of just storage classes, type modifiers, and prefix attributes.
- A declaration can start with just this, but then it cannot be used
- to redeclare a typedef-name.
- Declspecs have a non-NULL TREE_VALUE, attributes do not. */
-
-declmods:
- declmods_no_prefix_attr
- { $$ = $1; }
- | attributes
- { $$ = tree_cons ($1, NULL_TREE, NULL_TREE); }
- | declmods declmods_no_prefix_attr
- { $$ = chainon ($2, $1); }
- | declmods attributes
- { $$ = tree_cons ($2, NULL_TREE, $1); }
- ;
-
-declmods_no_prefix_attr:
- TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
- TREE_STATIC ($$) = 1; }
- | SCSPEC
- { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
- | declmods_no_prefix_attr TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $2, $1);
- TREE_STATIC ($$) = 1; }
- | declmods_no_prefix_attr SCSPEC
- { if (extra_warnings && TREE_STATIC ($1))
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER ($2));
- $$ = tree_cons (NULL_TREE, $2, $1);
- TREE_STATIC ($$) = TREE_STATIC ($1); }
- ;
-
-
-/* Used instead of declspecs where storage classes are not allowed
- (that is, for typenames and structure components).
- Don't accept a typedef-name if anything but a modifier precedes it. */
-
-typed_typespecs:
- typespec reserved_typespecquals
- { $$ = tree_cons (NULL_TREE, $1, $2); }
- | nonempty_type_quals typespec reserved_typespecquals
- { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
- ;
-
-reserved_typespecquals: /* empty */
- { $$ = NULL_TREE; }
- | reserved_typespecquals typespecqual_reserved
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-/* A typespec (but not a type qualifier).
- Once we have seen one of these in a declaration,
- if a typedef name appears then it is being redeclared. */
-
-typespec: TYPESPEC
- | structsp
- | TYPENAME
- { /* For a typedef name, record the meaning, not the name.
- In case of `foo foo, bar;'. */
- $$ = lookup_name ($1); }
- | CLASSNAME protocolrefs
- { $$ = get_static_reference ($1, $2); }
- | OBJECTNAME protocolrefs
- { $$ = get_object_reference ($2); }
-
-/* Make "<SomeProtocol>" equivalent to "id <SomeProtocol>"
- - nisse@lysator.liu.se */
- | non_empty_protocolrefs
- { $$ = get_object_reference ($1); }
- | TYPEOF '(' expr ')'
- { $$ = TREE_TYPE ($3); }
- | TYPEOF '(' typename ')'
- { $$ = groktypename ($3); }
- ;
-
-/* A typespec that is a reserved word, or a type qualifier. */
-
-typespecqual_reserved: TYPESPEC
- | TYPE_QUAL
- | structsp
- ;
-
-initdecls:
- initdcl
- | initdecls ',' initdcl
- ;
-
-notype_initdecls:
- notype_initdcl
- | notype_initdecls ',' initdcl
- ;
-
-maybeasm:
- /* empty */
- { $$ = NULL_TREE; }
- | ASM_KEYWORD '(' string ')'
- { if (TREE_CHAIN ($3)) $3 = combine_strings ($3);
- $$ = $3;
- }
- ;
-
-initdcl:
- declarator maybeasm maybe_attribute '='
- { $<ttype>$ = start_decl ($1, current_declspecs, 1,
- $3, prefix_attributes);
- start_init ($<ttype>$, $2, global_bindings_p ()); }
- init
-/* Note how the declaration of the variable is in effect while its init is parsed! */
- { finish_init ();
- finish_decl ($<ttype>5, $6, $2); }
- | declarator maybeasm maybe_attribute
- { tree d = start_decl ($1, current_declspecs, 0,
- $3, prefix_attributes);
- finish_decl (d, NULL_TREE, $2);
- }
- ;
-
-notype_initdcl:
- notype_declarator maybeasm maybe_attribute '='
- { $<ttype>$ = start_decl ($1, current_declspecs, 1,
- $3, prefix_attributes);
- start_init ($<ttype>$, $2, global_bindings_p ()); }
- init
-/* Note how the declaration of the variable is in effect while its init is parsed! */
- { finish_init ();
- decl_attributes ($<ttype>5, $3, prefix_attributes);
- finish_decl ($<ttype>5, $6, $2); }
- | notype_declarator maybeasm maybe_attribute
- { tree d = start_decl ($1, current_declspecs, 0,
- $3, prefix_attributes);
- finish_decl (d, NULL_TREE, $2); }
- ;
-/* the * rules are dummies to accept the Apollo extended syntax
- so that the header files compile. */
-maybe_attribute:
- /* empty */
- { $$ = NULL_TREE; }
- | attributes
- { $$ = $1; }
- ;
-
-attributes:
- attribute
- { $$ = $1; }
- | attributes attribute
- { $$ = chainon ($1, $2); }
- ;
-
-attribute:
- ATTRIBUTE '(' '(' attribute_list ')' ')'
- { $$ = $4; }
- ;
-
-attribute_list:
- attrib
- { $$ = $1; }
- | attribute_list ',' attrib
- { $$ = chainon ($1, $3); }
- ;
-
-attrib:
- /* empty */
- { $$ = NULL_TREE; }
- | any_word
- { $$ = build_tree_list ($1, NULL_TREE); }
- | any_word '(' IDENTIFIER ')'
- { $$ = build_tree_list ($1, build_tree_list (NULL_TREE, $3)); }
- | any_word '(' IDENTIFIER ',' nonnull_exprlist ')'
- { $$ = build_tree_list ($1, tree_cons (NULL_TREE, $3, $5)); }
- | any_word '(' exprlist ')'
- { $$ = build_tree_list ($1, $3); }
- ;
-
-/* This still leaves out most reserved keywords,
- shouldn't we include them? */
-
-any_word:
- identifier
- | SCSPEC
- | TYPESPEC
- | TYPE_QUAL
- ;
-
-/* Initializers. `init' is the entry point. */
-
-init:
- expr_no_commas
- | '{'
- { really_start_incremental_init (NULL_TREE);
- /* Note that the call to clear_momentary
- is in process_init_element. */
- push_momentary (); }
- initlist_maybe_comma '}'
- { $$ = pop_init_level (0);
- if ($$ == error_mark_node
- && ! (yychar == STRING || yychar == CONSTANT))
- pop_momentary ();
- else
- pop_momentary_nofree (); }
-
- | error
- { $$ = error_mark_node; }
- ;
-
-/* `initlist_maybe_comma' is the guts of an initializer in braces. */
-initlist_maybe_comma:
- /* empty */
- { if (pedantic)
- pedwarn ("ANSI C forbids empty initializer braces"); }
- | initlist1 maybecomma
- ;
-
-initlist1:
- initelt
- | initlist1 ',' initelt
- ;
-
-/* `initelt' is a single element of an initializer.
- It may use braces. */
-initelt:
- designator_list '=' initval
- | designator initval
- | identifier ':'
- { set_init_label ($1); }
- initval
- | initval
- ;
-
-initval:
- '{'
- { push_init_level (0); }
- initlist_maybe_comma '}'
- { process_init_element (pop_init_level (0)); }
- | expr_no_commas
- { process_init_element ($1); }
- | error
- ;
-
-designator_list:
- designator
- | designator_list designator
- ;
-
-designator:
- '.' identifier
- { set_init_label ($2); }
- /* These are for labeled elements. The syntax for an array element
- initializer conflicts with the syntax for an Objective-C message,
- so don't include these productions in the Objective-C grammar. */
- ;
-
-nested_function:
- declarator
- { push_c_function_context ();
- if (! start_function (current_declspecs, $1,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
-/* This used to use compstmt_or_error.
- That caused a bug with input `f(g) int g {}',
- where the use of YYERROR1 above caused an error
- which then was handled by compstmt_or_error.
- There followed a repeated execution of that same rule,
- which called YYERROR1 again, and so on. */
- compstmt
- { finish_function (1);
- pop_c_function_context (); }
- ;
-
-notype_nested_function:
- notype_declarator
- { push_c_function_context ();
- if (! start_function (current_declspecs, $1,
- prefix_attributes, NULL_TREE, 1))
- {
- pop_c_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); }
- old_style_parm_decls
- { store_parm_decls (); }
-/* This used to use compstmt_or_error.
- That caused a bug with input `f(g) int g {}',
- where the use of YYERROR1 above caused an error
- which then was handled by compstmt_or_error.
- There followed a repeated execution of that same rule,
- which called YYERROR1 again, and so on. */
- compstmt
- { finish_function (1);
- pop_c_function_context (); }
- ;
-
-/* Any kind of declarator (thus, all declarators allowed
- after an explicit typespec). */
-
-declarator:
- after_type_declarator
- | notype_declarator
- ;
-
-/* A declarator that is allowed only after an explicit typespec. */
-
-after_type_declarator:
- '(' after_type_declarator ')'
- { $$ = $2; }
- | after_type_declarator '(' parmlist_or_identifiers %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
-/* | after_type_declarator '(' error ')' %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
- poplevel (0, 0, 0); } */
- | after_type_declarator '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | after_type_declarator '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- | '*' type_quals after_type_declarator %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- /* ??? Yuck. setattrs is a quick hack. We can't use
- prefix_attributes because $1 only applies to this
- declarator. We assume setspecs has already been done.
- setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
- attributes could be recognized here or in `attributes'). */
- | attributes setattrs after_type_declarator
- { $$ = $3; }
- | TYPENAME
- | OBJECTNAME
- ;
-
-/* Kinds of declarator that can appear in a parameter list
- in addition to notype_declarator. This is like after_type_declarator
- but does not allow a typedef name in parentheses as an identifier
- (because it would conflict with a function with that typedef as arg). */
-
-parm_declarator:
- parm_declarator '(' parmlist_or_identifiers %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
-/* | parm_declarator '(' error ')' %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
- poplevel (0, 0, 0); } */
- | parm_declarator '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | parm_declarator '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- | '*' type_quals parm_declarator %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- /* ??? Yuck. setattrs is a quick hack. We can't use
- prefix_attributes because $1 only applies to this
- declarator. We assume setspecs has already been done.
- setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
- attributes could be recognized here or in `attributes'). */
- | attributes setattrs parm_declarator
- { $$ = $3; }
- | TYPENAME
- ;
-
-/* A declarator allowed whether or not there has been
- an explicit typespec. These cannot redeclare a typedef-name. */
-
-notype_declarator:
- notype_declarator '(' parmlist_or_identifiers %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
-/* | notype_declarator '(' error ')' %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
- poplevel (0, 0, 0); } */
- | '(' notype_declarator ')'
- { $$ = $2; }
- | '*' type_quals notype_declarator %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- | notype_declarator '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | notype_declarator '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- /* ??? Yuck. setattrs is a quick hack. We can't use
- prefix_attributes because $1 only applies to this
- declarator. We assume setspecs has already been done.
- setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
- attributes could be recognized here or in `attributes'). */
- | attributes setattrs notype_declarator
- { $$ = $3; }
- | IDENTIFIER
- ;
-
-struct_head:
- STRUCT
- { $$ = NULL_TREE; }
- | STRUCT attributes
- { $$ = $2; }
- ;
-
-union_head:
- UNION
- { $$ = NULL_TREE; }
- | UNION attributes
- { $$ = $2; }
- ;
-
-enum_head:
- ENUM
- { $$ = NULL_TREE; }
- | ENUM attributes
- { $$ = $2; }
- ;
-
-structsp:
- struct_head identifier '{'
- { $$ = start_struct (RECORD_TYPE, $2);
- /* Start scope of tag before parsing components. */
- }
- component_decl_list '}' maybe_attribute
- { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
- | struct_head '{' component_decl_list '}' maybe_attribute
- { $$ = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
- $3, chainon ($1, $5));
- }
- | struct_head identifier
- { $$ = xref_tag (RECORD_TYPE, $2); }
- | union_head identifier '{'
- { $$ = start_struct (UNION_TYPE, $2); }
- component_decl_list '}' maybe_attribute
- { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
- | union_head '{' component_decl_list '}' maybe_attribute
- { $$ = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
- $3, chainon ($1, $5));
- }
- | union_head identifier
- { $$ = xref_tag (UNION_TYPE, $2); }
- | enum_head identifier '{'
- { $<itype>3 = suspend_momentary ();
- $$ = start_enum ($2); }
- enumlist maybecomma_warn '}' maybe_attribute
- { $$= finish_enum ($<ttype>4, nreverse ($5), chainon ($1, $8));
- resume_momentary ($<itype>3); }
- | enum_head '{'
- { $<itype>2 = suspend_momentary ();
- $$ = start_enum (NULL_TREE); }
- enumlist maybecomma_warn '}' maybe_attribute
- { $$= finish_enum ($<ttype>3, nreverse ($4), chainon ($1, $7));
- resume_momentary ($<itype>2); }
- | enum_head identifier
- { $$ = xref_tag (ENUMERAL_TYPE, $2); }
- ;
-
-maybecomma:
- /* empty */
- | ','
- ;
-
-maybecomma_warn:
- /* empty */
- | ','
- { if (pedantic && ! flag_isoc9x)
- pedwarn ("comma at end of enumerator list"); }
- ;
-
-component_decl_list:
- component_decl_list2
- { $$ = $1; }
- | component_decl_list2 component_decl
- { $$ = chainon ($1, $2);
- pedwarn ("no semicolon at end of struct or union"); }
- ;
-
-component_decl_list2: /* empty */
- { $$ = NULL_TREE; }
- | component_decl_list2 component_decl ';'
- { $$ = chainon ($1, $2); }
- | component_decl_list2 ';'
- { if (pedantic)
- pedwarn ("extra semicolon in struct or union specified"); }
- /* foo(sizeof(struct{ @defs(ClassName)})); */
- | DEFS '(' CLASSNAME ')'
- {
- tree interface = lookup_interface ($3);
-
- if (interface)
- $$ = get_class_ivars (interface);
- else
- {
- error ("Cannot find interface declaration for `%s'",
- IDENTIFIER_POINTER ($3));
- $$ = NULL_TREE;
- }
- }
- ;
-
-/* There is a shift-reduce conflict here, because `components' may
- start with a `typename'. It happens that shifting (the default resolution)
- does the right thing, because it treats the `typename' as part of
- a `typed_typespecs'.
-
- It is possible that this same technique would allow the distinction
- between `notype_initdecls' and `initdecls' to be eliminated.
- But I am being cautious and not trying it. */
-
-component_decl:
- typed_typespecs setspecs components
- { $$ = $3;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_typespecs
- { if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag($1);
- $$ = NULL_TREE; }
- | nonempty_type_quals setspecs components
- { $$ = $3;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | nonempty_type_quals
- { if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag($1);
- $$ = NULL_TREE; }
- | error
- { $$ = NULL_TREE; }
- | extension component_decl
- { $$ = $2;
- pedantic = $<itype>1; }
- ;
-
-components:
- component_declarator
- | components ',' component_declarator
- { $$ = chainon ($1, $3); }
- ;
-
-component_declarator:
- save_filename save_lineno declarator maybe_attribute
- { $$ = grokfield ($1, $2, $3, current_declspecs, NULL_TREE);
- decl_attributes ($$, $4, prefix_attributes); }
- | save_filename save_lineno
- declarator ':' expr_no_commas maybe_attribute
- { $$ = grokfield ($1, $2, $3, current_declspecs, $5);
- decl_attributes ($$, $6, prefix_attributes); }
- | save_filename save_lineno ':' expr_no_commas maybe_attribute
- { $$ = grokfield ($1, $2, NULL_TREE, current_declspecs, $4);
- decl_attributes ($$, $5, prefix_attributes); }
- ;
-
-/* We chain the enumerators in reverse order.
- They are put in forward order where enumlist is used.
- (The order used to be significant, but no longer is so.
- However, we still maintain the order, just to be clean.) */
-
-enumlist:
- enumerator
- | enumlist ',' enumerator
- { if ($1 == error_mark_node)
- $$ = $1;
- else
- $$ = chainon ($3, $1); }
- | error
- { $$ = error_mark_node; }
- ;
-
-
-enumerator:
- identifier
- { $$ = build_enumerator ($1, NULL_TREE); }
- | identifier '=' expr_no_commas
- { $$ = build_enumerator ($1, $3); }
- ;
-
-typename:
- typed_typespecs absdcl
- { $$ = build_tree_list ($1, $2); }
- | nonempty_type_quals absdcl
- { $$ = build_tree_list ($1, $2); }
- ;
-
-absdcl: /* an absolute declarator */
- /* empty */
- { $$ = NULL_TREE; }
- | absdcl1
- ;
-
-nonempty_type_quals:
- TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
- | nonempty_type_quals TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-type_quals:
- /* empty */
- { $$ = NULL_TREE; }
- | type_quals TYPE_QUAL
- { $$ = tree_cons (NULL_TREE, $2, $1); }
- ;
-
-absdcl1: /* a nonempty absolute declarator */
- '(' absdcl1 ')'
- { $$ = $2; }
- /* `(typedef)1' is `int'. */
- | '*' type_quals absdcl1 %prec UNARY
- { $$ = make_pointer_declarator ($2, $3); }
- | '*' type_quals %prec UNARY
- { $$ = make_pointer_declarator ($2, NULL_TREE); }
- | absdcl1 '(' parmlist %prec '.'
- { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
- | absdcl1 '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, $3); }
- | absdcl1 '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
- | '(' parmlist %prec '.'
- { $$ = build_nt (CALL_EXPR, NULL_TREE, $2, NULL_TREE); }
- | '[' expr ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, NULL_TREE, $2); }
- | '[' ']' %prec '.'
- { $$ = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); }
- /* ??? It appears we have to support attributes here, however
- using prefix_attributes is wrong. */
- | attributes setattrs absdcl1
- { $$ = $3; }
- ;
-
-/* at least one statement, the first of which parses without error. */
-/* stmts is used only after decls, so an invalid first statement
- is actually regarded as an invalid decl and part of the decls. */
-
-stmts:
- lineno_stmt_or_labels
- {
- if (pedantic && $1)
- pedwarn ("ANSI C forbids label at end of compound statement");
- }
- ;
-
-lineno_stmt_or_labels:
- lineno_stmt_or_label
- | lineno_stmt_or_labels lineno_stmt_or_label
- { $$ = $2; }
- | lineno_stmt_or_labels errstmt
- { $$ = 0; }
- ;
-
-xstmts:
- /* empty */
- | stmts
- ;
-
-errstmt: error ';'
- ;
-
-pushlevel: /* empty */
- { emit_line_note (input_filename, lineno);
- pushlevel (0);
- clear_last_expr ();
- push_momentary ();
- expand_start_bindings (0);
- if (objc_method_context)
- add_objc_decls ();
- }
- ;
-
-/* Read zero or more forward-declarations for labels
- that nested functions can jump to. */
-maybe_label_decls:
- /* empty */
- | label_decls
- { if (pedantic)
- pedwarn ("ANSI C forbids label declarations"); }
- ;
-
-label_decls:
- label_decl
- | label_decls label_decl
- ;
-
-label_decl:
- LABEL identifiers_or_typenames ';'
- { tree link;
- for (link = $2; link; link = TREE_CHAIN (link))
- {
- tree label = shadow_label (TREE_VALUE (link));
- C_DECLARED_LABEL_FLAG (label) = 1;
- declare_nonlocal_label (label);
- }
- }
- ;
-
-/* This is the body of a function definition.
- It causes syntax errors to ignore to the next openbrace. */
-compstmt_or_error:
- compstmt
- {}
- | error compstmt
- ;
-
-compstmt_start: '{' { compstmt_count++; }
-
-compstmt: compstmt_start '}'
- { $$ = convert (void_type_node, integer_zero_node); }
- | compstmt_start pushlevel maybe_label_decls decls xstmts '}'
- { emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- $$ = poplevel (1, 1, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- | compstmt_start pushlevel maybe_label_decls error '}'
- { emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- $$ = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- | compstmt_start pushlevel maybe_label_decls stmts '}'
- { emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- $$ = poplevel (kept_level_p (), 0, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- ;
-
-/* Value is number of statements counted as of the closeparen. */
-simple_if:
- if_prefix lineno_labeled_stmt
-/* Make sure c_expand_end_cond is run once
- for each call to c_expand_start_cond.
- Otherwise a crash is likely. */
- | if_prefix error
- ;
-
-if_prefix:
- IF '(' expr ')'
- { emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_start_cond (truthvalue_conversion ($3), 0,
- compstmt_count);
- $<itype>$ = stmt_count;
- if_stmt_file = $<filename>-1;
- if_stmt_line = $<lineno>0;
- position_after_white_space (); }
- ;
-
-/* This is a subroutine of stmt.
- It is used twice, once for valid DO statements
- and once for catching errors in parsing the end test. */
-do_stmt_start:
- DO
- { stmt_count++;
- compstmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- expand_start_loop_continue_elsewhere (1);
- position_after_white_space (); }
- lineno_labeled_stmt WHILE
- { expand_loop_continue_here (); }
- ;
-
-save_filename:
- { $$ = input_filename; }
- ;
-
-save_lineno:
- { $$ = lineno; }
- ;
-
-lineno_labeled_stmt:
- save_filename save_lineno stmt
- { }
-/* | save_filename save_lineno error
- { }
-*/
- | save_filename save_lineno label lineno_labeled_stmt
- { }
- ;
-
-lineno_stmt_or_label:
- save_filename save_lineno stmt_or_label
- { $$ = $3; }
- ;
-
-stmt_or_label:
- stmt
- { $$ = 0; }
- | label
- { $$ = 1; }
- ;
-
-/* Parse a single real statement, not including any labels. */
-stmt:
- compstmt
- { stmt_count++; }
- | all_iter_stmt
- | expr ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
-/* It appears that this should not be done--that a non-lvalue array
- shouldn't get an error if the value isn't used.
- Section 3.2.2.1 says that an array lvalue gets converted to a pointer
- if it appears as a top-level expression,
- but says nothing about non-lvalue arrays. */
-#if 0
- /* Call default_conversion to get an error
- on referring to a register array if pedantic. */
- if (TREE_CODE (TREE_TYPE ($1)) == ARRAY_TYPE
- || TREE_CODE (TREE_TYPE ($1)) == FUNCTION_TYPE)
- $1 = default_conversion ($1);
-#endif
- iterator_expand ($1);
- clear_momentary (); }
- | simple_if ELSE
- { c_expand_start_else ();
- $<itype>1 = stmt_count;
- position_after_white_space (); }
- lineno_labeled_stmt
- { c_expand_end_cond ();
- if (extra_warnings && stmt_count == $<itype>1)
- warning ("empty body in an else-statement"); }
- | simple_if %prec IF
- { c_expand_end_cond ();
- /* This warning is here instead of in simple_if, because we
- do not want a warning if an empty if is followed by an
- else statement. Increment stmt_count so we don't
- give a second error if this is a nested `if'. */
- if (extra_warnings && stmt_count++ == $<itype>1)
- warning_with_file_and_line (if_stmt_file, if_stmt_line,
- "empty body in an if-statement"); }
-/* Make sure c_expand_end_cond is run once
- for each call to c_expand_start_cond.
- Otherwise a crash is likely. */
- | simple_if ELSE error
- { c_expand_end_cond (); }
- | WHILE
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- /* The emit_nop used to come before emit_line_note,
- but that made the nop seem like part of the preceding line.
- And that was confusing when the preceding line was
- inside of an if statement and was not really executed.
- I think it ought to work to put the nop after the line number.
- We will see. --rms, July 15, 1991. */
- emit_nop (); }
- '(' expr ')'
- { /* Don't start the loop till we have succeeded
- in parsing the end test. This is to make sure
- that we end every loop we start. */
- expand_start_loop (1);
- emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion ($4));
- position_after_white_space (); }
- lineno_labeled_stmt
- { expand_end_loop (); }
- | do_stmt_start
- '(' expr ')' ';'
- { emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion ($3));
- expand_end_loop ();
- clear_momentary (); }
-/* This rule is needed to make sure we end every loop we start. */
- | do_stmt_start error
- { expand_end_loop ();
- clear_momentary (); }
- | FOR
- '(' xexpr ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- if ($3) c_expand_expr_stmt ($3);
- /* Next step is to call expand_start_loop_continue_elsewhere,
- but wait till after we parse the entire for (...).
- Otherwise, invalid input might cause us to call that
- fn without calling expand_end_loop. */
- }
- xexpr ';'
- /* Can't emit now; wait till after expand_start_loop... */
- { $<lineno>7 = lineno;
- $<filename>$ = input_filename; }
- xexpr ')'
- {
- /* Start the loop. Doing this after parsing
- all the expressions ensures we will end the loop. */
- expand_start_loop_continue_elsewhere (1);
- /* Emit the end-test, with a line number. */
- emit_line_note ($<filename>8, $<lineno>7);
- if ($6)
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion ($6));
- /* Don't let the tree nodes for $9 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- $<lineno>7 = lineno;
- $<filename>8 = input_filename;
- position_after_white_space (); }
- lineno_labeled_stmt
- { /* Emit the increment expression, with a line number. */
- emit_line_note ($<filename>8, $<lineno>7);
- expand_loop_continue_here ();
- if ($9)
- c_expand_expr_stmt ($9);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary ();
- expand_end_loop (); }
- | SWITCH '(' expr ')'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_start_case ($3);
- /* Don't let the tree nodes for $3 be discarded by
- clear_momentary during the parsing of the next stmt. */
- push_momentary ();
- position_after_white_space (); }
- lineno_labeled_stmt
- { expand_end_case ($3);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary (); }
- | BREAK ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- if ( ! expand_exit_something ())
- error ("break statement not within loop or switch"); }
- | CONTINUE ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- if (! expand_continue_loop (NULL_PTR))
- error ("continue statement not within a loop"); }
- | RETURN ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_return (NULL_TREE); }
- | RETURN expr ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_return ($2); }
- | ASM_KEYWORD maybe_type_qual '(' expr ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- STRIP_NOPS ($4);
- if ((TREE_CODE ($4) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND ($4, 0)) == STRING_CST)
- || TREE_CODE ($4) == STRING_CST)
- expand_asm ($4);
- else
- error ("argument of `asm' is not a constant string"); }
- /* This is the case with just output operands. */
- | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_asm_operands ($4, $6, NULL_TREE, NULL_TREE,
- $2 == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); }
- /* This is the case with input operands as well. */
- | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':' asm_operands ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_asm_operands ($4, $6, $8, NULL_TREE,
- $2 == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); }
- /* This is the case with clobbered registers as well. */
- | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':'
- asm_operands ':' asm_clobbers ')' ';'
- { stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- c_expand_asm_operands ($4, $6, $8, $10,
- $2 == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); }
- | GOTO identifier ';'
- { tree decl;
- stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- decl = lookup_label ($2);
- if (decl != 0)
- {
- TREE_USED (decl) = 1;
- expand_goto (decl);
- }
- }
- | GOTO '*' expr ';'
- { if (pedantic)
- pedwarn ("ANSI C forbids `goto *expr;'");
- stmt_count++;
- emit_line_note ($<filename>-1, $<lineno>0);
- expand_computed_goto (convert (ptr_type_node, $3)); }
- | ';'
- ;
-
-all_iter_stmt:
- all_iter_stmt_simple
-/* | all_iter_stmt_with_decl */
- ;
-
-all_iter_stmt_simple:
- FOR '(' primary ')'
- {
- /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-
- $<itype>$ = 0;
- if (TREE_CODE ($3) != VAR_DECL)
- error ("invalid `for (ITERATOR)' syntax");
- else if (! ITERATOR_P ($3))
- error ("`%s' is not an iterator",
- IDENTIFIER_POINTER (DECL_NAME ($3)));
- else if (ITERATOR_BOUND_P ($3))
- error ("`for (%s)' inside expansion of same iterator",
- IDENTIFIER_POINTER (DECL_NAME ($3)));
- else
- {
- $<itype>$ = 1;
- iterator_for_loop_start ($3);
- }
- }
- lineno_labeled_stmt
- {
- if ($<itype>5)
- iterator_for_loop_end ($3);
- }
-
-/* This really should allow any kind of declaration,
- for generality. Fix it before turning it back on.
-
-all_iter_stmt_with_decl:
- FOR '(' ITERATOR pushlevel setspecs iterator_spec ')'
- {
-*/ /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-/*
- iterator_for_loop_start ($6);
- }
- lineno_labeled_stmt
- {
- iterator_for_loop_end ($6);
- emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- $<ttype>$ = poplevel (1, 1, 0);
- if (yychar == CONSTANT || yychar == STRING)
- pop_momentary_nofree ();
- else
- pop_momentary ();
- }
-*/
-
-/* Any kind of label, including jump labels and case labels.
- ANSI C accepts labels only before statements, but we allow them
- also at the end of a compound statement. */
-
-label: CASE expr_no_commas ':'
- { register tree value = check_case_value ($2);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- stmt_count++;
-
- if (value != error_mark_node)
- {
- tree duplicate;
- int success;
-
- if (pedantic && ! INTEGRAL_TYPE_P (TREE_TYPE (value)))
- pedwarn ("label must have integral type in ANSI C");
-
- success = pushcase (value, convert_and_check,
- label, &duplicate);
-
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); }
- | CASE expr_no_commas ELLIPSIS expr_no_commas ':'
- { register tree value1 = check_case_value ($2);
- register tree value2 = check_case_value ($4);
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
-
- if (pedantic)
- pedwarn ("ANSI C forbids case ranges");
- stmt_count++;
-
- if (value1 != error_mark_node && value2 != error_mark_node)
- {
- tree duplicate;
- int success = pushcase_range (value1, value2,
- convert_and_check, label,
- &duplicate);
- if (success == 1)
- error ("case label not within a switch statement");
- else if (success == 2)
- {
- error ("duplicate case value");
- error_with_decl (duplicate, "this is the first entry for that value");
- }
- else if (success == 3)
- warning ("case value out of range");
- else if (success == 4)
- warning ("empty case range");
- else if (success == 5)
- error ("case label within scope of cleanup or variable array");
- }
- position_after_white_space (); }
- | DEFAULT ':'
- {
- tree duplicate;
- register tree label
- = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
- int success = pushcase (NULL_TREE, 0, label, &duplicate);
- stmt_count++;
- if (success == 1)
- error ("default label not within a switch statement");
- else if (success == 2)
- {
- error ("multiple default labels in one switch");
- error_with_decl (duplicate, "this is the first default label");
- }
- position_after_white_space (); }
- | identifier ':' maybe_attribute
- { tree label = define_label (input_filename, lineno, $1);
- stmt_count++;
- emit_nop ();
- if (label)
- {
- expand_label (label);
- decl_attributes (label, $3, NULL_TREE);
- }
- position_after_white_space (); }
- ;
-
-/* Either a type-qualifier or nothing. First thing in an `asm' statement. */
-
-maybe_type_qual:
- /* empty */
- { emit_line_note (input_filename, lineno);
- $$ = NULL_TREE; }
- | TYPE_QUAL
- { emit_line_note (input_filename, lineno); }
- ;
-
-xexpr:
- /* empty */
- { $$ = NULL_TREE; }
- | expr
- ;
-
-/* These are the operands other than the first string and colon
- in asm ("addextend %2,%1": "=dm" (x), "0" (y), "g" (*x)) */
-asm_operands: /* empty */
- { $$ = NULL_TREE; }
- | nonnull_asm_operands
- ;
-
-nonnull_asm_operands:
- asm_operand
- | nonnull_asm_operands ',' asm_operand
- { $$ = chainon ($1, $3); }
- ;
-
-asm_operand:
- STRING '(' expr ')'
- { $$ = build_tree_list ($1, $3); }
- ;
-
-asm_clobbers:
- string
- { $$ = tree_cons (NULL_TREE, combine_strings ($1), NULL_TREE); }
- | asm_clobbers ',' string
- { $$ = tree_cons (NULL_TREE, combine_strings ($3), $1); }
- ;
-
-/* This is what appears inside the parens in a function declarator.
- Its value is a list of ..._TYPE nodes. */
-parmlist:
- { pushlevel (0);
- clear_parm_order ();
- declare_parm_level (0); }
- parmlist_1
- { $$ = $2;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); }
- ;
-
-parmlist_1:
- parmlist_2 ')'
- | parms ';'
- { tree parm;
- if (pedantic)
- pedwarn ("ANSI C forbids forward parameter declarations");
- /* Mark the forward decls as such. */
- for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
- TREE_ASM_WRITTEN (parm) = 1;
- clear_parm_order (); }
- parmlist_1
- { $$ = $4; }
- | error ')'
- { $$ = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); }
- ;
-
-/* This is what appears inside the parens in a function declarator.
- Is value is represented in the format that grokdeclarator expects. */
-parmlist_2: /* empty */
- { $$ = get_parm_info (0); }
- | ELLIPSIS
- { $$ = get_parm_info (0);
- /* Gcc used to allow this as an extension. However, it does
- not work for all targets, and thus has been disabled.
- Also, since func (...) and func () are indistinguishable,
- it caused problems with the code in expand_builtin which
- tries to verify that BUILT_IN_NEXT_ARG is being used
- correctly. */
- error ("ANSI C requires a named argument before `...'");
- }
- | parms
- { $$ = get_parm_info (1); }
- | parms ',' ELLIPSIS
- { $$ = get_parm_info (0); }
- ;
-
-parms:
- parm
- { push_parm_decl ($1); }
- | parms ',' parm
- { push_parm_decl ($3); }
- ;
-
-/* A single parameter declaration or parameter type name,
- as found in a parmlist. */
-parm:
- typed_declspecs setspecs parm_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs notype_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs setspecs absdcl maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | declmods setspecs notype_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
-
- | declmods setspecs absdcl maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $3),
- build_tree_list (prefix_attributes,
- $4));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- ;
-
-/* This is used in a function definition
- where either a parmlist or an identifier list is ok.
- Its value is a list of ..._TYPE nodes or a list of identifiers. */
-parmlist_or_identifiers:
- { pushlevel (0);
- clear_parm_order ();
- declare_parm_level (1); }
- parmlist_or_identifiers_1
- { $$ = $2;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); }
- ;
-
-parmlist_or_identifiers_1:
- parmlist_1
- | identifiers ')'
- { tree t;
- for (t = $1; t; t = TREE_CHAIN (t))
- if (TREE_VALUE (t) == NULL_TREE)
- error ("`...' in old-style identifier list");
- $$ = tree_cons (NULL_TREE, NULL_TREE, $1); }
- ;
-
-/* A nonempty list of identifiers. */
-identifiers:
- IDENTIFIER
- { $$ = build_tree_list (NULL_TREE, $1); }
- | identifiers ',' IDENTIFIER
- { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-/* A nonempty list of identifiers, including typenames. */
-identifiers_or_typenames:
- identifier
- { $$ = build_tree_list (NULL_TREE, $1); }
- | identifiers_or_typenames ',' identifier
- { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-extension:
- EXTENSION
- { $<itype>$ = pedantic;
- pedantic = 0; }
- ;
-
-/* Objective-C productions. */
-
-objcdef:
- classdef
- | classdecl
- | aliasdecl
- | protocoldef
- | methoddef
- | END
- {
- if (objc_implementation_context)
- {
- finish_class (objc_implementation_context);
- objc_ivar_chain = NULL_TREE;
- objc_implementation_context = NULL_TREE;
- }
- else
- warning ("`@end' must appear in an implementation context");
- }
- ;
-
-/* A nonempty list of identifiers. */
-identifier_list:
- identifier
- { $$ = build_tree_list (NULL_TREE, $1); }
- | identifier_list ',' identifier
- { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
- ;
-
-classdecl:
- CLASS identifier_list ';'
- {
- objc_declare_class ($2);
- }
-
-aliasdecl:
- ALIAS identifier identifier ';'
- {
- objc_declare_alias ($2, $3);
- }
-
-classdef:
- INTERFACE identifier protocolrefs '{'
- {
- objc_interface_context = objc_ivar_context
- = start_class (CLASS_INTERFACE_TYPE, $2, NULL_TREE, $3);
- objc_public_flag = 0;
- }
- ivar_decl_list '}'
- {
- continue_class (objc_interface_context);
- }
- methodprotolist
- END
- {
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- }
-
- | INTERFACE identifier protocolrefs
- {
- objc_interface_context
- = start_class (CLASS_INTERFACE_TYPE, $2, NULL_TREE, $3);
- continue_class (objc_interface_context);
- }
- methodprotolist
- END
- {
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- }
-
- | INTERFACE identifier ':' identifier protocolrefs '{'
- {
- objc_interface_context = objc_ivar_context
- = start_class (CLASS_INTERFACE_TYPE, $2, $4, $5);
- objc_public_flag = 0;
- }
- ivar_decl_list '}'
- {
- continue_class (objc_interface_context);
- }
- methodprotolist
- END
- {
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- }
-
- | INTERFACE identifier ':' identifier protocolrefs
- {
- objc_interface_context
- = start_class (CLASS_INTERFACE_TYPE, $2, $4, $5);
- continue_class (objc_interface_context);
- }
- methodprotolist
- END
- {
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- }
-
- | IMPLEMENTATION identifier '{'
- {
- objc_implementation_context = objc_ivar_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, $2, NULL_TREE, NULL_TREE);
- objc_public_flag = 0;
- }
- ivar_decl_list '}'
- {
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- }
-
- | IMPLEMENTATION identifier
- {
- objc_implementation_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, $2, NULL_TREE, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- }
-
- | IMPLEMENTATION identifier ':' identifier '{'
- {
- objc_implementation_context = objc_ivar_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
- objc_public_flag = 0;
- }
- ivar_decl_list '}'
- {
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- }
-
- | IMPLEMENTATION identifier ':' identifier
- {
- objc_implementation_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- }
-
- | INTERFACE identifier '(' identifier ')' protocolrefs
- {
- objc_interface_context
- = start_class (CATEGORY_INTERFACE_TYPE, $2, $4, $6);
- continue_class (objc_interface_context);
- }
- methodprotolist
- END
- {
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- }
-
- | IMPLEMENTATION identifier '(' identifier ')'
- {
- objc_implementation_context
- = start_class (CATEGORY_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- }
- ;
-
-protocoldef:
- PROTOCOL identifier protocolrefs
- {
- remember_protocol_qualifiers ();
- objc_interface_context
- = start_protocol(PROTOCOL_INTERFACE_TYPE, $2, $3);
- }
- methodprotolist END
- {
- forget_protocol_qualifiers();
- finish_protocol(objc_interface_context);
- objc_interface_context = NULL_TREE;
- }
- ;
-
-protocolrefs:
- /* empty */
- {
- $$ = NULL_TREE;
- }
- | non_empty_protocolrefs
- ;
-
-non_empty_protocolrefs:
- ARITHCOMPARE identifier_list ARITHCOMPARE
- {
- if ($1 == LT_EXPR && $3 == GT_EXPR)
- $$ = $2;
- else
- YYERROR1;
- }
- ;
-
-ivar_decl_list:
- ivar_decl_list visibility_spec ivar_decls
- | ivar_decls
- ;
-
-visibility_spec:
- PRIVATE { objc_public_flag = 2; }
- | PROTECTED { objc_public_flag = 0; }
- | PUBLIC { objc_public_flag = 1; }
- ;
-
-ivar_decls:
- /* empty */
- {
- $$ = NULL_TREE;
- }
- | ivar_decls ivar_decl ';'
- | ivar_decls ';'
- {
- if (pedantic)
- pedwarn ("extra semicolon in struct or union specified");
- }
- ;
-
-
-/* There is a shift-reduce conflict here, because `components' may
- start with a `typename'. It happens that shifting (the default resolution)
- does the right thing, because it treats the `typename' as part of
- a `typed_typespecs'.
-
- It is possible that this same technique would allow the distinction
- between `notype_initdecls' and `initdecls' to be eliminated.
- But I am being cautious and not trying it. */
-
-ivar_decl:
- typed_typespecs setspecs ivars
- { $$ = $3;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | nonempty_type_quals setspecs ivars
- { $$ = $3;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | error
- { $$ = NULL_TREE; }
- ;
-
-ivars:
- /* empty */
- { $$ = NULL_TREE; }
- | ivar_declarator
- | ivars ',' ivar_declarator
- ;
-
-ivar_declarator:
- declarator
- {
- $$ = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- $1, current_declspecs,
- NULL_TREE);
- }
- | declarator ':' expr_no_commas
- {
- $$ = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- $1, current_declspecs, $3);
- }
- | ':' expr_no_commas
- {
- $$ = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- NULL_TREE,
- current_declspecs, $2);
- }
- ;
-
-methoddef:
- '+'
- {
- remember_protocol_qualifiers ();
- if (objc_implementation_context)
- objc_inherit_code = CLASS_METHOD_DECL;
- else
- fatal ("method definition not in class context");
- }
- methoddecl
- {
- forget_protocol_qualifiers ();
- add_class_method (objc_implementation_context, $3);
- start_method_def ($3);
- objc_method_context = $3;
- }
- optarglist
- {
- continue_method_def ();
- }
- compstmt_or_error
- {
- finish_method_def ();
- objc_method_context = NULL_TREE;
- }
-
- | '-'
- {
- remember_protocol_qualifiers ();
- if (objc_implementation_context)
- objc_inherit_code = INSTANCE_METHOD_DECL;
- else
- fatal ("method definition not in class context");
- }
- methoddecl
- {
- forget_protocol_qualifiers ();
- add_instance_method (objc_implementation_context, $3);
- start_method_def ($3);
- objc_method_context = $3;
- }
- optarglist
- {
- continue_method_def ();
- }
- compstmt_or_error
- {
- finish_method_def ();
- objc_method_context = NULL_TREE;
- }
- ;
-
-/* the reason for the strange actions in this rule
- is so that notype_initdecls when reached via datadef
- can find a valid list of type and sc specs in $0. */
-
-methodprotolist:
- /* empty */
- | {$<ttype>$ = NULL_TREE; } methodprotolist2
- ;
-
-methodprotolist2: /* eliminates a shift/reduce conflict */
- methodproto
- | datadef
- | methodprotolist2 methodproto
- | methodprotolist2 {$<ttype>$ = NULL_TREE; } datadef
- ;
-
-semi_or_error:
- ';'
- | error
- ;
-
-methodproto:
- '+'
- {
- /* Remember protocol qualifiers in prototypes. */
- remember_protocol_qualifiers ();
- objc_inherit_code = CLASS_METHOD_DECL;
- }
- methoddecl
- {
- /* Forget protocol qualifiers here. */
- forget_protocol_qualifiers ();
- add_class_method (objc_interface_context, $3);
- }
- semi_or_error
-
- | '-'
- {
- /* Remember protocol qualifiers in prototypes. */
- remember_protocol_qualifiers ();
- objc_inherit_code = INSTANCE_METHOD_DECL;
- }
- methoddecl
- {
- /* Forget protocol qualifiers here. */
- forget_protocol_qualifiers ();
- add_instance_method (objc_interface_context, $3);
- }
- semi_or_error
- ;
-
-methoddecl:
- '(' typename ')' unaryselector
- {
- $$ = build_method_decl (objc_inherit_code, $2, $4, NULL_TREE);
- }
-
- | unaryselector
- {
- $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, NULL_TREE);
- }
-
- | '(' typename ')' keywordselector optparmlist
- {
- $$ = build_method_decl (objc_inherit_code, $2, $4, $5);
- }
-
- | keywordselector optparmlist
- {
- $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, $2);
- }
- ;
-
-/* "optarglist" assumes that start_method_def has already been called...
- if it is not, the "xdecls" will not be placed in the proper scope */
-
-optarglist:
- /* empty */
- | ';' myxdecls
- ;
-
-/* to get around the following situation: "int foo (int a) int b; {}" that
- is synthesized when parsing "- a:a b:b; id c; id d; { ... }" */
-
-myxdecls:
- /* empty */
- | mydecls
- ;
-
-mydecls:
- mydecl
- | errstmt
- | mydecls mydecl
- | mydecl errstmt
- ;
-
-mydecl:
- typed_declspecs setspecs myparms ';'
- { current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- resume_momentary ($2); }
- | typed_declspecs ';'
- { shadow_tag ($1); }
- | declmods ';'
- { pedwarn ("empty declaration"); }
- ;
-
-myparms:
- myparm
- { push_parm_decl ($1); }
- | myparms ',' myparm
- { push_parm_decl ($3); }
- ;
-
-/* A single parameter declaration or parameter type name,
- as found in a parmlist. DOES NOT ALLOW AN INITIALIZER OR ASMSPEC */
-
-myparm:
- parm_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $1),
- build_tree_list (prefix_attributes,
- $2)); }
- | notype_declarator maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $1),
- build_tree_list (prefix_attributes,
- $2)); }
- | absdcl maybe_attribute
- { $$ = build_tree_list (build_tree_list (current_declspecs,
- $1),
- build_tree_list (prefix_attributes,
- $2)); }
- ;
-
-optparmlist:
- /* empty */
- {
- $$ = NULL_TREE;
- }
- | ',' ELLIPSIS
- {
- /* oh what a kludge! */
- $$ = (tree)1;
- }
- | ','
- {
- pushlevel (0);
- }
- parmlist_2
- {
- /* returns a tree list node generated by get_parm_info */
- $$ = $3;
- poplevel (0, 0, 0);
- }
- ;
-
-unaryselector:
- selector
- ;
-
-keywordselector:
- keyworddecl
-
- | keywordselector keyworddecl
- {
- $$ = chainon ($1, $2);
- }
- ;
-
-selector:
- IDENTIFIER
- | TYPENAME
- | OBJECTNAME
- | reservedwords
- ;
-
-reservedwords:
- ENUM { $$ = get_identifier (token_buffer); }
- | STRUCT { $$ = get_identifier (token_buffer); }
- | UNION { $$ = get_identifier (token_buffer); }
- | IF { $$ = get_identifier (token_buffer); }
- | ELSE { $$ = get_identifier (token_buffer); }
- | WHILE { $$ = get_identifier (token_buffer); }
- | DO { $$ = get_identifier (token_buffer); }
- | FOR { $$ = get_identifier (token_buffer); }
- | SWITCH { $$ = get_identifier (token_buffer); }
- | CASE { $$ = get_identifier (token_buffer); }
- | DEFAULT { $$ = get_identifier (token_buffer); }
- | BREAK { $$ = get_identifier (token_buffer); }
- | CONTINUE { $$ = get_identifier (token_buffer); }
- | RETURN { $$ = get_identifier (token_buffer); }
- | GOTO { $$ = get_identifier (token_buffer); }
- | ASM_KEYWORD { $$ = get_identifier (token_buffer); }
- | SIZEOF { $$ = get_identifier (token_buffer); }
- | TYPEOF { $$ = get_identifier (token_buffer); }
- | ALIGNOF { $$ = get_identifier (token_buffer); }
- | TYPESPEC | TYPE_QUAL
- ;
-
-keyworddecl:
- selector ':' '(' typename ')' identifier
- {
- $$ = build_keyword_decl ($1, $4, $6);
- }
-
- | selector ':' identifier
- {
- $$ = build_keyword_decl ($1, NULL_TREE, $3);
- }
-
- | ':' '(' typename ')' identifier
- {
- $$ = build_keyword_decl (NULL_TREE, $3, $5);
- }
-
- | ':' identifier
- {
- $$ = build_keyword_decl (NULL_TREE, NULL_TREE, $2);
- }
- ;
-
-messageargs:
- selector
- | keywordarglist
- ;
-
-keywordarglist:
- keywordarg
- | keywordarglist keywordarg
- {
- $$ = chainon ($1, $2);
- }
- ;
-
-
-keywordexpr:
- nonnull_exprlist
- {
- if (TREE_CHAIN ($1) == NULL_TREE)
- /* just return the expr., remove a level of indirection */
- $$ = TREE_VALUE ($1);
- else
- /* we have a comma expr., we will collapse later */
- $$ = $1;
- }
- ;
-
-keywordarg:
- selector ':' keywordexpr
- {
- $$ = build_tree_list ($1, $3);
- }
- | ':' keywordexpr
- {
- $$ = build_tree_list (NULL_TREE, $2);
- }
- ;
-
-receiver:
- expr
- | CLASSNAME
- {
- $$ = get_class_reference ($1);
- }
- ;
-
-objcmessageexpr:
- '['
- { objc_receiver_context = 1; }
- receiver
- { objc_receiver_context = 0; }
- messageargs ']'
- {
- $$ = build_tree_list ($3, $5);
- }
- ;
-
-selectorarg:
- selector
- | keywordnamelist
- ;
-
-keywordnamelist:
- keywordname
- | keywordnamelist keywordname
- {
- $$ = chainon ($1, $2);
- }
- ;
-
-keywordname:
- selector ':'
- {
- $$ = build_tree_list ($1, NULL_TREE);
- }
- | ':'
- {
- $$ = build_tree_list (NULL_TREE, NULL_TREE);
- }
- ;
-
-objcselectorexpr:
- SELECTOR '(' selectorarg ')'
- {
- $$ = $3;
- }
- ;
-
-objcprotocolexpr:
- PROTOCOL '(' identifier ')'
- {
- $$ = $3;
- }
- ;
-
-/* extension to support C-structures in the archiver */
-
-objcencodeexpr:
- ENCODE '(' typename ')'
- {
- $$ = groktypename ($3);
- }
- ;
-
-%%