home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / gcc-2.5.8-src.lha / src / amiga / gcc-2.5.8 / objc-parse.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-22  |  177.8 KB  |  4,702 lines

  1.  
  2. /*  A Bison parser, made from objc-parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    STRUCT    268
  18. #define    UNION    269
  19. #define    IF    270
  20. #define    ELSE    271
  21. #define    WHILE    272
  22. #define    DO    273
  23. #define    FOR    274
  24. #define    SWITCH    275
  25. #define    CASE    276
  26. #define    DEFAULT    277
  27. #define    BREAK    278
  28. #define    CONTINUE    279
  29. #define    RETURN    280
  30. #define    GOTO    281
  31. #define    ASM_KEYWORD    282
  32. #define    TYPEOF    283
  33. #define    ALIGNOF    284
  34. #define    ALIGN    285
  35. #define    ATTRIBUTE    286
  36. #define    EXTENSION    287
  37. #define    LABEL    288
  38. #define    REALPART    289
  39. #define    IMAGPART    290
  40. #define    ASSIGN    291
  41. #define    OROR    292
  42. #define    ANDAND    293
  43. #define    EQCOMPARE    294
  44. #define    ARITHCOMPARE    295
  45. #define    LSHIFT    296
  46. #define    RSHIFT    297
  47. #define    UNARY    298
  48. #define    PLUSPLUS    299
  49. #define    MINUSMINUS    300
  50. #define    HYPERUNARY    301
  51. #define    POINTSAT    302
  52. #define    INTERFACE    303
  53. #define    IMPLEMENTATION    304
  54. #define    END    305
  55. #define    SELECTOR    306
  56. #define    DEFS    307
  57. #define    ENCODE    308
  58. #define    CLASSNAME    309
  59. #define    PUBLIC    310
  60. #define    PRIVATE    311
  61. #define    PROTECTED    312
  62. #define    PROTOCOL    313
  63. #define    OBJECTNAME    314
  64. #define    CLASS    315
  65. #define    ALIAS    316
  66. #define    OBJC_STRING    317
  67.  
  68. #line 31 "objc-parse.y"
  69.  
  70. #include <stdio.h>
  71. #include <errno.h>
  72. #include <setjmp.h>
  73.  
  74. #include "config.h"
  75. #include "tree.h"
  76. #include "input.h"
  77. #include "c-lex.h"
  78. #include "c-tree.h"
  79. #include "flags.h"
  80.  
  81. #ifdef MULTIBYTE_CHARS
  82. #include <stdlib.h>
  83. #include <locale.h>
  84. #endif
  85.  
  86. #include "objc-act.h"
  87.  
  88. /* Since parsers are distinct for each language, put the language string
  89.    definition here.  */
  90. char *language_string = "GNU Obj-C";
  91.  
  92. #ifndef errno
  93. extern int errno;
  94. #endif
  95.  
  96. void yyerror ();
  97.  
  98. /* Like YYERROR but do call yyerror.  */
  99. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  100.  
  101. /* Cause the `yydebug' variable to be defined.  */
  102. #define YYDEBUG 1
  103.  
  104. #line 69 "objc-parse.y"
  105. typedef union {long itype; tree ttype; enum tree_code code;
  106.     char *filename; int lineno; } YYSTYPE;
  107. #line 190 "objc-parse.y"
  108.  
  109. /* Number of statements (loosely speaking) seen so far.  */
  110. static int stmt_count;
  111.  
  112. /* Input file and line number of the end of the body of last simple_if;
  113.    used by the stmt-rule immediately after simple_if returns.  */
  114. static char *if_stmt_file;
  115. static int if_stmt_line;
  116.  
  117. /* List of types and structure classes of the current declaration.  */
  118. static tree current_declspecs;
  119.  
  120. /* Stack of saved values of current_declspecs.  */
  121. static tree declspec_stack;
  122.  
  123. /* 1 if we explained undeclared var errors.  */
  124. static int undeclared_variable_notice;
  125.  
  126. /* Objective-C specific information */
  127.  
  128. tree objc_interface_context;
  129. tree objc_implementation_context;
  130. tree objc_method_context;
  131. tree objc_ivar_chain;
  132. tree objc_ivar_context;
  133. enum tree_code objc_inherit_code;
  134. int objc_receiver_context;
  135. int objc_public_flag;
  136.  
  137.  
  138. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  139.  
  140. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  141. extern void yyprint ();
  142.  
  143. #ifndef YYLTYPE
  144. typedef
  145.   struct yyltype
  146.     {
  147.       int timestamp;
  148.       int first_line;
  149.       int first_column;
  150.       int last_line;
  151.       int last_column;
  152.       char *text;
  153.    }
  154.   yyltype;
  155.  
  156. #define YYLTYPE yyltype
  157. #endif
  158.  
  159. #include <stdio.h>
  160.  
  161. #ifndef __cplusplus
  162. #ifndef __STDC__
  163. #define const
  164. #endif
  165. #endif
  166.  
  167.  
  168.  
  169. #define    YYFINAL        875
  170. #define    YYFLAG        -32768
  171. #define    YYNTBASE    85
  172.  
  173. #define YYTRANSLATE(x) ((unsigned)(x) <= 317 ? yytranslate[x] : 288)
  174.  
  175. static const char yytranslate[] = {     0,
  176.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  177.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  178.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  179.      2,     2,    81,     2,     2,     2,    53,    44,     2,    60,
  180.     77,    51,    49,    82,    50,    59,    52,     2,     2,     2,
  181.      2,     2,     2,     2,     2,     2,     2,    39,    78,     2,
  182.     37,     2,    38,     2,     2,     2,     2,     2,     2,     2,
  183.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  184.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  185.     61,     2,    84,    43,     2,     2,     2,     2,     2,     2,
  186.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  187.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  188.      2,     2,    83,    42,    79,    80,     2,     2,     2,     2,
  189.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  190.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  191.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  192.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  193.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  194.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  195.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  196.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  197.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  198.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  199.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  200.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  201.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  202.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  203.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  204.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  205.     36,    40,    41,    45,    46,    47,    48,    54,    55,    56,
  206.     57,    58,    62,    63,    64,    65,    66,    67,    68,    69,
  207.     70,    71,    72,    73,    74,    75,    76
  208. };
  209.  
  210. #if YYDEBUG != 0
  211. static const short yyprhs[] = {     0,
  212.      0,     1,     3,     4,     7,     8,    12,    14,    16,    18,
  213.     24,    28,    33,    38,    41,    44,    47,    50,    52,    53,
  214.     54,    62,    67,    68,    69,    77,    82,    83,    84,    91,
  215.     95,    97,    99,   101,   103,   105,   107,   109,   111,   113,
  216.    115,   117,   119,   120,   122,   124,   128,   130,   133,   134,
  217.    138,   141,   144,   147,   152,   155,   160,   163,   166,   168,
  218.    173,   174,   182,   184,   188,   192,   196,   200,   204,   208,
  219.    212,   216,   220,   224,   228,   232,   236,   240,   246,   250,
  220.    254,   256,   258,   260,   264,   268,   269,   274,   279,   284,
  221.    288,   292,   295,   298,   300,   302,   304,   306,   308,   310,
  222.    313,   315,   318,   319,   321,   324,   328,   330,   332,   335,
  223.    338,   343,   348,   351,   354,   358,   360,   362,   365,   368,
  224.    369,   374,   379,   383,   387,   390,   393,   396,   400,   401,
  225.    404,   407,   409,   411,   414,   417,   420,   424,   425,   428,
  226.    430,   432,   434,   437,   440,   445,   450,   452,   454,   456,
  227.    458,   462,   464,   468,   469,   474,   475,   482,   486,   487,
  228.    494,   498,   499,   506,   508,   512,   514,   516,   521,   526,
  229.    535,   537,   538,   543,   545,   546,   549,   551,   555,   557,
  230.    558,   563,   565,   566,   571,   572,   578,   579,   583,   584,
  231.    588,   590,   592,   596,   600,   605,   609,   613,   615,   617,
  232.    621,   626,   630,   634,   636,   640,   644,   648,   653,   657,
  233.    659,   660,   667,   672,   675,   676,   683,   688,   691,   692,
  234.    700,   701,   708,   711,   712,   714,   715,   717,   719,   722,
  235.    723,   727,   730,   735,   739,   741,   745,   747,   749,   751,
  236.    755,   760,   767,   773,   775,   779,   781,   785,   788,   791,
  237.    792,   794,   796,   799,   800,   803,   807,   811,   814,   818,
  238.    823,   827,   830,   834,   837,   839,   842,   845,   846,   848,
  239.    851,   852,   853,   855,   857,   860,   864,   866,   869,   872,
  240.    879,   885,   891,   894,   897,   902,   903,   908,   909,   910,
  241.    914,   919,   923,   925,   927,   929,   931,   934,   935,   940,
  242.    942,   946,   947,   948,   956,   962,   965,   966,   967,   968,
  243.    981,   982,   989,   992,   995,   998,  1002,  1009,  1018,  1029,
  244.   1042,  1046,  1051,  1053,  1055,  1056,  1063,  1067,  1073,  1076,
  245.   1079,  1080,  1082,  1083,  1085,  1086,  1088,  1090,  1094,  1099,
  246.   1101,  1105,  1106,  1109,  1112,  1113,  1118,  1121,  1122,  1124,
  247.   1126,  1130,  1132,  1136,  1139,  1142,  1145,  1148,  1151,  1152,
  248.   1155,  1157,  1160,  1162,  1166,  1168,  1172,  1174,  1176,  1178,
  249.   1180,  1182,  1184,  1186,  1190,  1194,  1199,  1200,  1201,  1212,
  250.   1213,  1220,  1221,  1222,  1235,  1236,  1245,  1246,  1253,  1256,
  251.   1257,  1266,  1271,  1272,  1282,  1288,  1289,  1296,  1297,  1301,
  252.   1305,  1307,  1309,  1311,  1313,  1314,  1318,  1321,  1325,  1329,
  253.   1331,  1332,  1334,  1338,  1340,  1344,  1347,  1348,  1349,  1350,
  254.   1358,  1359,  1360,  1361,  1369,  1370,  1371,  1374,  1376,  1378,
  255.   1381,  1382,  1386,  1388,  1390,  1391,  1392,  1398,  1399,  1400,
  256.   1406,  1411,  1413,  1419,  1422,  1423,  1426,  1427,  1429,  1431,
  257.   1433,  1436,  1439,  1444,  1447,  1450,  1452,  1456,  1458,  1460,
  258.   1462,  1463,  1466,  1467,  1471,  1473,  1475,  1478,  1480,  1482,
  259.   1484,  1486,  1488,  1490,  1492,  1494,  1496,  1498,  1500,  1502,
  260.   1504,  1506,  1508,  1510,  1512,  1514,  1516,  1518,  1520,  1522,
  261.   1524,  1526,  1528,  1535,  1539,  1545,  1548,  1550,  1552,  1554,
  262.   1557,  1559,  1563,  1566,  1568,  1570,  1571,  1572,  1579,  1581,
  263.   1583,  1585,  1588,  1591,  1593,  1598,  1603
  264. };
  265.  
  266. static const short yyrhs[] = {    -1,
  267.     86,     0,     0,    87,    89,     0,     0,    86,    88,    89,
  268.      0,    91,     0,    90,     0,   220,     0,    27,    60,   100,
  269.     77,    78,     0,   118,   128,    78,     0,   122,   118,   128,
  270.     78,     0,   120,   118,   127,    78,     0,   122,    78,     0,
  271.    120,    78,     0,     1,    78,     0,     1,    79,     0,    78,
  272.      0,     0,     0,   120,   118,   149,    92,   112,    93,   179,
  273.      0,   120,   118,   149,     1,     0,     0,     0,   122,   118,
  274.    152,    94,   112,    95,   179,     0,   122,   118,   152,     1,
  275.      0,     0,     0,   118,   152,    96,   112,    97,   179,     0,
  276.    118,   152,     1,     0,     3,     0,     4,     0,    73,     0,
  277.     68,     0,    44,     0,    50,     0,    49,     0,    55,     0,
  278.     56,     0,    80,     0,    81,     0,   102,     0,     0,   102,
  279.      0,   107,     0,   102,    82,   107,     0,   108,     0,    51,
  280.    105,     0,     0,    32,   104,   105,     0,    99,   105,     0,
  281.     41,    98,     0,    11,   103,     0,    11,    60,   167,    77,
  282.      0,    29,   103,     0,    29,    60,   167,    77,     0,    34,
  283.    105,     0,    35,   105,     0,   103,     0,    60,   167,    77,
  284.    105,     0,     0,    60,   167,    77,    83,   106,   139,    79,
  285.      0,   105,     0,   107,    49,   107,     0,   107,    50,   107,
  286.      0,   107,    51,   107,     0,   107,    52,   107,     0,   107,
  287.     53,   107,     0,   107,    47,   107,     0,   107,    48,   107,
  288.      0,   107,    46,   107,     0,   107,    45,   107,     0,   107,
  289.     44,   107,     0,   107,    42,   107,     0,   107,    43,   107,
  290.      0,   107,    41,   107,     0,   107,    40,   107,     0,   107,
  291.     38,   203,    39,   107,     0,   107,    37,   107,     0,   107,
  292.     36,   107,     0,     3,     0,     8,     0,   110,     0,    60,
  293.    100,    77,     0,    60,     1,    77,     0,     0,    60,   109,
  294.    180,    77,     0,   108,    60,   101,    77,     0,   108,    61,
  295.    100,    84,     0,   108,    59,    98,     0,   108,    58,    98,
  296.      0,   108,    55,     0,   108,    56,     0,   279,     0,   285,
  297.      0,   286,     0,   287,     0,   111,     0,     9,     0,   110,
  298.      9,     0,    76,     0,   111,    76,     0,     0,   114,     0,
  299.    114,    10,     0,   185,   186,   115,     0,   113,     0,   174,
  300.      0,   114,   113,     0,   113,   174,     0,   120,   118,   127,
  301.     78,     0,   122,   118,   128,    78,     0,   120,    78,     0,
  302.    122,    78,     0,   185,   186,   119,     0,   116,     0,   174,
  303.      0,   117,   116,     0,   116,   174,     0,     0,   120,   118,
  304.    127,    78,     0,   122,   118,   128,    78,     0,   120,   118,
  305.    145,     0,   122,   118,   147,     0,   120,    78,     0,   122,
  306.     78,     0,   125,   121,     0,   122,   125,   121,     0,     0,
  307.    121,   126,     0,   121,     5,     0,     7,     0,     5,     0,
  308.    122,     7,     0,   122,     5,     0,   125,   124,     0,   169,
  309.    125,   124,     0,     0,   124,   126,     0,     6,     0,   153,
  310.      0,     4,     0,    68,   236,     0,    73,   236,     0,    28,
  311.     60,   100,    77,     0,    28,    60,   167,    77,     0,     6,
  312.      0,     7,     0,   153,     0,   130,     0,   127,    82,   130,
  313.      0,   132,     0,   128,    82,   130,     0,     0,    27,    60,
  314.    110,    77,     0,     0,   149,   129,   134,    37,   131,   137,
  315.      0,   149,   129,   134,     0,     0,   152,   129,   134,    37,
  316.    133,   137,     0,   152,   129,   134,     0,     0,    31,    60,
  317.     60,   135,    77,    77,     0,   136,     0,   135,    82,   136,
  318.      0,     3,     0,     7,     0,     3,    60,     3,    77,     0,
  319.      3,    60,     8,    77,     0,     3,    60,     3,    82,     8,
  320.     82,     8,    77,     0,   107,     0,     0,    83,   138,   139,
  321.     79,     0,     1,     0,     0,   140,   158,     0,   141,     0,
  322.    140,    82,   141,     0,   107,     0,     0,    83,   142,   139,
  323.     79,     0,     1,     0,     0,    98,    39,   143,   141,     0,
  324.      0,    59,    98,    37,   144,   141,     0,     0,   149,   146,
  325.    180,     0,     0,   152,   148,   180,     0,   150,     0,   152,
  326.      0,    60,   150,    77,     0,   150,    60,   215,     0,   150,
  327.     61,   100,    84,     0,   150,    61,    84,     0,    51,   170,
  328.    150,     0,     4,     0,    73,     0,   151,    60,   215,     0,
  329.    151,    61,   100,    84,     0,   151,    61,    84,     0,    51,
  330.    170,   151,     0,     4,     0,   152,    60,   215,     0,    60,
  331.    152,    77,     0,    51,   170,   152,     0,   152,    61,   100,
  332.     84,     0,   152,    61,    84,     0,     3,     0,     0,    13,
  333.     98,    83,   154,   160,    79,     0,    13,    83,   160,    79,
  334.      0,    13,    98,     0,     0,    14,    98,    83,   155,   160,
  335.     79,     0,    14,    83,   160,    79,     0,    14,    98,     0,
  336.      0,    12,    98,    83,   156,   165,   159,    79,     0,     0,
  337.     12,    83,   157,   165,   159,    79,     0,    12,    98,     0,
  338.      0,    82,     0,     0,    82,     0,   161,     0,   161,   162,
  339.      0,     0,   161,   162,    78,     0,   161,    78,     0,    66,
  340.     60,    68,    77,     0,   123,   118,   163,     0,   123,     0,
  341.    169,   118,   163,     0,   169,     0,     1,     0,   164,     0,
  342.    163,    82,   164,     0,   185,   186,   149,   134,     0,   185,
  343.    186,   149,    39,   107,   134,     0,   185,   186,    39,   107,
  344.    134,     0,   166,     0,   165,    82,   166,     0,    98,     0,
  345.     98,    37,   107,     0,   123,   168,     0,   169,   168,     0,
  346.      0,   171,     0,     7,     0,   169,     7,     0,     0,   170,
  347.      7,     0,    60,   171,    77,     0,    51,   170,   171,     0,
  348.     51,   170,     0,   171,    60,   208,     0,   171,    61,   100,
  349.     84,     0,   171,    61,    84,     0,    60,   208,     0,    61,
  350.    100,    84,     0,    61,    84,     0,   188,     0,   172,   188,
  351.      0,   172,   174,     0,     0,   172,     0,     1,    78,     0,
  352.      0,     0,   177,     0,   178,     0,   177,   178,     0,    33,
  353.    219,    78,     0,   180,     0,     1,   180,     0,    83,    79,
  354.      0,    83,   175,   176,   117,   173,    79,     0,    83,   175,
  355.    176,     1,    79,     0,    83,   175,   176,   172,    79,     0,
  356.    182,   187,     0,   182,     1,     0,    15,    60,   100,    77,
  357.      0,     0,    18,   184,   187,    17,     0,     0,     0,   185,
  358.    186,   190,     0,   185,   186,   201,   187,     0,   185,   186,
  359.    189,     0,   190,     0,   201,     0,   180,     0,   198,     0,
  360.    100,    78,     0,     0,   181,    16,   191,   187,     0,   181,
  361.      0,   181,    16,     1,     0,     0,     0,    17,   192,    60,
  362.    100,    77,   193,   187,     0,   183,    60,   100,    77,    78,
  363.      0,   183,     1,     0,     0,     0,     0,    19,    60,   203,
  364.     78,   194,   203,    78,   195,   203,    77,   196,   187,     0,
  365.      0,    20,    60,   100,    77,   197,   187,     0,    23,    78,
  366.      0,    24,    78,     0,    25,    78,     0,    25,   100,    78,
  367.      0,    27,   202,    60,   100,    77,    78,     0,    27,   202,
  368.     60,   100,    39,   204,    77,    78,     0,    27,   202,    60,
  369.    100,    39,   204,    39,   204,    77,    78,     0,    27,   202,
  370.     60,   100,    39,   204,    39,   204,    39,   207,    77,    78,
  371.      0,    26,    98,    78,     0,    26,    51,   100,    78,     0,
  372.     78,     0,   199,     0,     0,    19,    60,   108,    77,   200,
  373.    187,     0,    21,   107,    39,     0,    21,   107,    10,   107,
  374.     39,     0,    22,    39,     0,    98,    39,     0,     0,     7,
  375.      0,     0,   100,     0,     0,   205,     0,   206,     0,   205,
  376.     82,   206,     0,     9,    60,   100,    77,     0,   110,     0,
  377.    207,    82,   110,     0,     0,   209,   210,     0,   212,    77,
  378.      0,     0,   213,    78,   211,   210,     0,     1,    77,     0,
  379.      0,    10,     0,   213,     0,   213,    82,    10,     0,   214,
  380.      0,   213,    82,   214,     0,   120,   151,     0,   120,   152,
  381.      0,   120,   168,     0,   122,   152,     0,   122,   168,     0,
  382.      0,   216,   217,     0,   210,     0,   218,    77,     0,     3,
  383.      0,   218,    82,     3,     0,    98,     0,   219,    82,    98,
  384.      0,   224,     0,   222,     0,   223,     0,   234,     0,   243,
  385.      0,    64,     0,    98,     0,   221,    82,    98,     0,    74,
  386.    221,    78,     0,    75,    98,    98,    78,     0,     0,     0,
  387.     62,    98,   236,    83,   225,   237,    79,   226,   250,    64,
  388.      0,     0,    62,    98,   236,   227,   250,    64,     0,     0,
  389.      0,    62,    98,    39,    98,   236,    83,   228,   237,    79,
  390.    229,   250,    64,     0,     0,    62,    98,    39,    98,   236,
  391.    230,   250,    64,     0,     0,    63,    98,    83,   231,   237,
  392.     79,     0,    63,    98,     0,     0,    63,    98,    39,    98,
  393.     83,   232,   237,    79,     0,    63,    98,    39,    98,     0,
  394.      0,    62,    98,    60,    98,    77,   236,   233,   250,    64,
  395.      0,    63,    98,    60,    98,    77,     0,     0,    72,    98,
  396.    236,   235,   250,    64,     0,     0,    46,   221,    46,     0,
  397.    237,   238,   239,     0,   239,     0,    70,     0,    71,     0,
  398.     69,     0,     0,   239,   240,    78,     0,   239,    78,     0,
  399.    123,   118,   241,     0,   169,   118,   241,     0,     1,     0,
  400.      0,   242,     0,   241,    82,   242,     0,   149,     0,   149,
  401.     39,   107,     0,    39,   107,     0,     0,     0,     0,    49,
  402.    244,   260,   245,   261,   246,   179,     0,     0,     0,     0,
  403.     50,   247,   260,   248,   261,   249,   179,     0,     0,     0,
  404.    251,   252,     0,   255,     0,    90,     0,   252,   255,     0,
  405.      0,   252,   253,    90,     0,    78,     0,     1,     0,     0,
  406.      0,    49,   256,   260,   257,   254,     0,     0,     0,    50,
  407.    258,   260,   259,   254,     0,    60,   167,    77,   269,     0,
  408.    269,     0,    60,   167,    77,   270,   267,     0,   270,   267,
  409.      0,     0,    78,   262,     0,     0,   263,     0,   264,     0,
  410.    174,     0,   263,   264,     0,   264,   174,     0,   120,   118,
  411.    265,    78,     0,   120,    78,     0,   122,    78,     0,   266,
  412.      0,   265,    82,   266,     0,   151,     0,   152,     0,   168,
  413.      0,     0,    82,    10,     0,     0,    82,   268,   212,     0,
  414.    271,     0,   273,     0,   270,   273,     0,     3,     0,     4,
  415.      0,    73,     0,   272,     0,    12,     0,    13,     0,    14,
  416.      0,    15,     0,    16,     0,    17,     0,    18,     0,    19,
  417.      0,    20,     0,    21,     0,    22,     0,    23,     0,    24,
  418.      0,    25,     0,    26,     0,    27,     0,    11,     0,    28,
  419.      0,    29,     0,     6,     0,     7,     0,   271,    39,    60,
  420.    167,    77,    98,     0,   271,    39,    98,     0,    39,    60,
  421.    167,    77,    98,     0,    39,    98,     0,   271,     0,   275,
  422.      0,   277,     0,   275,   277,     0,   102,     0,   271,    39,
  423.    276,     0,    39,   276,     0,   100,     0,    68,     0,     0,
  424.      0,    61,   280,   278,   281,   274,    84,     0,   271,     0,
  425.    283,     0,   284,     0,   283,   284,     0,   271,    39,     0,
  426.     39,     0,    65,    60,   282,    77,     0,    72,    60,    98,
  427.     77,     0,    67,    60,   167,    77,     0
  428. };
  429.  
  430. #endif
  431.  
  432. #if YYDEBUG != 0
  433. static const short yyrline[] = { 0,
  434.    227,   232,   246,   248,   248,   249,   251,   253,   254,   255,
  435.    265,   271,   273,   275,   277,   279,   280,   281,   286,   292,
  436.    294,   295,   297,   302,   304,   305,   307,   312,   314,   315,
  437.    319,   321,   322,   323,   326,   328,   330,   332,   334,   336,
  438.    338,   342,   346,   349,   352,   355,   359,   361,   364,   367,
  439.    370,   374,   400,   405,   407,   409,   411,   413,   417,   419,
  440.    422,   426,   453,   455,   457,   459,   461,   463,   465,   467,
  441.    469,   471,   473,   475,   477,   479,   481,   483,   485,   488,
  442.    494,   656,   657,   659,   665,   667,   681,   704,   706,   708,
  443.    720,   734,   736,   738,   740,   742,   744,   746,   751,   753,
  444.    759,   761,   765,   767,   768,   778,   783,   785,   786,   787,
  445.    790,   795,   799,   802,   810,   815,   817,   818,   819,   826,
  446.    834,   839,   843,   847,   851,   853,   861,   864,   868,   870,
  447.    872,   883,   887,   889,   892,   905,   908,   912,   914,   922,
  448.    923,   924,   928,   930,   932,   934,   940,   941,   942,   945,
  449.    947,   950,   952,   955,   958,   964,   971,   974,   980,   987,
  450.    990,   997,  1000,  1005,  1007,  1012,  1018,  1019,  1029,  1040,
  451.   1060,  1062,  1067,  1074,  1079,  1083,  1086,  1088,  1093,  1096,
  452.   1098,  1100,  1104,  1107,  1107,  1110,  1112,  1129,  1133,  1150,
  453.   1157,  1159,  1164,  1167,  1172,  1174,  1176,  1178,  1179,  1187,
  454.   1193,  1195,  1197,  1199,  1205,  1211,  1213,  1215,  1217,  1219,
  455.   1222,  1227,  1231,  1234,  1236,  1238,  1240,  1243,  1245,  1248,
  456.   1251,  1254,  1257,  1261,  1263,  1266,  1268,  1272,  1275,  1280,
  457.   1282,  1284,  1288,  1312,  1318,  1323,  1328,  1333,  1337,  1339,
  458.   1343,  1347,  1351,  1361,  1363,  1368,  1371,  1375,  1378,  1382,
  459.   1385,  1388,  1391,  1395,  1398,  1402,  1406,  1408,  1410,  1412,
  460.   1414,  1416,  1418,  1420,  1428,  1430,  1431,  1434,  1436,  1439,
  461.   1442,  1455,  1457,  1462,  1464,  1467,  1481,  1484,  1487,  1489,
  462.   1494,  1499,  1507,  1512,  1515,  1528,  1536,  1540,  1544,  1548,
  463.   1554,  1558,  1563,  1565,  1576,  1579,  1580,  1597,  1602,  1605,
  464.   1616,  1618,  1628,  1638,  1639,  1647,  1650,  1662,  1666,  1683,
  465.   1690,  1699,  1701,  1706,  1711,  1715,  1719,  1730,  1737,  1744,
  466.   1751,  1762,  1766,  1769,  1774,  1797,  1828,  1853,  1882,  1897,
  467.   1908,  1912,  1916,  1919,  1924,  1926,  1929,  1931,  1935,  1940,
  468.   1943,  1949,  1954,  1959,  1961,  1970,  1971,  1977,  1979,  1984,
  469.   1986,  1990,  1993,  1999,  2002,  2004,  2006,  2008,  2015,  2020,
  470.   2025,  2027,  2036,  2039,  2044,  2047,  2053,  2055,  2056,  2057,
  471.   2058,  2059,  2073,  2076,  2080,  2086,  2092,  2099,  2104,  2110,
  472.   2117,  2123,  2129,  2134,  2140,  2147,  2153,  2159,  2165,  2173,
  473.   2179,  2185,  2193,  2200,  2206,  2215,  2222,  2230,  2235,  2244,
  474.   2246,  2249,  2251,  2252,  2255,  2260,  2261,  2278,  2284,  2289,
  475.   2293,  2296,  2297,  2300,  2308,  2314,  2323,  2333,  2340,  2344,
  476.   2349,  2358,  2365,  2369,  2379,  2381,  2382,  2384,  2386,  2387,
  477.   2388,  2389,  2391,  2393,  2396,  2402,  2407,  2407,  2412,  2416,
  478.   2418,  2424,  2429,  2434,  2443,  2445,  2451,  2453,  2456,  2458,
  479.   2459,  2460,  2463,  2466,  2468,  2472,  2475,  2482,  2485,  2487,
  480.   2491,  2496,  2501,  2506,  2513,  2517,  2520,  2526,  2528,  2529,
  481.   2530,  2533,  2535,  2536,  2537,  2538,  2539,  2540,  2541,  2542,
  482.   2543,  2544,  2545,  2546,  2547,  2548,  2549,  2550,  2551,  2552,
  483.   2553,  2553,  2556,  2562,  2567,  2572,  2578,  2580,  2583,  2585,
  484.   2592,  2604,  2609,  2615,  2617,  2623,  2627,  2628,  2634,  2636,
  485.   2639,  2641,  2647,  2652,  2658,  2665,  2674
  486. };
  487.  
  488. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  489. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  490. "ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
  491. "BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ALIGN",
  492. "ATTRIBUTE","EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'",
  493. "OROR","ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT",
  494. "'+'","'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
  495. "'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
  496. "CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
  497. "OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
  498. "@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
  499. "unop","expr","exprlist","nonnull_exprlist","unary_expr","@9","cast_expr","@10",
  500. "expr_no_commas","primary","@11","string","objc_string","xdecls","lineno_datadecl",
  501. "datadecls","datadecl","lineno_decl","decls","setspecs","decl","typed_declspecs",
  502. "reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec",
  503. "typespecqual_reserved","initdecls","notype_initdecls","maybeasm","initdcl",
  504. "@12","notype_initdcl","@13","maybe_attribute","attribute_list","attrib","init",
  505. "@14","initlist_maybe_comma","initlist1","initelt","@15","@16","@17","nested_function",
  506. "@18","notype_nested_function","@19","declarator","after_type_declarator","parm_declarator",
  507. "notype_declarator","structsp","@20","@21","@22","@23","maybecomma","maybecomma_warn",
  508. "component_decl_list","component_decl_list2","component_decl","components","component_declarator",
  509. "enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
  510. "absdcl1","stmts","xstmts","errstmt","pushlevel","maybe_label_decls","label_decls",
  511. "label_decl","compstmt_or_error","compstmt","simple_if","if_prefix","do_stmt_start",
  512. "@24","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
  513. "stmt_or_label","stmt","@25","@26","@27","@28","@29","@30","@31","all_iter_stmt",
  514. "all_iter_stmt_simple","@32","label","maybe_type_qual","xexpr","asm_operands",
  515. "nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@33","parmlist_1",
  516. "@34","parmlist_2","parms","parm","parmlist_or_identifiers","@35","parmlist_or_identifiers_1",
  517. "identifiers","identifiers_or_typenames","objcdef","identifier_list","classdecl",
  518. "aliasdecl","classdef","@36","@37","@38","@39","@40","@41","@42","@43","@44",
  519. "protocoldef","@45","protocolrefs","ivar_decl_list","visibility_spec","ivar_decls",
  520. "ivar_decl","ivars","ivar_declarator","methoddef","@46","@47","@48","@49","@50",
  521. "@51","methodprotolist","@52","methodprotolist2","@53","semi_or_error","methodproto",
  522. "@54","@55","@56","@57","methoddecl","optarglist","myxdecls","mydecls","mydecl",
  523. "myparms","myparm","optparmlist","@58","unaryselector","keywordselector","selector",
  524. "reservedwords","keyworddecl","messageargs","keywordarglist","keywordexpr","keywordarg",
  525. "receiver","objcmessageexpr","@59","@60","selectorarg","keywordnamelist","keywordname",
  526. "objcselectorexpr","objcprotocolexpr","objcencodeexpr",""
  527. };
  528. #endif
  529.  
  530. static const short yyr1[] = {     0,
  531.     85,    85,    87,    86,    88,    86,    89,    89,    89,    89,
  532.     90,    90,    90,    90,    90,    90,    90,    90,    92,    93,
  533.     91,    91,    94,    95,    91,    91,    96,    97,    91,    91,
  534.     98,    98,    98,    98,    99,    99,    99,    99,    99,    99,
  535.     99,   100,   101,   101,   102,   102,   103,   103,   104,   103,
  536.    103,   103,   103,   103,   103,   103,   103,   103,   105,   105,
  537.    106,   105,   107,   107,   107,   107,   107,   107,   107,   107,
  538.    107,   107,   107,   107,   107,   107,   107,   107,   107,   107,
  539.    108,   108,   108,   108,   108,   109,   108,   108,   108,   108,
  540.    108,   108,   108,   108,   108,   108,   108,   108,   110,   110,
  541.    111,   111,   112,   112,   112,   113,   114,   114,   114,   114,
  542.    115,   115,   115,   115,   116,   117,   117,   117,   117,   118,
  543.    119,   119,   119,   119,   119,   119,   120,   120,   121,   121,
  544.    121,   122,   122,   122,   122,   123,   123,   124,   124,   125,
  545.    125,   125,   125,   125,   125,   125,   126,   126,   126,   127,
  546.    127,   128,   128,   129,   129,   131,   130,   130,   133,   132,
  547.    132,   134,   134,   135,   135,   136,   136,   136,   136,   136,
  548.    137,   138,   137,   137,   139,   139,   140,   140,   141,   142,
  549.    141,   141,   143,   141,   144,   141,   146,   145,   148,   147,
  550.    149,   149,   150,   150,   150,   150,   150,   150,   150,   151,
  551.    151,   151,   151,   151,   152,   152,   152,   152,   152,   152,
  552.    154,   153,   153,   153,   155,   153,   153,   153,   156,   153,
  553.    157,   153,   153,   158,   158,   159,   159,   160,   160,   161,
  554.    161,   161,   161,   162,   162,   162,   162,   162,   163,   163,
  555.    164,   164,   164,   165,   165,   166,   166,   167,   167,   168,
  556.    168,   169,   169,   170,   170,   171,   171,   171,   171,   171,
  557.    171,   171,   171,   171,   172,   172,   172,   173,   173,   174,
  558.    175,   176,   176,   177,   177,   178,   179,   179,   180,   180,
  559.    180,   180,   181,   181,   182,   184,   183,   185,   186,   187,
  560.    187,   188,   189,   189,   190,   190,   190,   191,   190,   190,
  561.    190,   192,   193,   190,   190,   190,   194,   195,   196,   190,
  562.    197,   190,   190,   190,   190,   190,   190,   190,   190,   190,
  563.    190,   190,   190,   198,   200,   199,   201,   201,   201,   201,
  564.    202,   202,   203,   203,   204,   204,   205,   205,   206,   207,
  565.    207,   209,   208,   210,   211,   210,   210,   212,   212,   212,
  566.    212,   213,   213,   214,   214,   214,   214,   214,   216,   215,
  567.    217,   217,   218,   218,   219,   219,   220,   220,   220,   220,
  568.    220,   220,   221,   221,   222,   223,   225,   226,   224,   227,
  569.    224,   228,   229,   224,   230,   224,   231,   224,   224,   232,
  570.    224,   224,   233,   224,   224,   235,   234,   236,   236,   237,
  571.    237,   238,   238,   238,   239,   239,   239,   240,   240,   240,
  572.    241,   241,   241,   242,   242,   242,   244,   245,   246,   243,
  573.    247,   248,   249,   243,   250,   251,   250,   252,   252,   252,
  574.    253,   252,   254,   254,   256,   257,   255,   258,   259,   255,
  575.    260,   260,   260,   260,   261,   261,   262,   262,   263,   263,
  576.    263,   263,   264,   264,   264,   265,   265,   266,   266,   266,
  577.    267,   267,   268,   267,   269,   270,   270,   271,   271,   271,
  578.    271,   272,   272,   272,   272,   272,   272,   272,   272,   272,
  579.    272,   272,   272,   272,   272,   272,   272,   272,   272,   272,
  580.    272,   272,   273,   273,   273,   273,   274,   274,   275,   275,
  581.    276,   277,   277,   278,   278,   280,   281,   279,   282,   282,
  582.    283,   283,   284,   284,   285,   286,   287
  583. };
  584.  
  585. static const short yyr2[] = {     0,
  586.      0,     1,     0,     2,     0,     3,     1,     1,     1,     5,
  587.      3,     4,     4,     2,     2,     2,     2,     1,     0,     0,
  588.      7,     4,     0,     0,     7,     4,     0,     0,     6,     3,
  589.      1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  590.      1,     1,     0,     1,     1,     3,     1,     2,     0,     3,
  591.      2,     2,     2,     4,     2,     4,     2,     2,     1,     4,
  592.      0,     7,     1,     3,     3,     3,     3,     3,     3,     3,
  593.      3,     3,     3,     3,     3,     3,     3,     5,     3,     3,
  594.      1,     1,     1,     3,     3,     0,     4,     4,     4,     3,
  595.      3,     2,     2,     1,     1,     1,     1,     1,     1,     2,
  596.      1,     2,     0,     1,     2,     3,     1,     1,     2,     2,
  597.      4,     4,     2,     2,     3,     1,     1,     2,     2,     0,
  598.      4,     4,     3,     3,     2,     2,     2,     3,     0,     2,
  599.      2,     1,     1,     2,     2,     2,     3,     0,     2,     1,
  600.      1,     1,     2,     2,     4,     4,     1,     1,     1,     1,
  601.      3,     1,     3,     0,     4,     0,     6,     3,     0,     6,
  602.      3,     0,     6,     1,     3,     1,     1,     4,     4,     8,
  603.      1,     0,     4,     1,     0,     2,     1,     3,     1,     0,
  604.      4,     1,     0,     4,     0,     5,     0,     3,     0,     3,
  605.      1,     1,     3,     3,     4,     3,     3,     1,     1,     3,
  606.      4,     3,     3,     1,     3,     3,     3,     4,     3,     1,
  607.      0,     6,     4,     2,     0,     6,     4,     2,     0,     7,
  608.      0,     6,     2,     0,     1,     0,     1,     1,     2,     0,
  609.      3,     2,     4,     3,     1,     3,     1,     1,     1,     3,
  610.      4,     6,     5,     1,     3,     1,     3,     2,     2,     0,
  611.      1,     1,     2,     0,     2,     3,     3,     2,     3,     4,
  612.      3,     2,     3,     2,     1,     2,     2,     0,     1,     2,
  613.      0,     0,     1,     1,     2,     3,     1,     2,     2,     6,
  614.      5,     5,     2,     2,     4,     0,     4,     0,     0,     3,
  615.      4,     3,     1,     1,     1,     1,     2,     0,     4,     1,
  616.      3,     0,     0,     7,     5,     2,     0,     0,     0,    12,
  617.      0,     6,     2,     2,     2,     3,     6,     8,    10,    12,
  618.      3,     4,     1,     1,     0,     6,     3,     5,     2,     2,
  619.      0,     1,     0,     1,     0,     1,     1,     3,     4,     1,
  620.      3,     0,     2,     2,     0,     4,     2,     0,     1,     1,
  621.      3,     1,     3,     2,     2,     2,     2,     2,     0,     2,
  622.      1,     2,     1,     3,     1,     3,     1,     1,     1,     1,
  623.      1,     1,     1,     3,     3,     4,     0,     0,    10,     0,
  624.      6,     0,     0,    12,     0,     8,     0,     6,     2,     0,
  625.      8,     4,     0,     9,     5,     0,     6,     0,     3,     3,
  626.      1,     1,     1,     1,     0,     3,     2,     3,     3,     1,
  627.      0,     1,     3,     1,     3,     2,     0,     0,     0,     7,
  628.      0,     0,     0,     7,     0,     0,     2,     1,     1,     2,
  629.      0,     3,     1,     1,     0,     0,     5,     0,     0,     5,
  630.      4,     1,     5,     2,     0,     2,     0,     1,     1,     1,
  631.      2,     2,     4,     2,     2,     1,     3,     1,     1,     1,
  632.      0,     2,     0,     3,     1,     1,     2,     1,     1,     1,
  633.      1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  634.      1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  635.      1,     1,     6,     3,     5,     2,     1,     1,     1,     2,
  636.      1,     3,     2,     1,     1,     0,     0,     6,     1,     1,
  637.      1,     2,     2,     1,     4,     4,     4
  638. };
  639.  
  640. static const short yydefact[] = {     3,
  641.      5,     0,     0,     0,   142,   133,   140,   132,     0,     0,
  642.      0,     0,     0,   417,   421,     0,     0,   372,   398,     0,
  643.    398,     0,     0,    18,     4,     8,     7,     0,   120,   120,
  644.    129,   141,     9,   368,   369,   367,   370,   371,     6,    16,
  645.     17,    31,    32,    34,    33,   221,   223,   230,   214,   230,
  646.    218,     0,     0,     0,     0,   398,   389,     0,   143,   398,
  647.    144,   373,     0,     0,   210,   254,     0,     0,   152,     0,
  648.     15,     0,   135,   134,    14,     0,   129,   127,     0,   219,
  649.      0,     0,     0,   211,     0,   215,    81,    82,    99,     0,
  650.      0,    49,     0,     0,     0,    35,    37,    36,     0,    38,
  651.     39,     0,   506,     0,     0,     0,   101,    40,    41,     0,
  652.      0,    42,    59,    63,    45,    47,    83,    98,    94,    95,
  653.     96,    97,   252,     0,   250,   138,     0,   250,   468,   469,
  654.    491,   492,   488,   472,   473,   474,   475,   476,   477,   478,
  655.    479,   480,   481,   482,   483,   484,   485,   486,   487,   489,
  656.    490,     0,     0,   470,   418,   442,   461,   465,   471,   466,
  657.    422,     0,     0,   380,     0,     0,   387,     0,   396,   375,
  658.      0,     0,     0,     0,    11,     0,    30,     0,   359,     0,
  659.      0,   162,   198,   254,     0,   199,     0,   150,     0,   191,
  660.    192,     0,     0,   128,   131,   147,   148,   130,   149,   246,
  661.    226,   244,     0,     0,   213,   238,   232,   120,   229,   120,
  662.    230,   217,   230,     0,    53,     0,    55,     0,    57,    58,
  663.     52,    48,     0,     0,     0,     0,     0,     0,     0,     0,
  664.     51,     0,     0,     0,     0,   333,     0,     0,     0,     0,
  665.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  666.     92,    93,     0,     0,    43,     0,   100,   102,   145,   254,
  667.    342,     0,   248,   251,   136,   146,   253,   138,   249,     0,
  668.    496,     0,   445,   463,   444,     0,   467,     0,   445,   398,
  669.      0,   377,   426,   392,     0,   405,   399,   426,   374,   376,
  670.    255,   207,   206,   153,   154,     0,   205,     0,   209,     0,
  671.      0,    28,     0,   288,   108,   289,     0,   161,     0,     0,
  672.     13,     0,    22,     0,   162,   359,     0,    12,    26,     0,
  673.      0,   227,     0,   226,     0,   288,   231,   288,     0,     0,
  674.      0,     0,    50,    85,    84,   271,     0,     0,   505,   504,
  675.    507,   514,   509,     0,   510,   511,     0,     0,    10,    46,
  676.     80,    79,   334,     0,    77,    76,    74,    75,    73,    72,
  677.     71,    69,    70,    64,    65,    66,    67,    68,    91,    90,
  678.      0,    44,     0,   258,     0,   262,     0,   264,     0,   342,
  679.      0,   139,   137,     0,     0,     0,   419,   462,   348,     0,
  680.    494,   423,   385,   398,   405,     0,     0,   390,   395,     0,
  681.      0,     0,     0,     0,   363,   349,   250,   250,   361,     0,
  682.    350,   352,   360,     0,   208,   270,     0,   110,   105,   109,
  683.      0,     0,   159,   197,   193,   151,    20,   158,   194,   196,
  684.      0,    24,   247,   245,   222,     0,   233,   234,   239,   289,
  685.    236,   212,   216,    54,    56,   279,   272,    87,    61,    60,
  686.      0,   513,   515,     0,   512,   517,   516,     0,    88,    89,
  687.    257,   256,   343,   263,   259,   261,     0,     0,   441,   461,
  688.    120,     0,   450,   446,   448,     0,     0,   464,   350,     0,
  689.      0,   382,   426,   393,     0,   381,   435,   438,   429,     0,
  690.    120,   120,   431,   428,   405,   404,   402,   403,   388,   405,
  691.    410,   407,   120,   120,     0,   397,   155,   347,   204,   254,
  692.    342,   354,   355,   356,   254,   357,   358,   344,   345,     0,
  693.    362,     0,     0,    29,   277,   106,   120,   120,     0,     0,
  694.      0,   156,   195,     0,   220,   288,     0,     0,     0,   273,
  695.    274,     0,     0,   497,     0,   498,   499,    78,   260,   495,
  696.    443,   454,   250,   455,   451,   452,   420,     0,   424,   405,
  697.      0,   426,   378,     0,     0,   154,     0,     0,     0,   430,
  698.      0,     0,   411,   411,   406,   258,   359,     0,   258,     0,
  699.    351,   353,   364,   278,   113,     0,   114,     0,   166,   167,
  700.      0,   164,   174,   172,   171,   160,    21,     0,    25,   240,
  701.      0,   162,   365,     0,     0,     0,   288,     0,   117,   289,
  702.    265,   275,   182,    81,     0,   180,     0,   179,     0,   224,
  703.    177,   501,   503,     0,   508,     0,   500,   458,   459,   460,
  704.      0,   456,   493,     0,   386,     0,   426,   436,   439,   432,
  705.    391,     0,   414,   408,   412,   409,   203,   200,   202,     0,
  706.    346,     0,     0,     0,     0,     0,     0,   157,   162,     0,
  707.    241,   276,     0,   281,   119,   118,     0,     0,   282,   267,
  708.    289,   266,     0,     0,     0,   183,    62,     0,   176,   502,
  709.    453,   250,   383,   394,     0,     0,     0,   416,     0,     0,
  710.    201,   111,   112,     0,     0,   163,   165,     0,   243,   162,
  711.    366,   280,     0,   142,     0,   302,   286,     0,     0,     0,
  712.      0,     0,     0,     0,     0,   331,   398,   398,   323,     0,
  713.      0,   115,   120,   120,   295,   300,     0,     0,   292,   293,
  714.    296,   324,   294,   185,     0,     0,   178,   457,   426,   379,
  715.    434,   433,   437,   440,   415,   413,   168,     0,   169,   173,
  716.    242,     0,     0,   288,   333,     0,     0,   329,   313,   314,
  717.    315,     0,     0,     0,   332,     0,   330,   297,   125,     0,
  718.    126,     0,     0,   284,   289,   283,   306,     0,     0,   181,
  719.    184,     0,     0,     0,     0,     0,    47,     0,     0,     0,
  720.    327,   316,     0,   321,     0,     0,   123,   154,     0,   124,
  721.    154,   301,   288,     0,     0,   186,   384,     0,   285,     0,
  722.    287,   325,   307,   311,     0,   322,     0,   121,     0,   122,
  723.      0,   299,   290,   288,     0,     0,   303,   288,   333,   288,
  724.    328,   335,     0,   188,   190,   291,   305,   170,   288,   326,
  725.      0,   312,     0,     0,   336,   337,   317,   304,   308,     0,
  726.    335,     0,     0,   333,     0,     0,   318,   338,     0,   339,
  727.      0,     0,   309,   340,     0,   319,   288,     0,     0,   310,
  728.    320,   341,     0,     0,     0
  729. };
  730.  
  731. static const short yydefgoto[] = {   873,
  732.      1,     2,     3,    25,    26,    27,   314,   531,   320,   534,
  733.    181,   417,   617,   110,   353,   371,   112,   113,   218,   114,
  734.    542,   115,   116,   225,   117,   118,   302,   303,   304,   526,
  735.    606,   607,    28,   722,   407,    78,   408,   125,   265,    31,
  736.    198,   187,    68,   182,   188,   598,    69,   530,   308,   591,
  737.    592,   596,   657,   619,   620,   621,   675,   736,   779,   797,
  738.    819,   800,   821,   295,   190,   628,   191,    32,   211,   213,
  739.    203,    79,   679,   323,    82,    83,   209,   438,   439,   201,
  740.    202,   127,   630,   128,   173,   264,   608,   668,   305,   447,
  741.    539,   540,   541,   524,   525,   726,   727,   728,   754,   775,
  742.    421,   776,   611,   729,   730,   803,   753,   839,   829,   854,
  743.    867,   830,   731,   732,   828,   733,   766,   354,   844,   845,
  744.    846,   865,   376,   377,   409,   580,   410,   411,   412,   297,
  745.    298,   413,   414,   604,    33,    63,    34,    35,    36,   395,
  746.    637,   283,   560,   739,   483,   286,   495,   562,    37,   288,
  747.     59,   400,   500,   401,   505,   644,   645,    38,    54,   273,
  748.    477,    55,   279,   481,   396,   397,   493,   569,   743,   494,
  749.    564,   686,   565,   687,   155,   387,   474,   475,   476,   631,
  750.    632,   275,   389,   156,   157,   158,   159,   160,   545,   546,
  751.    623,   547,   341,   119,   227,   451,   344,   345,   346,   120,
  752.    121,   122
  753. };
  754.  
  755. static const short yypact[] = {   108,
  756.    110,  2683,  2683,   307,-32768,-32768,-32768,-32768,    69,    80,
  757.    219,   105,   111,-32768,-32768,   231,   231,-32768,    74,   231,
  758.     74,   231,   231,-32768,-32768,-32768,-32768,   151,   122,   641,
  759. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  760. -32768,-32768,-32768,-32768,-32768,-32768,   123,   163,   148,   163,
  761.    162,  2468,  2303,  2927,  2927,    61,    32,   231,-32768,    74,
  762. -32768,-32768,   114,   231,-32768,-32768,   151,   292,-32768,  1566,
  763. -32768,   255,-32768,-32768,-32768,   151,-32768,   710,   231,-32768,
  764.    195,   187,  1739,-32768,   214,-32768,-32768,-32768,-32768,  2502,
  765.   2557,-32768,  2468,  2468,   231,-32768,-32768,-32768,  2468,-32768,
  766. -32768,  1238,-32768,   249,   256,   265,-32768,-32768,-32768,  2468,
  767.    250,   248,-32768,-32768,  3198,   820,   340,   285,-32768,-32768,
  768. -32768,-32768,-32768,   299,   294,-32768,   316,  3063,-32768,-32768,
  769. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  770. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  771. -32768,   237,   411,-32768,-32768,-32768,  2269,   365,-32768,-32768,
  772. -32768,   231,   231,   371,   231,   231,-32768,    40,-32768,-32768,
  773.    231,   355,   328,    35,-32768,   255,-32768,   396,-32768,  1730,
  774.    430,   428,-32768,-32768,   255,-32768,   300,-32768,   588,   366,
  775.    387,   314,  1646,   710,-32768,-32768,-32768,-32768,-32768,   424,
  776.    382,-32768,   231,   434,-32768,-32768,-32768,   399,   402,  1657,
  777.    163,-32768,   163,  1238,-32768,  1238,-32768,  2468,-32768,-32768,
  778. -32768,-32768,   427,   437,   432,   439,  2358,  2956,   411,   231,
  779. -32768,   445,  2468,  2468,  2468,  2468,  2468,  2468,  2468,  2468,
  780.   2468,  2468,  2468,  2468,  2468,  2468,  2468,  2468,  2468,  2468,
  781. -32768,-32768,   231,   231,  2468,  2468,-32768,-32768,-32768,-32768,
  782.    294,  1790,-32768,   422,   591,-32768,-32768,-32768,-32768,   411,
  783. -32768,   450,   453,   518,-32768,   365,-32768,   240,   453,    74,
  784.    452,-32768,   468,   469,   457,-32768,-32768,   468,-32768,-32768,
  785. -32768,   387,-32768,-32768,   509,   542,-32768,   673,-32768,   475,
  786.    482,-32768,   629,    60,-32768,-32768,   505,   530,   247,    42,
  787. -32768,   255,-32768,   430,   428,-32768,  1850,-32768,-32768,   430,
  788.   2468,   231,   489,   382,   492,-32768,-32768,-32768,   493,   494,
  789.    498,   499,-32768,-32768,-32768,   500,   503,  2188,-32768,-32768,
  790. -32768,-32768,   532,   506,  2956,-32768,   507,   508,-32768,  3198,
  791.   3198,  3198,-32768,   548,  1212,  1370,  1450,  2274,   496,  2621,
  792.    687,   739,   739,   444,   444,-32768,-32768,-32768,-32768,-32768,
  793.    513,   248,   522,   305,   276,-32768,  2811,-32768,   524,-32768,
  794.   1910,-32768,   591,   514,  2995,  1674,-32768,-32768,  1687,   411,
  795. -32768,-32768,   526,    74,-32768,   547,  2759,-32768,-32768,   288,
  796.   2635,   549,    54,   543,-32768,-32768,   291,  3052,-32768,   552,
  797.    324,-32768,-32768,    22,-32768,-32768,    56,-32768,-32768,-32768,
  798.   3128,   567,-32768,   366,-32768,-32768,-32768,   594,-32768,-32768,
  799.    553,-32768,  3198,-32768,-32768,   559,-32768,   558,-32768,-32768,
  800.    558,-32768,-32768,-32768,-32768,-32768,   599,-32768,-32768,-32768,
  801.   3024,-32768,-32768,   532,-32768,-32768,-32768,  2468,-32768,-32768,
  802.    422,-32768,-32768,-32768,-32768,-32768,   560,   231,-32768,  2269,
  803.    572,  2829,-32768,-32768,  3128,  1704,    56,-32768,   570,   582,
  804.     56,-32768,   468,-32768,   351,-32768,-32768,-32768,-32768,   151,
  805.    122,   641,   331,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  806. -32768,-32768,-32768,   550,   585,-32768,-32768,-32768,-32768,-32768,
  807.    217,   425,   387,-32768,-32768,   387,-32768,-32768,-32768,  3080,
  808. -32768,   657,   432,-32768,-32768,-32768,   587,  2848,   380,  1557,
  809.     56,-32768,-32768,    56,-32768,-32768,    78,   231,   833,   599,
  810. -32768,  1319,  2468,   628,   589,  3024,-32768,  1291,-32768,-32768,
  811. -32768,-32768,   291,-32768,-32768,-32768,-32768,   231,-32768,-32768,
  812.    608,   468,-32768,  2927,  2927,   225,   255,   151,  2778,-32768,
  813.    381,  2652,   223,   223,-32768,   272,-32768,  1970,   311,  2811,
  814. -32768,-32768,-32768,-32768,-32768,   255,-32768,   151,   621,-32768,
  815.    160,-32768,-32768,-32768,  3198,-32768,-32768,  1557,-32768,-32768,
  816.   2468,    67,-32768,   350,   412,   752,   603,   914,-32768,-32768,
  817. -32768,-32768,-32768,   645,   231,-32768,   649,  3198,   610,   609,
  818. -32768,   248,-32768,  2468,-32768,   628,-32768,   425,   387,-32768,
  819.    363,-32768,-32768,   451,-32768,   630,   468,-32768,-32768,-32768,
  820. -32768,  2468,   654,   613,-32768,   613,   425,-32768,-32768,   612,
  821. -32768,   375,   384,   261,   631,   380,  1319,-32768,  3162,  2468,
  822. -32768,-32768,   231,-32768,-32768,-32768,   995,   626,-32768,-32768,
  823. -32768,-32768,  2052,   676,  1319,-32768,-32768,  1400,-32768,-32768,
  824. -32768,   291,-32768,-32768,   661,    68,    68,  3198,  2468,   223,
  825. -32768,-32768,-32768,   190,   650,-32768,-32768,   651,-32768,  3162,
  826. -32768,-32768,  2133,   689,   671,-32768,-32768,   672,   682,  2468,
  827.    705,   667,   669,  2413,    76,   741,   193,   224,-32768,   712,
  828.    684,-32768,   690,  2859,-32768,   733,  1076,    63,-32768,-32768,
  829. -32768,-32768,-32768,-32768,   703,  1481,-32768,-32768,   468,-32768,
  830. -32768,-32768,-32768,-32768,  3198,-32768,-32768,   775,-32768,-32768,
  831. -32768,  2468,   725,-32768,  2468,  2468,  3127,-32768,-32768,-32768,
  832. -32768,   716,  2468,   717,-32768,   737,-32768,-32768,-32768,   255,
  833. -32768,   151,  1157,-32768,-32768,-32768,-32768,  2468,  1481,-32768,
  834. -32768,   736,   722,   728,  2468,   789,   352,   731,   734,  2468,
  835. -32768,-32768,   732,-32768,  2468,   389,-32768,    50,   392,-32768,
  836.    220,-32768,-32768,  2133,   738,-32768,-32768,   806,-32768,   744,
  837. -32768,-32768,-32768,-32768,  3180,-32768,    39,-32768,   432,-32768,
  838.    432,-32768,-32768,-32768,   740,   745,-32768,-32768,  2468,-32768,
  839. -32768,   807,   748,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  840.    749,-32768,   763,    48,   747,-32768,-32768,-32768,-32768,  2468,
  841.    807,   765,   807,  2468,   772,    58,-32768,-32768,   786,-32768,
  842.    542,   788,-32768,   340,   207,-32768,-32768,   791,   542,-32768,
  843. -32768,   340,   864,   870,-32768
  844. };
  845.  
  846. static const short yypgoto[] = {-32768,
  847. -32768,-32768,-32768,   868,  -350,-32768,-32768,-32768,-32768,-32768,
  848. -32768,-32768,    -5,-32768,   -52,-32768,  -224,   417,-32768,   -48,
  849. -32768,   -61,   117,-32768,  -287,-32768,  -226,   569,-32768,-32768,
  850.    278,-32768,    -3,-32768,    17,   809,    19,   -67,   619,   -17,
  851.   -189,  -542,   -69,  -186,  -122,-32768,-32768,-32768,  -291,-32768,
  852.    234,   293,-32768,  -582,-32768,  -623,-32768,-32768,-32768,-32768,
  853. -32768,-32768,-32768,   -64,  -118,  -359,   -18,   -44,-32768,-32768,
  854. -32768,-32768,-32768,   568,     2,-32768,-32768,   571,   359,   693,
  855.    575,   -13,   -86,   -60,  -146,  -229,   295,-32768,  -268,-32768,
  856. -32768,-32768,   364,  -133,  -197,-32768,-32768,-32768,-32768,   -90,
  857.   -415,  -698,  -543,-32768,    99,-32768,-32768,-32768,-32768,-32768,
  858. -32768,-32768,-32768,-32768,-32768,   103,-32768,  -695,    57,-32768,
  859.     59,-32768,   539,-32768,  -334,-32768,   521,   531,   401,  -276,
  860. -32768,-32768,-32768,-32768,-32768,   866,-32768,-32768,-32768,-32768,
  861. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  862.    -19,  -327,-32768,   426,-32768,   353,   238,-32768,-32768,-32768,
  863. -32768,-32768,-32768,-32768,  -274,-32768,-32768,-32768,   243,   449,
  864. -32768,-32768,-32768,-32768,   -26,   665,-32768,-32768,   470,-32768,
  865.    268,   477,-32768,   566,   574,  -127,-32768,  -124,-32768,-32768,
  866.    329,   406,-32768,-32768,-32768,-32768,-32768,-32768,   611,-32768,
  867. -32768,-32768
  868. };
  869.  
  870.  
  871. #define    YYLAST        3251
  872.  
  873.  
  874. static const short yytable[] = {   111,
  875.    124,    61,   315,    47,    49,    51,   192,   189,   403,    70,
  876.     56,    57,    77,   402,    60,   208,    62,    64,    29,    29,
  877.     30,    30,   210,   428,   537,    72,    76,   337,   161,   276,
  878.    372,   375,   277,   199,   418,   126,   164,   309,   263,   429,
  879.    169,   269,   463,   652,   219,   220,   489,   512,   174,   224,
  880.    222,    85,    62,   294,   737,   786,   523,   193,   172,   788,
  881.   -104,   231,   257,   777,   672,   126,   310,   485,   741,   419,
  882.    165,    42,    43,   200,   698,   382,   178,   832,    42,    43,
  883.     65,   183,    42,    43,   126,   287,   851,   427,   226,   221,
  884.    306,   166,   735,   432,   179,   180,   861,   307,   521,   162,
  885.    343,   316,   317,   522,   822,   660,    58,    -1,   315,    -2,
  886.    268,   293,   781,   374,   167,   833,   601,   473,   425,    58,
  887.    163,   171,   778,   672,   852,   836,   763,   300,   184,   840,
  888.    507,   842,  -187,   841,   862,   126,    44,   185,   336,   272,
  889.    848,    45,  -104,    44,   461,   742,   271,    44,    45,   199,
  890.    186,    46,    45,    65,   292,   806,   280,   281,   859,   284,
  891.    285,   224,    48,   224,    52,   289,   174,   571,   870,   333,
  892.     53,   350,   351,   352,   340,   355,   356,   357,   358,   359,
  893.    360,   361,   362,   363,   364,   365,   366,   367,   368,   426,
  894.    424,   170,   268,   382,   673,   171,   126,   200,   126,    71,
  895.    331,    66,   332,   373,   326,    80,   328,   556,   561,   379,
  896.     67,   126,   329,   306,   330,   347,   647,   454,   640,    65,
  897.    199,    42,    43,   306,   348,    65,   183,   796,    81,   306,
  898.     84,   -34,   634,    42,    43,   440,   655,   440,    58,    42,
  899.     43,   656,    42,    43,    86,   651,   178,   369,   370,    65,
  900.    183,   178,   126,   291,   204,   703,   384,    65,   183,   433,
  901.    393,   642,   -33,   694,   431,   205,   747,   515,   695,    58,
  902.    609,   748,   391,   184,    65,   509,   511,   262,   291,   179,
  903.    180,   375,   185,   868,   179,   180,    44,   636,   869,   450,
  904.    292,    45,   212,    65,   509,   186,   270,   184,    44,   390,
  905.    648,    50,  -189,    45,    44,   184,   185,    44,   228,    45,
  906.    661,   291,    45,    65,   185,   229,   200,   291,   622,   186,
  907.    514,   517,   510,   544,   230,   584,   232,   186,   467,   233,
  908.     65,   511,   262,   503,   291,   380,   381,   665,   199,   670,
  909.    504,   510,   276,   557,   260,   277,   461,   559,   257,   461,
  910.    511,   262,   462,   261,   262,   260,   496,   497,   498,   804,
  911.    258,   515,   685,   576,   261,   262,   499,   699,   579,   175,
  912.    511,   262,   126,   176,   484,   259,   480,   311,    66,   487,
  913.    488,   312,   589,   126,    40,    41,   590,    67,   513,   516,
  914.     77,   318,   266,   490,  -427,   176,   548,   597,   670,   622,
  915.    599,   519,   471,   278,   472,   520,   251,   252,   751,   253,
  916.    254,   255,   256,   491,     5,   492,     7,   123,   626,   496,
  917.    497,   498,     9,    10,    11,   316,   317,   662,   812,   563,
  918.    301,   663,   290,  -288,  -288,  -288,  -288,   527,    13,   528,
  919.    681,  -288,  -288,  -288,   682,   440,   179,   180,   610,   496,
  920.    497,   498,   692,   282,    77,   296,   312,  -288,   307,   641,
  921.    321,   693,   550,   322,   782,   176,   818,   553,   595,   820,
  922.    312,   566,   602,   176,    77,   725,  -235,  -235,    19,   327,
  923.    618,   380,   381,    21,   577,   578,   268,   567,   568,   416,
  924.    664,   471,   174,   472,   248,   249,   250,  -288,   192,   573,
  925.    574,   325,  -288,   334,   503,   725,   215,   217,   643,   643,
  926.     77,   504,  -103,   335,   336,   338,   610,   671,   653,   496,
  927.    497,   498,   349,   586,   588,   650,   385,   388,   394,   683,
  928.    386,  -425,   603,   399,   629,   178,   595,   638,   639,   659,
  929.    242,   243,   244,   245,   246,   247,   248,   249,   250,   566,
  930.     89,   398,   633,     5,   126,     7,   267,   292,   415,   416,
  931.    292,     9,    10,    11,   422,   490,   423,   435,   437,   566,
  932.    452,   442,   443,   864,   444,   445,   671,    13,   446,   448,
  933.    688,   872,   453,   456,   457,   491,   458,   492,   313,   459,
  934.    468,   -19,   -19,   -19,   -19,   618,   196,   197,   700,   -19,
  935.    -19,   -19,     9,    10,    11,   460,   725,   464,   482,   674,
  936.    486,   315,   506,   618,   178,   -19,   618,    19,  -154,   508,
  937.    721,   834,    21,   835,  -154,   643,   529,   745,   518,   301,
  938.    532,   538,  -107,  -107,  -107,  -107,   533,   535,  -107,   536,
  939.   -107,  -107,  -107,   549,     5,    73,     7,    74,   757,   552,
  940.    721,   520,     9,    10,    11,   -19,  -107,   701,   558,   583,
  941.    -19,   762,   575,   629,   585,  -154,   624,   720,    13,  -154,
  942.    -19,   635,   625,   404,   618,   405,     5,     6,     7,     8,
  943.    654,  -268,   406,   -31,     9,    10,    11,   676,   677,   723,
  944.    678,   724,   689,   684,   690,   691,  -107,   720,    61,   784,
  945.     13,  -107,   799,   789,   702,   798,    77,   696,    19,   764,
  946.    793,  -107,   734,    21,   195,   196,   197,   618,    75,   770,
  947.    772,     9,    10,    11,   740,   805,   749,   -32,   815,   750,
  948.    752,   755,   810,   244,   245,   246,   247,   248,   249,   250,
  949.     19,   756,   817,   758,   759,    21,   760,   765,   773,  -348,
  950.    767,   721,   301,   801,  -116,  -116,  -116,  -116,  -116,  -116,
  951.   -116,   768,  -116,  -116,  -116,  -116,  -116,   769,  -116,  -116,
  952.   -116,  -116,  -116,  -116,  -116,  -116,  -116,  -116,  -116,  -116,
  953.   -116,   780,   783,  -116,   785,  -116,  -116,   246,   247,   248,
  954.    249,   250,  -116,   792,   794,  -116,   795,   855,   720,   807,
  955.   -116,  -116,  -116,   808,   809,   811,  -116,  -116,   813,   816,
  956.    814,  -116,  -116,   826,   825,   843,  -116,   837,  -116,  -116,
  957.    827,   838,   850,  -116,  -116,   847,   849,  -116,   853,  -116,
  958.   -116,  -116,  -116,   605,  -116,  -288,  -288,  -288,  -288,  -288,
  959.   -288,  -288,   857,  -288,  -288,  -288,  -288,  -288,   860,  -288,
  960.   -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,
  961.   -288,  -288,   863,   874,  -288,   866,  -288,  -288,   871,   875,
  962.     39,   787,   420,  -288,   251,   252,  -288,   253,   254,   255,
  963.    256,  -288,  -288,  -288,   666,   194,   383,  -288,  -288,   697,
  964.    658,   436,  -288,  -288,   600,   324,   434,  -288,   441,  -288,
  965.   -288,   667,   823,   612,  -288,  -288,   824,   856,  -288,   478,
  966.   -288,   858,  -288,  -288,   301,  -288,  -288,  -288,   465,   479,
  967.    582,  -288,  -288,   168,  -288,   572,   646,   746,  -288,   744,
  968.   -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,
  969.   -288,   570,  -288,   392,   555,  -288,   551,  -288,  -288,   738,
  970.    469,   627,   680,     0,  -288,   455,     0,  -288,   470,     0,
  971.      0,     0,  -288,  -288,  -288,     0,     0,     0,  -288,  -288,
  972.      0,     0,     0,  -288,  -288,     0,     0,     0,  -288,     0,
  973.   -288,  -288,     0,     0,     0,  -288,  -288,     0,     0,  -288,
  974.      0,  -288,   669,  -288,  -288,   301,  -288,  -288,  -288,     0,
  975.      0,     0,  -288,  -288,     0,  -288,     0,     0,     0,  -288,
  976.      0,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,
  977.   -288,  -288,     0,  -288,     0,     0,  -288,     0,  -288,  -288,
  978.      0,     0,     0,     0,     0,  -288,     0,     0,  -288,     0,
  979.      0,     0,     0,  -288,  -288,  -288,     0,     0,     0,  -288,
  980.   -288,     0,     0,     0,  -288,  -288,     0,     0,     0,  -288,
  981.      0,  -288,  -288,     0,     0,     0,  -288,  -288,     0,     0,
  982.   -288,     0,  -288,  -269,  -288,  -288,   774,  -288,  -288,  -288,
  983.      0,     0,     0,  -288,  -288,     0,  -288,     0,     0,     0,
  984.   -288,     0,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,
  985.   -288,  -288,  -288,     0,  -288,     0,     0,  -288,     0,  -288,
  986.   -288,     0,     0,     0,     0,     0,  -288,     0,     0,  -288,
  987.      0,     0,     0,     0,  -288,  -288,  -288,     0,     0,     0,
  988.   -288,  -288,     0,     0,     0,  -288,  -288,     0,     0,     0,
  989.   -288,     0,  -288,  -288,     0,     0,     0,  -288,  -288,     0,
  990.      0,  -288,     0,  -288,     0,  -288,  -288,   802,  -288,  -298,
  991.   -298,     0,     0,     0,  -298,  -298,     0,  -298,     0,     0,
  992.      0,  -298,     0,  -298,  -298,  -298,  -298,  -298,  -298,  -298,
  993.   -298,  -298,  -298,  -298,     0,  -298,     0,     0,  -298,     0,
  994.   -298,  -298,     0,     0,     0,     0,     0,  -298,     0,     0,
  995.   -298,     0,     0,     0,     0,  -298,  -298,  -298,     0,     0,
  996.      0,  -298,  -298,     0,     0,     0,  -298,  -298,     0,     0,
  997.      0,  -298,     0,  -298,  -298,     0,     0,     0,  -298,  -298,
  998.      0,     0,  -298,     0,  -298,     0,  -298,  -298,   223,  -298,
  999.     87,     5,     0,     7,   123,    88,    89,     0,    90,     9,
  1000.     10,    11,   238,   239,   240,   241,   242,   243,   244,   245,
  1001.    246,   247,   248,   249,   250,    13,    91,     0,     0,    92,
  1002.      0,    93,    94,     0,     0,     0,     0,     0,    95,     0,
  1003.      0,    96,     0,     0,     0,     0,    97,    98,    99,     0,
  1004.      0,     0,   100,   101,     0,     0,     0,   102,   103,     0,
  1005.      0,     0,   104,     0,   105,    19,     0,     0,     0,   106,
  1006.     21,     0,     0,   107,     0,     0,     0,   108,   109,   613,
  1007.    -86,   614,    43,     0,     0,     0,    88,    89,   236,    90,
  1008.    237,   238,   239,   240,   241,   242,   243,   244,   245,   246,
  1009.    247,   248,   249,   250,     0,     0,     0,    91,     0,     0,
  1010.     92,     0,    93,    94,     0,     0,     0,     0,     0,    95,
  1011.      0,     0,    96,     0,     0,     0,     0,    97,    98,    99,
  1012.      0,     0,     0,   100,   101,     0,     0,   615,   102,   103,
  1013.      0,     0,     0,   104,     0,   105,    44,     0,     0,     0,
  1014.    106,    45,     0,     0,   107,     0,     0,  -175,   108,   109,
  1015.    613,   616,   614,    43,     0,     0,     0,    88,    89,     0,
  1016.     90,   239,   240,   241,   242,   243,   244,   245,   246,   247,
  1017.    248,   249,   250,     0,     0,     0,     0,     0,    91,     0,
  1018.      0,    92,     0,    93,    94,     0,     0,     0,     0,     0,
  1019.     95,     0,     0,    96,     0,     0,     0,     0,    97,    98,
  1020.     99,     0,     0,     0,   100,   101,     0,     0,   615,   102,
  1021.    103,     0,     0,     0,   104,     0,   105,    44,     0,     0,
  1022.      0,   106,    45,     0,     0,   107,     0,     0,  -225,   108,
  1023.    109,   613,   616,   614,    43,     0,     0,     0,    88,    89,
  1024.      0,    90,   240,   241,   242,   243,   244,   245,   246,   247,
  1025.    248,   249,   250,     0,     0,     0,     0,     0,     0,    91,
  1026.      0,     0,    92,     0,    93,    94,     0,     0,     0,     0,
  1027.      0,    95,     0,     0,    96,     0,     0,     0,     0,    97,
  1028.     98,    99,     0,     0,     0,   100,   101,     0,     0,   615,
  1029.    102,   103,     0,     0,     0,   104,     0,   105,    44,     0,
  1030.      0,     0,   106,    45,     0,     0,   107,   593,     0,    87,
  1031.    108,   109,     0,   616,    88,    89,   177,    90,     0,   -27,
  1032.    -27,   -27,   -27,     0,     0,     0,     0,   -27,   -27,   -27,
  1033.      0,     0,     0,     0,     0,    91,     0,     0,    92,     0,
  1034.     93,    94,   178,   -27,     0,     0,  -154,    95,     0,     0,
  1035.     96,     0,  -154,     0,     0,    97,    98,    99,     0,     0,
  1036.      0,   100,   101,     0,     0,     0,   102,   103,     0,     0,
  1037.      0,   104,     0,   105,     0,   179,   180,     0,   106,     0,
  1038.      0,     0,   107,   -27,     0,     0,   108,   109,   -27,   594,
  1039.      0,     0,     0,  -154,     0,     0,   319,  -154,   -27,   -23,
  1040.    -23,   -23,   -23,     0,     0,     0,     0,   -23,   -23,   -23,
  1041.      5,     0,     7,   267,     0,     0,     0,     0,     9,    10,
  1042.     11,     0,   178,   -23,   301,     0,  -154,     5,     6,     7,
  1043.      8,     0,  -154,     0,    13,     9,    10,    11,     0,     0,
  1044.      5,     6,     7,     8,     0,     0,   406,     0,     9,    10,
  1045.     11,    13,     0,     0,   301,   179,   180,  -449,  -449,  -449,
  1046.   -449,     0,     0,   -23,    13,  -449,  -449,  -449,   -23,     0,
  1047.      0,     0,     0,  -154,    19,     0,     0,  -154,   -23,    21,
  1048.      0,  -449,    87,     0,  -237,  -237,     0,    88,    89,   206,
  1049.     90,    19,     5,     0,     7,   123,    21,     0,     0,     0,
  1050.      9,    10,    11,     0,    19,     0,  -447,     0,    91,    21,
  1051.      0,    92,     0,    93,    94,     0,    13,     0,     0,     0,
  1052.     95,  -449,     0,    96,     0,     0,  -449,     0,    97,    98,
  1053.     99,     0,     0,     0,   100,   101,  -449,     0,     0,   102,
  1054.    103,     0,    87,     0,   104,     0,   105,    88,    89,     0,
  1055.     90,   106,     0,     0,     0,   107,    19,     0,     0,   108,
  1056.    109,    21,     0,   299,     0,     0,   207,  -228,    91,     0,
  1057.      0,    92,     0,    93,    94,     0,     0,     0,     0,     0,
  1058.     95,     0,     0,    96,     0,     0,     0,     0,    97,    98,
  1059.     99,     0,     0,     0,   100,   101,     0,     0,     0,   102,
  1060.    103,     0,    87,     0,   104,     0,   105,    88,    89,     0,
  1061.     90,   106,     0,     0,     0,   107,     0,     0,     0,   108,
  1062.    109,     0,     0,   378,     0,     0,     0,     0,    91,     0,
  1063.      0,    92,     0,    93,    94,     0,     0,     0,     0,     0,
  1064.     95,     0,     0,    96,     0,     0,     0,     0,    97,    98,
  1065.     99,     0,     0,     0,   100,   101,     0,     0,     0,   102,
  1066.    103,     0,    87,     0,   104,     0,   105,    88,    89,     0,
  1067.     90,   106,     0,     0,     0,   107,     0,     0,     0,   108,
  1068.    109,     0,     0,   430,     0,     0,     0,     0,    91,     0,
  1069.      0,    92,     0,    93,    94,     0,     0,     0,     0,     0,
  1070.     95,     0,     0,    96,     0,     0,     0,     0,    97,    98,
  1071.     99,     0,     0,     0,   100,   101,     0,     0,     0,   102,
  1072.    103,     0,    87,     0,   104,     0,   105,    88,    89,     0,
  1073.     90,   106,     0,     0,     0,   107,     0,     0,     0,   108,
  1074.    109,     0,     0,   466,     0,     0,     0,     0,    91,     0,
  1075.      0,    92,     0,    93,    94,     0,     0,     0,     0,     0,
  1076.     95,     0,     0,    96,     0,     0,     0,     0,    97,    98,
  1077.     99,     0,     0,     0,   100,   101,     0,     0,     0,   102,
  1078.    103,     0,     0,     0,   104,     0,   105,     0,     0,     0,
  1079.      0,   106,     0,     0,     0,   107,     0,     0,     0,   108,
  1080.    109,     0,     0,   649,   614,   704,     6,     7,     8,    88,
  1081.     89,     0,    90,     9,    10,    11,   705,     0,   706,   707,
  1082.    708,   709,   710,   711,   712,   713,   714,   715,   716,    13,
  1083.     91,     0,     0,    92,     0,    93,    94,     0,     0,     0,
  1084.      0,     0,    95,     0,     0,    96,     0,     0,     0,     0,
  1085.     97,    98,    99,     0,     0,     0,   100,   101,     0,     0,
  1086.      0,   102,   103,     0,     0,     0,   104,     0,   105,   717,
  1087.      0,     0,     0,   106,   718,     0,     0,   107,     0,   719,
  1088.      0,   108,   109,     0,   336,   614,    43,     0,     0,     0,
  1089.     88,    89,     0,    90,     0,     0,     0,   705,     0,   706,
  1090.    707,   708,   709,   710,   711,   712,   713,   714,   715,   716,
  1091.      0,    91,     0,     0,    92,     0,    93,    94,     0,     0,
  1092.      0,     0,     0,    95,     0,     0,    96,     0,     0,     0,
  1093.      0,    97,    98,    99,     0,     0,     0,   100,   101,     0,
  1094.     87,     0,   102,   103,     0,    88,    89,   104,    90,   105,
  1095.     44,     0,     0,     0,   106,    45,     0,     0,   107,     0,
  1096.    719,     0,   108,   109,     0,   336,    91,     0,     0,    92,
  1097.      0,    93,    94,     0,     0,     0,     0,     0,    95,     0,
  1098.      0,    96,     0,     0,     0,     0,    97,    98,    99,     0,
  1099.      0,     0,   100,   101,     0,     0,     0,   102,   103,     0,
  1100.      0,     0,   104,     0,   105,     0,     0,     0,     0,   106,
  1101.      0,     0,     0,   107,     0,     0,     0,   108,   109,     0,
  1102.    449,   129,   130,     0,   131,   132,     0,     0,     0,   133,
  1103.    134,   135,   136,   137,   138,   139,   140,   141,   142,   143,
  1104.    144,   145,   146,   147,   148,   149,   150,   151,     0,     0,
  1105.      0,     0,     0,     0,     0,    87,     5,   152,     7,   123,
  1106.     88,    89,     0,    90,     9,    10,    11,   241,   242,   243,
  1107.    244,   245,   246,   247,   248,   249,   250,     0,     0,     0,
  1108.     13,    91,     0,     0,    92,     0,    93,    94,     0,     0,
  1109.      0,   154,     0,    95,     0,     0,    96,     0,     0,     0,
  1110.    274,    97,    98,    99,     0,     0,     0,   100,   101,     0,
  1111.     87,     0,   102,   103,     0,    88,    89,   104,    90,   105,
  1112.     19,     0,     0,     0,   106,    21,     0,     0,   107,     0,
  1113.      0,     0,   108,   109,     0,     0,    91,     0,     0,    92,
  1114.      0,    93,    94,     0,     0,     0,     0,     0,    95,     0,
  1115.      0,    96,     0,     0,     0,     0,    97,    98,    99,     0,
  1116.      0,     0,   100,   101,     0,    87,     0,   102,   103,     0,
  1117.     88,    89,   104,    90,   105,   339,     0,     0,     0,   106,
  1118.      0,     0,     0,   107,     0,     0,     0,   108,   109,     0,
  1119.      0,    91,     0,     0,    92,     0,    93,    94,     0,     0,
  1120.      0,     0,     0,    95,     0,     0,    96,     0,     0,     0,
  1121.      0,    97,    98,    99,     0,     0,     0,   100,   101,     0,
  1122.     87,     0,   102,   103,     0,    88,    89,   104,    90,   105,
  1123.      0,     0,     0,     0,   106,     0,     0,     0,   107,     0,
  1124.    761,     0,   108,   109,     0,     0,    91,     0,     0,    92,
  1125.      0,    93,    94,     0,    87,     0,     0,     0,    95,    88,
  1126.     89,    96,    90,     0,     0,     0,    97,    98,    99,     0,
  1127.      0,     0,   100,   101,     0,     0,     0,   102,   103,     0,
  1128.     91,     0,   104,    92,   105,    93,    94,     0,     0,   106,
  1129.      0,     0,    95,   107,     0,    96,     0,   108,   109,     0,
  1130.     97,    98,    99,     0,     0,     0,   100,   101,     0,    87,
  1131.      0,   214,   103,     0,    88,    89,   104,    90,   105,     0,
  1132.      0,     0,     0,   106,     0,     0,     0,   107,     0,     0,
  1133.      0,   108,   109,     0,     0,    91,     0,     0,    92,     0,
  1134.     93,    94,     0,     0,     0,     0,     0,    95,     0,     0,
  1135.     96,     0,     0,     0,     0,    97,    98,    99,     0,     0,
  1136.      0,   100,   101,     0,     0,     0,   216,   103,     0,     0,
  1137.      0,   104,     0,   105,     0,     0,     0,     0,   106,     0,
  1138.      0,     0,   107,     0,     0,   501,   108,   109,     5,     0,
  1139.      7,   123,     0,     0,     0,     0,     9,    10,    11,     0,
  1140.      0,     0,   501,     0,     0,     5,     0,     7,   123,     0,
  1141.      0,     0,    13,     9,    10,    11,   243,   244,   245,   246,
  1142.    247,   248,   249,   250,     0,     0,     0,     0,     0,    13,
  1143.      0,     0,     0,     4,     0,  -120,     5,     6,     7,     8,
  1144.      0,     0,     0,     0,     9,    10,    11,     0,     0,     0,
  1145.      0,     0,    19,  -401,  -401,  -401,     0,    21,     0,    12,
  1146.     13,     0,   502,  -401,     0,     0,     0,     0,     0,    19,
  1147.   -400,  -400,  -400,     0,    21,     0,     0,     0,     0,   502,
  1148.   -400,    14,    15,  -120,     0,     0,     0,     0,     0,     0,
  1149.      0,     0,  -120,     0,    16,    17,    18,     0,     0,     0,
  1150.     19,     0,     0,     0,    20,    21,    22,    23,     0,     4,
  1151.     24,  -120,     5,     6,     7,     8,     0,     0,     0,     0,
  1152.      9,    10,    11,     0,     0,     0,     0,     0,     4,     0,
  1153.   -120,     5,     6,     7,     8,     0,    13,     0,     0,     9,
  1154.     10,    11,     0,     0,     0,     0,     0,     0,     0,     0,
  1155.      0,     0,     0,     0,     0,    13,     0,   487,   488,  -120,
  1156.      0,   404,     0,     0,     5,     6,     7,     8,  -120,     0,
  1157.    406,     0,     9,    10,    11,     0,    19,     0,  -120,     0,
  1158.      0,    21,     5,    73,     7,    74,    24,  -120,    13,     0,
  1159.      9,    10,    11,     0,     0,    19,     0,     0,     0,     0,
  1160.     21,     5,    73,     7,    74,    24,    13,     0,     0,     9,
  1161.     10,    11,     5,    73,     7,    74,     0,     0,     0,     0,
  1162.      9,    10,    11,     0,     0,    13,     0,     0,    19,     0,
  1163.      0,     0,     0,    21,     0,     0,    13,  -348,     0,     0,
  1164.      0,     0,     0,     0,     0,     0,    19,     0,     0,     0,
  1165.      0,    21,     0,     0,     0,     0,   554,     0,     0,     0,
  1166.      0,     0,     0,     0,     0,    19,     0,     0,     0,     0,
  1167.     21,     0,     0,     0,     0,   587,    19,     0,     0,   129,
  1168.    130,    21,   131,   132,     0,     0,   771,   133,   134,   135,
  1169.    136,   137,   138,   139,   140,   141,   142,   143,   144,   145,
  1170.    146,   147,   148,   149,   150,   151,     0,     0,   129,   130,
  1171.      0,   131,   132,     0,     0,   152,   133,   134,   135,   136,
  1172.    137,   138,   139,   140,   141,   142,   143,   144,   145,   146,
  1173.    147,   148,   149,   150,   151,     0,   153,     0,     0,     0,
  1174.      0,     0,     0,     0,   342,     0,     0,   129,   130,   154,
  1175.    131,   132,     0,     0,     0,   133,   134,   135,   136,   137,
  1176.    138,   139,   140,   141,   142,   143,   144,   145,   146,   147,
  1177.    148,   149,   150,   151,     0,     0,   129,   130,   154,   131,
  1178.    132,     0,     0,   152,   133,   134,   135,   136,   137,   138,
  1179.    139,   140,   141,   142,   143,   144,   145,   146,   147,   148,
  1180.    149,   150,   151,     0,    65,     5,    73,     7,    74,     0,
  1181.      0,     0,   543,     9,    10,    11,     5,   154,     7,   267,
  1182.      0,     0,     0,     0,     9,    10,    11,     0,     0,    13,
  1183.      0,     0,     0,     5,     6,     7,     8,     0,     0,   581,
  1184.     13,     9,    10,    11,     0,     0,   154,     0,     0,     0,
  1185.      0,     0,   515,     0,     0,     0,     0,    13,     0,     0,
  1186.      0,   511,   262,   260,     0,     0,     0,     0,     0,    19,
  1187.      0,     0,   261,   262,    21,     0,     0,     0,     0,     0,
  1188.     19,     5,     6,     7,     8,    21,   790,     0,     0,     9,
  1189.     10,    11,     0,     0,     0,     0,     0,    19,     0,     0,
  1190.      0,     0,    21,     0,     0,    13,     0,     0,     0,     0,
  1191.      0,     0,   234,   235,   236,   791,   237,   238,   239,   240,
  1192.    241,   242,   243,   244,   245,   246,   247,   248,   249,   250,
  1193.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1194.      0,     0,   307,     0,     0,    19,     0,   234,   235,   236,
  1195.     21,   237,   238,   239,   240,   241,   242,   243,   244,   245,
  1196.    246,   247,   248,   249,   250,   234,   235,   236,   831,   237,
  1197.    238,   239,   240,   241,   242,   243,   244,   245,   246,   247,
  1198.    248,   249,   250,   234,   235,   236,     0,   237,   238,   239,
  1199.    240,   241,   242,   243,   244,   245,   246,   247,   248,   249,
  1200.    250
  1201. };
  1202.  
  1203. static const short yycheck[] = {    52,
  1204.     53,    21,   189,     9,    10,    11,    76,    72,   296,    28,
  1205.     16,    17,    30,   288,    20,    83,    22,    23,     2,     3,
  1206.      2,     3,    83,   315,   440,    29,    30,   225,    55,   157,
  1207.    255,   261,   157,    78,   303,    53,    56,   184,   125,   316,
  1208.     60,   128,   377,   586,    93,    94,   397,   407,    67,   102,
  1209.     99,    50,    58,   176,   678,   754,     1,    76,    64,   755,
  1210.      1,   110,     9,     1,   608,    83,   185,   395,     1,    10,
  1211.     39,     3,     4,    79,   657,   265,    27,    39,     3,     4,
  1212.      3,     4,     3,     4,   102,    46,    39,   314,   102,    95,
  1213.    181,    60,   675,   320,    60,    61,    39,    31,    77,    39,
  1214.    228,    60,    61,    82,   803,    39,    46,     0,   295,     0,
  1215.    128,    77,   736,   260,    83,    77,    39,   386,    77,    46,
  1216.     60,    82,    60,   667,    77,   824,    51,   180,    51,   828,
  1217.     77,   830,    83,   829,    77,   153,    68,    60,    83,   153,
  1218.    839,    73,    83,    68,   374,    78,   152,    68,    73,   194,
  1219.     73,    83,    73,     3,   173,   779,   162,   163,   854,   165,
  1220.    166,   214,    83,   216,    60,   171,   185,   495,   867,   218,
  1221.     60,   233,   234,   235,   227,   237,   238,   239,   240,   241,
  1222.    242,   243,   244,   245,   246,   247,   248,   249,   250,   312,
  1223.    309,    78,   210,   383,   610,    82,   214,   203,   216,    78,
  1224.    214,    51,   216,   256,   208,    83,   210,   476,   483,   262,
  1225.     60,   229,   211,   304,   213,   229,   576,   345,   569,     3,
  1226.    265,     3,     4,   314,   230,     3,     4,   770,    66,   320,
  1227.     83,    39,   560,     3,     4,   326,    77,   328,    46,     3,
  1228.      4,    82,     3,     4,    83,   580,    27,   253,   254,     3,
  1229.      4,    27,   270,     7,    60,   671,   270,     3,     4,   321,
  1230.    280,    39,    39,     3,   317,    79,    77,    51,     8,    46,
  1231.    539,    82,   278,    51,     3,     4,    60,    61,     7,    60,
  1232.     61,   511,    60,    77,    60,    61,    68,   562,    82,   338,
  1233.    309,    73,    79,     3,     4,    73,    60,    51,    68,    60,
  1234.    577,    83,    83,    73,    68,    51,    60,    68,    60,    73,
  1235.    602,     7,    73,     3,    60,    60,   322,     7,   543,    73,
  1236.    407,   408,    51,   451,    60,   523,    77,    73,   381,    82,
  1237.      3,    60,    61,   401,     7,    60,    61,   606,   383,   608,
  1238.    401,    51,   470,   477,    51,   470,   576,   481,     9,   579,
  1239.     60,    61,    77,    60,    61,    51,    69,    70,    71,   775,
  1240.     76,    51,   637,   510,    60,    61,    79,   659,   515,    78,
  1241.     60,    61,   390,    82,   394,    77,   390,    78,    51,    49,
  1242.     50,    82,     3,   401,    78,    79,     7,    60,   407,   408,
  1243.    408,    78,    77,   397,    64,    82,   458,   531,   667,   624,
  1244.    534,    78,   386,    39,   386,    82,    55,    56,   700,    58,
  1245.     59,    60,    61,   397,     4,   397,     6,     7,   546,    69,
  1246.     70,    71,    12,    13,    14,    60,    61,    78,    77,    79,
  1247.      1,    82,    78,     4,     5,     6,     7,   421,    28,   421,
  1248.     78,    12,    13,    14,    82,   536,    60,    61,   539,    69,
  1249.     70,    71,    78,    83,   472,    60,    82,    28,    31,    79,
  1250.     37,    78,   468,    82,   739,    82,    78,   471,   530,    78,
  1251.     82,   490,   537,    82,   492,   673,    78,    79,    68,    78,
  1252.    542,    60,    61,    73,    60,    61,   504,   491,   492,    78,
  1253.     79,   475,   511,   475,    51,    52,    53,    68,   568,   503,
  1254.    504,    68,    73,    77,   572,   703,    90,    91,   573,   574,
  1255.    528,   572,    83,    77,    83,    77,   607,   608,   588,    69,
  1256.     70,    71,    78,   527,   528,   578,    77,    10,    77,    79,
  1257.     78,    64,   538,    77,   553,    27,   598,   564,   565,   601,
  1258.     45,    46,    47,    48,    49,    50,    51,    52,    53,   568,
  1259.      9,    83,   558,     4,   572,     6,     7,   576,    84,    78,
  1260.    579,    12,    13,    14,    60,   569,    37,    79,    77,   588,
  1261.     39,    79,    79,   861,    77,    77,   667,    28,    79,    77,
  1262.    642,   869,    77,    77,    77,   569,    39,   569,     1,    77,
  1263.     77,     4,     5,     6,     7,   657,     6,     7,   660,    12,
  1264.     13,    14,    12,    13,    14,    84,   804,    84,    83,   615,
  1265.     64,   798,    64,   675,    27,    28,   678,    68,    31,    77,
  1266.    673,   819,    73,   821,    37,   690,    60,   689,    77,     1,
  1267.     37,    33,     4,     5,     6,     7,    84,    79,    10,    82,
  1268.     12,    13,    14,    84,     4,     5,     6,     7,   710,    78,
  1269.    703,    82,    12,    13,    14,    68,    28,   663,    77,     3,
  1270.     73,   714,    78,   682,    78,    78,    39,   673,    28,    82,
  1271.     83,    64,    84,     1,   736,     3,     4,     5,     6,     7,
  1272.     60,    79,    10,    39,    12,    13,    14,    39,    79,   673,
  1273.     82,   673,    39,    64,    82,    84,    68,   703,   718,   752,
  1274.     28,    73,   772,   756,    79,   770,   724,    77,    68,   715,
  1275.    763,    83,    37,    73,     5,     6,     7,   779,    78,   723,
  1276.    724,    12,    13,    14,    64,   778,    77,    39,   790,    79,
  1277.     60,    60,   785,    47,    48,    49,    50,    51,    52,    53,
  1278.     68,    60,   795,    39,    78,    73,    78,     7,    16,    77,
  1279.     39,   804,     1,   772,     3,     4,     5,     6,     7,     8,
  1280.      9,    78,    11,    12,    13,    14,    15,    78,    17,    18,
  1281.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  1282.     29,    79,     8,    32,    60,    34,    35,    49,    50,    51,
  1283.     52,    53,    41,    78,    78,    44,    60,   850,   804,    64,
  1284.     49,    50,    51,    82,    77,    17,    55,    56,    78,    78,
  1285.     77,    60,    61,     8,    77,     9,    65,    78,    67,    68,
  1286.     77,    77,    60,    72,    73,    78,    78,    76,    82,    78,
  1287.     79,    80,    81,     1,    83,     3,     4,     5,     6,     7,
  1288.      8,     9,    78,    11,    12,    13,    14,    15,    77,    17,
  1289.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1290.     28,    29,    77,     0,    32,    78,    34,    35,    78,     0,
  1291.      3,   755,   304,    41,    55,    56,    44,    58,    59,    60,
  1292.     61,    49,    50,    51,   607,    77,   268,    55,    56,   656,
  1293.    598,   324,    60,    61,   536,   203,   322,    65,   328,    67,
  1294.     68,   607,   804,   540,    72,    73,   804,   851,    76,   389,
  1295.     78,   853,    80,    81,     1,    83,     3,     4,   380,   389,
  1296.    520,     8,     9,    58,    11,   500,   574,   690,    15,   687,
  1297.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  1298.     27,   493,    29,   279,   475,    32,   470,    34,    35,   682,
  1299.    385,   546,   624,    -1,    41,   345,    -1,    44,   385,    -1,
  1300.     -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,
  1301.     -1,    -1,    -1,    60,    61,    -1,    -1,    -1,    65,    -1,
  1302.     67,    68,    -1,    -1,    -1,    72,    73,    -1,    -1,    76,
  1303.     -1,    78,    79,    80,    81,     1,    83,     3,     4,    -1,
  1304.     -1,    -1,     8,     9,    -1,    11,    -1,    -1,    -1,    15,
  1305.     -1,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  1306.     26,    27,    -1,    29,    -1,    -1,    32,    -1,    34,    35,
  1307.     -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,    44,    -1,
  1308.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  1309.     56,    -1,    -1,    -1,    60,    61,    -1,    -1,    -1,    65,
  1310.     -1,    67,    68,    -1,    -1,    -1,    72,    73,    -1,    -1,
  1311.     76,    -1,    78,    79,    80,    81,     1,    83,     3,     4,
  1312.     -1,    -1,    -1,     8,     9,    -1,    11,    -1,    -1,    -1,
  1313.     15,    -1,    17,    18,    19,    20,    21,    22,    23,    24,
  1314.     25,    26,    27,    -1,    29,    -1,    -1,    32,    -1,    34,
  1315.     35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,    44,
  1316.     -1,    -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,
  1317.     55,    56,    -1,    -1,    -1,    60,    61,    -1,    -1,    -1,
  1318.     65,    -1,    67,    68,    -1,    -1,    -1,    72,    73,    -1,
  1319.     -1,    76,    -1,    78,    -1,    80,    81,     1,    83,     3,
  1320.      4,    -1,    -1,    -1,     8,     9,    -1,    11,    -1,    -1,
  1321.     -1,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1322.     24,    25,    26,    27,    -1,    29,    -1,    -1,    32,    -1,
  1323.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1324.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,    -1,
  1325.     -1,    55,    56,    -1,    -1,    -1,    60,    61,    -1,    -1,
  1326.     -1,    65,    -1,    67,    68,    -1,    -1,    -1,    72,    73,
  1327.     -1,    -1,    76,    -1,    78,    -1,    80,    81,     1,    83,
  1328.      3,     4,    -1,     6,     7,     8,     9,    -1,    11,    12,
  1329.     13,    14,    41,    42,    43,    44,    45,    46,    47,    48,
  1330.     49,    50,    51,    52,    53,    28,    29,    -1,    -1,    32,
  1331.     -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  1332.     -1,    44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,
  1333.     -1,    -1,    55,    56,    -1,    -1,    -1,    60,    61,    -1,
  1334.     -1,    -1,    65,    -1,    67,    68,    -1,    -1,    -1,    72,
  1335.     73,    -1,    -1,    76,    -1,    -1,    -1,    80,    81,     1,
  1336.     83,     3,     4,    -1,    -1,    -1,     8,     9,    38,    11,
  1337.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1338.     50,    51,    52,    53,    -1,    -1,    -1,    29,    -1,    -1,
  1339.     32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,
  1340.     -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,    51,
  1341.     -1,    -1,    -1,    55,    56,    -1,    -1,    59,    60,    61,
  1342.     -1,    -1,    -1,    65,    -1,    67,    68,    -1,    -1,    -1,
  1343.     72,    73,    -1,    -1,    76,    -1,    -1,    79,    80,    81,
  1344.      1,    83,     3,     4,    -1,    -1,    -1,     8,     9,    -1,
  1345.     11,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  1346.     51,    52,    53,    -1,    -1,    -1,    -1,    -1,    29,    -1,
  1347.     -1,    32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,
  1348.     41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,
  1349.     51,    -1,    -1,    -1,    55,    56,    -1,    -1,    59,    60,
  1350.     61,    -1,    -1,    -1,    65,    -1,    67,    68,    -1,    -1,
  1351.     -1,    72,    73,    -1,    -1,    76,    -1,    -1,    79,    80,
  1352.     81,     1,    83,     3,     4,    -1,    -1,    -1,     8,     9,
  1353.     -1,    11,    43,    44,    45,    46,    47,    48,    49,    50,
  1354.     51,    52,    53,    -1,    -1,    -1,    -1,    -1,    -1,    29,
  1355.     -1,    -1,    32,    -1,    34,    35,    -1,    -1,    -1,    -1,
  1356.     -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,
  1357.     50,    51,    -1,    -1,    -1,    55,    56,    -1,    -1,    59,
  1358.     60,    61,    -1,    -1,    -1,    65,    -1,    67,    68,    -1,
  1359.     -1,    -1,    72,    73,    -1,    -1,    76,     1,    -1,     3,
  1360.     80,    81,    -1,    83,     8,     9,     1,    11,    -1,     4,
  1361.      5,     6,     7,    -1,    -1,    -1,    -1,    12,    13,    14,
  1362.     -1,    -1,    -1,    -1,    -1,    29,    -1,    -1,    32,    -1,
  1363.     34,    35,    27,    28,    -1,    -1,    31,    41,    -1,    -1,
  1364.     44,    -1,    37,    -1,    -1,    49,    50,    51,    -1,    -1,
  1365.     -1,    55,    56,    -1,    -1,    -1,    60,    61,    -1,    -1,
  1366.     -1,    65,    -1,    67,    -1,    60,    61,    -1,    72,    -1,
  1367.     -1,    -1,    76,    68,    -1,    -1,    80,    81,    73,    83,
  1368.     -1,    -1,    -1,    78,    -1,    -1,     1,    82,    83,     4,
  1369.      5,     6,     7,    -1,    -1,    -1,    -1,    12,    13,    14,
  1370.      4,    -1,     6,     7,    -1,    -1,    -1,    -1,    12,    13,
  1371.     14,    -1,    27,    28,     1,    -1,    31,     4,     5,     6,
  1372.      7,    -1,    37,    -1,    28,    12,    13,    14,    -1,    -1,
  1373.      4,     5,     6,     7,    -1,    -1,    10,    -1,    12,    13,
  1374.     14,    28,    -1,    -1,     1,    60,    61,     4,     5,     6,
  1375.      7,    -1,    -1,    68,    28,    12,    13,    14,    73,    -1,
  1376.     -1,    -1,    -1,    78,    68,    -1,    -1,    82,    83,    73,
  1377.     -1,    28,     3,    -1,    78,    79,    -1,     8,     9,     1,
  1378.     11,    68,     4,    -1,     6,     7,    73,    -1,    -1,    -1,
  1379.     12,    13,    14,    -1,    68,    -1,    83,    -1,    29,    73,
  1380.     -1,    32,    -1,    34,    35,    -1,    28,    -1,    -1,    -1,
  1381.     41,    68,    -1,    44,    -1,    -1,    73,    -1,    49,    50,
  1382.     51,    -1,    -1,    -1,    55,    56,    83,    -1,    -1,    60,
  1383.     61,    -1,     3,    -1,    65,    -1,    67,     8,     9,    -1,
  1384.     11,    72,    -1,    -1,    -1,    76,    68,    -1,    -1,    80,
  1385.     81,    73,    -1,    84,    -1,    -1,    78,    79,    29,    -1,
  1386.     -1,    32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,
  1387.     41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,
  1388.     51,    -1,    -1,    -1,    55,    56,    -1,    -1,    -1,    60,
  1389.     61,    -1,     3,    -1,    65,    -1,    67,     8,     9,    -1,
  1390.     11,    72,    -1,    -1,    -1,    76,    -1,    -1,    -1,    80,
  1391.     81,    -1,    -1,    84,    -1,    -1,    -1,    -1,    29,    -1,
  1392.     -1,    32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,
  1393.     41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,
  1394.     51,    -1,    -1,    -1,    55,    56,    -1,    -1,    -1,    60,
  1395.     61,    -1,     3,    -1,    65,    -1,    67,     8,     9,    -1,
  1396.     11,    72,    -1,    -1,    -1,    76,    -1,    -1,    -1,    80,
  1397.     81,    -1,    -1,    84,    -1,    -1,    -1,    -1,    29,    -1,
  1398.     -1,    32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,
  1399.     41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,
  1400.     51,    -1,    -1,    -1,    55,    56,    -1,    -1,    -1,    60,
  1401.     61,    -1,     3,    -1,    65,    -1,    67,     8,     9,    -1,
  1402.     11,    72,    -1,    -1,    -1,    76,    -1,    -1,    -1,    80,
  1403.     81,    -1,    -1,    84,    -1,    -1,    -1,    -1,    29,    -1,
  1404.     -1,    32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,
  1405.     41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,
  1406.     51,    -1,    -1,    -1,    55,    56,    -1,    -1,    -1,    60,
  1407.     61,    -1,    -1,    -1,    65,    -1,    67,    -1,    -1,    -1,
  1408.     -1,    72,    -1,    -1,    -1,    76,    -1,    -1,    -1,    80,
  1409.     81,    -1,    -1,    84,     3,     4,     5,     6,     7,     8,
  1410.      9,    -1,    11,    12,    13,    14,    15,    -1,    17,    18,
  1411.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  1412.     29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,    -1,
  1413.     -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  1414.     49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,    -1,
  1415.     -1,    60,    61,    -1,    -1,    -1,    65,    -1,    67,    68,
  1416.     -1,    -1,    -1,    72,    73,    -1,    -1,    76,    -1,    78,
  1417.     -1,    80,    81,    -1,    83,     3,     4,    -1,    -1,    -1,
  1418.      8,     9,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,
  1419.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  1420.     -1,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  1421.     -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  1422.     -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,
  1423.      3,    -1,    60,    61,    -1,     8,     9,    65,    11,    67,
  1424.     68,    -1,    -1,    -1,    72,    73,    -1,    -1,    76,    -1,
  1425.     78,    -1,    80,    81,    -1,    83,    29,    -1,    -1,    32,
  1426.     -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  1427.     -1,    44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,
  1428.     -1,    -1,    55,    56,    -1,    -1,    -1,    60,    61,    -1,
  1429.     -1,    -1,    65,    -1,    67,    -1,    -1,    -1,    -1,    72,
  1430.     -1,    -1,    -1,    76,    -1,    -1,    -1,    80,    81,    -1,
  1431.     83,     3,     4,    -1,     6,     7,    -1,    -1,    -1,    11,
  1432.     12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
  1433.     22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
  1434.     -1,    -1,    -1,    -1,    -1,     3,     4,    39,     6,     7,
  1435.      8,     9,    -1,    11,    12,    13,    14,    44,    45,    46,
  1436.     47,    48,    49,    50,    51,    52,    53,    -1,    -1,    -1,
  1437.     28,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  1438.     -1,    73,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  1439.     82,    49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,
  1440.      3,    -1,    60,    61,    -1,     8,     9,    65,    11,    67,
  1441.     68,    -1,    -1,    -1,    72,    73,    -1,    -1,    76,    -1,
  1442.     -1,    -1,    80,    81,    -1,    -1,    29,    -1,    -1,    32,
  1443.     -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  1444.     -1,    44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,
  1445.     -1,    -1,    55,    56,    -1,     3,    -1,    60,    61,    -1,
  1446.      8,     9,    65,    11,    67,    68,    -1,    -1,    -1,    72,
  1447.     -1,    -1,    -1,    76,    -1,    -1,    -1,    80,    81,    -1,
  1448.     -1,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  1449.     -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  1450.     -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,
  1451.      3,    -1,    60,    61,    -1,     8,     9,    65,    11,    67,
  1452.     -1,    -1,    -1,    -1,    72,    -1,    -1,    -1,    76,    -1,
  1453.     78,    -1,    80,    81,    -1,    -1,    29,    -1,    -1,    32,
  1454.     -1,    34,    35,    -1,     3,    -1,    -1,    -1,    41,     8,
  1455.      9,    44,    11,    -1,    -1,    -1,    49,    50,    51,    -1,
  1456.     -1,    -1,    55,    56,    -1,    -1,    -1,    60,    61,    -1,
  1457.     29,    -1,    65,    32,    67,    34,    35,    -1,    -1,    72,
  1458.     -1,    -1,    41,    76,    -1,    44,    -1,    80,    81,    -1,
  1459.     49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,     3,
  1460.     -1,    60,    61,    -1,     8,     9,    65,    11,    67,    -1,
  1461.     -1,    -1,    -1,    72,    -1,    -1,    -1,    76,    -1,    -1,
  1462.     -1,    80,    81,    -1,    -1,    29,    -1,    -1,    32,    -1,
  1463.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1464.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,    -1,
  1465.     -1,    55,    56,    -1,    -1,    -1,    60,    61,    -1,    -1,
  1466.     -1,    65,    -1,    67,    -1,    -1,    -1,    -1,    72,    -1,
  1467.     -1,    -1,    76,    -1,    -1,     1,    80,    81,     4,    -1,
  1468.      6,     7,    -1,    -1,    -1,    -1,    12,    13,    14,    -1,
  1469.     -1,    -1,     1,    -1,    -1,     4,    -1,     6,     7,    -1,
  1470.     -1,    -1,    28,    12,    13,    14,    46,    47,    48,    49,
  1471.     50,    51,    52,    53,    -1,    -1,    -1,    -1,    -1,    28,
  1472.     -1,    -1,    -1,     1,    -1,     3,     4,     5,     6,     7,
  1473.     -1,    -1,    -1,    -1,    12,    13,    14,    -1,    -1,    -1,
  1474.     -1,    -1,    68,    69,    70,    71,    -1,    73,    -1,    27,
  1475.     28,    -1,    78,    79,    -1,    -1,    -1,    -1,    -1,    68,
  1476.     69,    70,    71,    -1,    73,    -1,    -1,    -1,    -1,    78,
  1477.     79,    49,    50,    51,    -1,    -1,    -1,    -1,    -1,    -1,
  1478.     -1,    -1,    60,    -1,    62,    63,    64,    -1,    -1,    -1,
  1479.     68,    -1,    -1,    -1,    72,    73,    74,    75,    -1,     1,
  1480.     78,     3,     4,     5,     6,     7,    -1,    -1,    -1,    -1,
  1481.     12,    13,    14,    -1,    -1,    -1,    -1,    -1,     1,    -1,
  1482.      3,     4,     5,     6,     7,    -1,    28,    -1,    -1,    12,
  1483.     13,    14,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1484.     -1,    -1,    -1,    -1,    -1,    28,    -1,    49,    50,    51,
  1485.     -1,     1,    -1,    -1,     4,     5,     6,     7,    60,    -1,
  1486.     10,    -1,    12,    13,    14,    -1,    68,    -1,    51,    -1,
  1487.     -1,    73,     4,     5,     6,     7,    78,    60,    28,    -1,
  1488.     12,    13,    14,    -1,    -1,    68,    -1,    -1,    -1,    -1,
  1489.     73,     4,     5,     6,     7,    78,    28,    -1,    -1,    12,
  1490.     13,    14,     4,     5,     6,     7,    -1,    -1,    -1,    -1,
  1491.     12,    13,    14,    -1,    -1,    28,    -1,    -1,    68,    -1,
  1492.     -1,    -1,    -1,    73,    -1,    -1,    28,    77,    -1,    -1,
  1493.     -1,    -1,    -1,    -1,    -1,    -1,    68,    -1,    -1,    -1,
  1494.     -1,    73,    -1,    -1,    -1,    -1,    78,    -1,    -1,    -1,
  1495.     -1,    -1,    -1,    -1,    -1,    68,    -1,    -1,    -1,    -1,
  1496.     73,    -1,    -1,    -1,    -1,    78,    68,    -1,    -1,     3,
  1497.      4,    73,     6,     7,    -1,    -1,    78,    11,    12,    13,
  1498.     14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  1499.     24,    25,    26,    27,    28,    29,    -1,    -1,     3,     4,
  1500.     -1,     6,     7,    -1,    -1,    39,    11,    12,    13,    14,
  1501.     15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  1502.     25,    26,    27,    28,    29,    -1,    60,    -1,    -1,    -1,
  1503.     -1,    -1,    -1,    -1,    39,    -1,    -1,     3,     4,    73,
  1504.      6,     7,    -1,    -1,    -1,    11,    12,    13,    14,    15,
  1505.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  1506.     26,    27,    28,    29,    -1,    -1,     3,     4,    73,     6,
  1507.      7,    -1,    -1,    39,    11,    12,    13,    14,    15,    16,
  1508.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  1509.     27,    28,    29,    -1,     3,     4,     5,     6,     7,    -1,
  1510.     -1,    -1,    39,    12,    13,    14,     4,    73,     6,     7,
  1511.     -1,    -1,    -1,    -1,    12,    13,    14,    -1,    -1,    28,
  1512.     -1,    -1,    -1,     4,     5,     6,     7,    -1,    -1,    10,
  1513.     28,    12,    13,    14,    -1,    -1,    73,    -1,    -1,    -1,
  1514.     -1,    -1,    51,    -1,    -1,    -1,    -1,    28,    -1,    -1,
  1515.     -1,    60,    61,    51,    -1,    -1,    -1,    -1,    -1,    68,
  1516.     -1,    -1,    60,    61,    73,    -1,    -1,    -1,    -1,    -1,
  1517.     68,     4,     5,     6,     7,    73,    10,    -1,    -1,    12,
  1518.     13,    14,    -1,    -1,    -1,    -1,    -1,    68,    -1,    -1,
  1519.     -1,    -1,    73,    -1,    -1,    28,    -1,    -1,    -1,    -1,
  1520.     -1,    -1,    36,    37,    38,    39,    40,    41,    42,    43,
  1521.     44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
  1522.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1523.     -1,    -1,    31,    -1,    -1,    68,    -1,    36,    37,    38,
  1524.     73,    40,    41,    42,    43,    44,    45,    46,    47,    48,
  1525.     49,    50,    51,    52,    53,    36,    37,    38,    39,    40,
  1526.     41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  1527.     51,    52,    53,    36,    37,    38,    -1,    40,    41,    42,
  1528.     43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  1529.     53
  1530. };
  1531. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  1532. #line 3 "/usr/lib/bison.simple"
  1533.  
  1534. /* Skeleton output parser for bison,
  1535.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  1536.  
  1537.    This program is free software; you can redistribute it and/or modify
  1538.    it under the terms of the GNU General Public License as published by
  1539.    the Free Software Foundation; either version 1, or (at your option)
  1540.    any later version.
  1541.  
  1542.    This program is distributed in the hope that it will be useful,
  1543.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  1544.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1545.    GNU General Public License for more details.
  1546.  
  1547.    You should have received a copy of the GNU General Public License
  1548.    along with this program; if not, write to the Free Software
  1549.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1550.  
  1551.  
  1552. #ifndef alloca
  1553. #ifdef __GNUC__
  1554. #define alloca __builtin_alloca
  1555. #else /* not GNU C.  */
  1556. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  1557. #include <alloca.h>
  1558. #else /* not sparc */
  1559. #if defined (MSDOS) && !defined (__TURBOC__)
  1560. #include <malloc.h>
  1561. #else /* not MSDOS, or __TURBOC__ */
  1562. #if defined(_AIX)
  1563. #include <malloc.h>
  1564.  #pragma alloca
  1565. #else /* not MSDOS, __TURBOC__, or _AIX */
  1566. #ifdef __hpux
  1567. #ifdef __cplusplus
  1568. extern "C" {
  1569. void *alloca (unsigned int);
  1570. };
  1571. #else /* not __cplusplus */
  1572. void *alloca ();
  1573. #endif /* not __cplusplus */
  1574. #endif /* __hpux */
  1575. #endif /* not _AIX */
  1576. #endif /* not MSDOS, or __TURBOC__ */
  1577. #endif /* not sparc.  */
  1578. #endif /* not GNU C.  */
  1579. #endif /* alloca not defined.  */
  1580.  
  1581. /* This is the parser code that is written into each bison parser
  1582.   when the %semantic_parser declaration is not specified in the grammar.
  1583.   It was written by Richard Stallman by simplifying the hairy parser
  1584.   used when %semantic_parser is specified.  */
  1585.  
  1586. /* Note: there must be only one dollar sign in this file.
  1587.    It is replaced by the list of actions, each action
  1588.    as one case of the switch.  */
  1589.  
  1590. #define yyerrok        (yyerrstatus = 0)
  1591. #define yyclearin    (yychar = YYEMPTY)
  1592. #define YYEMPTY        -2
  1593. #define YYEOF        0
  1594. #define YYACCEPT    return(0)
  1595. #define YYABORT     return(1)
  1596. #define YYERROR        goto yyerrlab1
  1597. /* Like YYERROR except do call yyerror.
  1598.    This remains here temporarily to ease the
  1599.    transition to the new meaning of YYERROR, for GCC.
  1600.    Once GCC version 2 has supplanted version 1, this can go.  */
  1601. #define YYFAIL        goto yyerrlab
  1602. #define YYRECOVERING()  (!!yyerrstatus)
  1603. #define YYBACKUP(token, value) \
  1604. do                                \
  1605.   if (yychar == YYEMPTY && yylen == 1)                \
  1606.     { yychar = (token), yylval = (value);            \
  1607.       yychar1 = YYTRANSLATE (yychar);                \
  1608.       YYPOPSTACK;                        \
  1609.       goto yybackup;                        \
  1610.     }                                \
  1611.   else                                \
  1612.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  1613. while (0)
  1614.  
  1615. #define YYTERROR    1
  1616. #define YYERRCODE    256
  1617.  
  1618. #ifndef YYPURE
  1619. #define YYLEX        yylex()
  1620. #endif
  1621.  
  1622. #ifdef YYPURE
  1623. #ifdef YYLSP_NEEDED
  1624. #define YYLEX        yylex(&yylval, &yylloc)
  1625. #else
  1626. #define YYLEX        yylex(&yylval)
  1627. #endif
  1628. #endif
  1629.  
  1630. /* If nonreentrant, generate the variables here */
  1631.  
  1632. #ifndef YYPURE
  1633.  
  1634. int    yychar;            /*  the lookahead symbol        */
  1635. YYSTYPE    yylval;            /*  the semantic value of the        */
  1636.                 /*  lookahead symbol            */
  1637.  
  1638. #ifdef YYLSP_NEEDED
  1639. YYLTYPE yylloc;            /*  location data for the lookahead    */
  1640.                 /*  symbol                */
  1641. #endif
  1642.  
  1643. int yynerrs;            /*  number of parse errors so far       */
  1644. #endif  /* not YYPURE */
  1645.  
  1646. #if YYDEBUG != 0
  1647. int yydebug;            /*  nonzero means print parse trace    */
  1648. /* Since this is uninitialized, it does not stop multiple parsers
  1649.    from coexisting.  */
  1650. #endif
  1651.  
  1652. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  1653.  
  1654. #ifndef    YYINITDEPTH
  1655. #define YYINITDEPTH 200
  1656. #endif
  1657.  
  1658. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  1659.     (effective only if the built-in stack extension method is used).  */
  1660.  
  1661. #if YYMAXDEPTH == 0
  1662. #undef YYMAXDEPTH
  1663. #endif
  1664.  
  1665. #ifndef YYMAXDEPTH
  1666. #define YYMAXDEPTH 10000
  1667. #endif
  1668.  
  1669. /* Prevent warning if -Wstrict-prototypes.  */
  1670. #ifdef __GNUC__
  1671. int yyparse (void);
  1672. #endif
  1673.  
  1674. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  1675. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  1676. #else                /* not GNU C or C++ */
  1677. #ifndef __cplusplus
  1678.  
  1679. /* This is the most reliable way to avoid incompatibilities
  1680.    in available built-in functions on various systems.  */
  1681. static void
  1682. __yy_bcopy (from, to, count)
  1683.      char *from;
  1684.      char *to;
  1685.      int count;
  1686. {
  1687.   register char *f = from;
  1688.   register char *t = to;
  1689.   register int i = count;
  1690.  
  1691.   while (i-- > 0)
  1692.     *t++ = *f++;
  1693. }
  1694.  
  1695. #else /* __cplusplus */
  1696.  
  1697. /* This is the most reliable way to avoid incompatibilities
  1698.    in available built-in functions on various systems.  */
  1699. static void
  1700. __yy_bcopy (char *from, char *to, int count)
  1701. {
  1702.   register char *f = from;
  1703.   register char *t = to;
  1704.   register int i = count;
  1705.  
  1706.   while (i-- > 0)
  1707.     *t++ = *f++;
  1708. }
  1709.  
  1710. #endif
  1711. #endif
  1712.  
  1713. #line 184 "/usr/lib/bison.simple"
  1714. int
  1715. yyparse()
  1716. {
  1717.   register int yystate;
  1718.   register int yyn;
  1719.   register short *yyssp;
  1720.   register YYSTYPE *yyvsp;
  1721.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  1722.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  1723.  
  1724.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  1725.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  1726.  
  1727.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  1728.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  1729.  
  1730. #ifdef YYLSP_NEEDED
  1731.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  1732.   YYLTYPE *yyls = yylsa;
  1733.   YYLTYPE *yylsp;
  1734.  
  1735. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  1736. #else
  1737. #define YYPOPSTACK   (yyvsp--, yyssp--)
  1738. #endif
  1739.  
  1740.   int yystacksize = YYINITDEPTH;
  1741.  
  1742. #ifdef YYPURE
  1743.   int yychar;
  1744.   YYSTYPE yylval;
  1745.   int yynerrs;
  1746. #ifdef YYLSP_NEEDED
  1747.   YYLTYPE yylloc;
  1748. #endif
  1749. #endif
  1750.  
  1751.   YYSTYPE yyval;        /*  the variable used to return        */
  1752.                 /*  semantic values from the action    */
  1753.                 /*  routines                */
  1754.  
  1755.   int yylen;
  1756.  
  1757. #if YYDEBUG != 0
  1758.   if (yydebug)
  1759.     fprintf(stderr, "Starting parse\n");
  1760. #endif
  1761.  
  1762.   yystate = 0;
  1763.   yyerrstatus = 0;
  1764.   yynerrs = 0;
  1765.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  1766.  
  1767.   /* Initialize stack pointers.
  1768.      Waste one element of value and location stack
  1769.      so that they stay on the same level as the state stack.
  1770.      The wasted elements are never initialized.  */
  1771.  
  1772.   yyssp = yyss - 1;
  1773.   yyvsp = yyvs;
  1774. #ifdef YYLSP_NEEDED
  1775.   yylsp = yyls;
  1776. #endif
  1777.  
  1778. /* Push a new state, which is found in  yystate  .  */
  1779. /* In all cases, when you get here, the value and location stacks
  1780.    have just been pushed. so pushing a state here evens the stacks.  */
  1781. yynewstate:
  1782.  
  1783.   *++yyssp = yystate;
  1784.  
  1785.   if (yyssp >= yyss + yystacksize - 1)
  1786.     {
  1787.       /* Give user a chance to reallocate the stack */
  1788.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  1789.       YYSTYPE *yyvs1 = yyvs;
  1790.       short *yyss1 = yyss;
  1791. #ifdef YYLSP_NEEDED
  1792.       YYLTYPE *yyls1 = yyls;
  1793. #endif
  1794.  
  1795.       /* Get the current used size of the three stacks, in elements.  */
  1796.       int size = yyssp - yyss + 1;
  1797.  
  1798. #ifdef yyoverflow
  1799.       /* Each stack pointer address is followed by the size of
  1800.      the data in use in that stack, in bytes.  */
  1801. #ifdef YYLSP_NEEDED
  1802.       /* This used to be a conditional around just the two extra args,
  1803.      but that might be undefined if yyoverflow is a macro.  */
  1804.       yyoverflow("parser stack overflow",
  1805.          &yyss1, size * sizeof (*yyssp),
  1806.          &yyvs1, size * sizeof (*yyvsp),
  1807.          &yyls1, size * sizeof (*yylsp),
  1808.          &yystacksize);
  1809. #else
  1810.       yyoverflow("parser stack overflow",
  1811.          &yyss1, size * sizeof (*yyssp),
  1812.          &yyvs1, size * sizeof (*yyvsp),
  1813.          &yystacksize);
  1814. #endif
  1815.  
  1816.       yyss = yyss1; yyvs = yyvs1;
  1817. #ifdef YYLSP_NEEDED
  1818.       yyls = yyls1;
  1819. #endif
  1820. #else /* no yyoverflow */
  1821.       /* Extend the stack our own way.  */
  1822.       if (yystacksize >= YYMAXDEPTH)
  1823.     {
  1824.       yyerror("parser stack overflow");
  1825.       return 2;
  1826.     }
  1827.       yystacksize *= 2;
  1828.       if (yystacksize > YYMAXDEPTH)
  1829.     yystacksize = YYMAXDEPTH;
  1830.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  1831.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  1832.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  1833.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  1834. #ifdef YYLSP_NEEDED
  1835.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  1836.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  1837. #endif
  1838. #endif /* no yyoverflow */
  1839.  
  1840.       yyssp = yyss + size - 1;
  1841.       yyvsp = yyvs + size - 1;
  1842. #ifdef YYLSP_NEEDED
  1843.       yylsp = yyls + size - 1;
  1844. #endif
  1845.  
  1846. #if YYDEBUG != 0
  1847.       if (yydebug)
  1848.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  1849. #endif
  1850.  
  1851.       if (yyssp >= yyss + yystacksize - 1)
  1852.     YYABORT;
  1853.     }
  1854.  
  1855. #if YYDEBUG != 0
  1856.   if (yydebug)
  1857.     fprintf(stderr, "Entering state %d\n", yystate);
  1858. #endif
  1859.  
  1860.   goto yybackup;
  1861.  yybackup:
  1862.  
  1863. /* Do appropriate processing given the current state.  */
  1864. /* Read a lookahead token if we need one and don't already have one.  */
  1865. /* yyresume: */
  1866.  
  1867.   /* First try to decide what to do without reference to lookahead token.  */
  1868.  
  1869.   yyn = yypact[yystate];
  1870.   if (yyn == YYFLAG)
  1871.     goto yydefault;
  1872.  
  1873.   /* Not known => get a lookahead token if don't already have one.  */
  1874.  
  1875.   /* yychar is either YYEMPTY or YYEOF
  1876.      or a valid token in external form.  */
  1877.  
  1878.   if (yychar == YYEMPTY)
  1879.     {
  1880. #if YYDEBUG != 0
  1881.       if (yydebug)
  1882.     fprintf(stderr, "Reading a token: ");
  1883. #endif
  1884.       yychar = YYLEX;
  1885.     }
  1886.  
  1887.   /* Convert token to internal form (in yychar1) for indexing tables with */
  1888.  
  1889.   if (yychar <= 0)        /* This means end of input. */
  1890.     {
  1891.       yychar1 = 0;
  1892.       yychar = YYEOF;        /* Don't call YYLEX any more */
  1893.  
  1894. #if YYDEBUG != 0
  1895.       if (yydebug)
  1896.     fprintf(stderr, "Now at end of input.\n");
  1897. #endif
  1898.     }
  1899.   else
  1900.     {
  1901.       yychar1 = YYTRANSLATE(yychar);
  1902.  
  1903. #if YYDEBUG != 0
  1904.       if (yydebug)
  1905.     {
  1906.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  1907.       /* Give the individual parser a way to print the precise meaning
  1908.          of a token, for further debugging info.  */
  1909. #ifdef YYPRINT
  1910.       YYPRINT (stderr, yychar, yylval);
  1911. #endif
  1912.       fprintf (stderr, ")\n");
  1913.     }
  1914. #endif
  1915.     }
  1916.  
  1917.   yyn += yychar1;
  1918.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  1919.     goto yydefault;
  1920.  
  1921.   yyn = yytable[yyn];
  1922.  
  1923.   /* yyn is what to do for this token type in this state.
  1924.      Negative => reduce, -yyn is rule number.
  1925.      Positive => shift, yyn is new state.
  1926.        New state is final state => don't bother to shift,
  1927.        just return success.
  1928.      0, or most negative number => error.  */
  1929.  
  1930.   if (yyn < 0)
  1931.     {
  1932.       if (yyn == YYFLAG)
  1933.     goto yyerrlab;
  1934.       yyn = -yyn;
  1935.       goto yyreduce;
  1936.     }
  1937.   else if (yyn == 0)
  1938.     goto yyerrlab;
  1939.  
  1940.   if (yyn == YYFINAL)
  1941.     YYACCEPT;
  1942.  
  1943.   /* Shift the lookahead token.  */
  1944.  
  1945. #if YYDEBUG != 0
  1946.   if (yydebug)
  1947.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  1948. #endif
  1949.  
  1950.   /* Discard the token being shifted unless it is eof.  */
  1951.   if (yychar != YYEOF)
  1952.     yychar = YYEMPTY;
  1953.  
  1954.   *++yyvsp = yylval;
  1955. #ifdef YYLSP_NEEDED
  1956.   *++yylsp = yylloc;
  1957. #endif
  1958.  
  1959.   /* count tokens shifted since error; after three, turn off error status.  */
  1960.   if (yyerrstatus) yyerrstatus--;
  1961.  
  1962.   yystate = yyn;
  1963.   goto yynewstate;
  1964.  
  1965. /* Do the default action for the current state.  */
  1966. yydefault:
  1967.  
  1968.   yyn = yydefact[yystate];
  1969.   if (yyn == 0)
  1970.     goto yyerrlab;
  1971.  
  1972. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  1973. yyreduce:
  1974.   yylen = yyr2[yyn];
  1975.   if (yylen > 0)
  1976.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  1977.  
  1978. #if YYDEBUG != 0
  1979.   if (yydebug)
  1980.     {
  1981.       int i;
  1982.  
  1983.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  1984.            yyn, yyrline[yyn]);
  1985.  
  1986.       /* Print the symbols being reduced, and their result.  */
  1987.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  1988.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  1989.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  1990.     }
  1991. #endif
  1992.  
  1993.  
  1994.   switch (yyn) {
  1995.  
  1996. case 1:
  1997. #line 228 "objc-parse.y"
  1998. { if (pedantic)
  1999.             pedwarn ("ANSI C forbids an empty source file");
  2000.           objc_finish ();
  2001.         ;
  2002.     break;}
  2003. case 2:
  2004. #line 233 "objc-parse.y"
  2005. {
  2006.           /* In case there were missing closebraces,
  2007.              get us back to the global binding level.  */
  2008.           while (! global_bindings_p ())
  2009.             poplevel (0, 0, 0);
  2010.           objc_finish ();
  2011.         ;
  2012.     break;}
  2013. case 3:
  2014. #line 247 "objc-parse.y"
  2015. {yyval.ttype = NULL_TREE; ;
  2016.     break;}
  2017. case 5:
  2018. #line 248 "objc-parse.y"
  2019. {yyval.ttype = NULL_TREE; ;
  2020.     break;}
  2021. case 10:
  2022. #line 256 "objc-parse.y"
  2023. { STRIP_NOPS (yyvsp[-2].ttype);
  2024.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  2025.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  2026.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  2027.             assemble_asm (yyvsp[-2].ttype);
  2028.           else
  2029.             error ("argument of `asm' is not a constant string"); ;
  2030.     break;}
  2031. case 11:
  2032. #line 267 "objc-parse.y"
  2033. { if (pedantic)
  2034.             error ("ANSI C forbids data definition with no type or storage class");
  2035.           else if (!flag_traditional)
  2036.             warning ("data definition has no type or storage class"); ;
  2037.     break;}
  2038. case 12:
  2039. #line 272 "objc-parse.y"
  2040. {;
  2041.     break;}
  2042. case 13:
  2043. #line 274 "objc-parse.y"
  2044. {;
  2045.     break;}
  2046. case 14:
  2047. #line 276 "objc-parse.y"
  2048. { pedwarn ("empty declaration"); ;
  2049.     break;}
  2050. case 15:
  2051. #line 278 "objc-parse.y"
  2052. { shadow_tag (yyvsp[-1].ttype); ;
  2053.     break;}
  2054. case 18:
  2055. #line 282 "objc-parse.y"
  2056. { if (pedantic)
  2057.             pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
  2058.     break;}
  2059. case 19:
  2060. #line 288 "objc-parse.y"
  2061. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, 0))
  2062.             YYERROR1;
  2063.           reinit_parse_for_function (); ;
  2064.     break;}
  2065. case 20:
  2066. #line 292 "objc-parse.y"
  2067. { store_parm_decls (); ;
  2068.     break;}
  2069. case 21:
  2070. #line 294 "objc-parse.y"
  2071. { finish_function (0); ;
  2072.     break;}
  2073. case 22:
  2074. #line 296 "objc-parse.y"
  2075. { ;
  2076.     break;}
  2077. case 23:
  2078. #line 298 "objc-parse.y"
  2079. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, 0))
  2080.             YYERROR1;
  2081.           reinit_parse_for_function (); ;
  2082.     break;}
  2083. case 24:
  2084. #line 302 "objc-parse.y"
  2085. { store_parm_decls (); ;
  2086.     break;}
  2087. case 25:
  2088. #line 304 "objc-parse.y"
  2089. { finish_function (0); ;
  2090.     break;}
  2091. case 26:
  2092. #line 306 "objc-parse.y"
  2093. { ;
  2094.     break;}
  2095. case 27:
  2096. #line 308 "objc-parse.y"
  2097. { if (! start_function (NULL_TREE, yyvsp[0].ttype, 0))
  2098.             YYERROR1;
  2099.           reinit_parse_for_function (); ;
  2100.     break;}
  2101. case 28:
  2102. #line 312 "objc-parse.y"
  2103. { store_parm_decls (); ;
  2104.     break;}
  2105. case 29:
  2106. #line 314 "objc-parse.y"
  2107. { finish_function (0); ;
  2108.     break;}
  2109. case 30:
  2110. #line 316 "objc-parse.y"
  2111. { ;
  2112.     break;}
  2113. case 35:
  2114. #line 327 "objc-parse.y"
  2115. { yyval.code = ADDR_EXPR; ;
  2116.     break;}
  2117. case 36:
  2118. #line 329 "objc-parse.y"
  2119. { yyval.code = NEGATE_EXPR; ;
  2120.     break;}
  2121. case 37:
  2122. #line 331 "objc-parse.y"
  2123. { yyval.code = CONVERT_EXPR; ;
  2124.     break;}
  2125. case 38:
  2126. #line 333 "objc-parse.y"
  2127. { yyval.code = PREINCREMENT_EXPR; ;
  2128.     break;}
  2129. case 39:
  2130. #line 335 "objc-parse.y"
  2131. { yyval.code = PREDECREMENT_EXPR; ;
  2132.     break;}
  2133. case 40:
  2134. #line 337 "objc-parse.y"
  2135. { yyval.code = BIT_NOT_EXPR; ;
  2136.     break;}
  2137. case 41:
  2138. #line 339 "objc-parse.y"
  2139. { yyval.code = TRUTH_NOT_EXPR; ;
  2140.     break;}
  2141. case 42:
  2142. #line 343 "objc-parse.y"
  2143. { yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
  2144.     break;}
  2145. case 43:
  2146. #line 348 "objc-parse.y"
  2147. { yyval.ttype = NULL_TREE; ;
  2148.     break;}
  2149. case 45:
  2150. #line 354 "objc-parse.y"
  2151. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  2152.     break;}
  2153. case 46:
  2154. #line 356 "objc-parse.y"
  2155. { chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  2156.     break;}
  2157. case 48:
  2158. #line 362 "objc-parse.y"
  2159. { yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  2160.     break;}
  2161. case 49:
  2162. #line 365 "objc-parse.y"
  2163. { yyvsp[0].itype = pedantic;
  2164.           pedantic = 0; ;
  2165.     break;}
  2166. case 50:
  2167. #line 368 "objc-parse.y"
  2168. { yyval.ttype = yyvsp[0].ttype;
  2169.           pedantic = yyvsp[-2].itype; ;
  2170.     break;}
  2171. case 51:
  2172. #line 371 "objc-parse.y"
  2173. { yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
  2174.           overflow_warning (yyval.ttype); ;
  2175.     break;}
  2176. case 52:
  2177. #line 375 "objc-parse.y"
  2178. { tree label = lookup_label (yyvsp[0].ttype);
  2179.           if (label == 0)
  2180.             yyval.ttype = null_pointer_node;
  2181.           else
  2182.             {
  2183.               TREE_USED (label) = 1;
  2184.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  2185.               TREE_CONSTANT (yyval.ttype) = 1;
  2186.             }
  2187.         ;
  2188.     break;}
  2189. case 53:
  2190. #line 401 "objc-parse.y"
  2191. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  2192.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  2193.             error ("`sizeof' applied to a bit-field");
  2194.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  2195.     break;}
  2196. case 54:
  2197. #line 406 "objc-parse.y"
  2198. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  2199.     break;}
  2200. case 55:
  2201. #line 408 "objc-parse.y"
  2202. { yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
  2203.     break;}
  2204. case 56:
  2205. #line 410 "objc-parse.y"
  2206. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  2207.     break;}
  2208. case 57:
  2209. #line 412 "objc-parse.y"
  2210. { yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
  2211.     break;}
  2212. case 58:
  2213. #line 414 "objc-parse.y"
  2214. { yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
  2215.     break;}
  2216. case 60:
  2217. #line 420 "objc-parse.y"
  2218. { tree type = groktypename (yyvsp[-2].ttype);
  2219.           yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
  2220.     break;}
  2221. case 61:
  2222. #line 423 "objc-parse.y"
  2223. { start_init (NULL_TREE, NULL, 0);
  2224.           yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
  2225.           really_start_incremental_init (yyvsp[-2].ttype); ;
  2226.     break;}
  2227. case 62:
  2228. #line 427 "objc-parse.y"
  2229. { char *name;
  2230.           tree result = pop_init_level (0);
  2231.           tree type = yyvsp[-5].ttype;
  2232.           finish_init ();
  2233.  
  2234.           if (pedantic)
  2235.             pedwarn ("ANSI C forbids constructor expressions");
  2236.           if (TYPE_NAME (type) != 0)
  2237.             {
  2238.               if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  2239.             name = IDENTIFIER_POINTER (TYPE_NAME (type));
  2240.               else
  2241.             name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
  2242.             }
  2243.           else
  2244.             name = "";
  2245.           yyval.ttype = result;
  2246.           if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
  2247.             {
  2248.               int failure = complete_array_type (type, yyval.ttype, 1);
  2249.               if (failure)
  2250.             abort ();
  2251.             }
  2252.         ;
  2253.     break;}
  2254. case 64:
  2255. #line 456 "objc-parse.y"
  2256. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2257.     break;}
  2258. case 65:
  2259. #line 458 "objc-parse.y"
  2260. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2261.     break;}
  2262. case 66:
  2263. #line 460 "objc-parse.y"
  2264. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2265.     break;}
  2266. case 67:
  2267. #line 462 "objc-parse.y"
  2268. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2269.     break;}
  2270. case 68:
  2271. #line 464 "objc-parse.y"
  2272. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2273.     break;}
  2274. case 69:
  2275. #line 466 "objc-parse.y"
  2276. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2277.     break;}
  2278. case 70:
  2279. #line 468 "objc-parse.y"
  2280. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2281.     break;}
  2282. case 71:
  2283. #line 470 "objc-parse.y"
  2284. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2285.     break;}
  2286. case 72:
  2287. #line 472 "objc-parse.y"
  2288. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2289.     break;}
  2290. case 73:
  2291. #line 474 "objc-parse.y"
  2292. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2293.     break;}
  2294. case 74:
  2295. #line 476 "objc-parse.y"
  2296. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2297.     break;}
  2298. case 75:
  2299. #line 478 "objc-parse.y"
  2300. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2301.     break;}
  2302. case 76:
  2303. #line 480 "objc-parse.y"
  2304. { yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2305.     break;}
  2306. case 77:
  2307. #line 482 "objc-parse.y"
  2308. { yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2309.     break;}
  2310. case 78:
  2311. #line 484 "objc-parse.y"
  2312. { yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2313.     break;}
  2314. case 79:
  2315. #line 486 "objc-parse.y"
  2316. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
  2317.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
  2318.     break;}
  2319. case 80:
  2320. #line 489 "objc-parse.y"
  2321. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
  2322.           /* This inhibits warnings in truthvalue_conversion.  */
  2323.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  2324.     break;}
  2325. case 81:
  2326. #line 496 "objc-parse.y"
  2327. {
  2328.           tree context;
  2329.  
  2330.           yyval.ttype = lastiddecl;
  2331.           if (!yyval.ttype || yyval.ttype == error_mark_node)
  2332.             {
  2333.               if (yychar == YYEMPTY)
  2334.             yychar = YYLEX;
  2335.               if (yychar == '(')
  2336.             {
  2337.               tree decl;
  2338.  
  2339.               if (objc_receiver_context
  2340.                   && ! (objc_receiver_context
  2341.                     && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
  2342.                 /* we have a message to super */
  2343.                 yyval.ttype = get_super_receiver ();
  2344.               else if (objc_method_context
  2345.                    && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
  2346.                 {
  2347.                   if (is_private (decl))
  2348.                 yyval.ttype = error_mark_node;
  2349.                   else
  2350.                 yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
  2351.                 }
  2352.               else
  2353.                 {
  2354.                   /* Ordinary implicit function declaration.  */
  2355.                   yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  2356.                   assemble_external (yyval.ttype);
  2357.                   TREE_USED (yyval.ttype) = 1;
  2358.                 }
  2359.             }
  2360.               else if (current_function_decl == 0)
  2361.             {
  2362.               error ("`%s' undeclared here (not in a function)",
  2363.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2364.               yyval.ttype = error_mark_node;
  2365.             }
  2366.               else
  2367.             {
  2368.               tree decl;
  2369.  
  2370.                   if (objc_receiver_context
  2371.                   && ! strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super"))
  2372.                 /* we have a message to super */
  2373.                 yyval.ttype = get_super_receiver ();
  2374.               else if (objc_method_context
  2375.                    && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
  2376.                 {
  2377.                   if (is_private (decl))
  2378.                 yyval.ttype = error_mark_node;
  2379.                   else
  2380.                 yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
  2381.                 }
  2382.               else
  2383.                 {
  2384.                   if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
  2385.                   || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
  2386.                 {
  2387.                   error ("`%s' undeclared (first use this function)",
  2388.                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  2389.  
  2390.                   if (! undeclared_variable_notice)
  2391.                     {
  2392.                       error ("(Each undeclared identifier is reported only once");
  2393.                       error ("for each function it appears in.)");
  2394.                       undeclared_variable_notice = 1;
  2395.                     }
  2396.                 }
  2397.                   yyval.ttype = error_mark_node;
  2398.                   /* Prevent repeated error messages.  */
  2399.                   IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  2400.                   IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
  2401.                 }
  2402.             }
  2403.             }
  2404.           else if (TREE_TYPE (yyval.ttype) == error_mark_node)
  2405.             yyval.ttype = error_mark_node;
  2406.           else if (C_DECL_ANTICIPATED (yyval.ttype))
  2407.             {
  2408.               /* The first time we see a build-in function used,
  2409.              if it has not been declared.  */
  2410.               C_DECL_ANTICIPATED (yyval.ttype) = 0;
  2411.               if (yychar == YYEMPTY)
  2412.             yychar = YYLEX;
  2413.               if (yychar == '(')
  2414.             {
  2415.               /* Omit the implicit declaration we
  2416.                  would ordinarily do, so we don't lose
  2417.                  the actual built in type.
  2418.                  But print a diagnostic for the mismatch.  */
  2419.               if (objc_method_context
  2420.                   && is_ivar (objc_ivar_chain, yyvsp[0].ttype))
  2421.                 error ("Instance variable `%s' implicitly declared as function",
  2422.                    IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2423.               else
  2424.                 if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
  2425.                   error ("`%s' implicitly declared as function",
  2426.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2427.               else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
  2428.                     != TYPE_MODE (integer_type_node))
  2429.                    && (TREE_TYPE (TREE_TYPE (yyval.ttype))
  2430.                        != void_type_node))
  2431.                 pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
  2432.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2433.               /* If it really returns void, change that to int.  */
  2434.               if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
  2435.                 TREE_TYPE (yyval.ttype)
  2436.                   = build_function_type (integer_type_node,
  2437.                              TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
  2438.             }
  2439.               else
  2440.             pedwarn ("built-in function `%s' used without declaration",
  2441.                  IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2442.  
  2443.               /* Do what we would ordinarily do when a fn is used.  */
  2444.               assemble_external (yyval.ttype);
  2445.               TREE_USED (yyval.ttype) = 1;
  2446.             }
  2447.           else
  2448.             {
  2449.               assemble_external (yyval.ttype);
  2450.               TREE_USED (yyval.ttype) = 1;
  2451.               /* we have a definition - still check if iVariable */
  2452.  
  2453.               if (!objc_receiver_context
  2454.               || (objc_receiver_context
  2455.                   && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "super")))
  2456.                         {
  2457.               tree decl;
  2458.  
  2459.               if (objc_method_context
  2460.                   && (decl = is_ivar (objc_ivar_chain, yyvsp[0].ttype)))
  2461.                             {
  2462.                               if (IDENTIFIER_LOCAL_VALUE (yyvsp[0].ttype))
  2463.                                 warning ("local declaration of `%s' hides instance variable",
  2464.                                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  2465.                               else
  2466.                  {
  2467.                    if (is_private (decl))
  2468.                      yyval.ttype = error_mark_node;
  2469.                    else
  2470.                      yyval.ttype = build_ivar_reference (yyvsp[0].ttype);
  2471.                  }
  2472.                             }
  2473.             }
  2474.                       else /* we have a message to super */
  2475.                 yyval.ttype = get_super_receiver ();
  2476.             }
  2477.  
  2478.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  2479.             {
  2480.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  2481.               /* This is to prevent an enum whose value is 0
  2482.              from being considered a null pointer constant.  */
  2483.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  2484.               TREE_CONSTANT (yyval.ttype) = 1;
  2485.             }
  2486.         ;
  2487.     break;}
  2488. case 83:
  2489. #line 658 "objc-parse.y"
  2490. { yyval.ttype = combine_strings (yyvsp[0].ttype); ;
  2491.     break;}
  2492. case 84:
  2493. #line 660 "objc-parse.y"
  2494. { char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
  2495.           if (class == 'e' || class == '1'
  2496.               || class == '2' || class == '<')
  2497.             C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
  2498.           yyval.ttype = yyvsp[-1].ttype; ;
  2499.     break;}
  2500. case 85:
  2501. #line 666 "objc-parse.y"
  2502. { yyval.ttype = error_mark_node; ;
  2503.     break;}
  2504. case 86:
  2505. #line 668 "objc-parse.y"
  2506. { if (current_function_decl == 0)
  2507.             {
  2508.               error ("braced-group within expression allowed only inside a function");
  2509.               YYERROR;
  2510.             }
  2511.           /* We must force a BLOCK for this level
  2512.              so that, if it is not expanded later,
  2513.              there is a way to turn off the entire subtree of blocks
  2514.              that are contained in it.  */
  2515.           keep_next_level ();
  2516.           push_iterator_stack ();
  2517.           push_label_level ();
  2518.           yyval.ttype = expand_start_stmt_expr (); ;
  2519.     break;}
  2520. case 87:
  2521. #line 682 "objc-parse.y"
  2522. { tree rtl_exp;
  2523.           if (pedantic)
  2524.             pedwarn ("ANSI C forbids braced-groups within expressions");
  2525.           pop_iterator_stack ();
  2526.           pop_label_level ();
  2527.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  2528.           /* The statements have side effects, so the group does.  */
  2529.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  2530.  
  2531.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  2532.             {
  2533.               /* Make a BIND_EXPR for the BLOCK already made.  */
  2534.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  2535.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  2536.               /* Remove the block from the tree at this point.
  2537.              It gets put back at the proper place
  2538.              when the BIND_EXPR is expanded.  */
  2539.               delete_block (yyvsp[-1].ttype);
  2540.             }
  2541.           else
  2542.             yyval.ttype = yyvsp[-1].ttype;
  2543.         ;
  2544.     break;}
  2545. case 88:
  2546. #line 705 "objc-parse.y"
  2547. { yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2548.     break;}
  2549. case 89:
  2550. #line 707 "objc-parse.y"
  2551. { yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2552.     break;}
  2553. case 90:
  2554. #line 709 "objc-parse.y"
  2555. {
  2556.                   if (doing_objc_thang)
  2557.                     {
  2558.               if (is_public (yyvsp[-2].ttype, yyvsp[0].ttype))
  2559.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2560.               else
  2561.             yyval.ttype = error_mark_node;
  2562.             }
  2563.                   else
  2564.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2565.         ;
  2566.     break;}
  2567. case 91:
  2568. #line 721 "objc-parse.y"
  2569. {
  2570.                   tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
  2571.  
  2572.                   if (doing_objc_thang)
  2573.                     {
  2574.               if (is_public (expr, yyvsp[0].ttype))
  2575.             yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2576.               else
  2577.             yyval.ttype = error_mark_node;
  2578.             }
  2579.                   else
  2580.                     yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2581.         ;
  2582.     break;}
  2583. case 92:
  2584. #line 735 "objc-parse.y"
  2585. { yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2586.     break;}
  2587. case 93:
  2588. #line 737 "objc-parse.y"
  2589. { yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2590.     break;}
  2591. case 94:
  2592. #line 739 "objc-parse.y"
  2593. { yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
  2594.     break;}
  2595. case 95:
  2596. #line 741 "objc-parse.y"
  2597. { yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
  2598.     break;}
  2599. case 96:
  2600. #line 743 "objc-parse.y"
  2601. { yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
  2602.     break;}
  2603. case 97:
  2604. #line 745 "objc-parse.y"
  2605. { yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
  2606.     break;}
  2607. case 98:
  2608. #line 747 "objc-parse.y"
  2609. { yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
  2610.     break;}
  2611. case 100:
  2612. #line 754 "objc-parse.y"
  2613. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2614.     break;}
  2615. case 102:
  2616. #line 762 "objc-parse.y"
  2617. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2618.     break;}
  2619. case 105:
  2620. #line 770 "objc-parse.y"
  2621. { c_mark_varargs ();
  2622.           if (pedantic)
  2623.             pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
  2624.     break;}
  2625. case 106:
  2626. #line 780 "objc-parse.y"
  2627. { ;
  2628.     break;}
  2629. case 111:
  2630. #line 792 "objc-parse.y"
  2631. { current_declspecs = TREE_VALUE (declspec_stack);
  2632.           declspec_stack = TREE_CHAIN (declspec_stack);
  2633.           resume_momentary (yyvsp[-2].itype); ;
  2634.     break;}
  2635. case 112:
  2636. #line 796 "objc-parse.y"
  2637. { current_declspecs = TREE_VALUE (declspec_stack);
  2638.           declspec_stack = TREE_CHAIN (declspec_stack);
  2639.           resume_momentary (yyvsp[-2].itype); ;
  2640.     break;}
  2641. case 113:
  2642. #line 800 "objc-parse.y"
  2643. { shadow_tag_warned (yyvsp[-1].ttype, 1);
  2644.           pedwarn ("empty declaration"); ;
  2645.     break;}
  2646. case 114:
  2647. #line 803 "objc-parse.y"
  2648. { pedwarn ("empty declaration"); ;
  2649.     break;}
  2650. case 115:
  2651. #line 812 "objc-parse.y"
  2652. { ;
  2653.     break;}
  2654. case 120:
  2655. #line 827 "objc-parse.y"
  2656. { yyval.itype = suspend_momentary ();
  2657.           pending_xref_error ();
  2658.           declspec_stack = tree_cons (NULL_TREE, current_declspecs,
  2659.                           declspec_stack);
  2660.           current_declspecs = yyvsp[0].ttype; ;
  2661.     break;}
  2662. case 121:
  2663. #line 836 "objc-parse.y"
  2664. { current_declspecs = TREE_VALUE (declspec_stack);
  2665.           declspec_stack = TREE_CHAIN (declspec_stack);
  2666.           resume_momentary (yyvsp[-2].itype); ;
  2667.     break;}
  2668. case 122:
  2669. #line 840 "objc-parse.y"
  2670. { current_declspecs = TREE_VALUE (declspec_stack);
  2671.           declspec_stack = TREE_CHAIN (declspec_stack);
  2672.           resume_momentary (yyvsp[-2].itype); ;
  2673.     break;}
  2674. case 123:
  2675. #line 844 "objc-parse.y"
  2676. { current_declspecs = TREE_VALUE (declspec_stack);
  2677.           declspec_stack = TREE_CHAIN (declspec_stack);
  2678.           resume_momentary (yyvsp[-1].itype); ;
  2679.     break;}
  2680. case 124:
  2681. #line 848 "objc-parse.y"
  2682. { current_declspecs = TREE_VALUE (declspec_stack);
  2683.           declspec_stack = TREE_CHAIN (declspec_stack);
  2684.           resume_momentary (yyvsp[-1].itype); ;
  2685.     break;}
  2686. case 125:
  2687. #line 852 "objc-parse.y"
  2688. { shadow_tag (yyvsp[-1].ttype); ;
  2689.     break;}
  2690. case 126:
  2691. #line 854 "objc-parse.y"
  2692. { pedwarn ("empty declaration"); ;
  2693.     break;}
  2694. case 127:
  2695. #line 863 "objc-parse.y"
  2696. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2697.     break;}
  2698. case 128:
  2699. #line 865 "objc-parse.y"
  2700. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2701.     break;}
  2702. case 129:
  2703. #line 869 "objc-parse.y"
  2704. { yyval.ttype = NULL_TREE; ;
  2705.     break;}
  2706. case 130:
  2707. #line 871 "objc-parse.y"
  2708. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2709.     break;}
  2710. case 131:
  2711. #line 873 "objc-parse.y"
  2712. { if (extra_warnings)
  2713.             warning ("`%s' is not at beginning of declaration",
  2714.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2715.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2716.     break;}
  2717. case 132:
  2718. #line 885 "objc-parse.y"
  2719. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  2720.           TREE_STATIC (yyval.ttype) = 1; ;
  2721.     break;}
  2722. case 133:
  2723. #line 888 "objc-parse.y"
  2724. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2725.     break;}
  2726. case 134:
  2727. #line 890 "objc-parse.y"
  2728. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2729.           TREE_STATIC (yyval.ttype) = 1; ;
  2730.     break;}
  2731. case 135:
  2732. #line 893 "objc-parse.y"
  2733. { if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
  2734.             warning ("`%s' is not at beginning of declaration",
  2735.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2736.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2737.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  2738.     break;}
  2739. case 136:
  2740. #line 907 "objc-parse.y"
  2741. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2742.     break;}
  2743. case 137:
  2744. #line 909 "objc-parse.y"
  2745. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2746.     break;}
  2747. case 138:
  2748. #line 913 "objc-parse.y"
  2749. { yyval.ttype = NULL_TREE; ;
  2750.     break;}
  2751. case 139:
  2752. #line 915 "objc-parse.y"
  2753. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2754.     break;}
  2755. case 142:
  2756. #line 925 "objc-parse.y"
  2757. { /* For a typedef name, record the meaning, not the name.
  2758.              In case of `foo foo, bar;'.  */
  2759.           yyval.ttype = lookup_name (yyvsp[0].ttype); ;
  2760.     break;}
  2761. case 143:
  2762. #line 929 "objc-parse.y"
  2763. { yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2764.     break;}
  2765. case 144:
  2766. #line 931 "objc-parse.y"
  2767. { yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
  2768.     break;}
  2769. case 145:
  2770. #line 933 "objc-parse.y"
  2771. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
  2772.     break;}
  2773. case 146:
  2774. #line 935 "objc-parse.y"
  2775. { yyval.ttype = groktypename (yyvsp[-1].ttype); ;
  2776.     break;}
  2777. case 154:
  2778. #line 957 "objc-parse.y"
  2779. { yyval.ttype = NULL_TREE; ;
  2780.     break;}
  2781. case 155:
  2782. #line 959 "objc-parse.y"
  2783. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
  2784.           yyval.ttype = yyvsp[-1].ttype;
  2785.         ;
  2786.     break;}
  2787. case 156:
  2788. #line 966 "objc-parse.y"
  2789. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1);
  2790.           decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  2791.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2792.     break;}
  2793. case 157:
  2794. #line 971 "objc-parse.y"
  2795. { finish_init ();
  2796.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype);
  2797.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2798.     break;}
  2799. case 158:
  2800. #line 975 "objc-parse.y"
  2801. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0);
  2802.           decl_attributes (d, yyvsp[0].ttype);
  2803.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2804.     break;}
  2805. case 159:
  2806. #line 982 "objc-parse.y"
  2807. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1);
  2808.           decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  2809.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2810.     break;}
  2811. case 160:
  2812. #line 987 "objc-parse.y"
  2813. { finish_init ();
  2814.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype);
  2815.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2816.     break;}
  2817. case 161:
  2818. #line 991 "objc-parse.y"
  2819. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0);
  2820.           decl_attributes (d, yyvsp[0].ttype);
  2821.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2822.     break;}
  2823. case 162:
  2824. #line 999 "objc-parse.y"
  2825. { yyval.ttype = NULL_TREE; ;
  2826.     break;}
  2827. case 163:
  2828. #line 1001 "objc-parse.y"
  2829. { yyval.ttype = yyvsp[-2].ttype; ;
  2830.     break;}
  2831. case 164:
  2832. #line 1006 "objc-parse.y"
  2833. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2834.     break;}
  2835. case 165:
  2836. #line 1008 "objc-parse.y"
  2837. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype); ;
  2838.     break;}
  2839. case 166:
  2840. #line 1013 "objc-parse.y"
  2841. { if (strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "packed")
  2842.           && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "noreturn"))
  2843.         warning ("`%s' attribute directive ignored",
  2844.              IDENTIFIER_POINTER (yyvsp[0].ttype));
  2845.       yyval.ttype = yyvsp[0].ttype; ;
  2846.     break;}
  2847. case 168:
  2848. #line 1020 "objc-parse.y"
  2849. { /* If not "mode (m)", then issue warning.  */
  2850.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "mode") != 0)
  2851.         {
  2852.           warning ("`%s' attribute directive ignored",
  2853.                IDENTIFIER_POINTER (yyvsp[-3].ttype));
  2854.           yyval.ttype = yyvsp[-3].ttype;
  2855.         }
  2856.       else
  2857.         yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE); ;
  2858.     break;}
  2859. case 169:
  2860. #line 1030 "objc-parse.y"
  2861. { /* if not "aligned(n)", then issue warning */
  2862.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "aligned") != 0
  2863.           || TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
  2864.         {
  2865.           warning ("`%s' attribute directive ignored",
  2866.                IDENTIFIER_POINTER (yyvsp[-3].ttype));
  2867.           yyval.ttype = yyvsp[-3].ttype;
  2868.         }
  2869.       else
  2870.         yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE); ;
  2871.     break;}
  2872. case 170:
  2873. #line 1041 "objc-parse.y"
  2874. { /* if not "format(...)", then issue warning */
  2875.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-7].ttype), "format") != 0
  2876.           || TREE_CODE (yyvsp[-3].ttype) != INTEGER_CST
  2877.           || TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
  2878.         {
  2879.           warning ("`%s' attribute directive ignored",
  2880.                IDENTIFIER_POINTER (yyvsp[-7].ttype));
  2881.           yyval.ttype = yyvsp[-7].ttype;
  2882.         }
  2883.       else
  2884.         yyval.ttype = tree_cons (yyvsp[-7].ttype,
  2885.                 tree_cons (yyvsp[-5].ttype,
  2886.                        tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE),
  2887.                        NULL_TREE),
  2888.                 NULL_TREE); ;
  2889.     break;}
  2890. case 172:
  2891. #line 1063 "objc-parse.y"
  2892. { really_start_incremental_init (NULL_TREE);
  2893.           /* Note that the call to clear_momentary
  2894.              is in process_init_element.  */
  2895.           push_momentary (); ;
  2896.     break;}
  2897. case 173:
  2898. #line 1068 "objc-parse.y"
  2899. { yyval.ttype = pop_init_level (0);
  2900.           if (yyval.ttype == error_mark_node)
  2901.             pop_momentary ();
  2902.           else
  2903.             pop_momentary_nofree (); ;
  2904.     break;}
  2905. case 174:
  2906. #line 1075 "objc-parse.y"
  2907. { yyval.ttype = error_mark_node; ;
  2908.     break;}
  2909. case 175:
  2910. #line 1081 "objc-parse.y"
  2911. { if (pedantic)
  2912.             pedwarn ("ANSI C forbids empty initializer braces"); ;
  2913.     break;}
  2914. case 179:
  2915. #line 1095 "objc-parse.y"
  2916. { process_init_element (yyvsp[0].ttype); ;
  2917.     break;}
  2918. case 180:
  2919. #line 1097 "objc-parse.y"
  2920. { push_init_level (0); ;
  2921.     break;}
  2922. case 181:
  2923. #line 1099 "objc-parse.y"
  2924. { process_init_element (pop_init_level (0)); ;
  2925.     break;}
  2926. case 183:
  2927. #line 1105 "objc-parse.y"
  2928. { set_init_label (yyvsp[-1].ttype); ;
  2929.     break;}
  2930. case 185:
  2931. #line 1108 "objc-parse.y"
  2932. { set_init_label (yyvsp[-1].ttype); ;
  2933.     break;}
  2934. case 187:
  2935. #line 1114 "objc-parse.y"
  2936. { push_c_function_context ();
  2937.           if (! start_function (current_declspecs, yyvsp[0].ttype, 1))
  2938.             {
  2939.               pop_c_function_context ();
  2940.               YYERROR1;
  2941.             }
  2942.           reinit_parse_for_function ();
  2943.           store_parm_decls (); ;
  2944.     break;}
  2945. case 188:
  2946. #line 1129 "objc-parse.y"
  2947. { finish_function (1);
  2948.           pop_c_function_context (); ;
  2949.     break;}
  2950. case 189:
  2951. #line 1135 "objc-parse.y"
  2952. { push_c_function_context ();
  2953.           if (! start_function (current_declspecs, yyvsp[0].ttype, 1))
  2954.             {
  2955.               pop_c_function_context ();
  2956.               YYERROR1;
  2957.             }
  2958.           reinit_parse_for_function ();
  2959.           store_parm_decls (); ;
  2960.     break;}
  2961. case 190:
  2962. #line 1150 "objc-parse.y"
  2963. { finish_function (1);
  2964.           pop_c_function_context (); ;
  2965.     break;}
  2966. case 193:
  2967. #line 1166 "objc-parse.y"
  2968. { yyval.ttype = yyvsp[-1].ttype; ;
  2969.     break;}
  2970. case 194:
  2971. #line 1168 "objc-parse.y"
  2972. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2973.     break;}
  2974. case 195:
  2975. #line 1173 "objc-parse.y"
  2976. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2977.     break;}
  2978. case 196:
  2979. #line 1175 "objc-parse.y"
  2980. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2981.     break;}
  2982. case 197:
  2983. #line 1177 "objc-parse.y"
  2984. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2985.     break;}
  2986. case 200:
  2987. #line 1189 "objc-parse.y"
  2988. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2989.     break;}
  2990. case 201:
  2991. #line 1194 "objc-parse.y"
  2992. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2993.     break;}
  2994. case 202:
  2995. #line 1196 "objc-parse.y"
  2996. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2997.     break;}
  2998. case 203:
  2999. #line 1198 "objc-parse.y"
  3000. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3001.     break;}
  3002. case 205:
  3003. #line 1207 "objc-parse.y"
  3004. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  3005.     break;}
  3006. case 206:
  3007. #line 1212 "objc-parse.y"
  3008. { yyval.ttype = yyvsp[-1].ttype; ;
  3009.     break;}
  3010. case 207:
  3011. #line 1214 "objc-parse.y"
  3012. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3013.     break;}
  3014. case 208:
  3015. #line 1216 "objc-parse.y"
  3016. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3017.     break;}
  3018. case 209:
  3019. #line 1218 "objc-parse.y"
  3020. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  3021.     break;}
  3022. case 211:
  3023. #line 1224 "objc-parse.y"
  3024. { yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
  3025.           /* Start scope of tag before parsing components.  */
  3026.         ;
  3027.     break;}
  3028. case 212:
  3029. #line 1228 "objc-parse.y"
  3030. { yyval.ttype = finish_struct (yyvsp[-2].ttype, yyvsp[-1].ttype);
  3031.           /* Really define the structure.  */
  3032.         ;
  3033.     break;}
  3034. case 213:
  3035. #line 1232 "objc-parse.y"
  3036. { yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
  3037.                       yyvsp[-1].ttype); ;
  3038.     break;}
  3039. case 214:
  3040. #line 1235 "objc-parse.y"
  3041. { yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
  3042.     break;}
  3043. case 215:
  3044. #line 1237 "objc-parse.y"
  3045. { yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
  3046.     break;}
  3047. case 216:
  3048. #line 1239 "objc-parse.y"
  3049. { yyval.ttype = finish_struct (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  3050.     break;}
  3051. case 217:
  3052. #line 1241 "objc-parse.y"
  3053. { yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
  3054.                       yyvsp[-1].ttype); ;
  3055.     break;}
  3056. case 218:
  3057. #line 1244 "objc-parse.y"
  3058. { yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
  3059.     break;}
  3060. case 219:
  3061. #line 1246 "objc-parse.y"
  3062. { yyvsp[0].itype = suspend_momentary ();
  3063.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  3064.     break;}
  3065. case 220:
  3066. #line 1249 "objc-parse.y"
  3067. { yyval.ttype = finish_enum (yyvsp[-3].ttype, nreverse (yyvsp[-2].ttype));
  3068.           resume_momentary (yyvsp[-4].itype); ;
  3069.     break;}
  3070. case 221:
  3071. #line 1252 "objc-parse.y"
  3072. { yyvsp[0].itype = suspend_momentary ();
  3073.           yyval.ttype = start_enum (NULL_TREE); ;
  3074.     break;}
  3075. case 222:
  3076. #line 1255 "objc-parse.y"
  3077. { yyval.ttype = finish_enum (yyvsp[-3].ttype, nreverse (yyvsp[-2].ttype));
  3078.           resume_momentary (yyvsp[-4].itype); ;
  3079.     break;}
  3080. case 223:
  3081. #line 1258 "objc-parse.y"
  3082. { yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
  3083.     break;}
  3084. case 227:
  3085. #line 1269 "objc-parse.y"
  3086. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  3087.     break;}
  3088. case 228:
  3089. #line 1274 "objc-parse.y"
  3090. { yyval.ttype = yyvsp[0].ttype; ;
  3091.     break;}
  3092. case 229:
  3093. #line 1276 "objc-parse.y"
  3094. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  3095.           pedwarn ("no semicolon at end of struct or union"); ;
  3096.     break;}
  3097. case 230:
  3098. #line 1281 "objc-parse.y"
  3099. { yyval.ttype = NULL_TREE; ;
  3100.     break;}
  3101. case 231:
  3102. #line 1283 "objc-parse.y"
  3103. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  3104.     break;}
  3105. case 232:
  3106. #line 1285 "objc-parse.y"
  3107. { if (pedantic)
  3108.             pedwarn ("extra semicolon in struct or union specified"); ;
  3109.     break;}
  3110. case 233:
  3111. #line 1289 "objc-parse.y"
  3112. {
  3113.           tree interface = lookup_interface (yyvsp[-1].ttype);
  3114.  
  3115.           if (interface)
  3116.             yyval.ttype = get_class_ivars (interface);
  3117.           else
  3118.             {
  3119.               error ("Cannot find interface declaration for `%s'",
  3120.                  IDENTIFIER_POINTER (yyvsp[-1].ttype));
  3121.               yyval.ttype = NULL_TREE;
  3122.             }
  3123.         ;
  3124.     break;}
  3125. case 234:
  3126. #line 1314 "objc-parse.y"
  3127. { yyval.ttype = yyvsp[0].ttype;
  3128.           current_declspecs = TREE_VALUE (declspec_stack);
  3129.           declspec_stack = TREE_CHAIN (declspec_stack);
  3130.           resume_momentary (yyvsp[-1].itype); ;
  3131.     break;}
  3132. case 235:
  3133. #line 1319 "objc-parse.y"
  3134. { if (pedantic)
  3135.             pedwarn ("ANSI C forbids member declarations with no members");
  3136.           shadow_tag(yyvsp[0].ttype);
  3137.           yyval.ttype = NULL_TREE; ;
  3138.     break;}
  3139. case 236:
  3140. #line 1324 "objc-parse.y"
  3141. { yyval.ttype = yyvsp[0].ttype;
  3142.           current_declspecs = TREE_VALUE (declspec_stack);
  3143.           declspec_stack = TREE_CHAIN (declspec_stack);
  3144.           resume_momentary (yyvsp[-1].itype); ;
  3145.     break;}
  3146. case 237:
  3147. #line 1329 "objc-parse.y"
  3148. { if (pedantic)
  3149.             pedwarn ("ANSI C forbids member declarations with no members");
  3150.           shadow_tag(yyvsp[0].ttype);
  3151.           yyval.ttype = NULL_TREE; ;
  3152.     break;}
  3153. case 238:
  3154. #line 1334 "objc-parse.y"
  3155. { yyval.ttype = NULL_TREE; ;
  3156.     break;}
  3157. case 240:
  3158. #line 1340 "objc-parse.y"
  3159. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3160.     break;}
  3161. case 241:
  3162. #line 1345 "objc-parse.y"
  3163. { yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
  3164.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  3165.     break;}
  3166. case 242:
  3167. #line 1349 "objc-parse.y"
  3168. { yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
  3169.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  3170.     break;}
  3171. case 243:
  3172. #line 1352 "objc-parse.y"
  3173. { yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  3174.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  3175.     break;}
  3176. case 245:
  3177. #line 1364 "objc-parse.y"
  3178. { yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
  3179.     break;}
  3180. case 246:
  3181. #line 1370 "objc-parse.y"
  3182. { yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
  3183.     break;}
  3184. case 247:
  3185. #line 1372 "objc-parse.y"
  3186. { yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3187.     break;}
  3188. case 248:
  3189. #line 1377 "objc-parse.y"
  3190. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3191.     break;}
  3192. case 249:
  3193. #line 1379 "objc-parse.y"
  3194. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3195.     break;}
  3196. case 250:
  3197. #line 1384 "objc-parse.y"
  3198. { yyval.ttype = NULL_TREE; ;
  3199.     break;}
  3200. case 252:
  3201. #line 1390 "objc-parse.y"
  3202. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  3203.     break;}
  3204. case 253:
  3205. #line 1392 "objc-parse.y"
  3206. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  3207.     break;}
  3208. case 254:
  3209. #line 1397 "objc-parse.y"
  3210. { yyval.ttype = NULL_TREE; ;
  3211.     break;}
  3212. case 255:
  3213. #line 1399 "objc-parse.y"
  3214. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  3215.     break;}
  3216. case 256:
  3217. #line 1404 "objc-parse.y"
  3218. { yyval.ttype = yyvsp[-1].ttype; ;
  3219.     break;}
  3220. case 257:
  3221. #line 1407 "objc-parse.y"
  3222. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3223.     break;}
  3224. case 258:
  3225. #line 1409 "objc-parse.y"
  3226. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  3227.     break;}
  3228. case 259:
  3229. #line 1411 "objc-parse.y"
  3230. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  3231.     break;}
  3232. case 260:
  3233. #line 1413 "objc-parse.y"
  3234. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3235.     break;}
  3236. case 261:
  3237. #line 1415 "objc-parse.y"
  3238. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  3239.     break;}
  3240. case 262:
  3241. #line 1417 "objc-parse.y"
  3242. { yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  3243.     break;}
  3244. case 263:
  3245. #line 1419 "objc-parse.y"
  3246. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  3247.     break;}
  3248. case 264:
  3249. #line 1421 "objc-parse.y"
  3250. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  3251.     break;}
  3252. case 271:
  3253. #line 1443 "objc-parse.y"
  3254. { emit_line_note (input_filename, lineno);
  3255.           pushlevel (0);
  3256.           clear_last_expr ();
  3257.           push_momentary ();
  3258.           expand_start_bindings (0);
  3259.           if (objc_method_context)
  3260.             add_objc_decls ();
  3261.         ;
  3262.     break;}
  3263. case 273:
  3264. #line 1458 "objc-parse.y"
  3265. { if (pedantic)
  3266.             pedwarn ("ANSI C forbids label declarations"); ;
  3267.     break;}
  3268. case 276:
  3269. #line 1469 "objc-parse.y"
  3270. { tree link;
  3271.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  3272.             {
  3273.               tree label = shadow_label (TREE_VALUE (link));
  3274.               C_DECLARED_LABEL_FLAG (label) = 1;
  3275.               declare_nonlocal_label (label);
  3276.             }
  3277.         ;
  3278.     break;}
  3279. case 277:
  3280. #line 1483 "objc-parse.y"
  3281. {;
  3282.     break;}
  3283. case 279:
  3284. #line 1488 "objc-parse.y"
  3285. { yyval.ttype = convert (void_type_node, integer_zero_node); ;
  3286.     break;}
  3287. case 280:
  3288. #line 1490 "objc-parse.y"
  3289. { emit_line_note (input_filename, lineno);
  3290.           expand_end_bindings (getdecls (), 1, 0);
  3291.           yyval.ttype = poplevel (1, 1, 0);
  3292.           pop_momentary (); ;
  3293.     break;}
  3294. case 281:
  3295. #line 1495 "objc-parse.y"
  3296. { emit_line_note (input_filename, lineno);
  3297.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  3298.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  3299.           pop_momentary (); ;
  3300.     break;}
  3301. case 282:
  3302. #line 1500 "objc-parse.y"
  3303. { emit_line_note (input_filename, lineno);
  3304.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  3305.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  3306.           pop_momentary (); ;
  3307.     break;}
  3308. case 285:
  3309. #line 1517 "objc-parse.y"
  3310. { emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3311.           expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0);
  3312.           yyval.itype = stmt_count;
  3313.           if_stmt_file = yyvsp[-5].filename;
  3314.           if_stmt_line = yyvsp[-4].lineno;
  3315.           position_after_white_space (); ;
  3316.     break;}
  3317. case 286:
  3318. #line 1530 "objc-parse.y"
  3319. { stmt_count++;
  3320.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  3321.           /* See comment in `while' alternative, above.  */
  3322.           emit_nop ();
  3323.           expand_start_loop_continue_elsewhere (1);
  3324.           position_after_white_space (); ;
  3325.     break;}
  3326. case 287:
  3327. #line 1537 "objc-parse.y"
  3328. { expand_loop_continue_here (); ;
  3329.     break;}
  3330. case 288:
  3331. #line 1541 "objc-parse.y"
  3332. { yyval.filename = input_filename; ;
  3333.     break;}
  3334. case 289:
  3335. #line 1545 "objc-parse.y"
  3336. { yyval.lineno = lineno; ;
  3337.     break;}
  3338. case 290:
  3339. #line 1550 "objc-parse.y"
  3340. { ;
  3341.     break;}
  3342. case 291:
  3343. #line 1555 "objc-parse.y"
  3344. { ;
  3345.     break;}
  3346. case 292:
  3347. #line 1560 "objc-parse.y"
  3348. { ;
  3349.     break;}
  3350. case 294:
  3351. #line 1566 "objc-parse.y"
  3352. { int next;
  3353.           position_after_white_space ();
  3354.           next = getc (finput);
  3355.           ungetc (next, finput);
  3356.           if (pedantic && next == '}')
  3357.             pedwarn ("ANSI C forbids label at end of compound statement");
  3358.         ;
  3359.     break;}
  3360. case 295:
  3361. #line 1578 "objc-parse.y"
  3362. { stmt_count++; ;
  3363.     break;}
  3364. case 297:
  3365. #line 1581 "objc-parse.y"
  3366. { stmt_count++;
  3367.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3368. /* It appears that this should not be done--that a non-lvalue array
  3369.    shouldn't get an error if the value isn't used.
  3370.    Section 3.2.2.1 says that an array lvalue gets converted to a pointer
  3371.    if it appears as a top-level expression,
  3372.    but says nothing about non-lvalue arrays.  */
  3373. #if 0
  3374.           /* Call default_conversion to get an error
  3375.              on referring to a register array if pedantic.  */
  3376.           if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
  3377.               || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
  3378.             yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
  3379. #endif
  3380.           iterator_expand (yyvsp[-1].ttype);
  3381.           clear_momentary (); ;
  3382.     break;}
  3383. case 298:
  3384. #line 1598 "objc-parse.y"
  3385. { expand_start_else ();
  3386.           yyvsp[-1].itype = stmt_count;
  3387.           position_after_white_space (); ;
  3388.     break;}
  3389. case 299:
  3390. #line 1602 "objc-parse.y"
  3391. { expand_end_cond ();
  3392.           if (extra_warnings && stmt_count == yyvsp[-3].itype)
  3393.             warning ("empty body in an else-statement"); ;
  3394.     break;}
  3395. case 300:
  3396. #line 1606 "objc-parse.y"
  3397. { expand_end_cond ();
  3398.           /* This warning is here instead of in simple_if, because we
  3399.              do not want a warning if an empty if is followed by an
  3400.              else statement.  */
  3401.           if (extra_warnings && stmt_count == yyvsp[0].itype)
  3402.             warning_with_file_and_line (if_stmt_file, if_stmt_line,
  3403.                         "empty body in an if-statement"); ;
  3404.     break;}
  3405. case 301:
  3406. #line 1617 "objc-parse.y"
  3407. { expand_end_cond (); ;
  3408.     break;}
  3409. case 302:
  3410. #line 1619 "objc-parse.y"
  3411. { stmt_count++;
  3412.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  3413.           /* The emit_nop used to come before emit_line_note,
  3414.              but that made the nop seem like part of the preceding line.
  3415.              And that was confusing when the preceding line was
  3416.              inside of an if statement and was not really executed.
  3417.              I think it ought to work to put the nop after the line number.
  3418.              We will see.  --rms, July 15, 1991.  */
  3419.           emit_nop (); ;
  3420.     break;}
  3421. case 303:
  3422. #line 1629 "objc-parse.y"
  3423. { /* Don't start the loop till we have succeeded
  3424.              in parsing the end test.  This is to make sure
  3425.              that we end every loop we start.  */
  3426.           expand_start_loop (1);
  3427.           emit_line_note (input_filename, lineno);
  3428.           expand_exit_loop_if_false (NULL_PTR,
  3429.                          truthvalue_conversion (yyvsp[-1].ttype));
  3430.           position_after_white_space (); ;
  3431.     break;}
  3432. case 304:
  3433. #line 1638 "objc-parse.y"
  3434. { expand_end_loop (); ;
  3435.     break;}
  3436. case 305:
  3437. #line 1641 "objc-parse.y"
  3438. { emit_line_note (input_filename, lineno);
  3439.           expand_exit_loop_if_false (NULL_PTR,
  3440.                          truthvalue_conversion (yyvsp[-2].ttype));
  3441.           expand_end_loop ();
  3442.           clear_momentary (); ;
  3443.     break;}
  3444. case 306:
  3445. #line 1648 "objc-parse.y"
  3446. { expand_end_loop ();
  3447.           clear_momentary (); ;
  3448.     break;}
  3449. case 307:
  3450. #line 1652 "objc-parse.y"
  3451. { stmt_count++;
  3452.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3453.           /* See comment in `while' alternative, above.  */
  3454.           emit_nop ();
  3455.           if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
  3456.           /* Next step is to call expand_start_loop_continue_elsewhere,
  3457.              but wait till after we parse the entire for (...).
  3458.              Otherwise, invalid input might cause us to call that
  3459.              fn without calling expand_end_loop.  */
  3460.         ;
  3461.     break;}
  3462. case 308:
  3463. #line 1664 "objc-parse.y"
  3464. { yyvsp[0].lineno = lineno;
  3465.           yyval.filename = input_filename; ;
  3466.     break;}
  3467. case 309:
  3468. #line 1667 "objc-parse.y"
  3469.           /* Start the loop.  Doing this after parsing
  3470.              all the expressions ensures we will end the loop.  */
  3471.           expand_start_loop_continue_elsewhere (1);
  3472.           /* Emit the end-test, with a line number.  */
  3473.           emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
  3474.           if (yyvsp[-4].ttype)
  3475.             expand_exit_loop_if_false (NULL_PTR,
  3476.                            truthvalue_conversion (yyvsp[-4].ttype));
  3477.           /* Don't let the tree nodes for $9 be discarded by
  3478.              clear_momentary during the parsing of the next stmt.  */
  3479.           push_momentary ();
  3480.           yyvsp[-3].lineno = lineno;
  3481.           yyvsp[-2].filename = input_filename;
  3482.           position_after_white_space (); ;
  3483.     break;}
  3484. case 310:
  3485. #line 1683 "objc-parse.y"
  3486. { /* Emit the increment expression, with a line number.  */
  3487.           emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
  3488.           expand_loop_continue_here ();
  3489.           if (yyvsp[-3].ttype)
  3490.             c_expand_expr_stmt (yyvsp[-3].ttype);
  3491.           pop_momentary ();
  3492.           expand_end_loop (); ;
  3493.     break;}
  3494. case 311:
  3495. #line 1691 "objc-parse.y"
  3496. { stmt_count++;
  3497.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3498.           c_expand_start_case (yyvsp[-1].ttype);
  3499.           /* Don't let the tree nodes for $3 be discarded by
  3500.              clear_momentary during the parsing of the next stmt.  */
  3501.           push_momentary ();
  3502.           position_after_white_space (); ;
  3503.     break;}
  3504. case 312:
  3505. #line 1699 "objc-parse.y"
  3506. { expand_end_case (yyvsp[-3].ttype);
  3507.           pop_momentary (); ;
  3508.     break;}
  3509. case 313:
  3510. #line 1702 "objc-parse.y"
  3511. { stmt_count++;
  3512.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3513.           if ( ! expand_exit_something ())
  3514.             error ("break statement not within loop or switch"); ;
  3515.     break;}
  3516. case 314:
  3517. #line 1707 "objc-parse.y"
  3518. { stmt_count++;
  3519.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3520.           if (! expand_continue_loop (NULL_PTR))
  3521.             error ("continue statement not within a loop"); ;
  3522.     break;}
  3523. case 315:
  3524. #line 1712 "objc-parse.y"
  3525. { stmt_count++;
  3526.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3527.           c_expand_return (NULL_TREE); ;
  3528.     break;}
  3529. case 316:
  3530. #line 1716 "objc-parse.y"
  3531. { stmt_count++;
  3532.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3533.           c_expand_return (yyvsp[-1].ttype); ;
  3534.     break;}
  3535. case 317:
  3536. #line 1720 "objc-parse.y"
  3537. { stmt_count++;
  3538.           emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
  3539.           STRIP_NOPS (yyvsp[-2].ttype);
  3540.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  3541.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  3542.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  3543.             expand_asm (yyvsp[-2].ttype);
  3544.           else
  3545.             error ("argument of `asm' is not a constant string"); ;
  3546.     break;}
  3547. case 318:
  3548. #line 1731 "objc-parse.y"
  3549. { stmt_count++;
  3550.           emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
  3551.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  3552.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  3553.                      input_filename, lineno); ;
  3554.     break;}
  3555. case 319:
  3556. #line 1738 "objc-parse.y"
  3557. { stmt_count++;
  3558.           emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
  3559.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  3560.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  3561.                      input_filename, lineno); ;
  3562.     break;}
  3563. case 320:
  3564. #line 1746 "objc-parse.y"
  3565. { stmt_count++;
  3566.           emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
  3567.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  3568.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  3569.                      input_filename, lineno); ;
  3570.     break;}
  3571. case 321:
  3572. #line 1752 "objc-parse.y"
  3573. { tree decl;
  3574.           stmt_count++;
  3575.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3576.           decl = lookup_label (yyvsp[-1].ttype);
  3577.           if (decl != 0)
  3578.             {
  3579.               TREE_USED (decl) = 1;
  3580.               expand_goto (decl);
  3581.             }
  3582.         ;
  3583.     break;}
  3584. case 322:
  3585. #line 1763 "objc-parse.y"
  3586. { stmt_count++;
  3587.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3588.           expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
  3589.     break;}
  3590. case 325:
  3591. #line 1776 "objc-parse.y"
  3592. {
  3593.         /* The value returned by this action is  */
  3594.         /*      1 if everything is OK */ 
  3595.         /*      0 in case of error or already bound iterator */
  3596.  
  3597.         yyval.itype = 0;
  3598.         if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
  3599.           error ("invalid `for (ITERATOR)' syntax");
  3600.         else if (! ITERATOR_P (yyvsp[-1].ttype))
  3601.           error ("`%s' is not an iterator",
  3602.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3603.         else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
  3604.           error ("`for (%s)' inside expansion of same iterator",
  3605.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3606.         else
  3607.           {
  3608.         yyval.itype = 1;
  3609.         iterator_for_loop_start (yyvsp[-1].ttype);
  3610.           }
  3611.       ;
  3612.     break;}
  3613. case 326:
  3614. #line 1797 "objc-parse.y"
  3615. {
  3616.         if (yyvsp[-1].itype)
  3617.           iterator_for_loop_end (yyvsp[-3].ttype);
  3618.       ;
  3619.     break;}
  3620. case 327:
  3621. #line 1829 "objc-parse.y"
  3622. { register tree value = check_case_value (yyvsp[-1].ttype);
  3623.           register tree label
  3624.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3625.  
  3626.           stmt_count++;
  3627.  
  3628.           if (value != error_mark_node)
  3629.             {
  3630.               tree duplicate;
  3631.               int success = pushcase (value, convert_and_check,
  3632.                           label, &duplicate);
  3633.               if (success == 1)
  3634.             error ("case label not within a switch statement");
  3635.               else if (success == 2)
  3636.             {
  3637.               error ("duplicate case value");
  3638.               error_with_decl (duplicate, "this is the first entry for that value");
  3639.             }
  3640.               else if (success == 3)
  3641.             warning ("case value out of range");
  3642.               else if (success == 5)
  3643.             error ("case label within scope of cleanup or variable array");
  3644.             }
  3645.           position_after_white_space (); ;
  3646.     break;}
  3647. case 328:
  3648. #line 1854 "objc-parse.y"
  3649. { register tree value1 = check_case_value (yyvsp[-3].ttype);
  3650.           register tree value2 = check_case_value (yyvsp[-1].ttype);
  3651.           register tree label
  3652.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3653.  
  3654.           stmt_count++;
  3655.  
  3656.           if (value1 != error_mark_node && value2 != error_mark_node)
  3657.             {
  3658.               tree duplicate;
  3659.               int success = pushcase_range (value1, value2,
  3660.                             convert_and_check, label,
  3661.                             &duplicate);
  3662.               if (success == 1)
  3663.             error ("case label not within a switch statement");
  3664.               else if (success == 2)
  3665.             {
  3666.               error ("duplicate case value");
  3667.               error_with_decl (duplicate, "this is the first entry for that value");
  3668.             }
  3669.               else if (success == 3)
  3670.             warning ("case value out of range");
  3671.               else if (success == 4)
  3672.             warning ("empty case range");
  3673.               else if (success == 5)
  3674.             error ("case label within scope of cleanup or variable array");
  3675.             }
  3676.           position_after_white_space (); ;
  3677.     break;}
  3678. case 329:
  3679. #line 1883 "objc-parse.y"
  3680. {
  3681.           tree duplicate;
  3682.           register tree label
  3683.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3684.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  3685.           stmt_count++;
  3686.           if (success == 1)
  3687.             error ("default label not within a switch statement");
  3688.           else if (success == 2)
  3689.             {
  3690.               error ("multiple default labels in one switch");
  3691.               error_with_decl (duplicate, "this is the first default label");
  3692.             }
  3693.           position_after_white_space (); ;
  3694.     break;}
  3695. case 330:
  3696. #line 1898 "objc-parse.y"
  3697. { tree label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  3698.           stmt_count++;
  3699.           emit_nop ();
  3700.           if (label)
  3701.             expand_label (label);
  3702.           position_after_white_space (); ;
  3703.     break;}
  3704. case 331:
  3705. #line 1910 "objc-parse.y"
  3706. { emit_line_note (input_filename, lineno);
  3707.           yyval.ttype = NULL_TREE; ;
  3708.     break;}
  3709. case 332:
  3710. #line 1913 "objc-parse.y"
  3711. { emit_line_note (input_filename, lineno); ;
  3712.     break;}
  3713. case 333:
  3714. #line 1918 "objc-parse.y"
  3715. { yyval.ttype = NULL_TREE; ;
  3716.     break;}
  3717. case 335:
  3718. #line 1925 "objc-parse.y"
  3719. { yyval.ttype = NULL_TREE; ;
  3720.     break;}
  3721. case 338:
  3722. #line 1932 "objc-parse.y"
  3723. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3724.     break;}
  3725. case 339:
  3726. #line 1937 "objc-parse.y"
  3727. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3728.     break;}
  3729. case 340:
  3730. #line 1942 "objc-parse.y"
  3731. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
  3732.     break;}
  3733. case 341:
  3734. #line 1944 "objc-parse.y"
  3735. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
  3736.     break;}
  3737. case 342:
  3738. #line 1950 "objc-parse.y"
  3739. { pushlevel (0);
  3740.           clear_parm_order ();
  3741.           declare_parm_level (0); ;
  3742.     break;}
  3743. case 343:
  3744. #line 1954 "objc-parse.y"
  3745. { yyval.ttype = yyvsp[0].ttype;
  3746.           parmlist_tags_warning ();
  3747.           poplevel (0, 0, 0); ;
  3748.     break;}
  3749. case 345:
  3750. #line 1962 "objc-parse.y"
  3751. { tree parm;
  3752.           if (pedantic)
  3753.             pedwarn ("ANSI C forbids forward parameter declarations");
  3754.           /* Mark the forward decls as such.  */
  3755.           for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
  3756.             TREE_ASM_WRITTEN (parm) = 1;
  3757.           clear_parm_order (); ;
  3758.     break;}
  3759. case 346:
  3760. #line 1970 "objc-parse.y"
  3761. { yyval.ttype = yyvsp[0].ttype; ;
  3762.     break;}
  3763. case 347:
  3764. #line 1972 "objc-parse.y"
  3765. { yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
  3766.     break;}
  3767. case 348:
  3768. #line 1978 "objc-parse.y"
  3769. { yyval.ttype = get_parm_info (0); ;
  3770.     break;}
  3771. case 349:
  3772. #line 1980 "objc-parse.y"
  3773. { yyval.ttype = get_parm_info (0);
  3774.           if (pedantic)
  3775.             pedwarn ("ANSI C requires a named argument before `...'");
  3776.         ;
  3777.     break;}
  3778. case 350:
  3779. #line 1985 "objc-parse.y"
  3780. { yyval.ttype = get_parm_info (1); ;
  3781.     break;}
  3782. case 351:
  3783. #line 1987 "objc-parse.y"
  3784. { yyval.ttype = get_parm_info (0); ;
  3785.     break;}
  3786. case 352:
  3787. #line 1992 "objc-parse.y"
  3788. { push_parm_decl (yyvsp[0].ttype); ;
  3789.     break;}
  3790. case 353:
  3791. #line 1994 "objc-parse.y"
  3792. { push_parm_decl (yyvsp[0].ttype); ;
  3793.     break;}
  3794. case 354:
  3795. #line 2001 "objc-parse.y"
  3796. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3797.     break;}
  3798. case 355:
  3799. #line 2003 "objc-parse.y"
  3800. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3801.     break;}
  3802. case 356:
  3803. #line 2005 "objc-parse.y"
  3804. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3805.     break;}
  3806. case 357:
  3807. #line 2007 "objc-parse.y"
  3808. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3809.     break;}
  3810. case 358:
  3811. #line 2009 "objc-parse.y"
  3812. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3813.     break;}
  3814. case 359:
  3815. #line 2016 "objc-parse.y"
  3816. { pushlevel (0);
  3817.           clear_parm_order ();
  3818.           declare_parm_level (1); ;
  3819.     break;}
  3820. case 360:
  3821. #line 2020 "objc-parse.y"
  3822. { yyval.ttype = yyvsp[0].ttype;
  3823.           parmlist_tags_warning ();
  3824.           poplevel (0, 0, 0); ;
  3825.     break;}
  3826. case 362:
  3827. #line 2028 "objc-parse.y"
  3828. { tree t;
  3829.           for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
  3830.             if (TREE_VALUE (t) == NULL_TREE)
  3831.               error ("`...' in old-style identifier list");
  3832.           yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
  3833.     break;}
  3834. case 363:
  3835. #line 2038 "objc-parse.y"
  3836. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3837.     break;}
  3838. case 364:
  3839. #line 2040 "objc-parse.y"
  3840. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3841.     break;}
  3842. case 365:
  3843. #line 2046 "objc-parse.y"
  3844. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3845.     break;}
  3846. case 366:
  3847. #line 2048 "objc-parse.y"
  3848. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3849.     break;}
  3850. case 372:
  3851. #line 2060 "objc-parse.y"
  3852. {
  3853.           if (objc_implementation_context)
  3854.                     {
  3855.               finish_class (objc_implementation_context);
  3856.               objc_ivar_chain = NULL_TREE;
  3857.               objc_implementation_context = NULL_TREE;
  3858.             }
  3859.           else
  3860.             warning ("`@end' must appear in an implementation context");
  3861.         ;
  3862.     break;}
  3863. case 373:
  3864. #line 2075 "objc-parse.y"
  3865. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3866.     break;}
  3867. case 374:
  3868. #line 2077 "objc-parse.y"
  3869. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3870.     break;}
  3871. case 375:
  3872. #line 2082 "objc-parse.y"
  3873. {
  3874.           objc_declare_class (yyvsp[-1].ttype);
  3875.         ;
  3876.     break;}
  3877. case 376:
  3878. #line 2088 "objc-parse.y"
  3879. {
  3880.           objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
  3881.         ;
  3882.     break;}
  3883. case 377:
  3884. #line 2094 "objc-parse.y"
  3885. {
  3886.           objc_interface_context = objc_ivar_context
  3887.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  3888.                   objc_public_flag = 0;
  3889.         ;
  3890.     break;}
  3891. case 378:
  3892. #line 2100 "objc-parse.y"
  3893. {
  3894.                   continue_class (objc_interface_context);
  3895.         ;
  3896.     break;}
  3897. case 379:
  3898. #line 2105 "objc-parse.y"
  3899. {
  3900.           finish_class (objc_interface_context);
  3901.           objc_interface_context = NULL_TREE;
  3902.         ;
  3903.     break;}
  3904. case 380:
  3905. #line 2111 "objc-parse.y"
  3906. {
  3907.           objc_interface_context
  3908.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-1].ttype, NULL_TREE, yyvsp[0].ttype);
  3909.                   continue_class (objc_interface_context);
  3910.         ;
  3911.     break;}
  3912. case 381:
  3913. #line 2118 "objc-parse.y"
  3914. {
  3915.           finish_class (objc_interface_context);
  3916.           objc_interface_context = NULL_TREE;
  3917.         ;
  3918.     break;}
  3919. case 382:
  3920. #line 2124 "objc-parse.y"
  3921. {
  3922.           objc_interface_context = objc_ivar_context
  3923.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[-1].ttype);
  3924.                   objc_public_flag = 0;
  3925.         ;
  3926.     break;}
  3927. case 383:
  3928. #line 2130 "objc-parse.y"
  3929. {
  3930.                   continue_class (objc_interface_context);
  3931.         ;
  3932.     break;}
  3933. case 384:
  3934. #line 2135 "objc-parse.y"
  3935. {
  3936.           finish_class (objc_interface_context);
  3937.           objc_interface_context = NULL_TREE;
  3938.         ;
  3939.     break;}
  3940. case 385:
  3941. #line 2141 "objc-parse.y"
  3942. {
  3943.           objc_interface_context
  3944.             = start_class (CLASS_INTERFACE_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
  3945.                   continue_class (objc_interface_context);
  3946.         ;
  3947.     break;}
  3948. case 386:
  3949. #line 2148 "objc-parse.y"
  3950. {
  3951.           finish_class (objc_interface_context);
  3952.           objc_interface_context = NULL_TREE;
  3953.         ;
  3954.     break;}
  3955. case 387:
  3956. #line 2154 "objc-parse.y"
  3957. {
  3958.           objc_implementation_context = objc_ivar_context
  3959.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
  3960.                   objc_public_flag = 0;
  3961.         ;
  3962.     break;}
  3963. case 388:
  3964. #line 2160 "objc-parse.y"
  3965. {
  3966.                   objc_ivar_chain
  3967.             = continue_class (objc_implementation_context);
  3968.         ;
  3969.     break;}
  3970. case 389:
  3971. #line 2166 "objc-parse.y"
  3972. {
  3973.           objc_implementation_context
  3974.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[0].ttype, NULL_TREE, NULL_TREE);
  3975.                   objc_ivar_chain
  3976.             = continue_class (objc_implementation_context);
  3977.         ;
  3978.     break;}
  3979. case 390:
  3980. #line 2174 "objc-parse.y"
  3981. {
  3982.           objc_implementation_context = objc_ivar_context
  3983.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
  3984.                   objc_public_flag = 0;
  3985.         ;
  3986.     break;}
  3987. case 391:
  3988. #line 2180 "objc-parse.y"
  3989. {
  3990.                   objc_ivar_chain
  3991.             = continue_class (objc_implementation_context);
  3992.         ;
  3993.     break;}
  3994. case 392:
  3995. #line 2186 "objc-parse.y"
  3996. {
  3997.           objc_implementation_context
  3998.             = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
  3999.                   objc_ivar_chain
  4000.             = continue_class (objc_implementation_context);
  4001.         ;
  4002.     break;}
  4003. case 393:
  4004. #line 2194 "objc-parse.y"
  4005. {
  4006.           objc_interface_context
  4007.             = start_class (CATEGORY_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
  4008.                   continue_class (objc_interface_context);
  4009.         ;
  4010.     break;}
  4011. case 394:
  4012. #line 2201 "objc-parse.y"
  4013. {
  4014.           finish_class (objc_interface_context);
  4015.           objc_interface_context = NULL_TREE;
  4016.         ;
  4017.     break;}
  4018. case 395:
  4019. #line 2207 "objc-parse.y"
  4020. {
  4021.           objc_implementation_context
  4022.             = start_class (CATEGORY_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
  4023.                   objc_ivar_chain
  4024.             = continue_class (objc_implementation_context);
  4025.         ;
  4026.     break;}
  4027. case 396:
  4028. #line 2217 "objc-parse.y"
  4029. {
  4030.           remember_protocol_qualifiers ();
  4031.           objc_interface_context
  4032.             = start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
  4033.         ;
  4034.     break;}
  4035. case 397:
  4036. #line 2223 "objc-parse.y"
  4037. {
  4038.           forget_protocol_qualifiers();
  4039.           finish_protocol(objc_interface_context);
  4040.           objc_interface_context = NULL_TREE;
  4041.         ;
  4042.     break;}
  4043. case 398:
  4044. #line 2232 "objc-parse.y"
  4045. {
  4046.           yyval.ttype = NULL_TREE;
  4047.         ;
  4048.     break;}
  4049. case 399:
  4050. #line 2236 "objc-parse.y"
  4051. {
  4052.           if (yyvsp[-2].code == LT_EXPR && yyvsp[0].code == GT_EXPR)
  4053.             yyval.ttype = yyvsp[-1].ttype;
  4054.           else
  4055.             YYERROR1;
  4056.         ;
  4057.     break;}
  4058. case 402:
  4059. #line 2250 "objc-parse.y"
  4060. { objc_public_flag = 2; ;
  4061.     break;}
  4062. case 403:
  4063. #line 2251 "objc-parse.y"
  4064. { objc_public_flag = 0; ;
  4065.     break;}
  4066. case 404:
  4067. #line 2252 "objc-parse.y"
  4068. { objc_public_flag = 1; ;
  4069.     break;}
  4070. case 405:
  4071. #line 2257 "objc-parse.y"
  4072. {
  4073.                   yyval.ttype = NULL_TREE;
  4074.                 ;
  4075.     break;}
  4076. case 407:
  4077. #line 2262 "objc-parse.y"
  4078. {
  4079.                   if (pedantic)
  4080.             pedwarn ("extra semicolon in struct or union specified");
  4081.                 ;
  4082.     break;}
  4083. case 408:
  4084. #line 2280 "objc-parse.y"
  4085. {
  4086.                   yyval.ttype = yyvsp[0].ttype;
  4087.           resume_momentary (yyvsp[-1].itype);
  4088.                 ;
  4089.     break;}
  4090. case 409:
  4091. #line 2285 "objc-parse.y"
  4092. {
  4093.                   yyval.ttype = yyvsp[0].ttype;
  4094.           resume_momentary (yyvsp[-1].itype);
  4095.                 ;
  4096.     break;}
  4097. case 410:
  4098. #line 2290 "objc-parse.y"
  4099. { yyval.ttype = NULL_TREE; ;
  4100.     break;}
  4101. case 411:
  4102. #line 2295 "objc-parse.y"
  4103. { yyval.ttype = NULL_TREE; ;
  4104.     break;}
  4105. case 414:
  4106. #line 2302 "objc-parse.y"
  4107. {
  4108.           yyval.ttype = add_instance_variable (objc_ivar_context,
  4109.                           objc_public_flag,
  4110.                           yyvsp[0].ttype, current_declspecs,
  4111.                           NULL_TREE);
  4112.                 ;
  4113.     break;}
  4114. case 415:
  4115. #line 2309 "objc-parse.y"
  4116. {
  4117.           yyval.ttype = add_instance_variable (objc_ivar_context,
  4118.                           objc_public_flag,
  4119.                           yyvsp[-2].ttype, current_declspecs, yyvsp[0].ttype);
  4120.                 ;
  4121.     break;}
  4122. case 416:
  4123. #line 2315 "objc-parse.y"
  4124. {
  4125.           yyval.ttype = add_instance_variable (objc_ivar_context,
  4126.                           objc_public_flag,
  4127.                           NULL_TREE,
  4128.                           current_declspecs, yyvsp[0].ttype);
  4129.                 ;
  4130.     break;}
  4131. case 417:
  4132. #line 2325 "objc-parse.y"
  4133. {
  4134.           remember_protocol_qualifiers ();
  4135.           if (objc_implementation_context)
  4136.             objc_inherit_code = CLASS_METHOD_DECL;
  4137.                   else
  4138.             fatal ("method definition not in class context");
  4139.         ;
  4140.     break;}
  4141. case 418:
  4142. #line 2333 "objc-parse.y"
  4143. {
  4144.           forget_protocol_qualifiers ();
  4145.           add_class_method (objc_implementation_context, yyvsp[0].ttype);
  4146.           start_method_def (yyvsp[0].ttype);
  4147.           objc_method_context = yyvsp[0].ttype;
  4148.         ;
  4149.     break;}
  4150. case 419:
  4151. #line 2340 "objc-parse.y"
  4152. {
  4153.           continue_method_def ();
  4154.         ;
  4155.     break;}
  4156. case 420:
  4157. #line 2344 "objc-parse.y"
  4158. {
  4159.           finish_method_def ();
  4160.           objc_method_context = NULL_TREE;
  4161.         ;
  4162.     break;}
  4163. case 421:
  4164. #line 2350 "objc-parse.y"
  4165. {
  4166.           remember_protocol_qualifiers ();
  4167.           if (objc_implementation_context)
  4168.             objc_inherit_code = INSTANCE_METHOD_DECL;
  4169.                   else
  4170.             fatal ("method definition not in class context");
  4171.         ;
  4172.     break;}
  4173. case 422:
  4174. #line 2358 "objc-parse.y"
  4175. {
  4176.           forget_protocol_qualifiers ();
  4177.           add_instance_method (objc_implementation_context, yyvsp[0].ttype);
  4178.           start_method_def (yyvsp[0].ttype);
  4179.           objc_method_context = yyvsp[0].ttype;
  4180.         ;
  4181.     break;}
  4182. case 423:
  4183. #line 2365 "objc-parse.y"
  4184. {
  4185.           continue_method_def ();
  4186.         ;
  4187.     break;}
  4188. case 424:
  4189. #line 2369 "objc-parse.y"
  4190. {
  4191.           finish_method_def ();
  4192.           objc_method_context = NULL_TREE;
  4193.         ;
  4194.     break;}
  4195. case 426:
  4196. #line 2381 "objc-parse.y"
  4197. {yyval.ttype = NULL_TREE; ;
  4198.     break;}
  4199. case 431:
  4200. #line 2388 "objc-parse.y"
  4201. {yyval.ttype = NULL_TREE; ;
  4202.     break;}
  4203. case 435:
  4204. #line 2398 "objc-parse.y"
  4205. {
  4206.           objc_inherit_code = CLASS_METHOD_DECL;
  4207.         ;
  4208.     break;}
  4209. case 436:
  4210. #line 2402 "objc-parse.y"
  4211. {
  4212.           add_class_method (objc_interface_context, yyvsp[0].ttype);
  4213.         ;
  4214.     break;}
  4215. case 438:
  4216. #line 2408 "objc-parse.y"
  4217. {
  4218.           objc_inherit_code = INSTANCE_METHOD_DECL;
  4219.         ;
  4220.     break;}
  4221. case 439:
  4222. #line 2412 "objc-parse.y"
  4223. {
  4224.           add_instance_method (objc_interface_context, yyvsp[0].ttype);
  4225.         ;
  4226.     break;}
  4227. case 441:
  4228. #line 2420 "objc-parse.y"
  4229. {
  4230.           yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
  4231.         ;
  4232.     break;}
  4233. case 442:
  4234. #line 2425 "objc-parse.y"
  4235. {
  4236.           yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  4237.         ;
  4238.     break;}
  4239. case 443:
  4240. #line 2430 "objc-parse.y"
  4241. {
  4242.           yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
  4243.         ;
  4244.     break;}
  4245. case 444:
  4246. #line 2435 "objc-parse.y"
  4247. {
  4248.           yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
  4249.         ;
  4250.     break;}
  4251. case 453:
  4252. #line 2465 "objc-parse.y"
  4253. { resume_momentary (yyvsp[-2].itype); ;
  4254.     break;}
  4255. case 454:
  4256. #line 2467 "objc-parse.y"
  4257. { shadow_tag (yyvsp[-1].ttype); ;
  4258.     break;}
  4259. case 455:
  4260. #line 2469 "objc-parse.y"
  4261. { pedwarn ("empty declaration"); ;
  4262.     break;}
  4263. case 456:
  4264. #line 2474 "objc-parse.y"
  4265. { push_parm_decl (yyvsp[0].ttype); ;
  4266.     break;}
  4267. case 457:
  4268. #line 2476 "objc-parse.y"
  4269. { push_parm_decl (yyvsp[0].ttype); ;
  4270.     break;}
  4271. case 458:
  4272. #line 2484 "objc-parse.y"
  4273. { yyval.ttype = build_tree_list (current_declspecs, yyvsp[0].ttype)    ; ;
  4274.     break;}
  4275. case 459:
  4276. #line 2486 "objc-parse.y"
  4277. { yyval.ttype = build_tree_list (current_declspecs, yyvsp[0].ttype)    ; ;
  4278.     break;}
  4279. case 460:
  4280. #line 2488 "objc-parse.y"
  4281. { yyval.ttype = build_tree_list (current_declspecs, yyvsp[0].ttype)    ; ;
  4282.     break;}
  4283. case 461:
  4284. #line 2493 "objc-parse.y"
  4285. {
  4286.               yyval.ttype = NULL_TREE;
  4287.         ;
  4288.     break;}
  4289. case 462:
  4290. #line 2497 "objc-parse.y"
  4291. {
  4292.           /* oh what a kludge! */
  4293.           yyval.ttype = (tree)1;
  4294.         ;
  4295.     break;}
  4296. case 463:
  4297. #line 2502 "objc-parse.y"
  4298. {
  4299.           pushlevel (0);
  4300.         ;
  4301.     break;}
  4302. case 464:
  4303. #line 2506 "objc-parse.y"
  4304. {
  4305.             /* returns a tree list node generated by get_parm_info */
  4306.           yyval.ttype = yyvsp[0].ttype;
  4307.           poplevel (0, 0, 0);
  4308.         ;
  4309.     break;}
  4310. case 467:
  4311. #line 2521 "objc-parse.y"
  4312. {
  4313.           yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  4314.         ;
  4315.     break;}
  4316. case 472:
  4317. #line 2534 "objc-parse.y"
  4318. { yyval.ttype = get_identifier (token_buffer); ;
  4319.     break;}
  4320. case 473:
  4321. #line 2535 "objc-parse.y"
  4322. { yyval.ttype = get_identifier (token_buffer); ;
  4323.     break;}
  4324. case 474:
  4325. #line 2536 "objc-parse.y"
  4326. { yyval.ttype = get_identifier (token_buffer); ;
  4327.     break;}
  4328. case 475:
  4329. #line 2537 "objc-parse.y"
  4330. { yyval.ttype = get_identifier (token_buffer); ;
  4331.     break;}
  4332. case 476:
  4333. #line 2538 "objc-parse.y"
  4334. { yyval.ttype = get_identifier (token_buffer); ;
  4335.     break;}
  4336. case 477:
  4337. #line 2539 "objc-parse.y"
  4338. { yyval.ttype = get_identifier (token_buffer); ;
  4339.     break;}
  4340. case 478:
  4341. #line 2540 "objc-parse.y"
  4342. { yyval.ttype = get_identifier (token_buffer); ;
  4343.     break;}
  4344. case 479:
  4345. #line 2541 "objc-parse.y"
  4346. { yyval.ttype = get_identifier (token_buffer); ;
  4347.     break;}
  4348. case 480:
  4349. #line 2542 "objc-parse.y"
  4350. { yyval.ttype = get_identifier (token_buffer); ;
  4351.     break;}
  4352. case 481:
  4353. #line 2543 "objc-parse.y"
  4354. { yyval.ttype = get_identifier (token_buffer); ;
  4355.     break;}
  4356. case 482:
  4357. #line 2544 "objc-parse.y"
  4358. { yyval.ttype = get_identifier (token_buffer); ;
  4359.     break;}
  4360. case 483:
  4361. #line 2545 "objc-parse.y"
  4362. { yyval.ttype = get_identifier (token_buffer); ;
  4363.     break;}
  4364. case 484:
  4365. #line 2546 "objc-parse.y"
  4366. { yyval.ttype = get_identifier (token_buffer); ;
  4367.     break;}
  4368. case 485:
  4369. #line 2547 "objc-parse.y"
  4370. { yyval.ttype = get_identifier (token_buffer); ;
  4371.     break;}
  4372. case 486:
  4373. #line 2548 "objc-parse.y"
  4374. { yyval.ttype = get_identifier (token_buffer); ;
  4375.     break;}
  4376. case 487:
  4377. #line 2549 "objc-parse.y"
  4378. { yyval.ttype = get_identifier (token_buffer); ;
  4379.     break;}
  4380. case 488:
  4381. #line 2550 "objc-parse.y"
  4382. { yyval.ttype = get_identifier (token_buffer); ;
  4383.     break;}
  4384. case 489:
  4385. #line 2551 "objc-parse.y"
  4386. { yyval.ttype = get_identifier (token_buffer); ;
  4387.     break;}
  4388. case 490:
  4389. #line 2552 "objc-parse.y"
  4390. { yyval.ttype = get_identifier (token_buffer); ;
  4391.     break;}
  4392. case 493:
  4393. #line 2558 "objc-parse.y"
  4394. {
  4395.           yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
  4396.         ;
  4397.     break;}
  4398. case 494:
  4399. #line 2563 "objc-parse.y"
  4400. {
  4401.           yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
  4402.         ;
  4403.     break;}
  4404. case 495:
  4405. #line 2568 "objc-parse.y"
  4406. {
  4407.           yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
  4408.         ;
  4409.     break;}
  4410. case 496:
  4411. #line 2573 "objc-parse.y"
  4412. {
  4413.           yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
  4414.         ;
  4415.     break;}
  4416. case 500:
  4417. #line 2586 "objc-parse.y"
  4418. {
  4419.           yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  4420.         ;
  4421.     break;}
  4422. case 501:
  4423. #line 2594 "objc-parse.y"
  4424. {
  4425.           if (TREE_CHAIN (yyvsp[0].ttype) == NULL_TREE)
  4426.             /* just return the expr., remove a level of indirection */
  4427.             yyval.ttype = TREE_VALUE (yyvsp[0].ttype);
  4428.                   else
  4429.             /* we have a comma expr., we will collapse later */
  4430.             yyval.ttype = yyvsp[0].ttype;
  4431.         ;
  4432.     break;}
  4433. case 502:
  4434. #line 2606 "objc-parse.y"
  4435. {
  4436.           yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
  4437.         ;
  4438.     break;}
  4439. case 503:
  4440. #line 2610 "objc-parse.y"
  4441. {
  4442.           yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
  4443.         ;
  4444.     break;}
  4445. case 505:
  4446. #line 2618 "objc-parse.y"
  4447. {
  4448.           yyval.ttype = get_class_reference (yyvsp[0].ttype);
  4449.         ;
  4450.     break;}
  4451. case 506:
  4452. #line 2625 "objc-parse.y"
  4453. { objc_receiver_context = 1; ;
  4454.     break;}
  4455. case 507:
  4456. #line 2627 "objc-parse.y"
  4457. { objc_receiver_context = 0; ;
  4458.     break;}
  4459. case 508:
  4460. #line 2629 "objc-parse.y"
  4461. {
  4462.           yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
  4463.         ;
  4464.     break;}
  4465. case 512:
  4466. #line 2642 "objc-parse.y"
  4467. {
  4468.           yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  4469.         ;
  4470.     break;}
  4471. case 513:
  4472. #line 2649 "objc-parse.y"
  4473. {
  4474.           yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
  4475.         ;
  4476.     break;}
  4477. case 514:
  4478. #line 2653 "objc-parse.y"
  4479. {
  4480.           yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
  4481.         ;
  4482.     break;}
  4483. case 515:
  4484. #line 2660 "objc-parse.y"
  4485. {
  4486.           yyval.ttype = yyvsp[-1].ttype;
  4487.         ;
  4488.     break;}
  4489. case 516:
  4490. #line 2667 "objc-parse.y"
  4491. {
  4492.           yyval.ttype = yyvsp[-1].ttype;
  4493.         ;
  4494.     break;}
  4495. case 517:
  4496. #line 2676 "objc-parse.y"
  4497. {
  4498.           yyval.ttype = groktypename (yyvsp[-1].ttype);
  4499.         ;
  4500.     break;}
  4501. }
  4502.    /* the action file gets copied in in place of this dollarsign */
  4503. #line 465 "/usr/lib/bison.simple"
  4504.  
  4505.   yyvsp -= yylen;
  4506.   yyssp -= yylen;
  4507. #ifdef YYLSP_NEEDED
  4508.   yylsp -= yylen;
  4509. #endif
  4510.  
  4511. #if YYDEBUG != 0
  4512.   if (yydebug)
  4513.     {
  4514.       short *ssp1 = yyss - 1;
  4515.       fprintf (stderr, "state stack now");
  4516.       while (ssp1 != yyssp)
  4517.     fprintf (stderr, " %d", *++ssp1);
  4518.       fprintf (stderr, "\n");
  4519.     }
  4520. #endif
  4521.  
  4522.   *++yyvsp = yyval;
  4523.  
  4524. #ifdef YYLSP_NEEDED
  4525.   yylsp++;
  4526.   if (yylen == 0)
  4527.     {
  4528.       yylsp->first_line = yylloc.first_line;
  4529.       yylsp->first_column = yylloc.first_column;
  4530.       yylsp->last_line = (yylsp-1)->last_line;
  4531.       yylsp->last_column = (yylsp-1)->last_column;
  4532.       yylsp->text = 0;
  4533.     }
  4534.   else
  4535.     {
  4536.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  4537.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  4538.     }
  4539. #endif
  4540.  
  4541.   /* Now "shift" the result of the reduction.
  4542.      Determine what state that goes to,
  4543.      based on the state we popped back to
  4544.      and the rule number reduced by.  */
  4545.  
  4546.   yyn = yyr1[yyn];
  4547.  
  4548.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  4549.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  4550.     yystate = yytable[yystate];
  4551.   else
  4552.     yystate = yydefgoto[yyn - YYNTBASE];
  4553.  
  4554.   goto yynewstate;
  4555.  
  4556. yyerrlab:   /* here on detecting error */
  4557.  
  4558.   if (! yyerrstatus)
  4559.     /* If not already recovering from an error, report this error.  */
  4560.     {
  4561.       ++yynerrs;
  4562.  
  4563. #ifdef YYERROR_VERBOSE
  4564.       yyn = yypact[yystate];
  4565.  
  4566.       if (yyn > YYFLAG && yyn < YYLAST)
  4567.     {
  4568.       int size = 0;
  4569.       char *msg;
  4570.       int x, count;
  4571.  
  4572.       count = 0;
  4573.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  4574.       for (x = (yyn < 0 ? -yyn : 0);
  4575.            x < (sizeof(yytname) / sizeof(char *)); x++)
  4576.         if (yycheck[x + yyn] == x)
  4577.           size += strlen(yytname[x]) + 15, count++;
  4578.       msg = (char *) malloc(size + 15);
  4579.       if (msg != 0)
  4580.         {
  4581.           strcpy(msg, "parse error");
  4582.  
  4583.           if (count < 5)
  4584.         {
  4585.           count = 0;
  4586.           for (x = (yyn < 0 ? -yyn : 0);
  4587.                x < (sizeof(yytname) / sizeof(char *)); x++)
  4588.             if (yycheck[x + yyn] == x)
  4589.               {
  4590.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  4591.             strcat(msg, yytname[x]);
  4592.             strcat(msg, "'");
  4593.             count++;
  4594.               }
  4595.         }
  4596.           yyerror(msg);
  4597.           free(msg);
  4598.         }
  4599.       else
  4600.         yyerror ("parse error; also virtual memory exceeded");
  4601.     }
  4602.       else
  4603. #endif /* YYERROR_VERBOSE */
  4604.     yyerror("parse error");
  4605.     }
  4606.  
  4607.   goto yyerrlab1;
  4608. yyerrlab1:   /* here on error raised explicitly by an action */
  4609.  
  4610.   if (yyerrstatus == 3)
  4611.     {
  4612.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  4613.  
  4614.       /* return failure if at end of input */
  4615.       if (yychar == YYEOF)
  4616.     YYABORT;
  4617.  
  4618. #if YYDEBUG != 0
  4619.       if (yydebug)
  4620.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  4621. #endif
  4622.  
  4623.       yychar = YYEMPTY;
  4624.     }
  4625.  
  4626.   /* Else will try to reuse lookahead token
  4627.      after shifting the error token.  */
  4628.  
  4629.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  4630.  
  4631.   goto yyerrhandle;
  4632.  
  4633. yyerrdefault:  /* current state does not do anything special for the error token. */
  4634.  
  4635. #if 0
  4636.   /* This is wrong; only states that explicitly want error tokens
  4637.      should shift them.  */
  4638.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  4639.   if (yyn) goto yydefault;
  4640. #endif
  4641.  
  4642. yyerrpop:   /* pop the current state because it cannot handle the error token */
  4643.  
  4644.   if (yyssp == yyss) YYABORT;
  4645.   yyvsp--;
  4646.   yystate = *--yyssp;
  4647. #ifdef YYLSP_NEEDED
  4648.   yylsp--;
  4649. #endif
  4650.  
  4651. #if YYDEBUG != 0
  4652.   if (yydebug)
  4653.     {
  4654.       short *ssp1 = yyss - 1;
  4655.       fprintf (stderr, "Error: state stack now");
  4656.       while (ssp1 != yyssp)
  4657.     fprintf (stderr, " %d", *++ssp1);
  4658.       fprintf (stderr, "\n");
  4659.     }
  4660. #endif
  4661.  
  4662. yyerrhandle:
  4663.  
  4664.   yyn = yypact[yystate];
  4665.   if (yyn == YYFLAG)
  4666.     goto yyerrdefault;
  4667.  
  4668.   yyn += YYTERROR;
  4669.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  4670.     goto yyerrdefault;
  4671.  
  4672.   yyn = yytable[yyn];
  4673.   if (yyn < 0)
  4674.     {
  4675.       if (yyn == YYFLAG)
  4676.     goto yyerrpop;
  4677.       yyn = -yyn;
  4678.       goto yyreduce;
  4679.     }
  4680.   else if (yyn == 0)
  4681.     goto yyerrpop;
  4682.  
  4683.   if (yyn == YYFINAL)
  4684.     YYACCEPT;
  4685.  
  4686. #if YYDEBUG != 0
  4687.   if (yydebug)
  4688.     fprintf(stderr, "Shifting error token, ");
  4689. #endif
  4690.  
  4691.   *++yyvsp = yylval;
  4692. #ifdef YYLSP_NEEDED
  4693.   *++yylsp = yylloc;
  4694. #endif
  4695.  
  4696.   yystate = yyn;
  4697.   goto yynewstate;
  4698. }
  4699. #line 2681 "objc-parse.y"
  4700.  
  4701.