5175 lines
200 KiB
C
5175 lines
200 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 ASSIGN 290
|
||
#define OROR 291
|
||
#define ANDAND 292
|
||
#define EQCOMPARE 293
|
||
#define ARITHCOMPARE 294
|
||
#define LSHIFT 295
|
||
#define RSHIFT 296
|
||
#define UNARY 297
|
||
#define PLUSPLUS 298
|
||
#define MINUSMINUS 299
|
||
#define HYPERUNARY 300
|
||
#define POINTSAT 301
|
||
#define INTERFACE 302
|
||
#define IMPLEMENTATION 303
|
||
#define END 304
|
||
#define SELECTOR 305
|
||
#define DEFS 306
|
||
#define ENCODE 307
|
||
#define CLASSNAME 308
|
||
#define PUBLIC 309
|
||
#define PRIVATE 310
|
||
#define PROTECTED 311
|
||
#define PROTOCOL 312
|
||
#define OBJECTNAME 313
|
||
#define CLASS 314
|
||
#define ALIAS 315
|
||
#define OBJC_STRING 316
|
||
|
||
#line 33 "objc-parse.y"
|
||
|
||
#include "config.h"
|
||
#include "system.h"
|
||
#include <setjmp.h>
|
||
|
||
#include "tree.h"
|
||
#include "input.h"
|
||
#include "c-lex.h"
|
||
#include "c-tree.h"
|
||
#include "flags.h"
|
||
#include "output.h"
|
||
#include "toplev.h"
|
||
|
||
#ifdef MULTIBYTE_CHARS
|
||
#include <locale.h>
|
||
#endif
|
||
|
||
#include "objc-act.h"
|
||
|
||
/* Since parsers are distinct for each language, put the language string
|
||
definition here. */
|
||
char *language_string = "GNU Obj-C";
|
||
|
||
/* Like YYERROR but do call yyerror. */
|
||
#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
|
||
|
||
/* Cause the `yydebug' variable to be defined. */
|
||
#define YYDEBUG 1
|
||
|
||
#line 65 "objc-parse.y"
|
||
typedef union {long itype; tree ttype; enum tree_code code;
|
||
char *filename; int lineno; int ends_in_label; } YYSTYPE;
|
||
#line 193 "objc-parse.y"
|
||
|
||
/* Number of statements (loosely speaking) and compound statements
|
||
seen so far. */
|
||
static int stmt_count;
|
||
static int compstmt_count;
|
||
|
||
/* Input file and line number of the end of the body of last simple_if;
|
||
used by the stmt-rule immediately after simple_if returns. */
|
||
static char *if_stmt_file;
|
||
static int if_stmt_line;
|
||
|
||
/* List of types and structure classes of the current declaration. */
|
||
static tree current_declspecs = NULL_TREE;
|
||
static tree prefix_attributes = NULL_TREE;
|
||
|
||
/* Stack of saved values of current_declspecs and prefix_attributes. */
|
||
static tree declspec_stack;
|
||
|
||
/* 1 if we explained undeclared var errors. */
|
||
static int undeclared_variable_notice;
|
||
|
||
/* Objective-C specific information */
|
||
|
||
tree objc_interface_context;
|
||
tree objc_implementation_context;
|
||
tree objc_method_context;
|
||
tree objc_ivar_chain;
|
||
tree objc_ivar_context;
|
||
enum tree_code objc_inherit_code;
|
||
int objc_receiver_context;
|
||
int objc_public_flag;
|
||
|
||
|
||
/* Tell yyparse how to print a token's value, if yydebug is set. */
|
||
|
||
#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
|
||
extern void yyprint PROTO ((FILE *, int, YYSTYPE));
|
||
#include <stdio.h>
|
||
|
||
#ifndef __cplusplus
|
||
#ifndef __STDC__
|
||
#define const
|
||
#endif
|
||
#endif
|
||
|
||
|
||
|
||
#define YYFINAL 952
|
||
#define YYFLAG -32768
|
||
#define YYNTBASE 84
|
||
|
||
#define YYTRANSLATE(x) ((unsigned)(x) <= 316 ? yytranslate[x] : 311)
|
||
|
||
static const char yytranslate[] = { 0,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 80, 2, 2, 2, 52, 43, 2, 59,
|
||
76, 50, 48, 81, 49, 58, 51, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 38, 77, 2,
|
||
36, 2, 37, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
60, 2, 83, 42, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 82, 41, 78, 79, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 1, 2, 3, 4, 5,
|
||
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
||
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
||
39, 40, 44, 45, 46, 47, 53, 54, 55, 56,
|
||
57, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
||
70, 71, 72, 73, 74, 75
|
||
};
|
||
|
||
#if YYDEBUG != 0
|
||
static const short yyprhs[] = { 0,
|
||
0, 1, 3, 4, 7, 8, 12, 14, 16, 18,
|
||
24, 27, 31, 36, 41, 44, 47, 50, 53, 55,
|
||
56, 57, 65, 70, 71, 72, 80, 85, 86, 87,
|
||
94, 98, 100, 102, 104, 106, 108, 110, 112, 114,
|
||
116, 118, 120, 122, 123, 125, 127, 131, 133, 136,
|
||
139, 142, 145, 148, 153, 156, 161, 164, 167, 169,
|
||
171, 173, 178, 179, 187, 189, 193, 197, 201, 205,
|
||
209, 213, 217, 221, 225, 229, 233, 237, 238, 243,
|
||
244, 249, 250, 251, 259, 260, 266, 270, 274, 276,
|
||
278, 280, 284, 288, 289, 294, 299, 304, 308, 312,
|
||
315, 318, 320, 322, 324, 326, 328, 330, 333, 335,
|
||
338, 339, 341, 344, 348, 350, 352, 355, 358, 363,
|
||
368, 371, 374, 378, 380, 382, 385, 388, 389, 390,
|
||
395, 400, 404, 408, 411, 414, 417, 420, 424, 425,
|
||
428, 431, 434, 437, 441, 442, 445, 448, 450, 452,
|
||
455, 458, 460, 462, 465, 468, 471, 475, 476, 479,
|
||
481, 483, 485, 488, 491, 493, 498, 503, 505, 507,
|
||
509, 511, 515, 517, 521, 522, 527, 528, 535, 539,
|
||
540, 547, 551, 552, 554, 556, 559, 566, 568, 572,
|
||
573, 575, 580, 587, 592, 594, 596, 598, 600, 602,
|
||
603, 608, 610, 611, 614, 616, 620, 624, 627, 628,
|
||
633, 635, 636, 641, 643, 645, 647, 650, 653, 654,
|
||
655, 661, 662, 663, 669, 671, 673, 677, 681, 686,
|
||
690, 694, 698, 700, 702, 706, 711, 715, 719, 723,
|
||
725, 729, 733, 737, 742, 746, 750, 752, 754, 757,
|
||
759, 762, 764, 767, 768, 776, 782, 785, 786, 794,
|
||
800, 803, 804, 813, 814, 822, 825, 826, 828, 829,
|
||
831, 833, 836, 837, 841, 844, 849, 853, 855, 859,
|
||
861, 863, 866, 868, 872, 877, 884, 890, 892, 896,
|
||
898, 900, 904, 907, 910, 911, 913, 915, 918, 919,
|
||
922, 926, 930, 933, 937, 942, 946, 949, 953, 956,
|
||
958, 960, 963, 966, 967, 969, 972, 973, 974, 976,
|
||
978, 981, 985, 987, 990, 992, 995, 1002, 1008, 1014,
|
||
1017, 1020, 1025, 1026, 1031, 1032, 1033, 1037, 1042, 1046,
|
||
1048, 1050, 1052, 1054, 1057, 1058, 1063, 1065, 1069, 1070,
|
||
1071, 1079, 1085, 1088, 1089, 1090, 1091, 1104, 1105, 1112,
|
||
1115, 1118, 1121, 1125, 1132, 1141, 1152, 1165, 1169, 1174,
|
||
1176, 1178, 1179, 1186, 1190, 1196, 1199, 1203, 1204, 1206,
|
||
1207, 1209, 1210, 1212, 1214, 1218, 1223, 1225, 1229, 1230,
|
||
1233, 1236, 1237, 1242, 1245, 1246, 1248, 1250, 1254, 1256,
|
||
1260, 1265, 1270, 1275, 1280, 1285, 1286, 1289, 1291, 1294,
|
||
1296, 1300, 1302, 1306, 1308, 1310, 1312, 1314, 1316, 1318,
|
||
1320, 1322, 1326, 1330, 1335, 1336, 1337, 1348, 1349, 1356,
|
||
1357, 1358, 1371, 1372, 1381, 1382, 1389, 1392, 1393, 1402,
|
||
1407, 1408, 1418, 1424, 1425, 1432, 1433, 1435, 1439, 1443,
|
||
1445, 1447, 1449, 1451, 1452, 1456, 1459, 1463, 1467, 1469,
|
||
1470, 1472, 1476, 1478, 1482, 1485, 1486, 1487, 1488, 1496,
|
||
1497, 1498, 1499, 1507, 1508, 1509, 1512, 1514, 1516, 1519,
|
||
1520, 1524, 1526, 1528, 1529, 1530, 1536, 1537, 1538, 1544,
|
||
1549, 1551, 1557, 1560, 1561, 1564, 1565, 1567, 1569, 1571,
|
||
1574, 1577, 1582, 1585, 1588, 1590, 1594, 1597, 1600, 1603,
|
||
1604, 1607, 1608, 1612, 1614, 1616, 1619, 1621, 1623, 1625,
|
||
1627, 1629, 1631, 1633, 1635, 1637, 1639, 1641, 1643, 1645,
|
||
1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665,
|
||
1667, 1669, 1676, 1680, 1686, 1689, 1691, 1693, 1695, 1698,
|
||
1700, 1704, 1707, 1709, 1711, 1712, 1713, 1720, 1722, 1724,
|
||
1726, 1729, 1732, 1734, 1739, 1744
|
||
};
|
||
|
||
static const short yyrhs[] = { -1,
|
||
85, 0, 0, 86, 88, 0, 0, 85, 87, 88,
|
||
0, 90, 0, 89, 0, 242, 0, 27, 59, 99,
|
||
76, 77, 0, 241, 88, 0, 123, 137, 77, 0,
|
||
130, 123, 137, 77, 0, 126, 123, 136, 77, 0,
|
||
130, 77, 0, 126, 77, 0, 1, 77, 0, 1,
|
||
78, 0, 77, 0, 0, 0, 126, 123, 165, 91,
|
||
117, 92, 199, 0, 126, 123, 165, 1, 0, 0,
|
||
0, 130, 123, 168, 93, 117, 94, 199, 0, 130,
|
||
123, 168, 1, 0, 0, 0, 123, 168, 95, 117,
|
||
96, 199, 0, 123, 168, 1, 0, 3, 0, 4,
|
||
0, 72, 0, 67, 0, 43, 0, 49, 0, 48,
|
||
0, 54, 0, 55, 0, 79, 0, 80, 0, 101,
|
||
0, 0, 101, 0, 107, 0, 101, 81, 107, 0,
|
||
113, 0, 50, 105, 0, 241, 105, 0, 98, 105,
|
||
0, 40, 97, 0, 103, 102, 0, 103, 59, 186,
|
||
76, 0, 104, 102, 0, 104, 59, 186, 76, 0,
|
||
33, 105, 0, 34, 105, 0, 11, 0, 29, 0,
|
||
102, 0, 59, 186, 76, 105, 0, 0, 59, 186,
|
||
76, 82, 106, 151, 78, 0, 105, 0, 107, 48,
|
||
107, 0, 107, 49, 107, 0, 107, 50, 107, 0,
|
||
107, 51, 107, 0, 107, 52, 107, 0, 107, 46,
|
||
107, 0, 107, 47, 107, 0, 107, 45, 107, 0,
|
||
107, 44, 107, 0, 107, 43, 107, 0, 107, 41,
|
||
107, 0, 107, 42, 107, 0, 0, 107, 40, 108,
|
||
107, 0, 0, 107, 39, 109, 107, 0, 0, 0,
|
||
107, 37, 110, 99, 38, 111, 107, 0, 0, 107,
|
||
37, 112, 38, 107, 0, 107, 36, 107, 0, 107,
|
||
35, 107, 0, 3, 0, 8, 0, 115, 0, 59,
|
||
99, 76, 0, 59, 1, 76, 0, 0, 59, 114,
|
||
201, 76, 0, 113, 59, 100, 76, 0, 113, 60,
|
||
99, 83, 0, 113, 58, 97, 0, 113, 57, 97,
|
||
0, 113, 54, 0, 113, 55, 0, 302, 0, 308,
|
||
0, 309, 0, 310, 0, 116, 0, 9, 0, 115,
|
||
9, 0, 75, 0, 116, 75, 0, 0, 119, 0,
|
||
119, 10, 0, 206, 207, 120, 0, 118, 0, 194,
|
||
0, 119, 118, 0, 118, 194, 0, 128, 123, 136,
|
||
77, 0, 131, 123, 137, 77, 0, 128, 77, 0,
|
||
131, 77, 0, 206, 207, 125, 0, 121, 0, 194,
|
||
0, 122, 121, 0, 121, 194, 0, 0, 0, 126,
|
||
123, 136, 77, 0, 130, 123, 137, 77, 0, 126,
|
||
123, 159, 0, 130, 123, 162, 0, 126, 77, 0,
|
||
130, 77, 0, 241, 125, 0, 134, 127, 0, 130,
|
||
134, 127, 0, 0, 127, 135, 0, 127, 5, 0,
|
||
127, 144, 0, 134, 129, 0, 131, 134, 129, 0,
|
||
0, 129, 135, 0, 129, 5, 0, 131, 0, 144,
|
||
0, 130, 131, 0, 130, 144, 0, 7, 0, 5,
|
||
0, 131, 7, 0, 131, 5, 0, 134, 133, 0,
|
||
188, 134, 133, 0, 0, 133, 135, 0, 6, 0,
|
||
172, 0, 4, 0, 67, 258, 0, 72, 258, 0,
|
||
259, 0, 28, 59, 99, 76, 0, 28, 59, 186,
|
||
76, 0, 6, 0, 7, 0, 172, 0, 139, 0,
|
||
136, 81, 139, 0, 141, 0, 137, 81, 139, 0,
|
||
0, 27, 59, 115, 76, 0, 0, 165, 138, 143,
|
||
36, 140, 149, 0, 165, 138, 143, 0, 0, 168,
|
||
138, 143, 36, 142, 149, 0, 168, 138, 143, 0,
|
||
0, 144, 0, 145, 0, 144, 145, 0, 30, 59,
|
||
59, 146, 76, 76, 0, 147, 0, 146, 81, 147,
|
||
0, 0, 148, 0, 148, 59, 3, 76, 0, 148,
|
||
59, 3, 81, 101, 76, 0, 148, 59, 100, 76,
|
||
0, 97, 0, 5, 0, 6, 0, 7, 0, 107,
|
||
0, 0, 82, 150, 151, 78, 0, 1, 0, 0,
|
||
152, 177, 0, 153, 0, 152, 81, 153, 0, 157,
|
||
36, 155, 0, 158, 155, 0, 0, 97, 38, 154,
|
||
155, 0, 155, 0, 0, 82, 156, 151, 78, 0,
|
||
107, 0, 1, 0, 158, 0, 157, 158, 0, 58,
|
||
97, 0, 0, 0, 165, 160, 117, 161, 201, 0,
|
||
0, 0, 168, 163, 117, 164, 201, 0, 166, 0,
|
||
168, 0, 59, 166, 76, 0, 166, 59, 236, 0,
|
||
166, 60, 99, 83, 0, 166, 60, 83, 0, 50,
|
||
189, 166, 0, 144, 124, 166, 0, 4, 0, 72,
|
||
0, 167, 59, 236, 0, 167, 60, 99, 83, 0,
|
||
167, 60, 83, 0, 50, 189, 167, 0, 144, 124,
|
||
167, 0, 4, 0, 168, 59, 236, 0, 59, 168,
|
||
76, 0, 50, 189, 168, 0, 168, 60, 99, 83,
|
||
0, 168, 60, 83, 0, 144, 124, 168, 0, 3,
|
||
0, 13, 0, 13, 144, 0, 14, 0, 14, 144,
|
||
0, 12, 0, 12, 144, 0, 0, 169, 97, 82,
|
||
173, 179, 78, 143, 0, 169, 82, 179, 78, 143,
|
||
0, 169, 97, 0, 0, 170, 97, 82, 174, 179,
|
||
78, 143, 0, 170, 82, 179, 78, 143, 0, 170,
|
||
97, 0, 0, 171, 97, 82, 175, 184, 178, 78,
|
||
143, 0, 0, 171, 82, 176, 184, 178, 78, 143,
|
||
0, 171, 97, 0, 0, 81, 0, 0, 81, 0,
|
||
180, 0, 180, 181, 0, 0, 180, 181, 77, 0,
|
||
180, 77, 0, 65, 59, 67, 76, 0, 132, 123,
|
||
182, 0, 132, 0, 188, 123, 182, 0, 188, 0,
|
||
1, 0, 241, 181, 0, 183, 0, 182, 81, 183,
|
||
0, 206, 207, 165, 143, 0, 206, 207, 165, 38,
|
||
107, 143, 0, 206, 207, 38, 107, 143, 0, 185,
|
||
0, 184, 81, 185, 0, 1, 0, 97, 0, 97,
|
||
36, 107, 0, 132, 187, 0, 188, 187, 0, 0,
|
||
190, 0, 7, 0, 188, 7, 0, 0, 189, 7,
|
||
0, 59, 190, 76, 0, 50, 189, 190, 0, 50,
|
||
189, 0, 190, 59, 229, 0, 190, 60, 99, 83,
|
||
0, 190, 60, 83, 0, 59, 229, 0, 60, 99,
|
||
83, 0, 60, 83, 0, 192, 0, 209, 0, 192,
|
||
209, 0, 192, 194, 0, 0, 191, 0, 1, 77,
|
||
0, 0, 0, 197, 0, 198, 0, 197, 198, 0,
|
||
32, 240, 77, 0, 201, 0, 1, 201, 0, 82,
|
||
0, 200, 78, 0, 200, 195, 196, 122, 193, 78,
|
||
0, 200, 195, 196, 1, 78, 0, 200, 195, 196,
|
||
191, 78, 0, 203, 208, 0, 203, 1, 0, 15,
|
||
59, 99, 76, 0, 0, 18, 205, 208, 17, 0,
|
||
0, 0, 206, 207, 211, 0, 206, 207, 222, 208,
|
||
0, 206, 207, 210, 0, 211, 0, 222, 0, 201,
|
||
0, 219, 0, 99, 77, 0, 0, 202, 16, 212,
|
||
208, 0, 202, 0, 202, 16, 1, 0, 0, 0,
|
||
17, 213, 59, 99, 76, 214, 208, 0, 204, 59,
|
||
99, 76, 77, 0, 204, 1, 0, 0, 0, 0,
|
||
19, 59, 224, 77, 215, 224, 77, 216, 224, 76,
|
||
217, 208, 0, 0, 20, 59, 99, 76, 218, 208,
|
||
0, 23, 77, 0, 24, 77, 0, 25, 77, 0,
|
||
25, 99, 77, 0, 27, 223, 59, 99, 76, 77,
|
||
0, 27, 223, 59, 99, 38, 225, 76, 77, 0,
|
||
27, 223, 59, 99, 38, 225, 38, 225, 76, 77,
|
||
0, 27, 223, 59, 99, 38, 225, 38, 225, 38,
|
||
228, 76, 77, 0, 26, 97, 77, 0, 26, 50,
|
||
99, 77, 0, 77, 0, 220, 0, 0, 19, 59,
|
||
113, 76, 221, 208, 0, 21, 107, 38, 0, 21,
|
||
107, 10, 107, 38, 0, 22, 38, 0, 97, 38,
|
||
143, 0, 0, 7, 0, 0, 99, 0, 0, 226,
|
||
0, 227, 0, 226, 81, 227, 0, 9, 59, 99,
|
||
76, 0, 115, 0, 228, 81, 115, 0, 0, 230,
|
||
231, 0, 233, 76, 0, 0, 234, 77, 232, 231,
|
||
0, 1, 76, 0, 0, 10, 0, 234, 0, 234,
|
||
81, 10, 0, 235, 0, 234, 81, 235, 0, 126,
|
||
123, 167, 143, 0, 126, 123, 168, 143, 0, 126,
|
||
123, 187, 143, 0, 130, 123, 168, 143, 0, 130,
|
||
123, 187, 143, 0, 0, 237, 238, 0, 231, 0,
|
||
239, 76, 0, 3, 0, 239, 81, 3, 0, 97,
|
||
0, 240, 81, 97, 0, 31, 0, 246, 0, 244,
|
||
0, 245, 0, 256, 0, 266, 0, 63, 0, 97,
|
||
0, 243, 81, 97, 0, 73, 243, 77, 0, 74,
|
||
97, 97, 77, 0, 0, 0, 61, 97, 258, 82,
|
||
247, 260, 78, 248, 273, 63, 0, 0, 61, 97,
|
||
258, 249, 273, 63, 0, 0, 0, 61, 97, 38,
|
||
97, 258, 82, 250, 260, 78, 251, 273, 63, 0,
|
||
0, 61, 97, 38, 97, 258, 252, 273, 63, 0,
|
||
0, 62, 97, 82, 253, 260, 78, 0, 62, 97,
|
||
0, 0, 62, 97, 38, 97, 82, 254, 260, 78,
|
||
0, 62, 97, 38, 97, 0, 0, 61, 97, 59,
|
||
97, 76, 258, 255, 273, 63, 0, 62, 97, 59,
|
||
97, 76, 0, 0, 71, 97, 258, 257, 273, 63,
|
||
0, 0, 259, 0, 45, 243, 45, 0, 260, 261,
|
||
262, 0, 262, 0, 69, 0, 70, 0, 68, 0,
|
||
0, 262, 263, 77, 0, 262, 77, 0, 132, 123,
|
||
264, 0, 188, 123, 264, 0, 1, 0, 0, 265,
|
||
0, 264, 81, 265, 0, 165, 0, 165, 38, 107,
|
||
0, 38, 107, 0, 0, 0, 0, 48, 267, 283,
|
||
268, 284, 269, 199, 0, 0, 0, 0, 49, 270,
|
||
283, 271, 284, 272, 199, 0, 0, 0, 274, 275,
|
||
0, 278, 0, 89, 0, 275, 278, 0, 0, 275,
|
||
276, 89, 0, 77, 0, 1, 0, 0, 0, 48,
|
||
279, 283, 280, 277, 0, 0, 0, 49, 281, 283,
|
||
282, 277, 0, 59, 186, 76, 292, 0, 292, 0,
|
||
59, 186, 76, 293, 290, 0, 293, 290, 0, 0,
|
||
77, 285, 0, 0, 286, 0, 287, 0, 194, 0,
|
||
286, 287, 0, 287, 194, 0, 126, 123, 288, 77,
|
||
0, 126, 77, 0, 130, 77, 0, 289, 0, 288,
|
||
81, 289, 0, 167, 143, 0, 168, 143, 0, 187,
|
||
143, 0, 0, 81, 10, 0, 0, 81, 291, 233,
|
||
0, 294, 0, 296, 0, 293, 296, 0, 3, 0,
|
||
4, 0, 72, 0, 295, 0, 12, 0, 13, 0,
|
||
14, 0, 15, 0, 16, 0, 17, 0, 18, 0,
|
||
19, 0, 20, 0, 21, 0, 22, 0, 23, 0,
|
||
24, 0, 25, 0, 26, 0, 27, 0, 11, 0,
|
||
28, 0, 29, 0, 6, 0, 7, 0, 294, 38,
|
||
59, 186, 76, 97, 0, 294, 38, 97, 0, 38,
|
||
59, 186, 76, 97, 0, 38, 97, 0, 294, 0,
|
||
298, 0, 300, 0, 298, 300, 0, 101, 0, 294,
|
||
38, 299, 0, 38, 299, 0, 99, 0, 67, 0,
|
||
0, 0, 60, 303, 301, 304, 297, 83, 0, 294,
|
||
0, 306, 0, 307, 0, 306, 307, 0, 294, 38,
|
||
0, 38, 0, 64, 59, 305, 76, 0, 71, 59,
|
||
97, 76, 0, 66, 59, 186, 76, 0
|
||
};
|
||
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
static const short yyrline[] = { 0,
|
||
233, 238, 252, 254, 254, 255, 257, 259, 260, 261,
|
||
269, 273, 284, 289, 294, 296, 298, 299, 300, 305,
|
||
312, 314, 319, 324, 330, 332, 337, 342, 348, 350,
|
||
355, 362, 364, 365, 366, 369, 371, 373, 375, 377,
|
||
379, 381, 385, 389, 392, 395, 398, 402, 404, 407,
|
||
410, 414, 442, 448, 451, 454, 457, 459, 463, 467,
|
||
471, 473, 476, 480, 507, 509, 511, 513, 515, 517,
|
||
519, 521, 523, 525, 527, 529, 531, 533, 537, 539,
|
||
543, 545, 548, 552, 554, 561, 564, 572, 583, 743,
|
||
744, 746, 752, 754, 768, 791, 793, 795, 807, 821,
|
||
823, 825, 827, 829, 831, 833, 838, 840, 846, 848,
|
||
852, 854, 855, 865, 870, 872, 873, 874, 881, 887,
|
||
892, 895, 903, 908, 910, 911, 912, 919, 930, 934,
|
||
940, 945, 950, 955, 957, 959, 968, 971, 975, 977,
|
||
979, 984, 988, 991, 995, 998, 1000, 1012, 1015, 1017,
|
||
1019, 1023, 1027, 1029, 1032, 1045, 1048, 1052, 1054, 1062,
|
||
1063, 1064, 1068, 1070, 1075, 1077, 1079, 1085, 1086, 1087,
|
||
1090, 1092, 1095, 1097, 1100, 1103, 1109, 1116, 1118, 1125,
|
||
1132, 1135, 1142, 1145, 1149, 1152, 1156, 1161, 1164, 1168,
|
||
1171, 1173, 1175, 1177, 1184, 1186, 1187, 1188, 1193, 1195,
|
||
1200, 1208, 1213, 1217, 1220, 1222, 1227, 1229, 1230, 1233,
|
||
1233, 1236, 1239, 1241, 1243, 1246, 1248, 1251, 1259, 1270,
|
||
1278, 1282, 1293, 1301, 1308, 1310, 1315, 1318, 1323, 1325,
|
||
1327, 1334, 1336, 1337, 1345, 1351, 1353, 1355, 1362, 1364,
|
||
1370, 1376, 1378, 1380, 1382, 1389, 1391, 1394, 1397, 1401,
|
||
1404, 1408, 1411, 1415, 1420, 1422, 1426, 1428, 1430, 1432,
|
||
1436, 1438, 1441, 1444, 1447, 1450, 1454, 1456, 1459, 1461,
|
||
1466, 1469, 1474, 1476, 1478, 1482, 1506, 1513, 1518, 1524,
|
||
1529, 1531, 1536, 1538, 1542, 1546, 1550, 1560, 1562, 1567,
|
||
1572, 1575, 1579, 1582, 1586, 1589, 1592, 1595, 1599, 1602,
|
||
1606, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1634,
|
||
1642, 1644, 1646, 1650, 1652, 1655, 1658, 1671, 1673, 1678,
|
||
1680, 1683, 1697, 1700, 1703, 1705, 1707, 1715, 1723, 1734,
|
||
1739, 1742, 1756, 1765, 1769, 1773, 1777, 1783, 1787, 1792,
|
||
1795, 1800, 1803, 1804, 1821, 1826, 1829, 1841, 1843, 1853,
|
||
1863, 1864, 1872, 1875, 1887, 1891, 1908, 1918, 1927, 1932,
|
||
1937, 1942, 1946, 1950, 1961, 1968, 1975, 1982, 1993, 1999,
|
||
2002, 2007, 2030, 2064, 2095, 2126, 2141, 2155, 2159, 2163,
|
||
2166, 2171, 2173, 2176, 2178, 2182, 2187, 2190, 2196, 2201,
|
||
2206, 2208, 2217, 2218, 2224, 2226, 2236, 2238, 2242, 2245,
|
||
2251, 2261, 2270, 2279, 2289, 2303, 2308, 2313, 2315, 2324,
|
||
2327, 2332, 2335, 2339, 2347, 2349, 2350, 2351, 2352, 2353,
|
||
2367, 2370, 2374, 2380, 2386, 2393, 2398, 2404, 2411, 2417,
|
||
2423, 2428, 2434, 2441, 2447, 2453, 2459, 2467, 2473, 2479,
|
||
2487, 2494, 2500, 2509, 2516, 2524, 2529, 2532, 2542, 2544,
|
||
2547, 2549, 2550, 2553, 2558, 2559, 2576, 2583, 2589, 2593,
|
||
2596, 2597, 2600, 2608, 2614, 2623, 2633, 2640, 2644, 2649,
|
||
2658, 2665, 2669, 2679, 2681, 2682, 2684, 2686, 2687, 2688,
|
||
2689, 2691, 2693, 2696, 2704, 2711, 2711, 2718, 2724, 2726,
|
||
2732, 2737, 2742, 2751, 2753, 2759, 2761, 2764, 2766, 2767,
|
||
2768, 2771, 2777, 2779, 2783, 2786, 2793, 2799, 2804, 2811,
|
||
2816, 2821, 2826, 2833, 2837, 2840, 2846, 2848, 2849, 2850,
|
||
2853, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863,
|
||
2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873,
|
||
2873, 2876, 2882, 2887, 2892, 2898, 2900, 2903, 2905, 2912,
|
||
2924, 2929, 2935, 2937, 2943, 2947, 2948, 2954, 2956, 2959,
|
||
2961, 2967, 2972, 2978, 2985, 2994
|
||
};
|
||
#endif
|
||
|
||
|
||
#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
|
||
|
||
static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
|
||
"TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
|
||
"ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
|
||
"BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ATTRIBUTE",
|
||
"EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'","OROR",
|
||
"ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT","'+'",
|
||
"'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
|
||
"'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
|
||
"CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
|
||
"OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
|
||
"@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
|
||
"unop","expr","exprlist","nonnull_exprlist","unary_expr","sizeof","alignof",
|
||
"cast_expr","@9","expr_no_commas","@10","@11","@12","@13","@14","primary","@15",
|
||
"string","objc_string","old_style_parm_decls","lineno_datadecl","datadecls",
|
||
"datadecl","lineno_decl","decls","setspecs","setattrs","decl","typed_declspecs",
|
||
"reserved_declspecs","typed_declspecs_no_prefix_attr","reserved_declspecs_no_prefix_attr",
|
||
"declmods","declmods_no_prefix_attr","typed_typespecs","reserved_typespecquals",
|
||
"typespec","typespecqual_reserved","initdecls","notype_initdecls","maybeasm",
|
||
"initdcl","@16","notype_initdcl","@17","maybe_attribute","attributes","attribute",
|
||
"attribute_list","attrib","any_word","init","@18","initlist_maybe_comma","initlist1",
|
||
"initelt","@19","initval","@20","designator_list","designator","nested_function",
|
||
"@21","@22","notype_nested_function","@23","@24","declarator","after_type_declarator",
|
||
"parm_declarator","notype_declarator","struct_head","union_head","enum_head",
|
||
"structsp","@25","@26","@27","@28","maybecomma","maybecomma_warn","component_decl_list",
|
||
"component_decl_list2","component_decl","components","component_declarator",
|
||
"enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
|
||
"absdcl1","stmts","lineno_stmt_or_labels","xstmts","errstmt","pushlevel","maybe_label_decls",
|
||
"label_decls","label_decl","compstmt_or_error","compstmt_start","compstmt","simple_if",
|
||
"if_prefix","do_stmt_start","@29","save_filename","save_lineno","lineno_labeled_stmt",
|
||
"lineno_stmt_or_label","stmt_or_label","stmt","@30","@31","@32","@33","@34",
|
||
"@35","@36","all_iter_stmt","all_iter_stmt_simple","@37","label","maybe_type_qual",
|
||
"xexpr","asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist",
|
||
"@38","parmlist_1","@39","parmlist_2","parms","parm","parmlist_or_identifiers",
|
||
"@40","parmlist_or_identifiers_1","identifiers","identifiers_or_typenames","extension",
|
||
"objcdef","identifier_list","classdecl","aliasdecl","classdef","@41","@42","@43",
|
||
"@44","@45","@46","@47","@48","@49","protocoldef","@50","protocolrefs","non_empty_protocolrefs",
|
||
"ivar_decl_list","visibility_spec","ivar_decls","ivar_decl","ivars","ivar_declarator",
|
||
"methoddef","@51","@52","@53","@54","@55","@56","methodprotolist","@57","methodprotolist2",
|
||
"@58","semi_or_error","methodproto","@59","@60","@61","@62","methoddecl","optarglist",
|
||
"myxdecls","mydecls","mydecl","myparms","myparm","optparmlist","@63","unaryselector",
|
||
"keywordselector","selector","reservedwords","keyworddecl","messageargs","keywordarglist",
|
||
"keywordexpr","keywordarg","receiver","objcmessageexpr","@64","@65","selectorarg",
|
||
"keywordnamelist","keywordname","objcselectorexpr","objcprotocolexpr","objcencodeexpr", NULL
|
||
};
|
||
#endif
|
||
|
||
static const short yyr1[] = { 0,
|
||
84, 84, 86, 85, 87, 85, 88, 88, 88, 88,
|
||
88, 89, 89, 89, 89, 89, 89, 89, 89, 91,
|
||
92, 90, 90, 93, 94, 90, 90, 95, 96, 90,
|
||
90, 97, 97, 97, 97, 98, 98, 98, 98, 98,
|
||
98, 98, 99, 100, 100, 101, 101, 102, 102, 102,
|
||
102, 102, 102, 102, 102, 102, 102, 102, 103, 104,
|
||
105, 105, 106, 105, 107, 107, 107, 107, 107, 107,
|
||
107, 107, 107, 107, 107, 107, 107, 108, 107, 109,
|
||
107, 110, 111, 107, 112, 107, 107, 107, 113, 113,
|
||
113, 113, 113, 114, 113, 113, 113, 113, 113, 113,
|
||
113, 113, 113, 113, 113, 113, 115, 115, 116, 116,
|
||
117, 117, 117, 118, 119, 119, 119, 119, 120, 120,
|
||
120, 120, 121, 122, 122, 122, 122, 123, 124, 125,
|
||
125, 125, 125, 125, 125, 125, 126, 126, 127, 127,
|
||
127, 127, 128, 128, 129, 129, 129, 130, 130, 130,
|
||
130, 131, 131, 131, 131, 132, 132, 133, 133, 134,
|
||
134, 134, 134, 134, 134, 134, 134, 135, 135, 135,
|
||
136, 136, 137, 137, 138, 138, 140, 139, 139, 142,
|
||
141, 141, 143, 143, 144, 144, 145, 146, 146, 147,
|
||
147, 147, 147, 147, 148, 148, 148, 148, 149, 150,
|
||
149, 149, 151, 151, 152, 152, 153, 153, 154, 153,
|
||
153, 156, 155, 155, 155, 157, 157, 158, 160, 161,
|
||
159, 163, 164, 162, 165, 165, 166, 166, 166, 166,
|
||
166, 166, 166, 166, 167, 167, 167, 167, 167, 167,
|
||
168, 168, 168, 168, 168, 168, 168, 169, 169, 170,
|
||
170, 171, 171, 173, 172, 172, 172, 174, 172, 172,
|
||
172, 175, 172, 176, 172, 172, 177, 177, 178, 178,
|
||
179, 179, 180, 180, 180, 180, 181, 181, 181, 181,
|
||
181, 181, 182, 182, 183, 183, 183, 184, 184, 184,
|
||
185, 185, 186, 186, 187, 187, 188, 188, 189, 189,
|
||
190, 190, 190, 190, 190, 190, 190, 190, 190, 191,
|
||
192, 192, 192, 193, 193, 194, 195, 196, 196, 197,
|
||
197, 198, 199, 199, 200, 201, 201, 201, 201, 202,
|
||
202, 203, 205, 204, 206, 207, 208, 208, 209, 210,
|
||
210, 211, 211, 211, 212, 211, 211, 211, 213, 214,
|
||
211, 211, 211, 215, 216, 217, 211, 218, 211, 211,
|
||
211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
|
||
219, 221, 220, 222, 222, 222, 222, 223, 223, 224,
|
||
224, 225, 225, 226, 226, 227, 228, 228, 230, 229,
|
||
231, 232, 231, 231, 233, 233, 233, 233, 234, 234,
|
||
235, 235, 235, 235, 235, 237, 236, 238, 238, 239,
|
||
239, 240, 240, 241, 242, 242, 242, 242, 242, 242,
|
||
243, 243, 244, 245, 247, 248, 246, 249, 246, 250,
|
||
251, 246, 252, 246, 253, 246, 246, 254, 246, 246,
|
||
255, 246, 246, 257, 256, 258, 258, 259, 260, 260,
|
||
261, 261, 261, 262, 262, 262, 263, 263, 263, 264,
|
||
264, 264, 265, 265, 265, 267, 268, 269, 266, 270,
|
||
271, 272, 266, 273, 274, 273, 275, 275, 275, 276,
|
||
275, 277, 277, 279, 280, 278, 281, 282, 278, 283,
|
||
283, 283, 283, 284, 284, 285, 285, 286, 286, 286,
|
||
286, 287, 287, 287, 288, 288, 289, 289, 289, 290,
|
||
290, 291, 290, 292, 293, 293, 294, 294, 294, 294,
|
||
295, 295, 295, 295, 295, 295, 295, 295, 295, 295,
|
||
295, 295, 295, 295, 295, 295, 295, 295, 295, 295,
|
||
295, 296, 296, 296, 296, 297, 297, 298, 298, 299,
|
||
300, 300, 301, 301, 303, 304, 302, 305, 305, 306,
|
||
306, 307, 307, 308, 309, 310
|
||
};
|
||
|
||
static const short yyr2[] = { 0,
|
||
0, 1, 0, 2, 0, 3, 1, 1, 1, 5,
|
||
2, 3, 4, 4, 2, 2, 2, 2, 1, 0,
|
||
0, 7, 4, 0, 0, 7, 4, 0, 0, 6,
|
||
3, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 0, 1, 1, 3, 1, 2, 2,
|
||
2, 2, 2, 4, 2, 4, 2, 2, 1, 1,
|
||
1, 4, 0, 7, 1, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 0, 4, 0,
|
||
4, 0, 0, 7, 0, 5, 3, 3, 1, 1,
|
||
1, 3, 3, 0, 4, 4, 4, 3, 3, 2,
|
||
2, 1, 1, 1, 1, 1, 1, 2, 1, 2,
|
||
0, 1, 2, 3, 1, 1, 2, 2, 4, 4,
|
||
2, 2, 3, 1, 1, 2, 2, 0, 0, 4,
|
||
4, 3, 3, 2, 2, 2, 2, 3, 0, 2,
|
||
2, 2, 2, 3, 0, 2, 2, 1, 1, 2,
|
||
2, 1, 1, 2, 2, 2, 3, 0, 2, 1,
|
||
1, 1, 2, 2, 1, 4, 4, 1, 1, 1,
|
||
1, 3, 1, 3, 0, 4, 0, 6, 3, 0,
|
||
6, 3, 0, 1, 1, 2, 6, 1, 3, 0,
|
||
1, 4, 6, 4, 1, 1, 1, 1, 1, 0,
|
||
4, 1, 0, 2, 1, 3, 3, 2, 0, 4,
|
||
1, 0, 4, 1, 1, 1, 2, 2, 0, 0,
|
||
5, 0, 0, 5, 1, 1, 3, 3, 4, 3,
|
||
3, 3, 1, 1, 3, 4, 3, 3, 3, 1,
|
||
3, 3, 3, 4, 3, 3, 1, 1, 2, 1,
|
||
2, 1, 2, 0, 7, 5, 2, 0, 7, 5,
|
||
2, 0, 8, 0, 7, 2, 0, 1, 0, 1,
|
||
1, 2, 0, 3, 2, 4, 3, 1, 3, 1,
|
||
1, 2, 1, 3, 4, 6, 5, 1, 3, 1,
|
||
1, 3, 2, 2, 0, 1, 1, 2, 0, 2,
|
||
3, 3, 2, 3, 4, 3, 2, 3, 2, 1,
|
||
1, 2, 2, 0, 1, 2, 0, 0, 1, 1,
|
||
2, 3, 1, 2, 1, 2, 6, 5, 5, 2,
|
||
2, 4, 0, 4, 0, 0, 3, 4, 3, 1,
|
||
1, 1, 1, 2, 0, 4, 1, 3, 0, 0,
|
||
7, 5, 2, 0, 0, 0, 12, 0, 6, 2,
|
||
2, 2, 3, 6, 8, 10, 12, 3, 4, 1,
|
||
1, 0, 6, 3, 5, 2, 3, 0, 1, 0,
|
||
1, 0, 1, 1, 3, 4, 1, 3, 0, 2,
|
||
2, 0, 4, 2, 0, 1, 1, 3, 1, 3,
|
||
4, 4, 4, 4, 4, 0, 2, 1, 2, 1,
|
||
3, 1, 3, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 3, 3, 4, 0, 0, 10, 0, 6, 0,
|
||
0, 12, 0, 8, 0, 6, 2, 0, 8, 4,
|
||
0, 9, 5, 0, 6, 0, 1, 3, 3, 1,
|
||
1, 1, 1, 0, 3, 2, 3, 3, 1, 0,
|
||
1, 3, 1, 3, 2, 0, 0, 0, 7, 0,
|
||
0, 0, 7, 0, 0, 2, 1, 1, 2, 0,
|
||
3, 1, 1, 0, 0, 5, 0, 0, 5, 4,
|
||
1, 5, 2, 0, 2, 0, 1, 1, 1, 2,
|
||
2, 4, 2, 2, 1, 3, 2, 2, 2, 0,
|
||
2, 0, 3, 1, 1, 2, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 6, 3, 5, 2, 1, 1, 1, 2, 1,
|
||
3, 2, 1, 1, 0, 0, 6, 1, 1, 1,
|
||
2, 2, 1, 4, 4, 4
|
||
};
|
||
|
||
static const short yydefact[] = { 3,
|
||
5, 0, 0, 0, 162, 153, 160, 152, 252, 248,
|
||
250, 0, 0, 0, 414, 0, 466, 470, 0, 0,
|
||
420, 446, 0, 446, 0, 0, 19, 4, 8, 7,
|
||
0, 128, 128, 148, 139, 149, 185, 0, 0, 0,
|
||
161, 0, 9, 416, 417, 415, 418, 165, 419, 6,
|
||
17, 18, 253, 249, 251, 0, 0, 0, 32, 33,
|
||
35, 34, 421, 0, 0, 0, 446, 437, 163, 447,
|
||
446, 164, 0, 0, 247, 299, 0, 0, 173, 129,
|
||
0, 16, 0, 15, 0, 150, 139, 151, 155, 154,
|
||
137, 186, 273, 257, 273, 261, 264, 266, 11, 89,
|
||
90, 107, 59, 60, 0, 0, 0, 36, 38, 37,
|
||
0, 39, 40, 0, 555, 0, 0, 0, 109, 41,
|
||
42, 0, 0, 43, 61, 0, 0, 65, 46, 48,
|
||
91, 106, 0, 102, 103, 104, 105, 297, 0, 295,
|
||
158, 0, 295, 190, 448, 0, 517, 518, 540, 541,
|
||
537, 521, 522, 523, 524, 525, 526, 527, 528, 529,
|
||
530, 531, 532, 533, 534, 535, 536, 538, 539, 0,
|
||
0, 519, 467, 491, 510, 514, 520, 515, 471, 0,
|
||
0, 428, 0, 0, 435, 444, 423, 0, 0, 0,
|
||
12, 0, 0, 31, 0, 406, 0, 0, 183, 233,
|
||
299, 0, 234, 0, 171, 129, 0, 225, 226, 0,
|
||
0, 138, 141, 168, 169, 140, 142, 170, 0, 0,
|
||
0, 254, 0, 258, 0, 262, 57, 58, 52, 49,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 51, 0,
|
||
0, 0, 53, 0, 55, 0, 0, 82, 80, 78,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 100, 101, 0, 0, 44, 0, 108, 110,
|
||
50, 166, 299, 389, 0, 293, 296, 156, 167, 298,
|
||
158, 294, 196, 197, 198, 195, 0, 188, 191, 422,
|
||
0, 545, 0, 494, 512, 493, 0, 516, 0, 494,
|
||
446, 0, 425, 475, 440, 0, 454, 475, 424, 300,
|
||
243, 242, 174, 175, 246, 0, 241, 0, 245, 0,
|
||
0, 29, 0, 335, 116, 336, 182, 184, 0, 0,
|
||
14, 0, 0, 23, 0, 183, 406, 0, 13, 27,
|
||
0, 0, 183, 281, 275, 128, 272, 128, 0, 273,
|
||
183, 273, 290, 291, 269, 288, 0, 93, 92, 325,
|
||
317, 0, 0, 554, 553, 556, 563, 558, 0, 559,
|
||
560, 0, 0, 10, 47, 0, 0, 88, 87, 0,
|
||
0, 0, 0, 76, 77, 75, 74, 73, 71, 72,
|
||
66, 67, 68, 69, 70, 99, 98, 0, 45, 0,
|
||
303, 0, 307, 0, 309, 0, 389, 0, 159, 157,
|
||
0, 190, 44, 0, 0, 0, 468, 511, 395, 0,
|
||
543, 472, 433, 446, 454, 0, 0, 438, 443, 0,
|
||
0, 0, 0, 0, 410, 396, 128, 128, 408, 0,
|
||
397, 399, 407, 0, 244, 316, 0, 118, 113, 117,
|
||
0, 180, 231, 227, 172, 232, 21, 179, 228, 230,
|
||
0, 25, 0, 256, 335, 274, 335, 282, 0, 260,
|
||
0, 0, 270, 0, 269, 326, 318, 95, 63, 62,
|
||
0, 562, 564, 0, 561, 566, 565, 54, 56, 0,
|
||
0, 81, 79, 96, 97, 302, 301, 390, 308, 304,
|
||
306, 0, 187, 189, 89, 0, 0, 490, 510, 128,
|
||
0, 499, 495, 497, 0, 0, 513, 397, 0, 0,
|
||
430, 475, 441, 0, 429, 484, 487, 478, 0, 128,
|
||
128, 480, 477, 454, 453, 451, 452, 436, 454, 459,
|
||
456, 128, 128, 0, 445, 176, 394, 295, 295, 391,
|
||
392, 0, 409, 0, 0, 30, 323, 114, 128, 128,
|
||
145, 0, 0, 177, 229, 0, 276, 277, 283, 336,
|
||
279, 183, 183, 292, 289, 183, 0, 0, 0, 319,
|
||
320, 0, 0, 546, 0, 547, 548, 83, 86, 305,
|
||
192, 0, 194, 544, 492, 503, 295, 504, 500, 501,
|
||
469, 0, 473, 454, 0, 475, 426, 0, 0, 175,
|
||
0, 0, 0, 479, 0, 0, 460, 460, 455, 240,
|
||
299, 389, 129, 183, 183, 183, 299, 183, 183, 0,
|
||
398, 400, 411, 324, 121, 0, 122, 0, 145, 143,
|
||
202, 200, 199, 181, 22, 0, 26, 335, 0, 255,
|
||
259, 265, 183, 412, 0, 0, 0, 335, 0, 0,
|
||
125, 336, 311, 321, 215, 89, 0, 212, 0, 214,
|
||
0, 267, 205, 211, 0, 0, 550, 552, 0, 557,
|
||
0, 549, 0, 0, 183, 183, 183, 0, 505, 542,
|
||
0, 434, 0, 475, 485, 488, 481, 439, 0, 463,
|
||
457, 461, 458, 303, 0, 406, 0, 401, 402, 403,
|
||
303, 404, 405, 393, 0, 0, 144, 147, 146, 0,
|
||
178, 284, 0, 183, 263, 322, 0, 328, 127, 126,
|
||
315, 0, 329, 313, 336, 312, 0, 218, 0, 209,
|
||
64, 0, 204, 0, 217, 208, 551, 84, 193, 507,
|
||
508, 509, 502, 295, 431, 442, 0, 0, 0, 465,
|
||
0, 0, 238, 299, 239, 235, 237, 0, 119, 120,
|
||
0, 183, 0, 285, 413, 327, 0, 162, 0, 349,
|
||
333, 0, 0, 0, 0, 0, 0, 0, 0, 378,
|
||
446, 446, 370, 0, 0, 123, 128, 128, 342, 347,
|
||
0, 0, 339, 340, 343, 371, 341, 0, 0, 0,
|
||
206, 207, 506, 475, 427, 483, 482, 486, 489, 464,
|
||
462, 0, 236, 201, 287, 183, 0, 0, 335, 380,
|
||
0, 0, 376, 360, 361, 362, 0, 0, 0, 379,
|
||
0, 183, 344, 134, 0, 135, 0, 0, 331, 336,
|
||
330, 353, 0, 136, 213, 210, 0, 286, 0, 0,
|
||
0, 381, 48, 0, 0, 0, 374, 363, 0, 368,
|
||
0, 377, 0, 132, 219, 0, 133, 222, 348, 335,
|
||
0, 0, 432, 332, 0, 334, 372, 354, 358, 0,
|
||
369, 0, 130, 0, 131, 0, 346, 337, 335, 0,
|
||
350, 335, 380, 335, 375, 382, 0, 220, 223, 338,
|
||
352, 335, 373, 0, 359, 0, 0, 383, 384, 364,
|
||
0, 0, 351, 355, 0, 382, 0, 0, 221, 224,
|
||
380, 0, 0, 365, 385, 0, 386, 0, 0, 356,
|
||
387, 0, 366, 335, 0, 0, 357, 367, 388, 0,
|
||
0, 0
|
||
};
|
||
|
||
static const short yydefgoto[] = { 950,
|
||
1, 2, 3, 28, 29, 30, 335, 563, 341, 566,
|
||
198, 447, 669, 122, 232, 398, 124, 125, 126, 127,
|
||
128, 582, 129, 383, 382, 380, 683, 381, 130, 233,
|
||
131, 132, 322, 323, 324, 558, 657, 658, 31, 193,
|
||
796, 437, 91, 559, 640, 438, 34, 140, 278, 35,
|
||
216, 204, 78, 199, 205, 646, 79, 562, 327, 328,
|
||
37, 287, 288, 289, 644, 720, 671, 672, 673, 810,
|
||
674, 739, 675, 676, 874, 894, 921, 877, 896, 922,
|
||
314, 208, 685, 209, 38, 39, 40, 41, 350, 352,
|
||
357, 225, 743, 474, 220, 221, 347, 568, 569, 355,
|
||
356, 142, 687, 143, 189, 277, 659, 660, 732, 325,
|
||
477, 579, 580, 581, 556, 361, 557, 800, 801, 802,
|
||
829, 850, 451, 851, 663, 803, 804, 880, 828, 912,
|
||
903, 931, 944, 904, 805, 806, 902, 807, 841, 864,
|
||
917, 918, 919, 942, 403, 404, 439, 630, 440, 441,
|
||
442, 317, 318, 443, 444, 655, 133, 43, 64, 44,
|
||
45, 46, 425, 694, 304, 604, 814, 522, 307, 534,
|
||
606, 47, 308, 69, 48, 430, 539, 431, 544, 701,
|
||
702, 49, 65, 294, 516, 66, 300, 520, 426, 427,
|
||
532, 613, 818, 533, 608, 758, 609, 759, 173, 417,
|
||
513, 514, 515, 688, 689, 296, 419, 174, 175, 176,
|
||
177, 178, 585, 586, 678, 587, 366, 134, 235, 481,
|
||
369, 370, 371, 135, 136, 137
|
||
};
|
||
|
||
static const short yypact[] = { 171,
|
||
186, 3077, 3077, 193,-32768,-32768,-32768,-32768, 172, 172,
|
||
172, 145, 174, 199,-32768, 85,-32768,-32768, 85, 85,
|
||
-32768, 249, 85, 249, 85, 85,-32768,-32768,-32768,-32768,
|
||
363, 242, 2557, 237,-32768, 172,-32768, 94, 117, 256,
|
||
-32768, 3077,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 172, 172, 172, 2786, 2624, 266,-32768,-32768,
|
||
-32768,-32768,-32768, 143, 3367, 3367, 72, 54,-32768,-32768,
|
||
249,-32768, 42, 85,-32768,-32768, 363, 48,-32768, 172,
|
||
1802,-32768, 283,-32768, 363, 237,-32768, 172,-32768,-32768,
|
||
859,-32768, 243, 265, 243, 279,-32768, 289,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 2786, 2786, 85,-32768,-32768,-32768,
|
||
2786,-32768,-32768, 1407,-32768, 268, 315, 337,-32768,-32768,
|
||
-32768, 2786, 326, 323,-32768, 2840, 2894,-32768, 3634, 1152,
|
||
412, 364, 2786,-32768,-32768,-32768,-32768,-32768, 365, 445,
|
||
-32768, 368, 635, 139,-32768, 85,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 434,
|
||
716,-32768,-32768,-32768, 2518, 409,-32768,-32768,-32768, 85,
|
||
85, 386, 85, 85,-32768,-32768,-32768, 375, 286, 149,
|
||
-32768, 283, 363,-32768, 414,-32768, 1987, 1947, 172,-32768,
|
||
-32768, 283,-32768, 115,-32768, 172, 1900, 224, 370, 159,
|
||
1821, 859,-32768,-32768,-32768,-32768, 172,-32768, 425, 408,
|
||
1733,-32768, 411,-32768, 123,-32768,-32768,-32768,-32768,-32768,
|
||
418, 421, 417, 469, 2678, 3395, 716, 85,-32768, 433,
|
||
2786, 1407,-32768, 1407,-32768, 2786, 2786, 482,-32768,-32768,
|
||
2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786, 2786,
|
||
2786, 2786,-32768,-32768, 85, 85, 2786, 2786,-32768,-32768,
|
||
-32768,-32768,-32768, 445, 2046,-32768, 419, 898,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768, 147,-32768, 489,-32768,
|
||
716,-32768, 479, 484, 556,-32768, 409,-32768, 477, 484,
|
||
249, 492,-32768, 514, 497, 508,-32768, 514,-32768,-32768,
|
||
370,-32768,-32768, 561, 370, 581,-32768, 878,-32768, 509,
|
||
523,-32768, 378, 101,-32768,-32768, 568, 172, 262, 239,
|
||
-32768, 283, 283,-32768, 1947, 172,-32768, 2105,-32768,-32768,
|
||
1947, 541, 172,-32768,-32768, 535, 529, 463, 3305, 243,
|
||
172, 243,-32768, 579, 537,-32768, 123,-32768,-32768,-32768,
|
||
544, 558, 2438,-32768,-32768,-32768,-32768, 594, 564, 3395,
|
||
-32768, 569, 574,-32768, 3634, 588, 592, 3634, 3634, 2786,
|
||
617, 2786, 2786, 1617, 1959, 2595, 1794, 1891, 522, 522,
|
||
602, 602,-32768,-32768,-32768,-32768,-32768, 593, 323, 554,
|
||
272, 299,-32768, 3208,-32768, 589,-32768, 2164,-32768, 898,
|
||
603, 139, 2948, 610, 3431, 670,-32768,-32768, 3488, 716,
|
||
-32768,-32768, 596, 249,-32768, 624, 3152,-32768,-32768, 525,
|
||
3025, 634, 74, 627,-32768,-32768,-32768, 3534,-32768, 628,
|
||
258,-32768,-32768, 197,-32768,-32768, 86,-32768,-32768,-32768,
|
||
3530,-32768, 224,-32768,-32768, 224,-32768, 663,-32768,-32768,
|
||
622,-32768, 638,-32768,-32768,-32768,-32768,-32768, 632,-32768,
|
||
633, 2786, 85, 646, 537,-32768, 693,-32768,-32768,-32768,
|
||
3459,-32768,-32768, 594,-32768,-32768,-32768,-32768,-32768, 689,
|
||
2786, 1382, 1538,-32768,-32768, 419,-32768,-32768,-32768,-32768,
|
||
-32768, 648,-32768,-32768, 225, 657, 85,-32768, 2518, 666,
|
||
3228,-32768,-32768, 3534, 1919, 86,-32768, 654, 664, 86,
|
||
-32768, 514,-32768, 623,-32768,-32768,-32768,-32768, 363, 242,
|
||
2557, 362,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 3564, 672,-32768,-32768,-32768, 539, 551,-32768,
|
||
-32768, 3500,-32768, 747, 417,-32768,-32768,-32768, 676, 3285,
|
||
-32768, 1647, 86,-32768,-32768, 86,-32768, 675,-32768,-32768,
|
||
675, 172, 172, 3634,-32768, 172, 687, 85, 1083, 693,
|
||
-32768, 1487, 2786, 731, 694, 3459,-32768,-32768, 1460,-32768,
|
||
-32768, 2786,-32768,-32768,-32768,-32768, 539,-32768,-32768,-32768,
|
||
-32768, 85,-32768,-32768, 709, 514,-32768, 3367, 3367, 327,
|
||
283, 363, 3180,-32768, 690, 3043, 213, 213,-32768,-32768,
|
||
-32768, 551, 172, 290, 340, 172,-32768, 340, 172, 3208,
|
||
-32768,-32768,-32768,-32768,-32768, 283,-32768, 363,-32768, 402,
|
||
-32768,-32768, 3634,-32768,-32768, 1647,-32768,-32768, 452,-32768,
|
||
-32768,-32768, 172,-32768, 296, 550, 1003, 695, 698, 913,
|
||
-32768,-32768,-32768,-32768,-32768, 741, 85,-32768, 746, 3634,
|
||
707, 705,-32768,-32768, 70, 1240, 323,-32768, 2786,-32768,
|
||
731,-32768, 2786, 275, 290, 340, 172, 406,-32768,-32768,
|
||
825,-32768, 726, 514,-32768,-32768,-32768,-32768, 2786, 753,
|
||
714,-32768, 714, 658, 245,-32768, 2223,-32768,-32768,-32768,
|
||
231,-32768,-32768,-32768, 435, 444, 402,-32768,-32768, 1487,
|
||
-32768,-32768, 2786, 78,-32768,-32768, 85,-32768,-32768,-32768,
|
||
-32768, 722,-32768,-32768,-32768,-32768, 2304,-32768, 1487,-32768,
|
||
-32768, 1567,-32768, 1722,-32768,-32768,-32768, 1460,-32768,-32768,
|
||
-32768,-32768,-32768, 539,-32768,-32768, 736, 100, 100, 3634,
|
||
2786, 213, 599,-32768, 599,-32768,-32768, 720,-32768,-32768,
|
||
727, 3598, 2786,-32768,-32768,-32768, 2384, 770, 752,-32768,
|
||
-32768, 758, 761, 2786, 783, 745, 750, 2732, 293, 817,
|
||
69, 113,-32768, 793, 771,-32768, 773, 3257,-32768, 835,
|
||
1165, 89,-32768,-32768,-32768,-32768,-32768, 2546, 774, 1722,
|
||
-32768,-32768,-32768, 514,-32768,-32768,-32768,-32768,-32768, 3634,
|
||
-32768, 760,-32768,-32768,-32768, 3598, 2786, 795,-32768, 2786,
|
||
2786, 3575,-32768,-32768,-32768,-32768, 781, 2786, 786,-32768,
|
||
808, 172,-32768,-32768, 283,-32768, 363, 1327,-32768,-32768,
|
||
-32768,-32768, 2786,-32768,-32768,-32768, 805,-32768, 798, 2786,
|
||
860,-32768, 802, 799, 804, 2786,-32768,-32768, 809,-32768,
|
||
2786,-32768, 446,-32768, 436, 451,-32768, 721,-32768,-32768,
|
||
2384, 811,-32768,-32768, 820,-32768,-32768,-32768,-32768, 3616,
|
||
-32768, 77,-32768, 1947,-32768, 1947,-32768,-32768,-32768, 823,
|
||
-32768,-32768, 2786,-32768,-32768, 900, 830,-32768,-32768,-32768,
|
||
-32768,-32768,-32768, 836,-32768, 856, 84, 837,-32768,-32768,
|
||
417, 417,-32768,-32768, 2786, 900, 842, 900,-32768,-32768,
|
||
2786, 844, 109,-32768,-32768, 849,-32768, 581, 850,-32768,
|
||
412, 313,-32768,-32768, 852, 581,-32768,-32768, 412, 941,
|
||
943,-32768
|
||
};
|
||
|
||
static const short yypgoto[] = {-32768,
|
||
-32768,-32768,-32768, 97, -345,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, -11,-32768, -56, 536, -220, 540,-32768,-32768,
|
||
-54,-32768, 582,-32768,-32768,-32768,-32768,-32768, 118,-32768,
|
||
-303,-32768, -263, 631,-32768,-32768, 294,-32768, 16, -166,
|
||
158, 1, 864,-32768, 318, 4, -2, -184, 688, 20,
|
||
-243, -571, -60, -205, -125,-32768,-32768,-32768, 273, 8,
|
||
50,-32768, 559,-32768, 324,-32768, -602,-32768, 232,-32768,
|
||
-595,-32768,-32768, 300,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-53, -107, -474, -15,-32768,-32768,-32768, -57,-32768,-32768,
|
||
-32768,-32768,-32768, 501, -50,-32768, 629, 515, 333, 626,
|
||
513, -39, -84, -155, -179, -219, 329,-32768,-32768, -262,
|
||
-32768,-32768,-32768, 416, -13,-32768, -175,-32768,-32768,-32768,
|
||
-32768, -160, -506, -667, 334,-32768, 108,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768, 119,-32768, -791,
|
||
73,-32768, 75,-32768, 591,-32768, -350,-32768, 583, 586,
|
||
449, -301,-32768,-32768,-32768,-32768, 18,-32768, 988,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768, 9, 2, -354,-32768, 480,-32768, 420,
|
||
277,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -276,-32768,
|
||
-32768,-32768, 276, 510,-32768,-32768,-32768,-32768, -22, 740,
|
||
-32768,-32768, 527,-32768, 295, 538,-32768, 640, 641, -152,
|
||
-32768, -133,-32768,-32768, 371, 458,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 691,-32768,-32768,-32768
|
||
};
|
||
|
||
|
||
#define YYLAST 3686
|
||
|
||
|
||
static const short yytable[] = { 123,
|
||
139, 336, 32, 32, 63, 33, 33, 67, 68, 36,
|
||
36, 71, 433, 63, 74, 81, 53, 54, 55, 42,
|
||
42, 329, 297, 70, 210, 70, 94, 96, 98, 207,
|
||
86, 432, 72, 218, 409, 459, 346, 326, 80, 333,
|
||
88, 298, 32, 179, 223, 33, 399, 83, 85, 36,
|
||
227, 228, 87, 498, 402, 276, 230, 362, 282, 42,
|
||
448, 190, 188, 649, 715, 348, 313, 239, 70, 211,
|
||
524, 457, 70, 624, 234, 182, 141, 462, 271, 186,
|
||
746, 528, 269, 368, 80, 92, 555, 59, 60, 852,
|
||
206, 183, 80, 401, 330, 229, 59, 60, 217, 50,
|
||
816, -112, 92, 92, 92, 744, -35, 14, 336, 180,
|
||
449, 914, 184, 16, 906, 773, 16, 771, 187, 59,
|
||
60, 926, 146, 353, 191, 59, 60, 667, 192, 92,
|
||
181, 293, 286, 141, 290, 185, 809, 92, 99, 936,
|
||
320, 59, 60, 283, 284, 285, 938, 853, 812, 546,
|
||
-34, 61, 907, 512, 218, 737, 62, 16, 292, 927,
|
||
61, 861, 281, 326, 346, 62, 409, 360, 301, 302,
|
||
-1, 305, 306, 311, 326, 93, 817, 315, 365, 615,
|
||
326, 496, -112, 61, 939, -2, 190, 145, 62, 61,
|
||
141, 331, 399, 348, 62, 332, 80, 372, 95, 206,
|
||
80, 14, 376, 56, 377, 61, 455, 196, 197, 206,
|
||
62, 400, 897, 354, 856, 75, 200, 484, 406, 217,
|
||
218, 453, 411, 146, 312, 456, 373, 412, 777, 763,
|
||
765, 910, 57, 75, 913, 339, 915, 310, 349, 192,
|
||
141, 89, 14, 90, 923, 605, 542, 75, 620, 691,
|
||
699, 414, 600, 396, 397, 92, 141, 58, 59, 60,
|
||
14, 141, 201, 141, 75, 200, 92, 697, 310, 51,
|
||
52, 202, 553, 873, 14, 543, 947, 554, 310, 714,
|
||
627, 461, 337, 338, 203, 75, 200, 421, 75, 622,
|
||
275, 14, 310, 16, 764, 59, 60, 337, 338, 469,
|
||
591, 471, 70, 77, 570, 592, 570, 219, 480, 423,
|
||
141, 201, 14, 311, 454, 14, 661, 315, 82, 14,
|
||
202, 273, 61, 490, 144, 36, 236, 62, 584, 693,
|
||
274, 275, 201, 203, 551, 76, 206, 97, 552, 206,
|
||
206, 202, 838, 881, 77, 354, 222, 763, 706, 707,
|
||
749, 502, 218, 195, 203, 241, 297, 407, 408, 61,
|
||
224, 465, 677, 467, 62, 75, 349, 281, 141, 14,
|
||
226, 684, 726, 237, 497, 298, 727, 92, 321, 634,
|
||
519, -115, -115, -115, -115, 196, 197, -115, 945, -115,
|
||
-115, -115, 14, 946, 729, 238, 719, 734, 196, 197,
|
||
286, 240, 402, 241, 766, -115, 718, 214, 215, 526,
|
||
527, 36, 76, 9, 10, 11, 510, 757, 662, 511,
|
||
269, 77, -115, 36, -476, 70, 36, 530, 196, 197,
|
||
531, 542, 523, 681, 36, 86, 59, 60, 270, 141,
|
||
272, 704, 529, 279, -115, 88, 299, 711, 560, -115,
|
||
141, 309, 548, 549, 75, 200, 705, 87, 677, -115,
|
||
543, 354, 195, 626, 629, -175, 5, 303, 7, 280,
|
||
561, -175, 316, 719, 9, 10, 11, 407, 408, 59,
|
||
60, 14, 753, 342, 496, 343, 754, 570, 351, 723,
|
||
13, 496, 291, 358, 273, 594, 359, 662, 360, 735,
|
||
61, 201, 601, 274, 275, 62, 603, 16, 86, 374,
|
||
202, 769, -175, 610, 510, 332, -175, 511, 88, -85,
|
||
770, 36, 893, 203, 192, 597, 332, 895, 86, 22,
|
||
87, 192, 625, 628, 24, 420, 80, 857, 88, -280,
|
||
-280, 75, 620, 61, 363, 611, 612, 413, 62, 645,
|
||
87, 210, 647, 75, 415, 623, 80, 617, 618, 36,
|
||
416, 799, 281, 700, 700, 418, 654, 424, 14, 258,
|
||
259, 260, 261, 262, 636, 638, -474, 716, 428, 639,
|
||
14, 686, 218, 429, 822, 695, 696, 195, 621, 102,
|
||
690, 445, 535, 536, 537, 724, 610, 622, 275, 446,
|
||
627, 799, 538, 452, 623, 466, 190, 463, 458, 622,
|
||
275, -278, -278, 530, 472, 464, 531, 473, 206, 80,
|
||
36, 476, 610, 470, 206, 206, 446, 728, 529, 80,
|
||
908, 482, 909, 478, 941, 141, 495, 36, 5, 483,
|
||
7, 280, 949, 206, 486, 80, 9, 10, 11, 487,
|
||
768, 260, 261, 262, 491, 738, 206, 706, 707, 218,
|
||
75, 620, 13, 488, 310, 243, 245, 489, 494, 336,
|
||
321, 499, 92, 5, 6, 7, 8, 521, 503, 16,
|
||
795, 9, 10, 11, 273, 507, 525, 14, 311, 315,
|
||
535, 536, 537, 274, 275, 311, 545, 13, 564, 14,
|
||
607, 22, 547, 550, 565, 799, 24, 621, 700, 572,
|
||
573, 623, 623, 567, 16, 775, 622, 275, 80, 5,
|
||
795, 7, 138, 576, 578, 794, 588, 9, 10, 11,
|
||
590, 837, 593, 326, 552, 326, 22, 797, 686, 602,
|
||
798, 24, 596, 13, 36, 929, 930, 195, 619, 633,
|
||
-175, -496, 635, 271, 808, 648, -175, 535, 536, 537,
|
||
16, 623, 75, 620, 653, 794, 310, 698, 679, 206,
|
||
859, 692, -314, 862, 865, 733, 680, 839, -32, 196,
|
||
197, 869, 22, 740, 741, 742, 876, 24, 756, 14,
|
||
761, 875, 70, 70, 762, 86, 882, -175, 815, 776,
|
||
72, -175, 823, 885, 824, 88, 311, -33, 797, 764,
|
||
827, 798, 845, 847, 892, 36, 830, 87, 77, 831,
|
||
833, 834, 375, 840, 795, 808, 835, 378, 379, 623,
|
||
842, 878, 384, 385, 386, 387, 388, 389, 390, 391,
|
||
392, 393, 394, 395, 650, 651, 862, 843, 652, 844,
|
||
848, 855, 206, 860, 80, 263, 264, 868, 265, 266,
|
||
267, 268, 870, 213, 214, 215, 871, 883, 932, 794,
|
||
9, 10, 11, 884, 862, 888, 886, 887, 434, 889,
|
||
435, 5, 6, 7, 8, 891, 900, 436, 14, 9,
|
||
10, 11, 535, 536, 537, 901, 708, 709, 710, 911,
|
||
712, 713, 755, 214, 215, 13, 920, 14, 916, 9,
|
||
10, 11, 924, 321, 925, -335, -335, 928, 934, 937,
|
||
-335, -335, 16, -335, 940, 725, 943, -335, 948, -335,
|
||
-335, -335, -335, -335, -335, -335, -335, -335, -335, -335,
|
||
951, -335, 952, -335, 22, -335, -335, 863, 506, 24,
|
||
212, 730, -335, -395, 450, -335, 717, 750, 751, 752,
|
||
-335, -335, -335, 492, 493, 854, -335, -335, 410, 721,
|
||
504, -335, -335, 811, 745, 577, -335, 468, -335, -335,
|
||
722, 571, 475, -335, -335, 575, 731, -335, 898, -335,
|
||
-310, -335, -335, 736, -335, 664, 774, 500, 933, 899,
|
||
632, 517, 935, 321, 518, -124, -124, -124, -124, -124,
|
||
-124, -124, 73, -124, -124, -124, -124, -124, 616, -124,
|
||
-124, -124, -124, -124, -124, -124, -124, -124, -124, -124,
|
||
-124, -124, -124, -124, 819, -124, -124, 703, 821, 422,
|
||
599, 614, -124, 682, 825, -124, 595, -124, 813, 747,
|
||
-124, -124, -124, 574, 508, 509, -124, -124, 0, 0,
|
||
485, -124, -124, 0, 0, 0, -124, 0, -124, -124,
|
||
0, 0, 589, -124, -124, 0, 0, -124, 0, -124,
|
||
-124, -124, -124, 656, -124, -335, -335, -335, -335, -335,
|
||
-335, -335, 0, -335, -335, -335, -335, -335, 858, -335,
|
||
-335, -335, -335, -335, -335, -335, -335, -335, -335, -335,
|
||
-335, -335, -335, -335, 872, -335, -335, 0, 0, 0,
|
||
0, 0, -335, 0, 0, -335, 0, -335, 0, 0,
|
||
-335, -335, -335, 0, 0, 0, -335, -335, 0, 0,
|
||
0, -335, -335, 643, 0, 0, -335, 0, -335, -335,
|
||
0, 0, 0, -335, -335, 0, 0, -335, 0, -335,
|
||
0, -335, -335, 670, -335, 849, 0, -335, -335, 0,
|
||
0, 0, -335, -335, 0, -335, 0, 0, 0, -335,
|
||
0, -335, -335, -335, -335, -335, -335, -335, -335, -335,
|
||
-335, -335, 0, -335, 0, -335, 0, -335, -335, 0,
|
||
0, 0, 0, 0, -335, 263, 264, -335, 265, 266,
|
||
267, 268, -335, -335, -335, 0, 0, 0, -335, -335,
|
||
0, 0, 0, -335, -335, 0, 0, 643, -335, 0,
|
||
-335, -335, 0, 0, 0, -335, -335, 0, 0, -335,
|
||
665, -335, 100, -335, -335, 0, -335, 101, 102, 0,
|
||
103, 0, 0, 0, 0, 0, 0, 670, 0, 0,
|
||
0, 0, 0, 0, 748, 0, 0, 0, 104, 0,
|
||
15, 0, 105, 106, 0, -216, 0, 0, 0, 107,
|
||
760, 0, 108, 0, 0, 0, 0, 109, 110, 111,
|
||
0, 0, 0, 112, 113, 0, 0, -216, 114, 115,
|
||
0, 670, 0, 116, 772, 117, 0, 0, 0, 0,
|
||
118, 0, 0, 0, 119, 0, 0, 0, 120, 121,
|
||
670, 668, 0, 670, 0, 670, 0, 879, 0, -345,
|
||
-345, 0, 0, 0, -345, -345, 0, -345, 0, 0,
|
||
0, -345, 820, -345, -345, -345, -345, -345, -345, -345,
|
||
-345, -345, -345, -345, 826, -345, 0, -345, 0, -345,
|
||
-345, 0, 0, 0, 0, 832, -345, 0, 0, -345,
|
||
0, 0, 0, 0, -345, -345, -345, 0, 0, 0,
|
||
-345, -345, 0, 0, 0, -345, -345, 0, 0, 0,
|
||
-345, 670, -345, -345, 0, 0, 0, -345, -345, 0,
|
||
0, -345, 0, -345, 0, -345, -345, 231, -345, 100,
|
||
5, 0, 7, 138, 101, 102, 0, 103, 9, 10,
|
||
11, 250, 251, 252, 253, 254, 255, 256, 257, 258,
|
||
259, 260, 261, 262, 13, 104, 0, 15, 0, 105,
|
||
106, 0, 0, 0, 0, 0, 107, 890, 0, 108,
|
||
0, 16, 0, 0, 109, 110, 111, 0, 0, 0,
|
||
112, 113, 0, 0, 0, 114, 115, 0, 0, 0,
|
||
116, 0, 117, 22, 0, 0, 0, 118, 24, 0,
|
||
0, 119, 0, 0, 0, 120, 121, 665, -94, 666,
|
||
60, 0, 0, 0, 101, 102, 248, 103, 249, 250,
|
||
251, 252, 253, 254, 255, 256, 257, 258, 259, 260,
|
||
261, 262, 0, 0, 0, 104, 0, 15, 0, 105,
|
||
106, 0, 0, 0, 0, 0, 107, 0, 0, 108,
|
||
0, 0, 0, 0, 109, 110, 111, 0, 0, 0,
|
||
112, 113, 0, 0, 667, 114, 115, 0, 0, 0,
|
||
116, 0, 117, 61, 0, 0, 0, 118, 62, 0,
|
||
0, 119, 0, 0, -203, 120, 121, 665, 668, 666,
|
||
60, 0, 0, 0, 101, 102, 0, 103, 251, 252,
|
||
253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
|
||
0, 0, 0, 0, 0, 104, 0, 15, 0, 105,
|
||
106, 0, 0, 0, 0, 0, 107, 0, 0, 108,
|
||
0, 0, 0, 0, 109, 110, 111, 0, 0, 0,
|
||
112, 113, 0, 0, 667, 114, 115, 0, 0, 0,
|
||
116, 0, 117, 61, 0, 0, 0, 118, 62, 0,
|
||
0, 119, 0, 0, -268, 120, 121, 641, 668, 100,
|
||
0, 0, 0, 0, 101, 102, 0, 103, 252, 253,
|
||
254, 255, 256, 257, 258, 259, 260, 261, 262, 0,
|
||
0, 0, 0, 0, 0, 104, 0, 15, 0, 105,
|
||
106, 0, 0, 0, 0, 0, 107, 0, 0, 108,
|
||
0, 0, 0, 0, 109, 110, 111, 0, 0, 0,
|
||
112, 113, 0, 0, 0, 114, 115, 0, 0, 0,
|
||
116, 0, 117, 0, 0, 0, 0, 118, 0, 0,
|
||
0, 119, 665, 0, 100, 120, 121, 0, 642, 101,
|
||
102, 0, 103, 344, 0, 0, 5, 0, 7, 138,
|
||
0, 0, 0, 0, 9, 10, 11, 0, 0, 0,
|
||
104, 0, 15, 0, 105, 106, 0, 0, 0, 0,
|
||
13, 107, 0, 15, 108, 0, 0, 0, 0, 109,
|
||
110, 111, 0, 0, 0, 112, 113, 16, 0, 0,
|
||
114, 115, 0, 0, 0, 116, 0, 117, 0, 0,
|
||
0, 0, 118, 0, 0, 0, 119, 0, 0, 22,
|
||
120, 121, 194, 668, 24, -28, -28, -28, -28, 345,
|
||
-271, 0, 0, -28, -28, -28, 0, 0, 0, 0,
|
||
0, 340, 0, 0, -24, -24, -24, -24, 195, -28,
|
||
0, -175, -24, -24, -24, 0, 0, -175, 255, 256,
|
||
257, 258, 259, 260, 261, 262, -28, 195, -24, 0,
|
||
-175, 0, 0, 0, 0, 0, -175, 0, 0, 0,
|
||
196, 197, 0, 0, 0, -24, 0, 0, -28, 0,
|
||
0, 0, 0, -28, 0, 0, 0, 0, -175, 196,
|
||
197, 0, -175, -28, 0, 0, 0, -24, 0, 0,
|
||
0, 0, -24, 0, 0, 0, 0, -175, 0, 0,
|
||
334, -175, -24, -20, -20, -20, -20, 0, 0, 0,
|
||
0, -20, -20, -20, 0, 0, 0, 0, 0, 321,
|
||
0, 0, -498, -498, -498, -498, 195, -20, 0, -175,
|
||
-498, -498, -498, 0, 0, -175, 256, 257, 258, 259,
|
||
260, 261, 262, 0, -20, 0, -498, 321, -498, 0,
|
||
-335, -335, -335, -335, 0, 0, 0, 0, -335, -335,
|
||
-335, 0, 0, -498, 0, 0, -20, 0, 0, 0,
|
||
0, -20, 0, 0, -335, 0, -175, 0, 0, 0,
|
||
-175, -20, 0, 0, 0, -498, 0, 0, 0, 100,
|
||
-498, -335, 0, 0, 101, 102, 0, 103, 0, 0,
|
||
-498, 253, 254, 255, 256, 257, 258, 259, 260, 261,
|
||
262, 0, 0, -335, 0, 104, 0, 15, -335, 105,
|
||
106, 0, 0, 0, 0, 0, 107, 0, -111, 108,
|
||
0, 0, 0, 0, 109, 110, 111, 0, 0, 0,
|
||
112, 113, 0, 0, 0, 114, 115, 0, 100, 0,
|
||
116, 0, 117, 101, 102, 0, 103, 118, 0, 0,
|
||
0, 119, 0, 0, 0, 120, 121, 0, 0, 319,
|
||
0, 0, 0, 0, 104, 0, 15, 0, 105, 106,
|
||
0, 0, 0, 0, 0, 107, 0, 0, 108, 0,
|
||
0, 0, 0, 109, 110, 111, 0, 0, 0, 112,
|
||
113, 0, 0, 0, 114, 115, 0, 100, 0, 116,
|
||
0, 117, 101, 102, 0, 103, 118, 0, 0, 0,
|
||
119, 0, 0, 0, 120, 121, 0, 0, 405, 0,
|
||
0, 0, 0, 104, 0, 15, 0, 105, 106, 0,
|
||
0, 0, 0, 0, 107, 0, 0, 108, 0, 0,
|
||
0, 0, 109, 110, 111, 0, 0, 0, 112, 113,
|
||
0, 0, 0, 114, 115, 0, 100, 0, 116, 0,
|
||
117, 101, 102, 0, 103, 118, 0, 0, 0, 119,
|
||
0, 0, 0, 120, 121, 0, 0, 460, 0, 0,
|
||
0, 0, 104, 0, 15, 0, 105, 106, 0, 0,
|
||
0, 0, 0, 107, 0, 0, 108, 0, 0, 0,
|
||
0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
|
||
0, 0, 114, 115, 0, 100, 0, 116, 0, 117,
|
||
101, 102, 0, 103, 118, 0, 0, 0, 119, 0,
|
||
0, 0, 120, 121, 0, 0, 501, 0, 0, 0,
|
||
0, 104, 0, 15, 0, 105, 106, 0, 0, 0,
|
||
0, 0, 107, 0, 0, 108, 0, 0, 0, 0,
|
||
109, 110, 111, 0, 0, 0, 112, 113, 0, 0,
|
||
0, 114, 115, 0, 0, 0, 116, 0, 117, 0,
|
||
0, 0, 0, 118, 0, 0, 0, 119, 0, 0,
|
||
0, 120, 121, 0, 0, 767, 666, 778, 6, 7,
|
||
8, 101, 102, 0, 103, 9, 10, 11, 779, 0,
|
||
780, 781, 782, 783, 784, 785, 786, 787, 788, 789,
|
||
790, 13, 104, 14, 15, 0, 105, 106, 0, 0,
|
||
0, 0, 0, 107, 0, 0, 108, 0, 16, 0,
|
||
0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
|
||
0, 0, 114, 115, 0, 0, 0, 116, 0, 117,
|
||
791, 0, 0, 0, 118, 792, 0, 0, 119, 0,
|
||
793, 0, 120, 121, 0, 360, 666, 60, 0, 0,
|
||
0, 101, 102, 0, 103, 0, 0, 0, 779, 0,
|
||
780, 781, 782, 783, 784, 785, 786, 787, 788, 789,
|
||
790, 0, 104, 0, 15, 0, 105, 106, 0, 0,
|
||
0, 0, 0, 107, 0, 0, 108, 0, 0, 0,
|
||
0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
|
||
100, 0, 114, 115, 0, 101, 102, 116, 103, 117,
|
||
61, 0, 0, 0, 118, 62, 0, 0, 119, 0,
|
||
793, 0, 120, 121, 0, 360, 104, 0, 15, 0,
|
||
105, 106, 0, 0, 0, 0, 0, 107, 0, 0,
|
||
108, 0, 0, 0, 0, 109, 110, 111, 0, 0,
|
||
0, 112, 113, 0, 0, 0, 114, 115, 0, 0,
|
||
0, 116, 0, 117, 0, 0, 0, 0, 118, 0,
|
||
0, 0, 119, 0, 0, 0, 120, 121, 0, 479,
|
||
147, 148, 0, 149, 150, 0, 0, 0, 151, 152,
|
||
153, 154, 155, 156, 157, 158, 159, 160, 161, 162,
|
||
163, 164, 165, 166, 167, 168, 169, 0, 100, 5,
|
||
6, 7, 8, 101, 102, 170, 103, 9, 10, 11,
|
||
5, 6, 7, 8, 0, 0, 0, 0, 9, 10,
|
||
11, 0, 0, 13, 104, 14, 15, 0, 105, 106,
|
||
0, 0, 0, 0, 13, 107, 14, 0, 108, 172,
|
||
16, 0, 0, 109, 110, 111, 0, 0, 295, 112,
|
||
113, 16, 0, 0, 114, 115, 0, 0, 0, 116,
|
||
0, 117, 22, 0, 0, 0, 118, 24, 0, 0,
|
||
119, 0, 0, 22, 120, 121, 100, 5, 24, 7,
|
||
138, 101, 102, 84, 103, 9, 10, 11, 254, 255,
|
||
256, 257, 258, 259, 260, 261, 262, 0, 0, 0,
|
||
0, 13, 104, 0, 15, 0, 105, 106, 0, 0,
|
||
0, 0, 0, 107, 0, 0, 108, 0, 16, 0,
|
||
0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
|
||
100, 0, 114, 115, 0, 101, 102, 116, 103, 117,
|
||
22, 0, 0, 0, 118, 24, 0, 0, 119, 0,
|
||
0, 0, 120, 121, 0, 0, 104, 0, 15, 0,
|
||
105, 106, 0, 0, 0, 0, 0, 107, 0, 0,
|
||
108, 0, 0, 0, 0, 109, 110, 111, 0, 0,
|
||
0, 112, 113, 0, 100, 0, 114, 115, 0, 101,
|
||
102, 116, 103, 117, 364, 0, 0, 0, 118, 0,
|
||
0, 0, 119, 0, 0, 0, 120, 121, 0, 0,
|
||
104, 0, 15, 0, 105, 106, 0, 0, 0, 0,
|
||
0, 107, 0, 0, 108, 0, 0, 0, 0, 109,
|
||
110, 111, 0, 0, 0, 112, 113, 0, 100, 0,
|
||
114, 115, 0, 101, 102, 116, 103, 117, 0, 0,
|
||
0, 0, 118, 0, 0, 0, 119, 0, 836, 0,
|
||
120, 121, 0, 0, 104, 0, 15, 0, 105, 106,
|
||
0, 0, 0, 0, 0, 107, 0, 0, 108, 0,
|
||
0, 0, 0, 109, 110, 111, 0, 0, 0, 112,
|
||
113, 0, 100, 0, 114, 115, 0, 101, 102, 116,
|
||
103, 117, 0, 0, 0, 0, 118, 0, 0, 0,
|
||
119, 0, 0, 0, 120, 121, 0, 0, 104, 0,
|
||
15, 0, 105, 106, 0, 0, 0, 0, 0, 107,
|
||
0, 0, 108, 0, 0, 0, 0, 109, 110, 111,
|
||
0, 0, 0, 112, 113, 0, 100, 0, 242, 115,
|
||
0, 101, 102, 116, 103, 117, 0, 0, 0, 0,
|
||
118, 0, 0, 0, 119, 0, 0, 0, 120, 121,
|
||
0, 0, 104, 0, 15, 0, 105, 106, 0, 0,
|
||
0, 0, 0, 107, 0, 0, 108, 0, 0, 0,
|
||
0, 109, 110, 111, 0, 0, 0, 112, 113, 0,
|
||
505, 0, 244, 115, 0, 101, 102, 116, 103, 117,
|
||
0, 0, 0, 0, 118, 0, 0, 0, 119, 0,
|
||
0, 0, 120, 121, 0, 0, 104, 0, 15, 0,
|
||
105, 106, 0, 0, 0, 0, 0, 107, 0, 0,
|
||
108, 0, 0, 0, 0, 109, 110, 111, 0, 0,
|
||
0, 112, 113, 0, 0, 0, 114, 115, 0, 0,
|
||
0, 116, 0, 117, 0, 0, 0, 0, 118, 0,
|
||
0, 0, 119, 0, 0, 540, 120, 121, 5, 0,
|
||
7, 138, 0, 0, 0, 0, 9, 10, 11, 0,
|
||
0, 0, 0, 540, 0, 0, 5, 0, 7, 138,
|
||
0, 0, 13, 0, 9, 10, 11, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
|
||
13, 0, 0, 0, 0, 0, 0, 4, 0, -128,
|
||
5, 6, 7, 8, 0, 0, 0, 16, 9, 10,
|
||
11, 22, -450, -450, -450, 0, 24, 0, 0, 0,
|
||
0, 541, -450, 12, 13, 0, 14, 15, 0, 22,
|
||
-449, -449, -449, 0, 24, 0, 0, 0, 0, 541,
|
||
-449, 16, 0, 0, 17, 18, -128, 0, 0, 0,
|
||
0, 0, 0, 0, 0, -128, 0, 19, 20, 21,
|
||
0, 0, 0, 22, 0, 0, 0, 23, 24, 25,
|
||
26, 0, 4, 27, -128, 5, 6, 7, 8, 0,
|
||
0, 0, 0, 9, 10, 11, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 13,
|
||
4, 14, -128, 5, 6, 7, 8, 0, 0, 0,
|
||
0, 9, 10, 11, 0, 0, 16, 0, 0, 526,
|
||
527, -128, 0, 0, 0, 0, 0, 13, 434, 14,
|
||
-128, 5, 6, 7, 8, 0, 0, 436, 22, 9,
|
||
10, 11, 0, 24, 16, 0, 0, 0, 27, -128,
|
||
0, 5, 6, 7, 8, 13, 0, 14, -128, 9,
|
||
10, 11, 0, 0, 0, 0, 22, 0, 0, 0,
|
||
0, 24, 16, 0, 0, 13, 27, 14, 0, 0,
|
||
5, 6, 7, 8, 0, 0, 0, 0, 9, 10,
|
||
11, 0, 16, 0, 22, 0, 0, 0, 0, 24,
|
||
0, 0, 0, -395, 13, 0, 14, 0, 5, 89,
|
||
7, 90, 0, 0, 22, 0, 9, 10, 11, 24,
|
||
0, 16, 0, 0, 598, 344, 0, 0, 5, 0,
|
||
7, 138, 13, 0, 0, 0, 9, 10, 11, 0,
|
||
0, 0, 0, 22, 0, 0, 0, 0, 24, 16,
|
||
0, 0, 13, 846, 0, 15, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 16,
|
||
0, 22, 0, 0, 0, 0, 24, 0, 0, 0,
|
||
0, 637, 0, 0, 0, 0, 0, 0, 0, 147,
|
||
148, 22, 149, 150, 0, 0, 24, 151, 152, 153,
|
||
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
||
164, 165, 166, 167, 168, 169, 0, 147, 148, 0,
|
||
149, 150, 0, 0, 170, 151, 152, 153, 154, 155,
|
||
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
||
166, 167, 168, 169, 0, 171, 0, 0, 0, 0,
|
||
0, 0, 367, 147, 148, 0, 149, 150, 172, 0,
|
||
0, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
||
160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
|
||
0, 147, 148, 0, 149, 150, 172, 0, 170, 151,
|
||
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
||
162, 163, 164, 165, 166, 167, 168, 169, 0, 0,
|
||
0, 5, 6, 7, 8, 0, 583, 436, 0, 9,
|
||
10, 11, 172, 5, 6, 7, 8, 0, 0, 631,
|
||
0, 9, 10, 11, 0, 13, 0, 14, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 13, 0, 14,
|
||
172, 0, 16, 5, 6, 7, 8, 5, 6, 7,
|
||
8, 9, 10, 11, 16, 9, 10, 11, 0, 0,
|
||
0, 0, 0, 0, 22, 0, 0, 13, 0, 24,
|
||
0, 13, 0, 14, 0, 0, 22, 5, 0, 7,
|
||
280, 24, 0, 0, 16, 9, 10, 11, 16, 0,
|
||
0, 0, 0, 0, 866, 0, 0, 0, 0, 0,
|
||
0, 13, 0, 0, 0, 0, 22, 0, 0, 0,
|
||
22, 24, 0, 0, 0, 24, 0, 0, 16, 246,
|
||
247, 248, 867, 249, 250, 251, 252, 253, 254, 255,
|
||
256, 257, 258, 259, 260, 261, 262, 14, 0, 0,
|
||
22, 0, 246, 247, 248, 24, 249, 250, 251, 252,
|
||
253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
|
||
246, 247, 248, 905, 249, 250, 251, 252, 253, 254,
|
||
255, 256, 257, 258, 259, 260, 261, 262, 246, 247,
|
||
248, 0, 249, 250, 251, 252, 253, 254, 255, 256,
|
||
257, 258, 259, 260, 261, 262
|
||
};
|
||
|
||
static const short yycheck[] = { 56,
|
||
57, 207, 2, 3, 16, 2, 3, 19, 20, 2,
|
||
3, 23, 316, 25, 26, 31, 9, 10, 11, 2,
|
||
3, 201, 175, 22, 85, 24, 38, 39, 40, 83,
|
||
33, 308, 24, 91, 278, 337, 221, 198, 31, 206,
|
||
33, 175, 42, 66, 95, 42, 267, 32, 33, 42,
|
||
105, 106, 33, 404, 274, 140, 111, 233, 143, 42,
|
||
323, 77, 74, 570, 636, 221, 192, 122, 67, 85,
|
||
425, 335, 71, 548, 114, 67, 57, 341, 133, 71,
|
||
676, 427, 9, 236, 77, 36, 1, 3, 4, 1,
|
||
83, 38, 85, 273, 202, 107, 3, 4, 91, 3,
|
||
1, 1, 53, 54, 55, 36, 38, 30, 314, 38,
|
||
10, 903, 59, 45, 38, 38, 45, 720, 77, 3,
|
||
4, 38, 81, 1, 77, 3, 4, 58, 81, 80,
|
||
59, 171, 144, 114, 146, 82, 739, 88, 42, 931,
|
||
197, 3, 4, 5, 6, 7, 38, 59, 744, 76,
|
||
38, 67, 76, 416, 212, 662, 72, 45, 170, 76,
|
||
67, 829, 143, 324, 349, 72, 410, 82, 180, 181,
|
||
0, 183, 184, 189, 335, 82, 77, 193, 235, 534,
|
||
341, 401, 82, 67, 76, 0, 202, 45, 72, 67,
|
||
171, 77, 413, 349, 72, 81, 189, 237, 82, 192,
|
||
193, 30, 242, 59, 244, 67, 332, 59, 60, 202,
|
||
72, 268, 880, 225, 810, 3, 4, 370, 275, 212,
|
||
278, 329, 76, 81, 76, 333, 238, 81, 735, 704,
|
||
705, 899, 59, 3, 902, 77, 904, 7, 221, 81,
|
||
221, 5, 30, 7, 912, 522, 431, 3, 4, 604,
|
||
38, 291, 515, 265, 266, 206, 237, 59, 3, 4,
|
||
30, 242, 50, 244, 3, 4, 217, 613, 7, 77,
|
||
78, 59, 76, 845, 30, 431, 944, 81, 7, 630,
|
||
50, 338, 59, 60, 72, 3, 4, 299, 3, 59,
|
||
60, 30, 7, 45, 50, 3, 4, 59, 60, 350,
|
||
76, 352, 301, 59, 465, 81, 467, 65, 363, 301,
|
||
291, 50, 30, 329, 76, 30, 579, 333, 77, 30,
|
||
59, 50, 67, 380, 59, 318, 59, 72, 481, 606,
|
||
59, 60, 50, 72, 77, 50, 329, 82, 81, 332,
|
||
333, 59, 50, 850, 59, 357, 82, 822, 59, 60,
|
||
76, 408, 410, 27, 72, 81, 509, 59, 60, 67,
|
||
82, 346, 583, 348, 72, 3, 349, 348, 349, 30,
|
||
82, 592, 77, 59, 76, 509, 81, 328, 1, 555,
|
||
420, 4, 5, 6, 7, 59, 60, 10, 76, 12,
|
||
13, 14, 30, 81, 657, 59, 640, 660, 59, 60,
|
||
412, 76, 622, 81, 706, 28, 5, 6, 7, 48,
|
||
49, 404, 50, 12, 13, 14, 416, 694, 579, 416,
|
||
9, 59, 45, 416, 63, 424, 419, 427, 59, 60,
|
||
427, 616, 424, 586, 427, 438, 3, 4, 75, 420,
|
||
76, 621, 427, 76, 67, 438, 38, 627, 451, 72,
|
||
431, 77, 437, 438, 3, 4, 623, 438, 679, 82,
|
||
616, 473, 27, 548, 549, 30, 4, 82, 6, 7,
|
||
451, 36, 59, 717, 12, 13, 14, 59, 60, 3,
|
||
4, 30, 77, 59, 704, 78, 81, 648, 78, 38,
|
||
28, 711, 59, 76, 50, 507, 76, 658, 82, 660,
|
||
67, 50, 516, 59, 60, 72, 520, 45, 511, 77,
|
||
59, 77, 77, 529, 514, 81, 81, 514, 511, 38,
|
||
77, 514, 77, 72, 81, 510, 81, 77, 531, 67,
|
||
511, 81, 548, 549, 72, 59, 529, 814, 531, 77,
|
||
78, 3, 4, 67, 76, 530, 531, 59, 72, 563,
|
||
531, 612, 566, 3, 76, 548, 549, 542, 543, 552,
|
||
77, 737, 543, 617, 618, 10, 578, 76, 30, 48,
|
||
49, 50, 51, 52, 559, 560, 63, 638, 82, 560,
|
||
30, 597, 640, 76, 764, 608, 609, 27, 50, 9,
|
||
602, 83, 68, 69, 70, 649, 612, 59, 60, 77,
|
||
50, 777, 78, 36, 597, 77, 622, 67, 336, 59,
|
||
60, 77, 78, 613, 36, 343, 613, 81, 611, 612,
|
||
613, 78, 638, 351, 617, 618, 77, 78, 613, 622,
|
||
894, 38, 896, 76, 938, 616, 83, 630, 4, 76,
|
||
6, 7, 946, 636, 76, 638, 12, 13, 14, 76,
|
||
707, 50, 51, 52, 38, 667, 649, 59, 60, 717,
|
||
3, 4, 28, 76, 7, 126, 127, 76, 76, 875,
|
||
1, 83, 623, 4, 5, 6, 7, 82, 76, 45,
|
||
737, 12, 13, 14, 50, 76, 63, 30, 704, 705,
|
||
68, 69, 70, 59, 60, 711, 63, 28, 36, 30,
|
||
78, 67, 76, 76, 83, 881, 72, 50, 762, 78,
|
||
78, 704, 705, 76, 45, 727, 59, 60, 711, 4,
|
||
777, 6, 7, 78, 32, 737, 38, 12, 13, 14,
|
||
83, 788, 76, 894, 81, 896, 67, 737, 754, 76,
|
||
737, 72, 77, 28, 737, 921, 922, 27, 77, 3,
|
||
30, 82, 77, 808, 737, 81, 36, 68, 69, 70,
|
||
45, 754, 3, 4, 78, 777, 7, 78, 38, 762,
|
||
827, 63, 78, 830, 831, 78, 83, 789, 38, 59,
|
||
60, 838, 67, 38, 78, 81, 847, 72, 63, 30,
|
||
38, 845, 791, 792, 81, 798, 853, 77, 63, 78,
|
||
792, 81, 83, 860, 78, 798, 822, 38, 808, 50,
|
||
59, 808, 797, 798, 871, 808, 59, 798, 59, 59,
|
||
38, 77, 241, 7, 881, 808, 77, 246, 247, 822,
|
||
38, 847, 251, 252, 253, 254, 255, 256, 257, 258,
|
||
259, 260, 261, 262, 572, 573, 903, 77, 576, 77,
|
||
16, 78, 845, 59, 847, 54, 55, 77, 57, 58,
|
||
59, 60, 77, 5, 6, 7, 59, 63, 925, 881,
|
||
12, 13, 14, 76, 931, 77, 17, 76, 1, 76,
|
||
3, 4, 5, 6, 7, 77, 76, 10, 30, 12,
|
||
13, 14, 68, 69, 70, 76, 624, 625, 626, 77,
|
||
628, 629, 78, 6, 7, 28, 77, 30, 9, 12,
|
||
13, 14, 77, 1, 59, 3, 4, 81, 77, 76,
|
||
8, 9, 45, 11, 76, 653, 77, 15, 77, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
||
0, 29, 0, 31, 67, 33, 34, 830, 413, 72,
|
||
87, 658, 40, 76, 324, 43, 639, 685, 686, 687,
|
||
48, 49, 50, 382, 383, 808, 54, 55, 281, 646,
|
||
412, 59, 60, 742, 675, 475, 64, 349, 66, 67,
|
||
648, 467, 357, 71, 72, 473, 658, 75, 881, 77,
|
||
78, 79, 80, 660, 82, 580, 724, 407, 926, 881,
|
||
552, 419, 928, 1, 419, 3, 4, 5, 6, 7,
|
||
8, 9, 25, 11, 12, 13, 14, 15, 539, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
||
28, 29, 30, 31, 759, 33, 34, 618, 762, 300,
|
||
514, 532, 40, 586, 772, 43, 509, 45, 754, 679,
|
||
48, 49, 50, 472, 415, 415, 54, 55, -1, -1,
|
||
370, 59, 60, -1, -1, -1, 64, -1, 66, 67,
|
||
-1, -1, 491, 71, 72, -1, -1, 75, -1, 77,
|
||
78, 79, 80, 1, 82, 3, 4, 5, 6, 7,
|
||
8, 9, -1, 11, 12, 13, 14, 15, 826, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
||
28, 29, 30, 31, 842, 33, 34, -1, -1, -1,
|
||
-1, -1, 40, -1, -1, 43, -1, 45, -1, -1,
|
||
48, 49, 50, -1, -1, -1, 54, 55, -1, -1,
|
||
-1, 59, 60, 562, -1, -1, 64, -1, 66, 67,
|
||
-1, -1, -1, 71, 72, -1, -1, 75, -1, 77,
|
||
-1, 79, 80, 582, 82, 1, -1, 3, 4, -1,
|
||
-1, -1, 8, 9, -1, 11, -1, -1, -1, 15,
|
||
-1, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
||
26, 27, -1, 29, -1, 31, -1, 33, 34, -1,
|
||
-1, -1, -1, -1, 40, 54, 55, 43, 57, 58,
|
||
59, 60, 48, 49, 50, -1, -1, -1, 54, 55,
|
||
-1, -1, -1, 59, 60, -1, -1, 646, 64, -1,
|
||
66, 67, -1, -1, -1, 71, 72, -1, -1, 75,
|
||
1, 77, 3, 79, 80, -1, 82, 8, 9, -1,
|
||
11, -1, -1, -1, -1, -1, -1, 676, -1, -1,
|
||
-1, -1, -1, -1, 683, -1, -1, -1, 29, -1,
|
||
31, -1, 33, 34, -1, 36, -1, -1, -1, 40,
|
||
699, -1, 43, -1, -1, -1, -1, 48, 49, 50,
|
||
-1, -1, -1, 54, 55, -1, -1, 58, 59, 60,
|
||
-1, 720, -1, 64, 723, 66, -1, -1, -1, -1,
|
||
71, -1, -1, -1, 75, -1, -1, -1, 79, 80,
|
||
739, 82, -1, 742, -1, 744, -1, 1, -1, 3,
|
||
4, -1, -1, -1, 8, 9, -1, 11, -1, -1,
|
||
-1, 15, 761, 17, 18, 19, 20, 21, 22, 23,
|
||
24, 25, 26, 27, 773, 29, -1, 31, -1, 33,
|
||
34, -1, -1, -1, -1, 784, 40, -1, -1, 43,
|
||
-1, -1, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
54, 55, -1, -1, -1, 59, 60, -1, -1, -1,
|
||
64, 810, 66, 67, -1, -1, -1, 71, 72, -1,
|
||
-1, 75, -1, 77, -1, 79, 80, 1, 82, 3,
|
||
4, -1, 6, 7, 8, 9, -1, 11, 12, 13,
|
||
14, 40, 41, 42, 43, 44, 45, 46, 47, 48,
|
||
49, 50, 51, 52, 28, 29, -1, 31, -1, 33,
|
||
34, -1, -1, -1, -1, -1, 40, 866, -1, 43,
|
||
-1, 45, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
54, 55, -1, -1, -1, 59, 60, -1, -1, -1,
|
||
64, -1, 66, 67, -1, -1, -1, 71, 72, -1,
|
||
-1, 75, -1, -1, -1, 79, 80, 1, 82, 3,
|
||
4, -1, -1, -1, 8, 9, 37, 11, 39, 40,
|
||
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
||
51, 52, -1, -1, -1, 29, -1, 31, -1, 33,
|
||
34, -1, -1, -1, -1, -1, 40, -1, -1, 43,
|
||
-1, -1, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
54, 55, -1, -1, 58, 59, 60, -1, -1, -1,
|
||
64, -1, 66, 67, -1, -1, -1, 71, 72, -1,
|
||
-1, 75, -1, -1, 78, 79, 80, 1, 82, 3,
|
||
4, -1, -1, -1, 8, 9, -1, 11, 41, 42,
|
||
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
|
||
-1, -1, -1, -1, -1, 29, -1, 31, -1, 33,
|
||
34, -1, -1, -1, -1, -1, 40, -1, -1, 43,
|
||
-1, -1, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
54, 55, -1, -1, 58, 59, 60, -1, -1, -1,
|
||
64, -1, 66, 67, -1, -1, -1, 71, 72, -1,
|
||
-1, 75, -1, -1, 78, 79, 80, 1, 82, 3,
|
||
-1, -1, -1, -1, 8, 9, -1, 11, 42, 43,
|
||
44, 45, 46, 47, 48, 49, 50, 51, 52, -1,
|
||
-1, -1, -1, -1, -1, 29, -1, 31, -1, 33,
|
||
34, -1, -1, -1, -1, -1, 40, -1, -1, 43,
|
||
-1, -1, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
54, 55, -1, -1, -1, 59, 60, -1, -1, -1,
|
||
64, -1, 66, -1, -1, -1, -1, 71, -1, -1,
|
||
-1, 75, 1, -1, 3, 79, 80, -1, 82, 8,
|
||
9, -1, 11, 1, -1, -1, 4, -1, 6, 7,
|
||
-1, -1, -1, -1, 12, 13, 14, -1, -1, -1,
|
||
29, -1, 31, -1, 33, 34, -1, -1, -1, -1,
|
||
28, 40, -1, 31, 43, -1, -1, -1, -1, 48,
|
||
49, 50, -1, -1, -1, 54, 55, 45, -1, -1,
|
||
59, 60, -1, -1, -1, 64, -1, 66, -1, -1,
|
||
-1, -1, 71, -1, -1, -1, 75, -1, -1, 67,
|
||
79, 80, 1, 82, 72, 4, 5, 6, 7, 77,
|
||
78, -1, -1, 12, 13, 14, -1, -1, -1, -1,
|
||
-1, 1, -1, -1, 4, 5, 6, 7, 27, 28,
|
||
-1, 30, 12, 13, 14, -1, -1, 36, 45, 46,
|
||
47, 48, 49, 50, 51, 52, 45, 27, 28, -1,
|
||
30, -1, -1, -1, -1, -1, 36, -1, -1, -1,
|
||
59, 60, -1, -1, -1, 45, -1, -1, 67, -1,
|
||
-1, -1, -1, 72, -1, -1, -1, -1, 77, 59,
|
||
60, -1, 81, 82, -1, -1, -1, 67, -1, -1,
|
||
-1, -1, 72, -1, -1, -1, -1, 77, -1, -1,
|
||
1, 81, 82, 4, 5, 6, 7, -1, -1, -1,
|
||
-1, 12, 13, 14, -1, -1, -1, -1, -1, 1,
|
||
-1, -1, 4, 5, 6, 7, 27, 28, -1, 30,
|
||
12, 13, 14, -1, -1, 36, 46, 47, 48, 49,
|
||
50, 51, 52, -1, 45, -1, 28, 1, 30, -1,
|
||
4, 5, 6, 7, -1, -1, -1, -1, 12, 13,
|
||
14, -1, -1, 45, -1, -1, 67, -1, -1, -1,
|
||
-1, 72, -1, -1, 28, -1, 77, -1, -1, -1,
|
||
81, 82, -1, -1, -1, 67, -1, -1, -1, 3,
|
||
72, 45, -1, -1, 8, 9, -1, 11, -1, -1,
|
||
82, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
||
52, -1, -1, 67, -1, 29, -1, 31, 72, 33,
|
||
34, -1, -1, -1, -1, -1, 40, -1, 82, 43,
|
||
-1, -1, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
54, 55, -1, -1, -1, 59, 60, -1, 3, -1,
|
||
64, -1, 66, 8, 9, -1, 11, 71, -1, -1,
|
||
-1, 75, -1, -1, -1, 79, 80, -1, -1, 83,
|
||
-1, -1, -1, -1, 29, -1, 31, -1, 33, 34,
|
||
-1, -1, -1, -1, -1, 40, -1, -1, 43, -1,
|
||
-1, -1, -1, 48, 49, 50, -1, -1, -1, 54,
|
||
55, -1, -1, -1, 59, 60, -1, 3, -1, 64,
|
||
-1, 66, 8, 9, -1, 11, 71, -1, -1, -1,
|
||
75, -1, -1, -1, 79, 80, -1, -1, 83, -1,
|
||
-1, -1, -1, 29, -1, 31, -1, 33, 34, -1,
|
||
-1, -1, -1, -1, 40, -1, -1, 43, -1, -1,
|
||
-1, -1, 48, 49, 50, -1, -1, -1, 54, 55,
|
||
-1, -1, -1, 59, 60, -1, 3, -1, 64, -1,
|
||
66, 8, 9, -1, 11, 71, -1, -1, -1, 75,
|
||
-1, -1, -1, 79, 80, -1, -1, 83, -1, -1,
|
||
-1, -1, 29, -1, 31, -1, 33, 34, -1, -1,
|
||
-1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
|
||
-1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
|
||
-1, -1, 59, 60, -1, 3, -1, 64, -1, 66,
|
||
8, 9, -1, 11, 71, -1, -1, -1, 75, -1,
|
||
-1, -1, 79, 80, -1, -1, 83, -1, -1, -1,
|
||
-1, 29, -1, 31, -1, 33, 34, -1, -1, -1,
|
||
-1, -1, 40, -1, -1, 43, -1, -1, -1, -1,
|
||
48, 49, 50, -1, -1, -1, 54, 55, -1, -1,
|
||
-1, 59, 60, -1, -1, -1, 64, -1, 66, -1,
|
||
-1, -1, -1, 71, -1, -1, -1, 75, -1, -1,
|
||
-1, 79, 80, -1, -1, 83, 3, 4, 5, 6,
|
||
7, 8, 9, -1, 11, 12, 13, 14, 15, -1,
|
||
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
27, 28, 29, 30, 31, -1, 33, 34, -1, -1,
|
||
-1, -1, -1, 40, -1, -1, 43, -1, 45, -1,
|
||
-1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
|
||
-1, -1, 59, 60, -1, -1, -1, 64, -1, 66,
|
||
67, -1, -1, -1, 71, 72, -1, -1, 75, -1,
|
||
77, -1, 79, 80, -1, 82, 3, 4, -1, -1,
|
||
-1, 8, 9, -1, 11, -1, -1, -1, 15, -1,
|
||
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
27, -1, 29, -1, 31, -1, 33, 34, -1, -1,
|
||
-1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
|
||
-1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
|
||
3, -1, 59, 60, -1, 8, 9, 64, 11, 66,
|
||
67, -1, -1, -1, 71, 72, -1, -1, 75, -1,
|
||
77, -1, 79, 80, -1, 82, 29, -1, 31, -1,
|
||
33, 34, -1, -1, -1, -1, -1, 40, -1, -1,
|
||
43, -1, -1, -1, -1, 48, 49, 50, -1, -1,
|
||
-1, 54, 55, -1, -1, -1, 59, 60, -1, -1,
|
||
-1, 64, -1, 66, -1, -1, -1, -1, 71, -1,
|
||
-1, -1, 75, -1, -1, -1, 79, 80, -1, 82,
|
||
3, 4, -1, 6, 7, -1, -1, -1, 11, 12,
|
||
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
|
||
23, 24, 25, 26, 27, 28, 29, -1, 3, 4,
|
||
5, 6, 7, 8, 9, 38, 11, 12, 13, 14,
|
||
4, 5, 6, 7, -1, -1, -1, -1, 12, 13,
|
||
14, -1, -1, 28, 29, 30, 31, -1, 33, 34,
|
||
-1, -1, -1, -1, 28, 40, 30, -1, 43, 72,
|
||
45, -1, -1, 48, 49, 50, -1, -1, 81, 54,
|
||
55, 45, -1, -1, 59, 60, -1, -1, -1, 64,
|
||
-1, 66, 67, -1, -1, -1, 71, 72, -1, -1,
|
||
75, -1, -1, 67, 79, 80, 3, 4, 72, 6,
|
||
7, 8, 9, 77, 11, 12, 13, 14, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 52, -1, -1, -1,
|
||
-1, 28, 29, -1, 31, -1, 33, 34, -1, -1,
|
||
-1, -1, -1, 40, -1, -1, 43, -1, 45, -1,
|
||
-1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
|
||
3, -1, 59, 60, -1, 8, 9, 64, 11, 66,
|
||
67, -1, -1, -1, 71, 72, -1, -1, 75, -1,
|
||
-1, -1, 79, 80, -1, -1, 29, -1, 31, -1,
|
||
33, 34, -1, -1, -1, -1, -1, 40, -1, -1,
|
||
43, -1, -1, -1, -1, 48, 49, 50, -1, -1,
|
||
-1, 54, 55, -1, 3, -1, 59, 60, -1, 8,
|
||
9, 64, 11, 66, 67, -1, -1, -1, 71, -1,
|
||
-1, -1, 75, -1, -1, -1, 79, 80, -1, -1,
|
||
29, -1, 31, -1, 33, 34, -1, -1, -1, -1,
|
||
-1, 40, -1, -1, 43, -1, -1, -1, -1, 48,
|
||
49, 50, -1, -1, -1, 54, 55, -1, 3, -1,
|
||
59, 60, -1, 8, 9, 64, 11, 66, -1, -1,
|
||
-1, -1, 71, -1, -1, -1, 75, -1, 77, -1,
|
||
79, 80, -1, -1, 29, -1, 31, -1, 33, 34,
|
||
-1, -1, -1, -1, -1, 40, -1, -1, 43, -1,
|
||
-1, -1, -1, 48, 49, 50, -1, -1, -1, 54,
|
||
55, -1, 3, -1, 59, 60, -1, 8, 9, 64,
|
||
11, 66, -1, -1, -1, -1, 71, -1, -1, -1,
|
||
75, -1, -1, -1, 79, 80, -1, -1, 29, -1,
|
||
31, -1, 33, 34, -1, -1, -1, -1, -1, 40,
|
||
-1, -1, 43, -1, -1, -1, -1, 48, 49, 50,
|
||
-1, -1, -1, 54, 55, -1, 3, -1, 59, 60,
|
||
-1, 8, 9, 64, 11, 66, -1, -1, -1, -1,
|
||
71, -1, -1, -1, 75, -1, -1, -1, 79, 80,
|
||
-1, -1, 29, -1, 31, -1, 33, 34, -1, -1,
|
||
-1, -1, -1, 40, -1, -1, 43, -1, -1, -1,
|
||
-1, 48, 49, 50, -1, -1, -1, 54, 55, -1,
|
||
3, -1, 59, 60, -1, 8, 9, 64, 11, 66,
|
||
-1, -1, -1, -1, 71, -1, -1, -1, 75, -1,
|
||
-1, -1, 79, 80, -1, -1, 29, -1, 31, -1,
|
||
33, 34, -1, -1, -1, -1, -1, 40, -1, -1,
|
||
43, -1, -1, -1, -1, 48, 49, 50, -1, -1,
|
||
-1, 54, 55, -1, -1, -1, 59, 60, -1, -1,
|
||
-1, 64, -1, 66, -1, -1, -1, -1, 71, -1,
|
||
-1, -1, 75, -1, -1, 1, 79, 80, 4, -1,
|
||
6, 7, -1, -1, -1, -1, 12, 13, 14, -1,
|
||
-1, -1, -1, 1, -1, -1, 4, -1, 6, 7,
|
||
-1, -1, 28, -1, 12, 13, 14, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 45,
|
||
28, -1, -1, -1, -1, -1, -1, 1, -1, 3,
|
||
4, 5, 6, 7, -1, -1, -1, 45, 12, 13,
|
||
14, 67, 68, 69, 70, -1, 72, -1, -1, -1,
|
||
-1, 77, 78, 27, 28, -1, 30, 31, -1, 67,
|
||
68, 69, 70, -1, 72, -1, -1, -1, -1, 77,
|
||
78, 45, -1, -1, 48, 49, 50, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 59, -1, 61, 62, 63,
|
||
-1, -1, -1, 67, -1, -1, -1, 71, 72, 73,
|
||
74, -1, 1, 77, 3, 4, 5, 6, 7, -1,
|
||
-1, -1, -1, 12, 13, 14, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 28,
|
||
1, 30, 3, 4, 5, 6, 7, -1, -1, -1,
|
||
-1, 12, 13, 14, -1, -1, 45, -1, -1, 48,
|
||
49, 50, -1, -1, -1, -1, -1, 28, 1, 30,
|
||
59, 4, 5, 6, 7, -1, -1, 10, 67, 12,
|
||
13, 14, -1, 72, 45, -1, -1, -1, 77, 50,
|
||
-1, 4, 5, 6, 7, 28, -1, 30, 59, 12,
|
||
13, 14, -1, -1, -1, -1, 67, -1, -1, -1,
|
||
-1, 72, 45, -1, -1, 28, 77, 30, -1, -1,
|
||
4, 5, 6, 7, -1, -1, -1, -1, 12, 13,
|
||
14, -1, 45, -1, 67, -1, -1, -1, -1, 72,
|
||
-1, -1, -1, 76, 28, -1, 30, -1, 4, 5,
|
||
6, 7, -1, -1, 67, -1, 12, 13, 14, 72,
|
||
-1, 45, -1, -1, 77, 1, -1, -1, 4, -1,
|
||
6, 7, 28, -1, -1, -1, 12, 13, 14, -1,
|
||
-1, -1, -1, 67, -1, -1, -1, -1, 72, 45,
|
||
-1, -1, 28, 77, -1, 31, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 45,
|
||
-1, 67, -1, -1, -1, -1, 72, -1, -1, -1,
|
||
-1, 77, -1, -1, -1, -1, -1, -1, -1, 3,
|
||
4, 67, 6, 7, -1, -1, 72, 11, 12, 13,
|
||
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
||
24, 25, 26, 27, 28, 29, -1, 3, 4, -1,
|
||
6, 7, -1, -1, 38, 11, 12, 13, 14, 15,
|
||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
||
26, 27, 28, 29, -1, 59, -1, -1, -1, -1,
|
||
-1, -1, 38, 3, 4, -1, 6, 7, 72, -1,
|
||
-1, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
||
-1, 3, 4, -1, 6, 7, 72, -1, 38, 11,
|
||
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
||
22, 23, 24, 25, 26, 27, 28, 29, -1, -1,
|
||
-1, 4, 5, 6, 7, -1, 38, 10, -1, 12,
|
||
13, 14, 72, 4, 5, 6, 7, -1, -1, 10,
|
||
-1, 12, 13, 14, -1, 28, -1, 30, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 28, -1, 30,
|
||
72, -1, 45, 4, 5, 6, 7, 4, 5, 6,
|
||
7, 12, 13, 14, 45, 12, 13, 14, -1, -1,
|
||
-1, -1, -1, -1, 67, -1, -1, 28, -1, 72,
|
||
-1, 28, -1, 30, -1, -1, 67, 4, -1, 6,
|
||
7, 72, -1, -1, 45, 12, 13, 14, 45, -1,
|
||
-1, -1, -1, -1, 10, -1, -1, -1, -1, -1,
|
||
-1, 28, -1, -1, -1, -1, 67, -1, -1, -1,
|
||
67, 72, -1, -1, -1, 72, -1, -1, 45, 35,
|
||
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 52, 30, -1, -1,
|
||
67, -1, 35, 36, 37, 72, 39, 40, 41, 42,
|
||
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
|
||
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 35, 36,
|
||
37, -1, 39, 40, 41, 42, 43, 44, 45, 46,
|
||
47, 48, 49, 50, 51, 52
|
||
};
|
||
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
|
||
#line 3 "/usr/lib/bison.simple"
|
||
|
||
/* Skeleton output parser for bison,
|
||
Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2, or (at your option)
|
||
any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||
|
||
/* As a special exception, when this file is copied by Bison into a
|
||
Bison output file, you may use that output file without restriction.
|
||
This special exception was added by the Free Software Foundation
|
||
in version 1.24 of Bison. */
|
||
|
||
#ifndef alloca
|
||
#ifdef __GNUC__
|
||
#define alloca __builtin_alloca
|
||
#else /* not GNU C. */
|
||
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
|
||
#include <alloca.h>
|
||
#else /* not sparc */
|
||
#if defined (MSDOS) && !defined (__TURBOC__)
|
||
#include <malloc.h>
|
||
#else /* not MSDOS, or __TURBOC__ */
|
||
#if defined(_AIX)
|
||
#include <malloc.h>
|
||
#pragma alloca
|
||
#else /* not MSDOS, __TURBOC__, or _AIX */
|
||
#ifdef __hpux
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
void *alloca (unsigned int);
|
||
};
|
||
#else /* not __cplusplus */
|
||
void *alloca ();
|
||
#endif /* not __cplusplus */
|
||
#endif /* __hpux */
|
||
#endif /* not _AIX */
|
||
#endif /* not MSDOS, or __TURBOC__ */
|
||
#endif /* not sparc. */
|
||
#endif /* not GNU C. */
|
||
#endif /* alloca not defined. */
|
||
|
||
/* This is the parser code that is written into each bison parser
|
||
when the %semantic_parser declaration is not specified in the grammar.
|
||
It was written by Richard Stallman by simplifying the hairy parser
|
||
used when %semantic_parser is specified. */
|
||
|
||
/* Note: there must be only one dollar sign in this file.
|
||
It is replaced by the list of actions, each action
|
||
as one case of the switch. */
|
||
|
||
#define yyerrok (yyerrstatus = 0)
|
||
#define yyclearin (yychar = YYEMPTY)
|
||
#define YYEMPTY -2
|
||
#define YYEOF 0
|
||
#define YYACCEPT return(0)
|
||
#define YYABORT return(1)
|
||
#define YYERROR goto yyerrlab1
|
||
/* Like YYERROR except do call yyerror.
|
||
This remains here temporarily to ease the
|
||
transition to the new meaning of YYERROR, for GCC.
|
||
Once GCC version 2 has supplanted version 1, this can go. */
|
||
#define YYFAIL goto yyerrlab
|
||
#define YYRECOVERING() (!!yyerrstatus)
|
||
#define YYBACKUP(token, value) \
|
||
do \
|
||
if (yychar == YYEMPTY && yylen == 1) \
|
||
{ yychar = (token), yylval = (value); \
|
||
yychar1 = YYTRANSLATE (yychar); \
|
||
YYPOPSTACK; \
|
||
goto yybackup; \
|
||
} \
|
||
else \
|
||
{ yyerror ("syntax error: cannot back up"); YYERROR; } \
|
||
while (0)
|
||
|
||
#define YYTERROR 1
|
||
#define YYERRCODE 256
|
||
|
||
#ifndef YYPURE
|
||
#define YYLEX yylex()
|
||
#endif
|
||
|
||
#ifdef YYPURE
|
||
#ifdef YYLSP_NEEDED
|
||
#ifdef YYLEX_PARAM
|
||
#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
|
||
#else
|
||
#define YYLEX yylex(&yylval, &yylloc)
|
||
#endif
|
||
#else /* not YYLSP_NEEDED */
|
||
#ifdef YYLEX_PARAM
|
||
#define YYLEX yylex(&yylval, YYLEX_PARAM)
|
||
#else
|
||
#define YYLEX yylex(&yylval)
|
||
#endif
|
||
#endif /* not YYLSP_NEEDED */
|
||
#endif
|
||
|
||
/* If nonreentrant, generate the variables here */
|
||
|
||
#ifndef YYPURE
|
||
|
||
int yychar; /* the lookahead symbol */
|
||
YYSTYPE yylval; /* the semantic value of the */
|
||
/* lookahead symbol */
|
||
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE yylloc; /* location data for the lookahead */
|
||
/* symbol */
|
||
#endif
|
||
|
||
int yynerrs; /* number of parse errors so far */
|
||
#endif /* not YYPURE */
|
||
|
||
#if YYDEBUG != 0
|
||
int yydebug; /* nonzero means print parse trace */
|
||
/* Since this is uninitialized, it does not stop multiple parsers
|
||
from coexisting. */
|
||
#endif
|
||
|
||
/* YYINITDEPTH indicates the initial size of the parser's stacks */
|
||
|
||
#ifndef YYINITDEPTH
|
||
#define YYINITDEPTH 200
|
||
#endif
|
||
|
||
/* YYMAXDEPTH is the maximum size the stacks can grow to
|
||
(effective only if the built-in stack extension method is used). */
|
||
|
||
#if YYMAXDEPTH == 0
|
||
#undef YYMAXDEPTH
|
||
#endif
|
||
|
||
#ifndef YYMAXDEPTH
|
||
#define YYMAXDEPTH 10000
|
||
#endif
|
||
|
||
/* Prevent warning if -Wstrict-prototypes. */
|
||
#ifdef __GNUC__
|
||
int yyparse (void);
|
||
#endif
|
||
|
||
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
|
||
#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
|
||
#else /* not GNU C or C++ */
|
||
#ifndef __cplusplus
|
||
|
||
/* This is the most reliable way to avoid incompatibilities
|
||
in available built-in functions on various systems. */
|
||
static void
|
||
__yy_memcpy (to, from, count)
|
||
char *to;
|
||
char *from;
|
||
int count;
|
||
{
|
||
register char *f = from;
|
||
register char *t = to;
|
||
register int i = count;
|
||
|
||
while (i-- > 0)
|
||
*t++ = *f++;
|
||
}
|
||
|
||
#else /* __cplusplus */
|
||
|
||
/* This is the most reliable way to avoid incompatibilities
|
||
in available built-in functions on various systems. */
|
||
static void
|
||
__yy_memcpy (char *to, char *from, int count)
|
||
{
|
||
register char *f = from;
|
||
register char *t = to;
|
||
register int i = count;
|
||
|
||
while (i-- > 0)
|
||
*t++ = *f++;
|
||
}
|
||
|
||
#endif
|
||
#endif
|
||
|
||
#line 196 "/usr/lib/bison.simple"
|
||
|
||
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
|
||
into yyparse. The argument should have type void *.
|
||
It should actually point to an object.
|
||
Grammar actions can access the variable by casting it
|
||
to the proper pointer type. */
|
||
|
||
#ifdef YYPARSE_PARAM
|
||
#ifdef __cplusplus
|
||
#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
|
||
#define YYPARSE_PARAM_DECL
|
||
#else /* not __cplusplus */
|
||
#define YYPARSE_PARAM_ARG YYPARSE_PARAM
|
||
#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
|
||
#endif /* not __cplusplus */
|
||
#else /* not YYPARSE_PARAM */
|
||
#define YYPARSE_PARAM_ARG
|
||
#define YYPARSE_PARAM_DECL
|
||
#endif /* not YYPARSE_PARAM */
|
||
|
||
int
|
||
yyparse(YYPARSE_PARAM_ARG)
|
||
YYPARSE_PARAM_DECL
|
||
{
|
||
register int yystate;
|
||
register int yyn;
|
||
register short *yyssp;
|
||
register YYSTYPE *yyvsp;
|
||
int yyerrstatus; /* number of tokens to shift before error messages enabled */
|
||
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
|
||
|
||
short yyssa[YYINITDEPTH]; /* the state stack */
|
||
YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
|
||
|
||
short *yyss = yyssa; /* refer to the stacks thru separate pointers */
|
||
YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
|
||
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
|
||
YYLTYPE *yyls = yylsa;
|
||
YYLTYPE *yylsp;
|
||
|
||
#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
|
||
#else
|
||
#define YYPOPSTACK (yyvsp--, yyssp--)
|
||
#endif
|
||
|
||
int yystacksize = YYINITDEPTH;
|
||
|
||
#ifdef YYPURE
|
||
int yychar;
|
||
YYSTYPE yylval;
|
||
int yynerrs;
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE yylloc;
|
||
#endif
|
||
#endif
|
||
|
||
YYSTYPE yyval; /* the variable used to return */
|
||
/* semantic values from the action */
|
||
/* routines */
|
||
|
||
int yylen;
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Starting parse\n");
|
||
#endif
|
||
|
||
yystate = 0;
|
||
yyerrstatus = 0;
|
||
yynerrs = 0;
|
||
yychar = YYEMPTY; /* Cause a token to be read. */
|
||
|
||
/* Initialize stack pointers.
|
||
Waste one element of value and location stack
|
||
so that they stay on the same level as the state stack.
|
||
The wasted elements are never initialized. */
|
||
|
||
yyssp = yyss - 1;
|
||
yyvsp = yyvs;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp = yyls;
|
||
#endif
|
||
|
||
/* Push a new state, which is found in yystate . */
|
||
/* In all cases, when you get here, the value and location stacks
|
||
have just been pushed. so pushing a state here evens the stacks. */
|
||
yynewstate:
|
||
|
||
*++yyssp = yystate;
|
||
|
||
if (yyssp >= yyss + yystacksize - 1)
|
||
{
|
||
/* Give user a chance to reallocate the stack */
|
||
/* Use copies of these so that the &'s don't force the real ones into memory. */
|
||
YYSTYPE *yyvs1 = yyvs;
|
||
short *yyss1 = yyss;
|
||
#ifdef YYLSP_NEEDED
|
||
YYLTYPE *yyls1 = yyls;
|
||
#endif
|
||
|
||
/* Get the current used size of the three stacks, in elements. */
|
||
int size = yyssp - yyss + 1;
|
||
|
||
#ifdef yyoverflow
|
||
/* Each stack pointer address is followed by the size of
|
||
the data in use in that stack, in bytes. */
|
||
#ifdef YYLSP_NEEDED
|
||
/* This used to be a conditional around just the two extra args,
|
||
but that might be undefined if yyoverflow is a macro. */
|
||
yyoverflow("parser stack overflow",
|
||
&yyss1, size * sizeof (*yyssp),
|
||
&yyvs1, size * sizeof (*yyvsp),
|
||
&yyls1, size * sizeof (*yylsp),
|
||
&yystacksize);
|
||
#else
|
||
yyoverflow("parser stack overflow",
|
||
&yyss1, size * sizeof (*yyssp),
|
||
&yyvs1, size * sizeof (*yyvsp),
|
||
&yystacksize);
|
||
#endif
|
||
|
||
yyss = yyss1; yyvs = yyvs1;
|
||
#ifdef YYLSP_NEEDED
|
||
yyls = yyls1;
|
||
#endif
|
||
#else /* no yyoverflow */
|
||
/* Extend the stack our own way. */
|
||
if (yystacksize >= YYMAXDEPTH)
|
||
{
|
||
yyerror("parser stack overflow");
|
||
return 2;
|
||
}
|
||
yystacksize *= 2;
|
||
if (yystacksize > YYMAXDEPTH)
|
||
yystacksize = YYMAXDEPTH;
|
||
yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
|
||
__yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
|
||
yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
|
||
__yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
|
||
#ifdef YYLSP_NEEDED
|
||
yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
|
||
__yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
|
||
#endif
|
||
#endif /* no yyoverflow */
|
||
|
||
yyssp = yyss + size - 1;
|
||
yyvsp = yyvs + size - 1;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp = yyls + size - 1;
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Stack size increased to %d\n", yystacksize);
|
||
#endif
|
||
|
||
if (yyssp >= yyss + yystacksize - 1)
|
||
YYABORT;
|
||
}
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Entering state %d\n", yystate);
|
||
#endif
|
||
|
||
goto yybackup;
|
||
yybackup:
|
||
|
||
/* Do appropriate processing given the current state. */
|
||
/* Read a lookahead token if we need one and don't already have one. */
|
||
/* yyresume: */
|
||
|
||
/* First try to decide what to do without reference to lookahead token. */
|
||
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYFLAG)
|
||
goto yydefault;
|
||
|
||
/* Not known => get a lookahead token if don't already have one. */
|
||
|
||
/* yychar is either YYEMPTY or YYEOF
|
||
or a valid token in external form. */
|
||
|
||
if (yychar == YYEMPTY)
|
||
{
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Reading a token: ");
|
||
#endif
|
||
yychar = YYLEX;
|
||
}
|
||
|
||
/* Convert token to internal form (in yychar1) for indexing tables with */
|
||
|
||
if (yychar <= 0) /* This means end of input. */
|
||
{
|
||
yychar1 = 0;
|
||
yychar = YYEOF; /* Don't call YYLEX any more */
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Now at end of input.\n");
|
||
#endif
|
||
}
|
||
else
|
||
{
|
||
yychar1 = YYTRANSLATE(yychar);
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
|
||
/* Give the individual parser a way to print the precise meaning
|
||
of a token, for further debugging info. */
|
||
#ifdef YYPRINT
|
||
YYPRINT (stderr, yychar, yylval);
|
||
#endif
|
||
fprintf (stderr, ")\n");
|
||
}
|
||
#endif
|
||
}
|
||
|
||
yyn += yychar1;
|
||
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
|
||
goto yydefault;
|
||
|
||
yyn = yytable[yyn];
|
||
|
||
/* yyn is what to do for this token type in this state.
|
||
Negative => reduce, -yyn is rule number.
|
||
Positive => shift, yyn is new state.
|
||
New state is final state => don't bother to shift,
|
||
just return success.
|
||
0, or most negative number => error. */
|
||
|
||
if (yyn < 0)
|
||
{
|
||
if (yyn == YYFLAG)
|
||
goto yyerrlab;
|
||
yyn = -yyn;
|
||
goto yyreduce;
|
||
}
|
||
else if (yyn == 0)
|
||
goto yyerrlab;
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
/* Shift the lookahead token. */
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
|
||
#endif
|
||
|
||
/* Discard the token being shifted unless it is eof. */
|
||
if (yychar != YYEOF)
|
||
yychar = YYEMPTY;
|
||
|
||
*++yyvsp = yylval;
|
||
#ifdef YYLSP_NEEDED
|
||
*++yylsp = yylloc;
|
||
#endif
|
||
|
||
/* count tokens shifted since error; after three, turn off error status. */
|
||
if (yyerrstatus) yyerrstatus--;
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
|
||
/* Do the default action for the current state. */
|
||
yydefault:
|
||
|
||
yyn = yydefact[yystate];
|
||
if (yyn == 0)
|
||
goto yyerrlab;
|
||
|
||
/* Do a reduction. yyn is the number of a rule to reduce with. */
|
||
yyreduce:
|
||
yylen = yyr2[yyn];
|
||
if (yylen > 0)
|
||
yyval = yyvsp[1-yylen]; /* implement default value of the action */
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
int i;
|
||
|
||
fprintf (stderr, "Reducing via rule %d (line %d), ",
|
||
yyn, yyrline[yyn]);
|
||
|
||
/* Print the symbols being reduced, and their result. */
|
||
for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
|
||
fprintf (stderr, "%s ", yytname[yyrhs[i]]);
|
||
fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
|
||
}
|
||
#endif
|
||
|
||
|
||
switch (yyn) {
|
||
|
||
case 1:
|
||
#line 234 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids an empty source file");
|
||
finish_file ();
|
||
;
|
||
break;}
|
||
case 2:
|
||
#line 239 "objc-parse.y"
|
||
{
|
||
/* In case there were missing closebraces,
|
||
get us back to the global binding level. */
|
||
while (! global_bindings_p ())
|
||
poplevel (0, 0, 0);
|
||
finish_file ();
|
||
;
|
||
break;}
|
||
case 3:
|
||
#line 253 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 5:
|
||
#line 254 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 10:
|
||
#line 262 "objc-parse.y"
|
||
{ STRIP_NOPS (yyvsp[-2].ttype);
|
||
if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
|
||
&& TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
|
||
|| TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
|
||
assemble_asm (yyvsp[-2].ttype);
|
||
else
|
||
error ("argument of `asm' is not a constant string"); ;
|
||
break;}
|
||
case 11:
|
||
#line 270 "objc-parse.y"
|
||
{ pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 12:
|
||
#line 275 "objc-parse.y"
|
||
{ if (pedantic)
|
||
error ("ANSI C forbids data definition with no type or storage class");
|
||
else if (!flag_traditional)
|
||
warning ("data definition has no type or storage class");
|
||
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 13:
|
||
#line 285 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 14:
|
||
#line 290 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 15:
|
||
#line 295 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 16:
|
||
#line 297 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 19:
|
||
#line 301 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
|
||
break;}
|
||
case 20:
|
||
#line 307 "objc-parse.y"
|
||
{ if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 21:
|
||
#line 312 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 22:
|
||
#line 314 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 23:
|
||
#line 320 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 24:
|
||
#line 325 "objc-parse.y"
|
||
{ if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 25:
|
||
#line 330 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 26:
|
||
#line 332 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 27:
|
||
#line 338 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 28:
|
||
#line 343 "objc-parse.y"
|
||
{ if (! start_function (NULL_TREE, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 29:
|
||
#line 348 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 30:
|
||
#line 350 "objc-parse.y"
|
||
{ finish_function (0);
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 31:
|
||
#line 356 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 36:
|
||
#line 370 "objc-parse.y"
|
||
{ yyval.code = ADDR_EXPR; ;
|
||
break;}
|
||
case 37:
|
||
#line 372 "objc-parse.y"
|
||
{ yyval.code = NEGATE_EXPR; ;
|
||
break;}
|
||
case 38:
|
||
#line 374 "objc-parse.y"
|
||
{ yyval.code = CONVERT_EXPR; ;
|
||
break;}
|
||
case 39:
|
||
#line 376 "objc-parse.y"
|
||
{ yyval.code = PREINCREMENT_EXPR; ;
|
||
break;}
|
||
case 40:
|
||
#line 378 "objc-parse.y"
|
||
{ yyval.code = PREDECREMENT_EXPR; ;
|
||
break;}
|
||
case 41:
|
||
#line 380 "objc-parse.y"
|
||
{ yyval.code = BIT_NOT_EXPR; ;
|
||
break;}
|
||
case 42:
|
||
#line 382 "objc-parse.y"
|
||
{ yyval.code = TRUTH_NOT_EXPR; ;
|
||
break;}
|
||
case 43:
|
||
#line 386 "objc-parse.y"
|
||
{ yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 44:
|
||
#line 391 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 46:
|
||
#line 397 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 47:
|
||
#line 399 "objc-parse.y"
|
||
{ chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 49:
|
||
#line 405 "objc-parse.y"
|
||
{ yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
|
||
break;}
|
||
case 50:
|
||
#line 408 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 51:
|
||
#line 411 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
|
||
overflow_warning (yyval.ttype); ;
|
||
break;}
|
||
case 52:
|
||
#line 415 "objc-parse.y"
|
||
{ tree label = lookup_label (yyvsp[0].ttype);
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids `&&'");
|
||
if (label == 0)
|
||
yyval.ttype = null_pointer_node;
|
||
else
|
||
{
|
||
TREE_USED (label) = 1;
|
||
yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
|
||
TREE_CONSTANT (yyval.ttype) = 1;
|
||
}
|
||
;
|
||
break;}
|
||
case 53:
|
||
#line 443 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
|
||
&& DECL_C_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
|
||
error ("`sizeof' applied to a bit-field");
|
||
yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 54:
|
||
#line 449 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 55:
|
||
#line 452 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 56:
|
||
#line 455 "objc-parse.y"
|
||
{ skip_evaluation--;
|
||
yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 57:
|
||
#line 458 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
|
||
break;}
|
||
case 58:
|
||
#line 460 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
|
||
break;}
|
||
case 59:
|
||
#line 464 "objc-parse.y"
|
||
{ skip_evaluation++; ;
|
||
break;}
|
||
case 60:
|
||
#line 468 "objc-parse.y"
|
||
{ skip_evaluation++; ;
|
||
break;}
|
||
case 62:
|
||
#line 474 "objc-parse.y"
|
||
{ tree type = groktypename (yyvsp[-2].ttype);
|
||
yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 63:
|
||
#line 477 "objc-parse.y"
|
||
{ start_init (NULL_TREE, NULL, 0);
|
||
yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
|
||
really_start_incremental_init (yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 64:
|
||
#line 481 "objc-parse.y"
|
||
{ char *name;
|
||
tree result = pop_init_level (0);
|
||
tree type = yyvsp[-5].ttype;
|
||
finish_init ();
|
||
|
||
if (pedantic && ! flag_isoc9x)
|
||
pedwarn ("ANSI C forbids constructor expressions");
|
||
if (TYPE_NAME (type) != 0)
|
||
{
|
||
if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
|
||
name = IDENTIFIER_POINTER (TYPE_NAME (type));
|
||
else
|
||
name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
|
||
}
|
||
else
|
||
name = "";
|
||
yyval.ttype = result;
|
||
if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
|
||
{
|
||
int failure = complete_array_type (type, yyval.ttype, 1);
|
||
if (failure)
|
||
abort ();
|
||
}
|
||
;
|
||
break;}
|
||
case 66:
|
||
#line 510 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 67:
|
||
#line 512 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 68:
|
||
#line 514 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 69:
|
||
#line 516 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 70:
|
||
#line 518 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 71:
|
||
#line 520 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 72:
|
||
#line 522 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 73:
|
||
#line 524 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 74:
|
||
#line 526 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 75:
|
||
#line 528 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 76:
|
||
#line 530 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 77:
|
||
#line 532 "objc-parse.y"
|
||
{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 78:
|
||
#line 534 "objc-parse.y"
|
||
{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
|
||
break;}
|
||
case 79:
|
||
#line 537 "objc-parse.y"
|
||
{ skip_evaluation -= yyvsp[-3].ttype == boolean_false_node;
|
||
yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 80:
|
||
#line 540 "objc-parse.y"
|
||
{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
|
||
break;}
|
||
case 81:
|
||
#line 543 "objc-parse.y"
|
||
{ skip_evaluation -= yyvsp[-3].ttype == boolean_true_node;
|
||
yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 82:
|
||
#line 546 "objc-parse.y"
|
||
{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
|
||
break;}
|
||
case 83:
|
||
#line 549 "objc-parse.y"
|
||
{ skip_evaluation += ((yyvsp[-4].ttype == boolean_true_node)
|
||
- (yyvsp[-4].ttype == boolean_false_node)); ;
|
||
break;}
|
||
case 84:
|
||
#line 552 "objc-parse.y"
|
||
{ skip_evaluation -= yyvsp[-6].ttype == boolean_true_node;
|
||
yyval.ttype = build_conditional_expr (yyvsp[-6].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 85:
|
||
#line 555 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
|
||
/* Make sure first operand is calculated only once. */
|
||
yyvsp[0].ttype = save_expr (yyvsp[-1].ttype);
|
||
yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[0].ttype));
|
||
skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
|
||
break;}
|
||
case 86:
|
||
#line 562 "objc-parse.y"
|
||
{ skip_evaluation -= yyvsp[-4].ttype == boolean_true_node;
|
||
yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 87:
|
||
#line 565 "objc-parse.y"
|
||
{ char class;
|
||
yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
|
||
class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
|
||
if (class == 'e' || class == '1'
|
||
|| class == '2' || class == '<')
|
||
C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR);
|
||
;
|
||
break;}
|
||
case 88:
|
||
#line 573 "objc-parse.y"
|
||
{ char class;
|
||
yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
|
||
/* This inhibits warnings in truthvalue_conversion. */
|
||
class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
|
||
if (class == 'e' || class == '1'
|
||
|| class == '2' || class == '<')
|
||
C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK);
|
||
;
|
||
break;}
|
||
case 89:
|
||
#line 585 "objc-parse.y"
|
||
{
|
||
yyval.ttype = lastiddecl;
|
||
if (!yyval.ttype || yyval.ttype == error_mark_node)
|
||
{
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
if (yychar == '(')
|
||
{
|
||
tree decl;
|
||
|
||
if (objc_receiver_context
|
||
&& ! (objc_receiver_context
|
||
&& strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
|
||
/* we have a message to super */
|
||
yyval.ttype = get_super_receiver ();
|
||
else if (objc_method_context
|
||
&& (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
|
||
{
|
||
if (is_private (decl))
|
||
yyval.ttype = error_mark_node;
|
||
else
|
||
yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
|
||
}
|
||
else
|
||
{
|
||
/* Ordinary implicit function declaration. */
|
||
yyval.ttype = implicitly_declare (yyvsp[0].ttype);
|
||
assemble_external (yyval.ttype);
|
||
TREE_USED (yyval.ttype) = 1;
|
||
}
|
||
}
|
||
else if (current_function_decl == 0)
|
||
{
|
||
error ("`%s' undeclared here (not in a function)",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
else
|
||
{
|
||
tree decl;
|
||
|
||
if (objc_receiver_context
|
||
&& ! strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super"))
|
||
/* we have a message to super */
|
||
yyval.ttype = get_super_receiver ();
|
||
else if (objc_method_context
|
||
&& (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
|
||
{
|
||
if (is_private (decl))
|
||
yyval.ttype = error_mark_node;
|
||
else
|
||
yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
|
||
}
|
||
else
|
||
{
|
||
if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
|
||
|| IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
|
||
{
|
||
error ("`%s' undeclared (first use in this function)",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
|
||
if (! undeclared_variable_notice)
|
||
{
|
||
error ("(Each undeclared identifier is reported only once");
|
||
error ("for each function it appears in.)");
|
||
undeclared_variable_notice = 1;
|
||
}
|
||
}
|
||
yyval.ttype = error_mark_node;
|
||
/* Prevent repeated error messages. */
|
||
IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
|
||
IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
|
||
}
|
||
}
|
||
}
|
||
else if (TREE_TYPE (yyval.ttype) == error_mark_node)
|
||
yyval.ttype = error_mark_node;
|
||
else if (C_DECL_ANTICIPATED (yyval.ttype))
|
||
{
|
||
/* The first time we see a build-in function used,
|
||
if it has not been declared. */
|
||
C_DECL_ANTICIPATED (yyval.ttype) = 0;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
if (yychar == '(')
|
||
{
|
||
/* Omit the implicit declaration we
|
||
would ordinarily do, so we don't lose
|
||
the actual built in type.
|
||
But print a diagnostic for the mismatch. */
|
||
if (objc_method_context
|
||
&& is_ivar (objc_ivar_chain, yyvsp[0].ttype))
|
||
error ("Instance variable `%s' implicitly declared as function",
|
||
IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
|
||
else
|
||
if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
|
||
error ("`%s' implicitly declared as function",
|
||
IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
|
||
else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
|
||
!= TYPE_MODE (integer_type_node))
|
||
&& (TREE_TYPE (TREE_TYPE (yyval.ttype))
|
||
!= void_type_node))
|
||
pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
|
||
IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
|
||
/* If it really returns void, change that to int. */
|
||
if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
|
||
TREE_TYPE (yyval.ttype)
|
||
= build_function_type (integer_type_node,
|
||
TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
|
||
}
|
||
else
|
||
pedwarn ("built-in function `%s' used without declaration",
|
||
IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
|
||
|
||
/* Do what we would ordinarily do when a fn is used. */
|
||
assemble_external (yyval.ttype);
|
||
TREE_USED (yyval.ttype) = 1;
|
||
}
|
||
else
|
||
{
|
||
assemble_external (yyval.ttype);
|
||
TREE_USED (yyval.ttype) = 1;
|
||
/* we have a definition - still check if iVariable */
|
||
|
||
if (!objc_receiver_context
|
||
|| (objc_receiver_context
|
||
&& strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
|
||
{
|
||
tree decl;
|
||
|
||
if (objc_method_context
|
||
&& (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
|
||
{
|
||
if (IDENTIFIER_LOCAL_VALUE (yyvsp[0].ttype))
|
||
warning ("local declaration of `%s' hides instance variable",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
else
|
||
{
|
||
if (is_private (decl))
|
||
yyval.ttype = error_mark_node;
|
||
else
|
||
yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
|
||
}
|
||
}
|
||
}
|
||
else /* we have a message to super */
|
||
yyval.ttype = get_super_receiver ();
|
||
}
|
||
|
||
if (TREE_CODE (yyval.ttype) == CONST_DECL)
|
||
{
|
||
yyval.ttype = DECL_INITIAL (yyval.ttype);
|
||
/* This is to prevent an enum whose value is 0
|
||
from being considered a null pointer constant. */
|
||
yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
|
||
TREE_CONSTANT (yyval.ttype) = 1;
|
||
}
|
||
;
|
||
break;}
|
||
case 91:
|
||
#line 745 "objc-parse.y"
|
||
{ yyval.ttype = combine_strings (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 92:
|
||
#line 747 "objc-parse.y"
|
||
{ char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
|
||
if (class == 'e' || class == '1'
|
||
|| class == '2' || class == '<')
|
||
C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
|
||
yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 93:
|
||
#line 753 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 94:
|
||
#line 755 "objc-parse.y"
|
||
{ if (current_function_decl == 0)
|
||
{
|
||
error ("braced-group within expression allowed only inside a function");
|
||
YYERROR;
|
||
}
|
||
/* We must force a BLOCK for this level
|
||
so that, if it is not expanded later,
|
||
there is a way to turn off the entire subtree of blocks
|
||
that are contained in it. */
|
||
keep_next_level ();
|
||
push_iterator_stack ();
|
||
push_label_level ();
|
||
yyval.ttype = expand_start_stmt_expr (); ;
|
||
break;}
|
||
case 95:
|
||
#line 769 "objc-parse.y"
|
||
{ tree rtl_exp;
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids braced-groups within expressions");
|
||
pop_iterator_stack ();
|
||
pop_label_level ();
|
||
rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
|
||
/* The statements have side effects, so the group does. */
|
||
TREE_SIDE_EFFECTS (rtl_exp) = 1;
|
||
|
||
if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
|
||
{
|
||
/* Make a BIND_EXPR for the BLOCK already made. */
|
||
yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
|
||
NULL_TREE, rtl_exp, yyvsp[-1].ttype);
|
||
/* Remove the block from the tree at this point.
|
||
It gets put back at the proper place
|
||
when the BIND_EXPR is expanded. */
|
||
delete_block (yyvsp[-1].ttype);
|
||
}
|
||
else
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 96:
|
||
#line 792 "objc-parse.y"
|
||
{ yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 97:
|
||
#line 794 "objc-parse.y"
|
||
{ yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 98:
|
||
#line 796 "objc-parse.y"
|
||
{
|
||
if (doing_objc_thang)
|
||
{
|
||
if (is_public (yyvsp[-2].ttype, yyvsp[0].ttype))
|
||
yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
else
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
else
|
||
yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 99:
|
||
#line 808 "objc-parse.y"
|
||
{
|
||
tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
|
||
|
||
if (doing_objc_thang)
|
||
{
|
||
if (is_public (expr, yyvsp[0].ttype))
|
||
yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
|
||
else
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
else
|
||
yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 100:
|
||
#line 822 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 101:
|
||
#line 824 "objc-parse.y"
|
||
{ yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 102:
|
||
#line 826 "objc-parse.y"
|
||
{ yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 103:
|
||
#line 828 "objc-parse.y"
|
||
{ yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 104:
|
||
#line 830 "objc-parse.y"
|
||
{ yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 105:
|
||
#line 832 "objc-parse.y"
|
||
{ yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 106:
|
||
#line 834 "objc-parse.y"
|
||
{ yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 108:
|
||
#line 841 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 110:
|
||
#line 849 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 113:
|
||
#line 857 "objc-parse.y"
|
||
{ c_mark_varargs ();
|
||
if (pedantic)
|
||
pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
|
||
break;}
|
||
case 114:
|
||
#line 867 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 119:
|
||
#line 883 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 120:
|
||
#line 888 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 121:
|
||
#line 893 "objc-parse.y"
|
||
{ shadow_tag_warned (yyvsp[-1].ttype, 1);
|
||
pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 122:
|
||
#line 896 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 123:
|
||
#line 905 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 128:
|
||
#line 920 "objc-parse.y"
|
||
{ yyval.itype = suspend_momentary ();
|
||
pending_xref_error ();
|
||
declspec_stack = tree_cons (prefix_attributes,
|
||
current_declspecs,
|
||
declspec_stack);
|
||
split_specs_attrs (yyvsp[0].ttype,
|
||
¤t_declspecs, &prefix_attributes); ;
|
||
break;}
|
||
case 129:
|
||
#line 931 "objc-parse.y"
|
||
{ prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 130:
|
||
#line 936 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 131:
|
||
#line 941 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 132:
|
||
#line 946 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 133:
|
||
#line 951 "objc-parse.y"
|
||
{ current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 134:
|
||
#line 956 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 135:
|
||
#line 958 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 136:
|
||
#line 960 "objc-parse.y"
|
||
{ pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 137:
|
||
#line 970 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 138:
|
||
#line 972 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 139:
|
||
#line 976 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 140:
|
||
#line 978 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 141:
|
||
#line 980 "objc-parse.y"
|
||
{ if (extra_warnings)
|
||
warning ("`%s' is not at beginning of declaration",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 142:
|
||
#line 985 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 143:
|
||
#line 990 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 144:
|
||
#line 992 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 145:
|
||
#line 997 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 146:
|
||
#line 999 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 147:
|
||
#line 1001 "objc-parse.y"
|
||
{ if (extra_warnings)
|
||
warning ("`%s' is not at beginning of declaration",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 148:
|
||
#line 1014 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 149:
|
||
#line 1016 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 150:
|
||
#line 1018 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 151:
|
||
#line 1020 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 152:
|
||
#line 1025 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
|
||
TREE_STATIC (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 153:
|
||
#line 1028 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 154:
|
||
#line 1030 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
|
||
TREE_STATIC (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 155:
|
||
#line 1033 "objc-parse.y"
|
||
{ if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
|
||
warning ("`%s' is not at beginning of declaration",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
|
||
TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 156:
|
||
#line 1047 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 157:
|
||
#line 1049 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 158:
|
||
#line 1053 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 159:
|
||
#line 1055 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 162:
|
||
#line 1065 "objc-parse.y"
|
||
{ /* For a typedef name, record the meaning, not the name.
|
||
In case of `foo foo, bar;'. */
|
||
yyval.ttype = lookup_name (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 163:
|
||
#line 1069 "objc-parse.y"
|
||
{ yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 164:
|
||
#line 1071 "objc-parse.y"
|
||
{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 165:
|
||
#line 1076 "objc-parse.y"
|
||
{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 166:
|
||
#line 1078 "objc-parse.y"
|
||
{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 167:
|
||
#line 1080 "objc-parse.y"
|
||
{ yyval.ttype = groktypename (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 175:
|
||
#line 1102 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 176:
|
||
#line 1104 "objc-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 177:
|
||
#line 1111 "objc-parse.y"
|
||
{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
|
||
yyvsp[-1].ttype, prefix_attributes);
|
||
start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
|
||
break;}
|
||
case 178:
|
||
#line 1116 "objc-parse.y"
|
||
{ finish_init ();
|
||
finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
|
||
break;}
|
||
case 179:
|
||
#line 1119 "objc-parse.y"
|
||
{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
|
||
yyvsp[0].ttype, prefix_attributes);
|
||
finish_decl (d, NULL_TREE, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 180:
|
||
#line 1127 "objc-parse.y"
|
||
{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
|
||
yyvsp[-1].ttype, prefix_attributes);
|
||
start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
|
||
break;}
|
||
case 181:
|
||
#line 1132 "objc-parse.y"
|
||
{ finish_init ();
|
||
decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype, prefix_attributes);
|
||
finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
|
||
break;}
|
||
case 182:
|
||
#line 1136 "objc-parse.y"
|
||
{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
|
||
yyvsp[0].ttype, prefix_attributes);
|
||
finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 183:
|
||
#line 1144 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 184:
|
||
#line 1146 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 185:
|
||
#line 1151 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 186:
|
||
#line 1153 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 187:
|
||
#line 1158 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-2].ttype; ;
|
||
break;}
|
||
case 188:
|
||
#line 1163 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 189:
|
||
#line 1165 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 190:
|
||
#line 1170 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 191:
|
||
#line 1172 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 192:
|
||
#line 1174 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 193:
|
||
#line 1176 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 194:
|
||
#line 1178 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 200:
|
||
#line 1196 "objc-parse.y"
|
||
{ really_start_incremental_init (NULL_TREE);
|
||
/* Note that the call to clear_momentary
|
||
is in process_init_element. */
|
||
push_momentary (); ;
|
||
break;}
|
||
case 201:
|
||
#line 1201 "objc-parse.y"
|
||
{ yyval.ttype = pop_init_level (0);
|
||
if (yyval.ttype == error_mark_node
|
||
&& ! (yychar == STRING || yychar == CONSTANT))
|
||
pop_momentary ();
|
||
else
|
||
pop_momentary_nofree (); ;
|
||
break;}
|
||
case 202:
|
||
#line 1209 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 203:
|
||
#line 1215 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids empty initializer braces"); ;
|
||
break;}
|
||
case 209:
|
||
#line 1231 "objc-parse.y"
|
||
{ set_init_label (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 212:
|
||
#line 1238 "objc-parse.y"
|
||
{ push_init_level (0); ;
|
||
break;}
|
||
case 213:
|
||
#line 1240 "objc-parse.y"
|
||
{ process_init_element (pop_init_level (0)); ;
|
||
break;}
|
||
case 214:
|
||
#line 1242 "objc-parse.y"
|
||
{ process_init_element (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 218:
|
||
#line 1253 "objc-parse.y"
|
||
{ set_init_label (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 219:
|
||
#line 1261 "objc-parse.y"
|
||
{ push_c_function_context ();
|
||
if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 1))
|
||
{
|
||
pop_c_function_context ();
|
||
YYERROR1;
|
||
}
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 220:
|
||
#line 1270 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 221:
|
||
#line 1278 "objc-parse.y"
|
||
{ finish_function (1);
|
||
pop_c_function_context (); ;
|
||
break;}
|
||
case 222:
|
||
#line 1284 "objc-parse.y"
|
||
{ push_c_function_context ();
|
||
if (! start_function (current_declspecs, yyvsp[0].ttype,
|
||
prefix_attributes, NULL_TREE, 1))
|
||
{
|
||
pop_c_function_context ();
|
||
YYERROR1;
|
||
}
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 223:
|
||
#line 1293 "objc-parse.y"
|
||
{ store_parm_decls (); ;
|
||
break;}
|
||
case 224:
|
||
#line 1301 "objc-parse.y"
|
||
{ finish_function (1);
|
||
pop_c_function_context (); ;
|
||
break;}
|
||
case 227:
|
||
#line 1317 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 228:
|
||
#line 1319 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 229:
|
||
#line 1324 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 230:
|
||
#line 1326 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 231:
|
||
#line 1328 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 232:
|
||
#line 1335 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 235:
|
||
#line 1347 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 236:
|
||
#line 1352 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 237:
|
||
#line 1354 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 238:
|
||
#line 1356 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 239:
|
||
#line 1363 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 241:
|
||
#line 1372 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 242:
|
||
#line 1377 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 243:
|
||
#line 1379 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 244:
|
||
#line 1381 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 245:
|
||
#line 1383 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 246:
|
||
#line 1390 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 248:
|
||
#line 1396 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 249:
|
||
#line 1398 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 250:
|
||
#line 1403 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 251:
|
||
#line 1405 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 252:
|
||
#line 1410 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 253:
|
||
#line 1412 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 254:
|
||
#line 1417 "objc-parse.y"
|
||
{ yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
|
||
/* Start scope of tag before parsing components. */
|
||
;
|
||
break;}
|
||
case 255:
|
||
#line 1421 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 256:
|
||
#line 1423 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
|
||
yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
|
||
;
|
||
break;}
|
||
case 257:
|
||
#line 1427 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 258:
|
||
#line 1429 "objc-parse.y"
|
||
{ yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 259:
|
||
#line 1431 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 260:
|
||
#line 1433 "objc-parse.y"
|
||
{ yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
|
||
yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
|
||
;
|
||
break;}
|
||
case 261:
|
||
#line 1437 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 262:
|
||
#line 1439 "objc-parse.y"
|
||
{ yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_enum (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 263:
|
||
#line 1442 "objc-parse.y"
|
||
{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-7].ttype, yyvsp[0].ttype));
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 264:
|
||
#line 1445 "objc-parse.y"
|
||
{ yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_enum (NULL_TREE); ;
|
||
break;}
|
||
case 265:
|
||
#line 1448 "objc-parse.y"
|
||
{ yyval.ttype= finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), chainon (yyvsp[-6].ttype, yyvsp[0].ttype));
|
||
resume_momentary (yyvsp[-5].itype); ;
|
||
break;}
|
||
case 266:
|
||
#line 1451 "objc-parse.y"
|
||
{ yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 270:
|
||
#line 1462 "objc-parse.y"
|
||
{ if (pedantic && ! flag_isoc9x)
|
||
pedwarn ("comma at end of enumerator list"); ;
|
||
break;}
|
||
case 271:
|
||
#line 1468 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 272:
|
||
#line 1470 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
pedwarn ("no semicolon at end of struct or union"); ;
|
||
break;}
|
||
case 273:
|
||
#line 1475 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 274:
|
||
#line 1477 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 275:
|
||
#line 1479 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified"); ;
|
||
break;}
|
||
case 276:
|
||
#line 1483 "objc-parse.y"
|
||
{
|
||
tree interface = lookup_interface (yyvsp[-1].ttype);
|
||
|
||
if (interface)
|
||
yyval.ttype = get_class_ivars (interface);
|
||
else
|
||
{
|
||
error ("Cannot find interface declaration for `%s'",
|
||
IDENTIFIER_POINTER (yyvsp[-1].ttype));
|
||
yyval.ttype = NULL_TREE;
|
||
}
|
||
;
|
||
break;}
|
||
case 277:
|
||
#line 1508 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 278:
|
||
#line 1514 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids member declarations with no members");
|
||
shadow_tag(yyvsp[0].ttype);
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 279:
|
||
#line 1519 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 280:
|
||
#line 1525 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids member declarations with no members");
|
||
shadow_tag(yyvsp[0].ttype);
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 281:
|
||
#line 1530 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 282:
|
||
#line 1532 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
pedantic = yyvsp[-1].itype; ;
|
||
break;}
|
||
case 284:
|
||
#line 1539 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 285:
|
||
#line 1544 "objc-parse.y"
|
||
{ yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
|
||
break;}
|
||
case 286:
|
||
#line 1548 "objc-parse.y"
|
||
{ yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
|
||
break;}
|
||
case 287:
|
||
#line 1551 "objc-parse.y"
|
||
{ yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
|
||
break;}
|
||
case 289:
|
||
#line 1563 "objc-parse.y"
|
||
{ if (yyvsp[-2].ttype == error_mark_node)
|
||
yyval.ttype = yyvsp[-2].ttype;
|
||
else
|
||
yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 290:
|
||
#line 1568 "objc-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 291:
|
||
#line 1574 "objc-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 292:
|
||
#line 1576 "objc-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 293:
|
||
#line 1581 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 294:
|
||
#line 1583 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 295:
|
||
#line 1588 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 297:
|
||
#line 1594 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 298:
|
||
#line 1596 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 299:
|
||
#line 1601 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 300:
|
||
#line 1603 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 301:
|
||
#line 1608 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 302:
|
||
#line 1611 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 303:
|
||
#line 1613 "objc-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 304:
|
||
#line 1615 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 305:
|
||
#line 1617 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 306:
|
||
#line 1619 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 307:
|
||
#line 1621 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 308:
|
||
#line 1623 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 309:
|
||
#line 1625 "objc-parse.y"
|
||
{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 310:
|
||
#line 1636 "objc-parse.y"
|
||
{
|
||
if (pedantic && yyvsp[0].ends_in_label)
|
||
pedwarn ("ANSI C forbids label at end of compound statement");
|
||
;
|
||
break;}
|
||
case 312:
|
||
#line 1645 "objc-parse.y"
|
||
{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
|
||
break;}
|
||
case 313:
|
||
#line 1647 "objc-parse.y"
|
||
{ yyval.ends_in_label = 0; ;
|
||
break;}
|
||
case 317:
|
||
#line 1659 "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 319:
|
||
#line 1674 "objc-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids label declarations"); ;
|
||
break;}
|
||
case 322:
|
||
#line 1685 "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 323:
|
||
#line 1699 "objc-parse.y"
|
||
{;
|
||
break;}
|
||
case 325:
|
||
#line 1703 "objc-parse.y"
|
||
{ compstmt_count++; ;
|
||
break;}
|
||
case 326:
|
||
#line 1706 "objc-parse.y"
|
||
{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
|
||
break;}
|
||
case 327:
|
||
#line 1708 "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 328:
|
||
#line 1716 "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 329:
|
||
#line 1724 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_end_bindings (getdecls (), kept_level_p (), 0);
|
||
yyval.ttype = poplevel (kept_level_p (), 0, 0);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 332:
|
||
#line 1744 "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 333:
|
||
#line 1758 "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 334:
|
||
#line 1766 "objc-parse.y"
|
||
{ expand_loop_continue_here (); ;
|
||
break;}
|
||
case 335:
|
||
#line 1770 "objc-parse.y"
|
||
{ yyval.filename = input_filename; ;
|
||
break;}
|
||
case 336:
|
||
#line 1774 "objc-parse.y"
|
||
{ yyval.lineno = lineno; ;
|
||
break;}
|
||
case 337:
|
||
#line 1779 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 338:
|
||
#line 1784 "objc-parse.y"
|
||
{ ;
|
||
break;}
|
||
case 339:
|
||
#line 1789 "objc-parse.y"
|
||
{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
|
||
break;}
|
||
case 340:
|
||
#line 1794 "objc-parse.y"
|
||
{ yyval.ends_in_label = 0; ;
|
||
break;}
|
||
case 341:
|
||
#line 1796 "objc-parse.y"
|
||
{ yyval.ends_in_label = 1; ;
|
||
break;}
|
||
case 342:
|
||
#line 1802 "objc-parse.y"
|
||
{ stmt_count++; ;
|
||
break;}
|
||
case 344:
|
||
#line 1805 "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 345:
|
||
#line 1822 "objc-parse.y"
|
||
{ c_expand_start_else ();
|
||
yyvsp[-1].itype = stmt_count;
|
||
position_after_white_space (); ;
|
||
break;}
|
||
case 346:
|
||
#line 1826 "objc-parse.y"
|
||
{ c_expand_end_cond ();
|
||
if (extra_warnings && stmt_count == yyvsp[-3].itype)
|
||
warning ("empty body in an else-statement"); ;
|
||
break;}
|
||
case 347:
|
||
#line 1830 "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 348:
|
||
#line 1842 "objc-parse.y"
|
||
{ c_expand_end_cond (); ;
|
||
break;}
|
||
case 349:
|
||
#line 1844 "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 350:
|
||
#line 1854 "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 351:
|
||
#line 1863 "objc-parse.y"
|
||
{ expand_end_loop (); ;
|
||
break;}
|
||
case 352:
|
||
#line 1866 "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 353:
|
||
#line 1873 "objc-parse.y"
|
||
{ expand_end_loop ();
|
||
clear_momentary (); ;
|
||
break;}
|
||
case 354:
|
||
#line 1877 "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 355:
|
||
#line 1889 "objc-parse.y"
|
||
{ yyvsp[0].lineno = lineno;
|
||
yyval.filename = input_filename; ;
|
||
break;}
|
||
case 356:
|
||
#line 1892 "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 357:
|
||
#line 1908 "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 358:
|
||
#line 1919 "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 359:
|
||
#line 1927 "objc-parse.y"
|
||
{ expand_end_case (yyvsp[-3].ttype);
|
||
if (yychar == CONSTANT || yychar == STRING)
|
||
pop_momentary_nofree ();
|
||
else
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 360:
|
||
#line 1933 "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 361:
|
||
#line 1938 "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 362:
|
||
#line 1943 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
|
||
c_expand_return (NULL_TREE); ;
|
||
break;}
|
||
case 363:
|
||
#line 1947 "objc-parse.y"
|
||
{ stmt_count++;
|
||
emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
|
||
c_expand_return (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 364:
|
||
#line 1951 "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 365:
|
||
#line 1962 "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 366:
|
||
#line 1969 "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 367:
|
||
#line 1977 "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 368:
|
||
#line 1983 "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 369:
|
||
#line 1994 "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 372:
|
||
#line 2009 "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 373:
|
||
#line 2030 "objc-parse.y"
|
||
{
|
||
if (yyvsp[-1].itype)
|
||
iterator_for_loop_end (yyvsp[-3].ttype);
|
||
;
|
||
break;}
|
||
case 374:
|
||
#line 2065 "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 375:
|
||
#line 2096 "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 376:
|
||
#line 2127 "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 377:
|
||
#line 2142 "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 378:
|
||
#line 2157 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 379:
|
||
#line 2160 "objc-parse.y"
|
||
{ emit_line_note (input_filename, lineno); ;
|
||
break;}
|
||
case 380:
|
||
#line 2165 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 382:
|
||
#line 2172 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 385:
|
||
#line 2179 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 386:
|
||
#line 2184 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 387:
|
||
#line 2189 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
|
||
break;}
|
||
case 388:
|
||
#line 2191 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 389:
|
||
#line 2197 "objc-parse.y"
|
||
{ pushlevel (0);
|
||
clear_parm_order ();
|
||
declare_parm_level (0); ;
|
||
break;}
|
||
case 390:
|
||
#line 2201 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
parmlist_tags_warning ();
|
||
poplevel (0, 0, 0); ;
|
||
break;}
|
||
case 392:
|
||
#line 2209 "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 393:
|
||
#line 2217 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 394:
|
||
#line 2219 "objc-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 395:
|
||
#line 2225 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (0); ;
|
||
break;}
|
||
case 396:
|
||
#line 2227 "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 397:
|
||
#line 2237 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (1); ;
|
||
break;}
|
||
case 398:
|
||
#line 2239 "objc-parse.y"
|
||
{ yyval.ttype = get_parm_info (0); ;
|
||
break;}
|
||
case 399:
|
||
#line 2244 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 400:
|
||
#line 2246 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 401:
|
||
#line 2253 "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 402:
|
||
#line 2262 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 403:
|
||
#line 2271 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 404:
|
||
#line 2280 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype));
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-2].itype); ;
|
||
break;}
|
||
case 405:
|
||
#line 2290 "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 2304 "objc-parse.y"
|
||
{ pushlevel (0);
|
||
clear_parm_order ();
|
||
declare_parm_level (1); ;
|
||
break;}
|
||
case 407:
|
||
#line 2308 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
parmlist_tags_warning ();
|
||
poplevel (0, 0, 0); ;
|
||
break;}
|
||
case 409:
|
||
#line 2316 "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 410:
|
||
#line 2326 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 411:
|
||
#line 2328 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 412:
|
||
#line 2334 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 413:
|
||
#line 2336 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 414:
|
||
#line 2341 "objc-parse.y"
|
||
{ yyval.itype = pedantic;
|
||
pedantic = 0; ;
|
||
break;}
|
||
case 420:
|
||
#line 2354 "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 421:
|
||
#line 2369 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 422:
|
||
#line 2371 "objc-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 423:
|
||
#line 2376 "objc-parse.y"
|
||
{
|
||
objc_declare_class (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 424:
|
||
#line 2382 "objc-parse.y"
|
||
{
|
||
objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 425:
|
||
#line 2388 "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 426:
|
||
#line 2394 "objc-parse.y"
|
||
{
|
||
continue_class (objc_interface_context);
|
||
;
|
||
break;}
|
||
case 427:
|
||
#line 2399 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 428:
|
||
#line 2405 "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 429:
|
||
#line 2412 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 430:
|
||
#line 2418 "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 431:
|
||
#line 2424 "objc-parse.y"
|
||
{
|
||
continue_class (objc_interface_context);
|
||
;
|
||
break;}
|
||
case 432:
|
||
#line 2429 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 433:
|
||
#line 2435 "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 434:
|
||
#line 2442 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 435:
|
||
#line 2448 "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 436:
|
||
#line 2454 "objc-parse.y"
|
||
{
|
||
objc_ivar_chain
|
||
= continue_class (objc_implementation_context);
|
||
;
|
||
break;}
|
||
case 437:
|
||
#line 2460 "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 438:
|
||
#line 2468 "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 439:
|
||
#line 2474 "objc-parse.y"
|
||
{
|
||
objc_ivar_chain
|
||
= continue_class (objc_implementation_context);
|
||
;
|
||
break;}
|
||
case 440:
|
||
#line 2480 "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 441:
|
||
#line 2488 "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 442:
|
||
#line 2495 "objc-parse.y"
|
||
{
|
||
finish_class (objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 443:
|
||
#line 2501 "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 444:
|
||
#line 2511 "objc-parse.y"
|
||
{
|
||
remember_protocol_qualifiers ();
|
||
objc_interface_context
|
||
= start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 445:
|
||
#line 2517 "objc-parse.y"
|
||
{
|
||
forget_protocol_qualifiers();
|
||
finish_protocol(objc_interface_context);
|
||
objc_interface_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 446:
|
||
#line 2526 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 448:
|
||
#line 2534 "objc-parse.y"
|
||
{
|
||
if (yyvsp[-2].code == LT_EXPR && yyvsp[0].code == GT_EXPR)
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
else
|
||
YYERROR1;
|
||
;
|
||
break;}
|
||
case 451:
|
||
#line 2548 "objc-parse.y"
|
||
{ objc_public_flag = 2; ;
|
||
break;}
|
||
case 452:
|
||
#line 2549 "objc-parse.y"
|
||
{ objc_public_flag = 0; ;
|
||
break;}
|
||
case 453:
|
||
#line 2550 "objc-parse.y"
|
||
{ objc_public_flag = 1; ;
|
||
break;}
|
||
case 454:
|
||
#line 2555 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 456:
|
||
#line 2560 "objc-parse.y"
|
||
{
|
||
if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified");
|
||
;
|
||
break;}
|
||
case 457:
|
||
#line 2578 "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 458:
|
||
#line 2584 "objc-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
current_declspecs = TREE_VALUE (declspec_stack);
|
||
prefix_attributes = TREE_PURPOSE (declspec_stack);
|
||
declspec_stack = TREE_CHAIN (declspec_stack);
|
||
resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 459:
|
||
#line 2590 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 460:
|
||
#line 2595 "objc-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 463:
|
||
#line 2602 "objc-parse.y"
|
||
{
|
||
yyval.ttype = add_instance_variable (objc_ivar_context,
|
||
objc_public_flag,
|
||
yyvsp[0].ttype, current_declspecs,
|
||
NULL_TREE);
|
||
;
|
||
break;}
|
||
case 464:
|
||
#line 2609 "objc-parse.y"
|
||
{
|
||
yyval.ttype = add_instance_variable (objc_ivar_context,
|
||
objc_public_flag,
|
||
yyvsp[-2].ttype, current_declspecs, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 465:
|
||
#line 2615 "objc-parse.y"
|
||
{
|
||
yyval.ttype = add_instance_variable (objc_ivar_context,
|
||
objc_public_flag,
|
||
NULL_TREE,
|
||
current_declspecs, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 466:
|
||
#line 2625 "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 467:
|
||
#line 2633 "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 468:
|
||
#line 2640 "objc-parse.y"
|
||
{
|
||
continue_method_def ();
|
||
;
|
||
break;}
|
||
case 469:
|
||
#line 2644 "objc-parse.y"
|
||
{
|
||
finish_method_def ();
|
||
objc_method_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 470:
|
||
#line 2650 "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 471:
|
||
#line 2658 "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 472:
|
||
#line 2665 "objc-parse.y"
|
||
{
|
||
continue_method_def ();
|
||
;
|
||
break;}
|
||
case 473:
|
||
#line 2669 "objc-parse.y"
|
||
{
|
||
finish_method_def ();
|
||
objc_method_context = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 475:
|
||
#line 2681 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 480:
|
||
#line 2688 "objc-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 484:
|
||
#line 2698 "objc-parse.y"
|
||
{
|
||
/* Remember protocol qualifiers in prototypes. */
|
||
remember_protocol_qualifiers ();
|
||
objc_inherit_code = CLASS_METHOD_DECL;
|
||
;
|
||
break;}
|
||
case 485:
|
||
#line 2704 "objc-parse.y"
|
||
{
|
||
/* Forget protocol qualifiers here. */
|
||
forget_protocol_qualifiers ();
|
||
add_class_method (objc_interface_context, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 487:
|
||
#line 2712 "objc-parse.y"
|
||
{
|
||
/* Remember protocol qualifiers in prototypes. */
|
||
remember_protocol_qualifiers ();
|
||
objc_inherit_code = INSTANCE_METHOD_DECL;
|
||
;
|
||
break;}
|
||
case 488:
|
||
#line 2718 "objc-parse.y"
|
||
{
|
||
/* Forget protocol qualifiers here. */
|
||
forget_protocol_qualifiers ();
|
||
add_instance_method (objc_interface_context, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 490:
|
||
#line 2728 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 491:
|
||
#line 2733 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 492:
|
||
#line 2738 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 493:
|
||
#line 2743 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 502:
|
||
#line 2773 "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 503:
|
||
#line 2778 "objc-parse.y"
|
||
{ shadow_tag (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 504:
|
||
#line 2780 "objc-parse.y"
|
||
{ pedwarn ("empty declaration"); ;
|
||
break;}
|
||
case 505:
|
||
#line 2785 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 506:
|
||
#line 2787 "objc-parse.y"
|
||
{ push_parm_decl (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 507:
|
||
#line 2795 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 508:
|
||
#line 2800 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 509:
|
||
#line 2805 "objc-parse.y"
|
||
{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
|
||
yyvsp[-1].ttype),
|
||
build_tree_list (prefix_attributes,
|
||
yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 510:
|
||
#line 2813 "objc-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 511:
|
||
#line 2817 "objc-parse.y"
|
||
{
|
||
/* oh what a kludge! */
|
||
yyval.ttype = (tree)1;
|
||
;
|
||
break;}
|
||
case 512:
|
||
#line 2822 "objc-parse.y"
|
||
{
|
||
pushlevel (0);
|
||
;
|
||
break;}
|
||
case 513:
|
||
#line 2826 "objc-parse.y"
|
||
{
|
||
/* returns a tree list node generated by get_parm_info */
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
poplevel (0, 0, 0);
|
||
;
|
||
break;}
|
||
case 516:
|
||
#line 2841 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 521:
|
||
#line 2854 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 522:
|
||
#line 2855 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 523:
|
||
#line 2856 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 524:
|
||
#line 2857 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 525:
|
||
#line 2858 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 526:
|
||
#line 2859 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 527:
|
||
#line 2860 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 528:
|
||
#line 2861 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 529:
|
||
#line 2862 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 530:
|
||
#line 2863 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 531:
|
||
#line 2864 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 532:
|
||
#line 2865 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 533:
|
||
#line 2866 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 534:
|
||
#line 2867 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 535:
|
||
#line 2868 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 536:
|
||
#line 2869 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 537:
|
||
#line 2870 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 538:
|
||
#line 2871 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 539:
|
||
#line 2872 "objc-parse.y"
|
||
{ yyval.ttype = get_identifier (token_buffer); ;
|
||
break;}
|
||
case 542:
|
||
#line 2878 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 543:
|
||
#line 2883 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 544:
|
||
#line 2888 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 545:
|
||
#line 2893 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 549:
|
||
#line 2906 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 550:
|
||
#line 2914 "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 551:
|
||
#line 2926 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 552:
|
||
#line 2930 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 554:
|
||
#line 2938 "objc-parse.y"
|
||
{
|
||
yyval.ttype = get_class_reference (yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 555:
|
||
#line 2945 "objc-parse.y"
|
||
{ objc_receiver_context = 1; ;
|
||
break;}
|
||
case 556:
|
||
#line 2947 "objc-parse.y"
|
||
{ objc_receiver_context = 0; ;
|
||
break;}
|
||
case 557:
|
||
#line 2949 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 561:
|
||
#line 2962 "objc-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 562:
|
||
#line 2969 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 563:
|
||
#line 2973 "objc-parse.y"
|
||
{
|
||
yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 564:
|
||
#line 2980 "objc-parse.y"
|
||
{
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 565:
|
||
#line 2987 "objc-parse.y"
|
||
{
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 566:
|
||
#line 2996 "objc-parse.y"
|
||
{
|
||
yyval.ttype = groktypename (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
}
|
||
/* the action file gets copied in in place of this dollarsign */
|
||
#line 498 "/usr/lib/bison.simple"
|
||
|
||
yyvsp -= yylen;
|
||
yyssp -= yylen;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp -= yylen;
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
short *ssp1 = yyss - 1;
|
||
fprintf (stderr, "state stack now");
|
||
while (ssp1 != yyssp)
|
||
fprintf (stderr, " %d", *++ssp1);
|
||
fprintf (stderr, "\n");
|
||
}
|
||
#endif
|
||
|
||
*++yyvsp = yyval;
|
||
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp++;
|
||
if (yylen == 0)
|
||
{
|
||
yylsp->first_line = yylloc.first_line;
|
||
yylsp->first_column = yylloc.first_column;
|
||
yylsp->last_line = (yylsp-1)->last_line;
|
||
yylsp->last_column = (yylsp-1)->last_column;
|
||
yylsp->text = 0;
|
||
}
|
||
else
|
||
{
|
||
yylsp->last_line = (yylsp+yylen-1)->last_line;
|
||
yylsp->last_column = (yylsp+yylen-1)->last_column;
|
||
}
|
||
#endif
|
||
|
||
/* Now "shift" the result of the reduction.
|
||
Determine what state that goes to,
|
||
based on the state we popped back to
|
||
and the rule number reduced by. */
|
||
|
||
yyn = yyr1[yyn];
|
||
|
||
yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
|
||
if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
||
yystate = yytable[yystate];
|
||
else
|
||
yystate = yydefgoto[yyn - YYNTBASE];
|
||
|
||
goto yynewstate;
|
||
|
||
yyerrlab: /* here on detecting error */
|
||
|
||
if (! yyerrstatus)
|
||
/* If not already recovering from an error, report this error. */
|
||
{
|
||
++yynerrs;
|
||
|
||
#ifdef YYERROR_VERBOSE
|
||
yyn = yypact[yystate];
|
||
|
||
if (yyn > YYFLAG && yyn < YYLAST)
|
||
{
|
||
int size = 0;
|
||
char *msg;
|
||
int x, count;
|
||
|
||
count = 0;
|
||
/* Start X at -yyn if nec to avoid negative indexes in yycheck. */
|
||
for (x = (yyn < 0 ? -yyn : 0);
|
||
x < (sizeof(yytname) / sizeof(char *)); x++)
|
||
if (yycheck[x + yyn] == x)
|
||
size += strlen(yytname[x]) + 15, count++;
|
||
msg = (char *) malloc(size + 15);
|
||
if (msg != 0)
|
||
{
|
||
strcpy(msg, "parse error");
|
||
|
||
if (count < 5)
|
||
{
|
||
count = 0;
|
||
for (x = (yyn < 0 ? -yyn : 0);
|
||
x < (sizeof(yytname) / sizeof(char *)); x++)
|
||
if (yycheck[x + yyn] == x)
|
||
{
|
||
strcat(msg, count == 0 ? ", expecting `" : " or `");
|
||
strcat(msg, yytname[x]);
|
||
strcat(msg, "'");
|
||
count++;
|
||
}
|
||
}
|
||
yyerror(msg);
|
||
free(msg);
|
||
}
|
||
else
|
||
yyerror ("parse error; also virtual memory exceeded");
|
||
}
|
||
else
|
||
#endif /* YYERROR_VERBOSE */
|
||
yyerror("parse error");
|
||
}
|
||
|
||
goto yyerrlab1;
|
||
yyerrlab1: /* here on error raised explicitly by an action */
|
||
|
||
if (yyerrstatus == 3)
|
||
{
|
||
/* if just tried and failed to reuse lookahead token after an error, discard it. */
|
||
|
||
/* return failure if at end of input */
|
||
if (yychar == YYEOF)
|
||
YYABORT;
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
|
||
#endif
|
||
|
||
yychar = YYEMPTY;
|
||
}
|
||
|
||
/* Else will try to reuse lookahead token
|
||
after shifting the error token. */
|
||
|
||
yyerrstatus = 3; /* Each real token shifted decrements this */
|
||
|
||
goto yyerrhandle;
|
||
|
||
yyerrdefault: /* current state does not do anything special for the error token. */
|
||
|
||
#if 0
|
||
/* This is wrong; only states that explicitly want error tokens
|
||
should shift them. */
|
||
yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
|
||
if (yyn) goto yydefault;
|
||
#endif
|
||
|
||
yyerrpop: /* pop the current state because it cannot handle the error token */
|
||
|
||
if (yyssp == yyss) YYABORT;
|
||
yyvsp--;
|
||
yystate = *--yyssp;
|
||
#ifdef YYLSP_NEEDED
|
||
yylsp--;
|
||
#endif
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
{
|
||
short *ssp1 = yyss - 1;
|
||
fprintf (stderr, "Error: state stack now");
|
||
while (ssp1 != yyssp)
|
||
fprintf (stderr, " %d", *++ssp1);
|
||
fprintf (stderr, "\n");
|
||
}
|
||
#endif
|
||
|
||
yyerrhandle:
|
||
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYFLAG)
|
||
goto yyerrdefault;
|
||
|
||
yyn += YYTERROR;
|
||
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
|
||
goto yyerrdefault;
|
||
|
||
yyn = yytable[yyn];
|
||
if (yyn < 0)
|
||
{
|
||
if (yyn == YYFLAG)
|
||
goto yyerrpop;
|
||
yyn = -yyn;
|
||
goto yyreduce;
|
||
}
|
||
else if (yyn == 0)
|
||
goto yyerrpop;
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
#if YYDEBUG != 0
|
||
if (yydebug)
|
||
fprintf(stderr, "Shifting error token, ");
|
||
#endif
|
||
|
||
*++yyvsp = yylval;
|
||
#ifdef YYLSP_NEEDED
|
||
*++yylsp = yylloc;
|
||
#endif
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
}
|
||
#line 3001 "objc-parse.y"
|
||
|