7394 lines
288 KiB
C
7394 lines
288 KiB
C
|
||
/* A Bison parser, made from cp-parse.y */
|
||
|
||
#define YYBISON 1 /* Identify Bison output. */
|
||
|
||
#define IDENTIFIER 258
|
||
#define TYPENAME 259
|
||
#define SCOPED_TYPENAME 260
|
||
#define SCSPEC 261
|
||
#define TYPESPEC 262
|
||
#define TYPE_QUAL 263
|
||
#define CONSTANT 264
|
||
#define STRING 265
|
||
#define ELLIPSIS 266
|
||
#define SIZEOF 267
|
||
#define ENUM 268
|
||
#define IF 269
|
||
#define ELSE 270
|
||
#define WHILE 271
|
||
#define DO 272
|
||
#define FOR 273
|
||
#define SWITCH 274
|
||
#define CASE 275
|
||
#define DEFAULT 276
|
||
#define BREAK 277
|
||
#define CONTINUE 278
|
||
#define RETURN 279
|
||
#define GOTO 280
|
||
#define ASM_KEYWORD 281
|
||
#define TYPEOF 282
|
||
#define ALIGNOF 283
|
||
#define HEADOF 284
|
||
#define CLASSOF 285
|
||
#define ATTRIBUTE 286
|
||
#define EXTENSION 287
|
||
#define LABEL 288
|
||
#define AGGR 289
|
||
#define VISSPEC 290
|
||
#define DELETE 291
|
||
#define NEW 292
|
||
#define OVERLOAD 293
|
||
#define THIS 294
|
||
#define OPERATOR 295
|
||
#define DYNAMIC 296
|
||
#define POINTSAT_LEFT_RIGHT 297
|
||
#define LEFT_RIGHT 298
|
||
#define TEMPLATE 299
|
||
#define SCOPE 300
|
||
#define START_DECLARATOR 301
|
||
#define EMPTY 302
|
||
#define TYPENAME_COLON 303
|
||
#define ASSIGN 304
|
||
#define RANGE 305
|
||
#define OROR 306
|
||
#define ANDAND 307
|
||
#define MIN_MAX 308
|
||
#define EQCOMPARE 309
|
||
#define ARITHCOMPARE 310
|
||
#define LSHIFT 311
|
||
#define RSHIFT 312
|
||
#define UNARY 313
|
||
#define PLUSPLUS 314
|
||
#define MINUSMINUS 315
|
||
#define HYPERUNARY 316
|
||
#define PAREN_STAR_PAREN 317
|
||
#define POINTSAT 318
|
||
#define POINTSAT_STAR 319
|
||
#define DOT_STAR 320
|
||
#define RAISE 321
|
||
#define RAISES 322
|
||
#define RERAISE 323
|
||
#define TRY 324
|
||
#define EXCEPT 325
|
||
#define CATCH 326
|
||
#define THROW 327
|
||
#define ANSI_TRY 328
|
||
#define ANSI_THROW 329
|
||
#define TYPENAME_ELLIPSIS 330
|
||
#define PTYPENAME 331
|
||
#define PRE_PARSED_FUNCTION_DECL 332
|
||
#define EXTERN_LANG_STRING 333
|
||
#define ALL 334
|
||
#define PRE_PARSED_CLASS_DECL 335
|
||
#define TYPENAME_DEFN 336
|
||
#define IDENTIFIER_DEFN 337
|
||
#define PTYPENAME_DEFN 338
|
||
#define END_OF_SAVED_INPUT 339
|
||
|
||
#line 42 "cp-parse.y"
|
||
|
||
#ifdef GATHER_STATISTICS
|
||
#undef YYDEBUG
|
||
#define YYDEBUG 1
|
||
#endif
|
||
|
||
#include "config.h"
|
||
|
||
#include <stdio.h>
|
||
#include <errno.h>
|
||
|
||
#include "tree.h"
|
||
#include "input.h"
|
||
#include "cp-lex.h"
|
||
#include "cp-tree.h"
|
||
#include "assert.h"
|
||
|
||
extern tree void_list_node;
|
||
|
||
#ifndef errno
|
||
extern int errno;
|
||
#endif
|
||
|
||
extern int end_of_file;
|
||
|
||
void yyerror ();
|
||
|
||
/* Like YYERROR but do call yyerror. */
|
||
#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
|
||
|
||
static void position_after_white_space ();
|
||
|
||
/* The elements of `ridpointers' are identifier nodes
|
||
for the reserved type names and storage classes.
|
||
It is indexed by a RID_... value. */
|
||
|
||
tree ridpointers[(int) RID_MAX];
|
||
#define NORID RID_UNUSED
|
||
|
||
/* Contains error message to give if user tries to declare
|
||
a variable where one does not belong. */
|
||
static char *stmt_decl_msg = 0;
|
||
|
||
/* Nonzero if we have an `extern "C"' acting as an extern specifier. */
|
||
|
||
static int have_extern_spec;
|
||
|
||
void yyhook ();
|
||
|
||
/* Cons up an empty parameter list. */
|
||
#ifdef __GNUC__
|
||
__inline
|
||
#endif
|
||
static tree
|
||
empty_parms ()
|
||
{
|
||
tree parms;
|
||
|
||
if (strict_prototype)
|
||
parms = void_list_node;
|
||
else
|
||
parms = NULL_TREE;
|
||
return parms;
|
||
}
|
||
|
||
#line 110 "cp-parse.y"
|
||
typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
|
||
#line 266 "cp-parse.y"
|
||
|
||
/* the declaration found for the last IDENTIFIER token read in.
|
||
yylex must look this up to detect typedefs, which get token type TYPENAME,
|
||
so it is left around in case the identifier is not a typedef but is
|
||
used in a context which makes it a reference to a variable. */
|
||
tree lastiddecl;
|
||
|
||
/* Back-door communication channel to the lexer. */
|
||
extern int looking_for_typename;
|
||
|
||
tree make_pointer_declarator (), make_reference_declarator ();
|
||
|
||
void reinit_parse_for_function ();
|
||
void reinit_parse_for_method ();
|
||
|
||
/* List of types and structure classes of the current declaration. */
|
||
tree current_declspecs;
|
||
|
||
/* When defining an aggregate, this is the most recent one being defined. */
|
||
static tree current_aggr;
|
||
|
||
int undeclared_variable_notice; /* 1 if we explained undeclared var errors. */
|
||
|
||
int yylex ();
|
||
|
||
static
|
||
#ifdef __GNUC__
|
||
__inline
|
||
#endif
|
||
void yyprint ();
|
||
#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
|
||
|
||
#ifndef YYLTYPE
|
||
typedef
|
||
struct yyltype
|
||
{
|
||
int timestamp;
|
||
int first_line;
|
||
int first_column;
|
||
int last_line;
|
||
int last_column;
|
||
char *text;
|
||
}
|
||
yyltype;
|
||
|
||
#define YYLTYPE yyltype
|
||
#endif
|
||
|
||
#include <stdio.h>
|
||
|
||
#ifndef __STDC__
|
||
#define const
|
||
#endif
|
||
|
||
|
||
|
||
#define YYFINAL 1247
|
||
#define YYFLAG -32768
|
||
#define YYNTBASE 109
|
||
|
||
#define YYTRANSLATE(x) ((unsigned)(x) <= 339 ? yytranslate[x] : 299)
|
||
|
||
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, 107, 2, 2, 2, 72, 60, 2, 82,
|
||
103, 70, 68, 50, 69, 80, 71, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 54, 104, 64,
|
||
52, 65, 53, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
83, 2, 108, 59, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 49, 58, 105, 106, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 1, 2, 3, 4, 5,
|
||
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
||
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
||
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
||
46, 47, 48, 51, 55, 56, 57, 61, 62, 63,
|
||
66, 67, 73, 74, 75, 76, 77, 78, 79, 81,
|
||
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
||
94, 95, 96, 97, 98, 99, 100, 101, 102
|
||
};
|
||
|
||
static const short yyprhs[] = { 0,
|
||
0, 1, 3, 4, 7, 10, 11, 12, 14, 16,
|
||
18, 20, 26, 31, 35, 40, 45, 47, 48, 54,
|
||
56, 60, 63, 68, 72, 74, 78, 80, 84, 85,
|
||
91, 92, 98, 99, 105, 106, 112, 116, 120, 127,
|
||
135, 140, 144, 148, 150, 152, 154, 156, 158, 161,
|
||
165, 169, 173, 177, 180, 183, 186, 189, 191, 195,
|
||
200, 204, 210, 215, 219, 223, 226, 230, 234, 237,
|
||
244, 251, 256, 261, 263, 270, 275, 279, 286, 291,
|
||
295, 298, 301, 303, 307, 312, 315, 319, 320, 321,
|
||
323, 327, 330, 334, 336, 341, 344, 349, 352, 358,
|
||
362, 364, 366, 368, 370, 372, 374, 376, 378, 380,
|
||
383, 385, 388, 391, 394, 398, 402, 404, 407, 410,
|
||
414, 419, 421, 423, 424, 425, 427, 431, 433, 435,
|
||
436, 443, 444, 446, 447, 450, 452, 454, 456, 458,
|
||
460, 462, 464, 466, 470, 474, 476, 477, 481, 484,
|
||
487, 490, 493, 496, 501, 504, 509, 513, 520, 525,
|
||
531, 541, 551, 558, 565, 569, 572, 577, 583, 585,
|
||
590, 598, 603, 608, 613, 615, 619, 623, 627, 631,
|
||
635, 639, 643, 647, 651, 655, 659, 663, 667, 671,
|
||
675, 679, 683, 689, 693, 697, 701, 704, 706, 708,
|
||
710, 712, 716, 720, 721, 726, 727, 734, 737, 742,
|
||
745, 749, 752, 755, 757, 762, 767, 770, 773, 776,
|
||
779, 785, 789, 795, 799, 806, 811, 813, 818, 821,
|
||
827, 828, 830, 832, 835, 837, 840, 841, 844, 847,
|
||
850, 854, 858, 862, 866, 869, 872, 874, 876, 879,
|
||
882, 884, 887, 890, 894, 896, 898, 901, 904, 906,
|
||
908, 911, 914, 916, 919, 922, 926, 928, 931, 933,
|
||
935, 937, 939, 944, 949, 951, 953, 955, 957, 959,
|
||
963, 965, 969, 970, 975, 976, 984, 989, 990, 998,
|
||
1003, 1004, 1012, 1017, 1018, 1025, 1027, 1031, 1033, 1038,
|
||
1047, 1049, 1053, 1055, 1058, 1062, 1067, 1069, 1071, 1075,
|
||
1080, 1087, 1091, 1097, 1098, 1106, 1111, 1112, 1119, 1123,
|
||
1126, 1131, 1133, 1134, 1136, 1137, 1139, 1141, 1144, 1150,
|
||
1153, 1156, 1159, 1162, 1165, 1168, 1171, 1175, 1179, 1182,
|
||
1183, 1187, 1188, 1192, 1195, 1197, 1199, 1200, 1202, 1205,
|
||
1207, 1211, 1213, 1216, 1220, 1222, 1224, 1226, 1229, 1232,
|
||
1234, 1235, 1237, 1242, 1246, 1248, 1251, 1254, 1258, 1264,
|
||
1270, 1274, 1278, 1282, 1286, 1290, 1296, 1302, 1306, 1310,
|
||
1314, 1318, 1320, 1323, 1326, 1330, 1334, 1335, 1337, 1341,
|
||
1346, 1353, 1358, 1362, 1365, 1370, 1377, 1382, 1386, 1389,
|
||
1391, 1395, 1397, 1401, 1404, 1407, 1408, 1410, 1413, 1415,
|
||
1418, 1419, 1422, 1423, 1426, 1432, 1438, 1442, 1448, 1453,
|
||
1457, 1461, 1467, 1469, 1471, 1477, 1481, 1485, 1487, 1493,
|
||
1499, 1503, 1509, 1514, 1518, 1522, 1524, 1526, 1530, 1534,
|
||
1540, 1546, 1550, 1556, 1560, 1564, 1568, 1573, 1577, 1579,
|
||
1581, 1584, 1587, 1590, 1593, 1597, 1601, 1605, 1609, 1617,
|
||
1625, 1631, 1639, 1643, 1651, 1659, 1665, 1673, 1677, 1679,
|
||
1683, 1686, 1688, 1692, 1696, 1699, 1701, 1705, 1709, 1712,
|
||
1718, 1722, 1727, 1731, 1736, 1739, 1743, 1746, 1750, 1755,
|
||
1759, 1764, 1770, 1776, 1778, 1780, 1783, 1786, 1789, 1790,
|
||
1791, 1793, 1795, 1798, 1802, 1804, 1807, 1810, 1816, 1822,
|
||
1823, 1830, 1832, 1834, 1837, 1838, 1843, 1845, 1846, 1847,
|
||
1855, 1856, 1857, 1867, 1868, 1869, 1870, 1880, 1881, 1882,
|
||
1883, 1893, 1894, 1901, 1902, 1908, 1909, 1917, 1918, 1923,
|
||
1926, 1929, 1932, 1936, 1943, 1952, 1963, 1976, 1980, 1983,
|
||
1986, 1988, 1991, 1995, 2002, 2007, 2014, 2019, 2023, 2024,
|
||
2032, 2035, 2036, 2042, 2046, 2048, 2051, 2055, 2059, 2062,
|
||
2065, 2067, 2068, 2073, 2076, 2080, 2084, 2085, 2086, 2091,
|
||
2092, 2093, 2098, 2099, 2104, 2105, 2107, 2108, 2109, 2118,
|
||
2122, 2127, 2132, 2136, 2141, 2148, 2155, 2156, 2158, 2159,
|
||
2161, 2163, 2164, 2166, 2168, 2172, 2177, 2179, 2183, 2184,
|
||
2186, 2190, 2193, 2195, 2197, 2200, 2203, 2205, 2209, 2213,
|
||
2219, 2223, 2229, 2233, 2237, 2239, 2241, 2244, 2246, 2247,
|
||
2248, 2250, 2251, 2254, 2259, 2261, 2263, 2265, 2268, 2271,
|
||
2274, 2276, 2278, 2280, 2284, 2286, 2290, 2293, 2296, 2299,
|
||
2302, 2305, 2308, 2311, 2314, 2317, 2320, 2323, 2326, 2329,
|
||
2332, 2335, 2338, 2341, 2344, 2347, 2350, 2353, 2356, 2359,
|
||
2363, 2366, 2369, 2372, 2376, 2379, 2383, 2386, 2389, 2393
|
||
};
|
||
|
||
static const short yyrhs[] = { -1,
|
||
110, 0, 0, 111, 114, 0, 110, 114, 0, 0,
|
||
0, 129, 0, 128, 0, 122, 0, 120, 0, 26,
|
||
82, 165, 103, 104, 0, 115, 49, 110, 105, 0,
|
||
115, 49, 105, 0, 115, 112, 129, 113, 0, 115,
|
||
112, 128, 113, 0, 96, 0, 0, 44, 64, 117,
|
||
118, 65, 0, 119, 0, 118, 50, 119, 0, 198,
|
||
138, 0, 198, 139, 54, 209, 0, 198, 48, 209,
|
||
0, 287, 0, 38, 121, 104, 0, 3, 0, 121,
|
||
50, 3, 0, 0, 116, 199, 49, 123, 104, 0,
|
||
0, 116, 200, 49, 124, 104, 0, 0, 116, 199,
|
||
54, 125, 104, 0, 0, 116, 200, 54, 126, 104,
|
||
0, 116, 199, 104, 0, 116, 200, 104, 0, 116,
|
||
228, 293, 180, 187, 127, 0, 116, 171, 170, 293,
|
||
180, 187, 127, 0, 116, 173, 170, 127, 0, 116,
|
||
1, 105, 0, 116, 1, 104, 0, 49, 0, 54,
|
||
0, 104, 0, 52, 0, 24, 0, 179, 104, 0,
|
||
173, 179, 104, 0, 173, 170, 104, 0, 171, 178,
|
||
104, 0, 171, 170, 104, 0, 173, 104, 0, 171,
|
||
104, 0, 1, 104, 0, 1, 105, 0, 104, 0,
|
||
130, 134, 241, 0, 130, 133, 134, 241, 0, 130,
|
||
166, 241, 0, 130, 133, 104, 166, 241, 0, 130,
|
||
133, 166, 241, 0, 171, 170, 1, 0, 173, 228,
|
||
1, 0, 228, 1, 0, 171, 170, 293, 0, 173,
|
||
228, 293, 0, 228, 293, 0, 4, 82, 285, 103,
|
||
223, 293, 0, 231, 82, 285, 103, 223, 293, 0,
|
||
4, 43, 223, 293, 0, 231, 43, 223, 293, 0,
|
||
95, 0, 171, 82, 285, 103, 223, 293, 0, 171,
|
||
43, 223, 293, 0, 171, 170, 293, 0, 173, 82,
|
||
285, 103, 223, 293, 0, 173, 43, 223, 293, 0,
|
||
173, 170, 293, 0, 228, 293, 0, 24, 3, 0,
|
||
132, 0, 132, 52, 191, 0, 132, 82, 154, 103,
|
||
0, 132, 43, 0, 54, 135, 136, 0, 0, 0,
|
||
137, 0, 136, 50, 137, 0, 136, 1, 0, 82,
|
||
154, 103, 0, 43, 0, 138, 82, 154, 103, 0,
|
||
138, 43, 0, 143, 82, 154, 103, 0, 143, 43,
|
||
0, 229, 138, 82, 154, 103, 0, 229, 138, 43,
|
||
0, 3, 0, 4, 0, 94, 0, 100, 0, 99,
|
||
0, 101, 0, 3, 0, 4, 0, 94, 0, 106,
|
||
138, 0, 298, 0, 141, 3, 0, 141, 4, 0,
|
||
141, 298, 0, 141, 229, 3, 0, 141, 229, 298,
|
||
0, 43, 0, 106, 43, 0, 43, 53, 0, 143,
|
||
144, 150, 0, 94, 64, 146, 65, 0, 49, 0,
|
||
54, 0, 0, 0, 147, 0, 146, 50, 147, 0,
|
||
220, 0, 158, 0, 0, 98, 206, 149, 211, 212,
|
||
105, 0, 0, 148, 0, 0, 148, 151, 0, 69,
|
||
0, 68, 0, 74, 0, 75, 0, 107, 0, 154,
|
||
0, 158, 0, 158, 0, 154, 50, 158, 0, 154,
|
||
50, 1, 0, 159, 0, 0, 32, 156, 157, 0,
|
||
70, 157, 0, 60, 157, 0, 106, 157, 0, 152,
|
||
157, 0, 12, 155, 0, 12, 82, 220, 103, 0,
|
||
28, 155, 0, 28, 82, 220, 103, 0, 163, 162,
|
||
220, 0, 163, 162, 176, 82, 154, 103, 0, 163,
|
||
162, 176, 43, 0, 163, 162, 220, 52, 191, 0,
|
||
163, 162, 82, 174, 221, 103, 83, 224, 108, 0,
|
||
163, 162, 82, 222, 221, 103, 83, 224, 108, 0,
|
||
163, 162, 82, 174, 221, 103, 0, 163, 162, 82,
|
||
222, 221, 103, 0, 163, 162, 48, 0, 164, 157,
|
||
0, 164, 83, 108, 157, 0, 164, 83, 153, 108,
|
||
157, 0, 155, 0, 82, 220, 103, 158, 0, 82,
|
||
220, 103, 49, 192, 196, 105, 0, 29, 82, 153,
|
||
103, 0, 30, 82, 153, 103, 0, 30, 82, 4,
|
||
103, 0, 157, 0, 158, 68, 158, 0, 158, 69,
|
||
158, 0, 158, 70, 158, 0, 158, 71, 158, 0,
|
||
158, 72, 158, 0, 158, 66, 158, 0, 158, 67,
|
||
158, 0, 158, 63, 158, 0, 158, 64, 158, 0,
|
||
158, 65, 158, 0, 158, 62, 158, 0, 158, 61,
|
||
158, 0, 158, 60, 158, 0, 158, 58, 158, 0,
|
||
158, 59, 158, 0, 158, 57, 158, 0, 158, 56,
|
||
158, 0, 158, 53, 280, 54, 158, 0, 158, 52,
|
||
158, 0, 158, 51, 158, 0, 159, 81, 158, 0,
|
||
168, 158, 0, 3, 0, 298, 0, 9, 0, 165,
|
||
0, 82, 153, 103, 0, 82, 1, 103, 0, 0,
|
||
82, 160, 242, 103, 0, 0, 159, 82, 154, 103,
|
||
161, 151, 0, 159, 43, 0, 159, 83, 153, 108,
|
||
0, 167, 140, 0, 167, 229, 140, 0, 159, 74,
|
||
0, 159, 75, 0, 39, 0, 8, 82, 154, 103,
|
||
0, 176, 82, 154, 103, 0, 176, 43, 0, 45,
|
||
3, 0, 45, 298, 0, 229, 140, 0, 229, 140,
|
||
82, 154, 103, 0, 229, 140, 43, 0, 167, 140,
|
||
82, 154, 103, 0, 167, 140, 43, 0, 167, 229,
|
||
140, 82, 154, 103, 0, 167, 229, 140, 43, 0,
|
||
37, 0, 37, 49, 154, 105, 0, 37, 41, 0,
|
||
37, 41, 82, 165, 103, 0, 0, 45, 0, 36,
|
||
0, 45, 164, 0, 10, 0, 165, 10, 0, 0,
|
||
159, 80, 0, 159, 78, 0, 159, 79, 0, 171,
|
||
178, 104, 0, 171, 170, 104, 0, 173, 179, 104,
|
||
0, 173, 170, 104, 0, 171, 104, 0, 173, 104,
|
||
0, 226, 0, 228, 0, 46, 226, 0, 46, 228,
|
||
0, 176, 0, 173, 176, 0, 176, 172, 0, 173,
|
||
176, 172, 0, 177, 0, 6, 0, 172, 177, 0,
|
||
172, 6, 0, 8, 0, 6, 0, 173, 8, 0,
|
||
173, 6, 0, 176, 0, 222, 176, 0, 176, 175,
|
||
0, 222, 176, 175, 0, 177, 0, 175, 177, 0,
|
||
193, 0, 7, 0, 4, 0, 231, 0, 27, 82,
|
||
153, 103, 0, 27, 82, 220, 103, 0, 142, 0,
|
||
7, 0, 8, 0, 193, 0, 181, 0, 178, 50,
|
||
183, 0, 185, 0, 179, 50, 183, 0, 0, 26,
|
||
82, 165, 103, 0, 0, 170, 293, 180, 187, 52,
|
||
182, 191, 0, 170, 293, 180, 187, 0, 0, 170,
|
||
293, 180, 187, 52, 184, 191, 0, 170, 293, 180,
|
||
187, 0, 0, 228, 293, 180, 187, 52, 186, 191,
|
||
0, 228, 293, 180, 187, 0, 0, 31, 82, 82,
|
||
188, 103, 103, 0, 189, 0, 188, 50, 189, 0,
|
||
3, 0, 3, 82, 9, 103, 0, 3, 82, 3,
|
||
50, 9, 50, 9, 103, 0, 138, 0, 190, 50,
|
||
138, 0, 158, 0, 49, 105, 0, 49, 192, 105,
|
||
0, 49, 192, 50, 105, 0, 1, 0, 191, 0,
|
||
192, 50, 191, 0, 83, 158, 108, 191, 0, 192,
|
||
50, 20, 158, 54, 191, 0, 138, 54, 191, 0,
|
||
192, 50, 138, 54, 191, 0, 0, 13, 138, 49,
|
||
194, 218, 197, 105, 0, 13, 138, 49, 105, 0,
|
||
0, 13, 49, 195, 218, 197, 105, 0, 13, 49,
|
||
105, 0, 13, 138, 0, 205, 211, 212, 105, 0,
|
||
205, 0, 0, 50, 0, 0, 50, 0, 34, 0,
|
||
41, 34, 0, 41, 82, 165, 103, 34, 0, 198,
|
||
6, 0, 198, 7, 0, 198, 8, 0, 198, 34,
|
||
0, 198, 138, 0, 198, 143, 0, 198, 48, 0,
|
||
198, 143, 49, 0, 198, 143, 54, 0, 198, 139,
|
||
0, 0, 199, 202, 206, 0, 0, 200, 203, 206,
|
||
0, 198, 49, 0, 204, 0, 201, 0, 0, 54,
|
||
0, 54, 207, 0, 208, 0, 207, 50, 208, 0,
|
||
209, 0, 210, 209, 0, 143, 145, 150, 0, 138,
|
||
0, 35, 0, 6, 0, 210, 35, 0, 210, 6,
|
||
0, 49, 0, 0, 213, 0, 212, 35, 54, 213,
|
||
0, 212, 35, 54, 0, 214, 0, 213, 214, 0,
|
||
213, 104, 0, 171, 215, 104, 0, 171, 82, 285,
|
||
103, 104, 0, 171, 82, 285, 103, 105, 0, 171,
|
||
43, 104, 0, 171, 43, 105, 0, 173, 215, 104,
|
||
0, 173, 170, 104, 0, 173, 215, 105, 0, 173,
|
||
82, 285, 103, 104, 0, 173, 82, 285, 103, 105,
|
||
0, 173, 43, 104, 0, 173, 43, 105, 0, 54,
|
||
158, 104, 0, 54, 158, 105, 0, 1, 0, 131,
|
||
54, 0, 131, 49, 0, 228, 293, 104, 0, 228,
|
||
293, 105, 0, 0, 216, 0, 215, 50, 217, 0,
|
||
170, 293, 180, 187, 0, 170, 293, 180, 187, 52,
|
||
191, 0, 3, 54, 158, 187, 0, 48, 158, 187,
|
||
0, 54, 158, 0, 170, 293, 180, 187, 0, 170,
|
||
293, 180, 187, 52, 191, 0, 3, 54, 158, 187,
|
||
0, 48, 158, 187, 0, 54, 158, 0, 219, 0,
|
||
218, 50, 219, 0, 138, 0, 138, 52, 158, 0,
|
||
174, 221, 0, 222, 221, 0, 0, 232, 0, 46,
|
||
232, 0, 8, 0, 222, 8, 0, 0, 223, 8,
|
||
0, 0, 225, 153, 0, 226, 82, 154, 103, 223,
|
||
0, 226, 82, 285, 103, 223, 0, 226, 43, 223,
|
||
0, 226, 82, 1, 103, 223, 0, 226, 83, 224,
|
||
108, 0, 226, 83, 108, 0, 82, 227, 103, 0,
|
||
82, 70, 223, 226, 103, 0, 77, 0, 234, 0,
|
||
82, 60, 223, 226, 103, 0, 70, 223, 226, 0,
|
||
60, 223, 226, 0, 4, 0, 227, 82, 154, 103,
|
||
223, 0, 227, 82, 285, 103, 223, 0, 227, 43,
|
||
223, 0, 227, 82, 1, 103, 223, 0, 227, 83,
|
||
224, 108, 0, 227, 83, 108, 0, 82, 227, 103,
|
||
0, 77, 0, 234, 0, 70, 223, 226, 0, 60,
|
||
223, 226, 0, 228, 82, 154, 103, 223, 0, 228,
|
||
82, 285, 103, 223, 0, 228, 43, 223, 0, 228,
|
||
82, 1, 103, 223, 0, 82, 228, 103, 0, 70,
|
||
223, 228, 0, 60, 223, 228, 0, 228, 83, 224,
|
||
108, 0, 228, 83, 108, 0, 3, 0, 298, 0,
|
||
106, 4, 0, 106, 3, 0, 106, 94, 0, 43,
|
||
138, 0, 43, 53, 138, 0, 106, 43, 138, 0,
|
||
229, 289, 228, 0, 229, 289, 4, 0, 229, 289,
|
||
4, 82, 154, 103, 223, 0, 229, 289, 4, 82,
|
||
285, 103, 223, 0, 229, 289, 4, 43, 223, 0,
|
||
229, 289, 4, 82, 1, 103, 223, 0, 229, 289,
|
||
94, 0, 229, 289, 94, 82, 154, 103, 223, 0,
|
||
229, 289, 94, 82, 285, 103, 223, 0, 229, 289,
|
||
94, 43, 223, 0, 229, 289, 94, 82, 1, 103,
|
||
223, 0, 45, 289, 228, 0, 230, 0, 142, 45,
|
||
291, 0, 4, 45, 0, 5, 0, 82, 232, 103,
|
||
0, 70, 223, 232, 0, 70, 223, 0, 77, 0,
|
||
82, 233, 103, 0, 60, 223, 232, 0, 60, 223,
|
||
0, 232, 82, 285, 103, 223, 0, 232, 43, 223,
|
||
0, 232, 83, 224, 108, 0, 232, 83, 108, 0,
|
||
82, 285, 103, 223, 0, 43, 223, 0, 83, 224,
|
||
108, 0, 83, 108, 0, 229, 70, 223, 0, 229,
|
||
70, 223, 232, 0, 229, 60, 223, 0, 229, 60,
|
||
223, 232, 0, 229, 289, 70, 223, 226, 0, 229,
|
||
289, 60, 223, 226, 0, 245, 0, 236, 0, 235,
|
||
245, 0, 235, 236, 0, 1, 104, 0, 0, 0,
|
||
239, 0, 240, 0, 239, 240, 0, 33, 190, 104,
|
||
0, 242, 0, 1, 242, 0, 49, 105, 0, 49,
|
||
237, 238, 235, 105, 0, 49, 237, 238, 1, 105,
|
||
0, 0, 14, 82, 153, 103, 244, 245, 0, 242,
|
||
0, 169, 0, 153, 104, 0, 0, 243, 15, 246,
|
||
245, 0, 243, 0, 0, 0, 16, 247, 82, 153,
|
||
103, 248, 245, 0, 0, 0, 17, 249, 245, 16,
|
||
250, 82, 153, 103, 104, 0, 0, 0, 0, 277,
|
||
251, 280, 104, 252, 280, 103, 253, 245, 0, 0,
|
||
0, 0, 278, 254, 280, 104, 255, 280, 103, 256,
|
||
245, 0, 0, 19, 82, 153, 103, 257, 245, 0,
|
||
0, 20, 153, 54, 258, 245, 0, 0, 20, 153,
|
||
55, 153, 54, 259, 245, 0, 0, 21, 54, 260,
|
||
245, 0, 22, 104, 0, 23, 104, 0, 24, 104,
|
||
0, 24, 153, 104, 0, 26, 279, 82, 165, 103,
|
||
104, 0, 26, 279, 82, 165, 54, 281, 103, 104,
|
||
0, 26, 279, 82, 165, 54, 281, 54, 281, 103,
|
||
104, 0, 26, 279, 82, 165, 54, 281, 54, 281,
|
||
54, 284, 103, 104, 0, 25, 138, 104, 0, 264,
|
||
245, 0, 264, 105, 0, 104, 0, 92, 104, 0,
|
||
92, 153, 104, 0, 90, 294, 82, 154, 103, 104,
|
||
0, 90, 294, 43, 104, 0, 84, 294, 82, 154,
|
||
103, 104, 0, 84, 294, 43, 104, 0, 84, 138,
|
||
104, 0, 0, 263, 88, 138, 49, 261, 271, 105,
|
||
0, 263, 1, 0, 0, 267, 268, 268, 262, 275,
|
||
0, 263, 86, 296, 0, 263, 0, 265, 105, 0,
|
||
265, 235, 105, 0, 265, 1, 105, 0, 3, 54,
|
||
0, 94, 54, 0, 48, 0, 0, 87, 49, 266,
|
||
237, 0, 269, 105, 0, 269, 235, 105, 0, 269,
|
||
1, 105, 0, 0, 0, 91, 49, 270, 237, 0,
|
||
0, 0, 271, 294, 272, 242, 0, 0, 271, 21,
|
||
273, 242, 0, 0, 138, 0, 0, 0, 275, 89,
|
||
82, 220, 274, 103, 276, 242, 0, 18, 82, 104,
|
||
0, 18, 82, 153, 104, 0, 18, 82, 49, 105,
|
||
0, 18, 82, 169, 0, 18, 82, 1, 104, 0,
|
||
18, 82, 49, 237, 235, 105, 0, 18, 82, 49,
|
||
237, 1, 105, 0, 0, 8, 0, 0, 153, 0,
|
||
1, 0, 0, 282, 0, 283, 0, 282, 50, 283,
|
||
0, 10, 82, 153, 103, 0, 10, 0, 284, 50,
|
||
10, 0, 0, 286, 0, 286, 50, 11, 0, 286,
|
||
11, 0, 11, 0, 93, 0, 286, 93, 0, 286,
|
||
54, 0, 287, 0, 287, 52, 191, 0, 286, 50,
|
||
287, 0, 286, 50, 287, 52, 191, 0, 286, 50,
|
||
292, 0, 286, 50, 292, 52, 191, 0, 171, 290,
|
||
288, 0, 173, 290, 288, 0, 221, 0, 228, 0,
|
||
46, 228, 0, 223, 0, 0, 0, 288, 0, 0,
|
||
85, 296, 0, 92, 82, 297, 103, 0, 97, 0,
|
||
3, 0, 4, 0, 45, 3, 0, 45, 4, 0,
|
||
229, 3, 0, 231, 0, 220, 0, 294, 0, 296,
|
||
50, 294, 0, 295, 0, 297, 50, 295, 0, 40,
|
||
70, 0, 40, 71, 0, 40, 72, 0, 40, 68,
|
||
0, 40, 69, 0, 40, 60, 0, 40, 58, 0,
|
||
40, 59, 0, 40, 106, 0, 40, 50, 0, 40,
|
||
63, 0, 40, 64, 0, 40, 65, 0, 40, 62,
|
||
0, 40, 51, 0, 40, 52, 0, 40, 66, 0,
|
||
40, 67, 0, 40, 74, 0, 40, 75, 0, 40,
|
||
57, 0, 40, 56, 0, 40, 107, 0, 40, 53,
|
||
54, 0, 40, 61, 0, 40, 78, 0, 40, 79,
|
||
0, 40, 42, 223, 0, 40, 43, 0, 40, 83,
|
||
108, 0, 40, 37, 0, 40, 36, 0, 40, 174,
|
||
221, 0, 40, 1, 0
|
||
};
|
||
|
||
#if YYDEBUG != 0
|
||
static const short yyrline[] = { 0,
|
||
300, 301, 309, 311, 312, 316, 320, 324, 327, 329,
|
||
331, 332, 337, 339, 341, 344, 349, 354, 357, 361,
|
||
364, 368, 381, 388, 395, 398, 401, 403, 407, 413,
|
||
413, 416, 416, 419, 419, 432, 432, 437, 442, 465,
|
||
487, 496, 497, 500, 501, 502, 503, 504, 507, 513,
|
||
516, 521, 527, 534, 536, 554, 555, 556, 559, 573,
|
||
586, 589, 592, 595, 597, 599, 603, 609, 614, 619,
|
||
624, 629, 634, 639, 645, 655, 664, 671, 680, 689,
|
||
696, 705, 713, 715, 717, 719, 723, 732, 755, 758,
|
||
760, 761, 764, 771, 778, 782, 784, 786, 788, 792,
|
||
798, 800, 801, 804, 806, 807, 810, 812, 813, 817,
|
||
818, 819, 821, 823, 825, 827, 831, 833, 835, 839,
|
||
849, 854, 858, 859, 863, 868, 871, 875, 878, 881,
|
||
914, 929, 932, 936, 939, 943, 945, 947, 949, 951,
|
||
955, 958, 961, 964, 966, 970, 977, 980, 983, 985,
|
||
987, 989, 994, 1007, 1009, 1042, 1045, 1047, 1049, 1051,
|
||
1057, 1074, 1077, 1081, 1084, 1088, 1104, 1115, 1131, 1133,
|
||
1136, 1151, 1153, 1155, 1166, 1168, 1170, 1172, 1174, 1176,
|
||
1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196,
|
||
1198, 1200, 1202, 1204, 1206, 1212, 1215, 1230, 1233, 1248,
|
||
1249, 1251, 1253, 1255, 1263, 1275, 1281, 1288, 1295, 1345,
|
||
1347, 1363, 1365, 1369, 1392, 1430, 1432, 1434, 1463, 1470,
|
||
1472, 1474, 1476, 1479, 1482, 1484, 1526, 1528, 1530, 1532,
|
||
1536, 1539, 1543, 1545, 1553, 1555, 1559, 1568, 1583, 1589,
|
||
1592, 1599, 1607, 1610, 1617, 1622, 1629, 1631, 1632, 1634,
|
||
1642, 1645, 1647, 1649, 1653, 1657, 1659, 1661, 1669, 1672,
|
||
1674, 1676, 1687, 1690, 1692, 1694, 1698, 1701, 1709, 1710,
|
||
1711, 1712, 1713, 1717, 1721, 1726, 1727, 1728, 1731, 1733,
|
||
1736, 1738, 1741, 1744, 1752, 1760, 1762, 1771, 1777, 1778,
|
||
1784, 1792, 1794, 1805, 1808, 1813, 1815, 1820, 1825, 1836,
|
||
1851, 1854, 1858, 1860, 1865, 1868, 1871, 1877, 1880, 1883,
|
||
1885, 1887, 1889, 1893, 1897, 1901, 1904, 1907, 1911, 1914,
|
||
1918, 1944, 1959, 1961, 1964, 1966, 1970, 1971, 1973, 1975,
|
||
1978, 1981, 1984, 1989, 1992, 1994, 1996, 2001, 2005, 2010,
|
||
2015, 2022, 2027, 2036, 2041, 2041, 2043, 2046, 2048, 2052,
|
||
2054, 2058, 2063, 2069, 2071, 2074, 2083, 2087, 2113, 2122,
|
||
2148, 2151, 2153, 2155, 2158, 2161, 2164, 2169, 2218, 2220,
|
||
2224, 2226, 2230, 2233, 2235, 2239, 2241, 2245, 2247, 2251,
|
||
2253, 2257, 2262, 2264, 2266, 2268, 2274, 2277, 2278, 2289,
|
||
2294, 2298, 2302, 2306, 2311, 2315, 2318, 2321, 2324, 2332,
|
||
2334, 2338, 2341, 2345, 2348, 2352, 2355, 2356, 2360, 2363,
|
||
2367, 2370, 2378, 2380, 2384, 2387, 2389, 2391, 2393, 2395,
|
||
2397, 2399, 2401, 2403, 2404, 2406, 2408, 2410, 2413, 2416,
|
||
2418, 2420, 2422, 2424, 2426, 2428, 2430, 2431, 2433, 2440,
|
||
2443, 2445, 2447, 2449, 2451, 2453, 2455, 2457, 2459, 2463,
|
||
2466, 2472, 2474, 2476, 2481, 2487, 2490, 2499, 2501, 2503,
|
||
2505, 2507, 2510, 2512, 2514, 2516, 2518, 2520, 2524, 2532,
|
||
2549, 2552, 2567, 2572, 2574, 2576, 2578, 2580, 2582, 2584,
|
||
2586, 2588, 2590, 2592, 2594, 2596, 2598, 2602, 2610, 2617,
|
||
2624, 2633, 2641, 2654, 2656, 2657, 2658, 2661, 2668, 2680,
|
||
2682, 2687, 2689, 2692, 2706, 2709, 2712, 2714, 2720, 2728,
|
||
2734, 2737, 2740, 2745, 2758, 2762, 2765, 2769, 2773, 2777,
|
||
2781, 2786, 2789, 2795, 2800, 2803, 2809, 2816, 2820, 2823,
|
||
2830, 2846, 2854, 2858, 2908, 2908, 2991, 2991, 3007, 3007,
|
||
3011, 3015, 3018, 3023, 3030, 3039, 3048, 3057, 3063, 3065,
|
||
3069, 3073, 3074, 3075, 3078, 3081, 3084, 3087, 3090, 3103,
|
||
3132, 3142, 3156, 3184, 3216, 3228, 3236, 3241, 3248, 3256,
|
||
3258, 3265, 3267, 3267, 3275, 3280, 3287, 3288, 3290, 3290,
|
||
3293, 3314, 3330, 3349, 3366, 3369, 3371, 3374, 3393, 3411,
|
||
3414, 3416, 3420, 3423, 3425, 3427, 3433, 3438, 3444, 3447,
|
||
3448, 3454, 3456, 3459, 3461, 3465, 3470, 3473, 3482, 3489,
|
||
3494, 3499, 3503, 3507, 3511, 3515, 3529, 3532, 3534, 3536,
|
||
3538, 3540, 3548, 3564, 3569, 3570, 3571, 3575, 3579, 3583,
|
||
3595, 3603, 3606, 3608, 3612, 3615, 3617, 3619, 3621, 3623,
|
||
3625, 3628, 3633, 3635, 3642, 3644, 3651, 3654, 3656, 3658,
|
||
3660, 3662, 3664, 3666, 3668, 3670, 3672, 3674, 3676, 3678,
|
||
3680, 3682, 3691, 3693, 3695, 3697, 3699, 3701, 3703, 3705,
|
||
3707, 3709, 3721, 3733, 3764, 3776, 3788, 3801, 3817, 3821
|
||
};
|
||
|
||
static const char * const yytname[] = { "$","error","$illegal.","IDENTIFIER",
|
||
"TYPENAME","SCOPED_TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING",
|
||
"ELLIPSIS","SIZEOF","ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
|
||
"BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","HEADOF",
|
||
"CLASSOF","ATTRIBUTE","EXTENSION","LABEL","AGGR","VISSPEC","DELETE","NEW","OVERLOAD",
|
||
"THIS","OPERATOR","DYNAMIC","POINTSAT_LEFT_RIGHT","LEFT_RIGHT","TEMPLATE","SCOPE",
|
||
"START_DECLARATOR","EMPTY","TYPENAME_COLON","'{'","','","ASSIGN","'='","'?'",
|
||
"':'","RANGE","OROR","ANDAND","'|'","'^'","'&'","MIN_MAX","EQCOMPARE","ARITHCOMPARE",
|
||
"'<'","'>'","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'","'%'","UNARY","PLUSPLUS",
|
||
"MINUSMINUS","HYPERUNARY","PAREN_STAR_PAREN","POINTSAT","POINTSAT_STAR","'.'",
|
||
"DOT_STAR","'('","'['","RAISE","RAISES","RERAISE","TRY","EXCEPT","CATCH","THROW",
|
||
"ANSI_TRY","ANSI_THROW","TYPENAME_ELLIPSIS","PTYPENAME","PRE_PARSED_FUNCTION_DECL",
|
||
"EXTERN_LANG_STRING","ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN",
|
||
"PTYPENAME_DEFN","END_OF_SAVED_INPUT","')'","';'","'}'","'~'","'!'","']'","program",
|
||
"extdefs","@1",".hush_warning",".warning_ok","extdef","extern_lang_string","template_header",
|
||
"@2","template_parm_list","template_parm","overloaddef","ov_identifiers","template_def",
|
||
"@3","@4","@5","@6","fn_tmpl_end","datadef","fndef","fn.def1","fn.def2","return_id",
|
||
"return_init","base_init",".set_base_init","member_init_list","member_init",
|
||
"identifier","identifier_defn","identifier_or_opname","wrapper","template_type",
|
||
"template_type_name","tmpl.1","tmpl.2","template_arg_list","template_arg","template_instantiate_once",
|
||
"@7","template_instantiation","template_instantiate_some","unop","expr","nonnull_exprlist",
|
||
"unary_expr","@8","cast_expr","expr_no_commas","primary","@9","@10","new",".scope",
|
||
"delete","string","nodecls","object","object_star","decl","declarator","typed_declspecs",
|
||
"reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec",
|
||
"typespecqual_reserved","initdecls","notype_initdecls","maybeasm","initdcl0",
|
||
"@11","initdcl","@12","notype_initdcl0","@13","maybe_attribute","attribute_list",
|
||
"attrib","identifiers_or_typenames","init","initlist","structsp","@14","@15",
|
||
"maybecomma","maybecomma_warn","aggr","named_class_head_sans_basetype","named_class_head_sans_basetype_defn",
|
||
"named_class_head","@16","@17","unnamed_class_head","class_head","maybe_base_class_list",
|
||
"base_class_list","base_class","base_class.1","base_class_visibility_list","left_curly",
|
||
"opt.component_decl_list","component_decl_list","component_decl","components",
|
||
"component_declarator0","component_declarator","enumlist","enumerator","typename",
|
||
"absdcl","nonempty_type_quals","type_quals","nonmomentary_expr","@18","after_type_declarator",
|
||
"after_type_declarator_no_typename","notype_declarator","scoped_id","typename_scope",
|
||
"scoped_typename","absdcl1","abs_member_declarator","after_type_member_declarator",
|
||
"stmts","errstmt",".pushlevel","maybe_label_decls","label_decls","label_decl",
|
||
"compstmt_or_error","compstmt","simple_if","@19","stmt","@20","@21","@22","@23",
|
||
"@24","@25","@26","@27","@28","@29","@30","@31","@32","@33","@34","@35","@36",
|
||
"try","label_colon","try_head","@37","ansi_try","ansi_dummy","ansi_try_head",
|
||
"@38","except_stmts","@39","@40","optional_identifier","ansi_except_stmts","@41",
|
||
"forhead.1","forhead.2","maybe_type_qual","xexpr","asm_operands","nonnull_asm_operands",
|
||
"asm_operand","asm_clobbers","parmlist","parms","parm","abs_or_notype_decl",
|
||
"see_typename","dont_see_typename","try_for_typename","bad_parm","maybe_raises",
|
||
"raise_identifier","ansi_raise_identifier","raise_identifiers","ansi_raise_identifiers",
|
||
"operator_name",""
|
||
};
|
||
#endif
|
||
|
||
static const short yyr1[] = { 0,
|
||
109, 109, 111, 110, 110, 112, 113, 114, 114, 114,
|
||
114, 114, 114, 114, 114, 114, 115, 117, 116, 118,
|
||
118, 119, 119, 119, 119, 120, 121, 121, 123, 122,
|
||
124, 122, 125, 122, 126, 122, 122, 122, 122, 122,
|
||
122, 122, 122, 127, 127, 127, 127, 127, 128, 128,
|
||
128, 128, 128, 128, 128, 128, 128, 128, 129, 129,
|
||
129, 129, 129, 129, 129, 129, 130, 130, 130, 130,
|
||
130, 130, 130, 130, 131, 131, 131, 131, 131, 131,
|
||
131, 132, 133, 133, 133, 133, 134, 135, 136, 136,
|
||
136, 136, 137, 137, 137, 137, 137, 137, 137, 137,
|
||
138, 138, 138, 139, 139, 139, 140, 140, 140, 140,
|
||
140, 140, 140, 140, 140, 140, 141, 141, 141, 142,
|
||
143, 144, 144, 144, 145, 146, 146, 147, 147, 149,
|
||
148, 150, 150, 151, 151, 152, 152, 152, 152, 152,
|
||
153, 153, 154, 154, 154, 155, 156, 155, 155, 155,
|
||
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
|
||
155, 155, 155, 155, 155, 155, 155, 155, 157, 157,
|
||
157, 157, 157, 157, 158, 158, 158, 158, 158, 158,
|
||
158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
|
||
158, 158, 158, 158, 158, 158, 158, 159, 159, 159,
|
||
159, 159, 159, 160, 159, 161, 159, 159, 159, 159,
|
||
159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
|
||
159, 159, 159, 159, 159, 159, 162, 162, 162, 162,
|
||
163, 163, 164, 164, 165, 165, 166, 167, 167, 168,
|
||
169, 169, 169, 169, 169, 169, 170, 170, 170, 170,
|
||
171, 171, 171, 171, 172, 172, 172, 172, 173, 173,
|
||
173, 173, 174, 174, 174, 174, 175, 175, 176, 176,
|
||
176, 176, 176, 176, 176, 177, 177, 177, 178, 178,
|
||
179, 179, 180, 180, 182, 181, 181, 184, 183, 183,
|
||
186, 185, 185, 187, 187, 188, 188, 189, 189, 189,
|
||
190, 190, 191, 191, 191, 191, 191, 192, 192, 192,
|
||
192, 192, 192, 194, 193, 193, 195, 193, 193, 193,
|
||
193, 193, 196, 196, 197, 197, 198, 198, 198, 198,
|
||
198, 198, 198, 199, 199, 199, 199, 199, 200, 202,
|
||
201, 203, 201, 204, 205, 205, 206, 206, 206, 207,
|
||
207, 208, 208, 209, 209, 210, 210, 210, 210, 211,
|
||
212, 212, 212, 212, 213, 213, 213, 214, 214, 214,
|
||
214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
|
||
214, 214, 214, 214, 214, 214, 215, 215, 215, 216,
|
||
216, 216, 216, 216, 217, 217, 217, 217, 217, 218,
|
||
218, 219, 219, 220, 220, 221, 221, 221, 222, 222,
|
||
223, 223, 225, 224, 226, 226, 226, 226, 226, 226,
|
||
226, 226, 226, 226, 226, 226, 226, 226, 227, 227,
|
||
227, 227, 227, 227, 227, 227, 227, 227, 227, 228,
|
||
228, 228, 228, 228, 228, 228, 228, 228, 228, 228,
|
||
228, 228, 228, 228, 228, 228, 228, 228, 228, 228,
|
||
228, 228, 228, 228, 228, 228, 228, 228, 229, 229,
|
||
230, 231, 232, 232, 232, 232, 232, 232, 232, 232,
|
||
232, 232, 232, 232, 232, 232, 232, 233, 233, 233,
|
||
233, 234, 234, 235, 235, 235, 235, 236, 237, 238,
|
||
238, 239, 239, 240, 241, 241, 242, 242, 242, 244,
|
||
243, 245, 245, 245, 246, 245, 245, 247, 248, 245,
|
||
249, 250, 245, 251, 252, 253, 245, 254, 255, 256,
|
||
245, 257, 245, 258, 245, 259, 245, 260, 245, 245,
|
||
245, 245, 245, 245, 245, 245, 245, 245, 245, 245,
|
||
245, 245, 245, 245, 245, 245, 245, 245, 261, 245,
|
||
245, 262, 245, 245, 245, 263, 263, 263, 264, 264,
|
||
264, 266, 265, 267, 267, 267, 268, 270, 269, 271,
|
||
272, 271, 273, 271, 274, 274, 275, 276, 275, 277,
|
||
277, 277, 278, 278, 278, 278, 279, 279, 280, 280,
|
||
280, 281, 281, 282, 282, 283, 284, 284, 285, 285,
|
||
285, 285, 285, 285, 285, 285, 286, 286, 286, 286,
|
||
286, 286, 287, 287, 288, 288, 288, 289, 290, 291,
|
||
292, 293, 293, 293, 294, 294, 294, 294, 294, 294,
|
||
294, 295, 296, 296, 297, 297, 298, 298, 298, 298,
|
||
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
||
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
||
298, 298, 298, 298, 298, 298, 298, 298, 298, 298
|
||
};
|
||
|
||
static const short yyr2[] = { 0,
|
||
0, 1, 0, 2, 2, 0, 0, 1, 1, 1,
|
||
1, 5, 4, 3, 4, 4, 1, 0, 5, 1,
|
||
3, 2, 4, 3, 1, 3, 1, 3, 0, 5,
|
||
0, 5, 0, 5, 0, 5, 3, 3, 6, 7,
|
||
4, 3, 3, 1, 1, 1, 1, 1, 2, 3,
|
||
3, 3, 3, 2, 2, 2, 2, 1, 3, 4,
|
||
3, 5, 4, 3, 3, 2, 3, 3, 2, 6,
|
||
6, 4, 4, 1, 6, 4, 3, 6, 4, 3,
|
||
2, 2, 1, 3, 4, 2, 3, 0, 0, 1,
|
||
3, 2, 3, 1, 4, 2, 4, 2, 5, 3,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
|
||
1, 2, 2, 2, 3, 3, 1, 2, 2, 3,
|
||
4, 1, 1, 0, 0, 1, 3, 1, 1, 0,
|
||
6, 0, 1, 0, 2, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 3, 3, 1, 0, 3, 2, 2,
|
||
2, 2, 2, 4, 2, 4, 3, 6, 4, 5,
|
||
9, 9, 6, 6, 3, 2, 4, 5, 1, 4,
|
||
7, 4, 4, 4, 1, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 5, 3, 3, 3, 2, 1, 1, 1,
|
||
1, 3, 3, 0, 4, 0, 6, 2, 4, 2,
|
||
3, 2, 2, 1, 4, 4, 2, 2, 2, 2,
|
||
5, 3, 5, 3, 6, 4, 1, 4, 2, 5,
|
||
0, 1, 1, 2, 1, 2, 0, 2, 2, 2,
|
||
3, 3, 3, 3, 2, 2, 1, 1, 2, 2,
|
||
1, 2, 2, 3, 1, 1, 2, 2, 1, 1,
|
||
2, 2, 1, 2, 2, 3, 1, 2, 1, 1,
|
||
1, 1, 4, 4, 1, 1, 1, 1, 1, 3,
|
||
1, 3, 0, 4, 0, 7, 4, 0, 7, 4,
|
||
0, 7, 4, 0, 6, 1, 3, 1, 4, 8,
|
||
1, 3, 1, 2, 3, 4, 1, 1, 3, 4,
|
||
6, 3, 5, 0, 7, 4, 0, 6, 3, 2,
|
||
4, 1, 0, 1, 0, 1, 1, 2, 5, 2,
|
||
2, 2, 2, 2, 2, 2, 3, 3, 2, 0,
|
||
3, 0, 3, 2, 1, 1, 0, 1, 2, 1,
|
||
3, 1, 2, 3, 1, 1, 1, 2, 2, 1,
|
||
0, 1, 4, 3, 1, 2, 2, 3, 5, 5,
|
||
3, 3, 3, 3, 3, 5, 5, 3, 3, 3,
|
||
3, 1, 2, 2, 3, 3, 0, 1, 3, 4,
|
||
6, 4, 3, 2, 4, 6, 4, 3, 2, 1,
|
||
3, 1, 3, 2, 2, 0, 1, 2, 1, 2,
|
||
0, 2, 0, 2, 5, 5, 3, 5, 4, 3,
|
||
3, 5, 1, 1, 5, 3, 3, 1, 5, 5,
|
||
3, 5, 4, 3, 3, 1, 1, 3, 3, 5,
|
||
5, 3, 5, 3, 3, 3, 4, 3, 1, 1,
|
||
2, 2, 2, 2, 3, 3, 3, 3, 7, 7,
|
||
5, 7, 3, 7, 7, 5, 7, 3, 1, 3,
|
||
2, 1, 3, 3, 2, 1, 3, 3, 2, 5,
|
||
3, 4, 3, 4, 2, 3, 2, 3, 4, 3,
|
||
4, 5, 5, 1, 1, 2, 2, 2, 0, 0,
|
||
1, 1, 2, 3, 1, 2, 2, 5, 5, 0,
|
||
6, 1, 1, 2, 0, 4, 1, 0, 0, 7,
|
||
0, 0, 9, 0, 0, 0, 9, 0, 0, 0,
|
||
9, 0, 6, 0, 5, 0, 7, 0, 4, 2,
|
||
2, 2, 3, 6, 8, 10, 12, 3, 2, 2,
|
||
1, 2, 3, 6, 4, 6, 4, 3, 0, 7,
|
||
2, 0, 5, 3, 1, 2, 3, 3, 2, 2,
|
||
1, 0, 4, 2, 3, 3, 0, 0, 4, 0,
|
||
0, 4, 0, 4, 0, 1, 0, 0, 8, 3,
|
||
4, 4, 3, 4, 6, 6, 0, 1, 0, 1,
|
||
1, 0, 1, 1, 3, 4, 1, 3, 0, 1,
|
||
3, 2, 1, 1, 2, 2, 1, 3, 3, 5,
|
||
3, 5, 3, 3, 1, 1, 2, 1, 0, 0,
|
||
1, 0, 2, 4, 1, 1, 1, 2, 2, 2,
|
||
1, 1, 1, 3, 1, 3, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 3,
|
||
2, 2, 2, 3, 2, 3, 2, 2, 3, 2
|
||
};
|
||
|
||
static const short yydefact[] = { 3,
|
||
0, 0, 0, 449, 271, 472, 260, 270, 259, 0,
|
||
0, 0, 327, 0, 0, 0, 0, 0, 411, 411,
|
||
411, 0, 0, 74, 17, 58, 0, 5, 6, 0,
|
||
11, 10, 9, 8, 237, 275, 124, 0, 0, 251,
|
||
0, 281, 269, 0, 340, 342, 346, 345, 322, 0,
|
||
411, 469, 272, 450, 4, 56, 57, 411, 471, 609,
|
||
101, 102, 317, 103, 320, 0, 231, 27, 0, 680,
|
||
271, 409, 678, 677, 411, 675, 656, 661, 662, 0,
|
||
668, 667, 653, 654, 652, 671, 660, 657, 658, 659,
|
||
663, 664, 650, 651, 647, 648, 649, 665, 666, 672,
|
||
673, 0, 655, 669, 275, 406, 263, 0, 272, 328,
|
||
0, 0, 454, 18, 628, 0, 0, 0, 0, 0,
|
||
0, 231, 452, 451, 0, 453, 3, 0, 0, 271,
|
||
0, 0, 340, 342, 632, 0, 88, 83, 237, 0,
|
||
0, 630, 122, 123, 132, 428, 0, 411, 411, 423,
|
||
0, 55, 0, 0, 279, 247, 248, 411, 424, 271,
|
||
262, 261, 54, 0, 252, 0, 0, 256, 276, 277,
|
||
253, 255, 278, 0, 49, 330, 331, 332, 333, 336,
|
||
344, 103, 105, 104, 106, 334, 339, 335, 347, 347,
|
||
360, 0, 66, 411, 0, 413, 0, 0, 69, 0,
|
||
411, 609, 632, 613, 614, 629, 629, 0, 610, 617,
|
||
319, 0, 314, 235, 0, 198, 409, 200, 231, 231,
|
||
0, 0, 147, 233, 214, 232, 231, 137, 136, 231,
|
||
138, 139, 0, 231, 140, 231, 0, 141, 169, 175,
|
||
142, 146, 0, 231, 201, 0, 231, 406, 263, 0,
|
||
406, 0, 199, 0, 26, 674, 670, 676, 411, 0,
|
||
411, 411, 476, 609, 413, 679, 407, 265, 267, 410,
|
||
264, 0, 455, 0, 412, 468, 446, 445, 444, 0,
|
||
126, 129, 128, 456, 14, 0, 7, 7, 43, 42,
|
||
632, 0, 29, 33, 37, 31, 35, 38, 283, 82,
|
||
89, 86, 0, 231, 237, 0, 0, 0, 499, 59,
|
||
505, 61, 470, 347, 133, 120, 249, 250, 0, 0,
|
||
411, 411, 436, 0, 0, 437, 64, 53, 67, 0,
|
||
52, 411, 0, 413, 0, 51, 254, 50, 65, 68,
|
||
258, 257, 632, 282, 337, 338, 348, 341, 343, 382,
|
||
231, 0, 387, 387, 0, 0, 365, 632, 442, 0,
|
||
259, 0, 143, 251, 0, 448, 0, 231, 636, 637,
|
||
0, 635, 0, 641, 643, 633, 0, 0, 294, 458,
|
||
463, 457, 632, 0, 72, 406, 406, 411, 612, 406,
|
||
616, 615, 0, 402, 325, 400, 316, 0, 236, 0,
|
||
231, 0, 0, 153, 146, 0, 0, 155, 231, 231,
|
||
231, 218, 0, 234, 219, 150, 149, 0, 0, 0,
|
||
0, 151, 152, 273, 0, 231, 231, 0, 231, 231,
|
||
231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
|
||
231, 231, 231, 231, 231, 208, 212, 213, 239, 240,
|
||
238, 231, 231, 231, 227, 0, 231, 166, 107, 108,
|
||
117, 109, 0, 210, 0, 0, 111, 197, 404, 217,
|
||
231, 274, 405, 108, 109, 220, 28, 485, 408, 479,
|
||
475, 0, 0, 0, 0, 487, 0, 411, 609, 413,
|
||
268, 266, 0, 0, 20, 0, 25, 231, 121, 13,
|
||
16, 15, 283, 48, 44, 47, 45, 46, 41, 0,
|
||
0, 0, 0, 294, 102, 94, 231, 0, 90, 0,
|
||
124, 0, 307, 0, 303, 84, 0, 0, 60, 63,
|
||
506, 507, 500, 130, 427, 426, 0, 0, 411, 411,
|
||
0, 411, 0, 413, 421, 294, 280, 417, 0, 0,
|
||
0, 420, 0, 411, 411, 283, 357, 356, 355, 125,
|
||
349, 350, 352, 0, 0, 384, 383, 449, 411, 231,
|
||
231, 609, 632, 0, 388, 411, 609, 632, 0, 0,
|
||
321, 367, 366, 81, 411, 411, 411, 447, 414, 638,
|
||
639, 640, 0, 642, 645, 0, 0, 0, 293, 411,
|
||
0, 411, 0, 73, 411, 411, 0, 411, 411, 609,
|
||
625, 626, 623, 624, 632, 611, 619, 631, 621, 618,
|
||
231, 326, 0, 325, 12, 0, 0, 0, 0, 271,
|
||
0, 148, 203, 202, 0, 231, 145, 144, 195, 194,
|
||
601, 600, 0, 192, 191, 189, 190, 188, 187, 186,
|
||
183, 184, 185, 181, 182, 176, 177, 178, 179, 180,
|
||
196, 0, 0, 229, 231, 165, 0, 263, 157, 231,
|
||
0, 119, 118, 110, 224, 231, 112, 113, 0, 114,
|
||
211, 0, 222, 231, 478, 474, 411, 411, 473, 477,
|
||
411, 486, 481, 0, 483, 0, 329, 0, 19, 336,
|
||
334, 339, 127, 294, 30, 34, 32, 36, 0, 0,
|
||
92, 0, 96, 231, 98, 231, 0, 198, 271, 231,
|
||
304, 0, 308, 0, 85, 62, 0, 0, 501, 502,
|
||
0, 0, 0, 0, 0, 435, 431, 0, 0, 0,
|
||
434, 0, 287, 411, 411, 411, 419, 0, 0, 294,
|
||
132, 0, 359, 358, 353, 380, 381, 231, 371, 372,
|
||
632, 294, 394, 0, 283, 0, 368, 378, 379, 632,
|
||
0, 374, 283, 373, 375, 0, 385, 386, 443, 440,
|
||
441, 644, 0, 634, 0, 0, 291, 461, 0, 0,
|
||
0, 466, 0, 0, 0, 632, 627, 479, 475, 411,
|
||
70, 0, 0, 403, 401, 318, 0, 215, 154, 156,
|
||
172, 174, 173, 205, 0, 170, 231, 206, 209, 0,
|
||
0, 406, 406, 159, 231, 0, 167, 231, 0, 115,
|
||
116, 226, 231, 216, 0, 490, 488, 484, 411, 482,
|
||
21, 24, 0, 0, 39, 93, 91, 0, 0, 100,
|
||
231, 0, 0, 0, 305, 301, 0, 0, 198, 0,
|
||
518, 521, 0, 0, 231, 0, 0, 0, 231, 0,
|
||
597, 571, 0, 0, 0, 0, 231, 0, 551, 0,
|
||
513, 0, 0, 0, 495, 512, 517, 494, 0, 231,
|
||
0, 577, 0, 524, 528, 503, 0, 425, 422, 439,
|
||
438, 411, 411, 411, 433, 285, 418, 415, 416, 493,
|
||
492, 290, 354, 351, 294, 76, 393, 411, 294, 449,
|
||
231, 231, 632, 389, 79, 411, 0, 646, 284, 0,
|
||
0, 411, 411, 411, 411, 411, 411, 71, 620, 622,
|
||
315, 323, 193, 134, 0, 228, 0, 0, 0, 160,
|
||
168, 223, 0, 221, 491, 489, 480, 23, 40, 95,
|
||
97, 0, 0, 312, 231, 306, 0, 309, 0, 504,
|
||
498, 509, 569, 231, 0, 231, 0, 231, 0, 538,
|
||
540, 541, 542, 0, 0, 598, 0, 636, 637, 0,
|
||
0, 572, 0, 578, 552, 0, 570, 514, 245, 632,
|
||
0, 246, 0, 0, 632, 0, 508, 497, 496, 515,
|
||
561, 0, 0, 550, 549, 0, 566, 0, 577, 0,
|
||
574, 0, 0, 0, 0, 432, 429, 430, 0, 288,
|
||
392, 369, 370, 632, 390, 231, 294, 399, 283, 376,
|
||
377, 632, 298, 0, 296, 292, 462, 459, 460, 467,
|
||
464, 465, 0, 0, 134, 207, 230, 163, 164, 158,
|
||
225, 99, 310, 0, 0, 302, 0, 231, 0, 0,
|
||
499, 590, 0, 593, 0, 534, 231, 231, 543, 548,
|
||
0, 558, 0, 231, 499, 0, 231, 499, 553, 242,
|
||
283, 241, 244, 243, 283, 231, 564, 0, 568, 567,
|
||
562, 576, 575, 0, 0, 131, 286, 0, 75, 0,
|
||
294, 398, 294, 78, 0, 0, 0, 171, 135, 413,
|
||
413, 0, 313, 510, 0, 522, 594, 592, 0, 591,
|
||
532, 231, 0, 539, 0, 557, 0, 573, 555, 0,
|
||
579, 516, 559, 587, 525, 529, 289, 391, 397, 395,
|
||
0, 0, 297, 295, 0, 0, 311, 231, 519, 0,
|
||
0, 0, 231, 535, 536, 602, 0, 0, 0, 580,
|
||
563, 0, 0, 0, 0, 299, 161, 162, 511, 231,
|
||
231, 596, 595, 533, 231, 0, 0, 603, 604, 544,
|
||
556, 554, 0, 0, 0, 0, 396, 0, 520, 0,
|
||
537, 231, 602, 0, 0, 583, 560, 581, 0, 526,
|
||
530, 0, 0, 0, 0, 545, 605, 0, 0, 585,
|
||
231, 231, 0, 523, 606, 0, 0, 584, 582, 586,
|
||
0, 527, 531, 300, 607, 0, 546, 588, 0, 0,
|
||
0, 608, 547, 589, 0, 0, 0
|
||
};
|
||
|
||
static const short yydefgoto[] = { 1245,
|
||
1, 2, 128, 501, 28, 29, 30, 274, 494, 495,
|
||
31, 69, 32, 510, 512, 511, 513, 509, 33, 34,
|
||
35, 352, 138, 139, 140, 301, 518, 519, 559, 187,
|
||
464, 465, 36, 37, 145, 751, 280, 281, 315, 731,
|
||
316, 1056, 236, 880, 238, 239, 411, 240, 241, 242,
|
||
420, 944, 456, 243, 244, 245, 141, 246, 247, 881,
|
||
343, 882, 171, 883, 248, 268, 406, 269, 154, 41,
|
||
379, 155, 1029, 344, 1108, 42, 931, 599, 1044, 1045,
|
||
857, 723, 724, 43, 398, 212, 1054, 623, 44, 45,
|
||
46, 47, 189, 190, 48, 49, 348, 561, 562, 563,
|
||
564, 192, 355, 356, 357, 574, 575, 924, 395, 396,
|
||
283, 611, 251, 115, 367, 368, 156, 325, 157, 252,
|
||
52, 109, 267, 484, 159, 884, 885, 533, 728, 729,
|
||
730, 310, 886, 887, 1158, 888, 1096, 975, 1180, 976,
|
||
1160, 1023, 1172, 1221, 1024, 1173, 1222, 1163, 1132, 1185,
|
||
1078, 1170, 1144, 889, 890, 891, 1085, 892, 1019, 893,
|
||
1088, 1193, 1219, 1218, 1231, 1171, 1241, 894, 895, 987,
|
||
643, 1187, 1188, 1189, 1236, 485, 209, 210, 613, 200,
|
||
386, 313, 619, 199, 375, 595, 376, 596, 253
|
||
};
|
||
|
||
static const short yypact[] = { 83,
|
||
4540, 4729, 148,-32768, 788,-32768,-32768,-32768,-32768, 237,
|
||
37, 125,-32768, 276, 1837, 183, 304, 250,-32768,-32768,
|
||
-32768, 766, 259,-32768,-32768,-32768, 257,-32768, 290, 5016,
|
||
-32768,-32768,-32768,-32768, 62, 390, 521, 1422, 6163, 833,
|
||
145,-32768,-32768, 1024,-32768,-32768,-32768,-32768, 413, 500,
|
||
-32768,-32768, 272,-32768,-32768,-32768,-32768,-32768,-32768, 4277,
|
||
-32768,-32768, 365,-32768, 429, 489, 5653,-32768, 170,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 474,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 424,-32768,-32768,-32768, 721, 923, 2179,-32768,-32768,
|
||
489, 235,-32768,-32768, 529, 766, 1757, 1757, 501, 390,
|
||
21, 5653,-32768,-32768, 235,-32768, 541, 4958, 550, 501,
|
||
3564, 6347, 176, 213, 625, 558,-32768, 587, -3, 79,
|
||
79,-32768,-32768,-32768, 505, 501, 1950,-32768,-32768,-32768,
|
||
5381,-32768, 1343, 207,-32768, 602, 608,-32768,-32768, 1258,
|
||
-32768,-32768,-32768, 577, 833, 226, 1037,-32768,-32768,-32768,
|
||
1230,-32768,-32768, 3564,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 259,-32768,-32768,-32768,-32768,-32768, 613, 539, 539,
|
||
-32768, 4842,-32768,-32768, 3117, 504, 323, 601, 477, 4850,
|
||
-32768, 4277, 55,-32768,-32768,-32768, 1635, 622, 91, 678,
|
||
-32768, 235, 599,-32768, 36,-32768, 669,-32768, 5863, 5907,
|
||
671, 677,-32768,-32768,-32768, 635, 5736,-32768,-32768, 5736,
|
||
-32768,-32768, 4067, 5736,-32768, 5736, 668, 726,-32768,-32768,
|
||
6540, 1305, 746, 5321, 770, 122, 5736, 721, 466, 685,
|
||
6406, 215,-32768, 813,-32768, 529,-32768,-32768,-32768, 911,
|
||
-32768,-32768,-32768, 6391, 716,-32768, 631, 923,-32768,-32768,
|
||
923, 46,-32768, 1707,-32768,-32768, 608, 608,-32768, 22,
|
||
-32768, 3112,-32768,-32768,-32768, 4656,-32768,-32768,-32768,-32768,
|
||
4, 364,-32768,-32768,-32768,-32768,-32768,-32768, 808,-32768,
|
||
211,-32768, 4150, 5736,-32768, 79, 79, 789, 737,-32768,
|
||
-32768,-32768,-32768, 539,-32768,-32768, 602, 608, 1482, 1482,
|
||
-32768,-32768,-32768, 5464, 31,-32768,-32768,-32768, 477, 3564,
|
||
-32768,-32768, 3224, 756, 5276,-32768, 1230,-32768,-32768, 477,
|
||
-32768,-32768, 4,-32768,-32768,-32768, 355,-32768,-32768,-32768,
|
||
5736, 633, 1185, 5989, 10, 1593,-32768, 625, 529, 768,
|
||
669, 19, 6584, 588, 778,-32768, 787, 5736,-32768, 501,
|
||
742,-32768, 883,-32768,-32768, 838, 2318, 822, 882, 501,
|
||
259,-32768, 55, 814,-32768, 1685, 1685,-32768,-32768, 6047,
|
||
-32768,-32768, 4150, 870, 891,-32768,-32768, 235,-32768, 841,
|
||
5736, 669, 4067,-32768, 864, 404, 4067,-32768, 5736, 5819,
|
||
5736,-32768, 40,-32768,-32768,-32768,-32768, 847, 848, 789,
|
||
849,-32768,-32768,-32768, 4482, 5736, 5736, 4233, 5736, 5736,
|
||
5736, 5736, 5736, 5736, 5736, 5736, 5736, 5736, 5736, 5736,
|
||
5736, 5736, 5736, 5736, 5736,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 5736, 5736, 5736, 43, 1541, 4611,-32768,-32768, 501,
|
||
900, 259, 369, 498, 309, 215,-32768,-32768,-32768,-32768,
|
||
5736,-32768,-32768,-32768,-32768, 652,-32768, 529, 631, 496,
|
||
496, 163, 221, 853, 857,-32768, 855,-32768, 4277, 858,
|
||
-32768, 923, 931, 269,-32768, 1045,-32768, 5653,-32768,-32768,
|
||
-32768,-32768, 808,-32768,-32768,-32768,-32768,-32768,-32768, 865,
|
||
868, 875, 885, 882, 501,-32768, 5736, 623,-32768, 657,
|
||
774, 235,-32768, 3652, 6584,-32768, 61, 79,-32768,-32768,
|
||
-32768,-32768, 954,-32768, 602, 602, 1482, 1482,-32768,-32768,
|
||
452,-32768, 3331, 888,-32768, 882,-32768, 529, 887, 179,
|
||
894,-32768, 896,-32768,-32768, 808,-32768,-32768,-32768,-32768,
|
||
949,-32768,-32768, 425, 6467,-32768,-32768, 947, 38, 5736,
|
||
5736, 6221, 4, 354,-32768, 105, 6221, 733, 329, 948,
|
||
-32768,-32768,-32768, 715,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 323,-32768,-32768, 198, 489, 926, 953,-32768,
|
||
3438,-32768, 3545,-32768,-32768, 304, 2096,-32768,-32768, 6105,
|
||
-32768, 608,-32768,-32768, 55,-32768, 957,-32768, 961,-32768,
|
||
5736, 235, 913, 891,-32768, 239, 916, 917, 920, 20,
|
||
922,-32768,-32768,-32768, 930, 5404,-32768, 6584, 6584, 6584,
|
||
-32768,-32768, 962, 6620, 6635, 3211, 3071, 3177, 1718, 1982,
|
||
1066, 1066, 1066, 914, 914, 743, 743,-32768,-32768,-32768,
|
||
-32768, 297, 918, 952, 5736,-32768, 2318, 753, 977, 5736,
|
||
929,-32768,-32768,-32768,-32768, 5736,-32768, 501, 72,-32768,
|
||
666, 324,-32768, 5736, 631, 631,-32768,-32768,-32768,-32768,
|
||
-32768,-32768, 529, 936,-32768, 933,-32768, 1707,-32768, 950,
|
||
361, 988,-32768, 882,-32768,-32768,-32768,-32768, 364, 409,
|
||
-32768, 211,-32768, 5736,-32768, 5736, 672, 989, 34, 5736,
|
||
-32768, 991,-32768, 32,-32768,-32768, 235, 2903, 954,-32768,
|
||
413, 531, 554, 1482, 1482,-32768, 529, 944, 427, 951,
|
||
-32768, 942, 1003,-32768,-32768,-32768,-32768, 1482, 1482, 882,
|
||
505, 355,-32768,-32768,-32768,-32768,-32768, 5736,-32768,-32768,
|
||
55, 6517, 6584, 956, 44, 1312,-32768,-32768,-32768, 55,
|
||
959,-32768, 693,-32768,-32768, 4900,-32768,-32768, 529, 529,
|
||
529,-32768, 2318,-32768, 48, 978,-32768, 529, 964, 441,
|
||
966, 529, 968, 444, 971, 55, 608, 695, 695, 163,
|
||
-32768, 4150, 4150, 6584,-32768,-32768, 960,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768, 3984,-32768, 5736,-32768,-32768, 489,
|
||
186, 721, 6406,-32768, 5736, 4150,-32768, 5736, 456,-32768,
|
||
-32768,-32768, 5736,-32768, 460, 496, 496, 529,-32768,-32768,
|
||
-32768,-32768, 241, 364,-32768,-32768,-32768, 464, 483,-32768,
|
||
5736, 6445, 4150, 3735,-32768,-32768, 371, 772, 1021, 996,
|
||
-32768,-32768, 999, 1002, 5736, 1031, 986, 992, 5487, 235,
|
||
1084,-32768, 419, 1048, 323, 1049, 5570, 331,-32768, 1000,
|
||
-32768, 1878, 6279, 2223,-32768,-32768, 1085,-32768, 2056, 5111,
|
||
2368,-32768, 2475,-32768,-32768,-32768, 4842,-32768,-32768, 602,
|
||
602,-32768,-32768,-32768,-32768,-32768, 529, 529, 529, 602,
|
||
602, 1051,-32768,-32768, 6517,-32768,-32768, 775, 882, 1052,
|
||
5736, 5736, 4,-32768,-32768, 780, 4774,-32768,-32768, 1108,
|
||
4150,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768, 1063, 6604, 505, 84,-32768, 1011, 1012, 488,-32768,
|
||
-32768,-32768, 495,-32768, 631, 631, 529,-32768,-32768,-32768,
|
||
-32768, 507, 4150,-32768, 5736,-32768, 1062,-32768, 235,-32768,
|
||
-32768,-32768,-32768, 5736, 1035, 5216, 3818, 5736, 846,-32768,
|
||
-32768,-32768,-32768, 1017, 1022,-32768, 1065, 1023, 16, 1026,
|
||
675,-32768, 730,-32768,-32768, 1044,-32768,-32768,-32768, 783,
|
||
401,-32768, 1047, 417, 295, 1050,-32768,-32768,-32768,-32768,
|
||
-32768, 323, 235,-32768,-32768, 811,-32768, 2582,-32768, 816,
|
||
-32768, 2689, 4316, 4316, 25, 529, 529, 529, 4150,-32768,
|
||
-32768,-32768,-32768, 55, 1097, 5736, 6517, 6584, 808,-32768,
|
||
-32768, 55, 1070, 508,-32768,-32768, 529, 529, 529, 529,
|
||
529, 529, 3901, 1054, 505,-32768,-32768, 1072, 1073,-32768,
|
||
-32768,-32768,-32768, 6562, 4150,-32768, 1057, 5736, 1147, 1060,
|
||
1061,-32768, 1068,-32768, 1064,-32768, 5736, 5216,-32768,-32768,
|
||
489,-32768, 1069, 5736,-32768, 1071, 5736,-32768,-32768,-32768,
|
||
808,-32768,-32768,-32768, 808, 5216, 838, 1116,-32768,-32768,
|
||
-32768,-32768,-32768, 1074, 1076,-32768,-32768, 4150,-32768, 4150,
|
||
6517,-32768, 882,-32768, 357, 1108, 1067,-32768,-32768,-32768,
|
||
-32768, 4150,-32768,-32768, 1080,-32768,-32768,-32768, 3010,-32768,
|
||
-32768, 5216, 1115,-32768, 45,-32768, 518,-32768,-32768, 522,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1122,
|
||
1126, 1082,-32768,-32768, 1083, 1086,-32768, 5216,-32768, 1110,
|
||
823, 2796, 5216,-32768,-32768, 1180, 1095, 1096, 1098,-32768,
|
||
1112, 4399, 4399, 4150, 1194,-32768,-32768,-32768,-32768, 5216,
|
||
5736,-32768,-32768,-32768, 5216, 1125, 415, 1154,-32768,-32768,
|
||
-32768,-32768, 360, 1127, 1107, 1113,-32768, 1161,-32768, 1120,
|
||
-32768, 5736, 1180, 1114, 1180,-32768,-32768,-32768, 2318,-32768,
|
||
-32768, 1210, 1123, 1121, 422,-32768,-32768, 789, 789, 235,
|
||
5216, 5216, 1129,-32768,-32768, 1219, 1130,-32768,-32768,-32768,
|
||
1138,-32768,-32768,-32768,-32768, 537,-32768,-32768, 1232, 1142,
|
||
789,-32768,-32768,-32768, 1247, 1249,-32768
|
||
};
|
||
|
||
static const short yypgoto[] = {-32768,
|
||
1124,-32768,-32768, 969, 1248,-32768,-32768,-32768,-32768, 556,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768, -659, 1128, 1131,
|
||
-32768,-32768,-32768,-32768, 1119,-32768,-32768, 548, -7, 765,
|
||
-235,-32768, 95, -11,-32768,-32768,-32768, 767, -909,-32768,
|
||
515, 214,-32768, 33, 189, 713,-32768, -187, 893, -44,
|
||
-32768,-32768,-32768,-32768, -205, -57, -109,-32768,-32768, 291,
|
||
29, 76, 1109, 907, -8, 1001, -1, -21, 395, -28,
|
||
-281,-32768,-32768, 955,-32768,-32768,-32768, -417,-32768, 162,
|
||
-32768, -110, 465, -12,-32768,-32768,-32768, 659, -259, 1251,
|
||
1257,-32768,-32768,-32768,-32768,-32768, -151,-32768, 538, -544,
|
||
-32768, 561, 396, 519, -350, 945,-32768,-32768, 898, 676,
|
||
-59, -94, -2, 1431, -263,-32768, -85, 976, 51, 605,
|
||
-32768, 24, -87,-32768, -127, -857, -840, -226,-32768,-32768,
|
||
572, -118, -136,-32768,-32768, 90,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 283,-32768,
|
||
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
|
||
-992, 102,-32768, 101,-32768, 75,-32768, -252, 218, 8,
|
||
1101,-32768,-32768, 153, -577, 526, 301,-32768, 1419
|
||
};
|
||
|
||
|
||
#define YYLAST 6707
|
||
|
||
|
||
static const short yytable[] = { 40,
|
||
40, 487, 65, 311, 311, 583, 106, 250, 215, 113,
|
||
166, 266, 108, 107, 496, 782, 476, 514, 172, 755,
|
||
414, 497, 312, 326, 53, 53, 116, 173, 40, 307,
|
||
1104, 1105, 188, 1018, 1055, 1022, 186, 165, 349, 416,
|
||
61, 62, 417, 1008, 580, 399, 422, 546, 423, 845,
|
||
137, 50, 50, 272, 399, 399, 458, 399, 40, 580,
|
||
59, 317, 275, 194, 59, 249, 153, 164, 425, 378,
|
||
553, 498, 121, 542, 830, 224, 38, 38, 59, 308,
|
||
135, 854, -1, 664, 413, 136, 499, -102, 197, 167,
|
||
112, 665, -77, 399, 173, 198, 709, -77, 1166, 237,
|
||
305, 389, 195, 196, 273, 131, 271, 61, 62, 105,
|
||
425, 15, 543, 544, 581, 137, 120, 284, 66, -102,
|
||
249, 586, 812, 279, 459, 460, 40, 309, 743, 1106,
|
||
165, 64, 120, 545, 208, 206, 855, 617, 400, 197,
|
||
390, 759, 760, 172, 391, 1055, 198, 1167, 493, 342,
|
||
929, 53, 173, 469, 105, 842, 473, 112, 173, 291,
|
||
292, 15, 534, 725, 461, 335, 276, 277, 278, 311,
|
||
311, 531, 479, 421, 405, 405, 483, 1008, 50, 1195,
|
||
1196, 1008, 405, 392, 959, 405, 1057, 529, 530, 405,
|
||
40, 405, 526, 364, 174, 528, 326, 318, 64, 405,
|
||
40, 121, 105, 38, 394, 165, 67, 414, 768, 769,
|
||
120, 120, 120, 61, 515, 462, 110, 459, 474, 254,
|
||
374, 704, 687, 632, 293, 120, 696, 463, 425, 294,
|
||
681, 249, 688, 535, 536, 425, 173, 61, 62, 61,
|
||
62, 120, 358, 61, 62, 120, 491, 783, 175, 271,
|
||
382, 56, 57, 516, 15, 173, 330, 461, 173, 123,
|
||
124, 296, 40, 488, 111, 419, 297, 353, 120, 365,
|
||
206, 1162, 40, 255, 750, 174, 384, 206, 68, 295,
|
||
742, 745, 620, 635, 40, 63, 844, 299, 425, 521,
|
||
946, 120, 517, 520, 120, 991, 105, 993, 958, 125,
|
||
784, 105, 489, 490, 182, 329, 61, 62, 475, 53,
|
||
331, 677, 678, 114, 201, 342, 298, 594, 698, 340,
|
||
463, 1008, 122, 689, 173, 369, 370, 6, 64, 338,
|
||
64, 364, 912, 699, 182, 560, 50, 194, 127, 206,
|
||
120, 808, 172, 627, 917, 105, 425, 628, 15, 206,
|
||
126, 173, 165, 202, 40, 385, 112, 61, 62, 1151,
|
||
557, 38, 369, 370, 6, 1152, 405, 371, 105, 277,
|
||
278, 61, 62, 425, 121, 107, 195, 196, 766, 197,
|
||
1206, 573, 578, 362, 997, 382, 198, 504, 40, 558,
|
||
394, 311, 685, 686, 122, 120, 669, 64, -248, 818,
|
||
589, 249, 23, 766, 371, 249, 358, 551, 206, 726,
|
||
-22, 673, 505, 120, 120, 506, 23, 507, 120, 372,
|
||
969, 988, 989, 6, 120, -22, 834, 61, 62, 120,
|
||
753, 353, 774, 775, 142, 419, 612, 612, 496, 419,
|
||
612, 629, 631, 503, 326, 497, 470, 120, 182, 326,
|
||
330, 732, 733, 23, 668, 674, 372, 767, 425, 754,
|
||
642, 191, 64, 371, 1207, 206, 174, 508, 1203, 211,
|
||
491, 105, 169, 170, 970, 1226, 425, 213, 10, 173,
|
||
120, 120, 827, 919, 188, 471, 663, 40, 701, 671,
|
||
425, 919, 527, 425, 542, 556, 249, 1031, 214, 13,
|
||
193, 1035, 378, 275, 1092, 425, 16, -283, 470, 425,
|
||
584, 846, 182, 425, 717, 372, 722, 1204, 182, 479,
|
||
1094, 550, 483, -632, 1227, -632, -283, 257, -283, 903,
|
||
-632, 258, 425, 543, 544, 604, 275, 425, 259, 785,
|
||
675, 364, 194, 933, 425, 59, 936, 471, -632, -632,
|
||
105, -632, 560, -632, 736, 261, 425, 1116, 952, 120,
|
||
300, 113, 954, 694, 206, 262, 960, 425, 113, 143,
|
||
40, 425, 263, 332, 144, 40, 583, 264, 265, 676,
|
||
-283, 195, 196, 105, 197, 961, 1239, 277, 278, 626,
|
||
1060, 198, 347, 168, 169, 170, 332, 1061, 113, 364,
|
||
10, 364, 314, -632, 614, 51, 51, 618, 40, 1062,
|
||
1117, 366, 333, 334, 394, 1208, 374, 740, 206, 1112,
|
||
1168, 13, 121, 711, 1169, 405, 51, 121, 16, 302,
|
||
470, 120, 120, 898, 51, 333, 334, 412, 303, 1240,
|
||
951, 662, 158, 158, 332, 285, 764, 206, 900, 901,
|
||
194, 771, 206, 289, 290, 173, 899, 797, 822, 682,
|
||
121, 345, 910, 911, 823, 107, 346, 194, 304, 471,
|
||
224, -87, 712, 488, 15, 791, 206, 795, 206, 413,
|
||
336, 566, 377, 333, 334, 206, 567, 120, 560, 195,
|
||
196, 939, 940, 1149, 683, 1150, 40, 4, 119, 713,
|
||
521, 120, 275, 397, 520, 710, 195, 196, 832, 197,
|
||
685, 686, 489, 490, 850, 950, 198, 1083, 378, 856,
|
||
51, 51, 51, 594, 388, 765, 364, 947, 948, 393,
|
||
773, 739, 51, 684, 15, 158, 158, 606, 714, 19,
|
||
560, -80, 964, 968, 590, 591, -80, 833, 955, 956,
|
||
401, 158, 409, 851, 608, 158, 1084, 1113, 410, 169,
|
||
170, 105, 945, 259, 609, 10, 260, 801, 4, 119,
|
||
424, 263, 1086, 206, 40, 425, 610, 265, 158, 399,
|
||
261, 107, 455, 405, 277, 278, 13, 472, 23, 790,
|
||
262, 794, 105, 16, 923, 824, 51, 263, 277, 278,
|
||
27, 373, 264, 265, 51, 15, 120, 722, 17, 546,
|
||
19, 1087, 443, 444, 445, 477, 715, 197, 777, 778,
|
||
1046, 271, 143, 486, 198, 20, 358, 144, 120, 120,
|
||
58, 560, 59, 378, 825, 21, 772, 309, 168, 169,
|
||
170, 532, 120, 120, 1129, 10, 967, 22, 277, 278,
|
||
466, 353, 1063, 821, 1004, 716, 1155, 1156, 1138, 23,
|
||
120, 1141, 985, 552, 829, 990, 13, 197, 482, 60,
|
||
585, 27, 835, 16, 198, 971, 972, 105, 1032, 1033,
|
||
587, 165, 364, 1040, 1041, 592, 1090, 593, 364, 364,
|
||
51, 364, 120, 120, 588, 40, 374, 979, 374, 1076,
|
||
1077, 984, 848, 597, 849, 522, 446, 39, 39, 996,
|
||
1000, 1003, 598, 916, 971, 1099, 605, 105, 1107, 971,
|
||
1102, 621, 925, 158, 158, 40, 971, 1182, 158, 169,
|
||
170, 404, 408, 1005, 158, 10, 132, 447, 448, 51,
|
||
622, 449, 968, 451, 625, 453, 454, 358, 938, 633,
|
||
634, 636, 672, 259, 1123, 690, 13, 158, 158, 691,
|
||
51, 1066, 692, 16, 697, 695, 207, 120, 705, 120,
|
||
261, 706, 353, 1009, 364, 364, 120, 358, 707, 1015,
|
||
262, 441, 442, 443, 444, 445, 727, 263, 708, 744,
|
||
51, 51, 264, 265, 51, 741, 746, 1147, 752, 1148,
|
||
758, 776, 353, 747, 787, 1098, 1067, 786, 802, 1073,
|
||
1075, 1157, 803, 949, 282, 817, 364, 806, 809, 810,
|
||
364, 953, 811, 1135, 813, 819, 61, 62, 826, 176,
|
||
177, 178, 814, 820, 39, 374, 828, 339, 839, 962,
|
||
840, 843, -101, 182, 853, 967, 902, 61, 62, 905,
|
||
176, 177, 178, 904, 906, 642, 642, 179, 918, 930,
|
||
-632, 926, -632, 1197, 941, 1069, 932, -632, 934, 679,
|
||
935, 180, 181, 937, 973, 1039, 364, 974, 179, 194,
|
||
977, 1228, 1229, 978, 980, -632, -632, 363, -632, 981,
|
||
-632, 986, 700, 181, 364, 982, 992, 994, 354, 1010,
|
||
1125, 207, 1030, 998, 1244, 1036, 120, 1009, 207, 1133,
|
||
1043, 1009, 1053, 1058, 1059, 1065, 1068, 182, 195, 196,
|
||
1079, 197, 183, 184, 185, 1080, -101, 364, 198, 1082,
|
||
364, 439, 440, 441, 442, 443, 444, 445, 182, 468,
|
||
-248, 158, 158, 183, 184, 185, 1081, 1089, 1110, 1220,
|
||
1093, 1115, 1091, 971, 1120, 1121, 364, 1095, 1118, 1124,
|
||
364, 364, 1126, 1127, 1143, 1128, 1131, 1134, 1165, 1154,
|
||
207, 1130, 1136, 1174, 1139, 1175, 158, 1145, 364, 1146,
|
||
207, 158, 1159, 364, 1176, 1142, 1109, 568, 146, 1186,
|
||
1177, 1181, 39, 1178, 1114, 525, 363, 373, 1190, 1191,
|
||
1194, 1192, 1198, 1205, 642, 642, 1202, 107, 1209, 1210,
|
||
1212, 51, 1230, 1200, 800, 1211, 374, 1216, 1223, 364,
|
||
364, 1164, 1213, 1225, 15, 363, 1224, 569, 1235, 19,
|
||
147, 1234, 570, 1237, 1214, 341, 169, 170, 571, 207,
|
||
1238, 1242, 10, 565, 148, 1243, 1246, 1179, 1247, 55,
|
||
286, 1009, 1184, 841, 149, 287, 502, 306, 288, 847,
|
||
702, 150, 354, 13, 703, 913, 572, 1074, 1119, 1199,
|
||
16, 492, 1137, 337, 1201, 1140, 1001, 1153, 23, 942,
|
||
133, -428, 807, -428, 547, 525, 134, 120, -428, 914,
|
||
27, 897, 1025, 363, 927, 624, 207, 805, 579, 541,
|
||
896, 1101, 59, 105, 1215, 1217, -428, 387, 928, -428,
|
||
1232, 1233, 1097, 0, 920, 146, 522, 638, 639, 640,
|
||
0, 644, 645, 646, 647, 648, 649, 650, 651, 652,
|
||
653, 654, 655, 656, 657, 658, 659, 660, 158, 158,
|
||
-428, 0, -428, 327, 661, 363, 0, 446, 0, -428,
|
||
0, 15, 158, 158, 17, 0, 19, 147, 0, 921,
|
||
0, 0, -428, 363, 0, 922, -632, 0, -632, 0,
|
||
158, 148, 0, -632, 0, 0, 0, 0, 447, 448,
|
||
51, 149, 449, 450, 451, 452, 453, 454, 150, 0,
|
||
282, -632, -632, 151, -632, 207, -632, 0, 0, 0,
|
||
0, 0, 51, 51, 0, 23, 0, 0, 0, 363,
|
||
0, 0, 0, 0, 0, 0, 525, 27, 0, 54,
|
||
54, 0, 0, 0, 4, 146, 0, 197, 0, 0,
|
||
0, 0, 0, 0, 198, 363, 0, 0, 0, 0,
|
||
54, 0, 0, 0, 0, 0, 328, 0, 54, 207,
|
||
117, 118, 0, 0, 0, 0, 54, 54, 0, 0,
|
||
0, 15, 762, 763, 17, 0, 19, 147, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 373, 207, 373,
|
||
0, 148, 0, 207, 4, 146, 158, 158, 203, 275,
|
||
0, 149, 0, 363, 0, 363, 0, 0, 150, 0,
|
||
0, 51, 0, 151, 0, 256, 0, 207, 0, 207,
|
||
0, 0, 0, 804, 0, 23, 207, 0, 0, 0,
|
||
0, 15, 0, 0, 17, 152, 19, 27, 816, 0,
|
||
0, 51, 0, 0, 54, 54, 54, 0, 0, 0,
|
||
0, 148, 0, 0, 71, 6, 54, 8, 72, 54,
|
||
54, 149, 0, 10, 0, 0, 0, 363, 150, 0,
|
||
0, 0, 0, 151, 0, 54, 0, 12, 363, 54,
|
||
0, 0, 0, 0, 13, 23, 363, 0, 319, 320,
|
||
0, 16, 0, 0, 0, 0, 0, 27, 666, 0,
|
||
0, 0, 54, 350, 0, 4, 130, 6, 7, 8,
|
||
9, 0, 0, 0, 207, 10, 363, 0, 363, 0,
|
||
54, 0, 852, 0, 0, 0, 373, 0, 54, 12,
|
||
0, 0, 667, 0, 359, 0, 13, -362, 0, 0,
|
||
0, 383, 15, 16, 23, 17, 0, 19, 71, 6,
|
||
161, 8, 162, 0, 415, 0, 351, 10, 0, 0,
|
||
915, 0, 20, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 12, 21, 0, 467, 0, 0, 0, 13, 0,
|
||
467, 0, 0, 0, 22, 16, 0, 0, 0, 0,
|
||
0, 0, 354, 0, 0, 0, 23, 4, 119, 478,
|
||
0, 480, 481, 0, 525, 525, 582, -362, 27, 0,
|
||
0, 0, 0, 0, 54, 0, 0, 525, 0, 943,
|
||
71, 6, 7, 8, 9, 0, 0, 363, 525, 10,
|
||
0, 0, 0, 0, 15, 363, 0, 606, 23, 19,
|
||
607, 0, 0, 12, 0, 0, 0, 54, 54, 0,
|
||
13, 0, 54, 363, 608, 525, 525, 16, 54, 0,
|
||
0, 537, 538, 54, 609, 0, 0, 0, 0, 4,
|
||
119, 263, 548, 0, 275, 0, 610, 265, 0, 0,
|
||
0, 54, 54, 0, 54, 0, 0, 0, 23, 435,
|
||
436, 437, 438, 439, 440, 441, 442, 443, 444, 445,
|
||
27, 0, 0, 0, 0, 0, 15, 373, 0, 17,
|
||
23, 19, 0, 354, 54, 54, 0, 0, 54, 0,
|
||
0, 0, 0, 1037, 1038, 0, 20, 0, 615, 0,
|
||
0, 0, 0, 525, 0, 0, 21, 0, 0, 0,
|
||
0, 0, 0, 354, 0, 0, 0, 70, 22, 0,
|
||
71, 6, 0, 8, 72, 0, 0, 0, 0, 10,
|
||
23, 0, 0, 0, 0, 525, 0, 1064, 0, 0,
|
||
0, 0, 27, 12, 0, 0, 0, 0, 0, 0,
|
||
13, 0, 73, 74, 0, 0, 0, 16, 75, 76,
|
||
4, 146, 0, 680, 467, 0, 77, 78, 79, 80,
|
||
0, 0, 81, 82, 83, 84, 85, 86, 87, 88,
|
||
89, 90, 91, 92, 93, 94, 95, 96, 97, 0,
|
||
98, 99, 0, 0, 100, 101, 0, 15, 693, 102,
|
||
17, 525, 19, 147, 0, 0, 0, 0, 1111, 0,
|
||
23, 0, 0, 0, 0, 0, 0, 148, 0, 0,
|
||
0, 0, 103, 104, 0, 525, 0, 149, 0, 0,
|
||
0, 0, 4, 146, 150, 54, 54, 525, 0, 151,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
|
||
735, 23, 737, 0, 0, 0, 363, 0, 0, 363,
|
||
0, 999, 0, 27, 748, 749, 0, 0, 0, 15,
|
||
54, 0, 17, 0, 19, 54, 0, 0, 0, 761,
|
||
525, 0, 525, 0, 0, 0, 770, 0, 0, 148,
|
||
0, 0, 0, 0, 525, 779, 780, 781, 0, 149,
|
||
0, 0, 0, 0, 0, 54, 150, 0, 54, 0,
|
||
788, 151, 792, 0, 0, 796, 478, 0, 798, 799,
|
||
0, 0, 0, 23, 436, 437, 438, 439, 440, 441,
|
||
442, 443, 444, 445, 0, 27, 1011, 0, -565, -565,
|
||
-565, -565, -565, -565, -565, -565, 525, -565, -565, -565,
|
||
-565, -565, -565, -565, -565, -565, -565, -565, -565, -565,
|
||
-565, -565, -565, -565, -565, -565, 0, -565, 0, -565,
|
||
0, -565, -565, 0, -565, -565, -565, 831, 4, 119,
|
||
-565, 0, 0, -565, -565, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, -565, 0, 836, 837, 0,
|
||
0, 838, 0, -565, -565, -565, 0, 0, 0, -565,
|
||
-565, 0, 0, 0, 0, 15, 0, -565, 606, -565,
|
||
19, 1012, -565, 1013, 0, -565, -565, -565, 0, -565,
|
||
0, 0, 54, 54, 0, 608, 0, 0, 0, -565,
|
||
-565, -565, -565, 0, 0, 609, 54, 54, 0, 0,
|
||
0, 0, 263, 0, 907, 908, 909, 610, 265, 0,
|
||
0, 0, 71, 6, 54, 8, 270, 0, 0, 23,
|
||
0, 10, 0, 0, 54, 0, 0, 0, 0, 0,
|
||
0, 27, 0, 0, 0, 12, 0, 0, 0, 0,
|
||
0, 0, 13, 0, 0, 0, 54, 54, 0, 16,
|
||
0, 0, 0, 1006, 0, 859, 130, 6, 7, 8,
|
||
361, 218, 214, 0, 219, 10, 860, 0, 861, 862,
|
||
863, 864, 865, 866, 867, 868, 869, 870, 871, 12,
|
||
220, 221, 222, 0, 223, 0, 13, 0, 224, -231,
|
||
0, 225, 15, 16, 0, 0, 0, 226, 0, 957,
|
||
872, 309, 23, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 227, 0, 0, 0, 0, 0, 0, 0,
|
||
228, 229, 230, 0, 0, 0, 231, 232, 0, 0,
|
||
54, 54, 0, 0, 233, 0, 873, 0, 0, 874,
|
||
0, 0, 875, 876, 877, 54, 878, 0, 0, 0,
|
||
0, 71, 6, 0, 8, 72, 879, 1007, 234, 235,
|
||
10, 0, 1026, 1027, 1028, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 12, 54, 0, 0, 1034, 0,
|
||
0, 13, 0, 0, 0, 0, 1042, 0, 16, 0,
|
||
0, 0, 1047, 1048, 1049, 1050, 1051, 1052, 1016, 0,
|
||
859, 130, 6, 7, 8, 361, 218, 214, 0, 219,
|
||
10, 860, 0, 861, 862, 863, 864, 865, 866, 867,
|
||
868, 869, 870, 871, 12, 220, 221, 222, 0, 223,
|
||
0, 13, 0, 224, -231, 0, 225, 15, 16, 0,
|
||
0, 23, 226, 0, 0, 872, 309, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 227, 0, 0,
|
||
0, 0, 0, 0, 0, 228, 229, 230, 0, 0,
|
||
0, 231, 232, 0, 0, 0, 0, 0, 0, 233,
|
||
0, 873, 0, 0, 874, 0, 0, 875, 876, 877,
|
||
0, 878, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 879, 1017, 234, 235, 1020, 0, 859, 130, 6,
|
||
7, 8, 361, 218, 214, 0, 219, 10, 860, 0,
|
||
861, 862, 863, 864, 865, 866, 867, 868, 869, 870,
|
||
871, 12, 220, 221, 222, 0, 223, 0, 13, 0,
|
||
224, -231, 0, 225, 15, 16, 0, 0, 0, 226,
|
||
0, 0, 872, 309, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 227, 0, 0, 0, 0, 0,
|
||
0, 0, 228, 229, 230, 0, 0, 0, 231, 232,
|
||
0, 0, 0, 0, 0, 0, 233, 0, 873, 0,
|
||
0, 874, 0, 0, 875, 876, 877, 0, 878, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 879, 1021,
|
||
234, 235, 1006, 0, 859, 130, 6, 7, 8, 361,
|
||
218, 214, 0, 219, 10, 860, 0, 861, 862, 863,
|
||
864, 865, 866, 867, 868, 869, 870, 871, 12, 220,
|
||
221, 222, 0, 223, 0, 13, 0, 224, -231, 0,
|
||
225, 15, 16, 0, 0, 0, 226, 0, 0, 872,
|
||
309, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 227, 0, 0, 0, 0, 0, 0, 0, 228,
|
||
229, 230, 0, 0, 0, 231, 232, 0, 0, 0,
|
||
0, 0, 0, 233, 0, 873, 0, 0, 874, 0,
|
||
0, 875, 876, 877, 0, 878, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 879, 1100, 234, 235, 1006,
|
||
0, 859, 130, 6, 7, 8, 361, 218, 214, 0,
|
||
219, 10, 860, 0, 861, 862, 863, 864, 865, 866,
|
||
867, 868, 869, 870, 871, 12, 220, 221, 222, 0,
|
||
223, 0, 13, 0, 224, -231, 0, 225, 15, 16,
|
||
0, 0, 0, 226, 0, 0, 872, 309, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 227, 0,
|
||
0, 0, 0, 0, 0, 0, 228, 229, 230, 0,
|
||
0, 0, 231, 232, 0, 0, 0, 0, 0, 0,
|
||
233, 0, 873, 0, 0, 874, 0, 0, 875, 876,
|
||
877, 0, 878, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 879, 1103, 234, 235, 1006, 0, 859, 130,
|
||
6, 7, 8, 361, 218, 214, 0, 219, 10, 860,
|
||
0, 861, 862, 863, 864, 865, 866, 867, 868, 869,
|
||
870, 871, 12, 220, 221, 222, 0, 223, 0, 13,
|
||
0, 224, -231, 0, 225, 15, 16, 0, 0, 0,
|
||
226, 0, 0, 872, 309, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 227, 0, 0, 0, 0,
|
||
0, 0, 0, 228, 229, 230, 0, 0, 0, 231,
|
||
232, 0, 0, 0, 0, 0, 0, 233, 0, 873,
|
||
0, 0, 874, 0, 0, 875, 876, 877, 0, 878,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 879,
|
||
1183, 234, 235, 858, 0, 859, 130, 6, 7, 8,
|
||
361, 218, 214, 0, 219, 10, 860, 0, 861, 862,
|
||
863, 864, 865, 866, 867, 868, 869, 870, 871, 12,
|
||
220, 221, 222, 0, 223, 0, 13, 0, 224, -231,
|
||
0, 225, 15, 16, 0, 0, 0, 226, 0, 0,
|
||
872, 309, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 227, 0, 0, 0, 0, 0, 0, 0,
|
||
228, 229, 230, 0, 0, 0, 231, 232, 0, 0,
|
||
0, 0, 0, 0, 233, 0, 873, 0, 0, 874,
|
||
0, 0, 875, 876, 877, 0, 878, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 879, 0, 234, 235,
|
||
1161, 0, 859, 130, 6, 7, 8, 361, 218, 214,
|
||
0, 219, 10, 860, 0, 861, 862, 863, 864, 865,
|
||
866, 867, 868, 869, 870, 871, 12, 220, 221, 222,
|
||
0, 223, 0, 13, 0, 224, -231, 0, 225, 15,
|
||
16, 0, 0, 0, 226, 0, 0, 872, 309, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 227,
|
||
0, 0, 0, 0, 0, 0, 0, 228, 229, 230,
|
||
0, 0, 0, 231, 232, 0, 0, 0, 0, 0,
|
||
0, 233, 0, 873, 0, 0, 874, 0, 0, 875,
|
||
876, 877, 0, 878, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 879, 0, 234, 235, 360, 0, 216,
|
||
130, 6, 7, 8, 361, 218, 214, 204, 219, 10,
|
||
433, 434, 435, 436, 437, 438, 439, 440, 441, 442,
|
||
443, 444, 445, 12, 220, 221, 222, 0, 223, 0,
|
||
13, 0, 224, -231, 0, 225, 15, 16, 0, 0,
|
||
0, 226, 426, 427, 428, 0, 0, 429, 430, 431,
|
||
432, 433, 434, 435, 436, 437, 227, 439, 440, 441,
|
||
442, 443, 444, 445, 228, 229, 230, 0, 0, 0,
|
||
231, 232, 0, 0, 0, 0, 0, 0, 233, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 205,
|
||
23, 0, 0, 0, 0, 0, 0, 0, 0, -609,
|
||
0, 0, 234, 235, 549, 0, 216, 130, 6, 7,
|
||
8, 361, 218, 214, 204, 219, 10, 434, 435, 436,
|
||
437, 438, 439, 440, 441, 442, 443, 444, 445, 0,
|
||
12, 220, 221, 222, 0, 223, 0, 13, 0, 224,
|
||
-231, 0, 225, 15, 16, 0, 0, 0, 226, 432,
|
||
433, 434, 435, 436, 437, 438, 439, 440, 441, 442,
|
||
443, 444, 445, 227, 0, 0, 0, 0, 0, 0,
|
||
0, 228, 229, 230, 0, 0, 0, 231, 232, 0,
|
||
0, 0, 0, 0, 0, 233, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 205, 23, 0, 0,
|
||
0, 0, 0, 0, 0, 0, -609, 0, 0, 234,
|
||
235, 738, 0, 216, 130, 6, 7, 8, 361, 218,
|
||
214, 204, 219, 10, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 12, 220, 221,
|
||
222, 0, 223, 0, 13, 0, 224, -231, 0, 225,
|
||
15, 16, 0, 0, 0, 226, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
227, 0, 0, 0, 0, 0, 0, 0, 228, 229,
|
||
230, 0, 0, 0, 231, 232, 0, 0, 0, 0,
|
||
0, 0, 233, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 205, 23, 0, 0, 0, 0, 0,
|
||
0, 0, 0, -609, 0, 0, 234, 235, 789, 0,
|
||
216, 130, 6, 7, 8, 361, 218, 214, 204, 219,
|
||
10, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 12, 220, 221, 222, 0, 223,
|
||
0, 13, 0, 224, -231, 0, 225, 15, 16, 0,
|
||
0, 0, 226, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 227, 0, 0,
|
||
0, 0, 0, 0, 0, 228, 229, 230, 0, 0,
|
||
0, 231, 232, 0, 0, 0, 0, 0, 0, 233,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
205, 23, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
-609, 0, 0, 234, 235, 793, 0, 216, 130, 6,
|
||
7, 8, 361, 218, 214, 204, 219, 10, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 4, 146, 0, 0,
|
||
0, 12, 220, 221, 222, 0, 223, 0, 13, 0,
|
||
224, -231, 0, 225, 15, 16, 0, 0, 0, 226,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 15, 227, 0, 17, 0, 19, 147,
|
||
0, 0, 228, 229, 230, 0, 0, 0, 231, 232,
|
||
0, 0, 0, 148, 0, 0, 233, 0, 0, 0,
|
||
0, 0, 0, 149, 0, 0, 0, 205, 23, 0,
|
||
150, 0, 0, 0, 0, 151, 0, -609, 0, 0,
|
||
234, 235, 523, 0, 718, 719, 6, 23, 8, 402,
|
||
218, 214, 0, 219, 10, 0, 0, 0, 0, 27,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 12, 220,
|
||
221, 222, 0, 223, 0, 13, 0, 224, -231, 0,
|
||
225, 15, 16, 0, 0, 0, 226, 0, 0, 0,
|
||
524, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 227, 0, 0, 0, 0, 0, 0, 0, 228,
|
||
229, 230, 0, 0, 0, 231, 232, 0, 0, 0,
|
||
0, 0, 0, 233, 720, 523, 0, 718, 719, 6,
|
||
0, 8, 402, 218, 214, 182, 219, 10, 0, 0,
|
||
0, 0, 0, 0, 965, 0, 721, 234, 235, 0,
|
||
0, 12, 220, 221, 222, 0, 223, 0, 13, 0,
|
||
224, -231, 0, 225, 15, 16, 0, 0, 0, 226,
|
||
0, 0, 0, 524, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 227, 0, 0, 0, 0, 0,
|
||
0, 0, 228, 229, 230, 0, 0, 0, 231, 232,
|
||
0, 0, 0, 0, 0, 0, 233, 0, 1070, 0,
|
||
216, 130, 6, 7, 8, 361, 218, 214, 182, 219,
|
||
10, 0, 0, 0, 0, 0, 0, 0, 0, 966,
|
||
234, 235, 0, 0, 12, 220, 221, 222, 0, 223,
|
||
0, 13, 0, 224, -231, 0, 225, 15, 16, 0,
|
||
0, 0, 226, 0, 0, 0, 1071, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 227, 0, 0,
|
||
0, 0, 0, 0, 0, 228, 229, 230, 0, 0,
|
||
0, 231, 232, 0, 0, 0, 0, 0, 0, 233,
|
||
0, 523, 0, 718, 719, 6, 0, 8, 402, 218,
|
||
214, 23, 219, 10, 0, 0, 0, 0, 0, 0,
|
||
965, 1072, 0, 234, 235, 0, 0, 12, 220, 221,
|
||
222, 0, 223, 0, 13, 0, 224, -231, 0, 225,
|
||
15, 16, 0, 0, 0, 226, 0, 0, 0, 524,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
227, 0, 0, 0, 0, 0, 0, 0, 228, 229,
|
||
230, 0, 0, 0, 231, 232, 0, 0, 0, 0,
|
||
0, 0, 233, 0, 523, 0, 718, 719, 6, 0,
|
||
8, 402, 218, 214, 182, 219, 10, 0, 0, 0,
|
||
0, 0, 0, 0, 0, -324, 234, 235, 0, 0,
|
||
12, 220, 221, 222, 0, 223, 0, 13, 0, 224,
|
||
-231, 0, 225, 15, 16, 0, 0, 0, 226, 0,
|
||
0, 0, 524, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 227, 0, 0, 0, 0, 0, 0,
|
||
0, 228, 229, 230, 0, 0, 0, 231, 232, 0,
|
||
0, 0, 0, 0, 0, 233, 720, 418, 0, 216,
|
||
130, 6, 0, 8, 217, 218, 214, 182, 219, 10,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 234,
|
||
235, 0, 0, 12, 220, 221, 222, 0, 223, 0,
|
||
13, 0, 224, -231, 0, 225, 15, 16, 0, 0,
|
||
0, 226, 0, 0, 0, -204, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 227, 0, 0, 0,
|
||
0, 0, 0, 0, 228, 229, 230, 0, 0, 0,
|
||
231, 232, 0, 0, 0, 0, 0, 0, 233, 0,
|
||
523, 0, 216, 130, 6, 0, 8, 402, 218, 214,
|
||
23, 219, 10, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 234, 235, 0, 0, 12, 220, 221, 222,
|
||
0, 223, 0, 13, 0, 224, -231, 0, 225, 15,
|
||
16, 0, 0, 0, 226, 0, 0, 0, 524, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 227,
|
||
0, 0, 0, 0, 0, 0, 0, 228, 229, 230,
|
||
0, 0, 0, 231, 232, 0, 0, 0, 0, 0,
|
||
0, 233, 0, 641, 0, 216, 130, 6, 0, 8,
|
||
402, 218, 214, 23, 219, 10, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 234, 235, 0, 0, 12,
|
||
220, 221, 222, 0, 223, 0, 13, 0, 224, -231,
|
||
0, 225, 15, 16, 0, 0, 0, 226, 0, 0,
|
||
71, 6, 7, 8, 9, 0, -599, 204, 0, 10,
|
||
0, 0, 227, 0, 0, 0, 0, 0, 0, 0,
|
||
228, 229, 230, 12, 0, 0, 231, 232, 0, 0,
|
||
13, 0, 0, 0, 233, 0, 641, 16, 216, 130,
|
||
6, 0, 8, 402, 218, 214, 23, 219, 10, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 234, 235,
|
||
0, 0, 12, 220, 221, 222, 0, 223, 0, 13,
|
||
0, 224, -231, 0, 225, 15, 16, 0, 0, 0,
|
||
226, 0, 0, 0, 0, 0, 0, 0, 0, 205,
|
||
23, 0, 0, 0, 0, 227, 0, 0, 0, 0,
|
||
0, 0, 0, 228, 229, 230, 0, 0, 0, 231,
|
||
232, 0, 0, 0, 0, 0, 0, 233, 0, 641,
|
||
0, 216, 130, 6, 0, 8, 402, 218, 214, 23,
|
||
219, 10, 0, 0, 0, 0, 0, 0, 0, -599,
|
||
0, 234, 235, 0, 0, 12, 220, 221, 222, 0,
|
||
223, 0, 13, 0, 224, -231, 0, 225, 15, 16,
|
||
0, 0, 0, 226, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 227, 0,
|
||
0, 0, 0, 0, 0, 0, 228, 229, 230, 0,
|
||
0, 0, 231, 232, 0, 0, 0, 0, 0, 0,
|
||
233, 0, 637, 0, 216, 130, 6, 0, 8, 402,
|
||
218, 214, 23, 219, 10, 0, 0, 0, 0, 0,
|
||
0, -599, 0, 0, 234, 235, 0, 0, 12, 220,
|
||
221, 222, 0, 223, 0, 13, 0, 224, -231, 0,
|
||
225, 15, 16, 0, 0, 0, 226, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, -2,
|
||
3, 227, 4, 5, 6, 7, 8, 9, 0, 228,
|
||
229, 230, 10, 0, 0, 231, 232, 0, 0, 0,
|
||
0, 0, 0, 233, 0, 11, 12, 0, 0, 0,
|
||
0, 0, 0, 13, 0, 23, 0, 14, 0, 15,
|
||
16, 0, 17, 18, 19, 0, 0, 234, 235, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 20,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 21,
|
||
0, 0, 0, 216, 130, 6, 0, 8, 402, 218,
|
||
214, 22, 219, 10, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 23, 24, 25, 0, 12, 220, 221,
|
||
222, 0, 223, 26, 13, 27, 224, 0, 0, 225,
|
||
15, 16, 0, 0, 0, 226, 3, 0, 4, 5,
|
||
6, 7, 8, 9, 0, 0, 0, 0, 10, 0,
|
||
227, 0, 0, 0, 0, 0, 0, 0, 228, 229,
|
||
230, 11, 12, 0, 231, 232, 0, 0, 0, 13,
|
||
0, 0, 233, 14, 0, 15, 16, 0, 17, 18,
|
||
19, 0, 0, 0, 23, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 20, 234, 235, 670, 0,
|
||
0, 0, 0, 0, 0, 21, 0, 0, 0, 3,
|
||
0, 4, 5, 6, 7, 8, 9, 22, 0, 0,
|
||
0, 10, 0, 0, 0, 0, 0, 0, 0, 23,
|
||
24, 25, 0, 0, 11, 12, 0, 0, 0, 26,
|
||
500, 27, 13, 0, 0, 0, 14, 0, 15, 16,
|
||
0, 17, 18, 19, 350, 0, 4, 130, 6, 7,
|
||
8, 9, 0, 0, 0, 0, 10, 0, 20, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 21, 0,
|
||
12, 0, 0, 0, 0, 0, 0, 13, -363, 0,
|
||
22, 0, 0, 15, 16, 0, 17, 0, 19, 0,
|
||
0, 0, 23, 24, 25, 0, 0, 351, 0, 0,
|
||
0, 0, 26, 20, 27, 0, 0, 0, 0, 0,
|
||
0, 0, 350, 21, 4, 130, 6, 7, 8, 9,
|
||
0, 0, 4, 380, 10, 22, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 23, 12, 0,
|
||
0, 0, 0, 0, 0, 13, -361, 582, -363, 27,
|
||
0, 15, 16, 0, 17, 0, 19, 0, 0, 15,
|
||
0, 0, 17, 0, 19, 351, 0, 0, 0, 0,
|
||
350, 20, 4, 130, 6, 7, 8, 9, 0, 20,
|
||
0, 21, 10, 0, 0, 0, 0, 0, 0, 21,
|
||
0, 0, 0, 22, 0, 0, 12, 0, 0, 0,
|
||
0, 22, 0, 13, -364, 23, 0, 0, 0, 15,
|
||
16, 0, 17, 381, 19, 0, -361, 27, 0, 0,
|
||
0, 0, 0, 351, 0, 27, 0, 0, 3, 20,
|
||
4, 5, 6, 7, 8, 9, 0, 0, 0, 21,
|
||
10, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 22, 0, 0, 12, 0, 0, 0, 0, 0,
|
||
0, 13, 0, 23, 0, 0, 0, 15, 16, 0,
|
||
17, 0, 19, 0, -364, 27, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 129, 20, 4, 130,
|
||
6, 7, 8, 9, 0, 0, 0, 21, 10, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 22,
|
||
0, 0, 12, 0, 0, 0, 0, 0, 0, 13,
|
||
0, 23, 24, 0, 0, 15, 16, 0, 17, 0,
|
||
19, 26, 0, 27, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 20, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 21, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 22, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 23,
|
||
0, 0, 0, 859, 130, 6, 7, 8, 361, 218,
|
||
214, 27, 219, 10, 860, 0, 861, 862, 863, 864,
|
||
865, 866, 867, 868, 869, 870, 871, 12, 220, 221,
|
||
222, 0, 223, 0, 13, 0, 224, 0, 0, 225,
|
||
15, 16, 0, 0, 0, 226, 0, 0, 872, 309,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
227, 0, 0, 0, 0, 0, 0, 0, 228, 229,
|
||
230, 0, 0, 0, 231, 232, 0, 0, 0, 0,
|
||
0, 0, 233, 0, 873, 0, 0, 874, 0, 0,
|
||
875, 876, 877, 0, 878, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 879, 1014, 234, 235, 859, 130,
|
||
6, 7, 8, 361, 218, 214, 0, 219, 10, 860,
|
||
0, 861, 862, 863, 864, 865, 866, 867, 868, 869,
|
||
870, 871, 12, 220, 221, 222, 0, 223, 0, 13,
|
||
0, 224, 0, 0, 225, 15, 16, 0, 0, 0,
|
||
226, 0, 0, 872, 309, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 227, 0, 0, 4, 380,
|
||
0, 0, 0, 228, 229, 230, 0, 0, 0, 231,
|
||
232, 0, 0, 0, 0, 0, 0, 233, 0, 873,
|
||
0, 0, 874, 0, 0, 875, 876, 877, 0, 878,
|
||
0, 0, 0, 0, 0, 15, 0, 0, 17, 879,
|
||
19, 234, 235, 216, 130, 6, 0, 8, 402, 218,
|
||
214, 0, 219, 10, 0, 554, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 555, 0, 12, 220, 221,
|
||
222, 0, 223, 0, 13, 0, 224, 22, 0, 225,
|
||
15, 16, 0, 0, 0, 226, 0, 0, 0, 381,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
227, 27, 0, 4, 119, 0, 0, 0, 228, 229,
|
||
230, 0, 0, 0, 231, 232, 0, 0, 0, 0,
|
||
0, 0, 233, 457, 0, 0, 216, 130, 6, 0,
|
||
8, 402, 218, 214, 23, 219, 10, 0, 0, 0,
|
||
15, 0, 0, 17, 0, 19, 234, 235, 0, 0,
|
||
12, 220, 221, 222, 0, 223, 0, 13, 0, 224,
|
||
321, 0, 225, 15, 16, 0, 0, 0, 226, 0,
|
||
322, 0, 815, 0, 0, 0, 0, 323, 0, 0,
|
||
0, 0, 324, 227, 0, 0, 4, 119, 0, 0,
|
||
0, 228, 229, 230, 23, 0, 0, 231, 232, 0,
|
||
0, 0, 0, 0, 0, 233, 27, 0, 0, 216,
|
||
130, 6, 0, 8, 402, 218, 214, 23, 219, 10,
|
||
0, 0, 0, 15, 0, 0, 17, 0, 19, 234,
|
||
235, 0, 0, 12, 220, 221, 222, 0, 223, 0,
|
||
13, 0, 224, 539, 0, 225, 15, 16, 0, 0,
|
||
0, 226, 0, 540, 0, 0, 0, 0, 0, 0,
|
||
323, 0, 0, 0, 0, 324, 227, 0, 0, 0,
|
||
0, 0, 0, 0, 228, 229, 230, 23, 0, 0,
|
||
231, 232, 0, 0, 0, 0, 0, 0, 233, 27,
|
||
0, 0, 216, 130, 6, 0, 8, 402, 218, 214,
|
||
23, 219, 10, 0, 0, 0, 0, 0, 0, 0,
|
||
983, 0, 234, 235, 0, 0, 12, 220, 221, 222,
|
||
0, 223, 0, 13, 0, 224, 0, 0, 225, 15,
|
||
16, 0, 0, 0, 226, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 227,
|
||
0, 0, 0, 0, 0, 0, 0, 228, 229, 230,
|
||
0, 0, 0, 231, 232, 0, 0, 0, 0, 0,
|
||
0, 233, 0, 0, 0, 216, 130, 6, 0, 8,
|
||
217, 218, 214, 23, 219, 10, 0, 0, 0, 0,
|
||
0, 0, 0, 995, 0, 234, 235, 0, 0, 12,
|
||
220, 221, 222, 0, 223, 0, 13, 0, 224, 0,
|
||
0, 225, 15, 16, 0, 0, 0, 226, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 227, 0, 0, 0, 0, 0, 0, 0,
|
||
228, 229, 230, 0, 0, 0, 231, 232, 0, 0,
|
||
0, 0, 0, 0, 233, 0, 0, 0, 216, 130,
|
||
6, 0, 8, 402, 218, 214, 23, 219, 10, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 234, 235,
|
||
0, 0, 12, 220, 221, 222, 0, 223, 0, 13,
|
||
0, 224, 0, 0, 225, 15, 16, 0, 0, 0,
|
||
226, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 227, 0, 0, 0, 0,
|
||
0, 0, 0, 228, 229, 230, 0, 0, 0, 231,
|
||
232, 0, 0, 0, 0, 0, 0, 233, 0, 0,
|
||
0, 216, 630, 6, 0, 8, 402, 218, 214, 23,
|
||
219, 10, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 234, 235, 0, 0, 12, 220, 221, 222, 0,
|
||
223, 0, 13, 0, 224, 0, 0, 225, 15, 16,
|
||
0, 0, 0, 226, 0, 216, 130, 6, 0, 8,
|
||
402, 218, 214, 0, 219, 10, 0, 0, 227, 0,
|
||
0, 0, 0, 0, 0, 0, 228, 229, 230, 12,
|
||
220, 0, 231, 232, 223, 0, 13, 0, 224, 0,
|
||
233, 225, 15, 16, 0, 0, 0, 226, 0, 216,
|
||
130, 6, 23, 8, 402, 218, 214, 0, 219, 10,
|
||
0, 0, 227, 0, 234, 235, 0, 0, 0, 0,
|
||
228, 229, 230, 12, 220, 0, 231, 232, 223, 0,
|
||
13, 0, 224, 0, 403, 225, 15, 16, 0, 0,
|
||
0, 226, 0, 0, 0, 0, 23, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 227, 0, 234, 235,
|
||
0, 0, 0, 0, 228, 229, 230, 0, 0, 0,
|
||
231, 232, 0, 0, 0, 0, 0, 0, 407, 0,
|
||
0, 568, 160, 6, 161, 8, 162, 0, 0, 0,
|
||
23, 10, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 234, 235, 0, 12, 0, 0, 0, 0,
|
||
0, 0, 13, 0, 0, 0, 0, 0, 15, 16,
|
||
0, 576, 0, 19, 147, 0, 570, 0, 0, 0,
|
||
0, 0, 571, 0, 0, 0, 0, 0, 148, 4,
|
||
130, 6, 7, 8, 9, 0, 0, 616, 149, 10,
|
||
0, 0, 0, 0, 0, 150, 0, 0, 0, 0,
|
||
577, 0, 0, 12, 0, 0, 0, 0, 0, 0,
|
||
13, 0, 23, 0, 0, 0, 15, 16, 0, 606,
|
||
0, 19, 607, 0, 27, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 608, 4, 130, 6,
|
||
7, 8, 9, 0, 0, 204, 609, 10, 0, 0,
|
||
0, 0, 0, 263, 0, 0, 0, 0, 610, 265,
|
||
0, 12, 0, 0, 0, 0, 0, 0, 13, 0,
|
||
23, 0, 0, 0, 15, 16, 0, 606, 0, 19,
|
||
0, 0, 27, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 608, 4, 160, 6, 161, 8,
|
||
162, 0, 0, 0, 609, 10, 0, 0, 0, 0,
|
||
0, 263, 0, 0, 0, 0, 610, 265, 0, 12,
|
||
0, 0, 0, 0, 0, 0, 13, 205, 23, 0,
|
||
0, 0, 15, 16, 0, 17, 0, 19, 147, 0,
|
||
27, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 148, 4, 130, 6, 7, 8, 9, 0,
|
||
0, 204, 149, 10, 0, 0, 0, 0, 0, 150,
|
||
0, 0, 0, 0, 151, 0, 0, 12, 0, 0,
|
||
0, 0, 0, 0, 13, 0, 23, 0, 0, 0,
|
||
15, 16, 0, 17, 0, 19, 163, 0, 27, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
321, 4, 160, 6, 161, 8, 162, 0, 0, 0,
|
||
322, 10, 0, 0, 0, 0, 0, 323, 0, 0,
|
||
0, 0, 324, 0, 0, 12, 0, 0, 0, 0,
|
||
0, 0, 13, 205, 23, 0, 0, 0, 15, 16,
|
||
0, 17, 0, 19, 147, 0, 27, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 148, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 149, 4,
|
||
160, 6, 161, 8, 162, 150, 0, 0, 0, 10,
|
||
151, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 23, 12, 0, 0, 0, 0, 0, 0,
|
||
13, 0, 1002, 0, 27, 0, 15, 16, 0, 17,
|
||
0, 19, 147, 0, 130, 6, 7, 8, 9, 0,
|
||
0, 204, 0, 10, 0, 0, 148, 0, 0, 71,
|
||
6, 0, 8, 270, 0, 0, 149, 12, 10, 0,
|
||
0, 0, 0, 150, 13, 0, 0, 0, 151, 0,
|
||
0, 16, 12, 259, 0, 0, 0, 0, 0, 13,
|
||
23, 0, 0, 0, 0, 0, 16, 0, 259, 0,
|
||
261, 260, 27, 0, 0, 0, 0, 0, 0, 0,
|
||
262, 0, 0, 0, 0, 261, 0, 263, 0, 0,
|
||
0, 0, 264, 265, 0, 262, 0, 0, 0, 0,
|
||
0, 0, 263, 205, 23, 0, 0, 264, 265, 0,
|
||
0, 0, 0, 0, 0, 426, 427, 428, 0, 23,
|
||
429, 430, 431, 432, 433, 434, 435, 436, 437, 438,
|
||
439, 440, 441, 442, 443, 444, 445, 426, 427, 428,
|
||
0, 0, 429, 430, 431, 432, 433, 434, 435, 436,
|
||
437, 438, 439, 440, 441, 442, 443, 444, 445, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 598, 0, 0,
|
||
0, 0, 963, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 426, 427, 428,
|
||
756, 757, 429, 430, 431, 432, 433, 434, 435, 436,
|
||
437, 438, 439, 440, 441, 442, 443, 444, 445, -143,
|
||
426, 427, 428, 0, 0, 429, 430, 431, 432, 433,
|
||
434, 435, 436, 437, 438, 439, 440, 441, 442, 443,
|
||
444, 445, 426, 427, 428, 1122, 0, 429, 430, 431,
|
||
432, 433, 434, 435, 436, 437, 438, 439, 440, 441,
|
||
442, 443, 444, 445, 426, 427, 428, 0, 0, 429,
|
||
430, 431, 432, 433, 434, 435, 436, 437, 438, 439,
|
||
440, 441, 442, 443, 444, 445, 428, 0, 0, 429,
|
||
430, 431, 432, 433, 434, 435, 436, 437, 438, 439,
|
||
440, 441, 442, 443, 444, 445, 430, 431, 432, 433,
|
||
434, 435, 436, 437, 438, 439, 440, 441, 442, 443,
|
||
444, 445, 431, 432, 433, 434, 435, 436, 437, 438,
|
||
439, 440, 441, 442, 443, 444, 445
|
||
};
|
||
|
||
static const short yycheck[] = { 1,
|
||
2, 265, 10, 140, 141, 356, 15, 67, 66, 17,
|
||
39, 106, 15, 15, 274, 593, 252, 299, 40, 564,
|
||
226, 274, 141, 151, 1, 2, 19, 40, 30, 139,
|
||
1023, 1024, 44, 891, 944, 893, 44, 39, 190, 227,
|
||
3, 4, 230, 884, 35, 10, 234, 329, 236, 709,
|
||
54, 1, 2, 111, 10, 10, 244, 10, 60, 35,
|
||
45, 147, 8, 43, 45, 67, 38, 39, 50, 26,
|
||
334, 50, 22, 43, 3, 36, 1, 2, 45, 1,
|
||
30, 50, 0, 41, 45, 24, 65, 54, 85, 39,
|
||
53, 49, 49, 10, 107, 92, 514, 54, 54, 67,
|
||
104, 11, 82, 83, 112, 30, 108, 3, 4, 15,
|
||
50, 40, 82, 83, 105, 54, 22, 125, 82, 104,
|
||
122, 103, 103, 103, 3, 4, 128, 49, 546, 105,
|
||
132, 94, 38, 103, 60, 60, 105, 390, 103, 85,
|
||
50, 104, 105, 165, 54, 1055, 92, 103, 103, 171,
|
||
103, 128, 165, 248, 60, 700, 251, 53, 171, 131,
|
||
132, 40, 314, 103, 43, 158, 116, 117, 118, 306,
|
||
307, 308, 260, 233, 219, 220, 264, 1018, 128, 1172,
|
||
1173, 1022, 227, 93, 844, 230, 103, 306, 307, 234,
|
||
192, 236, 303, 195, 50, 305, 324, 147, 94, 244,
|
||
202, 151, 108, 128, 212, 207, 82, 413, 104, 105,
|
||
116, 117, 118, 3, 4, 94, 34, 3, 4, 50,
|
||
197, 503, 60, 411, 49, 131, 490, 106, 50, 54,
|
||
466, 233, 70, 319, 320, 50, 249, 3, 4, 3,
|
||
4, 147, 192, 3, 4, 151, 268, 50, 104, 251,
|
||
200, 104, 105, 43, 40, 268, 50, 43, 271, 3,
|
||
4, 49, 264, 43, 82, 233, 54, 192, 174, 195,
|
||
195, 1129, 274, 104, 556, 50, 202, 202, 3, 104,
|
||
544, 103, 393, 420, 286, 49, 704, 135, 50, 301,
|
||
105, 197, 82, 301, 200, 873, 202, 875, 843, 43,
|
||
103, 207, 82, 83, 94, 153, 3, 4, 94, 286,
|
||
104, 3, 4, 64, 43, 337, 104, 377, 50, 167,
|
||
106, 1162, 64, 103, 337, 3, 4, 5, 94, 104,
|
||
94, 333, 750, 65, 94, 347, 286, 43, 49, 264,
|
||
246, 103, 364, 403, 762, 251, 50, 407, 40, 274,
|
||
94, 364, 354, 82, 356, 203, 53, 3, 4, 3,
|
||
6, 286, 3, 4, 5, 9, 411, 45, 274, 319,
|
||
320, 3, 4, 50, 324, 377, 82, 83, 50, 85,
|
||
21, 353, 354, 195, 54, 335, 92, 24, 390, 35,
|
||
398, 528, 480, 481, 64, 301, 456, 94, 104, 103,
|
||
368, 403, 94, 50, 45, 407, 356, 333, 333, 528,
|
||
50, 43, 49, 319, 320, 52, 94, 54, 324, 97,
|
||
50, 3, 4, 5, 330, 65, 103, 3, 4, 335,
|
||
6, 356, 104, 105, 45, 403, 386, 387, 698, 407,
|
||
390, 409, 410, 291, 572, 698, 43, 353, 94, 577,
|
||
50, 537, 538, 94, 456, 463, 97, 104, 50, 35,
|
||
428, 49, 94, 45, 105, 390, 50, 104, 54, 105,
|
||
492, 377, 7, 8, 104, 54, 50, 49, 13, 492,
|
||
386, 387, 670, 765, 496, 82, 454, 489, 496, 457,
|
||
50, 773, 304, 50, 43, 343, 498, 915, 10, 34,
|
||
1, 919, 26, 8, 104, 50, 41, 31, 43, 50,
|
||
358, 103, 94, 50, 522, 97, 524, 103, 94, 607,
|
||
104, 333, 610, 24, 103, 26, 50, 54, 52, 103,
|
||
31, 108, 50, 82, 83, 383, 8, 50, 43, 597,
|
||
43, 543, 43, 103, 50, 45, 103, 82, 49, 50,
|
||
456, 52, 564, 54, 103, 60, 50, 50, 103, 465,
|
||
3, 569, 103, 489, 489, 70, 103, 50, 576, 49,
|
||
572, 50, 77, 43, 54, 577, 927, 82, 83, 82,
|
||
104, 82, 83, 489, 85, 103, 50, 537, 538, 401,
|
||
103, 92, 54, 6, 7, 8, 43, 103, 606, 601,
|
||
13, 603, 98, 104, 387, 1, 2, 390, 610, 103,
|
||
103, 108, 82, 83, 622, 1193, 593, 543, 543, 1037,
|
||
103, 34, 572, 1, 103, 670, 22, 577, 41, 43,
|
||
43, 537, 538, 103, 30, 82, 83, 3, 52, 103,
|
||
828, 453, 38, 39, 43, 105, 572, 572, 734, 735,
|
||
43, 577, 577, 104, 105, 668, 103, 607, 667, 471,
|
||
610, 49, 748, 749, 667, 667, 54, 43, 82, 82,
|
||
36, 49, 50, 43, 40, 601, 601, 603, 603, 45,
|
||
104, 49, 82, 82, 83, 610, 54, 593, 700, 82,
|
||
83, 802, 803, 1111, 43, 1113, 698, 3, 4, 43,
|
||
712, 607, 8, 105, 712, 517, 82, 83, 43, 85,
|
||
798, 799, 82, 83, 43, 826, 92, 43, 26, 727,
|
||
116, 117, 118, 783, 103, 573, 728, 822, 823, 52,
|
||
578, 543, 128, 82, 40, 131, 132, 43, 82, 45,
|
||
752, 49, 853, 854, 3, 4, 54, 82, 836, 837,
|
||
82, 147, 82, 82, 60, 151, 82, 1039, 82, 7,
|
||
8, 667, 820, 43, 70, 13, 46, 615, 3, 4,
|
||
103, 77, 43, 698, 776, 50, 82, 83, 174, 10,
|
||
60, 783, 37, 828, 734, 735, 34, 103, 94, 601,
|
||
70, 603, 698, 41, 766, 43, 192, 77, 748, 749,
|
||
106, 197, 82, 83, 200, 40, 712, 815, 43, 1091,
|
||
45, 82, 70, 71, 72, 3, 43, 85, 104, 105,
|
||
931, 823, 49, 108, 92, 60, 776, 54, 734, 735,
|
||
43, 843, 45, 26, 82, 70, 104, 49, 6, 7,
|
||
8, 105, 748, 749, 1071, 13, 854, 82, 798, 799,
|
||
246, 776, 963, 665, 883, 82, 1120, 1121, 1085, 94,
|
||
766, 1088, 870, 108, 676, 873, 34, 85, 264, 82,
|
||
103, 106, 684, 41, 92, 104, 105, 783, 104, 105,
|
||
103, 883, 884, 104, 105, 3, 104, 50, 890, 891,
|
||
286, 893, 798, 799, 108, 897, 873, 865, 875, 54,
|
||
55, 869, 714, 82, 716, 301, 43, 1, 2, 877,
|
||
882, 883, 31, 761, 104, 105, 103, 823, 1029, 104,
|
||
105, 52, 770, 319, 320, 927, 104, 105, 324, 7,
|
||
8, 219, 220, 883, 330, 13, 30, 74, 75, 335,
|
||
50, 78, 1053, 80, 104, 82, 83, 897, 796, 103,
|
||
103, 103, 53, 43, 1065, 103, 34, 353, 354, 103,
|
||
356, 969, 108, 41, 34, 108, 60, 873, 104, 875,
|
||
60, 104, 897, 884, 976, 977, 882, 927, 104, 890,
|
||
70, 68, 69, 70, 71, 72, 33, 77, 104, 103,
|
||
386, 387, 82, 83, 390, 108, 103, 1108, 50, 1110,
|
||
54, 54, 927, 108, 52, 1013, 974, 82, 52, 977,
|
||
978, 1122, 52, 825, 122, 54, 1018, 105, 103, 103,
|
||
1022, 833, 103, 1081, 103, 108, 3, 4, 52, 6,
|
||
7, 8, 103, 82, 128, 1012, 108, 1, 103, 851,
|
||
108, 54, 54, 94, 54, 1053, 103, 3, 4, 108,
|
||
6, 7, 8, 103, 52, 1023, 1024, 34, 103, 82,
|
||
24, 103, 26, 1174, 105, 976, 103, 31, 103, 465,
|
||
103, 48, 49, 103, 54, 923, 1078, 82, 34, 43,
|
||
82, 1218, 1219, 82, 54, 49, 50, 195, 52, 104,
|
||
54, 8, 48, 49, 1096, 104, 49, 49, 192, 15,
|
||
1068, 195, 52, 104, 1241, 54, 1012, 1018, 202, 1077,
|
||
3, 1022, 50, 103, 103, 54, 82, 94, 82, 83,
|
||
104, 85, 99, 100, 101, 104, 104, 1129, 92, 104,
|
||
1132, 66, 67, 68, 69, 70, 71, 72, 94, 247,
|
||
104, 537, 538, 99, 100, 101, 82, 104, 52, 1209,
|
||
104, 82, 1000, 104, 83, 83, 1158, 1005, 105, 103,
|
||
1162, 1163, 16, 104, 49, 105, 103, 1078, 54, 103,
|
||
264, 104, 104, 52, 104, 50, 572, 104, 1180, 104,
|
||
274, 577, 103, 1185, 103, 1096, 1034, 3, 4, 10,
|
||
108, 82, 286, 108, 1042, 303, 304, 593, 104, 104,
|
||
89, 104, 9, 50, 1172, 1173, 82, 1209, 82, 103,
|
||
50, 607, 1220, 1181, 610, 103, 1193, 104, 9, 1221,
|
||
1222, 1132, 103, 103, 40, 333, 104, 43, 10, 45,
|
||
46, 103, 48, 104, 1202, 6, 7, 8, 54, 333,
|
||
103, 10, 13, 351, 60, 104, 0, 1158, 0, 2,
|
||
127, 1162, 1163, 698, 70, 128, 288, 139, 128, 712,
|
||
496, 77, 356, 34, 498, 751, 82, 977, 1055, 1180,
|
||
41, 271, 1084, 165, 1185, 1087, 882, 1116, 94, 815,
|
||
30, 24, 624, 26, 330, 393, 30, 1193, 31, 752,
|
||
106, 731, 897, 401, 776, 398, 390, 622, 354, 324,
|
||
729, 1019, 45, 1209, 1203, 1205, 49, 207, 783, 52,
|
||
1221, 1222, 1012, -1, 3, 4, 712, 425, 426, 427,
|
||
-1, 429, 430, 431, 432, 433, 434, 435, 436, 437,
|
||
438, 439, 440, 441, 442, 443, 444, 445, 734, 735,
|
||
83, -1, 85, 1, 452, 453, -1, 43, -1, 92,
|
||
-1, 40, 748, 749, 43, -1, 45, 46, -1, 48,
|
||
-1, -1, 105, 471, -1, 54, 24, -1, 26, -1,
|
||
766, 60, -1, 31, -1, -1, -1, -1, 74, 75,
|
||
776, 70, 78, 79, 80, 81, 82, 83, 77, -1,
|
||
498, 49, 50, 82, 52, 489, 54, -1, -1, -1,
|
||
-1, -1, 798, 799, -1, 94, -1, -1, -1, 517,
|
||
-1, -1, -1, -1, -1, -1, 524, 106, -1, 1,
|
||
2, -1, -1, -1, 3, 4, -1, 85, -1, -1,
|
||
-1, -1, -1, -1, 92, 543, -1, -1, -1, -1,
|
||
22, -1, -1, -1, -1, -1, 104, -1, 30, 543,
|
||
20, 21, -1, -1, -1, -1, 38, 39, -1, -1,
|
||
-1, 40, 570, 571, 43, -1, 45, 46, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 873, 572, 875,
|
||
-1, 60, -1, 577, 3, 4, 882, 883, 58, 8,
|
||
-1, 70, -1, 601, -1, 603, -1, -1, 77, -1,
|
||
-1, 897, -1, 82, -1, 75, -1, 601, -1, 603,
|
||
-1, -1, -1, 621, -1, 94, 610, -1, -1, -1,
|
||
-1, 40, -1, -1, 43, 104, 45, 106, 636, -1,
|
||
-1, 927, -1, -1, 116, 117, 118, -1, -1, -1,
|
||
-1, 60, -1, -1, 4, 5, 128, 7, 8, 131,
|
||
132, 70, -1, 13, -1, -1, -1, 665, 77, -1,
|
||
-1, -1, -1, 82, -1, 147, -1, 27, 676, 151,
|
||
-1, -1, -1, -1, 34, 94, 684, -1, 148, 149,
|
||
-1, 41, -1, -1, -1, -1, -1, 106, 48, -1,
|
||
-1, -1, 174, 1, -1, 3, 4, 5, 6, 7,
|
||
8, -1, -1, -1, 698, 13, 714, -1, 716, -1,
|
||
192, -1, 720, -1, -1, -1, 1012, -1, 200, 27,
|
||
-1, -1, 82, -1, 194, -1, 34, 35, -1, -1,
|
||
-1, 201, 40, 41, 94, 43, -1, 45, 4, 5,
|
||
6, 7, 8, -1, 226, -1, 54, 13, -1, -1,
|
||
758, -1, 60, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 27, 70, -1, 246, -1, -1, -1, 34, -1,
|
||
252, -1, -1, -1, 82, 41, -1, -1, -1, -1,
|
||
-1, -1, 776, -1, -1, -1, 94, 3, 4, 259,
|
||
-1, 261, 262, -1, 802, 803, 104, 105, 106, -1,
|
||
-1, -1, -1, -1, 286, -1, -1, 815, -1, 817,
|
||
4, 5, 6, 7, 8, -1, -1, 825, 826, 13,
|
||
-1, -1, -1, -1, 40, 833, -1, 43, 94, 45,
|
||
46, -1, -1, 27, -1, -1, -1, 319, 320, -1,
|
||
34, -1, 324, 851, 60, 853, 854, 41, 330, -1,
|
||
-1, 321, 322, 335, 70, -1, -1, -1, -1, 3,
|
||
4, 77, 332, -1, 8, -1, 82, 83, -1, -1,
|
||
-1, 353, 354, -1, 356, -1, -1, -1, 94, 62,
|
||
63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
|
||
106, -1, -1, -1, -1, -1, 40, 1193, -1, 43,
|
||
94, 45, -1, 897, 386, 387, -1, -1, 390, -1,
|
||
-1, -1, -1, 921, 922, -1, 60, -1, 388, -1,
|
||
-1, -1, -1, 931, -1, -1, 70, -1, -1, -1,
|
||
-1, -1, -1, 927, -1, -1, -1, 1, 82, -1,
|
||
4, 5, -1, 7, 8, -1, -1, -1, -1, 13,
|
||
94, -1, -1, -1, -1, 963, -1, 965, -1, -1,
|
||
-1, -1, 106, 27, -1, -1, -1, -1, -1, -1,
|
||
34, -1, 36, 37, -1, -1, -1, 41, 42, 43,
|
||
3, 4, -1, 465, 466, -1, 50, 51, 52, 53,
|
||
-1, -1, 56, 57, 58, 59, 60, 61, 62, 63,
|
||
64, 65, 66, 67, 68, 69, 70, 71, 72, -1,
|
||
74, 75, -1, -1, 78, 79, -1, 40, 488, 83,
|
||
43, 1029, 45, 46, -1, -1, -1, -1, 1036, -1,
|
||
94, -1, -1, -1, -1, -1, -1, 60, -1, -1,
|
||
-1, -1, 106, 107, -1, 1053, -1, 70, -1, -1,
|
||
-1, -1, 3, 4, 77, 537, 538, 1065, -1, 82,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 539,
|
||
540, 94, 542, -1, -1, -1, 1084, -1, -1, 1087,
|
||
-1, 104, -1, 106, 554, 555, -1, -1, -1, 40,
|
||
572, -1, 43, -1, 45, 577, -1, -1, -1, 569,
|
||
1108, -1, 1110, -1, -1, -1, 576, -1, -1, 60,
|
||
-1, -1, -1, -1, 1122, 585, 586, 587, -1, 70,
|
||
-1, -1, -1, -1, -1, 607, 77, -1, 610, -1,
|
||
600, 82, 602, -1, -1, 605, 606, -1, 608, 609,
|
||
-1, -1, -1, 94, 63, 64, 65, 66, 67, 68,
|
||
69, 70, 71, 72, -1, 106, 1, -1, 3, 4,
|
||
5, 6, 7, 8, 9, 10, 1174, 12, 13, 14,
|
||
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, -1, 32, -1, 34,
|
||
-1, 36, 37, -1, 39, 40, 41, 679, 3, 4,
|
||
45, -1, -1, 48, 49, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 60, -1, 687, 688, -1,
|
||
-1, 691, -1, 68, 69, 70, -1, -1, -1, 74,
|
||
75, -1, -1, -1, -1, 40, -1, 82, 43, 84,
|
||
45, 86, 87, 88, -1, 90, 91, 92, -1, 94,
|
||
-1, -1, 734, 735, -1, 60, -1, -1, -1, 104,
|
||
105, 106, 107, -1, -1, 70, 748, 749, -1, -1,
|
||
-1, -1, 77, -1, 744, 745, 746, 82, 83, -1,
|
||
-1, -1, 4, 5, 766, 7, 8, -1, -1, 94,
|
||
-1, 13, -1, -1, 776, -1, -1, -1, -1, -1,
|
||
-1, 106, -1, -1, -1, 27, -1, -1, -1, -1,
|
||
-1, -1, 34, -1, -1, -1, 798, 799, -1, 41,
|
||
-1, -1, -1, 1, -1, 3, 4, 5, 6, 7,
|
||
8, 9, 10, -1, 12, 13, 14, -1, 16, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
||
28, 29, 30, -1, 32, -1, 34, -1, 36, 37,
|
||
-1, 39, 40, 41, -1, -1, -1, 45, -1, 839,
|
||
48, 49, 94, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 60, -1, -1, -1, -1, -1, -1, -1,
|
||
68, 69, 70, -1, -1, -1, 74, 75, -1, -1,
|
||
882, 883, -1, -1, 82, -1, 84, -1, -1, 87,
|
||
-1, -1, 90, 91, 92, 897, 94, -1, -1, -1,
|
||
-1, 4, 5, -1, 7, 8, 104, 105, 106, 107,
|
||
13, -1, 902, 903, 904, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 27, 927, -1, -1, 918, -1,
|
||
-1, 34, -1, -1, -1, -1, 926, -1, 41, -1,
|
||
-1, -1, 932, 933, 934, 935, 936, 937, 1, -1,
|
||
3, 4, 5, 6, 7, 8, 9, 10, -1, 12,
|
||
13, 14, -1, 16, 17, 18, 19, 20, 21, 22,
|
||
23, 24, 25, 26, 27, 28, 29, 30, -1, 32,
|
||
-1, 34, -1, 36, 37, -1, 39, 40, 41, -1,
|
||
-1, 94, 45, -1, -1, 48, 49, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 60, -1, -1,
|
||
-1, -1, -1, -1, -1, 68, 69, 70, -1, -1,
|
||
-1, 74, 75, -1, -1, -1, -1, -1, -1, 82,
|
||
-1, 84, -1, -1, 87, -1, -1, 90, 91, 92,
|
||
-1, 94, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 104, 105, 106, 107, 1, -1, 3, 4, 5,
|
||
6, 7, 8, 9, 10, -1, 12, 13, 14, -1,
|
||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
||
26, 27, 28, 29, 30, -1, 32, -1, 34, -1,
|
||
36, 37, -1, 39, 40, 41, -1, -1, -1, 45,
|
||
-1, -1, 48, 49, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 60, -1, -1, -1, -1, -1,
|
||
-1, -1, 68, 69, 70, -1, -1, -1, 74, 75,
|
||
-1, -1, -1, -1, -1, -1, 82, -1, 84, -1,
|
||
-1, 87, -1, -1, 90, 91, 92, -1, 94, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 104, 105,
|
||
106, 107, 1, -1, 3, 4, 5, 6, 7, 8,
|
||
9, 10, -1, 12, 13, 14, -1, 16, 17, 18,
|
||
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
||
29, 30, -1, 32, -1, 34, -1, 36, 37, -1,
|
||
39, 40, 41, -1, -1, -1, 45, -1, -1, 48,
|
||
49, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 60, -1, -1, -1, -1, -1, -1, -1, 68,
|
||
69, 70, -1, -1, -1, 74, 75, -1, -1, -1,
|
||
-1, -1, -1, 82, -1, 84, -1, -1, 87, -1,
|
||
-1, 90, 91, 92, -1, 94, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 104, 105, 106, 107, 1,
|
||
-1, 3, 4, 5, 6, 7, 8, 9, 10, -1,
|
||
12, 13, 14, -1, 16, 17, 18, 19, 20, 21,
|
||
22, 23, 24, 25, 26, 27, 28, 29, 30, -1,
|
||
32, -1, 34, -1, 36, 37, -1, 39, 40, 41,
|
||
-1, -1, -1, 45, -1, -1, 48, 49, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, 68, 69, 70, -1,
|
||
-1, -1, 74, 75, -1, -1, -1, -1, -1, -1,
|
||
82, -1, 84, -1, -1, 87, -1, -1, 90, 91,
|
||
92, -1, 94, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 104, 105, 106, 107, 1, -1, 3, 4,
|
||
5, 6, 7, 8, 9, 10, -1, 12, 13, 14,
|
||
-1, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, -1, 32, -1, 34,
|
||
-1, 36, 37, -1, 39, 40, 41, -1, -1, -1,
|
||
45, -1, -1, 48, 49, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
|
||
-1, -1, -1, 68, 69, 70, -1, -1, -1, 74,
|
||
75, -1, -1, -1, -1, -1, -1, 82, -1, 84,
|
||
-1, -1, 87, -1, -1, 90, 91, 92, -1, 94,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 104,
|
||
105, 106, 107, 1, -1, 3, 4, 5, 6, 7,
|
||
8, 9, 10, -1, 12, 13, 14, -1, 16, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
||
28, 29, 30, -1, 32, -1, 34, -1, 36, 37,
|
||
-1, 39, 40, 41, -1, -1, -1, 45, -1, -1,
|
||
48, 49, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 60, -1, -1, -1, -1, -1, -1, -1,
|
||
68, 69, 70, -1, -1, -1, 74, 75, -1, -1,
|
||
-1, -1, -1, -1, 82, -1, 84, -1, -1, 87,
|
||
-1, -1, 90, 91, 92, -1, 94, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 104, -1, 106, 107,
|
||
1, -1, 3, 4, 5, 6, 7, 8, 9, 10,
|
||
-1, 12, 13, 14, -1, 16, 17, 18, 19, 20,
|
||
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
||
-1, 32, -1, 34, -1, 36, 37, -1, 39, 40,
|
||
41, -1, -1, -1, 45, -1, -1, 48, 49, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, 68, 69, 70,
|
||
-1, -1, -1, 74, 75, -1, -1, -1, -1, -1,
|
||
-1, 82, -1, 84, -1, -1, 87, -1, -1, 90,
|
||
91, 92, -1, 94, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 104, -1, 106, 107, 1, -1, 3,
|
||
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
||
60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
||
70, 71, 72, 27, 28, 29, 30, -1, 32, -1,
|
||
34, -1, 36, 37, -1, 39, 40, 41, -1, -1,
|
||
-1, 45, 51, 52, 53, -1, -1, 56, 57, 58,
|
||
59, 60, 61, 62, 63, 64, 60, 66, 67, 68,
|
||
69, 70, 71, 72, 68, 69, 70, -1, -1, -1,
|
||
74, 75, -1, -1, -1, -1, -1, -1, 82, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 93,
|
||
94, -1, -1, -1, -1, -1, -1, -1, -1, 103,
|
||
-1, -1, 106, 107, 1, -1, 3, 4, 5, 6,
|
||
7, 8, 9, 10, 11, 12, 13, 61, 62, 63,
|
||
64, 65, 66, 67, 68, 69, 70, 71, 72, -1,
|
||
27, 28, 29, 30, -1, 32, -1, 34, -1, 36,
|
||
37, -1, 39, 40, 41, -1, -1, -1, 45, 59,
|
||
60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
||
70, 71, 72, 60, -1, -1, -1, -1, -1, -1,
|
||
-1, 68, 69, 70, -1, -1, -1, 74, 75, -1,
|
||
-1, -1, -1, -1, -1, 82, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 93, 94, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 103, -1, -1, 106,
|
||
107, 1, -1, 3, 4, 5, 6, 7, 8, 9,
|
||
10, 11, 12, 13, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 27, 28, 29,
|
||
30, -1, 32, -1, 34, -1, 36, 37, -1, 39,
|
||
40, 41, -1, -1, -1, 45, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
60, -1, -1, -1, -1, -1, -1, -1, 68, 69,
|
||
70, -1, -1, -1, 74, 75, -1, -1, -1, -1,
|
||
-1, -1, 82, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 93, 94, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 103, -1, -1, 106, 107, 1, -1,
|
||
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
|
||
13, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 27, 28, 29, 30, -1, 32,
|
||
-1, 34, -1, 36, 37, -1, 39, 40, 41, -1,
|
||
-1, -1, 45, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 60, -1, -1,
|
||
-1, -1, -1, -1, -1, 68, 69, 70, -1, -1,
|
||
-1, 74, 75, -1, -1, -1, -1, -1, -1, 82,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
93, 94, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
103, -1, -1, 106, 107, 1, -1, 3, 4, 5,
|
||
6, 7, 8, 9, 10, 11, 12, 13, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 3, 4, -1, -1,
|
||
-1, 27, 28, 29, 30, -1, 32, -1, 34, -1,
|
||
36, 37, -1, 39, 40, 41, -1, -1, -1, 45,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 40, 60, -1, 43, -1, 45, 46,
|
||
-1, -1, 68, 69, 70, -1, -1, -1, 74, 75,
|
||
-1, -1, -1, 60, -1, -1, 82, -1, -1, -1,
|
||
-1, -1, -1, 70, -1, -1, -1, 93, 94, -1,
|
||
77, -1, -1, -1, -1, 82, -1, 103, -1, -1,
|
||
106, 107, 1, -1, 3, 4, 5, 94, 7, 8,
|
||
9, 10, -1, 12, 13, -1, -1, -1, -1, 106,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 27, 28,
|
||
29, 30, -1, 32, -1, 34, -1, 36, 37, -1,
|
||
39, 40, 41, -1, -1, -1, 45, -1, -1, -1,
|
||
49, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 60, -1, -1, -1, -1, -1, -1, -1, 68,
|
||
69, 70, -1, -1, -1, 74, 75, -1, -1, -1,
|
||
-1, -1, -1, 82, 83, 1, -1, 3, 4, 5,
|
||
-1, 7, 8, 9, 10, 94, 12, 13, -1, -1,
|
||
-1, -1, -1, -1, 20, -1, 105, 106, 107, -1,
|
||
-1, 27, 28, 29, 30, -1, 32, -1, 34, -1,
|
||
36, 37, -1, 39, 40, 41, -1, -1, -1, 45,
|
||
-1, -1, -1, 49, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 60, -1, -1, -1, -1, -1,
|
||
-1, -1, 68, 69, 70, -1, -1, -1, 74, 75,
|
||
-1, -1, -1, -1, -1, -1, 82, -1, 1, -1,
|
||
3, 4, 5, 6, 7, 8, 9, 10, 94, 12,
|
||
13, -1, -1, -1, -1, -1, -1, -1, -1, 105,
|
||
106, 107, -1, -1, 27, 28, 29, 30, -1, 32,
|
||
-1, 34, -1, 36, 37, -1, 39, 40, 41, -1,
|
||
-1, -1, 45, -1, -1, -1, 49, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 60, -1, -1,
|
||
-1, -1, -1, -1, -1, 68, 69, 70, -1, -1,
|
||
-1, 74, 75, -1, -1, -1, -1, -1, -1, 82,
|
||
-1, 1, -1, 3, 4, 5, -1, 7, 8, 9,
|
||
10, 94, 12, 13, -1, -1, -1, -1, -1, -1,
|
||
20, 104, -1, 106, 107, -1, -1, 27, 28, 29,
|
||
30, -1, 32, -1, 34, -1, 36, 37, -1, 39,
|
||
40, 41, -1, -1, -1, 45, -1, -1, -1, 49,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
60, -1, -1, -1, -1, -1, -1, -1, 68, 69,
|
||
70, -1, -1, -1, 74, 75, -1, -1, -1, -1,
|
||
-1, -1, 82, -1, 1, -1, 3, 4, 5, -1,
|
||
7, 8, 9, 10, 94, 12, 13, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 105, 106, 107, -1, -1,
|
||
27, 28, 29, 30, -1, 32, -1, 34, -1, 36,
|
||
37, -1, 39, 40, 41, -1, -1, -1, 45, -1,
|
||
-1, -1, 49, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 60, -1, -1, -1, -1, -1, -1,
|
||
-1, 68, 69, 70, -1, -1, -1, 74, 75, -1,
|
||
-1, -1, -1, -1, -1, 82, 83, 1, -1, 3,
|
||
4, 5, -1, 7, 8, 9, 10, 94, 12, 13,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 106,
|
||
107, -1, -1, 27, 28, 29, 30, -1, 32, -1,
|
||
34, -1, 36, 37, -1, 39, 40, 41, -1, -1,
|
||
-1, 45, -1, -1, -1, 49, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 60, -1, -1, -1,
|
||
-1, -1, -1, -1, 68, 69, 70, -1, -1, -1,
|
||
74, 75, -1, -1, -1, -1, -1, -1, 82, -1,
|
||
1, -1, 3, 4, 5, -1, 7, 8, 9, 10,
|
||
94, 12, 13, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 106, 107, -1, -1, 27, 28, 29, 30,
|
||
-1, 32, -1, 34, -1, 36, 37, -1, 39, 40,
|
||
41, -1, -1, -1, 45, -1, -1, -1, 49, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, 68, 69, 70,
|
||
-1, -1, -1, 74, 75, -1, -1, -1, -1, -1,
|
||
-1, 82, -1, 1, -1, 3, 4, 5, -1, 7,
|
||
8, 9, 10, 94, 12, 13, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 106, 107, -1, -1, 27,
|
||
28, 29, 30, -1, 32, -1, 34, -1, 36, 37,
|
||
-1, 39, 40, 41, -1, -1, -1, 45, -1, -1,
|
||
4, 5, 6, 7, 8, -1, 54, 11, -1, 13,
|
||
-1, -1, 60, -1, -1, -1, -1, -1, -1, -1,
|
||
68, 69, 70, 27, -1, -1, 74, 75, -1, -1,
|
||
34, -1, -1, -1, 82, -1, 1, 41, 3, 4,
|
||
5, -1, 7, 8, 9, 10, 94, 12, 13, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 106, 107,
|
||
-1, -1, 27, 28, 29, 30, -1, 32, -1, 34,
|
||
-1, 36, 37, -1, 39, 40, 41, -1, -1, -1,
|
||
45, -1, -1, -1, -1, -1, -1, -1, -1, 93,
|
||
94, -1, -1, -1, -1, 60, -1, -1, -1, -1,
|
||
-1, -1, -1, 68, 69, 70, -1, -1, -1, 74,
|
||
75, -1, -1, -1, -1, -1, -1, 82, -1, 1,
|
||
-1, 3, 4, 5, -1, 7, 8, 9, 10, 94,
|
||
12, 13, -1, -1, -1, -1, -1, -1, -1, 104,
|
||
-1, 106, 107, -1, -1, 27, 28, 29, 30, -1,
|
||
32, -1, 34, -1, 36, 37, -1, 39, 40, 41,
|
||
-1, -1, -1, 45, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, 68, 69, 70, -1,
|
||
-1, -1, 74, 75, -1, -1, -1, -1, -1, -1,
|
||
82, -1, 1, -1, 3, 4, 5, -1, 7, 8,
|
||
9, 10, 94, 12, 13, -1, -1, -1, -1, -1,
|
||
-1, 103, -1, -1, 106, 107, -1, -1, 27, 28,
|
||
29, 30, -1, 32, -1, 34, -1, 36, 37, -1,
|
||
39, 40, 41, -1, -1, -1, 45, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 0,
|
||
1, 60, 3, 4, 5, 6, 7, 8, -1, 68,
|
||
69, 70, 13, -1, -1, 74, 75, -1, -1, -1,
|
||
-1, -1, -1, 82, -1, 26, 27, -1, -1, -1,
|
||
-1, -1, -1, 34, -1, 94, -1, 38, -1, 40,
|
||
41, -1, 43, 44, 45, -1, -1, 106, 107, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 70,
|
||
-1, -1, -1, 3, 4, 5, -1, 7, 8, 9,
|
||
10, 82, 12, 13, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 94, 95, 96, -1, 27, 28, 29,
|
||
30, -1, 32, 104, 34, 106, 36, -1, -1, 39,
|
||
40, 41, -1, -1, -1, 45, 1, -1, 3, 4,
|
||
5, 6, 7, 8, -1, -1, -1, -1, 13, -1,
|
||
60, -1, -1, -1, -1, -1, -1, -1, 68, 69,
|
||
70, 26, 27, -1, 74, 75, -1, -1, -1, 34,
|
||
-1, -1, 82, 38, -1, 40, 41, -1, 43, 44,
|
||
45, -1, -1, -1, 94, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 60, 106, 107, 108, -1,
|
||
-1, -1, -1, -1, -1, 70, -1, -1, -1, 1,
|
||
-1, 3, 4, 5, 6, 7, 8, 82, -1, -1,
|
||
-1, 13, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
95, 96, -1, -1, 26, 27, -1, -1, -1, 104,
|
||
105, 106, 34, -1, -1, -1, 38, -1, 40, 41,
|
||
-1, 43, 44, 45, 1, -1, 3, 4, 5, 6,
|
||
7, 8, -1, -1, -1, -1, 13, -1, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 70, -1,
|
||
27, -1, -1, -1, -1, -1, -1, 34, 35, -1,
|
||
82, -1, -1, 40, 41, -1, 43, -1, 45, -1,
|
||
-1, -1, 94, 95, 96, -1, -1, 54, -1, -1,
|
||
-1, -1, 104, 60, 106, -1, -1, -1, -1, -1,
|
||
-1, -1, 1, 70, 3, 4, 5, 6, 7, 8,
|
||
-1, -1, 3, 4, 13, 82, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 94, 27, -1,
|
||
-1, -1, -1, -1, -1, 34, 35, 104, 105, 106,
|
||
-1, 40, 41, -1, 43, -1, 45, -1, -1, 40,
|
||
-1, -1, 43, -1, 45, 54, -1, -1, -1, -1,
|
||
1, 60, 3, 4, 5, 6, 7, 8, -1, 60,
|
||
-1, 70, 13, -1, -1, -1, -1, -1, -1, 70,
|
||
-1, -1, -1, 82, -1, -1, 27, -1, -1, -1,
|
||
-1, 82, -1, 34, 35, 94, -1, -1, -1, 40,
|
||
41, -1, 43, 94, 45, -1, 105, 106, -1, -1,
|
||
-1, -1, -1, 54, -1, 106, -1, -1, 1, 60,
|
||
3, 4, 5, 6, 7, 8, -1, -1, -1, 70,
|
||
13, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 82, -1, -1, 27, -1, -1, -1, -1, -1,
|
||
-1, 34, -1, 94, -1, -1, -1, 40, 41, -1,
|
||
43, -1, 45, -1, 105, 106, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 1, 60, 3, 4,
|
||
5, 6, 7, 8, -1, -1, -1, 70, 13, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 82,
|
||
-1, -1, 27, -1, -1, -1, -1, -1, -1, 34,
|
||
-1, 94, 95, -1, -1, 40, 41, -1, 43, -1,
|
||
45, 104, -1, 106, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 70, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 82, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
-1, -1, -1, 3, 4, 5, 6, 7, 8, 9,
|
||
10, 106, 12, 13, 14, -1, 16, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
||
30, -1, 32, -1, 34, -1, 36, -1, -1, 39,
|
||
40, 41, -1, -1, -1, 45, -1, -1, 48, 49,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
60, -1, -1, -1, -1, -1, -1, -1, 68, 69,
|
||
70, -1, -1, -1, 74, 75, -1, -1, -1, -1,
|
||
-1, -1, 82, -1, 84, -1, -1, 87, -1, -1,
|
||
90, 91, 92, -1, 94, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 104, 105, 106, 107, 3, 4,
|
||
5, 6, 7, 8, 9, 10, -1, 12, 13, 14,
|
||
-1, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, -1, 32, -1, 34,
|
||
-1, 36, -1, -1, 39, 40, 41, -1, -1, -1,
|
||
45, -1, -1, 48, 49, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 60, -1, -1, 3, 4,
|
||
-1, -1, -1, 68, 69, 70, -1, -1, -1, 74,
|
||
75, -1, -1, -1, -1, -1, -1, 82, -1, 84,
|
||
-1, -1, 87, -1, -1, 90, 91, 92, -1, 94,
|
||
-1, -1, -1, -1, -1, 40, -1, -1, 43, 104,
|
||
45, 106, 107, 3, 4, 5, -1, 7, 8, 9,
|
||
10, -1, 12, 13, -1, 60, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 70, -1, 27, 28, 29,
|
||
30, -1, 32, -1, 34, -1, 36, 82, -1, 39,
|
||
40, 41, -1, -1, -1, 45, -1, -1, -1, 94,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
60, 106, -1, 3, 4, -1, -1, -1, 68, 69,
|
||
70, -1, -1, -1, 74, 75, -1, -1, -1, -1,
|
||
-1, -1, 82, 83, -1, -1, 3, 4, 5, -1,
|
||
7, 8, 9, 10, 94, 12, 13, -1, -1, -1,
|
||
40, -1, -1, 43, -1, 45, 106, 107, -1, -1,
|
||
27, 28, 29, 30, -1, 32, -1, 34, -1, 36,
|
||
60, -1, 39, 40, 41, -1, -1, -1, 45, -1,
|
||
70, -1, 49, -1, -1, -1, -1, 77, -1, -1,
|
||
-1, -1, 82, 60, -1, -1, 3, 4, -1, -1,
|
||
-1, 68, 69, 70, 94, -1, -1, 74, 75, -1,
|
||
-1, -1, -1, -1, -1, 82, 106, -1, -1, 3,
|
||
4, 5, -1, 7, 8, 9, 10, 94, 12, 13,
|
||
-1, -1, -1, 40, -1, -1, 43, -1, 45, 106,
|
||
107, -1, -1, 27, 28, 29, 30, -1, 32, -1,
|
||
34, -1, 36, 60, -1, 39, 40, 41, -1, -1,
|
||
-1, 45, -1, 70, -1, -1, -1, -1, -1, -1,
|
||
77, -1, -1, -1, -1, 82, 60, -1, -1, -1,
|
||
-1, -1, -1, -1, 68, 69, 70, 94, -1, -1,
|
||
74, 75, -1, -1, -1, -1, -1, -1, 82, 106,
|
||
-1, -1, 3, 4, 5, -1, 7, 8, 9, 10,
|
||
94, 12, 13, -1, -1, -1, -1, -1, -1, -1,
|
||
104, -1, 106, 107, -1, -1, 27, 28, 29, 30,
|
||
-1, 32, -1, 34, -1, 36, -1, -1, 39, 40,
|
||
41, -1, -1, -1, 45, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, 68, 69, 70,
|
||
-1, -1, -1, 74, 75, -1, -1, -1, -1, -1,
|
||
-1, 82, -1, -1, -1, 3, 4, 5, -1, 7,
|
||
8, 9, 10, 94, 12, 13, -1, -1, -1, -1,
|
||
-1, -1, -1, 104, -1, 106, 107, -1, -1, 27,
|
||
28, 29, 30, -1, 32, -1, 34, -1, 36, -1,
|
||
-1, 39, 40, 41, -1, -1, -1, 45, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 60, -1, -1, -1, -1, -1, -1, -1,
|
||
68, 69, 70, -1, -1, -1, 74, 75, -1, -1,
|
||
-1, -1, -1, -1, 82, -1, -1, -1, 3, 4,
|
||
5, -1, 7, 8, 9, 10, 94, 12, 13, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 106, 107,
|
||
-1, -1, 27, 28, 29, 30, -1, 32, -1, 34,
|
||
-1, 36, -1, -1, 39, 40, 41, -1, -1, -1,
|
||
45, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
|
||
-1, -1, -1, 68, 69, 70, -1, -1, -1, 74,
|
||
75, -1, -1, -1, -1, -1, -1, 82, -1, -1,
|
||
-1, 3, 4, 5, -1, 7, 8, 9, 10, 94,
|
||
12, 13, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 106, 107, -1, -1, 27, 28, 29, 30, -1,
|
||
32, -1, 34, -1, 36, -1, -1, 39, 40, 41,
|
||
-1, -1, -1, 45, -1, 3, 4, 5, -1, 7,
|
||
8, 9, 10, -1, 12, 13, -1, -1, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, 68, 69, 70, 27,
|
||
28, -1, 74, 75, 32, -1, 34, -1, 36, -1,
|
||
82, 39, 40, 41, -1, -1, -1, 45, -1, 3,
|
||
4, 5, 94, 7, 8, 9, 10, -1, 12, 13,
|
||
-1, -1, 60, -1, 106, 107, -1, -1, -1, -1,
|
||
68, 69, 70, 27, 28, -1, 74, 75, 32, -1,
|
||
34, -1, 36, -1, 82, 39, 40, 41, -1, -1,
|
||
-1, 45, -1, -1, -1, -1, 94, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 60, -1, 106, 107,
|
||
-1, -1, -1, -1, 68, 69, 70, -1, -1, -1,
|
||
74, 75, -1, -1, -1, -1, -1, -1, 82, -1,
|
||
-1, 3, 4, 5, 6, 7, 8, -1, -1, -1,
|
||
94, 13, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 106, 107, -1, 27, -1, -1, -1, -1,
|
||
-1, -1, 34, -1, -1, -1, -1, -1, 40, 41,
|
||
-1, 43, -1, 45, 46, -1, 48, -1, -1, -1,
|
||
-1, -1, 54, -1, -1, -1, -1, -1, 60, 3,
|
||
4, 5, 6, 7, 8, -1, -1, 11, 70, 13,
|
||
-1, -1, -1, -1, -1, 77, -1, -1, -1, -1,
|
||
82, -1, -1, 27, -1, -1, -1, -1, -1, -1,
|
||
34, -1, 94, -1, -1, -1, 40, 41, -1, 43,
|
||
-1, 45, 46, -1, 106, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 60, 3, 4, 5,
|
||
6, 7, 8, -1, -1, 11, 70, 13, -1, -1,
|
||
-1, -1, -1, 77, -1, -1, -1, -1, 82, 83,
|
||
-1, 27, -1, -1, -1, -1, -1, -1, 34, -1,
|
||
94, -1, -1, -1, 40, 41, -1, 43, -1, 45,
|
||
-1, -1, 106, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 60, 3, 4, 5, 6, 7,
|
||
8, -1, -1, -1, 70, 13, -1, -1, -1, -1,
|
||
-1, 77, -1, -1, -1, -1, 82, 83, -1, 27,
|
||
-1, -1, -1, -1, -1, -1, 34, 93, 94, -1,
|
||
-1, -1, 40, 41, -1, 43, -1, 45, 46, -1,
|
||
106, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 60, 3, 4, 5, 6, 7, 8, -1,
|
||
-1, 11, 70, 13, -1, -1, -1, -1, -1, 77,
|
||
-1, -1, -1, -1, 82, -1, -1, 27, -1, -1,
|
||
-1, -1, -1, -1, 34, -1, 94, -1, -1, -1,
|
||
40, 41, -1, 43, -1, 45, 104, -1, 106, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
60, 3, 4, 5, 6, 7, 8, -1, -1, -1,
|
||
70, 13, -1, -1, -1, -1, -1, 77, -1, -1,
|
||
-1, -1, 82, -1, -1, 27, -1, -1, -1, -1,
|
||
-1, -1, 34, 93, 94, -1, -1, -1, 40, 41,
|
||
-1, 43, -1, 45, 46, -1, 106, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 70, 3,
|
||
4, 5, 6, 7, 8, 77, -1, -1, -1, 13,
|
||
82, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 94, 27, -1, -1, -1, -1, -1, -1,
|
||
34, -1, 104, -1, 106, -1, 40, 41, -1, 43,
|
||
-1, 45, 46, -1, 4, 5, 6, 7, 8, -1,
|
||
-1, 11, -1, 13, -1, -1, 60, -1, -1, 4,
|
||
5, -1, 7, 8, -1, -1, 70, 27, 13, -1,
|
||
-1, -1, -1, 77, 34, -1, -1, -1, 82, -1,
|
||
-1, 41, 27, 43, -1, -1, -1, -1, -1, 34,
|
||
94, -1, -1, -1, -1, -1, 41, -1, 43, -1,
|
||
60, 46, 106, -1, -1, -1, -1, -1, -1, -1,
|
||
70, -1, -1, -1, -1, 60, -1, 77, -1, -1,
|
||
-1, -1, 82, 83, -1, 70, -1, -1, -1, -1,
|
||
-1, -1, 77, 93, 94, -1, -1, 82, 83, -1,
|
||
-1, -1, -1, -1, -1, 51, 52, 53, -1, 94,
|
||
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
|
||
66, 67, 68, 69, 70, 71, 72, 51, 52, 53,
|
||
-1, -1, 56, 57, 58, 59, 60, 61, 62, 63,
|
||
64, 65, 66, 67, 68, 69, 70, 71, 72, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 31, -1, -1,
|
||
-1, -1, 108, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 51, 52, 53,
|
||
104, 105, 56, 57, 58, 59, 60, 61, 62, 63,
|
||
64, 65, 66, 67, 68, 69, 70, 71, 72, 50,
|
||
51, 52, 53, -1, -1, 56, 57, 58, 59, 60,
|
||
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
||
71, 72, 51, 52, 53, 54, -1, 56, 57, 58,
|
||
59, 60, 61, 62, 63, 64, 65, 66, 67, 68,
|
||
69, 70, 71, 72, 51, 52, 53, -1, -1, 56,
|
||
57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
|
||
67, 68, 69, 70, 71, 72, 53, -1, -1, 56,
|
||
57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
|
||
67, 68, 69, 70, 71, 72, 57, 58, 59, 60,
|
||
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
||
71, 72, 58, 59, 60, 61, 62, 63, 64, 65,
|
||
66, 67, 68, 69, 70, 71, 72
|
||
};
|
||
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
|
||
#line 3 "bison.simple"
|
||
|
||
/* Skeleton output parser for bison,
|
||
Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
|
||
|
||
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 1, 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. */
|
||
|
||
|
||
#ifndef alloca
|
||
#ifdef __GNUC__
|
||
#define alloca __builtin_alloca
|
||
#else /* not GNU C. */
|
||
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__)
|
||
#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
|
||
#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
|
||
#define YYLEX yylex(&yylval, &yylloc)
|
||
#else
|
||
#define YYLEX yylex(&yylval)
|
||
#endif
|
||
#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
|
||
|
||
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
|
||
#define __yy_bcopy(FROM,TO,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_bcopy (from, to, count)
|
||
char *from;
|
||
char *to;
|
||
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_bcopy (char *from, char *to, int count)
|
||
{
|
||
register char *f = from;
|
||
register char *t = to;
|
||
register int i = count;
|
||
|
||
while (i-- > 0)
|
||
*t++ = *f++;
|
||
}
|
||
|
||
#endif
|
||
#endif
|
||
|
||
#line 169 "bison.simple"
|
||
int
|
||
yyparse()
|
||
{
|
||
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; /* 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. */
|
||
|
||
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. */
|
||
yyoverflow("parser stack overflow",
|
||
&yyss1, size * sizeof (*yyssp),
|
||
&yyvs1, size * sizeof (*yyvsp),
|
||
#ifdef YYLSP_NEEDED
|
||
&yyls1, size * sizeof (*yylsp),
|
||
#endif
|
||
&yystacksize);
|
||
|
||
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_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
|
||
yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
|
||
__yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
|
||
#ifdef YYLSP_NEEDED
|
||
yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
|
||
__yy_bcopy ((char *)yyls1, (char *)yyls, 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
|
||
|
||
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];
|
||
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 symboles being reduced, and their result. */
|
||
for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
|
||
fprintf (stderr, "%s ", yytname[yyrhs[i]]);
|
||
fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
|
||
}
|
||
#endif
|
||
|
||
|
||
switch (yyn) {
|
||
|
||
case 2:
|
||
#line 302 "cp-parse.y"
|
||
{ finish_file (); ;
|
||
break;}
|
||
case 3:
|
||
#line 310 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 4:
|
||
#line 311 "cp-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 5:
|
||
#line 313 "cp-parse.y"
|
||
{yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 6:
|
||
#line 317 "cp-parse.y"
|
||
{ have_extern_spec = 1;
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 7:
|
||
#line 321 "cp-parse.y"
|
||
{ have_extern_spec = 0; ;
|
||
break;}
|
||
case 8:
|
||
#line 326 "cp-parse.y"
|
||
{ if (pending_inlines) do_pending_inlines (); ;
|
||
break;}
|
||
case 9:
|
||
#line 328 "cp-parse.y"
|
||
{ if (pending_inlines) do_pending_inlines (); ;
|
||
break;}
|
||
case 10:
|
||
#line 330 "cp-parse.y"
|
||
{ if (pending_inlines) do_pending_inlines (); ;
|
||
break;}
|
||
case 12:
|
||
#line 333 "cp-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids use of `asm' keyword");
|
||
if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
|
||
assemble_asm (yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 13:
|
||
#line 338 "cp-parse.y"
|
||
{ pop_lang_context (); ;
|
||
break;}
|
||
case 14:
|
||
#line 340 "cp-parse.y"
|
||
{ pop_lang_context (); ;
|
||
break;}
|
||
case 15:
|
||
#line 342 "cp-parse.y"
|
||
{ if (pending_inlines) do_pending_inlines ();
|
||
pop_lang_context (); ;
|
||
break;}
|
||
case 16:
|
||
#line 345 "cp-parse.y"
|
||
{ if (pending_inlines) do_pending_inlines ();
|
||
pop_lang_context (); ;
|
||
break;}
|
||
case 17:
|
||
#line 351 "cp-parse.y"
|
||
{ push_lang_context (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 18:
|
||
#line 356 "cp-parse.y"
|
||
{ begin_template_parm_list (); ;
|
||
break;}
|
||
case 19:
|
||
#line 358 "cp-parse.y"
|
||
{ yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 20:
|
||
#line 363 "cp-parse.y"
|
||
{ yyval.ttype = process_template_parm (0, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 21:
|
||
#line 365 "cp-parse.y"
|
||
{ yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 22:
|
||
#line 376 "cp-parse.y"
|
||
{
|
||
if (yyvsp[-1].ttype != class_type_node)
|
||
error ("template type parameter must use keyword `class'");
|
||
yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 23:
|
||
#line 382 "cp-parse.y"
|
||
{
|
||
if (yyvsp[-3].ttype != class_type_node)
|
||
error ("template type parameter must use keyword `class'");
|
||
warning ("restricted template type parameters not yet implemented");
|
||
yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 24:
|
||
#line 389 "cp-parse.y"
|
||
{
|
||
if (yyvsp[-2].ttype != class_type_node)
|
||
error ("template type parameter must use keyword `class'");
|
||
warning ("restricted template type parameters not yet implemented");
|
||
yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 27:
|
||
#line 402 "cp-parse.y"
|
||
{ declare_overloaded (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 28:
|
||
#line 404 "cp-parse.y"
|
||
{ declare_overloaded (yyvsp[0].ttype); ;
|
||
break;}
|
||
case 29:
|
||
#line 411 "cp-parse.y"
|
||
{ yychar = '{'; goto template1; ;
|
||
break;}
|
||
case 31:
|
||
#line 414 "cp-parse.y"
|
||
{ yychar = '{'; goto template1; ;
|
||
break;}
|
||
case 33:
|
||
#line 417 "cp-parse.y"
|
||
{ yychar = ':'; goto template1; ;
|
||
break;}
|
||
case 35:
|
||
#line 420 "cp-parse.y"
|
||
{
|
||
yychar = ':';
|
||
template1:
|
||
if (current_aggr == exception_type_node)
|
||
error ("template type must define an aggregate or union");
|
||
/* Maybe pedantic warning for union?
|
||
How about an enum? :-) */
|
||
end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr);
|
||
reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
|
||
yychar = YYEMPTY;
|
||
;
|
||
break;}
|
||
case 37:
|
||
#line 433 "cp-parse.y"
|
||
{
|
||
end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr);
|
||
/* declare $2 as template name with $1 parm list */
|
||
;
|
||
break;}
|
||
case 38:
|
||
#line 438 "cp-parse.y"
|
||
{
|
||
end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr);
|
||
/* declare $2 as template name with $1 parm list */
|
||
;
|
||
break;}
|
||
case 39:
|
||
#line 445 "cp-parse.y"
|
||
{
|
||
tree d;
|
||
int momentary;
|
||
momentary = suspend_momentary ();
|
||
d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/0, 0, yyvsp[-3].ttype);
|
||
decl_attributes (d, yyvsp[-1].ttype);
|
||
finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
|
||
|
||
#if 0 /* Need to sort out destructor templates, and not give warnings
|
||
for them. */
|
||
if (pedantic)
|
||
error ("ANSI C forbids data definition with no type or storage class");
|
||
else if (! flag_traditional && ! have_extern_spec)
|
||
warning ("data definition has no type or storage class");
|
||
#endif
|
||
end_template_decl (yyvsp[-5].ttype, d, 0);
|
||
if (yyvsp[0].itype != ';')
|
||
reinit_parse_for_template (yyvsp[0].itype, yyvsp[-5].ttype, d);
|
||
resume_momentary (momentary);
|
||
;
|
||
break;}
|
||
case 40:
|
||
#line 468 "cp-parse.y"
|
||
{
|
||
tree d;
|
||
int momentary;
|
||
|
||
current_declspecs = yyvsp[-5].ttype;
|
||
momentary = suspend_momentary ();
|
||
d = start_decl (yyvsp[-4].ttype, current_declspecs, 0, yyvsp[-3].ttype);
|
||
decl_attributes (d, yyvsp[-1].ttype);
|
||
finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
|
||
end_exception_decls ();
|
||
end_template_decl (yyvsp[-6].ttype, d, 0);
|
||
if (yyvsp[0].itype != ';')
|
||
{
|
||
reinit_parse_for_template (yyvsp[0].itype, yyvsp[-6].ttype, d);
|
||
yychar = YYEMPTY;
|
||
}
|
||
note_list_got_semicolon (yyvsp[-5].ttype);
|
||
resume_momentary (momentary);
|
||
;
|
||
break;}
|
||
case 41:
|
||
#line 488 "cp-parse.y"
|
||
{
|
||
tree d = start_decl (yyvsp[-1].ttype, yyvsp[-2].ttype, 0, NULL_TREE);
|
||
finish_decl (d, NULL_TREE, NULL_TREE, 0);
|
||
end_template_decl (yyvsp[-3].ttype, d, 0);
|
||
if (yyvsp[0].itype != ';')
|
||
reinit_parse_for_template (yyvsp[0].itype, yyvsp[-3].ttype, d);
|
||
;
|
||
break;}
|
||
case 42:
|
||
#line 496 "cp-parse.y"
|
||
{ end_template_decl (yyvsp[-2].ttype, 0, 0); ;
|
||
break;}
|
||
case 43:
|
||
#line 497 "cp-parse.y"
|
||
{ end_template_decl (yyvsp[-2].ttype, 0, 0); ;
|
||
break;}
|
||
case 44:
|
||
#line 500 "cp-parse.y"
|
||
{ yyval.itype = '{'; ;
|
||
break;}
|
||
case 45:
|
||
#line 501 "cp-parse.y"
|
||
{ yyval.itype = ':'; ;
|
||
break;}
|
||
case 46:
|
||
#line 502 "cp-parse.y"
|
||
{ yyval.itype = ';'; ;
|
||
break;}
|
||
case 47:
|
||
#line 503 "cp-parse.y"
|
||
{ yyval.itype = '='; ;
|
||
break;}
|
||
case 48:
|
||
#line 504 "cp-parse.y"
|
||
{ yyval.itype = RETURN; ;
|
||
break;}
|
||
case 49:
|
||
#line 509 "cp-parse.y"
|
||
{ if (pedantic)
|
||
error ("ANSI C forbids data definition with no type or storage class");
|
||
else if (! flag_traditional && ! have_extern_spec)
|
||
warning ("data definition has no type or storage class"); ;
|
||
break;}
|
||
case 50:
|
||
#line 514 "cp-parse.y"
|
||
{;
|
||
break;}
|
||
case 51:
|
||
#line 517 "cp-parse.y"
|
||
{ tree d;
|
||
d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
|
||
finish_decl (d, NULL_TREE, NULL_TREE, 0);
|
||
;
|
||
break;}
|
||
case 52:
|
||
#line 522 "cp-parse.y"
|
||
{
|
||
end_exception_decls ();
|
||
note_list_got_semicolon (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 53:
|
||
#line 528 "cp-parse.y"
|
||
{ tree d;
|
||
d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
|
||
finish_decl (d, NULL_TREE, NULL_TREE, 0);
|
||
end_exception_decls ();
|
||
note_list_got_semicolon (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 54:
|
||
#line 535 "cp-parse.y"
|
||
{ error ("empty declaration"); ;
|
||
break;}
|
||
case 55:
|
||
#line 537 "cp-parse.y"
|
||
{
|
||
tree t = yyval.ttype;
|
||
shadow_tag (t);
|
||
if (TREE_CODE (t) == TREE_LIST
|
||
&& TREE_PURPOSE (t) == NULL_TREE)
|
||
{
|
||
t = TREE_VALUE (t);
|
||
if (TREE_CODE (t) == RECORD_TYPE)
|
||
{
|
||
if (CLASSTYPE_USE_TEMPLATE (t) == 0)
|
||
CLASSTYPE_USE_TEMPLATE (t) = 2;
|
||
else if (CLASSTYPE_USE_TEMPLATE (t) == 1)
|
||
error ("override declaration for already-expanded template");
|
||
}
|
||
}
|
||
note_list_got_semicolon (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 59:
|
||
#line 561 "cp-parse.y"
|
||
{
|
||
finish_function (lineno, 1);
|
||
/* finish_function performs these three statements:
|
||
|
||
expand_end_bindings (getdecls (), 1, 0);
|
||
poplevel (1, 1, 0);
|
||
|
||
expand_end_bindings (0, 0, 0);
|
||
poplevel (0, 0, 1);
|
||
*/
|
||
if (yyval.ttype) process_next_inline (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 60:
|
||
#line 574 "cp-parse.y"
|
||
{
|
||
finish_function (lineno, 1);
|
||
/* finish_function performs these three statements:
|
||
|
||
expand_end_bindings (getdecls (), 1, 0);
|
||
poplevel (1, 1, 0);
|
||
|
||
expand_end_bindings (0, 0, 0);
|
||
poplevel (0, 0, 1);
|
||
*/
|
||
if (yyval.ttype) process_next_inline (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 61:
|
||
#line 587 "cp-parse.y"
|
||
{ finish_function (lineno, 0);
|
||
if (yyval.ttype) process_next_inline (yyval.ttype); ;
|
||
break;}
|
||
case 62:
|
||
#line 590 "cp-parse.y"
|
||
{ finish_function (lineno, 0);
|
||
if (yyval.ttype) process_next_inline (yyval.ttype); ;
|
||
break;}
|
||
case 63:
|
||
#line 593 "cp-parse.y"
|
||
{ finish_function (lineno, 0);
|
||
if (yyval.ttype) process_next_inline (yyval.ttype); ;
|
||
break;}
|
||
case 64:
|
||
#line 596 "cp-parse.y"
|
||
{;
|
||
break;}
|
||
case 65:
|
||
#line 598 "cp-parse.y"
|
||
{;
|
||
break;}
|
||
case 66:
|
||
#line 600 "cp-parse.y"
|
||
{;
|
||
break;}
|
||
case 67:
|
||
#line 605 "cp-parse.y"
|
||
{ if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 68:
|
||
#line 610 "cp-parse.y"
|
||
{ if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 69:
|
||
#line 615 "cp-parse.y"
|
||
{ if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 70:
|
||
#line 620 "cp-parse.y"
|
||
{ if (! start_function (NULL_TREE, build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype), yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 71:
|
||
#line 625 "cp-parse.y"
|
||
{ if (! start_function (NULL_TREE, build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype), yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 72:
|
||
#line 630 "cp-parse.y"
|
||
{ if (! start_function (NULL_TREE, build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[-1].ttype), yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 73:
|
||
#line 635 "cp-parse.y"
|
||
{ if (! start_function (NULL_TREE, build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[-1].ttype), yyvsp[0].ttype, 0))
|
||
YYERROR1;
|
||
reinit_parse_for_function ();
|
||
yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 74:
|
||
#line 640 "cp-parse.y"
|
||
{ start_function (NULL_TREE, TREE_VALUE (yyval.ttype), NULL_TREE, 1);
|
||
reinit_parse_for_function (); ;
|
||
break;}
|
||
case 75:
|
||
#line 647 "cp-parse.y"
|
||
{
|
||
tree decl = build_parse_node (CALL_EXPR, TREE_VALUE (yyval.ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
|
||
yyval.ttype = start_method (TREE_CHAIN (yyval.ttype), decl, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 76:
|
||
#line 656 "cp-parse.y"
|
||
{
|
||
tree decl = build_parse_node (CALL_EXPR, TREE_VALUE (yyval.ttype), empty_parms (), yyvsp[-1].ttype);
|
||
yyval.ttype = start_method (TREE_CHAIN (yyval.ttype), decl, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 77:
|
||
#line 665 "cp-parse.y"
|
||
{ yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 78:
|
||
#line 672 "cp-parse.y"
|
||
{
|
||
tree decl = build_parse_node (CALL_EXPR, TREE_VALUE (yyval.ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
|
||
yyval.ttype = start_method (TREE_CHAIN (yyval.ttype), decl, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 79:
|
||
#line 681 "cp-parse.y"
|
||
{
|
||
tree decl = build_parse_node (CALL_EXPR, TREE_VALUE (yyval.ttype), empty_parms (), yyvsp[-1].ttype);
|
||
yyval.ttype = start_method (TREE_CHAIN (yyval.ttype), decl, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 80:
|
||
#line 690 "cp-parse.y"
|
||
{ yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 81:
|
||
#line 697 "cp-parse.y"
|
||
{ yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype);
|
||
if (! yyval.ttype)
|
||
YYERROR1;
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
reinit_parse_for_method (yychar, yyval.ttype); ;
|
||
break;}
|
||
case 82:
|
||
#line 706 "cp-parse.y"
|
||
{
|
||
if (! current_function_parms_stored)
|
||
store_parm_decls ();
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
;
|
||
break;}
|
||
case 83:
|
||
#line 714 "cp-parse.y"
|
||
{ store_return_init (yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 84:
|
||
#line 716 "cp-parse.y"
|
||
{ store_return_init (yyval.ttype, yyvsp[-1].code); ;
|
||
break;}
|
||
case 85:
|
||
#line 718 "cp-parse.y"
|
||
{ store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 86:
|
||
#line 720 "cp-parse.y"
|
||
{ store_return_init (yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 87:
|
||
#line 725 "cp-parse.y"
|
||
{
|
||
if (yyvsp[0].itype == 0)
|
||
error ("no base initializers given following ':'");
|
||
setup_vtbl_ptr ();
|
||
;
|
||
break;}
|
||
case 88:
|
||
#line 734 "cp-parse.y"
|
||
{
|
||
if (! current_function_parms_stored)
|
||
store_parm_decls ();
|
||
|
||
/* Flag that we are processing base and member initializers. */
|
||
current_vtable_decl = error_mark_node;
|
||
|
||
if (DECL_CONSTRUCTOR_P (current_function_decl))
|
||
{
|
||
/* Make a contour for the initializer list. */
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
expand_start_bindings (0);
|
||
}
|
||
else if (current_class_type == NULL_TREE)
|
||
error ("base initializers not allowed for non-member functions");
|
||
else if (! DECL_CONSTRUCTOR_P (current_function_decl))
|
||
error ("only constructors take base initializers");
|
||
;
|
||
break;}
|
||
case 89:
|
||
#line 757 "cp-parse.y"
|
||
{ yyval.itype = 0; ;
|
||
break;}
|
||
case 90:
|
||
#line 759 "cp-parse.y"
|
||
{ yyval.itype = 1; ;
|
||
break;}
|
||
case 93:
|
||
#line 765 "cp-parse.y"
|
||
{
|
||
if (current_class_name && pedantic)
|
||
pedwarn ("old style base class initialization; use `%s (...)'",
|
||
IDENTIFIER_POINTER (current_class_name));
|
||
expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 94:
|
||
#line 772 "cp-parse.y"
|
||
{
|
||
if (current_class_name && pedantic)
|
||
pedwarn ("old style base class initialization; use `%s (...)'",
|
||
IDENTIFIER_POINTER (current_class_name));
|
||
expand_member_init (C_C_D, NULL_TREE, void_type_node);
|
||
;
|
||
break;}
|
||
case 95:
|
||
#line 779 "cp-parse.y"
|
||
{
|
||
expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 96:
|
||
#line 783 "cp-parse.y"
|
||
{ expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
|
||
break;}
|
||
case 97:
|
||
#line 785 "cp-parse.y"
|
||
{ expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 98:
|
||
#line 787 "cp-parse.y"
|
||
{ expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
|
||
break;}
|
||
case 99:
|
||
#line 789 "cp-parse.y"
|
||
{
|
||
do_member_init (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 100:
|
||
#line 793 "cp-parse.y"
|
||
{
|
||
do_member_init (yyval.ttype, yyvsp[-1].ttype, void_type_node);
|
||
;
|
||
break;}
|
||
case 110:
|
||
#line 817 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (BIT_NOT_EXPR,yyvsp[0].ttype);;
|
||
break;}
|
||
case 112:
|
||
#line 820 "cp-parse.y"
|
||
{ yyval.ttype = hack_wrapper (yyval.ttype, NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 113:
|
||
#line 822 "cp-parse.y"
|
||
{ yyval.ttype = hack_wrapper (yyval.ttype, NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 114:
|
||
#line 824 "cp-parse.y"
|
||
{ yyval.ttype = hack_wrapper (yyval.ttype, NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 115:
|
||
#line 826 "cp-parse.y"
|
||
{ yyval.ttype = hack_wrapper (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 116:
|
||
#line 828 "cp-parse.y"
|
||
{ yyval.ttype = hack_wrapper (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 117:
|
||
#line 832 "cp-parse.y"
|
||
{ yyval.itype = 0; ;
|
||
break;}
|
||
case 118:
|
||
#line 834 "cp-parse.y"
|
||
{ yyval.itype = 1; ;
|
||
break;}
|
||
case 119:
|
||
#line 836 "cp-parse.y"
|
||
{ yyval.itype = 2; ;
|
||
break;}
|
||
case 120:
|
||
#line 841 "cp-parse.y"
|
||
{
|
||
if (yyvsp[0].ttype)
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
else if (yyval.ttype != error_mark_node)
|
||
yyval.ttype = IDENTIFIER_TYPE_VALUE (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 121:
|
||
#line 851 "cp-parse.y"
|
||
{ yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 122:
|
||
#line 857 "cp-parse.y"
|
||
{ yyungetc ('{', 1); yyval.ttype = 0; ;
|
||
break;}
|
||
case 123:
|
||
#line 858 "cp-parse.y"
|
||
{ yyungetc (':', 1); yyval.ttype = 0; ;
|
||
break;}
|
||
case 124:
|
||
#line 860 "cp-parse.y"
|
||
{ yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
|
||
break;}
|
||
case 125:
|
||
#line 865 "cp-parse.y"
|
||
{ yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
|
||
break;}
|
||
case 126:
|
||
#line 870 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 127:
|
||
#line 872 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 128:
|
||
#line 877 "cp-parse.y"
|
||
{ yyval.ttype = groktypename (yyval.ttype); ;
|
||
break;}
|
||
case 130:
|
||
#line 883 "cp-parse.y"
|
||
{
|
||
tree t, decl, id, tmpl;
|
||
|
||
id = TREE_VALUE (yyvsp[-1].ttype);
|
||
tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (id));
|
||
t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, id, yyvsp[0].ttype);
|
||
set_current_level_tags_transparency (1);
|
||
assert (TREE_CODE (t) == RECORD_TYPE);
|
||
yyval.ttype = t;
|
||
|
||
/* Now, put a copy of the decl in global scope, to avoid
|
||
recursive expansion. */
|
||
decl = IDENTIFIER_LOCAL_VALUE (id);
|
||
if (!decl)
|
||
decl = IDENTIFIER_CLASS_VALUE (id);
|
||
/* Now, put a copy of the decl in global scope, to avoid
|
||
recursive expansion. */
|
||
if (decl)
|
||
{
|
||
/* Need to copy it to clear the chain pointer,
|
||
and need to get it into permanent storage. */
|
||
extern struct obstack permanent_obstack;
|
||
assert (TREE_CODE (decl) == TYPE_DECL);
|
||
push_obstacks (&permanent_obstack, &permanent_obstack);
|
||
decl = copy_node (decl);
|
||
if (DECL_LANG_SPECIFIC (decl))
|
||
copy_lang_decl (decl);
|
||
pop_obstacks ();
|
||
pushdecl_top_level (decl);
|
||
}
|
||
;
|
||
break;}
|
||
case 131:
|
||
#line 915 "cp-parse.y"
|
||
{
|
||
extern void end_template_instantiation ();
|
||
tree id, members;
|
||
|
||
yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0, 0);
|
||
|
||
pop_obstacks ();
|
||
end_template_instantiation (yyvsp[-5].ttype, yyvsp[-3].ttype);
|
||
|
||
/* Now go after the methods & class data. */
|
||
instantiate_member_templates (yyvsp[-5].ttype);
|
||
;
|
||
break;}
|
||
case 132:
|
||
#line 931 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 133:
|
||
#line 933 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 134:
|
||
#line 938 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; /* never used from here... */;
|
||
break;}
|
||
case 135:
|
||
#line 940 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
|
||
break;}
|
||
case 136:
|
||
#line 944 "cp-parse.y"
|
||
{ yyval.code = NEGATE_EXPR; ;
|
||
break;}
|
||
case 137:
|
||
#line 946 "cp-parse.y"
|
||
{ yyval.code = CONVERT_EXPR; ;
|
||
break;}
|
||
case 138:
|
||
#line 948 "cp-parse.y"
|
||
{ yyval.code = PREINCREMENT_EXPR; ;
|
||
break;}
|
||
case 139:
|
||
#line 950 "cp-parse.y"
|
||
{ yyval.code = PREDECREMENT_EXPR; ;
|
||
break;}
|
||
case 140:
|
||
#line 952 "cp-parse.y"
|
||
{ yyval.code = TRUTH_NOT_EXPR; ;
|
||
break;}
|
||
case 141:
|
||
#line 956 "cp-parse.y"
|
||
{ yyval.ttype = build_x_compound_expr (yyval.ttype); ;
|
||
break;}
|
||
case 143:
|
||
#line 963 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 144:
|
||
#line 965 "cp-parse.y"
|
||
{ chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 145:
|
||
#line 967 "cp-parse.y"
|
||
{ chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
|
||
break;}
|
||
case 146:
|
||
#line 972 "cp-parse.y"
|
||
{
|
||
if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
|
||
yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
|
||
;
|
||
break;}
|
||
case 147:
|
||
#line 978 "cp-parse.y"
|
||
{ yyvsp[0].itype = pedantic;
|
||
pedantic = 0; ;
|
||
break;}
|
||
case 148:
|
||
#line 981 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype;
|
||
pedantic = yyvsp[-2].itype; ;
|
||
break;}
|
||
case 149:
|
||
#line 984 "cp-parse.y"
|
||
{ yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
|
||
break;}
|
||
case 150:
|
||
#line 986 "cp-parse.y"
|
||
{ yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 151:
|
||
#line 988 "cp-parse.y"
|
||
{ yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 152:
|
||
#line 990 "cp-parse.y"
|
||
{ yyval.ttype = build_x_unary_op (yyval.ttype, yyvsp[0].ttype);
|
||
if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
|
||
TREE_NEGATED_INT (yyval.ttype) = 1;
|
||
;
|
||
break;}
|
||
case 153:
|
||
#line 995 "cp-parse.y"
|
||
{ if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
|
||
&& DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
|
||
error ("sizeof applied to a bit-field");
|
||
/* ANSI says arrays and functions are converted inside comma.
|
||
But we can't really convert them in build_compound_expr
|
||
because that would break commas in lvalues.
|
||
So do the conversion here if operand was a comma. */
|
||
if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
|
||
&& (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
|
||
|| TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
|
||
yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
|
||
yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 154:
|
||
#line 1008 "cp-parse.y"
|
||
{ yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 155:
|
||
#line 1010 "cp-parse.y"
|
||
{ if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
|
||
&& DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
|
||
error ("`__alignof' applied to a bit-field");
|
||
if (TREE_CODE (yyvsp[0].ttype) == INDIRECT_REF)
|
||
{
|
||
tree t = TREE_OPERAND (yyvsp[0].ttype, 0);
|
||
tree best = t;
|
||
int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
|
||
while (TREE_CODE (t) == NOP_EXPR
|
||
&& TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
|
||
{
|
||
int thisalign;
|
||
t = TREE_OPERAND (t, 0);
|
||
thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
|
||
if (thisalign > bestalign)
|
||
best = t, bestalign = thisalign;
|
||
}
|
||
yyval.ttype = c_alignof (TREE_TYPE (TREE_TYPE (best)));
|
||
}
|
||
else
|
||
{
|
||
/* ANSI says arrays and fns are converted inside comma.
|
||
But we can't convert them in build_compound_expr
|
||
because that would break commas in lvalues.
|
||
So do the conversion here if operand was a comma. */
|
||
if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
|
||
&& (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
|
||
|| TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
|
||
yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
|
||
yyval.ttype = c_alignof (TREE_TYPE (yyvsp[0].ttype));
|
||
}
|
||
;
|
||
break;}
|
||
case 156:
|
||
#line 1043 "cp-parse.y"
|
||
{ yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 157:
|
||
#line 1046 "cp-parse.y"
|
||
{ yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 158:
|
||
#line 1048 "cp-parse.y"
|
||
{ yyval.ttype = build_new (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 159:
|
||
#line 1050 "cp-parse.y"
|
||
{ yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 160:
|
||
#line 1052 "cp-parse.y"
|
||
{ yyval.ttype = build_new (yyvsp[-3].ttype, yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 161:
|
||
#line 1058 "cp-parse.y"
|
||
{
|
||
tree absdcl, typename;
|
||
static int gave_warning = 0;
|
||
|
||
illegal_new_array:
|
||
absdcl = build_parse_node (ARRAY_REF, yyvsp[-4].ttype, yyvsp[-1].ttype);
|
||
typename = build_decl_list (yyvsp[-5].ttype, absdcl);
|
||
pedwarn ("array dimensions with parenthesized type is disallowed in standard C++");
|
||
if (!gave_warning)
|
||
{
|
||
gave_warning++;
|
||
pedwarn (" (per grammar in Ellis & Stroustrup [1990], chapter 17)");
|
||
pedwarn (" try rewriting, perhaps with a typedef");
|
||
}
|
||
yyval.ttype = build_new (yyvsp[-7].ttype, typename, NULL_TREE, yyval.ttype);
|
||
;
|
||
break;}
|
||
case 162:
|
||
#line 1075 "cp-parse.y"
|
||
{ goto illegal_new_array; ;
|
||
break;}
|
||
case 163:
|
||
#line 1078 "cp-parse.y"
|
||
{
|
||
yyval.ttype = build_new (yyvsp[-4].ttype, build_decl_list (yyvsp[-2].ttype, yyvsp[-1].ttype), NULL_TREE, yyval.ttype);
|
||
;
|
||
break;}
|
||
case 164:
|
||
#line 1082 "cp-parse.y"
|
||
{ yyval.ttype = build_new (yyvsp[-4].ttype, build_decl_list (yyvsp[-2].ttype, yyvsp[-1].ttype), NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 165:
|
||
#line 1085 "cp-parse.y"
|
||
{ yyungetc (':', 1);
|
||
yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 166:
|
||
#line 1089 "cp-parse.y"
|
||
{ tree expr = stabilize_reference (convert_from_reference (yyvsp[0].ttype));
|
||
tree type = TREE_TYPE (expr);
|
||
|
||
if (integer_zerop (expr))
|
||
yyval.ttype = build1 (NOP_EXPR, void_type_node, expr);
|
||
else if (TREE_CODE (type) != POINTER_TYPE)
|
||
{
|
||
error ("non-pointer type to `delete'");
|
||
yyval.ttype = error_mark_node;
|
||
break;
|
||
}
|
||
yyval.ttype = build_delete (type, expr, integer_three_node,
|
||
LOOKUP_NORMAL|LOOKUP_HAS_IN_CHARGE,
|
||
TYPE_HAS_DESTRUCTOR (TREE_TYPE (type)) ? yyval.ttype : 0, 1);
|
||
;
|
||
break;}
|
||
case 167:
|
||
#line 1105 "cp-parse.y"
|
||
{
|
||
tree exp = stabilize_reference (convert_from_reference (yyvsp[0].ttype));
|
||
tree elt_size = c_sizeof (TREE_TYPE (exp));
|
||
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
|
||
yyval.ttype = build_vec_delete (exp, NULL_TREE, elt_size, NULL_TREE,
|
||
integer_one_node, integer_two_node);
|
||
;
|
||
break;}
|
||
case 168:
|
||
#line 1116 "cp-parse.y"
|
||
{
|
||
tree maxindex = build_binary_op (MINUS_EXPR, yyvsp[-2].ttype,
|
||
integer_one_node);
|
||
tree exp = stabilize_reference (convert_from_reference (yyvsp[0].ttype));
|
||
tree elt_size = c_sizeof (TREE_TYPE (exp));
|
||
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
|
||
pedwarn ("use of array size with vector delete is anachronistic");
|
||
yyval.ttype = build_vec_delete (exp, maxindex, elt_size, NULL_TREE,
|
||
integer_one_node, integer_two_node);
|
||
;
|
||
break;}
|
||
case 170:
|
||
#line 1134 "cp-parse.y"
|
||
{ tree type = groktypename (yyvsp[-2].ttype);
|
||
yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 171:
|
||
#line 1137 "cp-parse.y"
|
||
{ tree type = groktypename (yyvsp[-5].ttype);
|
||
tree init = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids constructor-expressions");
|
||
/* Indicate that this was a GNU C constructor expression. */
|
||
TREE_HAS_CONSTRUCTOR (init) = 1;
|
||
yyval.ttype = digest_init (type, init, 0);
|
||
if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
|
||
{
|
||
int failure = complete_array_type (type, yyval.ttype, 1);
|
||
if (failure)
|
||
my_friendly_abort (78);
|
||
}
|
||
;
|
||
break;}
|
||
case 172:
|
||
#line 1152 "cp-parse.y"
|
||
{ yyval.ttype = build_headof (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 173:
|
||
#line 1154 "cp-parse.y"
|
||
{ yyval.ttype = build_classof (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 174:
|
||
#line 1156 "cp-parse.y"
|
||
{ if (is_aggr_typedef (yyvsp[-1].ttype, 1))
|
||
{
|
||
tree type = IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype);
|
||
yyval.ttype = CLASSTYPE_DOSSIER (type);
|
||
}
|
||
else
|
||
yyval.ttype = error_mark_node;
|
||
;
|
||
break;}
|
||
case 176:
|
||
#line 1169 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 177:
|
||
#line 1171 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 178:
|
||
#line 1173 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 179:
|
||
#line 1175 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 180:
|
||
#line 1177 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 181:
|
||
#line 1179 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 182:
|
||
#line 1181 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 183:
|
||
#line 1183 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 184:
|
||
#line 1185 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 185:
|
||
#line 1187 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 186:
|
||
#line 1189 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 187:
|
||
#line 1191 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 188:
|
||
#line 1193 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 189:
|
||
#line 1195 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 190:
|
||
#line 1197 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 191:
|
||
#line 1199 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 192:
|
||
#line 1201 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 193:
|
||
#line 1203 "cp-parse.y"
|
||
{ yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 194:
|
||
#line 1205 "cp-parse.y"
|
||
{ yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 195:
|
||
#line 1207 "cp-parse.y"
|
||
{ register tree rval;
|
||
if (rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype, yyvsp[-1].code))
|
||
yyval.ttype = rval;
|
||
else
|
||
yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 196:
|
||
#line 1213 "cp-parse.y"
|
||
{ yyval.ttype = build_m_component_ref (yyval.ttype, build_indirect_ref (yyvsp[0].ttype, 0)); ;
|
||
break;}
|
||
case 197:
|
||
#line 1216 "cp-parse.y"
|
||
{ yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 198:
|
||
#line 1232 "cp-parse.y"
|
||
{ yyval.ttype = do_identifier (yyval.ttype); ;
|
||
break;}
|
||
case 199:
|
||
#line 1234 "cp-parse.y"
|
||
{
|
||
tree op = yyval.ttype;
|
||
if (TREE_CODE (op) != IDENTIFIER_NODE)
|
||
yyval.ttype = op;
|
||
else
|
||
{
|
||
yyval.ttype = lookup_name (op);
|
||
if (yyval.ttype == NULL_TREE)
|
||
{
|
||
error ("operator %s not defined", operator_name_string (op));
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 201:
|
||
#line 1250 "cp-parse.y"
|
||
{ yyval.ttype = combine_strings (yyval.ttype); ;
|
||
break;}
|
||
case 202:
|
||
#line 1252 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 203:
|
||
#line 1254 "cp-parse.y"
|
||
{ yyval.ttype = error_mark_node; ;
|
||
break;}
|
||
case 204:
|
||
#line 1256 "cp-parse.y"
|
||
{ if (current_function_decl == 0)
|
||
{
|
||
error ("braced-group within expression allowed only inside a function");
|
||
YYERROR;
|
||
}
|
||
keep_next_level ();
|
||
yyval.ttype = expand_start_stmt_expr (); ;
|
||
break;}
|
||
case 205:
|
||
#line 1264 "cp-parse.y"
|
||
{ tree rtl_exp;
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids braced-groups within expressions");
|
||
rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
|
||
/* The statements have side effects, so the group does. */
|
||
TREE_SIDE_EFFECTS (rtl_exp) = 1;
|
||
|
||
/* 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);
|
||
;
|
||
break;}
|
||
case 206:
|
||
#line 1276 "cp-parse.y"
|
||
{ /* [eichin:19911016.1902EST] */
|
||
extern struct pending_template* pending_templates;
|
||
yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl);
|
||
/* here we instantiate_class_template as needed... */
|
||
if (pending_templates) do_pending_templates ();
|
||
;
|
||
break;}
|
||
case 207:
|
||
#line 1281 "cp-parse.y"
|
||
{
|
||
if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
|
||
&& TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
|
||
yyval.ttype = require_complete_type (yyvsp[-1].ttype);
|
||
else
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 208:
|
||
#line 1289 "cp-parse.y"
|
||
{
|
||
yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
|
||
if (TREE_CODE (yyval.ttype) == CALL_EXPR
|
||
&& TREE_TYPE (yyval.ttype) != void_type_node)
|
||
yyval.ttype = require_complete_type (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 209:
|
||
#line 1296 "cp-parse.y"
|
||
{
|
||
do_array:
|
||
{
|
||
tree array_expr = yyval.ttype;
|
||
tree index_exp = yyvsp[-1].ttype;
|
||
tree type = TREE_TYPE (array_expr);
|
||
if (type == error_mark_node || index_exp == error_mark_node)
|
||
yyval.ttype = error_mark_node;
|
||
else if (type == NULL_TREE)
|
||
{
|
||
/* Something has gone very wrong. Assume we
|
||
are mistakenly reducing an expression
|
||
instead of a declaration. */
|
||
error ("parser may be lost: is there a '{' missing somewhere?");
|
||
yyval.ttype = NULL_TREE;
|
||
}
|
||
else
|
||
{
|
||
if (TREE_CODE (type) == OFFSET_TYPE)
|
||
type = TREE_TYPE (type);
|
||
if (TREE_CODE (type) == REFERENCE_TYPE)
|
||
type = TREE_TYPE (type);
|
||
|
||
if (TYPE_LANG_SPECIFIC (type)
|
||
&& TYPE_OVERLOADS_ARRAY_REF (type))
|
||
yyval.ttype = build_opfncall (ARRAY_REF, LOOKUP_NORMAL, array_expr, index_exp);
|
||
else if (TREE_CODE (type) == POINTER_TYPE
|
||
|| TREE_CODE (type) == ARRAY_TYPE)
|
||
yyval.ttype = build_array_ref (array_expr, index_exp);
|
||
else
|
||
{
|
||
type = TREE_TYPE (index_exp);
|
||
if (TREE_CODE (type) == OFFSET_TYPE)
|
||
type = TREE_TYPE (type);
|
||
if (TREE_CODE (type) == REFERENCE_TYPE)
|
||
type = TREE_TYPE (type);
|
||
|
||
if (TYPE_LANG_SPECIFIC (type)
|
||
&& TYPE_OVERLOADS_ARRAY_REF (type))
|
||
error ("array expression backwards");
|
||
else if (TREE_CODE (type) == POINTER_TYPE
|
||
|| TREE_CODE (type) == ARRAY_TYPE)
|
||
yyval.ttype = build_array_ref (index_exp, array_expr);
|
||
else
|
||
error("[] applied to non-pointer type");
|
||
}
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 210:
|
||
#line 1346 "cp-parse.y"
|
||
{ yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
|
||
break;}
|
||
case 211:
|
||
#line 1348 "cp-parse.y"
|
||
{
|
||
tree basetype = yyvsp[-1].ttype;
|
||
if (is_aggr_typedef (basetype, 1))
|
||
{
|
||
basetype = IDENTIFIER_TYPE_VALUE (basetype);
|
||
|
||
if (yyval.ttype == error_mark_node)
|
||
;
|
||
else if (binfo_or_else (basetype, TREE_TYPE (yyval.ttype)))
|
||
yyval.ttype = build_component_ref (build_scoped_ref (yyval.ttype, yyvsp[-1].ttype), yyvsp[0].ttype, NULL_TREE, 1);
|
||
else
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
else yyval.ttype = error_mark_node;
|
||
;
|
||
break;}
|
||
case 212:
|
||
#line 1364 "cp-parse.y"
|
||
{ yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
|
||
break;}
|
||
case 213:
|
||
#line 1366 "cp-parse.y"
|
||
{ yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
|
||
break;}
|
||
case 214:
|
||
#line 1370 "cp-parse.y"
|
||
{ if (current_class_decl)
|
||
{
|
||
#ifdef WARNING_ABOUT_CCD
|
||
TREE_USED (current_class_decl) = 1;
|
||
#endif
|
||
yyval.ttype = current_class_decl;
|
||
}
|
||
else if (current_function_decl
|
||
&& DECL_STATIC_FUNCTION_P (current_function_decl))
|
||
{
|
||
error ("`this' is unavailable for static member functions");
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
else
|
||
{
|
||
if (current_function_decl)
|
||
error ("invalid use of `this' in non-member function");
|
||
else
|
||
error ("invalid use of `this' at top level");
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
;
|
||
break;}
|
||
case 215:
|
||
#line 1393 "cp-parse.y"
|
||
{
|
||
tree type;
|
||
tree id = yyval.ttype;
|
||
|
||
/* This is a C cast in C++'s `functional' notation. */
|
||
if (yyvsp[-1].ttype == error_mark_node)
|
||
{
|
||
yyval.ttype = error_mark_node;
|
||
break;
|
||
}
|
||
#if 0
|
||
if (yyvsp[-1].ttype == NULL_TREE)
|
||
{
|
||
error ("cannot cast null list to type `%s'",
|
||
IDENTIFIER_POINTER (TYPE_NAME (id)));
|
||
yyval.ttype = error_mark_node;
|
||
break;
|
||
}
|
||
#endif
|
||
if (type == error_mark_node)
|
||
yyval.ttype = error_mark_node;
|
||
else
|
||
{
|
||
if (id == ridpointers[(int) RID_CONST])
|
||
type = build_type_variant (integer_type_node, 1, 0);
|
||
else if (id == ridpointers[(int) RID_VOLATILE])
|
||
type = build_type_variant (integer_type_node, 0, 1);
|
||
else if (id == ridpointers[(int) RID_FRIEND])
|
||
{
|
||
error ("cannot cast expression to `friend' type");
|
||
yyval.ttype = error_mark_node;
|
||
break;
|
||
}
|
||
else my_friendly_abort (79);
|
||
yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
|
||
}
|
||
;
|
||
break;}
|
||
case 216:
|
||
#line 1431 "cp-parse.y"
|
||
{ yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 217:
|
||
#line 1433 "cp-parse.y"
|
||
{ yyval.ttype = build_functional_cast (yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 218:
|
||
#line 1435 "cp-parse.y"
|
||
{
|
||
do_scoped_id:
|
||
yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
if (! yyval.ttype)
|
||
{
|
||
if (yychar == '(' || yychar == LEFT_RIGHT)
|
||
yyval.ttype = implicitly_declare (yyvsp[0].ttype);
|
||
else
|
||
{
|
||
if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
|
||
error ("undeclared variable `%s' (first use here)",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
yyval.ttype = error_mark_node;
|
||
/* Prevent repeated error messages. */
|
||
IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
assemble_external (yyval.ttype);
|
||
TREE_USED (yyval.ttype) = 1;
|
||
}
|
||
if (TREE_CODE (yyval.ttype) == CONST_DECL)
|
||
yyval.ttype = DECL_INITIAL (yyval.ttype);
|
||
/* XXX CHS - should we set TREE_USED of the constant? */
|
||
;
|
||
break;}
|
||
case 219:
|
||
#line 1464 "cp-parse.y"
|
||
{
|
||
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
|
||
goto do_scoped_id;
|
||
do_scoped_operator:
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
;
|
||
break;}
|
||
case 220:
|
||
#line 1471 "cp-parse.y"
|
||
{ yyval.ttype = build_offset_ref (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 221:
|
||
#line 1473 "cp-parse.y"
|
||
{ yyval.ttype = build_member_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 222:
|
||
#line 1475 "cp-parse.y"
|
||
{ yyval.ttype = build_member_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 223:
|
||
#line 1477 "cp-parse.y"
|
||
{ yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
|
||
(LOOKUP_NORMAL|LOOKUP_AGGR)); ;
|
||
break;}
|
||
case 224:
|
||
#line 1480 "cp-parse.y"
|
||
{ yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
|
||
(LOOKUP_NORMAL|LOOKUP_AGGR)); ;
|
||
break;}
|
||
case 225:
|
||
#line 1483 "cp-parse.y"
|
||
{ yyval.ttype = build_scoped_method_call (yyval.ttype, yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 226:
|
||
#line 1485 "cp-parse.y"
|
||
{ yyval.ttype = build_scoped_method_call (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 227:
|
||
#line 1527 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 228:
|
||
#line 1529 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 229:
|
||
#line 1531 "cp-parse.y"
|
||
{ yyval.ttype = void_type_node; ;
|
||
break;}
|
||
case 230:
|
||
#line 1533 "cp-parse.y"
|
||
{ yyval.ttype = combine_strings (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 231:
|
||
#line 1538 "cp-parse.y"
|
||
{ yyval.itype = 0; ;
|
||
break;}
|
||
case 232:
|
||
#line 1540 "cp-parse.y"
|
||
{ yyval.itype = 1; ;
|
||
break;}
|
||
case 233:
|
||
#line 1544 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 234:
|
||
#line 1546 "cp-parse.y"
|
||
{ if (yyvsp[0].ttype)
|
||
error ("extra `::' before `delete' ignored");
|
||
yyval.ttype = error_mark_node;
|
||
;
|
||
break;}
|
||
case 236:
|
||
#line 1556 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 237:
|
||
#line 1561 "cp-parse.y"
|
||
{
|
||
if (! current_function_parms_stored)
|
||
store_parm_decls ();
|
||
setup_vtbl_ptr ();
|
||
;
|
||
break;}
|
||
case 238:
|
||
#line 1569 "cp-parse.y"
|
||
{
|
||
if (yyval.ttype == error_mark_node)
|
||
;
|
||
else
|
||
{
|
||
tree type = TREE_TYPE (yyval.ttype);
|
||
|
||
if (! PROMOTES_TO_AGGR_TYPE (type, REFERENCE_TYPE))
|
||
{
|
||
error ("object in '.' expression is not of aggregate type");
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 239:
|
||
#line 1584 "cp-parse.y"
|
||
{
|
||
yyval.ttype = build_x_arrow (yyval.ttype, 0);
|
||
;
|
||
break;}
|
||
case 241:
|
||
#line 1594 "cp-parse.y"
|
||
{
|
||
resume_momentary (yyvsp[-1].itype);
|
||
note_list_got_semicolon (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 242:
|
||
#line 1600 "cp-parse.y"
|
||
{ tree d;
|
||
int yes = suspend_momentary ();
|
||
d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
|
||
finish_decl (d, NULL_TREE, NULL_TREE, 0);
|
||
resume_momentary (yes);
|
||
note_list_got_semicolon (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 243:
|
||
#line 1608 "cp-parse.y"
|
||
{ resume_momentary (yyvsp[-1].itype); ;
|
||
break;}
|
||
case 244:
|
||
#line 1611 "cp-parse.y"
|
||
{ tree d;
|
||
int yes = suspend_momentary ();
|
||
d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
|
||
finish_decl (d, NULL_TREE, NULL_TREE, 0);
|
||
resume_momentary (yes);
|
||
;
|
||
break;}
|
||
case 245:
|
||
#line 1618 "cp-parse.y"
|
||
{
|
||
shadow_tag (yyval.ttype);
|
||
note_list_got_semicolon (yyval.ttype);
|
||
;
|
||
break;}
|
||
case 246:
|
||
#line 1623 "cp-parse.y"
|
||
{ warning ("empty declaration"); ;
|
||
break;}
|
||
case 249:
|
||
#line 1633 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 250:
|
||
#line 1635 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 251:
|
||
#line 1644 "cp-parse.y"
|
||
{ yyval.ttype = list_hash_lookup_or_cons (yyval.ttype); ;
|
||
break;}
|
||
case 252:
|
||
#line 1646 "cp-parse.y"
|
||
{ yyval.ttype = hash_tree_chain (yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 253:
|
||
#line 1648 "cp-parse.y"
|
||
{ yyval.ttype = hash_tree_chain (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 254:
|
||
#line 1650 "cp-parse.y"
|
||
{ yyval.ttype = hash_tree_chain (yyvsp[-1].ttype, hash_chainon (yyvsp[0].ttype, yyval.ttype)); ;
|
||
break;}
|
||
case 255:
|
||
#line 1656 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 256:
|
||
#line 1658 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 257:
|
||
#line 1660 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 258:
|
||
#line 1662 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 259:
|
||
#line 1671 "cp-parse.y"
|
||
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
|
||
break;}
|
||
case 260:
|
||
#line 1673 "cp-parse.y"
|
||
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
|
||
break;}
|
||
case 261:
|
||
#line 1675 "cp-parse.y"
|
||
{ yyval.ttype = hash_tree_chain (yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 262:
|
||
#line 1677 "cp-parse.y"
|
||
{ yyval.ttype = hash_tree_chain (yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 263:
|
||
#line 1689 "cp-parse.y"
|
||
{ yyval.ttype = get_decl_list (yyval.ttype); ;
|
||
break;}
|
||
case 264:
|
||
#line 1691 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 265:
|
||
#line 1693 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 266:
|
||
#line 1695 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, hash_chainon (yyvsp[0].ttype, yyval.ttype)); ;
|
||
break;}
|
||
case 267:
|
||
#line 1700 "cp-parse.y"
|
||
{ yyval.ttype = get_decl_list (yyval.ttype); ;
|
||
break;}
|
||
case 268:
|
||
#line 1702 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 273:
|
||
#line 1714 "cp-parse.y"
|
||
{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids `typeof'"); ;
|
||
break;}
|
||
case 274:
|
||
#line 1718 "cp-parse.y"
|
||
{ yyval.ttype = groktypename (yyvsp[-1].ttype);
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids `typeof'"); ;
|
||
break;}
|
||
case 283:
|
||
#line 1743 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 284:
|
||
#line 1745 "cp-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids use of `asm' keyword");
|
||
;
|
||
break;}
|
||
case 285:
|
||
#line 1754 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-5].ttype;
|
||
yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 286:
|
||
#line 1760 "cp-parse.y"
|
||
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
|
||
yyval.itype = yyvsp[-2].itype; ;
|
||
break;}
|
||
case 287:
|
||
#line 1763 "cp-parse.y"
|
||
{ tree d;
|
||
current_declspecs = yyvsp[-4].ttype;
|
||
yyval.itype = suspend_momentary ();
|
||
d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
|
||
decl_attributes (d, yyvsp[0].ttype);
|
||
finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 288:
|
||
#line 1773 "cp-parse.y"
|
||
{ yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 289:
|
||
#line 1777 "cp-parse.y"
|
||
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0); ;
|
||
break;}
|
||
case 290:
|
||
#line 1779 "cp-parse.y"
|
||
{ tree d = start_decl (yyval.itype, current_declspecs, 0, yyvsp[-2].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype);
|
||
finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 291:
|
||
#line 1786 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-5].ttype;
|
||
yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 292:
|
||
#line 1792 "cp-parse.y"
|
||
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
|
||
yyval.itype = yyvsp[-2].itype; ;
|
||
break;}
|
||
case 293:
|
||
#line 1795 "cp-parse.y"
|
||
{ tree d;
|
||
current_declspecs = yyvsp[-4].ttype;
|
||
yyval.itype = suspend_momentary ();
|
||
d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
|
||
decl_attributes (d, yyvsp[0].ttype);
|
||
finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
|
||
break;}
|
||
case 294:
|
||
#line 1807 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 295:
|
||
#line 1809 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-2].ttype; ;
|
||
break;}
|
||
case 296:
|
||
#line 1814 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 297:
|
||
#line 1816 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 298:
|
||
#line 1821 "cp-parse.y"
|
||
{ if (strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "packed"))
|
||
warning ("`%s' attribute directive ignored",
|
||
IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 299:
|
||
#line 1826 "cp-parse.y"
|
||
{ /* if not "aligned(n)", then issue warning */
|
||
if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "aligned") != 0
|
||
|| TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
|
||
{
|
||
warning ("`%s' attribute directive ignored",
|
||
IDENTIFIER_POINTER (yyvsp[-3].ttype));
|
||
yyval.ttype = yyvsp[-3].ttype;
|
||
}
|
||
else
|
||
yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 300:
|
||
#line 1837 "cp-parse.y"
|
||
{ /* if not "format(...)", then issue warning */
|
||
if (strcmp (IDENTIFIER_POINTER (yyvsp[-7].ttype), "format") != 0
|
||
|| TREE_CODE (yyvsp[-3].ttype) != INTEGER_CST
|
||
|| TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
|
||
{
|
||
warning ("`%s' attribute directive ignored",
|
||
IDENTIFIER_POINTER (yyvsp[-7].ttype));
|
||
yyval.ttype = yyvsp[-7].ttype;
|
||
}
|
||
else
|
||
yyval.ttype = tree_cons (yyvsp[-7].ttype, tree_cons (yyvsp[-5].ttype, tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype))); ;
|
||
break;}
|
||
case 301:
|
||
#line 1853 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 302:
|
||
#line 1855 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 304:
|
||
#line 1861 "cp-parse.y"
|
||
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
|
||
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1;
|
||
if (pedantic)
|
||
pedwarn ("ANSI C forbids empty initializer braces"); ;
|
||
break;}
|
||
case 305:
|
||
#line 1866 "cp-parse.y"
|
||
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
|
||
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 306:
|
||
#line 1869 "cp-parse.y"
|
||
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
|
||
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
|
||
break;}
|
||
case 307:
|
||
#line 1872 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 308:
|
||
#line 1879 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 309:
|
||
#line 1881 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 310:
|
||
#line 1884 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 311:
|
||
#line 1886 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 312:
|
||
#line 1888 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 313:
|
||
#line 1890 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 314:
|
||
#line 1895 "cp-parse.y"
|
||
{ yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_enum (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 315:
|
||
#line 1898 "cp-parse.y"
|
||
{ yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
|
||
resume_momentary (yyvsp[-4].itype);
|
||
check_for_missing_semicolon (yyvsp[-3].ttype); ;
|
||
break;}
|
||
case 316:
|
||
#line 1902 "cp-parse.y"
|
||
{ yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
|
||
check_for_missing_semicolon (yyval.ttype); ;
|
||
break;}
|
||
case 317:
|
||
#line 1905 "cp-parse.y"
|
||
{ yyvsp[0].itype = suspend_momentary ();
|
||
yyval.ttype = start_enum (make_anon_name ()); ;
|
||
break;}
|
||
case 318:
|
||
#line 1908 "cp-parse.y"
|
||
{ yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
|
||
resume_momentary (yyvsp[-5].itype);
|
||
check_for_missing_semicolon (yyvsp[-3].ttype); ;
|
||
break;}
|
||
case 319:
|
||
#line 1912 "cp-parse.y"
|
||
{ yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
|
||
check_for_missing_semicolon (yyval.ttype); ;
|
||
break;}
|
||
case 320:
|
||
#line 1915 "cp-parse.y"
|
||
{ yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 321:
|
||
#line 1919 "cp-parse.y"
|
||
{
|
||
int semi;
|
||
#if 0
|
||
/* Need to rework class nesting in the
|
||
presence of nested classes, etc. */
|
||
shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
|
||
#endif
|
||
semi = yychar == ';';
|
||
if (semi)
|
||
note_got_semicolon (yyval.ttype);
|
||
if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
|
||
/* $$ = $1 from default rule. */;
|
||
else if (CLASSTYPE_DECLARED_EXCEPTION (yyval.ttype))
|
||
{
|
||
if (! semi)
|
||
yyval.ttype = finish_exception (yyval.ttype, yyvsp[-1].ttype);
|
||
else
|
||
warning ("empty exception declaration\n");
|
||
}
|
||
else
|
||
yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi, semi);
|
||
|
||
pop_obstacks ();
|
||
if (! semi)
|
||
check_for_missing_semicolon (yyval.ttype); ;
|
||
break;}
|
||
case 322:
|
||
#line 1945 "cp-parse.y"
|
||
{
|
||
#if 0
|
||
/* It's no longer clear what the following error is supposed to
|
||
accomplish. If it turns out to be needed, add a comment why. */
|
||
if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype))
|
||
{
|
||
error ("incomplete definition of type `%s'",
|
||
TYPE_NAME_STRING (yyval.ttype));
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
#endif
|
||
;
|
||
break;}
|
||
case 326:
|
||
#line 1967 "cp-parse.y"
|
||
{ if (pedantic) pedwarn ("comma at end of enumerator list"); ;
|
||
break;}
|
||
case 328:
|
||
#line 1972 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 329:
|
||
#line 1974 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 330:
|
||
#line 1976 "cp-parse.y"
|
||
{ error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
;
|
||
break;}
|
||
case 331:
|
||
#line 1979 "cp-parse.y"
|
||
{ error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
;
|
||
break;}
|
||
case 332:
|
||
#line 1982 "cp-parse.y"
|
||
{ error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype));
|
||
;
|
||
break;}
|
||
case 333:
|
||
#line 1985 "cp-parse.y"
|
||
{ error ("no body nor ';' separates two class, struct or union declarations");
|
||
;
|
||
break;}
|
||
case 334:
|
||
#line 1991 "cp-parse.y"
|
||
{ aggr1: current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 335:
|
||
#line 1993 "cp-parse.y"
|
||
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 336:
|
||
#line 1995 "cp-parse.y"
|
||
{ yyungetc (':', 1); goto aggr1; ;
|
||
break;}
|
||
case 337:
|
||
#line 1997 "cp-parse.y"
|
||
{ yyungetc ('{', 1);
|
||
aggr2:
|
||
current_aggr = yyval.ttype;
|
||
yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 338:
|
||
#line 2002 "cp-parse.y"
|
||
{ yyungetc (':', 1); goto aggr2; ;
|
||
break;}
|
||
case 339:
|
||
#line 2007 "cp-parse.y"
|
||
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 340:
|
||
#line 2012 "cp-parse.y"
|
||
{
|
||
yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 341:
|
||
#line 2016 "cp-parse.y"
|
||
{
|
||
if (yyvsp[0].ttype)
|
||
yyval.ttype = xref_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
else
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 342:
|
||
#line 2024 "cp-parse.y"
|
||
{
|
||
yyval.ttype = xref_defn_tag (current_aggr, yyvsp[0].ttype, NULL_TREE);
|
||
;
|
||
break;}
|
||
case 343:
|
||
#line 2028 "cp-parse.y"
|
||
{
|
||
if (yyvsp[0].ttype)
|
||
yyval.ttype = xref_defn_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
|
||
else
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
;
|
||
break;}
|
||
case 344:
|
||
#line 2037 "cp-parse.y"
|
||
{ yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE);
|
||
yyungetc ('{', 1); ;
|
||
break;}
|
||
case 347:
|
||
#line 2045 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 348:
|
||
#line 2047 "cp-parse.y"
|
||
{ yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 349:
|
||
#line 2049 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 351:
|
||
#line 2055 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 352:
|
||
#line 2060 "cp-parse.y"
|
||
{ if (! is_aggr_typedef (yyval.ttype, 1))
|
||
yyval.ttype = NULL_TREE;
|
||
else yyval.ttype = build_tree_list ((tree)visibility_default, yyval.ttype); ;
|
||
break;}
|
||
case 353:
|
||
#line 2064 "cp-parse.y"
|
||
{ if (! is_aggr_typedef (yyvsp[0].ttype, 1))
|
||
yyval.ttype = NULL_TREE;
|
||
else yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 356:
|
||
#line 2076 "cp-parse.y"
|
||
{
|
||
if (yyval.itype == visibility_protected)
|
||
{
|
||
warning ("`protected' visibility not implemented");
|
||
yyval.itype = visibility_public;
|
||
}
|
||
;
|
||
break;}
|
||
case 357:
|
||
#line 2084 "cp-parse.y"
|
||
{ if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
|
||
sorry ("non-virtual visibility");
|
||
yyval.itype = visibility_default_virtual; ;
|
||
break;}
|
||
case 358:
|
||
#line 2088 "cp-parse.y"
|
||
{ int err = 0;
|
||
if (yyvsp[0].itype == visibility_protected)
|
||
{
|
||
warning ("`protected' visibility not implemented");
|
||
yyvsp[0].itype = visibility_public;
|
||
err++;
|
||
}
|
||
else if (yyvsp[0].itype == visibility_public)
|
||
{
|
||
if (yyvsp[-1].itype == visibility_private)
|
||
{
|
||
mixed:
|
||
error ("base class cannot be public and private");
|
||
}
|
||
else if (yyvsp[-1].itype == visibility_default_virtual)
|
||
yyval.itype = visibility_public_virtual;
|
||
}
|
||
else /* $2 == visibility_private */
|
||
{
|
||
if (yyvsp[-1].itype == visibility_public)
|
||
goto mixed;
|
||
else if (yyvsp[-1].itype == visibility_default_virtual)
|
||
yyval.itype = visibility_private_virtual;
|
||
}
|
||
;
|
||
break;}
|
||
case 359:
|
||
#line 2114 "cp-parse.y"
|
||
{ if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
|
||
sorry ("non-virtual visibility");
|
||
if (yyval.itype == visibility_public)
|
||
yyval.itype = visibility_public_virtual;
|
||
else if (yyval.itype == visibility_private)
|
||
yyval.itype = visibility_private_virtual; ;
|
||
break;}
|
||
case 360:
|
||
#line 2123 "cp-parse.y"
|
||
{ tree t;
|
||
push_obstacks_nochange ();
|
||
end_temporary_allocation ();
|
||
|
||
if (! IS_AGGR_TYPE (yyvsp[-1].ttype))
|
||
{
|
||
yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
|
||
TYPE_NAME (yyvsp[-1].ttype) = get_identifier ("erroneous type");
|
||
}
|
||
if (TYPE_SIZE (yyvsp[-1].ttype))
|
||
duplicate_tag_error (yyvsp[-1].ttype);
|
||
if (TYPE_SIZE (yyvsp[-1].ttype) || TYPE_BEING_DEFINED (yyvsp[-1].ttype))
|
||
{
|
||
t = make_lang_type (TREE_CODE (yyvsp[-1].ttype));
|
||
pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t);
|
||
yyvsp[-1].ttype = t;
|
||
}
|
||
pushclass (yyvsp[-1].ttype, 0);
|
||
TYPE_BEING_DEFINED (yyvsp[-1].ttype) = 1;
|
||
t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
|
||
if (IDENTIFIER_TEMPLATE (t))
|
||
overload_template_name (t, 1);
|
||
;
|
||
break;}
|
||
case 361:
|
||
#line 2150 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 362:
|
||
#line 2152 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list ((tree)visibility_default, yyval.ttype); ;
|
||
break;}
|
||
case 363:
|
||
#line 2154 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, build_tree_list ((tree) yyvsp[-2].itype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 365:
|
||
#line 2160 "cp-parse.y"
|
||
{ if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 366:
|
||
#line 2162 "cp-parse.y"
|
||
{ if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
|
||
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 367:
|
||
#line 2165 "cp-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("extra semicolon in struct or union specified"); ;
|
||
break;}
|
||
case 368:
|
||
#line 2171 "cp-parse.y"
|
||
{
|
||
do_components:
|
||
if (yyvsp[-1].ttype == void_type_node)
|
||
/* We just got some friends.
|
||
They have been recorded elsewhere. */
|
||
yyval.ttype = NULL_TREE;
|
||
else if (yyvsp[-1].ttype == NULL_TREE)
|
||
{
|
||
tree t = groktypename (build_decl_list (yyval.ttype, NULL_TREE));
|
||
if (t == NULL_TREE)
|
||
{
|
||
error ("error in component specification");
|
||
yyval.ttype = NULL_TREE;
|
||
}
|
||
else if (TREE_CODE (t) == UNION_TYPE)
|
||
{
|
||
/* handle anonymous unions */
|
||
if (CLASSTYPE_METHOD_VEC (t))
|
||
sorry ("methods in anonymous unions");
|
||
yyval.ttype = build_lang_field_decl (FIELD_DECL, NULL_TREE, t);
|
||
}
|
||
else if (TREE_CODE (t) == ENUMERAL_TYPE)
|
||
yyval.ttype = grok_enum_decls (t, NULL_TREE);
|
||
else if (TREE_CODE (t) == RECORD_TYPE)
|
||
{
|
||
if (TYPE_LANG_SPECIFIC (t)
|
||
&& CLASSTYPE_DECLARED_EXCEPTION (t))
|
||
shadow_tag (yyval.ttype);
|
||
yyval.ttype = NULL_TREE;
|
||
}
|
||
else if (t != void_type_node)
|
||
{
|
||
error ("empty component declaration");
|
||
yyval.ttype = NULL_TREE;
|
||
}
|
||
else yyval.ttype = NULL_TREE;
|
||
}
|
||
else
|
||
{
|
||
tree t = TREE_TYPE (yyvsp[-1].ttype);
|
||
if (TREE_CODE (t) == ENUMERAL_TYPE && TREE_NONLOCAL_FLAG (t))
|
||
yyval.ttype = grok_enum_decls (t, yyvsp[-1].ttype);
|
||
else
|
||
yyval.ttype = yyvsp[-1].ttype;
|
||
}
|
||
end_exception_decls ();
|
||
;
|
||
break;}
|
||
case 369:
|
||
#line 2219 "cp-parse.y"
|
||
{ yyval.ttype = groktypefield (yyval.ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 370:
|
||
#line 2221 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
yyval.ttype = groktypefield (yyval.ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 371:
|
||
#line 2225 "cp-parse.y"
|
||
{ yyval.ttype = groktypefield (yyval.ttype, empty_parms ()); ;
|
||
break;}
|
||
case 372:
|
||
#line 2227 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
yyval.ttype = groktypefield (yyval.ttype, empty_parms ()); ;
|
||
break;}
|
||
case 373:
|
||
#line 2231 "cp-parse.y"
|
||
{ goto do_components; ;
|
||
break;}
|
||
case 374:
|
||
#line 2234 "cp-parse.y"
|
||
{ yyval.ttype = grokfield (yyvsp[-1].ttype, yyval.ttype, 0, 0, 0, 0); ;
|
||
break;}
|
||
case 375:
|
||
#line 2236 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
goto do_components; ;
|
||
break;}
|
||
case 376:
|
||
#line 2240 "cp-parse.y"
|
||
{ yyval.ttype = groktypefield (yyval.ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 377:
|
||
#line 2242 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
yyval.ttype = groktypefield (yyval.ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 378:
|
||
#line 2246 "cp-parse.y"
|
||
{ yyval.ttype = groktypefield (yyval.ttype, empty_parms ()); ;
|
||
break;}
|
||
case 379:
|
||
#line 2248 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
yyval.ttype = groktypefield (yyval.ttype, empty_parms ()); ;
|
||
break;}
|
||
case 380:
|
||
#line 2252 "cp-parse.y"
|
||
{ yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 381:
|
||
#line 2254 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 382:
|
||
#line 2258 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 383:
|
||
#line 2263 "cp-parse.y"
|
||
{ yyval.ttype = finish_method (yyval.ttype); ;
|
||
break;}
|
||
case 384:
|
||
#line 2265 "cp-parse.y"
|
||
{ yyval.ttype = finish_method (yyval.ttype); ;
|
||
break;}
|
||
case 385:
|
||
#line 2267 "cp-parse.y"
|
||
{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 386:
|
||
#line 2269 "cp-parse.y"
|
||
{ error ("missing ';' before right brace");
|
||
yyungetc ('}', 0);
|
||
yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 387:
|
||
#line 2276 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 389:
|
||
#line 2279 "cp-parse.y"
|
||
{
|
||
/* In this context, void_type_node encodes
|
||
friends. They have been recorded elsewhere. */
|
||
if (yyval.ttype == void_type_node)
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
else
|
||
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 390:
|
||
#line 2291 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-4].ttype;
|
||
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 391:
|
||
#line 2295 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-6].ttype;
|
||
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 392:
|
||
#line 2299 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-4].ttype;
|
||
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 393:
|
||
#line 2303 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-3].ttype;
|
||
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 394:
|
||
#line 2307 "cp-parse.y"
|
||
{ current_declspecs = yyvsp[-2].ttype;
|
||
yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 395:
|
||
#line 2313 "cp-parse.y"
|
||
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 396:
|
||
#line 2316 "cp-parse.y"
|
||
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
|
||
break;}
|
||
case 397:
|
||
#line 2319 "cp-parse.y"
|
||
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 398:
|
||
#line 2322 "cp-parse.y"
|
||
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
|
||
decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 399:
|
||
#line 2325 "cp-parse.y"
|
||
{ yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 401:
|
||
#line 2335 "cp-parse.y"
|
||
{ TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 402:
|
||
#line 2340 "cp-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 403:
|
||
#line 2342 "cp-parse.y"
|
||
{ yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 404:
|
||
#line 2347 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 405:
|
||
#line 2349 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 406:
|
||
#line 2354 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 408:
|
||
#line 2357 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 409:
|
||
#line 2362 "cp-parse.y"
|
||
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
|
||
break;}
|
||
case 410:
|
||
#line 2364 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 411:
|
||
#line 2369 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 412:
|
||
#line 2371 "cp-parse.y"
|
||
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 413:
|
||
#line 2379 "cp-parse.y"
|
||
{ yyval.itype = suspend_momentary (); ;
|
||
break;}
|
||
case 414:
|
||
#line 2380 "cp-parse.y"
|
||
{ resume_momentary (yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 415:
|
||
#line 2386 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 416:
|
||
#line 2388 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 417:
|
||
#line 2390 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
|
||
break;}
|
||
case 418:
|
||
#line 2392 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 419:
|
||
#line 2394 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 420:
|
||
#line 2396 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 421:
|
||
#line 2398 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 422:
|
||
#line 2400 "cp-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 423:
|
||
#line 2402 "cp-parse.y"
|
||
{ see_typename (); ;
|
||
break;}
|
||
case 425:
|
||
#line 2405 "cp-parse.y"
|
||
{ yyval.ttype = make_reference_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 426:
|
||
#line 2407 "cp-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 427:
|
||
#line 2409 "cp-parse.y"
|
||
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 429:
|
||
#line 2415 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 430:
|
||
#line 2417 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 431:
|
||
#line 2419 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
|
||
break;}
|
||
case 432:
|
||
#line 2421 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 433:
|
||
#line 2423 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 434:
|
||
#line 2425 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 435:
|
||
#line 2427 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 436:
|
||
#line 2429 "cp-parse.y"
|
||
{ see_typename (); ;
|
||
break;}
|
||
case 438:
|
||
#line 2432 "cp-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 439:
|
||
#line 2434 "cp-parse.y"
|
||
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 440:
|
||
#line 2442 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 441:
|
||
#line 2444 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 442:
|
||
#line 2446 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
|
||
break;}
|
||
case 443:
|
||
#line 2448 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 444:
|
||
#line 2450 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 445:
|
||
#line 2452 "cp-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 446:
|
||
#line 2454 "cp-parse.y"
|
||
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 447:
|
||
#line 2456 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 448:
|
||
#line 2458 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 449:
|
||
#line 2460 "cp-parse.y"
|
||
{ see_typename (); ;
|
||
break;}
|
||
case 450:
|
||
#line 2464 "cp-parse.y"
|
||
{ see_typename (); ;
|
||
break;}
|
||
case 451:
|
||
#line 2467 "cp-parse.y"
|
||
{
|
||
destructor_name:
|
||
see_typename ();
|
||
yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 452:
|
||
#line 2473 "cp-parse.y"
|
||
{ goto destructor_name; ;
|
||
break;}
|
||
case 453:
|
||
#line 2475 "cp-parse.y"
|
||
{ goto destructor_name; ;
|
||
break;}
|
||
case 454:
|
||
#line 2477 "cp-parse.y"
|
||
{
|
||
see_typename ();
|
||
yyval.ttype = build_parse_node (WRAPPER_EXPR, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 455:
|
||
#line 2482 "cp-parse.y"
|
||
{
|
||
see_typename ();
|
||
yyval.ttype = build_parse_node (WRAPPER_EXPR,
|
||
build_parse_node (COND_EXPR, yyvsp[0].ttype, NULL_TREE, NULL_TREE));
|
||
;
|
||
break;}
|
||
case 456:
|
||
#line 2488 "cp-parse.y"
|
||
{ see_typename ();
|
||
yyval.ttype = build_parse_node (ANTI_WRAPPER_EXPR, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 457:
|
||
#line 2491 "cp-parse.y"
|
||
{ see_typename ();
|
||
if (TREE_CODE (yyval.ttype) != SCOPE_REF)
|
||
yyval.ttype = build_push_scope (yyval.ttype, yyvsp[0].ttype);
|
||
else if (TREE_OPERAND (yyval.ttype, 1) == NULL_TREE)
|
||
TREE_OPERAND (yyval.ttype, 1) = yyvsp[0].ttype;
|
||
else
|
||
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 458:
|
||
#line 2500 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 459:
|
||
#line 2502 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 460:
|
||
#line 2504 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 461:
|
||
#line 2506 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-2].ttype, empty_parms (), yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 462:
|
||
#line 2508 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-4].ttype, NULL_TREE, NULL_TREE)); ;
|
||
break;}
|
||
case 463:
|
||
#line 2511 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 464:
|
||
#line 2513 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 465:
|
||
#line 2515 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 466:
|
||
#line 2517 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-2].ttype, empty_parms (), yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 467:
|
||
#line 2519 "cp-parse.y"
|
||
{ yyval.ttype = build_push_scope (yyval.ttype, build_parse_node (CALL_EXPR, yyvsp[-4].ttype, NULL_TREE, NULL_TREE)); ;
|
||
break;}
|
||
case 468:
|
||
#line 2521 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (SCOPE_REF, NULL_TREE, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 469:
|
||
#line 2525 "cp-parse.y"
|
||
{ yyval.ttype = resolve_scope_to_name (NULL_TREE, yyval.ttype);
|
||
if (yyval.ttype == NULL_TREE)
|
||
{
|
||
error ("undefined explicitly scoped type");
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
;
|
||
break;}
|
||
case 470:
|
||
#line 2533 "cp-parse.y"
|
||
{
|
||
if (yyval.ttype == error_mark_node)
|
||
/* leave it alone */;
|
||
else
|
||
{
|
||
yyval.ttype = resolve_scope_to_name (NULL_TREE, TYPE_IDENTIFIER (yyval.ttype));
|
||
if (yyval.ttype == NULL_TREE)
|
||
{
|
||
error ("undefined explicitly scoped type");
|
||
yyval.ttype = error_mark_node;
|
||
}
|
||
}
|
||
if (yyvsp[0].itype) popclass (1);
|
||
;
|
||
break;}
|
||
case 473:
|
||
#line 2569 "cp-parse.y"
|
||
{ see_typename ();
|
||
yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 474:
|
||
#line 2573 "cp-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 475:
|
||
#line 2575 "cp-parse.y"
|
||
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 476:
|
||
#line 2577 "cp-parse.y"
|
||
{ see_typename (); ;
|
||
break;}
|
||
case 477:
|
||
#line 2579 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 478:
|
||
#line 2581 "cp-parse.y"
|
||
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 479:
|
||
#line 2583 "cp-parse.y"
|
||
{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
|
||
break;}
|
||
case 480:
|
||
#line 2585 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 481:
|
||
#line 2587 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
|
||
break;}
|
||
case 482:
|
||
#line 2589 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 483:
|
||
#line 2591 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 484:
|
||
#line 2593 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 485:
|
||
#line 2595 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (), yyvsp[0].ttype); ;
|
||
break;}
|
||
case 486:
|
||
#line 2597 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 487:
|
||
#line 2599 "cp-parse.y"
|
||
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
|
||
break;}
|
||
case 488:
|
||
#line 2604 "cp-parse.y"
|
||
{ tree t;
|
||
t = yyval.ttype;
|
||
while (TREE_OPERAND (t, 1))
|
||
t = TREE_OPERAND (t, 1);
|
||
TREE_OPERAND (t, 1) = build_parse_node (INDIRECT_REF, 0);
|
||
;
|
||
break;}
|
||
case 489:
|
||
#line 2611 "cp-parse.y"
|
||
{ tree t;
|
||
t = yyval.ttype;
|
||
while (TREE_OPERAND (t, 1))
|
||
t = TREE_OPERAND (t, 1);
|
||
TREE_OPERAND (t, 1) = build_parse_node (INDIRECT_REF, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 490:
|
||
#line 2618 "cp-parse.y"
|
||
{ tree t;
|
||
t = yyval.ttype;
|
||
while (TREE_OPERAND (t, 1))
|
||
t = TREE_OPERAND (t, 1);
|
||
TREE_OPERAND (t, 1) = build_parse_node (ADDR_EXPR, 0);
|
||
;
|
||
break;}
|
||
case 491:
|
||
#line 2625 "cp-parse.y"
|
||
{ tree t;
|
||
t = yyval.ttype;
|
||
while (TREE_OPERAND (t, 1))
|
||
t = TREE_OPERAND (t, 1);
|
||
TREE_OPERAND (t, 1) = build_parse_node (ADDR_EXPR, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 492:
|
||
#line 2635 "cp-parse.y"
|
||
{ tree t;
|
||
t = yyval.ttype;
|
||
while (TREE_OPERAND (t, 1))
|
||
t = TREE_OPERAND (t, 1);
|
||
TREE_OPERAND (t, 1) = build_parse_node (INDIRECT_REF, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 493:
|
||
#line 2642 "cp-parse.y"
|
||
{ tree t;
|
||
t = yyval.ttype;
|
||
while (TREE_OPERAND (t, 1))
|
||
t = TREE_OPERAND (t, 1);
|
||
TREE_OPERAND (t, 1) = build_parse_node (ADDR_EXPR, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 499:
|
||
#line 2669 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
push_momentary ();
|
||
expand_start_bindings (0);
|
||
yyval.strtype = stmt_decl_msg;
|
||
stmt_decl_msg = 0; ;
|
||
break;}
|
||
case 501:
|
||
#line 2683 "cp-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids label declarations"); ;
|
||
break;}
|
||
case 504:
|
||
#line 2694 "cp-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 505:
|
||
#line 2708 "cp-parse.y"
|
||
{;
|
||
break;}
|
||
case 507:
|
||
#line 2713 "cp-parse.y"
|
||
{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
|
||
break;}
|
||
case 508:
|
||
#line 2715 "cp-parse.y"
|
||
{ pop_implicit_try_blocks (NULL_TREE);
|
||
stmt_decl_msg = yyvsp[-3].strtype;
|
||
expand_end_bindings (getdecls (), kept_level_p (), 1);
|
||
yyval.ttype = poplevel (kept_level_p (), 1, 0);
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 509:
|
||
#line 2721 "cp-parse.y"
|
||
{ pop_implicit_try_blocks (NULL_TREE);
|
||
stmt_decl_msg = yyvsp[-3].strtype;
|
||
expand_end_bindings (getdecls (), kept_level_p (), 1);
|
||
yyval.ttype = poplevel (kept_level_p (), 0, 0);
|
||
pop_momentary (); ;
|
||
break;}
|
||
case 510:
|
||
#line 2730 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0);
|
||
stmt_decl_msg = "if"; ;
|
||
break;}
|
||
case 511:
|
||
#line 2734 "cp-parse.y"
|
||
{ stmt_decl_msg = 0; ;
|
||
break;}
|
||
case 512:
|
||
#line 2739 "cp-parse.y"
|
||
{ finish_stmt (); ;
|
||
break;}
|
||
case 513:
|
||
#line 2741 "cp-parse.y"
|
||
{ if (stmt_decl_msg)
|
||
error ("declaration after %s invalid", stmt_decl_msg);
|
||
stmt_decl_msg = 0;
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 514:
|
||
#line 2746 "cp-parse.y"
|
||
{
|
||
tree expr = yyvsp[-1].ttype;
|
||
emit_line_note (input_filename, lineno);
|
||
/* Do default conversion if safe and possibly important,
|
||
in case within ({...}). */
|
||
if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
|
||
&& lvalue_p (expr))
|
||
|| TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
|
||
expr = default_conversion (expr);
|
||
cplus_expand_expr_stmt (expr);
|
||
clear_momentary ();
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 515:
|
||
#line 2759 "cp-parse.y"
|
||
{ expand_start_else ();
|
||
stmt_decl_msg = "else"; ;
|
||
break;}
|
||
case 516:
|
||
#line 2762 "cp-parse.y"
|
||
{ expand_end_cond ();
|
||
stmt_decl_msg = 0;
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 517:
|
||
#line 2766 "cp-parse.y"
|
||
{ expand_end_cond ();
|
||
stmt_decl_msg = 0;
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 518:
|
||
#line 2770 "cp-parse.y"
|
||
{ emit_nop ();
|
||
emit_line_note (input_filename, lineno);
|
||
expand_start_loop (1); ;
|
||
break;}
|
||
case 519:
|
||
#line 2774 "cp-parse.y"
|
||
{ expand_exit_loop_if_false (0, truthvalue_conversion (yyvsp[-1].ttype));
|
||
stmt_decl_msg = "while"; ;
|
||
break;}
|
||
case 520:
|
||
#line 2777 "cp-parse.y"
|
||
{
|
||
expand_end_loop ();
|
||
stmt_decl_msg = 0;
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 521:
|
||
#line 2782 "cp-parse.y"
|
||
{ emit_nop ();
|
||
emit_line_note (input_filename, lineno);
|
||
expand_start_loop_continue_elsewhere (1);
|
||
stmt_decl_msg = "do"; ;
|
||
break;}
|
||
case 522:
|
||
#line 2787 "cp-parse.y"
|
||
{ stmt_decl_msg = 0;
|
||
expand_loop_continue_here (); ;
|
||
break;}
|
||
case 523:
|
||
#line 2790 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_exit_loop_if_false (0, truthvalue_conversion (yyvsp[-2].ttype));
|
||
expand_end_loop ();
|
||
clear_momentary ();
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 524:
|
||
#line 2796 "cp-parse.y"
|
||
{ emit_nop ();
|
||
emit_line_note (input_filename, lineno);
|
||
if (yyvsp[0].ttype) cplus_expand_expr_stmt (yyvsp[0].ttype);
|
||
expand_start_loop_continue_elsewhere (1); ;
|
||
break;}
|
||
case 525:
|
||
#line 2801 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, truthvalue_conversion (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 526:
|
||
#line 2806 "cp-parse.y"
|
||
{ push_momentary ();
|
||
stmt_decl_msg = "for"; ;
|
||
break;}
|
||
case 527:
|
||
#line 2809 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
expand_loop_continue_here ();
|
||
if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
|
||
pop_momentary ();
|
||
expand_end_loop ();
|
||
stmt_decl_msg = 0;
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 528:
|
||
#line 2817 "cp-parse.y"
|
||
{ emit_nop ();
|
||
emit_line_note (input_filename, lineno);
|
||
expand_start_loop_continue_elsewhere (1); ;
|
||
break;}
|
||
case 529:
|
||
#line 2821 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, truthvalue_conversion (yyvsp[-1].ttype)); ;
|
||
break;}
|
||
case 530:
|
||
#line 2826 "cp-parse.y"
|
||
{ push_momentary ();
|
||
stmt_decl_msg = "for";
|
||
yyvsp[0].itype = lineno; ;
|
||
break;}
|
||
case 531:
|
||
#line 2830 "cp-parse.y"
|
||
{ emit_line_note (input_filename, yyvsp[-2].itype);
|
||
expand_loop_continue_here ();
|
||
if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
|
||
pop_momentary ();
|
||
expand_end_loop ();
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
if (yyvsp[-8].itype)
|
||
{
|
||
register keep = yyvsp[-8].itype > 0;
|
||
if (keep) expand_end_bindings (0, keep, 1);
|
||
poplevel (keep, 1, 0);
|
||
pop_momentary ();
|
||
}
|
||
stmt_decl_msg = 0;
|
||
finish_stmt ();
|
||
;
|
||
break;}
|
||
case 532:
|
||
#line 2847 "cp-parse.y"
|
||
{ emit_line_note (input_filename, 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 ();
|
||
stmt_decl_msg = "switch"; ;
|
||
break;}
|
||
case 533:
|
||
#line 2854 "cp-parse.y"
|
||
{ expand_end_case (yyvsp[-3].ttype);
|
||
pop_momentary ();
|
||
stmt_decl_msg = 0;
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 534:
|
||
#line 2859 "cp-parse.y"
|
||
{ register tree value = yyvsp[-1].ttype;
|
||
register tree label
|
||
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
|
||
|
||
/* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
|
||
Strip such NOP_EXPRs. */
|
||
if (TREE_CODE (value) == NOP_EXPR
|
||
&& TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
|
||
value = TREE_OPERAND (value, 0);
|
||
|
||
if (TREE_READONLY_DECL_P (value))
|
||
{
|
||
value = decl_constant_value (value);
|
||
/* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
|
||
Strip such NOP_EXPRs. */
|
||
if (TREE_CODE (value) == NOP_EXPR
|
||
&& TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
|
||
value = TREE_OPERAND (value, 0);
|
||
}
|
||
value = fold (value);
|
||
|
||
if (TREE_CODE (value) != INTEGER_CST
|
||
&& value != error_mark_node)
|
||
{
|
||
error ("case label does not reduce to an integer constant");
|
||
value = error_mark_node;
|
||
}
|
||
else
|
||
/* Promote char or short to int. */
|
||
value = default_conversion (value);
|
||
if (value != error_mark_node)
|
||
{
|
||
tree duplicate;
|
||
int success = pushcase (value, 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");
|
||
}
|
||
define_case_label (label);
|
||
;
|
||
break;}
|
||
case 536:
|
||
#line 2909 "cp-parse.y"
|
||
{ register tree value1 = yyvsp[-3].ttype;
|
||
register tree value2 = yyvsp[-1].ttype;
|
||
register tree label
|
||
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
|
||
|
||
if (pedantic)
|
||
{
|
||
error ("ANSI C does not allow range expressions in switch statement");
|
||
value1 = error_mark_node;
|
||
value2 = error_mark_node;
|
||
break;
|
||
}
|
||
/* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
|
||
Strip such NOP_EXPRs. */
|
||
if (TREE_CODE (value1) == NOP_EXPR
|
||
&& TREE_TYPE (value1) == TREE_TYPE (TREE_OPERAND (value1, 0)))
|
||
value1 = TREE_OPERAND (value1, 0);
|
||
|
||
if (TREE_READONLY_DECL_P (value1))
|
||
{
|
||
value1 = decl_constant_value (value1);
|
||
/* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
|
||
Strip such NOP_EXPRs. */
|
||
if (TREE_CODE (value1) == NOP_EXPR
|
||
&& TREE_TYPE (value1) == TREE_TYPE (TREE_OPERAND (value1, 0)))
|
||
value1 = TREE_OPERAND (value1, 0);
|
||
}
|
||
value1 = fold (value1);
|
||
|
||
/* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
|
||
Strip such NOP_EXPRs. */
|
||
if (TREE_CODE (value2) == NOP_EXPR
|
||
&& TREE_TYPE (value2) == TREE_TYPE (TREE_OPERAND (value2, 0)))
|
||
value2 = TREE_OPERAND (value2, 0);
|
||
|
||
if (TREE_READONLY_DECL_P (value2))
|
||
{
|
||
value2 = decl_constant_value (value2);
|
||
/* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
|
||
Strip such NOP_EXPRs. */
|
||
if (TREE_CODE (value2) == NOP_EXPR
|
||
&& TREE_TYPE (value2) == TREE_TYPE (TREE_OPERAND (value2, 0)))
|
||
value2 = TREE_OPERAND (value2, 0);
|
||
}
|
||
value2 = fold (value2);
|
||
|
||
|
||
if (TREE_CODE (value1) != INTEGER_CST
|
||
&& value1 != error_mark_node)
|
||
{
|
||
error ("case label does not reduce to an integer constant");
|
||
value1 = error_mark_node;
|
||
}
|
||
if (TREE_CODE (value2) != INTEGER_CST
|
||
&& value2 != error_mark_node)
|
||
{
|
||
error ("case label does not reduce to an integer constant");
|
||
value2 = error_mark_node;
|
||
}
|
||
if (value1 != error_mark_node
|
||
&& value2 != error_mark_node)
|
||
{
|
||
tree duplicate;
|
||
int success = pushcase_range (value1, value2, label,
|
||
&duplicate);
|
||
if (success == 1)
|
||
error ("case label not within a switch statement");
|
||
else if (success == 2)
|
||
{
|
||
error ("duplicate (or overlapping) case value");
|
||
error_with_decl (duplicate, "this is the first entry overlapping that value");
|
||
}
|
||
else if (success == 3)
|
||
warning ("case value out of range");
|
||
else if (success == 4)
|
||
warning ("empty range specified");
|
||
else if (success == 5)
|
||
error ("case label within scope of cleanup or variable array");
|
||
}
|
||
define_case_label (label);
|
||
;
|
||
break;}
|
||
case 538:
|
||
#line 2992 "cp-parse.y"
|
||
{
|
||
tree duplicate;
|
||
register tree label
|
||
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
|
||
int success = pushcase (NULL_TREE, label, &duplicate);
|
||
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");
|
||
}
|
||
define_case_label (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 540:
|
||
#line 3008 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
if ( ! expand_exit_something ())
|
||
error ("break statement not within loop or switch"); ;
|
||
break;}
|
||
case 541:
|
||
#line 3012 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
if (! expand_continue_loop (0))
|
||
error ("continue statement not within a loop"); ;
|
||
break;}
|
||
case 542:
|
||
#line 3016 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
c_expand_return (NULL_TREE); ;
|
||
break;}
|
||
case 543:
|
||
#line 3019 "cp-parse.y"
|
||
{ emit_line_note (input_filename, lineno);
|
||
c_expand_return (yyvsp[-1].ttype);
|
||
finish_stmt ();
|
||
;
|
||
break;}
|
||
case 544:
|
||
#line 3024 "cp-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
|
||
emit_line_note (input_filename, lineno);
|
||
expand_asm (yyvsp[-2].ttype);
|
||
finish_stmt ();
|
||
;
|
||
break;}
|
||
case 545:
|
||
#line 3031 "cp-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
|
||
emit_line_note (input_filename, 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);
|
||
finish_stmt ();
|
||
;
|
||
break;}
|
||
case 546:
|
||
#line 3040 "cp-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
|
||
emit_line_note (input_filename, 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);
|
||
finish_stmt ();
|
||
;
|
||
break;}
|
||
case 547:
|
||
#line 3050 "cp-parse.y"
|
||
{ if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
|
||
emit_line_note (input_filename, 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);
|
||
finish_stmt ();
|
||
;
|
||
break;}
|
||
case 548:
|
||
#line 3058 "cp-parse.y"
|
||
{ tree decl;
|
||
emit_line_note (input_filename, lineno);
|
||
decl = lookup_label (yyvsp[-1].ttype);
|
||
TREE_USED (decl) = 1;
|
||
expand_goto (decl); ;
|
||
break;}
|
||
case 549:
|
||
#line 3064 "cp-parse.y"
|
||
{ finish_stmt (); ;
|
||
break;}
|
||
case 550:
|
||
#line 3066 "cp-parse.y"
|
||
{ error ("label must be followed by statement");
|
||
yyungetc ('}', 0);
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 551:
|
||
#line 3070 "cp-parse.y"
|
||
{ finish_stmt (); ;
|
||
break;}
|
||
case 552:
|
||
#line 3073 "cp-parse.y"
|
||
{ cplus_expand_throw (NULL_TREE); ;
|
||
break;}
|
||
case 553:
|
||
#line 3074 "cp-parse.y"
|
||
{ cplus_expand_throw (yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 554:
|
||
#line 3076 "cp-parse.y"
|
||
{ cplus_expand_raise (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, 0);
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 555:
|
||
#line 3079 "cp-parse.y"
|
||
{ cplus_expand_raise (yyvsp[-2].ttype, NULL_TREE, NULL_TREE, 0);
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 556:
|
||
#line 3082 "cp-parse.y"
|
||
{ cplus_expand_raise (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, 0);
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 557:
|
||
#line 3085 "cp-parse.y"
|
||
{ cplus_expand_raise (yyvsp[-2].ttype, NULL_TREE, NULL_TREE, 0);
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 558:
|
||
#line 3088 "cp-parse.y"
|
||
{ cplus_expand_reraise (yyvsp[-1].ttype);
|
||
finish_stmt (); ;
|
||
break;}
|
||
case 559:
|
||
#line 3091 "cp-parse.y"
|
||
{
|
||
tree decl = cplus_expand_end_try (yyvsp[-3].itype);
|
||
yyvsp[-2].ttype = current_exception_type;
|
||
yyvsp[0].ttype = current_exception_decl;
|
||
yyval.ttype = current_exception_object;
|
||
cplus_expand_start_except (yyvsp[-1].ttype, decl);
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
push_momentary ();
|
||
expand_start_bindings (0);
|
||
stmt_decl_msg = 0;
|
||
;
|
||
break;}
|
||
case 560:
|
||
#line 3104 "cp-parse.y"
|
||
{
|
||
tree decls = getdecls ();
|
||
/* If there is a default exception to handle,
|
||
handle it here. */
|
||
if (yyvsp[-1].ttype)
|
||
{
|
||
tree decl = build_decl (CPLUS_CATCH_DECL, NULL_TREE, 0);
|
||
tree block;
|
||
|
||
pushlevel (1);
|
||
expand_start_bindings (0);
|
||
expand_expr (yyvsp[-1].ttype, 0, 0, 0);
|
||
expand_end_bindings (0, 1, 0);
|
||
block = poplevel (1, 0, 0);
|
||
|
||
/* This is a catch block. */
|
||
TREE_LANG_FLAG_2 (block) = 1;
|
||
BLOCK_VARS (block) = decl;
|
||
}
|
||
|
||
expand_end_bindings (decls, decls != 0, 1);
|
||
poplevel (decls != 0, 1, 0);
|
||
pop_momentary ();
|
||
current_exception_type = yyvsp[-5].ttype;
|
||
current_exception_decl = yyvsp[-3].ttype;
|
||
current_exception_object = yyvsp[-2].ttype;
|
||
cplus_expand_end_except (yyvsp[-1].ttype);
|
||
;
|
||
break;}
|
||
case 561:
|
||
#line 3133 "cp-parse.y"
|
||
{
|
||
cplus_expand_end_try (yyvsp[-1].itype);
|
||
/* These are the important actions of
|
||
`cplus_expand_end_except' which we must emulate. */
|
||
if (expand_escape_except ())
|
||
expand_end_except ();
|
||
expand_end_bindings (0, 0, 1);
|
||
poplevel (0, 0, 0);
|
||
;
|
||
break;}
|
||
case 562:
|
||
#line 3143 "cp-parse.y"
|
||
{
|
||
tree decl = cplus_expand_end_try (yyvsp[-2].itype);
|
||
yyvsp[-1].ttype = current_exception_type;
|
||
yyvsp[0].ttype = current_exception_decl;
|
||
yyval.ttype = current_exception_object;
|
||
cplus_expand_start_except (NULL, decl);
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
push_momentary ();
|
||
expand_start_bindings (0);
|
||
stmt_decl_msg = 0;
|
||
;
|
||
break;}
|
||
case 563:
|
||
#line 3156 "cp-parse.y"
|
||
{
|
||
tree decls = getdecls ();
|
||
/* If there is a default exception to handle,
|
||
handle it here. */
|
||
if (yyvsp[0].ttype)
|
||
{
|
||
tree decl = build_decl (CPLUS_CATCH_DECL, NULL_TREE, 0);
|
||
tree block;
|
||
|
||
pushlevel (1);
|
||
expand_start_bindings (0);
|
||
expand_expr (yyvsp[0].ttype, 0, 0, 0);
|
||
expand_end_bindings (0, 1, 0);
|
||
block = poplevel (1, 0, 0);
|
||
|
||
/* This is a catch block. */
|
||
TREE_LANG_FLAG_2 (block) = 1;
|
||
BLOCK_VARS (block) = decl;
|
||
}
|
||
|
||
expand_end_bindings (decls, decls != 0, 1);
|
||
poplevel (decls != 0, 1, 0);
|
||
pop_momentary ();
|
||
current_exception_type = yyvsp[-3].ttype;
|
||
current_exception_decl = yyvsp[-2].ttype;
|
||
current_exception_object = yyvsp[-1].ttype;
|
||
cplus_expand_end_except (yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 564:
|
||
#line 3185 "cp-parse.y"
|
||
{ tree name = get_identifier ("(compiler error)");
|
||
tree orig_ex_type = current_exception_type;
|
||
tree orig_ex_decl = current_exception_decl;
|
||
tree orig_ex_obj = current_exception_object;
|
||
tree decl = cplus_expand_end_try (yyvsp[-2].itype), decls;
|
||
|
||
/* Start hidden EXCEPT. */
|
||
cplus_expand_start_except (name, decl);
|
||
pushlevel (0);
|
||
clear_last_expr ();
|
||
push_momentary ();
|
||
expand_start_bindings (0);
|
||
stmt_decl_msg = 0;
|
||
|
||
/* This sets up the reraise. */
|
||
cplus_expand_reraise (yyvsp[0].ttype);
|
||
|
||
decls = getdecls ();
|
||
expand_end_bindings (decls, decls != 0, 1);
|
||
poplevel (decls != 0, 1, 0);
|
||
pop_momentary ();
|
||
current_exception_type = orig_ex_type;
|
||
current_exception_decl = orig_ex_decl;
|
||
current_exception_object = orig_ex_obj;
|
||
/* This will reraise for us. */
|
||
cplus_expand_end_except (error_mark_node);
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
if (yychar != ';')
|
||
error ("missing ';' after reraise statement");
|
||
;
|
||
break;}
|
||
case 565:
|
||
#line 3217 "cp-parse.y"
|
||
{ yyerror ("`except' missing after `try' statement");
|
||
/* Terminate the binding contour started by special
|
||
code in `.pushlevel'. Automagically pops off
|
||
the conditional we started for `try' stmt. */
|
||
cplus_expand_end_try (yyvsp[0].itype);
|
||
expand_end_bindings (0, 0, 1);
|
||
poplevel (0, 0, 0);
|
||
pop_momentary ();
|
||
YYERROR; ;
|
||
break;}
|
||
case 566:
|
||
#line 3232 "cp-parse.y"
|
||
{
|
||
yyval.itype = 1;
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 567:
|
||
#line 3237 "cp-parse.y"
|
||
{
|
||
yyval.itype = 1;
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 568:
|
||
#line 3242 "cp-parse.y"
|
||
{
|
||
yyval.itype = 0;
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 569:
|
||
#line 3250 "cp-parse.y"
|
||
{ tree label;
|
||
do_label:
|
||
label = define_label (input_filename, lineno, yyvsp[-1].ttype);
|
||
if (label)
|
||
expand_label (label);
|
||
;
|
||
break;}
|
||
case 570:
|
||
#line 3257 "cp-parse.y"
|
||
{ goto do_label; ;
|
||
break;}
|
||
case 571:
|
||
#line 3259 "cp-parse.y"
|
||
{ tree label = define_label (input_filename, lineno, yyvsp[0].ttype);
|
||
if (label)
|
||
expand_label (label);
|
||
;
|
||
break;}
|
||
case 572:
|
||
#line 3265 "cp-parse.y"
|
||
{ cplus_expand_start_try (0); ;
|
||
break;}
|
||
case 574:
|
||
#line 3271 "cp-parse.y"
|
||
{
|
||
yyval.itype = 1;
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 575:
|
||
#line 3276 "cp-parse.y"
|
||
{
|
||
yyval.itype = 1;
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 576:
|
||
#line 3281 "cp-parse.y"
|
||
{
|
||
yyval.itype = 0;
|
||
pop_implicit_try_blocks (NULL_TREE);
|
||
;
|
||
break;}
|
||
case 578:
|
||
#line 3288 "cp-parse.y"
|
||
{ cplus_expand_start_try (0); ;
|
||
break;}
|
||
case 580:
|
||
#line 3292 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 581:
|
||
#line 3294 "cp-parse.y"
|
||
{
|
||
tree type = lookup_exception_type (current_class_type, current_class_name, yyvsp[0].ttype);
|
||
if (type == NULL_TREE)
|
||
{
|
||
error ("`%s' is not an exception type",
|
||
IDENTIFIER_POINTER (TREE_VALUE (yyvsp[0].ttype)));
|
||
current_exception_type = NULL_TREE;
|
||
TREE_TYPE (current_exception_object) = error_mark_node;
|
||
}
|
||
else
|
||
{
|
||
current_exception_type = type;
|
||
/* In-place union. */
|
||
TREE_TYPE (current_exception_object) = type;
|
||
}
|
||
yyvsp[0].ttype = cplus_expand_start_catch (yyvsp[0].ttype);
|
||
pushlevel (1);
|
||
expand_start_bindings (0);
|
||
;
|
||
break;}
|
||
case 582:
|
||
#line 3314 "cp-parse.y"
|
||
{
|
||
expand_end_bindings (0, 1, 0);
|
||
yyvsp[0].ttype = poplevel (1, 0, 0);
|
||
|
||
cplus_expand_end_catch (0);
|
||
|
||
/* Mark this as a catch block. */
|
||
TREE_LANG_FLAG_2 (yyvsp[0].ttype) = 1;
|
||
if (yyvsp[-2].ttype != error_mark_node)
|
||
{
|
||
tree decl = build_decl (CPLUS_CATCH_DECL, DECL_NAME (yyvsp[-2].ttype), 0);
|
||
DECL_RTL (decl) = DECL_RTL (yyvsp[-2].ttype);
|
||
TREE_CHAIN (decl) = BLOCK_VARS (yyvsp[0].ttype);
|
||
BLOCK_VARS (yyvsp[0].ttype) = decl;
|
||
}
|
||
;
|
||
break;}
|
||
case 583:
|
||
#line 3331 "cp-parse.y"
|
||
{
|
||
if (yyvsp[-1].ttype)
|
||
error ("duplicate default in exception handler");
|
||
current_exception_type = NULL_TREE;
|
||
/* Takes it right out of scope. */
|
||
TREE_TYPE (current_exception_object) = error_mark_node;
|
||
|
||
if (! expand_catch_default ())
|
||
compiler_error ("default catch botch");
|
||
|
||
/* The default exception is handled as the
|
||
last in the chain of exceptions handled. */
|
||
do_pending_stack_adjust ();
|
||
start_sequence ();
|
||
yyvsp[-1].ttype = make_node (RTL_EXPR);
|
||
TREE_TYPE (yyvsp[-1].ttype) = void_type_node;
|
||
;
|
||
break;}
|
||
case 584:
|
||
#line 3349 "cp-parse.y"
|
||
{
|
||
do_pending_stack_adjust ();
|
||
if (! expand_catch (NULL_TREE))
|
||
compiler_error ("except nesting botch");
|
||
if (! expand_end_catch ())
|
||
compiler_error ("except nesting botch");
|
||
RTL_EXPR_SEQUENCE (yyvsp[-3].ttype) = (struct rtx_def *)get_insns ();
|
||
if (yyvsp[0].ttype)
|
||
{
|
||
/* Mark this block as the default catch block. */
|
||
TREE_LANG_FLAG_1 (yyvsp[0].ttype) = 1;
|
||
TREE_LANG_FLAG_2 (yyvsp[0].ttype) = 1;
|
||
}
|
||
end_sequence ();
|
||
;
|
||
break;}
|
||
case 585:
|
||
#line 3368 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 587:
|
||
#line 3373 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 588:
|
||
#line 3375 "cp-parse.y"
|
||
{
|
||
extern tree ansi_expand_start_catch ();
|
||
extern tree cplus_exception_name ();
|
||
tree type = groktypename (yyvsp[-2].ttype);
|
||
current_exception_type = type;
|
||
/* In-place union. */
|
||
if (yyvsp[-1].ttype)
|
||
{
|
||
tree tmp;
|
||
tmp = pushdecl (build_decl (VAR_DECL, yyvsp[-1].ttype, type));
|
||
current_exception_object =
|
||
build1 (INDIRECT_REF, type, tmp);
|
||
}
|
||
yyvsp[-2].ttype = ansi_expand_start_catch(type);
|
||
pushlevel (1);
|
||
expand_start_bindings (0);
|
||
;
|
||
break;}
|
||
case 589:
|
||
#line 3393 "cp-parse.y"
|
||
{
|
||
expand_end_bindings (0, 1, 0);
|
||
yyvsp[0].ttype = poplevel (1, 0, 0);
|
||
|
||
cplus_expand_end_catch (0);
|
||
|
||
/* Mark this as a catch block. */
|
||
TREE_LANG_FLAG_2 (yyvsp[0].ttype) = 1;
|
||
if (yyvsp[-4].ttype != error_mark_node)
|
||
{
|
||
tree decl = build_decl (CPLUS_CATCH_DECL, DECL_NAME (yyvsp[-4].ttype), 0);
|
||
DECL_RTL (decl) = DECL_RTL (yyvsp[-4].ttype);
|
||
TREE_CHAIN (decl) = BLOCK_VARS (yyvsp[0].ttype);
|
||
BLOCK_VARS (yyvsp[0].ttype) = decl;
|
||
}
|
||
;
|
||
break;}
|
||
case 590:
|
||
#line 3413 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 591:
|
||
#line 3415 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 592:
|
||
#line 3417 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 593:
|
||
#line 3422 "cp-parse.y"
|
||
{ yyval.itype = 0; ;
|
||
break;}
|
||
case 594:
|
||
#line 3424 "cp-parse.y"
|
||
{ yyval.itype = 0; ;
|
||
break;}
|
||
case 595:
|
||
#line 3426 "cp-parse.y"
|
||
{ yyval.itype = 1; ;
|
||
break;}
|
||
case 596:
|
||
#line 3428 "cp-parse.y"
|
||
{ yyval.itype = -1; ;
|
||
break;}
|
||
case 597:
|
||
#line 3435 "cp-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids use of `asm' keyword");
|
||
emit_line_note (input_filename, lineno); ;
|
||
break;}
|
||
case 598:
|
||
#line 3439 "cp-parse.y"
|
||
{ if (pedantic)
|
||
pedwarn ("ANSI C forbids use of `asm' keyword");
|
||
emit_line_note (input_filename, lineno); ;
|
||
break;}
|
||
case 599:
|
||
#line 3446 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 601:
|
||
#line 3449 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 602:
|
||
#line 3455 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 605:
|
||
#line 3462 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 606:
|
||
#line 3467 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
|
||
break;}
|
||
case 607:
|
||
#line 3472 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
|
||
break;}
|
||
case 608:
|
||
#line 3474 "cp-parse.y"
|
||
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 609:
|
||
#line 3483 "cp-parse.y"
|
||
{
|
||
if (strict_prototype)
|
||
yyval.ttype = void_list_node;
|
||
else
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 610:
|
||
#line 3490 "cp-parse.y"
|
||
{
|
||
yyval.ttype = chainon (yyval.ttype, void_list_node);
|
||
TREE_PARMLIST (yyval.ttype) = 1;
|
||
;
|
||
break;}
|
||
case 611:
|
||
#line 3495 "cp-parse.y"
|
||
{
|
||
TREE_PARMLIST (yyval.ttype) = 1;
|
||
;
|
||
break;}
|
||
case 612:
|
||
#line 3500 "cp-parse.y"
|
||
{
|
||
TREE_PARMLIST (yyval.ttype) = 1;
|
||
;
|
||
break;}
|
||
case 613:
|
||
#line 3504 "cp-parse.y"
|
||
{
|
||
yyval.ttype = NULL_TREE;
|
||
;
|
||
break;}
|
||
case 614:
|
||
#line 3508 "cp-parse.y"
|
||
{
|
||
TREE_PARMLIST (yyval.ttype) = 1;
|
||
;
|
||
break;}
|
||
case 615:
|
||
#line 3512 "cp-parse.y"
|
||
{
|
||
TREE_PARMLIST (yyval.ttype) = 1;
|
||
;
|
||
break;}
|
||
case 616:
|
||
#line 3516 "cp-parse.y"
|
||
{
|
||
/* This helps us recover from really nasty
|
||
parse errors, for example, a missing right
|
||
parenthesis. */
|
||
yyerror ("possibly missing ')'");
|
||
yyval.ttype = chainon (yyval.ttype, void_list_node);
|
||
TREE_PARMLIST (yyval.ttype) = 1;
|
||
yyungetc (':', 0);
|
||
yychar = ')';
|
||
;
|
||
break;}
|
||
case 617:
|
||
#line 3531 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 618:
|
||
#line 3533 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
|
||
break;}
|
||
case 619:
|
||
#line 3535 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 620:
|
||
#line 3537 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 621:
|
||
#line 3539 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
|
||
break;}
|
||
case 622:
|
||
#line 3541 "cp-parse.y"
|
||
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
|
||
break;}
|
||
case 623:
|
||
#line 3562 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype);
|
||
see_typename (); ;
|
||
break;}
|
||
case 624:
|
||
#line 3565 "cp-parse.y"
|
||
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype);
|
||
see_typename (); ;
|
||
break;}
|
||
case 627:
|
||
#line 3572 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 628:
|
||
#line 3576 "cp-parse.y"
|
||
{ see_typename (); ;
|
||
break;}
|
||
case 629:
|
||
#line 3580 "cp-parse.y"
|
||
{ dont_see_typename (); ;
|
||
break;}
|
||
case 630:
|
||
#line 3584 "cp-parse.y"
|
||
{
|
||
if (yyvsp[-1].ttype == error_mark_node)
|
||
yyval.itype = 0;
|
||
else
|
||
{
|
||
yyval.itype = 1;
|
||
pushclass (yyvsp[-1].ttype, 1);
|
||
}
|
||
;
|
||
break;}
|
||
case 631:
|
||
#line 3597 "cp-parse.y"
|
||
{
|
||
warning ("type specifier omitted for parameter");
|
||
yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-2].ttype)), yyval.ttype);
|
||
;
|
||
break;}
|
||
case 632:
|
||
#line 3605 "cp-parse.y"
|
||
{ yyval.ttype = NULL_TREE; ;
|
||
break;}
|
||
case 633:
|
||
#line 3607 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[0].ttype; ;
|
||
break;}
|
||
case 634:
|
||
#line 3609 "cp-parse.y"
|
||
{ yyval.ttype = yyvsp[-1].ttype; ;
|
||
break;}
|
||
case 635:
|
||
#line 3614 "cp-parse.y"
|
||
{ yyval.ttype = void_list_node; ;
|
||
break;}
|
||
case 636:
|
||
#line 3616 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 637:
|
||
#line 3618 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 638:
|
||
#line 3620 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (void_type_node, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 639:
|
||
#line 3622 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (void_type_node, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 640:
|
||
#line 3624 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
|
||
break;}
|
||
case 642:
|
||
#line 3630 "cp-parse.y"
|
||
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
|
||
break;}
|
||
case 644:
|
||
#line 3636 "cp-parse.y"
|
||
{
|
||
TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
;
|
||
break;}
|
||
case 646:
|
||
#line 3645 "cp-parse.y"
|
||
{
|
||
TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
|
||
yyval.ttype = yyvsp[0].ttype;
|
||
;
|
||
break;}
|
||
case 647:
|
||
#line 3653 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[MULT_EXPR]; ;
|
||
break;}
|
||
case 648:
|
||
#line 3655 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
|
||
break;}
|
||
case 649:
|
||
#line 3657 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
|
||
break;}
|
||
case 650:
|
||
#line 3659 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[PLUS_EXPR]; ;
|
||
break;}
|
||
case 651:
|
||
#line 3661 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[MINUS_EXPR]; ;
|
||
break;}
|
||
case 652:
|
||
#line 3663 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
|
||
break;}
|
||
case 653:
|
||
#line 3665 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
|
||
break;}
|
||
case 654:
|
||
#line 3667 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
|
||
break;}
|
||
case 655:
|
||
#line 3669 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
|
||
break;}
|
||
case 656:
|
||
#line 3671 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
|
||
break;}
|
||
case 657:
|
||
#line 3673 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
|
||
break;}
|
||
case 658:
|
||
#line 3675 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[LT_EXPR]; ;
|
||
break;}
|
||
case 659:
|
||
#line 3677 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[GT_EXPR]; ;
|
||
break;}
|
||
case 660:
|
||
#line 3679 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
|
||
break;}
|
||
case 661:
|
||
#line 3681 "cp-parse.y"
|
||
{ yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
|
||
break;}
|
||
case 662:
|
||
#line 3683 "cp-parse.y"
|
||
{
|
||
yyval.ttype = ansi_opname [MODIFY_EXPR];
|
||
if (current_class_type)
|
||
{
|
||
TYPE_HAS_ASSIGNMENT (current_class_type) = 1;
|
||
TYPE_GETS_ASSIGNMENT (current_class_type) = 1;
|
||
}
|
||
;
|
||
break;}
|
||
case 663:
|
||
#line 3692 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
|
||
break;}
|
||
case 664:
|
||
#line 3694 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
|
||
break;}
|
||
case 665:
|
||
#line 3696 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
|
||
break;}
|
||
case 666:
|
||
#line 3698 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
|
||
break;}
|
||
case 667:
|
||
#line 3700 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
|
||
break;}
|
||
case 668:
|
||
#line 3702 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
|
||
break;}
|
||
case 669:
|
||
#line 3704 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
|
||
break;}
|
||
case 670:
|
||
#line 3706 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[COND_EXPR]; ;
|
||
break;}
|
||
case 671:
|
||
#line 3708 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
|
||
break;}
|
||
case 672:
|
||
#line 3710 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[COMPONENT_REF];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TYPE_OVERLOADS_ARROW (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 673:
|
||
#line 3722 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[MEMBER_REF];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TYPE_OVERLOADS_ARROW (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 674:
|
||
#line 3734 "cp-parse.y"
|
||
{
|
||
if (yychar == YYEMPTY)
|
||
yychar = YYLEX;
|
||
if (yychar == '(' || yychar == LEFT_RIGHT)
|
||
{
|
||
yyval.ttype = ansi_opname[METHOD_CALL_EXPR];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TYPE_OVERLOADS_METHOD_CALL_EXPR (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
yyval.ttype = build_parse_node (CALL_EXPR, ansi_opname[COMPONENT_REF], void_list_node, yyvsp[0].ttype);
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TYPE_OVERLOADS_ARROW (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 675:
|
||
#line 3765 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[CALL_EXPR];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TYPE_OVERLOADS_CALL_EXPR (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 676:
|
||
#line 3777 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[ARRAY_REF];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TYPE_OVERLOADS_ARRAY_REF (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 677:
|
||
#line 3789 "cp-parse.y"
|
||
{
|
||
yyval.ttype = ansi_opname[NEW_EXPR];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TREE_GETS_NEW (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 678:
|
||
#line 3802 "cp-parse.y"
|
||
{
|
||
yyval.ttype = ansi_opname[DELETE_EXPR];
|
||
if (current_class_type)
|
||
{
|
||
tree t = current_class_type;
|
||
while (t)
|
||
{
|
||
TREE_GETS_DELETE (t) = 1;
|
||
t = TYPE_NEXT_VARIANT (t);
|
||
}
|
||
}
|
||
;
|
||
break;}
|
||
case 679:
|
||
#line 3818 "cp-parse.y"
|
||
{
|
||
yyval.ttype = build1 (TYPE_EXPR, yyvsp[-1].ttype, yyvsp[0].ttype);
|
||
;
|
||
break;}
|
||
case 680:
|
||
#line 3822 "cp-parse.y"
|
||
{ yyval.ttype = ansi_opname[ERROR_MARK]; ;
|
||
break;}
|
||
}
|
||
/* the action file gets copied in in place of this dollarsign */
|
||
#line 440 "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;
|
||
for (x = 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 = 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");
|
||
}
|
||
|
||
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 3825 "cp-parse.y"
|
||
|
||
|
||
tree
|
||
get_current_declspecs ()
|
||
{
|
||
return current_declspecs;
|
||
}
|
||
|
||
#if YYDEBUG != 0
|
||
db_yyerror (s, yyps, yychar)
|
||
char *s;
|
||
short *yyps;
|
||
int yychar;
|
||
{
|
||
FILE *yyout;
|
||
char buf[1024];
|
||
int st;
|
||
|
||
yyerror (s);
|
||
printf ("State is %d, input token number is %d.\n", *yyps, yychar);
|
||
|
||
#ifdef PARSE_OUTPUT
|
||
if (*yyps < 1) fatal ("Cannot start from here");
|
||
else if ((yyout = fopen (PARSE_OUTPUT, "r")) == NULL)
|
||
error ("cannot open file %s", PARSE_OUTPUT);
|
||
else
|
||
{
|
||
printf ("That is to say,\n\n");
|
||
while (fgets(buf, sizeof (buf)-1, yyout))
|
||
{
|
||
if (buf[0] != 's') continue;
|
||
st = atoi (buf+6);
|
||
if (st != *yyps) continue;
|
||
printf ("%s", buf);
|
||
while (fgets (buf, sizeof (buf)-1, yyout))
|
||
{
|
||
if (buf[0] == 's') break;
|
||
printf ("%s", buf);
|
||
}
|
||
break;
|
||
}
|
||
printf ("With the token %s\n", yytname[YYTRANSLATE (yychar)]);
|
||
fclose (yyout);
|
||
}
|
||
#endif
|
||
}
|
||
#endif
|
||
|
||
void
|
||
yyerror (string)
|
||
char *string;
|
||
{
|
||
extern int end_of_file;
|
||
extern char *token_buffer;
|
||
extern int input_redirected ();
|
||
char buf[200];
|
||
|
||
strcpy (buf, string);
|
||
|
||
/* We can't print string and character constants well
|
||
because the token_buffer contains the result of processing escapes. */
|
||
if (end_of_file)
|
||
strcat (buf, input_redirected ()
|
||
? " at end of saved text"
|
||
: " at end of input");
|
||
else if (token_buffer[0] == 0)
|
||
strcat (buf, " at null character");
|
||
else if (token_buffer[0] == '"')
|
||
strcat (buf, " before string constant");
|
||
else if (token_buffer[0] == '\'')
|
||
strcat (buf, " before character constant");
|
||
else if (token_buffer[0] < 040 || (unsigned char) token_buffer[0] >= 0177)
|
||
sprintf (buf + strlen (buf), " before character 0%o",
|
||
(unsigned char) token_buffer[0]);
|
||
else
|
||
strcat (buf, " before `%s'");
|
||
|
||
error (buf, token_buffer);
|
||
}
|
||
|
||
static
|
||
#ifdef __GNUC__
|
||
__inline
|
||
#endif
|
||
void
|
||
yyprint (file, yychar, yylval)
|
||
FILE *file;
|
||
int yychar;
|
||
YYSTYPE yylval;
|
||
{
|
||
tree t;
|
||
switch (yychar)
|
||
{
|
||
case IDENTIFIER:
|
||
case TYPENAME:
|
||
case TYPESPEC:
|
||
case PTYPENAME:
|
||
case IDENTIFIER_DEFN:
|
||
case TYPENAME_DEFN:
|
||
case PTYPENAME_DEFN:
|
||
case TYPENAME_COLON:
|
||
case TYPENAME_ELLIPSIS:
|
||
case SCOPED_TYPENAME:
|
||
case SCSPEC:
|
||
t = yylval.ttype;
|
||
print_id:
|
||
assert (TREE_CODE (t) == IDENTIFIER_NODE);
|
||
if (IDENTIFIER_POINTER (t))
|
||
fprintf (file, " `%s'", IDENTIFIER_POINTER (t));
|
||
break;
|
||
case AGGR:
|
||
if (yylval.ttype == class_type_node)
|
||
fprintf (file, " `class'");
|
||
else if (yylval.ttype == record_type_node)
|
||
fprintf (file, " `struct'");
|
||
else if (yylval.ttype == union_type_node)
|
||
fprintf (file, " `union'");
|
||
else if (yylval.ttype == enum_type_node)
|
||
fprintf (file, " `enum'");
|
||
else
|
||
my_friendly_abort (80);
|
||
break;
|
||
case PRE_PARSED_CLASS_DECL:
|
||
t = yylval.ttype;
|
||
assert (TREE_CODE (t) == TREE_LIST);
|
||
t = TREE_VALUE (t);
|
||
goto print_id;
|
||
}
|
||
}
|
||
|
||
static int *reduce_count;
|
||
int *token_count;
|
||
|
||
#define REDUCE_LENGTH (sizeof (yyr2) / sizeof (yyr2[0]))
|
||
#define TOKEN_LENGTH (256 + sizeof (yytname) / sizeof (yytname[0]))
|
||
|
||
int *
|
||
init_parse ()
|
||
{
|
||
#ifdef GATHER_STATISTICS
|
||
reduce_count = (int *)malloc (sizeof (int) * (REDUCE_LENGTH + 1));
|
||
bzero (reduce_count, sizeof (int) * (REDUCE_LENGTH + 1));
|
||
reduce_count += 1;
|
||
token_count = (int *)malloc (sizeof (int) * (TOKEN_LENGTH + 1));
|
||
bzero (token_count, sizeof (int) * (TOKEN_LENGTH + 1));
|
||
token_count += 1;
|
||
#endif
|
||
return token_count;
|
||
}
|
||
|
||
#ifdef GATHER_STATISTICS
|
||
void
|
||
yyhook (yyn)
|
||
int yyn;
|
||
{
|
||
reduce_count[yyn] += 1;
|
||
}
|
||
#endif
|
||
|
||
static int
|
||
reduce_cmp (p, q)
|
||
int *p, *q;
|
||
{
|
||
return reduce_count[*q] - reduce_count[*p];
|
||
}
|
||
|
||
static int
|
||
token_cmp (p, q)
|
||
int *p, *q;
|
||
{
|
||
return token_count[*q] - token_count[*p];
|
||
}
|
||
|
||
void
|
||
print_parse_statistics ()
|
||
{
|
||
#if YYDEBUG != 0
|
||
int i;
|
||
int maxlen = REDUCE_LENGTH;
|
||
unsigned *sorted;
|
||
|
||
if (reduce_count[-1] == 0)
|
||
return;
|
||
|
||
if (TOKEN_LENGTH > REDUCE_LENGTH)
|
||
maxlen = TOKEN_LENGTH;
|
||
sorted = (unsigned *) alloca (sizeof (int) * maxlen);
|
||
|
||
for (i = 0; i < TOKEN_LENGTH; i++)
|
||
sorted[i] = i;
|
||
qsort (sorted, TOKEN_LENGTH, sizeof (int), token_cmp);
|
||
for (i = 0; i < TOKEN_LENGTH; i++)
|
||
{
|
||
int index = sorted[i];
|
||
if (token_count[index] == 0)
|
||
break;
|
||
if (token_count[index] < token_count[-1])
|
||
break;
|
||
fprintf (stderr, "token %d, `%s', count = %d\n",
|
||
index, yytname[YYTRANSLATE (index)], token_count[index]);
|
||
}
|
||
fprintf (stderr, "\n");
|
||
for (i = 0; i < REDUCE_LENGTH; i++)
|
||
sorted[i] = i;
|
||
qsort (sorted, REDUCE_LENGTH, sizeof (int), reduce_cmp);
|
||
for (i = 0; i < REDUCE_LENGTH; i++)
|
||
{
|
||
int index = sorted[i];
|
||
if (reduce_count[index] == 0)
|
||
break;
|
||
if (reduce_count[index] < reduce_count[-1])
|
||
break;
|
||
fprintf (stderr, "rule %d, line %d, count = %d\n",
|
||
index, yyrline[index], reduce_count[index]);
|
||
}
|
||
fprintf (stderr, "\n");
|
||
#endif
|
||
}
|
||
|
||
|
||
/* Sets the value of the 'yydebug' variable to VALUE.
|
||
This is a function so we don't have to have YYDEBUG defined
|
||
in order to build the compiler. */
|
||
void
|
||
set_yydebug (value)
|
||
int value;
|
||
{
|
||
#if YYDEBUG != 0
|
||
yydebug = value;
|
||
#else
|
||
warning ("YYDEBUG not defined.");
|
||
#endif
|
||
}
|
||
|
||
#ifdef SPEW_DEBUG
|
||
const char *
|
||
debug_yytranslate (value)
|
||
int value;
|
||
{
|
||
#if YYDEBUG != 0
|
||
return yytname[YYTRANSLATE (value)];
|
||
#else
|
||
return "YYDEBUG not defined.";
|
||
#endif
|
||
}
|
||
|
||
#endif
|