home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / vsl-gramma.C < prev    next >
C/C++ Source or Header  |  1998-12-06  |  62KB  |  1,951 lines

  1. // This file was modified for -*- C++ -*-
  2. // using $RCSfile: yacctoC.bison,v $ $Revision: 1.9 $
  3. extern void vslerror(char *s);
  4. extern int vsllex();
  5.  
  6.  
  7. /*  A Bison parser, made from ./vsl-gramma.Y
  8.  by  GNU Bison version 1.25
  9.   */
  10.  
  11. #define YYBISON 1  /* Identify Bison output.  */
  12.  
  13. #define    IDENTIFIER    258
  14. #define    STRING    259
  15. #define    INTEGER    260
  16. #define    ARROW    261
  17. #define    IF    262
  18. #define    THEN    263
  19. #define    ELSE    264
  20. #define    ELSIF    265
  21. #define    FI    266
  22. #define    OR    267
  23. #define    AND    268
  24. #define    NOT    269
  25. #define    LET    270
  26. #define    IN    271
  27. #define    WHERE    272
  28. #define    OVERRIDE    273
  29. #define    REPLACE    274
  30. #define    EQ    275
  31. #define    NE    276
  32. #define    GT    277
  33. #define    GE    278
  34. #define    LT    279
  35. #define    LE    280
  36. #define    HALIGN    281
  37. #define    VALIGN    282
  38. #define    UALIGN    283
  39. #define    TALIGN    284
  40. #define    APPEND    285
  41. #define    CONS    286
  42. #define    THREEDOTS    287
  43.  
  44. #line 4 "./vsl-gramma.Y"
  45.  
  46.  
  47. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  48. // Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  49. // 
  50. // This file is part of DDD.
  51. // 
  52. // DDD is free software; you can redistribute it and/or
  53. // modify it under the terms of the GNU General Public
  54. // License as published by the Free Software Foundation; either
  55. // version 2 of the License, or (at your option) any later version.
  56. // 
  57. // DDD is distributed in the hope that it will be useful,
  58. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  59. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  60. // See the GNU General Public License for more details.
  61. // 
  62. // You should have received a copy of the GNU General Public
  63. // License along with DDD -- see the file COPYING.
  64. // If not, write to the Free Software Foundation, Inc.,
  65. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  66. // 
  67. // DDD is the data display debugger.
  68. // For details, see the DDD World-Wide-Web page, 
  69. // `http://www.cs.tu-bs.de/softech/ddd/',
  70. // or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  71.  
  72.  
  73. // Some declarations and utilities
  74.  
  75. char VSL_yacc_rcsid[] = 
  76.     "$Id: vsl-gramma.Y,v 1.13 1998/05/14 17:01:08 zeller Exp $";
  77.  
  78.  
  79. // Function calls
  80.  
  81. // Return appropriate node for function call
  82. VSLNode *VSLLib::_call(const string& func_name, VSLNode *arg)
  83. {
  84.     // Find definition list
  85.     VSLDefList* def = deflist(func_name);
  86.     if (def == 0)
  87.     {
  88.     VSLLib::parse_error("'" + func_name + "(...)' undefined");
  89.     delete arg;
  90.     arg = 0;
  91.     }
  92.  
  93.     // Return calling node
  94.     if (def && arg)
  95.     return new DefCallNode(def, arg);
  96.  
  97.     return 0;
  98. }
  99.  
  100. VSLNode *VSLLib::call(const string& name)
  101. {
  102.     return _call(name, new EmptyListNode);
  103. }
  104.  
  105. VSLNode *VSLLib::call(const string& name, VSLNode *arg)
  106. {
  107.     if (arg)
  108.     return _call(name, new FixListNode(arg));
  109.  
  110.     return 0;
  111. }
  112.  
  113. VSLNode *VSLLib::call(const string& name, VSLNode *arg1, VSLNode *arg2)
  114. {
  115.     if (arg1 && arg2)
  116.     return _call(name, new FixListNode(arg1, arg2));
  117.  
  118.     return 0;
  119. }
  120.  
  121. VSLNode *VSLLib::call(const string& name, 
  122.               VSLNode *arg1, VSLNode *arg2, VSLNode *arg3)
  123. {
  124.     if (arg1 && arg2 && arg3)
  125.     return _call(name, new FixListNode(arg1, arg2, arg3));
  126.  
  127.     return 0;
  128. }
  129.  
  130. // Some settings
  131. #define YYERROR_VERBOSE
  132.  
  133. #ifdef YYERROR_VERBOSE
  134. #define YYDEBUG 1
  135. #endif
  136.  
  137. #line 143 "./vsl-gramma.Y"
  138. typedef struct _YYSTYPE  {
  139.     // Our special yacctoC program makes this a struct -- 
  140.     // thus we use an anonymous union (does not harm in other cases)
  141.     union {
  142.     VSLNode *node;
  143.     string *str;
  144.     int num;
  145.     double fnum;
  146.     struct {
  147.         string *id;
  148.         VSLNode *pattern;
  149.         string *file;
  150.         int line;
  151.     } header;
  152.     struct {
  153.         VSLNode *pattern;
  154.         VSLNode *args;
  155.     } vardef;
  156.     };
  157. } YYSTYPE;
  158. #include <stdio.h>
  159.  
  160. #ifndef __cplusplus
  161. #ifndef __STDC__
  162. #define const
  163. #endif
  164. #endif
  165.  
  166.  
  167.  
  168. #define    YYFINAL        189
  169. #define    YYFLAG        -32768
  170. #define    YYNTBASE    44
  171.  
  172. #define YYTRANSLATE(x) ((unsigned)(x) <= 287 ? vsltranslate[x] : 82)
  173.  
  174. static const char vsltranslate[] = {     0,
  175.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  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,    37,     2,     2,    39,
  179.     40,    35,    33,    41,    34,     2,    36,     2,     2,     2,
  180.      2,     2,     2,     2,     2,     2,     2,     2,    38,     2,
  181.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  182.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  183.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  184.     42,     2,    43,     2,     2,     2,     2,     2,     2,     2,
  185.      2,     2,     2,     2,     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,     2,     2,     2,     2,     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,     1,     2,     3,     4,     5,
  201.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  202.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  203.     26,    27,    28,    29,    30,    31,    32
  204. };
  205.  
  206. #if YYDEBUG != 0
  207. static const short vslprhs[] = {     0,
  208.      0,     2,     3,     6,     9,    12,    14,    16,    18,    21,
  209.     23,    26,    28,    30,    34,    38,    42,    46,    50,    54,
  210.     58,    62,    66,    70,    74,    78,    82,    86,    90,    94,
  211.     98,   100,   102,   104,   107,   110,   113,   116,   118,   120,
  212.    124,   127,   131,   133,   135,   139,   143,   147,   151,   153,
  213.    155,   157,   159,   161,   163,   165,   168,   172,   175,   179,
  214.    181,   183,   187,   191,   194,   196,   198,   200,   202,   205,
  215.    207,   210,   213,   216,   219,   223,   227,   231,   235,   239,
  216.    243,   247,   251,   255,   259,   263,   267,   271,   275,   279,
  217.    283,   287,   291,   298,   304,   307,   309,   313,   315,   318,
  218.    320,   324,   326,   329,   331,   335
  219. };
  220.  
  221. static const short vslrhs[] = {    45,
  222.      0,     0,    45,    46,     0,    47,    38,     0,    51,    38,
  223.      0,    76,     0,    79,     0,    38,     0,     1,    38,     0,
  224.     48,     0,    49,    74,     0,    49,     0,    50,     0,    39,
  225.     20,    40,     0,    39,    21,    40,     0,    39,    22,    40,
  226.      0,    39,    23,    40,     0,    39,    24,    40,     0,    39,
  227.     25,    40,     0,    39,    26,    40,     0,    39,    27,    40,
  228.      0,    39,    28,    40,     0,    39,    29,    40,     0,    39,
  229.     33,    40,     0,    39,    34,    40,     0,    39,    35,    40,
  230.      0,    39,    36,    40,     0,    39,    37,    40,     0,    39,
  231.     31,    40,     0,    39,    14,    40,     0,     3,     0,    52,
  232.      0,    54,     0,    53,    56,     0,    48,    20,     0,    55,
  233.     56,     0,    48,     6,     0,    57,     0,    59,     0,    15,
  234.     61,    58,     0,    16,    57,     0,    41,    61,    58,     0,
  235.     62,     0,    60,     0,    59,    17,    61,     0,    60,    41,
  236.     61,     0,    62,    20,    62,     0,    39,    57,    40,     0,
  237.     63,     0,    66,     0,    71,     0,    70,     0,    72,     0,
  238.     69,     0,    75,     0,    42,    43,     0,    42,    64,    43,
  239.      0,    39,    40,     0,    39,    65,    40,     0,    57,     0,
  240.     65,     0,    62,    30,    62,     0,    62,    41,    64,     0,
  241.     62,    32,     0,    32,     0,    67,     0,    68,     0,     4,
  242.      0,    67,     4,     0,     5,     0,    49,    74,     0,    14,
  243.     62,     0,    33,    62,     0,    34,    62,     0,    62,    20,
  244.     62,     0,    62,    21,    62,     0,    62,    22,    62,     0,
  245.     62,    23,    62,     0,    62,    24,    62,     0,    62,    25,
  246.     62,     0,    62,    26,    62,     0,    62,    27,    62,     0,
  247.     62,    28,    62,     0,    62,    29,    62,     0,    62,    33,
  248.     62,     0,    62,    34,    62,     0,    62,    35,    62,     0,
  249.     62,    36,    62,     0,    62,    37,    62,     0,    62,    31,
  250.     62,     0,    62,    12,    62,     0,    62,    13,    62,     0,
  251.      7,    62,     8,    57,    73,    11,     0,    10,    62,     8,
  252.     57,    73,     0,     9,    57,     0,    63,     0,    39,    57,
  253.     40,     0,    50,     0,    18,    77,     0,    78,     0,    77,
  254.     41,    78,     0,    49,     0,    19,    80,     0,    81,     0,
  255.     80,    41,    81,     0,    49,     0
  256. };
  257.  
  258. #endif
  259.  
  260. #if YYDEBUG != 0
  261. static const short vslrline[] = { 0,
  262.    181,   183,   184,   186,   187,   188,   189,   190,   191,   195,
  263.    210,   220,   232,   234,   236,   238,   240,   242,   244,   246,
  264.    248,   250,   252,   254,   256,   258,   260,   262,   264,   266,
  265.    269,   272,   273,   275,   293,   312,   330,   345,   354,   358,
  266.    372,   376,   391,   393,   396,   410,   426,   438,   440,   442,
  267.    444,   446,   448,   450,   452,   455,   460,   465,   470,   476,
  268.    483,   488,   496,   504,   508,   514,   526,   532,   537,   547,
  269.    552,   562,   568,   572,   584,   591,   598,   605,   612,   619,
  270.    626,   633,   640,   647,   654,   661,   668,   675,   682,   689,
  271.    696,   706,   717,   731,   743,   748,   752,   760,   786,   788,
  272.    789,   791,   805,   807,   808,   810
  273. };
  274. #endif
  275.  
  276.  
  277. #if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
  278.  
  279. static const char * const vsltname[] = {   "$","error","$undefined.","IDENTIFIER",
  280. "STRING","INTEGER","ARROW","IF","THEN","ELSE","ELSIF","FI","OR","AND","NOT",
  281. "LET","IN","WHERE","OVERRIDE","REPLACE","EQ","NE","GT","GE","LT","LE","HALIGN",
  282. "VALIGN","UALIGN","TALIGN","APPEND","CONS","THREEDOTS","'+'","'-'","'*'","'/'",
  283. "'%'","';'","'('","')'","','","'['","']'","file","item_list","item","function_declaration",
  284. "function_header","function_identifier","identifier","function_definition","local_definition",
  285. "local_header","global_definition","global_header","function_body","box_expression_with_defs",
  286. "in_box_expression","box_expression_with_wheres","box_expression_with_where",
  287. "var_definition","box_expression","list_expression","box_expression_list","multiple_box_expression_list",
  288. "const_expression","string_constant","numeric_constant","function_call","unary_expression",
  289. "binary_expression","cond_expression","else_expression","function_argument",
  290. "argument_or_function","override_declaration","override_list","override_identifier",
  291. "replace_declaration","replace_list","replace_identifier", NULL
  292. };
  293. #endif
  294.  
  295. static const short vslr1[] = {     0,
  296.     44,    45,    45,    46,    46,    46,    46,    46,    46,    47,
  297.     48,    48,    49,    49,    49,    49,    49,    49,    49,    49,
  298.     49,    49,    49,    49,    49,    49,    49,    49,    49,    49,
  299.     50,    51,    51,    52,    53,    54,    55,    56,    57,    57,
  300.     58,    58,    59,    59,    60,    60,    61,    62,    62,    62,
  301.     62,    62,    62,    62,    62,    63,    63,    63,    63,    64,
  302.     64,    65,    65,    65,    65,    66,    66,    67,    67,    68,
  303.     69,    70,    70,    70,    71,    71,    71,    71,    71,    71,
  304.     71,    71,    71,    71,    71,    71,    71,    71,    71,    71,
  305.     71,    71,    72,    73,    73,    74,    74,    75,    76,    77,
  306.     77,    78,    79,    80,    80,    81
  307. };
  308.  
  309. static const short vslr2[] = {     0,
  310.      1,     0,     2,     2,     2,     1,     1,     1,     2,     1,
  311.      2,     1,     1,     3,     3,     3,     3,     3,     3,     3,
  312.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  313.      1,     1,     1,     2,     2,     2,     2,     1,     1,     3,
  314.      2,     3,     1,     1,     3,     3,     3,     3,     1,     1,
  315.      1,     1,     1,     1,     1,     2,     3,     2,     3,     1,
  316.      1,     3,     3,     2,     1,     1,     1,     1,     2,     1,
  317.      2,     2,     2,     2,     3,     3,     3,     3,     3,     3,
  318.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  319.      3,     3,     6,     5,     2,     1,     3,     1,     2,     1,
  320.      3,     1,     2,     1,     3,     1
  321. };
  322.  
  323. static const short vsldefact[] = {     2,
  324.      0,     0,    31,     0,     0,     8,     0,     3,     0,    10,
  325.     12,    13,     0,    32,     0,    33,     0,     6,     7,     9,
  326.    102,    99,   100,   106,   103,   104,     0,     0,     0,     0,
  327.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  328.      0,     0,     0,     4,    37,    35,     0,     0,    96,    11,
  329.      5,    68,    70,     0,     0,     0,     0,     0,     0,     0,
  330.     98,    34,    38,    39,    44,    43,    49,    50,    66,    67,
  331.     54,    52,    51,    53,    55,    36,     0,     0,    30,    14,
  332.     15,    16,    17,    18,    19,    20,    21,    22,    23,    29,
  333.     24,    25,    26,    27,    28,    65,    58,     0,    43,     0,
  334.     56,    60,     0,    61,     0,    72,     0,     0,    73,    74,
  335.      0,     0,     0,     0,    71,     0,     0,     0,     0,     0,
  336.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  337.      0,     0,     0,     0,     0,    69,   101,   105,    97,     0,
  338.     64,     0,    59,    57,     0,     0,     0,    40,     0,    48,
  339.     45,    46,    91,    92,    75,    76,    77,    78,    79,    80,
  340.     81,    82,    83,    84,    90,    85,    86,    87,    88,    89,
  341.     62,    63,     0,    41,     0,    47,     0,     0,     0,    42,
  342.     95,     0,    93,     0,     0,    94,     0,     0,     0
  343. };
  344.  
  345. static const short vsldefgoto[] = {   187,
  346.      1,     8,     9,    10,    60,    61,    13,    14,    15,    16,
  347.     17,    62,    63,   148,    64,    65,   107,    66,    67,   103,
  348.    100,    68,    69,    70,    71,    72,    73,    74,   179,    50,
  349.     75,    18,    22,    23,    19,    25,    26
  350. };
  351.  
  352. static const short vslpact[] = {-32768,
  353.     16,    -5,-32768,    22,    22,-32768,   498,-32768,     1,     8,
  354.    -24,-32768,    14,-32768,   223,-32768,   223,-32768,-32768,-32768,
  355. -32768,   -14,-32768,-32768,    -1,-32768,    18,    30,    32,    38,
  356.     47,    49,    63,    64,    88,    92,    93,    94,    95,   103,
  357.    105,   114,   115,-32768,-32768,-32768,   177,    17,-32768,-32768,
  358. -32768,-32768,-32768,   300,   300,   300,   300,   300,   137,   -24,
  359.    -16,-32768,-32768,    25,    56,   409,-32768,-32768,    53,-32768,
  360. -32768,-32768,-32768,-32768,-32768,-32768,    22,    22,-32768,-32768,
  361. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  362. -32768,-32768,-32768,-32768,-32768,-32768,-32768,   116,   323,   135,
  363. -32768,-32768,   110,-32768,   353,-32768,    -3,   435,    90,    90,
  364.    236,   276,   288,   138,-32768,   300,   300,   300,   300,   300,
  365.    300,   300,   300,   300,   300,   300,   300,   300,   300,   300,
  366.    300,   300,   300,   300,   300,-32768,-32768,-32768,-32768,   300,
  367. -32768,   190,-32768,-32768,   223,   223,   300,-32768,   300,-32768,
  368. -32768,-32768,   480,   516,    40,    40,    57,    57,    57,    57,
  369.    152,   218,   528,   113,    57,    90,    90,-32768,-32768,-32768,
  370.    409,-32768,    20,-32768,    -3,   461,   223,   300,   172,-32768,
  371. -32768,   383,-32768,   223,    20,-32768,   196,   198,-32768
  372. };
  373.  
  374. static const short vslpgoto[] = {-32768,
  375. -32768,-32768,-32768,-32768,     2,     4,-32768,-32768,-32768,-32768,
  376. -32768,   173,   -47,    24,-32768,-32768,  -106,   -11,    -7,    58,
  377.    -46,-32768,-32768,-32768,-32768,-32768,-32768,-32768,    21,   141,
  378. -32768,-32768,-32768,   125,-32768,-32768,   129
  379. };
  380.  
  381.  
  382. #define    YYLAST        565
  383.  
  384.  
  385. static const short vsltable[] = {    98,
  386.    102,   104,    11,    49,    12,    21,    24,    12,    12,   151,
  387.    152,   114,   146,    45,    47,    -1,     2,    48,     3,     3,
  388.     52,    53,   -13,    54,     3,   -13,    77,    46,   177,   178,
  389.     55,    56,    20,     4,     5,    99,    99,   147,    44,    78,
  390.    175,   116,   105,   106,   108,   109,   110,    99,    96,    57,
  391.     58,    51,    49,     6,     7,    59,   136,    79,    48,   101,
  392.      7,   122,   123,   124,   125,   126,   127,   128,   129,    80,
  393.    130,    81,   131,   132,   133,   134,   135,    82,    21,    24,
  394.     12,    12,   126,   127,   128,   129,    83,   130,    84,   131,
  395.    132,   133,   134,   135,   102,   104,   117,   173,   174,   106,
  396.    109,   110,    85,    86,   108,   108,   153,   154,   155,   156,
  397.    157,   158,   159,   160,   161,   162,   163,   164,   165,   166,
  398.    167,   168,   169,   170,   133,   134,   135,    87,   171,   181,
  399.     99,    88,    89,    90,    91,   108,   185,   176,   126,     3,
  400.     52,    53,    92,    54,    93,   131,   132,   133,   134,   135,
  401.    111,    56,   144,    94,    95,   139,    28,    29,    30,    31,
  402.     32,    33,    34,    35,    36,    37,   182,    38,    96,   112,
  403.    113,    41,    42,    43,   143,    59,    97,   150,    48,     3,
  404.     52,    53,   183,    54,   131,   132,   133,   134,   135,    76,
  405.     55,    56,     3,    52,    53,   188,    54,   189,   180,   172,
  406.    115,   137,     0,    55,    56,   186,   138,     0,    96,    57,
  407.     58,     0,     0,     0,     0,    59,    97,     0,    48,     0,
  408.      0,    96,    57,    58,     0,     3,    52,    53,    59,    54,
  409.      0,    48,     0,     0,     0,     0,    55,    56,     3,    52,
  410.     53,     0,    54,   126,     0,   128,   129,     0,     0,    55,
  411.    131,   132,   133,   134,   135,    57,    58,     0,     0,     0,
  412.      0,    59,     0,     0,    48,     0,     0,     0,    57,    58,
  413.      0,     0,     0,     0,    59,    79,     0,    48,     3,    52,
  414.     53,     0,    54,     0,     0,     0,     0,     0,     0,    55,
  415.      3,    52,    53,     0,    54,     0,     0,     0,     0,     0,
  416.      0,    55,     3,    52,    53,     0,    54,     0,    57,    58,
  417.      0,     0,     0,    55,    59,    91,     0,    48,     0,     0,
  418.     57,    58,     0,     0,     0,     0,    59,    92,     0,    48,
  419.      0,     0,    57,    58,   118,   119,     0,     0,    59,     0,
  420.      0,    48,   120,   121,   122,   123,   124,   125,   126,   127,
  421.    128,   129,   140,   130,   141,   131,   132,   133,   134,   135,
  422.    145,     0,     0,   142,   118,   119,     0,     0,     0,     0,
  423.      0,     0,   120,   121,   122,   123,   124,   125,   126,   127,
  424.    128,   129,     0,   130,     0,   131,   132,   133,   134,   135,
  425.    184,     0,     0,     0,   118,   119,     0,     0,     0,     0,
  426.      0,     0,   120,   121,   122,   123,   124,   125,   126,   127,
  427.    128,   129,     0,   130,     0,   131,   132,   133,   134,   135,
  428.    118,   119,     0,     0,     0,     0,     0,     0,   120,   121,
  429.    122,   123,   124,   125,   126,   127,   128,   129,     0,   130,
  430.      0,   131,   132,   133,   134,   135,   118,   119,     0,     0,
  431.      0,     0,     0,     0,   149,   121,   122,   123,   124,   125,
  432.    126,   127,   128,   129,     0,   130,     0,   131,   132,   133,
  433.    134,   135,   -75,   -75,     0,     0,     0,     0,     0,     0,
  434.    -75,   -75,   122,   123,   124,   125,   126,   127,   128,   129,
  435.      0,   130,   119,   131,   132,   133,   134,   135,     0,   120,
  436.    121,   122,   123,   124,   125,   126,   127,   128,   129,     0,
  437.    130,    27,   131,   132,   133,   134,   135,    28,    29,    30,
  438.     31,    32,    33,    34,    35,    36,    37,     0,    38,     0,
  439.     39,    40,    41,    42,    43,   120,   121,   122,   123,   124,
  440.    125,   126,   127,   128,   129,     0,   130,     0,   131,   132,
  441.    133,   134,   135,   126,     0,     0,   129,     0,     0,     0,
  442.    131,   132,   133,   134,   135
  443. };
  444.  
  445. static const short vslcheck[] = {    47,
  446.     48,    48,     1,    11,     1,     4,     5,     4,     5,   116,
  447.    117,    59,    16,     6,    39,     0,     1,    42,     3,     3,
  448.      4,     5,    39,     7,     3,    42,    41,    20,     9,    10,
  449.     14,    15,    38,    18,    19,    47,    48,    41,    38,    41,
  450.    147,    17,    54,    55,    56,    57,    58,    59,    32,    33,
  451.     34,    38,    60,    38,    39,    39,     4,    40,    42,    43,
  452.     39,    22,    23,    24,    25,    26,    27,    28,    29,    40,
  453.     31,    40,    33,    34,    35,    36,    37,    40,    77,    78,
  454.     77,    78,    26,    27,    28,    29,    40,    31,    40,    33,
  455.     34,    35,    36,    37,   142,   142,    41,   145,   146,   111,
  456.    112,   113,    40,    40,   116,   117,   118,   119,   120,   121,
  457.    122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
  458.    132,   133,   134,   135,    35,    36,    37,    40,   140,   177,
  459.    142,    40,    40,    40,    40,   147,   184,   149,    26,     3,
  460.      4,     5,    40,     7,    40,    33,    34,    35,    36,    37,
  461.     14,    15,    43,    40,    40,    40,    20,    21,    22,    23,
  462.     24,    25,    26,    27,    28,    29,   178,    31,    32,    33,
  463.     34,    35,    36,    37,    40,    39,    40,    40,    42,     3,
  464.      4,     5,    11,     7,    33,    34,    35,    36,    37,    17,
  465.     14,    15,     3,     4,     5,     0,     7,     0,   175,   142,
  466.     60,    77,    -1,    14,    15,   185,    78,    -1,    32,    33,
  467.     34,    -1,    -1,    -1,    -1,    39,    40,    -1,    42,    -1,
  468.     -1,    32,    33,    34,    -1,     3,     4,     5,    39,     7,
  469.     -1,    42,    -1,    -1,    -1,    -1,    14,    15,     3,     4,
  470.      5,    -1,     7,    26,    -1,    28,    29,    -1,    -1,    14,
  471.     33,    34,    35,    36,    37,    33,    34,    -1,    -1,    -1,
  472.     -1,    39,    -1,    -1,    42,    -1,    -1,    -1,    33,    34,
  473.     -1,    -1,    -1,    -1,    39,    40,    -1,    42,     3,     4,
  474.      5,    -1,     7,    -1,    -1,    -1,    -1,    -1,    -1,    14,
  475.      3,     4,     5,    -1,     7,    -1,    -1,    -1,    -1,    -1,
  476.     -1,    14,     3,     4,     5,    -1,     7,    -1,    33,    34,
  477.     -1,    -1,    -1,    14,    39,    40,    -1,    42,    -1,    -1,
  478.     33,    34,    -1,    -1,    -1,    -1,    39,    40,    -1,    42,
  479.     -1,    -1,    33,    34,    12,    13,    -1,    -1,    39,    -1,
  480.     -1,    42,    20,    21,    22,    23,    24,    25,    26,    27,
  481.     28,    29,    30,    31,    32,    33,    34,    35,    36,    37,
  482.      8,    -1,    -1,    41,    12,    13,    -1,    -1,    -1,    -1,
  483.     -1,    -1,    20,    21,    22,    23,    24,    25,    26,    27,
  484.     28,    29,    -1,    31,    -1,    33,    34,    35,    36,    37,
  485.      8,    -1,    -1,    -1,    12,    13,    -1,    -1,    -1,    -1,
  486.     -1,    -1,    20,    21,    22,    23,    24,    25,    26,    27,
  487.     28,    29,    -1,    31,    -1,    33,    34,    35,    36,    37,
  488.     12,    13,    -1,    -1,    -1,    -1,    -1,    -1,    20,    21,
  489.     22,    23,    24,    25,    26,    27,    28,    29,    -1,    31,
  490.     -1,    33,    34,    35,    36,    37,    12,    13,    -1,    -1,
  491.     -1,    -1,    -1,    -1,    20,    21,    22,    23,    24,    25,
  492.     26,    27,    28,    29,    -1,    31,    -1,    33,    34,    35,
  493.     36,    37,    12,    13,    -1,    -1,    -1,    -1,    -1,    -1,
  494.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  495.     -1,    31,    13,    33,    34,    35,    36,    37,    -1,    20,
  496.     21,    22,    23,    24,    25,    26,    27,    28,    29,    -1,
  497.     31,    14,    33,    34,    35,    36,    37,    20,    21,    22,
  498.     23,    24,    25,    26,    27,    28,    29,    -1,    31,    -1,
  499.     33,    34,    35,    36,    37,    20,    21,    22,    23,    24,
  500.     25,    26,    27,    28,    29,    -1,    31,    -1,    33,    34,
  501.     35,    36,    37,    26,    -1,    -1,    29,    -1,    -1,    -1,
  502.     33,    34,    35,    36,    37
  503. };
  504. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  505. #line 3 "/usr/local/share/bison.simple"
  506.  
  507. /* Skeleton output parser for bison,
  508.    Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
  509.  
  510.    This program is free software; you can redistribute it and/or modify
  511.    it under the terms of the GNU General Public License as published by
  512.    the Free Software Foundation; either version 2, or (at your option)
  513.    any later version.
  514.  
  515.    This program is distributed in the hope that it will be useful,
  516.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  517.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  518.    GNU General Public License for more details.
  519.  
  520.    You should have received a copy of the GNU General Public License
  521.    along with this program; if not, write to the Free Software
  522.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  523.  
  524. /* As a special exception, when this file is copied by Bison into a
  525.    Bison output file, you may use that output file without restriction.
  526.    This special exception was added by the Free Software Foundation
  527.    in version 1.24 of Bison.  */
  528.  
  529. // This deletes the "kill" array upon destruction.
  530. // Will be used as automatic variable in vslparse().
  531. // Added by $RCSfile: yacctoC.bison,v $
  532. struct YYMEMHANDLER {
  533.     YYSTYPE *kill;
  534.  
  535.     YYMEMHANDLER():
  536.     kill(0)
  537.     {}
  538.     ~YYMEMHANDLER()
  539.     {
  540.     if (kill != 0)
  541.         delete[] kill;
  542.         kill = 0;
  543.     }
  544. };
  545.  
  546. #include "my-alloca.h"   /* Added by $RCSfile: yacctoC.bison,v $ */
  547.  
  548.  
  549. /* This is the parser code that is written into each bison parser
  550.   when the %semantic_parser declaration is not specified in the grammar.
  551.   It was written by Richard Stallman by simplifying the hairy parser
  552.   used when %semantic_parser is specified.  */
  553.  
  554. /* Note: there must be only one dollar sign in this file.
  555.    It is replaced by the list of actions, each action
  556.    as one case of the switch.  */
  557.  
  558. #define vslerrok        (vslerrstatus = 0)
  559. #define vslclearin    (vslchar = YYEMPTY)
  560. #define YYEMPTY        -2
  561. #define YYEOF        0
  562. #define YYACCEPT    return(0)
  563. #define YYABORT     return(1)
  564. #define YYERROR        goto vslerrlab1
  565. /* Like YYERROR except do call vslerror.
  566.    This remains here temporarily to ease the
  567.    transition to the new meaning of YYERROR, for GCC.
  568.    Once GCC version 2 has supplanted version 1, this can go.  */
  569. #define YYFAIL        goto vslerrlab
  570. #define YYRECOVERING()  (!!vslerrstatus)
  571. #define YYBACKUP(token, value) \
  572. do                                \
  573.   if (vslchar == YYEMPTY && vsllen == 1)                \
  574.     { vslchar = (token), vsllval = (value);            \
  575.       vslchar1 = YYTRANSLATE (vslchar);                \
  576.       YYPOPSTACK;                        \
  577.       goto vslbackup;                        \
  578.     }                                \
  579.   else                                \
  580.     { vslerror ("syntax error: cannot back up"); YYERROR; }    \
  581. while (0)
  582.  
  583. #define YYTERROR    1
  584. #define YYERRCODE    256
  585.  
  586. #ifndef YYPURE
  587. #define YYLEX        vsllex()
  588. #endif
  589.  
  590. #ifdef YYPURE
  591. #ifdef YYLSP_NEEDED
  592. #ifdef YYLEX_PARAM
  593. #define YYLEX        vsllex(&vsllval, &vsllloc, YYLEX_PARAM)
  594. #else
  595. #define YYLEX        vsllex(&vsllval, &vsllloc)
  596. #endif
  597. #else /* not YYLSP_NEEDED */
  598. #ifdef YYLEX_PARAM
  599. #define YYLEX        vsllex(&vsllval, YYLEX_PARAM)
  600. #else
  601. #define YYLEX        vsllex(&vsllval)
  602. #endif
  603. #endif /* not YYLSP_NEEDED */
  604. #endif
  605.  
  606. /* If nonreentrant, generate the variables here */
  607.  
  608. #ifndef YYPURE
  609.  
  610. int    vslchar;            /*  the lookahead symbol        */
  611. YYSTYPE    vsllval;            /*  the semantic value of the        */
  612.                 /*  lookahead symbol            */
  613.  
  614. #ifdef YYLSP_NEEDED
  615. YYLTYPE vsllloc;            /*  location data for the lookahead    */
  616.                 /*  symbol                */
  617. #endif
  618.  
  619. int vslnerrs;            /*  number of parse errors so far       */
  620. #endif  /* not YYPURE */
  621.  
  622. #if YYDEBUG != 0
  623. int vsldebug;            /*  nonzero means print parse trace    */
  624. /* Since this is uninitialized, it does not stop multiple parsers
  625.    from coexisting.  */
  626. #endif
  627.  
  628. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  629.  
  630. #ifndef    YYINITDEPTH
  631. #define YYINITDEPTH 200
  632. #endif
  633.  
  634. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  635.     (effective only if the built-in stack extension method is used).  */
  636.  
  637. #if YYMAXDEPTH == 0
  638. #undef YYMAXDEPTH
  639. #endif
  640.  
  641. #ifndef YYMAXDEPTH
  642. #define YYMAXDEPTH 10000
  643. #endif
  644.  
  645. /* Prevent warning if -Wstrict-prototypes.  */
  646. #ifdef __GNUC__
  647. int vslparse (void);
  648. #endif
  649.  
  650. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  651. #define __vsl_memcpy(TO,FROM,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  652. #else                /* not GNU C or C++ */
  653. #ifndef __cplusplus
  654.  
  655. /* This is the most reliable way to avoid incompatibilities
  656.    in available built-in functions on various systems.  */
  657. static void
  658. __vsl_memcpy (to, from, count)
  659.      char *to;
  660.      char *from;
  661.      int count;
  662. {
  663.   register char *f = from;
  664.   register char *t = to;
  665.   register int i = count;
  666.  
  667.   while (i-- > 0)
  668.     *t++ = *f++;
  669. }
  670.  
  671. #else /* __cplusplus */
  672.  
  673. /* This is the most reliable way to avoid incompatibilities
  674.    in available built-in functions on various systems.  */
  675. static void
  676. __vsl_memcpy (char *to, char *from, int count)
  677. {
  678.   register char *f = from;
  679.   register char *t = to;
  680.   register int i = count;
  681.  
  682.   while (i-- > 0)
  683.     *t++ = *f++;
  684. }
  685.  
  686. #endif
  687. #endif
  688.  
  689. #line 196 "/usr/local/share/bison.simple"
  690.  
  691. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  692.    into vslparse.  The argument should have type void *.
  693.    It should actually point to an object.
  694.    Grammar actions can access the variable by casting it
  695.    to the proper pointer type.  */
  696.  
  697. #ifdef YYPARSE_PARAM
  698. #ifdef __cplusplus
  699. #define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
  700. #define YYPARSE_PARAM_DECL
  701. #else /* not __cplusplus */
  702. #define YYPARSE_PARAM_ARG YYPARSE_PARAM
  703. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  704. #endif /* not __cplusplus */
  705. #else /* not YYPARSE_PARAM */
  706. #define YYPARSE_PARAM_ARG
  707. #define YYPARSE_PARAM_DECL
  708. #endif /* not YYPARSE_PARAM */
  709.  
  710. int
  711. vslparse(YYPARSE_PARAM_ARG)
  712.      YYPARSE_PARAM_DECL
  713. {
  714.   register int vslstate;
  715.   register int vsln;
  716.   register short *vslssp;
  717.   register YYSTYPE *vslvsp;
  718.   int vslerrstatus;    /*  number of tokens to shift before error messages enabled */
  719.   int vslchar1 = 0;        /*  lookahead token as an internal (translated) token number */
  720.  
  721.   short    vslssa[YYINITDEPTH];    /*  the state stack            */
  722.   YYSTYPE vslvsa[YYINITDEPTH];    /*  the semantic value stack        */
  723.  
  724.   short *vslss = vslssa;        /*  refer to the stacks thru separate pointers */
  725.   YYSTYPE *vslvs = vslvsa;    /*  to allow vsloverflow to reallocate them elsewhere */
  726.  
  727. #ifdef YYLSP_NEEDED
  728.   YYLTYPE vsllsa[YYINITDEPTH];    /*  the location stack            */
  729.   YYLTYPE *vslls = vsllsa;
  730.   YYLTYPE *vsllsp;
  731.  
  732. #define YYPOPSTACK   (vslvsp--, vslssp--, vsllsp--)
  733. #else
  734. #define YYPOPSTACK   (vslvsp--, vslssp--)
  735. #endif
  736.  
  737.   int vslstacksize = YYINITDEPTH;
  738.   YYMEMHANDLER vslmem; // Added by $RCSfile: yacctoC.bison,v $
  739.  
  740. #ifdef YYPURE
  741.   int vslchar;
  742.   YYSTYPE vsllval;
  743.   int vslnerrs;
  744. #ifdef YYLSP_NEEDED
  745.   YYLTYPE vsllloc;
  746. #endif
  747. #endif
  748.  
  749.   YYSTYPE vslval;        /*  the variable used to return        */
  750.                 /*  semantic values from the action    */
  751.                 /*  routines                */
  752.  
  753.   int vsllen;
  754.  
  755. #if YYDEBUG != 0
  756.   if (vsldebug)
  757.     fprintf(stderr, "Starting parse\n");
  758. #endif
  759.  
  760.   vslstate = 0;
  761.   vslerrstatus = 0;
  762.   vslnerrs = 0;
  763.   vslchar = YYEMPTY;        /* Cause a token to be read.  */
  764.  
  765.   /* Initialize stack pointers.
  766.      Waste one element of value and location stack
  767.      so that they stay on the same level as the state stack.
  768.      The wasted elements are never initialized.  */
  769.  
  770.   vslssp = vslss - 1;
  771.   vslvsp = vslvs;
  772. #ifdef YYLSP_NEEDED
  773.   vsllsp = vslls;
  774. #endif
  775.  
  776. /* Push a new state, which is found in  vslstate  .  */
  777. /* In all cases, when you get here, the value and location stacks
  778.    have just been pushed. so pushing a state here evens the stacks.  */
  779. vslnewstate:
  780.  
  781.   *++vslssp = vslstate;
  782.  
  783.   if (vslssp >= vslss + vslstacksize - 1)
  784.     {
  785.       /* Give user a chance to reallocate the stack */
  786.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  787.       YYSTYPE *vslvs1 = vslvs;
  788.       short *vslss1 = vslss;
  789. #ifdef YYLSP_NEEDED
  790.       YYLTYPE *vslls1 = vslls;
  791. #endif
  792.  
  793.       /* Get the current used size of the three stacks, in elements.  */
  794.       int size = vslssp - vslss + 1;
  795.  
  796. #ifdef vsloverflow
  797.       /* Each stack pointer address is followed by the size of
  798.      the data in use in that stack, in bytes.  */
  799. #ifdef YYLSP_NEEDED
  800.       /* This used to be a conditional around just the two extra args,
  801.      but that might be undefined if vsloverflow is a macro.  */
  802.       vsloverflow("parser stack overflow",
  803.          &vslss1, size * sizeof (*vslssp),
  804.          &vslvs1, size * sizeof (*vslvsp),
  805.          &vslls1, size * sizeof (*vsllsp),
  806.          &vslstacksize);
  807. #else
  808.       vsloverflow("parser stack overflow",
  809.          &vslss1, size * sizeof (*vslssp),
  810.          &vslvs1, size * sizeof (*vslvsp),
  811.          &vslstacksize);
  812. #endif
  813.  
  814.       vslss = vslss1; vslvs = vslvs1;
  815. #ifdef YYLSP_NEEDED
  816.       vslls = vslls1;
  817. #endif
  818. #else /* no vsloverflow */
  819.       /* Extend the stack our own way.  */
  820.       if (vslstacksize >= YYMAXDEPTH)
  821.     {
  822.       vslerror("parser stack overflow");
  823.       return 2;
  824.     }
  825.       vslstacksize *= 2;
  826.       if (vslstacksize > YYMAXDEPTH)
  827.     vslstacksize = YYMAXDEPTH;
  828.       vslss = (short *) alloca (vslstacksize * sizeof (*vslssp));
  829.       __vsl_memcpy ((char *)vslss, (char *)vslss1, size * sizeof (*vslssp));
  830.  
  831.       // Added by $RCSfile: yacctoC.bison,v $. 
  832.       YYSTYPE *new_vslvs = new YYSTYPE [vslstacksize];
  833.       if (new_vslvs == 0)
  834.       {
  835.           vslerror("parser stack overflow");
  836.           return 2;
  837.       }
  838.       for (int vslcopy = 0; vslcopy < vslstacksize; vslcopy++)
  839.       {
  840.           new_vslvs[vslcopy] = vslvs[vslcopy];
  841.       }
  842.       delete[] vslvs; vslvs = new_vslvs;
  843.       vslmem.kill = vslvs; // make sure vslvs is deleted upon return 
  844.  
  845. #ifdef YYLSP_NEEDED
  846.       vslls = (YYLTYPE *) alloca (vslstacksize * sizeof (*vsllsp));
  847.       __vsl_memcpy ((char *)vslls, (char *)vslls1, size * sizeof (*vsllsp));
  848. #endif
  849.       vslvs1 = vslvs1; /* Avoid warnings about unused `vslvs1' - AZ */
  850. #endif /* no vsloverflow */
  851.  
  852.       vslssp = vslss + size - 1;
  853.       vslvsp = vslvs + size - 1;
  854. #ifdef YYLSP_NEEDED
  855.       vsllsp = vslls + size - 1;
  856. #endif
  857.  
  858. #if YYDEBUG != 0
  859.       if (vsldebug)
  860.     fprintf(stderr, "Stack size increased to %d\n", vslstacksize);
  861. #endif
  862.  
  863.       if (vslssp >= vslss + vslstacksize - 1)
  864.     YYABORT;
  865.     }
  866.  
  867. #if YYDEBUG != 0
  868.   if (vsldebug)
  869.     fprintf(stderr, "Entering state %d\n", vslstate);
  870. #endif
  871.  
  872.   goto vslbackup;
  873.  vslbackup:
  874.  
  875. /* Do appropriate processing given the current state.  */
  876. /* Read a lookahead token if we need one and don't already have one.  */
  877. /* vslresume: */
  878.  
  879.   /* First try to decide what to do without reference to lookahead token.  */
  880.  
  881.   vsln = vslpact[vslstate];
  882.   if (vsln == YYFLAG)
  883.     goto vsldefault;
  884.  
  885.   /* Not known => get a lookahead token if don't already have one.  */
  886.  
  887.   /* vslchar is either YYEMPTY or YYEOF
  888.      or a valid token in external form.  */
  889.  
  890.   if (vslchar == YYEMPTY)
  891.     {
  892. #if YYDEBUG != 0
  893.       if (vsldebug)
  894.     fprintf(stderr, "Reading a token: ");
  895. #endif
  896.       vslchar = YYLEX;
  897.     }
  898.  
  899.   /* Convert token to internal form (in vslchar1) for indexing tables with */
  900.  
  901.   if (vslchar <= 0)        /* This means end of input. */
  902.     {
  903.       vslchar1 = 0;
  904.       vslchar = YYEOF;        /* Don't call YYLEX any more */
  905.  
  906. #if YYDEBUG != 0
  907.       if (vsldebug)
  908.     fprintf(stderr, "Now at end of input.\n");
  909. #endif
  910.     }
  911.   else
  912.     {
  913.       vslchar1 = YYTRANSLATE(vslchar);
  914.  
  915. #if YYDEBUG != 0
  916.       if (vsldebug)
  917.     {
  918.       fprintf (stderr, "Next token is %d (%s", vslchar, vsltname[vslchar1]);
  919.       /* Give the individual parser a way to print the precise meaning
  920.          of a token, for further debugging info.  */
  921. #ifdef YYPRINT
  922.       YYPRINT (stderr, vslchar, vsllval);
  923. #endif
  924.       fprintf (stderr, ")\n");
  925.     }
  926. #endif
  927.     }
  928.  
  929.   vsln += vslchar1;
  930.   if (vsln < 0 || vsln > YYLAST || vslcheck[vsln] != vslchar1)
  931.     goto vsldefault;
  932.  
  933.   vsln = vsltable[vsln];
  934.  
  935.   /* vsln is what to do for this token type in this state.
  936.      Negative => reduce, -vsln is rule number.
  937.      Positive => shift, vsln is new state.
  938.        New state is final state => don't bother to shift,
  939.        just return success.
  940.      0, or most negative number => error.  */
  941.  
  942.   if (vsln < 0)
  943.     {
  944.       if (vsln == YYFLAG)
  945.     goto vslerrlab;
  946.       vsln = -vsln;
  947.       goto vslreduce;
  948.     }
  949.   else if (vsln == 0)
  950.     goto vslerrlab;
  951.  
  952.   if (vsln == YYFINAL)
  953.     YYACCEPT;
  954.  
  955.   /* Shift the lookahead token.  */
  956.  
  957. #if YYDEBUG != 0
  958.   if (vsldebug)
  959.     fprintf(stderr, "Shifting token %d (%s), ", vslchar, vsltname[vslchar1]);
  960. #endif
  961.  
  962.   /* Discard the token being shifted unless it is eof.  */
  963.   if (vslchar != YYEOF)
  964.     vslchar = YYEMPTY;
  965.  
  966.   *++vslvsp = vsllval;
  967. #ifdef YYLSP_NEEDED
  968.   *++vsllsp = vsllloc;
  969. #endif
  970.  
  971.   /* count tokens shifted since error; after three, turn off error status.  */
  972.   if (vslerrstatus) vslerrstatus--;
  973.  
  974.   vslstate = vsln;
  975.   goto vslnewstate;
  976.  
  977. /* Do the default action for the current state.  */
  978. vsldefault:
  979.  
  980.   vsln = vsldefact[vslstate];
  981.   if (vsln == 0)
  982.     goto vslerrlab;
  983.  
  984. /* Do a reduction.  vsln is the number of a rule to reduce with.  */
  985. vslreduce:
  986.   vsllen = vslr2[vsln];
  987.   if (vsllen > 0)
  988.     vslval = vslvsp[1-vsllen]; /* implement default value of the action */
  989.  
  990. #if YYDEBUG != 0
  991.   if (vsldebug)
  992.     {
  993.       int i;
  994.  
  995.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  996.            vsln, vslrline[vsln]);
  997.  
  998.       /* Print the symbols being reduced, and their result.  */
  999.       for (i = vslprhs[vsln]; vslrhs[i] > 0; i++)
  1000.     fprintf (stderr, "%s ", vsltname[vslrhs[i]]);
  1001.       fprintf (stderr, " -> %s\n", vsltname[vslr1[vsln]]);
  1002.     }
  1003. #endif
  1004.  
  1005.  
  1006.   switch (vsln) {
  1007.  
  1008. case 10:
  1009. #line 196 "./vsl-gramma.Y"
  1010. {
  1011.                     ASSERT(vslvsp[0].header.pattern == 0 || 
  1012.                        vslvsp[0].header.pattern->OK());
  1013.  
  1014.                     if (vslvsp[0].header.pattern)
  1015.                     {
  1016.                     vsllib->add(*vslvsp[0].header.id,
  1017.                             vslvsp[0].header.pattern, 0, False,
  1018.                             *vslvsp[0].header.file, vslvsp[0].header.line);
  1019.                     }
  1020.                     delete vslvsp[0].header.id;
  1021.                     delete vslvsp[0].header.file;
  1022.                 ;
  1023.     break;}
  1024. case 11:
  1025. #line 211 "./vsl-gramma.Y"
  1026. {
  1027.                     ASSERT(vslvsp[-1].str->OK());
  1028.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1029.  
  1030.                     vslval.header.id      = vslvsp[-1].str;
  1031.                     vslval.header.pattern = vslvsp[0].node;
  1032.                     vslval.header.file    = new string(vslfilename);
  1033.                     vslval.header.line    = vsllinenumber;
  1034.                 ;
  1035.     break;}
  1036. case 12:
  1037. #line 221 "./vsl-gramma.Y"
  1038. {
  1039.                     ASSERT(vslvsp[0].str->OK());
  1040.  
  1041.                     vslval.header.id      = new string("#" + *vslvsp[0].str);
  1042.                     vslval.header.pattern = new EmptyListNode;
  1043.                     vslval.header.file    = new string(vslfilename);
  1044.                     vslval.header.line    = vsllinenumber;
  1045.  
  1046.                     delete vslvsp[0].str;
  1047.                 ;
  1048.     break;}
  1049. case 13:
  1050. #line 233 "./vsl-gramma.Y"
  1051. { vslval.str = vslvsp[0].str; ;
  1052.     break;}
  1053. case 14:
  1054. #line 235 "./vsl-gramma.Y"
  1055. { vslval.str = new string("(=)"); ;
  1056.     break;}
  1057. case 15:
  1058. #line 237 "./vsl-gramma.Y"
  1059. { vslval.str = new string("(<>)"); ;
  1060.     break;}
  1061. case 16:
  1062. #line 239 "./vsl-gramma.Y"
  1063. { vslval.str = new string("(>)"); ;
  1064.     break;}
  1065. case 17:
  1066. #line 241 "./vsl-gramma.Y"
  1067. { vslval.str = new string("(>=)"); ;
  1068.     break;}
  1069. case 18:
  1070. #line 243 "./vsl-gramma.Y"
  1071. { vslval.str = new string("(<)"); ;
  1072.     break;}
  1073. case 19:
  1074. #line 245 "./vsl-gramma.Y"
  1075. { vslval.str = new string("(<=)"); ;
  1076.     break;}
  1077. case 20:
  1078. #line 247 "./vsl-gramma.Y"
  1079. { vslval.str = new string("(&)"); ;
  1080.     break;}
  1081. case 21:
  1082. #line 249 "./vsl-gramma.Y"
  1083. { vslval.str = new string("(|)"); ;
  1084.     break;}
  1085. case 22:
  1086. #line 251 "./vsl-gramma.Y"
  1087. { vslval.str = new string("(^)"); ;
  1088.     break;}
  1089. case 23:
  1090. #line 253 "./vsl-gramma.Y"
  1091. { vslval.str = new string("(~)"); ;
  1092.     break;}
  1093. case 24:
  1094. #line 255 "./vsl-gramma.Y"
  1095. { vslval.str = new string("(+)"); ;
  1096.     break;}
  1097. case 25:
  1098. #line 257 "./vsl-gramma.Y"
  1099. { vslval.str = new string("(-)"); ;
  1100.     break;}
  1101. case 26:
  1102. #line 259 "./vsl-gramma.Y"
  1103. { vslval.str = new string("(*)"); ;
  1104.     break;}
  1105. case 27:
  1106. #line 261 "./vsl-gramma.Y"
  1107. { vslval.str = new string("(/)"); ;
  1108.     break;}
  1109. case 28:
  1110. #line 263 "./vsl-gramma.Y"
  1111. { vslval.str = new string("(%)"); ;
  1112.     break;}
  1113. case 29:
  1114. #line 265 "./vsl-gramma.Y"
  1115. { vslval.str = new string("(::)"); ;
  1116.     break;}
  1117. case 30:
  1118. #line 267 "./vsl-gramma.Y"
  1119. { vslval.str = new string("(not)"); ;
  1120.     break;}
  1121. case 31:
  1122. #line 270 "./vsl-gramma.Y"
  1123. { vslval.str = new string((char *)vsltext); ;
  1124.     break;}
  1125. case 34:
  1126. #line 276 "./vsl-gramma.Y"
  1127.                     ASSERT(vslvsp[-1].header.pattern == 0 || 
  1128.                        vslvsp[-1].header.pattern->OK());
  1129.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1130.  
  1131.                     if (vslvsp[-1].header.pattern)
  1132.                     {
  1133.                     // Define function
  1134.                     vsllib->add(*vslvsp[-1].header.id,
  1135.                             vslvsp[-1].header.pattern, vslvsp[0].node, False,
  1136.                             *vslvsp[-1].header.file, vslvsp[-1].header.line);
  1137.                     }
  1138.  
  1139.                     delete vslvsp[-1].header.id;
  1140.                     delete vslvsp[-1].header.file;
  1141.                 ;
  1142.     break;}
  1143. case 35:
  1144. #line 294 "./vsl-gramma.Y"
  1145. {
  1146.                     ASSERT(vslvsp[-1].header.pattern == 0 || 
  1147.                        vslvsp[-1].header.pattern->OK());
  1148.  
  1149.                     if (vslvsp[-1].header.pattern)
  1150.                     {
  1151.                     // Declare function now
  1152.                     // (for recursive calls)
  1153.                     vsllib->add(*vslvsp[-1].header.id,
  1154.                             vslvsp[-1].header.pattern->dup(), 0, 
  1155.                             False,
  1156.                             vslfilename, 
  1157.                             vsllinenumber);
  1158.                     }
  1159.  
  1160.                     vslval.header = vslvsp[-1].header;
  1161.                 ;
  1162.     break;}
  1163. case 36:
  1164. #line 313 "./vsl-gramma.Y"
  1165.                     ASSERT(vslvsp[-1].header.pattern == 0 || 
  1166.                        vslvsp[-1].header.pattern->OK());
  1167.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1168.  
  1169.                     if (vslvsp[-1].header.pattern)
  1170.                     {
  1171.                     // Define function
  1172.                     vsllib->add(*vslvsp[-1].header.id, 
  1173.                             vslvsp[-1].header.pattern, vslvsp[0].node, True,
  1174.                             *vslvsp[-1].header.file, vslvsp[-1].header.line);
  1175.                     }
  1176.  
  1177.                     delete vslvsp[-1].header.id;
  1178.                     delete vslvsp[-1].header.file;
  1179.                 ;
  1180.     break;}
  1181. case 37:
  1182. #line 331 "./vsl-gramma.Y"
  1183. {
  1184.                   if (vslvsp[-1].header.pattern)
  1185.                   {
  1186.                       ASSERT(vslvsp[-1].header.pattern->OK());
  1187.  
  1188.                       // Declare function now
  1189.                       // (for recursive calls)
  1190.                       vsllib->add(*vslvsp[-1].header.id,
  1191.                           vslvsp[-1].header.pattern->dup(), 0, True,
  1192.                           vslfilename, vsllinenumber);
  1193.                   }
  1194.                   vslval.header = vslvsp[-1].header;
  1195.                 ;
  1196.     break;}
  1197. case 38:
  1198. #line 346 "./vsl-gramma.Y"
  1199. { vslval.node = vslvsp[0].node; ;
  1200.     break;}
  1201. case 39:
  1202. #line 355 "./vsl-gramma.Y"
  1203. {
  1204.                     vslval.node = vslvsp[0].node;
  1205.                 ;
  1206.     break;}
  1207. case 40:
  1208. #line 359 "./vsl-gramma.Y"
  1209.                     ASSERT(vslvsp[-1].vardef.pattern == 0 || 
  1210.                        vslvsp[-1].vardef.pattern->OK());
  1211.                     ASSERT(vslvsp[-1].vardef.args == 0 || 
  1212.                        vslvsp[-1].vardef.args->OK());
  1213.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1214.  
  1215.                     vslval.node = (vslvsp[-1].vardef.pattern && vslvsp[-1].vardef.args && vslvsp[0].node) ?
  1216.                     new LetNode(vslvsp[-1].vardef.pattern, vslvsp[-1].vardef.args, vslvsp[0].node) :
  1217.                     0;
  1218.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1219.                 ;
  1220.     break;}
  1221. case 41:
  1222. #line 373 "./vsl-gramma.Y"
  1223. {
  1224.                     vslval.node = vslvsp[0].node;
  1225.                 ;
  1226.     break;}
  1227. case 42:
  1228. #line 377 "./vsl-gramma.Y"
  1229.                     ASSERT(vslvsp[-1].vardef.pattern == 0 || 
  1230.                        vslvsp[-1].vardef.pattern->OK());
  1231.                     ASSERT(vslvsp[-1].vardef.args == 0 || 
  1232.                        vslvsp[-1].vardef.args->OK());
  1233.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1234.  
  1235.                     vslval.node = (vslvsp[-1].vardef.pattern && vslvsp[-1].vardef.args && vslvsp[0].node) ?
  1236.                     new LetNode(vslvsp[-1].vardef.pattern, vslvsp[-1].vardef.args, vslvsp[0].node) :
  1237.                     0;
  1238.  
  1239.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1240.                 ;
  1241.     break;}
  1242. case 43:
  1243. #line 392 "./vsl-gramma.Y"
  1244. { vslval.node = vslvsp[0].node; ;
  1245.     break;}
  1246. case 44:
  1247. #line 394 "./vsl-gramma.Y"
  1248. { vslval.node = vslvsp[0].node; ;
  1249.     break;}
  1250. case 45:
  1251. #line 398 "./vsl-gramma.Y"
  1252. {
  1253.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1254.                     ASSERT(vslvsp[0].vardef.pattern == 0 || 
  1255.                        vslvsp[0].vardef.pattern->OK());
  1256.                     ASSERT(vslvsp[0].vardef.args == 0 || 
  1257.                        vslvsp[0].vardef.args->OK());
  1258.  
  1259.                     vslval.node = (vslvsp[0].vardef.pattern && vslvsp[0].vardef.args && vslvsp[-2].node) ?
  1260.                     new WhereNode(vslvsp[0].vardef.pattern, vslvsp[0].vardef.args, vslvsp[-2].node):
  1261.                     0;
  1262.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1263.                 ;
  1264.     break;}
  1265. case 46:
  1266. #line 412 "./vsl-gramma.Y"
  1267. {
  1268.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1269.                     ASSERT(vslvsp[0].vardef.pattern == 0 || 
  1270.                        vslvsp[0].vardef.pattern->OK());
  1271.                     ASSERT(vslvsp[0].vardef.args == 0 || 
  1272.                        vslvsp[0].vardef.args->OK());
  1273.  
  1274.                     vslval.node = (vslvsp[0].vardef.pattern && vslvsp[0].vardef.args && vslvsp[-2].node) ?
  1275.                     new WhereNode(vslvsp[0].vardef.pattern, vslvsp[0].vardef.args, vslvsp[-2].node):
  1276.                     0;
  1277.  
  1278.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1279.                 ;
  1280.     break;}
  1281. case 47:
  1282. #line 427 "./vsl-gramma.Y"
  1283. {
  1284.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1285.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1286.  
  1287.                     vslval.vardef.pattern = vslvsp[-2].node;
  1288.                     vslval.vardef.args    = vslvsp[0].node;
  1289.                 ;
  1290.     break;}
  1291. case 48:
  1292. #line 439 "./vsl-gramma.Y"
  1293. { vslval.node = vslvsp[-1].node; ;
  1294.     break;}
  1295. case 49:
  1296. #line 441 "./vsl-gramma.Y"
  1297. { vslval.node = vslvsp[0].node; ;
  1298.     break;}
  1299. case 50:
  1300. #line 443 "./vsl-gramma.Y"
  1301. { vslval.node = vslvsp[0].node; ;
  1302.     break;}
  1303. case 51:
  1304. #line 445 "./vsl-gramma.Y"
  1305. { vslval.node = vslvsp[0].node; ;
  1306.     break;}
  1307. case 52:
  1308. #line 447 "./vsl-gramma.Y"
  1309. { vslval.node = vslvsp[0].node; ;
  1310.     break;}
  1311. case 53:
  1312. #line 449 "./vsl-gramma.Y"
  1313. { vslval.node = vslvsp[0].node; ;
  1314.     break;}
  1315. case 54:
  1316. #line 451 "./vsl-gramma.Y"
  1317. { vslval.node = vslvsp[0].node; ;
  1318.     break;}
  1319. case 55:
  1320. #line 453 "./vsl-gramma.Y"
  1321. { vslval.node = vslvsp[0].node; ;
  1322.     break;}
  1323. case 56:
  1324. #line 456 "./vsl-gramma.Y"
  1325. {
  1326.                     vslval.node = new EmptyListNode;
  1327.                     ASSERT(vslval.node->OK());
  1328.                 ;
  1329.     break;}
  1330. case 57:
  1331. #line 461 "./vsl-gramma.Y"
  1332. {
  1333.                     vslval.node = vslvsp[-1].node;
  1334.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1335.                 ;
  1336.     break;}
  1337. case 58:
  1338. #line 466 "./vsl-gramma.Y"
  1339. {
  1340.                     vslval.node = new EmptyListNode;
  1341.                     ASSERT(vslval.node->OK());
  1342.                 ;
  1343.     break;}
  1344. case 59:
  1345. #line 471 "./vsl-gramma.Y"
  1346. {
  1347.                     vslval.node = vslvsp[-1].node;
  1348.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1349.                 ;
  1350.     break;}
  1351. case 60:
  1352. #line 477 "./vsl-gramma.Y"
  1353.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1354.  
  1355.                     vslval.node = (vslvsp[0].node) ? new FixListNode(vslvsp[0].node) : 0;
  1356.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1357.                 ;
  1358.     break;}
  1359. case 61:
  1360. #line 484 "./vsl-gramma.Y"
  1361.                     vslval.node = vslvsp[0].node; 
  1362.                 ;
  1363.     break;}
  1364. case 62:
  1365. #line 489 "./vsl-gramma.Y"
  1366.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1367.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1368.  
  1369.                     vslval.node = (vslvsp[-2].node && vslvsp[0].node) ? new ListNode(vslvsp[-2].node, vslvsp[0].node) : 0;
  1370.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1371.                 ;
  1372.     break;}
  1373. case 63:
  1374. #line 497 "./vsl-gramma.Y"
  1375. {
  1376.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1377.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1378.  
  1379.                     vslval.node = (vslvsp[-2].node && vslvsp[0].node) ? new ListNode(vslvsp[-2].node, vslvsp[0].node) : 0;
  1380.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1381.                 ;
  1382.     break;}
  1383. case 64:
  1384. #line 505 "./vsl-gramma.Y"
  1385.                     vslval.node = vslvsp[-1].node; 
  1386.                 ;
  1387.     break;}
  1388. case 65:
  1389. #line 509 "./vsl-gramma.Y"
  1390. {
  1391.                     vslval.node = new NameNode("...");
  1392.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1393.                 ;
  1394.     break;}
  1395. case 66:
  1396. #line 515 "./vsl-gramma.Y"
  1397.                     ASSERT(vslvsp[0].str->OK());
  1398.  
  1399.                     // Bug workaround
  1400.                     char *buf = (char *)*vslvsp[0].str;
  1401.                     string name = buf;
  1402.                     vslval.node = new StringNode(name);
  1403.                     delete vslvsp[0].str;
  1404.  
  1405.                     ASSERT(vslval.node->OK());
  1406.                 ;
  1407.     break;}
  1408. case 67:
  1409. #line 527 "./vsl-gramma.Y"
  1410.                     vslval.node = new NumNode(vslvsp[0].num);
  1411.                     ASSERT(vslval.node->OK());
  1412.                 ;
  1413.     break;}
  1414. case 68:
  1415. #line 533 "./vsl-gramma.Y"
  1416. {
  1417.                     vslval.str = new string(unquote((char *)vsltext));
  1418.                     ASSERT(vslval.str->OK());
  1419.                 ;
  1420.     break;}
  1421. case 69:
  1422. #line 538 "./vsl-gramma.Y"
  1423.                     ASSERT(vslvsp[-1].str->OK());
  1424.  
  1425.                     vslval.str = vslvsp[-1].str;
  1426.                     *vslval.str += unquote((char *)vsltext);
  1427.  
  1428.                     ASSERT(vslval.str->OK());
  1429.                 ;
  1430.     break;}
  1431. case 70:
  1432. #line 548 "./vsl-gramma.Y"
  1433. {
  1434.                     vslval.num = atoi((char *)vsltext);
  1435.                 ;
  1436.     break;}
  1437. case 71:
  1438. #line 553 "./vsl-gramma.Y"
  1439. {
  1440.                     ASSERT(vslvsp[-1].str->OK());
  1441.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1442.  
  1443.                     vslval.node = (vslvsp[0].node) ? 
  1444.                     vsllib->_call(*vslvsp[-1].str, vslvsp[0].node) : 0;
  1445.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1446.                 ;
  1447.     break;}
  1448. case 72:
  1449. #line 563 "./vsl-gramma.Y"
  1450. {
  1451.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1452.                     vslval.node = vsllib->call("(not)", vslvsp[0].node);
  1453.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1454.                 ;
  1455.     break;}
  1456. case 73:
  1457. #line 569 "./vsl-gramma.Y"
  1458. {
  1459.                     vslval.node = vslvsp[0].node;
  1460.                 ;
  1461.     break;}
  1462. case 74:
  1463. #line 573 "./vsl-gramma.Y"
  1464. {
  1465.                     // Simulate `-X' by `0-X'
  1466.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1467.                     vslval.node = (vslvsp[0].node) ? 
  1468.                     vsllib->call("(-)", new NullNode, vslvsp[0].node) :
  1469.                     0;
  1470.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1471.                 ;
  1472.     break;}
  1473. case 75:
  1474. #line 585 "./vsl-gramma.Y"
  1475.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1476.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1477.                     vslval.node = vsllib->call("(=)", vslvsp[-2].node, vslvsp[0].node); 
  1478.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1479.                 ;
  1480.     break;}
  1481. case 76:
  1482. #line 592 "./vsl-gramma.Y"
  1483.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1484.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1485.                     vslval.node = vsllib->call("(<>)", vslvsp[-2].node, vslvsp[0].node); 
  1486.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1487.                 ;
  1488.     break;}
  1489. case 77:
  1490. #line 599 "./vsl-gramma.Y"
  1491.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1492.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1493.                     vslval.node = vsllib->call("(>)", vslvsp[-2].node, vslvsp[0].node); 
  1494.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1495.                 ;
  1496.     break;}
  1497. case 78:
  1498. #line 606 "./vsl-gramma.Y"
  1499.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1500.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1501.                     vslval.node = vsllib->call("(>=)", vslvsp[-2].node, vslvsp[0].node); 
  1502.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1503.                 ;
  1504.     break;}
  1505. case 79:
  1506. #line 613 "./vsl-gramma.Y"
  1507.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1508.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1509.                     vslval.node = vsllib->call("(<)", vslvsp[-2].node, vslvsp[0].node); 
  1510.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1511.                 ;
  1512.     break;}
  1513. case 80:
  1514. #line 620 "./vsl-gramma.Y"
  1515.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1516.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1517.                     vslval.node = vsllib->call("(<=)", vslvsp[-2].node, vslvsp[0].node); 
  1518.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1519.                 ;
  1520.     break;}
  1521. case 81:
  1522. #line 627 "./vsl-gramma.Y"
  1523.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1524.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1525.                     vslval.node = vsllib->call("(&)", vslvsp[-2].node, vslvsp[0].node); 
  1526.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1527.                 ;
  1528.     break;}
  1529. case 82:
  1530. #line 634 "./vsl-gramma.Y"
  1531.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1532.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1533.                     vslval.node = vsllib->call("(|)", vslvsp[-2].node, vslvsp[0].node); 
  1534.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1535.                 ;
  1536.     break;}
  1537. case 83:
  1538. #line 641 "./vsl-gramma.Y"
  1539.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1540.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1541.                     vslval.node = vsllib->call("(^)", vslvsp[-2].node, vslvsp[0].node); 
  1542.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1543.                 ;
  1544.     break;}
  1545. case 84:
  1546. #line 648 "./vsl-gramma.Y"
  1547.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1548.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1549.                     vslval.node = vsllib->call("(~)", vslvsp[-2].node, vslvsp[0].node); 
  1550.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1551.                 ;
  1552.     break;}
  1553. case 85:
  1554. #line 655 "./vsl-gramma.Y"
  1555.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1556.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1557.                     vslval.node = vsllib->call("(+)", vslvsp[-2].node, vslvsp[0].node); 
  1558.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1559.                 ;
  1560.     break;}
  1561. case 86:
  1562. #line 662 "./vsl-gramma.Y"
  1563.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1564.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1565.                     vslval.node = vsllib->call("(-)", vslvsp[-2].node, vslvsp[0].node); 
  1566.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1567.                 ;
  1568.     break;}
  1569. case 87:
  1570. #line 669 "./vsl-gramma.Y"
  1571.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1572.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1573.                     vslval.node = vsllib->call("(*)", vslvsp[-2].node, vslvsp[0].node); 
  1574.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1575.                 ;
  1576.     break;}
  1577. case 88:
  1578. #line 676 "./vsl-gramma.Y"
  1579.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1580.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1581.                     vslval.node = vsllib->call("(/)", vslvsp[-2].node, vslvsp[0].node); 
  1582.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1583.                 ;
  1584.     break;}
  1585. case 89:
  1586. #line 683 "./vsl-gramma.Y"
  1587.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1588.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1589.                     vslval.node = vsllib->call("(%)", vslvsp[-2].node, vslvsp[0].node); 
  1590.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1591.                 ;
  1592.     break;}
  1593. case 90:
  1594. #line 690 "./vsl-gramma.Y"
  1595.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1596.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1597.                     vslval.node = vsllib->call("(::)", vslvsp[-2].node, vslvsp[0].node); 
  1598.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1599.                 ;
  1600.     break;}
  1601. case 91:
  1602. #line 697 "./vsl-gramma.Y"
  1603.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1604.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1605.                     // If EXPR-1 then true else EXPR-2
  1606.                     vslval.node = (vslvsp[-2].node && vslvsp[0].node) ? 
  1607.                     new TestNode(vslvsp[-2].node, new TrueNode, vslvsp[0].node) : 
  1608.                     0;
  1609.                   ASSERT(vslval.node == 0 || vslval.node->OK());
  1610.                 ;
  1611.     break;}
  1612. case 92:
  1613. #line 707 "./vsl-gramma.Y"
  1614.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1615.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1616.                     // If EXPR-1 then EXPR-2 else false
  1617.                     vslval.node = (vslvsp[-2].node && vslvsp[0].node) ? 
  1618.                     new TestNode(vslvsp[-2].node, vslvsp[0].node, new FalseNode) : 
  1619.                     0;
  1620.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1621.                 ;
  1622.     break;}
  1623. case 93:
  1624. #line 721 "./vsl-gramma.Y"
  1625.                     ASSERT(vslvsp[-4].node == 0 || vslvsp[-4].node->OK());
  1626.                     ASSERT(vslvsp[-2].node == 0 || vslvsp[-2].node->OK());
  1627.                     ASSERT(vslvsp[-1].node == 0 || vslvsp[-1].node->OK());
  1628.  
  1629.                     vslval.node = (vslvsp[-4].node && vslvsp[-2].node && vslvsp[-1].node) ?
  1630.                     new TestNode(vslvsp[-4].node, vslvsp[-2].node, vslvsp[-1].node) : 0;
  1631.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1632.                 ;
  1633.     break;}
  1634. case 94:
  1635. #line 734 "./vsl-gramma.Y"
  1636.                     ASSERT(vslvsp[-3].node == 0 || vslvsp[-3].node->OK());
  1637.                     ASSERT(vslvsp[-1].node == 0 || vslvsp[-1].node->OK());
  1638.                     ASSERT(vslvsp[0].node == 0 || vslvsp[0].node->OK());
  1639.  
  1640.                     vslval.node = (vslvsp[-3].node && vslvsp[-1].node && vslvsp[0].node) ?
  1641.                     new TestNode(vslvsp[-3].node, vslvsp[-1].node, vslvsp[0].node) : 0;
  1642.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1643.                 ;
  1644.     break;}
  1645. case 95:
  1646. #line 744 "./vsl-gramma.Y"
  1647. {
  1648.                     vslval.node = vslvsp[0].node;
  1649.                 ;
  1650.     break;}
  1651. case 96:
  1652. #line 749 "./vsl-gramma.Y"
  1653. {
  1654.                     vslval.node = vslvsp[0].node;
  1655.                 ;
  1656.     break;}
  1657. case 97:
  1658. #line 753 "./vsl-gramma.Y"
  1659.                     ASSERT(vslvsp[-1].node == 0 || vslvsp[-1].node->OK());
  1660.  
  1661.                     vslval.node = (vslvsp[-1].node) ? new FixListNode(vslvsp[-1].node) : 0; 
  1662.                     ASSERT(vslval.node == 0 || vslval.node->OK());
  1663.                 ;
  1664.     break;}
  1665. case 98:
  1666. #line 761 "./vsl-gramma.Y"
  1667. {
  1668.                     ASSERT(vslvsp[0].str->OK());
  1669.  
  1670.                     if (*vslvsp[0].str == "_")
  1671.                     {
  1672.                     vslval.node = new DummyNode;
  1673.                     }
  1674.                     else
  1675.                     {
  1676.                     // If function is declared, use it;
  1677.                     // otherwise create placeholder var
  1678.                     
  1679.                     if (vsllib->deflist("#" + *vslvsp[0].str))
  1680.                         vslval.node = vsllib->call("#" + *vslvsp[0].str);
  1681.                     else
  1682.                         vslval.node = new NameNode(*vslvsp[0].str);
  1683.                     }
  1684.  
  1685.                     ASSERT(vslval.node->OK());
  1686.                     delete vslvsp[0].str;
  1687.                 ;
  1688.     break;}
  1689. case 102:
  1690. #line 792 "./vsl-gramma.Y"
  1691. {
  1692.                     ASSERT(vslvsp[0].str->OK());
  1693.  
  1694.                     string func_name = *vslvsp[0].str;
  1695.                     if (vsllib->override(func_name)
  1696.                     && vsllib->override("#" + func_name))
  1697.                     {
  1698.                     VSLLib::parse_error("'" + func_name + 
  1699.                                 "(...)'"
  1700.                                 " undefined");
  1701.                     }
  1702.                 ;
  1703.     break;}
  1704. case 106:
  1705. #line 811 "./vsl-gramma.Y"
  1706. {
  1707.                     ASSERT(vslvsp[0].str->OK());
  1708.  
  1709.                     string func_name = *vslvsp[0].str;
  1710.                     if (vsllib->replace(func_name)
  1711.                     && vsllib->replace("#" + func_name))
  1712.                     {
  1713.                     VSLLib::parse_error("'" + func_name + 
  1714.                                 "(...)'"
  1715.                                 " undefined");
  1716.                     }
  1717.                 ;
  1718.     break;}
  1719. }
  1720.    /* the action file gets copied in in place of this dollarsign */
  1721. #line 498 "/usr/local/share/bison.simple"
  1722.  
  1723.   vslvsp -= vsllen;
  1724.   vslssp -= vsllen;
  1725. #ifdef YYLSP_NEEDED
  1726.   vsllsp -= vsllen;
  1727. #endif
  1728.  
  1729. #if YYDEBUG != 0
  1730.   if (vsldebug)
  1731.     {
  1732.       short *ssp1 = vslss - 1;
  1733.       fprintf (stderr, "state stack now");
  1734.       while (ssp1 != vslssp)
  1735.     fprintf (stderr, " %d", *++ssp1);
  1736.       fprintf (stderr, "\n");
  1737.     }
  1738. #endif
  1739.  
  1740.   *++vslvsp = vslval;
  1741.  
  1742. #ifdef YYLSP_NEEDED
  1743.   vsllsp++;
  1744.   if (vsllen == 0)
  1745.     {
  1746.       vsllsp->first_line = vsllloc.first_line;
  1747.       vsllsp->first_column = vsllloc.first_column;
  1748.       vsllsp->last_line = (vsllsp-1)->last_line;
  1749.       vsllsp->last_column = (vsllsp-1)->last_column;
  1750.       vsllsp->text = 0;
  1751.     }
  1752.   else
  1753.     {
  1754.       vsllsp->last_line = (vsllsp+vsllen-1)->last_line;
  1755.       vsllsp->last_column = (vsllsp+vsllen-1)->last_column;
  1756.     }
  1757. #endif
  1758.  
  1759.   /* Now "shift" the result of the reduction.
  1760.      Determine what state that goes to,
  1761.      based on the state we popped back to
  1762.      and the rule number reduced by.  */
  1763.  
  1764.   vsln = vslr1[vsln];
  1765.  
  1766.   vslstate = vslpgoto[vsln - YYNTBASE] + *vslssp;
  1767.   if (vslstate >= 0 && vslstate <= YYLAST && vslcheck[vslstate] == *vslssp)
  1768.     vslstate = vsltable[vslstate];
  1769.   else
  1770.     vslstate = vsldefgoto[vsln - YYNTBASE];
  1771.  
  1772.   goto vslnewstate;
  1773.  
  1774. vslerrlab:   /* here on detecting error */
  1775.  
  1776.   if (! vslerrstatus)
  1777.     /* If not already recovering from an error, report this error.  */
  1778.     {
  1779.       ++vslnerrs;
  1780.  
  1781. #ifdef YYERROR_VERBOSE
  1782.       vsln = vslpact[vslstate];
  1783.  
  1784.       if (vsln > YYFLAG && vsln < YYLAST)
  1785.     {
  1786.       int size = 0;
  1787.       char *msg;
  1788.       int x, count;
  1789.  
  1790.       count = 0;
  1791.       /* Start X at -vsln if nec to avoid negative indexes in vslcheck.  */
  1792.       for (x = (vsln < 0 ? -vsln : 0);
  1793.            x < (int)(sizeof(vsltname) / sizeof(char *)); x++)
  1794.         if (vslcheck[x + vsln] == x)
  1795.           size += strlen(vsltname[x]) + 15, count++;
  1796.       msg = new char [size + 15];
  1797.       if (msg != 0)
  1798.         {
  1799.           strcpy(msg, "parse error");
  1800.  
  1801.           if (count < 5)
  1802.         {
  1803.           count = 0;
  1804.           for (x = (vsln < 0 ? -vsln : 0);
  1805.                x < (int)(sizeof(vsltname) / sizeof(char *)); x++)
  1806.             if (vslcheck[x + vsln] == x)
  1807.               {
  1808.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  1809.             strcat(msg, vsltname[x]);
  1810.             strcat(msg, "'");
  1811.             count++;
  1812.               }
  1813.         }
  1814.           vslerror(msg);
  1815.           delete [] msg;
  1816.         }
  1817.       else
  1818.         vslerror ("parse error; also virtual memory exceeded");
  1819.     }
  1820.       else
  1821. #endif /* YYERROR_VERBOSE */
  1822.     vslerror("parse error");
  1823.     }
  1824.  
  1825.   goto vslerrlab1;
  1826. vslerrlab1:   /* here on error raised explicitly by an action */
  1827.  
  1828.   if (vslerrstatus == 3)
  1829.     {
  1830.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  1831.  
  1832.       /* return failure if at end of input */
  1833.       if (vslchar == YYEOF)
  1834.     YYABORT;
  1835.  
  1836. #if YYDEBUG != 0
  1837.       if (vsldebug)
  1838.     fprintf(stderr, "Discarding token %d (%s).\n", vslchar, vsltname[vslchar1]);
  1839. #endif
  1840.  
  1841.       vslchar = YYEMPTY;
  1842.     }
  1843.  
  1844.   /* Else will try to reuse lookahead token
  1845.      after shifting the error token.  */
  1846.  
  1847.   vslerrstatus = 3;        /* Each real token shifted decrements this */
  1848.  
  1849.   goto vslerrhandle;
  1850.  
  1851. vslerrdefault:  /* current state does not do anything special for the error token. */
  1852.  
  1853. #if 0
  1854.   /* This is wrong; only states that explicitly want error tokens
  1855.      should shift them.  */
  1856.   vsln = vsldefact[vslstate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  1857.   if (vsln) goto vsldefault;
  1858. #endif
  1859.  
  1860. vslerrpop:   /* pop the current state because it cannot handle the error token */
  1861.  
  1862.   if (vslssp == vslss) YYABORT;
  1863.   vslvsp--;
  1864.   vslstate = *--vslssp;
  1865. #ifdef YYLSP_NEEDED
  1866.   vsllsp--;
  1867. #endif
  1868.  
  1869. #if YYDEBUG != 0
  1870.   if (vsldebug)
  1871.     {
  1872.       short *ssp1 = vslss - 1;
  1873.       fprintf (stderr, "Error: state stack now");
  1874.       while (ssp1 != vslssp)
  1875.     fprintf (stderr, " %d", *++ssp1);
  1876.       fprintf (stderr, "\n");
  1877.     }
  1878. #endif
  1879.  
  1880. vslerrhandle:
  1881.  
  1882.   vsln = vslpact[vslstate];
  1883.   if (vsln == YYFLAG)
  1884.     goto vslerrdefault;
  1885.  
  1886.   vsln += YYTERROR;
  1887.   if (vsln < 0 || vsln > YYLAST || vslcheck[vsln] != YYTERROR)
  1888.     goto vslerrdefault;
  1889.  
  1890.   vsln = vsltable[vsln];
  1891.   if (vsln < 0)
  1892.     {
  1893.       if (vsln == YYFLAG)
  1894.     goto vslerrpop;
  1895.       vsln = -vsln;
  1896.       goto vslreduce;
  1897.     }
  1898.   else if (vsln == 0)
  1899.     goto vslerrpop;
  1900.  
  1901.   if (vsln == YYFINAL)
  1902.     YYACCEPT;
  1903.  
  1904. #if YYDEBUG != 0
  1905.   if (vsldebug)
  1906.     fprintf(stderr, "Shifting error token, ");
  1907. #endif
  1908.  
  1909.   *++vslvsp = vsllval;
  1910. #ifdef YYLSP_NEEDED
  1911.   *++vsllsp = vsllloc;
  1912. #endif
  1913.  
  1914.   vslstate = vsln;
  1915.   goto vslnewstate;
  1916. }
  1917. #line 824 "./vsl-gramma.Y"
  1918.  /* DO NOT REMOVE THIS COMMENT -- MUNCH-YACC DEPENDS ON IT */
  1919.