aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/usr.bin/cc/Makefile.inc6
-rw-r--r--gnu/usr.bin/cc/cc1plus/call.c14
-rw-r--r--gnu/usr.bin/cc/cc1plus/cvt.c151
-rw-r--r--gnu/usr.bin/cc/cc1plus/decl.c2
-rw-r--r--gnu/usr.bin/cc/cc1plus/method.c2
-rw-r--r--gnu/usr.bin/cc/cc1plus/parse.c6548
-rw-r--r--gnu/usr.bin/cc/cc1plus/pt.c54
-rw-r--r--gnu/usr.bin/cc/cc1plus/typeck.c2
-rw-r--r--gnu/usr.bin/cc/cc1plus/typeck2.c1
-rw-r--r--gnu/usr.bin/cc/cc_int/c-common.c2
-rw-r--r--gnu/usr.bin/cc/cc_int/calls.c13
-rw-r--r--gnu/usr.bin/cc/cc_int/combine.c3
-rw-r--r--gnu/usr.bin/cc/cc_int/emit-rtl.c2
-rw-r--r--gnu/usr.bin/cc/cc_int/expmed.c117
-rw-r--r--gnu/usr.bin/cc/cc_int/expr.c92
-rw-r--r--gnu/usr.bin/cc/cc_int/flow.c2
-rw-r--r--gnu/usr.bin/cc/cc_int/fold-const.c7
-rw-r--r--gnu/usr.bin/cc/cc_int/loop.c2
-rw-r--r--gnu/usr.bin/cc/cc_int/optabs.c101
-rw-r--r--gnu/usr.bin/cc/cc_int/reorg.c56
-rw-r--r--gnu/usr.bin/cc/cc_int/tree.c6
-rw-r--r--gnu/usr.bin/cc/cc_int/varasm.c5
-rw-r--r--gnu/usr.bin/cc/cc_int/version.c2
-rw-r--r--gnu/usr.bin/cc/cpp/cccp.c4
-rw-r--r--gnu/usr.bin/cc/doc/install.texi31
-rw-r--r--gnu/usr.bin/cc/include/expr.h3
-rw-r--r--gnu/usr.bin/cc/include/tm.h29
-rw-r--r--gnu/usr.bin/cc/legal/parse.y3813
28 files changed, 7491 insertions, 3579 deletions
diff --git a/gnu/usr.bin/cc/Makefile.inc b/gnu/usr.bin/cc/Makefile.inc
index 7b36c66c41bd..16d12bf87b03 100644
--- a/gnu/usr.bin/cc/Makefile.inc
+++ b/gnu/usr.bin/cc/Makefile.inc
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.inc,v 1.11 1995/03/05 20:34:30 phk Exp $
+# $Id: Makefile.inc,v 1.12 1995/03/10 19:39:32 davidg Exp $
#
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../include
@@ -7,7 +7,7 @@ CFLAGS+= -Dbsd4_4
CFLAGS+= -DGCC_INCLUDE_DIR=\"FOO\"
CFLAGS+= -DTOOL_INCLUDE_DIR=\"FOO\"
CFLAGS+= -DGPLUSPLUS_INCLUDE_DIR=\"FOO\"
-CFLAGS+= -DDEFAULT_TARGET_VERSION=\"2.6.2\"
+CFLAGS+= -DDEFAULT_TARGET_VERSION=\"2.6.3\"
CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"i386--freebsd\"
CFLAGS+= -DSTANDARD_EXEC_PREFIX=\"/usr/libexec/\"
CFLAGS+= -DSTANDARD_STARTFILE_PREFIX=\"/usr/lib/\"
@@ -24,7 +24,7 @@ LIBDESTDIR= ${.CURDIR}/../cc_int
# XXX LDDESTDIR isn't a directory and there is no standard name for the dir
LDDESTDIR= -L${LIBDESTDIR}
.if defined(SHARED_LIBCC_INT)
-LIBCC_INT= ${LIBDESTDIR}/libcc_int.so.262.0
+LIBCC_INT= ${LIBDESTDIR}/libcc_int.so.263.0
.else
LIBCC_INT= ${LIBDESTDIR}/libcc_int.a
.endif
diff --git a/gnu/usr.bin/cc/cc1plus/call.c b/gnu/usr.bin/cc/cc1plus/call.c
index 41580a6199fb..6b3b821716e4 100644
--- a/gnu/usr.bin/cc/cc1plus/call.c
+++ b/gnu/usr.bin/cc/cc1plus/call.c
@@ -525,13 +525,6 @@ convert_harshness (type, parmtype, parm)
else
penalty = 2;
- if (TREE_UNSIGNED (ttl) ^ TREE_UNSIGNED (intype))
- {
- ttl = unsigned_type (ttl);
- intype = unsigned_type (intype);
- penalty += 2;
- }
-
ttr = intype;
/* If the initializer is not an lvalue, then it does not
@@ -551,6 +544,13 @@ convert_harshness (type, parmtype, parm)
return h;
}
+ if (TREE_UNSIGNED (ttl) ^ TREE_UNSIGNED (intype))
+ {
+ ttl = unsigned_type (ttl);
+ ttr = intype = unsigned_type (intype);
+ penalty += 2;
+ }
+
if (ttl == ttr)
{
if (penalty > 2)
diff --git a/gnu/usr.bin/cc/cc1plus/cvt.c b/gnu/usr.bin/cc/cc1plus/cvt.c
index 7777350d925a..a156f20b31e7 100644
--- a/gnu/usr.bin/cc/cc1plus/cvt.c
+++ b/gnu/usr.bin/cc/cc1plus/cvt.c
@@ -663,10 +663,12 @@ convert_to_reference (reftype, expr, convtype, flags, decl)
if (form == REFERENCE_TYPE)
{
- rval = copy_node (expr);
- TREE_TYPE (rval) = build_pointer_type (TREE_TYPE (TREE_TYPE (expr)));
- rval = cp_convert (build_pointer_type (TREE_TYPE (reftype)), rval,
+ tree type = TREE_TYPE (expr);
+ tree tmp = copy_node (expr);
+ TREE_TYPE (tmp) = build_pointer_type (TREE_TYPE (TREE_TYPE (expr)));
+ rval = cp_convert (build_pointer_type (TREE_TYPE (reftype)), tmp,
convtype, flags);
+ TREE_TYPE (tmp) = type;
TREE_TYPE (rval) = reftype;
return rval;
}
@@ -1283,12 +1285,9 @@ cp_convert (type, expr, convtype, flags)
if (IS_AGGR_TYPE_CODE (code))
{
tree dtype = TREE_TYPE (e);
+ tree ctor = NULL_TREE;
+ tree conversion = NULL_TREE;
- if (TREE_CODE (dtype) == REFERENCE_TYPE)
- {
- e = convert_from_reference (e);
- dtype = TREE_TYPE (e);
- }
dtype = TYPE_MAIN_VARIANT (dtype);
/* Conversion of object pointers or signature pointers/references
@@ -1321,87 +1320,77 @@ cp_convert (type, expr, convtype, flags)
There may be some ambiguity between using a constructor
vs. using a type conversion operator when both apply. */
- else if (IS_AGGR_TYPE (dtype))
- {
- tree binfo;
-
- tree conversion;
-
- if (! DERIVED_FROM_P (type, dtype) && TYPE_HAS_CONVERSION (dtype))
- conversion = build_type_conversion (CONVERT_EXPR, type, e, 1);
- else
- conversion = NULL_TREE;
-
- if (TYPE_HAS_CONSTRUCTOR (type))
- {
- tree rval = build_method_call (NULL_TREE, constructor_name_full (type),
- build_tree_list (NULL_TREE, e),
- TYPE_BINFO (type),
- conversion ? LOOKUP_NO_CONVERSION : 0);
+ if (IS_AGGR_TYPE (dtype) && ! DERIVED_FROM_P (type, dtype)
+ && TYPE_HAS_CONVERSION (dtype))
+ conversion = build_type_conversion (CONVERT_EXPR, type, e, 1);
- if (rval != error_mark_node)
- {
- if (conversion)
- {
- error ("both constructor and type conversion operator apply");
- return error_mark_node;
- }
- /* call to constructor successful. */
- rval = build_cplus_new (type, rval, 1);
- return rval;
- }
- }
- /* Type conversion successful/applies. */
- if (conversion)
- {
- if (conversion == error_mark_node)
- error ("ambiguous pointer conversion");
- return conversion;
- }
-
- /* now try normal C++ assignment semantics. */
- binfo = TYPE_BINFO (dtype);
- if (BINFO_TYPE (binfo) == type
- || (binfo = get_binfo (type, dtype, 1)))
- {
- if (binfo == error_mark_node)
- return error_mark_node;
- }
- if (binfo != NULL_TREE)
- {
- if (lvalue_p (e))
- {
- e = build_unary_op (ADDR_EXPR, e, 0);
+ if (conversion == error_mark_node)
+ {
+ error ("ambiguous pointer conversion");
+ return conversion;
+ }
- if (! BINFO_OFFSET_ZEROP (binfo))
- e = build (PLUS_EXPR, TYPE_POINTER_TO (type),
- e, BINFO_OFFSET (binfo));
- return build1 (INDIRECT_REF, type, e);
- }
+ if (TYPE_HAS_CONSTRUCTOR (type))
+ ctor = build_method_call (NULL_TREE, constructor_name_full (type),
+ build_tree_list (NULL_TREE, e),
+ TYPE_BINFO (type),
+ LOOKUP_NORMAL | LOOKUP_SPECULATIVELY
+ | (conversion ? LOOKUP_NO_CONVERSION : 0));
- sorry ("addressable aggregates");
- return error_mark_node;
- }
- error ("conversion between incompatible aggregate types requested");
+ if (ctor == error_mark_node)
+ {
+ cp_error ("in conversion to type `%T'", type);
return error_mark_node;
}
- /* conversion from non-aggregate to aggregate type requires
- constructor. */
- else if (TYPE_HAS_CONSTRUCTOR (type))
+
+ if (conversion && ctor)
{
- tree rval;
- tree init = build_method_call (NULL_TREE, constructor_name_full (type),
- build_tree_list (NULL_TREE, e),
- TYPE_BINFO (type), LOOKUP_NORMAL);
- if (init == error_mark_node)
+ error ("both constructor and type conversion operator apply");
+ return error_mark_node;
+ }
+ else if (conversion)
+ return conversion;
+ else if (ctor)
+ {
+ if (current_function_decl)
+ /* We can't pass 1 to the with_cleanup_p arg here, because that
+ screws up passing classes by value. */
+ ctor = build_cplus_new (type, ctor, 0);
+ else
{
- cp_error ("in conversion to type `%T'", type);
- return error_mark_node;
+ register tree parm = TREE_OPERAND (ctor, 1);
+
+ /* Initializers for static variables and parameters
+ have to handle doing the initialization and
+ cleanup themselves. */
+ my_friendly_assert (TREE_CODE (ctor) == CALL_EXPR, 322);
+#if 0
+ /* The following assertion fails in cases where we
+ are initializing a static member variable of a
+ particular instance of a template class with a
+ call to a constructor of the given instance, as
+ in:
+
+ TMPL<int> object = TMPL<int>();
+
+ Curiously, the assertion does not fail if we do
+ the same thing for a static member of a
+ non-template class, as in:
+
+ T object = T();
+
+ I can't see why we should care here whether or not
+ the initializer expression involves a call to
+ `new', so for the time being, it seems best to
+ just avoid doing this assertion. */
+ my_friendly_assert (TREE_CALLS_NEW (TREE_VALUE (parm)),
+ 323);
+#endif
+ TREE_VALUE (parm) = NULL_TREE;
+ ctor = build_indirect_ref (ctor, NULL_PTR);
+ TREE_HAS_CONSTRUCTOR (ctor) = 1;
}
- /* We can't pass 1 to the with_cleanup_p arg here, because that
- screws up passing classes by value. */
- rval = build_cplus_new (type, init, 0);
- return rval;
+ return ctor;
}
}
diff --git a/gnu/usr.bin/cc/cc1plus/decl.c b/gnu/usr.bin/cc/cc1plus/decl.c
index 048ce5eb0e25..4dcba6cf3f73 100644
--- a/gnu/usr.bin/cc/cc1plus/decl.c
+++ b/gnu/usr.bin/cc/cc1plus/decl.c
@@ -11072,7 +11072,7 @@ finish_function (lineno, call_poplevel)
store_parm_decls ();
}
- if (write_symbols != NO_DEBUG && TREE_CODE (fntype) != METHOD_TYPE)
+ if (write_symbols != NO_DEBUG /*&& TREE_CODE (fntype) != METHOD_TYPE*/)
{
tree ttype = target_type (fntype);
tree parmdecl;
diff --git a/gnu/usr.bin/cc/cc1plus/method.c b/gnu/usr.bin/cc/cc1plus/method.c
index b22aa7c30810..9484969cea1b 100644
--- a/gnu/usr.bin/cc/cc1plus/method.c
+++ b/gnu/usr.bin/cc/cc1plus/method.c
@@ -514,6 +514,7 @@ build_overload_name (parmtypes, begin, end)
tree parmtype;
if (begin) OB_INIT ();
+ numeric_outputed_need_bar = 0;
if ((just_one = (TREE_CODE (parmtypes) != TREE_LIST)))
{
@@ -920,7 +921,6 @@ build_decl_overload (dname, parms, for_method)
{
ALLOCATE_TYPEVEC (parms);
nofold = 0;
- numeric_outputed_need_bar = 0;
if (for_method)
{
build_overload_name (TREE_VALUE (parms), 0, 0);
diff --git a/gnu/usr.bin/cc/cc1plus/parse.c b/gnu/usr.bin/cc/cc1plus/parse.c
index ef0ec2f6727c..68c7a381cae9 100644
--- a/gnu/usr.bin/cc/cc1plus/parse.c
+++ b/gnu/usr.bin/cc/cc1plus/parse.c
@@ -190,7 +190,7 @@ typedef
-#define YYFINAL 1356
+#define YYFINAL 1350
#define YYFLAG -32768
#define YYNTBASE 106
@@ -257,59 +257,59 @@ static const short yyprhs[] = { 0,
630, 635, 640, 642, 646, 650, 654, 658, 662, 666,
670, 674, 678, 682, 686, 690, 694, 698, 702, 706,
710, 714, 718, 724, 728, 732, 734, 737, 741, 743,
- 745, 747, 749, 751, 753, 755, 758, 761, 765, 767,
- 769, 771, 775, 777, 779, 781, 783, 787, 791, 792,
- 797, 798, 805, 808, 813, 816, 819, 821, 826, 828,
- 836, 844, 852, 860, 865, 870, 873, 876, 878, 883,
- 886, 889, 892, 898, 902, 908, 912, 917, 924, 926,
- 929, 931, 934, 936, 938, 940, 943, 944, 947, 950,
- 954, 958, 962, 966, 970, 973, 976, 978, 980, 982,
- 985, 988, 991, 994, 996, 998, 1000, 1002, 1005, 1008,
- 1012, 1016, 1021, 1023, 1026, 1029, 1031, 1033, 1036, 1039,
- 1041, 1044, 1047, 1051, 1053, 1056, 1058, 1060, 1062, 1067,
- 1072, 1077, 1082, 1084, 1086, 1088, 1090, 1094, 1096, 1100,
- 1102, 1106, 1107, 1112, 1113, 1121, 1126, 1127, 1135, 1140,
- 1141, 1149, 1154, 1155, 1163, 1168, 1169, 1171, 1173, 1176,
- 1183, 1185, 1189, 1190, 1192, 1197, 1204, 1209, 1211, 1213,
- 1215, 1217, 1219, 1223, 1225, 1228, 1232, 1237, 1239, 1241,
- 1245, 1250, 1257, 1261, 1267, 1268, 1276, 1281, 1282, 1289,
- 1293, 1296, 1299, 1304, 1306, 1307, 1309, 1310, 1312, 1314,
- 1317, 1320, 1323, 1326, 1330, 1333, 1336, 1339, 1343, 1347,
- 1349, 1352, 1353, 1354, 1358, 1362, 1365, 1367, 1369, 1370,
- 1372, 1375, 1377, 1381, 1383, 1386, 1388, 1393, 1398, 1400,
- 1402, 1405, 1408, 1410, 1411, 1413, 1418, 1422, 1424, 1427,
- 1430, 1433, 1436, 1439, 1442, 1445, 1448, 1453, 1456, 1458,
- 1464, 1468, 1469, 1471, 1475, 1476, 1478, 1482, 1484, 1486,
- 1488, 1490, 1495, 1502, 1507, 1512, 1519, 1524, 1528, 1533,
- 1540, 1545, 1550, 1557, 1562, 1566, 1568, 1572, 1574, 1578,
- 1581, 1583, 1590, 1591, 1594, 1596, 1599, 1600, 1603, 1607,
- 1611, 1614, 1617, 1621, 1623, 1625, 1627, 1630, 1636, 1642,
- 1646, 1652, 1657, 1661, 1665, 1668, 1670, 1674, 1678, 1681,
- 1684, 1688, 1690, 1694, 1698, 1701, 1704, 1708, 1710, 1716,
- 1722, 1726, 1732, 1736, 1741, 1745, 1748, 1751, 1753, 1756,
- 1761, 1766, 1769, 1771, 1773, 1775, 1778, 1781, 1784, 1786,
- 1789, 1791, 1794, 1797, 1801, 1803, 1807, 1810, 1814, 1817,
- 1820, 1824, 1826, 1830, 1835, 1839, 1842, 1845, 1847, 1851,
- 1854, 1857, 1859, 1862, 1866, 1868, 1872, 1874, 1880, 1884,
- 1889, 1893, 1898, 1901, 1904, 1908, 1911, 1913, 1915, 1918,
- 1921, 1924, 1925, 1926, 1928, 1930, 1933, 1937, 1939, 1942,
- 1946, 1952, 1959, 1965, 1966, 1967, 1974, 1976, 1979, 1981,
- 1983, 1985, 1988, 1989, 1994, 1996, 1997, 1998, 2005, 2006,
- 2007, 2015, 2016, 2017, 2018, 2029, 2030, 2031, 2032, 2043,
- 2044, 2052, 2053, 2059, 2060, 2068, 2069, 2074, 2077, 2080,
- 2083, 2087, 2094, 2103, 2114, 2127, 2132, 2136, 2139, 2142,
- 2144, 2146, 2147, 2148, 2156, 2158, 2161, 2164, 2165, 2166,
- 2172, 2174, 2176, 2180, 2184, 2187, 2190, 2193, 2197, 2202,
- 2207, 2211, 2216, 2223, 2230, 2231, 2233, 2234, 2236, 2238,
- 2239, 2241, 2243, 2247, 2252, 2254, 2258, 2259, 2261, 2263,
- 2265, 2268, 2271, 2274, 2276, 2278, 2281, 2284, 2287, 2290,
- 2292, 2296, 2299, 2302, 2307, 2310, 2313, 2316, 2319, 2322,
- 2325, 2327, 2330, 2332, 2336, 2338, 2340, 2341, 2342, 2344,
- 2345, 2350, 2352, 2354, 2358, 2359, 2363, 2367, 2371, 2373,
- 2376, 2379, 2382, 2385, 2388, 2391, 2394, 2397, 2400, 2403,
- 2406, 2409, 2412, 2415, 2418, 2421, 2424, 2427, 2430, 2433,
- 2436, 2439, 2442, 2446, 2449, 2452, 2455, 2458, 2462, 2465,
- 2468, 2473, 2478, 2482
+ 745, 747, 749, 751, 753, 755, 758, 761, 763, 765,
+ 767, 769, 771, 773, 775, 779, 783, 784, 789, 790,
+ 797, 800, 805, 808, 811, 813, 818, 820, 828, 836,
+ 844, 852, 857, 862, 865, 868, 870, 875, 878, 881,
+ 884, 890, 894, 900, 904, 909, 916, 918, 921, 923,
+ 926, 928, 930, 932, 935, 936, 939, 942, 946, 950,
+ 954, 958, 962, 965, 968, 970, 972, 974, 977, 980,
+ 983, 986, 988, 990, 992, 994, 997, 1000, 1004, 1008,
+ 1013, 1015, 1018, 1021, 1023, 1025, 1028, 1031, 1033, 1036,
+ 1039, 1043, 1045, 1048, 1050, 1052, 1054, 1059, 1064, 1069,
+ 1074, 1076, 1078, 1080, 1082, 1086, 1088, 1092, 1094, 1098,
+ 1099, 1104, 1105, 1113, 1118, 1119, 1127, 1132, 1133, 1141,
+ 1146, 1147, 1155, 1160, 1161, 1163, 1165, 1168, 1175, 1177,
+ 1181, 1182, 1184, 1189, 1196, 1201, 1203, 1205, 1207, 1209,
+ 1211, 1215, 1217, 1220, 1224, 1229, 1231, 1233, 1237, 1242,
+ 1249, 1253, 1259, 1260, 1268, 1273, 1274, 1281, 1285, 1288,
+ 1291, 1296, 1298, 1299, 1301, 1302, 1304, 1306, 1309, 1312,
+ 1315, 1318, 1322, 1325, 1328, 1331, 1335, 1339, 1341, 1344,
+ 1345, 1346, 1350, 1354, 1357, 1359, 1361, 1362, 1364, 1367,
+ 1369, 1373, 1375, 1378, 1380, 1385, 1390, 1392, 1394, 1397,
+ 1400, 1402, 1403, 1405, 1410, 1414, 1416, 1419, 1422, 1425,
+ 1428, 1431, 1434, 1437, 1440, 1445, 1448, 1450, 1456, 1460,
+ 1461, 1463, 1467, 1468, 1470, 1474, 1476, 1478, 1480, 1482,
+ 1487, 1494, 1499, 1504, 1511, 1516, 1520, 1525, 1532, 1537,
+ 1542, 1549, 1554, 1558, 1560, 1564, 1566, 1570, 1573, 1575,
+ 1582, 1583, 1586, 1588, 1591, 1592, 1595, 1599, 1603, 1606,
+ 1609, 1613, 1615, 1617, 1619, 1622, 1628, 1634, 1638, 1644,
+ 1649, 1653, 1657, 1660, 1662, 1666, 1670, 1673, 1676, 1680,
+ 1682, 1686, 1690, 1693, 1696, 1700, 1702, 1708, 1714, 1718,
+ 1724, 1728, 1732, 1737, 1741, 1744, 1747, 1749, 1752, 1757,
+ 1762, 1765, 1767, 1769, 1771, 1774, 1777, 1780, 1782, 1785,
+ 1787, 1790, 1793, 1797, 1799, 1803, 1806, 1810, 1813, 1816,
+ 1820, 1822, 1826, 1831, 1835, 1838, 1841, 1843, 1847, 1850,
+ 1853, 1855, 1858, 1862, 1864, 1868, 1870, 1876, 1880, 1885,
+ 1889, 1894, 1897, 1900, 1904, 1907, 1909, 1911, 1914, 1917,
+ 1920, 1921, 1922, 1924, 1926, 1929, 1933, 1935, 1938, 1942,
+ 1948, 1955, 1961, 1962, 1963, 1970, 1972, 1975, 1977, 1979,
+ 1981, 1984, 1985, 1990, 1992, 1993, 1994, 2001, 2002, 2003,
+ 2011, 2012, 2013, 2014, 2025, 2026, 2027, 2028, 2039, 2040,
+ 2048, 2049, 2055, 2056, 2064, 2065, 2070, 2073, 2076, 2079,
+ 2083, 2090, 2099, 2110, 2123, 2128, 2132, 2135, 2138, 2140,
+ 2142, 2143, 2144, 2152, 2154, 2157, 2160, 2161, 2162, 2168,
+ 2170, 2172, 2176, 2180, 2183, 2186, 2189, 2193, 2198, 2203,
+ 2207, 2212, 2219, 2226, 2227, 2229, 2230, 2232, 2234, 2235,
+ 2237, 2239, 2243, 2248, 2250, 2254, 2255, 2257, 2259, 2261,
+ 2264, 2267, 2270, 2272, 2274, 2277, 2280, 2283, 2286, 2288,
+ 2292, 2295, 2298, 2303, 2306, 2309, 2312, 2315, 2318, 2321,
+ 2323, 2326, 2328, 2332, 2334, 2336, 2337, 2338, 2340, 2341,
+ 2346, 2348, 2350, 2354, 2355, 2359, 2363, 2367, 2369, 2372,
+ 2375, 2378, 2381, 2384, 2387, 2390, 2393, 2396, 2399, 2402,
+ 2405, 2408, 2411, 2414, 2417, 2420, 2423, 2426, 2429, 2432,
+ 2435, 2438, 2442, 2445, 2448, 2451, 2454, 2458, 2461, 2464,
+ 2469, 2474, 2478
};
static const short yyrhs[] = { -1,
@@ -389,179 +389,178 @@ static const short yyrhs[] = { -1,
0, 92, 0, 92, 169, 0, 83, 330, 139, 0,
337, 0, 3, 0, 53, 0, 170, 0, 4, 0,
170, 0, 263, 0, 75, 172, 0, 65, 172, 0,
- 88, 172, 102, 0, 261, 0, 170, 0, 263, 0,
- 88, 172, 102, 0, 170, 0, 8, 0, 179, 0,
- 180, 0, 88, 153, 102, 0, 88, 1, 102, 0,
- 0, 88, 175, 284, 102, 0, 0, 174, 88, 161,
- 102, 176, 151, 0, 174, 44, 0, 174, 89, 153,
- 105, 0, 174, 81, 0, 174, 82, 0, 40, 0,
- 7, 88, 161, 102, 0, 265, 0, 47, 69, 186,
- 70, 88, 153, 102, 0, 48, 69, 186, 70, 88,
- 153, 102, 0, 49, 69, 186, 70, 88, 153, 102,
- 0, 50, 69, 186, 70, 88, 153, 102, 0, 46,
- 88, 153, 102, 0, 46, 88, 186, 102, 0, 272,
- 3, 0, 272, 337, 0, 264, 0, 264, 88, 161,
- 102, 0, 264, 44, 0, 182, 171, 0, 182, 262,
- 0, 182, 171, 88, 161, 102, 0, 182, 171, 44,
- 0, 182, 262, 88, 161, 102, 0, 182, 262, 44,
- 0, 182, 83, 6, 44, 0, 182, 6, 51, 83,
- 6, 44, 0, 38, 0, 272, 38, 0, 37, 0,
- 272, 178, 0, 42, 0, 43, 0, 9, 0, 180,
- 9, 0, 0, 174, 87, 0, 174, 86, 0, 193,
- 184, 56, 0, 187, 184, 56, 0, 193, 195, 56,
- 0, 187, 195, 56, 0, 190, 196, 56, 0, 187,
- 56, 0, 190, 56, 0, 255, 0, 259, 0, 44,
- 0, 185, 44, 0, 191, 275, 0, 252, 275, 0,
- 193, 275, 0, 191, 0, 252, 0, 191, 0, 188,
- 0, 190, 193, 0, 193, 189, 0, 190, 193, 189,
- 0, 190, 193, 192, 0, 190, 193, 192, 189, 0,
- 5, 0, 189, 194, 0, 189, 5, 0, 252, 0,
- 5, 0, 190, 7, 0, 190, 5, 0, 193, 0,
- 252, 193, 0, 193, 192, 0, 252, 193, 192, 0,
- 194, 0, 192, 194, 0, 216, 0, 6, 0, 269,
- 0, 27, 88, 153, 102, 0, 27, 88, 186, 102,
- 0, 31, 88, 153, 102, 0, 31, 88, 186, 102,
- 0, 6, 0, 7, 0, 216, 0, 199, 0, 195,
- 55, 201, 0, 203, 0, 196, 55, 201, 0, 205,
- 0, 197, 55, 201, 0, 0, 111, 88, 180, 102,
- 0, 0, 184, 332, 198, 207, 58, 200, 214, 0,
- 184, 332, 198, 207, 0, 0, 184, 332, 198, 207,
- 58, 202, 214, 0, 184, 332, 198, 207, 0, 0,
- 259, 332, 198, 207, 58, 204, 214, 0, 259, 332,
- 198, 207, 0, 0, 259, 332, 198, 207, 58, 206,
- 214, 0, 259, 332, 198, 207, 0, 0, 208, 0,
- 209, 0, 208, 209, 0, 32, 88, 88, 210, 102,
- 102, 0, 211, 0, 210, 55, 211, 0, 0, 212,
- 0, 212, 88, 3, 102, 0, 212, 88, 3, 55,
- 161, 102, 0, 212, 88, 161, 102, 0, 139, 0,
- 5, 0, 6, 0, 7, 0, 139, 0, 213, 55,
- 139, 0, 169, 0, 54, 103, 0, 54, 215, 103,
- 0, 54, 215, 55, 103, 0, 1, 0, 214, 0,
- 215, 55, 214, 0, 89, 169, 105, 214, 0, 215,
- 55, 19, 169, 60, 214, 0, 139, 60, 214, 0,
- 215, 55, 139, 60, 214, 0, 0, 12, 139, 54,
- 217, 248, 220, 103, 0, 12, 139, 54, 103, 0,
- 0, 12, 54, 218, 248, 220, 103, 0, 12, 54,
- 103, 0, 12, 139, 0, 12, 270, 0, 229, 235,
- 236, 103, 0, 229, 0, 0, 55, 0, 0, 55,
- 0, 35, 0, 221, 5, 0, 221, 6, 0, 221,
- 7, 0, 221, 35, 0, 221, 144, 56, 0, 221,
- 139, 0, 221, 270, 0, 221, 143, 0, 221, 144,
- 54, 0, 221, 144, 60, 0, 222, 0, 221, 141,
- 0, 0, 0, 223, 225, 230, 0, 224, 226, 230,
- 0, 221, 54, 0, 228, 0, 227, 0, 0, 60,
- 0, 60, 231, 0, 232, 0, 231, 55, 232, 0,
- 233, 0, 234, 233, 0, 269, 0, 31, 88, 153,
- 102, 0, 31, 88, 186, 102, 0, 36, 0, 5,
- 0, 234, 36, 0, 234, 5, 0, 54, 0, 0,
- 237, 0, 236, 36, 60, 237, 0, 236, 36, 60,
- 0, 238, 0, 237, 238, 0, 237, 56, 0, 239,
- 56, 0, 239, 103, 0, 132, 60, 0, 132, 54,
- 0, 187, 240, 0, 190, 241, 0, 259, 332, 198,
- 207, 0, 60, 169, 0, 1, 0, 187, 88, 323,
- 102, 251, 0, 187, 44, 251, 0, 0, 242, 0,
- 240, 55, 243, 0, 0, 245, 0, 241, 55, 247,
- 0, 244, 0, 245, 0, 246, 0, 247, 0, 255,
+ 261, 0, 170, 0, 263, 0, 170, 0, 8, 0,
+ 179, 0, 180, 0, 88, 153, 102, 0, 88, 1,
+ 102, 0, 0, 88, 175, 284, 102, 0, 0, 174,
+ 88, 161, 102, 176, 151, 0, 174, 44, 0, 174,
+ 89, 153, 105, 0, 174, 81, 0, 174, 82, 0,
+ 40, 0, 7, 88, 161, 102, 0, 265, 0, 47,
+ 69, 186, 70, 88, 153, 102, 0, 48, 69, 186,
+ 70, 88, 153, 102, 0, 49, 69, 186, 70, 88,
+ 153, 102, 0, 50, 69, 186, 70, 88, 153, 102,
+ 0, 46, 88, 153, 102, 0, 46, 88, 186, 102,
+ 0, 272, 3, 0, 272, 337, 0, 264, 0, 264,
+ 88, 161, 102, 0, 264, 44, 0, 182, 171, 0,
+ 182, 262, 0, 182, 171, 88, 161, 102, 0, 182,
+ 171, 44, 0, 182, 262, 88, 161, 102, 0, 182,
+ 262, 44, 0, 182, 83, 6, 44, 0, 182, 6,
+ 51, 83, 6, 44, 0, 38, 0, 272, 38, 0,
+ 37, 0, 272, 178, 0, 42, 0, 43, 0, 9,
+ 0, 180, 9, 0, 0, 174, 87, 0, 174, 86,
+ 0, 193, 184, 56, 0, 187, 184, 56, 0, 193,
+ 195, 56, 0, 187, 195, 56, 0, 190, 196, 56,
+ 0, 187, 56, 0, 190, 56, 0, 255, 0, 259,
+ 0, 44, 0, 185, 44, 0, 191, 275, 0, 252,
+ 275, 0, 193, 275, 0, 191, 0, 252, 0, 191,
+ 0, 188, 0, 190, 193, 0, 193, 189, 0, 190,
+ 193, 189, 0, 190, 193, 192, 0, 190, 193, 192,
+ 189, 0, 5, 0, 189, 194, 0, 189, 5, 0,
+ 252, 0, 5, 0, 190, 7, 0, 190, 5, 0,
+ 193, 0, 252, 193, 0, 193, 192, 0, 252, 193,
+ 192, 0, 194, 0, 192, 194, 0, 216, 0, 6,
+ 0, 269, 0, 27, 88, 153, 102, 0, 27, 88,
+ 186, 102, 0, 31, 88, 153, 102, 0, 31, 88,
+ 186, 102, 0, 6, 0, 7, 0, 216, 0, 199,
+ 0, 195, 55, 201, 0, 203, 0, 196, 55, 201,
+ 0, 205, 0, 197, 55, 201, 0, 0, 111, 88,
+ 180, 102, 0, 0, 184, 332, 198, 207, 58, 200,
+ 214, 0, 184, 332, 198, 207, 0, 0, 184, 332,
+ 198, 207, 58, 202, 214, 0, 184, 332, 198, 207,
+ 0, 0, 259, 332, 198, 207, 58, 204, 214, 0,
+ 259, 332, 198, 207, 0, 0, 259, 332, 198, 207,
+ 58, 206, 214, 0, 259, 332, 198, 207, 0, 0,
+ 208, 0, 209, 0, 208, 209, 0, 32, 88, 88,
+ 210, 102, 102, 0, 211, 0, 210, 55, 211, 0,
+ 0, 212, 0, 212, 88, 3, 102, 0, 212, 88,
+ 3, 55, 161, 102, 0, 212, 88, 161, 102, 0,
+ 139, 0, 5, 0, 6, 0, 7, 0, 139, 0,
+ 213, 55, 139, 0, 169, 0, 54, 103, 0, 54,
+ 215, 103, 0, 54, 215, 55, 103, 0, 1, 0,
+ 214, 0, 215, 55, 214, 0, 89, 169, 105, 214,
+ 0, 215, 55, 19, 169, 60, 214, 0, 139, 60,
+ 214, 0, 215, 55, 139, 60, 214, 0, 0, 12,
+ 139, 54, 217, 248, 220, 103, 0, 12, 139, 54,
+ 103, 0, 0, 12, 54, 218, 248, 220, 103, 0,
+ 12, 54, 103, 0, 12, 139, 0, 12, 270, 0,
+ 229, 235, 236, 103, 0, 229, 0, 0, 55, 0,
+ 0, 55, 0, 35, 0, 221, 5, 0, 221, 6,
+ 0, 221, 7, 0, 221, 35, 0, 221, 144, 56,
+ 0, 221, 139, 0, 221, 270, 0, 221, 143, 0,
+ 221, 144, 54, 0, 221, 144, 60, 0, 222, 0,
+ 221, 141, 0, 0, 0, 223, 225, 230, 0, 224,
+ 226, 230, 0, 221, 54, 0, 228, 0, 227, 0,
+ 0, 60, 0, 60, 231, 0, 232, 0, 231, 55,
+ 232, 0, 233, 0, 234, 233, 0, 269, 0, 31,
+ 88, 153, 102, 0, 31, 88, 186, 102, 0, 36,
+ 0, 5, 0, 234, 36, 0, 234, 5, 0, 54,
+ 0, 0, 237, 0, 236, 36, 60, 237, 0, 236,
+ 36, 60, 0, 238, 0, 237, 238, 0, 237, 56,
+ 0, 239, 56, 0, 239, 103, 0, 132, 60, 0,
+ 132, 54, 0, 187, 240, 0, 190, 241, 0, 259,
+ 332, 198, 207, 0, 60, 169, 0, 1, 0, 187,
+ 88, 323, 102, 251, 0, 187, 44, 251, 0, 0,
+ 242, 0, 240, 55, 243, 0, 0, 245, 0, 241,
+ 55, 247, 0, 244, 0, 245, 0, 246, 0, 247,
+ 0, 255, 332, 198, 207, 0, 255, 332, 198, 207,
+ 58, 214, 0, 4, 60, 169, 207, 0, 259, 332,
+ 198, 207, 0, 259, 332, 198, 207, 58, 214, 0,
+ 3, 60, 169, 207, 0, 60, 169, 207, 0, 255,
332, 198, 207, 0, 255, 332, 198, 207, 58, 214,
0, 4, 60, 169, 207, 0, 259, 332, 198, 207,
0, 259, 332, 198, 207, 58, 214, 0, 3, 60,
- 169, 207, 0, 60, 169, 207, 0, 255, 332, 198,
- 207, 0, 255, 332, 198, 207, 58, 214, 0, 4,
- 60, 169, 207, 0, 259, 332, 198, 207, 0, 259,
- 332, 198, 207, 58, 214, 0, 3, 60, 169, 207,
- 0, 60, 169, 207, 0, 249, 0, 248, 55, 249,
- 0, 139, 0, 139, 58, 169, 0, 312, 273, 0,
- 312, 0, 88, 186, 102, 89, 153, 105, 0, 0,
- 251, 7, 0, 7, 0, 252, 7, 0, 0, 254,
- 153, 0, 75, 252, 255, 0, 65, 252, 255, 0,
- 75, 255, 0, 65, 255, 0, 271, 251, 255, 0,
- 258, 0, 266, 0, 257, 0, 267, 266, 0, 258,
- 88, 161, 102, 251, 0, 258, 88, 323, 102, 251,
- 0, 258, 44, 251, 0, 258, 88, 1, 102, 251,
- 0, 258, 89, 253, 105, 0, 258, 89, 105, 0,
- 88, 255, 102, 0, 267, 266, 0, 266, 0, 75,
- 252, 259, 0, 65, 252, 259, 0, 75, 259, 0,
- 65, 259, 0, 271, 251, 259, 0, 173, 0, 75,
- 252, 259, 0, 65, 252, 259, 0, 75, 260, 0,
- 65, 260, 0, 271, 251, 259, 0, 261, 0, 173,
- 88, 161, 102, 251, 0, 173, 88, 323, 102, 251,
- 0, 173, 44, 251, 0, 173, 88, 1, 102, 251,
- 0, 88, 260, 102, 0, 173, 89, 253, 105, 0,
- 173, 89, 105, 0, 267, 171, 0, 267, 170, 0,
- 263, 0, 272, 263, 0, 193, 88, 161, 102, 0,
- 193, 88, 172, 102, 0, 193, 185, 0, 4, 0,
- 143, 0, 268, 0, 267, 268, 0, 4, 51, 0,
- 143, 51, 0, 256, 0, 272, 256, 0, 257, 0,
- 272, 256, 0, 267, 75, 0, 272, 267, 75, 0,
- 51, 0, 75, 251, 273, 0, 75, 251, 0, 65,
- 251, 273, 0, 65, 251, 0, 271, 251, 0, 271,
- 251, 273, 0, 274, 0, 89, 153, 105, 0, 274,
- 89, 253, 105, 0, 75, 252, 275, 0, 75, 275,
- 0, 75, 252, 0, 75, 0, 65, 252, 275, 0,
- 65, 275, 0, 65, 252, 0, 65, 0, 271, 251,
- 0, 271, 251, 275, 0, 276, 0, 88, 275, 102,
- 0, 85, 0, 276, 88, 323, 102, 251, 0, 276,
- 44, 251, 0, 276, 89, 253, 105, 0, 276, 89,
- 105, 0, 88, 324, 102, 251, 0, 166, 251, 0,
- 185, 251, 0, 89, 253, 105, 0, 89, 105, 0,
- 289, 0, 278, 0, 277, 289, 0, 277, 278, 0,
- 1, 56, 0, 0, 0, 281, 0, 282, 0, 281,
- 282, 0, 34, 213, 56, 0, 284, 0, 1, 284,
- 0, 54, 279, 103, 0, 54, 279, 280, 277, 103,
- 0, 54, 279, 280, 277, 1, 103, 0, 54, 279,
- 280, 1, 103, 0, 0, 0, 13, 286, 279, 155,
- 287, 288, 0, 284, 0, 279, 290, 0, 284, 0,
- 290, 0, 183, 0, 153, 56, 0, 0, 285, 14,
- 291, 288, 0, 285, 0, 0, 0, 15, 292, 279,
- 155, 293, 159, 0, 0, 0, 16, 294, 288, 15,
- 295, 154, 56, 0, 0, 0, 0, 315, 296, 279,
- 156, 56, 297, 318, 102, 298, 159, 0, 0, 0,
- 0, 316, 299, 279, 156, 56, 300, 318, 102, 301,
- 159, 0, 0, 18, 279, 88, 157, 102, 302, 288,
- 0, 0, 19, 169, 60, 303, 289, 0, 0, 19,
- 169, 10, 169, 60, 304, 289, 0, 0, 20, 60,
- 305, 289, 0, 21, 56, 0, 22, 56, 0, 23,
- 56, 0, 23, 153, 56, 0, 111, 317, 88, 180,
- 102, 56, 0, 111, 317, 88, 180, 60, 319, 102,
- 56, 0, 111, 317, 88, 180, 60, 319, 60, 319,
- 102, 56, 0, 111, 317, 88, 180, 60, 319, 60,
- 319, 60, 322, 102, 56, 0, 24, 75, 153, 56,
- 0, 24, 139, 56, 0, 314, 289, 0, 314, 103,
- 0, 56, 0, 306, 0, 0, 0, 90, 54, 279,
- 307, 309, 308, 310, 0, 103, 0, 277, 103, 0,
- 1, 103, 0, 0, 0, 310, 91, 311, 313, 284,
- 0, 191, 0, 252, 0, 88, 10, 102, 0, 88,
- 329, 102, 0, 3, 60, 0, 53, 60, 0, 4,
- 60, 0, 17, 88, 56, 0, 17, 88, 153, 56,
- 0, 17, 88, 54, 103, 0, 17, 88, 183, 0,
- 17, 88, 1, 56, 0, 17, 88, 54, 279, 277,
- 103, 0, 17, 88, 54, 279, 1, 103, 0, 0,
- 7, 0, 0, 153, 0, 1, 0, 0, 320, 0,
- 321, 0, 320, 55, 321, 0, 9, 88, 153, 102,
- 0, 9, 0, 322, 55, 9, 0, 0, 324, 0,
- 186, 0, 325, 0, 326, 10, 0, 325, 10, 0,
- 186, 10, 0, 10, 0, 93, 0, 325, 93, 0,
- 186, 93, 0, 325, 60, 0, 186, 60, 0, 327,
- 0, 329, 58, 214, 0, 326, 328, 0, 326, 331,
- 0, 326, 331, 58, 214, 0, 325, 55, 0, 186,
- 55, 0, 188, 184, 0, 191, 184, 0, 193, 184,
- 0, 188, 275, 0, 188, 0, 190, 259, 0, 329,
- 0, 329, 58, 214, 0, 327, 0, 186, 0, 0,
- 0, 259, 0, 0, 92, 88, 334, 102, 0, 186,
- 0, 333, 0, 334, 55, 333, 0, 0, 75, 251,
- 335, 0, 65, 251, 335, 0, 271, 251, 335, 0,
- 41, 0, 336, 75, 0, 336, 76, 0, 336, 77,
- 0, 336, 73, 0, 336, 74, 0, 336, 65, 0,
- 336, 63, 0, 336, 64, 0, 336, 83, 0, 336,
- 55, 0, 336, 68, 0, 336, 69, 0, 336, 70,
- 0, 336, 67, 0, 336, 57, 0, 336, 58, 0,
- 336, 71, 0, 336, 72, 0, 336, 81, 0, 336,
- 82, 0, 336, 62, 0, 336, 61, 0, 336, 104,
- 0, 336, 59, 60, 0, 336, 66, 0, 336, 86,
- 0, 336, 78, 0, 336, 44, 0, 336, 89, 105,
- 0, 336, 38, 0, 336, 37, 0, 336, 38, 89,
- 105, 0, 336, 37, 89, 105, 0, 336, 312, 335,
- 0, 336, 1, 0
+ 169, 207, 0, 60, 169, 207, 0, 249, 0, 248,
+ 55, 249, 0, 139, 0, 139, 58, 169, 0, 312,
+ 273, 0, 312, 0, 88, 186, 102, 89, 153, 105,
+ 0, 0, 251, 7, 0, 7, 0, 252, 7, 0,
+ 0, 254, 153, 0, 75, 252, 255, 0, 65, 252,
+ 255, 0, 75, 255, 0, 65, 255, 0, 271, 251,
+ 255, 0, 258, 0, 266, 0, 257, 0, 267, 266,
+ 0, 258, 88, 161, 102, 251, 0, 258, 88, 323,
+ 102, 251, 0, 258, 44, 251, 0, 258, 88, 1,
+ 102, 251, 0, 258, 89, 253, 105, 0, 258, 89,
+ 105, 0, 88, 255, 102, 0, 267, 266, 0, 266,
+ 0, 75, 252, 259, 0, 65, 252, 259, 0, 75,
+ 259, 0, 65, 259, 0, 271, 251, 259, 0, 173,
+ 0, 75, 252, 259, 0, 65, 252, 259, 0, 75,
+ 260, 0, 65, 260, 0, 271, 251, 259, 0, 261,
+ 0, 173, 88, 161, 102, 251, 0, 173, 88, 323,
+ 102, 251, 0, 173, 44, 251, 0, 173, 88, 1,
+ 102, 251, 0, 88, 172, 102, 0, 88, 260, 102,
+ 0, 173, 89, 253, 105, 0, 173, 89, 105, 0,
+ 267, 171, 0, 267, 170, 0, 263, 0, 272, 263,
+ 0, 193, 88, 161, 102, 0, 193, 88, 172, 102,
+ 0, 193, 185, 0, 4, 0, 143, 0, 268, 0,
+ 267, 268, 0, 4, 51, 0, 143, 51, 0, 256,
+ 0, 272, 256, 0, 257, 0, 272, 256, 0, 267,
+ 75, 0, 272, 267, 75, 0, 51, 0, 75, 251,
+ 273, 0, 75, 251, 0, 65, 251, 273, 0, 65,
+ 251, 0, 271, 251, 0, 271, 251, 273, 0, 274,
+ 0, 89, 153, 105, 0, 274, 89, 253, 105, 0,
+ 75, 252, 275, 0, 75, 275, 0, 75, 252, 0,
+ 75, 0, 65, 252, 275, 0, 65, 275, 0, 65,
+ 252, 0, 65, 0, 271, 251, 0, 271, 251, 275,
+ 0, 276, 0, 88, 275, 102, 0, 85, 0, 276,
+ 88, 323, 102, 251, 0, 276, 44, 251, 0, 276,
+ 89, 253, 105, 0, 276, 89, 105, 0, 88, 324,
+ 102, 251, 0, 166, 251, 0, 185, 251, 0, 89,
+ 253, 105, 0, 89, 105, 0, 289, 0, 278, 0,
+ 277, 289, 0, 277, 278, 0, 1, 56, 0, 0,
+ 0, 281, 0, 282, 0, 281, 282, 0, 34, 213,
+ 56, 0, 284, 0, 1, 284, 0, 54, 279, 103,
+ 0, 54, 279, 280, 277, 103, 0, 54, 279, 280,
+ 277, 1, 103, 0, 54, 279, 280, 1, 103, 0,
+ 0, 0, 13, 286, 279, 155, 287, 288, 0, 284,
+ 0, 279, 290, 0, 284, 0, 290, 0, 183, 0,
+ 153, 56, 0, 0, 285, 14, 291, 288, 0, 285,
+ 0, 0, 0, 15, 292, 279, 155, 293, 159, 0,
+ 0, 0, 16, 294, 288, 15, 295, 154, 56, 0,
+ 0, 0, 0, 315, 296, 279, 156, 56, 297, 318,
+ 102, 298, 159, 0, 0, 0, 0, 316, 299, 279,
+ 156, 56, 300, 318, 102, 301, 159, 0, 0, 18,
+ 279, 88, 157, 102, 302, 288, 0, 0, 19, 169,
+ 60, 303, 289, 0, 0, 19, 169, 10, 169, 60,
+ 304, 289, 0, 0, 20, 60, 305, 289, 0, 21,
+ 56, 0, 22, 56, 0, 23, 56, 0, 23, 153,
+ 56, 0, 111, 317, 88, 180, 102, 56, 0, 111,
+ 317, 88, 180, 60, 319, 102, 56, 0, 111, 317,
+ 88, 180, 60, 319, 60, 319, 102, 56, 0, 111,
+ 317, 88, 180, 60, 319, 60, 319, 60, 322, 102,
+ 56, 0, 24, 75, 153, 56, 0, 24, 139, 56,
+ 0, 314, 289, 0, 314, 103, 0, 56, 0, 306,
+ 0, 0, 0, 90, 54, 279, 307, 309, 308, 310,
+ 0, 103, 0, 277, 103, 0, 1, 103, 0, 0,
+ 0, 310, 91, 311, 313, 284, 0, 191, 0, 252,
+ 0, 88, 10, 102, 0, 88, 329, 102, 0, 3,
+ 60, 0, 53, 60, 0, 4, 60, 0, 17, 88,
+ 56, 0, 17, 88, 153, 56, 0, 17, 88, 54,
+ 103, 0, 17, 88, 183, 0, 17, 88, 1, 56,
+ 0, 17, 88, 54, 279, 277, 103, 0, 17, 88,
+ 54, 279, 1, 103, 0, 0, 7, 0, 0, 153,
+ 0, 1, 0, 0, 320, 0, 321, 0, 320, 55,
+ 321, 0, 9, 88, 153, 102, 0, 9, 0, 322,
+ 55, 9, 0, 0, 324, 0, 186, 0, 325, 0,
+ 326, 10, 0, 325, 10, 0, 186, 10, 0, 10,
+ 0, 93, 0, 325, 93, 0, 186, 93, 0, 325,
+ 60, 0, 186, 60, 0, 327, 0, 329, 58, 214,
+ 0, 326, 328, 0, 326, 331, 0, 326, 331, 58,
+ 214, 0, 325, 55, 0, 186, 55, 0, 188, 184,
+ 0, 191, 184, 0, 193, 184, 0, 188, 275, 0,
+ 188, 0, 190, 259, 0, 329, 0, 329, 58, 214,
+ 0, 327, 0, 186, 0, 0, 0, 259, 0, 0,
+ 92, 88, 334, 102, 0, 186, 0, 333, 0, 334,
+ 55, 333, 0, 0, 75, 251, 335, 0, 65, 251,
+ 335, 0, 271, 251, 335, 0, 41, 0, 336, 75,
+ 0, 336, 76, 0, 336, 77, 0, 336, 73, 0,
+ 336, 74, 0, 336, 65, 0, 336, 63, 0, 336,
+ 64, 0, 336, 83, 0, 336, 55, 0, 336, 68,
+ 0, 336, 69, 0, 336, 70, 0, 336, 67, 0,
+ 336, 57, 0, 336, 58, 0, 336, 71, 0, 336,
+ 72, 0, 336, 81, 0, 336, 82, 0, 336, 62,
+ 0, 336, 61, 0, 336, 104, 0, 336, 59, 60,
+ 0, 336, 66, 0, 336, 86, 0, 336, 78, 0,
+ 336, 44, 0, 336, 89, 105, 0, 336, 38, 0,
+ 336, 37, 0, 336, 38, 89, 105, 0, 336, 37,
+ 89, 105, 0, 336, 312, 335, 0, 336, 1, 0
};
#endif
@@ -590,59 +589,59 @@ static const short yyrline[] = { 0,
1144, 1146, 1163, 1166, 1168, 1170, 1172, 1174, 1176, 1178,
1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198,
1200, 1202, 1204, 1206, 1208, 1215, 1217, 1234, 1237, 1238,
- 1239, 1242, 1244, 1247, 1249, 1250, 1252, 1254, 1258, 1260,
- 1261, 1264, 1268, 1288, 1289, 1290, 1292, 1294, 1296, 1304,
- 1325, 1330, 1337, 1344, 1346, 1355, 1360, 1383, 1427, 1428,
- 1431, 1434, 1437, 1440, 1442, 1445, 1484, 1491, 1493, 1495,
- 1497, 1499, 1501, 1516, 1531, 1542, 1554, 1561, 1610, 1612,
- 1616, 1618, 1622, 1625, 1630, 1632, 1636, 1649, 1650, 1656,
- 1667, 1675, 1681, 1686, 1688, 1693, 1700, 1702, 1706, 1710,
- 1716, 1719, 1721, 1723, 1725, 1733, 1735, 1737, 1740, 1742,
- 1744, 1746, 1751, 1757, 1759, 1770, 1773, 1775, 1778, 1793,
- 1796, 1798, 1800, 1804, 1807, 1815, 1816, 1817, 1818, 1822,
- 1826, 1840, 1858, 1859, 1860, 1863, 1865, 1868, 1870, 1873,
- 1875, 1878, 1881, 1885, 1902, 1904, 1922, 1928, 1929, 1935,
- 1943, 1945, 1954, 1962, 1964, 1975, 1978, 1982, 1985, 1989,
- 1994, 1997, 2001, 2004, 2006, 2008, 2010, 2017, 2019, 2020,
- 2021, 2025, 2028, 2032, 2034, 2037, 2040, 2043, 2049, 2052,
- 2055, 2057, 2059, 2061, 2065, 2069, 2073, 2076, 2079, 2083,
- 2086, 2088, 2092, 2143, 2158, 2160, 2163, 2165, 2169, 2170,
- 2172, 2174, 2176, 2180, 2189, 2192, 2194, 2196, 2202, 2204,
- 2207, 2212, 2215, 2218, 2227, 2238, 2243, 2243, 2245, 2248,
- 2250, 2254, 2256, 2260, 2288, 2319, 2321, 2343, 2367, 2369,
- 2373, 2399, 2408, 2470, 2473, 2480, 2491, 2500, 2504, 2517,
- 2520, 2522, 2527, 2529, 2533, 2541, 2545, 2548, 2550, 2561,
- 2566, 2574, 2577, 2578, 2589, 2592, 2593, 2604, 2606, 2609,
- 2611, 2614, 2619, 2623, 2629, 2634, 2638, 2642, 2648, 2652,
- 2655, 2660, 2664, 2667, 2670, 2679, 2681, 2685, 2688, 2693,
- 2696, 2700, 2709, 2712, 2716, 2719, 2727, 2729, 2734, 2737,
- 2739, 2741, 2743, 2747, 2750, 2764, 2767, 2772, 2775, 2777,
- 2779, 2781, 2783, 2785, 2787, 2791, 2797, 2800, 2802, 2804,
- 2806, 2810, 2813, 2816, 2818, 2820, 2822, 2826, 2829, 2832,
- 2834, 2836, 2838, 2840, 2842, 2846, 2852, 2858, 2860, 2864,
- 2867, 2869, 2873, 2875, 2878, 2880, 2886, 2889, 2903, 2905,
- 2909, 2911, 2915, 2918, 2924, 2930, 2933, 2935, 2937, 2939,
- 2943, 2947, 2951, 2954, 2959, 2962, 2964, 2966, 2968, 2970,
- 2972, 2974, 2976, 2980, 2984, 2988, 2992, 2993, 2995, 2997,
- 2999, 3001, 3003, 3005, 3007, 3009, 3017, 3019, 3020, 3021,
- 3024, 3031, 3041, 3043, 3048, 3050, 3053, 3067, 3070, 3073,
- 3077, 3081, 3085, 3091, 3094, 3098, 3100, 3103, 3109, 3112,
- 3115, 3118, 3131, 3134, 3139, 3145, 3150, 3153, 3158, 3162,
- 3165, 3171, 3176, 3179, 3184, 3193, 3197, 3200, 3206, 3216,
- 3223, 3229, 3254, 3254, 3286, 3286, 3302, 3302, 3306, 3310,
- 3313, 3318, 3325, 3334, 3343, 3352, 3355, 3361, 3363, 3367,
- 3369, 3372, 3376, 3379, 3382, 3390, 3394, 3400, 3402, 3404,
- 3408, 3410, 3413, 3426, 3431, 3439, 3441, 3445, 3448, 3450,
- 3454, 3457, 3459, 3461, 3467, 3471, 3475, 3478, 3479, 3485,
- 3487, 3490, 3492, 3496, 3501, 3504, 3514, 3521, 3522, 3529,
- 3535, 3540, 3544, 3549, 3556, 3560, 3564, 3569, 3580, 3594,
- 3597, 3599, 3601, 3603, 3607, 3609, 3617, 3634, 3636, 3638,
- 3640, 3642, 3646, 3649, 3653, 3655, 3658, 3680, 3686, 3693,
- 3696, 3700, 3705, 3707, 3714, 3717, 3719, 3721, 3727, 3731,
+ 1239, 1242, 1244, 1247, 1249, 1250, 1252, 1256, 1258, 1259,
+ 1264, 1284, 1285, 1286, 1288, 1290, 1292, 1300, 1321, 1326,
+ 1333, 1340, 1342, 1351, 1356, 1379, 1423, 1424, 1427, 1430,
+ 1433, 1436, 1438, 1441, 1480, 1487, 1489, 1491, 1493, 1495,
+ 1497, 1512, 1527, 1538, 1550, 1557, 1606, 1608, 1612, 1614,
+ 1618, 1621, 1626, 1628, 1632, 1645, 1646, 1652, 1663, 1671,
+ 1677, 1682, 1684, 1689, 1696, 1698, 1702, 1706, 1712, 1715,
+ 1717, 1719, 1721, 1729, 1731, 1733, 1736, 1738, 1740, 1742,
+ 1747, 1753, 1755, 1766, 1769, 1771, 1774, 1789, 1792, 1794,
+ 1796, 1800, 1803, 1811, 1812, 1813, 1814, 1818, 1822, 1836,
+ 1854, 1855, 1856, 1859, 1861, 1864, 1866, 1869, 1871, 1874,
+ 1877, 1881, 1898, 1900, 1918, 1924, 1925, 1931, 1939, 1941,
+ 1950, 1958, 1960, 1971, 1974, 1978, 1981, 1985, 1990, 1993,
+ 1997, 2000, 2002, 2004, 2006, 2013, 2015, 2016, 2017, 2021,
+ 2024, 2028, 2030, 2033, 2036, 2039, 2045, 2048, 2051, 2053,
+ 2055, 2057, 2061, 2065, 2069, 2072, 2075, 2079, 2082, 2084,
+ 2088, 2139, 2154, 2156, 2159, 2161, 2165, 2166, 2168, 2170,
+ 2172, 2176, 2185, 2188, 2190, 2192, 2198, 2200, 2203, 2208,
+ 2211, 2214, 2223, 2234, 2239, 2239, 2241, 2244, 2246, 2250,
+ 2252, 2256, 2284, 2315, 2317, 2339, 2363, 2365, 2369, 2395,
+ 2404, 2466, 2469, 2476, 2487, 2496, 2500, 2513, 2516, 2518,
+ 2523, 2525, 2529, 2537, 2541, 2544, 2546, 2557, 2562, 2570,
+ 2573, 2574, 2585, 2588, 2589, 2600, 2602, 2605, 2607, 2610,
+ 2615, 2619, 2625, 2630, 2634, 2638, 2644, 2648, 2651, 2656,
+ 2660, 2663, 2666, 2675, 2677, 2681, 2684, 2689, 2692, 2696,
+ 2705, 2708, 2712, 2715, 2723, 2725, 2730, 2733, 2735, 2737,
+ 2739, 2743, 2746, 2760, 2763, 2768, 2771, 2773, 2775, 2777,
+ 2779, 2781, 2783, 2787, 2793, 2796, 2798, 2800, 2802, 2806,
+ 2809, 2812, 2814, 2816, 2818, 2822, 2825, 2828, 2830, 2832,
+ 2834, 2836, 2838, 2840, 2844, 2850, 2856, 2858, 2862, 2865,
+ 2867, 2871, 2873, 2876, 2878, 2884, 2887, 2901, 2903, 2907,
+ 2909, 2913, 2916, 2922, 2928, 2931, 2933, 2935, 2937, 2941,
+ 2945, 2949, 2952, 2957, 2960, 2962, 2964, 2966, 2968, 2970,
+ 2972, 2974, 2978, 2982, 2986, 2990, 2991, 2993, 2995, 2997,
+ 2999, 3001, 3003, 3005, 3007, 3015, 3017, 3018, 3019, 3022,
+ 3029, 3039, 3041, 3046, 3048, 3051, 3065, 3068, 3071, 3075,
+ 3079, 3083, 3089, 3092, 3096, 3098, 3101, 3107, 3110, 3113,
+ 3116, 3129, 3132, 3137, 3143, 3148, 3151, 3156, 3160, 3163,
+ 3169, 3174, 3177, 3182, 3191, 3195, 3198, 3204, 3214, 3221,
+ 3227, 3252, 3252, 3284, 3284, 3300, 3300, 3304, 3308, 3311,
+ 3316, 3323, 3332, 3341, 3350, 3353, 3359, 3361, 3365, 3367,
+ 3370, 3374, 3377, 3380, 3388, 3392, 3398, 3400, 3402, 3406,
+ 3408, 3411, 3424, 3429, 3437, 3439, 3443, 3446, 3448, 3452,
+ 3455, 3457, 3459, 3465, 3469, 3473, 3476, 3477, 3483, 3485,
+ 3488, 3490, 3494, 3499, 3502, 3512, 3519, 3520, 3527, 3533,
+ 3538, 3542, 3547, 3554, 3558, 3562, 3567, 3578, 3592, 3595,
+ 3597, 3599, 3601, 3605, 3607, 3615, 3632, 3634, 3636, 3638,
+ 3640, 3644, 3647, 3651, 3653, 3656, 3678, 3684, 3691, 3694,
+ 3698, 3703, 3705, 3712, 3715, 3717, 3719, 3725, 3729, 3732,
3734, 3736, 3738, 3740, 3742, 3744, 3746, 3748, 3750, 3752,
3754, 3756, 3758, 3760, 3762, 3764, 3766, 3768, 3770, 3772,
3774, 3776, 3778, 3780, 3782, 3784, 3786, 3788, 3790, 3792,
- 3794, 3796, 3799, 3801
+ 3794, 3797, 3799
};
static const char * const yytname[] = { "$","error","$illegal.","IDENTIFIER",
@@ -727,59 +726,59 @@ static const short yyr1[] = { 0,
168, 168, 169, 169, 169, 169, 169, 169, 169, 169,
169, 169, 169, 169, 169, 169, 169, 169, 169, 169,
169, 169, 169, 169, 169, 169, 169, 170, 170, 170,
- 170, 171, 171, 172, 172, 172, 172, 172, 173, 173,
- 173, 173, 174, 174, 174, 174, 174, 174, 175, 174,
- 176, 174, 174, 174, 174, 174, 174, 174, 174, 174,
+ 170, 171, 171, 172, 172, 172, 172, 173, 173, 173,
+ 174, 174, 174, 174, 174, 174, 175, 174, 176, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
- 174, 174, 174, 174, 174, 174, 174, 174, 177, 177,
- 178, 178, 179, 179, 180, 180, 181, 182, 182, 183,
- 183, 183, 183, 183, 183, 183, 184, 184, 185, 185,
- 186, 186, 186, 186, 186, 187, 187, 188, 188, 188,
- 188, 188, 189, 189, 189, 190, 190, 190, 190, 191,
- 191, 191, 191, 192, 192, 193, 193, 193, 193, 193,
- 193, 193, 194, 194, 194, 195, 195, 196, 196, 197,
- 197, 198, 198, 200, 199, 199, 202, 201, 201, 204,
- 203, 203, 206, 205, 205, 207, 207, 208, 208, 209,
- 210, 210, 211, 211, 211, 211, 211, 212, 212, 212,
- 212, 213, 213, 214, 214, 214, 214, 214, 215, 215,
- 215, 215, 215, 215, 217, 216, 216, 218, 216, 216,
- 216, 216, 216, 216, 219, 219, 220, 220, 221, 221,
- 221, 221, 221, 222, 223, 223, 223, 223, 223, 223,
- 224, 225, 226, 227, 227, 228, 229, 229, 230, 230,
- 230, 231, 231, 232, 232, 233, 233, 233, 234, 234,
- 234, 234, 235, 236, 236, 236, 236, 237, 237, 237,
- 238, 238, 238, 238, 239, 239, 239, 239, 239, 239,
- 239, 240, 240, 240, 241, 241, 241, 242, 242, 243,
- 243, 244, 244, 244, 245, 245, 245, 245, 246, 246,
- 246, 247, 247, 247, 247, 248, 248, 249, 249, 250,
- 250, 250, 251, 251, 252, 252, 254, 253, 255, 255,
- 255, 255, 255, 255, 256, 256, 257, 258, 258, 258,
- 258, 258, 258, 258, 258, 258, 259, 259, 259, 259,
- 259, 259, 260, 260, 260, 260, 260, 260, 261, 261,
- 261, 261, 261, 261, 261, 262, 263, 264, 264, 265,
- 265, 265, 266, 266, 267, 267, 268, 268, 269, 269,
- 270, 270, 271, 271, 272, 273, 273, 273, 273, 273,
- 273, 273, 274, 274, 275, 275, 275, 275, 275, 275,
- 275, 275, 275, 275, 275, 276, 276, 276, 276, 276,
- 276, 276, 276, 276, 276, 276, 277, 277, 277, 277,
- 278, 279, 280, 280, 281, 281, 282, 283, 283, 284,
- 284, 284, 284, 286, 287, 285, 288, 288, 289, 289,
- 290, 290, 291, 290, 290, 292, 293, 290, 294, 295,
- 290, 296, 297, 298, 290, 299, 300, 301, 290, 302,
- 290, 303, 290, 304, 290, 305, 290, 290, 290, 290,
+ 174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
+ 174, 174, 174, 174, 174, 174, 177, 177, 178, 178,
+ 179, 179, 180, 180, 181, 182, 182, 183, 183, 183,
+ 183, 183, 183, 183, 184, 184, 185, 185, 186, 186,
+ 186, 186, 186, 187, 187, 188, 188, 188, 188, 188,
+ 189, 189, 189, 190, 190, 190, 190, 191, 191, 191,
+ 191, 192, 192, 193, 193, 193, 193, 193, 193, 193,
+ 194, 194, 194, 195, 195, 196, 196, 197, 197, 198,
+ 198, 200, 199, 199, 202, 201, 201, 204, 203, 203,
+ 206, 205, 205, 207, 207, 208, 208, 209, 210, 210,
+ 211, 211, 211, 211, 211, 212, 212, 212, 212, 213,
+ 213, 214, 214, 214, 214, 214, 215, 215, 215, 215,
+ 215, 215, 217, 216, 216, 218, 216, 216, 216, 216,
+ 216, 216, 219, 219, 220, 220, 221, 221, 221, 221,
+ 221, 222, 223, 223, 223, 223, 223, 223, 224, 225,
+ 226, 227, 227, 228, 229, 229, 230, 230, 230, 231,
+ 231, 232, 232, 233, 233, 233, 234, 234, 234, 234,
+ 235, 236, 236, 236, 236, 237, 237, 237, 238, 238,
+ 238, 238, 239, 239, 239, 239, 239, 239, 239, 240,
+ 240, 240, 241, 241, 241, 242, 242, 243, 243, 244,
+ 244, 244, 245, 245, 245, 245, 246, 246, 246, 247,
+ 247, 247, 247, 248, 248, 249, 249, 250, 250, 250,
+ 251, 251, 252, 252, 254, 253, 255, 255, 255, 255,
+ 255, 255, 256, 256, 257, 258, 258, 258, 258, 258,
+ 258, 258, 258, 258, 259, 259, 259, 259, 259, 259,
+ 260, 260, 260, 260, 260, 260, 261, 261, 261, 261,
+ 261, 261, 261, 261, 262, 263, 264, 264, 265, 265,
+ 265, 266, 266, 267, 267, 268, 268, 269, 269, 270,
+ 270, 271, 271, 272, 273, 273, 273, 273, 273, 273,
+ 273, 274, 274, 275, 275, 275, 275, 275, 275, 275,
+ 275, 275, 275, 275, 276, 276, 276, 276, 276, 276,
+ 276, 276, 276, 276, 276, 277, 277, 277, 277, 278,
+ 279, 280, 280, 281, 281, 282, 283, 283, 284, 284,
+ 284, 284, 286, 287, 285, 288, 288, 289, 289, 290,
+ 290, 291, 290, 290, 292, 293, 290, 294, 295, 290,
+ 296, 297, 298, 290, 299, 300, 301, 290, 302, 290,
+ 303, 290, 304, 290, 305, 290, 290, 290, 290, 290,
290, 290, 290, 290, 290, 290, 290, 290, 290, 290,
- 290, 307, 308, 306, 309, 309, 309, 310, 311, 310,
- 312, 312, 313, 313, 314, 314, 314, 315, 315, 315,
- 316, 316, 316, 316, 317, 317, 318, 318, 318, 319,
- 319, 320, 320, 321, 322, 322, 323, 323, 323, 324,
- 324, 324, 324, 324, 324, 324, 324, 324, 324, 325,
- 325, 325, 325, 325, 326, 326, 327, 327, 327, 327,
- 327, 327, 328, 328, 329, 329, 330, 331, 331, 332,
- 332, 333, 334, 334, 335, 335, 335, 335, 336, 337,
+ 307, 308, 306, 309, 309, 309, 310, 311, 310, 312,
+ 312, 313, 313, 314, 314, 314, 315, 315, 315, 316,
+ 316, 316, 316, 317, 317, 318, 318, 318, 319, 319,
+ 320, 320, 321, 322, 322, 323, 323, 323, 324, 324,
+ 324, 324, 324, 324, 324, 324, 324, 324, 325, 325,
+ 325, 325, 325, 326, 326, 327, 327, 327, 327, 327,
+ 327, 328, 328, 329, 329, 330, 331, 331, 332, 332,
+ 333, 334, 334, 335, 335, 335, 335, 336, 337, 337,
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
- 337, 337, 337, 337
+ 337, 337, 337
};
static const short yyr2[] = { 0,
@@ -805,2029 +804,2024 @@ static const short yyr2[] = { 0,
4, 4, 1, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 5, 3, 3, 1, 2, 3, 1, 1,
- 1, 1, 1, 1, 1, 2, 2, 3, 1, 1,
- 1, 3, 1, 1, 1, 1, 3, 3, 0, 4,
- 0, 6, 2, 4, 2, 2, 1, 4, 1, 7,
- 7, 7, 7, 4, 4, 2, 2, 1, 4, 2,
- 2, 2, 5, 3, 5, 3, 4, 6, 1, 2,
- 1, 2, 1, 1, 1, 2, 0, 2, 2, 3,
- 3, 3, 3, 3, 2, 2, 1, 1, 1, 2,
- 2, 2, 2, 1, 1, 1, 1, 2, 2, 3,
- 3, 4, 1, 2, 2, 1, 1, 2, 2, 1,
- 2, 2, 3, 1, 2, 1, 1, 1, 4, 4,
- 4, 4, 1, 1, 1, 1, 3, 1, 3, 1,
- 3, 0, 4, 0, 7, 4, 0, 7, 4, 0,
- 7, 4, 0, 7, 4, 0, 1, 1, 2, 6,
- 1, 3, 0, 1, 4, 6, 4, 1, 1, 1,
- 1, 1, 3, 1, 2, 3, 4, 1, 1, 3,
- 4, 6, 3, 5, 0, 7, 4, 0, 6, 3,
- 2, 2, 4, 1, 0, 1, 0, 1, 1, 2,
- 2, 2, 2, 3, 2, 2, 2, 3, 3, 1,
- 2, 0, 0, 3, 3, 2, 1, 1, 0, 1,
- 2, 1, 3, 1, 2, 1, 4, 4, 1, 1,
- 2, 2, 1, 0, 1, 4, 3, 1, 2, 2,
- 2, 2, 2, 2, 2, 2, 4, 2, 1, 5,
- 3, 0, 1, 3, 0, 1, 3, 1, 1, 1,
- 1, 4, 6, 4, 4, 6, 4, 3, 4, 6,
- 4, 4, 6, 4, 3, 1, 3, 1, 3, 2,
- 1, 6, 0, 2, 1, 2, 0, 2, 3, 3,
- 2, 2, 3, 1, 1, 1, 2, 5, 5, 3,
- 5, 4, 3, 3, 2, 1, 3, 3, 2, 2,
- 3, 1, 3, 3, 2, 2, 3, 1, 5, 5,
- 3, 5, 3, 4, 3, 2, 2, 1, 2, 4,
- 4, 2, 1, 1, 1, 2, 2, 2, 1, 2,
- 1, 2, 2, 3, 1, 3, 2, 3, 2, 2,
- 3, 1, 3, 4, 3, 2, 2, 1, 3, 2,
- 2, 1, 2, 3, 1, 3, 1, 5, 3, 4,
- 3, 4, 2, 2, 3, 2, 1, 1, 2, 2,
- 2, 0, 0, 1, 1, 2, 3, 1, 2, 3,
- 5, 6, 5, 0, 0, 6, 1, 2, 1, 1,
- 1, 2, 0, 4, 1, 0, 0, 6, 0, 0,
- 7, 0, 0, 0, 10, 0, 0, 0, 10, 0,
- 7, 0, 5, 0, 7, 0, 4, 2, 2, 2,
- 3, 6, 8, 10, 12, 4, 3, 2, 2, 1,
- 1, 0, 0, 7, 1, 2, 2, 0, 0, 5,
- 1, 1, 3, 3, 2, 2, 2, 3, 4, 4,
- 3, 4, 6, 6, 0, 1, 0, 1, 1, 0,
- 1, 1, 3, 4, 1, 3, 0, 1, 1, 1,
- 2, 2, 2, 1, 1, 2, 2, 2, 2, 1,
- 3, 2, 2, 4, 2, 2, 2, 2, 2, 2,
- 1, 2, 1, 3, 1, 1, 0, 0, 1, 0,
- 4, 1, 1, 3, 0, 3, 3, 3, 1, 2,
+ 1, 1, 1, 1, 1, 2, 2, 1, 1, 1,
+ 1, 1, 1, 1, 3, 3, 0, 4, 0, 6,
+ 2, 4, 2, 2, 1, 4, 1, 7, 7, 7,
+ 7, 4, 4, 2, 2, 1, 4, 2, 2, 2,
+ 5, 3, 5, 3, 4, 6, 1, 2, 1, 2,
+ 1, 1, 1, 2, 0, 2, 2, 3, 3, 3,
+ 3, 3, 2, 2, 1, 1, 1, 2, 2, 2,
+ 2, 1, 1, 1, 1, 2, 2, 3, 3, 4,
+ 1, 2, 2, 1, 1, 2, 2, 1, 2, 2,
+ 3, 1, 2, 1, 1, 1, 4, 4, 4, 4,
+ 1, 1, 1, 1, 3, 1, 3, 1, 3, 0,
+ 4, 0, 7, 4, 0, 7, 4, 0, 7, 4,
+ 0, 7, 4, 0, 1, 1, 2, 6, 1, 3,
+ 0, 1, 4, 6, 4, 1, 1, 1, 1, 1,
+ 3, 1, 2, 3, 4, 1, 1, 3, 4, 6,
+ 3, 5, 0, 7, 4, 0, 6, 3, 2, 2,
+ 4, 1, 0, 1, 0, 1, 1, 2, 2, 2,
+ 2, 3, 2, 2, 2, 3, 3, 1, 2, 0,
+ 0, 3, 3, 2, 1, 1, 0, 1, 2, 1,
+ 3, 1, 2, 1, 4, 4, 1, 1, 2, 2,
+ 1, 0, 1, 4, 3, 1, 2, 2, 2, 2,
+ 2, 2, 2, 2, 4, 2, 1, 5, 3, 0,
+ 1, 3, 0, 1, 3, 1, 1, 1, 1, 4,
+ 6, 4, 4, 6, 4, 3, 4, 6, 4, 4,
+ 6, 4, 3, 1, 3, 1, 3, 2, 1, 6,
+ 0, 2, 1, 2, 0, 2, 3, 3, 2, 2,
+ 3, 1, 1, 1, 2, 5, 5, 3, 5, 4,
+ 3, 3, 2, 1, 3, 3, 2, 2, 3, 1,
+ 3, 3, 2, 2, 3, 1, 5, 5, 3, 5,
+ 3, 3, 4, 3, 2, 2, 1, 2, 4, 4,
+ 2, 1, 1, 1, 2, 2, 2, 1, 2, 1,
+ 2, 2, 3, 1, 3, 2, 3, 2, 2, 3,
+ 1, 3, 4, 3, 2, 2, 1, 3, 2, 2,
+ 1, 2, 3, 1, 3, 1, 5, 3, 4, 3,
+ 4, 2, 2, 3, 2, 1, 1, 2, 2, 2,
+ 0, 0, 1, 1, 2, 3, 1, 2, 3, 5,
+ 6, 5, 0, 0, 6, 1, 2, 1, 1, 1,
+ 2, 0, 4, 1, 0, 0, 6, 0, 0, 7,
+ 0, 0, 0, 10, 0, 0, 0, 10, 0, 7,
+ 0, 5, 0, 7, 0, 4, 2, 2, 2, 3,
+ 6, 8, 10, 12, 4, 3, 2, 2, 1, 1,
+ 0, 0, 7, 1, 2, 2, 0, 0, 5, 1,
+ 1, 3, 3, 2, 2, 2, 3, 4, 4, 3,
+ 4, 6, 6, 0, 1, 0, 1, 1, 0, 1,
+ 1, 3, 4, 1, 3, 0, 1, 1, 1, 2,
+ 2, 2, 1, 1, 2, 2, 2, 2, 1, 3,
+ 2, 2, 4, 2, 2, 2, 2, 2, 2, 1,
+ 2, 1, 3, 1, 1, 0, 0, 1, 0, 4,
+ 1, 1, 3, 0, 3, 3, 3, 1, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 3, 2, 2, 2, 2, 3, 2, 2,
- 4, 4, 3, 2
+ 2, 3, 2, 2, 2, 2, 3, 2, 2, 4,
+ 4, 3, 2
};
static const short yydefact[] = { 3,
- 10, 10, 5, 0, 4, 0, 220, 523, 307, 317,
- 475, 0, 8, 9, 0, 0, 389, 0, 709, 0,
- 535, 221, 64, 0, 0, 697, 0, 76, 21, 0,
- 11, 6, 0, 15, 14, 13, 12, 277, 0, 524,
- 117, 230, 502, 0, 297, 0, 296, 310, 0, 330,
- 316, 0, 400, 402, 403, 408, 407, 384, 306, 529,
- 486, 0, 229, 231, 485, 0, 525, 318, 473, 0,
- 0, 219, 62, 63, 527, 0, 0, 101, 102, 103,
- 378, 381, 0, 531, 0, 382, 0, 0, 0, 32,
- 0, 307, 0, 22, 0, 0, 400, 0, 0, 0,
- 0, 500, 0, 0, 0, 499, 0, 0, 0, 0,
- 230, 0, 0, 0, 229, 231, 473, 0, 3, 0,
- 0, 0, 0, 402, 403, 700, 0, 88, 83, 277,
- 0, 0, 60, 528, 124, 473, 0, 477, 61, 0,
- 0, 0, 0, 0, 326, 287, 484, 288, 496, 0,
- 473, 309, 308, 59, 298, 0, 328, 0, 303, 323,
- 324, 299, 312, 314, 325, 0, 54, 390, 391, 392,
- 393, 406, 107, 106, 108, 395, 401, 397, 117, 396,
- 409, 409, 423, 0, 476, 311, 72, 0, 75, 533,
- 517, 487, 526, 0, 530, 0, 744, 740, 739, 737,
- 719, 724, 725, 0, 731, 730, 716, 717, 715, 734,
- 723, 720, 721, 722, 726, 727, 713, 714, 710, 711,
- 712, 736, 728, 729, 718, 735, 0, 732, 641, 310,
- 642, 705, 475, 234, 275, 0, 0, 0, 0, 156,
- 271, 269, 247, 273, 274, 0, 0, 0, 0, 0,
- 0, 0, 129, 128, 0, 130, 131, 0, 0, 216,
- 132, 0, 118, 0, 189, 0, 193, 186, 121, 233,
- 155, 0, 0, 235, 236, 0, 120, 294, 310, 295,
- 518, 258, 249, 0, 0, 0, 400, 380, 0, 375,
- 532, 0, 133, 134, 0, 0, 0, 0, 31, 0,
- 110, 409, 125, 109, 115, 0, 498, 0, 497, 102,
- 103, 218, 227, 0, 506, 226, 0, 505, 0, 232,
- 513, 0, 0, 18, 10, 0, 7, 7, 48, 47,
- 700, 0, 34, 42, 38, 36, 43, 40, 332, 82,
- 89, 86, 0, 0, 277, 0, 0, 0, 572, 65,
- 578, 67, 113, 511, 0, 674, 675, 154, 0, 153,
- 669, 691, 0, 294, 310, 295, 0, 668, 670, 698,
- 680, 0, 515, 0, 0, 0, 482, 0, 481, 0,
- 0, 0, 0, 473, 70, 58, 73, 0, 57, 473,
- 0, 477, 495, 0, 300, 301, 0, 55, 71, 56,
- 74, 305, 304, 315, 700, 331, 398, 394, 399, 410,
- 404, 405, 439, 0, 0, 442, 445, 0, 0, 428,
- 0, 700, 313, 0, 0, 346, 474, 501, 534, 0,
- 0, 733, 738, 473, 473, 0, 473, 743, 0, 0,
- 0, 163, 0, 0, 165, 0, 0, 0, 0, 0,
- 0, 0, 0, 162, 159, 158, 160, 0, 0, 0,
- 0, 217, 0, 116, 161, 0, 0, 187, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 10, 10, 5, 0, 4, 0, 220, 522, 305, 315,
+ 473, 0, 8, 9, 0, 0, 387, 0, 708, 0,
+ 534, 221, 64, 0, 0, 696, 0, 76, 21, 0,
+ 11, 6, 0, 15, 14, 13, 12, 275, 0, 523,
+ 117, 229, 500, 0, 295, 0, 294, 308, 0, 328,
+ 314, 0, 398, 400, 401, 406, 405, 382, 304, 528,
+ 484, 0, 228, 230, 483, 0, 524, 316, 471, 0,
+ 0, 219, 62, 63, 526, 0, 0, 101, 102, 103,
+ 376, 379, 0, 530, 0, 380, 0, 0, 0, 32,
+ 0, 305, 0, 22, 0, 0, 398, 0, 0, 0,
+ 0, 498, 0, 0, 0, 497, 0, 0, 0, 229,
+ 0, 0, 0, 228, 230, 471, 0, 3, 0, 0,
+ 0, 0, 400, 401, 699, 0, 88, 83, 275, 0,
+ 0, 60, 527, 124, 471, 0, 475, 61, 0, 0,
+ 0, 0, 0, 324, 285, 482, 286, 494, 0, 471,
+ 307, 306, 59, 296, 0, 326, 0, 301, 321, 322,
+ 297, 310, 312, 323, 0, 54, 388, 389, 390, 391,
+ 404, 107, 106, 108, 393, 399, 395, 117, 394, 407,
+ 407, 421, 0, 474, 309, 72, 0, 75, 532, 516,
+ 485, 525, 0, 529, 0, 743, 739, 738, 736, 718,
+ 723, 724, 0, 730, 729, 715, 716, 714, 733, 722,
+ 719, 720, 721, 725, 726, 712, 713, 709, 710, 711,
+ 735, 727, 728, 717, 734, 0, 731, 640, 308, 641,
+ 704, 473, 232, 273, 0, 0, 0, 0, 156, 269,
+ 267, 245, 271, 272, 0, 0, 0, 0, 0, 0,
+ 0, 129, 128, 0, 130, 131, 0, 0, 216, 132,
+ 0, 118, 0, 189, 0, 193, 186, 121, 231, 155,
+ 0, 0, 233, 234, 0, 120, 292, 308, 293, 517,
+ 256, 247, 0, 0, 0, 398, 378, 0, 373, 531,
+ 0, 133, 134, 0, 0, 0, 0, 31, 0, 110,
+ 407, 125, 109, 115, 0, 496, 0, 495, 102, 103,
+ 218, 227, 0, 504, 226, 0, 503, 511, 512, 0,
+ 0, 18, 10, 0, 7, 7, 48, 47, 699, 0,
+ 34, 42, 38, 36, 43, 40, 330, 82, 89, 86,
+ 0, 0, 275, 0, 0, 0, 571, 65, 577, 67,
+ 113, 509, 0, 673, 674, 154, 0, 153, 668, 690,
+ 0, 292, 308, 293, 0, 667, 669, 697, 679, 0,
+ 514, 0, 0, 0, 480, 0, 479, 0, 0, 0,
+ 471, 70, 58, 73, 0, 57, 471, 0, 475, 493,
+ 0, 298, 299, 0, 55, 71, 56, 74, 303, 302,
+ 313, 699, 329, 396, 392, 397, 408, 402, 403, 437,
+ 0, 0, 440, 443, 0, 0, 426, 0, 699, 311,
+ 0, 0, 344, 472, 499, 533, 0, 0, 732, 737,
+ 471, 471, 0, 471, 742, 0, 0, 0, 163, 0,
+ 0, 165, 0, 0, 0, 0, 0, 0, 0, 0,
+ 162, 159, 158, 160, 0, 0, 0, 0, 217, 0,
+ 116, 161, 0, 0, 187, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 243, 245, 246, 279, 278, 0, 0, 0, 0, 0,
- 167, 471, 0, 175, 276, 223, 0, 697, 222, 261,
- 262, 0, 289, 552, 548, 557, 0, 477, 473, 473,
- 473, 291, 555, 0, 522, 293, 0, 292, 260, 0,
- 256, 270, 272, 519, 0, 257, 112, 111, 468, 387,
- 466, 377, 0, 319, 0, 0, 320, 321, 322, 33,
- 0, 28, 24, 696, 310, 26, 695, 30, 693, 122,
- 114, 504, 503, 232, 507, 0, 17, 20, 19, 332,
- 53, 49, 51, 52, 50, 46, 0, 0, 0, 0,
- 346, 104, 94, 105, 0, 87, 90, 0, 0, 0,
- 368, 0, 364, 84, 0, 0, 66, 69, 579, 573,
- 473, 473, 673, 686, 679, 677, 552, 548, 0, 687,
- 473, 690, 692, 688, 0, 689, 473, 672, 685, 678,
- 676, 671, 699, 682, 683, 0, 514, 478, 480, 479,
- 0, 0, 494, 0, 346, 327, 490, 0, 0, 0,
- 493, 0, 483, 302, 329, 346, 332, 420, 0, 419,
- 411, 412, 414, 0, 416, 438, 434, 433, 220, 523,
- 473, 0, 667, 700, 435, 443, 448, 449, 700, 700,
- 436, 446, 700, 0, 383, 430, 429, 431, 432, 332,
- 702, 310, 703, 0, 0, 0, 345, 347, 348, 742,
- 741, 705, 705, 705, 0, 0, 0, 522, 0, 0,
- 523, 0, 157, 0, 0, 0, 0, 0, 0, 238,
- 237, 0, 184, 119, 220, 523, 221, 0, 0, 369,
- 385, 0, 215, 214, 659, 658, 0, 212, 211, 209,
- 210, 208, 207, 206, 203, 204, 205, 201, 202, 196,
- 197, 198, 199, 200, 194, 195, 0, 0, 0, 0,
- 0, 0, 169, 181, 0, 0, 168, 473, 473, 0,
- 473, 470, 542, 0, 0, 0, 0, 264, 0, 266,
- 0, 516, 551, 550, 547, 546, 696, 0, 0, 566,
- 0, 0, 563, 290, 564, 553, 473, 667, 477, 552,
- 548, 0, 0, 473, 233, 0, 518, 0, 0, 0,
- 388, 0, 387, 152, 151, 150, 149, 0, 23, 0,
- 395, 0, 0, 16, 346, 35, 39, 37, 41, 0,
- 0, 92, 0, 96, 0, 100, 0, 98, 0, 365,
- 0, 85, 68, 0, 580, 0, 574, 575, 512, 509,
- 551, 547, 552, 548, 0, 485, 0, 473, 553, 552,
- 548, 0, 233, 0, 518, 510, 0, 681, 336, 473,
- 473, 473, 492, 342, 346, 0, 0, 422, 421, 415,
- 0, 0, 441, 346, 0, 79, 0, 332, 332, 0,
- 332, 0, 346, 0, 701, 0, 0, 343, 349, 707,
- 706, 708, 248, 164, 0, 0, 0, 166, 190, 192,
- 191, 254, 255, 0, 0, 0, 0, 240, 0, 0,
- 0, 0, 185, 0, 241, 244, 179, 178, 171, 0,
- 170, 183, 0, 0, 539, 537, 0, 540, 477, 176,
- 0, 0, 267, 0, 0, 549, 545, 556, 473, 565,
- 554, 559, 0, 561, 0, 0, 520, 521, 0, 259,
- 469, 467, 379, 0, 25, 29, 694, 0, 0, 44,
- 93, 91, 0, 0, 0, 0, 366, 362, 0, 0,
- 220, 523, 584, 596, 599, 0, 572, 0, 0, 0,
- 0, 0, 0, 221, 630, 0, 655, 0, 591, 0,
- 0, 310, 0, 568, 589, 595, 567, 590, 631, 0,
- 602, 606, 576, 551, 547, 487, 553, 521, 684, 334,
- 491, 488, 489, 340, 339, 0, 0, 413, 346, 346,
- 78, 458, 473, 220, 523, 0, 444, 450, 451, 700,
- 700, 346, 346, 447, 0, 437, 704, 333, 353, 0,
- 0, 0, 0, 0, 0, 373, 0, 0, 370, 188,
- 213, 126, 0, 172, 173, 180, 182, 538, 536, 543,
- 541, 0, 177, 0, 263, 265, 562, 473, 560, 228,
- 376, 0, 45, 95, 99, 97, 367, 0, 577, 571,
- 583, 645, 647, 572, 572, 572, 0, 0, 0, 616,
- 618, 619, 620, 0, 0, 0, 646, 572, 656, 0,
- 592, 285, 700, 0, 286, 0, 700, 0, 700, 0,
- 0, 581, 570, 569, 593, 629, 628, 572, 572, 0,
- 0, 337, 417, 418, 457, 454, 440, 0, 0, 346,
- 332, 332, 452, 455, 359, 360, 361, 358, 0, 351,
- 354, 344, 0, 0, 0, 0, 371, 0, 0, 126,
- 242, 0, 174, 544, 268, 558, 123, 363, 0, 0,
- 0, 587, 0, 0, 572, 648, 0, 651, 0, 0,
- 612, 0, 621, 0, 627, 632, 0, 281, 332, 283,
- 284, 332, 0, 0, 0, 280, 282, 582, 572, 0,
- 0, 335, 341, 0, 77, 346, 346, 465, 346, 346,
- 0, 0, 353, 0, 0, 250, 251, 252, 253, 0,
- 374, 127, 472, 137, 0, 585, 597, 588, 600, 652,
- 650, 0, 649, 144, 0, 310, 0, 0, 0, 617,
- 626, 0, 0, 594, 141, 0, 140, 0, 338, 464,
- 461, 459, 462, 453, 456, 352, 350, 220, 0, 372,
- 0, 572, 0, 0, 0, 0, 610, 700, 614, 613,
- 0, 635, 0, 633, 660, 0, 603, 607, 0, 0,
- 0, 355, 357, 138, 586, 573, 598, 148, 135, 0,
- 0, 654, 0, 653, 572, 332, 0, 637, 636, 638,
- 0, 0, 661, 662, 622, 0, 0, 460, 463, 0,
- 145, 0, 0, 601, 611, 346, 615, 634, 0, 660,
- 0, 0, 0, 0, 356, 0, 0, 136, 0, 639,
- 0, 0, 623, 663, 604, 608, 147, 146, 142, 0,
- 664, 0, 0, 0, 0, 0, 0, 0, 665, 0,
- 624, 605, 609, 143, 0, 0, 640, 0, 0, 643,
- 644, 666, 625, 0, 0, 0
+ 0, 0, 0, 0, 0, 0, 0, 241, 243, 244,
+ 277, 276, 0, 0, 0, 0, 0, 167, 469, 0,
+ 175, 274, 223, 0, 696, 222, 259, 260, 0, 287,
+ 551, 547, 556, 0, 475, 471, 471, 471, 289, 554,
+ 0, 521, 291, 0, 290, 258, 0, 254, 268, 270,
+ 518, 0, 255, 112, 111, 466, 385, 464, 375, 0,
+ 317, 0, 0, 318, 319, 320, 33, 0, 28, 24,
+ 695, 308, 26, 694, 30, 692, 122, 114, 502, 501,
+ 505, 0, 17, 20, 19, 330, 53, 49, 51, 52,
+ 50, 46, 0, 0, 0, 0, 344, 104, 94, 105,
+ 0, 87, 90, 0, 0, 0, 366, 0, 362, 84,
+ 0, 0, 66, 69, 578, 572, 471, 471, 672, 685,
+ 678, 676, 551, 547, 0, 686, 471, 689, 691, 687,
+ 0, 688, 471, 671, 684, 677, 675, 670, 698, 681,
+ 682, 0, 513, 476, 478, 477, 0, 0, 492, 0,
+ 344, 325, 488, 0, 0, 0, 491, 0, 481, 300,
+ 327, 344, 330, 418, 0, 417, 409, 410, 412, 0,
+ 414, 436, 432, 431, 220, 522, 471, 0, 666, 699,
+ 433, 441, 446, 447, 699, 699, 434, 444, 699, 0,
+ 381, 428, 427, 429, 430, 330, 701, 308, 702, 0,
+ 0, 0, 343, 345, 346, 741, 740, 704, 704, 704,
+ 0, 0, 0, 521, 0, 0, 522, 0, 157, 0,
+ 0, 0, 0, 0, 0, 236, 235, 0, 184, 119,
+ 220, 522, 221, 0, 0, 367, 383, 0, 215, 214,
+ 658, 657, 0, 212, 211, 209, 210, 208, 207, 206,
+ 203, 204, 205, 201, 202, 196, 197, 198, 199, 200,
+ 194, 195, 0, 0, 0, 0, 0, 0, 169, 181,
+ 0, 0, 168, 471, 471, 0, 471, 468, 541, 0,
+ 0, 0, 0, 262, 0, 264, 0, 515, 550, 549,
+ 546, 545, 695, 0, 0, 565, 0, 0, 562, 288,
+ 563, 552, 471, 666, 475, 551, 547, 0, 0, 471,
+ 231, 0, 517, 0, 0, 0, 386, 0, 385, 152,
+ 151, 150, 149, 0, 23, 0, 393, 0, 0, 16,
+ 344, 35, 39, 37, 41, 0, 0, 92, 0, 96,
+ 0, 100, 0, 98, 0, 363, 0, 85, 68, 0,
+ 579, 0, 573, 574, 510, 507, 550, 546, 551, 547,
+ 483, 0, 471, 552, 551, 547, 0, 231, 0, 517,
+ 508, 0, 680, 334, 471, 471, 471, 490, 340, 344,
+ 0, 0, 420, 419, 413, 0, 0, 439, 344, 0,
+ 79, 0, 330, 330, 0, 330, 0, 344, 0, 700,
+ 0, 0, 341, 347, 706, 705, 707, 246, 164, 0,
+ 0, 166, 190, 192, 191, 252, 253, 0, 0, 0,
+ 0, 238, 0, 0, 0, 0, 185, 0, 239, 242,
+ 179, 178, 171, 0, 170, 183, 0, 0, 538, 536,
+ 0, 539, 475, 176, 0, 0, 265, 0, 0, 548,
+ 544, 555, 471, 564, 553, 558, 0, 560, 0, 551,
+ 547, 519, 520, 0, 257, 467, 465, 377, 0, 25,
+ 29, 693, 0, 0, 44, 93, 91, 0, 0, 0,
+ 0, 364, 360, 0, 0, 220, 522, 583, 595, 598,
+ 0, 571, 0, 0, 0, 0, 0, 0, 221, 629,
+ 0, 654, 0, 590, 0, 0, 308, 0, 567, 588,
+ 594, 566, 589, 630, 0, 601, 605, 575, 550, 546,
+ 485, 552, 520, 683, 332, 489, 486, 487, 338, 337,
+ 0, 0, 411, 344, 344, 78, 456, 471, 220, 522,
+ 0, 442, 448, 449, 699, 699, 344, 344, 445, 0,
+ 435, 703, 331, 351, 0, 0, 0, 0, 0, 0,
+ 371, 0, 0, 368, 188, 213, 126, 0, 172, 173,
+ 180, 182, 537, 535, 542, 540, 0, 177, 0, 261,
+ 263, 561, 471, 559, 374, 0, 45, 95, 99, 97,
+ 365, 0, 576, 570, 582, 644, 646, 571, 571, 571,
+ 0, 0, 0, 615, 617, 618, 619, 0, 0, 0,
+ 645, 571, 655, 0, 591, 283, 699, 0, 284, 0,
+ 699, 0, 699, 0, 0, 580, 569, 568, 592, 628,
+ 627, 571, 571, 0, 0, 335, 415, 416, 455, 452,
+ 438, 0, 0, 344, 330, 330, 450, 453, 357, 358,
+ 359, 356, 0, 349, 352, 342, 0, 0, 0, 0,
+ 369, 0, 0, 126, 240, 0, 174, 543, 266, 557,
+ 123, 361, 0, 0, 0, 586, 0, 0, 571, 647,
+ 0, 650, 0, 0, 611, 0, 620, 0, 626, 631,
+ 0, 279, 330, 281, 282, 330, 0, 0, 0, 278,
+ 280, 581, 571, 0, 0, 333, 339, 0, 77, 344,
+ 344, 463, 344, 344, 0, 0, 351, 0, 0, 248,
+ 249, 250, 251, 0, 372, 127, 470, 137, 0, 584,
+ 596, 587, 599, 651, 649, 0, 648, 144, 0, 308,
+ 0, 0, 0, 616, 625, 0, 0, 593, 141, 0,
+ 140, 0, 336, 462, 459, 457, 460, 451, 454, 350,
+ 348, 220, 0, 370, 0, 571, 0, 0, 0, 0,
+ 609, 699, 613, 612, 0, 634, 0, 632, 659, 0,
+ 602, 606, 0, 0, 0, 353, 355, 138, 585, 572,
+ 597, 148, 135, 0, 0, 653, 0, 652, 571, 330,
+ 0, 636, 635, 637, 0, 0, 660, 661, 621, 0,
+ 0, 458, 461, 0, 145, 0, 0, 600, 610, 344,
+ 614, 633, 0, 659, 0, 0, 0, 0, 354, 0,
+ 0, 136, 0, 638, 0, 0, 622, 662, 603, 607,
+ 147, 146, 142, 0, 663, 0, 0, 0, 0, 0,
+ 0, 0, 664, 0, 623, 604, 608, 143, 0, 0,
+ 639, 0, 0, 642, 643, 665, 624, 0, 0, 0
};
-static const short yydefgoto[] = { 1354,
- 1, 2, 120, 568, 987, 3, 4, 31, 32, 33,
- 300, 551, 552, 553, 34, 91, 35, 577, 579, 578,
- 580, 576, 36, 37, 38, 415, 129, 130, 131, 341,
- 586, 587, 539, 588, 177, 39, 40, 41, 135, 262,
- 263, 303, 813, 304, 1151, 264, 988, 1281, 1216, 1236,
- 1237, 1336, 1277, 293, 793, 265, 448, 500, 757, 266,
- 267, 268, 294, 270, 510, 313, 43, 271, 460, 1052,
- 272, 273, 274, 275, 132, 276, 989, 405, 520, 777,
- 990, 45, 162, 991, 47, 163, 443, 164, 144, 156,
- 49, 635, 145, 1120, 406, 1194, 157, 1121, 50, 1040,
- 687, 688, 689, 1139, 1140, 1141, 969, 720, 721, 51,
- 543, 289, 912, 802, 52, 53, 54, 55, 181, 182,
- 56, 57, 58, 411, 651, 652, 653, 654, 184, 418,
- 419, 420, 421, 665, 671, 666, 1027, 667, 668, 1028,
- 1029, 540, 541, 501, 783, 59, 374, 375, 146, 60,
- 61, 147, 148, 114, 63, 511, 281, 282, 283, 65,
- 284, 67, 68, 180, 69, 285, 762, 763, 778, 523,
- 993, 994, 1161, 836, 837, 838, 350, 995, 996, 1084,
- 1252, 1163, 997, 998, 1189, 1085, 1253, 1086, 1254, 1118,
- 1296, 1334, 1119, 1297, 1335, 1285, 1229, 1287, 1172, 999,
- 1232, 1290, 1264, 1308, 1330, 1227, 1338, 1000, 1001, 1002,
- 1100, 727, 1292, 1293, 1294, 1340, 367, 779, 369, 370,
- 371, 558, 372, 107, 625, 1179, 683, 684, 438, 71,
+static const short yydefgoto[] = { 1348,
+ 1, 2, 119, 564, 982, 3, 4, 31, 32, 33,
+ 299, 548, 549, 550, 34, 91, 35, 573, 575, 574,
+ 576, 572, 36, 37, 38, 412, 128, 129, 130, 339,
+ 582, 583, 536, 584, 176, 39, 40, 41, 134, 261,
+ 262, 302, 809, 303, 1145, 263, 983, 1275, 1210, 1230,
+ 1231, 1330, 1271, 292, 789, 264, 445, 497, 753, 265,
+ 266, 267, 293, 269, 507, 312, 43, 270, 457, 1047,
+ 271, 272, 273, 274, 131, 275, 984, 402, 517, 773,
+ 985, 45, 161, 986, 47, 162, 440, 163, 143, 155,
+ 49, 631, 144, 1114, 403, 1188, 156, 1115, 50, 1035,
+ 683, 684, 685, 1133, 1134, 1135, 964, 716, 717, 51,
+ 540, 288, 906, 798, 52, 53, 54, 55, 180, 181,
+ 56, 57, 58, 408, 647, 648, 649, 650, 183, 415,
+ 416, 417, 418, 661, 667, 662, 1022, 663, 664, 1023,
+ 1024, 537, 538, 498, 779, 59, 372, 373, 145, 60,
+ 61, 146, 147, 113, 63, 508, 280, 281, 282, 65,
+ 283, 67, 68, 179, 69, 284, 758, 759, 770, 520,
+ 988, 989, 1155, 832, 833, 834, 348, 990, 991, 1078,
+ 1246, 1157, 992, 993, 1183, 1079, 1247, 1080, 1248, 1112,
+ 1290, 1328, 1113, 1291, 1329, 1279, 1223, 1281, 1166, 994,
+ 1226, 1284, 1258, 1302, 1324, 1221, 1332, 995, 996, 997,
+ 1094, 723, 1286, 1287, 1288, 1334, 365, 775, 367, 368,
+ 369, 555, 370, 107, 621, 1173, 679, 680, 435, 71,
72
};
-static const short yypact[] = { 64,
- 80,-32768,-32768, 2131,-32768, 130,-32768, 283, 48,-32768,
--32768, 556,-32768,-32768, 66, 87,-32768, 206,-32768, 2650,
--32768, 210,-32768, 1299, 1299,-32768, 1901,-32768,-32768, 292,
--32768, 333, 3137,-32768,-32768,-32768,-32768, 573, 353, 368,
--32768,-32768, 166, 1701,-32768, 2829,-32768, 1033, 294,-32768,
--32768, 540,-32768,-32768,-32768,-32768,-32768, 396, 1486,-32768,
--32768, 591,-32768,-32768,-32768, 82,-32768,-32768,-32768, 214,
- 6712,-32768,-32768,-32768,-32768, 8620, 2499,-32768, 283, 210,
- 355, 414, 368,-32768, 214,-32768, 214, 8620, 8620,-32768,
- 512,-32768, 210,-32768, 4042, 3298, 1, 214, 8446, 283,
- 2225,-32768, 361, 267, 2225,-32768, 262, 2706, 2706, 1901,
- 383, 435, 166, 453, 495, 498,-32768, 571, 446, 2532,
- 224, 4042, 3192, 680, 723, 521, 617,-32768, 55, 16,
- 143, 143,-32768,-32768, 546,-32768, 6059, 532,-32768, 3255,
- 3255, 4407, 641, 569,-32768,-32768, 255,-32768,-32768, 82,
--32768,-32768,-32768,-32768, 1033, 669,-32768, 998,-32768,-32768,
--32768, 1070, 673,-32768,-32768, 4042,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768, 368, 775,-32768,
- 609, 609,-32768, 2064,-32768, 673,-32768, 604, 970,-32768,
--32768,-32768,-32768, 3851,-32768, 50,-32768, 605, 633,-32768,
--32768,-32768,-32768, 640,-32768,-32768,-32768,-32768,-32768,-32768,
+static const short yypact[] = { 203,
+ 236,-32768,-32768, 1874,-32768, 85,-32768, 55, 300,-32768,
+-32768, 590,-32768,-32768, -23, 252,-32768, 365,-32768, 1493,
+-32768, 355,-32768, 963, 963,-32768, 2214,-32768,-32768, 349,
+-32768, 429, 3939,-32768,-32768,-32768,-32768, 279, 435, 443,
+-32768,-32768, 396, 1052,-32768, 9215,-32768, 704, 30,-32768,
+-32768, 698,-32768,-32768,-32768,-32768,-32768, 488, 1610,-32768,
+-32768, 410,-32768,-32768,-32768, 397,-32768,-32768,-32768, 89,
+ 6309,-32768,-32768,-32768,-32768, 8124, 2133,-32768, 55, 355,
+ 461, 515, 443,-32768, 89,-32768, 89, 8124, 8124,-32768,
+ 363,-32768, 355,-32768, 3239, 4205, 230, 89, 7950, 55,
+ 2347,-32768, 484, 103, 2347,-32768, 92, 2356, 2356, 479,
+ 501, 396, 514, 519, 540,-32768, 629, 555, 2912, 144,
+ 3239, 9396, 593, 706, 572, 666,-32768, 149, 306, 57,
+ 57,-32768,-32768, 575,-32768, 4662, 589,-32768, 3833, 3833,
+ 3542, 1266, 393,-32768,-32768, 408,-32768,-32768, 397,-32768,
+-32768,-32768,-32768, 704, 536,-32768, 1285,-32768,-32768,-32768,
+ 907, 654,-32768,-32768, 3239,-32768,-32768,-32768,-32768,-32768,
+-32768,-32768,-32768,-32768,-32768,-32768, 443, 719,-32768, 617,
+ 617,-32768, 2447,-32768, 654,-32768, 608, 875,-32768,-32768,
+-32768,-32768, 4014,-32768, 56,-32768, 609, 647,-32768,-32768,
+-32768,-32768, 683,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768, 601,-32768,-32768, 673,
- 1486, 654, 627,-32768,-32768, 9561, 9644, 659, 664,-32768,
--32768,-32768,-32768,-32768,-32768, 675, 689, 696, 698, 701,
- 262, 9312,-32768,-32768, 9312,-32768,-32768, 9312, 6796, 3961,
--32768, 422,-32768, 9312,-32768, 8707,-32768,-32768, 9780,-32768,
- 845, 1829, 8790,-32768, 781, 434,-32768, 126, 1601, 4144,
--32768, 160,-32768, 475, 813, 4042, 1,-32768, 262, 690,
--32768, 721, 743, 9688, 726, 728, 734, 800,-32768, 2499,
--32768, 609,-32768,-32768,-32768, 478,-32768, 125,-32768,-32768,
--32768,-32768,-32768, 2225,-32768,-32768, 2225,-32768, 758,-32768,
--32768, 3851, 47,-32768, 729, 2499,-32768,-32768,-32768,-32768,
- 521, 708,-32768,-32768,-32768,-32768,-32768,-32768, 712,-32768,
- 249,-32768, 6886, 8877,-32768, 143, 143, 803,-32768,-32768,
--32768,-32768,-32768, 855, 765,-32768,-32768, 743, 767, 9688,
- 296, 2466, 3192, 2466, 3043, 3464, 772,-32768, 100, 3351,
- 807, 819,-32768, 776, 8877, 3862,-32768, 3862,-32768, 4280,
- 4280, 4407, 785,-32768,-32768,-32768, 970, 4042,-32768,-32768,
- 6161, 792,-32768, 4311, 1070, 1033, 4042,-32768,-32768,-32768,
- 970,-32768,-32768,-32768, 521,-32768,-32768,-32768,-32768, 905,
--32768,-32768,-32768, 8877, 447, 1155, 3724, 60, 1544,-32768,
- 252, 521, 673, 2142, 802, 867,-32768,-32768,-32768, 796,
- 798,-32768,-32768,-32768,-32768, 164,-32768,-32768, 8877, 627,
- 6796,-32768, 229, 6796,-32768, 8877, 8964, 9312, 8620, 2142,
- 2142, 2142, 2142,-32768,-32768,-32768,-32768, 805, 809, 803,
- 810,-32768, 8620,-32768,-32768, 6623, 6796,-32768, 8877, 8877,
- 6976, 8877, 8877, 8877, 8877, 8877, 8877, 8877, 8877, 8877,
- 8877, 8877, 8877, 8877, 8877, 8877, 8877, 8877, 8877, 8877,
--32768,-32768,-32768,-32768,-32768, 8877, 8877, 8877, 8620, 1393,
- 564, 670, 7615,-32768,-32768, 283, 865, 912,-32768, 237,
- 244, 615,-32768, 1080, 1080,-32768, 3796, 814, 837, 884,
--32768,-32768, 490, 8090, 114,-32768, 188,-32768,-32768, 8877,
--32768,-32768,-32768,-32768, 626,-32768,-32768,-32768, 877, 874,
--32768,-32768, 262,-32768, 7438, 7528,-32768,-32768,-32768,-32768,
- 606, 879,-32768,-32768, 3594, 540,-32768,-32768, 887,-32768,
--32768,-32768,-32768, 844,-32768, 891,-32768,-32768,-32768, 712,
--32768,-32768,-32768,-32768,-32768,-32768, 893, 896, 897, 903,
- 867,-32768,-32768, 210, 8877, 906,-32768, 280, 420, 436,
--32768, 6263, 9757,-32768, 849, 143,-32768,-32768,-32768, 24,
--32768,-32768,-32768,-32768,-32768,-32768, 817, 817, 4802,-32768,
--32768,-32768,-32768,-32768, 8181,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 902, 6886,-32768,-32768,-32768,-32768,
- 3862, 3862,-32768, 4311, 867,-32768, 855, 861, 863, 866,
--32768, 872,-32768, 1070,-32768, 867, 712,-32768, 883,-32768,
- 923,-32768,-32768, 939,-32768, 9757,-32768,-32768, 922, 18,
--32768, 8877, 2818, 521, 930,-32768,-32768,-32768, 510, 611,
- 934,-32768, 521, 937,-32768,-32768,-32768,-32768,-32768, 748,
--32768, 3086,-32768, 281, 571, 916, 947, 867,-32768,-32768,
--32768, 282, 282, 282, 904, 908, 9051, 884, 913, 915,
- 192, 917,-32768, 918, 920, 938, 944, 948, 957,-32768,
--32768, 932,-32768,-32768, 975, 421, 338, 8877, 976,-32768,
- 987, 941, 9757, 9757,-32768,-32768, 988, 4588, 9818, 4862,
- 4703, 4168, 4535, 3669, 1937, 1937, 1937, 1334, 1334, 1050,
- 1050, 713, 713, 713,-32768,-32768, 955, 954, 959, 958,
- 961, 2142, 564,-32768, 6886, 8877,-32768,-32768,-32768, 8877,
--32768,-32768, 980, 9312, 967, 981, 1030,-32768, 8877,-32768,
- 8877,-32768, 1350,-32768, 1350,-32768, 71, 977, 978,-32768,
- 973, 2142, 855,-32768, 855, 1728,-32768, 1109, 983, 8272,
- 8272, 5855, 979, 8707, 383, 984, 498, 813, 989, 8877,
- 262, 982, 874,-32768, 9757,-32768, 9757, 2499,-32768, 2761,
- 662, 6886, 396,-32768, 867,-32768,-32768,-32768,-32768, 708,
- 994,-32768, 249,-32768, 8877,-32768, 8877,-32768, 8877,-32768,
- 116,-32768,-32768, 262,-32768, 5585, 1049,-32768, 855, 855,
- 1260, 1260, 1918, 1918, 4802,-32768, 82,-32768, 2412, 8359,
- 8359, 5957, 240, 1005, 341, 855, 6886,-32768, 1031,-32768,
--32768,-32768,-32768, 1051, 867, 8620, 905,-32768,-32768,-32768,
- 8877, 8877, 152, 4929, 1006,-32768, 401, 712, 712, 3568,
- 755, 2290, 867, 2142,-32768, 54, 1023,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 9395, 9395, 7066,-32768,-32768,-32768,
--32768,-32768,-32768, 1024, 1029, 1032, 1034,-32768, 4688, 6886,
- 6353, 1020,-32768, 8877,-32768,-32768,-32768,-32768, 474, 1035,
--32768,-32768, 1039, 44, 181, 181, 1027, 181,-32768,-32768,
- 9312, 1128,-32768, 1044, 1046,-32768,-32768,-32768,-32768,-32768,
--32768, 855, 1059,-32768, 1047, 1062,-32768,-32768, 452,-32768,
- 9757,-32768,-32768, 1063,-32768,-32768,-32768, 2064, 708,-32768,
--32768,-32768, 1068, 1071, 1073, 6443,-32768,-32768, 745, 289,
- 1075, 575,-32768,-32768,-32768, 1065,-32768, 8877, 1116, 1121,
- 1122, 8533, 67, 572,-32768, 1129, 1175, 1131,-32768, 2565,
- 4428, 2918, 5022,-32768,-32768, 1170,-32768,-32768,-32768, 7718,
--32768,-32768,-32768, 1260, 1260,-32768, 2412, 1408,-32768,-32768,
- 855, 855, 855,-32768, 1132, 1089, 1093,-32768, 4929, 4929,
--32768,-32768,-32768, 1138, 624, 8877,-32768,-32768,-32768, 521,
- 521, 867, 867,-32768, 2406,-32768,-32768,-32768, 583, 6886,
- 8877, 8877, 8877, 8877, 6886,-32768, 8877, 1140,-32768,-32768,
- 9801, 546, 8877,-32768, 474,-32768,-32768,-32768,-32768,-32768,
--32768, 1100,-32768, 1163,-32768,-32768, 855,-32768,-32768,-32768,
--32768, 73,-32768,-32768,-32768,-32768,-32768, 262,-32768,-32768,
--32768,-32768,-32768,-32768,-32768, 803, 6533, 1123, 4518,-32768,
--32768,-32768,-32768, 1153, 8877, 1158,-32768,-32768,-32768, 1130,
--32768,-32768, 191, 763,-32768, 788, 521, 9138, 427, 797,
- 307,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 6886,
- 6886,-32768,-32768,-32768,-32768,-32768, 152, 8877, 8877, 4929,
- 712, 712, 1159, 1161,-32768,-32768,-32768,-32768, 315,-32768,
- 1133,-32768, 1120, 1126, 1127, 1137,-32768, 9711, 6886, 546,
--32768, 1119,-32768,-32768,-32768, 855,-32768,-32768, 462, 462,
- 8000,-32768, 1210, 1184, 1139,-32768, 1189,-32768, 8620, 8877,
--32768, 7820,-32768, 1190,-32768,-32768, 571,-32768, 712,-32768,
--32768, 712, 9478, 9478, 7156,-32768,-32768,-32768, 803, 7246,
- 7246,-32768,-32768, 6886,-32768, 4929, 4929,-32768, 867, 867,
- 6886, 6886, 583, 1146, 9225,-32768,-32768,-32768,-32768, 6886,
--32768,-32768,-32768,-32768, 8620,-32768,-32768,-32768,-32768,-32768,
--32768, 5675,-32768,-32768, 1148, 416, 4042, 9734, 7820,-32768,
--32768, 5141, 51,-32768,-32768, 1198,-32768, 1199,-32768,-32768,
--32768, 1174, 1200,-32768,-32768,-32768,-32768, 369, 1154,-32768,
- 1160, 803, 7910, 527, 370, 5273,-32768, 521,-32768,-32768,
- 379,-32768, 5377,-32768, 1248, 1204,-32768,-32768, 6886, 6886,
- 8877,-32768,-32768,-32768,-32768, 25,-32768,-32768,-32768, 8877,
- 1205,-32768, 1213,-32768, 803, 712, 7820,-32768,-32768,-32768,
- 1178, 271, 1216,-32768,-32768, 7336, 7336,-32768,-32768, 1171,
--32768, 5765, 1172,-32768,-32768, 867,-32768, 1181, 8877, 1248,
- 1222, 1248, 1177, 1187,-32768, 397, 5481,-32768, 1233,-32768,
- 1192, 365,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1208,
--32768, 1271, 1236, 7910, 7910, 6886, 3413, 803,-32768, 410,
--32768,-32768,-32768,-32768, 1195, 1197,-32768, 1296, 1251,-32768,
--32768,-32768,-32768, 1308, 1309,-32768
+-32768,-32768,-32768,-32768,-32768, 601,-32768,-32768, 654, 1610,
+ 351, 657,-32768,-32768, 3117, 9065, 660, 662,-32768,-32768,
+-32768,-32768,-32768,-32768, 665, 690, 692, 699, 703, 92,
+ 8816,-32768,-32768, 8816,-32768,-32768, 8816, 6393, 9148,-32768,
+ 29,-32768, 8816,-32768, 8211,-32768,-32768, 9444,-32768, 1334,
+ 2712, 8294,-32768, 767, 557,-32768, 160, 2819, 9439,-32768,
+ 266,-32768, 579, 809, 3239, 230,-32768, 92, 685,-32768,
+ 684, 738, 9497, 693, 697, 701, 808,-32768, 2133,-32768,
+ 617,-32768,-32768,-32768, 154,-32768, 139,-32768,-32768,-32768,
+-32768,-32768, 2347,-32768,-32768, 2347,-32768,-32768,-32768, 4014,
+ 50,-32768, 711, 2133,-32768,-32768,-32768,-32768, 572, 766,
+-32768,-32768,-32768,-32768,-32768,-32768, 656,-32768, 254,-32768,
+ 6483, 8381,-32768, 57, 57, 765,-32768,-32768,-32768,-32768,
+-32768, 818, 730,-32768,-32768, 738, 735, 9497, 328, 1775,
+ 9396, 1775, 4904, 4548, 737,-32768, 72, 9289, 763, 787,
+-32768, 746, 8381, 4250,-32768, 4250,-32768, 4314, 4314, 753,
+-32768,-32768,-32768, 875, 3239,-32768,-32768, 5854, 752,-32768,
+ 4433, 907, 704, 3239,-32768,-32768,-32768, 875,-32768,-32768,
+-32768, 572,-32768,-32768,-32768,-32768, 1191,-32768,-32768,-32768,
+ 8381, 156, 1389, 9306, 54, 2311,-32768, 167, 572, 654,
+ 2569, 771, 831,-32768,-32768,-32768, 773, 777,-32768,-32768,
+-32768,-32768, 169,-32768,-32768, 8381, 657, 6393,-32768, 381,
+ 6393,-32768, 8381, 8468, 8816, 8124, 2569, 2569, 2569, 2569,
+-32768,-32768,-32768,-32768, 782, 784, 765, 793,-32768, 8124,
+-32768,-32768, 3487, 6393,-32768, 8381, 8381, 3006, 8381, 8381,
+ 8381, 8381, 8381, 8381, 8381, 8381, 8381, 8381, 8381, 8381,
+ 8381, 8381, 8381, 8381, 8381, 8381, 8381,-32768,-32768,-32768,
+-32768,-32768, 8381, 8381, 8381, 8124, 3398, 497, 109, 7032,
+-32768,-32768, 55, 848, 896,-32768, 387, 415, 592,-32768,
+ 388, 388,-32768, 3838, 798, 817, 864,-32768,-32768, 412,
+ 7507, 1099,-32768, 251,-32768,-32768, 8381,-32768,-32768,-32768,
+-32768, 597,-32768,-32768,-32768, 851, 855,-32768,-32768, 92,
+-32768, 6855, 6945,-32768,-32768,-32768,-32768, 419, 859,-32768,
+-32768, 9200, 698,-32768,-32768, 862,-32768,-32768,-32768,-32768,
+-32768, 865,-32768,-32768,-32768, 656,-32768,-32768,-32768,-32768,
+-32768,-32768, 866, 868, 869, 870, 831,-32768,-32768, 355,
+ 8381, 877,-32768, 434, 438, 462,-32768, 5956, 9590,-32768,
+ 836, 57,-32768,-32768,-32768, 20,-32768,-32768,-32768,-32768,
+-32768,-32768, 1506, 1506, 3333,-32768,-32768,-32768,-32768,-32768,
+ 7598,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
+ 887, 6483,-32768,-32768,-32768,-32768, 4250, 4250,-32768, 4433,
+ 831,-32768, 818, 849, 856, 861,-32768, 863,-32768, 907,
+-32768, 831, 656,-32768, 881,-32768, 899,-32768,-32768, 1243,
+-32768, 9590,-32768,-32768, 912, 146,-32768, 8381, 2808, 572,
+ 921,-32768,-32768,-32768, 368, 407, 922,-32768, 572, 920,
+-32768,-32768,-32768,-32768,-32768, 551,-32768, 4154,-32768, 187,
+ 629, 897, 926, 831,-32768,-32768,-32768, 505, 505, 505,
+ 885, 886, 8555, 864, 895, 900, 248, 901,-32768, 906,
+ 909, 919, 942, 943, 945,-32768,-32768, 918,-32768,-32768,
+ 962, 553, 136, 8381, 969,-32768, 968, 928, 9590, 9590,
+-32768,-32768, 973, 9629, 4583, 9645, 9660, 5903, 6801, 3406,
+ 1324, 1324, 1324, 1664, 1664, 814, 814, 640, 640, 640,
+-32768,-32768, 932, 934, 940, 935, 946, 2569, 497,-32768,
+ 6483, 8381,-32768,-32768,-32768, 8381,-32768,-32768, 955, 8816,
+ 944, 964, 1008,-32768, 8381,-32768, 8381,-32768, 890,-32768,
+ 890,-32768, 65, 951, 952,-32768, 953, 2569, 818,-32768,
+ 818, 2046,-32768, 1065, 957, 7689, 7689, 4811, 966, 8211,
+ 479, 972, 540, 809, 974, 8381, 92, 961, 855,-32768,
+ 9590,-32768, 9590, 2133,-32768, 664, 520, 6483, 488,-32768,
+ 831,-32768,-32768,-32768,-32768, 766, 978,-32768, 254,-32768,
+ 8381,-32768, 8381,-32768, 8381,-32768, 9,-32768,-32768, 92,
+-32768, 5584, 1032,-32768, 818, 818, 2757, 2757, 3282, 3282,
+-32768, 397,-32768, 3954, 7776, 7776, 5016, 174, 979, 244,
+ 818, 6483,-32768, 1030,-32768,-32768,-32768,-32768, 1037, 831,
+ 8124, 1191,-32768,-32768,-32768, 8381, 8381, 74, 9521, 995,
+-32768, 2416, 656, 656, 3185, 603, 3228, 831, 2569,-32768,
+ 52, 1011,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 8899,
+ 8899,-32768,-32768,-32768,-32768,-32768,-32768, 1013, 1014, 1019,
+ 1022,-32768, 9472, 6483, 6046, 1009,-32768, 8381,-32768,-32768,
+-32768,-32768, 143, 1012,-32768,-32768, 1017, 75, 278, 278,
+ 1006, 278,-32768,-32768, 8816, 1107,-32768, 1018, 1020,-32768,
+-32768,-32768,-32768,-32768,-32768, 818, 1023,-32768, 1010, 7863,
+ 7863,-32768,-32768, 584,-32768, 9590,-32768,-32768, 1021,-32768,
+-32768,-32768, 2447, 766,-32768,-32768,-32768, 1024, 1026, 1036,
+ 6136,-32768,-32768, 668, 231, 1061, 567,-32768,-32768,-32768,
+ 1046,-32768, 8381, 1079, 1085, 1088, 8037, 73, 476,-32768,
+ 1093, 1139, 1094,-32768, 1971, 9379, 2582, 3725,-32768,-32768,
+ 1135,-32768,-32768,-32768, 7135,-32768,-32768,-32768, 2757, 2757,
+-32768, 3954, 1989,-32768,-32768, 818, 818, 818,-32768, 1095,
+ 1053, 1054,-32768, 9521, 9521,-32768,-32768,-32768, 1103, 661,
+ 8381,-32768,-32768,-32768, 572, 572, 831, 831,-32768, 2607,
+-32768,-32768,-32768, 801, 6483, 8381, 8381, 8381, 8381, 6483,
+-32768, 8381, 1104,-32768,-32768, 9611, 575, 8381,-32768, 143,
+-32768,-32768,-32768,-32768,-32768,-32768, 1062,-32768, 1122,-32768,
+-32768, 818,-32768,-32768,-32768, 66,-32768,-32768,-32768,-32768,
+-32768, 92,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 765,
+ 6226, 1082, 5075,-32768,-32768,-32768,-32768, 1115, 8381, 1121,
+-32768,-32768,-32768, 1090,-32768,-32768, 238, 672,-32768, 772,
+ 572, 8642, 459, 774, 258,-32768,-32768,-32768,-32768,-32768,
+-32768,-32768,-32768, 6483, 6483,-32768,-32768,-32768,-32768,-32768,
+ 74, 8381, 8381, 9521, 656, 656, 1124, 1126,-32768,-32768,
+-32768,-32768, 269,-32768, 1091,-32768, 1084, 1087, 1097, 1098,
+-32768, 9544, 6483, 575,-32768, 1089,-32768,-32768,-32768, 818,
+-32768,-32768, 509, 509, 7417,-32768, 1175, 1137, 1100,-32768,
+ 1141,-32768, 8124, 8381,-32768, 7237,-32768, 1146,-32768,-32768,
+ 629,-32768, 656,-32768,-32768, 656, 8982, 8982, 6573,-32768,
+-32768,-32768, 765, 6663, 6663,-32768,-32768, 6483,-32768, 9521,
+ 9521,-32768, 831, 831, 6483, 6483, 801, 1102, 8729,-32768,
+-32768,-32768,-32768, 6483,-32768,-32768,-32768,-32768, 8124,-32768,
+-32768,-32768,-32768,-32768,-32768, 5674,-32768,-32768, 1109, 234,
+ 3239, 9567, 7237,-32768,-32768, 5168, 48,-32768,-32768, 1149,
+-32768, 1150,-32768,-32768,-32768, 1160, 1163,-32768,-32768,-32768,
+-32768, 282, 1123,-32768, 1127, 765, 7327, 518, 295, 5272,
+-32768, 572,-32768,-32768, 296,-32768, 5376,-32768, 1214, 1168,
+-32768,-32768, 6483, 6483, 8381,-32768,-32768,-32768,-32768, 37,
+-32768,-32768,-32768, 8381, 1176,-32768, 1177,-32768, 765, 656,
+ 7237,-32768,-32768,-32768, 1147, 201, 1181,-32768,-32768, 6753,
+ 6753,-32768,-32768, 1143,-32768, 5764, 1148,-32768,-32768, 831,
+-32768, 1158, 8381, 1214, 1183, 1214, 1151, 1152,-32768, 317,
+ 5480,-32768, 1198,-32768, 1156, 246,-32768,-32768,-32768,-32768,
+-32768,-32768,-32768, 1153,-32768, 1254, 1208, 7327, 7327, 6483,
+ 1355, 765,-32768, 353,-32768,-32768,-32768,-32768, 1167, 1170,
+-32768, 1271, 1219,-32768,-32768,-32768,-32768, 1281, 1282,-32768
};
static const short yypgoto[] = {-32768,
- 1191,-32768,-32768, 986, 7, 1310,-32768,-32768,-32768,-32768,
--32768,-32768,-32768, 507,-32768,-32768,-32768,-32768,-32768,-32768,
--32768, -770, 1196, 1207,-32768,-32768,-32768,-32768, 1201,-32768,
--32768, 496, 135,-32768,-32768,-32768, 2838, -25,-32768, 1221,
- 888, -999,-32768, -88, 178,-32768, 895,-32768, 169, 139,
- -1101,-32768, -524, 1474, -99, 619,-32768,-32768, -714, 3947,
- 43, -240, 2252, 2872, 825, 1176, 432,-32768,-32768,-32768,
--32768, -273,-32768, -116, -94,-32768, 266, 17, -276, 132,
- 75, -106, -109, -3, 1594, 27, 1371, -118, -752, 364,
--32768, -82,-32768,-32768, 265,-32768,-32768,-32768,-32768,-32768,
- 327,-32768, 677,-32768, 155,-32768,-32768, 730, 769, 74,
--32768,-32768,-32768, 560, -272, 13, 1335, 1336,-32768,-32768,
--32768,-32768,-32768, -141,-32768, 500, 716,-32768, 559, 418,
- 497, -414,-32768,-32768,-32768,-32768,-32768,-32768, 960,-32768,
- 501, 835, 582, 889, 2241, 1820, -368,-32768, 3695, -55,
- 10,-32768, 4252, -90, 717,-32768, 3290,-32768,-32768, 3834,
- -4, 245, -328, 1372, 3416, 871, -214,-32768, 4134,-32768,
- -1157, -942, -343, 117,-32768, 553, -97, -122,-32768,-32768,
--32768, -1137, -860, -1112,-32768,-32768,-32768,-32768,-32768,-32768,
+ 1165,-32768,-32768, 958, 7, 1283,-32768,-32768,-32768,-32768,
+-32768,-32768,-32768, 486,-32768,-32768,-32768,-32768,-32768,-32768,
+-32768, -773, 1169, 1174,-32768,-32768,-32768,-32768, 1166,-32768,
+-32768, 478, 126,-32768,-32768,-32768, 4325, -30,-32768, 1204,
+ 844, -998,-32768, -96, 162,-32768, 171,-32768, 153, 124,
+ -980,-32768, -480, 242, 564, 630,-32768,-32768, -722, 3685,
+ 1316, -262, 2309, 2833, 804, 159, 431,-32768,-32768,-32768,
+-32768, -278,-32768, -110, -90,-32768, 233, 34, -210, 83,
+ 11, -91, -121, -3, 1446, -82, 1348, -127, -674, 329,
+-32768, -186,-32768,-32768, 180,-32768,-32768,-32768,-32768,-32768,
+ 1092,-32768, 634,-32768, 122,-32768,-32768, 821, 742, 14,
+-32768,-32768,-32768, 526, -285, 12, 1299, 1300,-32768,-32768,
+-32768,-32768,-32768, -131,-32768, 473, 686,-32768, 533, 394,
+ 469, -411,-32768,-32768,-32768,-32768,-32768,-32768, 939,-32768,
+ 482, 829, 573, 857, 1683, 1544, -371,-32768, 1375, 0,
+ 1,-32768, 4129, -99, 646,-32768, 3274,-32768,-32768, 3935,
+ -4, 198, -327, 1336, 3574, 852, -188,-32768, 1912,-32768,
+ -1147, -942, -321, 101,-32768, 539, -106, -94,-32768,-32768,
+-32768, -1132, -932, -1108,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768, -37,-32768,-32768,-32768,-32768,
--32768, -425, 86,-32768, 90,-32768, -354, -133,-32768,-32768,
- -293, 1052, -286,-32768,-32768, 40, 530,-32768, 57,-32768,
+-32768,-32768,-32768,-32768,-32768, -43,-32768,-32768,-32768,-32768,
+-32768, -421, 70,-32768, 69,-32768, -369, -132,-32768,-32768,
+ -258, 1015, -247,-32768,-32768, 60, 500,-32768, 127,-32768,
-260
};
-#define YYLAST 9897
+#define YYLAST 9739
static const short yytable[] = { 66,
- 46, 323, 525, 368, 677, 600, 557, 85, 351, 351,
- 30, 533, 590, 559, 195, 85, 96, 315, 318, 103,
- 103, 84, 103, 642, 536, 468, 179, 556, 66, 123,
- 362, 291, 97, 232, 352, 347, 640, 359, 921, 150,
- 412, 66, 195, 403, 404, 395, 353, 85, 1218, 960,
- 1113, 1234, 1150, 8, 85, 505, -124, 834, 834, 505,
- 143, 84, 505, -1, 1256, 196, 85, 1225, 75, 78,
- 310, 345, 85, 96, 1263, 128, 557, 872, 44, -2,
- 603, 655, 85, 559, 7, 8, 76, 513, 525, 287,
- 150, 85, 77, 85, 95, 674, 103, 302, 342, 308,
- 103, 189, 93, 103, 103, 103, 426, 122, 674, 618,
- 1265, 301, 343, 1251, 1275, 66, 46, 150, 66, 311,
- -473, 165, 19, -473, 429, 604, 835, 1301, 100, 100,
- 605, 697, 1114, 363, 22, 150, 150, 150, 331, 1117,
- 1278, 1095, 344, 348, 1317, 1057, 82, 1305, 566, 781,
- 1150, 286, 1266, 88, 619, 1038, 190, 784, 427, 620,
- 560, 150, 675, 606, 26, 339, 698, 100, -473, 513,
- 966, -473, 713, -473, 89, 1157, 21, 93, 93, 66,
- 417, 396, 387, -473, 100, 73, 176, 427, 1073, 103,
- 514, 8, 621, 362, 44, 425, 349, 401, 538, 429,
- 515, -473, -473, 529, 1054, -700, -473, 277, 90, 136,
- 516, -700, 423, 517, 518, -473, 93, 8, 967, 295,
- 297, 1278, 1278, 351, 351, 599, 85, 436, 165, 195,
- 277, 21, 74, 93, 502, 165, 165, 1104, 190, 1110,
- 93, 312, 75, 188, 595, 758, 1178, 530, 597, 598,
- 596, 582, 8, 137, 138, 759, 581, 368, 416, 165,
- 76, 533, 190, 362, 78, 310, 93, 85, 361, 760,
- 100, 512, 513, 436, 436, 527, 403, 404, 99, 329,
- 768, 150, 188, -230, 362, 100, 644, 770, 427, 315,
- 318, 639, 583, 900, 455, 85, 363, 456, 390, 21,
- 457, 584, 537, 165, 404, 603, 465, 678, 875, 103,
- 193, 1230, 103, 1113, 311, 504, 697, 103, 646, 93,
- 1113, 85, 96, 824, 769, 655, 330, -230, -230, 193,
- 1310, 771, 21, 75, 93, 884, 585, 712, 97, 695,
- 1153, -224, 391, 392, 1080, 425, 434, 193, 166, 167,
- 604, 76, 165, -696, 679, 605, 435, 150, 66, 150,
- 150, 527, 1080, 7, 100, 66, 363, 825, 1260, 1203,
- 570, 150, 1311, 150, 1113, 150, 150, 150, 610, 118,
- 614, 616, 885, 150, -231, 454, 119, 363, 606, 150,
- 461, 1081, 150, 425, 193, 1114, 747, -103, 749, 750,
- 95, 19, 1114, 1024, 1025, 85, 99, 425, 133, 1188,
- 362, 150, 66, 22, 66, 417, 1204, 362, 134, 85,
- 945, 160, 161, 1271, 1332, 1080, 1307, 12, -231, -231,
- 799, 554, 664, 943, 1080, 190, 7, 506, 165, 507,
- 193, 19, -225, 26, 647, 85, 85, 85, 85, 183,
- 17, 21, 1080, 22, 7, 8, 1114, 288, 113, 513,
- 1026, 680, 502, 826, 1348, 140, 1333, 290, 165, 165,
- 1272, 75, 1282, 351, 19, 141, 463, 7, 8, 828,
- -102, 1288, 1186, 26, -224, 821, 22, 815, 142, 76,
- 703, 464, 19, 416, 590, 85, 165, 436, 833, 1327,
- 657, 554, 362, 697, 22, 1214, 658, 827, 362, 436,
- 436, 1349, 527, 363, 557, 19, 508, 754, 188, 66,
- 363, 559, 361, 829, 533, 403, 429, 22, 193, 368,
- 179, 755, 463, 787, 26, 556, 320, 536, 655, 113,
- 113, 113, 78, 79, 168, 169, 170, 561, 324, 1215,
- 150, 85, 193, 468, 321, 681, 362, 26, 78, 79,
- 1062, 756, 1053, -287, 865, 84, 298, 299, 886, -287,
- 1279, 616, 696, 113, 171, 699, 425, 788, 789, 235,
- 705, 706, 707, 708, 709, 78, 310, 1135, 1136, 1137,
- 21, 187, 80, 172, 277, 127, -508, 883, 722, -225,
- 719, 188, 150, 150, 847, 363, 21, 754, 80, 81,
- 847, 363, 188, -700, 1280, -700, -700, 7, 506, 340,
- 677, 755, -700, 388, 389, 75, 150, 150, 165, 150,
- 751, 1097, 128, 1088, 1083, 311, 373, 173, 174, 175,
- 99, 385, 302, 76, -700, -700, -700, 698, -700, 85,
- -700, 756, 636, 425, 368, 19, 923, 100, 847, 363,
- 808, 645, 241, -700, -288, -700, -700, 22, 410, 934,
- -288, 935, -700, 100, 75, 809, 21, 436, 160, 161,
- 193, 362, 188, 1129, 12, 362, 425, 436, 436, 436,
- 811, 424, 76, 430, -700, -700, 386, 26, -700, 432,
- -700, 362, 188, 876, 21, 433, 93, 17, 878, 879,
- 1058, 1059, 881, 1061, 439, 698, -27, 165, 434, -27,
- 21, 431, 93, 397, 398, 963, 719, 964, 435, 965,
- 571, -27, 188, 333, 758, 334, 13, 14, 362, 335,
- 1159, 1160, 195, 115, 759, 362, 446, 85, 890, 891,
- 892, 447, 315, 318, 1176, 165, 193, 450, 760, 315,
- 318, 572, 449, 573, 451, 574, 452, 575, 436, 453,
- 436, 193, 13, 14, 1190, 1191, 336, 85, 337, 13,
- 14, 436, 338, 85, 363, 66, 66, 66, 363, 505,
- 489, 490, 542, 949, 361, 1032, 1033, 545, 1033, 1078,
- 1079, -81, 550, 85, 363, 85, 930, -81, -80, 1342,
- 1343, 113, 113, 113, -80, 531, 8, 388, 1180, 7,
- 8, 1222, 544, 11, 115, 115, 115, 547, 407, 548,
- 408, 567, 455, 456, 409, 549, 150, 150, 150, 150,
- 847, 363, 397, 1181, 150, 847, 847, 847, 363, 241,
- 532, 388, 1187, 19, 442, 445, 349, 19, 115, 564,
- 513, 427, 85, 21, -695, 93, 601, 21, 602, 22,
- 1313, 1314, 150, 617, 70, 103, 626, 66, 417, 85,
- 627, 607, 87, 920, 425, 425, 633, 425, 491, 685,
- 98, 608, 455, 456, 104, 104, 641, 104, 686, 26,
- 690, 516, 691, 70, 609, 518, 710, 820, 8, 648,
- 711, 713, 1021, 722, 104, 766, 70, 767, 780, 361,
- 436, 436, 87, 436, 782, 492, 493, 784, 801, 98,
- 494, 495, 496, 497, 800, 649, 810, 455, 456, 554,
- 650, 98, 8, 868, 812, -228, 814, 98, 816, 698,
- 832, 817, 818, 66, 417, 21, 416, 93, 819, 857,
- 823, 859, 860, 1162, 861, 104, 98, 862, 968, 649,
- 866, 104, 864, 1063, 869, 104, 863, 867, 104, 104,
- 104, 871, 292, 296, 877, 150, 66, 150, 880, 21,
- 70, 93, 104, 70, 13, 14, 882, 1017, 399, 150,
- 150, -332, 150, 887, 888, 893, 1103, 904, 1109, 894,
- 104, 104, 104, 905, 898, 681, 899, 906, 901, 902,
- -700, 903, -700, -700, -332, -332, 907, -332, 461, -700,
- 66, 417, 416, 908, -101, 910, 104, 159, 160, 161,
- 113, 911, 913, 557, 12, 1048, 113, 914, 1199, 1200,
- 1346, -700, -700, 400, 70, -700, 915, -700, 916, 918,
- 1233, 917, 919, 932, 104, 165, 1162, 17, 929, 1131,
- 1132, 931, 594, 933, 402, 160, 161, 940, 938, 939,
- 947, 12, 834, 100, 953, 948, 11, 944, 1010, 188,
- 950, 193, 315, 318, 113, 961, 115, 115, 115, 646,
- 1048, 98, 104, 847, 17, 1249, 1008, 1023, 1014, 416,
- 1039, 1041, 8, 92, 10, 11, 1042, 1096, 356, 1043,
- 12, 1044, 1050, 513, 486, 487, 488, 489, 490, 1162,
- 21, 1060, 93, 1064, 1082, 15, 1055, 425, 425, 16,
- 1056, 959, 98, 17, 514, 1065, 1182, 1066, 104, 104,
- 70, 1069, 1087, 459, 515, 535, 104, 659, 660, 21,
- 1068, 93, 1162, 1070, 516, 1071, 1195, 517, 518, 1074,
- 98, 1300, 1075, 1138, 1076, 1090, 1091, 1092, 847, 847,
- 847, 1099, 1098, 1115, 104, 425, 1101, 104, 425, 1122,
- 1123, 1015, 104, 193, 1124, 19, 98, 1128, 661, 1149,
- 1022, 357, 112, 1306, 1154, 21, 1155, 22, 1173, 1036,
- 1169, 98, 1158, 1175, 662, 1347, 1201, 1177, 1202, 140,
- 1205, 1206, 150, 1213, 1219, 455, 456, 1207, 1208, 141,
- 362, 1269, 104, 70, 104, 104, 70, 26, 1209, 1220,
- 70, 1221, 663, 1258, 1223, 1231, 104, 1247, 104, 1257,
- 104, 104, 104, 1267, 1268, 1273, 1291, 1270, 104, 1295,
- 1304, 1274, 7, 8, 104, 1309, 185, 104, 1080, 628,
- 1312, 1320, 1315, 1318, 113, 113, 113, 1323, 1325, 1339,
- 98, 113, 113, 113, 316, 319, 104, 70, 1326, 70,
- 1329, 1341, 425, 1331, 98, 1337, 1350, 1286, 1351, 165,
- 19, 7, 100, 513, 1352, 11, 1353, 1355, 1356, 325,
- 21, 5, 22, 569, 955, 327, 461, 112, 962, 306,
- 98, 98, 98, 98, 607, 115, 328, 1212, 1217, 1238,
- 346, 115, 85, 363, 608, 459, 772, 1138, 459, 19,
- 700, 702, 26, 704, 516, 1125, 1126, 609, 518, 21,
- 714, 22, 1168, 100, 1106, 858, 185, 1246, 1133, 1134,
- 831, 459, 954, 24, 889, 726, 1018, 124, 125, 870,
- 98, 958, 104, 25, 48, 1072, 672, 803, 1035, 115,
- 1034, 26, 952, 86, 104, 104, 27, 70, 753, 1003,
- 48, 748, 1302, 513, 798, 1322, 8, 765, 10, 11,
- 21, 1324, 93, 48, 12, 535, 484, 485, 486, 487,
- 488, 489, 490, 1037, 514, 0, 155, -232, 0, 15,
- 0, 624, 0, 16, 515, 104, 87, 17, 0, 186,
- 0, 0, -232, -232, 516, 0, 0, 517, 518, -232,
- 0, 230, 0, 21, 0, 93, 279, 48, 0, 0,
- 0, -232, 0, 0, 0, 0, 1198, 0, 279, 279,
- 0, 0, -232, -232, 0, -232, 155, -232, 554, 279,
- 0, 0, 0, 0, 0, 0, 0, 104, 104, 70,
- 752, 0, 0, 0, 922, 798, 0, 0, 0, 8,
- 48, 10, 185, 155, 0, -232, -232, 12, 0, -232,
- -232, 104, 104, 0, 104, 0, 0, 365, 0, -232,
- 0, 0, 15, 0, 0, 0, 16, 0, 0, 0,
- 17, 0, 1240, 1241, 98, 1242, 1243, 0, 0, 0,
- 0, 0, 0, 70, 0, 0, 21, 0, 93, 113,
- 0, 957, 0, 0, 413, 0, 7, 8, 92, 10,
- 11, 0, 104, 0, 48, 12, 316, 319, 0, 115,
- 115, 115, 104, 104, 104, 0, 115, 115, 115, 0,
- 15, 0, 0, 0, 16, 0, 0, 0, 17, -425,
- 0, 0, 0, 0, 19, 0, 1009, 0, 0, 0,
- 0, 0, 0, 0, 21, 0, 22, 0, 0, 676,
- 0, 186, 0, 414, 100, 0, 160, 161, 24, 0,
- 358, 0, 12, 0, 113, 113, 113, 0, 25, 0,
- 0, 0, 98, 0, 0, 0, 26, 0, 0, 279,
- 0, 27, 1319, 0, 0, 17, 0, 0, 0, 1046,
- 1049, 0, 230, 104, 513, 104, -425, 0, 0, 0,
- 186, 21, 98, 93, 927, 0, 104, 0, 98, 0,
- 798, 798, 798, 0, 229, 514, 0, 0, 535, 278,
- 555, 0, 0, 0, 0, 515, 0, 0, 98, 0,
- 98, 278, 278, 0, 0, 516, 459, 0, 524, 518,
- 0, 0, 278, 98, 0, 1049, 48, 0, 0, 796,
- 0, 0, 0, 7, 8, 0, 0, 0, 0, 0,
- 0, 104, 104, 104, 104, 70, 0, 0, 0, 104,
- 798, 798, 798, 0, 0, 0, 0, 0, 0, 0,
- 364, 100, 0, 155, 427, 0, 186, 98, 0, 0,
- 555, 19, 0, 0, 0, 0, 459, 104, 0, 0,
- 104, 21, 70, 22, 98, 0, 139, 0, 0, 0,
- 1016, 365, 0, 0, 0, 140, 0, 0, 0, 1142,
- 0, 513, 0, 0, 1147, 141, 0, 0, 21, 0,
- 93, 0, 0, 26, 112, 0, 0, 155, 142, 48,
- 854, 459, 514, 0, 682, 104, 104, 0, 104, 0,
- 0, 0, 515, 0, 0, 0, 0, 0, 0, 0,
- 0, 279, 516, 0, 279, 517, 518, 358, 0, 279,
- 682, 682, 682, 682, 115, 0, 0, 0, 70, 0,
- 0, 0, 8, 279, 10, 11, 0, 279, 112, 0,
- 12, 0, 0, 101, 105, 0, 0, 0, 0, 1192,
- 1193, 0, 278, 0, 0, 15, 0, 0, 0, 16,
- 104, 70, 104, 17, 358, 229, 0, 0, 0, 279,
- 230, 0, 796, 0, 104, 104, 1094, 104, 1211, 21,
- 0, 93, 498, 0, 0, 0, 0, 555, 0, 0,
- 231, 0, 0, 364, 365, 280, 0, 0, 0, 115,
- 115, 115, 0, 7, 100, 70, 0, 280, 280, 0,
- 0, 0, 358, 0, 0, 0, 499, 0, 280, 0,
- 7, 8, 0, 1239, 11, 0, 0, 314, 317, 0,
- 1244, 1245, 0, 0, 0, 1143, 1144, 1145, 1146, 1250,
- 0, 19, 0, 0, 0, 0, 0, 1152, 0, 0,
- 0, 21, 0, 22, 0, 0, 366, 0, 19, 376,
- 378, 513, 0, 364, 0, 108, 316, 946, 21, 358,
- 22, 358, 358, 0, 0, 109, 0, 0, 798, 555,
- 0, 1167, 843, 26, 364, 365, 0, 0, 110, 1174,
- 0, 0, 844, 0, 0, 0, 0, 358, 1298, 1299,
- 26, 0, 516, 358, 0, 845, 518, 482, 483, 484,
- 485, 486, 487, 488, 489, 490, 0, 278, 0, 316,
- 319, 0, 0, 0, 0, 0, 316, 319, 0, 0,
- 0, 0, 0, 555, 278, 0, 0, 278, 0, 0,
- 0, 0, 278, 278, 278, 278, 278, 0, 0, 0,
- 0, 0, 0, 798, 798, 798, 278, 0, 358, 0,
- 278, 0, 0, 1224, 413, 1344, 7, 8, 92, 10,
- 11, 316, 946, 0, 0, 12, 0, 0, 280, 459,
- 0, 0, 0, 0, 1224, 1224, 0, 0, 358, 0,
- 15, 231, 278, 229, 16, 0, 0, 104, 17, -424,
- 0, 0, 0, 0, 19, 0, 0, 0, 0, 1224,
- 364, 0, 0, 0, 21, 0, 22, 364, 0, 366,
- 0, 0, 682, 414, 0, 0, 924, 0, 24, 0,
- 0, 6, 0, 7, 8, 9, 10, 11, 25, 0,
- 0, 0, 12, 0, 0, 8, 26, 10, 11, 0,
- 0, 27, 682, 12, 0, 13, 14, 15, 555, 0,
- 0, 16, 365, 0, 0, 17, -424, 0, 15, 18,
- 358, 19, 16, 0, 1303, 20, 17, 0, 555, 0,
- 956, 21, 0, 22, 0, 0, 23, 0, 0, 366,
- 726, 726, 21, 0, 93, 24, 0, 0, 0, 631,
- 632, 0, 364, 1321, 0, 25, 992, 98, 364, 0,
- 366, 0, 0, 26, 0, 555, 0, 0, 27, 0,
- 0, 0, 365, 0, 28, 29, 0, 7, 100, 358,
- 0, 185, 0, 0, 0, 0, 279, 0, 0, 0,
- 0, 0, 358, 280, 358, 0, 0, 0, 0, 0,
- 0, 0, 48, 0, 682, 0, 364, 0, 0, 0,
- 280, 0, 0, 280, 0, 19, 0, 279, 280, 280,
- 280, 280, 280, 0, 0, 21, 0, 22, 0, 0,
- 0, 0, 280, 854, 0, 0, 280, 0, 0, 24,
- 413, 0, 7, 8, 92, 10, 11, 0, 358, 25,
- 358, 12, 358, 0, 0, 0, 0, 26, 0, 194,
- 0, 0, 27, 0, 0, 0, 15, 0, 280, 231,
- 16, 0, 0, 0, 17, -427, 0, 269, 48, 0,
- 19, 0, 0, 773, 775, 0, 366, 0, 0, 0,
- 21, 0, 22, 366, 0, 278, 0, 0, 0, 414,
- 269, 0, 0, 0, 24, 0, 0, 322, 0, 316,
- 319, 155, 0, 992, 25, 0, 0, 0, 0, 0,
- 992, 0, 26, 0, 0, 278, 354, 27, 0, 0,
- 0, 364, 0, 0, 0, 364, 0, 0, 360, 0,
- 0, 394, -427, 0, 0, 0, 0, 0, 0, 0,
- 0, 364, 0, 0, 0, 48, 413, 0, 7, 8,
- 92, 10, 11, 0, 7, 8, 0, 12, 427, 0,
- 0, 0, 0, 0, 0, 0, 841, 842, 366, 0,
- 0, 0, 15, 0, 366, 0, 16, 0, 364, 0,
- 17, -426, 0, 0, 0, 364, 19, 0, 0, 0,
- 0, 0, 19, 0, 0, 513, 21, 992, 22, 278,
- 0, 676, 21, 0, 22, 414, 0, 0, 7, 8,
- 24, 0, 0, 0, 0, 0, 607, 278, 0, 0,
- 25, 0, 366, 0, 0, 0, 608, 0, 26, 0,
- 278, 0, 0, 27, 26, 0, 516, 0, 0, 609,
- 518, 0, 8, 92, 10, 11, 19, 0, -426, 513,
- 12, 462, 0, 0, 0, 0, 21, 0, 22, 0,
- 0, 0, 0, 0, 0, 15, 0, 0, 0, 16,
- 607, 992, 6, 17, 7, 8, 9, 10, 11, 1226,
- 608, 0, 992, 12, 0, 0, 0, 0, 26, 21,
- 516, 93, 0, 609, 518, 279, 0, 0, 15, 0,
- 1226, 1226, 16, 0, 0, 0, 17, 7, 8, 0,
- 0, 280, 19, 0, 0, 0, 326, 0, 0, 0,
- 0, 358, 21, 0, 22, 1226, 0, 23, 0, 0,
- 0, 0, 992, 0, 593, 360, 24, 0, 0, 992,
- 0, 280, 992, 0, 0, 19, 25, 366, 0, 773,
- 775, 366, 0, 0, 26, 21, 0, 22, 0, 27,
- 1102, 0, 0, 992, 634, 28, 992, 366, 0, 140,
- 637, 0, 0, 992, 0, 0, 0, 0, 0, 141,
- 0, 0, 360, 0, 0, 0, 0, 26, 0, 0,
- 0, 0, 142, 8, 92, 10, 11, 992, 0, 0,
- 0, 12, 1004, 1005, 366, 656, 0, 0, 0, 1004,
- 1005, 366, 992, 0, 692, 693, 15, 694, 358, 0,
- 16, 0, 0, 0, 17, 280, 0, 992, 0, 0,
- 360, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 21, 0, 93, 280, 992, 992, 0, 555, 7, 100,
- 0, 0, 11, 0, 269, 0, 280, 593, 94, 0,
- 723, 724, 0, 728, 729, 730, 731, 732, 733, 734,
- 735, 736, 737, 738, 739, 740, 741, 742, 743, 744,
- 745, 746, 0, 0, 358, 0, 19, 360, 0, 360,
- 360, 0, 0, 0, 0, 0, 21, 0, 22, 0,
- 785, 786, 229, 0, 8, 785, 10, 0, 0, 0,
- 108, 0, 12, 0, 0, 360, 0, 0, 278, 0,
- 109, 360, 0, 229, 229, 0, 0, 15, 26, 0,
- 0, 16, 0, 110, 0, 17, 805, 807, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 229, 0,
- 0, 21, 0, 93, 0, 0, 0, 0, 0, 0,
- 7, 8, 92, 10, 11, 0, 0, 356, 0, 12,
- 0, 7, 8, 152, 10, 153, 360, 0, 0, 0,
- 12, 839, 840, 593, 15, 0, 0, 0, 16, 83,
- 0, 849, 17, 0, 0, 15, 0, 856, 19, 16,
- 0, 83, 83, 17, 83, 0, 360, 0, 21, 19,
- 22, 0, 0, 0, 0, 42, 0, 593, 0, 21,
- 0, 22, 380, 0, 154, 0, 0, 0, 0, 178,
- 0, 0, 381, 24, 0, 42, 42, 0, 111, 0,
- 26, 873, 0, 25, 42, 382, 0, 0, 0, 0,
- 357, 26, 0, 874, 0, 42, 27, 42, 0, 0,
- 7, 8, 159, 160, 161, 0, 0, 0, 0, 12,
- 364, 0, 0, 0, 0, 0, 0, 191, 83, 0,
- 83, 83, 83, 0, 0, 83, 83, 83, 360, 0,
- 0, 0, 17, 0, 0, 0, 0, 0, 19, 0,
- 0, 513, 0, 0, 0, 0, 42, 0, 21, 909,
- 22, 0, 42, 0, 191, 0, 42, 0, 0, 111,
- 111, 111, 140, 0, 0, 0, 0, 0, 231, 0,
- 0, 42, 141, 42, 42, 0, 0, 0, 925, 926,
- 26, 928, 631, 632, 280, 1108, 593, 360, 0, 231,
- 231, 42, 42, 111, 0, 0, 0, 0, 0, 0,
- 360, 191, 360, 0, 0, 0, 0, 942, 0, 0,
- 0, 83, 0, 0, 231, 0, 0, 42, 0, 0,
- 0, 0, 0, 0, 0, 7, 8, 159, 160, 161,
- 0, 951, 0, 0, 12, 42, 0, 0, 0, 0,
- 0, 0, 0, 593, 0, 42, 0, 0, 0, 83,
- 0, 0, 0, 0, 0, 0, 360, 17, 360, 0,
- 360, 0, 0, 19, 0, 0, 513, 0, 1007, 100,
- 0, 160, 161, 21, 0, 22, 0, 12, 0, 0,
- 1011, 1012, 1013, 0, 0, 0, 0, 607, 593, 0,
- 0, 0, 0, 83, 0, 83, 83, 608, 0, 0,
- 17, 0, 1019, 1020, 0, 26, 0, 516, 0, 513,
- 615, 518, 0, 0, 0, 0, 21, 121, 93, 7,
- 8, 92, 10, 11, 0, 83, 0, 509, 12, 0,
- 514, 83, 0, 0, 83, 191, 366, 42, 0, 83,
- 515, 593, 593, 15, 0, 1051, 0, 16, 0, 0,
- 516, 17, 0, 517, 518, 0, 0, 19, 0, 1067,
- 0, 0, 0, 0, 0, 42, 0, 21, 42, 22,
- 0, 0, 0, 42, 7, 8, 152, 10, 153, 0,
- 0, 24, 0, 12, 0, 0, 0, 0, 0, 0,
- 0, 25, 0, 0, 0, 0, 0, 593, 15, 26,
- 0, 0, 16, 0, 27, 0, 17, 0, 0, 1089,
- 0, 0, 19, 42, 42, 42, 42, 0, 0, 0,
- 0, 42, 21, 0, 22, 0, 0, 42, 0, 42,
- 0, 111, 111, 111, 0, 0, 24, 7, 8, 42,
- 0, 11, 0, 1127, 0, 42, 25, 0, 42, 0,
- 0, 0, 0, 83, 26, 0, 0, 1130, 0, 27,
- 0, 0, 0, 0, 0, 0, 0, 42, 42, 0,
- 42, 593, 0, 64, 0, 19, 593, 0, 1148, 0,
- 0, 8, 152, 10, 153, 21, 0, 22, 1156, 12,
- 0, 0, 0, 64, 64, 0, 116, 0, 0, 140,
- 0, 0, 64, 0, 15, 0, 0, 0, 16, 141,
- 0, 0, 17, 64, 0, 64, 0, 26, 0, 83,
- 0, 0, 142, 0, 0, 0, 0, 0, 21, 83,
- 93, 83, 83, 7, 8, 92, 10, 11, 0, 360,
- 622, 0, 12, 0, 0, 0, 0, 0, 0, 0,
- 0, 593, 593, 0, 0, 0, 0, 15, 0, 1196,
- 1197, 16, 0, 509, 64, 17, 0, 0, 0, 0,
- 64, 19, 0, 178, 64, 795, 0, 116, 116, 116,
- 593, 21, 0, 22, 0, 0, 0, 0, 0, 64,
- 0, 64, 64, 0, 0, 24, 8, 92, 10, 11,
- 0, 1228, 1345, 0, 12, 25, 42, 0, 0, 64,
- 64, 116, 0, 26, 0, 0, 0, 0, 27, 15,
- 0, 0, 117, 16, 0, 593, 0, 17, 0, 0,
- 0, 0, 593, 593, 0, 64, 360, 0, 0, 151,
- 0, 593, 0, 21, 0, 93, -306, 8, -306, 10,
- 185, 0, 0, 64, 0, 12, 0, 0, 42, 42,
- 111, 0, 0, 64, 0, 0, 853, 0, 0, 0,
- 15, 0, 0, 0, 16, 0, 0, 0, 17, 0,
- 0, 0, 42, 42, -306, 42, 0, 513, 0, 0,
- 151, 0, 0, 0, 21, 0, 93, 0, 0, 83,
- 593, 593, 360, 117, 117, 117, 0, 0, 514, 83,
- 83, 83, 0, 0, 111, 0, 0, 151, 515, 0,
- 0, 0, 0, 0, 0, 0, -306, 0, 516, 0,
- 0, 517, 518, 0, 0, 151, 151, 384, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 795, 0,
- 1024, 100, 0, 0, 534, 64, 0, 0, 0, 0,
- 0, 151, 0, 0, 0, 0, 0, 593, 0, 0,
- 0, 0, 0, 0, 0, 0, 7, 8, 159, 160,
- 161, 0, 0, 64, 0, 12, 64, 0, 19, 0,
- 83, 64, 83, 0, 0, 0, 0, 0, 21, 0,
- 22, 0, 0, 83, 0, 0, 0, 1026, 17, 0,
- 589, 0, 24, 0, 19, 0, 0, 513, 0, 0,
- 0, 0, 25, 0, 21, 0, 22, 437, 0, 0,
- 26, 64, 64, 64, 64, 27, 0, 0, 607, 64,
- 0, 795, 795, 795, 0, 64, 0, 64, 608, 116,
- 116, 116, 0, 0, 0, 0, 26, 64, 516, 0,
- 0, 609, 518, 64, 0, 0, 64, 0, 0, 0,
- 0, 0, 0, 521, 521, 521, 0, 0, 0, 0,
- 0, 151, 0, 0, 0, 64, 64, 0, 64, 0,
- 0, 0, 42, 42, 111, 111, 111, 83, 191, 0,
- 42, 853, 853, 853, 0, 0, 659, 8, 152, 10,
- 153, 0, 0, 0, 0, 12, 479, 480, 481, 482,
- 483, 484, 485, 486, 487, 488, 489, 490, 42, 0,
- 15, 42, 0, 42, 16, 0, 0, 0, 17, 0,
- 0, 0, 83, 83, 19, 83, 795, 795, 795, 0,
- 0, 0, 0, 0, 21, 0, 22, 611, 0, 611,
- 611, 521, 0, 662, 0, 0, 0, 0, 24, 0,
- 0, 151, 0, 151, 0, 384, 384, 384, 25, 8,
- 92, 10, 11, 151, 0, 356, 26, 12, 0, 151,
- 0, 27, 151, 797, 0, 0, 0, 0, 0, 0,
- 191, 0, 15, 0, 0, 0, 16, 0, 0, 42,
- 17, 151, 0, 0, 377, 379, 383, 0, 0, 513,
- 0, 0, 0, 0, 64, 0, 21, 0, 93, 0,
- 0, 0, 0, 7, 100, 0, 0, 427, 0, 0,
- 514, 42, 42, 42, 7, 8, 0, 0, 185, 0,
- 515, 0, 0, 0, 0, 42, 42, 149, 42, 0,
- 516, 0, 0, 517, 518, 0, 0, 0, 357, 0,
- 0, 19, 0, 0, 0, 0, 64, 64, 116, 192,
- 0, 21, 19, 22, 855, 0, 42, 0, 0, 0,
- 0, 0, 21, 0, 22, 24, 0, 761, 192, 0,
- 64, 64, 0, 64, 0, 25, 140, 0, 149, 521,
- 521, 0, 521, 26, 0, 0, 141, 0, 27, 521,
- 0, 0, 0, 0, 26, 0, 0, 0, 0, 142,
- 0, 0, 116, 0, 0, 149, 0, 0, 0, 0,
- 0, 0, 0, 7, 8, 0, 10, 440, 234, 235,
- 611, 236, 12, 149, 149, 149, 0, 0, 0, 853,
- 0, 0, 0, 393, 0, 0, 797, 15, 237, 238,
- 239, 16, 0, 240, 0, 17, 0, 241, 242, 149,
- 243, 19, 244, 245, 0, 0, 246, 247, 248, 249,
- 250, 21, 0, 22, 0, 0, 0, 0, 0, 0,
- 0, 0, 611, 611, 848, 0, 0, 0, 0, 192,
- 848, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 256, 257, 258, 7, 8, 151, 151, 259, 151,
- 0, 0, 260, 0, 853, 853, 853, 0, 0, 0,
- 0, 0, 0, 0, 261, 0, 0, 0, 0, 0,
- 629, 0, 630, 0, 377, 379, 383, 0, 384, 797,
- 797, 797, 19, 0, 0, 0, 0, 534, 643, 0,
- 0, 0, 21, 0, 22, 0, 0, 521, 42, 0,
- 0, 0, 0, 0, 0, 0, 140, 437, 437, 437,
- 669, 0, 589, 0, 0, 0, 141, 192, 0, 149,
- 0, 0, 0, 0, 26, 0, 0, 0, 0, 142,
- 64, 64, 116, 116, 116, 0, 0, 0, 64, 855,
- 855, 855, 0, 0, 0, 0, 0, 8, 0, 10,
- 185, 0, 0, 0, 0, 12, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 64, 0, 0, 64,
- 15, 64, 0, 0, 16, 0, 0, 0, 17, 0,
- 0, 0, 0, 0, 797, 797, 797, 513, 521, 0,
- 521, 0, 0, 0, 21, 149, 93, 149, 149, 0,
- 0, 521, 0, 0, 0, 521, 521, 521, 514, 149,
- 0, 149, 0, 149, 149, 149, 0, 0, 515, 0,
- 0, 149, 0, 0, 519, 519, 519, 149, 516, 0,
- 149, 517, 518, 477, 478, 479, 480, 481, 482, 483,
- 484, 485, 486, 487, 488, 489, 490, 64, 0, 149,
- 0, 0, 0, 0, 0, 62, 611, 611, 848, 848,
- 848, 0, 0, 0, 611, 848, 848, 848, 0, 0,
- 0, 0, 0, 0, 0, 102, 106, 0, 0, 64,
- 64, 64, 7, 8, 126, 0, 11, 0, 0, 0,
- 0, 0, 151, 64, 64, 0, 64, 158, 0, 0,
- 0, 377, 379, 383, 0, 0, 0, 0, 519, 383,
- 519, 519, 519, 7, 8, 0, 0, 427, 0, 0,
- 19, 0, 0, 0, 64, 629, 630, 0, 643, 0,
- 21, 0, 22, 0, 0, 0, 0, 0, 0, 0,
- 761, 761, 0, 761, 380, 0, 0, 0, 0, 0,
- 0, 19, 307, 0, 381, 0, 309, 383, 0, 0,
- 192, 21, 26, 22, 0, 0, 0, 382, 0, 0,
- 0, 62, 0, 0, 332, 140, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 141, 0, 0, 149, 0,
- 0, 102, 106, 26, 0, 0, 0, 855, 142, 0,
- 0, 0, 0, 0, 0, 151, 0, 151, 0, 7,
- 8, 522, 526, 528, 0, 0, 0, 0, 0, 611,
- 611, 0, 611, 0, 0, 0, 0, 0, 0, 0,
- 7, 8, 152, 10, 153, 422, 0, 0, 0, 12,
- 149, 149, 846, 0, 0, 428, 0, 19, 846, 0,
- 0, 0, 0, 0, 15, 0, 0, 21, 16, 22,
- 519, 519, 17, 519, 149, 149, 0, 149, 19, 0,
- 794, 380, 855, 855, 855, 0, 0, 0, 21, 0,
- 22, 381, 0, 1105, 0, 0, 0, 0, 0, 26,
- 0, 0, 24, 0, 382, 612, 846, 522, 526, 528,
- 0, 519, 25, 0, 0, 0, 0, 0, 0, 0,
- 26, 0, 0, 0, 0, 27, 64, 0, 0, 0,
- 0, 0, 0, 384, 0, 0, 0, 1170, 0, 0,
- 0, 0, 0, 0, 0, 629, 630, 377, 379, 383,
- 0, 0, 0, 643, 377, 379, 383, 0, 0, 0,
- 0, 0, 0, 519, 519, 519, 0, 0, 0, 0,
- 0, 794, 0, 0, 0, 562, 0, 0, 563, 0,
- 0, 1030, 0, 565, 469, 470, 471, 1171, 472, 473,
- 474, 475, 476, 477, 478, 479, 480, 481, 482, 483,
- 484, 485, 486, 487, 488, 489, 490, 0, 384, 384,
- 384, 478, 479, 480, 481, 482, 483, 484, 485, 486,
- 487, 488, 489, 490, 613, 0, 0, 0, 0, 0,
- 0, 623, 0, 0, 0, 0, 0, 307, 519, 309,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 151, 0, 0, 428, 0, 774, 776, 473,
- 474, 475, 476, 477, 478, 479, 480, 481, 482, 483,
- 484, 485, 486, 487, 488, 489, 490, 670, 673, 0,
- 422, 0, 0, 0, 149, 149, 149, 149, 846, 0,
- 1006, 0, 149, 846, 846, 846, 0, 0, 526, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 629, 630,
- 0, 643, 0, 0, 0, 0, 0, 0, 0, 0,
- 149, 0, 0, 0, 0, 0, 0, 0, 0, 519,
- 0, 519, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 519, 0, 0, 0, 794, 794, 794, 0,
- 774, 776, 0, 0, 469, 470, 471, 0, 472, 473,
+ 46, 423, 465, 366, 673, 530, 321, 85, 314, 317,
+ 30, 586, 84, 553, 44, 85, 96, 638, 636, 103,
+ 103, 178, 103, 533, 350, 596, 915, 231, 66, 122,
+ 95, 97, 392, 400, 401, 349, 349, 351, 345, 149,
+ 554, 66, 955, 121, 360, 1107, 1212, 85, 1144, 409,
+ 1228, 556, 84, 830, 85, 1108, 502, 346, 502, 8,
+ 502, 164, 1111, 961, 88, 195, 85, 522, 1250, 194,
+ 830, 393, 85, 96, 599, 78, 309, 142, 1257, 651,
+ 424, 614, 85, 460, 165, 166, 290, 285, 286, 670,
+ 149, 85, 8, 85, 78, 309, 103, 194, 461, 307,
+ 103, 670, 420, 103, 103, 75, 100, 1259, 93, 554,
+ 347, 962, 100, 1269, 66, 46, 149, 66, 510, 600,
+ 556, 188, 831, 76, 601, 310, 615, -699, 300, 44,
+ 426, 616, 361, -699, 149, 149, 149, 82, 1272, 1295,
+ 73, 93, 100, 777, 310, 1144, 1299, 1089, 1311, 1260,
+ 577, 562, 522, 1033, 329, 93, 671, 602, 276, 21,
+ 149, 93, 693, 100, 617, 187, 709, 164, 1151, 557,
+ 294, 296, 100, 754, 164, 164, 1052, 175, 66, 414,
+ 1067, 276, 1219, 755, 337, 111, 750, 74, 103, 535,
+ 1049, 93, 340, 413, 422, -103, 75, 756, 164, 327,
+ 751, 384, -1, 510, 99, 867, 341, 360, 460, 653,
+ 21, 642, 93, 426, 76, 654, 398, -229, 359, 1272,
+ 1272, 93, 674, 558, 511, 85, 433, 499, 1245, 694,
+ 752, 1048, 311, 1224, 512, -2, 342, 593, 594, 159,
+ 160, 879, 164, 189, 513, 12, 328, 514, 515, 349,
+ 349, 595, 592, 530, 8, 366, 578, 8, 291, 295,
+ 1304, -229, -229, 192, 400, 401, 85, 315, 17, 675,
+ 509, 640, 433, 433, 524, -224, 360, 510, 314, 317,
+ 149, 100, 192, 194, 424, -124, 1074, -230, 880, 870,
+ 1254, 164, 401, 1172, 85, 361, 360, 579, 75, 111,
+ 192, 126, 1305, 93, 21, 1326, 580, 1107, 103, 526,
+ 1098, 103, 1104, 1074, 1107, 103, 76, 1108, 534, 85,
+ 96, 693, 651, 1197, 1108, 189, 301, 1147, 21, 187,
+ 93, -230, -230, 1075, 95, 97, 1265, 599, 127, 89,
+ 458, 581, 754, 422, 77, -225, 192, 1327, 1301, 894,
+ 1074, 1074, 755, 527, 100, 149, 66, 149, 149, 524,
+ 1182, 343, 708, 66, 361, 127, 756, 90, 1107, 149,
+ 1198, 149, 1074, 149, 149, 451, 164, 356, 1108, 811,
+ 149, 551, 600, 1266, 361, -695, 149, 601, 566, 149,
+ 422, 100, 192, 606, 11, 610, 612, 1276, 1282, 7,
+ 8, 21, 85, 93, 422, 164, 164, 1342, 149, 66,
+ 186, 66, 414, 939, 937, 431, 85, 297, 298, 1321,
+ 602, -285, 360, 99, 510, 432, 413, -285, 456, 360,
+ 764, 510, -699, 164, -699, -699, 117, 19, 21, 135,
+ 93, -699, 85, 85, 85, 85, 660, 385, 386, 22,
+ 551, 387, 511, 499, 1343, 783, 860, 112, 766, 187,
+ -286, 643, 512, -699, -699, -699, -286, -699, 693, -699,
+ 359, 189, 513, 804, 765, 514, 515, 820, 676, 26,
+ 192, 822, 118, 136, 137, 829, 7, 100, 805, 878,
+ 132, 586, 85, 133, 433, 388, 389, 349, 187, 784,
+ 785, 187, 767, 677, 192, 824, 433, 433, 100, 524,
+ 361, 424, 400, 360, 1180, 530, 66, 361, 553, 360,
+ 692, 821, 178, 695, 19, 823, 366, 465, 701, 702,
+ 703, 704, 705, 533, 651, 1091, 22, 315, 112, 112,
+ 750, 182, 276, 624, 99, 554, 718, 149, 85, 825,
+ 187, 1057, 1208, 84, 751, 21, 556, 93, 189, 7,
+ 503, 1273, 504, 287, 632, 164, 26, 360, 289, 431,
+ 881, 112, 422, 641, -27, 13, 14, -27, 747, 432,
+ -224, 7, 8, 356, 752, 612, 7, 8, 715, -27,
+ 394, 395, 78, 79, 7, 503, 1209, 19, 149, 149,
+ 842, 361, 318, 75, -81, 1274, 842, 361, 456, 22,
+ -81, 456, -102, 696, 698, 319, 700, 75, 673, 19,
+ -506, 76, 149, 149, 19, 149, 1077, 13, 14, 356,
+ 192, 22, 19, 240, 456, 76, 22, 234, 722, 505,
+ 21, -225, 80, 81, 22, 85, 331, 21, 332, 422,
+ 1082, 366, 333, 164, 842, 361, -80, 322, 426, 159,
+ 160, 26, -80, 187, 744, 12, 26, 8, 338, 10,
+ 761, 301, 114, 433, 26, 12, 407, 356, 807, 792,
+ 13, 14, 422, 433, 433, 433, 1027, 1028, 17, 1028,
+ 15, 164, 360, 371, 16, 421, 360, 427, 17, 357,
+ 78, 79, 167, 168, 169, 430, 192, 694, 158, 159,
+ 160, 75, 360, 715, 21, 12, 93, 486, 487, 871,
+ 1123, 192, 1072, 1073, 873, 874, 385, 1174, 876, 76,
+ 1053, 1054, 170, 1056, 356, 428, 356, 356, 17, 314,
+ 317, 359, 429, 85, 436, 314, 317, 443, 21, 444,
+ 80, 171, 446, 114, 114, 360, 1153, 1154, 447, 334,
+ 448, 335, 356, 111, 433, 336, 433, 449, 356, 849,
+ 1170, 450, 404, 85, 405, 502, 694, 433, 406, 85,
+ 361, 66, 66, 66, 361, 541, 114, 539, 567, 944,
+ 1184, 1185, 542, 194, 544, 172, 173, 174, 545, 85,
+ 361, 85, 546, 78, 309, 1129, 1130, 1131, 112, 112,
+ 547, 528, 8, 563, 885, 886, 887, 111, 347, 568,
+ -694, 569, 356, 570, 424, 571, 394, 1175, 385, 1181,
+ 914, 597, 149, 149, 149, 149, 598, 1216, 613, 149,
+ 842, 842, 842, 361, 622, 240, 529, 1336, 1337, 19,
+ 623, 792, 356, 310, 629, 70, 637, 85, 681, 21,
+ 718, 93, 682, 87, 439, 442, 359, 149, 1307, 1308,
+ 103, 98, 66, 414, 85, 104, 104, 686, 104, 422,
+ 422, 687, 422, 706, 70, 707, 551, 413, 483, 484,
+ 485, 486, 487, 100, 709, 104, 184, 70, 762, 13,
+ 14, 763, 776, 87, 778, 591, -330, 780, 796, 797,
+ 98, 399, 159, 160, 433, 433, 806, 433, 12, 808,
+ 810, 812, 98, 813, 814, 815, 921, 1016, 98, -330,
+ -330, 819, -330, 510, 356, 66, 66, 828, 1193, 1194,
+ 21, 17, 93, 1012, 852, 315, 104, 98, 66, 414,
+ 855, 635, 104, 862, 511, 963, 104, 856, 456, 104,
+ 104, 677, 857, 413, 512, 7, 100, 858, 861, 11,
+ 70, 866, 104, 70, 513, 872, 875, 514, 515, 877,
+ 149, 66, 149, 883, 882, 1156, 888, 889, 898, 642,
+ 104, 104, 104, 356, 149, 149, 892, 149, 315, 691,
+ 164, 893, 895, 19, 315, 111, 356, 896, 356, 694,
+ 897, 899, 900, 21, 901, 22, 104, 456, 1097, 902,
+ 1103, -101, 905, 114, 114, 66, 414, 24, 904, 907,
+ 1043, 1011, 908, 909, 70, 112, 912, 25, 910, 192,
+ 413, 112, 911, 923, 104, 26, 926, 913, 925, 315,
+ 27, 927, 932, 933, 7, 8, 743, 934, 745, 746,
+ 1227, 938, 356, 948, 356, 830, 356, 942, 8, 92,
+ 10, 11, 554, 943, 354, 945, 12, 314, 317, 956,
+ 1003, 98, 104, 1340, 1125, 1126, 1043, 1005, 1156, 112,
+ 795, 15, 19, 1300, 1009, 16, 1018, 842, 1034, 17,
+ 1036, 1037, 21, 1090, 22, -471, 1038, 138, -471, 1039,
+ 1055, 1045, 1059, 1050, 1064, 21, 139, 93, 1051, 1060,
+ 1076, 1061, 98, 1065, 1063, 1068, 140, 1069, 104, 104,
+ 70, 422, 422, 1081, 26, 532, 104, 1070, 1084, 141,
+ 1085, 192, 780, 1086, 817, 1093, 1092, 1088, 1109, 1095,
+ 98, 1156, 1116, -471, 1117, 1118, -471, 355, -471, 1132,
+ 1176, 590, 1122, 1143, 104, 1149, 1148, 104, -471, 1163,
+ 1167, 104, 842, 842, 842, 98, 1169, 1171, 1199, 422,
+ 1189, 1195, 422, 1196, 1156, 1200, -471, -471, 1201, 1213,
+ 98, -471, 1214, 1207, 8, 644, 1217, 1152, 1202, 1203,
+ -471, 1225, 1215, 1241, 1261, 1262, 1137, 1138, 1139, 1140,
+ 1251, 104, 70, 104, 104, 70, 149, 1263, 1146, 70,
+ 1264, 645, 1285, 1289, 1267, 104, 646, 104, 1268, 104,
+ 104, 1298, 1074, 164, 1303, 1306, 104, 1341, 1317, 360,
+ 1331, 21, 104, 93, 1309, 104, 8, 863, 1314, 1312,
+ 114, 1161, 1319, 1320, 1252, 1323, 114, 1325, 98, 1168,
+ 849, 458, 1333, 1335, 104, 70, 382, 70, 1344, 112,
+ 112, 1345, 98, 645, 1347, 112, 112, 112, 864, 1346,
+ 1349, 1350, 323, 565, 5, 396, 422, 325, -699, 950,
+ -699, -699, 326, 21, 344, 93, 957, -699, 98, 98,
+ 98, 98, 305, 710, 114, 1206, 1211, -699, 1232, -699,
+ -699, 1280, 768, 1162, 1100, 917, -699, 884, 1240, -699,
+ -699, 383, 1132, -699, 949, -699, 85, 361, 928, 827,
+ 929, 123, 124, 1218, 1013, 865, 315, 111, -699, -699,
+ 397, 953, -699, 356, -699, 1030, 1066, 86, 98, 456,
+ 104, 48, 668, 749, 1218, 1218, 1029, 187, 8, 92,
+ 10, 11, 104, 104, 1339, 70, 12, 48, 799, 947,
+ 1296, 998, 794, 1316, 1318, 0, 187, 488, 1032, 1218,
+ 48, 15, 620, 532, 958, 16, 959, 0, 960, 17,
+ 0, 655, 656, 154, 479, 480, 481, 482, 483, 484,
+ 485, 486, 487, 104, 87, 21, 185, 93, 0, 0,
+ 0, 0, 0, 551, 489, 490, 0, 0, 229, 491,
+ 492, 493, 494, 278, 48, 0, 0, 0, 0, 19,
+ 0, 0, 657, 0, 0, 278, 278, 0, 0, 21,
+ 356, 22, 853, 154, 1297, 0, 278, 0, 658, 0,
+ 0, 0, 0, 139, 104, 104, 70, 0, 0, 0,
+ 722, 722, 794, 140, 0, 0, 48, 0, 0, 154,
+ 0, 26, 0, 1315, 0, 0, 659, 0, 104, 104,
+ 0, 104, 0, 363, 114, 114, 0, 0, 0, 0,
+ 114, 114, 114, 0, 0, 0, 8, 92, 10, 11,
+ 0, 98, 0, 0, 12, 0, 356, 0, 7, 8,
+ 70, 0, 11, 375, 377, 380, 228, 0, 0, 15,
+ 0, 277, 0, 16, 0, 0, 0, 17, 0, 104,
+ 48, 0, 112, 277, 277, 0, 0, 0, 0, 104,
+ 104, 104, 0, 21, 277, 93, 19, 0, 0, 510,
+ 0, 0, 0, 0, 0, 0, 21, 0, 22, 0,
+ 0, 94, 0, 0, 0, 0, 452, 101, 105, 453,
+ 603, 916, 454, 0, 0, 0, 0, 185, 462, 0,
+ 604, 362, 0, 0, 0, 0, 0, 501, 26, 0,
+ 513, 0, 0, 605, 515, 0, 0, 0, 0, 98,
+ 0, 0, 0, 0, 0, 278, 0, 112, 112, 112,
+ 0, 0, 0, 8, 230, 10, 184, 0, 229, 279,
+ 104, 12, 104, 0, 0, 0, 185, 0, 952, 98,
+ 0, 279, 279, 104, 0, 98, 15, 794, 794, 794,
+ 16, 0, 279, 0, 17, 532, 552, 0, 0, 0,
+ 0, 313, 316, 0, 0, 98, 0, 98, 0, 0,
+ 21, 0, 93, 0, 0, 0, 0, 0, 816, 0,
+ 98, 48, 1004, 0, 0, 0, 0, 0, 0, 364,
+ 0, 0, 374, 376, 0, 0, 0, 0, 104, 104,
+ 104, 104, 0, 0, 0, 104, 794, 794, 794, 0,
+ 0, 0, 0, 277, 0, 0, 0, 0, 154, 0,
+ 0, 185, 0, 98, 0, 552, 228, 0, 0, 0,
+ 0, 0, 854, 104, 1041, 1044, 104, 0, 70, 0,
+ 98, 0, 0, 859, 0, 363, 481, 482, 483, 484,
+ 485, 486, 487, 0, 362, 0, 0, 114, 625, 0,
+ 626, 193, 375, 377, 0, 0, 0, 0, 0, 0,
+ 699, 154, 1243, 48, 0, 639, 0, 0, 678, 0,
+ 104, 104, 0, 104, 0, 0, 0, 7, 8, 0,
+ 0, 1044, 0, 0, 0, 278, 0, 665, 278, 0,
+ 0, 794, 794, 278, 678, 678, 678, 678, 320, 0,
+ 0, 279, 0, 0, 70, 0, 0, 278, 0, 0,
+ 0, 278, 0, 362, 230, 19, 0, 352, 510, 0,
+ 0, 0, 114, 114, 114, 21, 0, 22, 1294, 0,
+ 0, 0, 391, 362, 0, 0, 104, 70, 104, 603,
+ 0, 0, 364, 278, 229, 0, 0, 0, 0, 604,
+ 104, 104, 0, 104, 0, 1136, 0, 26, 0, 513,
+ 1141, 552, 605, 515, 0, 0, 277, 0, 363, 0,
+ 0, 0, 0, 0, 6, 0, 7, 8, 9, 10,
+ 11, 70, 0, 277, 0, 12, 277, 0, 0, 0,
+ 0, 277, 277, 277, 277, 277, 0, 0, 13, 14,
+ 15, 0, 954, 0, 16, 277, 0, 0, 17, 277,
+ 0, 364, 18, 0, 19, 0, 0, 0, 20, 0,
+ 0, 627, 628, 0, 21, 0, 22, 0, 0, 23,
+ 0, 364, 0, 0, 1186, 1187, 0, 0, 24, 0,
+ 0, 277, 228, 0, 0, 0, 0, 0, 25, 0,
+ 0, 1010, 552, 794, 0, 0, 26, 0, 363, 362,
+ 1017, 27, 0, 1205, 279, 0, 362, 28, 29, 1031,
+ 0, 0, 0, 7, 8, 0, 0, 375, 377, 380,
+ 0, 279, 0, 0, 279, 380, 0, 0, 0, 279,
+ 279, 279, 279, 279, 0, 0, 0, 0, -511, 0,
+ 0, 625, 626, 279, 639, 0, 552, 279, 1233, 0,
+ 0, 19, 0, -511, -511, 1238, 1239, 0, 0, 0,
+ -511, 21, 0, 22, 1244, 0, 1096, 0, 794, 794,
+ 794, 0, -511, 380, 0, 139, 0, 0, 0, 279,
+ 230, 0, 0, -511, -511, 140, -511, 0, -511, 100,
+ 362, 0, 424, 26, 769, 771, 362, 364, 141, 0,
+ 0, 0, 0, 630, 364, 0, 0, 0, 0, 633,
+ 0, 0, 104, 0, 0, 924, -511, -511, 0, 0,
+ -511, -511, 0, 1292, 1293, 0, 0, 0, 0, 510,
+ -511, 0, 0, 0, 0, 678, 21, 0, 93, 918,
+ 0, 452, 453, 0, 362, 1119, 1120, 0, 0, 0,
+ 511, 0, 0, 688, 689, 0, 690, 0, 1127, 1128,
+ 512, 0, 0, 0, 0, 678, 0, 0, 0, 0,
+ 513, 552, 0, 514, 515, 363, 8, 92, 10, 11,
+ 0, 0, 0, 0, 12, 0, 837, 838, 364, 0,
+ 1338, 552, 0, 951, 364, 0, 0, 0, 0, 15,
+ 452, 453, 0, 16, 0, 0, 0, 17, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 987,
+ 0, 0, 98, 21, 0, 93, 0, 0, 519, 523,
+ 525, 0, 0, 277, 363, 0, 0, 0, 0, 781,
+ 782, 0, 364, 0, 781, 452, 453, 0, 278, 0,
+ 0, 625, 626, 375, 377, 1192, 7, 100, 639, 375,
+ 377, 380, 0, 277, 48, 0, 678, 0, 0, 362,
+ 0, 0, 0, 362, 0, 0, 0, 0, 0, 0,
+ 1058, 0, 0, 0, 0, 0, 1025, 0, 0, 362,
+ 0, 0, 0, 0, 19, 452, 453, 0, 0, 0,
+ 0, 0, 0, 0, 21, 0, 22, 0, 0, 0,
+ 0, 608, 0, 519, 523, 525, 0, 0, 108, 835,
+ 836, 1234, 1235, 0, 1236, 1237, 0, 0, 109, 844,
+ 0, 279, 362, 0, 0, 851, 26, 0, 0, 0,
+ 48, 27, 0, 0, 0, 0, 277, 0, 0, 0,
+ 0, 410, 0, 7, 8, 92, 10, 11, 0, 0,
+ 0, 279, 12, 0, 277, 0, 0, 364, 0, 769,
+ 771, 364, 0, 154, 0, 987, 0, 15, 0, 868,
+ 0, 16, 987, 0, 0, 17, -423, 364, 0, 7,
+ 100, 19, 0, 184, 0, 0, 0, 0, 7, 100,
+ 0, 21, 11, 22, 0, 0, 672, 0, 0, 0,
+ 411, 0, 0, 625, 626, 24, 639, 48, 0, 0,
+ 0, 0, 999, 1000, 268, 25, 0, 19, 999, 1000,
+ 364, 1313, 0, 26, 0, 0, 19, 21, 27, 22,
+ 0, 0, 0, 0, 279, 0, 21, 268, 22, 0,
+ 0, 24, 0, -423, 0, 0, 0, 0, 1019, 1020,
+ 108, 25, 279, 772, 0, 774, 0, 0, 987, 26,
+ 109, 0, 774, 0, 27, 0, 919, 920, 26, 922,
+ 0, 0, 0, 27, 358, 0, 0, 410, 0, 7,
+ 8, 92, 10, 11, 0, 0, 19, 0, 12, 0,
+ 0, 0, 0, 523, 0, 936, 21, 0, 22, 0,
+ 0, 0, 0, 15, 0, 1021, 380, 16, 0, 0,
+ 139, 17, -422, 769, 771, 0, 0, 19, 0, 0,
+ 140, 0, 452, 453, 0, 0, 0, 21, 26, 22,
+ 0, 0, 987, 141, 0, 0, 411, 0, 0, 0,
+ 1220, 24, 0, 987, 0, 772, 774, 0, 0, 0,
+ 0, 25, 774, 0, 0, 1002, 278, 0, 0, 26,
+ 0, 1220, 1220, 0, 27, 0, 0, 1006, 1007, 1008,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, -422,
+ 0, 375, 377, 380, 0, 0, 1220, 0, 0, 0,
+ 0, 0, 0, 987, 0, 0, 0, 459, 0, 0,
+ 987, 0, 8, 987, 10, 11, 0, 0, 0, 0,
+ 12, 0, 0, 0, 7, 8, 158, 159, 160, 523,
+ 0, 0, 0, 12, 987, 15, 0, 987, 0, 16,
+ 0, 0, 0, 17, 987, 0, 0, 410, 228, 7,
+ 8, 92, 10, 11, 0, 1062, 17, 0, 12, 21,
+ 0, 93, 19, 0, 277, 510, 0, 0, 987, 228,
+ 228, 0, 21, 15, 22, 0, 0, 16, 0, 0,
+ 0, 17, -424, 987, 0, 0, 139, 19, 0, 589,
+ 358, 0, 0, 0, 228, 0, 140, 21, 987, 22,
+ 0, 0, 672, 0, 26, 0, 411, 0, 0, 1102,
+ 0, 24, 0, 0, 0, 987, 987, 0, 552, 0,
+ 930, 25, 931, 0, 0, 0, 0, 0, 0, 26,
+ 0, 0, 0, 935, 27, 0, 358, 0, 772, 774,
+ 1121, 0, 0, 0, 0, 0, 230, 0, 0, -424,
+ 0, 0, 0, 0, 0, 8, 0, 10, 11, 652,
+ 627, 628, 279, 12, 0, 0, 0, 230, 230, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 15, 0,
+ 0, 0, 16, 0, 358, 1150, 17, 0, 930, 931,
+ 0, 772, 230, 0, 0, 935, 0, 772, 774, 7,
+ 8, 0, 21, 184, 93, 495, 0, 0, 268, 0,
+ 0, 589, 0, 0, 719, 720, 362, 724, 725, 726,
+ 727, 728, 729, 730, 731, 732, 733, 734, 735, 736,
+ 737, 738, 739, 740, 741, 742, 0, 19, 0, 496,
+ 510, 358, 0, 358, 358, 0, 0, 21, 0, 22,
+ 7, 8, 92, 10, 11, 0, 0, 354, 0, 12,
+ 0, 603, 100, 0, 159, 160, 0, 0, 0, 358,
+ 12, 604, 0, 0, 15, 358, 42, 0, 16, 26,
+ 0, 513, 17, 0, 605, 515, 0, 0, 19, 0,
+ 801, 803, 772, 17, 0, 0, 42, 42, 21, 110,
+ 22, 0, 510, 0, 0, 42, 0, 0, 0, 21,
+ 0, 93, 378, 0, 364, 0, 42, 0, 42, 0,
+ 0, 0, 379, 511, 0, 0, 0, 0, 0, 358,
+ 26, 0, 0, 512, 0, 141, 589, 0, 190, 0,
+ 355, 0, 0, 513, 0, 0, 521, 515, 0, 0,
+ 930, 931, 6, 935, 7, 8, 9, 10, 11, 358,
+ 0, 0, 0, 12, 0, 0, 0, 42, 0, 0,
+ 589, 0, 0, 42, 0, 190, 0, 42, 15, 0,
+ 110, 110, 16, 0, 0, 0, 17, 0, 0, 0,
+ 0, 42, 19, 42, 42, 0, 324, 0, 0, 0,
+ 0, 0, 21, 0, 22, 0, 869, 23, 0, 0,
+ 0, 42, 42, 110, 0, 0, 24, 0, 0, 0,
+ 0, 190, 0, 0, 0, 0, 25, 0, 0, 0,
+ 0, 0, 0, 0, 26, 0, 0, 42, 0, 27,
+ 0, 358, 0, 0, 0, 28, 721, 0, 7, 8,
+ 0, 10, 437, 233, 234, 42, 235, 12, 0, 0,
+ 0, 0, 903, 0, 0, 42, 0, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 22, 589,
+ 358, 0, 0, 0, 0, -656, 0, 250, 0, 0,
+ 251, 0, 0, 358, 0, 358, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 0, 0, 0, 258, 0, 0, 0, 259, 0, 0,
+ 0, 0, 0, 0, 946, 0, 0, 506, 0, 260,
+ 0, 0, 0, 0, 0, 190, 589, 42, 0, 7,
+ 8, 0, 10, 437, 233, 234, 0, 235, 12, 358,
+ 0, 358, 0, 358, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 15, 236, 42, 0, 16, 42, 239,
+ 0, 17, 42, 240, 241, 0, 242, 19, 243, 244,
+ 589, 0, 245, 246, 247, 248, 249, 21, 0, 22,
+ 0, 0, 0, 0, 1014, 1015, 0, 0, 250, 0,
+ 0, 251, 0, 0, 0, 0, 0, 1019, 100, 252,
+ 253, 254, 42, 42, 42, 42, 0, 255, 256, 257,
+ 42, 0, 0, 0, 438, 0, 42, 0, 42, 0,
+ 110, 110, 589, 589, 0, 0, 1046, 42, 0, 0,
+ 260, 0, 0, 42, 0, 19, 42, 0, 410, 0,
+ 7, 8, 92, 10, 11, 21, 0, 22, 0, 12,
+ 0, 7, 8, 0, 1021, 42, 42, 0, 42, 24,
+ 0, 0, 0, 0, 15, 0, 0, 0, 16, 25,
+ 0, 0, 17, -425, 0, 0, 0, 26, 19, 589,
+ 0, 0, 27, 0, 0, 0, 0, 64, 21, 19,
+ 22, 1083, 0, 0, 7, 8, 0, 411, 11, 21,
+ 0, 22, 24, 0, 0, 0, 0, 64, 64, 0,
+ 115, 0, 25, 139, 0, 0, 64, 0, 0, 0,
+ 26, 0, 0, 140, 0, 27, 0, 64, 0, 64,
+ 0, 26, 19, 0, 0, 510, 141, 0, 0, 1124,
+ -425, 0, 21, 0, 22, 7, 8, 92, 10, 11,
+ 0, 506, 354, 589, 12, 0, 839, 0, 589, 0,
+ 1142, 0, 0, 791, 0, 0, 840, 0, 0, 15,
+ 0, 0, 0, 16, 26, 0, 513, 17, 64, 605,
+ 515, 0, 0, 19, 64, 0, 510, 0, 64, 0,
+ 0, 115, 115, 21, 42, 22, 0, 0, 0, 0,
+ 0, 0, 64, 0, 64, 64, 0, 839, 0, 0,
+ 0, 8, 0, 10, 11, 0, 0, 840, 0, 12,
+ 358, 0, 64, 64, 115, 26, 0, 513, 0, 0,
+ 605, 515, 589, 589, 15, 355, 0, 0, 16, 0,
+ 1190, 1191, 17, 0, 0, 42, 42, 110, 64, 0,
+ 0, 0, 0, 848, 0, 0, 0, 0, 21, 0,
+ 93, 589, 0, 0, 0, 0, 64, 0, 0, 42,
+ 42, 0, 42, 0, 0, 0, 64, 0, 0, 0,
+ 0, 0, 1222, 476, 477, 478, 479, 480, 481, 482,
+ 483, 484, 485, 486, 487, 748, 0, 587, 0, 711,
+ 712, 110, 10, 437, 233, 234, 589, 235, 12, 0,
+ 0, 0, 0, 589, 589, 0, 0, 358, 0, 0,
+ 0, 0, 589, 15, 236, 237, 238, 16, 0, 239,
+ 0, 17, 0, 240, 241, 791, 242, 19, 243, 244,
+ 0, 0, 245, 246, 247, 248, 249, 21, 0, 713,
+ 588, 0, 0, 0, 7, 8, 0, 0, 250, 0,
+ 0, 251, 0, 0, 0, 0, 0, 531, 64, 252,
+ 253, 254, 0, 0, 0, 0, 0, 255, 256, 257,
+ 0, 589, 589, 358, 258, 714, 0, 0, 259, 0,
+ 0, 0, 19, 0, 0, 0, 64, 0, 0, 64,
+ 260, 0, 21, 64, 22, 0, 0, 0, 0, 0,
+ 116, 0, 0, 0, 0, 0, 378, 0, 0, 0,
+ 0, 0, 585, 0, 0, 0, 379, 150, 791, 791,
+ 0, 0, 0, 0, 26, 0, 0, 0, 0, 141,
+ 0, 0, 0, 64, 64, 64, 64, 0, 589, 0,
+ 0, 64, 0, 0, 0, 0, 0, 64, 0, 64,
+ 0, 115, 115, 0, 0, 0, 0, 0, 64, 0,
+ 0, 0, 0, 0, 64, 0, 0, 64, 150, 42,
+ 42, 110, 110, 0, 190, 0, 42, 848, 848, 848,
+ 0, 116, 116, 0, 0, 0, 64, 64, 0, 64,
+ 0, 0, 0, 0, 150, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 42, 0, 0, 42, 0, 42,
+ 0, 0, 150, 150, 381, 0, 0, 0, 0, 0,
+ 0, 0, 791, 791, 0, 1105, 0, 966, 967, 92,
+ 10, 232, 233, 234, 0, 235, 12, 968, 150, 969,
+ 970, 971, 972, 973, 974, 975, 976, 977, 978, 13,
+ 14, 15, 236, 237, 238, 16, 0, 239, 0, 17,
+ 0, 240, 241, 0, 242, 19, 243, 244, 0, 0,
+ 245, 246, 247, 248, 249, 21, 190, 979, 347, 0,
+ 980, 0, 0, 0, 0, 42, 250, 0, 0, 251,
+ 0, 0, 0, 0, 793, 0, 0, 252, 253, 254,
+ 0, 0, 0, 0, 434, 255, 256, 257, 0, 0,
+ 0, 0, 258, 0, 981, 0, 259, 42, 42, 42,
+ 0, 0, 0, 0, 0, 64, 0, 1106, 260, 0,
+ 0, 42, 42, 0, 42, 7, 8, 0, 0, 11,
+ 0, 8, 92, 10, 11, 0, 0, 354, 0, 12,
+ 518, 518, 518, 0, 0, 0, 0, 0, 150, 0,
+ 0, 0, 42, 0, 15, 0, 0, 0, 16, 0,
+ 0, 0, 17, 19, 0, 0, 64, 64, 115, 0,
+ 0, 510, 0, 21, 850, 22, 0, 0, 21, 0,
+ 93, 0, 0, 0, 0, 0, 0, 139, 0, 0,
+ 64, 64, 511, 64, 0, 0, 0, 140, 0, 0,
+ 0, 0, 512, 0, 0, 26, 0, 0, 0, 0,
+ 141, 0, 513, 0, 0, 514, 515, 0, 0, 0,
+ 355, 0, 115, 607, 848, 607, 607, 518, 0, 120,
+ 0, 7, 8, 92, 10, 11, 0, 150, 0, 150,
+ 12, 381, 381, 0, 0, 0, 7, 8, 150, 0,
+ 424, 516, 516, 516, 150, 15, 793, 150, 0, 16,
+ 0, 0, 0, 17, 0, 0, 0, 0, 148, 19,
+ 0, 0, 0, 0, 0, 0, 150, 0, 0, 21,
+ 0, 22, 0, 0, 19, 0, 0, 510, 0, 0,
+ 191, 0, 0, 24, 21, 0, 22, 0, 0, 848,
+ 848, 848, 0, 25, 0, 0, 7, 100, 603, 191,
+ 424, 26, 0, 0, 0, 0, 27, 0, 604, 148,
+ 0, 0, 0, 0, 0, 0, 26, 0, 513, 0,
+ 0, 605, 515, 0, 516, 0, 516, 516, 516, 0,
+ 0, 0, 0, 42, 19, 148, 0, 0, 0, 793,
+ 793, 0, 0, 0, 21, 0, 22, 531, 0, 0,
+ 0, 0, 757, 148, 148, 148, 0, 0, 24, 0,
+ 0, 0, 0, 390, 518, 518, 0, 518, 25, 0,
+ 0, 0, 585, 0, 518, 0, 26, 0, 0, 148,
+ 0, 27, 0, 0, 0, 0, 0, 0, 0, 0,
+ 64, 64, 115, 115, 0, 0, 0, 64, 850, 850,
+ 850, 0, 0, 0, 0, 607, 0, 0, 0, 191,
+ 0, 0, 62, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 64, 0, 0, 64, 0,
+ 64, 0, 102, 106, 0, 0, 0, 100, 0, 159,
+ 160, 125, 0, 793, 793, 12, 0, 0, 0, 0,
+ 0, 0, 0, 0, 157, 0, 607, 607, 843, 0,
+ 0, 0, 0, 0, 843, 0, 0, 0, 17, 0,
+ 0, 0, 0, 0, 0, 516, 516, 510, 516, 0,
+ 150, 150, 0, 150, 21, 790, 93, 0, 8, 151,
+ 10, 152, 0, 0, 0, 0, 12, 191, 511, 148,
+ 0, 0, 0, 0, 0, 0, 64, 0, 512, 306,
+ 0, 15, 381, 308, 0, 16, 516, 0, 513, 17,
+ 0, 514, 515, 0, 0, 0, 0, 62, 0, 0,
+ 330, 518, 7, 8, 0, 21, 184, 93, 64, 64,
+ 64, 434, 434, 434, 0, 0, 0, 102, 106, 0,
+ 0, 0, 64, 64, 0, 64, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 516, 516, 516,
+ 19, 0, 0, 0, 148, 790, 148, 148, 0, 0,
+ 21, 0, 22, 64, 0, 0, 0, 0, 148, 0,
+ 148, 419, 148, 148, 139, 0, 7, 8, 0, 148,
+ 11, 425, 0, 0, 140, 148, 0, 0, 148, 0,
+ 0, 0, 26, 0, 0, 0, 83, 141, 0, 0,
+ 0, 0, 518, 0, 518, 0, 0, 148, 83, 83,
+ 0, 83, 0, 0, 19, 518, 0, 0, 0, 518,
+ 518, 518, 516, 0, 21, 0, 22, 0, 0, 0,
+ 0, 0, 0, 0, 0, 850, 177, 0, 378, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 379, 0,
+ 0, 0, 0, 0, 0, 0, 26, 0, 0, 0,
+ 0, 141, 0, 0, 0, 0, 0, 0, 0, 0,
+ 607, 607, 843, 843, 0, 0, 0, 607, 843, 843,
+ 843, 0, 0, 0, 0, 83, 0, 83, 83, 83,
+ 0, 0, 83, 83, 0, 7, 8, 0, 0, 424,
+ 0, 559, 0, 0, 560, 150, 0, 0, 561, 0,
+ 850, 850, 850, 516, 0, 516, 0, 0, 191, 0,
+ 0, 0, 0, 0, 0, 0, 516, 0, 0, 0,
+ 790, 790, 790, 19, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 21, 0, 22, 148, 0, 0, 609,
+ 0, 0, 757, 757, 64, 757, 619, 139, 0, 0,
+ 0, 0, 306, 0, 308, 0, 0, 140, 0, 0,
+ 0, 0, 0, 518, 518, 26, 0, 83, 0, 425,
+ 141, 516, 516, 516, 516, 0, 0, 0, 516, 790,
+ 790, 790, 0, 0, 0, 0, 0, 148, 148, 841,
+ 0, 666, 669, 0, 419, 841, 0, 0, 0, 0,
+ -304, 8, -304, 10, 184, 83, 0, 0, 150, 12,
+ 150, 148, 148, 0, 148, 0, 0, 0, 0, 0,
+ 0, 0, 607, 607, 15, 607, 0, 0, 16, 0,
+ 0, 0, 17, 0, 0, 0, 0, 0, -304, 0,
+ 0, 510, 0, 841, 0, 0, 0, 0, 21, 83,
+ 93, 83, 83, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 511, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 512, 0, 790, 790, 0, 0, 0, 0,
+ -304, 83, 513, 0, 0, 514, 515, 83, 0, 0,
+ 83, 0, 0, 0, 83, 471, 472, 473, 474, 475,
+ 476, 477, 478, 479, 480, 481, 482, 483, 484, 485,
+ 486, 487, 353, 0, 7, 8, 92, 10, 232, 233,
+ 234, 354, 235, 12, 0, 381, 0, 0, 0, 0,
+ 0, 0, 0, 516, 516, 0, 516, 0, 15, 236,
+ 237, 238, 16, 0, 239, 0, 17, 0, 240, 241,
+ 0, 242, 19, 243, 244, 0, 0, 245, 246, 247,
+ 248, 249, 21, 0, 22, 0, 0, 0, 0, 0,
+ 0, 0, 0, 250, 0, 0, 251, 0, 0, 0,
+ 0, 102, 106, 0, 252, 253, 254, 0, 0, 0,
+ 0, 0, 255, 256, 257, 0, 0, 0, 0, 258,
+ 381, 381, 381, 259, 355, 559, 560, 83, 561, 0,
+ 0, 0, 0, -666, 0, 260, 0, 0, 0, 0,
+ 0, 148, 148, 148, 148, 0, 1001, 0, 148, 841,
+ 841, 841, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 150, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 148, 0, 0, 0,
+ 0, 455, 0, 7, 8, 92, 10, 232, 233, 234,
+ 354, 235, 12, 83, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 83, 0, 83, 83, 15, 236, 237,
+ 238, 16, 0, 239, 0, 17, 0, 240, 241, 0,
+ 242, 19, 243, 244, 510, 0, 245, 246, 247, 248,
+ 249, 21, 0, 22, -237, 0, 0, 0, 0, 0,
+ 0, 0, 250, 0, 0, 940, 0, 177, 191, 0,
+ 0, 0, 0, 252, 253, 941, 0, 0, 0, 0,
+ 0, 255, 256, 257, 0, 513, 0, 0, 788, 515,
+ 0, 0, 259, 355, 0, 0, 7, 8, 158, 159,
+ 160, 0, 0, 0, 260, 12, 0, 0, 0, 148,
+ 0, 148, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 148, 148, 0, 148, 0, 17, 0,
+ 0, 0, 0, 0, 19, 0, 0, 510, 0, 0,
+ 0, 0, 0, 0, 21, 0, 22, 0, 0, 0,
+ 0, 0, 0, 0, 0, 306, 308, 0, 603, 0,
+ 0, 0, 425, 0, 0, 0, 0, 0, 604, 0,
+ 0, 0, 0, 0, 0, 0, 26, 0, 513, 0,
+ 0, 611, 515, 0, 0, 0, 0, 0, 0, 0,
+ 1026, 0, 83, 1026, 0, 419, 0, 0, 0, 0,
+ 0, 0, 83, 83, 83, 0, 455, 0, 7, 8,
+ 92, 10, 232, 233, 234, 354, 235, 12, 0, 0,
+ 0, 0, 0, 0, 0, 0, 841, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 510,
+ 0, 245, 246, 247, 248, 249, 21, 0, 22, -237,
+ 0, 0, 0, 0, 0, 0, 0, 250, 0, 0,
+ 845, 419, 0, 0, 1164, 0, 0, 0, 252, 253,
+ 846, 0, 0, 83, 0, 83, 255, 256, 257, 0,
+ 513, 0, 0, 847, 515, 0, 83, 259, 355, 0,
+ 0, 841, 841, 841, 1101, 0, 0, 0, 0, 260,
+ 0, 0, 0, 0, 0, 0, 0, 559, 560, 0,
+ 561, 466, 467, 468, 1165, 469, 470, 471, 472, 473,
474, 475, 476, 477, 478, 479, 480, 481, 482, 483,
- 484, 485, 486, 487, 488, 489, 490, 476, 477, 478,
- 479, 480, 481, 482, 483, 484, 485, 486, 487, 488,
- 489, 490, 192, 0, 0, 0, 0, 519, 519, 519,
- 519, 519, 1045, 0, 0, 519, 794, 794, 794, 0,
- 0, 0, 383, 0, 7, 8, 92, 10, 11, 0,
- 0, 356, 0, 12, 0, 526, 0, 0, 0, 0,
- 0, 0, 0, 149, 0, 149, 0, 0, 15, 0,
- 0, 0, 16, 0, 0, 0, 17, 149, 149, 0,
- 149, 0, 19, 0, 0, 513, 0, 0, 0, 0,
- 0, 0, 21, 0, 22, 0, 0, 0, 102, 106,
- 0, 0, 0, 0, 0, 0, 843, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 844, 377, 379, 383,
- 0, 0, 562, 563, 26, 565, 516, 0, 0, 845,
- 518, 0, 0, 0, 357, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 936, 0, 937, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 941,
- 0, 0, 0, 774, 776, 475, 476, 477, 478, 479,
- 480, 481, 482, 483, 484, 485, 486, 487, 488, 489,
- 490, 846, 0, 0, 0, 0, 0, 0, 0, 0,
- 519, 519, 0, 519, 0, 0, 0, 0, 0, 0,
- 686, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 936, 937, 774, 776, 0, 0,
- 0, 0, 941, 774, 776, 469, 470, 471, 0, 472,
- 473, 474, 475, 476, 477, 478, 479, 480, 481, 482,
- 483, 484, 485, 486, 487, 488, 489, 490, 0, 0,
- 0, 0, 0, 0, 0, 0, 846, 846, 846, 0,
- 0, 0, 1111, 0, 971, 972, 92, 10, 233, 234,
- 235, 0, 236, 12, 973, 0, 974, 975, 976, 977,
- 978, 979, 980, 981, 982, 983, 13, 14, 15, 237,
- 238, 239, 16, 0, 240, 0, 17, 0, 241, 242,
- 149, 243, 19, 244, 245, 0, 0, 246, 247, 248,
- 249, 250, 21, 0, 984, 349, 0, 985, 0, 0,
- 0, 0, 0, 251, 0, 0, 252, 0, 0, 0,
- 0, 0, 307, 309, 253, 254, 255, 0, 0, 0,
- 428, 0, 256, 257, 258, 0, 0, 0, 0, 259,
- 0, 986, 0, 260, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1112, 261, 0, 0, 1031, 0,
- 0, 1031, 0, 422, 0, 0, 0, 936, 937, 0,
- 941, 1261, 0, 971, 972, 92, 10, 233, 234, 235,
- 0, 236, 12, 973, 0, 974, 975, 976, 977, 978,
- 979, 980, 981, 982, 983, 13, 14, 15, 237, 238,
- 239, 16, 0, 240, 0, 17, 0, 241, 242, 0,
- 243, 19, 244, 245, 0, 0, 246, 247, 248, 249,
- 250, 21, 0, 984, 349, 0, 985, 0, 0, 0,
- 0, 0, 251, 0, 0, 252, 0, 0, 0, 422,
- 0, 0, 0, 253, 254, 255, 0, 0, 0, 0,
- 0, 256, 257, 258, 0, 0, 0, 0, 259, 0,
- 986, 0, 260, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1107, 1262, 261, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 562, 563, 0, 565, 0,
+ 484, 485, 486, 487, 0, 148, 0, 0, 419, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 1255, 0,
+ 966, 967, 92, 10, 232, 233, 234, 0, 235, 12,
+ 968, 0, 969, 970, 971, 972, 973, 974, 975, 976,
+ 977, 978, 13, 14, 15, 236, 237, 238, 16, 83,
+ 239, 0, 17, 0, 240, 241, 0, 242, 19, 243,
+ 244, 0, 0, 245, 246, 247, 248, 249, 21, 0,
+ 979, 347, 0, 980, 0, 0, 0, 0, 0, 250,
+ 0, 0, 251, 0, 0, 0, 0, 0, 0, 0,
+ 252, 253, 254, 83, 83, 0, 83, 0, 255, 256,
+ 257, 0, 0, 0, 0, 258, 0, 981, 0, 259,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1283, 0, 971, 972, 92, 10, 233,
- 234, 235, 0, 236, 12, 973, 422, 974, 975, 976,
- 977, 978, 979, 980, 981, 982, 983, 13, 14, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 984, 349, 0, 985, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 0, 986, 0, 260, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1284, 261, 1283, 0, 971,
- 972, 92, 10, 233, 234, 235, 0, 236, 12, 973,
- 0, 974, 975, 976, 977, 978, 979, 980, 981, 982,
- 983, 13, 14, 15, 237, 238, 239, 16, 0, 240,
- 0, 17, 0, 241, 242, 0, 243, 19, 244, 245,
- 0, 0, 246, 247, 248, 249, 250, 21, 0, 984,
- 349, 0, 985, 0, 0, 0, 0, 0, 251, 0,
- 0, 252, 0, 0, 0, 0, 0, 0, 0, 253,
- 254, 255, 0, 0, 0, 0, 0, 256, 257, 258,
- 0, 0, 0, 0, 259, 0, 986, 0, 260, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1289,
- 261, 1283, 0, 971, 972, 92, 10, 233, 234, 235,
- 0, 236, 12, 973, 0, 974, 975, 976, 977, 978,
- 979, 980, 981, 982, 983, 13, 14, 15, 237, 238,
- 239, 16, 0, 240, 0, 17, 0, 241, 242, 0,
- 243, 19, 244, 245, 0, 0, 246, 247, 248, 249,
- 250, 21, 0, 984, 349, 0, 985, 0, 0, 0,
- 0, 0, 251, 0, 0, 252, 0, 0, 0, 0,
- 0, 0, 0, 253, 254, 255, 0, 0, 0, 0,
- 0, 256, 257, 258, 0, 0, 0, 0, 259, 0,
- 986, 0, 260, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1328, 261, 970, 0, 971, 972, 92,
- 10, 233, 234, 235, 0, 236, 12, 973, 0, 974,
- 975, 976, 977, 978, 979, 980, 981, 982, 983, 13,
- 14, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 0, 0,
- 246, 247, 248, 249, 250, 21, 0, 984, 349, 0,
- 985, 0, 0, 0, 0, 0, 251, 0, 0, 252,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 255,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 0,
- 0, 0, 259, 0, 986, 1255, 260, 971, 972, 92,
- 10, 233, 234, 235, 0, 236, 12, 973, 261, 974,
- 975, 976, 977, 978, 979, 980, 981, 982, 983, 13,
- 14, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 0, 0,
- 246, 247, 248, 249, 250, 21, 0, 984, 349, 0,
- 985, 0, 0, 0, 0, 0, 251, 0, 0, 252,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 255,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 0,
- 0, 0, 259, 0, 986, 1316, 260, 971, 972, 92,
- 10, 233, 234, 235, 0, 236, 12, 973, 261, 974,
- 975, 976, 977, 978, 979, 980, 981, 982, 983, 13,
- 14, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 0, 0,
- 246, 247, 248, 249, 250, 21, 0, 984, 349, 0,
- 985, 0, 0, 0, 0, 0, 251, 0, 0, 252,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 255,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 0,
- 0, 0, 259, 0, 986, 458, 260, 7, 8, 92,
- 10, 233, 234, 235, 356, 236, 12, 0, 261, 0,
+ 1256, 260, 1277, 0, 966, 967, 92, 10, 232, 233,
+ 234, 0, 235, 12, 968, 0, 969, 970, 971, 972,
+ 973, 974, 975, 976, 977, 978, 13, 14, 15, 236,
+ 237, 238, 16, 0, 239, 0, 17, 0, 240, 241,
+ 0, 242, 19, 243, 244, 0, 0, 245, 246, 247,
+ 248, 249, 21, 0, 979, 347, 0, 980, 0, 0,
+ 0, 0, 0, 250, 0, 0, 251, 0, 0, 0,
+ 0, 0, 0, 0, 252, 253, 254, 0, 0, 0,
+ 0, 0, 255, 256, 257, 0, 0, 0, 0, 258,
+ 0, 981, 0, 259, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1278, 260, 1277, 0, 966, 967,
+ 92, 10, 232, 233, 234, 0, 235, 12, 968, 0,
+ 969, 970, 971, 972, 973, 974, 975, 976, 977, 978,
+ 13, 14, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 979, 347,
+ 0, 980, 0, 0, 0, 0, 0, 250, 0, 0,
+ 251, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 0, 0, 0, 258, 0, 981, 0, 259, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 1283, 260,
+ 1277, 0, 966, 967, 92, 10, 232, 233, 234, 0,
+ 235, 12, 968, 0, 969, 970, 971, 972, 973, 974,
+ 975, 976, 977, 978, 13, 14, 15, 236, 237, 238,
+ 16, 0, 239, 0, 17, 0, 240, 241, 0, 242,
+ 19, 243, 244, 0, 0, 245, 246, 247, 248, 249,
+ 21, 0, 979, 347, 0, 980, 0, 0, 0, 0,
+ 0, 250, 0, 0, 251, 0, 0, 0, 0, 0,
+ 0, 0, 252, 253, 254, 0, 0, 0, 0, 0,
+ 255, 256, 257, 0, 0, 0, 0, 258, 0, 981,
+ 0, 259, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1322, 260, 965, 0, 966, 967, 92, 10,
+ 232, 233, 234, 0, 235, 12, 968, 0, 969, 970,
+ 971, 972, 973, 974, 975, 976, 977, 978, 13, 14,
+ 15, 236, 237, 238, 16, 0, 239, 0, 17, 0,
+ 240, 241, 0, 242, 19, 243, 244, 0, 0, 245,
+ 246, 247, 248, 249, 21, 0, 979, 347, 0, 980,
+ 0, 0, 0, 0, 0, 250, 0, 0, 251, 0,
+ 0, 0, 0, 0, 0, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 255, 256, 257, 0, 0, 0,
+ 0, 258, 0, 981, 1249, 259, 966, 967, 92, 10,
+ 232, 233, 234, 0, 235, 12, 968, 260, 969, 970,
+ 971, 972, 973, 974, 975, 976, 977, 978, 13, 14,
+ 15, 236, 237, 238, 16, 0, 239, 0, 17, 0,
+ 240, 241, 0, 242, 19, 243, 244, 0, 0, 245,
+ 246, 247, 248, 249, 21, 0, 979, 347, 0, 980,
+ 0, 0, 0, 0, 0, 250, 0, 0, 251, 0,
+ 0, 0, 0, 0, 0, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 255, 256, 257, 0, 0, 0,
+ 0, 258, 0, 981, 1310, 259, 966, 967, 92, 10,
+ 232, 233, 234, 0, 235, 12, 968, 260, 969, 970,
+ 971, 972, 973, 974, 975, 976, 977, 978, 13, 14,
+ 15, 236, 237, 238, 16, 0, 239, 0, 17, 0,
+ 240, 241, 0, 242, 19, 243, 244, 0, 0, 245,
+ 246, 247, 248, 249, 21, 0, 979, 347, 0, 980,
+ 0, 0, 0, 0, 0, 250, 0, 0, 251, 0,
+ 0, 0, 0, 0, 0, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 255, 256, 257, 0, 0, 0,
+ 0, 258, 0, 981, 634, 259, 7, 8, 92, 10,
+ 232, 233, 234, 354, 235, 12, 0, 260, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 513, 0,
- 246, 247, 248, 249, 250, 21, 0, 22, -239, 0,
- 0, 0, 0, 0, 0, 0, 251, 0, 0, 790,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 791,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 516,
- 0, 0, 792, 518, 0, 0, 260, 357, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 458, 261, 7,
- 8, 92, 10, 233, 234, 235, 356, 236, 12, 0,
+ 15, 236, 237, 238, 16, 0, 239, 0, 17, 0,
+ 240, 241, 0, 242, 19, 243, 244, 0, 0, 245,
+ 246, 247, 248, 249, 21, 0, 22, 0, 0, 0,
+ 0, 0, 0, 0, 0, 250, 0, 0, 251, 0,
+ 0, 0, 0, 0, 0, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 255, 256, 257, 0, 0, 0,
+ 0, 258, 0, 0, 0, 259, 355, 0, 0, 0,
+ 0, 0, 0, 0, 0, -666, 587, 260, 711, 712,
+ 0, 10, 437, 233, 234, 0, 235, 12, 474, 475,
+ 476, 477, 478, 479, 480, 481, 482, 483, 484, 485,
+ 486, 487, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 713, 588,
+ 0, 0, 0, 0, 0, 0, 0, 250, 0, 0,
+ 251, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 0, 0, 0, 258, 714, 0, 587, 259, 711, 712,
+ 0, 10, 437, 233, 234, 0, 235, 12, 826, 260,
+ 0, 0, 0, 0, 1042, 0, 0, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 713, 588,
+ 0, 0, 0, 0, 0, 0, 0, 250, 0, 0,
+ 251, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 0, 0, 0, 258, 0, 0, 587, 259, 711, 712,
+ 0, 10, 437, 233, 234, 0, 235, 12, -384, 260,
+ 0, 0, 0, 0, 1042, 0, 0, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 713, 588,
+ 0, 0, 0, 0, 0, 0, 0, 250, 0, 0,
+ 251, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 0, 0, 0, 258, 0, 0, 1158, 259, 7, 8,
+ 92, 10, 232, 233, 234, 0, 235, 12, 1071, 260,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 15, 237, 238, 239, 16, 0, 240,
- 0, 17, 0, 241, 242, 0, 243, 19, 244, 245,
- 513, 0, 246, 247, 248, 249, 250, 21, 0, 22,
- -239, 0, 0, 0, 0, 0, 0, 0, 251, 0,
- 0, 850, 0, 0, 0, 0, 0, 0, 0, 253,
- 254, 851, 0, 0, 0, 0, 0, 256, 257, 258,
- 0, 516, 0, 0, 852, 518, 0, 0, 260, 357,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 355,
- 261, 7, 8, 92, 10, 233, 234, 235, 356, 236,
- 12, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 15, 237, 238, 239, 16,
- 0, 240, 0, 17, 0, 241, 242, 0, 243, 19,
- 244, 245, 0, 0, 246, 247, 248, 249, 250, 21,
- 0, 22, 0, 0, 0, 0, 0, 0, 0, 0,
- 251, 0, 0, 252, 0, 0, 0, 0, 0, 0,
- 0, 253, 254, 255, 0, 0, 0, 0, 0, 256,
- 257, 258, 0, 0, 0, 0, 259, 0, 0, 0,
- 260, 357, 0, 0, 0, 0, 0, 0, 0, 0,
- -667, 638, 261, 7, 8, 92, 10, 233, 234, 235,
- 356, 236, 12, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 15, 237, 238,
- 239, 16, 0, 240, 0, 17, 0, 241, 242, 0,
- 243, 19, 244, 245, 0, 0, 246, 247, 248, 249,
- 250, 21, 0, 22, 0, 0, 0, 0, 0, 0,
- 0, 0, 251, 0, 0, 252, 0, 0, 0, 0,
- 0, 0, 0, 253, 254, 255, 0, 0, 0, 0,
- 0, 256, 257, 258, 0, 0, 0, 0, 259, 0,
- 0, 0, 260, 357, 0, 0, 0, 0, 0, 0,
- 0, 0, -667, 591, 261, 715, 716, 0, 10, 440,
- 234, 235, 0, 236, 12, 0, 0, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 22, 1159,
+ 0, 1160, 0, 0, 0, 0, 0, 250, 0, 0,
+ 251, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 196,
+ 0, 0, 8, 258, 10, 11, 0, 259, 0, 0,
+ 12, 0, 0, 0, 0, 0, 0, 0, 0, 260,
+ 0, 0, 0, 0, 0, 15, 0, 0, 0, 16,
+ 0, 0, 0, 17, 0, 197, 198, 0, 0, 0,
+ 0, 0, 199, 0, 0, 0, 0, 0, 0, 21,
+ 0, 93, 0, 200, 0, 201, 202, 203, 0, 204,
+ 205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
+ 215, 216, 217, 218, 219, 220, 221, 0, 0, 222,
+ 223, 224, 0, 455, 225, 7, 8, 226, 10, 232,
+ 233, 234, 0, 235, 12, 0, 0, 0, 0, 0,
+ 0, 0, 227, 0, 0, 0, 0, 0, 0, 15,
+ 236, 237, 238, 16, 0, 239, 0, 17, 0, 240,
+ 241, 0, 242, 19, 243, 244, 0, 0, 245, 246,
+ 247, 248, 249, 21, 0, 22, -237, 0, 0, 0,
+ 0, 0, 0, 0, 250, 0, 0, 251, 0, 0,
+ 0, 0, 0, 0, 0, 252, 253, 254, 0, 0,
+ 0, 0, 0, 255, 256, 257, 0, 0, 0, 0,
+ 258, 0, 0, 587, 259, 7, 8, 0, 10, 437,
+ 233, 234, 0, 235, 12, 0, 260, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 717, 592, 0, 0, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 718, 0, 591, 260, 715, 716, 0, 10, 440,
- 234, 235, 0, 236, 12, 830, 261, 0, 0, 0,
- 0, 1047, 0, 0, 0, 0, 0, 0, 0, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 717, 592, 0, 0, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 0, 0, 591, 260, 715, 716, 0, 10, 440,
- 234, 235, 0, 236, 12, -386, 261, 0, 0, 0,
- 0, 1047, 0, 0, 0, 0, 0, 0, 0, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 717, 592, 0, 0, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 0, 0, 1164, 260, 7, 8, 92, 10, 233,
- 234, 235, 0, 236, 12, 1077, 261, 0, 0, 0,
+ 236, 237, 238, 16, 0, 239, 0, 17, 0, 240,
+ 241, 0, 242, 19, 243, 244, 0, 0, 245, 246,
+ 247, 248, 249, 21, 0, 22, 588, 0, 0, 0,
+ 0, 0, 0, 0, 250, 0, 0, 251, 0, 0,
+ 0, 0, 0, 0, 0, 252, 253, 254, 0, 0,
+ 0, 0, 0, 255, 256, 257, 0, 0, 0, 0,
+ 258, 0, 0, 455, 259, 7, 8, 0, 10, 232,
+ 233, 234, 0, 235, 12, 0, 260, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 22, 1165, 0, 1166, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 0, 0, 591, 260, 715, 716, 0, 10, 440,
- 234, 235, 0, 236, 12, 0, 261, 0, 0, 0,
+ 236, 237, 238, 16, 0, 239, 0, 17, 0, 240,
+ 241, 0, 242, 19, 243, 244, 0, 0, 245, 246,
+ 247, 248, 249, 21, 0, 22, -237, 0, 0, 0,
+ 0, 0, 0, 0, 250, 0, 0, 1177, 0, 0,
+ 0, 0, 0, 0, 0, 252, 253, 1178, 0, 0,
+ 0, 0, 0, 255, 256, 257, 0, 0, 0, 0,
+ 1179, 0, 0, 1229, 259, 7, 8, 0, 10, 232,
+ 233, 234, 0, 235, 12, 0, 260, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 717, 592, 0, 0, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 718, 197, 0, 260, 8, 0, 10, 11, 0,
- 0, 0, 0, 12, 0, 0, 261, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 15, 0,
- 0, 0, 16, 0, 0, 0, 17, 0, 198, 199,
- 0, 0, 0, 0, 0, 200, 0, 0, 0, 0,
- 0, 0, 21, 0, 93, 0, 201, 0, 202, 203,
- 204, 0, 205, 206, 207, 208, 209, 210, 211, 212,
- 213, 214, 215, 216, 217, 218, 219, 220, 221, 222,
- 0, 0, 223, 224, 225, 0, 458, 226, 7, 8,
- 227, 10, 233, 234, 235, 0, 236, 12, 0, 0,
- 0, 0, 0, 0, 0, 228, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, -239,
- 0, 0, 0, 0, 0, 0, 0, 251, 0, 0,
- 252, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 255, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 259, 0, 0, 591, 260, 7, 8,
- 0, 10, 440, 234, 235, 0, 236, 12, 0, 261,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, 592,
- 0, 0, 0, 0, 0, 0, 0, 251, 0, 0,
- 252, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 255, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 259, 0, 0, 725, 260, 7, 8,
- 0, 10, 440, 234, 235, 0, 236, 12, 0, 261,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, 0,
- 0, 0, 0, 0, 0, -657, 0, 251, 0, 0,
- 252, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 255, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 259, 0, 0, 458, 260, 7, 8,
- 0, 10, 233, 234, 235, 0, 236, 12, 0, 261,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, -239,
- 0, 0, 0, 0, 0, 0, 0, 251, 0, 0,
- 895, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 896, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 897, 0, 0, 458, 260, 7, 8,
- 0, 10, 233, 234, 235, 0, 236, 12, 0, 261,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, -239,
- 0, 0, 0, 0, 0, 0, 0, 251, 0, 0,
- 1183, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 1184, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 1185, 0, 0, 1235, 260, 7, 8,
- 0, 10, 233, 234, 235, 0, 236, 12, 0, 261,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, 0,
- 0, -139, 0, 0, 0, 0, 0, 251, 0, 0,
- 252, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 255, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 259, 0, 0, 725, 260, 7, 8,
- 0, 10, 440, 234, 235, 0, 236, 12, 0, 261,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, 0,
- 0, 0, 0, 0, 0, 0, 0, 251, 0, 0,
- 252, 0, 0, 0, 0, 0, 0, 0, 253, 254,
- 255, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 259, 0, 0, 0, 260, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, -657, 804, 261,
- 7, 8, 0, 10, 440, 234, 235, 0, 236, 12,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 15, 237, 238, 239, 16, 0,
- 240, 0, 17, 0, 241, 242, 0, 243, 19, 244,
- 245, 0, 0, 246, 247, 248, 249, 250, 21, 0,
- 22, 0, 0, 0, 0, 0, 0, 0, 0, 251,
- 0, 0, 252, 0, 0, 0, 0, 0, 0, 0,
- 253, 254, 255, 0, 0, 0, 0, 0, 256, 257,
- 258, 0, 0, 0, 0, 259, 0, 0, 806, 260,
- 7, 8, 0, 10, 440, 234, 235, 0, 236, 12,
- 0, 261, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 15, 237, 238, 239, 16, 0,
- 240, 0, 17, 0, 241, 242, 0, 243, 19, 244,
- 245, 0, 0, 246, 247, 248, 249, 250, 21, 0,
- 22, 0, 0, 0, 0, 0, 0, 0, 0, 251,
- 0, 0, 252, 0, 0, 0, 0, 0, 0, 0,
- 253, 254, 255, 0, 0, 0, 0, 0, 256, 257,
- 258, 0, 0, 0, 0, 259, 0, 7, 8, 260,
- 10, 440, 234, 235, 0, 236, 12, 0, 0, 0,
- 0, 261, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 0, 0,
- 246, 247, 248, 249, 250, 21, 0, 22, 0, 0,
- 0, 0, 0, 0, 0, 0, 251, 0, 0, 252,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 255,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 0,
- 0, 0, 259, 0, 0, 0, 260, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 261, 764,
- 971, 972, 92, 10, 233, 234, 235, 0, 236, 12,
- 973, 0, 974, 975, 976, 977, 978, 979, 980, 981,
- 982, 983, 13, 14, 15, 237, 238, 239, 16, 0,
- 240, 0, 17, 0, 241, 242, 0, 243, 19, 244,
- 245, 0, 0, 246, 247, 248, 249, 250, 21, 0,
- 984, 349, 0, 985, 0, 0, 0, 0, 0, 251,
- 0, 0, 252, 0, 0, 0, 0, 0, 0, 0,
- 253, 254, 255, 0, 0, 0, 0, 0, 256, 257,
- 258, 0, 0, 0, 0, 259, 0, 986, 0, 260,
+ 236, 237, 238, 16, 0, 239, 0, 17, 0, 240,
+ 241, 0, 242, 19, 243, 244, 0, 0, 245, 246,
+ 247, 248, 249, 21, 0, 22, 0, 0, -139, 0,
+ 0, 0, 0, 0, 250, 0, 0, 251, 0, 0,
+ 0, 0, 0, 0, 0, 252, 253, 254, 0, 0,
+ 0, 0, 0, 255, 256, 257, 0, 0, 0, 0,
+ 258, 0, 0, 721, 259, 7, 8, 0, 10, 437,
+ 233, 234, 0, 235, 12, 0, 260, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 15,
+ 236, 237, 238, 16, 0, 239, 0, 17, 0, 240,
+ 241, 0, 242, 19, 243, 244, 0, 0, 245, 246,
+ 247, 248, 249, 21, 0, 22, 0, 0, 0, 0,
+ 0, 0, 0, 0, 250, 0, 0, 251, 0, 0,
+ 0, 0, 0, 0, 0, 252, 253, 254, 0, 0,
+ 0, 0, 0, 255, 256, 257, 0, 0, 0, 0,
+ 258, 0, 0, 0, 259, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, -656, 800, 260, 7, 8, 0,
+ 10, 437, 233, 234, 0, 235, 12, 475, 476, 477,
+ 478, 479, 480, 481, 482, 483, 484, 485, 486, 487,
+ 0, 15, 236, 237, 238, 16, 0, 239, 0, 17,
+ 0, 240, 241, 0, 242, 19, 243, 244, 0, 0,
+ 245, 246, 247, 248, 249, 21, 0, 22, 0, 0,
+ 0, 0, 0, 0, 0, 0, 250, 0, 0, 251,
+ 0, 0, 0, 0, 0, 0, 0, 252, 253, 254,
+ 0, 0, 0, 0, 0, 255, 256, 257, 0, 0,
+ 0, 0, 258, 0, 0, 802, 259, 7, 8, 0,
+ 10, 437, 233, 234, 0, 235, 12, 0, 260, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 1116, 261, 971, 972, 92, 10, 233, 234, 235, 0,
- 236, 12, 973, 0, 974, 975, 976, 977, 978, 979,
- 980, 981, 982, 983, 13, 14, 15, 237, 238, 239,
- 16, 0, 240, 0, 17, 0, 241, 242, 0, 243,
- 19, 244, 245, 0, 0, 246, 247, 248, 249, 250,
- 21, 0, 984, 349, 0, 985, 0, 0, 0, 0,
- 0, 251, 0, 0, 252, 0, 0, 0, 0, 0,
- 0, 0, 253, 254, 255, 0, 0, 0, 0, 0,
- 256, 257, 258, 0, 0, 0, 0, 259, 0, 986,
- 0, 260, 971, 972, 92, 10, 233, 234, 235, 0,
- 236, 12, 973, 261, 974, 975, 976, 977, 978, 979,
- 980, 981, 982, 983, 13, 14, 15, 237, 238, 239,
- 16, 0, 240, 0, 17, 0, 241, 242, 0, 243,
- 19, 244, 245, 0, 0, 246, 247, 248, 249, 250,
- 21, 0, 984, 1276, 0, 985, 0, 0, 0, 0,
- 0, 251, 0, 0, 252, 0, 0, 0, 0, 0,
- 0, 0, 253, 254, 255, 0, 0, 0, 0, 0,
- 256, 257, 258, 0, 0, 0, 0, 259, 0, 986,
- 0, 260, 971, 972, 92, 10, 233, 234, 235, 0,
- 236, 12, 973, 261, 974, 975, 976, 977, 978, 979,
- 980, 981, 982, 983, 13, 14, 15, 237, 238, 239,
- 16, 0, 240, 0, 17, 0, 241, 242, 0, 243,
- 19, 244, 245, 0, 0, 246, 247, 248, 249, 250,
- 21, 0, 984, 0, 0, 985, 0, 0, 0, 0,
- 0, 251, 0, 0, 252, 0, 0, 0, 0, 0,
- 0, 0, 253, 254, 255, 0, 0, 0, 0, 0,
- 256, 257, 258, 0, 0, 0, 0, 259, 0, 986,
- 0, 260, 7, 8, 92, 10, 233, 234, 235, 356,
- 236, 12, 0, 261, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 15, 237, 238, 239,
- 16, 0, 240, 0, 17, 0, 241, 242, 0, 243,
- 19, 244, 245, 513, 0, 246, 247, 248, 249, 250,
- 21, 0, 22, 0, 0, 0, 0, 0, 0, 0,
- 0, 251, 0, 0, 790, 0, 0, 0, 0, 0,
- 0, 0, 253, 254, 791, 0, 0, 0, 0, 0,
- 256, 257, 258, 0, 516, 0, 0, 792, 518, 0,
- 0, 260, 357, 7, 8, 92, 10, 233, 234, 235,
- 356, 236, 12, 261, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 15, 237, 238,
- 239, 16, 0, 240, 0, 17, 0, 241, 242, 0,
- 243, 19, 244, 245, 513, 0, 246, 247, 248, 249,
- 250, 21, 0, 22, 0, 0, 0, 0, 0, 0,
- 0, 0, 251, 0, 0, 850, 0, 0, 0, 0,
- 0, 0, 0, 253, 254, 851, 0, 0, 0, 0,
- 0, 256, 257, 258, 0, 516, 0, 0, 852, 518,
- 0, 0, 260, 357, 7, 8, 0, 10, 233, 234,
- 235, 0, 236, 12, 261, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 15, 237,
- 238, 239, 16, 0, 240, 0, 17, 0, 241, 242,
- 0, 243, 19, 244, 245, 513, 0, 246, 247, 248,
- 249, 250, 21, 0, 22, 0, 0, 0, 0, 0,
- 0, 0, 0, 251, 0, 0, 790, 0, 0, 0,
- 0, 0, 0, 0, 253, 254, 791, 0, 0, 0,
- 0, 0, 256, 257, 258, 0, 516, 0, 0, 792,
- 518, 7, 8, 0, 10, 233, 234, 235, 0, 236,
- 12, 0, 0, 0, 0, 261, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 15, 237, 238, 239, 16,
- 0, 240, 0, 17, 0, 241, 242, 0, 243, 19,
- 244, 245, 513, 0, 246, 247, 248, 249, 250, 21,
+ 0, 15, 236, 237, 238, 16, 0, 239, 0, 17,
+ 0, 240, 241, 0, 242, 19, 243, 244, 0, 0,
+ 245, 246, 247, 248, 249, 21, 0, 22, 0, 0,
+ 0, 0, 0, 0, 0, 0, 250, 0, 0, 251,
+ 0, 0, 0, 0, 0, 0, 0, 252, 253, 254,
+ 0, 0, 0, 0, 0, 255, 256, 257, 0, 0,
+ 0, 0, 258, 0, 7, 8, 259, 10, 437, 233,
+ 234, 0, 235, 12, 0, 0, 0, 0, 260, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 15, 236,
+ 237, 238, 16, 0, 239, 0, 17, 0, 240, 241,
+ 0, 242, 19, 243, 244, 0, 0, 245, 246, 247,
+ 248, 249, 21, 0, 22, 0, 0, 0, 0, 0,
+ 0, 0, 0, 250, 0, 0, 251, 0, 0, 0,
+ 0, 0, 0, 0, 252, 253, 254, 0, 0, 0,
+ 0, 0, 255, 256, 257, 0, 0, 0, 0, 258,
+ 0, 0, 0, 259, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 260, 760, 966, 967, 92,
+ 10, 232, 233, 234, 0, 235, 12, 968, 0, 969,
+ 970, 971, 972, 973, 974, 975, 976, 977, 978, 13,
+ 14, 15, 236, 237, 238, 16, 0, 239, 0, 17,
+ 0, 240, 241, 0, 242, 19, 243, 244, 0, 0,
+ 245, 246, 247, 248, 249, 21, 0, 979, 347, 0,
+ 980, 0, 0, 0, 0, 0, 250, 0, 0, 251,
+ 0, 0, 0, 0, 0, 0, 0, 252, 253, 254,
+ 0, 0, 0, 0, 0, 255, 256, 257, 0, 0,
+ 0, 0, 258, 0, 981, 0, 259, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1110, 260, 966,
+ 967, 92, 10, 232, 233, 234, 0, 235, 12, 968,
+ 0, 969, 970, 971, 972, 973, 974, 975, 976, 977,
+ 978, 13, 14, 15, 236, 237, 238, 16, 0, 239,
+ 0, 17, 0, 240, 241, 0, 242, 19, 243, 244,
+ 0, 0, 245, 246, 247, 248, 249, 21, 0, 979,
+ 347, 0, 980, 0, 0, 0, 0, 0, 250, 0,
+ 0, 251, 0, 0, 0, 0, 0, 0, 0, 252,
+ 253, 254, 0, 0, 0, 0, 0, 255, 256, 257,
+ 0, 0, 0, 0, 258, 0, 981, 0, 259, 966,
+ 967, 92, 10, 232, 233, 234, 0, 235, 12, 968,
+ 260, 969, 970, 971, 972, 973, 974, 975, 976, 977,
+ 978, 13, 14, 15, 236, 237, 238, 16, 0, 239,
+ 0, 17, 0, 240, 241, 0, 242, 19, 243, 244,
+ 0, 0, 245, 246, 247, 248, 249, 21, 0, 979,
+ 1270, 0, 980, 0, 0, 0, 0, 0, 250, 0,
+ 0, 251, 0, 0, 0, 0, 0, 0, 0, 252,
+ 253, 254, 0, 0, 0, 0, 0, 255, 256, 257,
+ 0, 0, 0, 0, 258, 0, 981, 0, 259, 966,
+ 967, 92, 10, 232, 233, 234, 0, 235, 12, 968,
+ 260, 969, 970, 971, 972, 973, 974, 975, 976, 977,
+ 978, 13, 14, 15, 236, 237, 238, 16, 0, 239,
+ 0, 17, 0, 240, 241, 0, 242, 19, 243, 244,
+ 0, 0, 245, 246, 247, 248, 249, 21, 0, 979,
+ 0, 0, 980, 0, 0, 0, 0, 0, 250, 0,
+ 0, 251, 0, 0, 0, 0, 0, 0, 0, 252,
+ 253, 254, 0, 0, 0, 0, 0, 255, 256, 257,
+ 0, 0, 0, 0, 258, 0, 981, 0, 259, 7,
+ 8, 92, 10, 232, 233, 234, 354, 235, 12, 0,
+ 260, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 15, 236, 237, 238, 16, 0, 239,
+ 0, 17, 0, 240, 241, 0, 242, 19, 243, 244,
+ 510, 0, 245, 246, 247, 248, 249, 21, 0, 22,
+ 0, 0, 0, 0, 0, 0, 0, 0, 250, 0,
+ 0, 786, 0, 0, 0, 0, 0, 0, 0, 252,
+ 253, 787, 0, 0, 0, 0, 0, 255, 256, 257,
+ 0, 513, 0, 0, 788, 515, 0, 0, 259, 355,
+ 7, 8, 92, 10, 232, 233, 234, 354, 235, 12,
+ 260, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 15, 236, 237, 238, 16, 0,
+ 239, 0, 17, 0, 240, 241, 0, 242, 19, 243,
+ 244, 510, 0, 245, 246, 247, 248, 249, 21, 0,
+ 22, 0, 0, 0, 0, 0, 0, 0, 0, 250,
+ 0, 0, 845, 0, 0, 0, 0, 0, 0, 0,
+ 252, 253, 846, 0, 0, 0, 0, 0, 255, 256,
+ 257, 0, 513, 0, 0, 847, 515, 0, 0, 259,
+ 355, 7, 8, 0, 10, 232, 233, 234, 0, 235,
+ 12, 260, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 15, 236, 237, 238, 16,
+ 0, 239, 0, 17, 0, 240, 241, 0, 242, 19,
+ 243, 244, 510, 0, 245, 246, 247, 248, 249, 21,
0, 22, 0, 0, 0, 0, 0, 0, 0, 0,
- 251, 0, 0, 850, 0, 0, 0, 0, 0, 0,
- 0, 253, 254, 851, 0, 0, 0, 0, 0, 256,
- 257, 258, 0, 516, 0, 0, 852, 518, 7, 8,
- 0, 10, 233, 234, 235, 0, 236, 12, 0, 0,
- 0, 0, 261, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 15, 237, 238, 239, 16, 0, 240, 0,
- 17, 0, 241, 242, 0, 243, 19, 244, 245, 0,
- 0, 246, 247, 248, 249, 250, 21, 0, 22, 0,
- 0, 0, 0, 0, 0, 0, 0, 251, 0, 0,
- 252, 0, 0, 0, 0, 305, 0, 0, 253, 254,
- 255, 0, 0, 0, 0, 0, 256, 257, 258, 0,
- 0, 0, 0, 259, 0, 7, 8, 260, 10, 440,
- 234, 235, 0, 236, 12, 0, 0, 0, 0, 261,
+ 250, 0, 0, 786, 0, 0, 0, 0, 0, 0,
+ 0, 252, 253, 787, 0, 0, 0, 0, 0, 255,
+ 256, 257, 0, 513, 0, 0, 788, 515, 7, 8,
+ 0, 10, 232, 233, 234, 0, 235, 12, 0, 0,
+ 0, 0, 260, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 510,
+ 0, 245, 246, 247, 248, 249, 21, 0, 22, 0,
+ 0, 0, 0, 0, 0, 0, 0, 250, 0, 0,
+ 845, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 846, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 513, 0, 0, 847, 515, 7, 8, 0, 10, 232,
+ 233, 234, 0, 235, 12, 0, 0, 0, 0, 260,
0, 0, 0, 0, 0, 0, 0, 0, 0, 15,
- 237, 238, 239, 16, 0, 240, 0, 17, 0, 241,
- 242, 0, 243, 19, 244, 245, 0, 0, 246, 247,
- 248, 249, 250, 21, 0, 22, 0, 0, 1093, 0,
- 0, 0, 0, 0, 251, 0, 0, 252, 0, 0,
- 0, 0, 0, 0, 0, 253, 254, 255, 0, 0,
- 0, 0, 0, 256, 257, 258, 0, 0, 0, 0,
- 259, 0, 7, 8, 260, 10, 233, 234, 235, 0,
- 236, 12, 0, 0, 0, 0, 261, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 15, 237, 238, 239,
- 16, 0, 240, 0, 17, 0, 241, 242, 0, 243,
- 19, 244, 245, 0, 0, 246, 247, 248, 249, 250,
- 21, 0, 22, 0, 0, 0, 0, 0, 0, 0,
- 0, 251, 0, 0, 252, 0, 0, 0, 0, 0,
- 0, 0, 253, 254, 255, 0, 0, 0, 0, 0,
- 256, 257, 258, 0, 0, 0, 0, 259, 0, 7,
- 8, 260, 10, 440, 234, 235, 0, 236, 12, 0,
- 0, 0, 0, 261, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 15, 237, 238, 239, 16, 0, 240,
- 0, 17, 0, 241, 242, 0, 243, 19, 244, 245,
- 0, 0, 246, 247, 248, 249, 250, 21, 0, 22,
- 466, 0, 0, 0, 0, 0, 0, 0, 251, 0,
- 0, 252, 0, 0, 0, 0, 0, 0, 0, 253,
- 254, 255, 0, 0, 0, 0, 0, 256, 257, 258,
- 0, 0, 7, 8, 467, 10, 440, 234, 235, 0,
- 236, 12, 0, 0, 0, 0, 0, 0, 0, 0,
- 261, 0, 0, 0, 0, 0, 15, 237, 238, 239,
- 16, 0, 240, 0, 17, 0, 241, 242, 0, 243,
- 19, 244, 245, 0, 0, 246, 247, 248, 249, 250,
+ 236, 237, 238, 16, 0, 239, 0, 17, 0, 240,
+ 241, 0, 242, 19, 243, 244, 510, 0, 245, 246,
+ 247, 248, 249, 21, 0, 22, 0, 0, 0, 0,
+ 0, 0, 0, 0, 250, 0, 0, 940, 0, 0,
+ 0, 0, 0, 0, 0, 252, 253, 941, 0, 0,
+ 0, 0, 0, 255, 256, 257, 0, 513, 0, 0,
+ 788, 515, 7, 8, 0, 10, 232, 233, 234, 0,
+ 235, 12, 0, 0, 0, 0, 260, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 15, 236, 237, 238,
+ 16, 0, 239, 0, 17, 0, 240, 241, 0, 242,
+ 19, 243, 244, 0, 0, 245, 246, 247, 248, 249,
21, 0, 22, 0, 0, 0, 0, 0, 0, 0,
- 0, 251, 0, 0, 252, 0, 0, 0, 0, 0,
- 0, 0, 253, 254, 255, 0, 0, 0, 0, 0,
- 256, 257, 258, 0, 0, 0, 0, 259, 503, 7,
- 8, 0, 10, 440, 234, 235, 0, 236, 12, 0,
- 0, 0, 0, 261, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 15, 237, 238, 239, 16, 0, 240,
- 0, 17, 0, 241, 242, 0, 243, 19, 244, 245,
- 0, 0, 246, 247, 248, 249, 250, 21, 0, 22,
- 0, 0, 0, 0, 0, 0, 0, 0, 251, 0,
- 0, 252, 0, 0, 0, 0, 0, 0, 0, 253,
- 254, 255, 0, 0, 0, 0, 0, 256, 257, 258,
- 0, 0, 0, 0, 259, 0, 7, 701, 260, 10,
- 440, 234, 235, 0, 236, 12, 0, 0, 0, 0,
- 261, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 15, 237, 238, 239, 16, 0, 240, 0, 17, 0,
- 241, 242, 0, 243, 19, 244, 245, 0, 0, 246,
- 247, 248, 249, 250, 21, 0, 22, 0, 0, 0,
- 0, 0, 0, 0, 0, 251, 0, 0, 252, 0,
- 0, 0, 0, 0, 0, 0, 253, 254, 255, 0,
- 0, 0, 0, 0, 256, 257, 258, 0, 0, 0,
- 0, 259, 0, 7, 8, 260, 10, 440, 234, 235,
- 0, 236, 12, 0, 0, 0, 0, 261, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 15, 237, 238,
- 239, 16, 0, 240, 0, 17, 0, 241, 242, 0,
- 243, 19, 244, 245, 0, 0, 246, 247, 248, 249,
- 250, 21, 0, 22, 0, 0, 0, 0, 0, 0,
- 0, 0, 251, 0, 0, 895, 0, 0, 0, 0,
- 0, 0, 0, 253, 254, 896, 0, 0, 0, 0,
- 0, 256, 257, 258, 0, 0, 0, 0, 897, 0,
- 7, 8, 260, 10, 440, 234, 235, 0, 236, 12,
- 0, 0, 0, 0, 261, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 15, 237, 238, 239, 16, 0,
- 240, 0, 17, 0, 241, 242, 0, 243, 19, 244,
- 245, 0, 0, 246, 247, 248, 249, 250, 21, 0,
- 22, 0, 0, 0, 0, 0, 0, 0, 0, 251,
- 0, 0, 1183, 0, 0, 0, 0, 0, 0, 0,
- 253, 254, 1184, 0, 0, 0, 0, 0, 256, 257,
- 258, 0, 0, 0, 0, 1185, 0, 1248, 8, 260,
- 10, 440, 234, 235, 0, 236, 12, 0, 0, 0,
- 0, 261, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 0, 0,
- 246, 247, 248, 249, 250, 21, 0, 22, 0, 0,
- 0, 0, 0, 0, 0, 0, 251, 0, 0, 252,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 255,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 0,
- 0, 0, 259, 0, 7, 8, 260, 10, 440, 234,
- 235, 0, 236, 12, 0, 0, 0, 0, 261, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 15, 237,
- 238, 239, 16, 0, 240, 0, 17, 0, 241, 242,
- 0, 243, 19, 244, 245, 0, 0, 246, 247, 248,
- 249, 250, 21, 0, 22, 0, 0, 0, 0, 0,
- 0, 0, 0, 251, 0, 0, 252, 0, 0, 0,
- 0, 0, 0, 0, 253, 254, 255, 0, 0, 0,
- 0, 0, 256, 257, 258, 0, 0, 7, 8, 259,
- 10, 440, 234, 235, 0, 236, 12, 0, 0, 0,
- 0, 0, 0, 0, 0, 261, 0, 0, 0, 0,
- 0, 15, 237, 238, 239, 16, 0, 240, 0, 17,
- 0, 241, 242, 0, 243, 19, 244, 245, 0, 0,
- 246, 247, 248, 249, 250, 21, 0, 22, 0, 0,
- 0, 0, 0, 0, 0, 0, 251, 0, 0, 895,
- 0, 0, 0, 0, 0, 0, 0, 253, 254, 896,
- 0, 0, 0, 0, 0, 256, 257, 258, 0, 0,
- 7, 8, 897, 10, 233, 234, 235, 0, 236, 12,
- 0, 0, 0, 0, 0, 0, 0, 0, 261, 0,
- 0, 0, 0, 0, 15, 237, 238, 239, 16, 0,
- 240, 0, 17, 0, 241, 242, 0, 243, 19, 244,
- 245, 0, 0, 246, 247, 248, 249, 250, 21, 0,
- 22, 0, 0, 0, 0, 0, 0, 0, 0, 251,
- 0, 0, 1183, 0, 0, 0, 0, 0, 0, 0,
- 253, 254, 1184, 0, 0, 0, 0, 0, 256, 257,
- 258, 0, 0, 7, 8, 1185, 10, 440, 234, 235,
- 0, 236, 12, 0, 0, 0, 0, 0, 0, 0,
- 0, 261, 0, 0, 0, 0, 0, 15, 237, 0,
- 0, 16, 0, 240, 0, 17, 0, 241, 242, 0,
- 243, 19, 244, 245, 0, 0, 246, 247, 248, 249,
- 250, 21, 0, 22, 0, 0, 0, 0, 0, 0,
- 0, 0, 251, 0, 0, 252, 0, 0, 0, 0,
- 0, 0, 0, 253, 254, 255, 0, 0, 0, 0,
- 0, 256, 257, 258, 0, 0, 7, 8, 441, 10,
- 440, 234, 235, 0, 236, 12, 0, 0, 0, 0,
- 0, 0, 0, 0, 261, 0, 0, 0, 0, 0,
- 15, 237, 0, 0, 16, 0, 240, 0, 17, 0,
- 241, 242, 0, 243, 19, 244, 245, 0, 0, 246,
- 247, 248, 249, 250, 21, 0, 22, 0, 0, 0,
- 0, 0, 0, 0, 0, 251, 0, 0, 252, 0,
- 0, 0, 0, 0, 0, 0, 253, 254, 255, 0,
- 0, 0, 0, 0, 256, 257, 258, 0, 0, 0,
- 0, 444, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 546, 0, 469, 470, 471, 261, 472, 473,
- 474, 475, 476, 477, 478, 479, 480, 481, 482, 483,
- 484, 485, 486, 487, 488, 489, 490, 469, 470, 471,
- 1210, 472, 473, 474, 475, 476, 477, 478, 479, 480,
- 481, 482, 483, 484, 485, 486, 487, 488, 489, 490,
- 469, 470, 471, 1259, 472, 473, 474, 475, 476, 477,
+ 0, 250, 0, 0, 251, 0, 0, 0, 0, 304,
+ 0, 0, 252, 253, 254, 0, 0, 0, 0, 0,
+ 255, 256, 257, 0, 0, 0, 0, 258, 0, 7,
+ 8, 259, 10, 437, 233, 234, 0, 235, 12, 0,
+ 0, 0, 0, 260, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 15, 236, 237, 238, 16, 0, 239,
+ 0, 17, 0, 240, 241, 0, 242, 19, 243, 244,
+ 0, 0, 245, 246, 247, 248, 249, 21, 0, 22,
+ 0, 0, 1087, 0, 0, 0, 0, 0, 250, 0,
+ 0, 251, 0, 0, 0, 0, 0, 0, 0, 252,
+ 253, 254, 0, 0, 0, 0, 0, 255, 256, 257,
+ 0, 0, 0, 0, 258, 0, 7, 8, 259, 10,
+ 232, 233, 234, 0, 235, 12, 0, 0, 0, 0,
+ 260, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 15, 236, 237, 238, 16, 0, 239, 0, 17, 0,
+ 240, 241, 0, 242, 19, 243, 244, 0, 0, 245,
+ 246, 247, 248, 249, 21, 0, 22, 0, 0, 0,
+ 0, 0, 0, 0, 0, 250, 0, 0, 251, 0,
+ 0, 0, 0, 0, 0, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 255, 256, 257, 0, 0, 0,
+ 0, 258, 0, 7, 8, 259, 10, 437, 233, 234,
+ 0, 235, 12, 0, 0, 0, 0, 260, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 15, 236, 237,
+ 238, 16, 0, 239, 0, 17, 0, 240, 241, 0,
+ 242, 19, 243, 244, 0, 0, 245, 246, 247, 248,
+ 249, 21, 0, 22, 463, 0, 0, 0, 0, 0,
+ 0, 0, 250, 0, 0, 251, 0, 0, 0, 0,
+ 0, 0, 0, 252, 253, 254, 0, 0, 0, 0,
+ 0, 255, 256, 257, 0, 0, 7, 8, 464, 10,
+ 437, 233, 234, 0, 235, 12, 0, 0, 0, 0,
+ 0, 0, 0, 0, 260, 0, 0, 0, 0, 0,
+ 15, 236, 237, 238, 16, 0, 239, 0, 17, 0,
+ 240, 241, 0, 242, 19, 243, 244, 0, 0, 245,
+ 246, 247, 248, 249, 21, 0, 22, 0, 0, 0,
+ 0, 0, 0, 0, 0, 250, 0, 0, 251, 0,
+ 0, 0, 0, 0, 0, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 255, 256, 257, 0, 0, 0,
+ 0, 258, 500, 7, 8, 0, 10, 437, 233, 234,
+ 0, 235, 12, 0, 0, 0, 0, 260, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 15, 236, 237,
+ 238, 16, 0, 239, 0, 17, 0, 240, 241, 0,
+ 242, 19, 243, 244, 0, 0, 245, 246, 247, 248,
+ 249, 21, 0, 22, 0, 0, 0, 0, 0, 0,
+ 0, 0, 250, 0, 0, 251, 0, 0, 0, 0,
+ 0, 0, 0, 252, 253, 254, 0, 0, 0, 0,
+ 0, 255, 256, 257, 0, 0, 0, 0, 258, 0,
+ 7, 697, 259, 10, 437, 233, 234, 0, 235, 12,
+ 0, 0, 0, 0, 260, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 15, 236, 237, 238, 16, 0,
+ 239, 0, 17, 0, 240, 241, 0, 242, 19, 243,
+ 244, 0, 0, 245, 246, 247, 248, 249, 21, 0,
+ 22, 0, 0, 0, 0, 0, 0, 0, 0, 250,
+ 0, 0, 251, 0, 0, 0, 0, 0, 0, 0,
+ 252, 253, 254, 0, 0, 0, 0, 0, 255, 256,
+ 257, 0, 0, 0, 0, 258, 0, 7, 8, 259,
+ 10, 437, 233, 234, 0, 235, 12, 0, 0, 0,
+ 0, 260, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 15, 236, 237, 238, 16, 0, 239, 0, 17,
+ 0, 240, 241, 0, 242, 19, 243, 244, 0, 0,
+ 245, 246, 247, 248, 249, 21, 0, 22, 0, 0,
+ 0, 0, 0, 0, 0, 0, 250, 0, 0, 890,
+ 0, 0, 0, 0, 0, 0, 0, 252, 253, 891,
+ 0, 0, 0, 0, 0, 255, 256, 257, 0, 0,
+ 0, 0, 258, 0, 7, 8, 259, 10, 437, 233,
+ 234, 0, 235, 12, 0, 0, 0, 0, 260, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 15, 236,
+ 237, 238, 16, 0, 239, 0, 17, 0, 240, 241,
+ 0, 242, 19, 243, 244, 0, 0, 245, 246, 247,
+ 248, 249, 21, 0, 22, 0, 0, 0, 0, 0,
+ 0, 0, 0, 250, 0, 0, 1177, 0, 0, 0,
+ 0, 0, 0, 0, 252, 253, 1178, 0, 0, 0,
+ 0, 0, 255, 256, 257, 0, 0, 0, 0, 1179,
+ 0, 1242, 8, 259, 10, 437, 233, 234, 0, 235,
+ 12, 0, 0, 0, 0, 260, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 15, 236, 237, 238, 16,
+ 0, 239, 0, 17, 0, 240, 241, 0, 242, 19,
+ 243, 244, 0, 0, 245, 246, 247, 248, 249, 21,
+ 0, 22, 0, 0, 0, 0, 0, 0, 0, 0,
+ 250, 0, 0, 251, 0, 0, 0, 0, 0, 0,
+ 0, 252, 253, 254, 0, 0, 0, 0, 0, 255,
+ 256, 257, 0, 0, 0, 0, 258, 0, 7, 8,
+ 259, 10, 437, 233, 234, 0, 235, 12, 0, 0,
+ 0, 0, 260, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 15, 236, 237, 238, 16, 0, 239, 0,
+ 17, 0, 240, 241, 0, 242, 19, 243, 244, 0,
+ 0, 245, 246, 247, 248, 249, 21, 0, 22, 0,
+ 0, 0, 0, 0, 0, 0, 0, 250, 0, 0,
+ 251, 0, 0, 0, 0, 0, 0, 0, 252, 253,
+ 254, 0, 0, 0, 0, 0, 255, 256, 257, 0,
+ 0, 7, 8, 258, 10, 437, 233, 234, 0, 235,
+ 12, 0, 0, 0, 0, 0, 0, 0, 0, 260,
+ 0, 0, 0, 0, 0, 15, 236, 237, 238, 16,
+ 0, 239, 0, 17, 0, 240, 241, 0, 242, 19,
+ 243, 244, 0, 0, 245, 246, 247, 248, 249, 21,
+ 0, 22, 0, 0, 0, 0, 0, 0, 0, 0,
+ 250, 0, 0, 890, 0, 0, 0, 0, 0, 0,
+ 0, 252, 253, 891, 0, 0, 0, 0, 0, 255,
+ 256, 257, 0, 0, 7, 8, 258, 10, 232, 233,
+ 234, 0, 235, 12, 0, 0, 0, 0, 0, 0,
+ 0, 0, 260, 0, 0, 0, 0, 0, 15, 236,
+ 237, 238, 16, 0, 239, 0, 17, 0, 240, 241,
+ 0, 242, 19, 243, 244, 0, 0, 245, 246, 247,
+ 248, 249, 21, 0, 22, 0, 0, 0, 0, 0,
+ 0, 0, 0, 250, 0, 0, 1177, 0, 0, 0,
+ 0, 0, 0, 0, 252, 253, 1178, 0, 0, 0,
+ 0, 0, 255, 256, 257, 0, 0, 7, 8, 1179,
+ 10, 437, 233, 234, 0, 235, 12, 0, 0, 0,
+ 0, 0, 0, 0, 0, 260, 0, 0, 0, 0,
+ 0, 15, 236, 0, 0, 16, 0, 239, 0, 17,
+ 0, 240, 241, 0, 242, 19, 243, 244, 0, 0,
+ 245, 246, 247, 248, 249, 21, 0, 22, 0, 0,
+ 0, 0, 0, 0, 0, 0, 250, 0, 0, 251,
+ 0, 0, 0, 0, 0, 0, 0, 252, 253, 254,
+ 0, 0, 0, 0, 0, 255, 256, 257, 0, 0,
+ 7, 8, 441, 10, 437, 233, 234, 0, 235, 12,
+ 0, 0, 0, 0, 0, 0, 0, 0, 260, 0,
+ 0, 0, 0, 0, 15, 236, 237, 238, 16, 0,
+ 239, 0, 17, 0, 240, 241, 0, 242, 19, 243,
+ 244, 0, 0, 245, 246, 247, 248, 249, 21, 0,
+ 22, 0, 7, 8, 158, 159, 160, 0, 0, 0,
+ 0, 12, 0, 0, 0, 0, 0, 7, 8, 151,
+ 10, 152, 0, 0, 0, 0, 12, 0, 255, 256,
+ 257, 0, 0, 0, 17, 258, 0, 0, 0, 259,
+ 19, 15, 0, 510, 0, 16, 0, 0, 0, 17,
+ 21, 260, 22, 0, 0, 19, 0, 0, 0, 0,
+ 0, 0, 0, 0, 603, 21, 0, 22, 0, 0,
+ 153, 0, 0, 0, 604, 0, 0, 0, 0, 24,
+ 0, 0, 26, 0, 513, 0, 0, 605, 515, 25,
+ 0, 7, 8, 92, 10, 11, 0, 26, 618, 0,
+ 12, 0, 27, 0, 0, 0, 0, 0, 655, 8,
+ 151, 10, 152, 0, 0, 15, 0, 12, 0, 16,
+ 0, 0, 0, 17, 0, 0, 0, 0, 0, 19,
+ 0, 0, 15, 0, 0, 0, 16, 0, 0, 21,
+ 17, 22, 0, 0, 0, 0, 19, 0, 0, 0,
+ 0, 0, 0, 24, 0, 0, 21, 0, 22, 0,
+ 0, 0, 0, 25, 0, 658, 0, 0, 0, 0,
+ 24, 26, 0, 0, 0, 0, 27, 0, 0, 0,
+ 25, 7, 8, 151, 10, 152, 0, 0, 26, 0,
+ 12, 0, 0, 27, 0, 0, 0, 0, 7, 8,
+ 151, 10, 152, 0, 0, 15, 0, 12, 0, 16,
+ 0, 0, 0, 17, 0, 0, 0, 0, 0, 19,
+ 0, 0, 15, 0, 0, 0, 16, 0, 0, 21,
+ 17, 22, 0, 0, 1099, 0, 19, 0, 0, 0,
+ 0, 0, 8, 24, 10, 184, 21, 0, 22, 0,
+ 12, 0, 0, 25, 0, 0, 0, 0, 0, 0,
+ 24, 26, 0, 0, 0, 15, 27, 0, 0, 16,
+ 25, 0, 0, 17, 0, 0, 0, 0, 26, 0,
+ 0, 0, 510, 27, 0, 0, 0, 0, 0, 21,
+ 0, 93, 0, 0, 0, 0, 0, 0, 0, 0,
+ 466, 467, 468, 511, 469, 470, 471, 472, 473, 474,
+ 475, 476, 477, 512, 479, 480, 481, 482, 483, 484,
+ 485, 486, 487, 513, 0, 0, 514, 515, 466, 467,
+ 468, 0, 469, 470, 471, 472, 473, 474, 475, 476,
+ 477, 478, 479, 480, 481, 482, 483, 484, 485, 486,
+ 487, 543, 682, 466, 467, 468, 0, 469, 470, 471,
+ 472, 473, 474, 475, 476, 477, 478, 479, 480, 481,
+ 482, 483, 484, 485, 486, 487, 1040, 466, 467, 468,
+ 0, 469, 470, 471, 472, 473, 474, 475, 476, 477,
478, 479, 480, 481, 482, 483, 484, 485, 486, 487,
- 488, 489, 490, 469, 470, 471, 0, 472, 473, 474,
+ 466, 467, 468, 1204, 469, 470, 471, 472, 473, 474,
475, 476, 477, 478, 479, 480, 481, 482, 483, 484,
- 485, 486, 487, 488, 489, 490, 469, 470, 471, 0,
- 472, 473, 474, 475, 476, 477, 478, 479, 480, 0,
- 482, 483, 484, 485, 486, 487, 488, 489, 490, 471,
- 0, 472, 473, 474, 475, 476, 477, 478, 479, 480,
- 481, 482, 483, 484, 485, 486, 487, 488, 489, 490,
+ 485, 486, 487, 466, 467, 468, 1253, 469, 470, 471,
+ 472, 473, 474, 475, 476, 477, 478, 479, 480, 481,
+ 482, 483, 484, 485, 486, 487, 466, 467, 468, 0,
+ 469, 470, 471, 472, 473, 474, 475, 476, 477, 478,
+ 479, 480, 481, 482, 483, 484, 485, 486, 487, 468,
+ 0, 469, 470, 471, 472, 473, 474, 475, 476, 477,
+ 478, 479, 480, 481, 482, 483, 484, 485, 486, 487,
+ 470, 471, 472, 473, 474, 475, 476, 477, 478, 479,
+ 480, 481, 482, 483, 484, 485, 486, 487, 472, 473,
474, 475, 476, 477, 478, 479, 480, 481, 482, 483,
- 484, 485, 486, 487, 488, 489, 490
+ 484, 485, 486, 487, 473, 474, 475, 476, 477, 478,
+ 479, 480, 481, 482, 483, 484, 485, 486, 487
};
static const short yycheck[] = { 4,
- 4, 118, 279, 137, 419, 349, 300, 12, 131, 132,
- 4, 285, 341, 300, 70, 20, 20, 108, 109, 24,
- 25, 12, 27, 392, 285, 266, 52, 300, 33, 33,
- 137, 87, 20, 71, 132, 130, 391, 137, 753, 44,
- 182, 46, 98, 162, 163, 155, 135, 52, 1161, 820,
- 993, 1189, 1052, 4, 59, 9, 56, 34, 34, 9,
- 44, 52, 9, 0, 1222, 70, 71, 1169, 51, 3,
- 4, 56, 77, 77, 1232, 60, 370, 60, 4, 0,
- 10, 410, 87, 370, 3, 4, 69, 44, 365, 77,
- 95, 96, 45, 98, 20, 36, 101, 97, 44, 104,
- 105, 62, 53, 108, 109, 110, 189, 33, 36, 10,
- 60, 95, 58, 1215, 1252, 120, 120, 122, 123, 53,
- 7, 48, 41, 10, 75, 55, 103, 103, 4, 4,
- 60, 88, 993, 137, 53, 140, 141, 142, 122, 1000,
- 1253, 75, 88, 1, 1302, 102, 12, 1285, 102, 518,
- 1150, 77, 102, 88, 55, 102, 75, 44, 7, 60,
- 302, 166, 103, 93, 83, 126, 443, 4, 55, 44,
- 55, 58, 102, 60, 88, 103, 51, 53, 53, 184,
- 184, 155, 143, 70, 4, 56, 52, 7, 959, 194,
- 65, 4, 93, 300, 120, 189, 54, 158, 287, 75,
- 75, 88, 89, 44, 919, 54, 93, 76, 3, 44,
- 85, 60, 186, 88, 89, 102, 53, 4, 103, 88,
- 89, 1334, 1335, 346, 347, 348, 231, 232, 155, 285,
- 99, 51, 103, 53, 272, 162, 163, 990, 75, 992,
- 53, 107, 51, 92, 344, 65, 56, 88, 346, 347,
- 345, 3, 4, 88, 89, 75, 339, 391, 184, 186,
- 69, 535, 75, 370, 3, 4, 53, 272, 137, 89,
- 4, 276, 44, 278, 279, 280, 395, 396, 69, 56,
- 44, 286, 92, 44, 391, 4, 396, 44, 7, 380,
- 381, 391, 44, 102, 252, 300, 300, 255, 44, 51,
- 258, 53, 286, 230, 423, 10, 264, 56, 663, 314,
- 66, 1172, 317, 1256, 53, 273, 88, 322, 401, 53,
- 1263, 326, 326, 44, 88, 654, 103, 88, 89, 85,
- 60, 88, 51, 51, 53, 55, 88, 460, 326, 439,
- 1055, 102, 88, 89, 56, 339, 65, 103, 55, 56,
- 55, 69, 279, 58, 103, 60, 75, 362, 363, 364,
- 365, 366, 56, 3, 4, 370, 370, 88, 1229, 55,
- 331, 376, 102, 378, 1317, 380, 381, 382, 362, 88,
- 364, 365, 102, 388, 44, 251, 54, 391, 93, 394,
- 259, 103, 397, 387, 150, 1256, 496, 60, 498, 499,
- 326, 41, 1263, 3, 4, 410, 69, 401, 56, 103,
- 517, 416, 417, 53, 419, 419, 102, 524, 51, 424,
- 789, 6, 7, 55, 60, 56, 1287, 12, 88, 89,
- 530, 300, 416, 788, 56, 75, 3, 4, 365, 6,
- 196, 41, 102, 83, 405, 450, 451, 452, 453, 54,
- 35, 51, 56, 53, 3, 4, 1317, 103, 27, 44,
- 60, 422, 500, 44, 55, 65, 102, 54, 395, 396,
- 102, 51, 103, 596, 41, 75, 55, 3, 4, 44,
- 60, 103, 56, 83, 102, 585, 53, 570, 88, 69,
- 448, 70, 41, 419, 823, 500, 423, 502, 596, 103,
- 54, 370, 609, 88, 53, 44, 60, 88, 615, 514,
- 515, 102, 517, 517, 808, 41, 83, 44, 92, 524,
- 524, 808, 391, 88, 798, 644, 75, 53, 284, 663,
- 556, 58, 55, 44, 83, 808, 102, 798, 867, 108,
- 109, 110, 3, 4, 5, 6, 7, 70, 103, 88,
- 555, 556, 308, 794, 102, 424, 663, 83, 3, 4,
- 929, 88, 89, 54, 647, 556, 55, 56, 685, 60,
- 44, 555, 441, 142, 35, 444, 570, 88, 89, 9,
- 449, 450, 451, 452, 453, 3, 4, 5, 6, 7,
- 51, 1, 53, 54, 463, 23, 102, 680, 467, 102,
- 466, 92, 607, 608, 609, 609, 51, 44, 53, 54,
- 615, 615, 92, 23, 88, 25, 26, 3, 4, 3,
- 1035, 58, 32, 55, 56, 51, 631, 632, 555, 634,
- 499, 60, 60, 977, 60, 53, 105, 98, 99, 100,
- 69, 1, 97, 69, 54, 55, 56, 924, 58, 654,
- 60, 88, 388, 647, 788, 41, 756, 4, 663, 663,
- 55, 397, 37, 23, 54, 25, 26, 53, 60, 769,
- 60, 771, 32, 4, 51, 70, 51, 682, 6, 7,
- 436, 788, 92, 60, 12, 792, 680, 692, 693, 694,
- 556, 88, 69, 89, 54, 55, 56, 83, 58, 60,
- 60, 808, 92, 664, 51, 105, 53, 35, 669, 670,
- 925, 926, 673, 928, 88, 992, 55, 644, 65, 58,
- 51, 89, 53, 55, 56, 825, 592, 827, 75, 829,
- 23, 70, 92, 54, 65, 56, 25, 26, 845, 60,
- 1084, 1085, 798, 27, 75, 852, 88, 752, 692, 693,
- 694, 88, 843, 844, 1098, 682, 512, 69, 89, 850,
- 851, 54, 88, 56, 69, 58, 69, 60, 773, 69,
- 775, 527, 25, 26, 1118, 1119, 54, 782, 56, 25,
- 26, 786, 60, 788, 788, 790, 791, 792, 792, 9,
- 78, 79, 103, 798, 663, 878, 879, 55, 881, 55,
- 56, 54, 3, 808, 808, 810, 764, 60, 54, 1334,
- 1335, 380, 381, 382, 60, 3, 4, 55, 56, 3,
- 4, 1165, 102, 7, 108, 109, 110, 102, 54, 102,
- 56, 103, 790, 791, 60, 102, 841, 842, 843, 844,
- 845, 845, 55, 56, 849, 850, 851, 852, 852, 37,
- 38, 55, 56, 41, 236, 237, 54, 41, 142, 102,
- 44, 7, 867, 51, 58, 53, 102, 51, 102, 53,
- 1296, 1297, 877, 102, 4, 880, 58, 882, 882, 884,
- 105, 65, 12, 752, 878, 879, 102, 881, 44, 88,
- 20, 75, 850, 851, 24, 25, 105, 27, 32, 83,
- 105, 85, 105, 33, 88, 89, 102, 581, 4, 5,
- 102, 102, 873, 782, 44, 51, 46, 6, 105, 788,
- 925, 926, 52, 928, 88, 81, 82, 44, 55, 59,
- 86, 87, 88, 89, 58, 31, 58, 895, 896, 808,
- 36, 71, 4, 5, 58, 102, 56, 77, 56, 1226,
- 102, 56, 56, 958, 958, 51, 882, 53, 56, 58,
- 55, 635, 102, 1086, 102, 95, 96, 102, 834, 31,
- 88, 101, 646, 931, 36, 105, 105, 55, 108, 109,
- 110, 60, 88, 89, 55, 990, 991, 992, 55, 51,
- 120, 53, 122, 123, 25, 26, 60, 866, 1, 1004,
- 1005, 32, 1007, 88, 58, 102, 990, 70, 992, 102,
- 140, 141, 142, 70, 102, 884, 102, 70, 102, 102,
- 23, 102, 25, 26, 55, 56, 70, 58, 897, 32,
- 1035, 1035, 958, 102, 60, 60, 166, 5, 6, 7,
- 609, 55, 102, 1337, 12, 911, 615, 60, 1131, 1132,
- 1337, 54, 55, 56, 184, 58, 102, 60, 105, 102,
- 1177, 103, 102, 83, 194, 992, 1189, 35, 89, 1030,
- 1031, 105, 343, 44, 5, 6, 7, 105, 102, 102,
- 102, 12, 34, 4, 103, 102, 7, 105, 58, 92,
- 102, 847, 1183, 1184, 663, 102, 380, 381, 382, 1182,
- 966, 231, 232, 1108, 35, 1205, 102, 102, 58, 1035,
- 88, 88, 4, 5, 6, 7, 88, 983, 10, 88,
- 12, 88, 103, 44, 75, 76, 77, 78, 79, 1252,
- 51, 105, 53, 6, 60, 27, 102, 1131, 1132, 31,
- 102, 815, 272, 35, 65, 102, 1107, 102, 278, 279,
- 280, 105, 88, 259, 75, 285, 286, 3, 4, 51,
- 102, 53, 1285, 102, 85, 103, 1127, 88, 89, 102,
- 300, 1271, 102, 1039, 102, 60, 56, 56, 1183, 1184,
- 1185, 7, 54, 14, 314, 1179, 56, 317, 1182, 58,
- 102, 865, 322, 949, 102, 41, 326, 60, 44, 60,
- 874, 93, 27, 1286, 105, 51, 44, 53, 56, 883,
- 88, 341, 1078, 56, 60, 1338, 58, 88, 58, 65,
- 88, 102, 1227, 105, 15, 1183, 1184, 102, 102, 75,
- 1337, 58, 362, 363, 364, 365, 366, 83, 102, 56,
- 370, 103, 88, 1227, 56, 56, 376, 102, 378, 102,
- 380, 381, 382, 56, 56, 102, 9, 58, 388, 56,
- 56, 102, 3, 4, 394, 88, 7, 397, 56, 375,
- 55, 91, 102, 102, 843, 844, 845, 56, 102, 9,
- 410, 850, 851, 852, 109, 110, 416, 417, 102, 419,
- 58, 56, 1286, 102, 424, 88, 102, 1258, 102, 1226,
- 41, 3, 4, 44, 9, 7, 56, 0, 0, 119,
- 51, 2, 53, 328, 808, 120, 1185, 142, 823, 99,
- 450, 451, 452, 453, 65, 609, 120, 1150, 1160, 1191,
- 130, 615, 1337, 1337, 75, 441, 512, 1203, 444, 41,
- 446, 447, 83, 449, 85, 1019, 1020, 88, 89, 51,
- 463, 53, 1087, 4, 991, 626, 7, 1203, 1032, 1033,
- 592, 467, 803, 65, 688, 471, 867, 33, 33, 654,
- 500, 813, 502, 75, 4, 958, 417, 543, 882, 663,
- 880, 83, 801, 12, 514, 515, 88, 517, 500, 837,
- 20, 497, 1276, 44, 524, 1310, 4, 503, 6, 7,
- 51, 1312, 53, 33, 12, 535, 73, 74, 75, 76,
- 77, 78, 79, 884, 65, -1, 46, 10, -1, 27,
- -1, 370, -1, 31, 75, 555, 556, 35, -1, 59,
- -1, -1, 25, 26, 85, -1, -1, 88, 89, 32,
- -1, 71, -1, 51, -1, 53, 76, 77, -1, -1,
- -1, 44, -1, -1, -1, -1, 1130, -1, 88, 89,
- -1, -1, 55, 56, -1, 58, 96, 60, 1337, 99,
- -1, -1, -1, -1, -1, -1, -1, 607, 608, 609,
- 88, -1, -1, -1, 755, 615, -1, -1, -1, 4,
- 120, 6, 7, 123, -1, 88, 89, 12, -1, 92,
- 93, 631, 632, -1, 634, -1, -1, 137, -1, 102,
- -1, -1, 27, -1, -1, -1, 31, -1, -1, -1,
- 35, -1, 1196, 1197, 654, 1199, 1200, -1, -1, -1,
- -1, -1, -1, 663, -1, -1, 51, -1, 53, 1108,
- -1, 812, -1, -1, 1, -1, 3, 4, 5, 6,
- 7, -1, 682, -1, 184, 12, 381, 382, -1, 843,
- 844, 845, 692, 693, 694, -1, 850, 851, 852, -1,
- 27, -1, -1, -1, 31, -1, -1, -1, 35, 36,
- -1, -1, -1, -1, 41, -1, 857, -1, -1, -1,
- -1, -1, -1, -1, 51, -1, 53, -1, -1, 56,
- -1, 231, -1, 60, 4, -1, 6, 7, 65, -1,
- 137, -1, 12, -1, 1183, 1184, 1185, -1, 75, -1,
- -1, -1, 752, -1, -1, -1, 83, -1, -1, 259,
- -1, 88, 1306, -1, -1, 35, -1, -1, -1, 910,
- 911, -1, 272, 773, 44, 775, 103, -1, -1, -1,
- 280, 51, 782, 53, 760, -1, 786, -1, 788, -1,
- 790, 791, 792, -1, 71, 65, -1, -1, 798, 76,
- 300, -1, -1, -1, -1, 75, -1, -1, 808, -1,
- 810, 88, 89, -1, -1, 85, 792, -1, 88, 89,
- -1, -1, 99, 823, -1, 966, 326, -1, -1, 524,
- -1, -1, -1, 3, 4, -1, -1, -1, -1, -1,
- -1, 841, 842, 843, 844, 845, -1, -1, -1, 849,
- 850, 851, 852, -1, -1, -1, -1, -1, -1, -1,
- 137, 4, -1, 363, 7, -1, 366, 867, -1, -1,
- 370, 41, -1, -1, -1, -1, 852, 877, -1, -1,
- 880, 51, 882, 53, 884, -1, 56, -1, -1, -1,
- 866, 391, -1, -1, -1, 65, -1, -1, -1, 1040,
- -1, 44, -1, -1, 1045, 75, -1, -1, 51, -1,
- 53, -1, -1, 83, 609, -1, -1, 417, 88, 419,
- 615, 897, 65, -1, 424, 925, 926, -1, 928, -1,
- -1, -1, 75, -1, -1, -1, -1, -1, -1, -1,
- -1, 441, 85, -1, 444, 88, 89, 344, -1, 449,
- 450, 451, 452, 453, 1108, -1, -1, -1, 958, -1,
- -1, -1, 4, 463, 6, 7, -1, 467, 663, -1,
- 12, -1, -1, 24, 25, -1, -1, -1, -1, 1120,
- 1121, -1, 259, -1, -1, 27, -1, -1, -1, 31,
- 990, 991, 992, 35, 391, 272, -1, -1, -1, 499,
- 500, -1, 697, -1, 1004, 1005, 982, 1007, 1149, 51,
- -1, 53, 54, -1, -1, -1, -1, 517, -1, -1,
- 71, -1, -1, 300, 524, 76, -1, -1, -1, 1183,
- 1184, 1185, -1, 3, 4, 1035, -1, 88, 89, -1,
- -1, -1, 439, -1, -1, -1, 88, -1, 99, -1,
- 3, 4, -1, 1194, 7, -1, -1, 108, 109, -1,
- 1201, 1202, -1, -1, -1, 1041, 1042, 1043, 1044, 1210,
- -1, 41, -1, -1, -1, -1, -1, 1053, -1, -1,
- -1, 51, -1, 53, -1, -1, 137, -1, 41, 140,
- 141, 44, -1, 370, -1, 65, 791, 792, 51, 496,
- 53, 498, 499, -1, -1, 75, -1, -1, 1108, 609,
- -1, 1087, 65, 83, 391, 615, -1, -1, 88, 1095,
- -1, -1, 75, -1, -1, -1, -1, 524, 1269, 1270,
- 83, -1, 85, 530, -1, 88, 89, 71, 72, 73,
- 74, 75, 76, 77, 78, 79, -1, 424, -1, 844,
- 845, -1, -1, -1, -1, -1, 851, 852, -1, -1,
- -1, -1, -1, 663, 441, -1, -1, 444, -1, -1,
- -1, -1, 449, 450, 451, 452, 453, -1, -1, -1,
- -1, -1, -1, 1183, 1184, 1185, 463, -1, 585, -1,
- 467, -1, -1, 1169, 1, 1336, 3, 4, 5, 6,
- 7, 896, 897, -1, -1, 12, -1, -1, 259, 1185,
- -1, -1, -1, -1, 1190, 1191, -1, -1, 615, -1,
- 27, 272, 499, 500, 31, -1, -1, 1227, 35, 36,
- -1, -1, -1, -1, 41, -1, -1, -1, -1, 1215,
- 517, -1, -1, -1, 51, -1, 53, 524, -1, 300,
- -1, -1, 752, 60, -1, -1, 756, -1, 65, -1,
- -1, 1, -1, 3, 4, 5, 6, 7, 75, -1,
- -1, -1, 12, -1, -1, 4, 83, 6, 7, -1,
- -1, 88, 782, 12, -1, 25, 26, 27, 788, -1,
- -1, 31, 792, -1, -1, 35, 103, -1, 27, 39,
- 697, 41, 31, -1, 1280, 45, 35, -1, 808, -1,
- 810, 51, -1, 53, -1, -1, 56, -1, -1, 370,
- 1296, 1297, 51, -1, 53, 65, -1, -1, -1, 380,
- 381, -1, 609, 1309, -1, 75, 836, 1337, 615, -1,
- 391, -1, -1, 83, -1, 845, -1, -1, 88, -1,
- -1, -1, 852, -1, 94, 95, -1, 3, 4, 756,
- -1, 7, -1, -1, -1, -1, 866, -1, -1, -1,
- -1, -1, 769, 424, 771, -1, -1, -1, -1, -1,
- -1, -1, 882, -1, 884, -1, 663, -1, -1, -1,
- 441, -1, -1, 444, -1, 41, -1, 897, 449, 450,
- 451, 452, 453, -1, -1, 51, -1, 53, -1, -1,
- -1, -1, 463, 1108, -1, -1, 467, -1, -1, 65,
- 1, -1, 3, 4, 5, 6, 7, -1, 825, 75,
- 827, 12, 829, -1, -1, -1, -1, 83, -1, 69,
- -1, -1, 88, -1, -1, -1, 27, -1, 499, 500,
- 31, -1, -1, -1, 35, 36, -1, 76, 958, -1,
- 41, -1, -1, 514, 515, -1, 517, -1, -1, -1,
- 51, -1, 53, 524, -1, 752, -1, -1, -1, 60,
- 99, -1, -1, -1, 65, -1, -1, 117, -1, 1184,
- 1185, 991, -1, 993, 75, -1, -1, -1, -1, -1,
- 1000, -1, 83, -1, -1, 782, 136, 88, -1, -1,
- -1, 788, -1, -1, -1, 792, -1, -1, 137, -1,
- -1, 151, 103, -1, -1, -1, -1, -1, -1, -1,
- -1, 808, -1, -1, -1, 1035, 1, -1, 3, 4,
- 5, 6, 7, -1, 3, 4, -1, 12, 7, -1,
- -1, -1, -1, -1, -1, -1, 607, 608, 609, -1,
- -1, -1, 27, -1, 615, -1, 31, -1, 845, -1,
- 35, 36, -1, -1, -1, 852, 41, -1, -1, -1,
- -1, -1, 41, -1, -1, 44, 51, 1087, 53, 866,
- -1, 56, 51, -1, 53, 60, -1, -1, 3, 4,
- 65, -1, -1, -1, -1, -1, 65, 884, -1, -1,
- 75, -1, 663, -1, -1, -1, 75, -1, 83, -1,
- 897, -1, -1, 88, 83, -1, 85, -1, -1, 88,
- 89, -1, 4, 5, 6, 7, 41, -1, 103, 44,
- 12, 260, -1, -1, -1, -1, 51, -1, 53, -1,
- -1, -1, -1, -1, -1, 27, -1, -1, -1, 31,
- 65, 1161, 1, 35, 3, 4, 5, 6, 7, 1169,
- 75, -1, 1172, 12, -1, -1, -1, -1, 83, 51,
- 85, 53, -1, 88, 89, 1185, -1, -1, 27, -1,
- 1190, 1191, 31, -1, -1, -1, 35, 3, 4, -1,
- -1, 752, 41, -1, -1, -1, 45, -1, -1, -1,
- -1, 1108, 51, -1, 53, 1215, -1, 56, -1, -1,
- -1, -1, 1222, -1, 343, 344, 65, -1, -1, 1229,
- -1, 782, 1232, -1, -1, 41, 75, 788, -1, 790,
- 791, 792, -1, -1, 83, 51, -1, 53, -1, 88,
- 56, -1, -1, 1253, 384, 94, 1256, 808, -1, 65,
- 390, -1, -1, 1263, -1, -1, -1, -1, -1, 75,
- -1, -1, 391, -1, -1, -1, -1, 83, -1, -1,
- -1, -1, 88, 4, 5, 6, 7, 1287, -1, -1,
- -1, 12, 843, 844, 845, 414, -1, -1, -1, 850,
- 851, 852, 1302, -1, 434, 435, 27, 437, 1205, -1,
- 31, -1, -1, -1, 35, 866, -1, 1317, -1, -1,
- 439, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 51, -1, 53, 884, 1334, 1335, -1, 1337, 3, 4,
- -1, -1, 7, -1, 463, -1, 897, 466, 69, -1,
- 469, 470, -1, 472, 473, 474, 475, 476, 477, 478,
- 479, 480, 481, 482, 483, 484, 485, 486, 487, 488,
- 489, 490, -1, -1, 1271, -1, 41, 496, -1, 498,
- 499, -1, -1, -1, -1, -1, 51, -1, 53, -1,
- 520, 521, 1169, -1, 4, 525, 6, -1, -1, -1,
- 65, -1, 12, -1, -1, 524, -1, -1, 1185, -1,
- 75, 530, -1, 1190, 1191, -1, -1, 27, 83, -1,
- -1, 31, -1, 88, -1, 35, 545, 546, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 1215, -1,
- -1, 51, -1, 53, -1, -1, -1, -1, -1, -1,
+ 4, 188, 265, 136, 416, 284, 117, 12, 108, 109,
+ 4, 339, 12, 299, 4, 20, 20, 389, 388, 24,
+ 25, 52, 27, 284, 131, 347, 749, 71, 33, 33,
+ 20, 20, 154, 161, 162, 130, 131, 134, 129, 44,
+ 299, 46, 816, 33, 136, 988, 1155, 52, 1047, 181,
+ 1183, 299, 52, 34, 59, 988, 9, 1, 9, 4,
+ 9, 48, 995, 55, 88, 70, 71, 278, 1216, 70,
+ 34, 154, 77, 77, 10, 3, 4, 44, 1226, 407,
+ 7, 10, 87, 55, 55, 56, 87, 77, 77, 36,
+ 95, 96, 4, 98, 3, 4, 101, 98, 70, 104,
+ 105, 36, 185, 108, 109, 51, 4, 60, 53, 368,
+ 54, 103, 4, 1246, 119, 119, 121, 122, 44, 55,
+ 368, 62, 103, 69, 60, 53, 55, 54, 95, 119,
+ 75, 60, 136, 60, 139, 140, 141, 12, 1247, 103,
+ 56, 53, 4, 515, 53, 1144, 1279, 75, 1296, 102,
+ 337, 102, 363, 102, 121, 53, 103, 93, 76, 51,
+ 165, 53, 88, 4, 93, 92, 102, 154, 103, 301,
+ 88, 89, 4, 65, 161, 162, 102, 52, 183, 183,
+ 954, 99, 1163, 75, 125, 27, 44, 103, 193, 286,
+ 913, 53, 44, 183, 188, 60, 51, 89, 185, 56,
+ 58, 142, 0, 44, 69, 60, 58, 299, 55, 54,
+ 51, 398, 53, 75, 69, 60, 157, 44, 136, 1328,
+ 1329, 53, 56, 70, 65, 230, 231, 271, 1209, 440,
+ 88, 89, 107, 1166, 75, 0, 88, 344, 345, 6,
+ 7, 55, 229, 75, 85, 12, 103, 88, 89, 344,
+ 345, 346, 343, 532, 4, 388, 3, 4, 88, 89,
+ 60, 88, 89, 66, 392, 393, 271, 109, 35, 103,
+ 275, 393, 277, 278, 279, 102, 368, 44, 378, 379,
+ 285, 4, 85, 284, 7, 56, 56, 44, 102, 659,
+ 1223, 278, 420, 56, 299, 299, 388, 44, 51, 141,
+ 103, 23, 102, 53, 51, 60, 53, 1250, 313, 44,
+ 985, 316, 987, 56, 1257, 320, 69, 1250, 285, 324,
+ 324, 88, 650, 55, 1257, 75, 97, 1050, 51, 92,
+ 53, 88, 89, 103, 324, 324, 55, 10, 60, 88,
+ 258, 88, 65, 337, 45, 102, 149, 102, 1281, 102,
+ 56, 56, 75, 88, 4, 360, 361, 362, 363, 364,
+ 103, 56, 457, 368, 368, 60, 89, 3, 1311, 374,
+ 102, 376, 56, 378, 379, 250, 363, 136, 1311, 566,
+ 385, 299, 55, 102, 388, 58, 391, 60, 329, 394,
+ 384, 4, 195, 360, 7, 362, 363, 103, 103, 3,
+ 4, 51, 407, 53, 398, 392, 393, 55, 413, 414,
+ 1, 416, 416, 785, 784, 65, 421, 55, 56, 103,
+ 93, 54, 514, 69, 44, 75, 416, 60, 258, 521,
+ 44, 44, 23, 420, 25, 26, 88, 41, 51, 44,
+ 53, 32, 447, 448, 449, 450, 413, 55, 56, 53,
+ 368, 44, 65, 497, 102, 44, 643, 27, 44, 92,
+ 54, 402, 75, 54, 55, 56, 60, 58, 88, 60,
+ 388, 75, 85, 55, 88, 88, 89, 44, 419, 83,
+ 283, 44, 54, 88, 89, 592, 3, 4, 70, 676,
+ 56, 819, 497, 51, 499, 88, 89, 592, 92, 88,
+ 89, 92, 88, 421, 307, 44, 511, 512, 4, 514,
+ 514, 7, 640, 605, 56, 794, 521, 521, 804, 611,
+ 438, 88, 553, 441, 41, 88, 659, 790, 446, 447,
+ 448, 449, 450, 794, 862, 60, 53, 379, 108, 109,
+ 44, 54, 460, 373, 69, 804, 464, 552, 553, 88,
+ 92, 923, 44, 553, 58, 51, 804, 53, 75, 3,
+ 4, 44, 6, 103, 385, 552, 83, 659, 54, 65,
+ 681, 141, 566, 394, 55, 25, 26, 58, 496, 75,
+ 102, 3, 4, 342, 88, 552, 3, 4, 463, 70,
+ 55, 56, 3, 4, 3, 4, 88, 41, 603, 604,
+ 605, 605, 102, 51, 54, 88, 611, 611, 438, 53,
+ 60, 441, 60, 443, 444, 102, 446, 51, 1030, 41,
+ 102, 69, 627, 628, 41, 630, 60, 25, 26, 388,
+ 433, 53, 41, 37, 464, 69, 53, 9, 468, 83,
+ 51, 102, 53, 54, 53, 650, 54, 51, 56, 643,
+ 972, 784, 60, 640, 659, 659, 54, 103, 75, 6,
+ 7, 83, 60, 92, 494, 12, 83, 4, 3, 6,
+ 500, 97, 27, 678, 83, 12, 60, 436, 553, 521,
+ 25, 26, 676, 688, 689, 690, 873, 874, 35, 876,
+ 27, 678, 784, 105, 31, 88, 788, 89, 35, 136,
+ 3, 4, 5, 6, 7, 105, 509, 918, 5, 6,
+ 7, 51, 804, 588, 51, 12, 53, 78, 79, 660,
+ 60, 524, 55, 56, 665, 666, 55, 56, 669, 69,
+ 919, 920, 35, 922, 493, 89, 495, 496, 35, 839,
+ 840, 659, 60, 748, 88, 845, 846, 88, 51, 88,
+ 53, 54, 88, 108, 109, 847, 1078, 1079, 69, 54,
+ 69, 56, 521, 605, 769, 60, 771, 69, 527, 611,
+ 1092, 69, 54, 778, 56, 9, 987, 782, 60, 784,
+ 784, 786, 787, 788, 788, 102, 141, 103, 23, 794,
+ 1112, 1113, 55, 794, 102, 98, 99, 100, 102, 804,
+ 804, 806, 102, 3, 4, 5, 6, 7, 378, 379,
+ 3, 3, 4, 103, 688, 689, 690, 659, 54, 54,
+ 58, 56, 581, 58, 7, 60, 55, 56, 55, 56,
+ 748, 102, 837, 838, 839, 840, 102, 1159, 102, 844,
+ 845, 846, 847, 847, 58, 37, 38, 1328, 1329, 41,
+ 105, 693, 611, 53, 102, 4, 105, 862, 88, 51,
+ 778, 53, 32, 12, 235, 236, 784, 872, 1290, 1291,
+ 875, 20, 877, 877, 879, 24, 25, 105, 27, 873,
+ 874, 105, 876, 102, 33, 102, 804, 877, 75, 76,
+ 77, 78, 79, 4, 102, 44, 7, 46, 51, 25,
+ 26, 6, 105, 52, 88, 342, 32, 44, 58, 55,
+ 59, 5, 6, 7, 919, 920, 58, 922, 12, 58,
+ 56, 56, 71, 56, 56, 56, 756, 868, 77, 55,
+ 56, 55, 58, 44, 693, 940, 941, 102, 1125, 1126,
+ 51, 35, 53, 861, 58, 787, 95, 96, 953, 953,
+ 102, 388, 101, 55, 65, 830, 105, 102, 788, 108,
+ 109, 879, 102, 953, 75, 3, 4, 105, 88, 7,
+ 119, 60, 121, 122, 85, 55, 55, 88, 89, 60,
+ 985, 986, 987, 58, 88, 1080, 102, 102, 70, 1176,
+ 139, 140, 141, 752, 999, 1000, 102, 1002, 840, 436,
+ 987, 102, 102, 41, 846, 847, 765, 102, 767, 1220,
+ 102, 70, 70, 51, 70, 53, 165, 847, 985, 102,
+ 987, 60, 55, 378, 379, 1030, 1030, 65, 60, 102,
+ 905, 861, 60, 102, 183, 605, 102, 75, 105, 842,
+ 1030, 611, 103, 89, 193, 83, 83, 102, 105, 891,
+ 88, 44, 102, 102, 3, 4, 493, 105, 495, 496,
+ 1171, 105, 821, 103, 823, 34, 825, 102, 4, 5,
+ 6, 7, 1331, 102, 10, 102, 12, 1177, 1178, 102,
+ 102, 230, 231, 1331, 1025, 1026, 961, 58, 1183, 659,
+ 527, 27, 41, 1280, 58, 31, 102, 1102, 88, 35,
+ 88, 88, 51, 978, 53, 7, 88, 56, 10, 88,
+ 105, 103, 6, 102, 105, 51, 65, 53, 102, 102,
+ 60, 102, 271, 103, 102, 102, 75, 102, 277, 278,
+ 279, 1125, 1126, 88, 83, 284, 285, 102, 60, 88,
+ 56, 944, 44, 56, 581, 7, 54, 977, 14, 56,
+ 299, 1246, 58, 55, 102, 102, 58, 93, 60, 1034,
+ 1101, 341, 60, 60, 313, 44, 105, 316, 70, 88,
+ 56, 320, 1177, 1178, 1179, 324, 56, 88, 88, 1173,
+ 1121, 58, 1176, 58, 1279, 102, 88, 89, 102, 15,
+ 339, 93, 56, 105, 4, 5, 56, 1072, 102, 102,
+ 102, 56, 103, 102, 56, 56, 1036, 1037, 1038, 1039,
+ 102, 360, 361, 362, 363, 364, 1221, 58, 1048, 368,
+ 58, 31, 9, 56, 102, 374, 36, 376, 102, 378,
+ 379, 56, 56, 1220, 88, 55, 385, 1332, 56, 1331,
+ 88, 51, 391, 53, 102, 394, 4, 5, 91, 102,
+ 605, 1081, 102, 102, 1221, 58, 611, 102, 407, 1089,
+ 1102, 1179, 9, 56, 413, 414, 1, 416, 102, 839,
+ 840, 102, 421, 31, 56, 845, 846, 847, 36, 9,
+ 0, 0, 118, 326, 2, 1, 1280, 119, 23, 804,
+ 25, 26, 119, 51, 129, 53, 819, 32, 447, 448,
+ 449, 450, 99, 460, 659, 1144, 1154, 23, 1185, 25,
+ 26, 1252, 509, 1081, 986, 752, 32, 684, 1197, 54,
+ 55, 56, 1197, 58, 799, 60, 1331, 1331, 765, 588,
+ 767, 33, 33, 1163, 862, 650, 1178, 1179, 54, 55,
+ 56, 809, 58, 1102, 60, 877, 953, 12, 497, 1179,
+ 499, 4, 414, 497, 1184, 1185, 875, 92, 4, 5,
+ 6, 7, 511, 512, 10, 514, 12, 20, 540, 797,
+ 1270, 833, 521, 1304, 1306, -1, 92, 44, 879, 1209,
+ 33, 27, 368, 532, 821, 31, 823, -1, 825, 35,
+ -1, 3, 4, 46, 71, 72, 73, 74, 75, 76,
+ 77, 78, 79, 552, 553, 51, 59, 53, -1, -1,
+ -1, -1, -1, 1331, 81, 82, -1, -1, 71, 86,
+ 87, 88, 89, 76, 77, -1, -1, -1, -1, 41,
+ -1, -1, 44, -1, -1, 88, 89, -1, -1, 51,
+ 1199, 53, 622, 96, 1274, -1, 99, -1, 60, -1,
+ -1, -1, -1, 65, 603, 604, 605, -1, -1, -1,
+ 1290, 1291, 611, 75, -1, -1, 119, -1, -1, 122,
+ -1, 83, -1, 1303, -1, -1, 88, -1, 627, 628,
+ -1, 630, -1, 136, 839, 840, -1, -1, -1, -1,
+ 845, 846, 847, -1, -1, -1, 4, 5, 6, 7,
+ -1, 650, -1, -1, 12, -1, 1265, -1, 3, 4,
+ 659, -1, 7, 139, 140, 141, 71, -1, -1, 27,
+ -1, 76, -1, 31, -1, -1, -1, 35, -1, 678,
+ 183, -1, 1102, 88, 89, -1, -1, -1, -1, 688,
+ 689, 690, -1, 51, 99, 53, 41, -1, -1, 44,
+ -1, -1, -1, -1, -1, -1, 51, -1, 53, -1,
+ -1, 69, -1, -1, -1, -1, 251, 24, 25, 254,
+ 65, 751, 257, -1, -1, -1, -1, 230, 263, -1,
+ 75, 136, -1, -1, -1, -1, -1, 272, 83, -1,
+ 85, -1, -1, 88, 89, -1, -1, -1, -1, 748,
+ -1, -1, -1, -1, -1, 258, -1, 1177, 1178, 1179,
+ -1, -1, -1, 4, 71, 6, 7, -1, 271, 76,
+ 769, 12, 771, -1, -1, -1, 279, -1, 808, 778,
+ -1, 88, 89, 782, -1, 784, 27, 786, 787, 788,
+ 31, -1, 99, -1, 35, 794, 299, -1, -1, -1,
+ -1, 108, 109, -1, -1, 804, -1, 806, -1, -1,
+ 51, -1, 53, -1, -1, -1, -1, -1, 577, -1,
+ 819, 324, 852, -1, -1, -1, -1, -1, -1, 136,
+ -1, -1, 139, 140, -1, -1, -1, -1, 837, 838,
+ 839, 840, -1, -1, -1, 844, 845, 846, 847, -1,
+ -1, -1, -1, 258, -1, -1, -1, -1, 361, -1,
+ -1, 364, -1, 862, -1, 368, 271, -1, -1, -1,
+ -1, -1, 631, 872, 904, 905, 875, -1, 877, -1,
+ 879, -1, -1, 642, -1, 388, 73, 74, 75, 76,
+ 77, 78, 79, -1, 299, -1, -1, 1102, 374, -1,
+ 376, 69, 378, 379, -1, -1, -1, -1, -1, -1,
+ 445, 414, 1199, 416, -1, 391, -1, -1, 421, -1,
+ 919, 920, -1, 922, -1, -1, -1, 3, 4, -1,
+ -1, 961, -1, -1, -1, 438, -1, 413, 441, -1,
+ -1, 940, 941, 446, 447, 448, 449, 450, 116, -1,
+ -1, 258, -1, -1, 953, -1, -1, 460, -1, -1,
+ -1, 464, -1, 368, 271, 41, -1, 135, 44, -1,
+ -1, -1, 1177, 1178, 1179, 51, -1, 53, 1265, -1,
+ -1, -1, 150, 388, -1, -1, 985, 986, 987, 65,
+ -1, -1, 299, 496, 497, -1, -1, -1, -1, 75,
+ 999, 1000, -1, 1002, -1, 1035, -1, 83, -1, 85,
+ 1040, 514, 88, 89, -1, -1, 421, -1, 521, -1,
+ -1, -1, -1, -1, 1, -1, 3, 4, 5, 6,
+ 7, 1030, -1, 438, -1, 12, 441, -1, -1, -1,
+ -1, 446, 447, 448, 449, 450, -1, -1, 25, 26,
+ 27, -1, 811, -1, 31, 460, -1, -1, 35, 464,
+ -1, 368, 39, -1, 41, -1, -1, -1, 45, -1,
+ -1, 378, 379, -1, 51, -1, 53, -1, -1, 56,
+ -1, 388, -1, -1, 1114, 1115, -1, -1, 65, -1,
+ -1, 496, 497, -1, -1, -1, -1, -1, 75, -1,
+ -1, 860, 605, 1102, -1, -1, 83, -1, 611, 514,
+ 869, 88, -1, 1143, 421, -1, 521, 94, 95, 878,
+ -1, -1, -1, 3, 4, -1, -1, 603, 604, 605,
+ -1, 438, -1, -1, 441, 611, -1, -1, -1, 446,
+ 447, 448, 449, 450, -1, -1, -1, -1, 10, -1,
+ -1, 627, 628, 460, 630, -1, 659, 464, 1188, -1,
+ -1, 41, -1, 25, 26, 1195, 1196, -1, -1, -1,
+ 32, 51, -1, 53, 1204, -1, 56, -1, 1177, 1178,
+ 1179, -1, 44, 659, -1, 65, -1, -1, -1, 496,
+ 497, -1, -1, 55, 56, 75, 58, -1, 60, 4,
+ 605, -1, 7, 83, 511, 512, 611, 514, 88, -1,
+ -1, -1, -1, 381, 521, -1, -1, -1, -1, 387,
+ -1, -1, 1221, -1, -1, 760, 88, 89, -1, -1,
+ 92, 93, -1, 1263, 1264, -1, -1, -1, -1, 44,
+ 102, -1, -1, -1, -1, 748, 51, -1, 53, 752,
+ -1, 786, 787, -1, 659, 1014, 1015, -1, -1, -1,
+ 65, -1, -1, 431, 432, -1, 434, -1, 1027, 1028,
+ 75, -1, -1, -1, -1, 778, -1, -1, -1, -1,
+ 85, 784, -1, 88, 89, 788, 4, 5, 6, 7,
+ -1, -1, -1, -1, 12, -1, 603, 604, 605, -1,
+ 1330, 804, -1, 806, 611, -1, -1, -1, -1, 27,
+ 845, 846, -1, 31, -1, -1, -1, 35, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 832,
+ -1, -1, 1331, 51, -1, 53, -1, -1, 277, 278,
+ 279, -1, -1, 748, 847, -1, -1, -1, -1, 517,
+ 518, -1, 659, -1, 522, 890, 891, -1, 861, -1,
+ -1, 837, 838, 839, 840, 1124, 3, 4, 844, 845,
+ 846, 847, -1, 778, 877, -1, 879, -1, -1, 784,
+ -1, -1, -1, 788, -1, -1, -1, -1, -1, -1,
+ 925, -1, -1, -1, -1, -1, 872, -1, -1, 804,
+ -1, -1, -1, -1, 41, 940, 941, -1, -1, -1,
+ -1, -1, -1, -1, 51, -1, 53, -1, -1, -1,
+ -1, 360, -1, 362, 363, 364, -1, -1, 65, 597,
+ 598, 1190, 1191, -1, 1193, 1194, -1, -1, 75, 607,
+ -1, 748, 847, -1, -1, 613, 83, -1, -1, -1,
+ 953, 88, -1, -1, -1, -1, 861, -1, -1, -1,
+ -1, 1, -1, 3, 4, 5, 6, 7, -1, -1,
+ -1, 778, 12, -1, 879, -1, -1, 784, -1, 786,
+ 787, 788, -1, 986, -1, 988, -1, 27, -1, 657,
+ -1, 31, 995, -1, -1, 35, 36, 804, -1, 3,
+ 4, 41, -1, 7, -1, -1, -1, -1, 3, 4,
+ -1, 51, 7, 53, -1, -1, 56, -1, -1, -1,
+ 60, -1, -1, 999, 1000, 65, 1002, 1030, -1, -1,
+ -1, -1, 839, 840, 76, 75, -1, 41, 845, 846,
+ 847, 1300, -1, 83, -1, -1, 41, 51, 88, 53,
+ -1, -1, -1, -1, 861, -1, 51, 99, 53, -1,
+ -1, 65, -1, 103, -1, -1, -1, -1, 3, 4,
+ 65, 75, 879, 512, -1, 514, -1, -1, 1081, 83,
+ 75, -1, 521, -1, 88, -1, 754, 755, 83, 757,
+ -1, -1, -1, 88, 136, -1, -1, 1, -1, 3,
+ 4, 5, 6, 7, -1, -1, 41, -1, 12, -1,
+ -1, -1, -1, 552, -1, 783, 51, -1, 53, -1,
+ -1, -1, -1, 27, -1, 60, 1102, 31, -1, -1,
+ 65, 35, 36, 940, 941, -1, -1, 41, -1, -1,
+ 75, -1, 1177, 1178, -1, -1, -1, 51, 83, 53,
+ -1, -1, 1155, 88, -1, -1, 60, -1, -1, -1,
+ 1163, 65, -1, 1166, -1, 604, 605, -1, -1, -1,
+ -1, 75, 611, -1, -1, 843, 1179, -1, -1, 83,
+ -1, 1184, 1185, -1, 88, -1, -1, 855, 856, 857,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 103,
+ -1, 1177, 1178, 1179, -1, -1, 1209, -1, -1, -1,
+ -1, -1, -1, 1216, -1, -1, -1, 259, -1, -1,
+ 1223, -1, 4, 1226, 6, 7, -1, -1, -1, -1,
+ 12, -1, -1, -1, 3, 4, 5, 6, 7, 678,
+ -1, -1, -1, 12, 1247, 27, -1, 1250, -1, 31,
+ -1, -1, -1, 35, 1257, -1, -1, 1, 1163, 3,
+ 4, 5, 6, 7, -1, 933, 35, -1, 12, 51,
+ -1, 53, 41, -1, 1179, 44, -1, -1, 1281, 1184,
+ 1185, -1, 51, 27, 53, -1, -1, 31, -1, -1,
+ -1, 35, 36, 1296, -1, -1, 65, 41, -1, 341,
+ 342, -1, -1, -1, 1209, -1, 75, 51, 1311, 53,
+ -1, -1, 56, -1, 83, -1, 60, -1, -1, 88,
+ -1, 65, -1, -1, -1, 1328, 1329, -1, 1331, -1,
+ 769, 75, 771, -1, -1, -1, -1, -1, -1, 83,
+ -1, -1, -1, 782, 88, -1, 388, -1, 787, 788,
+ 1018, -1, -1, -1, -1, -1, 1163, -1, -1, 103,
+ -1, -1, -1, -1, -1, 4, -1, 6, 7, 411,
+ 1177, 1178, 1179, 12, -1, -1, -1, 1184, 1185, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 27, -1,
+ -1, -1, 31, -1, 436, 1063, 35, -1, 837, 838,
+ -1, 840, 1209, -1, -1, 844, -1, 846, 847, 3,
+ 4, -1, 51, 7, 53, 54, -1, -1, 460, -1,
+ -1, 463, -1, -1, 466, 467, 1331, 469, 470, 471,
+ 472, 473, 474, 475, 476, 477, 478, 479, 480, 481,
+ 482, 483, 484, 485, 486, 487, -1, 41, -1, 88,
+ 44, 493, -1, 495, 496, -1, -1, 51, -1, 53,
3, 4, 5, 6, 7, -1, -1, 10, -1, 12,
- -1, 3, 4, 5, 6, 7, 585, -1, -1, -1,
- 12, 601, 602, 592, 27, -1, -1, -1, 31, 12,
- -1, 611, 35, -1, -1, 27, -1, 617, 41, 31,
- -1, 24, 25, 35, 27, -1, 615, -1, 51, 41,
- 53, -1, -1, -1, -1, 4, -1, 626, -1, 51,
- -1, 53, 65, -1, 56, -1, -1, -1, -1, 52,
- -1, -1, 75, 65, -1, 24, 25, -1, 27, -1,
- 83, 661, -1, 75, 33, 88, -1, -1, -1, -1,
- 93, 83, -1, 662, -1, 44, 88, 46, -1, -1,
- 3, 4, 5, 6, 7, -1, -1, -1, -1, 12,
- 1337, -1, -1, -1, -1, -1, -1, 66, 101, -1,
- 103, 104, 105, -1, -1, 108, 109, 110, 697, -1,
+ -1, 65, 4, -1, 6, 7, -1, -1, -1, 521,
+ 12, 75, -1, -1, 27, 527, 4, -1, 31, 83,
+ -1, 85, 35, -1, 88, 89, -1, -1, 41, -1,
+ 542, 543, 941, 35, -1, -1, 24, 25, 51, 27,
+ 53, -1, 44, -1, -1, 33, -1, -1, -1, 51,
+ -1, 53, 65, -1, 1331, -1, 44, -1, 46, -1,
+ -1, -1, 75, 65, -1, -1, -1, -1, -1, 581,
+ 83, -1, -1, 75, -1, 88, 588, -1, 66, -1,
+ 93, -1, -1, 85, -1, -1, 88, 89, -1, -1,
+ 999, 1000, 1, 1002, 3, 4, 5, 6, 7, 611,
+ -1, -1, -1, 12, -1, -1, -1, 95, -1, -1,
+ 622, -1, -1, 101, -1, 103, -1, 105, 27, -1,
+ 108, 109, 31, -1, -1, -1, 35, -1, -1, -1,
+ -1, 119, 41, 121, 122, -1, 45, -1, -1, -1,
+ -1, -1, 51, -1, 53, -1, 658, 56, -1, -1,
+ -1, 139, 140, 141, -1, -1, 65, -1, -1, -1,
+ -1, 149, -1, -1, -1, -1, 75, -1, -1, -1,
+ -1, -1, -1, -1, 83, -1, -1, 165, -1, 88,
+ -1, 693, -1, -1, -1, 94, 1, -1, 3, 4,
+ -1, 6, 7, 8, 9, 183, 11, 12, -1, -1,
+ -1, -1, 714, -1, -1, 193, -1, -1, -1, -1,
+ -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 751,
+ 752, -1, -1, -1, -1, 60, -1, 62, -1, -1,
+ 65, -1, -1, 765, -1, 767, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, -1, -1, 88, -1, -1, -1, 92, -1, -1,
+ -1, -1, -1, -1, 796, -1, -1, 275, -1, 104,
+ -1, -1, -1, -1, -1, 283, 808, 285, -1, 3,
+ 4, -1, 6, 7, 8, 9, -1, 11, 12, 821,
+ -1, 823, -1, 825, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 27, 28, 313, -1, 31, 316, 33,
+ -1, 35, 320, 37, 38, -1, 40, 41, 42, 43,
+ 852, -1, 46, 47, 48, 49, 50, 51, -1, 53,
+ -1, -1, -1, -1, 866, 867, -1, -1, 62, -1,
+ -1, 65, -1, -1, -1, -1, -1, 3, 4, 73,
+ 74, 75, 360, 361, 362, 363, -1, 81, 82, 83,
+ 368, -1, -1, -1, 88, -1, 374, -1, 376, -1,
+ 378, 379, 904, 905, -1, -1, 908, 385, -1, -1,
+ 104, -1, -1, 391, -1, 41, 394, -1, 1, -1,
+ 3, 4, 5, 6, 7, 51, -1, 53, -1, 12,
+ -1, 3, 4, -1, 60, 413, 414, -1, 416, 65,
+ -1, -1, -1, -1, 27, -1, -1, -1, 31, 75,
+ -1, -1, 35, 36, -1, -1, -1, 83, 41, 961,
+ -1, -1, 88, -1, -1, -1, -1, 4, 51, 41,
+ 53, 973, -1, -1, 3, 4, -1, 60, 7, 51,
+ -1, 53, 65, -1, -1, -1, -1, 24, 25, -1,
+ 27, -1, 75, 65, -1, -1, 33, -1, -1, -1,
+ 83, -1, -1, 75, -1, 88, -1, 44, -1, 46,
+ -1, 83, 41, -1, -1, 44, 88, -1, -1, 1021,
+ 103, -1, 51, -1, 53, 3, 4, 5, 6, 7,
+ -1, 509, 10, 1035, 12, -1, 65, -1, 1040, -1,
+ 1042, -1, -1, 521, -1, -1, 75, -1, -1, 27,
+ -1, -1, -1, 31, 83, -1, 85, 35, 95, 88,
+ 89, -1, -1, 41, 101, -1, 44, -1, 105, -1,
+ -1, 108, 109, 51, 552, 53, -1, -1, -1, -1,
+ -1, -1, 119, -1, 121, 122, -1, 65, -1, -1,
+ -1, 4, -1, 6, 7, -1, -1, 75, -1, 12,
+ 1102, -1, 139, 140, 141, 83, -1, 85, -1, -1,
+ 88, 89, 1114, 1115, 27, 93, -1, -1, 31, -1,
+ 1122, 1123, 35, -1, -1, 603, 604, 605, 165, -1,
+ -1, -1, -1, 611, -1, -1, -1, -1, 51, -1,
+ 53, 1143, -1, -1, -1, -1, 183, -1, -1, 627,
+ 628, -1, 630, -1, -1, -1, 193, -1, -1, -1,
+ -1, -1, 1164, 68, 69, 70, 71, 72, 73, 74,
+ 75, 76, 77, 78, 79, 88, -1, 1, -1, 3,
+ 4, 659, 6, 7, 8, 9, 1188, 11, 12, -1,
+ -1, -1, -1, 1195, 1196, -1, -1, 1199, -1, -1,
+ -1, -1, 1204, 27, 28, 29, 30, 31, -1, 33,
+ -1, 35, -1, 37, 38, 693, 40, 41, 42, 43,
+ -1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
+ 54, -1, -1, -1, 3, 4, -1, -1, 62, -1,
+ -1, 65, -1, -1, -1, -1, -1, 284, 285, 73,
+ 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
+ -1, 1263, 1264, 1265, 88, 89, -1, -1, 92, -1,
+ -1, -1, 41, -1, -1, -1, 313, -1, -1, 316,
+ 104, -1, 51, 320, 53, -1, -1, -1, -1, -1,
+ 27, -1, -1, -1, -1, -1, 65, -1, -1, -1,
+ -1, -1, 339, -1, -1, -1, 75, 44, 786, 787,
+ -1, -1, -1, -1, 83, -1, -1, -1, -1, 88,
+ -1, -1, -1, 360, 361, 362, 363, -1, 1330, -1,
+ -1, 368, -1, -1, -1, -1, -1, 374, -1, 376,
+ -1, 378, 379, -1, -1, -1, -1, -1, 385, -1,
+ -1, -1, -1, -1, 391, -1, -1, 394, 95, 837,
+ 838, 839, 840, -1, 842, -1, 844, 845, 846, 847,
+ -1, 108, 109, -1, -1, -1, 413, 414, -1, 416,
+ -1, -1, -1, -1, 121, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 872, -1, -1, 875, -1, 877,
+ -1, -1, 139, 140, 141, -1, -1, -1, -1, -1,
+ -1, -1, 890, 891, -1, 1, -1, 3, 4, 5,
+ 6, 7, 8, 9, -1, 11, 12, 13, 165, 15,
+ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
+ 26, 27, 28, 29, 30, 31, -1, 33, -1, 35,
+ -1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
+ 46, 47, 48, 49, 50, 51, 944, 53, 54, -1,
+ 56, -1, -1, -1, -1, 953, 62, -1, -1, 65,
+ -1, -1, -1, -1, 521, -1, -1, 73, 74, 75,
+ -1, -1, -1, -1, 231, 81, 82, 83, -1, -1,
+ -1, -1, 88, -1, 90, -1, 92, 985, 986, 987,
+ -1, -1, -1, -1, -1, 552, -1, 103, 104, -1,
+ -1, 999, 1000, -1, 1002, 3, 4, -1, -1, 7,
+ -1, 4, 5, 6, 7, -1, -1, 10, -1, 12,
+ 277, 278, 279, -1, -1, -1, -1, -1, 285, -1,
+ -1, -1, 1030, -1, 27, -1, -1, -1, 31, -1,
+ -1, -1, 35, 41, -1, -1, 603, 604, 605, -1,
+ -1, 44, -1, 51, 611, 53, -1, -1, 51, -1,
+ 53, -1, -1, -1, -1, -1, -1, 65, -1, -1,
+ 627, 628, 65, 630, -1, -1, -1, 75, -1, -1,
+ -1, -1, 75, -1, -1, 83, -1, -1, -1, -1,
+ 88, -1, 85, -1, -1, 88, 89, -1, -1, -1,
+ 93, -1, 659, 360, 1102, 362, 363, 364, -1, 1,
+ -1, 3, 4, 5, 6, 7, -1, 374, -1, 376,
+ 12, 378, 379, -1, -1, -1, 3, 4, 385, -1,
+ 7, 277, 278, 279, 391, 27, 693, 394, -1, 31,
+ -1, -1, -1, 35, -1, -1, -1, -1, 44, 41,
+ -1, -1, -1, -1, -1, -1, 413, -1, -1, 51,
+ -1, 53, -1, -1, 41, -1, -1, 44, -1, -1,
+ 66, -1, -1, 65, 51, -1, 53, -1, -1, 1177,
+ 1178, 1179, -1, 75, -1, -1, 3, 4, 65, 85,
+ 7, 83, -1, -1, -1, -1, 88, -1, 75, 95,
+ -1, -1, -1, -1, -1, -1, 83, -1, 85, -1,
+ -1, 88, 89, -1, 360, -1, 362, 363, 364, -1,
+ -1, -1, -1, 1221, 41, 121, -1, -1, -1, 786,
+ 787, -1, -1, -1, 51, -1, 53, 794, -1, -1,
+ -1, -1, 499, 139, 140, 141, -1, -1, 65, -1,
+ -1, -1, -1, 149, 511, 512, -1, 514, 75, -1,
+ -1, -1, 819, -1, 521, -1, 83, -1, -1, 165,
+ -1, 88, -1, -1, -1, -1, -1, -1, -1, -1,
+ 837, 838, 839, 840, -1, -1, -1, 844, 845, 846,
+ 847, -1, -1, -1, -1, 552, -1, -1, -1, 195,
+ -1, -1, 4, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 872, -1, -1, 875, -1,
+ 877, -1, 24, 25, -1, -1, -1, 4, -1, 6,
+ 7, 33, -1, 890, 891, 12, -1, -1, -1, -1,
+ -1, -1, -1, -1, 46, -1, 603, 604, 605, -1,
+ -1, -1, -1, -1, 611, -1, -1, -1, 35, -1,
+ -1, -1, -1, -1, -1, 511, 512, 44, 514, -1,
+ 627, 628, -1, 630, 51, 521, 53, -1, 4, 5,
+ 6, 7, -1, -1, -1, -1, 12, 283, 65, 285,
+ -1, -1, -1, -1, -1, -1, 953, -1, 75, 101,
+ -1, 27, 659, 105, -1, 31, 552, -1, 85, 35,
+ -1, 88, 89, -1, -1, -1, -1, 119, -1, -1,
+ 122, 678, 3, 4, -1, 51, 7, 53, 985, 986,
+ 987, 688, 689, 690, -1, -1, -1, 139, 140, -1,
+ -1, -1, 999, 1000, -1, 1002, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 603, 604, 605,
+ 41, -1, -1, -1, 360, 611, 362, 363, -1, -1,
+ 51, -1, 53, 1030, -1, -1, -1, -1, 374, -1,
+ 376, 183, 378, 379, 65, -1, 3, 4, -1, 385,
+ 7, 193, -1, -1, 75, 391, -1, -1, 394, -1,
+ -1, -1, 83, -1, -1, -1, 12, 88, -1, -1,
+ -1, -1, 769, -1, 771, -1, -1, 413, 24, 25,
+ -1, 27, -1, -1, 41, 782, -1, -1, -1, 786,
+ 787, 788, 678, -1, 51, -1, 53, -1, -1, -1,
+ -1, -1, -1, -1, -1, 1102, 52, -1, 65, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 75, -1,
+ -1, -1, -1, -1, -1, -1, 83, -1, -1, -1,
+ -1, 88, -1, -1, -1, -1, -1, -1, -1, -1,
+ 837, 838, 839, 840, -1, -1, -1, 844, 845, 846,
+ 847, -1, -1, -1, -1, 101, -1, 103, 104, 105,
+ -1, -1, 108, 109, -1, 3, 4, -1, -1, 7,
+ -1, 313, -1, -1, 316, 872, -1, -1, 320, -1,
+ 1177, 1178, 1179, 769, -1, 771, -1, -1, 524, -1,
+ -1, -1, -1, -1, -1, -1, 782, -1, -1, -1,
+ 786, 787, 788, 41, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 51, -1, 53, 552, -1, -1, 361,
+ -1, -1, 919, 920, 1221, 922, 368, 65, -1, -1,
+ -1, -1, 374, -1, 376, -1, -1, 75, -1, -1,
+ -1, -1, -1, 940, 941, 83, -1, 193, -1, 391,
+ 88, 837, 838, 839, 840, -1, -1, -1, 844, 845,
+ 846, 847, -1, -1, -1, -1, -1, 603, 604, 605,
+ -1, 413, 414, -1, 416, 611, -1, -1, -1, -1,
+ 3, 4, 5, 6, 7, 231, -1, -1, 985, 12,
+ 987, 627, 628, -1, 630, -1, -1, -1, -1, -1,
+ -1, -1, 999, 1000, 27, 1002, -1, -1, 31, -1,
-1, -1, 35, -1, -1, -1, -1, -1, 41, -1,
- -1, 44, -1, -1, -1, -1, 95, -1, 51, 718,
- 53, -1, 101, -1, 103, -1, 105, -1, -1, 108,
- 109, 110, 65, -1, -1, -1, -1, -1, 1169, -1,
- -1, 120, 75, 122, 123, -1, -1, -1, 758, 759,
- 83, 761, 1183, 1184, 1185, 88, 755, 756, -1, 1190,
- 1191, 140, 141, 142, -1, -1, -1, -1, -1, -1,
- 769, 150, 771, -1, -1, -1, -1, 787, -1, -1,
- -1, 194, -1, -1, 1215, -1, -1, 166, -1, -1,
- -1, -1, -1, -1, -1, 3, 4, 5, 6, 7,
- -1, 800, -1, -1, 12, 184, -1, -1, -1, -1,
- -1, -1, -1, 812, -1, 194, -1, -1, -1, 232,
- -1, -1, -1, -1, -1, -1, 825, 35, 827, -1,
- 829, -1, -1, 41, -1, -1, 44, -1, 848, 4,
- -1, 6, 7, 51, -1, 53, -1, 12, -1, -1,
- 860, 861, 862, -1, -1, -1, -1, 65, 857, -1,
- -1, -1, -1, 276, -1, 278, 279, 75, -1, -1,
- 35, -1, 871, 872, -1, 83, -1, 85, -1, 44,
- 88, 89, -1, -1, -1, -1, 51, 1, 53, 3,
- 4, 5, 6, 7, -1, 308, -1, 276, 12, -1,
- 65, 314, -1, -1, 317, 284, 1337, 286, -1, 322,
- 75, 910, 911, 27, -1, 914, -1, 31, -1, -1,
- 85, 35, -1, 88, 89, -1, -1, 41, -1, 939,
- -1, -1, -1, -1, -1, 314, -1, 51, 317, 53,
- -1, -1, -1, 322, 3, 4, 5, 6, 7, -1,
- -1, 65, -1, 12, -1, -1, -1, -1, -1, -1,
- -1, 75, -1, -1, -1, -1, -1, 966, 27, 83,
- -1, -1, 31, -1, 88, -1, 35, -1, -1, 978,
- -1, -1, 41, 362, 363, 364, 365, -1, -1, -1,
- -1, 370, 51, -1, 53, -1, -1, 376, -1, 378,
- -1, 380, 381, 382, -1, -1, 65, 3, 4, 388,
- -1, 7, -1, 1023, -1, 394, 75, -1, 397, -1,
- -1, -1, -1, 436, 83, -1, -1, 1026, -1, 88,
- -1, -1, -1, -1, -1, -1, -1, 416, 417, -1,
- 419, 1040, -1, 4, -1, 41, 1045, -1, 1047, -1,
- -1, 4, 5, 6, 7, 51, -1, 53, 1068, 12,
- -1, -1, -1, 24, 25, -1, 27, -1, -1, 65,
- -1, -1, 33, -1, 27, -1, -1, -1, 31, 75,
- -1, -1, 35, 44, -1, 46, -1, 83, -1, 502,
- -1, -1, 88, -1, -1, -1, -1, -1, 51, 512,
- 53, 514, 515, 3, 4, 5, 6, 7, -1, 1108,
- 10, -1, 12, -1, -1, -1, -1, -1, -1, -1,
- -1, 1120, 1121, -1, -1, -1, -1, 27, -1, 1128,
- 1129, 31, -1, 512, 95, 35, -1, -1, -1, -1,
- 101, 41, -1, 556, 105, 524, -1, 108, 109, 110,
- 1149, 51, -1, 53, -1, -1, -1, -1, -1, 120,
- -1, 122, 123, -1, -1, 65, 4, 5, 6, 7,
- -1, 1170, 10, -1, 12, 75, 555, -1, -1, 140,
- 141, 142, -1, 83, -1, -1, -1, -1, 88, 27,
- -1, -1, 27, 31, -1, 1194, -1, 35, -1, -1,
- -1, -1, 1201, 1202, -1, 166, 1205, -1, -1, 44,
- -1, 1210, -1, 51, -1, 53, 3, 4, 5, 6,
- 7, -1, -1, 184, -1, 12, -1, -1, 607, 608,
- 609, -1, -1, 194, -1, -1, 615, -1, -1, -1,
- 27, -1, -1, -1, 31, -1, -1, -1, 35, -1,
- -1, -1, 631, 632, 41, 634, -1, 44, -1, -1,
- 95, -1, -1, -1, 51, -1, 53, -1, -1, 682,
- 1269, 1270, 1271, 108, 109, 110, -1, -1, 65, 692,
- 693, 694, -1, -1, 663, -1, -1, 122, 75, -1,
+ -1, 44, -1, 659, -1, -1, -1, -1, 51, 275,
+ 53, 277, 278, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 75, -1, 940, 941, -1, -1, -1, -1,
+ 83, 307, 85, -1, -1, 88, 89, 313, -1, -1,
+ 316, -1, -1, -1, 320, 63, 64, 65, 66, 67,
+ 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
+ 78, 79, 1, -1, 3, 4, 5, 6, 7, 8,
+ 9, 10, 11, 12, -1, 1102, -1, -1, -1, -1,
+ -1, -1, -1, 999, 1000, -1, 1002, -1, 27, 28,
+ 29, 30, 31, -1, 33, -1, 35, -1, 37, 38,
+ -1, 40, 41, 42, 43, -1, -1, 46, 47, 48,
+ 49, 50, 51, -1, 53, -1, -1, -1, -1, -1,
+ -1, -1, -1, 62, -1, -1, 65, -1, -1, -1,
+ -1, 603, 604, -1, 73, 74, 75, -1, -1, -1,
+ -1, -1, 81, 82, 83, -1, -1, -1, -1, 88,
+ 1177, 1178, 1179, 92, 93, 627, 628, 433, 630, -1,
+ -1, -1, -1, 102, -1, 104, -1, -1, -1, -1,
+ -1, 837, 838, 839, 840, -1, 842, -1, 844, 845,
+ 846, 847, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 1221, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 872, -1, -1, -1,
+ -1, 1, -1, 3, 4, 5, 6, 7, 8, 9,
+ 10, 11, 12, 499, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 509, -1, 511, 512, 27, 28, 29,
+ 30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
+ 40, 41, 42, 43, 44, -1, 46, 47, 48, 49,
+ 50, 51, -1, 53, 54, -1, -1, -1, -1, -1,
+ -1, -1, 62, -1, -1, 65, -1, 553, 944, -1,
+ -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
+ -1, 81, 82, 83, -1, 85, -1, -1, 88, 89,
+ -1, -1, 92, 93, -1, -1, 3, 4, 5, 6,
+ 7, -1, -1, -1, 104, 12, -1, -1, -1, 985,
+ -1, 987, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 999, 1000, -1, 1002, -1, 35, -1,
+ -1, -1, -1, -1, 41, -1, -1, 44, -1, -1,
+ -1, -1, -1, -1, 51, -1, 53, -1, -1, -1,
+ -1, -1, -1, -1, -1, 837, 838, -1, 65, -1,
+ -1, -1, 844, -1, -1, -1, -1, -1, 75, -1,
-1, -1, -1, -1, -1, -1, 83, -1, 85, -1,
- -1, 88, 89, -1, -1, 140, 141, 142, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 697, -1,
- 3, 4, -1, -1, 285, 286, -1, -1, -1, -1,
- -1, 166, -1, -1, -1, -1, -1, 1336, -1, -1,
- -1, -1, -1, -1, -1, -1, 3, 4, 5, 6,
- 7, -1, -1, 314, -1, 12, 317, -1, 41, -1,
- 773, 322, 775, -1, -1, -1, -1, -1, 51, -1,
- 53, -1, -1, 786, -1, -1, -1, 60, 35, -1,
- 341, -1, 65, -1, 41, -1, -1, 44, -1, -1,
- -1, -1, 75, -1, 51, -1, 53, 232, -1, -1,
- 83, 362, 363, 364, 365, 88, -1, -1, 65, 370,
- -1, 790, 791, 792, -1, 376, -1, 378, 75, 380,
- 381, 382, -1, -1, -1, -1, 83, 388, 85, -1,
- -1, 88, 89, 394, -1, -1, 397, -1, -1, -1,
- -1, -1, -1, 278, 279, 280, -1, -1, -1, -1,
- -1, 286, -1, -1, -1, 416, 417, -1, 419, -1,
- -1, -1, 841, 842, 843, 844, 845, 880, 847, -1,
- 849, 850, 851, 852, -1, -1, 3, 4, 5, 6,
- 7, -1, -1, -1, -1, 12, 68, 69, 70, 71,
- 72, 73, 74, 75, 76, 77, 78, 79, 877, -1,
- 27, 880, -1, 882, 31, -1, -1, -1, 35, -1,
- -1, -1, 925, 926, 41, 928, 895, 896, 897, -1,
- -1, -1, -1, -1, 51, -1, 53, 362, -1, 364,
- 365, 366, -1, 60, -1, -1, -1, -1, 65, -1,
- -1, 376, -1, 378, -1, 380, 381, 382, 75, 4,
- 5, 6, 7, 388, -1, 10, 83, 12, -1, 394,
- -1, 88, 397, 524, -1, -1, -1, -1, -1, -1,
- 949, -1, 27, -1, -1, -1, 31, -1, -1, 958,
- 35, 416, -1, -1, 140, 141, 142, -1, -1, 44,
- -1, -1, -1, -1, 555, -1, 51, -1, 53, -1,
- -1, -1, -1, 3, 4, -1, -1, 7, -1, -1,
- 65, 990, 991, 992, 3, 4, -1, -1, 7, -1,
- 75, -1, -1, -1, -1, 1004, 1005, 44, 1007, -1,
- 85, -1, -1, 88, 89, -1, -1, -1, 93, -1,
- -1, 41, -1, -1, -1, -1, 607, 608, 609, 66,
- -1, 51, 41, 53, 615, -1, 1035, -1, -1, -1,
- -1, -1, 51, -1, 53, 65, -1, 502, 85, -1,
- 631, 632, -1, 634, -1, 75, 65, -1, 95, 514,
- 515, -1, 517, 83, -1, -1, 75, -1, 88, 524,
- -1, -1, -1, -1, 83, -1, -1, -1, -1, 88,
- -1, -1, 663, -1, -1, 122, -1, -1, -1, -1,
- -1, -1, -1, 3, 4, -1, 6, 7, 8, 9,
- 555, 11, 12, 140, 141, 142, -1, -1, -1, 1108,
- -1, -1, -1, 150, -1, -1, 697, 27, 28, 29,
- 30, 31, -1, 33, -1, 35, -1, 37, 38, 166,
- 40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
- 50, 51, -1, 53, -1, -1, -1, -1, -1, -1,
- -1, -1, 607, 608, 609, -1, -1, -1, -1, 196,
- 615, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 81, 82, 83, 3, 4, 631, 632, 88, 634,
- -1, -1, 92, -1, 1183, 1184, 1185, -1, -1, -1,
- -1, -1, -1, -1, 104, -1, -1, -1, -1, -1,
- 376, -1, 378, -1, 380, 381, 382, -1, 663, 790,
- 791, 792, 41, -1, -1, -1, -1, 798, 394, -1,
- -1, -1, 51, -1, 53, -1, -1, 682, 1227, -1,
- -1, -1, -1, -1, -1, -1, 65, 692, 693, 694,
- 416, -1, 823, -1, -1, -1, 75, 284, -1, 286,
- -1, -1, -1, -1, 83, -1, -1, -1, -1, 88,
- 841, 842, 843, 844, 845, -1, -1, -1, 849, 850,
- 851, 852, -1, -1, -1, -1, -1, 4, -1, 6,
- 7, -1, -1, -1, -1, 12, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 877, -1, -1, 880,
- 27, 882, -1, -1, 31, -1, -1, -1, 35, -1,
- -1, -1, -1, -1, 895, 896, 897, 44, 773, -1,
- 775, -1, -1, -1, 51, 362, 53, 364, 365, -1,
- -1, 786, -1, -1, -1, 790, 791, 792, 65, 376,
- -1, 378, -1, 380, 381, 382, -1, -1, 75, -1,
- -1, 388, -1, -1, 278, 279, 280, 394, 85, -1,
- 397, 88, 89, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79, 958, -1, 416,
- -1, -1, -1, -1, -1, 4, 841, 842, 843, 844,
- 845, -1, -1, -1, 849, 850, 851, 852, -1, -1,
- -1, -1, -1, -1, -1, 24, 25, -1, -1, 990,
- 991, 992, 3, 4, 33, -1, 7, -1, -1, -1,
- -1, -1, 877, 1004, 1005, -1, 1007, 46, -1, -1,
- -1, 607, 608, 609, -1, -1, -1, -1, 362, 615,
- 364, 365, 366, 3, 4, -1, -1, 7, -1, -1,
- 41, -1, -1, -1, 1035, 631, 632, -1, 634, -1,
- 51, -1, 53, -1, -1, -1, -1, -1, -1, -1,
- 925, 926, -1, 928, 65, -1, -1, -1, -1, -1,
- -1, 41, 101, -1, 75, -1, 105, 663, -1, -1,
- 527, 51, 83, 53, -1, -1, -1, 88, -1, -1,
- -1, 120, -1, -1, 123, 65, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 75, -1, -1, 555, -1,
- -1, 140, 141, 83, -1, -1, -1, 1108, 88, -1,
- -1, -1, -1, -1, -1, 990, -1, 992, -1, 3,
- 4, 278, 279, 280, -1, -1, -1, -1, -1, 1004,
- 1005, -1, 1007, -1, -1, -1, -1, -1, -1, -1,
- 3, 4, 5, 6, 7, 184, -1, -1, -1, 12,
- 607, 608, 609, -1, -1, 194, -1, 41, 615, -1,
- -1, -1, -1, -1, 27, -1, -1, 51, 31, 53,
- 514, 515, 35, 517, 631, 632, -1, 634, 41, -1,
- 524, 65, 1183, 1184, 1185, -1, -1, -1, 51, -1,
- 53, 75, -1, 56, -1, -1, -1, -1, -1, 83,
- -1, -1, 65, -1, 88, 362, 663, 364, 365, 366,
- -1, 555, 75, -1, -1, -1, -1, -1, -1, -1,
- 83, -1, -1, -1, -1, 88, 1227, -1, -1, -1,
- -1, -1, -1, 1108, -1, -1, -1, 10, -1, -1,
- -1, -1, -1, -1, -1, 841, 842, 843, 844, 845,
- -1, -1, -1, 849, 850, 851, 852, -1, -1, -1,
- -1, -1, -1, 607, 608, 609, -1, -1, -1, -1,
- -1, 615, -1, -1, -1, 314, -1, -1, 317, -1,
- -1, 877, -1, 322, 57, 58, 59, 60, 61, 62,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79, -1, 1183, 1184,
- 1185, 67, 68, 69, 70, 71, 72, 73, 74, 75,
- 76, 77, 78, 79, 363, -1, -1, -1, -1, -1,
- -1, 370, -1, -1, -1, -1, -1, 376, 682, 378,
+ -1, 88, 89, -1, -1, -1, -1, -1, -1, -1,
+ 872, -1, 678, 875, -1, 877, -1, -1, -1, -1,
+ -1, -1, 688, 689, 690, -1, 1, -1, 3, 4,
+ 5, 6, 7, 8, 9, 10, 11, 12, -1, -1,
+ -1, -1, -1, -1, -1, -1, 1102, -1, -1, -1,
+ -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, 44,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
+ -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, 953, -1, -1, 10, -1, -1, -1, 73, 74,
+ 75, -1, -1, 769, -1, 771, 81, 82, 83, -1,
+ 85, -1, -1, 88, 89, -1, 782, 92, 93, -1,
+ -1, 1177, 1178, 1179, 986, -1, -1, -1, -1, 104,
+ -1, -1, -1, -1, -1, -1, -1, 999, 1000, -1,
+ 1002, 57, 58, 59, 60, 61, 62, 63, 64, 65,
+ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ 76, 77, 78, 79, -1, 1221, -1, -1, 1030, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 1, -1,
+ 3, 4, 5, 6, 7, 8, 9, -1, 11, 12,
+ 13, -1, 15, 16, 17, 18, 19, 20, 21, 22,
+ 23, 24, 25, 26, 27, 28, 29, 30, 31, 875,
+ 33, -1, 35, -1, 37, 38, -1, 40, 41, 42,
+ 43, -1, -1, 46, 47, 48, 49, 50, 51, -1,
+ 53, 54, -1, 56, -1, -1, -1, -1, -1, 62,
+ -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
+ 73, 74, 75, 919, 920, -1, 922, -1, 81, 82,
+ 83, -1, -1, -1, -1, 88, -1, 90, -1, 92,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 1227, -1, -1, 394, -1, 514, 515, 62,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79, 416, 417, -1,
- 419, -1, -1, -1, 841, 842, 843, 844, 845, -1,
- 847, -1, 849, 850, 851, 852, -1, -1, 555, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 1004, 1005,
- -1, 1007, -1, -1, -1, -1, -1, -1, -1, -1,
- 877, -1, -1, -1, -1, -1, -1, -1, -1, 773,
- -1, 775, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 786, -1, -1, -1, 790, 791, 792, -1,
- 607, 608, -1, -1, 57, 58, 59, -1, 61, 62,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79, 65, 66, 67,
- 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
- 78, 79, 949, -1, -1, -1, -1, 841, 842, 843,
- 844, 845, 105, -1, -1, 849, 850, 851, 852, -1,
- -1, -1, 1108, -1, 3, 4, 5, 6, 7, -1,
- -1, 10, -1, 12, -1, 682, -1, -1, -1, -1,
- -1, -1, -1, 990, -1, 992, -1, -1, 27, -1,
- -1, -1, 31, -1, -1, -1, 35, 1004, 1005, -1,
- 1007, -1, 41, -1, -1, 44, -1, -1, -1, -1,
- -1, -1, 51, -1, 53, -1, -1, -1, 607, 608,
- -1, -1, -1, -1, -1, -1, 65, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 75, 1183, 1184, 1185,
- -1, -1, 631, 632, 83, 634, 85, -1, -1, 88,
- 89, -1, -1, -1, 93, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 773, -1, 775, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 786,
- -1, -1, -1, 790, 791, 64, 65, 66, 67, 68,
- 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
- 79, 1108, -1, -1, -1, -1, -1, -1, -1, -1,
- 1004, 1005, -1, 1007, -1, -1, -1, -1, -1, -1,
- 32, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 841, 842, 843, 844, -1, -1,
- -1, -1, 849, 850, 851, 57, 58, 59, -1, 61,
- 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
- 72, 73, 74, 75, 76, 77, 78, 79, -1, -1,
- -1, -1, -1, -1, -1, -1, 1183, 1184, 1185, -1,
- -1, -1, 1, -1, 3, 4, 5, 6, 7, 8,
+ 103, 104, 1, -1, 3, 4, 5, 6, 7, 8,
9, -1, 11, 12, 13, -1, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, -1, 33, -1, 35, -1, 37, 38,
- 1227, 40, 41, 42, 43, -1, -1, 46, 47, 48,
+ -1, 40, 41, 42, 43, -1, -1, 46, 47, 48,
49, 50, 51, -1, 53, 54, -1, 56, -1, -1,
-1, -1, -1, 62, -1, -1, 65, -1, -1, -1,
- -1, -1, 841, 842, 73, 74, 75, -1, -1, -1,
- 849, -1, 81, 82, 83, -1, -1, -1, -1, 88,
+ -1, -1, -1, -1, 73, 74, 75, -1, -1, -1,
+ -1, -1, 81, 82, 83, -1, -1, -1, -1, 88,
-1, 90, -1, 92, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 103, 104, -1, -1, 877, -1,
- -1, 880, -1, 882, -1, -1, -1, 1004, 1005, -1,
- 1007, 1, -1, 3, 4, 5, 6, 7, 8, 9,
- -1, 11, 12, 13, -1, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
- 40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
- 50, 51, -1, 53, 54, -1, 56, -1, -1, -1,
- -1, -1, 62, -1, -1, 65, -1, -1, -1, 958,
- -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
- -1, 81, 82, 83, -1, -1, -1, -1, 88, -1,
- 90, -1, 92, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 991, 103, 104, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 1004, 1005, -1, 1007, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 1, -1, 3, 4, 5, 6, 7,
- 8, 9, -1, 11, 12, 13, 1035, 15, 16, 17,
- 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
- 28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
- 38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
- 48, 49, 50, 51, -1, 53, 54, -1, 56, -1,
- -1, -1, -1, -1, 62, -1, -1, 65, -1, -1,
- -1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
- -1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
- 88, -1, 90, -1, 92, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 103, 104, 1, -1, 3,
- 4, 5, 6, 7, 8, 9, -1, 11, 12, 13,
- -1, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, 30, 31, -1, 33,
- -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
- -1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
- 54, -1, 56, -1, -1, -1, -1, -1, 62, -1,
- -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
- 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
- -1, -1, -1, -1, 88, -1, 90, -1, 92, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 103,
- 104, 1, -1, 3, 4, 5, 6, 7, 8, 9,
- -1, 11, 12, 13, -1, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
- 40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
- 50, 51, -1, 53, 54, -1, 56, -1, -1, -1,
- -1, -1, 62, -1, -1, 65, -1, -1, -1, -1,
- -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
- -1, 81, 82, 83, -1, -1, -1, -1, 88, -1,
- 90, -1, 92, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 103, 104, 1, -1, 3, 4, 5,
- 6, 7, 8, 9, -1, 11, 12, 13, -1, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, -1, 33, -1, 35,
- -1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
- 46, 47, 48, 49, 50, 51, -1, 53, 54, -1,
- 56, -1, -1, -1, -1, -1, 62, -1, -1, 65,
- -1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
- -1, -1, -1, -1, -1, 81, 82, 83, -1, -1,
- -1, -1, 88, -1, 90, 1, 92, 3, 4, 5,
- 6, 7, 8, 9, -1, 11, 12, 13, 104, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, -1, 33, -1, 35,
- -1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
- 46, 47, 48, 49, 50, 51, -1, 53, 54, -1,
- 56, -1, -1, -1, -1, -1, 62, -1, -1, 65,
- -1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
- -1, -1, -1, -1, -1, 81, 82, 83, -1, -1,
- -1, -1, 88, -1, 90, 1, 92, 3, 4, 5,
- 6, 7, 8, 9, -1, 11, 12, 13, 104, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, -1, 33, -1, 35,
- -1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
- 46, 47, 48, 49, 50, 51, -1, 53, 54, -1,
- 56, -1, -1, -1, -1, -1, 62, -1, -1, 65,
- -1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
- -1, -1, -1, -1, -1, 81, 82, 83, -1, -1,
- -1, -1, 88, -1, 90, 1, 92, 3, 4, 5,
- 6, 7, 8, 9, 10, 11, 12, -1, 104, -1,
+ -1, -1, -1, -1, 103, 104, 1, -1, 3, 4,
+ 5, 6, 7, 8, 9, -1, 11, 12, 13, -1,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 25, 26, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
+ -1, 56, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, -1, -1, 88, -1, 90, -1, 92, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 103, 104,
+ 1, -1, 3, 4, 5, 6, 7, 8, 9, -1,
+ 11, 12, 13, -1, 15, 16, 17, 18, 19, 20,
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
+ 31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
+ 41, 42, 43, -1, -1, 46, 47, 48, 49, 50,
+ 51, -1, 53, 54, -1, 56, -1, -1, -1, -1,
+ -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
+ -1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
+ 81, 82, 83, -1, -1, -1, -1, 88, -1, 90,
+ -1, 92, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 103, 104, 1, -1, 3, 4, 5, 6,
+ 7, 8, 9, -1, 11, 12, 13, -1, 15, 16,
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
+ 27, 28, 29, 30, 31, -1, 33, -1, 35, -1,
+ 37, 38, -1, 40, 41, 42, 43, -1, -1, 46,
+ 47, 48, 49, 50, 51, -1, 53, 54, -1, 56,
+ -1, -1, -1, -1, -1, 62, -1, -1, 65, -1,
+ -1, -1, -1, -1, -1, -1, 73, 74, 75, -1,
+ -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
+ -1, 88, -1, 90, 1, 92, 3, 4, 5, 6,
+ 7, 8, 9, -1, 11, 12, 13, 104, 15, 16,
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
+ 27, 28, 29, 30, 31, -1, 33, -1, 35, -1,
+ 37, 38, -1, 40, 41, 42, 43, -1, -1, 46,
+ 47, 48, 49, 50, 51, -1, 53, 54, -1, 56,
+ -1, -1, -1, -1, -1, 62, -1, -1, 65, -1,
+ -1, -1, -1, -1, -1, -1, 73, 74, 75, -1,
+ -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
+ -1, 88, -1, 90, 1, 92, 3, 4, 5, 6,
+ 7, 8, 9, -1, 11, 12, 13, 104, 15, 16,
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
+ 27, 28, 29, 30, 31, -1, 33, -1, 35, -1,
+ 37, 38, -1, 40, 41, 42, 43, -1, -1, 46,
+ 47, 48, 49, 50, 51, -1, 53, 54, -1, 56,
+ -1, -1, -1, -1, -1, 62, -1, -1, 65, -1,
+ -1, -1, -1, -1, -1, -1, 73, 74, 75, -1,
+ -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
+ -1, 88, -1, 90, 1, 92, 3, 4, 5, 6,
+ 7, 8, 9, 10, 11, 12, -1, 104, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 27, 28, 29, 30, 31, -1, 33, -1, 35,
- -1, 37, 38, -1, 40, 41, 42, 43, 44, -1,
- 46, 47, 48, 49, 50, 51, -1, 53, 54, -1,
- -1, -1, -1, -1, -1, -1, 62, -1, -1, 65,
- -1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
- -1, -1, -1, -1, -1, 81, 82, 83, -1, 85,
- -1, -1, 88, 89, -1, -1, 92, 93, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 1, 104, 3,
- 4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
+ 27, 28, 29, 30, 31, -1, 33, -1, 35, -1,
+ 37, 38, -1, 40, 41, 42, 43, -1, -1, 46,
+ 47, 48, 49, 50, 51, -1, 53, -1, -1, -1,
+ -1, -1, -1, -1, -1, 62, -1, -1, 65, -1,
+ -1, -1, -1, -1, -1, -1, 73, 74, 75, -1,
+ -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
+ -1, 88, -1, -1, -1, 92, 93, -1, -1, -1,
+ -1, -1, -1, -1, -1, 102, 1, 104, 3, 4,
+ -1, 6, 7, 8, 9, -1, 11, 12, 66, 67,
+ 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
+ 78, 79, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
+ -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, -1, -1, 88, 89, -1, 1, 92, 3, 4,
+ -1, 6, 7, 8, 9, -1, 11, 12, 103, 104,
+ -1, -1, -1, -1, 19, -1, -1, -1, -1, -1,
+ -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
+ -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
+ -1, 6, 7, 8, 9, -1, 11, 12, 103, 104,
+ -1, -1, -1, -1, 19, -1, -1, -1, -1, -1,
+ -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
+ -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
+ 5, 6, 7, 8, 9, -1, 11, 12, 103, 104,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 27, 28, 29, 30, 31, -1, 33,
- -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
- 44, -1, 46, 47, 48, 49, 50, 51, -1, 53,
- 54, -1, -1, -1, -1, -1, -1, -1, 62, -1,
- -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
- 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
- -1, 85, -1, -1, 88, 89, -1, -1, 92, 93,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 1,
- 104, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- 12, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 27, 28, 29, 30, 31,
- -1, 33, -1, 35, -1, 37, 38, -1, 40, 41,
- 42, 43, -1, -1, 46, 47, 48, 49, 50, 51,
- -1, 53, -1, -1, -1, -1, -1, -1, -1, -1,
- 62, -1, -1, 65, -1, -1, -1, -1, -1, -1,
- -1, 73, 74, 75, -1, -1, -1, -1, -1, 81,
- 82, 83, -1, -1, -1, -1, 88, -1, -1, -1,
- 92, 93, -1, -1, -1, -1, -1, -1, -1, -1,
- 102, 1, 104, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, 12, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 27, 28, 29,
- 30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
- 40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
- 50, 51, -1, 53, -1, -1, -1, -1, -1, -1,
- -1, -1, 62, -1, -1, 65, -1, -1, -1, -1,
- -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
- -1, 81, 82, 83, -1, -1, -1, -1, 88, -1,
- -1, -1, 92, 93, -1, -1, -1, -1, -1, -1,
- -1, -1, 102, 1, 104, 3, 4, -1, 6, 7,
+ -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
+ -1, 56, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, 1,
+ -1, -1, 4, 88, 6, 7, -1, 92, -1, -1,
+ 12, -1, -1, -1, -1, -1, -1, -1, -1, 104,
+ -1, -1, -1, -1, -1, 27, -1, -1, -1, 31,
+ -1, -1, -1, 35, -1, 37, 38, -1, -1, -1,
+ -1, -1, 44, -1, -1, -1, -1, -1, -1, 51,
+ -1, 53, -1, 55, -1, 57, 58, 59, -1, 61,
+ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
+ 72, 73, 74, 75, 76, 77, 78, -1, -1, 81,
+ 82, 83, -1, 1, 86, 3, 4, 89, 6, 7,
8, 9, -1, 11, 12, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 27,
+ -1, -1, 104, -1, -1, -1, -1, -1, -1, 27,
28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
48, 49, 50, 51, -1, 53, 54, -1, -1, -1,
-1, -1, -1, -1, 62, -1, -1, 65, -1, -1,
-1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
-1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
- 88, 89, -1, 1, 92, 3, 4, -1, 6, 7,
- 8, 9, -1, 11, 12, 103, 104, -1, -1, -1,
- -1, 19, -1, -1, -1, -1, -1, -1, -1, 27,
+ 88, -1, -1, 1, 92, 3, 4, -1, 6, 7,
+ 8, 9, -1, 11, 12, -1, 104, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 27,
28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
48, 49, 50, 51, -1, 53, 54, -1, -1, -1,
@@ -2835,20 +2829,20 @@ static const short yycheck[] = { 4,
-1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
-1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
88, -1, -1, 1, 92, 3, 4, -1, 6, 7,
- 8, 9, -1, 11, 12, 103, 104, -1, -1, -1,
- -1, 19, -1, -1, -1, -1, -1, -1, -1, 27,
+ 8, 9, -1, 11, 12, -1, 104, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 27,
28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
48, 49, 50, 51, -1, 53, 54, -1, -1, -1,
-1, -1, -1, -1, 62, -1, -1, 65, -1, -1,
-1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
-1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
- 88, -1, -1, 1, 92, 3, 4, 5, 6, 7,
- 8, 9, -1, 11, 12, 103, 104, -1, -1, -1,
+ 88, -1, -1, 1, 92, 3, 4, -1, 6, 7,
+ 8, 9, -1, 11, 12, -1, 104, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 27,
28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
- 48, 49, 50, 51, -1, 53, 54, -1, 56, -1,
+ 48, 49, 50, 51, -1, 53, -1, -1, 56, -1,
-1, -1, -1, -1, 62, -1, -1, 65, -1, -1,
-1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
-1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
@@ -2857,177 +2851,97 @@ static const short yycheck[] = { 4,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 27,
28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
- 48, 49, 50, 51, -1, 53, 54, -1, -1, -1,
+ 48, 49, 50, 51, -1, 53, -1, -1, -1, -1,
-1, -1, -1, -1, 62, -1, -1, 65, -1, -1,
-1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
-1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
- 88, 89, 1, -1, 92, 4, -1, 6, 7, -1,
- -1, -1, -1, 12, -1, -1, 104, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 27, -1,
- -1, -1, 31, -1, -1, -1, 35, -1, 37, 38,
- -1, -1, -1, -1, -1, 44, -1, -1, -1, -1,
- -1, -1, 51, -1, 53, -1, 55, -1, 57, 58,
- 59, -1, 61, 62, 63, 64, 65, 66, 67, 68,
- 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
- -1, -1, 81, 82, 83, -1, 1, 86, 3, 4,
- 89, 6, 7, 8, 9, -1, 11, 12, -1, -1,
- -1, -1, -1, -1, -1, 104, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
- -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, -1, 104,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
- -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, -1, 104,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, -1,
- -1, -1, -1, -1, -1, 60, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, -1, 104,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
- -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, -1, 104,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, 54,
- -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, -1, 104,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, -1,
- -1, 56, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, 1, 92, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, -1, 104,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
- -1, 46, 47, 48, 49, 50, 51, -1, 53, -1,
- -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, -1, -1, 92, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 102, 1, 104,
- 3, 4, -1, 6, 7, 8, 9, -1, 11, 12,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 27, 28, 29, 30, 31, -1,
- 33, -1, 35, -1, 37, 38, -1, 40, 41, 42,
- 43, -1, -1, 46, 47, 48, 49, 50, 51, -1,
- 53, -1, -1, -1, -1, -1, -1, -1, -1, 62,
- -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
- 73, 74, 75, -1, -1, -1, -1, -1, 81, 82,
- 83, -1, -1, -1, -1, 88, -1, -1, 1, 92,
- 3, 4, -1, 6, 7, 8, 9, -1, 11, 12,
- -1, 104, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 27, 28, 29, 30, 31, -1,
- 33, -1, 35, -1, 37, 38, -1, 40, 41, 42,
- 43, -1, -1, 46, 47, 48, 49, 50, 51, -1,
- 53, -1, -1, -1, -1, -1, -1, -1, -1, 62,
- -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
- 73, 74, 75, -1, -1, -1, -1, -1, 81, 82,
- 83, -1, -1, -1, -1, 88, -1, 3, 4, 92,
- 6, 7, 8, 9, -1, 11, 12, -1, -1, -1,
- -1, 104, -1, -1, -1, -1, -1, -1, -1, -1,
+ 88, -1, -1, -1, 92, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 102, 1, 104, 3, 4, -1,
+ 6, 7, 8, 9, -1, 11, 12, 67, 68, 69,
+ 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
-1, 27, 28, 29, 30, 31, -1, 33, -1, 35,
-1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
46, 47, 48, 49, 50, 51, -1, 53, -1, -1,
-1, -1, -1, -1, -1, -1, 62, -1, -1, 65,
-1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
-1, -1, -1, -1, -1, 81, 82, 83, -1, -1,
- -1, -1, 88, -1, -1, -1, 92, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 104, 105,
- 3, 4, 5, 6, 7, 8, 9, -1, 11, 12,
- 13, -1, 15, 16, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 28, 29, 30, 31, -1,
- 33, -1, 35, -1, 37, 38, -1, 40, 41, 42,
- 43, -1, -1, 46, 47, 48, 49, 50, 51, -1,
- 53, 54, -1, 56, -1, -1, -1, -1, -1, 62,
- -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
- 73, 74, 75, -1, -1, -1, -1, -1, 81, 82,
- 83, -1, -1, -1, -1, 88, -1, 90, -1, 92,
+ -1, -1, 88, -1, -1, 1, 92, 3, 4, -1,
+ 6, 7, 8, 9, -1, 11, 12, -1, 104, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 103, 104, 3, 4, 5, 6, 7, 8, 9, -1,
- 11, 12, 13, -1, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
- 41, 42, 43, -1, -1, 46, 47, 48, 49, 50,
- 51, -1, 53, 54, -1, 56, -1, -1, -1, -1,
- -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
- -1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
- 81, 82, 83, -1, -1, -1, -1, 88, -1, 90,
- -1, 92, 3, 4, 5, 6, 7, 8, 9, -1,
- 11, 12, 13, 104, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
- 41, 42, 43, -1, -1, 46, 47, 48, 49, 50,
- 51, -1, 53, 54, -1, 56, -1, -1, -1, -1,
- -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
- -1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
- 81, 82, 83, -1, -1, -1, -1, 88, -1, 90,
- -1, 92, 3, 4, 5, 6, 7, 8, 9, -1,
- 11, 12, 13, 104, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
- 41, 42, 43, -1, -1, 46, 47, 48, 49, 50,
- 51, -1, 53, -1, -1, 56, -1, -1, -1, -1,
- -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
- -1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
- 81, 82, 83, -1, -1, -1, -1, 88, -1, 90,
- -1, 92, 3, 4, 5, 6, 7, 8, 9, 10,
- 11, 12, -1, 104, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 27, 28, 29, 30,
- 31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
- 41, 42, 43, 44, -1, 46, 47, 48, 49, 50,
- 51, -1, 53, -1, -1, -1, -1, -1, -1, -1,
- -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
- -1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
- 81, 82, 83, -1, 85, -1, -1, 88, 89, -1,
- -1, 92, 93, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, 12, 104, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 27, 28, 29,
- 30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
- 40, 41, 42, 43, 44, -1, 46, 47, 48, 49,
- 50, 51, -1, 53, -1, -1, -1, -1, -1, -1,
- -1, -1, 62, -1, -1, 65, -1, -1, -1, -1,
- -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
- -1, 81, 82, 83, -1, 85, -1, -1, 88, 89,
- -1, -1, 92, 93, 3, 4, -1, 6, 7, 8,
- 9, -1, 11, 12, 104, -1, -1, -1, -1, -1,
+ -1, 27, 28, 29, 30, 31, -1, 33, -1, 35,
+ -1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
+ 46, 47, 48, 49, 50, 51, -1, 53, -1, -1,
+ -1, -1, -1, -1, -1, -1, 62, -1, -1, 65,
+ -1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
+ -1, -1, -1, -1, -1, 81, 82, 83, -1, -1,
+ -1, -1, 88, -1, 3, 4, 92, 6, 7, 8,
+ 9, -1, 11, 12, -1, -1, -1, -1, 104, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 27, 28,
29, 30, 31, -1, 33, -1, 35, -1, 37, 38,
- -1, 40, 41, 42, 43, 44, -1, 46, 47, 48,
+ -1, 40, 41, 42, 43, -1, -1, 46, 47, 48,
49, 50, 51, -1, 53, -1, -1, -1, -1, -1,
-1, -1, -1, 62, -1, -1, 65, -1, -1, -1,
-1, -1, -1, -1, 73, 74, 75, -1, -1, -1,
- -1, -1, 81, 82, 83, -1, 85, -1, -1, 88,
- 89, 3, 4, -1, 6, 7, 8, 9, -1, 11,
- 12, -1, -1, -1, -1, 104, -1, -1, -1, -1,
+ -1, -1, 81, 82, 83, -1, -1, -1, -1, 88,
+ -1, -1, -1, 92, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 104, 105, 3, 4, 5,
+ 6, 7, 8, 9, -1, 11, 12, 13, -1, 15,
+ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
+ 26, 27, 28, 29, 30, 31, -1, 33, -1, 35,
+ -1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
+ 46, 47, 48, 49, 50, 51, -1, 53, 54, -1,
+ 56, -1, -1, -1, -1, -1, 62, -1, -1, 65,
+ -1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
+ -1, -1, -1, -1, -1, 81, 82, 83, -1, -1,
+ -1, -1, 88, -1, 90, -1, 92, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 103, 104, 3,
+ 4, 5, 6, 7, 8, 9, -1, 11, 12, 13,
+ -1, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31, -1, 33,
+ -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
+ -1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
+ 54, -1, 56, -1, -1, -1, -1, -1, 62, -1,
+ -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
+ 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
+ -1, -1, -1, -1, 88, -1, 90, -1, 92, 3,
+ 4, 5, 6, 7, 8, 9, -1, 11, 12, 13,
+ 104, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31, -1, 33,
+ -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
+ -1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
+ 54, -1, 56, -1, -1, -1, -1, -1, 62, -1,
+ -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
+ 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
+ -1, -1, -1, -1, 88, -1, 90, -1, 92, 3,
+ 4, 5, 6, 7, 8, 9, -1, 11, 12, 13,
+ 104, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31, -1, 33,
+ -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
+ -1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
+ -1, -1, 56, -1, -1, -1, -1, -1, 62, -1,
+ -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
+ 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
+ -1, -1, -1, -1, 88, -1, 90, -1, 92, 3,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
+ 104, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 27, 28, 29, 30, 31, -1, 33,
+ -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
+ 44, -1, 46, 47, 48, 49, 50, 51, -1, 53,
+ -1, -1, -1, -1, -1, -1, -1, -1, 62, -1,
+ -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
+ 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
+ -1, 85, -1, -1, 88, 89, -1, -1, 92, 93,
+ 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
+ 104, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 27, 28, 29, 30, 31, -1,
+ 33, -1, 35, -1, 37, 38, -1, 40, 41, 42,
+ 43, 44, -1, 46, 47, 48, 49, 50, 51, -1,
+ 53, -1, -1, -1, -1, -1, -1, -1, -1, 62,
+ -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
+ 73, 74, 75, -1, -1, -1, -1, -1, 81, 82,
+ 83, -1, 85, -1, -1, 88, 89, -1, -1, 92,
+ 93, 3, 4, -1, 6, 7, 8, 9, -1, 11,
+ 12, 104, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 27, 28, 29, 30, 31,
-1, 33, -1, 35, -1, 37, 38, -1, 40, 41,
42, 43, 44, -1, 46, 47, 48, 49, 50, 51,
@@ -3038,27 +2952,27 @@ static const short yycheck[] = { 4,
-1, 6, 7, 8, 9, -1, 11, 12, -1, -1,
-1, -1, 104, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
- 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, 44,
-1, 46, 47, 48, 49, 50, 51, -1, 53, -1,
-1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
- 65, -1, -1, -1, -1, 70, -1, -1, 73, 74,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, -1, 88, -1, 3, 4, 92, 6, 7,
+ 85, -1, -1, 88, 89, 3, 4, -1, 6, 7,
8, 9, -1, 11, 12, -1, -1, -1, -1, 104,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 27,
28, 29, 30, 31, -1, 33, -1, 35, -1, 37,
- 38, -1, 40, 41, 42, 43, -1, -1, 46, 47,
- 48, 49, 50, 51, -1, 53, -1, -1, 56, -1,
+ 38, -1, 40, 41, 42, 43, 44, -1, 46, 47,
+ 48, 49, 50, 51, -1, 53, -1, -1, -1, -1,
-1, -1, -1, -1, 62, -1, -1, 65, -1, -1,
-1, -1, -1, -1, -1, 73, 74, 75, -1, -1,
- -1, -1, -1, 81, 82, 83, -1, -1, -1, -1,
- 88, -1, 3, 4, 92, 6, 7, 8, 9, -1,
+ -1, -1, -1, 81, 82, 83, -1, 85, -1, -1,
+ 88, 89, 3, 4, -1, 6, 7, 8, 9, -1,
11, 12, -1, -1, -1, -1, 104, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 27, 28, 29, 30,
31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
41, 42, 43, -1, -1, 46, 47, 48, 49, 50,
51, -1, 53, -1, -1, -1, -1, -1, -1, -1,
- -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
+ -1, 62, -1, -1, 65, -1, -1, -1, -1, 70,
-1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
81, 82, 83, -1, -1, -1, -1, 88, -1, 3,
4, 92, 6, 7, 8, 9, -1, 11, 12, -1,
@@ -3066,24 +2980,7 @@ static const short yycheck[] = { 4,
-1, -1, -1, 27, 28, 29, 30, 31, -1, 33,
-1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
-1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
- 54, -1, -1, -1, -1, -1, -1, -1, 62, -1,
- -1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
- 74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
- -1, -1, 3, 4, 88, 6, 7, 8, 9, -1,
- 11, 12, -1, -1, -1, -1, -1, -1, -1, -1,
- 104, -1, -1, -1, -1, -1, 27, 28, 29, 30,
- 31, -1, 33, -1, 35, -1, 37, 38, -1, 40,
- 41, 42, 43, -1, -1, 46, 47, 48, 49, 50,
- 51, -1, 53, -1, -1, -1, -1, -1, -1, -1,
- -1, 62, -1, -1, 65, -1, -1, -1, -1, -1,
- -1, -1, 73, 74, 75, -1, -1, -1, -1, -1,
- 81, 82, 83, -1, -1, -1, -1, 88, 89, 3,
- 4, -1, 6, 7, 8, 9, -1, 11, 12, -1,
- -1, -1, -1, 104, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 27, 28, 29, 30, 31, -1, 33,
- -1, 35, -1, 37, 38, -1, 40, 41, 42, 43,
- -1, -1, 46, 47, 48, 49, 50, 51, -1, 53,
- -1, -1, -1, -1, -1, -1, -1, -1, 62, -1,
+ -1, -1, 56, -1, -1, -1, -1, -1, 62, -1,
-1, 65, -1, -1, -1, -1, -1, -1, -1, 73,
74, 75, -1, -1, -1, -1, -1, 81, 82, 83,
-1, -1, -1, -1, 88, -1, 3, 4, 92, 6,
@@ -3100,6 +2997,23 @@ static const short yycheck[] = { 4,
-1, -1, -1, -1, -1, -1, -1, 27, 28, 29,
30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
+ 50, 51, -1, 53, 54, -1, -1, -1, -1, -1,
+ -1, -1, 62, -1, -1, 65, -1, -1, -1, -1,
+ -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
+ -1, 81, 82, 83, -1, -1, 3, 4, 88, 6,
+ 7, 8, 9, -1, 11, 12, -1, -1, -1, -1,
+ -1, -1, -1, -1, 104, -1, -1, -1, -1, -1,
+ 27, 28, 29, 30, 31, -1, 33, -1, 35, -1,
+ 37, 38, -1, 40, 41, 42, 43, -1, -1, 46,
+ 47, 48, 49, 50, 51, -1, 53, -1, -1, -1,
+ -1, -1, -1, -1, -1, 62, -1, -1, 65, -1,
+ -1, -1, -1, -1, -1, -1, 73, 74, 75, -1,
+ -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
+ -1, 88, 89, 3, 4, -1, 6, 7, 8, 9,
+ -1, 11, 12, -1, -1, -1, -1, 104, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 27, 28, 29,
+ 30, 31, -1, 33, -1, 35, -1, 37, 38, -1,
+ 40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
50, 51, -1, 53, -1, -1, -1, -1, -1, -1,
-1, -1, 62, -1, -1, 65, -1, -1, -1, -1,
-1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
@@ -3129,10 +3043,44 @@ static const short yycheck[] = { 4,
49, 50, 51, -1, 53, -1, -1, -1, -1, -1,
-1, -1, -1, 62, -1, -1, 65, -1, -1, -1,
-1, -1, -1, -1, 73, 74, 75, -1, -1, -1,
+ -1, -1, 81, 82, 83, -1, -1, -1, -1, 88,
+ -1, 3, 4, 92, 6, 7, 8, 9, -1, 11,
+ 12, -1, -1, -1, -1, 104, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 27, 28, 29, 30, 31,
+ -1, 33, -1, 35, -1, 37, 38, -1, 40, 41,
+ 42, 43, -1, -1, 46, 47, 48, 49, 50, 51,
+ -1, 53, -1, -1, -1, -1, -1, -1, -1, -1,
+ 62, -1, -1, 65, -1, -1, -1, -1, -1, -1,
+ -1, 73, 74, 75, -1, -1, -1, -1, -1, 81,
+ 82, 83, -1, -1, -1, -1, 88, -1, 3, 4,
+ 92, 6, 7, 8, 9, -1, 11, 12, -1, -1,
+ -1, -1, 104, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
+ 35, -1, 37, 38, -1, 40, 41, 42, 43, -1,
+ -1, 46, 47, 48, 49, 50, 51, -1, 53, -1,
+ -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
+ 65, -1, -1, -1, -1, -1, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, 3, 4, 88, 6, 7, 8, 9, -1, 11,
+ 12, -1, -1, -1, -1, -1, -1, -1, -1, 104,
+ -1, -1, -1, -1, -1, 27, 28, 29, 30, 31,
+ -1, 33, -1, 35, -1, 37, 38, -1, 40, 41,
+ 42, 43, -1, -1, 46, 47, 48, 49, 50, 51,
+ -1, 53, -1, -1, -1, -1, -1, -1, -1, -1,
+ 62, -1, -1, 65, -1, -1, -1, -1, -1, -1,
+ -1, 73, 74, 75, -1, -1, -1, -1, -1, 81,
+ 82, 83, -1, -1, 3, 4, 88, 6, 7, 8,
+ 9, -1, 11, 12, -1, -1, -1, -1, -1, -1,
+ -1, -1, 104, -1, -1, -1, -1, -1, 27, 28,
+ 29, 30, 31, -1, 33, -1, 35, -1, 37, 38,
+ -1, 40, 41, 42, 43, -1, -1, 46, 47, 48,
+ 49, 50, 51, -1, 53, -1, -1, -1, -1, -1,
+ -1, -1, -1, 62, -1, -1, 65, -1, -1, -1,
+ -1, -1, -1, -1, 73, 74, 75, -1, -1, -1,
-1, -1, 81, 82, 83, -1, -1, 3, 4, 88,
6, 7, 8, 9, -1, 11, 12, -1, -1, -1,
-1, -1, -1, -1, -1, 104, -1, -1, -1, -1,
- -1, 27, 28, 29, 30, 31, -1, 33, -1, 35,
+ -1, 27, 28, -1, -1, 31, -1, 33, -1, 35,
-1, 37, 38, -1, 40, 41, 42, 43, -1, -1,
46, 47, 48, 49, 50, 51, -1, 53, -1, -1,
-1, -1, -1, -1, -1, -1, 62, -1, -1, 65,
@@ -3143,43 +3091,60 @@ static const short yycheck[] = { 4,
-1, -1, -1, -1, 27, 28, 29, 30, 31, -1,
33, -1, 35, -1, 37, 38, -1, 40, 41, 42,
43, -1, -1, 46, 47, 48, 49, 50, 51, -1,
- 53, -1, -1, -1, -1, -1, -1, -1, -1, 62,
- -1, -1, 65, -1, -1, -1, -1, -1, -1, -1,
- 73, 74, 75, -1, -1, -1, -1, -1, 81, 82,
- 83, -1, -1, 3, 4, 88, 6, 7, 8, 9,
- -1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
- -1, 104, -1, -1, -1, -1, -1, 27, 28, -1,
- -1, 31, -1, 33, -1, 35, -1, 37, 38, -1,
- 40, 41, 42, 43, -1, -1, 46, 47, 48, 49,
- 50, 51, -1, 53, -1, -1, -1, -1, -1, -1,
- -1, -1, 62, -1, -1, 65, -1, -1, -1, -1,
- -1, -1, -1, 73, 74, 75, -1, -1, -1, -1,
- -1, 81, 82, 83, -1, -1, 3, 4, 88, 6,
- 7, 8, 9, -1, 11, 12, -1, -1, -1, -1,
- -1, -1, -1, -1, 104, -1, -1, -1, -1, -1,
- 27, 28, -1, -1, 31, -1, 33, -1, 35, -1,
- 37, 38, -1, 40, 41, 42, 43, -1, -1, 46,
- 47, 48, 49, 50, 51, -1, 53, -1, -1, -1,
- -1, -1, -1, -1, -1, 62, -1, -1, 65, -1,
- -1, -1, -1, -1, -1, -1, 73, 74, 75, -1,
- -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
- -1, 88, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 55, -1, 57, 58, 59, 104, 61, 62,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79, 57, 58, 59,
- 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
+ 53, -1, 3, 4, 5, 6, 7, -1, -1, -1,
+ -1, 12, -1, -1, -1, -1, -1, 3, 4, 5,
+ 6, 7, -1, -1, -1, -1, 12, -1, 81, 82,
+ 83, -1, -1, -1, 35, 88, -1, -1, -1, 92,
+ 41, 27, -1, 44, -1, 31, -1, -1, -1, 35,
+ 51, 104, 53, -1, -1, 41, -1, -1, -1, -1,
+ -1, -1, -1, -1, 65, 51, -1, 53, -1, -1,
+ 56, -1, -1, -1, 75, -1, -1, -1, -1, 65,
+ -1, -1, 83, -1, 85, -1, -1, 88, 89, 75,
+ -1, 3, 4, 5, 6, 7, -1, 83, 10, -1,
+ 12, -1, 88, -1, -1, -1, -1, -1, 3, 4,
+ 5, 6, 7, -1, -1, 27, -1, 12, -1, 31,
+ -1, -1, -1, 35, -1, -1, -1, -1, -1, 41,
+ -1, -1, 27, -1, -1, -1, 31, -1, -1, 51,
+ 35, 53, -1, -1, -1, -1, 41, -1, -1, -1,
+ -1, -1, -1, 65, -1, -1, 51, -1, 53, -1,
+ -1, -1, -1, 75, -1, 60, -1, -1, -1, -1,
+ 65, 83, -1, -1, -1, -1, 88, -1, -1, -1,
+ 75, 3, 4, 5, 6, 7, -1, -1, 83, -1,
+ 12, -1, -1, 88, -1, -1, -1, -1, 3, 4,
+ 5, 6, 7, -1, -1, 27, -1, 12, -1, 31,
+ -1, -1, -1, 35, -1, -1, -1, -1, -1, 41,
+ -1, -1, 27, -1, -1, -1, 31, -1, -1, 51,
+ 35, 53, -1, -1, 56, -1, 41, -1, -1, -1,
+ -1, -1, 4, 65, 6, 7, 51, -1, 53, -1,
+ 12, -1, -1, 75, -1, -1, -1, -1, -1, -1,
+ 65, 83, -1, -1, -1, 27, 88, -1, -1, 31,
+ 75, -1, -1, 35, -1, -1, -1, -1, 83, -1,
+ -1, -1, 44, 88, -1, -1, -1, -1, -1, 51,
+ -1, 53, -1, -1, -1, -1, -1, -1, -1, -1,
+ 57, 58, 59, 65, 61, 62, 63, 64, 65, 66,
+ 67, 68, 69, 75, 71, 72, 73, 74, 75, 76,
+ 77, 78, 79, 85, -1, -1, 88, 89, 57, 58,
+ 59, -1, 61, 62, 63, 64, 65, 66, 67, 68,
+ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
+ 79, 55, 32, 57, 58, 59, -1, 61, 62, 63,
+ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ 74, 75, 76, 77, 78, 79, 105, 57, 58, 59,
+ -1, 61, 62, 63, 64, 65, 66, 67, 68, 69,
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
- 77, 78, 79, 57, 58, 59, -1, 61, 62, 63,
+ 77, 78, 79, 57, 58, 59, 60, 61, 62, 63,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, 79, 57, 58, 59, -1,
- 61, 62, 63, 64, 65, 66, 67, 68, 69, -1,
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
71, 72, 73, 74, 75, 76, 77, 78, 79, 59,
-1, 61, 62, 63, 64, 65, 66, 67, 68, 69,
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 76, 77, 78, 79
+ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
+ 72, 73, 74, 75, 76, 77, 78, 79, 64, 65,
+ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ 76, 77, 78, 79, 65, 66, 67, 68, 69, 70,
+ 71, 72, 73, 74, 75, 76, 77, 78, 79
};
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/local/lib/bison.simple"
@@ -3364,23 +3329,8 @@ __yy_bcopy (char *from, char *to, int count)
#endif
#line 184 "/usr/local/lib/bison.simple"
-
-/* The user can define YYPARSE_PARAM as the name of an argument to be passed
- into yyparse. The argument should have type void *.
- It should actually point to an object.
- Grammar actions can access the variable by casting it
- to the proper pointer type. */
-
-#ifdef YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
-#else
-#define YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL
-#endif
-
int
-yyparse(YYPARSE_PARAM)
- YYPARSE_PARAM_DECL
+yyparse()
{
register int yystate;
register int yyn;
@@ -4767,21 +4717,13 @@ case 227:
#line 1253 "parse.y"
{ yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
break;}
-case 228:
-#line 1255 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 231:
-#line 1262 "parse.y"
+case 230:
+#line 1260 "parse.y"
{ push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
break;}
-case 232:
-#line 1265 "parse.y"
-{ yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
- break;}
-case 233:
-#line 1270 "parse.y"
+case 231:
+#line 1266 "parse.y"
{
if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
@@ -4801,20 +4743,20 @@ case 233:
yyval.ttype = do_identifier (yyval.ttype);
;
break;}
-case 236:
-#line 1291 "parse.y"
+case 234:
+#line 1287 "parse.y"
{ yyval.ttype = combine_strings (yyval.ttype); ;
break;}
-case 237:
-#line 1293 "parse.y"
+case 235:
+#line 1289 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
-case 238:
-#line 1295 "parse.y"
+case 236:
+#line 1291 "parse.y"
{ yyval.ttype = error_mark_node; ;
break;}
-case 239:
-#line 1297 "parse.y"
+case 237:
+#line 1293 "parse.y"
{ if (current_function_decl == 0)
{
error ("braced-group within expression allowed only inside a function");
@@ -4823,8 +4765,8 @@ case 239:
keep_next_level ();
yyval.ttype = expand_start_stmt_expr (); ;
break;}
-case 240:
-#line 1305 "parse.y"
+case 238:
+#line 1301 "parse.y"
{ tree rtl_exp;
if (flag_ansi)
pedwarn ("ANSI C++ forbids braced-groups within expressions");
@@ -4846,16 +4788,16 @@ case 240:
yyval.ttype = yyvsp[-1].ttype;
;
break;}
-case 241:
-#line 1326 "parse.y"
+case 239:
+#line 1322 "parse.y"
{ /* [eichin:19911016.1902EST] */
yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl);
/* here we instantiate_class_template as needed... */
do_pending_templates ();
;
break;}
-case 242:
-#line 1330 "parse.y"
+case 240:
+#line 1326 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
&& TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
@@ -4864,8 +4806,8 @@ case 242:
yyval.ttype = yyvsp[-1].ttype;
;
break;}
-case 243:
-#line 1338 "parse.y"
+case 241:
+#line 1334 "parse.y"
{
yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
if (TREE_CODE (yyval.ttype) == CALL_EXPR
@@ -4873,12 +4815,12 @@ case 243:
yyval.ttype = require_complete_type (yyval.ttype);
;
break;}
-case 244:
-#line 1345 "parse.y"
+case 242:
+#line 1341 "parse.y"
{ yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
break;}
-case 245:
-#line 1347 "parse.y"
+case 243:
+#line 1343 "parse.y"
{ /* If we get an OFFSET_REF, turn it into what it really
means (e.g., a COMPONENT_REF). This way if we've got,
say, a reference to a static member that's being operated
@@ -4888,14 +4830,14 @@ case 245:
yyval.ttype = resolve_offset_ref (yyval.ttype);
yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
break;}
-case 246:
-#line 1356 "parse.y"
+case 244:
+#line 1352 "parse.y"
{ if (TREE_CODE (yyval.ttype) == OFFSET_REF)
yyval.ttype = resolve_offset_ref (yyval.ttype);
yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
break;}
-case 247:
-#line 1361 "parse.y"
+case 245:
+#line 1357 "parse.y"
{ if (current_class_decl)
{
#ifdef WARNING_ABOUT_CCD
@@ -4919,8 +4861,8 @@ case 247:
}
;
break;}
-case 248:
-#line 1384 "parse.y"
+case 246:
+#line 1380 "parse.y"
{
tree type;
tree id = yyval.ttype;
@@ -4965,37 +4907,37 @@ case 248:
}
;
break;}
-case 250:
-#line 1429 "parse.y"
+case 248:
+#line 1425 "parse.y"
{ tree type = groktypename (yyvsp[-4].ttype);
yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
break;}
-case 251:
-#line 1432 "parse.y"
+case 249:
+#line 1428 "parse.y"
{ tree type = groktypename (yyvsp[-4].ttype);
yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
break;}
-case 252:
-#line 1435 "parse.y"
+case 250:
+#line 1431 "parse.y"
{ tree type = groktypename (yyvsp[-4].ttype);
yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
break;}
-case 253:
-#line 1438 "parse.y"
+case 251:
+#line 1434 "parse.y"
{ tree type = groktypename (yyvsp[-4].ttype);
yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
break;}
-case 254:
-#line 1441 "parse.y"
+case 252:
+#line 1437 "parse.y"
{ yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
break;}
-case 255:
-#line 1443 "parse.y"
+case 253:
+#line 1439 "parse.y"
{ tree type = groktypename (yyvsp[-1].ttype);
yyval.ttype = get_typeid (type); ;
break;}
-case 256:
-#line 1446 "parse.y"
+case 254:
+#line 1442 "parse.y"
{
do_scoped_id:
yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
@@ -5035,8 +4977,8 @@ case 256:
;
break;}
-case 257:
-#line 1485 "parse.y"
+case 255:
+#line 1481 "parse.y"
{
got_scope = NULL_TREE;
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
@@ -5044,28 +4986,28 @@ case 257:
yyval.ttype = yyvsp[0].ttype;
;
break;}
+case 256:
+#line 1488 "parse.y"
+{ yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
+ break;}
+case 257:
+#line 1490 "parse.y"
+{ yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
+ break;}
case 258:
#line 1492 "parse.y"
-{ yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
+{ yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
break;}
case 259:
#line 1494 "parse.y"
-{ yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
+{ yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 260:
#line 1496 "parse.y"
-{ yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
+{ yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
break;}
case 261:
#line 1498 "parse.y"
-{ yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
- break;}
-case 262:
-#line 1500 "parse.y"
-{ yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
- break;}
-case 263:
-#line 1502 "parse.y"
{
#if 0
/* This is a future direction of this code, but because
@@ -5081,8 +5023,8 @@ case 263:
#endif
;
break;}
-case 264:
-#line 1517 "parse.y"
+case 262:
+#line 1513 "parse.y"
{
#if 0
/* This is a future direction of this code, but because
@@ -5098,8 +5040,8 @@ case 264:
#endif
;
break;}
-case 265:
-#line 1532 "parse.y"
+case 263:
+#line 1528 "parse.y"
{
if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
{
@@ -5111,8 +5053,8 @@ case 265:
yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
;
break;}
-case 266:
-#line 1543 "parse.y"
+case 264:
+#line 1539 "parse.y"
{
if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
{
@@ -5124,8 +5066,8 @@ case 266:
yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
;
break;}
-case 267:
-#line 1555 "parse.y"
+case 265:
+#line 1551 "parse.y"
{
if (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype))
!= TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype))))
@@ -5133,8 +5075,8 @@ case 267:
yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
;
break;}
-case 268:
-#line 1562 "parse.y"
+case 266:
+#line 1558 "parse.y"
{
if (yyvsp[-4].ttype != yyvsp[-1].ttype)
cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
@@ -5144,36 +5086,36 @@ case 268:
yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
;
break;}
-case 269:
-#line 1611 "parse.y"
+case 267:
+#line 1607 "parse.y"
{ yyval.itype = 0; ;
break;}
-case 270:
-#line 1613 "parse.y"
+case 268:
+#line 1609 "parse.y"
{ got_scope = NULL_TREE; yyval.itype = 1; ;
break;}
-case 271:
-#line 1617 "parse.y"
+case 269:
+#line 1613 "parse.y"
{ yyval.itype = 0; ;
break;}
-case 272:
-#line 1619 "parse.y"
+case 270:
+#line 1615 "parse.y"
{ got_scope = NULL_TREE; yyval.itype = 1; ;
break;}
-case 273:
-#line 1624 "parse.y"
+case 271:
+#line 1620 "parse.y"
{ yyval.ttype = true_node; ;
break;}
-case 274:
-#line 1626 "parse.y"
+case 272:
+#line 1622 "parse.y"
{ yyval.ttype = false_node; ;
break;}
-case 276:
-#line 1633 "parse.y"
+case 274:
+#line 1629 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 277:
-#line 1638 "parse.y"
+case 275:
+#line 1634 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
@@ -5184,14 +5126,14 @@ case 277:
keep_next_level ();
;
break;}
-case 279:
-#line 1651 "parse.y"
+case 277:
+#line 1647 "parse.y"
{
yyval.ttype = build_x_arrow (yyval.ttype);
;
break;}
-case 280:
-#line 1659 "parse.y"
+case 278:
+#line 1655 "parse.y"
{ tree d = get_decl_list (yyvsp[-2].ttype);
int yes = suspend_momentary ();
d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
@@ -5201,8 +5143,8 @@ case 280:
note_got_semicolon (yyvsp[-2].ttype);
;
break;}
-case 281:
-#line 1668 "parse.y"
+case 279:
+#line 1664 "parse.y"
{ tree d = yyvsp[-2].ttype;
int yes = suspend_momentary ();
d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
@@ -5211,164 +5153,164 @@ case 281:
note_list_got_semicolon (yyvsp[-2].ttype);
;
break;}
-case 282:
-#line 1676 "parse.y"
+case 280:
+#line 1672 "parse.y"
{
resume_momentary (yyvsp[-1].itype);
if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
note_got_semicolon (yyvsp[-2].ttype);
;
break;}
-case 283:
-#line 1682 "parse.y"
+case 281:
+#line 1678 "parse.y"
{
resume_momentary (yyvsp[-1].itype);
note_list_got_semicolon (yyvsp[-2].ttype);
;
break;}
-case 284:
-#line 1687 "parse.y"
+case 282:
+#line 1683 "parse.y"
{ resume_momentary (yyvsp[-1].itype); ;
break;}
-case 285:
-#line 1689 "parse.y"
+case 283:
+#line 1685 "parse.y"
{
shadow_tag (yyvsp[-1].ttype);
note_list_got_semicolon (yyvsp[-1].ttype);
;
break;}
-case 286:
-#line 1694 "parse.y"
+case 284:
+#line 1690 "parse.y"
{ warning ("empty declaration"); ;
break;}
-case 289:
-#line 1708 "parse.y"
+case 287:
+#line 1704 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
NULL_TREE); ;
break;}
-case 290:
-#line 1711 "parse.y"
+case 288:
+#line 1707 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (),
NULL_TREE); ;
break;}
+case 289:
+#line 1714 "parse.y"
+{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
+ break;}
+case 290:
+#line 1716 "parse.y"
+{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
+ break;}
case 291:
#line 1718 "parse.y"
-{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
break;}
case 292:
#line 1720 "parse.y"
-{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
break;}
case 293:
#line 1722 "parse.y"
-{ yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
- break;}
-case 294:
-#line 1724 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
break;}
-case 295:
-#line 1726 "parse.y"
-{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
+case 296:
+#line 1735 "parse.y"
+{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
+ break;}
+case 297:
+#line 1737 "parse.y"
+{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 298:
#line 1739 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
+{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
break;}
case 299:
#line 1741 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
break;}
case 300:
#line 1743 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
- break;}
-case 301:
-#line 1745 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
- break;}
-case 302:
-#line 1747 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype,
chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
break;}
-case 303:
-#line 1753 "parse.y"
+case 301:
+#line 1749 "parse.y"
{ if (extra_warnings)
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
break;}
-case 304:
-#line 1758 "parse.y"
+case 302:
+#line 1754 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 305:
-#line 1760 "parse.y"
+case 303:
+#line 1756 "parse.y"
{ if (extra_warnings)
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 306:
-#line 1772 "parse.y"
+case 304:
+#line 1768 "parse.y"
{ TREE_STATIC (yyval.ttype) = 1; ;
break;}
-case 307:
-#line 1774 "parse.y"
+case 305:
+#line 1770 "parse.y"
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
break;}
-case 308:
-#line 1776 "parse.y"
+case 306:
+#line 1772 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
TREE_STATIC (yyval.ttype) = 1; ;
break;}
-case 309:
-#line 1779 "parse.y"
+case 307:
+#line 1775 "parse.y"
{ if (extra_warnings && TREE_STATIC (yyval.ttype))
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
break;}
-case 310:
-#line 1795 "parse.y"
+case 308:
+#line 1791 "parse.y"
{ yyval.ttype = get_decl_list (yyval.ttype); ;
break;}
-case 311:
-#line 1797 "parse.y"
+case 309:
+#line 1793 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 312:
-#line 1799 "parse.y"
+case 310:
+#line 1795 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 313:
-#line 1801 "parse.y"
+case 311:
+#line 1797 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
break;}
-case 314:
-#line 1806 "parse.y"
+case 312:
+#line 1802 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
break;}
-case 315:
-#line 1808 "parse.y"
+case 313:
+#line 1804 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 319:
-#line 1819 "parse.y"
+case 317:
+#line 1815 "parse.y"
{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
if (flag_ansi)
pedwarn ("ANSI C++ forbids `typeof'"); ;
break;}
-case 320:
-#line 1823 "parse.y"
+case 318:
+#line 1819 "parse.y"
{ yyval.ttype = groktypename (yyvsp[-1].ttype);
if (flag_ansi)
pedwarn ("ANSI C++ forbids `typeof'"); ;
break;}
-case 321:
-#line 1827 "parse.y"
+case 319:
+#line 1823 "parse.y"
{ tree type = TREE_TYPE (yyvsp[-1].ttype);
if (IS_AGGR_TYPE (type))
@@ -5383,8 +5325,8 @@ case 321:
}
;
break;}
-case 322:
-#line 1841 "parse.y"
+case 320:
+#line 1837 "parse.y"
{ tree type = groktypename (yyvsp[-1].ttype);
if (IS_AGGR_TYPE (type))
@@ -5399,16 +5341,16 @@ case 322:
}
;
break;}
-case 332:
-#line 1880 "parse.y"
+case 330:
+#line 1876 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 333:
-#line 1882 "parse.y"
+case 331:
+#line 1878 "parse.y"
{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
-case 334:
-#line 1887 "parse.y"
+case 332:
+#line 1883 "parse.y"
{ current_declspecs = yyvsp[-5].ttype;
if (TREE_CODE (current_declspecs) != TREE_LIST)
current_declspecs = get_decl_list (current_declspecs);
@@ -5423,13 +5365,13 @@ case 334:
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
break;}
-case 335:
-#line 1902 "parse.y"
+case 333:
+#line 1898 "parse.y"
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
yyval.itype = yyvsp[-2].itype; ;
break;}
-case 336:
-#line 1905 "parse.y"
+case 334:
+#line 1901 "parse.y"
{ tree d;
current_declspecs = yyvsp[-4].ttype;
if (TREE_CODE (current_declspecs) != TREE_LIST)
@@ -5446,35 +5388,35 @@ case 336:
cplus_decl_attributes (d, yyvsp[0].ttype);
finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
break;}
-case 337:
-#line 1924 "parse.y"
+case 335:
+#line 1920 "parse.y"
{ yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
break;}
-case 338:
-#line 1928 "parse.y"
+case 336:
+#line 1924 "parse.y"
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0); ;
break;}
-case 339:
-#line 1930 "parse.y"
+case 337:
+#line 1926 "parse.y"
{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype);
finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0); ;
break;}
-case 340:
-#line 1937 "parse.y"
+case 338:
+#line 1933 "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);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
break;}
-case 341:
-#line 1943 "parse.y"
+case 339:
+#line 1939 "parse.y"
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
yyval.itype = yyvsp[-2].itype; ;
break;}
-case 342:
-#line 1946 "parse.y"
+case 340:
+#line 1942 "parse.y"
{ tree d;
current_declspecs = yyvsp[-4].ttype;
yyval.itype = suspend_momentary ();
@@ -5482,20 +5424,20 @@ case 342:
cplus_decl_attributes (d, yyvsp[0].ttype);
finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
break;}
-case 343:
-#line 1956 "parse.y"
+case 341:
+#line 1952 "parse.y"
{ current_declspecs = NULL_TREE;
yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
break;}
-case 344:
-#line 1962 "parse.y"
+case 342:
+#line 1958 "parse.y"
{ finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
yyval.itype = yyvsp[-2].itype; ;
break;}
-case 345:
-#line 1965 "parse.y"
+case 343:
+#line 1961 "parse.y"
{ tree d;
current_declspecs = NULL_TREE;
yyval.itype = suspend_momentary ();
@@ -5503,147 +5445,147 @@ case 345:
cplus_decl_attributes (d, yyvsp[0].ttype);
finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
break;}
-case 346:
-#line 1977 "parse.y"
+case 344:
+#line 1973 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 347:
-#line 1979 "parse.y"
+case 345:
+#line 1975 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 348:
-#line 1984 "parse.y"
+case 346:
+#line 1980 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 349:
-#line 1986 "parse.y"
+case 347:
+#line 1982 "parse.y"
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
-case 350:
-#line 1991 "parse.y"
+case 348:
+#line 1987 "parse.y"
{ yyval.ttype = yyvsp[-2].ttype; ;
break;}
-case 351:
-#line 1996 "parse.y"
+case 349:
+#line 1992 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 352:
-#line 1998 "parse.y"
+case 350:
+#line 1994 "parse.y"
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
-case 353:
-#line 2003 "parse.y"
+case 351:
+#line 1999 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 354:
-#line 2005 "parse.y"
+case 352:
+#line 2001 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 355:
-#line 2007 "parse.y"
+case 353:
+#line 2003 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
break;}
-case 356:
-#line 2009 "parse.y"
+case 354:
+#line 2005 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-5].ttype, NULL_TREE, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
break;}
-case 357:
-#line 2011 "parse.y"
+case 355:
+#line 2007 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
break;}
-case 362:
-#line 2027 "parse.y"
+case 360:
+#line 2023 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 363:
-#line 2029 "parse.y"
+case 361:
+#line 2025 "parse.y"
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
-case 365:
-#line 2035 "parse.y"
+case 363:
+#line 2031 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
-case 366:
-#line 2038 "parse.y"
+case 364:
+#line 2034 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
-case 367:
-#line 2041 "parse.y"
+case 365:
+#line 2037 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
-case 368:
-#line 2044 "parse.y"
+case 366:
+#line 2040 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 369:
-#line 2051 "parse.y"
+case 367:
+#line 2047 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
-case 370:
-#line 2053 "parse.y"
+case 368:
+#line 2049 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 371:
-#line 2056 "parse.y"
+case 369:
+#line 2052 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
-case 372:
-#line 2058 "parse.y"
+case 370:
+#line 2054 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 373:
-#line 2060 "parse.y"
+case 371:
+#line 2056 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 374:
-#line 2062 "parse.y"
+case 372:
+#line 2058 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 375:
-#line 2067 "parse.y"
+case 373:
+#line 2063 "parse.y"
{ yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_enum (yyvsp[-1].ttype); ;
break;}
-case 376:
-#line 2070 "parse.y"
+case 374:
+#line 2066 "parse.y"
{ yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
resume_momentary ((int) yyvsp[-4].itype);
check_for_missing_semicolon (yyvsp[-3].ttype); ;
break;}
-case 377:
-#line 2074 "parse.y"
+case 375:
+#line 2070 "parse.y"
{ yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
check_for_missing_semicolon (yyval.ttype); ;
break;}
-case 378:
-#line 2077 "parse.y"
+case 376:
+#line 2073 "parse.y"
{ yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_enum (make_anon_name ()); ;
break;}
-case 379:
-#line 2080 "parse.y"
+case 377:
+#line 2076 "parse.y"
{ yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
resume_momentary ((int) yyvsp[-5].itype);
check_for_missing_semicolon (yyvsp[-3].ttype); ;
break;}
-case 380:
-#line 2084 "parse.y"
+case 378:
+#line 2080 "parse.y"
{ yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
check_for_missing_semicolon (yyval.ttype); ;
break;}
-case 381:
-#line 2087 "parse.y"
+case 379:
+#line 2083 "parse.y"
{ yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
break;}
-case 382:
-#line 2089 "parse.y"
+case 380:
+#line 2085 "parse.y"
{ yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
break;}
-case 383:
-#line 2093 "parse.y"
+case 381:
+#line 2089 "parse.y"
{
int semi;
tree id;
@@ -5695,8 +5637,8 @@ case 383:
if (! semi)
check_for_missing_semicolon (yyval.ttype); ;
break;}
-case 384:
-#line 2144 "parse.y"
+case 382:
+#line 2140 "parse.y"
{
#if 0
/* It's no longer clear what the following error is supposed to
@@ -5710,72 +5652,72 @@ case 384:
#endif
;
break;}
-case 388:
-#line 2166 "parse.y"
+case 386:
+#line 2162 "parse.y"
{ if (pedantic) pedwarn ("comma at end of enumerator list"); ;
break;}
-case 390:
-#line 2171 "parse.y"
+case 388:
+#line 2167 "parse.y"
{ error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
-case 391:
-#line 2173 "parse.y"
+case 389:
+#line 2169 "parse.y"
{ error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
-case 392:
-#line 2175 "parse.y"
+case 390:
+#line 2171 "parse.y"
{ error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
-case 393:
-#line 2177 "parse.y"
+case 391:
+#line 2173 "parse.y"
{ error ("no body nor ';' separates two class, struct or union declarations"); ;
break;}
-case 394:
-#line 2182 "parse.y"
+case 392:
+#line 2178 "parse.y"
{
yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype;
if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
instantiate_class_template (yyval.ttype, 2);
;
break;}
-case 395:
-#line 2191 "parse.y"
+case 393:
+#line 2187 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 396:
-#line 2193 "parse.y"
+case 394:
+#line 2189 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 397:
-#line 2195 "parse.y"
+case 395:
+#line 2191 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 398:
-#line 2197 "parse.y"
+case 396:
+#line 2193 "parse.y"
{ yyungetc ('{', 1);
aggr2:
current_aggr = yyval.ttype;
yyval.ttype = yyvsp[-1].ttype;
overload_template_name (yyval.ttype, 0); ;
break;}
-case 399:
-#line 2203 "parse.y"
+case 397:
+#line 2199 "parse.y"
{ yyungetc (':', 1); goto aggr2; ;
break;}
-case 401:
-#line 2209 "parse.y"
+case 399:
+#line 2205 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 402:
-#line 2213 "parse.y"
+case 400:
+#line 2209 "parse.y"
{ yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
-case 403:
-#line 2216 "parse.y"
+case 401:
+#line 2212 "parse.y"
{ yyval.ttype = xref_defn_tag (current_aggr, yyvsp[0].ttype, NULL_TREE); ;
break;}
-case 404:
-#line 2221 "parse.y"
+case 402:
+#line 2217 "parse.y"
{
if (yyvsp[0].ttype)
yyval.ttype = xref_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype, 1);
@@ -5783,8 +5725,8 @@ case 404:
yyval.ttype = yyvsp[-1].ttype;
;
break;}
-case 405:
-#line 2230 "parse.y"
+case 403:
+#line 2226 "parse.y"
{
if (yyvsp[0].ttype)
yyval.ttype = xref_defn_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
@@ -5792,29 +5734,29 @@ case 405:
yyval.ttype = yyvsp[-1].ttype;
;
break;}
-case 406:
-#line 2239 "parse.y"
+case 404:
+#line 2235 "parse.y"
{ yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
yyungetc ('{', 1); ;
break;}
-case 409:
-#line 2247 "parse.y"
+case 407:
+#line 2243 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 410:
-#line 2249 "parse.y"
+case 408:
+#line 2245 "parse.y"
{ yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
break;}
-case 411:
-#line 2251 "parse.y"
+case 409:
+#line 2247 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 413:
-#line 2257 "parse.y"
+case 411:
+#line 2253 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 414:
-#line 2262 "parse.y"
+case 412:
+#line 2258 "parse.y"
{
tree type;
do_base_class1:
@@ -5842,8 +5784,8 @@ case 414:
yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
;
break;}
-case 415:
-#line 2289 "parse.y"
+case 413:
+#line 2285 "parse.y"
{
tree type;
do_base_class2:
@@ -5873,8 +5815,8 @@ case 415:
yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
;
break;}
-case 417:
-#line 2322 "parse.y"
+case 415:
+#line 2318 "parse.y"
{
if (current_aggr == signature_type_node)
{
@@ -5897,8 +5839,8 @@ case 417:
}
;
break;}
-case 418:
-#line 2344 "parse.y"
+case 416:
+#line 2340 "parse.y"
{
if (current_aggr == signature_type_node)
{
@@ -5921,14 +5863,14 @@ case 418:
}
;
break;}
-case 420:
-#line 2370 "parse.y"
+case 418:
+#line 2366 "parse.y"
{ if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
sorry ("non-virtual access");
yyval.itype = access_default_virtual; ;
break;}
-case 421:
-#line 2374 "parse.y"
+case 419:
+#line 2370 "parse.y"
{ int err = 0;
if (yyvsp[0].itype == access_protected)
{
@@ -5955,8 +5897,8 @@ case 421:
}
;
break;}
-case 422:
-#line 2400 "parse.y"
+case 420:
+#line 2396 "parse.y"
{ if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
sorry ("non-virtual access");
if (yyval.itype == access_public)
@@ -5964,8 +5906,8 @@ case 422:
else if (yyval.itype == access_private)
yyval.itype = access_private_virtual; ;
break;}
-case 423:
-#line 2409 "parse.y"
+case 421:
+#line 2405 "parse.y"
{ tree t = yyvsp[-1].ttype;
push_obstacks_nochange ();
end_temporary_allocation ();
@@ -6026,12 +5968,12 @@ case 423:
#endif
;
break;}
-case 424:
-#line 2472 "parse.y"
+case 422:
+#line 2468 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 425:
-#line 2474 "parse.y"
+case 423:
+#line 2470 "parse.y"
{
if (current_aggr == signature_type_node)
yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
@@ -6039,8 +5981,8 @@ case 425:
yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
;
break;}
-case 426:
-#line 2481 "parse.y"
+case 424:
+#line 2477 "parse.y"
{
tree visspec = (tree) yyvsp[-2].itype;
@@ -6052,20 +5994,20 @@ case 426:
yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
;
break;}
-case 427:
-#line 2492 "parse.y"
+case 425:
+#line 2488 "parse.y"
{
if (current_aggr == signature_type_node)
error ("access specifier not allowed in signature");
;
break;}
-case 428:
-#line 2502 "parse.y"
+case 426:
+#line 2498 "parse.y"
{ if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE;
;
break;}
-case 429:
-#line 2505 "parse.y"
+case 427:
+#line 2501 "parse.y"
{ /* In pushdecl, we created a reverse list of names
in this binding level. Make sure that the chain
of what we're trying to add isn't the item itself
@@ -6079,64 +6021,64 @@ case 429:
}
;
break;}
-case 432:
-#line 2523 "parse.y"
+case 430:
+#line 2519 "parse.y"
{ error ("missing ';' before right brace");
yyungetc ('}', 0); ;
break;}
-case 433:
-#line 2528 "parse.y"
+case 431:
+#line 2524 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
-case 434:
-#line 2530 "parse.y"
+case 432:
+#line 2526 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
-case 435:
-#line 2538 "parse.y"
+case 433:
+#line 2534 "parse.y"
{
yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
;
break;}
-case 436:
-#line 2542 "parse.y"
+case 434:
+#line 2538 "parse.y"
{
yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
;
break;}
-case 437:
-#line 2546 "parse.y"
+case 435:
+#line 2542 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 438:
-#line 2549 "parse.y"
+case 436:
+#line 2545 "parse.y"
{ yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 439:
-#line 2551 "parse.y"
+case 437:
+#line 2547 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 440:
-#line 2562 "parse.y"
+case 438:
+#line 2558 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-4].ttype),
yyvsp[-2].ttype, yyvsp[0].ttype);
yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-4].ttype), NULL_TREE, NULL_TREE,
NULL_TREE); ;
break;}
-case 441:
-#line 2567 "parse.y"
+case 439:
+#line 2563 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-2].ttype),
empty_parms (), yyvsp[0].ttype);
yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-2].ttype), NULL_TREE, NULL_TREE,
NULL_TREE); ;
break;}
-case 442:
-#line 2576 "parse.y"
+case 440:
+#line 2572 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 444:
-#line 2579 "parse.y"
+case 442:
+#line 2575 "parse.y"
{
/* In this context, void_type_node encodes
friends. They have been recorded elsewhere. */
@@ -6146,12 +6088,12 @@ case 444:
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
;
break;}
-case 445:
-#line 2591 "parse.y"
+case 443:
+#line 2587 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 447:
-#line 2594 "parse.y"
+case 445:
+#line 2590 "parse.y"
{
/* In this context, void_type_node encodes
friends. They have been recorded elsewhere. */
@@ -6161,105 +6103,105 @@ case 447:
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
;
break;}
-case 452:
-#line 2616 "parse.y"
+case 450:
+#line 2612 "parse.y"
{ current_declspecs = yyvsp[-4].ttype;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 453:
-#line 2620 "parse.y"
+case 451:
+#line 2616 "parse.y"
{ current_declspecs = yyvsp[-6].ttype;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
break;}
-case 454:
-#line 2624 "parse.y"
+case 452:
+#line 2620 "parse.y"
{ current_declspecs = yyvsp[-4].ttype;
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 455:
-#line 2631 "parse.y"
+case 453:
+#line 2627 "parse.y"
{ current_declspecs = yyvsp[-4].ttype;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 456:
-#line 2635 "parse.y"
+case 454:
+#line 2631 "parse.y"
{ current_declspecs = yyvsp[-6].ttype;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
break;}
-case 457:
-#line 2639 "parse.y"
+case 455:
+#line 2635 "parse.y"
{ current_declspecs = yyvsp[-4].ttype;
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 458:
-#line 2643 "parse.y"
+case 456:
+#line 2639 "parse.y"
{ current_declspecs = yyvsp[-3].ttype;
yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 459:
-#line 2650 "parse.y"
+case 457:
+#line 2646 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 460:
-#line 2653 "parse.y"
+case 458:
+#line 2649 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
break;}
-case 461:
-#line 2656 "parse.y"
+case 459:
+#line 2652 "parse.y"
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 462:
-#line 2662 "parse.y"
+case 460:
+#line 2658 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 463:
-#line 2665 "parse.y"
+case 461:
+#line 2661 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
break;}
-case 464:
-#line 2668 "parse.y"
+case 462:
+#line 2664 "parse.y"
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 465:
-#line 2671 "parse.y"
+case 463:
+#line 2667 "parse.y"
{ yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 467:
-#line 2682 "parse.y"
+case 465:
+#line 2678 "parse.y"
{ TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 468:
-#line 2687 "parse.y"
+case 466:
+#line 2683 "parse.y"
{ yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
break;}
-case 469:
-#line 2689 "parse.y"
+case 467:
+#line 2685 "parse.y"
{ yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 470:
-#line 2695 "parse.y"
+case 468:
+#line 2691 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 471:
-#line 2697 "parse.y"
+case 469:
+#line 2693 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
break;}
-case 472:
-#line 2701 "parse.y"
+case 470:
+#line 2697 "parse.y"
{
if (flag_ansi)
pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
@@ -6267,54 +6209,54 @@ case 472:
yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
;
break;}
-case 473:
-#line 2711 "parse.y"
+case 471:
+#line 2707 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
+case 472:
+#line 2709 "parse.y"
+{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
+ break;}
+case 473:
+#line 2714 "parse.y"
+{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
+ break;}
case 474:
-#line 2713 "parse.y"
+#line 2716 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 475:
-#line 2718 "parse.y"
-{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
+#line 2724 "parse.y"
+{ yyval.itype = suspend_momentary (); ;
break;}
case 476:
-#line 2720 "parse.y"
-{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
+#line 2725 "parse.y"
+{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
break;}
case 477:
-#line 2728 "parse.y"
-{ yyval.itype = suspend_momentary (); ;
+#line 2732 "parse.y"
+{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 478:
-#line 2729 "parse.y"
-{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
+#line 2734 "parse.y"
+{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 479:
#line 2736 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 480:
#line 2738 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 481:
#line 2740 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 482:
-#line 2742 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 483:
-#line 2744 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
-case 485:
-#line 2752 "parse.y"
+case 483:
+#line 2748 "parse.y"
{
/* Remember that this name has been used in the class
definition, as per [class.scope0] */
@@ -6328,277 +6270,285 @@ case 485:
}
;
break;}
-case 487:
-#line 2769 "parse.y"
+case 485:
+#line 2765 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
+case 486:
+#line 2770 "parse.y"
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+ break;}
+case 487:
+#line 2772 "parse.y"
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+ break;}
case 488:
#line 2774 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
break;}
case 489:
#line 2776 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
break;}
case 490:
#line 2778 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 491:
#line 2780 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 492:
#line 2782 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
+{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 493:
#line 2784 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
- break;}
-case 494:
-#line 2786 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 495:
-#line 2788 "parse.y"
{ push_nested_class (TREE_TYPE (yyval.ttype), 3);
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
break;}
-case 497:
-#line 2799 "parse.y"
+case 495:
+#line 2795 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
-case 498:
-#line 2801 "parse.y"
+case 496:
+#line 2797 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
-case 499:
-#line 2803 "parse.y"
+case 497:
+#line 2799 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 500:
-#line 2805 "parse.y"
+case 498:
+#line 2801 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 501:
-#line 2807 "parse.y"
+case 499:
+#line 2803 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
-case 503:
-#line 2815 "parse.y"
+case 501:
+#line 2811 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
-case 504:
-#line 2817 "parse.y"
+case 502:
+#line 2813 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
-case 505:
-#line 2819 "parse.y"
+case 503:
+#line 2815 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 506:
-#line 2821 "parse.y"
+case 504:
+#line 2817 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
-case 507:
-#line 2823 "parse.y"
+case 505:
+#line 2819 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
+case 507:
+#line 2827 "parse.y"
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+ break;}
+case 508:
+#line 2829 "parse.y"
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+ break;}
case 509:
#line 2831 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
break;}
case 510:
#line 2833 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
break;}
case 511:
#line 2835 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
+{ yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
break;}
case 512:
#line 2837 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
+{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 513:
#line 2839 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 514:
#line 2841 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 515:
-#line 2843 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
-case 516:
-#line 2848 "parse.y"
+case 515:
+#line 2846 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 517:
-#line 2854 "parse.y"
+case 516:
+#line 2852 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 519:
-#line 2861 "parse.y"
+case 518:
+#line 2859 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
+case 519:
+#line 2864 "parse.y"
+{ yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
+ break;}
case 520:
#line 2866 "parse.y"
-{ yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
+{ yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 521:
#line 2868 "parse.y"
-{ yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
- break;}
-case 522:
-#line 2870 "parse.y"
{ yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 526:
-#line 2881 "parse.y"
+case 525:
+#line 2879 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
+case 526:
+#line 2886 "parse.y"
+{ got_scope = TREE_TYPE (yyval.ttype); ;
+ break;}
case 527:
#line 2888 "parse.y"
{ got_scope = TREE_TYPE (yyval.ttype); ;
break;}
-case 528:
-#line 2890 "parse.y"
-{ got_scope = TREE_TYPE (yyval.ttype); ;
+case 529:
+#line 2904 "parse.y"
+{ yyval.ttype = yyvsp[0].ttype; ;
break;}
-case 530:
-#line 2906 "parse.y"
+case 531:
+#line 2910 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 532:
-#line 2912 "parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
+#line 2915 "parse.y"
+{ got_scope = NULL_TREE; ;
break;}
case 533:
#line 2917 "parse.y"
-{ got_scope = NULL_TREE; ;
+{ yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
break;}
case 534:
-#line 2919 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
+#line 2924 "parse.y"
+{ got_scope = void_type_node; ;
break;}
case 535:
-#line 2926 "parse.y"
-{ got_scope = void_type_node; ;
+#line 2930 "parse.y"
+{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 536:
#line 2932 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 537:
#line 2934 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
+{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 538:
#line 2936 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 539:
#line 2938 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 540:
-#line 2940 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
;
break;}
-case 541:
-#line 2944 "parse.y"
+case 540:
+#line 2942 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
+case 542:
+#line 2951 "parse.y"
+{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
+ break;}
case 543:
#line 2953 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 544:
-#line 2955 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
+#line 2959 "parse.y"
+{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 545:
#line 2961 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 546:
#line 2963 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
+{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 547:
#line 2965 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
+{ yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
break;}
case 548:
#line 2967 "parse.y"
-{ yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
+{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 549:
#line 2969 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 550:
#line 2971 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
+{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 551:
#line 2973 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
+{ yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
break;}
case 552:
#line 2975 "parse.y"
-{ yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
- break;}
-case 553:
-#line 2977 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
;
break;}
-case 554:
-#line 2981 "parse.y"
+case 553:
+#line 2979 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
-case 556:
-#line 2990 "parse.y"
+case 555:
+#line 2988 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
+case 557:
+#line 2992 "parse.y"
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+ break;}
case 558:
#line 2994 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
break;}
case 559:
#line 2996 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 560:
#line 2998 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 561:
#line 3000 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
+{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 562:
#line 3002 "parse.y"
-{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
+{ TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
break;}
case 563:
#line 3004 "parse.y"
@@ -6606,31 +6556,27 @@ case 563:
break;}
case 564:
#line 3006 "parse.y"
-{ TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
+{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 565:
#line 3008 "parse.y"
-{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 566:
-#line 3010 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
break;}
-case 572:
-#line 3032 "parse.y"
+case 571:
+#line 3030 "parse.y"
{ emit_line_note (input_filename, lineno);
pushlevel (0);
clear_last_expr ();
push_momentary ();
expand_start_bindings (0); ;
break;}
-case 574:
-#line 3044 "parse.y"
+case 573:
+#line 3042 "parse.y"
{ if (flag_ansi)
pedwarn ("ANSI C++ forbids label declarations"); ;
break;}
-case 577:
-#line 3055 "parse.y"
+case 576:
+#line 3053 "parse.y"
{ tree link;
for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
{
@@ -6640,63 +6586,63 @@ case 577:
}
;
break;}
-case 578:
-#line 3069 "parse.y"
+case 577:
+#line 3067 "parse.y"
{;
break;}
-case 580:
-#line 3074 "parse.y"
+case 579:
+#line 3072 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p(), 1);
yyval.ttype = poplevel (kept_level_p (), 1, 0);
pop_momentary (); ;
break;}
-case 581:
-#line 3078 "parse.y"
+case 580:
+#line 3076 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p(), 1);
yyval.ttype = poplevel (kept_level_p (), 1, 0);
pop_momentary (); ;
break;}
-case 582:
-#line 3082 "parse.y"
+case 581:
+#line 3080 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p(), 1);
yyval.ttype = poplevel (kept_level_p (), 0, 0);
pop_momentary (); ;
break;}
-case 583:
-#line 3086 "parse.y"
+case 582:
+#line 3084 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p(), 1);
yyval.ttype = poplevel (kept_level_p (), 0, 0);
pop_momentary (); ;
break;}
-case 584:
-#line 3093 "parse.y"
+case 583:
+#line 3091 "parse.y"
{ cond_stmt_keyword = "if"; ;
break;}
-case 585:
-#line 3095 "parse.y"
+case 584:
+#line 3093 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_start_cond (yyvsp[0].ttype, 0); ;
break;}
-case 587:
-#line 3102 "parse.y"
+case 586:
+#line 3100 "parse.y"
{ finish_stmt (); ;
break;}
-case 588:
-#line 3104 "parse.y"
+case 587:
+#line 3102 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p (), 1);
yyval.ttype = poplevel (kept_level_p (), 1, 0);
pop_momentary (); ;
break;}
-case 589:
-#line 3111 "parse.y"
+case 588:
+#line 3109 "parse.y"
{ finish_stmt (); ;
break;}
-case 591:
-#line 3117 "parse.y"
+case 590:
+#line 3115 "parse.y"
{ finish_stmt (); ;
break;}
-case 592:
-#line 3119 "parse.y"
+case 591:
+#line 3117 "parse.y"
{
tree expr = yyvsp[-1].ttype;
emit_line_note (input_filename, lineno);
@@ -6710,82 +6656,82 @@ case 592:
clear_momentary ();
finish_stmt (); ;
break;}
-case 593:
-#line 3132 "parse.y"
+case 592:
+#line 3130 "parse.y"
{ expand_start_else (); ;
break;}
-case 594:
-#line 3134 "parse.y"
+case 593:
+#line 3132 "parse.y"
{ expand_end_cond ();
expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
pop_momentary ();
finish_stmt (); ;
break;}
-case 595:
-#line 3140 "parse.y"
+case 594:
+#line 3138 "parse.y"
{ expand_end_cond ();
expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
pop_momentary ();
finish_stmt (); ;
break;}
-case 596:
-#line 3146 "parse.y"
+case 595:
+#line 3144 "parse.y"
{ emit_nop ();
emit_line_note (input_filename, lineno);
expand_start_loop (1);
cond_stmt_keyword = "while"; ;
break;}
-case 597:
-#line 3151 "parse.y"
+case 596:
+#line 3149 "parse.y"
{ expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
break;}
-case 598:
-#line 3153 "parse.y"
+case 597:
+#line 3151 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
pop_momentary ();
expand_end_loop ();
finish_stmt (); ;
break;}
-case 599:
-#line 3159 "parse.y"
+case 598:
+#line 3157 "parse.y"
{ emit_nop ();
emit_line_note (input_filename, lineno);
expand_start_loop_continue_elsewhere (1); ;
break;}
-case 600:
-#line 3163 "parse.y"
+case 599:
+#line 3161 "parse.y"
{ expand_loop_continue_here ();
cond_stmt_keyword = "do"; ;
break;}
-case 601:
-#line 3166 "parse.y"
+case 600:
+#line 3164 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_exit_loop_if_false (0, yyvsp[-1].ttype);
expand_end_loop ();
clear_momentary ();
finish_stmt (); ;
break;}
-case 602:
-#line 3172 "parse.y"
+case 601:
+#line 3170 "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 603:
-#line 3177 "parse.y"
+case 602:
+#line 3175 "parse.y"
{ emit_line_note (input_filename, lineno);
if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
break;}
-case 604:
-#line 3182 "parse.y"
+case 603:
+#line 3180 "parse.y"
{ push_momentary (); ;
break;}
-case 605:
-#line 3184 "parse.y"
+case 604:
+#line 3182 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
@@ -6796,24 +6742,24 @@ case 605:
expand_end_loop ();
finish_stmt (); ;
break;}
-case 606:
-#line 3194 "parse.y"
+case 605:
+#line 3192 "parse.y"
{ emit_nop ();
emit_line_note (input_filename, lineno);
expand_start_loop_continue_elsewhere (1); ;
break;}
-case 607:
-#line 3198 "parse.y"
+case 606:
+#line 3196 "parse.y"
{ emit_line_note (input_filename, lineno);
if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
break;}
-case 608:
-#line 3203 "parse.y"
+case 607:
+#line 3201 "parse.y"
{ push_momentary ();
yyvsp[0].itype = lineno; ;
break;}
-case 609:
-#line 3206 "parse.y"
+case 608:
+#line 3204 "parse.y"
{ emit_line_note (input_filename, (int) yyvsp[-2].itype);
expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
@@ -6825,16 +6771,16 @@ case 609:
finish_stmt ();
;
break;}
-case 610:
-#line 3217 "parse.y"
+case 609:
+#line 3215 "parse.y"
{ emit_line_note (input_filename, lineno);
c_expand_start_case (yyvsp[-1].ttype);
/* Don't let the tree nodes for $4 be discarded by
clear_momentary during the parsing of the next stmt. */
push_momentary (); ;
break;}
-case 611:
-#line 3223 "parse.y"
+case 610:
+#line 3221 "parse.y"
{ expand_end_case (yyvsp[-3].ttype);
pop_momentary ();
expand_end_bindings (getdecls (), kept_level_p (), 1);
@@ -6842,8 +6788,8 @@ case 611:
pop_momentary ();
finish_stmt (); ;
break;}
-case 612:
-#line 3230 "parse.y"
+case 611:
+#line 3228 "parse.y"
{ register tree value = check_cp_case_value (yyvsp[-1].ttype);
register tree label
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
@@ -6868,8 +6814,8 @@ case 612:
define_case_label (label);
;
break;}
-case 614:
-#line 3255 "parse.y"
+case 613:
+#line 3253 "parse.y"
{ register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
register tree label
@@ -6901,8 +6847,8 @@ case 614:
define_case_label (label);
;
break;}
-case 616:
-#line 3287 "parse.y"
+case 615:
+#line 3285 "parse.y"
{
tree duplicate;
register tree label
@@ -6918,40 +6864,40 @@ case 616:
define_case_label (NULL_TREE);
;
break;}
-case 618:
-#line 3303 "parse.y"
+case 617:
+#line 3301 "parse.y"
{ emit_line_note (input_filename, lineno);
if ( ! expand_exit_something ())
error ("break statement not within loop or switch"); ;
break;}
-case 619:
-#line 3307 "parse.y"
+case 618:
+#line 3305 "parse.y"
{ emit_line_note (input_filename, lineno);
if (! expand_continue_loop (0))
error ("continue statement not within a loop"); ;
break;}
-case 620:
-#line 3311 "parse.y"
+case 619:
+#line 3309 "parse.y"
{ emit_line_note (input_filename, lineno);
c_expand_return (NULL_TREE); ;
break;}
-case 621:
-#line 3314 "parse.y"
+case 620:
+#line 3312 "parse.y"
{ emit_line_note (input_filename, lineno);
c_expand_return (yyvsp[-1].ttype);
finish_stmt ();
;
break;}
-case 622:
-#line 3319 "parse.y"
+case 621:
+#line 3317 "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 623:
-#line 3326 "parse.y"
+case 622:
+#line 3324 "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,
@@ -6960,8 +6906,8 @@ case 623:
finish_stmt ();
;
break;}
-case 624:
-#line 3335 "parse.y"
+case 623:
+#line 3333 "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,
@@ -6970,8 +6916,8 @@ case 624:
finish_stmt ();
;
break;}
-case 625:
-#line 3345 "parse.y"
+case 624:
+#line 3343 "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,
@@ -6980,83 +6926,83 @@ case 625:
finish_stmt ();
;
break;}
-case 626:
-#line 3353 "parse.y"
+case 625:
+#line 3351 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_computed_goto (yyvsp[-1].ttype); ;
break;}
-case 627:
-#line 3356 "parse.y"
+case 626:
+#line 3354 "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 628:
-#line 3362 "parse.y"
+case 627:
+#line 3360 "parse.y"
{ finish_stmt (); ;
break;}
-case 629:
-#line 3364 "parse.y"
+case 628:
+#line 3362 "parse.y"
{ error ("label must be followed by statement");
yyungetc ('}', 0);
finish_stmt (); ;
break;}
-case 630:
-#line 3368 "parse.y"
+case 629:
+#line 3366 "parse.y"
{ finish_stmt (); ;
break;}
-case 632:
-#line 3374 "parse.y"
+case 631:
+#line 3372 "parse.y"
{ expand_start_try_stmts (); ;
break;}
-case 633:
-#line 3376 "parse.y"
+case 632:
+#line 3374 "parse.y"
{ expand_end_try_stmts ();
expand_start_all_catch (); ;
break;}
-case 634:
-#line 3379 "parse.y"
+case 633:
+#line 3377 "parse.y"
{ expand_end_all_catch (); ;
break;}
-case 635:
-#line 3387 "parse.y"
+case 634:
+#line 3385 "parse.y"
{ expand_end_bindings (0,1,1);
poplevel (2,0,0);
;
break;}
-case 636:
-#line 3391 "parse.y"
+case 635:
+#line 3389 "parse.y"
{ expand_end_bindings (0,1,1);
poplevel (2,0,0);
;
break;}
-case 637:
-#line 3395 "parse.y"
+case 636:
+#line 3393 "parse.y"
{ expand_end_bindings (0,1,1);
poplevel (2,0,0);
;
break;}
-case 639:
-#line 3403 "parse.y"
+case 638:
+#line 3401 "parse.y"
{ emit_line_note (input_filename, lineno); ;
break;}
-case 640:
-#line 3405 "parse.y"
+case 639:
+#line 3403 "parse.y"
{ expand_end_catch_block (); ;
break;}
-case 643:
-#line 3415 "parse.y"
+case 642:
+#line 3413 "parse.y"
{ expand_start_catch_block (NULL_TREE, NULL_TREE); ;
break;}
-case 644:
-#line 3427 "parse.y"
+case 643:
+#line 3425 "parse.y"
{ expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
TREE_VALUE (yyvsp[-1].ttype)); ;
break;}
-case 645:
-#line 3433 "parse.y"
+case 644:
+#line 3431 "parse.y"
{ tree label;
do_label:
label = define_label (input_filename, lineno, yyvsp[-1].ttype);
@@ -7064,25 +7010,29 @@ case 645:
expand_label (label);
;
break;}
+case 645:
+#line 3438 "parse.y"
+{ goto do_label; ;
+ break;}
case 646:
#line 3440 "parse.y"
{ goto do_label; ;
break;}
case 647:
-#line 3442 "parse.y"
-{ goto do_label; ;
+#line 3445 "parse.y"
+{ yyval.ttype = NULL_TREE; ;
break;}
case 648:
#line 3447 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
+{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 649:
#line 3449 "parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
+{ yyval.ttype = NULL_TREE; ;
break;}
case 650:
-#line 3451 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
+#line 3454 "parse.y"
+{ yyval.itype = 0; ;
break;}
case 651:
#line 3456 "parse.y"
@@ -7090,55 +7040,51 @@ case 651:
break;}
case 652:
#line 3458 "parse.y"
-{ yyval.itype = 0; ;
+{ yyval.itype = 1; ;
break;}
case 653:
#line 3460 "parse.y"
-{ yyval.itype = 1; ;
- break;}
-case 654:
-#line 3462 "parse.y"
{ yyval.itype = -1; ;
break;}
-case 655:
-#line 3469 "parse.y"
+case 654:
+#line 3467 "parse.y"
{ emit_line_note (input_filename, lineno);
yyval.ttype = NULL_TREE; ;
break;}
-case 656:
-#line 3472 "parse.y"
+case 655:
+#line 3470 "parse.y"
{ emit_line_note (input_filename, lineno); ;
break;}
-case 657:
-#line 3477 "parse.y"
+case 656:
+#line 3475 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 659:
-#line 3480 "parse.y"
+case 658:
+#line 3478 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 660:
-#line 3486 "parse.y"
+case 659:
+#line 3484 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 663:
-#line 3493 "parse.y"
+case 662:
+#line 3491 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
-case 664:
-#line 3498 "parse.y"
+case 663:
+#line 3496 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
break;}
-case 665:
-#line 3503 "parse.y"
+case 664:
+#line 3501 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
break;}
-case 666:
-#line 3505 "parse.y"
+case 665:
+#line 3503 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 667:
-#line 3515 "parse.y"
+case 666:
+#line 3513 "parse.y"
{
if (strict_prototype)
yyval.ttype = void_list_node;
@@ -7146,39 +7092,39 @@ case 667:
yyval.ttype = NULL_TREE;
;
break;}
-case 669:
-#line 3523 "parse.y"
+case 668:
+#line 3521 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1; ;
break;}
-case 670:
-#line 3531 "parse.y"
+case 669:
+#line 3529 "parse.y"
{
yyval.ttype = chainon (yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 671:
-#line 3536 "parse.y"
+case 670:
+#line 3534 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 672:
-#line 3541 "parse.y"
+case 671:
+#line 3539 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 673:
-#line 3545 "parse.y"
+case 672:
+#line 3543 "parse.y"
{
yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 674:
-#line 3550 "parse.y"
+case 673:
+#line 3548 "parse.y"
{
/* ARM $8.2.5 has this as a boxed-off comment. */
if (pedantic)
@@ -7186,27 +7132,27 @@ case 674:
yyval.ttype = NULL_TREE;
;
break;}
-case 675:
-#line 3557 "parse.y"
+case 674:
+#line 3555 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 676:
-#line 3561 "parse.y"
+case 675:
+#line 3559 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 677:
-#line 3565 "parse.y"
+case 676:
+#line 3563 "parse.y"
{
yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
-case 678:
-#line 3570 "parse.y"
+case 677:
+#line 3568 "parse.y"
{
/* This helps us recover from really nasty
parse errors, for example, a missing right
@@ -7218,8 +7164,8 @@ case 678:
yychar = ')';
;
break;}
-case 679:
-#line 3581 "parse.y"
+case 678:
+#line 3579 "parse.y"
{
/* This helps us recover from really nasty
parse errors, for example, a missing right
@@ -7231,184 +7177,188 @@ case 679:
yychar = ')';
;
break;}
+case 679:
+#line 3594 "parse.y"
+{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
+ break;}
case 680:
#line 3596 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
+{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
break;}
case 681:
#line 3598 "parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
+{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 682:
#line 3600 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 683:
#line 3602 "parse.y"
-{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 684:
-#line 3604 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
break;}
-case 686:
-#line 3610 "parse.y"
+case 685:
+#line 3608 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
+case 686:
+#line 3631 "parse.y"
+{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
+ break;}
case 687:
#line 3633 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 688:
#line 3635 "parse.y"
-{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
break;}
case 689:
#line 3637 "parse.y"
-{ yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
+{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 690:
#line 3639 "parse.y"
-{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
break;}
case 691:
#line 3641 "parse.y"
-{ yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
+{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 692:
-#line 3643 "parse.y"
-{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
+#line 3646 "parse.y"
+{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 693:
#line 3648 "parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
- break;}
-case 694:
-#line 3650 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
break;}
-case 697:
-#line 3659 "parse.y"
+case 696:
+#line 3657 "parse.y"
{ see_typename (); ;
break;}
-case 698:
-#line 3682 "parse.y"
+case 697:
+#line 3680 "parse.y"
{
warning ("type specifier omitted for parameter");
yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-1].ttype)), NULL_TREE);
;
break;}
-case 699:
-#line 3687 "parse.y"
+case 698:
+#line 3685 "parse.y"
{
warning ("type specifier omitted for parameter");
yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-2].ttype)), yyval.ttype);
;
break;}
-case 700:
-#line 3695 "parse.y"
+case 699:
+#line 3693 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
-case 701:
-#line 3697 "parse.y"
+case 700:
+#line 3695 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
-case 702:
-#line 3702 "parse.y"
+case 701:
+#line 3700 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
break;}
-case 704:
-#line 3708 "parse.y"
+case 703:
+#line 3706 "parse.y"
{
TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
yyval.ttype = yyvsp[0].ttype;
;
break;}
+case 704:
+#line 3714 "parse.y"
+{ yyval.ttype = NULL_TREE; ;
+ break;}
case 705:
#line 3716 "parse.y"
-{ yyval.ttype = NULL_TREE; ;
+{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 706:
#line 3718 "parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
+{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 707:
#line 3720 "parse.y"
-{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 708:
-#line 3722 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
-case 709:
-#line 3728 "parse.y"
+case 708:
+#line 3726 "parse.y"
{ got_scope = NULL_TREE; ;
break;}
+case 709:
+#line 3731 "parse.y"
+{ yyval.ttype = ansi_opname[MULT_EXPR]; ;
+ break;}
case 710:
#line 3733 "parse.y"
-{ yyval.ttype = ansi_opname[MULT_EXPR]; ;
+{ yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
break;}
case 711:
#line 3735 "parse.y"
-{ yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
+{ yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
break;}
case 712:
#line 3737 "parse.y"
-{ yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
+{ yyval.ttype = ansi_opname[PLUS_EXPR]; ;
break;}
case 713:
#line 3739 "parse.y"
-{ yyval.ttype = ansi_opname[PLUS_EXPR]; ;
+{ yyval.ttype = ansi_opname[MINUS_EXPR]; ;
break;}
case 714:
#line 3741 "parse.y"
-{ yyval.ttype = ansi_opname[MINUS_EXPR]; ;
+{ yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
break;}
case 715:
#line 3743 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
+{ yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
break;}
case 716:
#line 3745 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
+{ yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
break;}
case 717:
#line 3747 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
+{ yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
break;}
case 718:
#line 3749 "parse.y"
-{ yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
+{ yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
break;}
case 719:
#line 3751 "parse.y"
-{ yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
+{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 720:
#line 3753 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
+{ yyval.ttype = ansi_opname[LT_EXPR]; ;
break;}
case 721:
#line 3755 "parse.y"
-{ yyval.ttype = ansi_opname[LT_EXPR]; ;
+{ yyval.ttype = ansi_opname[GT_EXPR]; ;
break;}
case 722:
#line 3757 "parse.y"
-{ yyval.ttype = ansi_opname[GT_EXPR]; ;
+{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 723:
#line 3759 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
+{ yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
break;}
case 724:
#line 3761 "parse.y"
-{ yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
+{ yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
break;}
case 725:
#line 3763 "parse.y"
-{ yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
+{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 726:
#line 3765 "parse.y"
@@ -7416,79 +7366,75 @@ case 726:
break;}
case 727:
#line 3767 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
+{ yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
break;}
case 728:
#line 3769 "parse.y"
-{ yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
+{ yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
break;}
case 729:
#line 3771 "parse.y"
-{ yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
+{ yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
break;}
case 730:
#line 3773 "parse.y"
-{ yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
+{ yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
break;}
case 731:
#line 3775 "parse.y"
-{ yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
+{ yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
break;}
case 732:
#line 3777 "parse.y"
-{ yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
+{ yyval.ttype = ansi_opname[COND_EXPR]; ;
break;}
case 733:
#line 3779 "parse.y"
-{ yyval.ttype = ansi_opname[COND_EXPR]; ;
+{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 734:
#line 3781 "parse.y"
-{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
+{ yyval.ttype = ansi_opname[COMPONENT_REF]; ;
break;}
case 735:
#line 3783 "parse.y"
-{ yyval.ttype = ansi_opname[COMPONENT_REF]; ;
+{ yyval.ttype = ansi_opname[MEMBER_REF]; ;
break;}
case 736:
#line 3785 "parse.y"
-{ yyval.ttype = ansi_opname[MEMBER_REF]; ;
+{ yyval.ttype = ansi_opname[CALL_EXPR]; ;
break;}
case 737:
#line 3787 "parse.y"
-{ yyval.ttype = ansi_opname[CALL_EXPR]; ;
+{ yyval.ttype = ansi_opname[ARRAY_REF]; ;
break;}
case 738:
#line 3789 "parse.y"
-{ yyval.ttype = ansi_opname[ARRAY_REF]; ;
+{ yyval.ttype = ansi_opname[NEW_EXPR]; ;
break;}
case 739:
#line 3791 "parse.y"
-{ yyval.ttype = ansi_opname[NEW_EXPR]; ;
+{ yyval.ttype = ansi_opname[DELETE_EXPR]; ;
break;}
case 740:
#line 3793 "parse.y"
-{ yyval.ttype = ansi_opname[DELETE_EXPR]; ;
+{ yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
break;}
case 741:
#line 3795 "parse.y"
-{ yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
+{ yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
break;}
case 742:
-#line 3797 "parse.y"
-{ yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
+#line 3798 "parse.y"
+{ yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 743:
#line 3800 "parse.y"
-{ yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 744:
-#line 3802 "parse.y"
{ yyval.ttype = ansi_opname[ERROR_MARK]; ;
break;}
}
/* the action file gets copied in in place of this dollarsign */
-#line 480 "/usr/local/lib/bison.simple"
+#line 465 "/usr/local/lib/bison.simple"
yyvsp -= yylen;
yyssp -= yylen;
@@ -7684,7 +7630,7 @@ yyerrhandle:
yystate = yyn;
goto yynewstate;
}
-#line 3805 "parse.y"
+#line 3803 "parse.y"
#ifdef SPEW_DEBUG
diff --git a/gnu/usr.bin/cc/cc1plus/pt.c b/gnu/usr.bin/cc/cc1plus/pt.c
index e3c3f0da0801..c3ff8d8e0ceb 100644
--- a/gnu/usr.bin/cc/cc1plus/pt.c
+++ b/gnu/usr.bin/cc/cc1plus/pt.c
@@ -1116,15 +1116,11 @@ lookup_nested_type_by_name (ctype, name)
{
tree t;
- t = TREE_VALUE(CLASSTYPE_TAGS(ctype));
- while (t)
- {
- if (strcmp(IDENTIFIER_POINTER(name), IDENTIFIER_POINTER(TYPE_IDENTIFIER(t)))
- == 0)
- return t;
- else
- t = TREE_CHAIN(t);
- }
+ for (t = CLASSTYPE_TAGS (ctype); t; t = TREE_CHAIN (t))
+ {
+ if (name == TREE_PURPOSE (t))
+ return TREE_VALUE (t);
+ }
return NULL_TREE;
}
@@ -1198,9 +1194,12 @@ tsubst (t, args, nargs, in_decl)
tsubst (TYPE_MAX_VALUE (t), args, nargs, in_decl));
case TEMPLATE_TYPE_PARM:
- return cp_build_type_variant (args[TEMPLATE_TYPE_IDX (t)],
- TYPE_READONLY (t),
- TYPE_VOLATILE (t));
+ {
+ tree arg = args[TEMPLATE_TYPE_IDX (t)];
+ return cp_build_type_variant
+ (arg, TYPE_READONLY (arg) || TYPE_READONLY (t),
+ TYPE_VOLATILE (arg) || TYPE_VOLATILE (t));
+ }
case TEMPLATE_CONST_PARM:
return args[TEMPLATE_CONST_IDX (t)];
@@ -2008,6 +2007,9 @@ type_unification (tparms, targs, parms, args, nsubsts, subr)
arg = TREE_TYPE (arg);
}
#endif
+ if (TREE_CODE (arg) == REFERENCE_TYPE)
+ arg = TREE_TYPE (arg);
+
if (TREE_CODE (parm) != REFERENCE_TYPE)
{
if (TREE_CODE (arg) == FUNCTION_TYPE
@@ -2068,9 +2070,6 @@ unify (tparms, targs, ntparms, parm, arg, nsubsts)
if (arg == parm)
return 0;
- if (TREE_CODE (arg) == REFERENCE_TYPE)
- arg = TREE_TYPE (arg);
-
switch (TREE_CODE (parm))
{
case TEMPLATE_TYPE_PARM:
@@ -2082,6 +2081,7 @@ unify (tparms, targs, ntparms, parm, arg, nsubsts)
return 1;
}
idx = TEMPLATE_TYPE_IDX (parm);
+#if 0
/* Template type parameters cannot contain cv-quals; i.e.
template <class T> void f (T& a, T& b) will not generate
void f (const int& a, const int& b). */
@@ -2089,6 +2089,13 @@ unify (tparms, targs, ntparms, parm, arg, nsubsts)
|| TYPE_VOLATILE (arg) > TYPE_VOLATILE (parm))
return 1;
arg = TYPE_MAIN_VARIANT (arg);
+#else
+ {
+ int constp = TYPE_READONLY (arg) > TYPE_READONLY (parm);
+ int volatilep = TYPE_VOLATILE (arg) > TYPE_VOLATILE (parm);
+ arg = cp_build_type_variant (arg, constp, volatilep);
+ }
+#endif
/* Simple cases: Value already set, does match or doesn't. */
if (targs[idx] == arg)
return 0;
@@ -2495,12 +2502,19 @@ do_type_instantiation (name, storage)
rest_of_type_compilation (t, 1);
}
}
-
- instantiate_member_templates (TYPE_IDENTIFIER (t));
-
- /* this should really be done by instantiate_member_templates */
+
{
- tree tmp = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (t), 0);
+ tree tmp;
+ /* Classes nested in template classes currently don't have an
+ IDENTIFIER_TEMPLATE--their out-of-line members are handled
+ by the enclosing template class. Note that there are name
+ conflict bugs with this approach. */
+ tmp = TYPE_IDENTIFIER (t);
+ if (IDENTIFIER_TEMPLATE (tmp))
+ instantiate_member_templates (tmp);
+
+ /* this should really be done by instantiate_member_templates */
+ tmp = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (t), 0);
for (; tmp; tmp = TREE_CHAIN (tmp))
{
if (DECL_TEMPLATE_SPECIALIZATION (tmp)
diff --git a/gnu/usr.bin/cc/cc1plus/typeck.c b/gnu/usr.bin/cc/cc1plus/typeck.c
index cdf406686f63..c215c57316a8 100644
--- a/gnu/usr.bin/cc/cc1plus/typeck.c
+++ b/gnu/usr.bin/cc/cc1plus/typeck.c
@@ -6742,6 +6742,8 @@ convert_for_initialization (exp, type, rhs, flags, errtype, fndecl, parmnum)
}
/* Handle the case of default parameter initialization and
initialization of static variables. */
+ else if (TREE_CODE (rhs) == TARGET_EXPR)
+ return rhs;
else if (TREE_CODE (rhs) == INDIRECT_REF && TREE_HAS_CONSTRUCTOR (rhs))
{
my_friendly_assert (TREE_CODE (TREE_OPERAND (rhs, 0)) == CALL_EXPR, 318);
diff --git a/gnu/usr.bin/cc/cc1plus/typeck2.c b/gnu/usr.bin/cc/cc1plus/typeck2.c
index dd6364e0e5ba..5d3322d5c880 100644
--- a/gnu/usr.bin/cc/cc1plus/typeck2.c
+++ b/gnu/usr.bin/cc/cc1plus/typeck2.c
@@ -1342,6 +1342,7 @@ build_m_component_ref (datum, component)
if (TREE_CODE (objtype) == REFERENCE_TYPE)
objtype = TREE_TYPE (objtype);
+ objtype = TYPE_MAIN_VARIANT (objtype);
if (! IS_AGGR_TYPE (objtype))
{
diff --git a/gnu/usr.bin/cc/cc_int/c-common.c b/gnu/usr.bin/cc/cc_int/c-common.c
index 6735b5aa8c11..f3844e2286a4 100644
--- a/gnu/usr.bin/cc/cc_int/c-common.c
+++ b/gnu/usr.bin/cc/cc_int/c-common.c
@@ -532,7 +532,7 @@ typedef struct {
static format_char_info print_char_table[] = {
{ "di", 0, T_I, T_I, T_L, T_LL, T_LL, "-wp0 +" },
{ "oxX", 0, T_UI, T_UI, T_UL, T_ULL, T_ULL, "-wp0#" },
- { "u", 0, T_UI, T_UI, T_UL, T_ULL, NULL, "-wp0" },
+ { "u", 0, T_UI, T_UI, T_UL, T_ULL, T_ULL, "-wp0" },
/* Two GNU extensions. */
{ "Z", 0, T_ST, NULL, NULL, NULL, NULL, "-wp0" },
{ "m", 0, T_UI, T_UI, T_UL, NULL, NULL, "-wp" },
diff --git a/gnu/usr.bin/cc/cc_int/calls.c b/gnu/usr.bin/cc/cc_int/calls.c
index 2d58770f67ad..b168e85c3eb5 100644
--- a/gnu/usr.bin/cc/cc_int/calls.c
+++ b/gnu/usr.bin/cc/cc_int/calls.c
@@ -1624,10 +1624,11 @@ expand_call (exp, target, ignore)
&& args[i].mode != BLKmode
&& rtx_cost (args[i].value, SET) > 2
#ifdef SMALL_REGISTER_CLASSES
- && (reg_parm_seen || preserve_subexpressions_p ()))
+ && (reg_parm_seen || preserve_subexpressions_p ())
#else
- && preserve_subexpressions_p ())
+ && preserve_subexpressions_p ()
#endif
+ )
args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
}
@@ -1909,6 +1910,14 @@ expand_call (exp, target, ignore)
valreg = temp;
}
+ else if (is_const)
+ {
+ /* Otherwise, just write out the sequence without a note. */
+ rtx insns = get_insns ();
+
+ end_sequence ();
+ emit_insns (insns);
+ }
/* For calls to `setjmp', etc., inform flow.c it should complain
if nonvolatile values are live. */
diff --git a/gnu/usr.bin/cc/cc_int/combine.c b/gnu/usr.bin/cc/cc_int/combine.c
index 8ab15473e43b..c388c2c3a430 100644
--- a/gnu/usr.bin/cc/cc_int/combine.c
+++ b/gnu/usr.bin/cc/cc_int/combine.c
@@ -9665,6 +9665,9 @@ static void
record_dead_and_set_regs_1 (dest, setter)
rtx dest, setter;
{
+ if (GET_CODE (dest) == SUBREG)
+ dest = SUBREG_REG (dest);
+
if (GET_CODE (dest) == REG)
{
/* If we are setting the whole register, we know its value. Otherwise
diff --git a/gnu/usr.bin/cc/cc_int/emit-rtl.c b/gnu/usr.bin/cc/cc_int/emit-rtl.c
index 615aeb18ecc2..6671e4ce4a85 100644
--- a/gnu/usr.bin/cc/cc_int/emit-rtl.c
+++ b/gnu/usr.bin/cc/cc_int/emit-rtl.c
@@ -650,7 +650,7 @@ gen_lowpart_common (mode, x)
either a reasonable negative value or a reasonable unsigned value
for this mode. */
- if (GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT)
+ if (GET_MODE_BITSIZE (mode) >= 2 * HOST_BITS_PER_WIDE_INT)
return x;
else if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
return 0;
diff --git a/gnu/usr.bin/cc/cc_int/expmed.c b/gnu/usr.bin/cc/cc_int/expmed.c
index 596112323eb8..eca928a486e2 100644
--- a/gnu/usr.bin/cc/cc_int/expmed.c
+++ b/gnu/usr.bin/cc/cc_int/expmed.c
@@ -1684,8 +1684,7 @@ expand_shift (code, mode, shifted, amount, target, unsignedp)
continue;
else if (methods == OPTAB_LIB_WIDEN)
{
- /* If we are rotating by a constant that is valid and
- we have been unable to open-code this by a rotation,
+ /* If we have been unable to open-code this by a rotation,
do it as the IOR of two shifts. I.e., to rotate A
by N bits, compute (A << N) | ((unsigned) A >> (C - N))
where C is the bitsize of A.
@@ -1697,25 +1696,25 @@ expand_shift (code, mode, shifted, amount, target, unsignedp)
this extremely unlikely lossage to avoid complicating the
code below. */
- if (GET_CODE (op1) == CONST_INT && INTVAL (op1) > 0
- && INTVAL (op1) < GET_MODE_BITSIZE (mode))
- {
- rtx subtarget = target == shifted ? 0 : target;
- rtx temp1;
- tree other_amount
- = build_int_2 (GET_MODE_BITSIZE (mode) - INTVAL (op1), 0);
-
- shifted = force_reg (mode, shifted);
-
- temp = expand_shift (left ? LSHIFT_EXPR : RSHIFT_EXPR,
- mode, shifted, amount, subtarget, 1);
- temp1 = expand_shift (left ? RSHIFT_EXPR : LSHIFT_EXPR,
- mode, shifted, other_amount, 0, 1);
- return expand_binop (mode, ior_optab, temp, temp1, target,
- unsignedp, methods);
- }
- else
- methods = OPTAB_LIB;
+ rtx subtarget = target == shifted ? 0 : target;
+ rtx temp1;
+ tree type = TREE_TYPE (amount);
+ tree new_amount = make_tree (type, op1);
+ tree other_amount
+ = fold (build (MINUS_EXPR, type,
+ convert (type,
+ build_int_2 (GET_MODE_BITSIZE (mode),
+ 0)),
+ amount));
+
+ shifted = force_reg (mode, shifted);
+
+ temp = expand_shift (left ? LSHIFT_EXPR : RSHIFT_EXPR,
+ mode, shifted, new_amount, subtarget, 1);
+ temp1 = expand_shift (left ? RSHIFT_EXPR : LSHIFT_EXPR,
+ mode, shifted, other_amount, 0, 1);
+ return expand_binop (mode, ior_optab, temp, temp1, target,
+ unsignedp, methods);
}
temp = expand_binop (mode,
@@ -2608,13 +2607,13 @@ expand_divmod (rem_flag, code, mode, op0, op1, target, unsignedp)
Second comes a switch statement with code specific for each rounding mode.
For some special operands this code emits all RTL for the desired
- operation, for other cases, it generates a quotient and stores it in
+ operation, for other cases, it generates only a quotient and stores it in
QUOTIENT. The case for trunc division/remainder might leave quotient = 0,
to indicate that it has not done anything.
- Last comes code that finishes the operation. If QUOTIENT is set an
- REM_FLAG, the remainder is computed as OP0 - QUOTIENT * OP1. If QUOTIENT
- is not set, it is computed using trunc rounding.
+ Last comes code that finishes the operation. If QUOTIENT is set and
+ REM_FLAG is set, the remainder is computed as OP0 - QUOTIENT * OP1. If
+ QUOTIENT is not set, it is computed using trunc rounding.
We try to generate special code for division and remainder when OP1 is a
constant. If |OP1| = 2**n we can use shifts and some other fast
@@ -3408,10 +3407,70 @@ expand_divmod (rem_flag, code, mode, op0, op1, target, unsignedp)
case ROUND_DIV_EXPR:
case ROUND_MOD_EXPR:
- /* The code that used to be here was wrong, and nothing really
- depends on it. */
- abort ();
- break;
+ if (unsignedp)
+ {
+ rtx tem;
+ rtx label;
+ label = gen_label_rtx ();
+ quotient = gen_reg_rtx (compute_mode);
+ remainder = gen_reg_rtx (compute_mode);
+ if (expand_twoval_binop (udivmod_optab, op0, op1, quotient, remainder, 1) == 0)
+ {
+ rtx tem;
+ quotient = expand_binop (compute_mode, udiv_optab, op0, op1,
+ quotient, 1, OPTAB_LIB_WIDEN);
+ tem = expand_mult (compute_mode, quotient, op1, NULL_RTX, 1);
+ remainder = expand_binop (compute_mode, sub_optab, op0, tem,
+ remainder, 1, OPTAB_LIB_WIDEN);
+ }
+ tem = plus_constant (op1, -1);
+ tem = expand_shift (RSHIFT_EXPR, compute_mode, tem,
+ build_int_2 (1, 0), NULL_RTX, 1);
+ emit_cmp_insn (remainder, tem, LEU, NULL_RTX, compute_mode, 0, 0);
+ emit_jump_insn (gen_bleu (label));
+ expand_inc (quotient, const1_rtx);
+ expand_dec (remainder, op1);
+ emit_label (label);
+ }
+ else
+ {
+ rtx abs_rem, abs_op1, tem, mask;
+ rtx label;
+ label = gen_label_rtx ();
+ quotient = gen_reg_rtx (compute_mode);
+ remainder = gen_reg_rtx (compute_mode);
+ if (expand_twoval_binop (sdivmod_optab, op0, op1, quotient, remainder, 0) == 0)
+ {
+ rtx tem;
+ quotient = expand_binop (compute_mode, sdiv_optab, op0, op1,
+ quotient, 0, OPTAB_LIB_WIDEN);
+ tem = expand_mult (compute_mode, quotient, op1, NULL_RTX, 0);
+ remainder = expand_binop (compute_mode, sub_optab, op0, tem,
+ remainder, 0, OPTAB_LIB_WIDEN);
+ }
+ abs_rem = expand_abs (compute_mode, remainder, NULL_RTX, 0, 0);
+ abs_op1 = expand_abs (compute_mode, op1, NULL_RTX, 0, 0);
+ tem = expand_shift (LSHIFT_EXPR, compute_mode, abs_rem,
+ build_int_2 (1, 0), NULL_RTX, 1);
+ emit_cmp_insn (tem, abs_op1, LTU, NULL_RTX, compute_mode, 0, 0);
+ emit_jump_insn (gen_bltu (label));
+ tem = expand_binop (compute_mode, xor_optab, op0, op1,
+ NULL_RTX, 0, OPTAB_WIDEN);
+ mask = expand_shift (RSHIFT_EXPR, compute_mode, tem,
+ build_int_2 (size - 1, 0), NULL_RTX, 0);
+ tem = expand_binop (compute_mode, xor_optab, mask, const1_rtx,
+ NULL_RTX, 0, OPTAB_WIDEN);
+ tem = expand_binop (compute_mode, sub_optab, tem, mask,
+ NULL_RTX, 0, OPTAB_WIDEN);
+ expand_inc (quotient, tem);
+ tem = expand_binop (compute_mode, xor_optab, mask, op1,
+ NULL_RTX, 0, OPTAB_WIDEN);
+ tem = expand_binop (compute_mode, sub_optab, tem, mask,
+ NULL_RTX, 0, OPTAB_WIDEN);
+ expand_dec (remainder, tem);
+ emit_label (label);
+ }
+ return gen_lowpart (mode, rem_flag ? remainder : quotient);
}
if (quotient == 0)
diff --git a/gnu/usr.bin/cc/cc_int/expr.c b/gnu/usr.bin/cc/cc_int/expr.c
index de656b63e178..780955307e96 100644
--- a/gnu/usr.bin/cc/cc_int/expr.c
+++ b/gnu/usr.bin/cc/cc_int/expr.c
@@ -180,7 +180,7 @@ void bc_load_localaddr PROTO((rtx));
void bc_load_parmaddr PROTO((rtx));
static void preexpand_calls PROTO((tree));
static void do_jump_by_parts_greater PROTO((tree, int, rtx, rtx));
-static void do_jump_by_parts_greater_rtx PROTO((enum machine_mode, int, rtx, rtx, rtx, rtx));
+void do_jump_by_parts_greater_rtx PROTO((enum machine_mode, int, rtx, rtx, rtx, rtx));
static void do_jump_by_parts_equality PROTO((tree, rtx, rtx));
static void do_jump_by_parts_equality_rtx PROTO((rtx, rtx, rtx));
static void do_jump_for_compare PROTO((rtx, rtx, rtx));
@@ -916,6 +916,12 @@ convert_move (to, from, unsignedp)
/* No special multiword conversion insn; do it by hand. */
start_sequence ();
+ /* Since we will turn this into a no conflict block, we must ensure
+ that the source does not overlap the target. */
+
+ if (reg_overlap_mentioned_p (to, from))
+ from = force_reg (from_mode, from);
+
/* Get a copy of FROM widened to a word, if necessary. */
if (GET_MODE_BITSIZE (from_mode) < BITS_PER_WORD)
lowpart_mode = word_mode;
@@ -1630,7 +1636,10 @@ emit_block_move (x, y, size, align)
here because if SIZE is less than the mode mask, as it is
returned by the macro, it will definitely be less than the
actual mode mask. */
- && (unsigned HOST_WIDE_INT) INTVAL (size) <= GET_MODE_MASK (mode)
+ && ((GET_CODE (size) == CONST_INT
+ && ((unsigned HOST_WIDE_INT) INTVAL (size)
+ <= GET_MODE_MASK (mode)))
+ || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD)
&& (insn_operand_predicate[(int) code][0] == 0
|| (*insn_operand_predicate[(int) code][0]) (x, BLKmode))
&& (insn_operand_predicate[(int) code][1] == 0
@@ -1957,6 +1966,17 @@ emit_move_insn_1 (x, y)
rtx last_insn = 0;
rtx insns;
+#ifdef PUSH_ROUNDING
+
+ /* If X is a push on the stack, do the push now and replace
+ X with a reference to the stack pointer. */
+ if (push_operand (x, GET_MODE (x)))
+ {
+ anti_adjust_stack (GEN_INT (GET_MODE_SIZE (GET_MODE (x))));
+ x = change_address (x, VOIDmode, stack_pointer_rtx);
+ }
+#endif
+
for (i = 0;
i < (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
i++)
@@ -5216,70 +5236,8 @@ expand_expr (exp, target, tmode, modifier)
if (TREE_UNSIGNED (type))
return op0;
- /* First try to do it with a special abs instruction. */
- temp = expand_unop (mode, abs_optab, op0, target, 0);
- if (temp != 0)
- return temp;
-
- /* If this machine has expensive jumps, we can do integer absolute
- value of X as (((signed) x >> (W-1)) ^ x) - ((signed) x >> (W-1)),
- where W is the width of MODE. */
-
- if (GET_MODE_CLASS (mode) == MODE_INT && BRANCH_COST >= 2)
- {
- rtx extended = expand_shift (RSHIFT_EXPR, mode, op0,
- size_int (GET_MODE_BITSIZE (mode) - 1),
- NULL_RTX, 0);
-
- temp = expand_binop (mode, xor_optab, extended, op0, target, 0,
- OPTAB_LIB_WIDEN);
- if (temp != 0)
- temp = expand_binop (mode, sub_optab, temp, extended, target, 0,
- OPTAB_LIB_WIDEN);
-
- if (temp != 0)
- return temp;
- }
-
- /* If that does not win, use conditional jump and negate. */
- target = original_target;
- op1 = gen_label_rtx ();
- if (target == 0 || ! safe_from_p (target, TREE_OPERAND (exp, 0))
- || GET_MODE (target) != mode
- || (GET_CODE (target) == MEM && MEM_VOLATILE_P (target))
- || (GET_CODE (target) == REG
- && REGNO (target) < FIRST_PSEUDO_REGISTER))
- target = gen_reg_rtx (mode);
-
- emit_move_insn (target, op0);
- NO_DEFER_POP;
-
- /* If this mode is an integer too wide to compare properly,
- compare word by word. Rely on CSE to optimize constant cases. */
- if (GET_MODE_CLASS (mode) == MODE_INT && ! can_compare_p (mode))
- do_jump_by_parts_greater_rtx (mode, 0, target, const0_rtx,
- NULL_RTX, op1);
- else
- {
- temp = compare_from_rtx (target, CONST0_RTX (mode), GE, 0, mode,
- NULL_RTX, 0);
- if (temp == const1_rtx)
- return target;
- else if (temp != const0_rtx)
- {
- if (bcc_gen_fctn[(int) GET_CODE (temp)] != 0)
- emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (temp)]) (op1));
- else
- abort ();
- }
- }
-
- op0 = expand_unop (mode, neg_optab, target, target, 0);
- if (op0 != target)
- emit_move_insn (target, op0);
- emit_label (op1);
- OK_DEFER_POP;
- return target;
+ return expand_abs (mode, op0, target, unsignedp,
+ safe_from_p (target, TREE_OPERAND (exp, 0)));
case MAX_EXPR:
case MIN_EXPR:
@@ -9026,7 +8984,7 @@ do_jump_by_parts_greater (exp, swap, if_false_label, if_true_label)
UNSIGNEDP says to do unsigned comparison.
Jump to IF_TRUE_LABEL if OP0 is greater, IF_FALSE_LABEL otherwise. */
-static void
+void
do_jump_by_parts_greater_rtx (mode, unsignedp, op0, op1, if_false_label, if_true_label)
enum machine_mode mode;
int unsignedp;
diff --git a/gnu/usr.bin/cc/cc_int/flow.c b/gnu/usr.bin/cc/cc_int/flow.c
index b0245f8c9497..2127a0705dca 100644
--- a/gnu/usr.bin/cc/cc_int/flow.c
+++ b/gnu/usr.bin/cc/cc_int/flow.c
@@ -2192,6 +2192,8 @@ find_auto_inc (needed, x, insn)
if (GET_CODE (temp) == CALL_INSN)
reg_n_calls_crossed[regno]++;
}
+ else
+ return;
/* If we haven't returned, it means we were able to make the
auto-inc, so update the status. First, record that this insn
diff --git a/gnu/usr.bin/cc/cc_int/fold-const.c b/gnu/usr.bin/cc/cc_int/fold-const.c
index 50217a08490e..e729cdf61981 100644
--- a/gnu/usr.bin/cc/cc_int/fold-const.c
+++ b/gnu/usr.bin/cc/cc_int/fold-const.c
@@ -1404,6 +1404,11 @@ fold_convert (t, arg1)
{
if (TREE_CODE (arg1) == INTEGER_CST)
{
+ /* If we would build a constant wider than GCC supports,
+ leave the conversion unfolded. */
+ if (TYPE_PRECISION (type) > 2 * HOST_BITS_PER_WIDE_INT)
+ return t;
+
/* Given an integer constant, make new constant with new type,
appropriately sign-extended or truncated. */
t = build_int_2 (TREE_INT_CST_LOW (arg1),
@@ -2836,14 +2841,12 @@ fold_truthop (code, truth_type, lhs, rhs)
l_const = convert (unsigned_type (TREE_TYPE (l_const)), l_const);
l_const = const_binop (LSHIFT_EXPR, convert (type, l_const),
size_int (xll_bitpos), 0);
- l_const = const_binop (BIT_AND_EXPR, l_const, ll_mask, 0);
}
if (r_const)
{
r_const = convert (unsigned_type (TREE_TYPE (r_const)), r_const);
r_const = const_binop (LSHIFT_EXPR, convert (type, r_const),
size_int (xrl_bitpos), 0);
- r_const = const_binop (BIT_AND_EXPR, r_const, rl_mask, 0);
}
/* If the right sides are not constant, do the same for it. Also,
diff --git a/gnu/usr.bin/cc/cc_int/loop.c b/gnu/usr.bin/cc/cc_int/loop.c
index 32f39242a319..123c01383bf3 100644
--- a/gnu/usr.bin/cc/cc_int/loop.c
+++ b/gnu/usr.bin/cc/cc_int/loop.c
@@ -1685,6 +1685,8 @@ move_movables (movables, threshold, insn_count, loop_start, end, nregs)
}
p = delete_insn (p);
+ while (p && GET_CODE (p) == NOTE)
+ p = NEXT_INSN (p);
}
start_sequence ();
diff --git a/gnu/usr.bin/cc/cc_int/optabs.c b/gnu/usr.bin/cc/cc_int/optabs.c
index 2d188e665209..4b32d24b0f48 100644
--- a/gnu/usr.bin/cc/cc_int/optabs.c
+++ b/gnu/usr.bin/cc/cc_int/optabs.c
@@ -2051,6 +2051,90 @@ expand_unop (mode, unoptab, op0, target, unsignedp)
MODE is the mode of the operand; the mode of the result is
different but can be deduced from MODE.
+ UNSIGNEDP is relevant if extension is needed. */
+
+rtx
+expand_abs (mode, op0, target, unsignedp, safe)
+ enum machine_mode mode;
+ rtx op0;
+ rtx target;
+ int unsignedp;
+ int safe;
+{
+ rtx temp, op1;
+
+ /* First try to do it with a special abs instruction. */
+ temp = expand_unop (mode, abs_optab, op0, target, 0);
+ if (temp != 0)
+ return temp;
+
+ /* If this machine has expensive jumps, we can do integer absolute
+ value of X as (((signed) x >> (W-1)) ^ x) - ((signed) x >> (W-1)),
+ where W is the width of MODE. */
+
+ if (GET_MODE_CLASS (mode) == MODE_INT && BRANCH_COST >= 2)
+ {
+ rtx extended = expand_shift (RSHIFT_EXPR, mode, op0,
+ size_int (GET_MODE_BITSIZE (mode) - 1),
+ NULL_RTX, 0);
+
+ temp = expand_binop (mode, xor_optab, extended, op0, target, 0,
+ OPTAB_LIB_WIDEN);
+ if (temp != 0)
+ temp = expand_binop (mode, sub_optab, temp, extended, target, 0,
+ OPTAB_LIB_WIDEN);
+
+ if (temp != 0)
+ return temp;
+ }
+
+ /* If that does not win, use conditional jump and negate. */
+ op1 = gen_label_rtx ();
+ if (target == 0 || ! safe
+ || GET_MODE (target) != mode
+ || (GET_CODE (target) == MEM && MEM_VOLATILE_P (target))
+ || (GET_CODE (target) == REG
+ && REGNO (target) < FIRST_PSEUDO_REGISTER))
+ target = gen_reg_rtx (mode);
+
+ emit_move_insn (target, op0);
+ NO_DEFER_POP;
+
+ /* If this mode is an integer too wide to compare properly,
+ compare word by word. Rely on CSE to optimize constant cases. */
+ if (GET_MODE_CLASS (mode) == MODE_INT && ! can_compare_p (mode))
+ do_jump_by_parts_greater_rtx (mode, 0, target, const0_rtx,
+ NULL_RTX, op1);
+ else
+ {
+ temp = compare_from_rtx (target, CONST0_RTX (mode), GE, 0, mode,
+ NULL_RTX, 0);
+ if (temp == const1_rtx)
+ return target;
+ else if (temp != const0_rtx)
+ {
+ if (bcc_gen_fctn[(int) GET_CODE (temp)] != 0)
+ emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (temp)]) (op1));
+ else
+ abort ();
+ }
+ }
+
+ op0 = expand_unop (mode, neg_optab, target, target, 0);
+ if (op0 != target)
+ emit_move_insn (target, op0);
+ emit_label (op1);
+ OK_DEFER_POP;
+ return target;
+}
+
+/* Emit code to compute the absolute value of OP0, with result to
+ TARGET if convenient. (TARGET may be 0.) The return value says
+ where the result actually is to be found.
+
+ MODE is the mode of the operand; the mode of the result is
+ different but can be deduced from MODE.
+
UNSIGNEDP is relevant for complex integer modes. */
rtx
@@ -2300,9 +2384,7 @@ emit_unop_insn (icode, target, op0, code)
INSNS is a block of code generated to perform the operation, not including
the CLOBBER and final copy. All insns that compute intermediate values
- are first emitted, followed by the block as described above. Only
- INSNs are allowed in the block; no library calls or jumps may be
- present.
+ are first emitted, followed by the block as described above.
TARGET, OP0, and OP1 are the output and inputs of the operations,
respectively. OP1 may be zero for a unary operation.
@@ -2311,7 +2393,8 @@ emit_unop_insn (icode, target, op0, code)
on the last insn.
If TARGET is not a register, INSNS is simply emitted with no special
- processing.
+ processing. Likewise if anything in INSNS is not an INSN or if
+ there is a libcall block inside INSNS.
The final insn emitted is returned. */
@@ -2326,6 +2409,11 @@ emit_no_conflict_block (insns, target, op0, op1, equiv)
if (GET_CODE (target) != REG || reload_in_progress)
return emit_insns (insns);
+ else
+ for (insn = insns; insn; insn = NEXT_INSN (insn))
+ if (GET_CODE (insn) != INSN
+ || find_reg_note (insn, REG_LIBCALL, NULL_RTX))
+ return emit_insns (insns);
/* First emit all insns that do not store into words of the output and remove
these from the list. */
@@ -2336,9 +2424,6 @@ emit_no_conflict_block (insns, target, op0, op1, equiv)
next = NEXT_INSN (insn);
- if (GET_CODE (insn) != INSN)
- abort ();
-
if (GET_CODE (PATTERN (insn)) == SET)
set = PATTERN (insn);
else if (GET_CODE (PATTERN (insn)) == PARALLEL)
@@ -3861,8 +3946,6 @@ init_optabs ()
init_integral_libfuncs (ashl_optab, "ashl", '3');
init_integral_libfuncs (ashr_optab, "ashr", '3');
init_integral_libfuncs (lshr_optab, "lshr", '3');
- init_integral_libfuncs (rotl_optab, "rotl", '3');
- init_integral_libfuncs (rotr_optab, "rotr", '3');
init_integral_libfuncs (smin_optab, "min", '3');
init_floating_libfuncs (smin_optab, "min", '3');
init_integral_libfuncs (smax_optab, "max", '3');
diff --git a/gnu/usr.bin/cc/cc_int/reorg.c b/gnu/usr.bin/cc/cc_int/reorg.c
index 250cf9971588..c90c055724c6 100644
--- a/gnu/usr.bin/cc/cc_int/reorg.c
+++ b/gnu/usr.bin/cc/cc_int/reorg.c
@@ -244,12 +244,13 @@ static rtx steal_delay_list_from_fallthrough PROTO((rtx, rtx, rtx, rtx,
struct resources *,
int, int *, int *));
static void try_merge_delay_insns PROTO((rtx, rtx));
-static int redundant_insn_p PROTO((rtx, rtx, rtx));
+static rtx redundant_insn_p PROTO((rtx, rtx, rtx));
static int own_thread_p PROTO((rtx, rtx, int));
static int find_basic_block PROTO((rtx));
static void update_block PROTO((rtx, rtx));
static int reorg_redirect_jump PROTO((rtx, rtx));
static void update_reg_dead_notes PROTO((rtx, rtx));
+static void update_reg_unused_notes PROTO((rtx, rtx));
static void update_live_status PROTO((rtx, rtx));
static rtx next_insn_no_annul PROTO((rtx));
static void mark_target_live_regs PROTO((rtx, struct resources *));
@@ -1922,7 +1923,7 @@ try_merge_delay_insns (insn, thread)
redundant insn, but the cost of splitting seems greater than the possible
gain in rare cases. */
-static int
+static rtx
redundant_insn_p (insn, target, delay_list)
rtx insn;
rtx target;
@@ -2079,7 +2080,7 @@ redundant_insn_p (insn, target, delay_list)
{
/* Show that this insn will be used in the sequel. */
INSN_FROM_TARGET_P (candidate) = 0;
- return 1;
+ return candidate;
}
/* Unless this is an annulled insn from the target of a branch,
@@ -2101,7 +2102,7 @@ redundant_insn_p (insn, target, delay_list)
/* See if TRIAL is the same as INSN. */
pat = PATTERN (trial);
if (rtx_equal_p (pat, ipat))
- return 1;
+ return trial;
/* Can't go any further if TRIAL conflicts with INSN. */
if (insn_sets_resource_p (trial, &needed, 1))
@@ -2276,6 +2277,33 @@ update_reg_dead_notes (insn, delayed_insn)
}
}
}
+
+/* Delete any REG_UNUSED notes that exist on INSN but not on REDUNDANT_INSN.
+
+ This handles the case of udivmodXi4 instructions which optimize their
+ output depending on whether any REG_UNUSED notes are present.
+ we must make sure that INSN calculates as many results as REDUNDANT_INSN
+ does. */
+
+static void
+update_reg_unused_notes (insn, redundant_insn)
+ rtx insn, redundant_insn;
+{
+ rtx p, link, next;
+
+ for (link = REG_NOTES (insn); link; link = next)
+ {
+ next = XEXP (link, 1);
+
+ if (REG_NOTE_KIND (link) != REG_UNUSED
+ || GET_CODE (XEXP (link, 0)) != REG)
+ continue;
+
+ if (! find_regno_note (redundant_insn, REG_UNUSED,
+ REGNO (XEXP (link, 0))))
+ remove_note (insn, link);
+ }
+}
/* Marks registers possibly live at the current place being scanned by
mark_target_live_regs. Used only by next two function. */
@@ -3279,10 +3307,12 @@ fill_slots_from_thread (insn, condition, thread, opposite_thread, likely,
#endif
)
{
+ rtx prior_insn;
+
/* If TRIAL is redundant with some insn before INSN, we don't
actually need to add it to the delay list; we can merely pretend
we did. */
- if (redundant_insn_p (trial, insn, delay_list))
+ if (prior_insn = redundant_insn_p (trial, insn, delay_list))
{
if (own_thread)
{
@@ -3297,7 +3327,10 @@ fill_slots_from_thread (insn, condition, thread, opposite_thread, likely,
delete_insn (trial);
}
else
- new_thread = next_active_insn (trial);
+ {
+ update_reg_unused_notes (prior_insn, trial);
+ new_thread = next_active_insn (trial);
+ }
continue;
}
@@ -3940,6 +3973,17 @@ relax_delay_slots (first)
if (invert_jump (delay_insn, label))
{
+ int i;
+
+ /* Must update the INSN_FROM_TARGET_P bits now that
+ the branch is reversed, so that mark_target_live_regs
+ will handle the delay slot insn correctly. */
+ for (i = 1; i < XVECLEN (PATTERN (insn), 0); i++)
+ {
+ rtx slot = XVECEXP (PATTERN (insn), 0, i);
+ INSN_FROM_TARGET_P (slot) = ! INSN_FROM_TARGET_P (slot);
+ }
+
delete_insn (next);
next = insn;
}
diff --git a/gnu/usr.bin/cc/cc_int/tree.c b/gnu/usr.bin/cc/cc_int/tree.c
index 1787d0c6b9dc..d63a7a5a1bdf 100644
--- a/gnu/usr.bin/cc/cc_int/tree.c
+++ b/gnu/usr.bin/cc/cc_int/tree.c
@@ -1915,11 +1915,9 @@ staticp (arg)
switch (TREE_CODE (arg))
{
case FUNCTION_DECL:
- /* Nested functions aren't static. Since taking their address
+ /* Nested functions aren't static, since taking their address
involves a trampoline. */
- if (decl_function_context (arg) != 0)
- return 0;
- /* ... fall through ... */
+ return decl_function_context (arg) == 0;
case VAR_DECL:
return TREE_STATIC (arg) || DECL_EXTERNAL (arg);
diff --git a/gnu/usr.bin/cc/cc_int/varasm.c b/gnu/usr.bin/cc/cc_int/varasm.c
index 4a46ec13ce52..2ef7ec85cd3d 100644
--- a/gnu/usr.bin/cc/cc_int/varasm.c
+++ b/gnu/usr.bin/cc/cc_int/varasm.c
@@ -3381,10 +3381,11 @@ output_constant (exp, size)
return;
/* Eliminate the NON_LVALUE_EXPR_EXPR that makes a cast not be an lvalue.
- That way we get the constant (we hope) inside it. Also, strip
- off any NOP_EXPR that converts between two record or union types. */
+ That way we get the constant (we hope) inside it. Also, strip off any
+ NOP_EXPR that converts between two record, union, or array types. */
while ((TREE_CODE (exp) == NOP_EXPR
&& (TREE_TYPE (exp) == TREE_TYPE (TREE_OPERAND (exp, 0))
+ || TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE
|| TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
|| TREE_CODE (TREE_TYPE (exp)) == UNION_TYPE
|| TREE_CODE (TREE_TYPE (exp)) == QUAL_UNION_TYPE))
diff --git a/gnu/usr.bin/cc/cc_int/version.c b/gnu/usr.bin/cc/cc_int/version.c
index 5928315efc14..f37f23fcb9fe 100644
--- a/gnu/usr.bin/cc/cc_int/version.c
+++ b/gnu/usr.bin/cc/cc_int/version.c
@@ -1 +1 @@
-char *version_string = "2.6.2";
+char *version_string = "2.6.3";
diff --git a/gnu/usr.bin/cc/cpp/cccp.c b/gnu/usr.bin/cc/cpp/cccp.c
index 5486eb0726bb..39240041fc69 100644
--- a/gnu/usr.bin/cc/cpp/cccp.c
+++ b/gnu/usr.bin/cc/cpp/cccp.c
@@ -5432,9 +5432,9 @@ create_definition (buf, limit, op)
{
switch (*bp)
{
- case '\t': case ' ':
+ case '\t': case ' ': case '\r':
/* Skip spaces and tabs. */
- while (++bp < limit && (*bp == ' ' || *bp == '\t'))
+ while (++bp < limit && (*bp == ' ' || *bp == '\t' || *bp == '\r'))
continue;
break;
diff --git a/gnu/usr.bin/cc/doc/install.texi b/gnu/usr.bin/cc/doc/install.texi
index 4a4813ec9674..cf0f306acc9f 100644
--- a/gnu/usr.bin/cc/doc/install.texi
+++ b/gnu/usr.bin/cc/doc/install.texi
@@ -536,8 +536,8 @@ Here are the possible CPU types:
@c gmicro, alliant, spur and tahoe omitted since they don't work.
1750a, a29k, alpha, arm, c@var{n}, clipper, dsp16xx, elxsi, h8300,
hppa1.0, hppa1.1, i370, i386, i486, i860, i960, m68000, m68k, m88k,
-mips, ns32k, pyramid, romp, rs6000, sh, sparc, sparclite, sparc64, vax,
-we32k.
+mips, ns32k, powerpc, pyramid, romp, rs6000, sh, sparc, sparclite,
+sparc64, vax, we32k.
@end quotation
Here are the recognized company names. As you can see, customary
@@ -1228,18 +1228,21 @@ These errors are minor differences in some floating-point constants and
can be safely ignored; the stage 3 compiler is correct.
@item rs6000-*-aix
-If you are running AIX version 3.2.5 and have XLC version 1.3.0.0, you
-must obtain XLC 1.3.0.1 by requesting PTF 421749 from IBM. Likewise,
-XLC-1.3.0.19 cannot correctly compile GNU CC; you must obtain
-XLC-1.3.0.24 by requesting PTF 432238 from IBM. If you are using an
-older version of AIX you may have an old version of the IBM assembler,
-which cannot correctly handle debugging directives. See the file
-@file{README.RS6000} for more details on both of these problems.
-
-The PowerPC and POWER2 architectures are now supported, but have not
-been very extensively tested due to lack of appropriate systems. Only
-AIX is supported on the PowerPC. GNU CC does not yet support the 64-bit
-PowerPC instructions.
+@itemx powerpc-*-aix
+Various early versions of each release of the IBM XLC compiler will not
+bootstrap GNU CC. Symptoms include differences between the stage2 and
+stage3 object files, and errors when compiling @file{libgcc.a} or
+@file{enquire}. Known problematic releases include: xlc-1.2.1.8,
+xlc-1.3.0.0 (distributed with AIX 3.2.5), and xlc-1.3.0.19. Both
+xlc-1.2.1.28 and xlc-1.3.0.24 (PTF 432238) are known to produce working
+versions of GNU CC, but most other recent releases correctly bootstrap
+GNU CC. Also, releases of AIX prior to AIX 3.2.4 include a version of
+the IBM assembler which does not accept debugging directives: assembler
+updates are available as PTFs. See the file @file{README.RS6000} for
+more details on both of these problems.
+
+Only AIX is supported on the PowerPC. GNU CC does not yet support the
+64-bit PowerPC instructions.
Objective C does not work on this architecture.
diff --git a/gnu/usr.bin/cc/include/expr.h b/gnu/usr.bin/cc/include/expr.h
index 3a4a0afbe5dd..c71b3f69e0f9 100644
--- a/gnu/usr.bin/cc/include/expr.h
+++ b/gnu/usr.bin/cc/include/expr.h
@@ -487,6 +487,9 @@ extern int expand_twoval_binop PROTO((optab, rtx, rtx, rtx, rtx, int));
/* Expand a unary arithmetic operation given optab rtx operand. */
extern rtx expand_unop PROTO((enum machine_mode, optab, rtx, rtx, int));
+/* Expand the absolute value operation. */
+extern rtx expand_abs PROTO((enum machine_mode, rtx, rtx, int, int));
+
/* Expand the complex absolute value operation. */
extern rtx expand_complex_abs PROTO((enum machine_mode, rtx, rtx, int));
diff --git a/gnu/usr.bin/cc/include/tm.h b/gnu/usr.bin/cc/include/tm.h
index 1f88ceb0537d..a3cd69434d4e 100644
--- a/gnu/usr.bin/cc/include/tm.h
+++ b/gnu/usr.bin/cc/include/tm.h
@@ -22,6 +22,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* This is tested by i386gas.h. */
#define YES_UNDERSCORES
+/* Don't assume anything about the header files. */
+#define NO_IMPLICIT_EXTERN_C
+
#include "i386/gstabs.h"
/* Get perform_* macros to build libgcc.a. */
@@ -65,12 +68,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define HAVE_ATEXIT
-/* Tell final.c that we don't need a label passed to mcount. */
-
-#define NO_PROFILE_DATA
-
-/* Redefine this to not pass an unused label in %edx. */
-
+/* Redefine this to use %eax instead of %edx. */
#undef FUNCTION_PROFILER
#define FUNCTION_PROFILER(FILE, LABELNO) \
{ \
@@ -233,22 +231,3 @@ do { \
putc ('\n', FILE); \
} \
} while (0)
-
-/* This is defined when gcc is compiled in the BSD-directory-tree, and must
- * make up for the gap to all the stuff done in the GNU-makefiles.
- */
-
-#ifdef FREEBSD_NATIVE
-
-#undef MD_EXEC_PREFIX
-#define MD_EXEC_PREFIX "/usr/libexec/"
-
-#undef STANDARD_STARTFILE_PREFIX
-#define STANDARD_STARTFILE_PREFIX "/usr/lib"
-
-#define DEFAULT_TARGET_MACHINE "i386-unknown-freebsd_1.0"
-#define GPLUSPLUS_INCLUDE_DIR "/usr/local/lib/gcc-lib/i386-unknown-freebsd_1.0/2.5.8/include"
-#define TOOL_INCLUDE_DIR "/usr/local/i386-unknown-freebsd_1.0/include"
-#define GCC_INCLUDE_DIR "/usr/local/lib/gcc-lib/i386-unknown-freebsd_1.0/2.5.8/include"
-
-#endif /* FREEBSD_NATIVE */
diff --git a/gnu/usr.bin/cc/legal/parse.y b/gnu/usr.bin/cc/legal/parse.y
new file mode 100644
index 000000000000..36c8aac6ea5f
--- /dev/null
+++ b/gnu/usr.bin/cc/legal/parse.y
@@ -0,0 +1,3813 @@
+/* YACC parser for C++ syntax.
+ Copyright (C) 1988, 1989, 1993 Free Software Foundation, Inc.
+ Hacked by Michael Tiemann (tiemann@cygnus.com)
+
+This file is part of GNU CC.
+
+GNU CC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU CC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU CC; see the file COPYING. If not, write to
+the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+
+/* This grammar is based on the GNU CC grammar. */
+
+/* Note: Bison automatically applies a default action of "$$ = $1" for
+ all derivations; this is applied before the explicit action, if one
+ is given. Keep this in mind when reading the actions. */
+
+/* Also note: this version contains experimental exception
+ handling features. They could break, change, disappear,
+ or otherwise exhibit volatile behavior. Don't depend on
+ me (Michael Tiemann) to protect you from any negative impact
+ this may have on your professional, personal, or spiritual life.
+
+ NEWS FLASH: This version now supports the exception handling
+ syntax of Stroustrup's 2nd edition, if -fansi-exceptions is given.
+ THIS IS WORK IN PROGRESS!!! The type of the 'throw' and the
+ 'catch' much match EXACTLY (no inheritance support or coercions).
+ Also, throw-specifications of functions don't work.
+ Destructors aren't called correctly. Etc, etc. --Per Bothner.
+ */
+
+%{
+/* Cause the `yydebug' variable to be defined. */
+#define YYDEBUG 1
+
+#include "config.h"
+
+#include <stdio.h>
+#include <errno.h>
+
+#include "tree.h"
+#include "input.h"
+#include "flags.h"
+#include "lex.h"
+#include "cp-tree.h"
+
+/* Since parsers are distinct for each language, put the language string
+ definition here. (fnf) */
+char *language_string = "GNU C++";
+
+extern tree void_list_node;
+extern struct obstack permanent_obstack;
+
+#ifndef errno
+extern int errno;
+#endif
+
+extern int end_of_file;
+extern int current_class_depth;
+
+void yyerror ();
+
+/* Like YYERROR but do call yyerror. */
+#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
+
+#define OP0(NODE) (TREE_OPERAND (NODE, 0))
+#define OP1(NODE) (TREE_OPERAND (NODE, 1))
+
+/* Contains the statement keyword (if/while/do) to include in an
+ error message if the user supplies an empty conditional expression. */
+static char *cond_stmt_keyword;
+
+/* Nonzero if we have an `extern "C"' acting as an extern specifier. */
+int have_extern_spec;
+int used_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;
+}
+%}
+
+%start program
+
+%union {long itype; tree ttype; char *strtype; enum tree_code code; }
+
+/* All identifiers that are not reserved words
+ and are not declared typedefs in the current block */
+%token IDENTIFIER
+
+/* All identifiers that are declared typedefs in the current block.
+ In some contexts, they are treated just like IDENTIFIER,
+ but they can also serve as typespecs in declarations. */
+%token TYPENAME
+
+/* Reserved words that specify storage class.
+ yylval contains an IDENTIFIER_NODE which indicates which one. */
+%token SCSPEC
+
+/* Reserved words that specify type.
+ yylval contains an IDENTIFIER_NODE which indicates which one. */
+%token TYPESPEC
+
+/* Reserved words that qualify type: "const" or "volatile".
+ yylval contains an IDENTIFIER_NODE which indicates which one. */
+%token TYPE_QUAL
+
+/* Character or numeric constants.
+ yylval is the node for the constant. */
+%token CONSTANT
+
+/* String constants in raw form.
+ yylval is a STRING_CST node. */
+%token STRING
+
+/* "...", used for functions with variable arglists. */
+%token ELLIPSIS
+
+/* the reserved words */
+/* SCO include files test "ASM", so use something else. */
+%token SIZEOF ENUM /* STRUCT UNION */ IF ELSE WHILE DO FOR SWITCH CASE DEFAULT
+%token BREAK CONTINUE RETURN GOTO ASM_KEYWORD GCC_ASM_KEYWORD TYPEOF ALIGNOF
+%token HEADOF CLASSOF SIGOF
+%token ATTRIBUTE EXTENSION LABEL
+
+/* the reserved words... C++ extensions */
+%token <ttype> AGGR
+%token <itype> VISSPEC
+%token DELETE NEW OVERLOAD THIS OPERATOR CXX_TRUE CXX_FALSE
+%token LEFT_RIGHT TEMPLATE
+%token TYPEID DYNAMIC_CAST STATIC_CAST REINTERPRET_CAST CONST_CAST
+%token <itype> SCOPE
+
+/* Define the operator tokens and their precedences.
+ The value is an integer because, if used, it is the tree code
+ to use in the expression made from the operator. */
+
+%left EMPTY /* used to resolve s/r with epsilon */
+
+%left error
+
+/* Add precedence rules to solve dangling else s/r conflict */
+%nonassoc IF
+%nonassoc ELSE
+
+%left IDENTIFIER TYPENAME PTYPENAME SCSPEC TYPESPEC TYPE_QUAL ENUM AGGR ELLIPSIS TYPEOF SIGOF OPERATOR
+
+%left '{' ',' ';'
+
+%right <code> ASSIGN '='
+%right <code> '?' ':'
+%left <code> OROR
+%left <code> ANDAND
+%left <code> '|'
+%left <code> '^'
+%left <code> '&'
+%left <code> MIN_MAX
+%left <code> EQCOMPARE
+%left <code> ARITHCOMPARE '<' '>'
+%left <code> LSHIFT RSHIFT
+%left <code> '+' '-'
+%left <code> '*' '/' '%'
+%left <code> POINTSAT_STAR DOT_STAR
+%right <code> UNARY PLUSPLUS MINUSMINUS '~'
+%left HYPERUNARY
+%left <ttype> PAREN_STAR_PAREN LEFT_RIGHT
+%left <code> POINTSAT '.' '(' '['
+
+%right SCOPE /* C++ extension */
+%nonassoc NEW DELETE TRY CATCH THROW
+
+%type <code> unop
+
+%type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist
+%type <ttype> paren_expr_or_null nontrivial_exprlist
+%type <ttype> expr_no_commas cast_expr unary_expr primary string STRING
+%type <ttype> typed_declspecs reserved_declspecs boolean.literal
+%type <ttype> typed_typespecs reserved_typespecquals
+%type <ttype> declmods typespec typespecqual_reserved
+%type <ttype> SCSPEC TYPESPEC TYPE_QUAL nonempty_type_quals maybe_type_qual
+%type <itype> initdecls notype_initdecls initdcl /* C++ modification */
+%type <ttype> init initlist maybeasm
+%type <ttype> asm_operands nonnull_asm_operands asm_operand asm_clobbers
+%type <ttype> maybe_attribute attributes attribute attribute_list attrib
+%type <ttype> any_word
+
+%type <ttype> compstmt implicitly_scoped_stmt
+
+%type <ttype> declarator notype_declarator after_type_declarator
+%type <ttype> direct_notype_declarator direct_after_type_declarator
+
+%type <ttype> structsp opt.component_decl_list component_decl_list
+%type <ttype> component_decl components component_declarator
+%type <ttype> notype_components notype_component_declarator
+%type <ttype> after_type_component_declarator after_type_component_declarator0
+%type <ttype> notype_component_declarator0 component_decl_1
+%type <ttype> enumlist enumerator
+%type <ttype> type_id absdcl type_quals
+%type <ttype> direct_abstract_declarator conversion_declarator
+%type <ttype> new_type_id new_declarator direct_new_declarator
+%type <ttype> xexpr parmlist parms parm bad_parm full_parm
+%type <ttype> identifiers_or_typenames
+%type <ttype> fcast_or_absdcl regcast_or_absdcl sub_cast_expr
+%type <ttype> expr_or_declarator complex_notype_declarator
+%type <ttype> notype_unqualified_id unqualified_id qualified_id
+%type <ttype> overqualified_id notype_qualified_id
+%type <ttype> complex_direct_notype_declarator functional_cast
+%type <ttype> named_parm complex_parmlist typed_declspecs1 parms_comma
+
+/* C++ extensions */
+%token <ttype> TYPENAME_ELLIPSIS PTYPENAME
+%token <ttype> PRE_PARSED_FUNCTION_DECL EXTERN_LANG_STRING ALL
+%token <ttype> PRE_PARSED_CLASS_DECL
+%type <ttype> fn.def1 /* Not really! */
+%type <ttype> fn.def2 return_id
+%type <ttype> named_class_head named_class_head_sans_basetype
+%type <ttype> unnamed_class_head
+%type <ttype> class_head base_class_list
+%type <itype> base_class_access_list
+%type <ttype> base_class maybe_base_class_list base_class.1
+%type <ttype> maybe_raises ansi_raise_identifier ansi_raise_identifiers
+%type <ttype> component_declarator0
+%type <ttype> forhead.1 operator_name
+%type <ttype> object aggr
+%type <itype> new delete
+/* %type <ttype> primary_no_id */
+%type <ttype> nonmomentary_expr
+%type <itype> forhead.2 initdcl0 notype_initdcl0 member_init_list
+%type <ttype> template_header template_parm_list template_parm
+%type <ttype> template_type_parm
+%type <ttype> template_type template_arg_list template_arg
+%type <ttype> template_instantiation template_type_name tmpl.2
+%type <ttype> template_instantiate_once template_instantiate_some
+%type <itype> fn_tmpl_end
+/* %type <itype> try_for_typename */
+%type <ttype> condition xcond paren_cond_or_null
+%type <ttype> type_name nested_name_specifier nested_type ptr_to_mem
+%type <ttype> qualified_type_name complete_type_name notype_identifier
+%type <ttype> complex_type_name nested_name_specifier_1
+%type <itype> nomods_initdecls nomods_initdcl0
+%type <ttype> new_initializer new_placement specialization type_specifier_seq
+
+/* in order to recognize aggr tags as defining and thus shadowing. */
+%token TYPENAME_DEFN IDENTIFIER_DEFN PTYPENAME_DEFN
+%type <ttype> named_class_head_sans_basetype_defn
+%type <ttype> identifier_defn IDENTIFIER_DEFN TYPENAME_DEFN PTYPENAME_DEFN
+
+%type <strtype> .pushlevel
+
+/* spew.c depends on this being the last token. Define
+ any new tokens before this one! */
+%token END_OF_SAVED_INPUT
+
+%{
+/* List of types and structure classes of the current declaration. */
+static tree current_declspecs;
+
+/* When defining an aggregate, this is the most recent one being defined. */
+static tree current_aggr;
+
+/* Tell yyparse how to print a token's value, if yydebug is set. */
+
+#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
+extern void yyprint ();
+extern tree combine_strings PROTO((tree));
+%}
+
+%%
+program: /* empty */
+ | extdefs
+ {
+ /* In case there were missing closebraces,
+ get us back to the global binding level. */
+ while (! global_bindings_p ())
+ poplevel (0, 0, 0);
+ finish_file ();
+ }
+ ;
+
+/* the reason for the strange actions in this rule
+ is so that notype_initdecls when reached via datadef
+ can find a valid list of type and sc specs in $0. */
+
+extdefs:
+ { $<ttype>$ = NULL_TREE; } lang_extdef
+ { $<ttype>$ = NULL_TREE; }
+ | extdefs lang_extdef
+ { $<ttype>$ = NULL_TREE; }
+ ;
+
+.hush_warning:
+ { have_extern_spec = 1;
+ used_extern_spec = 0;
+ $<ttype>$ = NULL_TREE; }
+ ;
+.warning_ok:
+ { have_extern_spec = 0; }
+ ;
+
+asm_keyword:
+ ASM_KEYWORD
+ | GCC_ASM_KEYWORD
+ ;
+
+lang_extdef:
+ { if (pending_lang_change) do_pending_lang_change(); }
+ extdef
+ { if (! global_bindings_p () && ! pseudo_global_level_p())
+ pop_everything (); }
+ ;
+
+extdef:
+ fndef
+ { if (pending_inlines) do_pending_inlines (); }
+ | datadef
+ { if (pending_inlines) do_pending_inlines (); }
+ | template_def
+ { if (pending_inlines) do_pending_inlines (); }
+ | overloaddef
+ | asm_keyword '(' string ')' ';'
+ { if (TREE_CHAIN ($3)) $3 = combine_strings ($3);
+ assemble_asm ($3); }
+ | extern_lang_string '{' extdefs '}'
+ { pop_lang_context (); }
+ | extern_lang_string '{' '}'
+ { pop_lang_context (); }
+ | extern_lang_string .hush_warning fndef .warning_ok
+ { if (pending_inlines) do_pending_inlines ();
+ pop_lang_context (); }
+ | extern_lang_string .hush_warning datadef .warning_ok
+ { if (pending_inlines) do_pending_inlines ();
+ pop_lang_context (); }
+ ;
+
+extern_lang_string:
+ EXTERN_LANG_STRING
+ { push_lang_context ($1); }
+ ;
+
+template_header:
+ TEMPLATE '<'
+ { begin_template_parm_list (); }
+ template_parm_list '>'
+ { $$ = end_template_parm_list ($4); }
+ ;
+
+template_parm_list:
+ template_parm
+ { $$ = process_template_parm (NULL_TREE, $1); }
+ | template_parm_list ',' template_parm
+ { $$ = process_template_parm ($1, $3); }
+ ;
+
+template_type_parm:
+ aggr
+ {
+ $$ = build_tree_list ($1, NULL_TREE);
+ ttpa:
+ if (TREE_PURPOSE ($$) == signature_type_node)
+ sorry ("signature as template type parameter");
+ else if (TREE_PURPOSE ($$) != class_type_node)
+ pedwarn ("template type parameters must use the keyword `class'");
+ }
+ | aggr identifier
+ { $$ = build_tree_list ($1, $2); goto ttpa; }
+ ;
+
+template_parm:
+ /* The following rules introduce a new reduce/reduce
+ conflict on the ',' and '>' input tokens: they are valid
+ prefixes for a `structsp', which means they could match a
+ nameless parameter. See 14.6, paragraph 3.
+ By putting them before the `parm' rule, we get
+ their match before considering them nameless parameter
+ declarations. */
+ template_type_parm
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ | template_type_parm '=' typespec
+ { $$ = build_tree_list ($3, $$); }
+ | full_parm
+ ;
+
+overloaddef:
+ OVERLOAD ov_identifiers ';'
+ { warning ("use of `overload' is an anachronism"); }
+ ;
+
+ov_identifiers: IDENTIFIER
+ { declare_overloaded ($1); }
+ | ov_identifiers ',' IDENTIFIER
+ { declare_overloaded ($3); }
+ ;
+
+template_def:
+ /* Class template declarations go here; they aren't normal class
+ declarations, because we can't process the bodies yet. */
+ template_header named_class_head_sans_basetype '{'
+ { yychar = '{'; goto template1; }
+ ';'
+ | template_header named_class_head_sans_basetype_defn '{'
+ { yychar = '{'; goto template1; }
+ ';'
+ | template_header named_class_head_sans_basetype ':'
+ { yychar = ':'; goto template1; }
+ ';'
+ | template_header named_class_head_sans_basetype_defn ':'
+ {
+ yychar = ':';
+ template1:
+ if (current_aggr == exception_type_node)
+ error ("template type must define an aggregate or union");
+ else if (current_aggr == signature_type_node)
+ sorry ("template type defining a signature");
+ /* Maybe pedantic warning for union?
+ How about an enum? :-) */
+ end_template_decl ($1, $2, current_aggr, 1);
+ reinit_parse_for_template (yychar, $1, $2);
+ yychar = YYEMPTY;
+ }
+ ';'
+ | template_header named_class_head_sans_basetype ';'
+ {
+ end_template_decl ($1, $2, current_aggr, 0);
+ /* declare $2 as template name with $1 parm list */
+ }
+ | template_header named_class_head_sans_basetype_defn ';'
+ {
+ end_template_decl ($1, $2, current_aggr, 0);
+ /* declare $2 as template name with $1 parm list */
+ }
+ | template_header /* notype_initdcl0 ';' */
+ notype_declarator maybe_raises maybeasm maybe_attribute
+ fn_tmpl_end
+ {
+ tree d;
+ int momentary;
+ int def = ($6 != ';');
+ momentary = suspend_momentary ();
+ d = start_decl ($<ttype>2, /*current_declspecs*/NULL_TREE, 0,
+ $3);
+ cplus_decl_attributes (d, $5);
+ finish_decl (d, NULL_TREE, $4, 0);
+ end_template_decl ($1, d, 0, def);
+ if (def)
+ reinit_parse_for_template ((int) $6, $1, d);
+ resume_momentary (momentary);
+ }
+ | template_header typed_declspecs /*initdcl0*/
+ declarator maybe_raises maybeasm maybe_attribute
+ fn_tmpl_end
+ {
+ tree d;
+ int momentary;
+ int def = ($7 != ';');
+
+ current_declspecs = $2;
+ momentary = suspend_momentary ();
+ d = start_decl ($<ttype>3, current_declspecs,
+ 0, $<ttype>4);
+ cplus_decl_attributes (d, $6);
+ finish_decl (d, NULL_TREE, $5, 0);
+ end_template_decl ($1, d, 0, def);
+ if (def)
+ {
+ reinit_parse_for_template ((int) $7, $1, d);
+ yychar = YYEMPTY;
+ }
+ note_list_got_semicolon ($<ttype>2);
+ resume_momentary (momentary);
+ }
+ | template_header declmods notype_declarator fn_tmpl_end
+ {
+ int def = ($4 != ';');
+ tree d = start_decl ($<ttype>3, $<ttype>2, 0, NULL_TREE);
+ finish_decl (d, NULL_TREE, NULL_TREE, 0);
+ end_template_decl ($1, d, 0, def);
+ if (def)
+ reinit_parse_for_template ((int) $4, $1, d);
+ }
+ /* Try to recover from syntax errors in templates. */
+ | template_header error '}' { end_template_decl ($1, 0, 0, 0); }
+ | template_header error ';' { end_template_decl ($1, 0, 0, 0); }
+ ;
+
+fn_tmpl_end: '{' { $$ = '{'; }
+ | ':' { $$ = ':'; }
+ | ';' { $$ = ';'; }
+ | '=' { $$ = '='; }
+ | RETURN { $$ = RETURN; }
+ ;
+
+datadef:
+ nomods_initdecls ';'
+ {}
+ | declmods notype_initdecls ';'
+ {}
+ /* Normal case to make fast: "const i;". */
+ | declmods notype_declarator ';'
+ { tree d;
+ d = start_decl ($<ttype>2, $<ttype>$, 0, NULL_TREE);
+ finish_decl (d, NULL_TREE, NULL_TREE, 0);
+ }
+ | typed_declspecs initdecls ';'
+ {
+ note_list_got_semicolon ($<ttype>$);
+ }
+ /* Normal case: make this fast. */
+ | typed_declspecs declarator ';'
+ { tree d;
+ d = start_decl ($<ttype>2, $<ttype>$, 0, NULL_TREE);
+ finish_decl (d, NULL_TREE, NULL_TREE, 0);
+ note_list_got_semicolon ($<ttype>$);
+ }
+ | declmods ';'
+ { pedwarn ("empty declaration"); }
+ | explicit_instantiation ';'
+ | typed_declspecs ';'
+ {
+ tree t = $<ttype>$;
+ shadow_tag (t);
+ if (TREE_CODE (t) == TREE_LIST
+ && TREE_PURPOSE (t) == NULL_TREE)
+ {
+ t = TREE_VALUE (t);
+ if (IS_AGGR_TYPE (t)
+ && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
+ {
+ if (CLASSTYPE_USE_TEMPLATE (t) == 0)
+ SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
+ else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
+ error ("override declaration for already-expanded template");
+ }
+ }
+ note_list_got_semicolon ($<ttype>$);
+ }
+ | error ';'
+ | error '}'
+ | ';'
+ ;
+
+fndef:
+ fn.def1 base_init compstmt_or_error
+ {
+ 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 ($<ttype>$) process_next_inline ($<ttype>$);
+ }
+ | fn.def1 return_init base_init compstmt_or_error
+ {
+ 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 ($<ttype>$) process_next_inline ($<ttype>$);
+ }
+ | fn.def1 nodecls compstmt_or_error
+ { finish_function (lineno, 0);
+ if ($<ttype>$) process_next_inline ($<ttype>$); }
+ | fn.def1 return_init ';' nodecls compstmt_or_error
+ { finish_function (lineno, 0);
+ if ($<ttype>$) process_next_inline ($<ttype>$); }
+ | fn.def1 return_init nodecls compstmt_or_error
+ { finish_function (lineno, 0);
+ if ($<ttype>$) process_next_inline ($<ttype>$); }
+ | typed_declspecs declarator error
+ {}
+ | declmods notype_declarator error
+ {}
+ | notype_declarator error
+ {}
+ ;
+
+fn.def1:
+ typed_declspecs declarator maybe_raises
+ { if (! start_function ($$, $2, $3, 0))
+ YYERROR1;
+ reinit_parse_for_function ();
+ $$ = NULL_TREE; }
+ | declmods notype_declarator maybe_raises
+ { if (! start_function ($$, $2, $3, 0))
+ YYERROR1;
+ reinit_parse_for_function ();
+ $$ = NULL_TREE; }
+ | notype_declarator maybe_raises
+ { if (! start_function (NULL_TREE, $$, $2, 0))
+ YYERROR1;
+ reinit_parse_for_function ();
+ $$ = NULL_TREE; }
+ | PRE_PARSED_FUNCTION_DECL
+ { start_function (NULL_TREE, TREE_VALUE ($$), NULL_TREE, 1);
+ reinit_parse_for_function (); }
+ ;
+
+/* more C++ complexity. See component_decl for a comment on the
+ reduce/reduce conflict introduced by these rules. */
+fn.def2:
+ typed_declspecs '(' parmlist ')' type_quals maybe_raises
+ {
+ $$ = build_parse_node (CALL_EXPR, TREE_VALUE ($1), $3, $5);
+ $$ = start_method (TREE_CHAIN ($1), $$, $6);
+ rest_of_mdef:
+ if (! $$)
+ YYERROR1;
+ if (yychar == YYEMPTY)
+ yychar = YYLEX;
+ reinit_parse_for_method (yychar, $$); }
+ | typed_declspecs LEFT_RIGHT type_quals maybe_raises
+ {
+ $$ = build_parse_node (CALL_EXPR, TREE_VALUE ($1),
+ empty_parms (), $3);
+ $$ = start_method (TREE_CHAIN ($1), $$, $4);
+ goto rest_of_mdef;
+ }
+ | typed_declspecs declarator maybe_raises
+ { $$ = start_method ($$, $2, $3); goto rest_of_mdef; }
+ | declmods notype_declarator maybe_raises
+ { $$ = start_method ($$, $2, $3); goto rest_of_mdef; }
+ | notype_declarator maybe_raises
+ { $$ = start_method (NULL_TREE, $$, $2); goto rest_of_mdef; }
+ ;
+
+return_id: RETURN IDENTIFIER
+ {
+ if (! current_function_parms_stored)
+ store_parm_decls ();
+ $$ = $2;
+ }
+ ;
+
+return_init: return_id
+ { store_return_init ($<ttype>$, NULL_TREE); }
+ | return_id '=' init
+ { store_return_init ($<ttype>$, $3); }
+ | return_id '(' nonnull_exprlist ')'
+ { store_return_init ($<ttype>$, $3); }
+ | return_id LEFT_RIGHT
+ { store_return_init ($<ttype>$, NULL_TREE); }
+ ;
+
+base_init:
+ ':' .set_base_init member_init_list
+ {
+ if ($3 == 0)
+ error ("no base initializers given following ':'");
+ setup_vtbl_ptr ();
+ /* Always keep the BLOCK node associated with the outermost
+ pair of curley braces of a function. These are needed
+ for correct operation of dwarfout.c. */
+ keep_next_level ();
+ }
+ ;
+
+.set_base_init:
+ /* empty */
+ {
+ 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");
+ }
+ ;
+
+member_init_list:
+ /* empty */
+ { $$ = 0; }
+ | member_init
+ { $$ = 1; }
+ | member_init_list ',' member_init
+ | member_init_list error
+ ;
+
+member_init: '(' nonnull_exprlist ')'
+ {
+ if (current_class_name && !flag_traditional)
+ pedwarn ("anachronistic old style base class initializer");
+ expand_member_init (C_C_D, NULL_TREE, $2);
+ }
+ | LEFT_RIGHT
+ {
+ if (current_class_name && !flag_traditional)
+ pedwarn ("anachronistic old style base class initializer");
+ expand_member_init (C_C_D, NULL_TREE, void_type_node);
+ }
+ | notype_identifier '(' nonnull_exprlist ')'
+ { expand_member_init (C_C_D, $<ttype>$, $3); }
+ | notype_identifier LEFT_RIGHT
+ { expand_member_init (C_C_D, $<ttype>$, void_type_node); }
+ | complete_type_name '(' nonnull_exprlist ')'
+ { expand_member_init (C_C_D, $<ttype>$, $3); }
+ | complete_type_name LEFT_RIGHT
+ { expand_member_init (C_C_D, $<ttype>$, void_type_node); }
+ /* GNU extension */
+ | notype_qualified_id '(' nonnull_exprlist ')'
+ {
+ do_member_init (OP0 ($1), OP1 ($1), $3);
+ }
+ | notype_qualified_id LEFT_RIGHT
+ {
+ do_member_init (OP0 ($1), OP1 ($1), void_type_node);
+ }
+ ;
+
+identifier:
+ IDENTIFIER
+ | TYPENAME
+ | PTYPENAME
+ ;
+
+notype_identifier:
+ IDENTIFIER
+ | PTYPENAME %prec EMPTY
+ ;
+
+identifier_defn:
+ IDENTIFIER_DEFN
+ | TYPENAME_DEFN
+ | PTYPENAME_DEFN
+ ;
+
+explicit_instantiation:
+ TEMPLATE specialization template_instantiation
+ { do_type_instantiation ($3 ? $3 : $2, NULL_TREE); }
+ | TEMPLATE typed_declspecs declarator
+ { do_function_instantiation ($2, $3, NULL_TREE); }
+ | SCSPEC TEMPLATE specialization template_instantiation
+ { do_type_instantiation ($4 ? $4 : $3, $1); }
+ | SCSPEC TEMPLATE typed_declspecs declarator
+ { do_function_instantiation ($3, $4, $1); }
+ ;
+
+template_type:
+ template_type_name tmpl.2 template_instantiation
+ { if ($3) $$ = $3; }
+ ;
+
+template_type_name:
+ PTYPENAME '<' template_arg_list '>'
+ { $$ = lookup_template_class ($$, $3, NULL_TREE); }
+ | PTYPENAME '<' '>'
+ { $$ = lookup_template_class ($$, NULL_TREE, NULL_TREE); }
+ | TYPENAME '<' template_arg_list '>'
+ { $$ = lookup_template_class ($$, $3, NULL_TREE); }
+ ;
+
+tmpl.2:
+ /* empty */ %prec EMPTY
+ { $$ = instantiate_class_template ($<ttype>0, 1); }
+ ;
+
+template_arg_list:
+ template_arg
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ | template_arg_list ',' template_arg
+ { $$ = chainon ($$, build_tree_list (NULL_TREE, $3)); }
+ ;
+
+template_arg:
+ type_id
+ { $$ = groktypename ($$); }
+ | expr_no_commas %prec UNARY
+ ;
+
+template_instantiate_once:
+ PRE_PARSED_CLASS_DECL maybe_base_class_list
+ {
+ tree t, decl, tmpl;
+
+ tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE ($1));
+ t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, $1, $2, 0);
+ set_current_level_tags_transparency (1);
+ my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
+ || TREE_CODE (t) == UNION_TYPE, 257);
+ $<ttype>$ = t;
+
+ /* Now, put a copy of the decl in global scope, to avoid
+ recursive expansion. */
+ decl = IDENTIFIER_LOCAL_VALUE ($1);
+ if (!decl)
+ decl = IDENTIFIER_CLASS_VALUE ($1);
+ /* 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. */
+ my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
+ 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);
+ }
+ /* Kludge; see instantiate_class_template. */
+ TYPE_BEING_DEFINED (t) = 0;
+ }
+ left_curly opt.component_decl_list '}'
+ {
+ tree t = finish_struct ($<ttype>3, $5, 0);
+
+ pop_obstacks ();
+ end_template_instantiation ($1);
+
+ /* Now go after the methods & class data. */
+ instantiate_member_templates ($1);
+
+ pop_tinst_level();
+
+ CLASSTYPE_GOT_SEMICOLON (t) = 1;
+ }
+ ;
+
+template_instantiation:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | template_instantiate_once
+ { $$ = $1; }
+ ;
+
+template_instantiate_some:
+ /* empty */
+ { $$ = NULL_TREE; /* never used from here... */}
+ | template_instantiate_once template_instantiate_some
+ { $$ = $1; /*???*/ }
+ ;
+
+unop: '-'
+ { $$ = NEGATE_EXPR; }
+ | '+'
+ { $$ = CONVERT_EXPR; }
+ | PLUSPLUS
+ { $$ = PREINCREMENT_EXPR; }
+ | MINUSMINUS
+ { $$ = PREDECREMENT_EXPR; }
+ | '!'
+ { $$ = TRUTH_NOT_EXPR; }
+ ;
+
+expr: nontrivial_exprlist
+ { $$ = build_x_compound_expr ($$); }
+ | expr_no_commas
+ ;
+
+paren_expr_or_null:
+ LEFT_RIGHT
+ { error ("ANSI C++ forbids an empty condition for `%s'",
+ cond_stmt_keyword);
+ $$ = integer_zero_node; }
+ | '(' expr ')'
+ { $$ = build1 (CLEANUP_POINT_EXPR, bool_type_node,
+ bool_truthvalue_conversion ($2)); }
+ ;
+
+paren_cond_or_null:
+ LEFT_RIGHT
+ { error ("ANSI C++ forbids an empty condition for `%s'",
+ cond_stmt_keyword);
+ $$ = integer_zero_node; }
+ | '(' condition ')'
+ { $$ = build1 (CLEANUP_POINT_EXPR, bool_type_node,
+ bool_truthvalue_conversion ($2)); }
+ ;
+
+xcond:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | condition
+ { $$ = build1 (CLEANUP_POINT_EXPR, bool_type_node,
+ bool_truthvalue_conversion ($$)); }
+ | error
+ { $$ = NULL_TREE; }
+ ;
+
+condition:
+ type_specifier_seq declarator maybe_raises maybeasm maybe_attribute '='
+ { {
+ tree d;
+ for (d = getdecls (); d; d = TREE_CHAIN (d))
+ if (TREE_CODE (d) == TYPE_DECL) {
+ tree s = TREE_TYPE (d);
+ if (TREE_CODE (s) == RECORD_TYPE)
+ cp_error ("definition of class `%T' in condition", s);
+ else if (TREE_CODE (s) == ENUMERAL_TYPE)
+ cp_error ("definition of enum `%T' in condition", s);
+ }
+ }
+ current_declspecs = $1;
+ $<itype>6 = suspend_momentary ();
+ $<ttype>$ = start_decl ($<ttype>2, current_declspecs, 1, $3);
+ cplus_decl_attributes ($<ttype>$, $5);
+ }
+ init
+ {
+ finish_decl ($<ttype>7, $8, $5, 0);
+ resume_momentary ($<itype>6);
+ $$ = $<ttype>7;
+ if (TREE_CODE (TREE_TYPE ($$)) == ARRAY_TYPE)
+ cp_error ("definition of array `%#D' in condition", $$);
+ }
+ | expr
+ ;
+
+already_scoped_stmt:
+ '{' '}'
+ { finish_stmt (); }
+ | '{' maybe_label_decls stmts '}'
+ { finish_stmt (); }
+ | '{' maybe_label_decls error '}'
+ { finish_stmt (); }
+ | simple_stmt
+ ;
+
+
+nontrivial_exprlist:
+ expr_no_commas ',' expr_no_commas
+ { $$ = tree_cons (NULL_TREE, $$,
+ build_tree_list (NULL_TREE, $3)); }
+ | expr_no_commas ',' error
+ { $$ = tree_cons (NULL_TREE, $$,
+ build_tree_list (NULL_TREE, error_mark_node)); }
+ | nontrivial_exprlist ',' expr_no_commas
+ { chainon ($$, build_tree_list (NULL_TREE, $3)); }
+ | nontrivial_exprlist ',' error
+ { chainon ($$, build_tree_list (NULL_TREE, error_mark_node)); }
+ ;
+
+nonnull_exprlist:
+ expr_no_commas
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ | nontrivial_exprlist
+ ;
+
+unary_expr:
+ primary %prec UNARY
+ {
+#if 0
+ if (TREE_CODE ($$) == TYPE_EXPR)
+ $$ = build_component_type_expr (C_C_D, $$, NULL_TREE, 1);
+#endif
+ }
+ /* __extension__ turns off -pedantic for following primary. */
+ | EXTENSION
+ { $<itype>1 = pedantic;
+ pedantic = 0; }
+ cast_expr %prec UNARY
+ { $$ = $3;
+ pedantic = $<itype>1; }
+ | '*' cast_expr %prec UNARY
+ { $$ = build_x_indirect_ref ($2, "unary *"); }
+ | '&' cast_expr %prec UNARY
+ { $$ = build_x_unary_op (ADDR_EXPR, $2); }
+ | '~' cast_expr
+ { $$ = build_x_unary_op (BIT_NOT_EXPR, $2); }
+ | unop cast_expr %prec UNARY
+ { $$ = build_x_unary_op ($1, $2);
+ if ($1 == NEGATE_EXPR && TREE_CODE ($2) == INTEGER_CST)
+ TREE_NEGATED_INT ($$) = 1;
+ overflow_warning ($$);
+ }
+ /* Refer to the address of a label as a pointer. */
+ | ANDAND identifier
+ { tree label = lookup_label ($2);
+ if (label == NULL_TREE)
+ $$ = null_pointer_node;
+ else
+ {
+ TREE_USED (label) = 1;
+ $$ = build1 (ADDR_EXPR, ptr_type_node, label);
+ TREE_CONSTANT ($$) = 1;
+ }
+ }
+ | SIZEOF unary_expr %prec UNARY
+ { if (TREE_CODE ($2) == COMPONENT_REF
+ && DECL_BIT_FIELD (TREE_OPERAND ($2, 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 ($2) == COMPOUND_EXPR
+ && (TREE_CODE (TREE_TYPE ($2)) == ARRAY_TYPE
+ || TREE_CODE (TREE_TYPE ($2)) == FUNCTION_TYPE))
+ $2 = default_conversion ($2);
+ else if (TREE_CODE ($2) == TREE_LIST)
+ {
+ tree t = TREE_VALUE ($2);
+ if (t != NULL_TREE
+ && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
+ pedwarn ("ANSI C++ forbids using sizeof() on a function");
+ }
+ $$ = c_sizeof (TREE_TYPE ($2)); }
+ | SIZEOF '(' type_id ')' %prec HYPERUNARY
+ { $$ = c_sizeof (groktypename ($3)); }
+ | ALIGNOF unary_expr %prec UNARY
+ { $$ = grok_alignof ($2); }
+ | ALIGNOF '(' type_id ')' %prec HYPERUNARY
+ { $$ = c_alignof (groktypename ($3)); }
+
+ /* The %prec EMPTY's here are required by the = init initializer
+ syntax extension; see below. */
+ | new new_type_id %prec EMPTY
+ { $$ = build_new (NULL_TREE, $2, NULL_TREE, $1); }
+ | new new_type_id new_initializer
+ { $$ = build_new (NULL_TREE, $2, $3, $1); }
+ | new new_placement new_type_id %prec EMPTY
+ { $$ = build_new ($2, $3, NULL_TREE, $1); }
+ | new new_placement new_type_id new_initializer
+ { $$ = build_new ($2, $3, $4, $1); }
+ | new '(' type_id ')' %prec EMPTY
+ { $$ = build_new (NULL_TREE, groktypename($3),
+ NULL_TREE, $1); }
+ | new '(' type_id ')' new_initializer
+ { $$ = build_new (NULL_TREE, groktypename($3), $5, $1); }
+ | new new_placement '(' type_id ')' %prec EMPTY
+ { $$ = build_new ($2, groktypename($4), NULL_TREE, $1); }
+ | new new_placement '(' type_id ')' new_initializer
+ { $$ = build_new ($2, groktypename($4), $6, $1); }
+
+ | delete cast_expr %prec UNARY
+ { $$ = delete_sanity ($2, NULL_TREE, 0, $1); }
+ | delete '[' ']' cast_expr %prec UNARY
+ { $$ = delete_sanity ($4, NULL_TREE, 1, $1);
+ if (yychar == YYEMPTY)
+ yychar = YYLEX; }
+ | delete '[' expr ']' cast_expr %prec UNARY
+ { $$ = delete_sanity ($5, $3, 2, $1);
+ if (yychar == YYEMPTY)
+ yychar = YYLEX; }
+ ;
+
+new_placement:
+ '(' nonnull_exprlist ')'
+ { $$ = $2; }
+ | '{' nonnull_exprlist '}'
+ {
+ $$ = $2;
+ pedwarn ("old style placement syntax, use () instead");
+ }
+ ;
+
+new_initializer:
+ '(' nonnull_exprlist ')'
+ { $$ = $2; }
+ | LEFT_RIGHT
+ { $$ = NULL_TREE; }
+ | '(' typespec ')'
+ {
+ cp_error ("`%T' is not a valid expression", $2);
+ $$ = error_mark_node;
+ }
+ /* GNU extension so people can use initializer lists. Note that
+ this alters the meaning of `new int = 1', which was previously
+ syntactically valid but semantically invalid. */
+ | '=' init
+ {
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids initialization of new expression with `='");
+ $$ = $2;
+ }
+ ;
+
+/* This is necessary to postpone reduction of `int ((int)(int)(int))'. */
+regcast_or_absdcl:
+ '(' type_id ')' %prec EMPTY
+ { $2 = tree_cons (NULL_TREE, $2, void_list_node);
+ TREE_PARMLIST ($2) = 1;
+ $$ = build_parse_node (CALL_EXPR, NULL_TREE, $2,
+ NULL_TREE); }
+ | regcast_or_absdcl '(' type_id ')' %prec EMPTY
+ { $3 = tree_cons (NULL_TREE, $3, void_list_node);
+ TREE_PARMLIST ($3) = 1;
+ $$ = build_parse_node (CALL_EXPR, $$, $3, NULL_TREE); }
+ ;
+
+cast_expr:
+ sub_cast_expr
+ | regcast_or_absdcl sub_cast_expr %prec UNARY
+ { $$ = reparse_absdcl_as_casts ($$, $2); }
+ | regcast_or_absdcl '{' initlist maybecomma '}' %prec UNARY
+ {
+ tree init = build_nt (CONSTRUCTOR, NULL_TREE,
+ nreverse ($3));
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids constructor-expressions");
+ /* Indicate that this was a GNU C constructor expression. */
+ TREE_HAS_CONSTRUCTOR (init) = 1;
+
+ $$ = reparse_absdcl_as_casts ($$, init);
+ }
+ ;
+
+sub_cast_expr:
+ unary_expr
+ | HEADOF '(' expr ')'
+ { $$ = build_headof ($3); }
+ | CLASSOF '(' expr ')'
+ { $$ = build_classof ($3); }
+ | CLASSOF '(' TYPENAME ')'
+ { if (is_aggr_typedef ($3, 1))
+ {
+ tree type = IDENTIFIER_TYPE_VALUE ($3);
+ if (! IS_SIGNATURE(type))
+ $$ = CLASSTYPE_DOSSIER (type);
+ else
+ {
+ sorry ("signature name as argument of `classof'");
+ $$ = error_mark_node;
+ }
+ }
+ else
+ $$ = error_mark_node;
+ }
+ ;
+
+expr_no_commas:
+ cast_expr
+ /* Handle general members. */
+ | expr_no_commas POINTSAT_STAR expr_no_commas
+ { $$ = build_x_binary_op (MEMBER_REF, $$, $3); }
+ | expr_no_commas DOT_STAR expr_no_commas
+ { $$ = build_m_component_ref ($$, $3); }
+ | expr_no_commas '+' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '-' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '*' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '/' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '%' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas LSHIFT expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas RSHIFT expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas ARITHCOMPARE expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '<' expr_no_commas
+ { $$ = build_x_binary_op (LT_EXPR, $$, $3); }
+ | expr_no_commas '>' expr_no_commas
+ { $$ = build_x_binary_op (GT_EXPR, $$, $3); }
+ | expr_no_commas EQCOMPARE expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas MIN_MAX expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '&' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '|' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas '^' expr_no_commas
+ { $$ = build_x_binary_op ($2, $$, $3); }
+ | expr_no_commas ANDAND expr_no_commas
+ { $$ = build_x_binary_op (TRUTH_ANDIF_EXPR, $$, $3); }
+ | expr_no_commas OROR expr_no_commas
+ { $$ = build_x_binary_op (TRUTH_ORIF_EXPR, $$, $3); }
+ | expr_no_commas '?' xexpr ':' expr_no_commas
+ { $$ = build_x_conditional_expr ($$, $3, $5); }
+ | expr_no_commas '=' expr_no_commas
+ { $$ = build_modify_expr ($$, NOP_EXPR, $3); }
+ | expr_no_commas ASSIGN expr_no_commas
+ { register tree rval;
+ if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, $$, $3,
+ make_node ($2))))
+ $$ = rval;
+ else
+ $$ = build_modify_expr ($$, $2, $3); }
+ | THROW
+ { $$ = build_throw (NULL_TREE); }
+ | THROW expr_no_commas
+ { $$ = build_throw ($2); }
+/* These extensions are not defined. The second arg to build_m_component_ref
+ is old, build_m_component_ref now does an implicit
+ build_indirect_ref (x, NULL_PTR) on the second argument.
+ | object '&' expr_no_commas %prec UNARY
+ { $$ = build_m_component_ref ($$, build_x_unary_op (ADDR_EXPR, $3)); }
+ | object unop expr_no_commas %prec UNARY
+ { $$ = build_m_component_ref ($$, build_x_unary_op ($2, $3)); }
+ | object '(' type_id ')' expr_no_commas %prec UNARY
+ { tree type = groktypename ($3);
+ $$ = build_m_component_ref ($$, build_c_cast (type, $5)); }
+ | object primary_no_id %prec UNARY
+ { $$ = build_m_component_ref ($$, $2); }
+*/
+ ;
+
+notype_unqualified_id:
+ '~' see_typename identifier
+ { $$ = build_parse_node (BIT_NOT_EXPR, $3); }
+ | operator_name
+ | IDENTIFIER
+ | PTYPENAME %prec EMPTY
+ ;
+
+unqualified_id:
+ notype_unqualified_id
+ | TYPENAME
+ ;
+
+expr_or_declarator:
+ notype_unqualified_id
+ | notype_qualified_id
+ | '*' expr_or_declarator %prec UNARY
+ { $$ = build_parse_node (INDIRECT_REF, $2); }
+ | '&' expr_or_declarator %prec UNARY
+ { $$ = build_parse_node (ADDR_EXPR, $2); }
+ ;
+
+direct_notype_declarator:
+ complex_direct_notype_declarator
+ | notype_unqualified_id
+ | notype_qualified_id
+ { push_nested_class (TREE_TYPE (OP0 ($$)), 3);
+ TREE_COMPLEXITY ($$) = current_class_depth; }
+ ;
+
+primary:
+ notype_unqualified_id
+ {
+ if (TREE_CODE ($$) == BIT_NOT_EXPR)
+ $$ = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND ($$, 0));
+ else if (IDENTIFIER_OPNAME_P ($$))
+ {
+ tree op = $$;
+ $$ = lookup_name (op, 0);
+ if ($$ == NULL_TREE)
+ {
+ if (op != ansi_opname[ERROR_MARK])
+ error ("operator %s not defined",
+ operator_name_string (op));
+ $$ = error_mark_node;
+ }
+ }
+ else
+ $$ = do_identifier ($$);
+ }
+ | CONSTANT
+ | boolean.literal
+ | string
+ { $$ = combine_strings ($$); }
+ | '(' expr ')'
+ { $$ = $2; }
+ | '(' error ')'
+ { $$ = error_mark_node; }
+ | '('
+ { if (current_function_decl == 0)
+ {
+ error ("braced-group within expression allowed only inside a function");
+ YYERROR;
+ }
+ keep_next_level ();
+ $<ttype>$ = expand_start_stmt_expr (); }
+ compstmt ')'
+ { tree rtl_exp;
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids braced-groups within expressions");
+ rtl_exp = expand_end_stmt_expr ($<ttype>2);
+ /* The statements have side effects, so the group does. */
+ TREE_SIDE_EFFECTS (rtl_exp) = 1;
+
+ if (TREE_CODE ($3) == BLOCK)
+ {
+ /* Make a BIND_EXPR for the BLOCK already made. */
+ $$ = build (BIND_EXPR, TREE_TYPE (rtl_exp),
+ NULL_TREE, rtl_exp, $3);
+ /* Remove the block from the tree at this point.
+ It gets put back at the proper place
+ when the BIND_EXPR is expanded. */
+ delete_block ($3);
+ }
+ else
+ $$ = $3;
+ }
+ | primary '(' nonnull_exprlist ')'
+ { /* [eichin:19911016.1902EST] */
+ $<ttype>$ = build_x_function_call ($1, $3, current_class_decl);
+ /* here we instantiate_class_template as needed... */
+ do_pending_templates ();
+ } template_instantiate_some {
+ if (TREE_CODE ($<ttype>5) == CALL_EXPR
+ && TREE_TYPE ($<ttype>5) != void_type_node)
+ $$ = require_complete_type ($<ttype>5);
+ else
+ $$ = $<ttype>5;
+ }
+ | primary LEFT_RIGHT
+ {
+ $$ = build_x_function_call ($$, NULL_TREE, current_class_decl);
+ if (TREE_CODE ($$) == CALL_EXPR
+ && TREE_TYPE ($$) != void_type_node)
+ $$ = require_complete_type ($$);
+ }
+ | primary '[' expr ']'
+ { $$ = grok_array_decl ($$, $3); }
+ | primary PLUSPLUS
+ { /* If we get an OFFSET_REF, turn it into what it really
+ means (e.g., a COMPONENT_REF). This way if we've got,
+ say, a reference to a static member that's being operated
+ on, we don't end up trying to find a member operator for
+ the class it's in. */
+ if (TREE_CODE ($$) == OFFSET_REF)
+ $$ = resolve_offset_ref ($$);
+ $$ = build_x_unary_op (POSTINCREMENT_EXPR, $$); }
+ | primary MINUSMINUS
+ { if (TREE_CODE ($$) == OFFSET_REF)
+ $$ = resolve_offset_ref ($$);
+ $$ = build_x_unary_op (POSTDECREMENT_EXPR, $$); }
+ /* C++ extensions */
+ | THIS
+ { if (current_class_decl)
+ {
+#ifdef WARNING_ABOUT_CCD
+ TREE_USED (current_class_decl) = 1;
+#endif
+ $$ = current_class_decl;
+ }
+ else if (current_function_decl
+ && DECL_STATIC_FUNCTION_P (current_function_decl))
+ {
+ error ("`this' is unavailable for static member functions");
+ $$ = 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");
+ $$ = error_mark_node;
+ }
+ }
+ | TYPE_QUAL '(' nonnull_exprlist ')'
+ {
+ tree type;
+ tree id = $$;
+
+ /* This is a C cast in C++'s `functional' notation. */
+ if ($3 == error_mark_node)
+ {
+ $$ = error_mark_node;
+ break;
+ }
+#if 0
+ if ($3 == NULL_TREE)
+ {
+ error ("cannot cast null list to type `%s'",
+ IDENTIFIER_POINTER (TYPE_NAME (id)));
+ $$ = error_mark_node;
+ break;
+ }
+#endif
+#if 0
+ /* type is not set! (mrs) */
+ if (type == error_mark_node)
+ $$ = error_mark_node;
+ else
+#endif
+ {
+ 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);
+#if 0
+ /* should not be able to get here (mrs) */
+ else if (id == ridpointers[(int) RID_FRIEND])
+ {
+ error ("cannot cast expression to `friend' type");
+ $$ = error_mark_node;
+ break;
+ }
+#endif
+ else my_friendly_abort (79);
+ $$ = build_c_cast (type, build_compound_expr ($3));
+ }
+ }
+ | functional_cast
+ | DYNAMIC_CAST '<' type_id '>' '(' expr ')'
+ { tree type = groktypename ($3);
+ $$ = build_dynamic_cast (type, $6); }
+ | STATIC_CAST '<' type_id '>' '(' expr ')'
+ { tree type = groktypename ($3);
+ $$ = build_static_cast (type, $6); }
+ | REINTERPRET_CAST '<' type_id '>' '(' expr ')'
+ { tree type = groktypename ($3);
+ $$ = build_reinterpret_cast (type, $6); }
+ | CONST_CAST '<' type_id '>' '(' expr ')'
+ { tree type = groktypename ($3);
+ $$ = build_const_cast (type, $6); }
+ | TYPEID '(' expr ')'
+ { $$ = build_typeid ($3); }
+ | TYPEID '(' type_id ')'
+ { tree type = groktypename ($3);
+ $$ = get_typeid (type); }
+ | global_scope IDENTIFIER
+ {
+ do_scoped_id:
+ $$ = IDENTIFIER_GLOBAL_VALUE ($2);
+ if (yychar == YYEMPTY)
+ yychar = YYLEX;
+ if (! $$)
+ {
+ if (yychar == '(' || yychar == LEFT_RIGHT)
+ $$ = implicitly_declare ($2);
+ else
+ {
+ if (IDENTIFIER_GLOBAL_VALUE ($2) != error_mark_node)
+ error ("undeclared variable `%s' (first use here)",
+ IDENTIFIER_POINTER ($2));
+ $$ = error_mark_node;
+ /* Prevent repeated error messages. */
+ IDENTIFIER_GLOBAL_VALUE ($2) = error_mark_node;
+ }
+ }
+ else
+ {
+ if (TREE_CODE ($$) == ADDR_EXPR)
+ assemble_external (TREE_OPERAND ($$, 0));
+ else
+ assemble_external ($$);
+ TREE_USED ($$) = 1;
+ }
+ if (TREE_CODE ($$) == CONST_DECL)
+ {
+ /* XXX CHS - should we set TREE_USED of the constant? */
+ $$ = DECL_INITIAL ($$);
+ /* This is to prevent an enum whose value is 0
+ from being considered a null pointer constant. */
+ $$ = build1 (NOP_EXPR, TREE_TYPE ($$), $$);
+ TREE_CONSTANT ($$) = 1;
+ }
+
+ }
+ | global_scope operator_name
+ {
+ got_scope = NULL_TREE;
+ if (TREE_CODE ($2) == IDENTIFIER_NODE)
+ goto do_scoped_id;
+ $$ = $2;
+ }
+ | overqualified_id %prec HYPERUNARY
+ { $$ = build_offset_ref (OP0 ($$), OP1 ($$)); }
+ | overqualified_id '(' nonnull_exprlist ')'
+ { $$ = build_member_call (OP0 ($$), OP1 ($$), $3); }
+ | overqualified_id LEFT_RIGHT
+ { $$ = build_member_call (OP0 ($$), OP1 ($$), NULL_TREE); }
+ | object unqualified_id %prec UNARY
+ { $$ = build_component_ref ($$, $2, NULL_TREE, 1); }
+ | object qualified_id %prec UNARY
+ { $$ = build_object_ref ($$, OP0 ($2), OP1 ($2)); }
+ | object unqualified_id '(' nonnull_exprlist ')'
+ {
+#if 0
+ /* This is a future direction of this code, but because
+ build_x_function_call cannot always undo what is done
+ in build_component_ref entirely yet, we cannot do this. */
+ $$ = build_x_function_call (build_component_ref ($$, $2, NULL_TREE, 1), $4, $$);
+ if (TREE_CODE ($$) == CALL_EXPR
+ && TREE_TYPE ($$) != void_type_node)
+ $$ = require_complete_type ($$);
+#else
+ $$ = build_method_call ($$, $2, $4, NULL_TREE,
+ (LOOKUP_NORMAL|LOOKUP_AGGR));
+#endif
+ }
+ | object unqualified_id LEFT_RIGHT
+ {
+#if 0
+ /* This is a future direction of this code, but because
+ build_x_function_call cannot always undo what is done
+ in build_component_ref entirely yet, we cannot do this. */
+ $$ = build_x_function_call (build_component_ref ($$, $2, NULL_TREE, 1), NULL_TREE, $$);
+ if (TREE_CODE ($$) == CALL_EXPR
+ && TREE_TYPE ($$) != void_type_node)
+ $$ = require_complete_type ($$);
+#else
+ $$ = build_method_call ($$, $2, NULL_TREE, NULL_TREE,
+ (LOOKUP_NORMAL|LOOKUP_AGGR));
+#endif
+ }
+ | object qualified_id '(' nonnull_exprlist ')'
+ {
+ if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 ($2))))
+ {
+ warning ("signature name in scope resolution ignored");
+ $$ = build_method_call ($$, OP1 ($2), $4, NULL_TREE,
+ (LOOKUP_NORMAL|LOOKUP_AGGR));
+ }
+ else
+ $$ = build_scoped_method_call ($$, OP0 ($2), OP1 ($2), $4);
+ }
+ | object qualified_id LEFT_RIGHT
+ {
+ if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 ($2))))
+ {
+ warning ("signature name in scope resolution ignored");
+ $$ = build_method_call ($$, OP1 ($2), NULL_TREE, NULL_TREE,
+ (LOOKUP_NORMAL|LOOKUP_AGGR));
+ }
+ else
+ $$ = build_scoped_method_call ($$, OP0 ($2), OP1 ($2), NULL_TREE);
+ }
+ /* p->int::~int() is valid -- 12.4 */
+ | object '~' TYPESPEC LEFT_RIGHT
+ {
+ if (TREE_CODE (TREE_TYPE ($1))
+ != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE ($3))))
+ cp_error ("`%E' is not of type `%T'", $1, $3);
+ $$ = convert (void_type_node, $1);
+ }
+ | object TYPESPEC SCOPE '~' TYPESPEC LEFT_RIGHT
+ {
+ if ($2 != $5)
+ cp_error ("destructor specifier `%T::~%T()' must have matching names", $2, $5);
+ if (TREE_CODE (TREE_TYPE ($1))
+ != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE ($2))))
+ cp_error ("`%E' is not of type `%T'", $1, $2);
+ $$ = convert (void_type_node, $1);
+ }
+ ;
+
+/* Not needed for now.
+
+primary_no_id:
+ '(' expr ')'
+ { $$ = $2; }
+ | '(' error ')'
+ { $$ = error_mark_node; }
+ | '('
+ { if (current_function_decl == 0)
+ {
+ error ("braced-group within expression allowed only inside a function");
+ YYERROR;
+ }
+ $<ttype>$ = expand_start_stmt_expr (); }
+ compstmt ')'
+ { if (flag_ansi)
+ pedwarn ("ANSI C++ forbids braced-groups within expressions");
+ $$ = expand_end_stmt_expr ($<ttype>2); }
+ | primary_no_id '(' nonnull_exprlist ')'
+ { $$ = build_x_function_call ($$, $3, current_class_decl); }
+ | primary_no_id LEFT_RIGHT
+ { $$ = build_x_function_call ($$, NULL_TREE, current_class_decl); }
+ | primary_no_id '[' expr ']'
+ { goto do_array; }
+ | primary_no_id PLUSPLUS
+ { $$ = build_x_unary_op (POSTINCREMENT_EXPR, $$); }
+ | primary_no_id MINUSMINUS
+ { $$ = build_x_unary_op (POSTDECREMENT_EXPR, $$); }
+ | SCOPE IDENTIFIER
+ { goto do_scoped_id; }
+ | SCOPE operator_name
+ { if (TREE_CODE ($2) == IDENTIFIER_NODE)
+ goto do_scoped_id;
+ goto do_scoped_operator;
+ }
+ ;
+*/
+
+new: NEW
+ { $$ = 0; }
+ | global_scope NEW
+ { got_scope = NULL_TREE; $$ = 1; }
+ ;
+
+delete: DELETE
+ { $$ = 0; }
+ | global_scope delete
+ { got_scope = NULL_TREE; $$ = 1; }
+ ;
+
+boolean.literal:
+ CXX_TRUE
+ { $$ = true_node; }
+ | CXX_FALSE
+ { $$ = false_node; }
+ ;
+
+/* Produces a STRING_CST with perhaps more STRING_CSTs chained onto it. */
+string:
+ STRING
+ | string STRING
+ { $$ = chainon ($$, $2); }
+ ;
+
+nodecls:
+ /* empty */
+ {
+ if (! current_function_parms_stored)
+ store_parm_decls ();
+ setup_vtbl_ptr ();
+ /* Always keep the BLOCK node associated with the outermost
+ pair of curley braces of a function. These are needed
+ for correct operation of dwarfout.c. */
+ keep_next_level ();
+ }
+ ;
+
+object: primary '.'
+ | primary POINTSAT
+ {
+ $$ = build_x_arrow ($$);
+ }
+ ;
+
+decl:
+ /* Normal case: make this fast. */
+ typespec declarator ';'
+ { tree d = get_decl_list ($1);
+ int yes = suspend_momentary ();
+ d = start_decl ($2, d, 0, NULL_TREE);
+ finish_decl (d, NULL_TREE, NULL_TREE, 0);
+ resume_momentary (yes);
+ if (IS_AGGR_TYPE_CODE (TREE_CODE ($1)))
+ note_got_semicolon ($1);
+ }
+ | typed_declspecs declarator ';'
+ { tree d = $1;
+ int yes = suspend_momentary ();
+ d = start_decl ($2, d, 0, NULL_TREE);
+ finish_decl (d, NULL_TREE, NULL_TREE, 0);
+ resume_momentary (yes);
+ note_list_got_semicolon ($1);
+ }
+ | typespec initdecls ';'
+ {
+ resume_momentary ($2);
+ if (IS_AGGR_TYPE_CODE (TREE_CODE ($1)))
+ note_got_semicolon ($1);
+ }
+ | typed_declspecs initdecls ';'
+ {
+ resume_momentary ($2);
+ note_list_got_semicolon ($1);
+ }
+ | declmods notype_initdecls ';'
+ { resume_momentary ($2); }
+ | typed_declspecs ';'
+ {
+ shadow_tag ($1);
+ note_list_got_semicolon ($1);
+ }
+ | declmods ';'
+ { warning ("empty declaration"); }
+ ;
+
+/* Any kind of declarator (thus, all declarators allowed
+ after an explicit typespec). */
+
+declarator:
+ after_type_declarator %prec EMPTY
+ | notype_declarator %prec EMPTY
+ ;
+
+/* This is necessary to postpone reduction of `int()()()()'. */
+fcast_or_absdcl:
+ LEFT_RIGHT %prec EMPTY
+ { $$ = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
+ NULL_TREE); }
+ | fcast_or_absdcl LEFT_RIGHT %prec EMPTY
+ { $$ = build_parse_node (CALL_EXPR, $$, empty_parms (),
+ NULL_TREE); }
+ ;
+
+/* ANSI type-id (8.1) */
+type_id:
+ typed_typespecs absdcl
+ { $$ = build_decl_list ($$, $2); }
+ | nonempty_type_quals absdcl
+ { $$ = build_decl_list ($$, $2); }
+ | typespec absdcl
+ { $$ = build_decl_list (get_decl_list ($$), $2); }
+ | typed_typespecs %prec EMPTY
+ { $$ = build_decl_list ($$, NULL_TREE); }
+ | nonempty_type_quals %prec EMPTY
+ { $$ = build_decl_list ($$, NULL_TREE); }
+ ;
+
+/* Declspecs which contain at least one type specifier or typedef name.
+ (Just `const' or `volatile' is not enough.)
+ A typedef'd name following these is taken as a name to be declared. */
+
+typed_declspecs:
+ typed_typespecs %prec EMPTY
+ | typed_declspecs1
+
+typed_declspecs1:
+ declmods typespec
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ | typespec reserved_declspecs %prec HYPERUNARY
+ { $$ = decl_tree_cons (NULL_TREE, $$, $2); }
+ | declmods typespec reserved_declspecs
+ { $$ = decl_tree_cons (NULL_TREE, $2, chainon ($3, $$)); }
+ | declmods typespec reserved_typespecquals
+ { $$ = decl_tree_cons (NULL_TREE, $2, chainon ($3, $$)); }
+ | declmods typespec reserved_typespecquals reserved_declspecs
+ { $$ = decl_tree_cons (NULL_TREE, $2,
+ chainon ($3, chainon ($4, $$))); }
+ ;
+
+reserved_declspecs:
+ SCSPEC
+ { if (extra_warnings)
+ warning ("`%s' is not at beginning of declaration",
+ IDENTIFIER_POINTER ($$));
+ $$ = build_decl_list (NULL_TREE, $$); }
+ | reserved_declspecs typespecqual_reserved
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ | reserved_declspecs SCSPEC
+ { if (extra_warnings)
+ warning ("`%s' is not at beginning of declaration",
+ IDENTIFIER_POINTER ($2));
+ $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ ;
+
+/* List of just storage classes and type modifiers.
+ A declaration can start with just this, but then it cannot be used
+ to redeclare a typedef-name. */
+
+declmods:
+ nonempty_type_quals %prec EMPTY
+ { TREE_STATIC ($$) = 1; }
+ | SCSPEC
+ { $$ = IDENTIFIER_AS_LIST ($$); }
+ | declmods TYPE_QUAL
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$);
+ TREE_STATIC ($$) = 1; }
+ | declmods SCSPEC
+ { if (extra_warnings && TREE_STATIC ($$))
+ warning ("`%s' is not at beginning of declaration",
+ IDENTIFIER_POINTER ($2));
+ $$ = decl_tree_cons (NULL_TREE, $2, $$);
+ TREE_STATIC ($$) = TREE_STATIC ($1); }
+ ;
+
+
+/* Used instead of declspecs where storage classes are not allowed
+ (that is, for typenames and structure components).
+
+ C++ can takes storage classes for structure components.
+ Don't accept a typedef-name if anything but a modifier precedes it. */
+
+typed_typespecs:
+ typespec %prec EMPTY
+ { $$ = get_decl_list ($$); }
+ | nonempty_type_quals typespec
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ | typespec reserved_typespecquals
+ { $$ = decl_tree_cons (NULL_TREE, $$, $2); }
+ | nonempty_type_quals typespec reserved_typespecquals
+ { $$ = decl_tree_cons (NULL_TREE, $2, chainon ($3, $$)); }
+ ;
+
+reserved_typespecquals:
+ typespecqual_reserved
+ { $$ = build_decl_list (NULL_TREE, $$); }
+ | reserved_typespecquals typespecqual_reserved
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ ;
+
+/* A typespec (but not a type qualifier).
+ Once we have seen one of these in a declaration,
+ if a typedef name appears then it is being redeclared. */
+
+typespec: structsp
+ | TYPESPEC %prec EMPTY
+ | complete_type_name
+ | TYPEOF '(' expr ')'
+ { $$ = TREE_TYPE ($3);
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids `typeof'"); }
+ | TYPEOF '(' type_id ')'
+ { $$ = groktypename ($3);
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids `typeof'"); }
+ | SIGOF '(' expr ')'
+ { tree type = TREE_TYPE ($3);
+
+ if (IS_AGGR_TYPE (type))
+ {
+ sorry ("sigof type specifier");
+ $$ = type;
+ }
+ else
+ {
+ error ("`sigof' applied to non-aggregate expression");
+ $$ = error_mark_node;
+ }
+ }
+ | SIGOF '(' type_id ')'
+ { tree type = groktypename ($3);
+
+ if (IS_AGGR_TYPE (type))
+ {
+ sorry ("sigof type specifier");
+ $$ = type;
+ }
+ else
+ {
+ error("`sigof' applied to non-aggregate type");
+ $$ = error_mark_node;
+ }
+ }
+ ;
+
+/* A typespec that is a reserved word, or a type qualifier. */
+
+typespecqual_reserved: TYPESPEC
+ | TYPE_QUAL
+ | structsp
+ ;
+
+initdecls:
+ initdcl0
+ | initdecls ',' initdcl
+ ;
+
+notype_initdecls:
+ notype_initdcl0
+ | notype_initdecls ',' initdcl
+ ;
+
+nomods_initdecls:
+ nomods_initdcl0
+ | nomods_initdecls ',' initdcl
+ ;
+
+maybeasm:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | asm_keyword '(' string ')'
+ { if (TREE_CHAIN ($3)) $3 = combine_strings ($3); $$ = $3; }
+ ;
+
+initdcl0:
+ declarator maybe_raises maybeasm maybe_attribute '='
+ { current_declspecs = $<ttype>0;
+ if (TREE_CODE (current_declspecs) != TREE_LIST)
+ current_declspecs = get_decl_list (current_declspecs);
+ if (have_extern_spec && !used_extern_spec)
+ {
+ current_declspecs = decl_tree_cons
+ (NULL_TREE, get_identifier ("extern"),
+ current_declspecs);
+ used_extern_spec = 1;
+ }
+ $<itype>5 = suspend_momentary ();
+ $<ttype>$ = start_decl ($<ttype>1, current_declspecs, 1, $2);
+ cplus_decl_attributes ($<ttype>$, $4); }
+ init
+/* Note how the declaration of the variable is in effect while its init is parsed! */
+ { finish_decl ($<ttype>6, $7, $3, 0);
+ $$ = $<itype>5; }
+ | declarator maybe_raises maybeasm maybe_attribute
+ { tree d;
+ current_declspecs = $<ttype>0;
+ if (TREE_CODE (current_declspecs) != TREE_LIST)
+ current_declspecs = get_decl_list (current_declspecs);
+ if (have_extern_spec && !used_extern_spec)
+ {
+ current_declspecs = decl_tree_cons
+ (NULL_TREE, get_identifier ("extern"),
+ current_declspecs);
+ used_extern_spec = 1;
+ }
+ $$ = suspend_momentary ();
+ d = start_decl ($<ttype>1, current_declspecs, 0, $2);
+ cplus_decl_attributes (d, $4);
+ finish_decl (d, NULL_TREE, $3, 0); }
+ ;
+
+initdcl:
+ declarator maybe_raises maybeasm maybe_attribute '='
+ { $<ttype>$ = start_decl ($<ttype>1, current_declspecs, 1, $2);
+ cplus_decl_attributes ($<ttype>$, $4); }
+ init
+/* Note how the declaration of the variable is in effect while its init is parsed! */
+ { finish_decl ($<ttype>6, $7, $3, 0); }
+ | declarator maybe_raises maybeasm maybe_attribute
+ { $<ttype>$ = start_decl ($<ttype>1, current_declspecs, 0, $2);
+ cplus_decl_attributes ($<ttype>$, $4);
+ finish_decl ($<ttype>$, NULL_TREE, $3, 0); }
+ ;
+
+notype_initdcl0:
+ notype_declarator maybe_raises maybeasm maybe_attribute '='
+ { current_declspecs = $<ttype>0;
+ $<itype>5 = suspend_momentary ();
+ $<ttype>$ = start_decl ($<ttype>1, current_declspecs, 1, $2);
+ cplus_decl_attributes ($<ttype>$, $4); }
+ init
+/* Note how the declaration of the variable is in effect while its init is parsed! */
+ { finish_decl ($<ttype>6, $7, $3, 0);
+ $$ = $<itype>5; }
+ | notype_declarator maybe_raises maybeasm maybe_attribute
+ { tree d;
+ current_declspecs = $<ttype>0;
+ $$ = suspend_momentary ();
+ d = start_decl ($<ttype>1, current_declspecs, 0, $2);
+ cplus_decl_attributes (d, $4);
+ finish_decl (d, NULL_TREE, $3, 0); }
+ ;
+
+nomods_initdcl0:
+ notype_declarator maybe_raises maybeasm maybe_attribute '='
+ { current_declspecs = NULL_TREE;
+ $<itype>5 = suspend_momentary ();
+ $<ttype>$ = start_decl ($1, current_declspecs, 1, $2);
+ cplus_decl_attributes ($<ttype>$, $4); }
+ init
+/* Note how the declaration of the variable is in effect while its init is parsed! */
+ { finish_decl ($<ttype>6, $7, $3, 0);
+ $$ = $<itype>5; }
+ | notype_declarator maybe_raises maybeasm maybe_attribute
+ { tree d;
+ current_declspecs = NULL_TREE;
+ $$ = suspend_momentary ();
+ d = start_decl ($1, current_declspecs, 0, $2);
+ cplus_decl_attributes (d, $4);
+ finish_decl (d, NULL_TREE, $3, 0); }
+ ;
+
+/* the * rules are dummies to accept the Apollo extended syntax
+ so that the header files compile. */
+maybe_attribute:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | attributes
+ { $$ = $1; }
+ ;
+
+attributes:
+ attribute
+ { $$ = $1; }
+ | attributes attribute
+ { $$ = chainon ($1, $2); }
+ ;
+
+attribute:
+ ATTRIBUTE '(' '(' attribute_list ')' ')'
+ { $$ = $4; }
+ ;
+
+attribute_list:
+ attrib
+ { $$ = build_tree_list (NULL_TREE, $1); }
+ | attribute_list ',' attrib
+ { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
+ ;
+
+attrib:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | any_word
+ { $$ = $1; }
+ | any_word '(' IDENTIFIER ')'
+ { $$ = tree_cons ($1, NULL_TREE, build_tree_list (NULL_TREE, $3)); }
+ | any_word '(' IDENTIFIER ',' nonnull_exprlist ')'
+ { $$ = tree_cons ($1, NULL_TREE, tree_cons (NULL_TREE, $3, $5)); }
+ | any_word '(' nonnull_exprlist ')'
+ { $$ = tree_cons ($1, NULL_TREE, $3); }
+ ;
+
+/* This still leaves out most reserved keywords,
+ shouldn't we include them? */
+
+any_word:
+ identifier
+ | SCSPEC
+ | TYPESPEC
+ | TYPE_QUAL
+ ;
+
+/* A nonempty list of identifiers, including typenames. */
+identifiers_or_typenames:
+ identifier
+ { $$ = build_tree_list (NULL_TREE, $1); }
+ | identifiers_or_typenames ',' identifier
+ { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
+ ;
+
+init:
+ expr_no_commas %prec '='
+ | '{' '}'
+ { $$ = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
+ TREE_HAS_CONSTRUCTOR ($$) = 1; }
+ | '{' initlist '}'
+ { $$ = build_nt (CONSTRUCTOR, NULL_TREE, nreverse ($2));
+ TREE_HAS_CONSTRUCTOR ($$) = 1; }
+ | '{' initlist ',' '}'
+ { $$ = build_nt (CONSTRUCTOR, NULL_TREE, nreverse ($2));
+ TREE_HAS_CONSTRUCTOR ($$) = 1; }
+ | error
+ { $$ = NULL_TREE; }
+ ;
+
+/* This chain is built in reverse order,
+ and put in forward order where initlist is used. */
+initlist:
+ init
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ | initlist ',' init
+ { $$ = tree_cons (NULL_TREE, $3, $$); }
+ /* These are for labeled elements. */
+ | '[' expr_no_commas ']' init
+ { $$ = build_tree_list ($2, $4); }
+ | initlist ',' CASE expr_no_commas ':' init
+ { $$ = tree_cons ($4, $6, $$); }
+ | identifier ':' init
+ { $$ = build_tree_list ($$, $3); }
+ | initlist ',' identifier ':' init
+ { $$ = tree_cons ($3, $5, $$); }
+ ;
+
+structsp:
+ ENUM identifier '{'
+ { $<itype>3 = suspend_momentary ();
+ $$ = start_enum ($2); }
+ enumlist maybecomma_warn '}'
+ { $$ = finish_enum ($<ttype>4, $5);
+ resume_momentary ((int) $<itype>3);
+ check_for_missing_semicolon ($<ttype>4); }
+ | ENUM identifier '{' '}'
+ { $$ = finish_enum (start_enum ($2), NULL_TREE);
+ check_for_missing_semicolon ($$); }
+ | ENUM '{'
+ { $<itype>2 = suspend_momentary ();
+ $$ = start_enum (make_anon_name ()); }
+ enumlist maybecomma_warn '}'
+ { $$ = finish_enum ($<ttype>3, $4);
+ resume_momentary ((int) $<itype>1);
+ check_for_missing_semicolon ($<ttype>3); }
+ | ENUM '{' '}'
+ { $$ = finish_enum (start_enum (make_anon_name()), NULL_TREE);
+ check_for_missing_semicolon ($$); }
+ | ENUM identifier
+ { $$ = xref_tag (enum_type_node, $2, NULL_TREE, 0); }
+ | ENUM complex_type_name
+ { $$ = xref_tag (enum_type_node, $2, NULL_TREE, 0); }
+
+ /* C++ extensions, merged with C to avoid shift/reduce conflicts */
+ | class_head left_curly opt.component_decl_list '}'
+ {
+ int semi;
+ tree id;
+
+#if 0
+ /* Need to rework class nesting in the
+ presence of nested classes, etc. */
+ shadow_tag (CLASSTYPE_AS_LIST ($$)); */
+#endif
+ if (yychar == YYEMPTY)
+ yychar = YYLEX;
+ semi = yychar == ';';
+ /* finish_struct nukes this anyway; if
+ finish_exception does too, then it can go. */
+ if (semi)
+ note_got_semicolon ($$);
+
+ if (TREE_CODE ($$) == ENUMERAL_TYPE)
+ /* $$ = $1 from default rule. */;
+ else if (CLASSTYPE_DECLARED_EXCEPTION ($$))
+ {
+ }
+ else
+ {
+ $$ = finish_struct ($$, $3, semi);
+ if (semi) note_got_semicolon ($$);
+ }
+
+ pop_obstacks ();
+
+ id = TYPE_IDENTIFIER ($$);
+ if (id && IDENTIFIER_TEMPLATE (id))
+ {
+ tree decl;
+
+ /* I don't know if the copying of this TYPE_DECL is
+ * really needed. However, it's such a small per-
+ * formance penalty that the extra safety is a bargain.
+ * - niklas@appli.se
+ */
+ push_obstacks (&permanent_obstack, &permanent_obstack);
+ decl = copy_node (lookup_name (id, 0));
+ if (DECL_LANG_SPECIFIC (decl))
+ copy_lang_decl (decl);
+ pop_obstacks ();
+ undo_template_name_overload (id, 0);
+ pushdecl_top_level (decl);
+ }
+ if (! semi)
+ check_for_missing_semicolon ($$); }
+ | class_head %prec EMPTY
+ {
+#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 ($$) && !TYPE_SIZE ($$))
+ {
+ error ("incomplete definition of type `%s'",
+ TYPE_NAME_STRING ($$));
+ $$ = error_mark_node;
+ }
+#endif
+ }
+ ;
+
+maybecomma:
+ /* empty */
+ | ','
+ ;
+
+maybecomma_warn:
+ /* empty */
+ | ','
+ { if (pedantic) pedwarn ("comma at end of enumerator list"); }
+ ;
+
+aggr: AGGR
+ | aggr SCSPEC
+ { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER ($2)); }
+ | aggr TYPESPEC
+ { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER ($2)); }
+ | aggr TYPE_QUAL
+ { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER ($2)); }
+ | aggr AGGR
+ { error ("no body nor ';' separates two class, struct or union declarations"); }
+ ;
+
+specialization:
+ aggr template_type_name ';'
+ {
+ yyungetc (';', 1); current_aggr = $$; $$ = $2;
+ if ($<ttype>0 == ridpointers[(int) RID_TEMPLATE])
+ instantiate_class_template ($$, 2);
+ }
+ ;
+
+named_class_head_sans_basetype:
+ aggr identifier
+ { current_aggr = $$; $$ = $2; }
+ | aggr complex_type_name
+ { current_aggr = $$; $$ = $2; }
+ | aggr template_type %prec EMPTY
+ { current_aggr = $$; $$ = $2; }
+ | aggr template_type_name '{'
+ { yyungetc ('{', 1);
+ aggr2:
+ current_aggr = $$;
+ $$ = $2;
+ overload_template_name ($$, 0); }
+ | aggr template_type_name ':'
+ { yyungetc (':', 1); goto aggr2; }
+ | specialization
+ ;
+
+named_class_head_sans_basetype_defn:
+ aggr identifier_defn %prec EMPTY
+ { current_aggr = $$; $$ = $2; }
+ ;
+
+do_xref: /* empty */ %prec EMPTY
+ { $<ttype>$ = xref_tag (current_aggr, $<ttype>0, NULL_TREE, 1); }
+
+do_xref_defn: /* empty */ %prec EMPTY
+ { $<ttype>$ = xref_defn_tag (current_aggr, $<ttype>0, NULL_TREE); }
+
+named_class_head:
+ named_class_head_sans_basetype do_xref
+ maybe_base_class_list %prec EMPTY
+ {
+ if ($3)
+ $$ = xref_tag (current_aggr, $1, $3, 1);
+ else
+ $$ = $<ttype>2;
+ }
+ |
+ named_class_head_sans_basetype_defn do_xref_defn
+ maybe_base_class_list %prec EMPTY
+ {
+ if ($3)
+ $$ = xref_defn_tag (current_aggr, $1, $3);
+ else
+ $$ = $<ttype>2;
+ }
+ ;
+
+unnamed_class_head: aggr '{'
+ { $$ = xref_tag ($$, make_anon_name (), NULL_TREE, 0);
+ yyungetc ('{', 1); }
+ ;
+
+class_head: unnamed_class_head | named_class_head ;
+
+maybe_base_class_list:
+ %prec EMPTY /* empty */
+ { $$ = NULL_TREE; }
+ | ':' %prec EMPTY
+ { yyungetc(':', 1); $$ = NULL_TREE; }
+ | ':' base_class_list %prec EMPTY
+ { $$ = $2; }
+ ;
+
+base_class_list:
+ base_class
+ | base_class_list ',' base_class
+ { $$ = chainon ($$, $3); }
+ ;
+
+base_class:
+ base_class.1
+ {
+ tree type;
+ do_base_class1:
+ type = IDENTIFIER_TYPE_VALUE ($$);
+ if (! is_aggr_typedef ($$, 1))
+ $$ = NULL_TREE;
+ else if (current_aggr == signature_type_node
+ && (! type) && (! IS_SIGNATURE (type)))
+ {
+ error ("class name not allowed as base signature");
+ $$ = NULL_TREE;
+ }
+ else if (current_aggr == signature_type_node)
+ {
+ sorry ("signature inheritance, base type `%s' ignored",
+ IDENTIFIER_POINTER ($$));
+ $$ = build_tree_list ((tree)access_public, $$);
+ }
+ else if (type && IS_SIGNATURE (type))
+ {
+ error ("signature name not allowed as base class");
+ $$ = NULL_TREE;
+ }
+ else
+ $$ = build_tree_list ((tree)access_default, $$);
+ }
+ | base_class_access_list base_class.1
+ {
+ tree type;
+ do_base_class2:
+ type = IDENTIFIER_TYPE_VALUE ($2);
+ if (current_aggr == signature_type_node)
+ error ("access and source specifiers not allowed in signature");
+ if (! is_aggr_typedef ($2, 1))
+ $$ = NULL_TREE;
+ else if (current_aggr == signature_type_node
+ && (! type) && (! IS_SIGNATURE (type)))
+ {
+ error ("class name not allowed as base signature");
+ $$ = NULL_TREE;
+ }
+ else if (current_aggr == signature_type_node)
+ {
+ sorry ("signature inheritance, base type `%s' ignored",
+ IDENTIFIER_POINTER ($$));
+ $$ = build_tree_list ((tree)access_public, $2);
+ }
+ else if (type && IS_SIGNATURE (type))
+ {
+ error ("signature name not allowed as base class");
+ $$ = NULL_TREE;
+ }
+ else
+ $$ = build_tree_list ((tree) $$, $2);
+ }
+ ;
+
+base_class.1:
+ complete_type_name
+ | SIGOF '(' expr ')'
+ {
+ if (current_aggr == signature_type_node)
+ {
+ if (IS_AGGR_TYPE (TREE_TYPE ($3)))
+ {
+ sorry ("`sigof' as base signature specifier");
+ /* need to return some dummy signature identifier */
+ $$ = $3;
+ }
+ else
+ {
+ error ("`sigof' applied to non-aggregate expression");
+ $$ = error_mark_node;
+ }
+ }
+ else
+ {
+ error ("`sigof' in struct or class declaration");
+ $$ = error_mark_node;
+ }
+ }
+ | SIGOF '(' type_id ')'
+ {
+ if (current_aggr == signature_type_node)
+ {
+ if (IS_AGGR_TYPE (groktypename ($3)))
+ {
+ sorry ("`sigof' as base signature specifier");
+ /* need to return some dummy signature identifier */
+ $$ = $3;
+ }
+ else
+ {
+ error ("`sigof' applied to non-aggregate expression");
+ $$ = error_mark_node;
+ }
+ }
+ else
+ {
+ error ("`sigof' in struct or class declaration");
+ $$ = error_mark_node;
+ }
+ }
+ ;
+
+base_class_access_list:
+ VISSPEC
+ | SCSPEC
+ { if ($<ttype>$ != ridpointers[(int)RID_VIRTUAL])
+ sorry ("non-virtual access");
+ $$ = access_default_virtual; }
+ | base_class_access_list VISSPEC
+ { int err = 0;
+ if ($2 == access_protected)
+ {
+ warning ("`protected' access not implemented");
+ $2 = access_public;
+ err++;
+ }
+ else if ($2 == access_public)
+ {
+ if ($1 == access_private)
+ {
+ mixed:
+ error ("base class cannot be public and private");
+ }
+ else if ($1 == access_default_virtual)
+ $$ = access_public_virtual;
+ }
+ else /* $2 == access_private */
+ {
+ if ($1 == access_public)
+ goto mixed;
+ else if ($1 == access_default_virtual)
+ $$ = access_private_virtual;
+ }
+ }
+ | base_class_access_list SCSPEC
+ { if ($2 != ridpointers[(int)RID_VIRTUAL])
+ sorry ("non-virtual access");
+ if ($$ == access_public)
+ $$ = access_public_virtual;
+ else if ($$ == access_private)
+ $$ = access_private_virtual; }
+ ;
+
+left_curly: '{'
+ { tree t = $<ttype>0;
+ push_obstacks_nochange ();
+ end_temporary_allocation ();
+
+ if (! IS_AGGR_TYPE (t))
+ {
+ t = $<ttype>0 = make_lang_type (RECORD_TYPE);
+ TYPE_NAME (t) = get_identifier ("erroneous type");
+ }
+ if (TYPE_SIZE (t))
+ duplicate_tag_error (t);
+ if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
+ {
+ t = make_lang_type (TREE_CODE (t));
+ pushtag (TYPE_IDENTIFIER ($<ttype>0), t, 0);
+ $<ttype>0 = t;
+ }
+ pushclass (t, 0);
+ TYPE_BEING_DEFINED (t) = 1;
+ /* Reset the interface data, at the earliest possible
+ moment, as it might have been set via a class foo;
+ before. */
+ /* Don't change signatures. */
+ if (! IS_SIGNATURE (t))
+ {
+ extern tree pending_vtables;
+ int needs_writing;
+ tree name = TYPE_IDENTIFIER (t);
+
+ CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
+ SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, interface_unknown);
+
+ /* Record how to set the access of this class's
+ virtual functions. If write_virtuals == 2 or 3, then
+ inline virtuals are ``extern inline''. */
+ switch (write_virtuals)
+ {
+ case 0:
+ case 1:
+ needs_writing = 1;
+ break;
+ case 2:
+ needs_writing = !! value_member (name, pending_vtables);
+ break;
+ case 3:
+ needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
+ && CLASSTYPE_INTERFACE_KNOWN (t);
+ break;
+ default:
+ needs_writing = 0;
+ }
+ CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
+ }
+#if 0
+ t = TYPE_IDENTIFIER ($<ttype>0);
+ if (t && IDENTIFIER_TEMPLATE (t))
+ overload_template_name (t, 1);
+#endif
+ }
+ ;
+
+opt.component_decl_list:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | component_decl_list
+ {
+ if (current_aggr == signature_type_node)
+ $$ = build_tree_list ((tree) access_public, $$);
+ else
+ $$ = build_tree_list ((tree) access_default, $$);
+ }
+ | opt.component_decl_list VISSPEC ':' component_decl_list
+ {
+ tree visspec = (tree) $2;
+
+ if (current_aggr == signature_type_node)
+ {
+ error ("access specifier not allowed in signature");
+ visspec = (tree) access_public;
+ }
+ $$ = chainon ($$, build_tree_list (visspec, $4));
+ }
+ | opt.component_decl_list VISSPEC ':'
+ {
+ if (current_aggr == signature_type_node)
+ error ("access specifier not allowed in signature");
+ }
+ ;
+
+/* Note: we no longer warn about the semicolon after a component_decl_list.
+ ARM $9.2 says that the semicolon is optional, and therefore allowed. */
+component_decl_list:
+ component_decl
+ { if ($$ == void_type_node) $$ = NULL_TREE;
+ }
+ | component_decl_list component_decl
+ { /* In pushdecl, we created a reverse list of names
+ in this binding level. Make sure that the chain
+ of what we're trying to add isn't the item itself
+ (which can happen with what pushdecl's doing). */
+ if ($2 != NULL_TREE && $2 != void_type_node)
+ {
+ if (TREE_CHAIN ($2) != $$)
+ $$ = chainon ($$, $2);
+ else
+ $$ = $2;
+ }
+ }
+ | component_decl_list ';'
+ ;
+
+component_decl:
+ component_decl_1 ';'
+ | component_decl_1 '}'
+ { error ("missing ';' before right brace");
+ yyungetc ('}', 0); }
+ /* C++: handle constructors, destructors and inline functions */
+ /* note that INLINE is like a TYPESPEC */
+ | fn.def2 ':' /* base_init compstmt */
+ { $$ = finish_method ($$); }
+ | fn.def2 '{' /* nodecls compstmt */
+ { $$ = finish_method ($$); }
+ ;
+
+component_decl_1:
+ /* Do not add a "typed_declspecs declarator" rule here for
+ speed; we need to call grok_x_components for enums, so the
+ speedup would be insignificant. */
+ typed_declspecs components
+ {
+ $$ = grok_x_components ($$, $2);
+ }
+ | declmods notype_components
+ {
+ $$ = grok_x_components ($$, $2);
+ }
+ | notype_declarator maybe_raises maybeasm maybe_attribute
+ { $$ = grokfield ($$, NULL_TREE, $2, NULL_TREE, $3);
+ cplus_decl_attributes ($$, $4); }
+ | ':' expr_no_commas
+ { $$ = grokbitfield (NULL_TREE, NULL_TREE, $2); }
+ | error
+ { $$ = NULL_TREE; }
+
+ /* These rules introduce a reduce/reduce conflict; in
+ typedef int foo, bar;
+ class A {
+ foo (bar);
+ };
+ should "A::foo" be declared as a function or "A::bar" as a data
+ member? In other words, is "bar" an after_type_declarator or a
+ parmlist? */
+ | typed_declspecs '(' parmlist ')' type_quals
+ { $$ = build_parse_node (CALL_EXPR, TREE_VALUE ($1),
+ $3, $5);
+ $$ = grokfield ($$, TREE_CHAIN ($1), NULL_TREE, NULL_TREE,
+ NULL_TREE); }
+ | typed_declspecs LEFT_RIGHT type_quals
+ { $$ = build_parse_node (CALL_EXPR, TREE_VALUE ($1),
+ empty_parms (), $3);
+ $$ = grokfield ($$, TREE_CHAIN ($1), NULL_TREE, NULL_TREE,
+ NULL_TREE); }
+ ;
+
+/* The case of exactly one component is handled directly by component_decl. */
+components:
+ /* empty: possibly anonymous */
+ { $$ = NULL_TREE; }
+ | component_declarator0
+ | components ',' component_declarator
+ {
+ /* In this context, void_type_node encodes
+ friends. They have been recorded elsewhere. */
+ if ($$ == void_type_node)
+ $$ = $3;
+ else
+ $$ = chainon ($$, $3);
+ }
+ ;
+
+notype_components:
+ /* empty: possibly anonymous */
+ { $$ = NULL_TREE; }
+ | notype_component_declarator0
+ | notype_components ',' notype_component_declarator
+ {
+ /* In this context, void_type_node encodes
+ friends. They have been recorded elsewhere. */
+ if ($$ == void_type_node)
+ $$ = $3;
+ else
+ $$ = chainon ($$, $3);
+ }
+ ;
+
+component_declarator0:
+ after_type_component_declarator0
+ | notype_component_declarator0
+ ;
+
+component_declarator:
+ after_type_component_declarator
+ | notype_component_declarator
+ ;
+
+after_type_component_declarator0:
+ after_type_declarator maybe_raises maybeasm maybe_attribute
+ { current_declspecs = $<ttype>0;
+ $$ = grokfield ($$, current_declspecs, $2, NULL_TREE, $3);
+ cplus_decl_attributes ($$, $4); }
+ | after_type_declarator maybe_raises maybeasm maybe_attribute '=' init
+ { current_declspecs = $<ttype>0;
+ $$ = grokfield ($$, current_declspecs, $2, $6, $3);
+ cplus_decl_attributes ($$, $4); }
+ | TYPENAME ':' expr_no_commas maybe_attribute
+ { current_declspecs = $<ttype>0;
+ $$ = grokbitfield ($$, current_declspecs, $3);
+ cplus_decl_attributes ($$, $4); }
+ ;
+
+notype_component_declarator0:
+ notype_declarator maybe_raises maybeasm maybe_attribute
+ { current_declspecs = $<ttype>0;
+ $$ = grokfield ($$, current_declspecs, $2, NULL_TREE, $3);
+ cplus_decl_attributes ($$, $4); }
+ | notype_declarator maybe_raises maybeasm maybe_attribute '=' init
+ { current_declspecs = $<ttype>0;
+ $$ = grokfield ($$, current_declspecs, $2, $6, $3);
+ cplus_decl_attributes ($$, $4); }
+ | IDENTIFIER ':' expr_no_commas maybe_attribute
+ { current_declspecs = $<ttype>0;
+ $$ = grokbitfield ($$, current_declspecs, $3);
+ cplus_decl_attributes ($$, $4); }
+ | ':' expr_no_commas maybe_attribute
+ { current_declspecs = $<ttype>0;
+ $$ = grokbitfield (NULL_TREE, current_declspecs, $2);
+ cplus_decl_attributes ($$, $3); }
+ ;
+
+after_type_component_declarator:
+ after_type_declarator maybe_raises maybeasm maybe_attribute
+ { $$ = grokfield ($$, current_declspecs, $2, NULL_TREE, $3);
+ cplus_decl_attributes ($$, $4); }
+ | after_type_declarator maybe_raises maybeasm maybe_attribute '=' init
+ { $$ = grokfield ($$, current_declspecs, $2, $6, $3);
+ cplus_decl_attributes ($$, $4); }
+ | TYPENAME ':' expr_no_commas maybe_attribute
+ { $$ = grokbitfield ($$, current_declspecs, $3);
+ cplus_decl_attributes ($$, $4); }
+ ;
+
+notype_component_declarator:
+ notype_declarator maybe_raises maybeasm maybe_attribute
+ { $$ = grokfield ($$, current_declspecs, $2, NULL_TREE, $3);
+ cplus_decl_attributes ($$, $4); }
+ | notype_declarator maybe_raises maybeasm maybe_attribute '=' init
+ { $$ = grokfield ($$, current_declspecs, $2, $6, $3);
+ cplus_decl_attributes ($$, $4); }
+ | IDENTIFIER ':' expr_no_commas maybe_attribute
+ { $$ = grokbitfield ($$, current_declspecs, $3);
+ cplus_decl_attributes ($$, $4); }
+ | ':' expr_no_commas maybe_attribute
+ { $$ = grokbitfield (NULL_TREE, current_declspecs, $2);
+ cplus_decl_attributes ($$, $3); }
+ ;
+
+/* We chain the enumerators in reverse order.
+ Because of the way enums are built, the order is
+ insignificant. Take advantage of this fact. */
+
+enumlist:
+ enumerator
+ | enumlist ',' enumerator
+ { TREE_CHAIN ($3) = $$; $$ = $3; }
+ ;
+
+enumerator:
+ identifier
+ { $$ = build_enumerator ($$, NULL_TREE); }
+ | identifier '=' expr_no_commas
+ { $$ = build_enumerator ($$, $3); }
+ ;
+
+/* ANSI new-type-id (5.3.4) */
+new_type_id:
+ type_specifier_seq new_declarator
+ { $$ = build_decl_list ($$, $2); }
+ | type_specifier_seq %prec EMPTY
+ { $$ = build_decl_list ($$, NULL_TREE); }
+ /* GNU extension to allow arrays of arbitrary types with
+ non-constant dimension. */
+ | '(' type_id ')' '[' expr ']'
+ {
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
+ $$ = build_parse_node (ARRAY_REF, TREE_VALUE ($2), $5);
+ $$ = build_decl_list (TREE_PURPOSE ($2), $$);
+ }
+ ;
+
+type_quals:
+ /* empty */ %prec EMPTY
+ { $$ = NULL_TREE; }
+ | type_quals TYPE_QUAL
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ ;
+
+nonempty_type_quals:
+ TYPE_QUAL
+ { $$ = IDENTIFIER_AS_LIST ($$); }
+ | nonempty_type_quals TYPE_QUAL
+ { $$ = decl_tree_cons (NULL_TREE, $2, $$); }
+ ;
+
+/* These rules must follow the rules for function declarations
+ and component declarations. That way, longer rules are preferred. */
+
+/* An expression which will not live on the momentary obstack. */
+nonmomentary_expr:
+ { $<itype>$ = suspend_momentary (); } expr
+ { resume_momentary ((int) $<itype>1); $$ = $2; }
+ ;
+
+/* A declarator that is allowed only after an explicit typespec. */
+/* may all be followed by prec '.' */
+after_type_declarator:
+ '*' nonempty_type_quals after_type_declarator %prec UNARY
+ { $$ = make_pointer_declarator ($2, $3); }
+ | '&' nonempty_type_quals after_type_declarator %prec UNARY
+ { $$ = make_reference_declarator ($2, $3); }
+ | '*' after_type_declarator %prec UNARY
+ { $$ = make_pointer_declarator (NULL_TREE, $2); }
+ | '&' after_type_declarator %prec UNARY
+ { $$ = make_reference_declarator (NULL_TREE, $2); }
+ | ptr_to_mem type_quals after_type_declarator
+ { tree arg = make_pointer_declarator ($2, $3);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | direct_after_type_declarator
+ ;
+
+qualified_type_name:
+ type_name %prec EMPTY
+ {
+ /* Remember that this name has been used in the class
+ definition, as per [class.scope0] */
+ if (current_class_type
+ && TYPE_BEING_DEFINED (current_class_type)
+ && ! IDENTIFIER_CLASS_VALUE ($$))
+ {
+ tree t = lookup_name ($$, -2);
+ if (t)
+ pushdecl_class_level (t);
+ }
+ }
+ | nested_type
+ ;
+
+nested_type:
+ nested_name_specifier type_name %prec EMPTY
+ { $$ = $2; }
+ ;
+
+direct_after_type_declarator:
+ direct_after_type_declarator '(' nonnull_exprlist ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, $3, $5); }
+ | direct_after_type_declarator '(' parmlist ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, $3, $5); }
+ | direct_after_type_declarator LEFT_RIGHT type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, empty_parms (), $3); }
+ | direct_after_type_declarator '(' error ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, NULL_TREE, NULL_TREE); }
+ | direct_after_type_declarator '[' nonmomentary_expr ']'
+ { $$ = build_parse_node (ARRAY_REF, $$, $3); }
+ | direct_after_type_declarator '[' ']'
+ { $$ = build_parse_node (ARRAY_REF, $$, NULL_TREE); }
+ | '(' after_type_declarator ')'
+ { $$ = $2; }
+ | nested_name_specifier type_name %prec EMPTY
+ { push_nested_class (TREE_TYPE ($$), 3);
+ $$ = build_parse_node (SCOPE_REF, $$, $2);
+ TREE_COMPLEXITY ($$) = current_class_depth; }
+ | type_name %prec EMPTY
+ ;
+
+/* A declarator allowed whether or not there has been
+ an explicit typespec. These cannot redeclare a typedef-name. */
+
+notype_declarator:
+ '*' nonempty_type_quals notype_declarator %prec UNARY
+ { $$ = make_pointer_declarator ($2, $3); }
+ | '&' nonempty_type_quals notype_declarator %prec UNARY
+ { $$ = make_reference_declarator ($2, $3); }
+ | '*' notype_declarator %prec UNARY
+ { $$ = make_pointer_declarator (NULL_TREE, $2); }
+ | '&' notype_declarator %prec UNARY
+ { $$ = make_reference_declarator (NULL_TREE, $2); }
+ | ptr_to_mem type_quals notype_declarator
+ { tree arg = make_pointer_declarator ($2, $3);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | direct_notype_declarator
+ ;
+
+complex_notype_declarator:
+ '*' nonempty_type_quals notype_declarator %prec UNARY
+ { $$ = make_pointer_declarator ($2, $3); }
+ | '&' nonempty_type_quals notype_declarator %prec UNARY
+ { $$ = make_reference_declarator ($2, $3); }
+ | '*' complex_notype_declarator %prec UNARY
+ { $$ = make_pointer_declarator (NULL_TREE, $2); }
+ | '&' complex_notype_declarator %prec UNARY
+ { $$ = make_reference_declarator (NULL_TREE, $2); }
+ | ptr_to_mem type_quals notype_declarator
+ { tree arg = make_pointer_declarator ($2, $3);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | complex_direct_notype_declarator
+ ;
+
+complex_direct_notype_declarator:
+ direct_notype_declarator '(' nonnull_exprlist ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, $3, $5); }
+ | direct_notype_declarator '(' parmlist ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, $3, $5); }
+ | direct_notype_declarator LEFT_RIGHT type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, empty_parms (), $3); }
+ | direct_notype_declarator '(' error ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, NULL_TREE, NULL_TREE); }
+ | '(' expr_or_declarator ')'
+ { $$ = finish_decl_parsing ($2); }
+ | '(' complex_notype_declarator ')'
+ { $$ = $2; }
+ | direct_notype_declarator '[' nonmomentary_expr ']'
+ { $$ = build_parse_node (ARRAY_REF, $$, $3); }
+ | direct_notype_declarator '[' ']'
+ { $$ = build_parse_node (ARRAY_REF, $$, NULL_TREE); }
+ ;
+
+qualified_id:
+ nested_name_specifier unqualified_id
+ { got_scope = NULL_TREE;
+ $$ = build_parse_node (SCOPE_REF, $$, $2); }
+ ;
+
+notype_qualified_id:
+ nested_name_specifier notype_unqualified_id
+ { got_scope = NULL_TREE;
+ $$ = build_parse_node (SCOPE_REF, $$, $2); }
+ ;
+
+overqualified_id:
+ notype_qualified_id
+ | global_scope notype_qualified_id
+ { $$ = $2; }
+ ;
+
+functional_cast:
+ typespec '(' nonnull_exprlist ')'
+ { $$ = build_functional_cast ($$, $3); }
+ | typespec '(' expr_or_declarator ')'
+ { $$ = reparse_decl_as_expr ($$, $3); }
+ | typespec fcast_or_absdcl %prec EMPTY
+ { $$ = reparse_absdcl_as_expr ($$, $2); }
+ ;
+
+type_name:
+ TYPENAME
+ | template_type %prec EMPTY
+ ;
+
+nested_name_specifier:
+ nested_name_specifier_1
+ | nested_name_specifier nested_name_specifier_1
+ { $$ = $2; }
+ ;
+
+/* Why the @#$%^& do type_name and notype_identifier need to be expanded
+ inline here?!? (jason) */
+nested_name_specifier_1:
+ TYPENAME SCOPE
+ { got_scope = TREE_TYPE ($$); }
+ | template_type SCOPE
+ { got_scope = TREE_TYPE ($$); }
+/* These break 'const i;'
+ | IDENTIFIER SCOPE
+ {
+ failed_scope:
+ cp_error ("`%D' is not an aggregate typedef",
+ lastiddecl ? lastiddecl : $$);
+ $$ = error_mark_node;
+ }
+ | PTYPENAME SCOPE
+ { goto failed_scope; } */
+ ;
+
+complete_type_name:
+ qualified_type_name
+ | global_scope qualified_type_name
+ { $$ = $2; }
+ ;
+
+complex_type_name:
+ nested_type
+ | global_scope qualified_type_name
+ { $$ = $2; }
+ ;
+
+ptr_to_mem:
+ nested_name_specifier '*'
+ { got_scope = NULL_TREE; }
+ | global_scope nested_name_specifier '*'
+ { $$ = $2; got_scope = NULL_TREE; }
+ ;
+
+/* All uses of explicit global scope must go through this nonterminal so
+ that got_scope will be set before yylex is called to get the next token. */
+global_scope:
+ SCOPE
+ { got_scope = void_type_node; }
+ ;
+
+/* ANSI new-declarator (5.3.4) */
+new_declarator:
+ '*' type_quals new_declarator
+ { $$ = make_pointer_declarator ($2, $3); }
+ | '*' type_quals %prec EMPTY
+ { $$ = make_pointer_declarator ($2, NULL_TREE); }
+ | '&' type_quals new_declarator %prec EMPTY
+ { $$ = make_reference_declarator ($2, $3); }
+ | '&' type_quals %prec EMPTY
+ { $$ = make_reference_declarator ($2, NULL_TREE); }
+ | ptr_to_mem type_quals %prec EMPTY
+ { tree arg = make_pointer_declarator ($2, NULL_TREE);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | ptr_to_mem type_quals new_declarator
+ { tree arg = make_pointer_declarator ($2, $3);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | direct_new_declarator %prec EMPTY
+ ;
+
+/* ANSI direct-new-declarator (5.3.4) */
+direct_new_declarator:
+ '[' expr ']'
+ { $$ = build_parse_node (ARRAY_REF, NULL_TREE, $2); }
+ | direct_new_declarator '[' nonmomentary_expr ']'
+ { $$ = build_parse_node (ARRAY_REF, $$, $3); }
+ ;
+
+/* ANSI abstract-declarator (8.1) */
+absdcl:
+ '*' nonempty_type_quals absdcl
+ { $$ = make_pointer_declarator ($2, $3); }
+ | '*' absdcl
+ { $$ = make_pointer_declarator (NULL_TREE, $2); }
+ | '*' nonempty_type_quals %prec EMPTY
+ { $$ = make_pointer_declarator ($2, NULL_TREE); }
+ | '*' %prec EMPTY
+ { $$ = make_pointer_declarator (NULL_TREE, NULL_TREE); }
+ | '&' nonempty_type_quals absdcl
+ { $$ = make_reference_declarator ($2, $3); }
+ | '&' absdcl
+ { $$ = make_reference_declarator (NULL_TREE, $2); }
+ | '&' nonempty_type_quals %prec EMPTY
+ { $$ = make_reference_declarator ($2, NULL_TREE); }
+ | '&' %prec EMPTY
+ { $$ = make_reference_declarator (NULL_TREE, NULL_TREE); }
+ | ptr_to_mem type_quals %prec EMPTY
+ { tree arg = make_pointer_declarator ($2, NULL_TREE);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | ptr_to_mem type_quals absdcl
+ { tree arg = make_pointer_declarator ($2, $3);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ | direct_abstract_declarator %prec EMPTY
+ ;
+
+/* ANSI direct-abstract-declarator (8.1) */
+direct_abstract_declarator:
+ '(' absdcl ')'
+ { $$ = $2; }
+ /* `(typedef)1' is `int'. */
+ | PAREN_STAR_PAREN
+ | direct_abstract_declarator '(' parmlist ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, $3, $5); }
+ | direct_abstract_declarator LEFT_RIGHT type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, $$, empty_parms (), $3); }
+ | direct_abstract_declarator '[' nonmomentary_expr ']' %prec '.'
+ { $$ = build_parse_node (ARRAY_REF, $$, $3); }
+ | direct_abstract_declarator '[' ']' %prec '.'
+ { $$ = build_parse_node (ARRAY_REF, $$, NULL_TREE); }
+ | '(' complex_parmlist ')' type_quals %prec '.'
+ { $$ = build_parse_node (CALL_EXPR, NULL_TREE, $2, $4); }
+ | regcast_or_absdcl type_quals %prec '.'
+ { TREE_OPERAND ($$, 2) = $2; }
+ | fcast_or_absdcl type_quals %prec '.'
+ { TREE_OPERAND ($$, 2) = $2; }
+ | '[' nonmomentary_expr ']' %prec '.'
+ { $$ = build_parse_node (ARRAY_REF, NULL_TREE, $2); }
+ | '[' ']' %prec '.'
+ { $$ = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); }
+ ;
+
+/* For C++, decls and stmts can be intermixed, so we don't need to
+ have a special rule that won't start parsing the stmt section
+ until we have a stmt that parses without errors. */
+
+stmts:
+ stmt
+ | errstmt
+ | stmts stmt
+ | stmts errstmt
+ ;
+
+errstmt: error ';'
+ ;
+
+/* build the LET_STMT node before parsing its contents,
+ so that any LET_STMTs within the context can have their display pointers
+ set up to point at this one. */
+
+.pushlevel: /* empty */
+ { emit_line_note (input_filename, lineno);
+ pushlevel (0);
+ clear_last_expr ();
+ push_momentary ();
+ expand_start_bindings (0); }
+ ;
+
+/* Read zero or more forward-declarations for labels
+ that nested functions can jump to. */
+maybe_label_decls:
+ /* empty */
+ | label_decls
+ { if (flag_ansi)
+ pedwarn ("ANSI C++ forbids label declarations"); }
+ ;
+
+label_decls:
+ label_decl
+ | label_decls label_decl
+ ;
+
+label_decl:
+ LABEL identifiers_or_typenames ';'
+ { tree link;
+ for (link = $2; link; link = TREE_CHAIN (link))
+ {
+ tree label = shadow_label (TREE_VALUE (link));
+ C_DECLARED_LABEL_FLAG (label) = 1;
+ declare_nonlocal_label (label);
+ }
+ }
+ ;
+
+/* This is the body of a function definition.
+ It causes syntax errors to ignore to the next openbrace. */
+compstmt_or_error:
+ compstmt
+ {}
+ | error compstmt
+ ;
+
+compstmt: '{' .pushlevel '}'
+ { expand_end_bindings (getdecls (), kept_level_p(), 1);
+ $$ = poplevel (kept_level_p (), 1, 0);
+ pop_momentary (); }
+ | '{' .pushlevel maybe_label_decls stmts '}'
+ { expand_end_bindings (getdecls (), kept_level_p(), 1);
+ $$ = poplevel (kept_level_p (), 1, 0);
+ pop_momentary (); }
+ | '{' .pushlevel maybe_label_decls stmts error '}'
+ { expand_end_bindings (getdecls (), kept_level_p(), 1);
+ $$ = poplevel (kept_level_p (), 0, 0);
+ pop_momentary (); }
+ | '{' .pushlevel maybe_label_decls error '}'
+ { expand_end_bindings (getdecls (), kept_level_p(), 1);
+ $$ = poplevel (kept_level_p (), 0, 0);
+ pop_momentary (); }
+ ;
+
+simple_if:
+ IF
+ { cond_stmt_keyword = "if"; }
+ .pushlevel paren_cond_or_null
+ { emit_line_note (input_filename, lineno);
+ expand_start_cond ($4, 0); }
+ implicitly_scoped_stmt
+ ;
+
+implicitly_scoped_stmt:
+ compstmt
+ { finish_stmt (); }
+ | .pushlevel simple_stmt
+ { expand_end_bindings (getdecls (), kept_level_p (), 1);
+ $$ = poplevel (kept_level_p (), 1, 0);
+ pop_momentary (); }
+ ;
+
+stmt:
+ compstmt
+ { finish_stmt (); }
+ | simple_stmt
+ ;
+
+simple_stmt:
+ decl
+ { finish_stmt (); }
+ | expr ';'
+ {
+ tree expr = $1;
+ 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 (); }
+ | simple_if ELSE
+ { expand_start_else (); }
+ implicitly_scoped_stmt
+ { expand_end_cond ();
+ expand_end_bindings (getdecls (), kept_level_p (), 1);
+ poplevel (kept_level_p (), 1, 0);
+ pop_momentary ();
+ finish_stmt (); }
+ | simple_if %prec IF
+ { expand_end_cond ();
+ expand_end_bindings (getdecls (), kept_level_p (), 1);
+ poplevel (kept_level_p (), 1, 0);
+ pop_momentary ();
+ finish_stmt (); }
+ | WHILE
+ { emit_nop ();
+ emit_line_note (input_filename, lineno);
+ expand_start_loop (1);
+ cond_stmt_keyword = "while"; }
+ .pushlevel paren_cond_or_null
+ { expand_exit_loop_if_false (0, $4); }
+ already_scoped_stmt
+ { expand_end_bindings (getdecls (), kept_level_p (), 1);
+ poplevel (kept_level_p (), 1, 0);
+ pop_momentary ();
+ expand_end_loop ();
+ finish_stmt (); }
+ | DO
+ { emit_nop ();
+ emit_line_note (input_filename, lineno);
+ expand_start_loop_continue_elsewhere (1); }
+ implicitly_scoped_stmt WHILE
+ { expand_loop_continue_here ();
+ cond_stmt_keyword = "do"; }
+ paren_expr_or_null ';'
+ { emit_line_note (input_filename, lineno);
+ expand_exit_loop_if_false (0, $6);
+ expand_end_loop ();
+ clear_momentary ();
+ finish_stmt (); }
+ | forhead.1
+ { emit_nop ();
+ emit_line_note (input_filename, lineno);
+ if ($1) cplus_expand_expr_stmt ($1);
+ expand_start_loop_continue_elsewhere (1); }
+ .pushlevel xcond ';'
+ { emit_line_note (input_filename, lineno);
+ if ($4) expand_exit_loop_if_false (0, $4); }
+ xexpr ')'
+ /* Don't let the tree nodes for $7 be discarded
+ by clear_momentary during the parsing of the next stmt. */
+ { push_momentary (); }
+ already_scoped_stmt
+ { emit_line_note (input_filename, lineno);
+ expand_end_bindings (getdecls (), kept_level_p (), 1);
+ poplevel (kept_level_p (), 1, 0);
+ pop_momentary ();
+ expand_loop_continue_here ();
+ if ($7) cplus_expand_expr_stmt ($7);
+ pop_momentary ();
+ expand_end_loop ();
+ finish_stmt (); }
+ | forhead.2
+ { emit_nop ();
+ emit_line_note (input_filename, lineno);
+ expand_start_loop_continue_elsewhere (1); }
+ .pushlevel xcond ';'
+ { emit_line_note (input_filename, lineno);
+ if ($4) expand_exit_loop_if_false (0, $4); }
+ xexpr ')'
+ /* Don't let the tree nodes for $7 be discarded
+ by clear_momentary during the parsing of the next stmt. */
+ { push_momentary ();
+ $<itype>8 = lineno; }
+ already_scoped_stmt
+ { emit_line_note (input_filename, (int) $<itype>8);
+ expand_end_bindings (getdecls (), kept_level_p (), 1);
+ poplevel (kept_level_p (), 1, 0);
+ pop_momentary ();
+ expand_loop_continue_here ();
+ if ($7) cplus_expand_expr_stmt ($7);
+ pop_momentary ();
+ expand_end_loop ();
+ finish_stmt ();
+ }
+ | SWITCH .pushlevel '(' condition ')'
+ { emit_line_note (input_filename, lineno);
+ c_expand_start_case ($4);
+ /* Don't let the tree nodes for $4 be discarded by
+ clear_momentary during the parsing of the next stmt. */
+ push_momentary (); }
+ implicitly_scoped_stmt
+ { expand_end_case ($4);
+ pop_momentary ();
+ expand_end_bindings (getdecls (), kept_level_p (), 1);
+ poplevel (kept_level_p (), 1, 0);
+ pop_momentary ();
+ finish_stmt (); }
+ | CASE expr_no_commas ':'
+ { register tree value = check_cp_case_value ($2);
+ register tree label
+ = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
+
+ if (value != error_mark_node)
+ {
+ tree duplicate;
+ int success = pushcase (value, convert_and_check,
+ label, &duplicate);
+ if (success == 1)
+ cp_error ("case label `%E' not within a switch statement", $2);
+ else if (success == 2)
+ {
+ cp_error ("duplicate case value `%E'", $2);
+ cp_error_at ("`%E' previously used here", duplicate);
+ }
+ else if (success == 3)
+ warning ("case value out of range");
+ else if (success == 5)
+ cp_error ("case label `%E' within scope of cleanup or variable array", $2);
+ }
+ define_case_label (label);
+ }
+ stmt
+ | CASE expr_no_commas ELLIPSIS expr_no_commas ':'
+ { register tree value1 = check_cp_case_value ($2);
+ register tree value2 = check_cp_case_value ($4);
+ register tree label
+ = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
+
+ if (flag_ansi)
+ pedwarn ("ANSI C++ forbids range expressions in switch statement");
+ if (value1 != error_mark_node
+ && value2 != error_mark_node)
+ {
+ tree duplicate;
+ int success = pushcase_range (value1, value2,
+ convert_and_check, label,
+ &duplicate);
+ if (success == 1)
+ error ("case label not within a switch statement");
+ else if (success == 2)
+ {
+ error ("duplicate (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);
+ }
+ stmt
+ | DEFAULT ':'
+ {
+ tree duplicate;
+ register tree label
+ = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
+ int success = pushcase (NULL_TREE, 0, 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);
+ }
+ stmt
+ | BREAK ';'
+ { emit_line_note (input_filename, lineno);
+ if ( ! expand_exit_something ())
+ error ("break statement not within loop or switch"); }
+ | CONTINUE ';'
+ { emit_line_note (input_filename, lineno);
+ if (! expand_continue_loop (0))
+ error ("continue statement not within a loop"); }
+ | RETURN ';'
+ { emit_line_note (input_filename, lineno);
+ c_expand_return (NULL_TREE); }
+ | RETURN expr ';'
+ { emit_line_note (input_filename, lineno);
+ c_expand_return ($2);
+ finish_stmt ();
+ }
+ | asm_keyword maybe_type_qual '(' string ')' ';'
+ { if (TREE_CHAIN ($4)) $4 = combine_strings ($4);
+ emit_line_note (input_filename, lineno);
+ expand_asm ($4);
+ finish_stmt ();
+ }
+ /* This is the case with just output operands. */
+ | asm_keyword maybe_type_qual '(' string ':' asm_operands ')' ';'
+ { if (TREE_CHAIN ($4)) $4 = combine_strings ($4);
+ emit_line_note (input_filename, lineno);
+ c_expand_asm_operands ($4, $6, NULL_TREE, NULL_TREE,
+ $2 == ridpointers[(int)RID_VOLATILE],
+ input_filename, lineno);
+ finish_stmt ();
+ }
+ /* This is the case with input operands as well. */
+ | asm_keyword maybe_type_qual '(' string ':' asm_operands ':' asm_operands ')' ';'
+ { if (TREE_CHAIN ($4)) $4 = combine_strings ($4);
+ emit_line_note (input_filename, lineno);
+ c_expand_asm_operands ($4, $6, $8, NULL_TREE,
+ $2 == ridpointers[(int)RID_VOLATILE],
+ input_filename, lineno);
+ finish_stmt ();
+ }
+ /* This is the case with clobbered registers as well. */
+ | asm_keyword maybe_type_qual '(' string ':' asm_operands ':'
+ asm_operands ':' asm_clobbers ')' ';'
+ { if (TREE_CHAIN ($4)) $4 = combine_strings ($4);
+ emit_line_note (input_filename, lineno);
+ c_expand_asm_operands ($4, $6, $8, $10,
+ $2 == ridpointers[(int)RID_VOLATILE],
+ input_filename, lineno);
+ finish_stmt ();
+ }
+ | GOTO '*' expr ';'
+ { emit_line_note (input_filename, lineno);
+ expand_computed_goto ($3); }
+ | GOTO identifier ';'
+ { tree decl;
+ emit_line_note (input_filename, lineno);
+ decl = lookup_label ($2);
+ TREE_USED (decl) = 1;
+ expand_goto (decl); }
+ | label_colon stmt
+ { finish_stmt (); }
+ | label_colon '}'
+ { error ("label must be followed by statement");
+ yyungetc ('}', 0);
+ finish_stmt (); }
+ | ';'
+ { finish_stmt (); }
+ | try_block
+ ;
+
+try_block:
+ TRY '{' .pushlevel
+ { expand_start_try_stmts (); }
+ ansi_try_stmts
+ { expand_end_try_stmts ();
+ expand_start_all_catch (); }
+ handler_seq
+ { expand_end_all_catch (); }
+ ;
+
+ansi_try_stmts:
+ '}'
+ /* An empty try block is degenerate, but it's better to
+ do extra work here than to do all the special-case work
+ everywhere else. */
+ { expand_end_bindings (0,1,1);
+ poplevel (2,0,0);
+ }
+ | stmts '}'
+ { expand_end_bindings (0,1,1);
+ poplevel (2,0,0);
+ }
+ | error '}'
+ { expand_end_bindings (0,1,1);
+ poplevel (2,0,0);
+ }
+ ;
+
+handler_seq:
+ /* empty */
+ | handler_seq CATCH
+ { emit_line_note (input_filename, lineno); }
+ handler_args compstmt
+ { expand_end_catch_block (); }
+ ;
+
+type_specifier_seq:
+ typed_typespecs %prec EMPTY
+ | nonempty_type_quals %prec EMPTY
+ ;
+
+handler_args:
+ '(' ELLIPSIS ')'
+ { expand_start_catch_block (NULL_TREE, NULL_TREE); }
+ /* This doesn't allow reference parameters, the below does.
+ | '(' type_specifier_seq absdcl ')'
+ { expand_start_catch_block ($2, $3); }
+ | '(' type_specifier_seq ')'
+ { expand_start_catch_block ($2, NULL_TREE); }
+ | '(' type_specifier_seq notype_declarator ')'
+ { expand_start_catch_block ($2, $3); }
+ | '(' typed_typespecs after_type_declarator ')'
+ { expand_start_catch_block ($2, $3); }
+ */
+ | '(' parm ')'
+ { expand_start_catch_block (TREE_PURPOSE ($2),
+ TREE_VALUE ($2)); }
+ ;
+
+label_colon:
+ IDENTIFIER ':'
+ { tree label;
+ do_label:
+ label = define_label (input_filename, lineno, $1);
+ if (label)
+ expand_label (label);
+ }
+ | PTYPENAME ':'
+ { goto do_label; }
+ | TYPENAME ':'
+ { goto do_label; }
+ ;
+
+forhead.1:
+ FOR '(' ';'
+ { $$ = NULL_TREE; }
+ | FOR '(' expr ';'
+ { $$ = $3; }
+ | FOR '(' '{' '}'
+ { $$ = NULL_TREE; }
+ ;
+
+forhead.2:
+ FOR '(' decl
+ { $$ = 0; }
+ | FOR '(' error ';'
+ { $$ = 0; }
+ | FOR '(' '{' .pushlevel stmts '}'
+ { $$ = 1; }
+ | FOR '(' '{' .pushlevel error '}'
+ { $$ = -1; }
+ ;
+
+/* Either a type-qualifier or nothing. First thing in an `asm' statement. */
+
+maybe_type_qual:
+ /* empty */
+ { emit_line_note (input_filename, lineno);
+ $$ = NULL_TREE; }
+ | TYPE_QUAL
+ { emit_line_note (input_filename, lineno); }
+ ;
+
+xexpr:
+ /* empty */
+ { $$ = NULL_TREE; }
+ | expr
+ | error
+ { $$ = NULL_TREE; }
+ ;
+
+/* These are the operands other than the first string and colon
+ in asm ("addextend %2,%1": "=dm" (x), "0" (y), "g" (*x)) */
+asm_operands: /* empty */
+ { $$ = NULL_TREE; }
+ | nonnull_asm_operands
+ ;
+
+nonnull_asm_operands:
+ asm_operand
+ | nonnull_asm_operands ',' asm_operand
+ { $$ = chainon ($$, $3); }
+ ;
+
+asm_operand:
+ STRING '(' expr ')'
+ { $$ = build_tree_list ($$, $3); }
+ ;
+
+asm_clobbers:
+ STRING
+ { $$ = tree_cons (NULL_TREE, $$, NULL_TREE); }
+ | asm_clobbers ',' STRING
+ { $$ = tree_cons (NULL_TREE, $3, $$); }
+ ;
+
+/* This is what appears inside the parens in a function declarator.
+ Its value is represented in the format that grokdeclarator expects.
+
+ In C++, declaring a function with no parameters
+ means that that function takes *no* parameters. */
+
+parmlist: /* empty */
+ {
+ if (strict_prototype)
+ $$ = void_list_node;
+ else
+ $$ = NULL_TREE;
+ }
+ | complex_parmlist
+ | type_id
+ { $$ = tree_cons (NULL_TREE, $$, void_list_node);
+ TREE_PARMLIST ($$) = 1; }
+ ;
+
+/* This nonterminal does not include the common sequence '(' type_id ')',
+ as it is ambiguous and must be disambiguated elsewhere. */
+complex_parmlist:
+ parms
+ {
+ $$ = chainon ($$, void_list_node);
+ TREE_PARMLIST ($$) = 1;
+ }
+ | parms_comma ELLIPSIS
+ {
+ TREE_PARMLIST ($$) = 1;
+ }
+ /* C++ allows an ellipsis without a separating ',' */
+ | parms ELLIPSIS
+ {
+ TREE_PARMLIST ($$) = 1;
+ }
+ | type_id ELLIPSIS
+ {
+ $$ = build_tree_list (NULL_TREE, $$);
+ TREE_PARMLIST ($$) = 1;
+ }
+ | ELLIPSIS
+ {
+ /* ARM $8.2.5 has this as a boxed-off comment. */
+ if (pedantic)
+ warning ("use of `...' without a first argument is non-portable");
+ $$ = NULL_TREE;
+ }
+ | TYPENAME_ELLIPSIS
+ {
+ TREE_PARMLIST ($$) = 1;
+ }
+ | parms TYPENAME_ELLIPSIS
+ {
+ TREE_PARMLIST ($$) = 1;
+ }
+ | type_id TYPENAME_ELLIPSIS
+ {
+ $$ = build_tree_list (NULL_TREE, $$);
+ TREE_PARMLIST ($$) = 1;
+ }
+ | parms ':'
+ {
+ /* This helps us recover from really nasty
+ parse errors, for example, a missing right
+ parenthesis. */
+ yyerror ("possibly missing ')'");
+ $$ = chainon ($$, void_list_node);
+ TREE_PARMLIST ($$) = 1;
+ yyungetc (':', 0);
+ yychar = ')';
+ }
+ | type_id ':'
+ {
+ /* This helps us recover from really nasty
+ parse errors, for example, a missing right
+ parenthesis. */
+ yyerror ("possibly missing ')'");
+ $$ = tree_cons (NULL_TREE, $$, void_list_node);
+ TREE_PARMLIST ($$) = 1;
+ yyungetc (':', 0);
+ yychar = ')';
+ }
+ ;
+
+/* A nonempty list of parameter declarations or type names. */
+parms:
+ named_parm
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ | parm '=' init
+ { $$ = build_tree_list ($3, $$); }
+ | parms_comma full_parm
+ { $$ = chainon ($$, $2); }
+ | parms_comma bad_parm
+ { $$ = chainon ($$, build_tree_list (NULL_TREE, $2)); }
+ | parms_comma bad_parm '=' init
+ { $$ = chainon ($$, build_tree_list ($4, $2)); }
+ ;
+
+parms_comma:
+ parms ','
+ | type_id ','
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ ;
+
+/* A single parameter declaration or parameter type name,
+ as found in a parmlist. The first four cases make up for 10%
+ of the time spent parsing C++. We cannot use them because
+ of `int id[]' which won't get parsed properly. */
+named_parm:
+/*
+ typed_declspecs dont_see_typename '*' IDENTIFIER
+ { $$ = build_tree_list ($$, build_parse_node (INDIRECT_REF, $4));
+ see_typename (); }
+ | typed_declspecs dont_see_typename '&' IDENTIFIER
+ { $$ = build_tree_list ($$, build_parse_node (ADDR_EXPR, $4));
+ see_typename (); }
+ | TYPENAME IDENTIFIER
+ { $$ = build_tree_list (get_decl_list ($$), $2); }
+ | TYPESPEC IDENTIFIER
+ { $$ = build_tree_list (get_decl_list ($$), $2); }
+ | */
+ /* Here we expand typed_declspecs inline to avoid mis-parsing of
+ TYPESPEC IDENTIFIER. */
+ typed_declspecs1 declarator
+ { $$ = build_tree_list ($$, $2); }
+ | typed_typespecs declarator
+ { $$ = build_tree_list ($$, $2); }
+ | typespec declarator
+ { $$ = build_tree_list (get_decl_list ($$), $2); }
+ | typed_declspecs1 absdcl
+ { $$ = build_tree_list ($$, $2); }
+ | typed_declspecs1 %prec EMPTY
+ { $$ = build_tree_list ($$, NULL_TREE); }
+ | declmods notype_declarator
+ { $$ = build_tree_list ($$, $2); }
+ ;
+
+full_parm:
+ parm
+ { $$ = build_tree_list (NULL_TREE, $$); }
+ | parm '=' init
+ { $$ = build_tree_list ($3, $$); }
+ ;
+
+parm:
+ named_parm
+ | type_id
+ ;
+
+see_typename: %prec EMPTY
+ { see_typename (); }
+ ;
+
+/*
+dont_see_typename: %prec EMPTY
+ { dont_see_typename (); }
+ ;
+
+try_for_typename:
+ {
+ if ($<ttype>-1 == error_mark_node)
+ $$ = 0;
+ else
+ {
+ $$ = 1;
+ pushclass ($<ttype>-1, 1);
+ }
+ }
+ ;
+*/
+
+bad_parm:
+ /* empty */ %prec EMPTY
+ {
+ warning ("type specifier omitted for parameter");
+ $$ = build_tree_list (TREE_PURPOSE (TREE_VALUE ($<ttype>-1)), NULL_TREE);
+ }
+ | notype_declarator
+ {
+ warning ("type specifier omitted for parameter");
+ $$ = build_tree_list (TREE_PURPOSE (TREE_VALUE ($<ttype>-1)), $$);
+ }
+ ;
+
+maybe_raises:
+ %prec EMPTY /* empty */
+ { $$ = NULL_TREE; }
+ | THROW '(' ansi_raise_identifiers ')' %prec EMPTY
+ { $$ = $3; }
+ ;
+
+ansi_raise_identifier:
+ type_id
+ { $$ = build_decl_list (NULL_TREE, $$); }
+ ;
+
+ansi_raise_identifiers:
+ ansi_raise_identifier
+ | ansi_raise_identifiers ',' ansi_raise_identifier
+ {
+ TREE_CHAIN ($3) = $$;
+ $$ = $3;
+ }
+ ;
+
+conversion_declarator:
+ /* empty */ %prec EMPTY
+ { $$ = NULL_TREE; }
+ | '*' type_quals conversion_declarator
+ { $$ = make_pointer_declarator ($2, $3); }
+ | '&' type_quals conversion_declarator
+ { $$ = make_reference_declarator ($2, $3); }
+ | ptr_to_mem type_quals conversion_declarator
+ { tree arg = make_pointer_declarator ($2, $3);
+ $$ = build_parse_node (SCOPE_REF, $1, arg);
+ }
+ ;
+
+operator: OPERATOR
+ { got_scope = NULL_TREE; }
+ ;
+
+operator_name:
+ operator '*'
+ { $$ = ansi_opname[MULT_EXPR]; }
+ | operator '/'
+ { $$ = ansi_opname[TRUNC_DIV_EXPR]; }
+ | operator '%'
+ { $$ = ansi_opname[TRUNC_MOD_EXPR]; }
+ | operator '+'
+ { $$ = ansi_opname[PLUS_EXPR]; }
+ | operator '-'
+ { $$ = ansi_opname[MINUS_EXPR]; }
+ | operator '&'
+ { $$ = ansi_opname[BIT_AND_EXPR]; }
+ | operator '|'
+ { $$ = ansi_opname[BIT_IOR_EXPR]; }
+ | operator '^'
+ { $$ = ansi_opname[BIT_XOR_EXPR]; }
+ | operator '~'
+ { $$ = ansi_opname[BIT_NOT_EXPR]; }
+ | operator ','
+ { $$ = ansi_opname[COMPOUND_EXPR]; }
+ | operator ARITHCOMPARE
+ { $$ = ansi_opname[$2]; }
+ | operator '<'
+ { $$ = ansi_opname[LT_EXPR]; }
+ | operator '>'
+ { $$ = ansi_opname[GT_EXPR]; }
+ | operator EQCOMPARE
+ { $$ = ansi_opname[$2]; }
+ | operator ASSIGN
+ { $$ = ansi_assopname[$2]; }
+ | operator '='
+ { $$ = ansi_opname [MODIFY_EXPR]; }
+ | operator LSHIFT
+ { $$ = ansi_opname[$2]; }
+ | operator RSHIFT
+ { $$ = ansi_opname[$2]; }
+ | operator PLUSPLUS
+ { $$ = ansi_opname[POSTINCREMENT_EXPR]; }
+ | operator MINUSMINUS
+ { $$ = ansi_opname[PREDECREMENT_EXPR]; }
+ | operator ANDAND
+ { $$ = ansi_opname[TRUTH_ANDIF_EXPR]; }
+ | operator OROR
+ { $$ = ansi_opname[TRUTH_ORIF_EXPR]; }
+ | operator '!'
+ { $$ = ansi_opname[TRUTH_NOT_EXPR]; }
+ | operator '?' ':'
+ { $$ = ansi_opname[COND_EXPR]; }
+ | operator MIN_MAX
+ { $$ = ansi_opname[$2]; }
+ | operator POINTSAT %prec EMPTY
+ { $$ = ansi_opname[COMPONENT_REF]; }
+ | operator POINTSAT_STAR %prec EMPTY
+ { $$ = ansi_opname[MEMBER_REF]; }
+ | operator LEFT_RIGHT
+ { $$ = ansi_opname[CALL_EXPR]; }
+ | operator '[' ']'
+ { $$ = ansi_opname[ARRAY_REF]; }
+ | operator NEW %prec EMPTY
+ { $$ = ansi_opname[NEW_EXPR]; }
+ | operator DELETE %prec EMPTY
+ { $$ = ansi_opname[DELETE_EXPR]; }
+ | operator NEW '[' ']'
+ { $$ = ansi_opname[VEC_NEW_EXPR]; }
+ | operator DELETE '[' ']'
+ { $$ = ansi_opname[VEC_DELETE_EXPR]; }
+ /* Names here should be looked up in class scope ALSO. */
+ | operator type_specifier_seq conversion_declarator
+ { $$ = grokoptypename ($2, $3); }
+ | operator error
+ { $$ = ansi_opname[ERROR_MARK]; }
+ ;
+
+%%
+
+#ifdef SPEW_DEBUG
+const char *
+debug_yytranslate (value)
+ int value;
+{
+ return yytname[YYTRANSLATE (value)];
+}
+
+#endif