5283 lines
205 KiB
C
5283 lines
205 KiB
C
|
||
/* A Bison parser, made from objc-parse.y
|
||
by GNU Bison version 1.25
|
||
*/
|
||
|
||
#define YYBISON 1 /* Identify Bison output. */
|
||
|
||
#define IDENTIFIER 258
|
||
#define TYPENAME 259
|
||
#define SCSPEC 260
|
||
#define TYPESPEC 261
|
||
#define TYPE_QUAL 262
|
||
#define CONSTANT 263
|
||
#define STRING 264
|
||
#define ELLIPSIS 265
|
||
#define SIZEOF 266
|
||
#define ENUM 267
|
||
#define STRUCT 268
|
||
#define UNION 269
|
||
#define IF 270
|
||
#define ELSE 271
|
||
#define WHILE 272
|
||
#define DO 273
|
||
#define FOR 274
|
||
#define SWITCH 275
|
||
#define CASE 276
|
||
#define DEFAULT 277
|
||
#define BREAK 278
|
||
#define CONTINUE 279
|
||
#define RETURN 280
|
||
#define GOTO 281
|
||
#define ASM_KEYWORD 282
|
||
#define TYPEOF 283
|
||
#define ALIGNOF 284
|
||
#define ATTRIBUTE 285
|
||
#define EXTENSION 286
|
||
#define LABEL 287
|
||
#define REALPART 288
|
||
#define IMAGPART 289
|
||
#define VA_ARG 290
|
||
#define END_OF_LINE 291
|
||
#define ASSIGN 292
|
||
#define OROR 293
|
||
#define ANDAND 294
|
||
#define EQCOMPARE 295
|
||
#define ARITHCOMPARE 296
|
||
#define LSHIFT 297
|
||
#define RSHIFT 298
|
||
#define UNARY 299
|
||
#define PLUSPLUS 300
|
||
#define MINUSMINUS 301
|
||
#define HYPERUNARY 302
|
||
#define POINTSAT 303
|
||
#define INTERFACE 304
|
||
#define IMPLEMENTATION 305
|
||
#define END 306
|
||
#define SELECTOR 307
|
||
#define DEFS 308
|
||
#define ENCODE 309
|
||
#define CLASSNAME 310
|
||
#define PUBLIC 311
|
||
#define PRIVATE 312
|
||
#define PROTECTED 313
|
||
#define PROTOCOL 314
|
||
#define OBJECTNAME 315
|
||
#define CLASS 316
|
||
#define ALIAS 317
|
||
#define OBJC_STRING 318
|
||
|
||
#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;
|
||
|
||
/* Objective-C specific information */
|
||
|
||
tree objc_interface_context;
|
||
tree objc_implementation_context;
|
||
tree objc_method_context;
|
||
tree objc_ivar_chain;
|
||
tree objc_ivar_context;
|
||
enum tree_code objc_inherit_code;
|
||
int objc_receiver_context;
|
||
int objc_public_flag;
|
||
|
||
|
||
/* Tell yyparse how to print a token's value, if yydebug is set. */
|
||
|
||
#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
|
||
extern void yyprint PROTO ((FILE *, int, YYSTYPE));
|
||
|
||
/* 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 965
|
||
#define YYFLAG -32768
|
||
#define YYNTBASE 86
|
||
|
||
#define YYTRANSLATE(x) ((unsigned)(x) <= 318 ? 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, 2, 3, 4, 5,
|
||
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
||
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
||
36, 37, 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, 864,
|
||
868, 870, 872, 875, 877, 881, 886, 893, 899, 901,
|
||
905, 907, 909, 913, 916, 919, 920, 922, 924, 927,
|
||
928, 931, 935, 939, 942, 946, 951, 955, 958, 962,
|
||
965, 969, 971, 973, 976, 979, 980, 982, 985, 986,
|
||
987, 989, 991, 994, 998, 1000, 1003, 1005, 1007, 1013,
|
||
1018, 1023, 1026, 1029, 1032, 1035, 1040, 1041, 1046, 1047,
|
||
1048, 1052, 1057, 1061, 1063, 1065, 1067, 1069, 1072, 1073,
|
||
1078, 1080, 1084, 1085, 1086, 1094, 1100, 1103, 1104, 1105,
|
||
1106, 1119, 1120, 1127, 1130, 1133, 1136, 1140, 1147, 1156,
|
||
1167, 1180, 1184, 1189, 1191, 1193, 1194, 1201, 1205, 1211,
|
||
1214, 1218, 1219, 1221, 1222, 1224, 1225, 1227, 1229, 1233,
|
||
1238, 1240, 1244, 1245, 1248, 1251, 1252, 1257, 1260, 1261,
|
||
1263, 1265, 1269, 1271, 1275, 1280, 1285, 1290, 1295, 1300,
|
||
1301, 1304, 1306, 1309, 1311, 1315, 1317, 1321, 1323, 1325,
|
||
1327, 1329, 1331, 1333, 1335, 1337, 1341, 1345, 1350, 1351,
|
||
1352, 1363, 1364, 1371, 1372, 1373, 1386, 1387, 1396, 1397,
|
||
1404, 1407, 1408, 1417, 1422, 1423, 1433, 1439, 1440, 1447,
|
||
1448, 1450, 1454, 1458, 1460, 1462, 1464, 1466, 1467, 1471,
|
||
1474, 1478, 1482, 1484, 1485, 1487, 1491, 1493, 1497, 1500,
|
||
1501, 1502, 1503, 1511, 1512, 1513, 1514, 1522, 1523, 1524,
|
||
1527, 1529, 1531, 1534, 1535, 1539, 1541, 1543, 1544, 1545,
|
||
1551, 1552, 1553, 1559, 1564, 1566, 1572, 1575, 1576, 1579,
|
||
1580, 1582, 1584, 1586, 1589, 1592, 1597, 1600, 1603, 1605,
|
||
1609, 1612, 1615, 1618, 1619, 1622, 1623, 1627, 1629, 1631,
|
||
1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652,
|
||
1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672,
|
||
1674, 1676, 1678, 1680, 1682, 1684, 1691, 1695, 1701, 1704,
|
||
1706, 1708, 1710, 1713, 1715, 1719, 1722, 1724, 1726, 1727,
|
||
1728, 1735, 1737, 1739, 1741, 1744, 1747, 1749, 1754, 1759
|
||
};
|
||
|
||
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, 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,
|
||
246, 251, 265, 267, 267, 268, 270, 272, 273, 274,
|
||
282, 286, 297, 302, 307, 309, 311, 312, 313, 318,
|
||
325, 327, 332, 337, 343, 345, 350, 355, 361, 363,
|
||
368, 375, 377, 378, 379, 382, 384, 386, 388, 390,
|
||
392, 394, 398, 402, 405, 408, 411, 415, 417, 420,
|
||
423, 427, 455, 461, 464, 467, 470, 472, 474, 478,
|
||
482, 486, 488, 491, 495, 522, 524, 526, 528, 530,
|
||
532, 534, 536, 538, 540, 542, 544, 546, 548, 552,
|
||
554, 558, 560, 563, 567, 569, 576, 579, 587, 598,
|
||
758, 759, 761, 767, 769, 792, 801, 803, 805, 817,
|
||
831, 833, 835, 837, 839, 841, 843, 848, 850, 856,
|
||
858, 862, 864, 865, 875, 880, 882, 883, 884, 891,
|
||
897, 902, 905, 913, 918, 920, 921, 922, 929, 940,
|
||
944, 950, 955, 960, 965, 967, 969, 978, 981, 985,
|
||
987, 989, 994, 998, 1001, 1005, 1008, 1010, 1022, 1025,
|
||
1027, 1029, 1033, 1037, 1039, 1042, 1055, 1058, 1062, 1064,
|
||
1072, 1073, 1074, 1078, 1080, 1085, 1087, 1089, 1095, 1096,
|
||
1097, 1100, 1102, 1105, 1107, 1110, 1113, 1119, 1126, 1128,
|
||
1135, 1142, 1145, 1152, 1155, 1159, 1162, 1166, 1171, 1174,
|
||
1178, 1181, 1183, 1185, 1187, 1194, 1196, 1197, 1198, 1203,
|
||
1205, 1210, 1218, 1223, 1227, 1230, 1232, 1237, 1239, 1240,
|
||
1243, 1243, 1246, 1249, 1251, 1253, 1256, 1258, 1261, 1269,
|
||
1283, 1291, 1295, 1309, 1317, 1324, 1326, 1331, 1334, 1339,
|
||
1341, 1343, 1350, 1352, 1353, 1361, 1367, 1369, 1371, 1378,
|
||
1380, 1386, 1392, 1394, 1396, 1398, 1405, 1407, 1410, 1413,
|
||
1417, 1420, 1424, 1427, 1431, 1436, 1438, 1442, 1444, 1446,
|
||
1448, 1452, 1454, 1457, 1460, 1463, 1466, 1470, 1472, 1475,
|
||
1477, 1482, 1485, 1490, 1492, 1494, 1498, 1522, 1529, 1534,
|
||
1540, 1545, 1547, 1552, 1554, 1558, 1562, 1566, 1576, 1578,
|
||
1583, 1588, 1591, 1595, 1598, 1602, 1605, 1608, 1611, 1615,
|
||
1618, 1622, 1626, 1628, 1630, 1632, 1634, 1636, 1638, 1640,
|
||
1644, 1652, 1660, 1662, 1664, 1668, 1670, 1673, 1676, 1689,
|
||
1691, 1696, 1698, 1701, 1715, 1718, 1721, 1723, 1725, 1733,
|
||
1741, 1751, 1769, 1774, 1779, 1782, 1796, 1805, 1809, 1813,
|
||
1817, 1823, 1827, 1832, 1835, 1840, 1843, 1844, 1861, 1866,
|
||
1869, 1881, 1883, 1893, 1903, 1904, 1912, 1915, 1927, 1931,
|
||
1948, 1958, 1967, 1972, 1977, 1982, 1986, 1990, 2001, 2008,
|
||
2015, 2022, 2033, 2039, 2042, 2047, 2070, 2104, 2135, 2166,
|
||
2181, 2195, 2199, 2203, 2206, 2211, 2213, 2216, 2218, 2222,
|
||
2227, 2230, 2236, 2241, 2246, 2248, 2257, 2258, 2264, 2266,
|
||
2276, 2278, 2282, 2285, 2291, 2301, 2310, 2319, 2329, 2343,
|
||
2348, 2353, 2355, 2364, 2367, 2372, 2375, 2379, 2387, 2389,
|
||
2390, 2391, 2392, 2393, 2407, 2410, 2414, 2420, 2426, 2433,
|
||
2438, 2444, 2451, 2457, 2463, 2468, 2474, 2481, 2487, 2493,
|
||
2499, 2507, 2513, 2519, 2527, 2534, 2540, 2549, 2556, 2564,
|
||
2569, 2572, 2582, 2584, 2587, 2589, 2590, 2593, 2598, 2599,
|
||
2616, 2623, 2629, 2633, 2636, 2637, 2640, 2648, 2654, 2663,
|
||
2673, 2680, 2684, 2689, 2698, 2705, 2709, 2719, 2721, 2722,
|
||
2724, 2726, 2727, 2728, 2729, 2731, 2733, 2736, 2744, 2751,
|
||
2751, 2758, 2764, 2766, 2772, 2777, 2782, 2791, 2793, 2799,
|
||
2801, 2804, 2806, 2807, 2808, 2811, 2817, 2819, 2823, 2826,
|
||
2833, 2839, 2844, 2851, 2856, 2861, 2866, 2873, 2877, 2880,
|
||
2886, 2888, 2889, 2890, 2893, 2895, 2896, 2897, 2898, 2899,
|
||
2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909,
|
||
2910, 2911, 2912, 2913, 2913, 2916, 2922, 2927, 2932, 2938,
|
||
2940, 2943, 2945, 2952, 2964, 2969, 2975, 2977, 2983, 2987,
|
||
2988, 2994, 2996, 2999, 3001, 3007, 3012, 3018, 3025, 3034
|
||
};
|
||
#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, 1, 3,
|
||
1, 1, 2, 1, 3, 4, 6, 5, 1, 3,
|
||
1, 1, 3, 2, 2, 0, 1, 1, 2, 0,
|
||
2, 3, 3, 2, 3, 4, 3, 2, 3, 2,
|
||
3, 1, 1, 2, 2, 0, 1, 2, 0, 0,
|
||
1, 1, 2, 3, 1, 2, 1, 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, 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, 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, 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[] = { 963,
|
||
1, 2, 3, 28, 29, 30, 343, 588, 349, 591,
|
||
200, 460, 695, 123, 236, 404, 125, 126, 127, 128,
|
||
129, 604, 130, 389, 388, 386, 709, 387, 131, 132,
|
||
133, 330, 331, 332, 583, 510, 511, 31, 195, 731,
|
||
450, 91, 584, 676, 451, 34, 142, 286, 35, 218,
|
||
206, 78, 201, 207, 682, 79, 587, 335, 336, 37,
|
||
295, 296, 297, 680, 781, 697, 698, 699, 852, 700,
|
||
788, 701, 702, 870, 904, 934, 873, 906, 935, 322,
|
||
210, 745, 211, 38, 39, 40, 41, 358, 360, 365,
|
||
227, 792, 487, 222, 223, 355, 593, 594, 363, 364,
|
||
144, 747, 145, 191, 285, 512, 513, 618, 333, 276,
|
||
409, 410, 411, 580, 581, 277, 134, 582, 735, 736,
|
||
737, 800, 821, 464, 822, 516, 738, 739, 876, 799,
|
||
925, 915, 944, 957, 916, 740, 741, 914, 742, 812,
|
||
860, 930, 931, 932, 955, 415, 416, 452, 665, 453,
|
||
454, 455, 325, 326, 456, 457, 508, 135, 43, 64,
|
||
44, 45, 46, 438, 754, 312, 638, 880, 545, 315,
|
||
557, 640, 47, 316, 69, 48, 443, 562, 444, 567,
|
||
761, 762, 49, 65, 302, 539, 66, 308, 543, 439,
|
||
440, 555, 647, 884, 556, 642, 835, 643, 836, 175,
|
||
430, 536, 537, 538, 748, 749, 304, 432, 176, 177,
|
||
178, 179, 180, 607, 608, 704, 609, 372, 136, 238,
|
||
492, 375, 376, 377, 137, 138, 139
|
||
};
|
||
|
||
static const short yypact[] = { 101,
|
||
110, 3362, 3362, 129,-32768,-32768,-32768,-32768, 94, 94,
|
||
94, 134, 169, 178,-32768, 303,-32768,-32768, 303, 303,
|
||
-32768, 80, 303, 80, 303, 303,-32768,-32768,-32768,-32768,
|
||
112, 177, 2761, 217,-32768, 94,-32768, 82, 133, 239,
|
||
-32768, 3362,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 94, 94, 94, 2998, 2830, 211,-32768,-32768,
|
||
-32768,-32768,-32768, 46, 3614, 3614, 210, 51,-32768,-32768,
|
||
80,-32768, 231, 303,-32768,-32768, 112, 336,-32768, 94,
|
||
1979,-32768, 601,-32768, 112, 217,-32768, 94,-32768,-32768,
|
||
677,-32768, 207, 78, 207, 196,-32768, 200,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 2998, 2998, 237, 303,-32768,-32768,
|
||
-32768, 2998,-32768,-32768, 1497,-32768, 261, 272, 299,-32768,
|
||
-32768,-32768, 2998, 292, 310,-32768, 3054, 3110,-32768, 3935,
|
||
735, 366, 326, 1011, 2998,-32768,-32768,-32768,-32768,-32768,
|
||
340, 497,-32768, 343, 3738, 322,-32768, 303,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 278, 3809,-32768,-32768,-32768, 2720, 386,-32768,-32768,
|
||
-32768, 303, 303, 348, 303, 303,-32768,-32768,-32768, 367,
|
||
460, 47,-32768, 601, 112,-32768, 390,-32768, 2173, 2152,
|
||
94,-32768,-32768, 601,-32768, 345,-32768, 94, 2066, 293,
|
||
306, 383, 2007, 677,-32768,-32768,-32768,-32768, 94,-32768,
|
||
393, 381, 3282,-32768, 411,-32768, 127,-32768,-32768,-32768,
|
||
2998,-32768,-32768, 427,-32768, 432, 448, 2886, 3644, 3809,
|
||
303,-32768, 462, 2998, 1497,-32768, 1497,-32768, 2998, 2998,
|
||
491,-32768,-32768, 2998, 2998, 2998, 2998, 2998, 2998, 2998,
|
||
2998, 2998, 2998, 2998, 2998,-32768,-32768, 303, 303, 2998,
|
||
2998,-32768,-32768, 461,-32768, 518, 479,-32768,-32768,-32768,
|
||
497, 2234, 94,-32768, 377, 753,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 35,-32768, 522,-32768, 3809,-32768,
|
||
490, 510, 583,-32768, 386,-32768, 395, 510, 80, 517,
|
||
-32768, 535, 529, 523,-32768, 535,-32768,-32768, 306,-32768,
|
||
-32768, 590, 306, 610,-32768, 1209,-32768, 540, 547,-32768,
|
||
290, 95,-32768,-32768, 589, 94, 328, 171,-32768, 601,
|
||
601,-32768, 2152, 94,-32768, 2295,-32768,-32768, 2152, 560,
|
||
94,-32768,-32768, 414, 554, 801, 3550, 207, 94, 207,
|
||
-32768, 596, 553,-32768, 127, 3856,-32768,-32768, 2638,-32768,
|
||
-32768,-32768,-32768, 597, 561, 3644,-32768, 564, 565,-32768,
|
||
3935, 568, 569, 3935, 3935, 2998, 618, 2998, 2998, 845,
|
||
1546, 1152, 1626, 1553, 814, 814, 333, 333,-32768,-32768,
|
||
-32768,-32768,-32768, 572, 310, 576,-32768, 303, 1246, 518,
|
||
-32768,-32768, 644, 284,-32768, 3467,-32768, 578, 497,-32768,
|
||
2356,-32768, 753, 587, 322, 3166, 593, 3679, 2094,-32768,
|
||
-32768, 3392, 3809,-32768,-32768, 584, 80,-32768, 611, 3439,
|
||
-32768,-32768, 342, 3245, 613, 83, 602,-32768,-32768,-32768,
|
||
3797,-32768, 603, 397,-32768,-32768, 38,-32768,-32768, 65,
|
||
-32768,-32768,-32768, 2018,-32768, 293,-32768,-32768, 293,-32768,
|
||
650,-32768,-32768, 609,-32768, 621,-32768,-32768,-32768,-32768,
|
||
-32768, 622,-32768, 623, 2998, 303, 628, 553, 3809,-32768,
|
||
-32768, 3709,-32768,-32768, 597,-32768,-32768,-32768,-32768,-32768,
|
||
653, 2998, 1054, 1469,-32768,-32768,-32768, 400, 423, 1113,
|
||
632, 637, 908,-32768,-32768,-32768,-32768, 377,-32768,-32768,
|
||
-32768, 377,-32768,-32768, 616,-32768,-32768, 67, 640, 303,
|
||
-32768, 2720, 645, 3497,-32768,-32768, 3797, 2114, 65,-32768,
|
||
636, 648, 65,-32768, 535,-32768, 452,-32768,-32768,-32768,
|
||
-32768, 112, 177, 2761, 236,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768, 3822, 652,-32768,-32768,-32768,
|
||
608, 216,-32768,-32768, 3750,-32768, 724, 649,-32768,-32768,
|
||
656,-32768,-32768, 659, 541,-32768, 1820, 65,-32768,-32768,
|
||
65,-32768, 646,-32768,-32768, 646, 94, 94, 3935,-32768,
|
||
94, 667, 654, 1579, 2998, 710, 666, 3709,-32768,-32768,
|
||
952,-32768, 303,-32768,-32768,-32768,-32768, 682,-32768,-32768,
|
||
-32768,-32768, 2500,-32768,-32768, 2998,-32768,-32768,-32768,-32768,
|
||
608,-32768,-32768,-32768,-32768, 303,-32768,-32768, 708, 535,
|
||
-32768, 3614, 3614, 126, 601, 112, 1908,-32768, 494, 3262,
|
||
413, 413,-32768,-32768,-32768, 216, 94, 167, 259, 94,
|
||
-32768, 94, 259, 94, 3467,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 601,-32768, 112,-32768, 830,-32768,-32768, 3935,-32768,
|
||
-32768, 1820,-32768,-32768, 456,-32768,-32768,-32768, 94,-32768,
|
||
-32768, 736, 303,-32768, 737, 3935, 698, 715,-32768,-32768,
|
||
60, 1743, 310,-32768, 2998,-32768, 710,-32768, 2998,-32768,
|
||
-32768, 2582, 759, 740,-32768,-32768, 742, 743, 2998, 766,
|
||
730, 731, 2942, 201, 809, 159, 212,-32768, 782, 746,
|
||
-32768, 747, 3525,-32768, 811, 1333, 87,-32768,-32768,-32768,
|
||
-32768,-32768, 2750, 241, 167, 259, 94, 473,-32768,-32768,
|
||
615,-32768, 763, 535,-32768,-32768,-32768,-32768, 2998, 791,
|
||
749,-32768, 749, 445, 608,-32768, 2417,-32768,-32768,-32768,
|
||
375, 216,-32768,-32768,-32768, 496, 498, 830,-32768,-32768,
|
||
1579,-32768,-32768, 2998, 77,-32768,-32768, 1579,-32768,-32768,
|
||
1661,-32768, 1897,-32768,-32768,-32768, 952, 2998, 777,-32768,
|
||
2998, 2998, 3874,-32768,-32768,-32768,-32768, 760, 2998, 767,
|
||
-32768, 784, 94,-32768,-32768, 601,-32768, 112, 1415,-32768,
|
||
-32768,-32768,-32768, 2998,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
608,-32768,-32768, 787, 86, 86, 3935, 2998, 413, 482,
|
||
482,-32768,-32768, 762,-32768,-32768, 778, 3899, 2998,-32768,
|
||
780, 1897,-32768,-32768, 779, 2998, 844,-32768, 794, 783,
|
||
793, 2998,-32768,-32768, 790,-32768, 2998,-32768, 499,-32768,
|
||
454, 507,-32768, 346,-32768,-32768, 2582, 795,-32768, 535,
|
||
-32768,-32768,-32768,-32768,-32768, 3935,-32768,-32768,-32768,-32768,
|
||
3899,-32768,-32768,-32768, 796,-32768,-32768,-32768,-32768, 3917,
|
||
-32768, 55,-32768, 2152,-32768, 2152,-32768,-32768,-32768, 798,
|
||
813,-32768,-32768,-32768, 2998,-32768,-32768, 870, 804,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768, 805,-32768, 825, 63,
|
||
818,-32768,-32768, 649, 649,-32768,-32768, 2998, 870, 823,
|
||
870,-32768,-32768, 2998, 826, 66,-32768,-32768, 832,-32768,
|
||
610, 824,-32768, 366, 270,-32768,-32768, 836, 610,-32768,
|
||
-32768, 366, 918, 920,-32768
|
||
};
|
||
|
||
static const short yypgoto[] = {-32768,
|
||
-32768,-32768,-32768, 96, -378,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, -14,-32768, -56, 495, -234, 435,-32768,-32768,
|
||
-77,-32768, 525,-32768,-32768,-32768,-32768,-32768, 121, -302,
|
||
-32768, -290, 592,-32768,-32768, 425,-32768, 7, -144, 195,
|
||
1, 853,-32768, 269, 5, -20, -200, 657, 143, -253,
|
||
-591, -66, -199, -117,-32768,-32768,-32768, 160, 69, 2,
|
||
-32768, 524,-32768, 265,-32768, -447,-32768, 157,-32768, -634,
|
||
-32768,-32768, 250,-32768,-32768,-32768,-32768,-32768,-32768, -67,
|
||
-121, -498, -1,-32768,-32768,-32768, -74,-32768,-32768,-32768,
|
||
-32768,-32768, 464, -43,-32768, 598, 474, 273, 591, 475,
|
||
-54, -94, -182, -166, -236, 451,-32768,-32768, -262,-32768,
|
||
-32768,-32768, 556, -354,-32768, 382,-32768, -534,-32768,-32768,
|
||
-32768,-32768, -169, -440, -678, 455,-32768, 90,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 98,-32768,
|
||
-818, 32,-32768, 31,-32768, 558,-32768, -366,-32768, 548,
|
||
551, 404, -311,-32768,-32768,-32768,-32768, 12,-32768, 959,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 3, -4, -373,-32768, 424,-32768,
|
||
355, 170,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -284,
|
||
-32768,-32768,-32768, 175, 458,-32768,-32768,-32768,-32768, -45,
|
||
713,-32768,-32768, 511,-32768, 218, 515,-32768, 624, 626,
|
||
-135,-32768, -128,-32768,-32768, 350, 442,-32768,-32768,-32768,
|
||
-32768,-32768,-32768, 681,-32768,-32768,-32768
|
||
};
|
||
|
||
|
||
#define YYLAST 3989
|
||
|
||
|
||
static const short yytable[] = { 124,
|
||
141, 63, 32, 32, 67, 68, 33, 33, 71, 344,
|
||
63, 74, 86, 42, 42, 209, 220, 70, 212, 70,
|
||
181, 446, 354, 94, 96, 98, 72, 229, 230, 81,
|
||
334, 445, 422, 472, 233, 405, 337, 92, 83, 85,
|
||
356, 305, 32, 669, 414, 242, 33, 284, 306, 520,
|
||
290, 225, 470, 42, 92, 92, 92, 278, 475, 190,
|
||
237, 551, 70, 341, 547, 578, 70, 795, 461, 184,
|
||
36, 36, 658, 188, 623, 192, 321, 53, 54, 55,
|
||
776, 92, 338, 213, 59, 60, 882, 823, 734, 92,
|
||
185, 272, 147, 232, 918, -113, 927, 793, 50, 80,
|
||
-1, 88, 939, 374, 462, 951, 14, 198, 199, -2,
|
||
36, 186, 424, 413, 75, 576, 849, 425, 301, 693,
|
||
577, 857, 344, 14, 320, 949, 16, 361, 148, 59,
|
||
60, 294, 919, 298, 187, 59, 60, 99, 419, 220,
|
||
940, 14, 328, 952, 625, 80, 514, 824, 579, 626,
|
||
61, 208, 197, 80, 685, 62, 354, 300, 854, 219,
|
||
569, 224, 334, 76, 883, 93, 535, 309, 310, 422,
|
||
313, 314, 77, 334, 356, 87, 518, 734, -113, 334,
|
||
712, 371, 522, 649, 635, 378, 198, 199, 637, 319,
|
||
382, 405, 383, 323, 56, 61, 14, 907, -35, 143,
|
||
62, 61, 192, 59, 60, 16, 62, 51, 52, 92,
|
||
283, 220, 362, 283, 406, 466, 95, 893, 75, 469,
|
||
92, 89, 468, 90, 869, 418, 379, 766, 767, 57,
|
||
922, 345, 346, 681, 357, 926, 683, 928, 58, 515,
|
||
495, 59, 60, 565, 427, 14, 936, 615, 467, 182,
|
||
620, -34, 809, 402, 403, 82, 16, 143, 16, 80,
|
||
639, 566, 208, 80, 751, 840, 841, 661, 757, 61,
|
||
183, 146, 208, 221, 62, 634, 656, 282, 960, 226,
|
||
59, 60, 219, 228, 92, 549, 550, 289, 14, 474,
|
||
329, 491, 434, -116, -116, -116, -116, 231, 775, -116,
|
||
-480, -116, -116, -116, 70, 59, 60, 61, 595, 189,
|
||
595, 436, 62, 148, 482, 143, 484, -116, 826, 198,
|
||
199, 239, 97, 244, 59, 60, 291, 292, 293, 501,
|
||
75, 202, 240, 847, 318, 319, -116, 92, 299, 323,
|
||
851, 515, 734, 621, 420, 421, 61, 958, 220, 283,
|
||
362, 62, 959, 345, 346, 753, 606, 14, -116, 241,
|
||
478, 519, 480, -116, 525, 143, 198, 199, 357, 243,
|
||
703, 61, 197, -116, 272, -176, 62, 75, 542, 203,
|
||
877, 318, 143, -176, 263, 264, 265, 143, 204, 143,
|
||
61, 744, 244, 507, 36, 62, 305, 59, 60, 942,
|
||
943, 205, 273, 306, 14, 208, 198, 199, 208, 208,
|
||
294, 558, 559, 560, 193, 75, 202, 279, 194, 414,
|
||
287, 561, 780, 339, -176, 307, 661, 340, -176, 533,
|
||
86, 311, 70, 534, 603, 656, 282, 420, 421, 546,
|
||
553, 143, 14, 585, 554, 317, 552, 75, 654, 565,
|
||
324, 318, 759, 350, 842, 433, 571, 572, 75, 202,
|
||
351, 347, 75, 61, 203, 194, 318, 566, 62, 834,
|
||
703, 362, 707, 204, 14, 574, 660, 664, 612, 575,
|
||
197, 283, 613, -176, 36, 14, 205, 283, 764, 14,
|
||
359, -176, -279, -279, 771, 784, 655, 36, 289, 143,
|
||
36, 459, 614, 471, 367, 656, 282, 203, 36, 368,
|
||
477, 76, 765, 86, 595, 628, 204, 772, 483, 88,
|
||
77, 558, 559, 560, 780, 369, 14, 518, 522, 205,
|
||
-86, 641, -176, 86, 518, 522, -176, 533, 407, 631,
|
||
380, 534, 766, 767, 5, 89, 7, 90, 280, 408,
|
||
644, 830, 9, 10, 11, 831, 412, 281, 282, 645,
|
||
646, 246, 248, 558, 559, 560, 730, 428, 13, 659,
|
||
663, 651, 652, 758, 845, 143, 846, 903, 340, 212,
|
||
194, 340, 426, 760, 760, 905, 143, 16, 429, 194,
|
||
672, 674, 431, 87, 437, 911, 755, 756, 710, -478,
|
||
442, 220, 88, 75, 202, 36, 586, 777, 729, 22,
|
||
75, 654, 441, 920, 24, 921, 197, 785, 102, 673,
|
||
80, 750, 88, 732, 458, 459, 465, 733, 476, 746,
|
||
14, 143, 479, 485, 743, 486, 493, 14, 494, 657,
|
||
662, 497, 498, 36, 644, 499, 500, 553, 954, 505,
|
||
318, 554, 203, 552, 192, 730, 962, 502, 92, 655,
|
||
506, 204, 521, 92, 526, 278, 808, 544, 656, 282,
|
||
530, 344, 644, 14, 205, 548, 87, 568, 787, 570,
|
||
573, 215, 216, 217, 558, 559, 560, 589, 9, 10,
|
||
11, 36, 610, 590, 832, 280, 87, 729, 592, 657,
|
||
624, 597, 598, 220, 281, 282, 14, 601, 289, 810,
|
||
844, -316, 86, 208, 80, 36, 619, 627, 575, 208,
|
||
208, 70, 70, 630, 662, 636, 668, 675, 684, 72,
|
||
653, 690, 579, 36, 334, 275, 334, 671, 816, 818,
|
||
208, 855, 80, 732, 858, 861, 689, 733, 871, 705,
|
||
706, 872, 865, 208, 743, 366, 686, 687, 216, 217,
|
||
688, 711, 319, 323, 9, 10, 11, 878, 381, 319,
|
||
323, 760, 752, 384, 385, -32, 789, 790, 390, 391,
|
||
392, 393, 394, 395, 396, 397, 398, 399, 400, 401,
|
||
266, 267, 143, 268, 269, 270, 271, 791, -33, 895,
|
||
798, 88, 801, 802, 5, 804, 7, 288, 805, 806,
|
||
902, 36, 9, 10, 11, 811, 874, 768, 769, 770,
|
||
730, 813, 773, 774, 814, 815, 819, 833, 13, 746,
|
||
838, 839, 657, 657, 779, 216, 217, 856, 864, 662,
|
||
662, 9, 10, 11, 867, 866, 888, 16, 786, 266,
|
||
267, 881, 268, 269, 270, 271, 894, 889, 858, 892,
|
||
896, 898, 729, 261, 262, 263, 264, 265, 901, 22,
|
||
899, 897, 910, 913, 24, 87, 923, 924, 929, -281,
|
||
-281, 945, 933, 937, 208, 938, 80, 858, 255, 256,
|
||
257, 258, 259, 260, 261, 262, 263, 264, 265, 657,
|
||
941, 947, 956, 950, 827, 828, 829, 208, 329, 953,
|
||
-339, -339, 503, 504, 961, -339, -339, 964, -339, 965,
|
||
529, 859, -339, 463, -339, -339, -339, -339, -339, -339,
|
||
-339, -339, -339, -339, -339, 616, -339, 825, -339, 214,
|
||
-339, -339, -339, 778, 850, 423, 782, 853, 527, -339,
|
||
794, 602, -339, 596, 481, 488, 783, -339, -339, -339,
|
||
600, 617, 670, -339, -339, 517, 908, 622, -339, -339,
|
||
946, 948, 868, -339, 909, -339, -339, 523, 667, 540,
|
||
-339, -339, 541, 73, -339, 650, -339, -312, -339, -339,
|
||
251, -339, 252, 253, 254, 255, 256, 257, 258, 259,
|
||
260, 261, 262, 263, 264, 265, 763, 890, 887, 599,
|
||
885, 274, 648, -319, -319, -319, -319, -319, -319, -319,
|
||
435, -319, -319, -319, -319, -319, 611, -319, -319, -319,
|
||
-319, -319, -319, -319, -319, -319, -319, -319, -319, -319,
|
||
-319, -319, -319, -319, -319, -319, 629, 633, 879, 708,
|
||
912, 531, -319, 532, 796, -319, 496, -319, 0, 0,
|
||
-319, -319, -319, 0, 0, 0, -319, -319, 0, 0,
|
||
0, -319, -319, 0, 0, 0, -319, 0, -319, -319,
|
||
0, 0, 0, -319, -319, 0, 0, -319, 0, -319,
|
||
275, -319, -319, 0, -319, 253, 254, 255, 256, 257,
|
||
258, 259, 260, 261, 262, 263, 264, 265, 0, 0,
|
||
0, 679, 0, 329, 0, -125, -125, -125, -125, -125,
|
||
-125, -125, 0, -125, -125, -125, -125, -125, 696, -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, 0, -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, 257, 258, 259,
|
||
260, 261, 262, 263, 264, 265, 679, 0, 0, 447,
|
||
0, 448, 5, 6, 7, 8, 0, 0, 449, 0,
|
||
9, 10, 11, 0, 0, 0, 696, 0, 0, 0,
|
||
0, 0, 0, 797, 0, 0, 13, 0, 14, 0,
|
||
0, 0, 0, 803, 0, 0, 509, 0, -339, -339,
|
||
-339, -339, -339, -339, -339, 16, -339, -339, -339, -339,
|
||
-339, 0, -339, -339, -339, -339, -339, -339, -339, -339,
|
||
-339, -339, -339, -339, -339, -339, -339, 22, -339, -339,
|
||
-339, 0, 24, 837, 0, 0, -399, -339, 0, 0,
|
||
-339, 0, -339, 0, 0, -339, -339, -339, 0, 0,
|
||
0, -339, -339, 0, 0, 696, -339, -339, 848, 0,
|
||
0, -339, 696, -339, -339, 696, 0, 696, -339, -339,
|
||
0, 0, -339, 0, -339, 0, -339, -339, 0, -339,
|
||
0, 0, 0, 820, 0, -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, 886, -339, 0, -339, -339, -339, 0, 0,
|
||
0, 0, 0, 891, -339, 0, 696, -339, 0, 0,
|
||
0, 0, -339, -339, -339, 0, 900, 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, 875, -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, 234, -349, 100,
|
||
5, 0, 7, 140, 101, 102, 0, 103, 9, 10,
|
||
11, 254, 255, 256, 257, 258, 259, 260, 261, 262,
|
||
263, 264, 265, 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, 0, 0, 115, 116, 0,
|
||
0, 0, 117, 0, 118, 22, 0, 0, 0, 119,
|
||
24, 0, 0, 120, 0, 0, 0, 121, 122, 691,
|
||
235, 692, 60, 0, 0, 0, 101, 102, 0, 103,
|
||
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
|
||
259, 260, 261, 262, 263, 264, 265, 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, 693, 115,
|
||
116, 0, 0, 0, 117, 0, 118, 61, 0, 0,
|
||
0, 119, 62, 0, 0, 120, 0, 0, -204, 121,
|
||
122, 691, 694, 692, 60, 0, 0, 0, 101, 102,
|
||
0, 103, 258, 259, 260, 261, 262, 263, 264, 265,
|
||
0, 0, 0, 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,
|
||
693, 115, 116, 0, 0, 0, 117, 0, 118, 61,
|
||
0, 0, 0, 119, 62, 0, 0, 120, 0, 0,
|
||
-269, 121, 122, 691, 694, 100, 0, 0, 0, 0,
|
||
101, 102, 0, 103, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 104, 0, 15, 0, 105, 106, 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,
|
||
677, 0, 100, 121, 122, 0, 694, 101, 102, 0,
|
||
103, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 104, 0,
|
||
15, 0, 105, 106, 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, 691, 0, 100,
|
||
121, 122, 0, 678, 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, 196,
|
||
694, 24, -28, -28, -28, -28, 27, 0, 0, 0,
|
||
-28, -28, -28, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 197, -28, 348, -176, 0,
|
||
-24, -24, -24, -24, 0, 0, -176, 0, -24, -24,
|
||
-24, 5, 6, 7, 8, -28, 0, 0, 0, 9,
|
||
10, 11, 0, 197, -24, 0, -176, 0, 0, 198,
|
||
199, 0, 0, 0, -176, 13, 0, -28, 0, 0,
|
||
0, 0, -28, -24, 0, 0, 0, -176, 0, 0,
|
||
0, -176, -28, 0, 16, 0, 342, 198, 199, -20,
|
||
-20, -20, -20, 0, 0, -24, 0, -20, -20, -20,
|
||
-24, 0, 0, 0, 0, -176, 22, 0, 0, -176,
|
||
-24, 24, 197, -20, 329, -176, 0, 5, 6, 7,
|
||
8, 0, 0, -176, 0, 9, 10, 11, 0, 0,
|
||
0, 0, -20, 0, 329, 0, 0, -502, -502, -502,
|
||
-502, 13, 0, 14, 0, -502, -502, -502, 0, 0,
|
||
0, 0, 0, 0, -20, 0, 0, 0, 0, -20,
|
||
16, -502, 0, -502, -176, 0, 0, 0, -176, -20,
|
||
0, 0, 329, 0, 0, -339, -339, -339, -339, 0,
|
||
-502, 0, 22, -339, -339, -339, 0, 24, 0, 0,
|
||
0, 0, 0, 0, 0, 100, 0, -500, 0, -339,
|
||
101, 102, -502, 103, 0, 0, 0, -502, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, -502, -339, 0,
|
||
0, 104, 0, 15, 0, 105, 106, 107, 0, 0,
|
||
0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
|
||
-339, 0, 110, 111, 112, -339, 0, 0, 113, 114,
|
||
0, 0, 0, 115, 116, -112, 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, 843, 692, 713, 6, 7, 8, 101, 102, 0,
|
||
103, 9, 10, 11, 714, 0, 715, 716, 717, 718,
|
||
719, 720, 721, 722, 723, 724, 725, 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, 726, 0,
|
||
0, 0, 119, 727, 0, 0, 120, 0, 728, 0,
|
||
121, 122, 0, 579, 692, 60, 0, 0, 0, 101,
|
||
102, 0, 103, 0, 0, 0, 714, 0, 715, 716,
|
||
717, 718, 719, 720, 721, 722, 723, 724, 725, 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,
|
||
728, 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,
|
||
807, 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, 0,
|
||
7, 140, 0, 0, 0, 0, 9, 10, 11, 0,
|
||
0, 0, 563, 0, 0, 5, 0, 7, 140, 0,
|
||
0, 0, 13, 9, 10, 11, 0, 0, 0, 0,
|
||
0, 0, 352, 0, 0, 5, 0, 7, 140, 13,
|
||
0, 16, 0, 9, 10, 11, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 16, 13,
|
||
0, 0, 15, 22, -454, -454, -454, 0, 24, 0,
|
||
0, 0, 0, 564, -454, 0, 0, 0, 16, 0,
|
||
22, -453, -453, -453, 0, 24, 0, 0, 0, 0,
|
||
564, -453, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
22, 0, 0, 0, 0, 24, 0, 0, 0, 0,
|
||
353, -272, 4, 0, -129, 5, 6, 7, 8, 0,
|
||
0, 0, 0, 9, 10, 11, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 12, 13,
|
||
0, 14, 15, 0, 0, 5, 6, 7, 8, 0,
|
||
0, 449, 0, 9, 10, 11, 0, 0, 16, 0,
|
||
0, 17, 18, -129, 0, 0, 0, 0, 0, 13,
|
||
0, 14, -129, 0, 19, 20, 21, 0, 0, 0,
|
||
22, 0, 0, 0, 23, 24, 25, 26, 16, 4,
|
||
27, -129, 5, 6, 7, 8, 0, 0, 0, 0,
|
||
9, 10, 11, 0, 0, 0, 0, 0, 0, 0,
|
||
22, 0, 0, 0, 0, 24, 13, 447, 14, 0,
|
||
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, 0, 0, -129,
|
||
5, 6, 7, 8, 0, 0, 0, 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,
|
||
352, 0, 13, 5, 14, 7, 140, 0, 0, 0,
|
||
0, 9, 10, 11, 0, 22, 0, 0, 0, 0,
|
||
24, 16, 0, 0, 0, 632, 0, 13, 0, 0,
|
||
15, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 22, 0, 0, 16, 0, 24, 0,
|
||
0, 0, 0, 817, 0, 0, 0, 0, 0, 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, 605, 9,
|
||
10, 11, 174, 5, 6, 7, 8, 0, 0, 666,
|
||
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,
|
||
5, 6, 7, 8, 0, 0, 22, 0, 9, 10,
|
||
11, 24, 5, 0, 7, 140, 0, 0, 22, 0,
|
||
9, 10, 11, 24, 13, 5, 14, 7, 288, 0,
|
||
0, 0, 0, 9, 10, 11, 13, 0, 0, 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, 862, 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, 863, 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, 917, 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, 2, 3, 19, 20, 2, 3, 23, 209,
|
||
25, 26, 33, 2, 3, 83, 91, 22, 85, 24,
|
||
66, 324, 223, 38, 39, 40, 24, 105, 106, 31,
|
||
200, 316, 286, 345, 112, 270, 203, 36, 32, 33,
|
||
223, 177, 42, 578, 281, 123, 42, 142, 177, 416,
|
||
145, 95, 343, 42, 53, 54, 55, 135, 349, 74,
|
||
115, 440, 67, 208, 438, 1, 71, 702, 331, 67,
|
||
2, 3, 571, 71, 515, 77, 194, 9, 10, 11,
|
||
672, 80, 204, 85, 3, 4, 1, 1, 623, 88,
|
||
40, 9, 47, 108, 40, 1, 915, 38, 3, 31,
|
||
0, 33, 40, 239, 10, 40, 30, 61, 62, 0,
|
||
42, 61, 78, 280, 3, 78, 40, 83, 173, 60,
|
||
83, 800, 322, 30, 78, 944, 47, 1, 83, 3,
|
||
4, 146, 78, 148, 84, 3, 4, 42, 283, 214,
|
||
78, 30, 199, 78, 78, 77, 409, 61, 84, 83,
|
||
69, 83, 27, 85, 595, 74, 357, 172, 793, 91,
|
||
78, 84, 332, 52, 79, 84, 429, 182, 183, 423,
|
||
185, 186, 61, 343, 357, 33, 413, 712, 84, 349,
|
||
621, 238, 419, 557, 539, 240, 61, 62, 543, 191,
|
||
245, 426, 247, 195, 61, 69, 30, 876, 40, 57,
|
||
74, 69, 204, 3, 4, 47, 74, 79, 80, 208,
|
||
142, 286, 227, 145, 271, 337, 84, 852, 3, 341,
|
||
219, 5, 340, 7, 816, 282, 241, 61, 62, 61,
|
||
909, 61, 62, 588, 223, 914, 591, 916, 61, 409,
|
||
376, 3, 4, 444, 299, 30, 925, 510, 78, 40,
|
||
513, 40, 52, 268, 269, 79, 47, 115, 47, 191,
|
||
545, 444, 194, 195, 638, 764, 765, 52, 647, 69,
|
||
61, 61, 204, 67, 74, 538, 61, 62, 957, 84,
|
||
3, 4, 214, 84, 283, 50, 51, 145, 30, 346,
|
||
1, 369, 307, 4, 5, 6, 7, 61, 665, 10,
|
||
65, 12, 13, 14, 309, 3, 4, 69, 478, 79,
|
||
480, 309, 74, 83, 358, 173, 360, 28, 78, 61,
|
||
62, 61, 84, 83, 3, 4, 5, 6, 7, 386,
|
||
3, 4, 61, 781, 7, 337, 47, 336, 61, 341,
|
||
788, 511, 877, 513, 61, 62, 69, 78, 423, 281,
|
||
365, 74, 83, 61, 62, 640, 492, 30, 69, 61,
|
||
354, 78, 356, 74, 421, 223, 61, 62, 357, 78,
|
||
605, 69, 27, 84, 9, 30, 74, 3, 433, 52,
|
||
821, 7, 240, 38, 52, 53, 54, 245, 61, 247,
|
||
69, 626, 83, 408, 326, 74, 532, 3, 4, 934,
|
||
935, 74, 77, 532, 30, 337, 61, 62, 340, 341,
|
||
425, 70, 71, 72, 79, 3, 4, 78, 83, 656,
|
||
78, 80, 676, 79, 79, 40, 52, 83, 83, 429,
|
||
451, 84, 437, 429, 489, 61, 62, 61, 62, 437,
|
||
440, 299, 30, 464, 440, 79, 440, 3, 4, 650,
|
||
61, 7, 40, 61, 766, 61, 450, 451, 3, 4,
|
||
80, 79, 3, 69, 52, 83, 7, 650, 74, 754,
|
||
705, 486, 608, 61, 30, 79, 571, 572, 79, 83,
|
||
27, 413, 83, 30, 416, 30, 74, 419, 655, 30,
|
||
80, 38, 79, 80, 661, 40, 52, 429, 356, 357,
|
||
432, 79, 80, 344, 78, 61, 62, 52, 440, 78,
|
||
351, 52, 657, 534, 684, 530, 61, 662, 359, 451,
|
||
61, 70, 71, 72, 778, 78, 30, 764, 765, 74,
|
||
40, 80, 79, 554, 771, 772, 83, 537, 78, 533,
|
||
79, 537, 61, 62, 4, 5, 6, 7, 52, 32,
|
||
552, 79, 12, 13, 14, 83, 78, 61, 62, 553,
|
||
554, 127, 128, 70, 71, 72, 623, 78, 28, 571,
|
||
572, 565, 566, 80, 79, 433, 79, 79, 83, 646,
|
||
83, 83, 61, 651, 652, 79, 444, 47, 79, 83,
|
||
584, 585, 10, 451, 78, 880, 642, 643, 613, 65,
|
||
78, 676, 534, 3, 4, 537, 464, 674, 623, 69,
|
||
3, 4, 84, 904, 74, 906, 27, 685, 9, 79,
|
||
552, 636, 554, 623, 85, 79, 38, 623, 69, 631,
|
||
30, 489, 79, 38, 623, 83, 40, 30, 78, 571,
|
||
572, 78, 78, 575, 646, 78, 78, 647, 951, 78,
|
||
7, 647, 52, 647, 656, 712, 959, 40, 657, 52,
|
||
85, 61, 85, 662, 78, 743, 723, 84, 61, 62,
|
||
78, 871, 674, 30, 74, 65, 534, 65, 693, 78,
|
||
78, 5, 6, 7, 70, 71, 72, 38, 12, 13,
|
||
14, 623, 40, 85, 80, 52, 554, 712, 78, 631,
|
||
85, 80, 80, 778, 61, 62, 30, 80, 566, 724,
|
||
767, 80, 733, 645, 646, 647, 80, 78, 83, 651,
|
||
652, 726, 727, 79, 656, 78, 3, 585, 83, 727,
|
||
79, 78, 84, 665, 904, 80, 906, 79, 732, 733,
|
||
672, 798, 674, 743, 801, 802, 80, 743, 816, 40,
|
||
85, 818, 809, 685, 743, 231, 597, 598, 6, 7,
|
||
601, 80, 764, 765, 12, 13, 14, 824, 244, 771,
|
||
772, 839, 65, 249, 250, 40, 40, 80, 254, 255,
|
||
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
|
||
56, 57, 650, 59, 60, 61, 62, 83, 40, 856,
|
||
61, 733, 61, 61, 4, 40, 6, 7, 79, 79,
|
||
867, 743, 12, 13, 14, 7, 818, 658, 659, 660,
|
||
877, 40, 663, 664, 79, 79, 16, 65, 28, 831,
|
||
40, 83, 764, 765, 5, 6, 7, 61, 79, 771,
|
||
772, 12, 13, 14, 61, 79, 85, 47, 689, 56,
|
||
57, 65, 59, 60, 61, 62, 78, 80, 915, 80,
|
||
17, 79, 877, 50, 51, 52, 53, 54, 79, 69,
|
||
78, 78, 78, 78, 74, 733, 79, 65, 9, 79,
|
||
80, 938, 79, 79, 816, 61, 818, 944, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 52, 53, 54, 831,
|
||
83, 79, 79, 78, 745, 746, 747, 839, 1, 78,
|
||
3, 4, 388, 389, 79, 8, 9, 0, 11, 0,
|
||
426, 801, 15, 332, 17, 18, 19, 20, 21, 22,
|
||
23, 24, 25, 26, 27, 511, 29, 743, 31, 87,
|
||
33, 34, 35, 675, 785, 289, 682, 791, 425, 42,
|
||
701, 488, 45, 480, 357, 365, 684, 50, 51, 52,
|
||
486, 511, 581, 56, 57, 410, 877, 513, 61, 62,
|
||
939, 941, 813, 66, 877, 68, 69, 420, 575, 432,
|
||
73, 74, 432, 25, 77, 562, 79, 80, 81, 82,
|
||
39, 84, 41, 42, 43, 44, 45, 46, 47, 48,
|
||
49, 50, 51, 52, 53, 54, 652, 848, 839, 485,
|
||
836, 1, 555, 3, 4, 5, 6, 7, 8, 9,
|
||
308, 11, 12, 13, 14, 15, 502, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
||
30, 31, 32, 33, 34, 35, 532, 537, 831, 608,
|
||
891, 428, 42, 428, 705, 45, 376, 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,
|
||
80, 81, 82, -1, 84, 42, 43, 44, 45, 46,
|
||
47, 48, 49, 50, 51, 52, 53, 54, -1, -1,
|
||
-1, 587, -1, 1, -1, 3, 4, 5, 6, 7,
|
||
8, 9, -1, 11, 12, 13, 14, 15, 604, 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, 80, 81, 82, -1, 84, 46, 47, 48,
|
||
49, 50, 51, 52, 53, 54, 682, -1, -1, 1,
|
||
-1, 3, 4, 5, 6, 7, -1, -1, 10, -1,
|
||
12, 13, 14, -1, -1, -1, 702, -1, -1, -1,
|
||
-1, -1, -1, 709, -1, -1, 28, -1, 30, -1,
|
||
-1, -1, -1, 719, -1, -1, 1, -1, 3, 4,
|
||
5, 6, 7, 8, 9, 47, 11, 12, 13, 14,
|
||
15, -1, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, 31, 69, 33, 34,
|
||
35, -1, 74, 759, -1, -1, 78, 42, -1, -1,
|
||
45, -1, 47, -1, -1, 50, 51, 52, -1, -1,
|
||
-1, 56, 57, -1, -1, 781, 61, 62, 784, -1,
|
||
-1, 66, 788, 68, 69, 791, -1, 793, 73, 74,
|
||
-1, -1, 77, -1, 79, -1, 81, 82, -1, 84,
|
||
-1, -1, -1, 1, -1, 3, 4, -1, -1, -1,
|
||
8, 9, -1, 11, -1, -1, -1, 15, -1, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
||
-1, 29, 838, 31, -1, 33, 34, 35, -1, -1,
|
||
-1, -1, -1, 849, 42, -1, 852, 45, -1, -1,
|
||
-1, -1, 50, 51, 52, -1, 862, -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, 6, 7, 8, 9, -1, 11, 12, 13,
|
||
14, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
||
52, 53, 54, -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, -1, -1, 61, 62, -1,
|
||
-1, -1, 66, -1, 68, 69, -1, -1, -1, 73,
|
||
74, -1, -1, 77, -1, -1, -1, 81, 82, 1,
|
||
84, 3, 4, -1, -1, -1, 8, 9, -1, 11,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
48, 49, 50, 51, 52, 53, 54, 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, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
-1, -1, -1, -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,
|
||
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, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -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, 61, 62, 4,
|
||
5, 6, 7, -1, -1, 69, -1, 12, 13, 14,
|
||
74, -1, -1, -1, -1, 79, 69, -1, -1, 83,
|
||
84, 74, 27, 28, 1, 30, -1, 4, 5, 6,
|
||
7, -1, -1, 38, -1, 12, 13, 14, -1, -1,
|
||
-1, -1, 47, -1, 1, -1, -1, 4, 5, 6,
|
||
7, 28, -1, 30, -1, 12, 13, 14, -1, -1,
|
||
-1, -1, -1, -1, 69, -1, -1, -1, -1, 74,
|
||
47, 28, -1, 30, 79, -1, -1, -1, 83, 84,
|
||
-1, -1, 1, -1, -1, 4, 5, 6, 7, -1,
|
||
47, -1, 69, 12, 13, 14, -1, 74, -1, -1,
|
||
-1, -1, -1, -1, -1, 3, -1, 84, -1, 28,
|
||
8, 9, 69, 11, -1, -1, -1, 74, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 84, 47, -1,
|
||
-1, 29, -1, 31, -1, 33, 34, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, -1, 45, -1, -1,
|
||
69, -1, 50, 51, 52, 74, -1, -1, 56, 57,
|
||
-1, -1, -1, 61, 62, 84, 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, -1, -1, -1, -1, 12, 13, 14, -1,
|
||
-1, -1, 1, -1, -1, 4, -1, 6, 7, -1,
|
||
-1, -1, 28, 12, 13, 14, -1, -1, -1, -1,
|
||
-1, -1, 1, -1, -1, 4, -1, 6, 7, 28,
|
||
-1, 47, -1, 12, 13, 14, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 47, 28,
|
||
-1, -1, 31, 69, 70, 71, 72, -1, 74, -1,
|
||
-1, -1, -1, 79, 80, -1, -1, -1, 47, -1,
|
||
69, 70, 71, 72, -1, 74, -1, -1, -1, -1,
|
||
79, 80, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
69, -1, -1, -1, -1, 74, -1, -1, -1, -1,
|
||
79, 80, 1, -1, 3, 4, 5, 6, 7, -1,
|
||
-1, -1, -1, 12, 13, 14, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 27, 28,
|
||
-1, 30, 31, -1, -1, 4, 5, 6, 7, -1,
|
||
-1, 10, -1, 12, 13, 14, -1, -1, 47, -1,
|
||
-1, 50, 51, 52, -1, -1, -1, -1, -1, 28,
|
||
-1, 30, 61, -1, 63, 64, 65, -1, -1, -1,
|
||
69, -1, -1, -1, 73, 74, 75, 76, 47, 1,
|
||
79, 3, 4, 5, 6, 7, -1, -1, -1, -1,
|
||
12, 13, 14, -1, -1, -1, -1, -1, -1, -1,
|
||
69, -1, -1, -1, -1, 74, 28, 1, 30, -1,
|
||
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, -1, 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, 4, 30, 6, 7, -1, -1, -1,
|
||
-1, 12, 13, 14, -1, 69, -1, -1, -1, -1,
|
||
74, 47, -1, -1, -1, 79, -1, 28, -1, -1,
|
||
31, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 69, -1, -1, 47, -1, 74, -1,
|
||
-1, -1, -1, 79, -1, -1, -1, -1, -1, -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,
|
||
4, 5, 6, 7, -1, -1, 69, -1, 12, 13,
|
||
14, 74, 4, -1, 6, 7, -1, -1, 69, -1,
|
||
12, 13, 14, 74, 28, 4, 30, 6, 7, -1,
|
||
-1, -1, -1, 12, 13, 14, 28, -1, -1, -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/bison.simple"
|
||
|
||
/* Skeleton output parser for bison,
|
||
Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2, or (at your option)
|
||
any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||
|
||
/* As a special exception, when this file is copied by Bison into a
|
||
Bison output file, you may use that output file without restriction.
|
||
This special exception was added by the Free Software Foundation
|
||
in version 1.24 of Bison. */
|
||
|
||
#ifndef alloca
|
||
#ifdef __GNUC__
|
||
#define alloca __builtin_alloca
|
||
#else /* not GNU C. */
|
||
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
|
||
#include <alloca.h>
|
||
#else /* not sparc */
|
||
#if defined (MSDOS) && !defined (__TURBOC__)
|
||
#include <malloc.h>
|
||
#else /* not MSDOS, or __TURBOC__ */
|
||
#if defined(_AIX)
|
||
#include <malloc.h>
|
||
#pragma alloca
|
||
#else /* not MSDOS, __TURBOC__, or _AIX */
|
||
#ifdef __hpux
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
void *alloca (unsigned int);
|
||
};
|
||
#else /* not __cplusplus */
|
||
void *alloca ();
|
||
#endif /* not __cplusplus */
|
||
#endif /* __hpux */
|
||
#endif /* not _AIX */
|
||
#endif /* not MSDOS, or __TURBOC__ */
|
||
#endif /* not sparc. */
|
||
#endif /* not GNU C. */
|
||
#endif /* alloca not defined. */
|
||
|
||
/* This is the parser code that is written into each bison parser
|
||
when the %semantic_parser declaration is not specified in the grammar.
|
||
It was written by Richard Stallman by simplifying the hairy parser
|
||
used when %semantic_parser is specified. */
|
||
|
||
/* Note: there must be only one dollar sign in this file.
|
||
It is replaced by the list of actions, each action
|
||
as one case of the switch. */
|
||
|
||
#define yyerrok (yyerrstatus = 0)
|
||
#define yyclearin (yychar = YYEMPTY)
|
||
#define YYEMPTY -2
|
||
#define YYEOF 0
|
||
#define YYACCEPT return(0)
|
||
#define YYABORT return(1)
|
||
#define YYERROR goto yyerrlab1
|
||
/* Like YYERROR except do call yyerror.
|
||
This remains here temporarily to ease the
|
||
transition to the new meaning of YYERROR, for GCC.
|
||
Once GCC version 2 has supplanted version 1, this can go. */
|
||
#define YYFAIL goto yyerrlab
|
||
#define YYRECOVERING() (!!yyerrstatus)
|
||
#define YYBACKUP(token, value) \
|
||
do \
|
||
if (yychar == YYEMPTY && yylen == 1) \
|
||
{ yychar = (token), yylval = (value); \
|
||
yychar1 = YYTRANSLATE (yychar); \
|
||
YYPOPSTACK; \
|
||
goto yybackup; \
|
||
} \
|
||
else \
|
||
{ yyerror ("syntax error: cannot back up"); YYERROR; } \
|
||
while (0)
|
||
|
||
#define YYTERROR 1
|
||
#define YYERRCODE 256
|
||
|
||
#ifndef YYPURE
|
||
#define YYLEX yylex()
|
||
#endif
|
||
|
||
#ifdef YYPURE
|
||
#ifdef YYLSP_NEEDED
|
||
#ifdef YYLEX_PARAM
|
||
#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
|
||
#else
|
||
#define YYLEX yylex(&yylval, &yylloc)
|
||
#endif
|
||
#else /* not YYLSP_NEEDED */
|
||
#ifdef YYLEX_PARAM
|
||
#define YYLEX yylex(&yylval, YYLEX_PARAM)
|
||
#else
|
||
#define YYLEX yylex(&yylval)
|
||
#endif
|
||
#endif /* not YYLSP_NEEDED */
|
||
#endif
|
||
|
||
/* If nonreentrant, generate the variables here */
|
||
|
||
#ifndef YYPURE
|
||
|
||
int yychar; /* the lookahead symbol */
|
||
YYSTYPE yylval; /* the semantic value of the */
|
||
/* lookahead symbol */
|
||
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE yylloc; /* location data for the lookahead */
|
||
/* symbol */
|
||
#endif
|
||
|
||
int yynerrs; /* number of parse errors so far */
|
||
#endif /* not YYPURE */
|
||
|
||
#if YYDEBUG != 0
|
||
int yydebug; /* nonzero means print parse trace */
|
||
/* Since this is uninitialized, it does not stop multiple parsers
|
||
from coexisting. */
|
||
#endif
|
||
|
||
/* YYINITDEPTH indicates the initial size of the parser's stacks */
|
||
|
||
#ifndef YYINITDEPTH
|
||
#define YYINITDEPTH 200
|
||
#endif
|
||
|
||
/* YYMAXDEPTH is the maximum size the stacks can grow to
|
||
(effective only if the built-in stack extension method is used). */
|
||
|
||
#if YYMAXDEPTH == 0
|
||
#undef YYMAXDEPTH
|
||
#endif
|
||
|
||
#ifndef YYMAXDEPTH
|
||
#define YYMAXDEPTH 10000
|
||
#endif
|
||
|
||
/* Prevent warning if -Wstrict-prototypes. */
|
||
#ifdef __GNUC__
|
||
int yyparse (void);
|
||
#endif
|
||
|
||
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
|
||
#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
|
||
#else /* not GNU C or C++ */
|
||
#ifndef __cplusplus
|
||
|
||
/* This is the most reliable way to avoid incompatibilities
|
||
in available built-in functions on various systems. */
|
||
static void
|
||
__yy_memcpy (to, from, count)
|
||
char *to;
|
||
char *from;
|
||
int count;
|
||
{
|
||
register char *f = from;
|
||
register char *t = to;
|
||
register int i = count;
|
||
|
||
while (i-- > 0)
|
||
*t++ = *f++;
|
||
}
|
||
|
||
#else /* __cplusplus */
|
||
|
||
/* This is the most reliable way to avoid incompatibilities
|
||
in available built-in functions on various systems. */
|
||
static void
|
||
__yy_memcpy (char *to, char *from, int count)
|
||
{
|
||
register char *f = from;
|
||
register char *t = to;
|
||
register int i = count;
|
||
|
||
while (i-- > 0)
|
||
*t++ = *f++;
|
||
}
|
||
|
||
#endif
|
||
#endif
|
||
|
||
#line 196 "/usr/share/bison.simple"
|
||
|
||
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
|
||
into yyparse. The argument should have type void *.
|
||
It should actually point to an object.
|
||
Grammar actions can access the variable by casting it
|
||
to the proper pointer type. */
|
||
|
||
#ifdef YYPARSE_PARAM
|
||
#ifdef __cplusplus
|
||
#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
|
||
#define YYPARSE_PARAM_DECL
|
||
#else /* not __cplusplus */
|
||
#define YYPARSE_PARAM_ARG YYPARSE_PARAM
|
||
#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
|
||
#endif /* not __cplusplus */
|
||
#else /* not YYPARSE_PARAM */
|
||
#define YYPARSE_PARAM_ARG
|
||
#define YYPARSE_PARAM_DECL
|
||
#endif /* not YYPARSE_PARAM */
|
||
|
||
int
|
||
yyparse(YYPARSE_PARAM_ARG)
|
||
YYPARSE_PARAM_DECL
|
||
{
|
||
register int yystate;
|
||
register int yyn;
|
||
register short *yyssp;
|
||
register YYSTYPE *yyvsp;
|
||
int yyerrstatus; /* number of tokens to shift before error messages enabled */
|
||
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
|
||
|
||
short yyssa[YYINITDEPTH]; /* the state stack */
|
||
YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
|
||
|
||
short *yyss = yyssa; /* refer to the stacks thru separate pointers */
|
||
YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
|
||
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
|
||
YYLTYPE *yyls = yylsa;
|
||
YYLTYPE *yylsp;
|
||
|
||
#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
|
||
#else
|
||
#define YYPOPSTACK (yyvsp--, yyssp--)
|
||
#endif
|
||
|
||
int yystacksize = YYINITDEPTH;
|
||
|
||
#ifdef YYPURE
|
||
int yychar;
|
||
YYSTYPE yylval;
|
||
int yynerrs;
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE yylloc;
|
||
#endif
|
||
#endif
|
||
|
||
YYSTYPE yyval; /* the variable used to return */
|
||
/* semantic values from the action */
|
||
/* routines */
|
||
|
||
int yylen;
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Starting parse\n");
|
||
#endif
|
||
|
||
yystate = 0;
|
||
yyerrstatus = 0;
|
||
yynerrs = 0;
|
||
yychar = YYEMPTY; /* Cause a token to be read. */
|
||
|
||
/* Initialize stack pointers.
|
||
Waste one element of value and location stack
|
||
so that they stay on the same level as the state stack.
|
||
The wasted elements are never initialized. */
|
||
|
||
yyssp = yyss - 1;
|
||
yyvsp = yyvs;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp = yyls;
|
||
#endif
|
||
|
||
/* Push a new state, which is found in yystate . */
|
||
/* In all cases, when you get here, the value and location stacks
|
||
have just been pushed. so pushing a state here evens the stacks. */
|
||
yynewstate:
|
||
|
||
*++yyssp = yystate;
|
||
|
||
if (yyssp >= yyss + yystacksize - 1)
|
||
{
|
||
/* Give user a chance to reallocate the stack */
|
||
/* Use copies of these so that the &'s don't force the real ones into memory. */
|
||
YYSTYPE *yyvs1 = yyvs;
|
||
short *yyss1 = yyss;
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE *yyls1 = yyls;
|
||
#endif
|
||
|
||
/* Get the current used size of the three stacks, in elements. */
|
||
int size = yyssp - yyss + 1;
|
||
|
||
#ifdef yyoverflow
|
||
/* Each stack pointer address is followed by the size of
|
||
the data in use in that stack, in bytes. */
|
||
#ifdef YYLSP_NEEDED
|
||
/* This used to be a conditional around just the two extra args,
|
||
but that might be undefined if yyoverflow is a macro. */
|
||
yyoverflow("parser stack overflow",
|
||
&yyss1, size * sizeof (*yyssp),
|
||
&yyvs1, size * sizeof (*yyvsp),
|
||
&yyls1, size * sizeof (*yylsp),
|
||
&yystacksize);
|
||
#else
|
||
yyoverflow("parser stack overflow",
|
||
&yyss1, size * sizeof (*yyssp),
|
||
&yyvs1, size * sizeof (*yyvsp),
|
||
&yystacksize);
|
||
#endif
|
||
|
||
yyss = yyss1; yyvs = yyvs1;
|
||
#ifdef YYLSP_NEEDED
|
||
yyls = yyls1;
|
||
#endif
|
||
#else /* no yyoverflow */
|
||
/* Extend the stack our own way. */
|
||
if (yystacksize >= YYMAXDEPTH)
|
||
{
|
||
yyerror("parser stack overflow");
|
||
return 2;
|
||
}
|
||
yystacksize *= 2;
|
||
if (yystacksize > YYMAXDEPTH)
|
||
yystacksize = YYMAXDEPTH;
|
||
yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
|
||
__yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
|
||
yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
|
||
__yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
|
||
#ifdef YYLSP_NEEDED
|
||
yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
|
||
__yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
|
||
#endif
|
||
#endif /* no yyoverflow */
|
||
|
||
yyssp = yyss + size - 1;
|
||
yyvsp = yyvs + size - 1;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp = yyls + size - 1;
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Stack size increased to %d\n", yystacksize);
|
||
#endif
|
||
|
||
if (yyssp >= yyss + yystacksize - 1)
|
||
YYABORT;
|
||
}
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Entering state %d\n", yystate);
|
||
#endif
|
||
|
||
goto yybackup;
|
||
yybackup:
|
||
|
||
/* Do appropriate processing given the current state. */
|
||
/* Read a lookahead token if we need one and don't already have one. */
|
||
/* yyresume: */
|
||
|
||
/* First try to decide what to do without reference to lookahead token. */
|
||
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYFLAG)
|
||
goto yydefault;
|
||
|
||
/* Not known => get a lookahead token if don't already have one. */
|
||
|
||
/* yychar is either YYEMPTY or YYEOF
|
||
or a valid token in external form. */
|
||
|
||
if (yychar == YYEMPTY)
|
||
{
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Reading a token: ");
|
||
#endif
|
||
yychar = YYLEX;
|
||
}
|
||
|
||
/* Convert token to internal form (in yychar1) for indexing tables with */
|
||
|
||
if (yychar <= 0) /* This means end of input. */
|
||
{
|
||
yychar1 = 0;
|
||
yychar = YYEOF; /* Don't call YYLEX any more */
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Now at end of input.\n");
|
||
#endif
|
||
}
|
||
else
|
||
{
|
||
yychar1 = YYTRANSLATE(yychar);
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
|
||
/* Give the individual parser a way to print the precise meaning
|
||
of a token, for further debugging info. */
|
||
#ifdef YYPRINT
|
||
YYPRINT (stderr, yychar, yylval);
|
||
#endif
|
||
fprintf (stderr, ")\n");
|
||
}
|
||
#endif
|
||
}
|
||
|
||
yyn += yychar1;
|
||
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
|
||
goto yydefault;
|
||
|
||
yyn = yytable[yyn];
|
||
|
||
/* yyn is what to do for this token type in this state.
|
||
Negative => reduce, -yyn is rule number.
|
||
Positive => shift, yyn is new state.
|
||
New state is final state => don't bother to shift,
|
||
just return success.
|
||
0, or most negative number => error. */
|
||
|
||
if (yyn < 0)
|
||
{
|
||
if (yyn == YYFLAG)
|
||
goto yyerrlab;
|
||
yyn = -yyn;
|
||
goto yyreduce;
|
||
}
|
||
else if (yyn == 0)
|
||
goto yyerrlab;
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
/* Shift the lookahead token. */
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
|
||
#endif
|
||
|
||
/* Discard the token being shifted unless it is eof. */
|
||
if (yychar != YYEOF)
|
||
yychar = YYEMPTY;
|
||
|
||
*++yyvsp = yylval;
|
||
#ifdef YYLSP_NEEDED
|
||
*++yylsp = yylloc;
|
||
#endif
|
||
|
||
/* count tokens shifted since error; after three, turn off error status. */
|
||
if (yyerrstatus) yyerrstatus--;
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
|
||
/* Do the default action for the current state. */
|
||
yydefault:
|
||
|
||
yyn = yydefact[yystate];
|
||
if (yyn == 0)
|
||
goto yyerrlab;
|
||
|
||
/* Do a reduction. yyn is the number of a rule to reduce with. */
|
||
yyreduce:
|
||
yylen = yyr2[yyn];
|
||
if (yylen > 0)
|
||
yyval = yyvsp[1-yylen]; /* implement default value of the action */
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
int i;
|
||
|
||
fprintf (stderr, "Reducing via rule %d (line %d), ",
|
||
yyn, yyrline[yyn]);
|
||
|
||
/* Print the symbols being reduced, and their result. */
|
||
for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
|
||
fprintf (stderr, "%s ", yytname[yyrhs[i]]);
|
||
fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
|
||
}
|
||
#endif
|
||
|
||
|
||
switch (yyn) {
|
||
|
||
case 1:
|
||
#line 247 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids an empty source file");
|
||
finish_file ();
|
||
;
|
||
break;}
|
||
case 2:
|
||
#line 252 "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 266 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 5:
|
||
#line 267 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 10:
|
||
#line 275 "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 283 "objc-parse.y"
|
||
{ pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 12:
|
||
#line 288 "objc-parse.y"
|
||
{ if (pedantic)
|
||
error ("ANSI C forbids data definition with no type or storage class");
|
||
else if (!flag_traditional)
|
||
warning ("data definition has no type or storage class");
|
||
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 13:
|
||
#line 298 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 14:
|
||
#line 303 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 15:
|
||
#line 308 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 16:
|
||
#line 310 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 19:
|
||
#line 314 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
|
||
break;}
|
||
case 20:
|
||
#line 320 "objc-parse.y"
|
||
{ if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 21:
|
||
#line 325 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 22:
|
||
#line 327 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 23:
|
||
#line 333 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 24:
|
||
#line 338 "objc-parse.y"
|
||
{ if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 25:
|
||
#line 343 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 26:
|
||
#line 345 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 27:
|
||
#line 351 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 28:
|
||
#line 356 "objc-parse.y"
|
||
{ if (! start_function (NULL_TREE, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 29:
|
||
#line 361 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 30:
|
||
#line 363 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 31:
|
||
#line 369 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 36:
|
||
#line 383 "objc-parse.y"
|
||
{ yyval.code = ADDR_EXPR; ;
|
||
break;}
|
||
case 37:
|
||
#line 385 "objc-parse.y"
|
||
{ yyval.code = NEGATE_EXPR; ;
|
||
break;}
|
||
case 38:
|
||
#line 387 "objc-parse.y"
|
||
{ yyval.code = CONVERT_EXPR; ;
|
||
break;}
|
||
case 39:
|
||
#line 389 "objc-parse.y"
|
||
{ yyval.code = PREINCREMENT_EXPR; ;
|
||
break;}
|
||
case 40:
|
||
#line 391 "objc-parse.y"
|
||
{ yyval.code = PREDECREMENT_EXPR; ;
|
||
break;}
|
||
case 41:
|
||
#line 393 "objc-parse.y"
|
||
{ yyval.code = BIT_NOT_EXPR; ;
|
||
break;}
|
||
case 42:
|
||
#line 395 "objc-parse.y"
|
||
{ yyval.code = TRUTH_NOT_EXPR; ;
|
||
break;}
|
||
case 43:
|
||
#line 399 "objc-parse.y"
|
||
{ yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 44:
|
||
#line 404 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 46:
|
||
#line 410 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 47:
|
||
#line 412 "objc-parse.y"
|
||
{ chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 49:
|
||
#line 418 "objc-parse.y"
|
||
{ yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
|
||
break;}
|
||
case 50:
|
||
#line 421 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 51:
|
||
#line 424 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
|
||
overflow_warning (yyval.ttype); ;
|
||
break;}
|
||
case 52:
|
||
#line 428 "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 456 "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 462 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 55:
|
||
#line 465 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 56:
|
||
#line 468 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 57:
|
||
#line 471 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
|
||
break;}
|
||
case 58:
|
||
#line 473 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
|
||
break;}
|
||
case 59:
|
||
#line 475 "objc-parse.y"
|
||
{ yyval.ttype = build_va_arg (yyvsp[-3].ttype, groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 60:
|
||
#line 479 "objc-parse.y"
|
||
{ skip_evaluation++; ;
|
||
break;}
|
||
case 61:
|
||
#line 483 "objc-parse.y"
|
||
{ skip_evaluation++; ;
|
||
break;}
|
||
case 63:
|
||
#line 489 "objc-parse.y"
|
||
{ tree type = groktypename (yyvsp[-2].ttype);
|
||
yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 64:
|
||
#line 492 "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 496 "objc-parse.y"
|
||
{ char *name;
|
||
tree result = pop_init_level (0);
|
||
tree type = yyvsp[-5].ttype;
|
||
finish_init ();
|
||
|
||
if (pedantic && ! flag_isoc9x)
|
||
pedwarn ("ANSI C forbids constructor expressions");
|
||
if (TYPE_NAME (type) != 0)
|
||
{
|
||
if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
|
||
name = IDENTIFIER_POINTER (TYPE_NAME (type));
|
||
else
|
||
name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
|
||
}
|
||
else
|
||
name = "";
|
||
yyval.ttype = result;
|
||
if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
|
||
{
|
||
int failure = complete_array_type (type, yyval.ttype, 1);
|
||
if (failure)
|
||
abort ();
|
||
}
|
||
;
|
||
break;}
|
||
case 67:
|
||
#line 525 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 68:
|
||
#line 527 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 69:
|
||
#line 529 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 70:
|
||
#line 531 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 71:
|
||
#line 533 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 72:
|
||
#line 535 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 73:
|
||
#line 537 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 74:
|
||
#line 539 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 75:
|
||
#line 541 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 76:
|
||
#line 543 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 77:
|
||
#line 545 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 78:
|
||
#line 547 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 79:
|
||
#line 549 "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 552 "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 555 "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 558 "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 561 "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 564 "objc-parse.y"
|
||
{ skip_evaluation += ((yyvsp[-4].ttype == boolean_true_node)
|
||
- (yyvsp[-4].ttype == boolean_false_node)); ;
|
||
break;}
|
||
case 85:
|
||
#line 567 "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 570 "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 577 "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 580 "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 588 "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 600 "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 760 "objc-parse.y"
|
||
{ yyval.ttype = combine_strings (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 93:
|
||
#line 762 "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 768 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 95:
|
||
#line 770 "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 793 "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 802 "objc-parse.y"
|
||
{ yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 98:
|
||
#line 804 "objc-parse.y"
|
||
{ yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 99:
|
||
#line 806 "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 818 "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 832 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 102:
|
||
#line 834 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 103:
|
||
#line 836 "objc-parse.y"
|
||
{ yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 104:
|
||
#line 838 "objc-parse.y"
|
||
{ yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 105:
|
||
#line 840 "objc-parse.y"
|
||
{ yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 106:
|
||
#line 842 "objc-parse.y"
|
||
{ yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 107:
|
||
#line 844 "objc-parse.y"
|
||
{ yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 109:
|
||
#line 851 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 111:
|
||
#line 859 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 114:
|
||
#line 867 "objc-parse.y"
|
||
{ c_mark_varargs ();
|
||
if (pedantic)
|
||
pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
|
||
break;}
|
||
case 115:
|
||
#line 877 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 120:
|
||
#line 893 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 121:
|
||
#line 898 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 122:
|
||
#line 903 "objc-parse.y"
|
||
{ shadow_tag_warned (yyvsp[-1].ttype, 1);
|
||
pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 123:
|
||
#line 906 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 124:
|
||
#line 915 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 129:
|
||
#line 930 "objc-parse.y"
|
||
{ yyval.itype = suspend_momentary ();
|
||
pending_xref_error ();
|
||
declspec_stack = tree_cons (prefix_attributes,
|
||
current_declspecs,
|
||
declspec_stack);
|
||
split_specs_attrs (yyvsp[0].ttype,
|
||
¤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);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 132:
|
||
#line 951 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 133:
|
||
#line 956 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 134:
|
||
#line 961 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 135:
|
||
#line 966 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 136:
|
||
#line 968 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 137:
|
||
#line 970 "objc-parse.y"
|
||
{ pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 138:
|
||
#line 980 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 139:
|
||
#line 982 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 140:
|
||
#line 986 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 141:
|
||
#line 988 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 142:
|
||
#line 990 "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 995 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 144:
|
||
#line 1000 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 145:
|
||
#line 1002 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 146:
|
||
#line 1007 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 147:
|
||
#line 1009 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 148:
|
||
#line 1011 "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 1024 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 150:
|
||
#line 1026 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 151:
|
||
#line 1028 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 152:
|
||
#line 1030 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 153:
|
||
#line 1035 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
|
||
TREE_STATIC (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 154:
|
||
#line 1038 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 155:
|
||
#line 1040 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
|
||
TREE_STATIC (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 156:
|
||
#line 1043 "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 1057 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 158:
|
||
#line 1059 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 159:
|
||
#line 1063 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 160:
|
||
#line 1065 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 163:
|
||
#line 1075 "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 1079 "objc-parse.y"
|
||
{ yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 165:
|
||
#line 1081 "objc-parse.y"
|
||
{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 166:
|
||
#line 1086 "objc-parse.y"
|
||
{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 167:
|
||
#line 1088 "objc-parse.y"
|
||
{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 168:
|
||
#line 1090 "objc-parse.y"
|
||
{ yyval.ttype = groktypename (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 176:
|
||
#line 1112 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 177:
|
||
#line 1114 "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 1121 "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 1126 "objc-parse.y"
|
||
{ finish_init ();
|
||
finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
|
||
break;}
|
||
case 180:
|
||
#line 1129 "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 1137 "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 1142 "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 1146 "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 1154 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 185:
|
||
#line 1156 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 186:
|
||
#line 1161 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 187:
|
||
#line 1163 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 188:
|
||
#line 1168 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-2].ttype; ;
|
||
break;}
|
||
case 189:
|
||
#line 1173 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 190:
|
||
#line 1175 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 191:
|
||
#line 1180 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 192:
|
||
#line 1182 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 193:
|
||
#line 1184 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 194:
|
||
#line 1186 "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 1188 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 201:
|
||
#line 1206 "objc-parse.y"
|
||
{ really_start_incremental_init (NULL_TREE);
|
||
/* Note that the call to clear_momentary
|
||
is in process_init_element. */
|
||
push_momentary (); ;
|
||
break;}
|
||
case 202:
|
||
#line 1211 "objc-parse.y"
|
||
{ yyval.ttype = pop_init_level (0);
|
||
if (yyval.ttype == error_mark_node
|
||
&& ! (yychar == STRING || yychar == CONSTANT))
|
||
pop_momentary ();
|
||
else
|
||
pop_momentary_nofree (); ;
|
||
break;}
|
||
case 203:
|
||
#line 1219 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 204:
|
||
#line 1225 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids empty initializer braces"); ;
|
||
break;}
|
||
case 210:
|
||
#line 1241 "objc-parse.y"
|
||
{ set_init_label (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 213:
|
||
#line 1248 "objc-parse.y"
|
||
{ push_init_level (0); ;
|
||
break;}
|
||
case 214:
|
||
#line 1250 "objc-parse.y"
|
||
{ process_init_element (pop_init_level (0)); ;
|
||
break;}
|
||
case 215:
|
||
#line 1252 "objc-parse.y"
|
||
{ process_init_element (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 219:
|
||
#line 1263 "objc-parse.y"
|
||
{ set_init_label (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 220:
|
||
#line 1271 "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, 1))
|
||
{
|
||
pop_function_context ();
|
||
YYERROR1;
|
||
}
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 221:
|
||
#line 1283 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 222:
|
||
#line 1291 "objc-parse.y"
|
||
{ finish_function (1);
|
||
pop_function_context (); ;
|
||
break;}
|
||
case 223:
|
||
#line 1297 "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, 1))
|
||
{
|
||
pop_function_context ();
|
||
YYERROR1;
|
||
}
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 224:
|
||
#line 1309 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 225:
|
||
#line 1317 "objc-parse.y"
|
||
{ finish_function (1);
|
||
pop_function_context (); ;
|
||
break;}
|
||
case 228:
|
||
#line 1333 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 229:
|
||
#line 1335 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 230:
|
||
#line 1340 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 231:
|
||
#line 1342 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 232:
|
||
#line 1344 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 233:
|
||
#line 1351 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 236:
|
||
#line 1363 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 237:
|
||
#line 1368 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 238:
|
||
#line 1370 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 239:
|
||
#line 1372 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 240:
|
||
#line 1379 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 242:
|
||
#line 1388 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 243:
|
||
#line 1393 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 244:
|
||
#line 1395 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 245:
|
||
#line 1397 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 246:
|
||
#line 1399 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 247:
|
||
#line 1406 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 249:
|
||
#line 1412 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 250:
|
||
#line 1414 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 251:
|
||
#line 1419 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 252:
|
||
#line 1421 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 253:
|
||
#line 1426 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 254:
|
||
#line 1428 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 255:
|
||
#line 1433 "objc-parse.y"
|
||
{ yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
|
||
/* Start scope of tag before parsing components. */
|
||
;
|
||
break;}
|
||
case 256:
|
||
#line 1437 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 257:
|
||
#line 1439 "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 1443 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 259:
|
||
#line 1445 "objc-parse.y"
|
||
{ yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 260:
|
||
#line 1447 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 261:
|
||
#line 1449 "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 1453 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 263:
|
||
#line 1455 "objc-parse.y"
|
||
{ yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_enum (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 264:
|
||
#line 1458 "objc-parse.y"
|
||
{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-7].ttype, yyvsp[0].ttype));
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 265:
|
||
#line 1461 "objc-parse.y"
|
||
{ yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_enum (NULL_TREE); ;
|
||
break;}
|
||
case 266:
|
||
#line 1464 "objc-parse.y"
|
||
{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-6].ttype, yyvsp[0].ttype));
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 267:
|
||
#line 1467 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 271:
|
||
#line 1478 "objc-parse.y"
|
||
{ if (pedantic && ! flag_isoc9x)
|
||
pedwarn ("comma at end of enumerator list"); ;
|
||
break;}
|
||
case 272:
|
||
#line 1484 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 273:
|
||
#line 1486 "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 1491 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 275:
|
||
#line 1493 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 276:
|
||
#line 1495 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified"); ;
|
||
break;}
|
||
case 277:
|
||
#line 1499 "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 1524 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 279:
|
||
#line 1530 "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 280:
|
||
#line 1535 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 281:
|
||
#line 1541 "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 1546 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 283:
|
||
#line 1548 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 285:
|
||
#line 1555 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 286:
|
||
#line 1560 "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 1564 "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 1567 "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 1579 "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 1584 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 292:
|
||
#line 1590 "objc-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 293:
|
||
#line 1592 "objc-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 294:
|
||
#line 1597 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 295:
|
||
#line 1599 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 296:
|
||
#line 1604 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 298:
|
||
#line 1610 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 299:
|
||
#line 1612 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 300:
|
||
#line 1617 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 301:
|
||
#line 1619 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 302:
|
||
#line 1624 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 303:
|
||
#line 1627 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 304:
|
||
#line 1629 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 305:
|
||
#line 1631 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 306:
|
||
#line 1633 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 307:
|
||
#line 1635 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 308:
|
||
#line 1637 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 309:
|
||
#line 1639 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 310:
|
||
#line 1641 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 311:
|
||
#line 1645 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 312:
|
||
#line 1654 "objc-parse.y"
|
||
{
|
||
if (pedantic && yyvsp[0].ends_in_label)
|
||
pedwarn ("ANSI C forbids label at end of compound statement");
|
||
;
|
||
break;}
|
||
case 314:
|
||
#line 1663 "objc-parse.y"
|
||
{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
|
||
break;}
|
||
case 315:
|
||
#line 1665 "objc-parse.y"
|
||
{ yyval.ends_in_label = 0; ;
|
||
break;}
|
||
case 319:
|
||
#line 1677 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
push_momentary ();
|
||
expand_start_bindings (0);
|
||
if (objc_method_context)
|
||
add_objc_decls ();
|
||
;
|
||
break;}
|
||
case 321:
|
||
#line 1692 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids label declarations"); ;
|
||
break;}
|
||
case 324:
|
||
#line 1703 "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 1717 "objc-parse.y"
|
||
{;
|
||
break;}
|
||
case 327:
|
||
#line 1721 "objc-parse.y"
|
||
{ compstmt_count++; ;
|
||
break;}
|
||
case 328:
|
||
#line 1724 "objc-parse.y"
|
||
{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
|
||
break;}
|
||
case 329:
|
||
#line 1726 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_end_bindings (getdecls (), 1, 0);
|
||
yyval.ttype = poplevel (1, 1, 0);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 330:
|
||
#line 1734 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_end_bindings (getdecls (), kept_level_p (), 0);
|
||
yyval.ttype = poplevel (kept_level_p (), 0, 0);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 331:
|
||
#line 1742 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_end_bindings (getdecls (), kept_level_p (), 0);
|
||
yyval.ttype = poplevel (kept_level_p (), 0, 0);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 332:
|
||
#line 1753 "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 1770 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 336:
|
||
#line 1784 "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 1798 "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 1806 "objc-parse.y"
|
||
{ expand_loop_continue_here (); ;
|
||
break;}
|
||
case 339:
|
||
#line 1810 "objc-parse.y"
|
||
{ yyval.filename = input_filename; ;
|
||
break;}
|
||
case 340:
|
||
#line 1814 "objc-parse.y"
|
||
{ yyval.lineno = lineno; ;
|
||
break;}
|
||
case 341:
|
||
#line 1819 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 342:
|
||
#line 1824 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 343:
|
||
#line 1829 "objc-parse.y"
|
||
{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
|
||
break;}
|
||
case 344:
|
||
#line 1834 "objc-parse.y"
|
||
{ yyval.ends_in_label = 0; ;
|
||
break;}
|
||
case 345:
|
||
#line 1836 "objc-parse.y"
|
||
{ yyval.ends_in_label = 1; ;
|
||
break;}
|
||
case 346:
|
||
#line 1842 "objc-parse.y"
|
||
{ stmt_count++; ;
|
||
break;}
|
||
case 348:
|
||
#line 1845 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
|
||
/* It appears that this should not be done--that a non-lvalue array
|
||
shouldn't get an error if the value isn't used.
|
||
Section 3.2.2.1 says that an array lvalue gets converted to a pointer
|
||
if it appears as a top-level expression,
|
||
but says nothing about non-lvalue arrays. */
|
||
#if 0
|
||
/* Call default_conversion to get an error
|
||
on referring to a register array if pedantic. */
|
||
if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
|
||
|| TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
|
||
yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
|
||
#endif
|
||
iterator_expand (yyvsp[-1].ttype);
|
||
clear_momentary (); ;
|
||
break;}
|
||
case 349:
|
||
#line 1862 "objc-parse.y"
|
||
{ c_expand_start_else ();
|
||
yyvsp[-1].itype = stmt_count;
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 350:
|
||
#line 1866 "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 1870 "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 1882 "objc-parse.y"
|
||
{ c_expand_end_cond (); ;
|
||
break;}
|
||
case 353:
|
||
#line 1884 "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 1894 "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 1903 "objc-parse.y"
|
||
{ expand_end_loop (); ;
|
||
break;}
|
||
case 356:
|
||
#line 1906 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_exit_loop_if_false (NULL_PTR,
|
||
truthvalue_conversion (yyvsp[-2].ttype));
|
||
expand_end_loop ();
|
||
clear_momentary (); ;
|
||
break;}
|
||
case 357:
|
||
#line 1913 "objc-parse.y"
|
||
{ expand_end_loop ();
|
||
clear_momentary (); ;
|
||
break;}
|
||
case 358:
|
||
#line 1917 "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 1929 "objc-parse.y"
|
||
{ yyvsp[0].lineno = lineno;
|
||
yyval.filename = input_filename; ;
|
||
break;}
|
||
case 360:
|
||
#line 1932 "objc-parse.y"
|
||
{
|
||
/* Start the loop. Doing this after parsing
|
||
all the expressions ensures we will end the loop. */
|
||
expand_start_loop_continue_elsewhere (1);
|
||
/* Emit the end-test, with a line number. */
|
||
emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
|
||
if (yyvsp[-4].ttype)
|
||
expand_exit_loop_if_false (NULL_PTR,
|
||
truthvalue_conversion (yyvsp[-4].ttype));
|
||
/* Don't let the tree nodes for $9 be discarded by
|
||
clear_momentary during the parsing of the next stmt. */
|
||
push_momentary ();
|
||
yyvsp[-3].lineno = lineno;
|
||
yyvsp[-2].filename = input_filename;
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 361:
|
||
#line 1948 "objc-parse.y"
|
||
{ /* Emit the increment expression, with a line number. */
|
||
emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
|
||
expand_loop_continue_here ();
|
||
if (yyvsp[-3].ttype)
|
||
c_expand_expr_stmt (yyvsp[-3].ttype);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary ();
|
||
expand_end_loop (); ;
|
||
break;}
|
||
case 362:
|
||
#line 1959 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
|
||
c_expand_start_case (yyvsp[-1].ttype);
|
||
/* Don't let the tree nodes for $3 be discarded by
|
||
clear_momentary during the parsing of the next stmt. */
|
||
push_momentary ();
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 363:
|
||
#line 1967 "objc-parse.y"
|
||
{ expand_end_case (yyvsp[-3].ttype);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 364:
|
||
#line 1973 "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 1978 "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 1983 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
|
||
c_expand_return (NULL_TREE); ;
|
||
break;}
|
||
case 367:
|
||
#line 1987 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
|
||
c_expand_return (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 368:
|
||
#line 1991 "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 2002 "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 2009 "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 2017 "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 2023 "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 2034 "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 2049 "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 2070 "objc-parse.y"
|
||
{
|
||
if (yyvsp[-1].itype)
|
||
iterator_for_loop_end (yyvsp[-3].ttype);
|
||
;
|
||
break;}
|
||
case 378:
|
||
#line 2105 "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 2136 "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 2167 "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 2182 "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 2197 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 383:
|
||
#line 2200 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno); ;
|
||
break;}
|
||
case 384:
|
||
#line 2205 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 386:
|
||
#line 2212 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 389:
|
||
#line 2219 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 390:
|
||
#line 2224 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 391:
|
||
#line 2229 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
|
||
break;}
|
||
case 392:
|
||
#line 2231 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 393:
|
||
#line 2237 "objc-parse.y"
|
||
{ pushlevel (0);
|
||
clear_parm_order ();
|
||
declare_parm_level (0); ;
|
||
break;}
|
||
case 394:
|
||
#line 2241 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
parmlist_tags_warning ();
|
||
poplevel (0, 0, 0); ;
|
||
break;}
|
||
case 396:
|
||
#line 2249 "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 2257 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 398:
|
||
#line 2259 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 399:
|
||
#line 2265 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (0); ;
|
||
break;}
|
||
case 400:
|
||
#line 2267 "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 2277 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (1); ;
|
||
break;}
|
||
case 402:
|
||
#line 2279 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (0); ;
|
||
break;}
|
||
case 403:
|
||
#line 2284 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 404:
|
||
#line 2286 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 405:
|
||
#line 2293 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 406:
|
||
#line 2302 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 407:
|
||
#line 2311 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 408:
|
||
#line 2320 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 409:
|
||
#line 2330 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 410:
|
||
#line 2344 "objc-parse.y"
|
||
{ pushlevel (0);
|
||
clear_parm_order ();
|
||
declare_parm_level (1); ;
|
||
break;}
|
||
case 411:
|
||
#line 2348 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
parmlist_tags_warning ();
|
||
poplevel (0, 0, 0); ;
|
||
break;}
|
||
case 413:
|
||
#line 2356 "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 2366 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 415:
|
||
#line 2368 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 416:
|
||
#line 2374 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 417:
|
||
#line 2376 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 418:
|
||
#line 2381 "objc-parse.y"
|
||
{ yyval.itype = pedantic;
|
||
pedantic = 0; ;
|
||
break;}
|
||
case 424:
|
||
#line 2394 "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 2409 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 426:
|
||
#line 2411 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 427:
|
||
#line 2416 "objc-parse.y"
|
||
{
|
||
objc_declare_class (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 428:
|
||
#line 2422 "objc-parse.y"
|
||
{
|
||
objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 429:
|
||
#line 2428 "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 2434 "objc-parse.y"
|
||
{
|
||
continue_class (objc_interface_context);
|
||
;
|
||
break;}
|
||
case 431:
|
||
#line 2439 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 432:
|
||
#line 2445 "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 2452 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 434:
|
||
#line 2458 "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 2464 "objc-parse.y"
|
||
{
|
||
continue_class (objc_interface_context);
|
||
;
|
||
break;}
|
||
case 436:
|
||
#line 2469 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 437:
|
||
#line 2475 "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 2482 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 439:
|
||
#line 2488 "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 2494 "objc-parse.y"
|
||
{
|
||
objc_ivar_chain
|
||
= continue_class (objc_implementation_context);
|
||
;
|
||
break;}
|
||
case 441:
|
||
#line 2500 "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 2508 "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 2514 "objc-parse.y"
|
||
{
|
||
objc_ivar_chain
|
||
= continue_class (objc_implementation_context);
|
||
;
|
||
break;}
|
||
case 444:
|
||
#line 2520 "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 2528 "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 2535 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 447:
|
||
#line 2541 "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 2551 "objc-parse.y"
|
||
{
|
||
remember_protocol_qualifiers ();
|
||
objc_interface_context
|
||
= start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 449:
|
||
#line 2557 "objc-parse.y"
|
||
{
|
||
forget_protocol_qualifiers();
|
||
finish_protocol(objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 450:
|
||
#line 2566 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 452:
|
||
#line 2574 "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 2588 "objc-parse.y"
|
||
{ objc_public_flag = 2; ;
|
||
break;}
|
||
case 456:
|
||
#line 2589 "objc-parse.y"
|
||
{ objc_public_flag = 0; ;
|
||
break;}
|
||
case 457:
|
||
#line 2590 "objc-parse.y"
|
||
{ objc_public_flag = 1; ;
|
||
break;}
|
||
case 458:
|
||
#line 2595 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 460:
|
||
#line 2600 "objc-parse.y"
|
||
{
|
||
if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified");
|
||
;
|
||
break;}
|
||
case 461:
|
||
#line 2618 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 462:
|
||
#line 2624 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 463:
|
||
#line 2630 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 464:
|
||
#line 2635 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 467:
|
||
#line 2642 "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 2649 "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 2655 "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 2665 "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 2673 "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 2680 "objc-parse.y"
|
||
{
|
||
continue_method_def ();
|
||
;
|
||
break;}
|
||
case 473:
|
||
#line 2684 "objc-parse.y"
|
||
{
|
||
finish_method_def ();
|
||
objc_method_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 474:
|
||
#line 2690 "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 2698 "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 2705 "objc-parse.y"
|
||
{
|
||
continue_method_def ();
|
||
;
|
||
break;}
|
||
case 477:
|
||
#line 2709 "objc-parse.y"
|
||
{
|
||
finish_method_def ();
|
||
objc_method_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 479:
|
||
#line 2721 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 484:
|
||
#line 2728 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 488:
|
||
#line 2738 "objc-parse.y"
|
||
{
|
||
/* Remember protocol qualifiers in prototypes. */
|
||
remember_protocol_qualifiers ();
|
||
objc_inherit_code = CLASS_METHOD_DECL;
|
||
;
|
||
break;}
|
||
case 489:
|
||
#line 2744 "objc-parse.y"
|
||
{
|
||
/* Forget protocol qualifiers here. */
|
||
forget_protocol_qualifiers ();
|
||
add_class_method (objc_interface_context, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 491:
|
||
#line 2752 "objc-parse.y"
|
||
{
|
||
/* Remember protocol qualifiers in prototypes. */
|
||
remember_protocol_qualifiers ();
|
||
objc_inherit_code = INSTANCE_METHOD_DECL;
|
||
;
|
||
break;}
|
||
case 492:
|
||
#line 2758 "objc-parse.y"
|
||
{
|
||
/* Forget protocol qualifiers here. */
|
||
forget_protocol_qualifiers ();
|
||
add_instance_method (objc_interface_context, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 494:
|
||
#line 2768 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 495:
|
||
#line 2773 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 496:
|
||
#line 2778 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 497:
|
||
#line 2783 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 506:
|
||
#line 2813 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 507:
|
||
#line 2818 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 508:
|
||
#line 2820 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 509:
|
||
#line 2825 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 510:
|
||
#line 2827 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 511:
|
||
#line 2835 "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 2840 "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 2845 "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 2853 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 515:
|
||
#line 2857 "objc-parse.y"
|
||
{
|
||
/* oh what a kludge! */
|
||
yyval.ttype = (tree)1;
|
||
;
|
||
break;}
|
||
case 516:
|
||
#line 2862 "objc-parse.y"
|
||
{
|
||
pushlevel (0);
|
||
;
|
||
break;}
|
||
case 517:
|
||
#line 2866 "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 2881 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 525:
|
||
#line 2894 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 526:
|
||
#line 2895 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 527:
|
||
#line 2896 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 528:
|
||
#line 2897 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 529:
|
||
#line 2898 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 530:
|
||
#line 2899 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 531:
|
||
#line 2900 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 532:
|
||
#line 2901 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 533:
|
||
#line 2902 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 534:
|
||
#line 2903 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 535:
|
||
#line 2904 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 536:
|
||
#line 2905 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 537:
|
||
#line 2906 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 538:
|
||
#line 2907 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 539:
|
||
#line 2908 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 540:
|
||
#line 2909 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 541:
|
||
#line 2910 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 542:
|
||
#line 2911 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 543:
|
||
#line 2912 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 546:
|
||
#line 2918 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 547:
|
||
#line 2923 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 548:
|
||
#line 2928 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 549:
|
||
#line 2933 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 553:
|
||
#line 2946 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 554:
|
||
#line 2954 "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 2966 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 556:
|
||
#line 2970 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 558:
|
||
#line 2978 "objc-parse.y"
|
||
{
|
||
yyval.ttype = get_class_reference (yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 559:
|
||
#line 2985 "objc-parse.y"
|
||
{ objc_receiver_context = 1; ;
|
||
break;}
|
||
case 560:
|
||
#line 2987 "objc-parse.y"
|
||
{ objc_receiver_context = 0; ;
|
||
break;}
|
||
case 561:
|
||
#line 2989 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 565:
|
||
#line 3002 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 566:
|
||
#line 3009 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 567:
|
||
#line 3013 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 568:
|
||
#line 3020 "objc-parse.y"
|
||
{
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 569:
|
||
#line 3027 "objc-parse.y"
|
||
{
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 570:
|
||
#line 3036 "objc-parse.y"
|
||
{
|
||
yyval.ttype = groktypename (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
}
|
||
/* the action file gets copied in in place of this dollarsign */
|
||
#line 498 "/usr/share/bison.simple"
|
||
|
||
yyvsp -= yylen;
|
||
yyssp -= yylen;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp -= yylen;
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
short *ssp1 = yyss - 1;
|
||
fprintf (stderr, "state stack now");
|
||
while (ssp1 != yyssp)
|
||
fprintf (stderr, " %d", *++ssp1);
|
||
fprintf (stderr, "\n");
|
||
}
|
||
#endif
|
||
|
||
*++yyvsp = yyval;
|
||
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp++;
|
||
if (yylen == 0)
|
||
{
|
||
yylsp->first_line = yylloc.first_line;
|
||
yylsp->first_column = yylloc.first_column;
|
||
yylsp->last_line = (yylsp-1)->last_line;
|
||
yylsp->last_column = (yylsp-1)->last_column;
|
||
yylsp->text = 0;
|
||
}
|
||
else
|
||
{
|
||
yylsp->last_line = (yylsp+yylen-1)->last_line;
|
||
yylsp->last_column = (yylsp+yylen-1)->last_column;
|
||
}
|
||
#endif
|
||
|
||
/* Now "shift" the result of the reduction.
|
||
Determine what state that goes to,
|
||
based on the state we popped back to
|
||
and the rule number reduced by. */
|
||
|
||
yyn = yyr1[yyn];
|
||
|
||
yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
|
||
if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
||
yystate = yytable[yystate];
|
||
else
|
||
yystate = yydefgoto[yyn - YYNTBASE];
|
||
|
||
goto yynewstate;
|
||
|
||
yyerrlab: /* here on detecting error */
|
||
|
||
if (! yyerrstatus)
|
||
/* If not already recovering from an error, report this error. */
|
||
{
|
||
++yynerrs;
|
||
|
||
#ifdef YYERROR_VERBOSE
|
||
yyn = yypact[yystate];
|
||
|
||
if (yyn > YYFLAG && yyn < YYLAST)
|
||
{
|
||
int size = 0;
|
||
char *msg;
|
||
int x, count;
|
||
|
||
count = 0;
|
||
/* Start X at -yyn if nec to avoid negative indexes in yycheck. */
|
||
for (x = (yyn < 0 ? -yyn : 0);
|
||
x < (sizeof(yytname) / sizeof(char *)); x++)
|
||
if (yycheck[x + yyn] == x)
|
||
size += strlen(yytname[x]) + 15, count++;
|
||
msg = (char *) malloc(size + 15);
|
||
if (msg != 0)
|
||
{
|
||
strcpy(msg, "parse error");
|
||
|
||
if (count < 5)
|
||
{
|
||
count = 0;
|
||
for (x = (yyn < 0 ? -yyn : 0);
|
||
x < (sizeof(yytname) / sizeof(char *)); x++)
|
||
if (yycheck[x + yyn] == x)
|
||
{
|
||
strcat(msg, count == 0 ? ", expecting `" : " or `");
|
||
strcat(msg, yytname[x]);
|
||
strcat(msg, "'");
|
||
count++;
|
||
}
|
||
}
|
||
yyerror(msg);
|
||
free(msg);
|
||
}
|
||
else
|
||
yyerror ("parse error; also virtual memory exceeded");
|
||
}
|
||
else
|
||
#endif /* YYERROR_VERBOSE */
|
||
yyerror("parse error");
|
||
}
|
||
|
||
goto yyerrlab1;
|
||
yyerrlab1: /* here on error raised explicitly by an action */
|
||
|
||
if (yyerrstatus == 3)
|
||
{
|
||
/* if just tried and failed to reuse lookahead token after an error, discard it. */
|
||
|
||
/* return failure if at end of input */
|
||
if (yychar == YYEOF)
|
||
YYABORT;
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
|
||
#endif
|
||
|
||
yychar = YYEMPTY;
|
||
}
|
||
|
||
/* Else will try to reuse lookahead token
|
||
after shifting the error token. */
|
||
|
||
yyerrstatus = 3; /* Each real token shifted decrements this */
|
||
|
||
goto yyerrhandle;
|
||
|
||
yyerrdefault: /* current state does not do anything special for the error token. */
|
||
|
||
#if 0
|
||
/* This is wrong; only states that explicitly want error tokens
|
||
should shift them. */
|
||
yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
|
||
if (yyn) goto yydefault;
|
||
#endif
|
||
|
||
yyerrpop: /* pop the current state because it cannot handle the error token */
|
||
|
||
if (yyssp == yyss) YYABORT;
|
||
yyvsp--;
|
||
yystate = *--yyssp;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp--;
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
short *ssp1 = yyss - 1;
|
||
fprintf (stderr, "Error: state stack now");
|
||
while (ssp1 != yyssp)
|
||
fprintf (stderr, " %d", *++ssp1);
|
||
fprintf (stderr, "\n");
|
||
}
|
||
#endif
|
||
|
||
yyerrhandle:
|
||
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYFLAG)
|
||
goto yyerrdefault;
|
||
|
||
yyn += YYTERROR;
|
||
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
|
||
goto yyerrdefault;
|
||
|
||
yyn = yytable[yyn];
|
||
if (yyn < 0)
|
||
{
|
||
if (yyn == YYFLAG)
|
||
goto yyerrpop;
|
||
yyn = -yyn;
|
||
goto yyreduce;
|
||
}
|
||
else if (yyn == 0)
|
||
goto yyerrpop;
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Shifting error token, ");
|
||
#endif
|
||
|
||
*++yyvsp = yylval;
|
||
#ifdef YYLSP_NEEDED
|
||
*++yylsp = yylloc;
|
||
#endif
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
}
|
||
#line 3041 "objc-parse.y"
|
||
|