* c-parse.in: Apply Ulrich's changes from c-parse.y. * c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c: Regenerate. From-SVN: r31698
5310 lines
206 KiB
C
5310 lines
206 KiB
C
|
||
/* A Bison parser, made from objc-parse.y
|
||
by GNU Bison version 1.28 */
|
||
|
||
#define YYBISON 1 /* Identify Bison output. */
|
||
|
||
#define IDENTIFIER 257
|
||
#define TYPENAME 258
|
||
#define SCSPEC 259
|
||
#define TYPESPEC 260
|
||
#define TYPE_QUAL 261
|
||
#define CONSTANT 262
|
||
#define STRING 263
|
||
#define ELLIPSIS 264
|
||
#define SIZEOF 265
|
||
#define ENUM 266
|
||
#define STRUCT 267
|
||
#define UNION 268
|
||
#define IF 269
|
||
#define ELSE 270
|
||
#define WHILE 271
|
||
#define DO 272
|
||
#define FOR 273
|
||
#define SWITCH 274
|
||
#define CASE 275
|
||
#define DEFAULT 276
|
||
#define BREAK 277
|
||
#define CONTINUE 278
|
||
#define RETURN 279
|
||
#define GOTO 280
|
||
#define ASM_KEYWORD 281
|
||
#define TYPEOF 282
|
||
#define ALIGNOF 283
|
||
#define ATTRIBUTE 284
|
||
#define EXTENSION 285
|
||
#define LABEL 286
|
||
#define REALPART 287
|
||
#define IMAGPART 288
|
||
#define VA_ARG 289
|
||
#define END_OF_LINE 290
|
||
#define ASSIGN 291
|
||
#define OROR 292
|
||
#define ANDAND 293
|
||
#define EQCOMPARE 294
|
||
#define ARITHCOMPARE 295
|
||
#define LSHIFT 296
|
||
#define RSHIFT 297
|
||
#define UNARY 298
|
||
#define PLUSPLUS 299
|
||
#define MINUSMINUS 300
|
||
#define HYPERUNARY 301
|
||
#define POINTSAT 302
|
||
#define INTERFACE 303
|
||
#define IMPLEMENTATION 304
|
||
#define END 305
|
||
#define SELECTOR 306
|
||
#define DEFS 307
|
||
#define ENCODE 308
|
||
#define CLASSNAME 309
|
||
#define PUBLIC 310
|
||
#define PRIVATE 311
|
||
#define PROTECTED 312
|
||
#define PROTOCOL 313
|
||
#define OBJECTNAME 314
|
||
#define CLASS 315
|
||
#define ALIAS 316
|
||
#define OBJC_STRING 317
|
||
|
||
#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"
|
||
#include "ggc.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. */
|
||
const char * const 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 196 "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;
|
||
|
||
/* For __extension__, save/restore the warning flags which are
|
||
controlled by __extension__. */
|
||
#define SAVE_WARN_FLAGS() \
|
||
build_int_2 (pedantic | (warn_pointer_arith << 1), 0)
|
||
#define RESTORE_WARN_FLAGS(tval) \
|
||
do { \
|
||
int val = TREE_INT_CST_LOW (tval); \
|
||
pedantic = val & 1; \
|
||
warn_pointer_arith = (val >> 1) & 1; \
|
||
} while (0)
|
||
|
||
/* 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 PARAMS ((FILE *, int, YYSTYPE));
|
||
|
||
/* Add GC roots for variables local to this file. */
|
||
void
|
||
c_parse_init ()
|
||
{
|
||
ggc_add_tree_root (&declspec_stack, 1);
|
||
ggc_add_tree_root (¤t_declspecs, 1);
|
||
ggc_add_tree_root (&prefix_attributes, 1);
|
||
}
|
||
|
||
#include <stdio.h>
|
||
|
||
#ifndef __cplusplus
|
||
#ifndef __STDC__
|
||
#define const
|
||
#endif
|
||
#endif
|
||
|
||
|
||
|
||
#define YYFINAL 969
|
||
#define YYFLAG -32768
|
||
#define YYNTBASE 86
|
||
|
||
#define YYTRANSLATE(x) ((unsigned)(x) <= 317 ? yytranslate[x] : 314)
|
||
|
||
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, 82, 2, 2, 2, 54, 45, 2, 61,
|
||
78, 52, 50, 83, 51, 60, 53, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 40, 79, 2,
|
||
38, 2, 39, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
62, 2, 85, 44, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 84, 43, 80, 81, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 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, 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, 41, 42, 46, 47, 48, 49, 55, 56, 57,
|
||
58, 59, 63, 64, 65, 66, 67, 68, 69, 70,
|
||
71, 72, 73, 74, 75, 76, 77
|
||
};
|
||
|
||
#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, 174,
|
||
176, 178, 180, 185, 186, 194, 196, 200, 204, 208,
|
||
212, 216, 220, 224, 228, 232, 236, 240, 244, 245,
|
||
250, 251, 256, 257, 258, 266, 267, 273, 277, 281,
|
||
283, 285, 287, 291, 295, 299, 303, 308, 313, 317,
|
||
321, 324, 327, 329, 331, 333, 335, 337, 339, 342,
|
||
344, 347, 348, 350, 353, 357, 359, 361, 364, 367,
|
||
372, 377, 380, 383, 387, 389, 391, 394, 397, 398,
|
||
399, 404, 409, 413, 417, 420, 423, 426, 429, 433,
|
||
434, 437, 440, 443, 446, 450, 451, 454, 457, 459,
|
||
461, 464, 467, 469, 471, 474, 477, 480, 484, 485,
|
||
488, 490, 492, 494, 497, 500, 502, 507, 512, 514,
|
||
516, 518, 520, 524, 526, 530, 531, 536, 537, 544,
|
||
548, 549, 556, 560, 561, 563, 565, 568, 575, 577,
|
||
581, 582, 584, 589, 596, 601, 603, 605, 607, 609,
|
||
611, 612, 617, 619, 620, 623, 625, 629, 633, 636,
|
||
637, 642, 644, 645, 650, 652, 654, 656, 659, 662,
|
||
663, 664, 670, 671, 672, 678, 680, 682, 686, 690,
|
||
695, 699, 703, 707, 709, 711, 715, 720, 724, 728,
|
||
732, 734, 738, 742, 746, 751, 755, 759, 761, 763,
|
||
766, 768, 771, 773, 776, 777, 785, 791, 794, 795,
|
||
803, 809, 812, 813, 822, 823, 831, 834, 835, 837,
|
||
838, 840, 842, 845, 846, 850, 853, 858, 862, 868,
|
||
872, 874, 876, 879, 881, 885, 890, 897, 903, 905,
|
||
909, 911, 913, 917, 920, 923, 924, 926, 928, 931,
|
||
932, 935, 939, 943, 946, 950, 955, 959, 962, 966,
|
||
969, 973, 975, 977, 980, 983, 984, 986, 989, 990,
|
||
991, 993, 995, 998, 1002, 1004, 1007, 1009, 1011, 1017,
|
||
1022, 1027, 1030, 1033, 1036, 1039, 1044, 1045, 1050, 1051,
|
||
1052, 1056, 1061, 1065, 1067, 1069, 1071, 1073, 1076, 1077,
|
||
1082, 1084, 1088, 1089, 1090, 1098, 1104, 1107, 1108, 1109,
|
||
1110, 1123, 1124, 1131, 1134, 1137, 1140, 1144, 1151, 1160,
|
||
1171, 1184, 1188, 1193, 1195, 1197, 1198, 1205, 1209, 1215,
|
||
1218, 1222, 1223, 1225, 1226, 1228, 1229, 1231, 1233, 1237,
|
||
1242, 1244, 1248, 1249, 1252, 1255, 1256, 1261, 1264, 1265,
|
||
1267, 1269, 1273, 1275, 1279, 1284, 1289, 1294, 1299, 1304,
|
||
1305, 1308, 1310, 1313, 1315, 1319, 1321, 1325, 1327, 1329,
|
||
1331, 1333, 1335, 1337, 1339, 1341, 1345, 1349, 1354, 1355,
|
||
1356, 1367, 1368, 1375, 1376, 1377, 1390, 1391, 1400, 1401,
|
||
1408, 1411, 1412, 1421, 1426, 1427, 1437, 1443, 1444, 1451,
|
||
1452, 1454, 1458, 1462, 1464, 1466, 1468, 1470, 1471, 1475,
|
||
1478, 1482, 1486, 1488, 1489, 1491, 1495, 1497, 1501, 1504,
|
||
1505, 1506, 1507, 1515, 1516, 1517, 1518, 1526, 1527, 1528,
|
||
1531, 1533, 1535, 1538, 1539, 1543, 1545, 1547, 1548, 1549,
|
||
1555, 1556, 1557, 1563, 1568, 1570, 1576, 1579, 1580, 1583,
|
||
1584, 1586, 1588, 1590, 1593, 1596, 1601, 1604, 1607, 1609,
|
||
1613, 1616, 1619, 1622, 1623, 1626, 1627, 1631, 1633, 1635,
|
||
1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656,
|
||
1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676,
|
||
1678, 1680, 1682, 1684, 1686, 1688, 1695, 1699, 1705, 1708,
|
||
1710, 1712, 1714, 1717, 1719, 1723, 1726, 1728, 1730, 1731,
|
||
1732, 1739, 1741, 1743, 1745, 1748, 1751, 1753, 1758, 1763
|
||
};
|
||
|
||
static const short yyrhs[] = { -1,
|
||
87, 0, 0, 88, 90, 0, 0, 87, 89, 90,
|
||
0, 92, 0, 91, 0, 245, 0, 27, 61, 101,
|
||
78, 79, 0, 244, 90, 0, 124, 138, 79, 0,
|
||
131, 124, 138, 79, 0, 127, 124, 137, 79, 0,
|
||
131, 79, 0, 127, 79, 0, 1, 79, 0, 1,
|
||
80, 0, 79, 0, 0, 0, 127, 124, 166, 93,
|
||
118, 94, 200, 0, 127, 124, 166, 1, 0, 0,
|
||
0, 131, 124, 169, 95, 118, 96, 200, 0, 131,
|
||
124, 169, 1, 0, 0, 0, 124, 169, 97, 118,
|
||
98, 200, 0, 124, 169, 1, 0, 3, 0, 4,
|
||
0, 74, 0, 69, 0, 45, 0, 51, 0, 50,
|
||
0, 56, 0, 57, 0, 81, 0, 82, 0, 103,
|
||
0, 0, 103, 0, 109, 0, 103, 83, 109, 0,
|
||
115, 0, 52, 107, 0, 244, 107, 0, 100, 107,
|
||
0, 42, 99, 0, 105, 104, 0, 105, 61, 187,
|
||
78, 0, 106, 104, 0, 106, 61, 187, 78, 0,
|
||
33, 107, 0, 34, 107, 0, 35, 61, 109, 83,
|
||
187, 78, 0, 11, 0, 29, 0, 104, 0, 61,
|
||
187, 78, 107, 0, 0, 61, 187, 78, 84, 108,
|
||
152, 80, 0, 107, 0, 109, 50, 109, 0, 109,
|
||
51, 109, 0, 109, 52, 109, 0, 109, 53, 109,
|
||
0, 109, 54, 109, 0, 109, 48, 109, 0, 109,
|
||
49, 109, 0, 109, 47, 109, 0, 109, 46, 109,
|
||
0, 109, 45, 109, 0, 109, 43, 109, 0, 109,
|
||
44, 109, 0, 0, 109, 42, 110, 109, 0, 0,
|
||
109, 41, 111, 109, 0, 0, 0, 109, 39, 112,
|
||
101, 40, 113, 109, 0, 0, 109, 39, 114, 40,
|
||
109, 0, 109, 38, 109, 0, 109, 37, 109, 0,
|
||
3, 0, 8, 0, 116, 0, 61, 101, 78, 0,
|
||
61, 1, 78, 0, 203, 202, 78, 0, 203, 1,
|
||
78, 0, 115, 61, 102, 78, 0, 115, 62, 101,
|
||
85, 0, 115, 60, 99, 0, 115, 59, 99, 0,
|
||
115, 56, 0, 115, 57, 0, 305, 0, 311, 0,
|
||
312, 0, 313, 0, 117, 0, 9, 0, 116, 9,
|
||
0, 77, 0, 117, 77, 0, 0, 120, 0, 120,
|
||
10, 0, 209, 210, 121, 0, 119, 0, 195, 0,
|
||
120, 119, 0, 119, 195, 0, 129, 124, 137, 79,
|
||
0, 132, 124, 138, 79, 0, 129, 79, 0, 132,
|
||
79, 0, 209, 210, 126, 0, 122, 0, 195, 0,
|
||
123, 122, 0, 122, 195, 0, 0, 0, 127, 124,
|
||
137, 79, 0, 131, 124, 138, 79, 0, 127, 124,
|
||
160, 0, 131, 124, 163, 0, 127, 79, 0, 131,
|
||
79, 0, 244, 126, 0, 135, 128, 0, 131, 135,
|
||
128, 0, 0, 128, 136, 0, 128, 5, 0, 128,
|
||
145, 0, 135, 130, 0, 132, 135, 130, 0, 0,
|
||
130, 136, 0, 130, 5, 0, 132, 0, 145, 0,
|
||
131, 132, 0, 131, 145, 0, 7, 0, 5, 0,
|
||
132, 7, 0, 132, 5, 0, 135, 134, 0, 189,
|
||
135, 134, 0, 0, 134, 136, 0, 6, 0, 173,
|
||
0, 4, 0, 69, 261, 0, 74, 261, 0, 262,
|
||
0, 28, 61, 101, 78, 0, 28, 61, 187, 78,
|
||
0, 6, 0, 7, 0, 173, 0, 140, 0, 137,
|
||
83, 140, 0, 142, 0, 138, 83, 140, 0, 0,
|
||
27, 61, 116, 78, 0, 0, 166, 139, 144, 38,
|
||
141, 150, 0, 166, 139, 144, 0, 0, 169, 139,
|
||
144, 38, 143, 150, 0, 169, 139, 144, 0, 0,
|
||
145, 0, 146, 0, 145, 146, 0, 30, 61, 61,
|
||
147, 78, 78, 0, 148, 0, 147, 83, 148, 0,
|
||
0, 149, 0, 149, 61, 3, 78, 0, 149, 61,
|
||
3, 83, 103, 78, 0, 149, 61, 102, 78, 0,
|
||
99, 0, 5, 0, 6, 0, 7, 0, 109, 0,
|
||
0, 84, 151, 152, 80, 0, 1, 0, 0, 153,
|
||
178, 0, 154, 0, 153, 83, 154, 0, 158, 38,
|
||
156, 0, 159, 156, 0, 0, 99, 40, 155, 156,
|
||
0, 156, 0, 0, 84, 157, 152, 80, 0, 109,
|
||
0, 1, 0, 159, 0, 158, 159, 0, 60, 99,
|
||
0, 0, 0, 166, 161, 118, 162, 204, 0, 0,
|
||
0, 169, 164, 118, 165, 204, 0, 167, 0, 169,
|
||
0, 61, 167, 78, 0, 167, 61, 239, 0, 167,
|
||
62, 101, 85, 0, 167, 62, 85, 0, 52, 190,
|
||
167, 0, 145, 125, 167, 0, 4, 0, 74, 0,
|
||
168, 61, 239, 0, 168, 62, 101, 85, 0, 168,
|
||
62, 85, 0, 52, 190, 168, 0, 145, 125, 168,
|
||
0, 4, 0, 169, 61, 239, 0, 61, 169, 78,
|
||
0, 52, 190, 169, 0, 169, 62, 101, 85, 0,
|
||
169, 62, 85, 0, 145, 125, 169, 0, 3, 0,
|
||
13, 0, 13, 145, 0, 14, 0, 14, 145, 0,
|
||
12, 0, 12, 145, 0, 0, 170, 99, 84, 174,
|
||
180, 80, 144, 0, 170, 84, 180, 80, 144, 0,
|
||
170, 99, 0, 0, 171, 99, 84, 175, 180, 80,
|
||
144, 0, 171, 84, 180, 80, 144, 0, 171, 99,
|
||
0, 0, 172, 99, 84, 176, 185, 179, 80, 144,
|
||
0, 0, 172, 84, 177, 185, 179, 80, 144, 0,
|
||
172, 99, 0, 0, 83, 0, 0, 83, 0, 181,
|
||
0, 181, 182, 0, 0, 181, 182, 79, 0, 181,
|
||
79, 0, 67, 61, 69, 78, 0, 133, 124, 183,
|
||
0, 133, 124, 209, 210, 144, 0, 189, 124, 183,
|
||
0, 189, 0, 1, 0, 244, 182, 0, 184, 0,
|
||
183, 83, 184, 0, 209, 210, 166, 144, 0, 209,
|
||
210, 166, 40, 109, 144, 0, 209, 210, 40, 109,
|
||
144, 0, 186, 0, 185, 83, 186, 0, 1, 0,
|
||
99, 0, 99, 38, 109, 0, 133, 188, 0, 189,
|
||
188, 0, 0, 191, 0, 7, 0, 189, 7, 0,
|
||
0, 190, 7, 0, 61, 191, 78, 0, 52, 190,
|
||
191, 0, 52, 190, 0, 191, 61, 232, 0, 191,
|
||
62, 101, 85, 0, 191, 62, 85, 0, 61, 232,
|
||
0, 62, 101, 85, 0, 62, 85, 0, 145, 125,
|
||
191, 0, 193, 0, 212, 0, 193, 212, 0, 193,
|
||
195, 0, 0, 192, 0, 1, 79, 0, 0, 0,
|
||
198, 0, 199, 0, 198, 199, 0, 32, 243, 79,
|
||
0, 204, 0, 1, 204, 0, 84, 0, 80, 0,
|
||
196, 197, 123, 194, 80, 0, 196, 197, 1, 80,
|
||
0, 196, 197, 192, 80, 0, 61, 84, 0, 201,
|
||
202, 0, 206, 211, 0, 206, 1, 0, 15, 61,
|
||
101, 78, 0, 0, 18, 208, 211, 17, 0, 0,
|
||
0, 209, 210, 214, 0, 209, 210, 225, 211, 0,
|
||
209, 210, 213, 0, 214, 0, 225, 0, 204, 0,
|
||
222, 0, 101, 79, 0, 0, 205, 16, 215, 211,
|
||
0, 205, 0, 205, 16, 1, 0, 0, 0, 17,
|
||
216, 61, 101, 78, 217, 211, 0, 207, 61, 101,
|
||
78, 79, 0, 207, 1, 0, 0, 0, 0, 19,
|
||
61, 227, 79, 218, 227, 79, 219, 227, 78, 220,
|
||
211, 0, 0, 20, 61, 101, 78, 221, 211, 0,
|
||
23, 79, 0, 24, 79, 0, 25, 79, 0, 25,
|
||
101, 79, 0, 27, 226, 61, 101, 78, 79, 0,
|
||
27, 226, 61, 101, 40, 228, 78, 79, 0, 27,
|
||
226, 61, 101, 40, 228, 40, 228, 78, 79, 0,
|
||
27, 226, 61, 101, 40, 228, 40, 228, 40, 231,
|
||
78, 79, 0, 26, 99, 79, 0, 26, 52, 101,
|
||
79, 0, 79, 0, 223, 0, 0, 19, 61, 115,
|
||
78, 224, 211, 0, 21, 109, 40, 0, 21, 109,
|
||
10, 109, 40, 0, 22, 40, 0, 99, 40, 144,
|
||
0, 0, 7, 0, 0, 101, 0, 0, 229, 0,
|
||
230, 0, 229, 83, 230, 0, 9, 61, 101, 78,
|
||
0, 116, 0, 231, 83, 116, 0, 0, 233, 234,
|
||
0, 236, 78, 0, 0, 237, 79, 235, 234, 0,
|
||
1, 78, 0, 0, 10, 0, 237, 0, 237, 83,
|
||
10, 0, 238, 0, 237, 83, 238, 0, 127, 124,
|
||
168, 144, 0, 127, 124, 169, 144, 0, 127, 124,
|
||
188, 144, 0, 131, 124, 169, 144, 0, 131, 124,
|
||
188, 144, 0, 0, 240, 241, 0, 234, 0, 242,
|
||
78, 0, 3, 0, 242, 83, 3, 0, 99, 0,
|
||
243, 83, 99, 0, 31, 0, 249, 0, 247, 0,
|
||
248, 0, 259, 0, 269, 0, 65, 0, 99, 0,
|
||
246, 83, 99, 0, 75, 246, 79, 0, 76, 99,
|
||
99, 79, 0, 0, 0, 63, 99, 261, 84, 250,
|
||
263, 80, 251, 276, 65, 0, 0, 63, 99, 261,
|
||
252, 276, 65, 0, 0, 0, 63, 99, 40, 99,
|
||
261, 84, 253, 263, 80, 254, 276, 65, 0, 0,
|
||
63, 99, 40, 99, 261, 255, 276, 65, 0, 0,
|
||
64, 99, 84, 256, 263, 80, 0, 64, 99, 0,
|
||
0, 64, 99, 40, 99, 84, 257, 263, 80, 0,
|
||
64, 99, 40, 99, 0, 0, 63, 99, 61, 99,
|
||
78, 261, 258, 276, 65, 0, 64, 99, 61, 99,
|
||
78, 0, 0, 73, 99, 261, 260, 276, 65, 0,
|
||
0, 262, 0, 47, 246, 47, 0, 263, 264, 265,
|
||
0, 265, 0, 71, 0, 72, 0, 70, 0, 0,
|
||
265, 266, 79, 0, 265, 79, 0, 133, 124, 267,
|
||
0, 189, 124, 267, 0, 1, 0, 0, 268, 0,
|
||
267, 83, 268, 0, 166, 0, 166, 40, 109, 0,
|
||
40, 109, 0, 0, 0, 0, 50, 270, 286, 271,
|
||
287, 272, 200, 0, 0, 0, 0, 51, 273, 286,
|
||
274, 287, 275, 200, 0, 0, 0, 277, 278, 0,
|
||
281, 0, 91, 0, 278, 281, 0, 0, 278, 279,
|
||
91, 0, 79, 0, 1, 0, 0, 0, 50, 282,
|
||
286, 283, 280, 0, 0, 0, 51, 284, 286, 285,
|
||
280, 0, 61, 187, 78, 295, 0, 295, 0, 61,
|
||
187, 78, 296, 293, 0, 296, 293, 0, 0, 79,
|
||
288, 0, 0, 289, 0, 290, 0, 195, 0, 289,
|
||
290, 0, 290, 195, 0, 127, 124, 291, 79, 0,
|
||
127, 79, 0, 131, 79, 0, 292, 0, 291, 83,
|
||
292, 0, 168, 144, 0, 169, 144, 0, 188, 144,
|
||
0, 0, 83, 10, 0, 0, 83, 294, 236, 0,
|
||
297, 0, 299, 0, 296, 299, 0, 3, 0, 4,
|
||
0, 74, 0, 298, 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, 297, 40, 61,
|
||
187, 78, 99, 0, 297, 40, 99, 0, 40, 61,
|
||
187, 78, 99, 0, 40, 99, 0, 297, 0, 301,
|
||
0, 303, 0, 301, 303, 0, 103, 0, 297, 40,
|
||
302, 0, 40, 302, 0, 101, 0, 69, 0, 0,
|
||
0, 62, 306, 304, 307, 300, 85, 0, 297, 0,
|
||
309, 0, 310, 0, 309, 310, 0, 297, 40, 0,
|
||
40, 0, 66, 61, 308, 78, 0, 73, 61, 99,
|
||
78, 0, 68, 61, 187, 78, 0
|
||
};
|
||
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
static const short yyrline[] = { 0,
|
||
257, 262, 276, 278, 278, 279, 281, 283, 284, 285,
|
||
293, 297, 307, 311, 315, 317, 319, 320, 321, 326,
|
||
333, 335, 339, 343, 349, 351, 355, 359, 365, 367,
|
||
371, 377, 379, 380, 381, 384, 386, 388, 390, 392,
|
||
394, 396, 400, 404, 407, 410, 413, 417, 419, 422,
|
||
425, 429, 457, 463, 466, 469, 472, 474, 476, 480,
|
||
484, 488, 490, 493, 497, 524, 526, 528, 530, 532,
|
||
534, 536, 538, 540, 542, 544, 546, 548, 550, 554,
|
||
556, 560, 562, 565, 569, 571, 578, 581, 589, 600,
|
||
760, 761, 763, 769, 771, 794, 803, 805, 807, 819,
|
||
833, 835, 837, 839, 841, 843, 845, 850, 852, 859,
|
||
861, 865, 867, 868, 878, 883, 885, 886, 887, 894,
|
||
899, 903, 906, 914, 919, 921, 922, 923, 930, 940,
|
||
944, 949, 953, 957, 961, 963, 965, 974, 977, 981,
|
||
983, 985, 990, 994, 997, 1001, 1004, 1006, 1018, 1021,
|
||
1023, 1025, 1029, 1033, 1035, 1038, 1051, 1054, 1058, 1060,
|
||
1068, 1069, 1070, 1074, 1076, 1081, 1083, 1085, 1091, 1092,
|
||
1093, 1096, 1098, 1101, 1103, 1106, 1109, 1115, 1122, 1124,
|
||
1131, 1138, 1141, 1148, 1151, 1155, 1158, 1162, 1167, 1170,
|
||
1174, 1177, 1179, 1181, 1183, 1190, 1192, 1193, 1194, 1199,
|
||
1201, 1203, 1205, 1210, 1214, 1217, 1219, 1224, 1226, 1227,
|
||
1230, 1230, 1233, 1236, 1238, 1240, 1243, 1245, 1248, 1256,
|
||
1270, 1278, 1282, 1296, 1304, 1311, 1313, 1318, 1321, 1326,
|
||
1328, 1330, 1337, 1339, 1340, 1348, 1354, 1356, 1358, 1365,
|
||
1367, 1373, 1379, 1381, 1383, 1385, 1392, 1394, 1397, 1400,
|
||
1404, 1407, 1411, 1414, 1418, 1423, 1425, 1429, 1431, 1433,
|
||
1435, 1439, 1441, 1443, 1446, 1448, 1451, 1455, 1457, 1460,
|
||
1462, 1467, 1470, 1475, 1477, 1479, 1483, 1507, 1513, 1526,
|
||
1531, 1536, 1538, 1543, 1545, 1549, 1553, 1557, 1567, 1569,
|
||
1574, 1579, 1582, 1586, 1589, 1593, 1596, 1599, 1602, 1606,
|
||
1609, 1613, 1617, 1619, 1621, 1623, 1625, 1627, 1629, 1631,
|
||
1635, 1643, 1651, 1653, 1655, 1659, 1661, 1664, 1667, 1679,
|
||
1681, 1686, 1688, 1691, 1705, 1708, 1711, 1713, 1715, 1719,
|
||
1723, 1729, 1747, 1752, 1757, 1760, 1774, 1783, 1787, 1791,
|
||
1795, 1801, 1805, 1810, 1813, 1818, 1821, 1822, 1838, 1843,
|
||
1846, 1858, 1860, 1870, 1880, 1881, 1888, 1890, 1902, 1906,
|
||
1920, 1926, 1932, 1933, 1938, 1943, 1947, 1951, 1962, 1969,
|
||
1976, 1983, 1994, 2000, 2003, 2008, 2031, 2061, 2092, 2123,
|
||
2138, 2152, 2156, 2160, 2163, 2168, 2170, 2173, 2175, 2179,
|
||
2184, 2187, 2193, 2198, 2203, 2205, 2214, 2215, 2221, 2223,
|
||
2233, 2235, 2239, 2242, 2248, 2257, 2265, 2273, 2282, 2295,
|
||
2300, 2305, 2307, 2316, 2319, 2324, 2327, 2331, 2340, 2342,
|
||
2343, 2344, 2345, 2346, 2360, 2363, 2367, 2373, 2379, 2386,
|
||
2391, 2397, 2404, 2410, 2416, 2421, 2427, 2434, 2440, 2446,
|
||
2452, 2460, 2466, 2472, 2480, 2487, 2493, 2502, 2509, 2517,
|
||
2522, 2525, 2535, 2537, 2540, 2542, 2543, 2546, 2551, 2552,
|
||
2569, 2575, 2580, 2584, 2587, 2588, 2591, 2599, 2605, 2614,
|
||
2624, 2631, 2635, 2640, 2649, 2656, 2660, 2670, 2672, 2673,
|
||
2675, 2677, 2678, 2679, 2680, 2682, 2684, 2687, 2695, 2702,
|
||
2702, 2709, 2715, 2717, 2723, 2728, 2733, 2742, 2744, 2750,
|
||
2752, 2755, 2757, 2758, 2759, 2762, 2767, 2769, 2773, 2776,
|
||
2783, 2789, 2794, 2801, 2806, 2811, 2816, 2823, 2827, 2830,
|
||
2836, 2838, 2839, 2840, 2843, 2845, 2846, 2847, 2848, 2849,
|
||
2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859,
|
||
2860, 2861, 2862, 2863, 2863, 2866, 2872, 2877, 2882, 2888,
|
||
2890, 2893, 2895, 2902, 2914, 2919, 2925, 2927, 2933, 2937,
|
||
2938, 2944, 2946, 2949, 2951, 2957, 2962, 2968, 2975, 2984
|
||
};
|
||
#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","VA_ARG","END_OF_LINE","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","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","@15","notype_initdcl","@16","maybe_attribute","attributes","attribute",
|
||
"attribute_list","attrib","any_word","init","@17","initlist_maybe_comma","initlist1",
|
||
"initelt","@18","initval","@19","designator_list","designator","nested_function",
|
||
"@20","@21","notype_nested_function","@22","@23","declarator","after_type_declarator",
|
||
"parm_declarator","notype_declarator","struct_head","union_head","enum_head",
|
||
"structsp","@24","@25","@26","@27","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_nostart",
|
||
"compstmt_primary_start","compstmt","simple_if","if_prefix","do_stmt_start",
|
||
"@28","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
|
||
"stmt_or_label","stmt","@29","@30","@31","@32","@33","@34","@35","all_iter_stmt",
|
||
"all_iter_stmt_simple","@36","label","maybe_type_qual","xexpr","asm_operands",
|
||
"nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@37","parmlist_1",
|
||
"@38","parmlist_2","parms","parm","parmlist_or_identifiers","@39","parmlist_or_identifiers_1",
|
||
"identifiers","identifiers_or_typenames","extension","objcdef","identifier_list",
|
||
"classdecl","aliasdecl","classdef","@40","@41","@42","@43","@44","@45","@46",
|
||
"@47","@48","protocoldef","@49","protocolrefs","non_empty_protocolrefs","ivar_decl_list",
|
||
"visibility_spec","ivar_decls","ivar_decl","ivars","ivar_declarator","methoddef",
|
||
"@50","@51","@52","@53","@54","@55","methodprotolist","@56","methodprotolist2",
|
||
"@57","semi_or_error","methodproto","@58","@59","@60","@61","methoddecl","optarglist",
|
||
"myxdecls","mydecls","mydecl","myparms","myparm","optparmlist","@62","unaryselector",
|
||
"keywordselector","selector","reservedwords","keyworddecl","messageargs","keywordarglist",
|
||
"keywordexpr","keywordarg","receiver","objcmessageexpr","@63","@64","selectorarg",
|
||
"keywordnamelist","keywordname","objcselectorexpr","objcprotocolexpr","objcencodeexpr", NULL
|
||
};
|
||
#endif
|
||
|
||
static const short yyr1[] = { 0,
|
||
86, 86, 88, 87, 89, 87, 90, 90, 90, 90,
|
||
90, 91, 91, 91, 91, 91, 91, 91, 91, 93,
|
||
94, 92, 92, 95, 96, 92, 92, 97, 98, 92,
|
||
92, 99, 99, 99, 99, 100, 100, 100, 100, 100,
|
||
100, 100, 101, 102, 102, 103, 103, 104, 104, 104,
|
||
104, 104, 104, 104, 104, 104, 104, 104, 104, 105,
|
||
106, 107, 107, 108, 107, 109, 109, 109, 109, 109,
|
||
109, 109, 109, 109, 109, 109, 109, 109, 110, 109,
|
||
111, 109, 112, 113, 109, 114, 109, 109, 109, 115,
|
||
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
||
115, 115, 115, 115, 115, 115, 115, 116, 116, 117,
|
||
117, 118, 118, 118, 119, 120, 120, 120, 120, 121,
|
||
121, 121, 121, 122, 123, 123, 123, 123, 124, 125,
|
||
126, 126, 126, 126, 126, 126, 126, 127, 127, 128,
|
||
128, 128, 128, 129, 129, 130, 130, 130, 131, 131,
|
||
131, 131, 132, 132, 132, 132, 133, 133, 134, 134,
|
||
135, 135, 135, 135, 135, 135, 135, 135, 136, 136,
|
||
136, 137, 137, 138, 138, 139, 139, 141, 140, 140,
|
||
143, 142, 142, 144, 144, 145, 145, 146, 147, 147,
|
||
148, 148, 148, 148, 148, 149, 149, 149, 149, 150,
|
||
151, 150, 150, 152, 152, 153, 153, 154, 154, 155,
|
||
154, 154, 157, 156, 156, 156, 158, 158, 159, 161,
|
||
162, 160, 164, 165, 163, 166, 166, 167, 167, 167,
|
||
167, 167, 167, 167, 167, 168, 168, 168, 168, 168,
|
||
168, 169, 169, 169, 169, 169, 169, 169, 170, 170,
|
||
171, 171, 172, 172, 174, 173, 173, 173, 175, 173,
|
||
173, 173, 176, 173, 177, 173, 173, 178, 178, 179,
|
||
179, 180, 180, 181, 181, 181, 181, 182, 182, 182,
|
||
182, 182, 182, 183, 183, 184, 184, 184, 185, 185,
|
||
185, 186, 186, 187, 187, 188, 188, 189, 189, 190,
|
||
190, 191, 191, 191, 191, 191, 191, 191, 191, 191,
|
||
191, 192, 193, 193, 193, 194, 194, 195, 196, 197,
|
||
197, 198, 198, 199, 200, 200, 201, 202, 202, 202,
|
||
202, 203, 204, 205, 205, 206, 208, 207, 209, 210,
|
||
211, 211, 212, 213, 213, 214, 214, 214, 215, 214,
|
||
214, 214, 216, 217, 214, 214, 214, 218, 219, 220,
|
||
214, 221, 214, 214, 214, 214, 214, 214, 214, 214,
|
||
214, 214, 214, 214, 222, 224, 223, 225, 225, 225,
|
||
225, 226, 226, 227, 227, 228, 228, 229, 229, 230,
|
||
231, 231, 233, 232, 234, 235, 234, 234, 236, 236,
|
||
236, 236, 237, 237, 238, 238, 238, 238, 238, 240,
|
||
239, 241, 241, 242, 242, 243, 243, 244, 245, 245,
|
||
245, 245, 245, 245, 246, 246, 247, 248, 250, 251,
|
||
249, 252, 249, 253, 254, 249, 255, 249, 256, 249,
|
||
249, 257, 249, 249, 258, 249, 249, 260, 259, 261,
|
||
261, 262, 263, 263, 264, 264, 264, 265, 265, 265,
|
||
266, 266, 266, 267, 267, 267, 268, 268, 268, 270,
|
||
271, 272, 269, 273, 274, 275, 269, 276, 277, 276,
|
||
278, 278, 278, 279, 278, 280, 280, 282, 283, 281,
|
||
284, 285, 281, 286, 286, 286, 286, 287, 287, 288,
|
||
288, 289, 289, 289, 289, 290, 290, 290, 291, 291,
|
||
292, 292, 292, 293, 293, 294, 293, 295, 296, 296,
|
||
297, 297, 297, 297, 298, 298, 298, 298, 298, 298,
|
||
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
||
298, 298, 298, 298, 298, 299, 299, 299, 299, 300,
|
||
300, 301, 301, 302, 303, 303, 304, 304, 306, 307,
|
||
305, 308, 308, 309, 309, 310, 310, 311, 312, 313
|
||
};
|
||
|
||
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, 6, 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, 3, 3, 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, 5, 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, 1, 5, 4,
|
||
4, 2, 2, 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, 163, 154, 161, 153, 253, 249,
|
||
251, 0, 0, 0, 418, 0, 470, 474, 0, 0,
|
||
424, 450, 0, 450, 0, 0, 19, 4, 8, 7,
|
||
0, 129, 129, 149, 140, 150, 186, 0, 0, 0,
|
||
162, 0, 9, 420, 421, 419, 422, 166, 423, 6,
|
||
17, 18, 254, 250, 252, 0, 0, 0, 32, 33,
|
||
35, 34, 425, 0, 0, 0, 450, 441, 164, 451,
|
||
450, 165, 0, 0, 248, 300, 0, 0, 174, 130,
|
||
0, 16, 0, 15, 0, 151, 140, 152, 156, 155,
|
||
138, 187, 274, 258, 274, 262, 265, 267, 11, 90,
|
||
91, 108, 60, 61, 0, 0, 0, 0, 36, 38,
|
||
37, 0, 39, 40, 0, 559, 0, 0, 0, 110,
|
||
41, 42, 0, 0, 43, 62, 0, 0, 66, 46,
|
||
48, 92, 107, 0, 0, 103, 104, 105, 106, 298,
|
||
0, 296, 159, 0, 296, 191, 452, 0, 521, 522,
|
||
544, 545, 541, 525, 526, 527, 528, 529, 530, 531,
|
||
532, 533, 534, 535, 536, 537, 538, 539, 540, 542,
|
||
543, 0, 0, 523, 471, 495, 514, 518, 524, 519,
|
||
475, 0, 0, 432, 0, 0, 439, 448, 427, 0,
|
||
0, 0, 12, 0, 0, 31, 0, 410, 0, 0,
|
||
184, 234, 300, 0, 235, 0, 172, 130, 0, 226,
|
||
227, 0, 0, 139, 142, 169, 170, 141, 143, 171,
|
||
0, 0, 0, 255, 0, 259, 0, 263, 57, 58,
|
||
0, 52, 49, 0, 332, 0, 0, 0, 0, 0,
|
||
0, 51, 0, 0, 0, 53, 0, 55, 0, 0,
|
||
83, 81, 79, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 101, 102, 0, 0, 44,
|
||
0, 109, 111, 0, 328, 320, 0, 50, 167, 300,
|
||
393, 0, 130, 294, 297, 157, 168, 299, 159, 295,
|
||
197, 198, 199, 196, 0, 189, 192, 426, 0, 549,
|
||
0, 498, 516, 497, 0, 520, 0, 498, 450, 0,
|
||
429, 479, 444, 0, 458, 479, 428, 301, 244, 243,
|
||
175, 176, 247, 0, 242, 0, 246, 0, 0, 29,
|
||
0, 339, 117, 340, 183, 185, 0, 0, 14, 0,
|
||
0, 23, 0, 184, 410, 0, 13, 27, 0, 0,
|
||
184, 282, 276, 129, 273, 129, 0, 274, 184, 274,
|
||
291, 292, 270, 289, 0, 0, 94, 93, 0, 558,
|
||
557, 560, 567, 562, 0, 563, 564, 0, 0, 10,
|
||
47, 0, 0, 89, 88, 0, 0, 0, 0, 77,
|
||
78, 76, 75, 74, 72, 73, 67, 68, 69, 70,
|
||
71, 100, 99, 0, 45, 0, 96, 0, 0, 321,
|
||
322, 95, 304, 0, 308, 0, 310, 0, 0, 393,
|
||
0, 160, 158, 0, 191, 44, 0, 0, 0, 472,
|
||
515, 399, 0, 547, 476, 437, 450, 458, 0, 0,
|
||
442, 447, 0, 0, 0, 0, 0, 414, 400, 129,
|
||
129, 412, 0, 401, 403, 411, 0, 245, 318, 0,
|
||
119, 114, 118, 0, 181, 232, 228, 173, 233, 21,
|
||
180, 229, 231, 0, 25, 0, 257, 339, 275, 339,
|
||
283, 0, 261, 0, 0, 271, 0, 270, 0, 64,
|
||
63, 0, 566, 568, 0, 565, 570, 569, 54, 56,
|
||
0, 0, 82, 80, 97, 98, 416, 0, 0, 0,
|
||
339, 0, 0, 126, 340, 313, 323, 303, 302, 394,
|
||
309, 311, 305, 307, 0, 188, 190, 90, 0, 0,
|
||
494, 514, 129, 0, 503, 499, 501, 0, 0, 517,
|
||
401, 0, 0, 434, 479, 445, 0, 433, 488, 491,
|
||
482, 0, 129, 129, 484, 481, 458, 457, 455, 456,
|
||
440, 458, 463, 460, 129, 129, 0, 449, 177, 398,
|
||
296, 296, 395, 396, 0, 413, 0, 0, 327, 30,
|
||
319, 325, 115, 129, 129, 146, 0, 0, 178, 230,
|
||
0, 277, 278, 284, 340, 280, 340, 184, 184, 293,
|
||
290, 184, 0, 0, 0, 0, 550, 0, 551, 552,
|
||
84, 87, 324, 0, 330, 128, 127, 317, 0, 331,
|
||
315, 340, 314, 0, 306, 193, 0, 195, 548, 496,
|
||
507, 296, 508, 504, 505, 473, 0, 477, 458, 0,
|
||
479, 430, 0, 0, 176, 0, 0, 0, 483, 0,
|
||
0, 464, 464, 459, 241, 300, 393, 130, 184, 184,
|
||
184, 300, 130, 184, 184, 0, 402, 404, 415, 326,
|
||
333, 122, 0, 123, 0, 146, 144, 203, 201, 200,
|
||
182, 22, 0, 26, 339, 184, 0, 256, 260, 266,
|
||
184, 59, 216, 90, 0, 213, 0, 215, 0, 268,
|
||
206, 212, 0, 0, 554, 556, 0, 561, 0, 553,
|
||
0, 417, 329, 0, 163, 0, 353, 337, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 382, 450, 450, 374,
|
||
0, 0, 124, 129, 129, 346, 351, 0, 0, 343,
|
||
344, 347, 375, 345, 0, 0, 184, 184, 184, 0,
|
||
509, 546, 0, 438, 0, 479, 489, 492, 485, 443,
|
||
0, 467, 461, 465, 462, 304, 0, 410, 0, 405,
|
||
406, 407, 304, 0, 408, 409, 397, 0, 0, 145,
|
||
148, 147, 0, 179, 285, 0, 279, 130, 184, 264,
|
||
219, 0, 210, 65, 0, 205, 0, 218, 209, 555,
|
||
85, 0, 0, 339, 384, 0, 0, 380, 364, 365,
|
||
366, 0, 0, 0, 383, 0, 184, 348, 135, 0,
|
||
136, 0, 0, 335, 340, 334, 357, 0, 137, 194,
|
||
511, 512, 513, 506, 296, 435, 446, 0, 0, 0,
|
||
469, 0, 0, 239, 240, 236, 238, 0, 120, 121,
|
||
0, 184, 0, 286, 0, 0, 207, 208, 0, 0,
|
||
0, 385, 48, 0, 0, 0, 378, 367, 0, 372,
|
||
0, 381, 0, 133, 220, 0, 134, 223, 352, 339,
|
||
0, 0, 510, 479, 431, 487, 486, 490, 493, 468,
|
||
466, 237, 202, 288, 184, 214, 211, 336, 0, 338,
|
||
376, 358, 362, 0, 373, 0, 131, 0, 132, 0,
|
||
350, 341, 339, 0, 0, 287, 354, 339, 384, 339,
|
||
379, 386, 0, 221, 224, 342, 356, 436, 339, 377,
|
||
0, 363, 0, 0, 387, 388, 368, 0, 0, 355,
|
||
359, 0, 386, 0, 0, 222, 225, 384, 0, 0,
|
||
369, 389, 0, 390, 0, 0, 360, 391, 0, 370,
|
||
339, 0, 0, 361, 371, 392, 0, 0, 0
|
||
};
|
||
|
||
static const short yydefgoto[] = { 967,
|
||
1, 2, 3, 28, 29, 30, 343, 588, 349, 591,
|
||
200, 460, 697, 123, 236, 404, 125, 126, 127, 128,
|
||
129, 605, 130, 389, 388, 386, 711, 387, 131, 132,
|
||
133, 330, 331, 332, 583, 510, 511, 31, 341, 733,
|
||
450, 91, 584, 677, 451, 34, 142, 286, 35, 218,
|
||
206, 78, 201, 207, 683, 79, 587, 335, 336, 37,
|
||
295, 296, 297, 681, 783, 699, 700, 701, 856, 702,
|
||
792, 703, 704, 874, 908, 938, 877, 910, 939, 322,
|
||
210, 747, 211, 38, 39, 40, 41, 358, 360, 365,
|
||
227, 796, 487, 222, 223, 355, 593, 594, 363, 364,
|
||
144, 749, 145, 191, 285, 512, 513, 619, 333, 276,
|
||
409, 410, 411, 580, 581, 277, 134, 582, 737, 738,
|
||
739, 804, 825, 464, 826, 516, 740, 741, 880, 803,
|
||
929, 919, 948, 961, 920, 742, 743, 918, 744, 816,
|
||
864, 934, 935, 936, 959, 415, 416, 452, 666, 453,
|
||
454, 455, 325, 326, 456, 457, 508, 135, 43, 64,
|
||
44, 45, 46, 438, 756, 312, 639, 884, 545, 315,
|
||
557, 641, 47, 316, 69, 48, 443, 562, 444, 567,
|
||
763, 764, 49, 65, 302, 539, 66, 308, 543, 439,
|
||
440, 555, 648, 888, 556, 643, 839, 644, 840, 175,
|
||
430, 536, 537, 538, 750, 751, 304, 432, 176, 177,
|
||
178, 179, 180, 608, 609, 706, 610, 372, 136, 238,
|
||
492, 375, 376, 377, 137, 138, 139
|
||
};
|
||
|
||
static const short yypact[] = { 118,
|
||
137, 3350, 3350, 190,-32768,-32768,-32768,-32768, 204, 204,
|
||
204, 104, 161, 189,-32768, 294,-32768,-32768, 294, 294,
|
||
-32768, 236, 294, 236, 294, 294,-32768,-32768,-32768,-32768,
|
||
226, 174, 2782, 382,-32768, 204,-32768, 135, 192, 208,
|
||
-32768, 3350,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 204, 204, 204, 3019, 2851, 241,-32768,-32768,
|
||
-32768,-32768,-32768, 158, 3627, 3627, 346, 123,-32768,-32768,
|
||
236,-32768, 237, 294,-32768,-32768, 226, 249,-32768, 204,
|
||
870,-32768, 416,-32768, 226, 382,-32768, 204,-32768,-32768,
|
||
793,-32768, 238, 242, 238, 258,-32768, 266,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 3019, 3019, 300, 294,-32768,-32768,
|
||
-32768, 3019,-32768,-32768, 1277,-32768, 354, 357, 362,-32768,
|
||
-32768,-32768, 3019, 330, 371,-32768, 3075, 3131,-32768, 3955,
|
||
1125, 457, 403, 986, 3019,-32768,-32768,-32768,-32768,-32768,
|
||
411, 297,-32768, 413, 3751, 303,-32768, 294,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 188, 2179,-32768,-32768,-32768, 2741, 458,-32768,-32768,
|
||
-32768, 294, 294, 423, 294, 294,-32768,-32768,-32768, 421,
|
||
98, 52,-32768, 416, 226,-32768, 452,-32768, 2194, 498,
|
||
204,-32768,-32768, 416,-32768, 327,-32768, 204, 2082, 317,
|
||
329, 347, 2054, 793,-32768,-32768,-32768,-32768, 204,-32768,
|
||
454, 442, 3270,-32768, 444,-32768, 106,-32768,-32768,-32768,
|
||
3019,-32768,-32768, 464,-32768, 465, 466, 2907, 3657, 2179,
|
||
294,-32768, 455, 3019, 1277,-32768, 1277,-32768, 3019, 3019,
|
||
510,-32768,-32768, 3019, 3019, 3019, 3019, 3019, 3019, 3019,
|
||
3019, 3019, 3019, 3019, 3019,-32768,-32768, 294, 294, 3019,
|
||
3019,-32768,-32768, 473,-32768, 531, 486,-32768,-32768,-32768,
|
||
297, 2255, 204,-32768, 379, 907,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 41,-32768, 515,-32768, 2179,-32768,
|
||
493, 504, 567,-32768, 458,-32768, 353, 504, 236, 513,
|
||
-32768, 527, 519, 516,-32768, 527,-32768,-32768, 329,-32768,
|
||
-32768, 579, 329, 599,-32768, 3455,-32768, 524, 532,-32768,
|
||
1371, 80,-32768,-32768, 589, 204, 308, 182,-32768, 416,
|
||
416,-32768, 498, 204,-32768, 2316,-32768,-32768, 498, 560,
|
||
204,-32768,-32768,-32768, 551, 3296, 3563, 238, 204, 238,
|
||
-32768, 594, 552,-32768, 106, 3876,-32768,-32768, 2659,-32768,
|
||
-32768,-32768,-32768, 598, 558, 3657,-32768, 562, 568,-32768,
|
||
3955, 569, 570, 3955, 3955, 3019, 610, 3019, 3019, 1863,
|
||
912, 675, 1126, 1034, 535, 535, 63, 63,-32768,-32768,
|
||
-32768,-32768,-32768, 576, 371, 571,-32768, 294, 1191, 531,
|
||
-32768,-32768, 409, 185,-32768, 3485,-32768, 575, 297,-32768,
|
||
2377,-32768, 907, 577, 303, 3187, 583, 3692, 2140,-32768,
|
||
-32768, 3763, 2179,-32768,-32768, 573, 236,-32768, 601, 3427,
|
||
-32768,-32768, 449, 898, 602, 84, 586,-32768,-32768,-32768,
|
||
3829,-32768, 592, 364,-32768,-32768, 211,-32768,-32768, 83,
|
||
-32768,-32768,-32768, 2093,-32768, 317,-32768,-32768, 317,-32768,
|
||
634,-32768,-32768, 590,-32768, 600,-32768,-32768,-32768,-32768,
|
||
-32768, 604,-32768, 605, 3019, 294, 607, 552, 2179,-32768,
|
||
-32768, 3722,-32768,-32768, 598,-32768,-32768,-32768,-32768,-32768,
|
||
639, 3019, 1706, 1787,-32768,-32768,-32768, 435, 372, 1088,
|
||
609, 613, 1408,-32768,-32768,-32768,-32768, 379,-32768,-32768,
|
||
-32768, 379,-32768,-32768, 595,-32768,-32768, 246, 617, 294,
|
||
-32768, 2741, 624, 3513,-32768,-32768, 3829, 2168, 83,-32768,
|
||
591, 626, 83,-32768, 527,-32768, 476,-32768,-32768,-32768,
|
||
-32768, 226, 174, 2782, 399,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768, 3842, 627,-32768,-32768,-32768,
|
||
471, 93,-32768,-32768, 3817,-32768, 702, 623,-32768,-32768,
|
||
628,-32768,-32768, 632, 3314,-32768, 1895, 83,-32768,-32768,
|
||
83,-32768, 631,-32768,-32768, 631,-32768, 204, 204, 3955,
|
||
-32768, 204, 655, 658, 1654, 3019, 701, 659, 3722,-32768,
|
||
-32768, 1625,-32768, 294,-32768,-32768,-32768,-32768, 663,-32768,
|
||
-32768,-32768,-32768, 2521,-32768,-32768, 3019,-32768,-32768,-32768,
|
||
-32768, 471,-32768,-32768,-32768,-32768, 294,-32768,-32768, 680,
|
||
527,-32768, 3627, 3627, 206, 416, 226, 1983,-32768, 489,
|
||
3266, 314, 314,-32768,-32768,-32768, 93, 204, 261, 273,
|
||
204,-32768, 204, 273, 204, 3485,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 416,-32768, 226,-32768, 829,-32768,-32768, 3955,
|
||
-32768,-32768, 1895,-32768,-32768, 343, 343,-32768,-32768,-32768,
|
||
204,-32768,-32768, 708, 294,-32768, 711, 3955, 672, 670,
|
||
-32768,-32768, 143, 1818, 371,-32768, 3019,-32768, 701,-32768,
|
||
3019,-32768,-32768, 2603, 714, 694,-32768,-32768, 697, 698,
|
||
3019, 721, 684, 685, 2963, 227, 759, 212, 324,-32768,
|
||
727, 692,-32768, 695, 3543,-32768, 757, 1490, 99,-32768,
|
||
-32768,-32768,-32768,-32768, 2771, 270, 261, 273, 204, 456,
|
||
-32768,-32768, 572,-32768, 712, 527,-32768,-32768,-32768,-32768,
|
||
3019, 738, 699,-32768, 699, 621, 471,-32768, 2438,-32768,
|
||
-32768,-32768, 735, 93,-32768,-32768,-32768, 474, 487, 829,
|
||
-32768,-32768, 1654,-32768,-32768, 3019,-32768, 73, 184,-32768,
|
||
-32768, 1654,-32768,-32768, 1736,-32768, 1972,-32768,-32768,-32768,
|
||
1625, 3019, 719,-32768, 3019, 3019, 3894,-32768,-32768,-32768,
|
||
-32768, 705, 3019, 706,-32768, 725, 204,-32768,-32768, 416,
|
||
-32768, 226, 1572,-32768,-32768,-32768,-32768, 3019,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 471,-32768,-32768, 723, 77, 77,
|
||
3955, 3019, 314, 397, 397,-32768,-32768, 707,-32768,-32768,
|
||
710, 3919, 3019,-32768, 713, 1972,-32768,-32768, 716, 3019,
|
||
778,-32768, 375, 724, 730, 3019,-32768,-32768, 733,-32768,
|
||
3019,-32768, 522,-32768, 95, 539,-32768, 479,-32768,-32768,
|
||
2603, 731,-32768, 527,-32768,-32768,-32768,-32768,-32768, 3955,
|
||
-32768,-32768,-32768,-32768, 3919,-32768,-32768,-32768, 741,-32768,
|
||
-32768,-32768,-32768, 3937,-32768, 48,-32768, 498,-32768, 498,
|
||
-32768,-32768,-32768, 737, 755,-32768,-32768,-32768, 3019,-32768,
|
||
-32768, 812, 743,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
747,-32768, 767, 64, 746,-32768,-32768, 623, 623,-32768,
|
||
-32768, 3019, 812, 751, 812,-32768,-32768, 3019, 753, 66,
|
||
-32768,-32768, 760,-32768, 599, 765,-32768, 457, 284,-32768,
|
||
-32768, 768, 599,-32768,-32768, 457, 839, 862,-32768
|
||
};
|
||
|
||
static const short yypgoto[] = {-32768,
|
||
-32768,-32768,-32768, 105, -375,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, -14,-32768, -56, 439, -226, 355,-32768,-32768,
|
||
-74,-32768, 596,-32768,-32768,-32768,-32768,-32768, 65, -310,
|
||
-32768, -313, 536,-32768,-32768, 358,-32768, 248, -46, 127,
|
||
15, 786,-32768, 202, 38, -26, -172, 606, 492, -244,
|
||
-602, -82, -181, -120,-32768,-32768,-32768, -262, 44, -32,
|
||
-32768, 460,-32768, 197,-32768, -672,-32768, 86,-32768, -631,
|
||
-32768,-32768, 186,-32768,-32768,-32768,-32768,-32768,-32768, -73,
|
||
-109, -502, 2,-32768,-32768,-32768, -78,-32768,-32768,-32768,
|
||
-32768,-32768, 400, -27,-32768, 533, 414, 216, 526, 407,
|
||
-24, -75, -159, -168, -236, 392,-32768,-32768, -239,-32768,
|
||
-32768,-32768, 496, -143,-32768, 326,-32768, -526,-32768,-32768,
|
||
-32768,-32768, -192, -449, -719, 396,-32768, 34,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 35,-32768,
|
||
-817, -25,-32768, -22,-32768, 502,-32768, -353,-32768, 495,
|
||
497, 349, -306,-32768,-32768,-32768,-32768, 17,-32768, 903,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, -9, 5, -355,-32768, 368,-32768,
|
||
280, 91,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -300,
|
||
-32768,-32768,-32768, 97, 380,-32768,-32768,-32768,-32768, -23,
|
||
630,-32768,-32768, 404,-32768, 107, 408,-32768, 518, 520,
|
||
-140,-32768, -127,-32768,-32768, 240, 341,-32768,-32768,-32768,
|
||
-32768,-32768,-32768, 597,-32768,-32768,-32768
|
||
};
|
||
|
||
|
||
#define YYLAST 4009
|
||
|
||
|
||
static const short yytable[] = { 124,
|
||
141, 63, 212, 92, 67, 68, 86, 334, 71, 209,
|
||
63, 74, 220, 446, 72, 445, 32, 32, 42, 42,
|
||
92, 92, 92, 94, 96, 98, 70, 344, 70, 470,
|
||
229, 230, 81, 195, 337, 475, 305, 233, 472, 33,
|
||
33, 422, 181, 405, 414, 36, 36, 92, 242, 306,
|
||
354, 670, 53, 54, 55, 92, 32, 184, 42, 190,
|
||
278, 188, 520, 356, 551, 624, 284, 225, 659, 290,
|
||
778, 70, 799, 321, 80, 70, 88, 886, 192, 33,
|
||
-113, 471, 547, 578, 861, 36, 213, 922, 477, 462,
|
||
237, 461, 272, 232, 338, 75, 483, 736, 374, 827,
|
||
75, 931, 14, 943, 318, 955, 361, 50, 59, 60,
|
||
851, 413, 198, 199, 263, 264, 265, -1, 424, 855,
|
||
80, 197, 14, 425, -176, 923, 208, 14, 80, 320,
|
||
953, 294, -176, 298, 219, 220, -2, 59, 60, 334,
|
||
344, 944, 328, 956, 662, 686, 99, 687, 301, 76,
|
||
334, -185, -185, 657, 282, 887, 334, 300, 77, 828,
|
||
911, 569, 185, -113, 56, 858, 579, 309, 310, 514,
|
||
313, 314, 714, -176, 61, 92, 518, -176, 422, 62,
|
||
797, 371, 522, 186, 354, 283, 92, 736, 283, 535,
|
||
59, 60, 319, 926, 59, 60, 323, 356, 930, 405,
|
||
932, 650, 695, 61, 147, 192, 187, 220, 62, 940,
|
||
59, 60, 362, 14, 406, 378, 515, 873, 93, 468,
|
||
382, 57, 383, 853, 897, 418, 379, 466, 75, 59,
|
||
60, 469, 197, 14, 80, 495, 419, 208, 80, 357,
|
||
148, 964, 345, 346, 640, 420, 421, 208, 299, 58,
|
||
92, -35, 82, 402, 403, 14, 61, 219, 16, 467,
|
||
61, 62, 519, 844, 845, 62, 198, 199, 51, 52,
|
||
616, 565, 759, 621, 427, 95, 61, 76, 813, 83,
|
||
85, 62, 16, 753, 566, 595, 77, 597, 576, 474,
|
||
14, 97, 434, 577, 491, 61, 59, 60, 635, 436,
|
||
62, 146, 14, 92, 221, 59, 60, 291, 292, 293,
|
||
75, 202, 777, 70, 318, 189, 75, 202, 515, 148,
|
||
622, 768, 769, 626, 283, 224, 14, 193, 627, 501,
|
||
482, 194, 484, 198, 199, 688, 689, 14, 319, 690,
|
||
755, 226, 323, 14, 220, 75, 202, 830, 280, 228,
|
||
362, 607, 244, 761, 736, 59, 60, 281, 282, 203,
|
||
231, 962, 61, -34, 525, 203, 963, 62, 204, 36,
|
||
16, 61, 14, 357, 204, 881, 62, 345, 346, 705,
|
||
208, 205, 786, 208, 208, 182, 89, 205, 90, 198,
|
||
199, 305, 16, 507, 203, 636, 770, 771, 772, 638,
|
||
746, 775, 776, 204, 306, 339, 183, 243, 542, 340,
|
||
294, 946, 947, 433, 239, 318, 205, 240, 75, 202,
|
||
414, 61, 241, 787, 86, 347, 62, 546, 790, 194,
|
||
266, 267, 782, 268, 269, 270, 271, 585, 14, 420,
|
||
421, 70, 574, 533, 682, 14, 575, 684, 549, 550,
|
||
459, 615, 901, 244, 553, 838, 283, 768, 769, 36,
|
||
280, 846, 283, -480, 604, 272, 534, 203, 709, 281,
|
||
282, 362, 36, 75, 655, 36, 204, 554, 565, 273,
|
||
705, 246, 248, 36, 831, 832, 833, 766, 279, 205,
|
||
287, 566, 597, 773, 88, 661, 665, 307, 329, 317,
|
||
14, -339, -339, -339, -339, 197, 311, 86, -176, -339,
|
||
-339, -339, 324, 613, 350, 629, -176, 614, 558, 559,
|
||
560, 351, 656, 359, 87, -339, 854, 86, 561, 518,
|
||
522, 657, 282, 380, 834, 782, 518, 522, 835, 198,
|
||
199, 367, 368, 369, -339, 558, 559, 560, 143, -86,
|
||
407, 533, 849, 645, 872, 642, 340, -176, 558, 559,
|
||
560, -176, 408, 412, 212, 850, -339, 732, 760, 194,
|
||
428, -339, 660, 664, 534, 426, 431, 88, 762, 762,
|
||
36, -112, 429, 915, 261, 262, 263, 264, 265, 894,
|
||
437, -478, 779, 442, 924, 80, 925, 88, 220, 712,
|
||
907, 478, 441, 480, 340, 197, 143, 102, 458, 731,
|
||
459, 767, 789, 789, 658, 663, 774, 909, 36, 757,
|
||
758, 194, 752, 75, 655, 92, 465, 318, 476, 479,
|
||
92, 485, 916, 748, 486, 494, 289, 493, 734, 497,
|
||
745, 558, 559, 560, 958, 498, 499, 500, 645, 502,
|
||
14, 836, 966, 505, 526, 506, 544, 732, 192, 521,
|
||
530, 735, 553, 570, 143, 548, 568, 36, 812, 573,
|
||
278, 589, 656, 575, 590, 658, 645, 592, 611, 625,
|
||
791, 657, 282, 598, 599, 554, 602, 552, -316, 208,
|
||
80, 36, 620, 344, 628, 208, 208, 571, 572, 731,
|
||
663, 220, 631, 637, 669, 654, 579, 275, 86, 36,
|
||
672, 814, 848, 685, 143, 334, 208, 334, 80, 72,
|
||
257, 258, 259, 260, 261, 262, 263, 264, 265, 788,
|
||
208, 143, 70, 70, 691, 692, 143, 75, 143, 876,
|
||
707, 318, 713, 708, 754, 859, 875, -32, 862, 865,
|
||
793, 794, 795, -33, 802, 92, 869, 805, 806, 734,
|
||
808, 745, 809, 810, 14, 815, 817, 319, 323, 762,
|
||
818, 882, 823, 819, 319, 323, 837, 842, 88, 860,
|
||
632, 843, 735, 868, 870, 871, 662, 885, 36, 893,
|
||
143, 892, 896, 898, 900, 657, 282, 215, 216, 217,
|
||
646, 647, 902, 899, 9, 10, 11, 903, 914, 658,
|
||
658, 905, 652, 653, 906, 927, 663, 663, 917, 928,
|
||
933, 937, 14, 878, 732, 941, 366, 942, 945, 951,
|
||
954, 673, 675, 781, 216, 217, 748, 957, 968, 381,
|
||
9, 10, 11, 960, 384, 385, 965, 289, 143, 390,
|
||
391, 392, 393, 394, 395, 396, 397, 398, 399, 400,
|
||
401, 969, 862, 208, 529, 80, 731, 463, 617, 863,
|
||
196, 829, 214, -28, -28, -28, -28, 780, 658, 784,
|
||
857, -28, -28, -28, 527, 949, 208, 603, 798, 481,
|
||
488, 862, 601, 596, 423, 552, 197, -28, 563, -176,
|
||
785, 5, 618, 7, 140, 517, 671, -176, 623, 9,
|
||
10, 11, 216, 217, 912, 913, -28, 950, 9, 10,
|
||
11, 523, 952, 668, 143, 13, 540, 73, 541, 651,
|
||
198, 199, 765, 891, 649, 143, 889, 435, -28, 630,
|
||
634, 883, 87, -28, 16, 531, 800, 532, -176, 710,
|
||
0, 0, -176, -28, 0, 586, 256, 257, 258, 259,
|
||
260, 261, 262, 263, 264, 265, 22, -454, -454, -454,
|
||
0, 24, 496, 0, 0, 0, 564, -454, 0, 0,
|
||
143, 820, 822, 503, 504, 0, 274, 0, -319, -319,
|
||
-319, -319, -319, -319, -319, 0, -319, -319, -319, -319,
|
||
-319, 0, -319, -319, -319, -319, -319, -319, -319, -319,
|
||
-319, -319, -319, -319, -319, -319, -319, -319, -319, -319,
|
||
-319, 0, 0, 0, 0, 87, 0, -319, 0, 0,
|
||
-319, 0, -319, 0, 0, -319, -319, -319, 0, 0,
|
||
0, -319, -319, 0, 0, 87, -319, -319, 0, 0,
|
||
0, -319, 0, -319, -319, 0, 0, 289, -319, -319,
|
||
0, 0, -319, 0, -319, 275, -319, -319, 0, -319,
|
||
0, 0, 0, 0, 0, 0, 676, 0, 0, 0,
|
||
600, 259, 260, 261, 262, 263, 264, 265, 329, 0,
|
||
-125, -125, -125, -125, -125, -125, -125, 612, -125, -125,
|
||
-125, -125, -125, 0, -125, -125, -125, -125, -125, -125,
|
||
-125, -125, -125, -125, -125, -125, -125, -125, -125, 0,
|
||
-125, -125, -125, 0, 0, 0, 0, 0, 0, -125,
|
||
0, 0, -125, 0, -125, 0, 0, -125, -125, -125,
|
||
0, 0, 143, -125, -125, 0, 0, 0, -125, -125,
|
||
0, 0, 0, -125, 0, -125, -125, 0, 0, 0,
|
||
-125, -125, 0, 0, -125, 0, -125, -125, -125, -125,
|
||
0, -125, 258, 259, 260, 261, 262, 263, 264, 265,
|
||
266, 267, 680, 268, 269, 270, 271, 0, 0, 0,
|
||
0, 509, 0, -339, -339, -339, -339, -339, -339, -339,
|
||
698, -339, -339, -339, -339, -339, 0, -339, -339, -339,
|
||
-339, -339, -339, -339, -339, -339, -339, -339, -339, -339,
|
||
-339, -339, 0, -339, -339, -339, 87, 0, 0, 0,
|
||
0, 0, -339, 0, 0, -339, 0, -339, 0, 0,
|
||
-339, -339, -339, 0, 0, 0, -339, -339, 0, 0,
|
||
0, -339, -339, 0, 0, 0, -339, 0, -339, -339,
|
||
0, 0, 0, -339, -339, 0, 0, -339, 0, -339,
|
||
0, -339, -339, 0, -339, 0, 0, 234, 680, 100,
|
||
5, 0, 7, 140, 101, 102, 0, 103, 9, 10,
|
||
11, 0, 0, 0, 0, 0, 0, 0, 0, 698,
|
||
0, 0, 0, 0, 13, 104, 801, 15, 0, 105,
|
||
106, 107, 0, 0, 0, 0, 807, 0, 108, 0,
|
||
0, 109, 0, 16, 0, 0, 110, 111, 112, 0,
|
||
0, 0, 113, 114, 0, 0, 0, 115, 116, 0,
|
||
0, 0, 117, 0, 118, 22, 0, 0, 0, 119,
|
||
24, 0, 0, 120, 0, 0, 841, 121, 122, 0,
|
||
235, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 329, 0, 0, -116, -116, -116, -116, 698, 0,
|
||
-116, 852, -116, -116, -116, 0, 0, 698, 0, 0,
|
||
698, 0, 698, 0, 0, 0, 0, 0, -116, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 329, 0,
|
||
-339, -339, 0, 0, 0, -339, -339, -116, -339, 0,
|
||
0, 0, -339, 0, -339, -339, -339, -339, -339, -339,
|
||
-339, -339, -339, -339, -339, 0, -339, 890, -339, -116,
|
||
-339, -339, -339, 0, -116, 0, 0, 0, 895, -339,
|
||
0, 698, -339, 0, -116, 0, 0, -339, -339, -339,
|
||
0, 904, 0, -339, -339, 0, 0, 0, -339, -339,
|
||
0, 0, 0, -339, 0, -339, -339, 0, 0, 0,
|
||
-339, -339, 0, 0, -339, 0, -339, -312, -339, -339,
|
||
824, -339, -339, -339, 0, 0, 0, -339, -339, 0,
|
||
-339, 0, 0, 0, -339, 0, -339, -339, -339, -339,
|
||
-339, -339, -339, -339, -339, -339, -339, 0, -339, 0,
|
||
-339, 0, -339, -339, -339, 0, 0, 0, 0, 0,
|
||
0, -339, 0, 0, -339, 0, 0, 0, 0, -339,
|
||
-339, -339, 0, 0, 0, -339, -339, 0, 0, 0,
|
||
-339, -339, 0, 0, 0, -339, 0, -339, -339, 0,
|
||
0, 0, -339, -339, 0, 0, -339, 0, -339, 0,
|
||
-339, -339, 879, -339, -349, -349, 0, 0, 0, -349,
|
||
-349, 0, -349, 0, 0, 0, -349, 0, -349, -349,
|
||
-349, -349, -349, -349, -349, -349, -349, -349, -349, 0,
|
||
-349, 0, -349, 0, -349, -349, -349, 0, 0, 0,
|
||
0, 0, 0, -349, 0, 0, -349, 0, 0, 0,
|
||
0, -349, -349, -349, 0, 0, 0, -349, -349, 0,
|
||
0, 0, -349, -349, 0, 0, 0, -349, 0, -349,
|
||
-349, 0, 0, 0, -349, -349, 0, 0, -349, 0,
|
||
-349, 0, -349, -349, 693, -349, 694, 60, 0, 0,
|
||
0, 101, 102, 251, 103, 252, 253, 254, 255, 256,
|
||
257, 258, 259, 260, 261, 262, 263, 264, 265, 0,
|
||
0, 0, 104, 0, 15, 0, 105, 106, 107, 0,
|
||
0, 0, 0, 0, 0, 108, 0, 0, 109, 0,
|
||
0, 0, 0, 110, 111, 112, 0, 0, 0, 113,
|
||
114, 0, 0, 695, 115, 116, 0, 0, 0, 117,
|
||
0, 118, 61, 0, 0, 0, 119, 62, 0, 0,
|
||
120, 0, 0, -204, 121, 122, 693, 696, 694, 60,
|
||
0, 0, 0, 101, 102, 0, 103, 253, 254, 255,
|
||
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
|
||
0, 0, 0, 0, 104, 0, 15, 0, 105, 106,
|
||
107, 0, 0, 0, 0, 0, 0, 108, 0, 0,
|
||
109, 0, 0, 0, 0, 110, 111, 112, 0, 0,
|
||
0, 113, 114, 0, 0, 695, 115, 116, 0, 0,
|
||
0, 117, 0, 118, 61, 0, 0, 0, 119, 62,
|
||
0, 0, 120, 0, 0, -269, 121, 122, 693, 696,
|
||
100, 0, 0, 0, 0, 101, 102, 0, 103, 254,
|
||
255, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 0, 0, 0, 0, 0, 104, 0, 15, 0,
|
||
105, 106, 107, 0, 0, -217, 0, 0, 0, 108,
|
||
0, 0, 109, 0, 0, 0, 0, 110, 111, 112,
|
||
0, 0, 0, 113, 114, 0, 0, -217, 115, 116,
|
||
0, 0, 0, 117, 0, 118, 0, 0, 0, 0,
|
||
119, 0, 0, 0, 120, 678, 0, 100, 121, 122,
|
||
0, 696, 101, 102, 0, 103, 255, 256, 257, 258,
|
||
259, 260, 261, 262, 263, 264, 265, 0, 0, 0,
|
||
0, 0, 0, 104, 0, 15, 0, 105, 106, 107,
|
||
0, 0, 0, 0, 0, 0, 108, 0, 0, 109,
|
||
0, 0, 0, 0, 110, 111, 112, 0, 0, 0,
|
||
113, 114, 0, 0, 0, 115, 116, 0, 0, 0,
|
||
117, 0, 118, 0, 0, 0, 0, 119, 0, 0,
|
||
0, 120, 693, 0, 100, 121, 122, 0, 679, 101,
|
||
102, 0, 103, 4, 0, -129, 5, 6, 7, 8,
|
||
0, 0, 0, 0, 9, 10, 11, 0, 0, 0,
|
||
104, 0, 15, 0, 105, 106, 107, 0, 0, 0,
|
||
13, 0, 14, 108, 0, 0, 109, 0, 0, 0,
|
||
0, 110, 111, 112, 0, 0, 0, 113, 114, 16,
|
||
0, 0, 115, 116, -129, 0, 0, 117, 0, 118,
|
||
0, 0, 0, -129, 119, 0, 0, 0, 120, 0,
|
||
0, 22, 121, 122, 348, 696, 24, -24, -24, -24,
|
||
-24, 27, 0, 0, 0, -24, -24, -24, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
197, -24, 342, -176, 0, -20, -20, -20, -20, 0,
|
||
0, -176, 0, -20, -20, -20, 5, 6, 7, 8,
|
||
-24, 0, 0, 0, 9, 10, 11, 0, 197, -20,
|
||
0, -176, 0, 0, 198, 199, 0, 0, 0, -176,
|
||
13, 0, -24, 0, 0, 0, 0, -24, -20, 0,
|
||
0, 0, -176, 0, 0, 0, -176, -24, 0, 16,
|
||
329, 0, 0, 5, 6, 7, 8, 0, 0, 0,
|
||
-20, 9, 10, 11, 0, -20, 0, 0, 0, 0,
|
||
-176, 22, 0, 0, -176, -20, 24, 13, 329, 14,
|
||
0, -502, -502, -502, -502, 0, 0, 0, 0, -502,
|
||
-502, -502, 5, 0, 7, 140, 16, 0, 0, 0,
|
||
9, 10, 11, 0, 0, -502, 100, -502, 0, 0,
|
||
0, 101, 102, 0, 103, 0, 13, 0, 22, 0,
|
||
0, 0, 0, 24, -502, 0, 0, 0, 0, 0,
|
||
0, 0, 104, -500, 15, 16, 105, 106, 107, 0,
|
||
0, 0, 0, 0, 0, 108, -502, 0, 109, 0,
|
||
0, -502, 0, 110, 111, 112, 0, 22, 0, 113,
|
||
114, -502, 24, 0, 115, 116, 0, 100, 0, 117,
|
||
0, 118, 101, 102, 0, 103, 119, 0, 0, 0,
|
||
120, 0, 0, 0, 121, 122, 0, 0, 327, 0,
|
||
0, 0, 0, 104, 0, 15, 0, 105, 106, 107,
|
||
0, 0, 0, 0, 0, 0, 108, 0, 0, 109,
|
||
0, 0, 0, 0, 110, 111, 112, 0, 0, 0,
|
||
113, 114, 0, 0, 0, 115, 116, 0, 100, 0,
|
||
117, 0, 118, 101, 102, 0, 103, 119, 0, 0,
|
||
0, 120, 0, 0, 0, 121, 122, 0, 0, 417,
|
||
0, 0, 0, 0, 104, 0, 15, 0, 105, 106,
|
||
107, 0, 0, 0, 0, 0, 0, 108, 0, 0,
|
||
109, 0, 0, 0, 0, 110, 111, 112, 0, 0,
|
||
0, 113, 114, 0, 0, 0, 115, 116, 0, 100,
|
||
0, 117, 0, 118, 101, 102, 0, 103, 119, 0,
|
||
0, 0, 120, 0, 0, 0, 121, 122, 0, 0,
|
||
473, 0, 0, 0, 0, 104, 0, 15, 0, 105,
|
||
106, 107, 0, 0, 0, 0, 0, 0, 108, 0,
|
||
0, 109, 0, 0, 0, 0, 110, 111, 112, 0,
|
||
0, 0, 113, 114, 0, 0, 0, 115, 116, 0,
|
||
100, 0, 117, 0, 118, 101, 102, 0, 103, 119,
|
||
0, 0, 0, 120, 0, 0, 0, 121, 122, 0,
|
||
0, 524, 0, 0, 0, 0, 104, 0, 15, 0,
|
||
105, 106, 107, 0, 0, 0, 0, 0, 0, 108,
|
||
0, 0, 109, 0, 0, 0, 0, 110, 111, 112,
|
||
0, 0, 0, 113, 114, 0, 0, 0, 115, 116,
|
||
0, 0, 0, 117, 0, 118, 0, 0, 0, 0,
|
||
119, 0, 0, 0, 120, 0, 0, 0, 121, 122,
|
||
0, 0, 847, 694, 715, 6, 7, 8, 101, 102,
|
||
0, 103, 9, 10, 11, 716, 0, 717, 718, 719,
|
||
720, 721, 722, 723, 724, 725, 726, 727, 13, 104,
|
||
14, 15, 0, 105, 106, 107, 0, 0, 0, 0,
|
||
0, 0, 108, 0, 0, 109, 0, 16, 0, 0,
|
||
110, 111, 112, 0, 0, 0, 113, 114, 0, 0,
|
||
0, 115, 116, 0, 0, 0, 117, 0, 118, 728,
|
||
0, 0, 0, 119, 729, 0, 0, 120, 0, 730,
|
||
0, 121, 122, 0, 579, 694, 60, 0, 0, 0,
|
||
101, 102, 0, 103, 0, 0, 0, 716, 0, 717,
|
||
718, 719, 720, 721, 722, 723, 724, 725, 726, 727,
|
||
0, 104, 0, 15, 0, 105, 106, 107, 0, 0,
|
||
0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
|
||
0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
|
||
0, 100, 0, 115, 116, 0, 101, 102, 117, 103,
|
||
118, 61, 0, 0, 0, 119, 62, 0, 0, 120,
|
||
0, 730, 0, 121, 122, 0, 579, 104, 0, 15,
|
||
0, 105, 106, 107, 0, 0, 0, 0, 0, 0,
|
||
108, 0, 0, 109, 0, 0, 0, 0, 110, 111,
|
||
112, 0, 0, 0, 113, 114, 0, 0, 0, 115,
|
||
116, 0, 0, 0, 117, 0, 118, 0, 0, 0,
|
||
0, 119, 0, 0, 0, 120, 0, 0, 0, 121,
|
||
122, 0, 490, 149, 150, 0, 151, 152, 0, 0,
|
||
0, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
||
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
||
0, 0, 0, 100, 5, 6, 7, 8, 101, 102,
|
||
172, 103, 9, 10, 11, 5, 6, 7, 8, 0,
|
||
0, 0, 0, 9, 10, 11, 0, 0, 13, 104,
|
||
14, 15, 0, 105, 106, 107, 0, 0, 0, 13,
|
||
0, 14, 108, 0, 174, 109, 0, 16, 0, 0,
|
||
110, 111, 112, 303, 0, 0, 113, 114, 16, 0,
|
||
0, 115, 116, 0, 0, 0, 117, 0, 118, 22,
|
||
0, 0, 0, 119, 24, 0, 0, 120, 0, 0,
|
||
22, 121, 122, 100, 5, 24, 7, 140, 101, 102,
|
||
84, 103, 9, 10, 11, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 13, 104,
|
||
0, 15, 0, 105, 106, 107, 0, 0, 0, 0,
|
||
0, 0, 108, 0, 0, 109, 0, 16, 0, 0,
|
||
110, 111, 112, 0, 0, 0, 113, 114, 0, 100,
|
||
0, 115, 116, 0, 101, 102, 117, 103, 118, 22,
|
||
0, 0, 0, 119, 24, 0, 0, 120, 0, 0,
|
||
0, 121, 122, 0, 0, 104, 0, 15, 0, 105,
|
||
106, 107, 0, 0, 0, 0, 0, 0, 108, 0,
|
||
0, 109, 0, 0, 0, 0, 110, 111, 112, 0,
|
||
0, 0, 113, 114, 0, 100, 0, 115, 116, 0,
|
||
101, 102, 117, 103, 118, 370, 0, 0, 0, 119,
|
||
0, 0, 0, 120, 0, 0, 0, 121, 122, 0,
|
||
0, 104, 0, 15, 0, 105, 106, 107, 0, 0,
|
||
0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
|
||
0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
|
||
0, 100, 0, 115, 116, 0, 101, 102, 117, 103,
|
||
118, 0, 0, 0, 0, 119, 0, 0, 0, 120,
|
||
0, 811, 0, 121, 122, 0, 0, 104, 0, 15,
|
||
0, 105, 106, 107, 0, 0, 0, 0, 0, 0,
|
||
108, 0, 0, 109, 0, 0, 0, 0, 110, 111,
|
||
112, 0, 0, 0, 113, 114, 0, 100, 0, 115,
|
||
116, 0, 101, 102, 117, 103, 118, 0, 0, 0,
|
||
0, 119, 0, 0, 0, 120, 0, 0, 0, 121,
|
||
122, 0, 0, 104, 0, 15, 0, 105, 106, 107,
|
||
0, 0, 0, 0, 0, 0, 108, 0, 0, 109,
|
||
0, 0, 0, 0, 110, 111, 112, 0, 0, 0,
|
||
113, 114, 0, 100, 0, 245, 116, 0, 101, 102,
|
||
117, 103, 118, 0, 0, 0, 0, 119, 0, 0,
|
||
0, 120, 0, 0, 0, 121, 122, 0, 0, 104,
|
||
0, 15, 0, 105, 106, 107, 0, 0, 0, 0,
|
||
0, 0, 108, 0, 0, 109, 0, 0, 0, 0,
|
||
110, 111, 112, 0, 0, 0, 113, 114, 0, 528,
|
||
0, 247, 116, 0, 101, 102, 117, 103, 118, 0,
|
||
0, 0, 0, 119, 0, 0, 0, 120, 0, 0,
|
||
0, 121, 122, 0, 0, 104, 0, 15, 0, 105,
|
||
106, 107, 0, 0, 0, 0, 0, 0, 108, 0,
|
||
0, 109, 0, 0, 0, 0, 110, 111, 112, 0,
|
||
0, 0, 113, 114, 0, 0, 0, 115, 116, 0,
|
||
0, 0, 117, 0, 118, 0, 0, 0, 0, 119,
|
||
0, 0, 0, 120, 0, 0, 563, 121, 122, 5,
|
||
352, 7, 140, 5, 0, 7, 140, 9, 10, 11,
|
||
0, 9, 10, 11, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 13, 0, 0, 0, 13, 0, 5,
|
||
15, 7, 288, 0, 0, 0, 0, 9, 10, 11,
|
||
0, 0, 16, 0, 0, 0, 16, 5, 89, 7,
|
||
90, 0, 0, 13, 0, 9, 10, 11, 0, 0,
|
||
0, 0, 0, 0, 22, -453, -453, -453, 22, 24,
|
||
0, 13, 16, 24, 564, -453, 0, 0, 353, -272,
|
||
4, 0, -129, 5, 6, 7, 8, 0, 0, 0,
|
||
16, 9, 10, 11, 22, 0, 0, 0, 0, 24,
|
||
0, 0, 0, 0, -281, -281, 12, 13, 0, 14,
|
||
15, 0, 22, 0, 0, 0, 0, 24, 0, 0,
|
||
0, 0, 674, 0, 0, 0, 16, 0, 0, 17,
|
||
18, -129, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
-129, 0, 19, 20, 21, 0, 0, 0, 22, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 4, 27, -129,
|
||
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, 447, 14, 448, 5, 6,
|
||
7, 8, 0, 0, 449, 0, 9, 10, 11, 0,
|
||
0, 0, 0, 16, 0, 0, 549, 550, -129, 0,
|
||
0, 0, 13, 0, 14, 447, 0, -129, 5, 6,
|
||
7, 8, 0, 0, 449, 22, 9, 10, 11, 0,
|
||
24, 16, 0, 0, 0, 27, 0, 0, 0, 0,
|
||
0, 0, 13, 0, 14, 0, 5, 6, 7, 8,
|
||
0, 0, 0, 22, 9, 10, 11, 0, 24, 0,
|
||
0, 16, -399, 0, 0, 0, 0, 0, 0, 0,
|
||
13, 0, 14, 0, 0, 0, 5, 6, 7, 8,
|
||
0, 0, 0, 22, 9, 10, 11, 0, 24, 16,
|
||
0, 0, -399, 352, 0, 0, 5, 0, 7, 140,
|
||
13, 0, 14, 0, 9, 10, 11, 0, 0, 0,
|
||
0, 22, 0, 0, 0, 0, 24, 0, 0, 16,
|
||
13, 633, 0, 15, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
|
||
0, 22, 0, 0, 0, 0, 24, 0, 0, 0,
|
||
0, 821, 0, 0, 0, 0, 0, 0, 0, 149,
|
||
150, 22, 151, 152, 0, 0, 24, 153, 154, 155,
|
||
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
||
166, 167, 168, 169, 170, 171, 0, 0, 0, 149,
|
||
150, 0, 151, 152, 0, 0, 172, 153, 154, 155,
|
||
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
||
166, 167, 168, 169, 170, 171, 0, 173, 0, 0,
|
||
0, 0, 0, 0, 149, 150, 373, 151, 152, 0,
|
||
174, 0, 153, 154, 155, 156, 157, 158, 159, 160,
|
||
161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
||
171, 0, 0, 0, 149, 150, 0, 151, 152, 0,
|
||
174, 172, 153, 154, 155, 156, 157, 158, 159, 160,
|
||
161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
||
171, 0, 0, 0, 5, 0, 7, 288, 0, 0,
|
||
0, 606, 9, 10, 11, 174, 5, 6, 7, 8,
|
||
0, 0, 449, 0, 9, 10, 11, 0, 13, 0,
|
||
14, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
13, 0, 14, 0, 0, 174, 0, 16, 0, 0,
|
||
0, 0, 280, 0, 0, 0, 0, 0, 0, 16,
|
||
0, 281, 282, 0, 0, 0, 0, 0, 0, 22,
|
||
5, 6, 7, 8, 24, 0, 667, 0, 9, 10,
|
||
11, 22, 5, 6, 7, 8, 24, 0, 0, 0,
|
||
9, 10, 11, 0, 13, 5, 14, 7, 288, 0,
|
||
0, 0, 0, 9, 10, 11, 13, 0, 14, 0,
|
||
0, 0, 0, 16, 0, 0, 0, 0, 0, 13,
|
||
0, 0, 0, 0, 0, 16, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 22, 0, 0, 16, 0,
|
||
24, 0, 0, 0, 0, 0, 0, 22, 0, 0,
|
||
0, 0, 24, 866, 0, 0, 0, 0, 0, 0,
|
||
22, 0, 249, 250, 251, 24, 252, 253, 254, 255,
|
||
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
|
||
249, 250, 251, 867, 252, 253, 254, 255, 256, 257,
|
||
258, 259, 260, 261, 262, 263, 264, 265, 14, 0,
|
||
0, 0, 0, 0, 0, 249, 250, 251, 489, 252,
|
||
253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
|
||
263, 264, 265, 249, 250, 251, 921, 252, 253, 254,
|
||
255, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 249, 250, 251, 0, 252, 253, 254, 255, 256,
|
||
257, 258, 259, 260, 261, 262, 263, 264, 265
|
||
};
|
||
|
||
static const short yycheck[] = { 56,
|
||
57, 16, 85, 36, 19, 20, 33, 200, 23, 83,
|
||
25, 26, 91, 324, 24, 316, 2, 3, 2, 3,
|
||
53, 54, 55, 38, 39, 40, 22, 209, 24, 343,
|
||
105, 106, 31, 80, 203, 349, 177, 112, 345, 2,
|
||
3, 286, 66, 270, 281, 2, 3, 80, 123, 177,
|
||
223, 578, 9, 10, 11, 88, 42, 67, 42, 74,
|
||
135, 71, 416, 223, 440, 515, 142, 95, 571, 145,
|
||
673, 67, 704, 194, 31, 71, 33, 1, 77, 42,
|
||
1, 344, 438, 1, 804, 42, 85, 40, 351, 10,
|
||
115, 331, 9, 108, 204, 3, 359, 624, 239, 1,
|
||
3, 919, 30, 40, 7, 40, 1, 3, 3, 4,
|
||
783, 280, 61, 62, 52, 53, 54, 0, 78, 792,
|
||
77, 27, 30, 83, 30, 78, 83, 30, 85, 78,
|
||
948, 146, 38, 148, 91, 214, 0, 3, 4, 332,
|
||
322, 78, 199, 78, 52, 595, 42, 597, 173, 52,
|
||
343, 79, 80, 61, 62, 79, 349, 172, 61, 61,
|
||
880, 78, 40, 84, 61, 797, 84, 182, 183, 409,
|
||
185, 186, 622, 79, 69, 208, 413, 83, 423, 74,
|
||
38, 238, 419, 61, 357, 142, 219, 714, 145, 429,
|
||
3, 4, 191, 913, 3, 4, 195, 357, 918, 426,
|
||
920, 557, 60, 69, 47, 204, 84, 286, 74, 929,
|
||
3, 4, 227, 30, 271, 240, 409, 820, 84, 340,
|
||
245, 61, 247, 40, 856, 282, 241, 337, 3, 3,
|
||
4, 341, 27, 30, 191, 376, 283, 194, 195, 223,
|
||
83, 961, 61, 62, 545, 61, 62, 204, 61, 61,
|
||
283, 40, 79, 268, 269, 30, 69, 214, 47, 78,
|
||
69, 74, 78, 766, 767, 74, 61, 62, 79, 80,
|
||
510, 444, 648, 513, 299, 84, 69, 52, 52, 32,
|
||
33, 74, 47, 639, 444, 478, 61, 480, 78, 346,
|
||
30, 84, 307, 83, 369, 69, 3, 4, 538, 309,
|
||
74, 61, 30, 336, 67, 3, 4, 5, 6, 7,
|
||
3, 4, 666, 309, 7, 79, 3, 4, 511, 83,
|
||
513, 61, 62, 78, 281, 84, 30, 79, 83, 386,
|
||
358, 83, 360, 61, 62, 598, 599, 30, 337, 602,
|
||
641, 84, 341, 30, 423, 3, 4, 78, 52, 84,
|
||
365, 492, 83, 40, 881, 3, 4, 61, 62, 52,
|
||
61, 78, 69, 40, 421, 52, 83, 74, 61, 326,
|
||
47, 69, 30, 357, 61, 825, 74, 61, 62, 606,
|
||
337, 74, 40, 340, 341, 40, 5, 74, 7, 61,
|
||
62, 532, 47, 408, 52, 539, 659, 660, 661, 543,
|
||
627, 664, 665, 61, 532, 79, 61, 78, 433, 83,
|
||
425, 938, 939, 61, 61, 7, 74, 61, 3, 4,
|
||
657, 69, 61, 686, 451, 79, 74, 437, 691, 83,
|
||
56, 57, 677, 59, 60, 61, 62, 464, 30, 61,
|
||
62, 437, 79, 429, 588, 30, 83, 591, 50, 51,
|
||
79, 80, 78, 83, 440, 756, 413, 61, 62, 416,
|
||
52, 768, 419, 65, 489, 9, 429, 52, 609, 61,
|
||
62, 486, 429, 3, 4, 432, 61, 440, 651, 77,
|
||
707, 127, 128, 440, 747, 748, 749, 656, 78, 74,
|
||
78, 651, 685, 662, 451, 571, 572, 40, 1, 79,
|
||
30, 4, 5, 6, 7, 27, 84, 534, 30, 12,
|
||
13, 14, 61, 79, 61, 530, 38, 83, 70, 71,
|
||
72, 80, 52, 80, 33, 28, 789, 554, 80, 766,
|
||
767, 61, 62, 79, 79, 780, 773, 774, 83, 61,
|
||
62, 78, 78, 78, 47, 70, 71, 72, 57, 40,
|
||
78, 537, 79, 552, 817, 80, 83, 79, 70, 71,
|
||
72, 83, 32, 78, 647, 79, 69, 624, 80, 83,
|
||
78, 74, 571, 572, 537, 61, 10, 534, 652, 653,
|
||
537, 84, 79, 884, 50, 51, 52, 53, 54, 852,
|
||
78, 65, 675, 78, 908, 552, 910, 554, 677, 614,
|
||
79, 354, 84, 356, 83, 27, 115, 9, 85, 624,
|
||
79, 658, 686, 687, 571, 572, 663, 79, 575, 643,
|
||
644, 83, 637, 3, 4, 658, 38, 7, 69, 79,
|
||
663, 38, 895, 632, 83, 78, 145, 40, 624, 78,
|
||
624, 70, 71, 72, 955, 78, 78, 78, 647, 40,
|
||
30, 80, 963, 78, 78, 85, 84, 714, 657, 85,
|
||
78, 624, 648, 78, 173, 65, 65, 624, 725, 78,
|
||
745, 38, 52, 83, 85, 632, 675, 78, 40, 85,
|
||
695, 61, 62, 80, 80, 648, 80, 440, 80, 646,
|
||
647, 648, 80, 875, 78, 652, 653, 450, 451, 714,
|
||
657, 780, 79, 78, 3, 79, 84, 80, 735, 666,
|
||
79, 726, 769, 83, 223, 908, 673, 910, 675, 729,
|
||
46, 47, 48, 49, 50, 51, 52, 53, 54, 686,
|
||
687, 240, 728, 729, 80, 78, 245, 3, 247, 822,
|
||
40, 7, 80, 85, 65, 802, 820, 40, 805, 806,
|
||
40, 80, 83, 40, 61, 788, 813, 61, 61, 745,
|
||
40, 745, 79, 79, 30, 7, 40, 766, 767, 843,
|
||
79, 828, 16, 79, 773, 774, 65, 40, 735, 61,
|
||
533, 83, 745, 79, 79, 61, 52, 65, 745, 80,
|
||
299, 85, 80, 78, 17, 61, 62, 5, 6, 7,
|
||
553, 554, 79, 860, 12, 13, 14, 78, 78, 766,
|
||
767, 79, 565, 566, 871, 79, 773, 774, 78, 65,
|
||
9, 79, 30, 822, 881, 79, 231, 61, 83, 79,
|
||
78, 584, 585, 5, 6, 7, 835, 78, 0, 244,
|
||
12, 13, 14, 79, 249, 250, 79, 356, 357, 254,
|
||
255, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 0, 919, 820, 426, 822, 881, 332, 511, 805,
|
||
1, 745, 87, 4, 5, 6, 7, 676, 835, 683,
|
||
795, 12, 13, 14, 425, 942, 843, 488, 703, 357,
|
||
365, 948, 486, 480, 289, 648, 27, 28, 1, 30,
|
||
685, 4, 511, 6, 7, 410, 581, 38, 513, 12,
|
||
13, 14, 6, 7, 881, 881, 47, 943, 12, 13,
|
||
14, 420, 945, 575, 433, 28, 432, 25, 432, 562,
|
||
61, 62, 653, 843, 555, 444, 840, 308, 69, 532,
|
||
537, 835, 451, 74, 47, 428, 707, 428, 79, 609,
|
||
-1, -1, 83, 84, -1, 464, 45, 46, 47, 48,
|
||
49, 50, 51, 52, 53, 54, 69, 70, 71, 72,
|
||
-1, 74, 376, -1, -1, -1, 79, 80, -1, -1,
|
||
489, 734, 735, 388, 389, -1, 1, -1, 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, 32, 33, 34,
|
||
35, -1, -1, -1, -1, 534, -1, 42, -1, -1,
|
||
45, -1, 47, -1, -1, 50, 51, 52, -1, -1,
|
||
-1, 56, 57, -1, -1, 554, 61, 62, -1, -1,
|
||
-1, 66, -1, 68, 69, -1, -1, 566, 73, 74,
|
||
-1, -1, 77, -1, 79, 80, 81, 82, -1, 84,
|
||
-1, -1, -1, -1, -1, -1, 585, -1, -1, -1,
|
||
485, 48, 49, 50, 51, 52, 53, 54, 1, -1,
|
||
3, 4, 5, 6, 7, 8, 9, 502, 11, 12,
|
||
13, 14, 15, -1, 17, 18, 19, 20, 21, 22,
|
||
23, 24, 25, 26, 27, 28, 29, 30, 31, -1,
|
||
33, 34, 35, -1, -1, -1, -1, -1, -1, 42,
|
||
-1, -1, 45, -1, 47, -1, -1, 50, 51, 52,
|
||
-1, -1, 651, 56, 57, -1, -1, -1, 61, 62,
|
||
-1, -1, -1, 66, -1, 68, 69, -1, -1, -1,
|
||
73, 74, -1, -1, 77, -1, 79, 80, 81, 82,
|
||
-1, 84, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
56, 57, 587, 59, 60, 61, 62, -1, -1, -1,
|
||
-1, 1, -1, 3, 4, 5, 6, 7, 8, 9,
|
||
605, 11, 12, 13, 14, 15, -1, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
||
30, 31, -1, 33, 34, 35, 735, -1, -1, -1,
|
||
-1, -1, 42, -1, -1, 45, -1, 47, -1, -1,
|
||
50, 51, 52, -1, -1, -1, 56, 57, -1, -1,
|
||
-1, 61, 62, -1, -1, -1, 66, -1, 68, 69,
|
||
-1, -1, -1, 73, 74, -1, -1, 77, -1, 79,
|
||
-1, 81, 82, -1, 84, -1, -1, 1, 683, 3,
|
||
4, -1, 6, 7, 8, 9, -1, 11, 12, 13,
|
||
14, -1, -1, -1, -1, -1, -1, -1, -1, 704,
|
||
-1, -1, -1, -1, 28, 29, 711, 31, -1, 33,
|
||
34, 35, -1, -1, -1, -1, 721, -1, 42, -1,
|
||
-1, 45, -1, 47, -1, -1, 50, 51, 52, -1,
|
||
-1, -1, 56, 57, -1, -1, -1, 61, 62, -1,
|
||
-1, -1, 66, -1, 68, 69, -1, -1, -1, 73,
|
||
74, -1, -1, 77, -1, -1, 761, 81, 82, -1,
|
||
84, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 1, -1, -1, 4, 5, 6, 7, 783, -1,
|
||
10, 786, 12, 13, 14, -1, -1, 792, -1, -1,
|
||
795, -1, 797, -1, -1, -1, -1, -1, 28, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 1, -1,
|
||
3, 4, -1, -1, -1, 8, 9, 47, 11, -1,
|
||
-1, -1, 15, -1, 17, 18, 19, 20, 21, 22,
|
||
23, 24, 25, 26, 27, -1, 29, 842, 31, 69,
|
||
33, 34, 35, -1, 74, -1, -1, -1, 853, 42,
|
||
-1, 856, 45, -1, 84, -1, -1, 50, 51, 52,
|
||
-1, 866, -1, 56, 57, -1, -1, -1, 61, 62,
|
||
-1, -1, -1, 66, -1, 68, 69, -1, -1, -1,
|
||
73, 74, -1, -1, 77, -1, 79, 80, 81, 82,
|
||
1, 84, 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, 35, -1, -1, -1, -1, -1,
|
||
-1, 42, -1, -1, 45, -1, -1, -1, -1, 50,
|
||
51, 52, -1, -1, -1, 56, 57, -1, -1, -1,
|
||
61, 62, -1, -1, -1, 66, -1, 68, 69, -1,
|
||
-1, -1, 73, 74, -1, -1, 77, -1, 79, -1,
|
||
81, 82, 1, 84, 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, 35, -1, -1, -1,
|
||
-1, -1, -1, 42, -1, -1, 45, -1, -1, -1,
|
||
-1, 50, 51, 52, -1, -1, -1, 56, 57, -1,
|
||
-1, -1, 61, 62, -1, -1, -1, 66, -1, 68,
|
||
69, -1, -1, -1, 73, 74, -1, -1, 77, -1,
|
||
79, -1, 81, 82, 1, 84, 3, 4, -1, -1,
|
||
-1, 8, 9, 39, 11, 41, 42, 43, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 52, 53, 54, -1,
|
||
-1, -1, 29, -1, 31, -1, 33, 34, 35, -1,
|
||
-1, -1, -1, -1, -1, 42, -1, -1, 45, -1,
|
||
-1, -1, -1, 50, 51, 52, -1, -1, -1, 56,
|
||
57, -1, -1, 60, 61, 62, -1, -1, -1, 66,
|
||
-1, 68, 69, -1, -1, -1, 73, 74, -1, -1,
|
||
77, -1, -1, 80, 81, 82, 1, 84, 3, 4,
|
||
-1, -1, -1, 8, 9, -1, 11, 42, 43, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
-1, -1, -1, -1, 29, -1, 31, -1, 33, 34,
|
||
35, -1, -1, -1, -1, -1, -1, 42, -1, -1,
|
||
45, -1, -1, -1, -1, 50, 51, 52, -1, -1,
|
||
-1, 56, 57, -1, -1, 60, 61, 62, -1, -1,
|
||
-1, 66, -1, 68, 69, -1, -1, -1, 73, 74,
|
||
-1, -1, 77, -1, -1, 80, 81, 82, 1, 84,
|
||
3, -1, -1, -1, -1, 8, 9, -1, 11, 43,
|
||
44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
|
||
54, -1, -1, -1, -1, -1, 29, -1, 31, -1,
|
||
33, 34, 35, -1, -1, 38, -1, -1, -1, 42,
|
||
-1, -1, 45, -1, -1, -1, -1, 50, 51, 52,
|
||
-1, -1, -1, 56, 57, -1, -1, 60, 61, 62,
|
||
-1, -1, -1, 66, -1, 68, -1, -1, -1, -1,
|
||
73, -1, -1, -1, 77, 1, -1, 3, 81, 82,
|
||
-1, 84, 8, 9, -1, 11, 44, 45, 46, 47,
|
||
48, 49, 50, 51, 52, 53, 54, -1, -1, -1,
|
||
-1, -1, -1, 29, -1, 31, -1, 33, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, -1, 45,
|
||
-1, -1, -1, -1, 50, 51, 52, -1, -1, -1,
|
||
56, 57, -1, -1, -1, 61, 62, -1, -1, -1,
|
||
66, -1, 68, -1, -1, -1, -1, 73, -1, -1,
|
||
-1, 77, 1, -1, 3, 81, 82, -1, 84, 8,
|
||
9, -1, 11, 1, -1, 3, 4, 5, 6, 7,
|
||
-1, -1, -1, -1, 12, 13, 14, -1, -1, -1,
|
||
29, -1, 31, -1, 33, 34, 35, -1, -1, -1,
|
||
28, -1, 30, 42, -1, -1, 45, -1, -1, -1,
|
||
-1, 50, 51, 52, -1, -1, -1, 56, 57, 47,
|
||
-1, -1, 61, 62, 52, -1, -1, 66, -1, 68,
|
||
-1, -1, -1, 61, 73, -1, -1, -1, 77, -1,
|
||
-1, 69, 81, 82, 1, 84, 74, 4, 5, 6,
|
||
7, 79, -1, -1, -1, 12, 13, 14, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
27, 28, 1, 30, -1, 4, 5, 6, 7, -1,
|
||
-1, 38, -1, 12, 13, 14, 4, 5, 6, 7,
|
||
47, -1, -1, -1, 12, 13, 14, -1, 27, 28,
|
||
-1, 30, -1, -1, 61, 62, -1, -1, -1, 38,
|
||
28, -1, 69, -1, -1, -1, -1, 74, 47, -1,
|
||
-1, -1, 79, -1, -1, -1, 83, 84, -1, 47,
|
||
1, -1, -1, 4, 5, 6, 7, -1, -1, -1,
|
||
69, 12, 13, 14, -1, 74, -1, -1, -1, -1,
|
||
79, 69, -1, -1, 83, 84, 74, 28, 1, 30,
|
||
-1, 4, 5, 6, 7, -1, -1, -1, -1, 12,
|
||
13, 14, 4, -1, 6, 7, 47, -1, -1, -1,
|
||
12, 13, 14, -1, -1, 28, 3, 30, -1, -1,
|
||
-1, 8, 9, -1, 11, -1, 28, -1, 69, -1,
|
||
-1, -1, -1, 74, 47, -1, -1, -1, -1, -1,
|
||
-1, -1, 29, 84, 31, 47, 33, 34, 35, -1,
|
||
-1, -1, -1, -1, -1, 42, 69, -1, 45, -1,
|
||
-1, 74, -1, 50, 51, 52, -1, 69, -1, 56,
|
||
57, 84, 74, -1, 61, 62, -1, 3, -1, 66,
|
||
-1, 68, 8, 9, -1, 11, 73, -1, -1, -1,
|
||
77, -1, -1, -1, 81, 82, -1, -1, 85, -1,
|
||
-1, -1, -1, 29, -1, 31, -1, 33, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, -1, 45,
|
||
-1, -1, -1, -1, 50, 51, 52, -1, -1, -1,
|
||
56, 57, -1, -1, -1, 61, 62, -1, 3, -1,
|
||
66, -1, 68, 8, 9, -1, 11, 73, -1, -1,
|
||
-1, 77, -1, -1, -1, 81, 82, -1, -1, 85,
|
||
-1, -1, -1, -1, 29, -1, 31, -1, 33, 34,
|
||
35, -1, -1, -1, -1, -1, -1, 42, -1, -1,
|
||
45, -1, -1, -1, -1, 50, 51, 52, -1, -1,
|
||
-1, 56, 57, -1, -1, -1, 61, 62, -1, 3,
|
||
-1, 66, -1, 68, 8, 9, -1, 11, 73, -1,
|
||
-1, -1, 77, -1, -1, -1, 81, 82, -1, -1,
|
||
85, -1, -1, -1, -1, 29, -1, 31, -1, 33,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
-1, 45, -1, -1, -1, -1, 50, 51, 52, -1,
|
||
-1, -1, 56, 57, -1, -1, -1, 61, 62, -1,
|
||
3, -1, 66, -1, 68, 8, 9, -1, 11, 73,
|
||
-1, -1, -1, 77, -1, -1, -1, 81, 82, -1,
|
||
-1, 85, -1, -1, -1, -1, 29, -1, 31, -1,
|
||
33, 34, 35, -1, -1, -1, -1, -1, -1, 42,
|
||
-1, -1, 45, -1, -1, -1, -1, 50, 51, 52,
|
||
-1, -1, -1, 56, 57, -1, -1, -1, 61, 62,
|
||
-1, -1, -1, 66, -1, 68, -1, -1, -1, -1,
|
||
73, -1, -1, -1, 77, -1, -1, -1, 81, 82,
|
||
-1, -1, 85, 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, 35, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, -1, 45, -1, 47, -1, -1,
|
||
50, 51, 52, -1, -1, -1, 56, 57, -1, -1,
|
||
-1, 61, 62, -1, -1, -1, 66, -1, 68, 69,
|
||
-1, -1, -1, 73, 74, -1, -1, 77, -1, 79,
|
||
-1, 81, 82, -1, 84, 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, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, -1, 45, -1, -1,
|
||
-1, -1, 50, 51, 52, -1, -1, -1, 56, 57,
|
||
-1, 3, -1, 61, 62, -1, 8, 9, 66, 11,
|
||
68, 69, -1, -1, -1, 73, 74, -1, -1, 77,
|
||
-1, 79, -1, 81, 82, -1, 84, 29, -1, 31,
|
||
-1, 33, 34, 35, -1, -1, -1, -1, -1, -1,
|
||
42, -1, -1, 45, -1, -1, -1, -1, 50, 51,
|
||
52, -1, -1, -1, 56, 57, -1, -1, -1, 61,
|
||
62, -1, -1, -1, 66, -1, 68, -1, -1, -1,
|
||
-1, 73, -1, -1, -1, 77, -1, -1, -1, 81,
|
||
82, -1, 84, 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, -1, -1, 3, 4, 5, 6, 7, 8, 9,
|
||
40, 11, 12, 13, 14, 4, 5, 6, 7, -1,
|
||
-1, -1, -1, 12, 13, 14, -1, -1, 28, 29,
|
||
30, 31, -1, 33, 34, 35, -1, -1, -1, 28,
|
||
-1, 30, 42, -1, 74, 45, -1, 47, -1, -1,
|
||
50, 51, 52, 83, -1, -1, 56, 57, 47, -1,
|
||
-1, 61, 62, -1, -1, -1, 66, -1, 68, 69,
|
||
-1, -1, -1, 73, 74, -1, -1, 77, -1, -1,
|
||
69, 81, 82, 3, 4, 74, 6, 7, 8, 9,
|
||
79, 11, 12, 13, 14, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 28, 29,
|
||
-1, 31, -1, 33, 34, 35, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, -1, 45, -1, 47, -1, -1,
|
||
50, 51, 52, -1, -1, -1, 56, 57, -1, 3,
|
||
-1, 61, 62, -1, 8, 9, 66, 11, 68, 69,
|
||
-1, -1, -1, 73, 74, -1, -1, 77, -1, -1,
|
||
-1, 81, 82, -1, -1, 29, -1, 31, -1, 33,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
-1, 45, -1, -1, -1, -1, 50, 51, 52, -1,
|
||
-1, -1, 56, 57, -1, 3, -1, 61, 62, -1,
|
||
8, 9, 66, 11, 68, 69, -1, -1, -1, 73,
|
||
-1, -1, -1, 77, -1, -1, -1, 81, 82, -1,
|
||
-1, 29, -1, 31, -1, 33, 34, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, -1, 45, -1, -1,
|
||
-1, -1, 50, 51, 52, -1, -1, -1, 56, 57,
|
||
-1, 3, -1, 61, 62, -1, 8, 9, 66, 11,
|
||
68, -1, -1, -1, -1, 73, -1, -1, -1, 77,
|
||
-1, 79, -1, 81, 82, -1, -1, 29, -1, 31,
|
||
-1, 33, 34, 35, -1, -1, -1, -1, -1, -1,
|
||
42, -1, -1, 45, -1, -1, -1, -1, 50, 51,
|
||
52, -1, -1, -1, 56, 57, -1, 3, -1, 61,
|
||
62, -1, 8, 9, 66, 11, 68, -1, -1, -1,
|
||
-1, 73, -1, -1, -1, 77, -1, -1, -1, 81,
|
||
82, -1, -1, 29, -1, 31, -1, 33, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, -1, 45,
|
||
-1, -1, -1, -1, 50, 51, 52, -1, -1, -1,
|
||
56, 57, -1, 3, -1, 61, 62, -1, 8, 9,
|
||
66, 11, 68, -1, -1, -1, -1, 73, -1, -1,
|
||
-1, 77, -1, -1, -1, 81, 82, -1, -1, 29,
|
||
-1, 31, -1, 33, 34, 35, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, -1, 45, -1, -1, -1, -1,
|
||
50, 51, 52, -1, -1, -1, 56, 57, -1, 3,
|
||
-1, 61, 62, -1, 8, 9, 66, 11, 68, -1,
|
||
-1, -1, -1, 73, -1, -1, -1, 77, -1, -1,
|
||
-1, 81, 82, -1, -1, 29, -1, 31, -1, 33,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
-1, 45, -1, -1, -1, -1, 50, 51, 52, -1,
|
||
-1, -1, 56, 57, -1, -1, -1, 61, 62, -1,
|
||
-1, -1, 66, -1, 68, -1, -1, -1, -1, 73,
|
||
-1, -1, -1, 77, -1, -1, 1, 81, 82, 4,
|
||
1, 6, 7, 4, -1, 6, 7, 12, 13, 14,
|
||
-1, 12, 13, 14, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 28, -1, -1, -1, 28, -1, 4,
|
||
31, 6, 7, -1, -1, -1, -1, 12, 13, 14,
|
||
-1, -1, 47, -1, -1, -1, 47, 4, 5, 6,
|
||
7, -1, -1, 28, -1, 12, 13, 14, -1, -1,
|
||
-1, -1, -1, -1, 69, 70, 71, 72, 69, 74,
|
||
-1, 28, 47, 74, 79, 80, -1, -1, 79, 80,
|
||
1, -1, 3, 4, 5, 6, 7, -1, -1, -1,
|
||
47, 12, 13, 14, 69, -1, -1, -1, -1, 74,
|
||
-1, -1, -1, -1, 79, 80, 27, 28, -1, 30,
|
||
31, -1, 69, -1, -1, -1, -1, 74, -1, -1,
|
||
-1, -1, 79, -1, -1, -1, 47, -1, -1, 50,
|
||
51, 52, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
61, -1, 63, 64, 65, -1, -1, -1, 69, -1,
|
||
-1, -1, 73, 74, 75, 76, -1, 1, 79, 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, 10, -1, 12, 13, 14, -1,
|
||
-1, -1, -1, 47, -1, -1, 50, 51, 52, -1,
|
||
-1, -1, 28, -1, 30, 1, -1, 61, 4, 5,
|
||
6, 7, -1, -1, 10, 69, 12, 13, 14, -1,
|
||
74, 47, -1, -1, -1, 79, -1, -1, -1, -1,
|
||
-1, -1, 28, -1, 30, -1, 4, 5, 6, 7,
|
||
-1, -1, -1, 69, 12, 13, 14, -1, 74, -1,
|
||
-1, 47, 78, -1, -1, -1, -1, -1, -1, -1,
|
||
28, -1, 30, -1, -1, -1, 4, 5, 6, 7,
|
||
-1, -1, -1, 69, 12, 13, 14, -1, 74, 47,
|
||
-1, -1, 78, 1, -1, -1, 4, -1, 6, 7,
|
||
28, -1, 30, -1, 12, 13, 14, -1, -1, -1,
|
||
-1, 69, -1, -1, -1, -1, 74, -1, -1, 47,
|
||
28, 79, -1, 31, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 47,
|
||
-1, 69, -1, -1, -1, -1, 74, -1, -1, -1,
|
||
-1, 79, -1, -1, -1, -1, -1, -1, -1, 3,
|
||
4, 69, 6, 7, -1, -1, 74, 11, 12, 13,
|
||
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
||
24, 25, 26, 27, 28, 29, -1, -1, -1, 3,
|
||
4, -1, 6, 7, -1, -1, 40, 11, 12, 13,
|
||
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
||
24, 25, 26, 27, 28, 29, -1, 61, -1, -1,
|
||
-1, -1, -1, -1, 3, 4, 40, 6, 7, -1,
|
||
74, -1, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
||
29, -1, -1, -1, 3, 4, -1, 6, 7, -1,
|
||
74, 40, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
||
29, -1, -1, -1, 4, -1, 6, 7, -1, -1,
|
||
-1, 40, 12, 13, 14, 74, 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, -1, -1, 74, -1, 47, -1, -1,
|
||
-1, -1, 52, -1, -1, -1, -1, -1, -1, 47,
|
||
-1, 61, 62, -1, -1, -1, -1, -1, -1, 69,
|
||
4, 5, 6, 7, 74, -1, 10, -1, 12, 13,
|
||
14, 69, 4, 5, 6, 7, 74, -1, -1, -1,
|
||
12, 13, 14, -1, 28, 4, 30, 6, 7, -1,
|
||
-1, -1, -1, 12, 13, 14, 28, -1, 30, -1,
|
||
-1, -1, -1, 47, -1, -1, -1, -1, -1, 28,
|
||
-1, -1, -1, -1, -1, 47, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 69, -1, -1, 47, -1,
|
||
74, -1, -1, -1, -1, -1, -1, 69, -1, -1,
|
||
-1, -1, 74, 10, -1, -1, -1, -1, -1, -1,
|
||
69, -1, 37, 38, 39, 74, 41, 42, 43, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
||
47, 48, 49, 50, 51, 52, 53, 54, 30, -1,
|
||
-1, -1, -1, -1, -1, 37, 38, 39, 83, 41,
|
||
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
||
52, 53, 54, 37, 38, 39, 40, 41, 42, 43,
|
||
44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
|
||
54, 37, 38, 39, -1, 41, 42, 43, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 52, 53, 54
|
||
};
|
||
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
|
||
#line 3 "/usr/share/misc/bison.simple"
|
||
/* This file comes from bison-1.28. */
|
||
|
||
/* 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., 59 Temple Place - Suite 330,
|
||
Boston, MA 02111-1307, 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. */
|
||
|
||
/* 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. */
|
||
|
||
#ifndef YYSTACK_USE_ALLOCA
|
||
#ifdef alloca
|
||
#define YYSTACK_USE_ALLOCA
|
||
#else /* alloca not defined */
|
||
#ifdef __GNUC__
|
||
#define YYSTACK_USE_ALLOCA
|
||
#define alloca __builtin_alloca
|
||
#else /* not GNU C. */
|
||
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
|
||
#define YYSTACK_USE_ALLOCA
|
||
#include <alloca.h>
|
||
#else /* not sparc */
|
||
/* We think this test detects Watcom and Microsoft C. */
|
||
/* This used to test MSDOS, but that is a bad idea
|
||
since that symbol is in the user namespace. */
|
||
#if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
|
||
#if 0 /* No need for malloc.h, which pollutes the namespace;
|
||
instead, just don't use alloca. */
|
||
#include <malloc.h>
|
||
#endif
|
||
#else /* not MSDOS, or __TURBOC__ */
|
||
#if defined(_AIX)
|
||
/* I don't know what this was needed for, but it pollutes the namespace.
|
||
So I turned it off. rms, 2 May 1997. */
|
||
/* #include <malloc.h> */
|
||
#pragma alloca
|
||
#define YYSTACK_USE_ALLOCA
|
||
#else /* not MSDOS, or __TURBOC__, or _AIX */
|
||
#if 0
|
||
#ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up,
|
||
and on HPUX 10. Eventually we can turn this on. */
|
||
#define YYSTACK_USE_ALLOCA
|
||
#define alloca __builtin_alloca
|
||
#endif /* __hpux */
|
||
#endif
|
||
#endif /* not _AIX */
|
||
#endif /* not MSDOS, or __TURBOC__ */
|
||
#endif /* not sparc */
|
||
#endif /* not GNU C */
|
||
#endif /* alloca not defined */
|
||
#endif /* YYSTACK_USE_ALLOCA not defined */
|
||
|
||
#ifdef YYSTACK_USE_ALLOCA
|
||
#define YYSTACK_ALLOC alloca
|
||
#else
|
||
#define YYSTACK_ALLOC malloc
|
||
#endif
|
||
|
||
/* 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 goto yyacceptlab
|
||
#define YYABORT goto yyabortlab
|
||
#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
|
||
|
||
/* Define __yy_memcpy. Note that the size argument
|
||
should be passed with type unsigned int, because that is what the non-GCC
|
||
definitions require. With GCC, __builtin_memcpy takes an arg
|
||
of type size_t, but it can handle unsigned int. */
|
||
|
||
#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;
|
||
unsigned 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, unsigned int count)
|
||
{
|
||
register char *t = to;
|
||
register char *f = from;
|
||
register int i = count;
|
||
|
||
while (i-- > 0)
|
||
*t++ = *f++;
|
||
}
|
||
|
||
#endif
|
||
#endif
|
||
|
||
#line 217 "/usr/share/misc/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 */
|
||
|
||
/* Prevent warning if -Wstrict-prototypes. */
|
||
#ifdef __GNUC__
|
||
#ifdef YYPARSE_PARAM
|
||
int yyparse (void *);
|
||
#else
|
||
int yyparse (void);
|
||
#endif
|
||
#endif
|
||
|
||
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;
|
||
int yyfree_stacks = 0;
|
||
|
||
#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");
|
||
if (yyfree_stacks)
|
||
{
|
||
free (yyss);
|
||
free (yyvs);
|
||
#ifdef YYLSP_NEEDED
|
||
free (yyls);
|
||
#endif
|
||
}
|
||
return 2;
|
||
}
|
||
yystacksize *= 2;
|
||
if (yystacksize > YYMAXDEPTH)
|
||
yystacksize = YYMAXDEPTH;
|
||
#ifndef YYSTACK_USE_ALLOCA
|
||
yyfree_stacks = 1;
|
||
#endif
|
||
yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));
|
||
__yy_memcpy ((char *)yyss, (char *)yyss1,
|
||
size * (unsigned int) sizeof (*yyssp));
|
||
yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp));
|
||
__yy_memcpy ((char *)yyvs, (char *)yyvs1,
|
||
size * (unsigned int) sizeof (*yyvsp));
|
||
#ifdef YYLSP_NEEDED
|
||
yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp));
|
||
__yy_memcpy ((char *)yyls, (char *)yyls1,
|
||
size * (unsigned int) 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 258 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids an empty source file");
|
||
finish_file ();
|
||
;
|
||
break;}
|
||
case 2:
|
||
#line 263 "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 277 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 5:
|
||
#line 278 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 10:
|
||
#line 286 "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 294 "objc-parse.y"
|
||
{ RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 12:
|
||
#line 299 "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); ;
|
||
break;}
|
||
case 13:
|
||
#line 308 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 14:
|
||
#line 312 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 15:
|
||
#line 316 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 16:
|
||
#line 318 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 19:
|
||
#line 322 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
|
||
break;}
|
||
case 20:
|
||
#line 328 "objc-parse.y"
|
||
{ if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 21:
|
||
#line 333 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 22:
|
||
#line 335 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 23:
|
||
#line 340 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 24:
|
||
#line 344 "objc-parse.y"
|
||
{ if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 25:
|
||
#line 349 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 26:
|
||
#line 351 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 27:
|
||
#line 356 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 28:
|
||
#line 360 "objc-parse.y"
|
||
{ if (! start_function (NULL_TREE, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 29:
|
||
#line 365 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 30:
|
||
#line 367 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 31:
|
||
#line 372 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 36:
|
||
#line 385 "objc-parse.y"
|
||
{ yyval.code = ADDR_EXPR; ;
|
||
break;}
|
||
case 37:
|
||
#line 387 "objc-parse.y"
|
||
{ yyval.code = NEGATE_EXPR; ;
|
||
break;}
|
||
case 38:
|
||
#line 389 "objc-parse.y"
|
||
{ yyval.code = CONVERT_EXPR; ;
|
||
break;}
|
||
case 39:
|
||
#line 391 "objc-parse.y"
|
||
{ yyval.code = PREINCREMENT_EXPR; ;
|
||
break;}
|
||
case 40:
|
||
#line 393 "objc-parse.y"
|
||
{ yyval.code = PREDECREMENT_EXPR; ;
|
||
break;}
|
||
case 41:
|
||
#line 395 "objc-parse.y"
|
||
{ yyval.code = BIT_NOT_EXPR; ;
|
||
break;}
|
||
case 42:
|
||
#line 397 "objc-parse.y"
|
||
{ yyval.code = TRUTH_NOT_EXPR; ;
|
||
break;}
|
||
case 43:
|
||
#line 401 "objc-parse.y"
|
||
{ yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 44:
|
||
#line 406 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 46:
|
||
#line 412 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 47:
|
||
#line 414 "objc-parse.y"
|
||
{ chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 49:
|
||
#line 420 "objc-parse.y"
|
||
{ yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
|
||
break;}
|
||
case 50:
|
||
#line 423 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 51:
|
||
#line 426 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
|
||
overflow_warning (yyval.ttype); ;
|
||
break;}
|
||
case 52:
|
||
#line 430 "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 458 "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 464 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 55:
|
||
#line 467 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 56:
|
||
#line 470 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 57:
|
||
#line 473 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
|
||
break;}
|
||
case 58:
|
||
#line 475 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
|
||
break;}
|
||
case 59:
|
||
#line 477 "objc-parse.y"
|
||
{ yyval.ttype = build_va_arg (yyvsp[-3].ttype, groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 60:
|
||
#line 481 "objc-parse.y"
|
||
{ skip_evaluation++; ;
|
||
break;}
|
||
case 61:
|
||
#line 485 "objc-parse.y"
|
||
{ skip_evaluation++; ;
|
||
break;}
|
||
case 63:
|
||
#line 491 "objc-parse.y"
|
||
{ tree type = groktypename (yyvsp[-2].ttype);
|
||
yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 64:
|
||
#line 494 "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 65:
|
||
#line 498 "objc-parse.y"
|
||
{ const char *name;
|
||
tree result = pop_init_level (0);
|
||
tree type = yyvsp[-5].ttype;
|
||
finish_init ();
|
||
|
||
if (pedantic && ! flag_isoc99)
|
||
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 67:
|
||
#line 527 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 68:
|
||
#line 529 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 69:
|
||
#line 531 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 70:
|
||
#line 533 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 71:
|
||
#line 535 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 72:
|
||
#line 537 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 73:
|
||
#line 539 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 74:
|
||
#line 541 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 75:
|
||
#line 543 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 76:
|
||
#line 545 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 77:
|
||
#line 547 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 78:
|
||
#line 549 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 79:
|
||
#line 551 "objc-parse.y"
|
||
{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
|
||
break;}
|
||
case 80:
|
||
#line 554 "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 81:
|
||
#line 557 "objc-parse.y"
|
||
{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
|
||
break;}
|
||
case 82:
|
||
#line 560 "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 83:
|
||
#line 563 "objc-parse.y"
|
||
{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
|
||
break;}
|
||
case 84:
|
||
#line 566 "objc-parse.y"
|
||
{ skip_evaluation += ((yyvsp[-4].ttype == boolean_true_node)
|
||
- (yyvsp[-4].ttype == boolean_false_node)); ;
|
||
break;}
|
||
case 85:
|
||
#line 569 "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 86:
|
||
#line 572 "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 87:
|
||
#line 579 "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 88:
|
||
#line 582 "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 89:
|
||
#line 590 "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 90:
|
||
#line 602 "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 92:
|
||
#line 762 "objc-parse.y"
|
||
{ yyval.ttype = combine_strings (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 93:
|
||
#line 764 "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 94:
|
||
#line 770 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 95:
|
||
#line 772 "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 795 "objc-parse.y"
|
||
{
|
||
/* Make sure we call expand_end_stmt_expr. Otherwise
|
||
we are likely to lose sequences and crash later. */
|
||
pop_iterator_stack ();
|
||
pop_label_level ();
|
||
expand_end_stmt_expr (yyvsp[-2].ttype);
|
||
yyval.ttype = error_mark_node;
|
||
;
|
||
break;}
|
||
case 97:
|
||
#line 804 "objc-parse.y"
|
||
{ yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 98:
|
||
#line 806 "objc-parse.y"
|
||
{ yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 99:
|
||
#line 808 "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 100:
|
||
#line 820 "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 101:
|
||
#line 834 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 102:
|
||
#line 836 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 103:
|
||
#line 838 "objc-parse.y"
|
||
{ yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 104:
|
||
#line 840 "objc-parse.y"
|
||
{ yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 105:
|
||
#line 842 "objc-parse.y"
|
||
{ yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 106:
|
||
#line 844 "objc-parse.y"
|
||
{ yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 107:
|
||
#line 846 "objc-parse.y"
|
||
{ yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 109:
|
||
#line 853 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 111:
|
||
#line 862 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 114:
|
||
#line 870 "objc-parse.y"
|
||
{ c_mark_varargs ();
|
||
if (pedantic)
|
||
pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
|
||
break;}
|
||
case 115:
|
||
#line 880 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 120:
|
||
#line 896 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 121:
|
||
#line 900 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 122:
|
||
#line 904 "objc-parse.y"
|
||
{ shadow_tag_warned (yyvsp[-1].ttype, 1);
|
||
pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 123:
|
||
#line 907 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 124:
|
||
#line 916 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 129:
|
||
#line 931 "objc-parse.y"
|
||
{ pending_xref_error ();
|
||
declspec_stack = tree_cons (prefix_attributes,
|
||
current_declspecs,
|
||
declspec_stack);
|
||
split_specs_attrs (yyvsp[0].ttype,
|
||
¤t_declspecs, &prefix_attributes); ;
|
||
break;}
|
||
case 130:
|
||
#line 941 "objc-parse.y"
|
||
{ prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 131:
|
||
#line 946 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 132:
|
||
#line 950 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 133:
|
||
#line 954 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 134:
|
||
#line 958 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 135:
|
||
#line 962 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 136:
|
||
#line 964 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 137:
|
||
#line 966 "objc-parse.y"
|
||
{ RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 138:
|
||
#line 976 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 139:
|
||
#line 978 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 140:
|
||
#line 982 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 141:
|
||
#line 984 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 142:
|
||
#line 986 "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 143:
|
||
#line 991 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 144:
|
||
#line 996 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 145:
|
||
#line 998 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 146:
|
||
#line 1003 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 147:
|
||
#line 1005 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 148:
|
||
#line 1007 "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 149:
|
||
#line 1020 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 150:
|
||
#line 1022 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 151:
|
||
#line 1024 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 152:
|
||
#line 1026 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 153:
|
||
#line 1031 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
|
||
TREE_STATIC (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 154:
|
||
#line 1034 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 155:
|
||
#line 1036 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
|
||
TREE_STATIC (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 156:
|
||
#line 1039 "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 157:
|
||
#line 1053 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 158:
|
||
#line 1055 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 159:
|
||
#line 1059 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 160:
|
||
#line 1061 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 163:
|
||
#line 1071 "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 164:
|
||
#line 1075 "objc-parse.y"
|
||
{ yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 165:
|
||
#line 1077 "objc-parse.y"
|
||
{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 166:
|
||
#line 1082 "objc-parse.y"
|
||
{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 167:
|
||
#line 1084 "objc-parse.y"
|
||
{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 168:
|
||
#line 1086 "objc-parse.y"
|
||
{ yyval.ttype = groktypename (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 176:
|
||
#line 1108 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 177:
|
||
#line 1110 "objc-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 178:
|
||
#line 1117 "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 179:
|
||
#line 1122 "objc-parse.y"
|
||
{ finish_init ();
|
||
finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
|
||
break;}
|
||
case 180:
|
||
#line 1125 "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 181:
|
||
#line 1133 "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 182:
|
||
#line 1138 "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 183:
|
||
#line 1142 "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 184:
|
||
#line 1150 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 185:
|
||
#line 1152 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 186:
|
||
#line 1157 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 187:
|
||
#line 1159 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 188:
|
||
#line 1164 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-2].ttype; ;
|
||
break;}
|
||
case 189:
|
||
#line 1169 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 190:
|
||
#line 1171 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 191:
|
||
#line 1176 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 192:
|
||
#line 1178 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 193:
|
||
#line 1180 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 194:
|
||
#line 1182 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 195:
|
||
#line 1184 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 201:
|
||
#line 1202 "objc-parse.y"
|
||
{ really_start_incremental_init (NULL_TREE); ;
|
||
break;}
|
||
case 202:
|
||
#line 1204 "objc-parse.y"
|
||
{ yyval.ttype = pop_init_level (0); ;
|
||
break;}
|
||
case 203:
|
||
#line 1206 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 204:
|
||
#line 1212 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids empty initializer braces"); ;
|
||
break;}
|
||
case 210:
|
||
#line 1228 "objc-parse.y"
|
||
{ set_init_label (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 213:
|
||
#line 1235 "objc-parse.y"
|
||
{ push_init_level (0); ;
|
||
break;}
|
||
case 214:
|
||
#line 1237 "objc-parse.y"
|
||
{ process_init_element (pop_init_level (0)); ;
|
||
break;}
|
||
case 215:
|
||
#line 1239 "objc-parse.y"
|
||
{ process_init_element (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 219:
|
||
#line 1250 "objc-parse.y"
|
||
{ set_init_label (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 220:
|
||
#line 1258 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids nested functions");
|
||
|
||
push_function_context ();
|
||
if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE))
|
||
{
|
||
pop_function_context ();
|
||
YYERROR1;
|
||
}
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 221:
|
||
#line 1270 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 222:
|
||
#line 1278 "objc-parse.y"
|
||
{ finish_function (1);
|
||
pop_function_context (); ;
|
||
break;}
|
||
case 223:
|
||
#line 1284 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids nested functions");
|
||
|
||
push_function_context ();
|
||
if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE))
|
||
{
|
||
pop_function_context ();
|
||
YYERROR1;
|
||
}
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 224:
|
||
#line 1296 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 225:
|
||
#line 1304 "objc-parse.y"
|
||
{ finish_function (1);
|
||
pop_function_context (); ;
|
||
break;}
|
||
case 228:
|
||
#line 1320 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 229:
|
||
#line 1322 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 230:
|
||
#line 1327 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 231:
|
||
#line 1329 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 232:
|
||
#line 1331 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 233:
|
||
#line 1338 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 236:
|
||
#line 1350 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 237:
|
||
#line 1355 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 238:
|
||
#line 1357 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 239:
|
||
#line 1359 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 240:
|
||
#line 1366 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 242:
|
||
#line 1375 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 243:
|
||
#line 1380 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 244:
|
||
#line 1382 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 245:
|
||
#line 1384 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 246:
|
||
#line 1386 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 247:
|
||
#line 1393 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 249:
|
||
#line 1399 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 250:
|
||
#line 1401 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 251:
|
||
#line 1406 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 252:
|
||
#line 1408 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 253:
|
||
#line 1413 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 254:
|
||
#line 1415 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 255:
|
||
#line 1420 "objc-parse.y"
|
||
{ yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
|
||
/* Start scope of tag before parsing components. */
|
||
;
|
||
break;}
|
||
case 256:
|
||
#line 1424 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 257:
|
||
#line 1426 "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 258:
|
||
#line 1430 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 259:
|
||
#line 1432 "objc-parse.y"
|
||
{ yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 260:
|
||
#line 1434 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 261:
|
||
#line 1436 "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 262:
|
||
#line 1440 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 263:
|
||
#line 1442 "objc-parse.y"
|
||
{ yyval.ttype = start_enum (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 264:
|
||
#line 1444 "objc-parse.y"
|
||
{ yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype),
|
||
chainon (yyvsp[-7].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 265:
|
||
#line 1447 "objc-parse.y"
|
||
{ yyval.ttype = start_enum (NULL_TREE); ;
|
||
break;}
|
||
case 266:
|
||
#line 1449 "objc-parse.y"
|
||
{ yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype),
|
||
chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 267:
|
||
#line 1452 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 271:
|
||
#line 1463 "objc-parse.y"
|
||
{ if (pedantic && ! flag_isoc99)
|
||
pedwarn ("comma at end of enumerator list"); ;
|
||
break;}
|
||
case 272:
|
||
#line 1469 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 273:
|
||
#line 1471 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
pedwarn ("no semicolon at end of struct or union"); ;
|
||
break;}
|
||
case 274:
|
||
#line 1476 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 275:
|
||
#line 1478 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 276:
|
||
#line 1480 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified"); ;
|
||
break;}
|
||
case 277:
|
||
#line 1484 "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 278:
|
||
#line 1509 "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); ;
|
||
break;}
|
||
case 279:
|
||
#line 1514 "objc-parse.y"
|
||
{
|
||
/* Support for unnamed structs or unions as members of
|
||
structs or unions (which is [a] useful and [b] supports
|
||
MS P-SDK). */
|
||
if (pedantic)
|
||
pedwarn ("ANSI C doesn't support unnamed structs/unions");
|
||
|
||
yyval.ttype = grokfield(yyvsp[-2].filename, yyvsp[-1].lineno, NULL, current_declspecs, NULL_TREE);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
;
|
||
break;}
|
||
case 280:
|
||
#line 1527 "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); ;
|
||
break;}
|
||
case 281:
|
||
#line 1532 "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 282:
|
||
#line 1537 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 283:
|
||
#line 1539 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 285:
|
||
#line 1546 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 286:
|
||
#line 1551 "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 287:
|
||
#line 1555 "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 288:
|
||
#line 1558 "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 290:
|
||
#line 1570 "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 291:
|
||
#line 1575 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 292:
|
||
#line 1581 "objc-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 293:
|
||
#line 1583 "objc-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 294:
|
||
#line 1588 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 295:
|
||
#line 1590 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 296:
|
||
#line 1595 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 298:
|
||
#line 1601 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 299:
|
||
#line 1603 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 300:
|
||
#line 1608 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 301:
|
||
#line 1610 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 302:
|
||
#line 1615 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 303:
|
||
#line 1618 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 304:
|
||
#line 1620 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 305:
|
||
#line 1622 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 306:
|
||
#line 1624 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 307:
|
||
#line 1626 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 308:
|
||
#line 1628 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 309:
|
||
#line 1630 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 310:
|
||
#line 1632 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 311:
|
||
#line 1636 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 312:
|
||
#line 1645 "objc-parse.y"
|
||
{
|
||
if (pedantic && yyvsp[0].ends_in_label)
|
||
pedwarn ("ANSI C forbids label at end of compound statement");
|
||
;
|
||
break;}
|
||
case 314:
|
||
#line 1654 "objc-parse.y"
|
||
{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
|
||
break;}
|
||
case 315:
|
||
#line 1656 "objc-parse.y"
|
||
{ yyval.ends_in_label = 0; ;
|
||
break;}
|
||
case 319:
|
||
#line 1668 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
expand_start_bindings (0);
|
||
if (objc_method_context)
|
||
add_objc_decls ();
|
||
;
|
||
break;}
|
||
case 321:
|
||
#line 1682 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids label declarations"); ;
|
||
break;}
|
||
case 324:
|
||
#line 1693 "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 325:
|
||
#line 1707 "objc-parse.y"
|
||
{;
|
||
break;}
|
||
case 327:
|
||
#line 1711 "objc-parse.y"
|
||
{ compstmt_count++; ;
|
||
break;}
|
||
case 328:
|
||
#line 1714 "objc-parse.y"
|
||
{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
|
||
break;}
|
||
case 329:
|
||
#line 1716 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_end_bindings (getdecls (), 1, 0);
|
||
yyval.ttype = poplevel (1, 1, 0); ;
|
||
break;}
|
||
case 330:
|
||
#line 1720 "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); ;
|
||
break;}
|
||
case 331:
|
||
#line 1724 "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); ;
|
||
break;}
|
||
case 332:
|
||
#line 1731 "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 ();
|
||
compstmt_count++;
|
||
;
|
||
break;}
|
||
case 333:
|
||
#line 1748 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 336:
|
||
#line 1762 "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 337:
|
||
#line 1776 "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 338:
|
||
#line 1784 "objc-parse.y"
|
||
{ expand_loop_continue_here (); ;
|
||
break;}
|
||
case 339:
|
||
#line 1788 "objc-parse.y"
|
||
{ yyval.filename = input_filename; ;
|
||
break;}
|
||
case 340:
|
||
#line 1792 "objc-parse.y"
|
||
{ yyval.lineno = lineno; ;
|
||
break;}
|
||
case 341:
|
||
#line 1797 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 342:
|
||
#line 1802 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 343:
|
||
#line 1807 "objc-parse.y"
|
||
{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
|
||
break;}
|
||
case 344:
|
||
#line 1812 "objc-parse.y"
|
||
{ yyval.ends_in_label = 0; ;
|
||
break;}
|
||
case 345:
|
||
#line 1814 "objc-parse.y"
|
||
{ yyval.ends_in_label = 1; ;
|
||
break;}
|
||
case 346:
|
||
#line 1820 "objc-parse.y"
|
||
{ stmt_count++; ;
|
||
break;}
|
||
case 348:
|
||
#line 1823 "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); ;
|
||
break;}
|
||
case 349:
|
||
#line 1839 "objc-parse.y"
|
||
{ c_expand_start_else ();
|
||
yyvsp[-1].itype = stmt_count;
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 350:
|
||
#line 1843 "objc-parse.y"
|
||
{ c_expand_end_cond ();
|
||
if (extra_warnings && stmt_count == yyvsp[-3].itype)
|
||
warning ("empty body in an else-statement"); ;
|
||
break;}
|
||
case 351:
|
||
#line 1847 "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 352:
|
||
#line 1859 "objc-parse.y"
|
||
{ c_expand_end_cond (); ;
|
||
break;}
|
||
case 353:
|
||
#line 1861 "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 354:
|
||
#line 1871 "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 355:
|
||
#line 1880 "objc-parse.y"
|
||
{ expand_end_loop (); ;
|
||
break;}
|
||
case 356:
|
||
#line 1883 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_exit_loop_if_false (NULL_PTR,
|
||
truthvalue_conversion (yyvsp[-2].ttype));
|
||
expand_end_loop (); ;
|
||
break;}
|
||
case 357:
|
||
#line 1889 "objc-parse.y"
|
||
{ expand_end_loop (); ;
|
||
break;}
|
||
case 358:
|
||
#line 1892 "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 359:
|
||
#line 1904 "objc-parse.y"
|
||
{ yyvsp[0].lineno = lineno;
|
||
yyval.filename = input_filename; ;
|
||
break;}
|
||
case 360:
|
||
#line 1907 "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));
|
||
yyvsp[-3].lineno = lineno;
|
||
yyvsp[-2].filename = input_filename;
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 361:
|
||
#line 1920 "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);
|
||
expand_end_loop (); ;
|
||
break;}
|
||
case 362:
|
||
#line 1927 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
|
||
c_expand_start_case (yyvsp[-1].ttype);
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 363:
|
||
#line 1932 "objc-parse.y"
|
||
{ expand_end_case (yyvsp[-3].ttype); ;
|
||
break;}
|
||
case 364:
|
||
#line 1934 "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 365:
|
||
#line 1939 "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 366:
|
||
#line 1944 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
|
||
c_expand_return (NULL_TREE); ;
|
||
break;}
|
||
case 367:
|
||
#line 1948 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
|
||
c_expand_return (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 368:
|
||
#line 1952 "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 369:
|
||
#line 1963 "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 370:
|
||
#line 1970 "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 371:
|
||
#line 1978 "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 372:
|
||
#line 1984 "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 373:
|
||
#line 1995 "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 376:
|
||
#line 2010 "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 377:
|
||
#line 2031 "objc-parse.y"
|
||
{
|
||
if (yyvsp[-1].itype)
|
||
iterator_for_loop_end (yyvsp[-3].ttype);
|
||
;
|
||
break;}
|
||
case 378:
|
||
#line 2062 "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 379:
|
||
#line 2093 "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 380:
|
||
#line 2124 "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 381:
|
||
#line 2139 "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 382:
|
||
#line 2154 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 383:
|
||
#line 2157 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno); ;
|
||
break;}
|
||
case 384:
|
||
#line 2162 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 386:
|
||
#line 2169 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 389:
|
||
#line 2176 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 390:
|
||
#line 2181 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 391:
|
||
#line 2186 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
|
||
break;}
|
||
case 392:
|
||
#line 2188 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 393:
|
||
#line 2194 "objc-parse.y"
|
||
{ pushlevel (0);
|
||
clear_parm_order ();
|
||
declare_parm_level (0); ;
|
||
break;}
|
||
case 394:
|
||
#line 2198 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
parmlist_tags_warning ();
|
||
poplevel (0, 0, 0); ;
|
||
break;}
|
||
case 396:
|
||
#line 2206 "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 397:
|
||
#line 2214 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 398:
|
||
#line 2216 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 399:
|
||
#line 2222 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (0); ;
|
||
break;}
|
||
case 400:
|
||
#line 2224 "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 401:
|
||
#line 2234 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (1); ;
|
||
break;}
|
||
case 402:
|
||
#line 2236 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (0); ;
|
||
break;}
|
||
case 403:
|
||
#line 2241 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 404:
|
||
#line 2243 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 405:
|
||
#line 2250 "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); ;
|
||
break;}
|
||
case 406:
|
||
#line 2258 "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); ;
|
||
break;}
|
||
case 407:
|
||
#line 2266 "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); ;
|
||
break;}
|
||
case 408:
|
||
#line 2274 "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); ;
|
||
break;}
|
||
case 409:
|
||
#line 2283 "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); ;
|
||
break;}
|
||
case 410:
|
||
#line 2296 "objc-parse.y"
|
||
{ pushlevel (0);
|
||
clear_parm_order ();
|
||
declare_parm_level (1); ;
|
||
break;}
|
||
case 411:
|
||
#line 2300 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
parmlist_tags_warning ();
|
||
poplevel (0, 0, 0); ;
|
||
break;}
|
||
case 413:
|
||
#line 2308 "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 414:
|
||
#line 2318 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 415:
|
||
#line 2320 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 416:
|
||
#line 2326 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 417:
|
||
#line 2328 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 418:
|
||
#line 2333 "objc-parse.y"
|
||
{ yyval.ttype = SAVE_WARN_FLAGS();
|
||
pedantic = 0;
|
||
warn_pointer_arith = 0; ;
|
||
break;}
|
||
case 424:
|
||
#line 2347 "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 425:
|
||
#line 2362 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 426:
|
||
#line 2364 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 427:
|
||
#line 2369 "objc-parse.y"
|
||
{
|
||
objc_declare_class (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 428:
|
||
#line 2375 "objc-parse.y"
|
||
{
|
||
objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 429:
|
||
#line 2381 "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 430:
|
||
#line 2387 "objc-parse.y"
|
||
{
|
||
continue_class (objc_interface_context);
|
||
;
|
||
break;}
|
||
case 431:
|
||
#line 2392 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 432:
|
||
#line 2398 "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 433:
|
||
#line 2405 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 434:
|
||
#line 2411 "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 435:
|
||
#line 2417 "objc-parse.y"
|
||
{
|
||
continue_class (objc_interface_context);
|
||
;
|
||
break;}
|
||
case 436:
|
||
#line 2422 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 437:
|
||
#line 2428 "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 438:
|
||
#line 2435 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 439:
|
||
#line 2441 "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 440:
|
||
#line 2447 "objc-parse.y"
|
||
{
|
||
objc_ivar_chain
|
||
= continue_class (objc_implementation_context);
|
||
;
|
||
break;}
|
||
case 441:
|
||
#line 2453 "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 442:
|
||
#line 2461 "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 443:
|
||
#line 2467 "objc-parse.y"
|
||
{
|
||
objc_ivar_chain
|
||
= continue_class (objc_implementation_context);
|
||
;
|
||
break;}
|
||
case 444:
|
||
#line 2473 "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 445:
|
||
#line 2481 "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 446:
|
||
#line 2488 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 447:
|
||
#line 2494 "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 448:
|
||
#line 2504 "objc-parse.y"
|
||
{
|
||
remember_protocol_qualifiers ();
|
||
objc_interface_context
|
||
= start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 449:
|
||
#line 2510 "objc-parse.y"
|
||
{
|
||
forget_protocol_qualifiers();
|
||
finish_protocol(objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 450:
|
||
#line 2519 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 452:
|
||
#line 2527 "objc-parse.y"
|
||
{
|
||
if (yyvsp[-2].code == LT_EXPR && yyvsp[0].code == GT_EXPR)
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
else
|
||
YYERROR1;
|
||
;
|
||
break;}
|
||
case 455:
|
||
#line 2541 "objc-parse.y"
|
||
{ objc_public_flag = 2; ;
|
||
break;}
|
||
case 456:
|
||
#line 2542 "objc-parse.y"
|
||
{ objc_public_flag = 0; ;
|
||
break;}
|
||
case 457:
|
||
#line 2543 "objc-parse.y"
|
||
{ objc_public_flag = 1; ;
|
||
break;}
|
||
case 458:
|
||
#line 2548 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 460:
|
||
#line 2553 "objc-parse.y"
|
||
{
|
||
if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified");
|
||
;
|
||
break;}
|
||
case 461:
|
||
#line 2571 "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); ;
|
||
break;}
|
||
case 462:
|
||
#line 2576 "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); ;
|
||
break;}
|
||
case 463:
|
||
#line 2581 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 464:
|
||
#line 2586 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 467:
|
||
#line 2593 "objc-parse.y"
|
||
{
|
||
yyval.ttype = add_instance_variable (objc_ivar_context,
|
||
objc_public_flag,
|
||
yyvsp[0].ttype, current_declspecs,
|
||
NULL_TREE);
|
||
;
|
||
break;}
|
||
case 468:
|
||
#line 2600 "objc-parse.y"
|
||
{
|
||
yyval.ttype = add_instance_variable (objc_ivar_context,
|
||
objc_public_flag,
|
||
yyvsp[-2].ttype, current_declspecs, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 469:
|
||
#line 2606 "objc-parse.y"
|
||
{
|
||
yyval.ttype = add_instance_variable (objc_ivar_context,
|
||
objc_public_flag,
|
||
NULL_TREE,
|
||
current_declspecs, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 470:
|
||
#line 2616 "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 471:
|
||
#line 2624 "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 472:
|
||
#line 2631 "objc-parse.y"
|
||
{
|
||
continue_method_def ();
|
||
;
|
||
break;}
|
||
case 473:
|
||
#line 2635 "objc-parse.y"
|
||
{
|
||
finish_method_def ();
|
||
objc_method_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 474:
|
||
#line 2641 "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 475:
|
||
#line 2649 "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 476:
|
||
#line 2656 "objc-parse.y"
|
||
{
|
||
continue_method_def ();
|
||
;
|
||
break;}
|
||
case 477:
|
||
#line 2660 "objc-parse.y"
|
||
{
|
||
finish_method_def ();
|
||
objc_method_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 479:
|
||
#line 2672 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 484:
|
||
#line 2679 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 488:
|
||
#line 2689 "objc-parse.y"
|
||
{
|
||
/* Remember protocol qualifiers in prototypes. */
|
||
remember_protocol_qualifiers ();
|
||
objc_inherit_code = CLASS_METHOD_DECL;
|
||
;
|
||
break;}
|
||
case 489:
|
||
#line 2695 "objc-parse.y"
|
||
{
|
||
/* Forget protocol qualifiers here. */
|
||
forget_protocol_qualifiers ();
|
||
add_class_method (objc_interface_context, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 491:
|
||
#line 2703 "objc-parse.y"
|
||
{
|
||
/* Remember protocol qualifiers in prototypes. */
|
||
remember_protocol_qualifiers ();
|
||
objc_inherit_code = INSTANCE_METHOD_DECL;
|
||
;
|
||
break;}
|
||
case 492:
|
||
#line 2709 "objc-parse.y"
|
||
{
|
||
/* Forget protocol qualifiers here. */
|
||
forget_protocol_qualifiers ();
|
||
add_instance_method (objc_interface_context, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 494:
|
||
#line 2719 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 495:
|
||
#line 2724 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 496:
|
||
#line 2729 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 497:
|
||
#line 2734 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 506:
|
||
#line 2764 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack); ;
|
||
break;}
|
||
case 507:
|
||
#line 2768 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 508:
|
||
#line 2770 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 509:
|
||
#line 2775 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 510:
|
||
#line 2777 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 511:
|
||
#line 2785 "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 512:
|
||
#line 2790 "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 513:
|
||
#line 2795 "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 514:
|
||
#line 2803 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 515:
|
||
#line 2807 "objc-parse.y"
|
||
{
|
||
/* oh what a kludge! */
|
||
yyval.ttype = (tree)1;
|
||
;
|
||
break;}
|
||
case 516:
|
||
#line 2812 "objc-parse.y"
|
||
{
|
||
pushlevel (0);
|
||
;
|
||
break;}
|
||
case 517:
|
||
#line 2816 "objc-parse.y"
|
||
{
|
||
/* returns a tree list node generated by get_parm_info */
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
poplevel (0, 0, 0);
|
||
;
|
||
break;}
|
||
case 520:
|
||
#line 2831 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 525:
|
||
#line 2844 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 526:
|
||
#line 2845 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 527:
|
||
#line 2846 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 528:
|
||
#line 2847 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 529:
|
||
#line 2848 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 530:
|
||
#line 2849 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 531:
|
||
#line 2850 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 532:
|
||
#line 2851 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 533:
|
||
#line 2852 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 534:
|
||
#line 2853 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 535:
|
||
#line 2854 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 536:
|
||
#line 2855 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 537:
|
||
#line 2856 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 538:
|
||
#line 2857 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 539:
|
||
#line 2858 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 540:
|
||
#line 2859 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 541:
|
||
#line 2860 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 542:
|
||
#line 2861 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 543:
|
||
#line 2862 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 546:
|
||
#line 2868 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 547:
|
||
#line 2873 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 548:
|
||
#line 2878 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 549:
|
||
#line 2883 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 553:
|
||
#line 2896 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 554:
|
||
#line 2904 "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 555:
|
||
#line 2916 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 556:
|
||
#line 2920 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 558:
|
||
#line 2928 "objc-parse.y"
|
||
{
|
||
yyval.ttype = get_class_reference (yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 559:
|
||
#line 2935 "objc-parse.y"
|
||
{ objc_receiver_context = 1; ;
|
||
break;}
|
||
case 560:
|
||
#line 2937 "objc-parse.y"
|
||
{ objc_receiver_context = 0; ;
|
||
break;}
|
||
case 561:
|
||
#line 2939 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 565:
|
||
#line 2952 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 566:
|
||
#line 2959 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 567:
|
||
#line 2963 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 568:
|
||
#line 2970 "objc-parse.y"
|
||
{
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 569:
|
||
#line 2977 "objc-parse.y"
|
||
{
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 570:
|
||
#line 2986 "objc-parse.y"
|
||
{
|
||
yyval.ttype = groktypename (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
}
|
||
/* the action file gets copied in in place of this dollarsign */
|
||
#line 543 "/usr/share/misc/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;
|
||
|
||
yyacceptlab:
|
||
/* YYACCEPT comes here. */
|
||
if (yyfree_stacks)
|
||
{
|
||
free (yyss);
|
||
free (yyvs);
|
||
#ifdef YYLSP_NEEDED
|
||
free (yyls);
|
||
#endif
|
||
}
|
||
return 0;
|
||
|
||
yyabortlab:
|
||
/* YYABORT comes here. */
|
||
if (yyfree_stacks)
|
||
{
|
||
free (yyss);
|
||
free (yyvs);
|
||
#ifdef YYLSP_NEEDED
|
||
free (yyls);
|
||
#endif
|
||
}
|
||
return 1;
|
||
}
|
||
#line 2991 "objc-parse.y"
|
||
|