[BACK]Return to ytab.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/ytab.c between version 1.8 and 1.9

version 1.8, 2005/10/03 00:57:35 version 1.9, 2010/02/19 06:20:13
Line 1 
Line 1 
 /* A Bison parser, made by GNU Bison 1.875b.  */  
   
 /* Skeleton parser for Yacc-like parsing with Bison,  /* A Bison parser, made by GNU Bison 2.4.1.  */
    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.  
   
    This program is free software; you can redistribute it and/or modify  /* Skeleton implementation for Bison's Yacc-like parsers in C
   
         Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
      Free Software Foundation, Inc.
   
      This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2, or (at your option)     the Free Software Foundation, either version 3 of the License, or
    any later version.     (at your option) any later version.
   
    This program is distributed in the hope that it will be useful,     This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.     GNU General Public License for more details.
   
    You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software     along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
    Foundation, Inc., 59 Temple Place - Suite 330,  
    Boston, MA 02111-1307, USA.  */  
   
 /* As a special exception, when this file is copied by Bison into a  /* As a special exception, you may create a larger work that contains
    Bison output file, you may use that output file without restriction.     part or all of the Bison parser skeleton and distribute that work
    This special exception was added by the Free Software Foundation     under terms of your choice, so long as that work isn't itself a
    in version 1.24 of Bison.  */     parser generator using the skeleton or a modified version thereof
      as a parser skeleton.  Alternatively, if you modify or redistribute
      the parser skeleton itself, you may (at your option) remove this
      special exception, which will cause the skeleton and the resulting
      Bison output files to be licensed under the GNU General Public
      License without this special exception.
   
      This special exception was added by the Free Software Foundation in
      version 2.2 of Bison.  */
   
 /* Written by Richard Stallman by simplifying the original so called  /* C LALR(1) parser skeleton written by Richard Stallman, by
    ``semantic'' parser.  */     simplifying the original so-called "semantic" parser.  */
   
 /* All symbols defined below should begin with yy or YY, to avoid  /* All symbols defined below should begin with yy or YY, to avoid
    infringing on user name space.  This should be done even for local     infringing on user name space.  This should be done even for local
Line 36 
Line 45 
 /* Identify Bison output.  */  /* Identify Bison output.  */
 #define YYBISON 1  #define YYBISON 1
   
   /* Bison version.  */
   #define YYBISON_VERSION "2.4.1"
   
 /* Skeleton name.  */  /* Skeleton name.  */
 #define YYSKELETON_NAME "yacc.c"  #define YYSKELETON_NAME "yacc.c"
   
 /* Pure parsers.  */  /* Pure parsers.  */
 #define YYPURE 0  #define YYPURE 0
   
   /* Push parsers.  */
   #define YYPUSH 0
   
   /* Pull parsers.  */
   #define YYPULL 1
   
 /* Using locations.  */  /* Using locations.  */
 #define YYLSP_NEEDED 0  #define YYLSP_NEEDED 0
   
   
   
   /* Copy the first part of user declarations.  */
   
   /* Line 189 of yacc.c  */
   #line 50 "parse.y"
   
   #define malloc(x) GC_malloc(x)
   #define realloc(x,y) GC_realloc(x,y)
   #define free(x) GC_free(x)
   
   #if defined(TOWNS)
   #include <alloca.h>
   #endif
   #include <ctype.h>
   #include "ca.h"
   #include <sys/types.h>
   #include <sys/stat.h>
   #include "parse.h"
   
   #define NOPR (prresult=0)
   
   extern int gdef,mgdef,ldef;
   extern SNODE parse_snode;
   extern int main_parser, allow_create_var;
   
   int prresult,saveresult;
   
   static int ind;
   static FNODE t;
   static NODE a,b;
   static NODE2 a2;
   static pointer val;
   static QUOTE quote;
   extern jmp_buf env;
   
   
   /* Line 189 of yacc.c  */
   #line 105 "y.tab.c"
   
   /* Enabling traces.  */
   #ifndef YYDEBUG
   # define YYDEBUG 0
   #endif
   
   /* Enabling verbose error messages.  */
   #ifdef YYERROR_VERBOSE
   # undef YYERROR_VERBOSE
   # define YYERROR_VERBOSE 1
   #else
   # define YYERROR_VERBOSE 0
   #endif
   
   /* Enabling the token table.  */
   #ifndef YYTOKEN_TABLE
   # define YYTOKEN_TABLE 0
   #endif
   
   
 /* Tokens.  */  /* Tokens.  */
 #ifndef YYTOKENTYPE  #ifndef YYTOKENTYPE
 # define YYTOKENTYPE  # define YYTOKENTYPE
Line 105 
Line 180 
      MINUS = 307       MINUS = 307
    };     };
 #endif  #endif
   /* Tokens.  */
 #define STRUCT 258  #define STRUCT 258
 #define POINT 259  #define POINT 259
 #define NEWSTRUCT 260  #define NEWSTRUCT 260
Line 159 
Line 235 
   
   
   
 /* Copy the first part of user declarations.  */  #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 #line 50 "parse.y"  typedef union YYSTYPE
   {
   
 #define malloc(x) GC_malloc(x)  /* Line 214 of yacc.c  */
 #define realloc(x,y) GC_realloc(x,y)  #line 83 "parse.y"
 #define free(x) GC_free(x)  
   
 #if defined(TOWNS)          FNODE f;
 #include <alloca.h>          SNODE s;
           NODE n;
           NODE2 n2;
           int i;
           pointer p;
   
   
   
   /* Line 214 of yacc.c  */
   #line 256 "y.tab.c"
   } YYSTYPE;
   # define YYSTYPE_IS_TRIVIAL 1
   # define yystype YYSTYPE /* obsolescent; will be withdrawn */
   # define YYSTYPE_IS_DECLARED 1
 #endif  #endif
 #include <ctype.h>  
 #include "ca.h"  
 #include <sys/types.h>  
 #include <sys/stat.h>  
 #include "parse.h"  
   
 #define NOPR (prresult=0)  
   
 extern int gdef,mgdef,ldef;  /* Copy the second part of user declarations.  */
 extern SNODE parse_snode;  
 extern int main_parser, allow_create_var;  
   
 int prresult,saveresult;  
   
 static int ind;  /* Line 264 of yacc.c  */
 static FNODE t;  #line 268 "y.tab.c"
 static NODE a,b;  
 static NODE2 a2;  
 static pointer val;  
 static QUOTE quote;  
 extern jmp_buf env;  
   
   #ifdef short
   # undef short
   #endif
   
 /* Enabling traces.  */  #ifdef YYTYPE_UINT8
 #ifndef YYDEBUG  typedef YYTYPE_UINT8 yytype_uint8;
 # define YYDEBUG 0  #else
   typedef unsigned char yytype_uint8;
 #endif  #endif
   
 /* Enabling verbose error messages.  */  #ifdef YYTYPE_INT8
 #ifdef YYERROR_VERBOSE  typedef YYTYPE_INT8 yytype_int8;
 # undef YYERROR_VERBOSE  #elif (defined __STDC__ || defined __C99__FUNC__ \
 # define YYERROR_VERBOSE 1       || defined __cplusplus || defined _MSC_VER)
   typedef signed char yytype_int8;
 #else  #else
 # define YYERROR_VERBOSE 0  typedef short int yytype_int8;
 #endif  #endif
   
 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)  #ifdef YYTYPE_UINT16
 #line 83 "parse.y"  typedef YYTYPE_UINT16 yytype_uint16;
 typedef union YYSTYPE {  #else
         FNODE f;  typedef unsigned short int yytype_uint16;
         SNODE s;  
         NODE n;  
         NODE2 n2;  
         int i;  
         pointer p;  
 } YYSTYPE;  
 /* Line 191 of yacc.c.  */  
 #line 220 "y.tab.c"  
 # define yystype YYSTYPE /* obsolescent; will be withdrawn */  
 # define YYSTYPE_IS_DECLARED 1  
 # define YYSTYPE_IS_TRIVIAL 1  
 #endif  #endif
   
   #ifdef YYTYPE_INT16
   typedef YYTYPE_INT16 yytype_int16;
   #else
   typedef short int yytype_int16;
   #endif
   
   #ifndef YYSIZE_T
   # ifdef __SIZE_TYPE__
   #  define YYSIZE_T __SIZE_TYPE__
   # elif defined size_t
   #  define YYSIZE_T size_t
   # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
   #  define YYSIZE_T size_t
   # else
   #  define YYSIZE_T unsigned int
   # endif
   #endif
   
 /* Copy the second part of user declarations.  */  #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
   
   #ifndef YY_
   # if YYENABLE_NLS
   #  if ENABLE_NLS
   #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
   #   define YY_(msgid) dgettext ("bison-runtime", msgid)
   #  endif
   # endif
   # ifndef YY_
   #  define YY_(msgid) msgid
   # endif
   #endif
   
 /* Line 214 of yacc.c.  */  /* Suppress unused-variable warnings by "using" E.  */
 #line 232 "y.tab.c"  #if ! defined lint || defined __GNUC__
   # define YYUSE(e) ((void) (e))
   #else
   # define YYUSE(e) /* empty */
   #endif
   
 #if ! defined (yyoverflow) || YYERROR_VERBOSE  /* Identity function, used to suppress warnings about constant conditions.  */
   #ifndef lint
   # define YYID(n) (n)
   #else
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   static int
   YYID (int yyi)
   #else
   static int
   YYID (yyi)
       int yyi;
   #endif
   {
     return yyi;
   }
   #endif
   
   #if ! defined yyoverflow || YYERROR_VERBOSE
   
 /* The parser invokes alloca or malloc; define the necessary symbols.  */  /* The parser invokes alloca or malloc; define the necessary symbols.  */
   
 # if YYSTACK_USE_ALLOCA  # ifdef YYSTACK_USE_ALLOCA
 #  define YYSTACK_ALLOC alloca  #  if YYSTACK_USE_ALLOCA
 # else  #   ifdef __GNUC__
 #  ifndef YYSTACK_USE_ALLOCA  #    define YYSTACK_ALLOC __builtin_alloca
 #   if defined (alloca) || defined (_ALLOCA_H)  #   elif defined __BUILTIN_VA_ARG_INCR
 #    define YYSTACK_ALLOC alloca  #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
   #   elif defined _AIX
   #    define YYSTACK_ALLOC __alloca
   #   elif defined _MSC_VER
   #    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
   #    define alloca _alloca
 #   else  #   else
 #    ifdef __GNUC__  #    define YYSTACK_ALLOC alloca
 #     define YYSTACK_ALLOC __builtin_alloca  #    if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
   #     ifndef _STDLIB_H
   #      define _STDLIB_H 1
   #     endif
 #    endif  #    endif
 #   endif  #   endif
 #  endif  #  endif
 # endif  # endif
   
 # ifdef YYSTACK_ALLOC  # ifdef YYSTACK_ALLOC
    /* Pacify GCC's `empty if-body' warning. */     /* Pacify GCC's `empty if-body' warning.  */
 #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)  #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
   #  ifndef YYSTACK_ALLOC_MAXIMUM
       /* The OS might guarantee only one guard page at the bottom of the stack,
          and a page size can be as small as 4096 bytes.  So we cannot safely
          invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
          to allow for a few compiler-allocated temporary stack slots.  */
   #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
   #  endif
 # else  # else
 #  if defined (__STDC__) || defined (__cplusplus)  #  define YYSTACK_ALLOC YYMALLOC
   #  define YYSTACK_FREE YYFREE
   #  ifndef YYSTACK_ALLOC_MAXIMUM
   #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
   #  endif
   #  if (defined __cplusplus && ! defined _STDLIB_H \
          && ! ((defined YYMALLOC || defined malloc) \
                && (defined YYFREE || defined free)))
 #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */  #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
 #   define YYSIZE_T size_t  #   ifndef _STDLIB_H
   #    define _STDLIB_H 1
   #   endif
 #  endif  #  endif
 #  define YYSTACK_ALLOC malloc  #  ifndef YYMALLOC
 #  define YYSTACK_FREE free  #   define YYMALLOC malloc
   #   if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
   #   endif
   #  endif
   #  ifndef YYFREE
   #   define YYFREE free
   #   if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   void free (void *); /* INFRINGES ON USER NAME SPACE */
   #   endif
   #  endif
 # endif  # endif
 #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */  #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
   
   
 #if (! defined (yyoverflow) \  #if (! defined yyoverflow \
      && (! defined (__cplusplus) \       && (! defined __cplusplus \
          || (YYSTYPE_IS_TRIVIAL)))           || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
   
 /* A type that is properly aligned for any stack member.  */  /* A type that is properly aligned for any stack member.  */
 union yyalloc  union yyalloc
 {  {
   short yyss;    yytype_int16 yyss_alloc;
   YYSTYPE yyvs;    YYSTYPE yyvs_alloc;
   };  };
   
 /* The size of the maximum gap between one aligned stack and the next.  */  /* The size of the maximum gap between one aligned stack and the next.  */
 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)  # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
Line 279  union yyalloc
Line 437  union yyalloc
 /* The size of an array large to enough to hold all stacks, each with  /* The size of an array large to enough to hold all stacks, each with
    N elements.  */     N elements.  */
 # define YYSTACK_BYTES(N) \  # define YYSTACK_BYTES(N) \
      ((N) * (sizeof (short) + sizeof (YYSTYPE))                         \       ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
       + YYSTACK_GAP_MAXIMUM)        + YYSTACK_GAP_MAXIMUM)
   
 /* Copy COUNT objects from FROM to TO.  The source and destination do  /* Copy COUNT objects from FROM to TO.  The source and destination do
    not overlap.  */     not overlap.  */
 # ifndef YYCOPY  # ifndef YYCOPY
 #  if 1 < __GNUC__  #  if defined __GNUC__ && 1 < __GNUC__
 #   define YYCOPY(To, From, Count) \  #   define YYCOPY(To, From, Count) \
       __builtin_memcpy (To, From, (Count) * sizeof (*(From)))        __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
 #  else  #  else
 #   define YYCOPY(To, From, Count)              \  #   define YYCOPY(To, From, Count)              \
       do                                        \        do                                        \
         {                                       \          {                                       \
           register YYSIZE_T yyi;                \            YYSIZE_T yyi;                         \
           for (yyi = 0; yyi < (Count); yyi++)   \            for (yyi = 0; yyi < (Count); yyi++)   \
             (To)[yyi] = (From)[yyi];            \              (To)[yyi] = (From)[yyi];            \
         }                                       \          }                                       \
       while (0)        while (YYID (0))
 #  endif  #  endif
 # endif  # endif
   
Line 305  union yyalloc
Line 463  union yyalloc
    elements in the stack, and YYPTR gives the new location of the     elements in the stack, and YYPTR gives the new location of the
    stack.  Advance YYPTR to a properly aligned location for the next     stack.  Advance YYPTR to a properly aligned location for the next
    stack.  */     stack.  */
 # define YYSTACK_RELOCATE(Stack)                                        \  # define YYSTACK_RELOCATE(Stack_alloc, Stack)                           \
     do                                                                  \      do                                                                  \
       {                                                                 \        {                                                                 \
         YYSIZE_T yynewbytes;                                            \          YYSIZE_T yynewbytes;                                            \
         YYCOPY (&yyptr->Stack, Stack, yysize);                          \          YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                    \
         Stack = &yyptr->Stack;                                          \          Stack = &yyptr->Stack_alloc;                                    \
         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \          yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
         yyptr += yynewbytes / sizeof (*yyptr);                          \          yyptr += yynewbytes / sizeof (*yyptr);                          \
       }                                                                 \        }                                                                 \
     while (0)      while (YYID (0))
   
 #endif  #endif
   
 #if defined (__STDC__) || defined (__cplusplus)  /* YYFINAL -- State number of the termination state.  */
    typedef signed char yysigned_char;  
 #else  
    typedef short yysigned_char;  
 #endif  
   
 /* YYFINAL -- State number of the termination state. */  
 #define YYFINAL  101  #define YYFINAL  101
 /* YYLAST -- Last index in YYTABLE.  */  /* YYLAST -- Last index in YYTABLE.  */
 #define YYLAST   1290  #define YYLAST   1284
   
 /* YYNTOKENS -- Number of terminals. */  /* YYNTOKENS -- Number of terminals.  */
 #define YYNTOKENS  77  #define YYNTOKENS  77
 /* YYNNTS -- Number of nonterminals. */  /* YYNNTS -- Number of nonterminals.  */
 #define YYNNTS  26  #define YYNNTS  26
 /* YYNRULES -- Number of rules. */  /* YYNRULES -- Number of rules.  */
 #define YYNRULES  113  #define YYNRULES  114
 /* YYNRULES -- Number of states. */  /* YYNRULES -- Number of states.  */
 #define YYNSTATES  280  #define YYNSTATES  283
   
 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */  /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
 #define YYUNDEFTOK  2  #define YYUNDEFTOK  2
 #define YYMAXUTOK   307  #define YYMAXUTOK   307
   
 #define YYTRANSLATE(YYX)                                                \  #define YYTRANSLATE(YYX)                                                \
   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)    ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
   
 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */  /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
 static const unsigned char yytranslate[] =  static const yytype_uint8 yytranslate[] =
 {  {
        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,         0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,         2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
Line 384  static const unsigned char yytranslate[] =
Line 536  static const unsigned char yytranslate[] =
 #if YYDEBUG  #if YYDEBUG
 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in  /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
    YYRHS.  */     YYRHS.  */
 static const unsigned short yyprhs[] =  static const yytype_uint16 yyprhs[] =
 {  {
        0,     0,     3,     5,     7,     8,     9,    15,    16,    17,         0,     0,     3,     5,     7,     8,     9,    15,    16,    17,
       23,    24,    25,    31,    35,    42,    45,    47,    50,    53,        23,    24,    25,    31,    35,    42,    45,    47,    50,    53,
Line 393  static const unsigned short yyprhs[] =
Line 545  static const unsigned short yyprhs[] =
      151,   153,   157,   159,   163,   165,   169,   170,   173,   174,       151,   153,   157,   159,   163,   165,   169,   170,   173,   174,
      176,   178,   182,   184,   188,   190,   192,   196,   198,   200,       176,   178,   182,   184,   188,   190,   192,   196,   198,   200,
      202,   204,   206,   208,   210,   215,   222,   229,   236,   244,       202,   204,   206,   208,   210,   215,   222,   229,   236,   244,
      249,   253,   262,   267,   274,   282,   287,   292,   297,   301,       249,   253,   262,   267,   274,   282,   292,   297,   302,   307,
      303,   308,   312,   314,   320,   324,   328,   331,   334,   338,       311,   313,   318,   322,   324,   330,   334,   338,   341,   344,
      341,   344,   348,   352,   356,   360,   364,   368,   372,   375,       348,   351,   354,   358,   362,   366,   370,   374,   378,   382,
      379,   383,   386,   390,   394,   398,   402,   406,   410,   416,       385,   389,   393,   396,   400,   404,   408,   412,   416,   420,
      420,   425,   430,   436       426,   430,   435,   440,   446
 };  };
   
 /* YYRHS -- A `-1'-separated list of the rules' RHS. */  /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
 static const yysigned_char yyrhs[] =  static const yytype_int8 yyrhs[] =
 {  {
       78,     0,    -1,    79,    -1,    89,    -1,    -1,    -1,    11,        78,     0,    -1,    79,    -1,    89,    -1,    -1,    -1,    11,
       80,    94,    81,    89,    -1,    -1,    -1,    12,    82,    94,        80,    94,    81,    89,    -1,    -1,    -1,    12,    82,    94,
Line 431  static const yysigned_char yyrhs[] =
Line 583  static const yysigned_char yyrhs[] =
       67,    68,    -1,    33,    67,   102,    71,   102,    71,   102,        67,    68,    -1,    33,    67,   102,    71,   102,    71,   102,
       68,    -1,    30,    67,    47,    68,    -1,    30,    67,    47,        68,    -1,    30,    67,    47,    68,    -1,    30,    67,    47,
       71,    96,    68,    -1,    67,    53,   102,    68,    67,    96,        71,    96,    68,    -1,    67,    53,   102,    68,    67,    96,
         68,    -1,    67,    53,   102,    68,    67,    96,    72,    98,
       68,    -1,    46,    67,    96,    68,    -1,    18,    67,   102,        68,    -1,    46,    67,    96,    68,    -1,    18,    67,   102,
       68,    -1,    19,    67,   102,    68,    -1,    67,   102,    68,        68,    -1,    19,    67,   102,    68,    -1,    67,   102,    68,
       -1,    46,    -1,   101,    73,   102,    74,    -1,   101,     4,        -1,    46,    -1,   101,    73,   102,    74,    -1,   101,     4,
Line 450  static const yysigned_char yyrhs[] =
Line 603  static const yysigned_char yyrhs[] =
 };  };
   
 /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */  /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
 static const unsigned short yyrline[] =  static const yytype_uint16 yyrline[] =
 {  {
        0,   130,   130,   139,   141,   141,   141,   143,   143,   143,         0,   130,   130,   139,   141,   141,   141,   143,   143,   143,
      145,   145,   145,   147,   149,   151,   153,   155,   157,   159,       145,   145,   145,   147,   149,   151,   153,   155,   157,   159,
Line 459  static const unsigned short yyrline[] =
Line 612  static const unsigned short yyrline[] =
      207,   209,   212,   214,   217,   219,   223,   224,   228,   229,       207,   209,   212,   214,   217,   219,   223,   224,   228,   229,
      232,   234,   237,   239,   242,   244,   247,   250,   252,   254,       232,   234,   237,   239,   242,   244,   247,   250,   252,   254,
      256,   258,   260,   262,   283,   290,   297,   303,   309,   314,       256,   258,   260,   262,   283,   290,   297,   303,   309,   314,
      318,   322,   326,   333,   340,   344,   358,   360,   362,   364,       318,   322,   326,   333,   340,   344,   349,   363,   365,   367,
      377,   387,   390,   392,   394,   396,   398,   400,   402,   404,       369,   382,   392,   395,   397,   399,   401,   403,   405,   407,
      406,   408,   410,   412,   414,   416,   418,   420,   422,   424,       409,   411,   413,   415,   417,   419,   421,   423,   425,   427,
      426,   428,   430,   432,   434,   436,   438,   440,   442,   444,       429,   431,   433,   435,   437,   439,   441,   443,   445,   447,
      446,   448,   450,   452       449,   451,   453,   455,   457
 };  };
 #endif  #endif
   
 #if YYDEBUG || YYERROR_VERBOSE  #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
 /* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.  /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
    First, the terminals, then, starting at YYNTOKENS, nonterminals. */     First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
 static const char *const yytname[] =  static const char *const yytname[] =
 {  {
   "$end", "error", "$undefined", "STRUCT", "POINT", "NEWSTRUCT", "ANS",    "$end", "error", "$undefined", "STRUCT", "POINT", "NEWSTRUCT", "ANS",
   "FDEF", "PFDEF", "MODDEF", "MODEND", "GLOBAL", "MGLOBAL", "LOCAL",    "FDEF", "PFDEF", "MODDEF", "MODEND", "GLOBAL", "MGLOBAL", "LOCAL",
   "LOCALF", "CMP", "OR", "AND", "CAR", "CDR", "QUOTED", "COLONCOLON",    "LOCALF", "CMP", "OR", "AND", "CAR", "CDR", "QUOTED", "COLONCOLON", "DO",
   "DO", "WHILE", "FOR", "IF", "ELSE", "BREAK", "RETURN", "CONTINUE",    "WHILE", "FOR", "IF", "ELSE", "BREAK", "RETURN", "CONTINUE", "PARIF",
   "PARIF", "MAP", "RECMAP", "TIMER", "GF2NGEN", "GFPNGEN", "GFSNGEN",    "MAP", "RECMAP", "TIMER", "GF2NGEN", "GFPNGEN", "GFSNGEN", "GETOPT",
   "GETOPT", "FOP_AND", "FOP_OR", "FOP_IMPL", "FOP_REPL", "FOP_EQUIV",    "FOP_AND", "FOP_OR", "FOP_IMPL", "FOP_REPL", "FOP_EQUIV", "FOP_NOT",
   "FOP_NOT", "LOP", "FORMULA", "UCASE", "LCASE", "STR", "SELF", "BOPASS",    "LOP", "FORMULA", "UCASE", "LCASE", "STR", "SELF", "BOPASS", "'+'",
   "'+'", "'-'", "'*'", "'/'", "'^'", "'%'", "'='", "'?'", "':'", "'`'",    "'-'", "'*'", "'/'", "'^'", "'%'", "'='", "'?'", "':'", "'`'", "'&'",
   "'&'", "PLUS", "MINUS", "'!'", "'{'", "'}'", "'('", "')'", "';'", "'$'",    "PLUS", "MINUS", "'!'", "'{'", "'}'", "'('", "')'", "';'", "'$'", "','",
   "','", "'|'", "'['", "']'", "'<'", "'>'", "$accept", "start", "stat",    "'|'", "'['", "']'", "'<'", "'>'", "$accept", "start", "stat", "$@1",
   "@1", "@2", "@3", "@4", "@5", "@6", "@7", "@8", "@9", "tail", "desc",    "$@2", "$@3", "$@4", "$@5", "$@6", "$@7", "$@8", "$@9", "tail", "desc",
   "complex", "members", "vars", "pvars", "stats", "node", "_node",    "complex", "members", "vars", "pvars", "stats", "node", "_node",
   "optlist", "rawstr", "opt", "pexpr", "expr", 0    "optlist", "rawstr", "opt", "pexpr", "expr", 0
 };  };
 #endif  #endif
Line 491  static const char *const yytname[] =
Line 644  static const char *const yytname[] =
 # ifdef YYPRINT  # ifdef YYPRINT
 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to  /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
    token YYLEX-NUM.  */     token YYLEX-NUM.  */
 static const unsigned short yytoknum[] =  static const yytype_uint16 yytoknum[] =
 {  {
        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,         0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,       265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
Line 505  static const unsigned short yytoknum[] =
Line 658  static const unsigned short yytoknum[] =
 # endif  # endif
   
 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */  /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
 static const unsigned char yyr1[] =  static const yytype_uint8 yyr1[] =
 {  {
        0,    77,    78,    79,    80,    81,    79,    82,    83,    79,         0,    77,    78,    79,    80,    81,    79,    82,    83,    79,
       84,    85,    79,    79,    79,    79,    79,    79,    79,    79,        84,    85,    79,    79,    79,    79,    79,    79,    79,    79,
Line 515  static const unsigned char yyr1[] =
Line 668  static const unsigned char yyr1[] =
       97,    97,    98,    98,    99,    99,   100,   101,   101,   101,        97,    97,    98,    98,    99,    99,   100,   101,   101,   101,
      101,   101,   101,   101,   101,   101,   101,   101,   101,   101,       101,   101,   101,   101,   101,   101,   101,   101,   101,   101,
      101,   101,   101,   101,   101,   101,   101,   101,   101,   101,       101,   101,   101,   101,   101,   101,   101,   101,   101,   101,
      101,   101,   102,   102,   102,   102,   102,   102,   102,   102,       101,   101,   101,   102,   102,   102,   102,   102,   102,   102,
      102,   102,   102,   102,   102,   102,   102,   102,   102,   102,       102,   102,   102,   102,   102,   102,   102,   102,   102,   102,
      102,   102,   102,   102,   102,   102,   102,   102,   102,   102,       102,   102,   102,   102,   102,   102,   102,   102,   102,   102,
      102,   102,   102,   102       102,   102,   102,   102,   102
 };  };
   
 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */  /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
 static const unsigned char yyr2[] =  static const yytype_uint8 yyr2[] =
 {  {
        0,     2,     1,     1,     0,     0,     5,     0,     0,     5,         0,     2,     1,     1,     0,     0,     5,     0,     0,     5,
        0,     0,     5,     3,     6,     2,     1,     2,     2,     2,         0,     0,     5,     3,     6,     2,     1,     2,     2,     2,
Line 531  static const unsigned char yyr2[] =
Line 684  static const unsigned char yyr2[] =
        1,     3,     1,     3,     1,     3,     0,     2,     0,     1,         1,     3,     1,     3,     1,     3,     0,     2,     0,     1,
        1,     3,     1,     3,     1,     1,     3,     1,     1,     1,         1,     3,     1,     3,     1,     1,     3,     1,     1,     1,
        1,     1,     1,     1,     4,     6,     6,     6,     7,     4,         1,     1,     1,     1,     4,     6,     6,     6,     7,     4,
        3,     8,     4,     6,     7,     4,     4,     4,     3,     1,         3,     8,     4,     6,     7,     9,     4,     4,     4,     3,
        4,     3,     1,     5,     3,     3,     2,     2,     3,     2,         1,     4,     3,     1,     5,     3,     3,     2,     2,     3,
        2,     3,     3,     3,     3,     3,     3,     3,     2,     3,         2,     2,     3,     3,     3,     3,     3,     3,     3,     2,
        3,     2,     3,     3,     3,     3,     3,     3,     5,     3,         3,     3,     2,     3,     3,     3,     3,     3,     3,     5,
        4,     4,     5,     2         3,     4,     4,     5,     2
 };  };
   
 /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state  /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
    STATE-NUM when YYTABLE doesn't specify something else to do.  Zero     STATE-NUM when YYTABLE doesn't specify something else to do.  Zero
    means the default is an error.  */     means the default is an error.  */
 static const unsigned char yydefact[] =  static const yytype_uint8 yydefact[] =
 {  {
        0,     0,     0,     0,    59,     0,     0,     0,     0,     4,         0,     0,     0,     0,    59,     0,     0,     0,     0,     4,
        7,    10,     0,     0,     0,     0,     0,     0,     0,     0,         7,    10,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,    60,    61,    62,         0,     0,     0,     0,     0,     0,     0,    60,    61,    62,
        0,     0,    58,    79,    63,    57,     0,     0,     0,     0,         0,     0,    58,    80,    63,    57,     0,     0,     0,     0,
        0,    46,     0,    35,    36,    48,    48,     0,     2,     3,         0,    46,     0,    35,    36,    48,    48,     0,     2,     3,
       16,    82,     0,    34,    54,    55,     0,     0,    28,     0,        16,    83,     0,    34,    54,    55,     0,     0,    28,     0,
        0,    33,     0,     0,     0,    42,     0,     0,     0,     0,         0,    33,     0,     0,     0,    42,     0,     0,     0,     0,
        0,    48,    48,    48,    17,    63,    19,     0,    18,     0,         0,    48,    48,    48,    17,    63,    19,     0,    18,     0,
        0,     0,     0,     0,   101,    48,    48,    48,    87,    89,         0,     0,     0,     0,   102,    48,    48,    48,    88,    90,
       90,   113,    98,     0,     0,     0,     0,     0,    49,    50,        91,   114,    99,     0,     0,     0,     0,     0,    49,    50,
        0,     1,     0,     0,     0,     0,     0,     0,     0,     0,         0,     1,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,    86,     0,     0,     0,     0,     0,     0,         0,     0,     0,    87,     0,     0,     0,     0,     0,     0,
        0,     0,     0,    15,     0,     0,     0,    48,    32,    44,         0,     0,     0,    15,     0,     0,     0,    48,    32,    44,
        5,     8,    11,     0,    13,     0,     0,     0,     0,     0,         5,     8,    11,     0,    13,     0,     0,     0,     0,     0,
        0,     0,    48,    20,     0,     0,     0,     0,    70,     0,         0,     0,    48,    20,     0,     0,     0,     0,    70,     0,
        0,     0,     0,    39,    47,     0,     0,    78,     0,    88,         0,     0,     0,    39,    47,     0,     0,    79,     0,    89,
        0,   109,    81,     0,    97,    99,   100,   102,   103,   104,         0,   110,    82,     0,    98,   100,   101,   103,   104,   105,
      105,   106,   107,    85,    91,    92,    93,    94,    96,    95,       106,   107,   108,    86,    92,    93,    94,    95,    97,    96,
       84,     0,     0,    40,   110,    29,     0,     0,     0,     0,        85,     0,     0,    40,   111,    29,     0,     0,     0,     0,
        0,    43,    76,    77,   111,    48,     0,    48,     0,     0,         0,    43,    77,    78,   112,    48,     0,    48,     0,     0,
       72,    48,    48,    48,     0,    69,    75,     0,    64,     0,        72,    48,    48,    48,     0,    69,    76,     0,    64,     0,
        0,     0,     0,    51,    80,     0,     0,     0,    48,     0,         0,     0,     0,    51,    81,     0,     0,     0,    48,     0,
       45,     6,     9,    12,     0,    24,     0,    21,    64,     0,        45,     6,     9,    12,     0,    24,     0,    21,    64,     0,
        0,     0,     0,    48,     0,     0,     0,    52,     0,    83,         0,     0,     0,    48,     0,     0,     0,    52,     0,    84,
       48,   112,   108,    14,    41,    30,    27,     0,    48,     0,        48,   113,   109,    14,    41,    30,    27,     0,    48,     0,
       73,    66,    67,     0,     0,     0,    65,     0,     0,     0,        73,    66,    67,     0,     0,     0,    65,     0,     0,     0,
        0,    25,     0,    22,     0,    68,     0,    53,    56,    74,         0,    25,     0,    22,     0,    68,     0,    53,    56,    74,
       37,     0,    71,    26,    38,     0,    23,    46,     0,    31         0,    37,     0,    71,    26,     0,    38,     0,    23,    75,
         46,     0,    31
 };  };
   
 /* YYDEFGOTO[NTERM-NUM]. */  /* YYDEFGOTO[NTERM-NUM].  */
 static const short yydefgoto[] =  static const yytype_int16 yydefgoto[] =
 {  {
       -1,    47,   154,    62,   188,    63,   189,    64,   190,   126,        -1,    47,   154,    62,   188,    63,   189,    64,   190,   126,
      218,   260,    49,   275,    50,   182,    66,   130,    93,    97,       218,   260,    49,   277,    50,   182,    66,   130,    93,    97,
       98,   235,   236,   237,    51,    99        98,   235,   236,   237,    51,    99
 };  };
   
 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing  /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
    STATE-NUM.  */     STATE-NUM.  */
 #define YYPACT_NINF -65  #define YYPACT_NINF -65
 static const short yypact[] =  static const yytype_int16 yypact[] =
 {  {
      465,   -36,     8,   -64,   -65,   -27,    19,    26,   -36,   -65,       476,   -36,    83,   -64,   -65,   -27,     3,    18,   -36,   -65,
      -65,   -65,    33,   -16,    21,    24,   465,    56,    60,    64,       -65,   -65,    26,    13,    21,    24,   476,    35,    60,    64,
      -36,   586,   -36,    67,    68,    70,    78,   -65,   -65,   -65,       -36,   597,   -36,    68,    71,    72,    74,   -65,   -65,   -65,
       80,   696,   -65,    81,    25,   -65,   696,   696,   696,   696,        75,   707,   -65,    76,    25,   -65,   707,   707,   707,   707,
      696,   -65,   536,   -65,   -65,   696,   696,   133,   -65,   -65,       707,   -65,   547,   -65,   -65,   707,   707,   137,   -65,   -65,
      -65,    -2,   853,   -65,   -65,   -65,    84,     8,   -65,    86,       -65,    -2,   864,   -65,   -65,   -65,    79,    83,   -65,    78,
      -36,   -65,   100,   100,   100,   -65,   -12,   696,   696,   696,       -36,   -65,   100,   100,   100,   -65,   -12,   707,   707,   707,
      132,   696,   696,   696,   -65,    61,   -65,   853,   -65,   112,       124,   707,   707,   707,   -65,    58,   -65,   864,   -65,   101,
      114,   115,   696,   -33,  1173,   696,   696,   696,   118,   -26,       102,   104,   707,   -33,  1184,   707,   707,   707,   106,   -26,
      -26,  1173,   118,   323,     8,   696,   897,    -9,    92,  1113,       -26,  1184,   106,   334,    83,   707,   908,    54,    85,  1124,
      101,   -65,     8,   696,   696,   696,   696,   696,   696,   696,        81,   -65,    83,   707,   707,   707,   707,   707,   707,   707,
      696,   696,   696,   -65,   696,   696,   696,   696,   696,   696,       707,   707,   707,   -65,   707,   707,   707,   707,   707,   707,
      696,   696,   696,   -65,     8,   108,   111,   696,   -65,   -65,       707,   707,   707,   -65,    83,    91,   105,   707,   -65,   -65,
      109,   109,   109,   134,   -65,   928,   959,   990,   120,   123,       103,   103,   103,   126,   -65,   939,   970,  1001,   111,   115,
      110,   127,   696,   -65,   -19,   129,   130,   765,   -65,   135,       116,   127,   707,   -65,   -17,   129,   131,   776,   -65,   140,
      139,   116,   -53,   -65,   -65,   140,  1021,   -65,   696,   -65,       141,   144,   -53,   -65,   -65,   143,  1032,   -65,   707,   -65,
      696,   -65,   -65,   249,    23,   262,    87,  1234,  1217,  1192,       707,   -65,   -65,   260,    23,   273,   135,  1228,   210,  1203,
      173,    45,    -8,  1113,   -26,   -26,   -45,   -45,   -45,   -45,       190,    45,    -8,  1124,   -26,   -26,   -45,   -45,   -45,   -45,
     1113,  1083,   -60,   -65,   -65,   -65,   141,   156,   -36,   -36,      1124,  1094,   -60,   -65,   -65,   -65,   145,   157,   -36,   -36,
      -36,   -65,   -65,   -65,   -65,   696,   465,   696,   465,   -50,       -36,   -65,   -65,   -65,   -65,   707,   476,   707,   476,   -50,
      -65,   696,   696,   696,   696,   -65,   -65,   143,   155,     8,       -65,   707,   707,   707,   707,   -65,   -65,   147,   153,    83,
      138,   149,   734,  1113,   -65,   696,   -36,     8,   696,   -36,       134,   149,   745,  1124,   -65,   707,   -36,    83,   707,   -36,
      -65,   -65,   -65,   -65,   150,   -65,   161,   193,   -65,   163,       -65,   -65,   -65,   -65,   150,   -65,   152,   193,   -65,   154,
      164,   165,   809,   696,   177,   -18,   178,   -65,   646,    -2,       156,   163,   820,   707,   176,   -16,   178,   -65,   657,    -2,
      696,   -65,  1143,   -65,   -65,   -65,   -65,   -36,   696,   465,       707,   -65,  1154,   -65,   -65,   -65,   -65,   -36,   707,   476,
      -65,   -65,   -65,   696,   168,   696,   -65,     8,   696,   169,       -65,   -65,   -65,   707,   168,   707,   -65,    83,   707,   -19,
      171,   -65,   172,   -65,  1052,   -65,   853,   -65,  1113,   -65,       169,   -65,   172,   -65,  1063,   -65,   864,   -65,  1124,   -65,
      194,   465,   -65,   -65,   -65,   176,   -65,   -65,   394,   -65        83,   204,   476,   -65,   -65,    -5,   -65,   191,   -65,   -65,
        -65,   405,   -65
 };  };
   
 /* YYPGOTO[NTERM-NUM].  */  /* YYPGOTO[NTERM-NUM].  */
 static const yysigned_char yypgoto[] =  static const yytype_int8 yypgoto[] =
 {  {
      -65,   -65,     1,   -65,   -65,   -65,   -65,   -65,   -65,   -65,       -65,   -65,     1,   -65,   -65,   -65,   -65,   -65,   -65,   -65,
      -65,   -65,     4,   -65,   -65,   -65,   -65,    66,   -34,    79,       -65,   -65,     4,   -65,   -65,   -65,   -65,    70,   -23,    90,
      -65,   -65,    30,   -13,    35,     0       -65,   -10,    30,    10,    59,     0
 };  };
   
 /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If  /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
Line 629  static const yysigned_char yypgoto[] =
Line 784  static const yysigned_char yypgoto[] =
    number is the opposite.  If zero, do what YYDEFACT says.     number is the opposite.  If zero, do what YYDEFACT says.
    If YYTABLE_NINF, syntax error.  */     If YYTABLE_NINF, syntax error.  */
 #define YYTABLE_NINF -1  #define YYTABLE_NINF -1
 static const unsigned short yytable[] =  static const yytype_uint16 yytable[] =
 {  {
       52,    48,   102,    57,   113,    53,   216,   104,   105,   106,        52,    48,   102,    57,   113,    53,   216,   104,   105,   106,
      119,   217,    61,    54,    55,   208,    52,    70,   228,   209,       119,   217,    61,    54,    55,   208,    52,    70,   228,   209,
       58,    77,   209,   113,    74,    76,    78,   117,   118,   119,        58,    77,   209,   113,    74,    76,    78,   117,   118,   119,
      120,    84,    56,    43,    44,   148,    88,    89,    90,    91,       120,    84,    56,    43,    44,   148,    88,    89,    90,    91,
       92,   113,    96,   115,   116,   117,   118,   119,   120,   200,        92,   113,    96,   115,   116,   117,   118,   119,   120,   269,
      256,    67,   201,   257,    54,    55,   123,    43,    44,   133,        59,   200,   256,   270,   201,   257,   123,    43,    44,   133,
      104,   105,   106,   158,   128,   159,    59,   135,   136,   137,       104,   105,   106,   279,   128,    60,   257,   135,   136,   137,
      134,   103,   113,    60,   115,   116,   117,   118,   119,   120,       134,   103,   113,    65,   115,   116,   117,   118,   119,   120,
       65,   143,   147,   107,   108,   109,   110,   125,    68,   112,        67,   143,   147,   107,   108,   109,   110,   125,    68,   112,
       86,    69,    87,    52,   113,   156,   115,   116,   117,   118,        86,    69,    87,    52,   113,   156,   115,   116,   117,   118,
      119,   120,   104,   163,   164,   165,   166,   167,   168,   169,       119,   120,    71,   163,   164,   165,   166,   167,   168,   169,
      170,   171,   172,   149,   173,   174,   175,   176,   177,   178,       170,   171,   172,   149,   173,   174,   175,   176,   177,   178,
      179,   180,   181,    71,   155,   100,    86,    72,   142,   131,       179,   180,   181,    86,   155,   142,   158,    72,   159,    54,
      132,    73,   162,   101,    79,    80,   113,    81,   115,   116,        55,    73,   162,   131,   132,    79,   100,   101,    80,    81,
      117,   118,   119,   120,     4,    82,   129,    83,    85,   124,         4,    82,    83,    85,   124,   127,   129,   138,   144,   145,
      139,   140,   141,   127,   183,   138,    13,    14,   212,   144,       104,   146,    13,    14,   183,   113,   160,   161,   212,   184,
      213,   145,   146,   160,   150,   151,   152,   113,    23,    24,       213,   139,   140,   141,    23,    24,    25,    26,    27,    28,
       25,    26,    27,    28,    29,    30,   184,   161,   185,   197,        29,    30,   185,   191,   187,   150,   151,   152,   195,    32,
      187,   191,   207,    32,    33,    75,    35,   195,   104,   105,        33,    75,    35,   196,   113,   197,   115,   116,   117,   118,
      106,   196,   221,   222,   223,   198,    52,   225,    52,   227,       119,   120,   221,   222,   223,   198,    52,   225,    52,   227,
      202,   203,   220,   205,   232,   238,   186,   206,   210,   219,       202,   238,   203,   220,   232,   104,   105,   106,   205,   206,
      233,   107,   108,   109,   234,   242,   240,   112,   247,   249,       207,   210,   234,   219,   233,   242,   240,   186,   247,   249,
      243,   199,   113,   246,   115,   116,   117,   118,   119,   120,       243,   248,   250,   246,   251,   104,   105,   106,   107,   108,
      248,   250,   251,   252,   255,   258,   265,   269,    96,   270,       109,   252,   199,   255,   112,   258,   265,   271,    96,   113,
      271,   277,   274,   278,   267,   239,     0,   244,     0,    52,       272,   115,   116,   117,   118,   119,   120,   244,   107,    52,
      263,   261,     0,   264,     0,   266,     0,     0,   268,     0,       263,   261,   276,   264,   112,   266,   280,   281,   268,   113,
        0,     0,     0,     0,   104,   105,   106,     0,     0,     0,       275,   115,   116,   117,   118,   119,   120,   267,     0,   239,
      273,    52,   276,     0,   224,     0,   226,   104,    52,   106,       274,     0,    52,   278,     0,   104,   105,   106,     0,     0,
      229,   230,   231,     0,     0,     0,     0,   107,   108,   109,         0,    52,     0,     0,     0,   224,     0,   226,   104,     0,
      110,   111,     0,   112,     0,     0,     0,   245,   113,   114,       106,   229,   230,   231,     0,     0,     0,     0,   107,   108,
      115,   116,   117,   118,   119,   120,   121,   122,     0,     0,       109,   110,   111,     0,   112,     0,     0,     0,   245,   113,
        0,   113,   254,   115,   116,   117,   118,   119,   120,   259,       114,   115,   116,   117,   118,   119,   120,   121,   122,     0,
        0,     0,     0,   214,     1,     0,     2,   262,     3,     4,         0,     0,   113,   254,   115,   116,   117,   118,   119,   120,
        5,     6,     7,     8,     9,    10,    11,    12,     0,     0,       259,     0,     0,     0,   214,     1,     0,     2,   262,     3,
        0,    13,    14,    15,     0,    16,    17,    18,    19,     0,  
       20,    21,    22,    23,    24,    25,    26,    27,    28,    29,  
       30,     0,     0,     0,     0,     0,    31,     0,    32,    33,  
       34,    35,    36,     0,    37,    38,     0,     0,     0,     0,  
        0,     0,     0,    39,     0,     0,     0,    40,    41,   153,  
       42,     0,    43,    44,     0,     1,    45,     2,    46,     3,  
        4,     5,     6,     7,     8,     9,    10,    11,    12,     0,         4,     5,     6,     7,     8,     9,    10,    11,    12,     0,
        0,     0,    13,    14,    15,     0,    16,    17,    18,    19,         0,     0,    13,    14,    15,     0,    16,    17,    18,    19,
        0,    20,    21,    22,    23,    24,    25,    26,    27,    28,         0,    20,    21,    22,    23,    24,    25,    26,    27,    28,
       29,    30,     0,     0,     0,     0,     0,    31,     0,    32,        29,    30,     0,     0,     0,     0,     0,    31,     0,    32,
       33,    34,    35,    36,     0,    37,    38,     0,     0,     0,        33,    34,    35,    36,     0,    37,    38,     0,     0,     0,
        0,     0,     0,     0,    39,     0,     0,     0,    40,    41,         0,     0,     0,     0,    39,     0,     0,     0,    40,    41,
      279,    42,     0,    43,    44,     0,     1,    45,     2,    46,       153,    42,     0,    43,    44,     0,     1,    45,     2,    46,
        3,     4,     5,     6,     7,     8,     9,    10,    11,    12,         3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
        0,     0,     0,    13,    14,    15,     0,    16,    17,    18,         0,     0,     0,    13,    14,    15,     0,    16,    17,    18,
       19,     0,    20,    21,    22,    23,    24,    25,    26,    27,        19,     0,    20,    21,    22,    23,    24,    25,    26,    27,
       28,    29,    30,     0,     0,     0,     0,     0,    31,     0,        28,    29,    30,     0,     0,     0,     0,     0,    31,     0,
       32,    33,    34,    35,    36,     0,    37,    38,     0,     0,        32,    33,    34,    35,    36,     0,    37,    38,     0,     0,
        0,     0,     0,     0,     0,    39,     0,     0,     0,    40,         0,     0,     0,     0,     0,    39,     0,     0,     0,    40,
       41,     0,    42,     0,    43,    44,     0,     0,    45,    94,        41,   282,    42,     0,    43,    44,     0,     1,    45,     2,
       46,     3,     4,     0,     0,     0,     0,     0,     0,     0,        46,     3,     4,     5,     6,     7,     8,     9,    10,    11,
        0,     0,     0,     0,    13,    14,    15,     0,     0,     0,        12,     0,     0,     0,    13,    14,    15,     0,    16,    17,
        0,     0,     0,     0,     0,     0,    23,    24,    25,    26,        18,    19,     0,    20,    21,    22,    23,    24,    25,    26,
       27,    28,    29,    30,     0,     0,     0,     0,     0,    31,        27,    28,    29,    30,     0,     0,     0,     0,     0,    31,
        0,    32,    33,    75,    35,    36,     0,    37,    38,    95,         0,    32,    33,    34,    35,    36,     0,    37,    38,     0,
        0,     3,     4,     0,     0,     0,    39,     0,     0,     0,  
       40,     0,     0,    42,    13,    14,    15,     0,     0,    45,  
        0,    46,     0,     0,     0,     0,    23,    24,    25,    26,  
       27,    28,    29,    30,     0,     0,     0,     0,     0,    31,  
        0,    32,    33,    75,    35,    36,     0,    37,    38,     0,  
        0,     0,     0,     0,     0,     0,    39,     0,     0,     0,         0,     0,     0,     0,     0,     0,    39,     0,     0,     0,
       40,     3,     4,    42,     0,    43,    44,     0,     0,    45,        40,    41,     0,    42,     0,    43,    44,     0,     0,    45,
        0,    46,     0,     0,    13,    14,    15,     0,     0,     0,        94,    46,     3,     4,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,    23,    24,    25,    26,         0,     0,     0,     0,     0,    13,    14,    15,     0,     0,
       27,    28,    29,    30,     0,     0,     0,     0,     0,    31,         0,     0,     0,     0,     0,     0,     0,    23,    24,    25,
        0,    32,    33,    75,    35,    36,     0,    37,    38,    95,        26,    27,    28,    29,    30,     0,     0,     0,     0,     0,
        0,     3,     4,     0,     0,     0,    39,     0,     0,     0,        31,     0,    32,    33,    75,    35,    36,     0,    37,    38,
       40,     0,     0,    42,    13,    14,    15,     0,     0,    45,        95,     0,     3,     4,     0,     0,     0,    39,     0,     0,
        0,    46,     0,     0,     0,     0,    23,    24,    25,    26,         0,    40,     0,     0,    42,    13,    14,    15,     0,     0,
       27,    28,    29,    30,     0,     0,     0,     0,     0,    31,        45,     0,    46,     0,     0,     0,     0,    23,    24,    25,
        0,    32,    33,    75,    35,    36,     0,    37,    38,   104,        26,    27,    28,    29,    30,     0,     0,     0,     0,     0,
      105,   106,     0,     0,     0,     0,    39,     0,     0,     0,        31,     0,    32,    33,    75,    35,    36,     0,    37,    38,
       40,     0,     0,    42,     0,     0,     0,     0,     0,    45,         0,     0,     0,     0,     0,     0,     0,    39,     0,     0,
        0,    46,   107,   108,   109,   110,   111,     0,   112,     0,         0,    40,     3,     4,    42,     0,    43,    44,     0,     0,
      104,   105,   106,   113,   114,   115,   116,   117,   118,   119,        45,     0,    46,     0,     0,    13,    14,    15,     0,     0,
      120,   121,   122,     0,     0,     0,     0,     0,     0,     0,         0,     0,     0,     0,     0,     0,     0,    23,    24,    25,
        0,     0,     0,   107,   108,   109,   110,   111,   241,   112,        26,    27,    28,    29,    30,     0,     0,     0,     0,     0,
        0,     0,     0,     0,   113,   114,   115,   116,   117,   118,        31,     0,    32,    33,    75,    35,    36,     0,    37,    38,
      119,   120,   121,   122,   104,   105,   106,     0,     0,     0,        95,     0,     3,     4,     0,     0,     0,    39,     0,     0,
        0,     0,     0,     0,     0,     0,   204,     0,     0,     0,         0,    40,     0,     0,    42,    13,    14,    15,     0,     0,
        0,     0,     0,     0,     0,     0,     0,   107,   108,   109,        45,     0,    46,     0,     0,     0,     0,    23,    24,    25,
      110,   111,     0,   112,     0,     0,     0,     0,   113,   114,        26,    27,    28,    29,    30,     0,     0,     0,     0,     0,
      115,   116,   117,   118,   119,   120,   121,   122,   104,   105,        31,     0,    32,    33,    75,    35,    36,     0,    37,    38,
      106,     0,     0,     0,     0,     0,     0,     0,     0,     0,       104,   105,   106,     0,     0,     0,     0,    39,     0,     0,
      253,     0,     0,     0,     0,     0,     0,     0,     0,     0,         0,    40,     0,     0,    42,     0,     0,     0,     0,     0,
        0,   107,   108,   109,   110,   111,     0,   112,     0,     0,        45,     0,    46,   107,   108,   109,   110,   111,     0,   112,
        0,     0,   113,   114,   115,   116,   117,   118,   119,   120,         0,   104,   105,   106,   113,   114,   115,   116,   117,   118,
      121,   122,   104,   105,   106,     0,     0,     0,     0,     0,       119,   120,   121,   122,     0,     0,     0,     0,     0,     0,
        0,     0,    43,    44,     0,     0,     0,     0,     0,     0,         0,     0,     0,     0,   107,   108,   109,   110,   111,   241,
        0,     0,     0,     0,     0,   107,   108,   109,   110,   111,       112,     0,     0,     0,     0,   113,   114,   115,   116,   117,
        0,   112,     0,   104,   105,   106,   113,   114,   115,   116,       118,   119,   120,   121,   122,   104,   105,   106,     0,     0,
      117,   118,   119,   120,   121,   122,     0,     0,     0,     0,         0,     0,     0,     0,     0,     0,     0,   204,     0,     0,
        0,     0,     0,     0,     0,   157,   107,   108,   109,   110,         0,     0,     0,     0,     0,     0,     0,     0,   107,   108,
        109,   110,   111,     0,   112,     0,     0,     0,     0,   113,
        114,   115,   116,   117,   118,   119,   120,   121,   122,   104,
        105,   106,     0,     0,     0,     0,     0,     0,     0,     0,
          0,   253,     0,     0,     0,     0,     0,     0,     0,     0,
          0,     0,   107,   108,   109,   110,   111,     0,   112,     0,
          0,     0,     0,   113,   114,   115,   116,   117,   118,   119,
        120,   121,   122,   104,   105,   106,     0,     0,     0,     0,
          0,     0,     0,    43,    44,     0,     0,     0,     0,     0,
          0,     0,     0,     0,     0,     0,   107,   108,   109,   110,
      111,     0,   112,     0,   104,   105,   106,   113,   114,   115,       111,     0,   112,     0,   104,   105,   106,   113,   114,   115,
      116,   117,   118,   119,   120,   121,   122,     0,     0,     0,       116,   117,   118,   119,   120,   121,   122,     0,     0,     0,
        0,     0,     0,     0,     0,     0,   192,   107,   108,   109,         0,     0,     0,     0,     0,     0,   157,   107,   108,   109,
      110,   111,     0,   112,     0,   104,   105,   106,   113,   114,       110,   111,     0,   112,     0,   104,   105,   106,   113,   114,
      115,   116,   117,   118,   119,   120,   121,   122,     0,     0,       115,   116,   117,   118,   119,   120,   121,   122,     0,     0,
        0,     0,     0,     0,     0,     0,     0,   193,   107,   108,         0,     0,     0,     0,     0,     0,     0,   192,   107,   108,
      109,   110,   111,     0,   112,     0,   104,   105,   106,   113,       109,   110,   111,     0,   112,     0,   104,   105,   106,   113,
      114,   115,   116,   117,   118,   119,   120,   121,   122,     0,       114,   115,   116,   117,   118,   119,   120,   121,   122,     0,
        0,     0,     0,     0,     0,     0,     0,     0,   194,   107,         0,     0,     0,     0,     0,     0,     0,     0,   193,   107,
      108,   109,   110,   111,     0,   112,     0,   104,   105,   106,       108,   109,   110,   111,     0,   112,     0,   104,   105,   106,
      113,   114,   115,   116,   117,   118,   119,   120,   121,   122,       113,   114,   115,   116,   117,   118,   119,   120,   121,   122,
        0,     0,     0,     0,     0,     0,     0,     0,     0,   211,         0,     0,     0,     0,     0,     0,     0,     0,     0,   194,
      107,   108,   109,   110,   111,     0,   112,     0,   104,   105,       107,   108,   109,   110,   111,     0,   112,     0,   104,   105,
      106,   113,   114,   115,   116,   117,   118,   119,   120,   121,       106,   113,   114,   115,   116,   117,   118,   119,   120,   121,
      122,     0,     0,     0,     0,     0,     0,     0,     0,     0,       122,     0,     0,     0,     0,     0,     0,     0,     0,     0,
      272,   107,   108,   109,   110,   111,     0,   112,   104,   105,       211,   107,   108,   109,   110,   111,     0,   112,     0,   104,
      106,     0,   113,   114,   115,   116,   117,   118,   119,   120,       105,   106,   113,   114,   115,   116,   117,   118,   119,   120,
      121,   122,   215,     0,     0,     0,     0,     0,     0,     0,  
        0,   107,   108,   109,   110,   111,     0,   112,   104,   105,  
      106,     0,   113,   114,   115,   116,   117,   118,   119,   120,  
      121,   122,     0,     0,     0,     0,     0,     0,     0,     0,       121,   122,     0,     0,     0,     0,     0,     0,     0,     0,
        0,   107,   108,   109,   110,   111,     0,   112,   104,   105,         0,   273,   107,   108,   109,   110,   111,     0,   112,   104,
      106,     0,   113,     0,   115,   116,   117,   118,   119,   120,       105,   106,     0,   113,   114,   115,   116,   117,   118,   119,
        0,   122,     0,     0,     0,     0,     0,   104,   105,   106,       120,   121,   122,   215,     0,     0,     0,     0,     0,     0,
        0,   107,   108,   109,   110,   111,     0,   112,     0,     0,         0,     0,   107,   108,   109,   110,   111,     0,   112,   104,
        0,     0,   113,     0,   115,   116,   117,   118,   119,   120,       105,   106,     0,   113,   114,   115,   116,   117,   118,   119,
      107,   108,   104,   105,   106,     0,   112,     0,     0,     0,       120,   121,   122,     0,     0,     0,     0,     0,     0,     0,
        0,   113,     0,   115,   116,   117,   118,   119,   120,   104,         0,     0,   107,   108,   109,   110,   111,     0,   112,   104,
      105,   106,     0,     0,     0,   107,     0,     0,     0,     0,       105,   106,     0,   113,     0,   115,   116,   117,   118,   119,
        0,   112,     0,     0,     0,     0,   113,     0,   115,   116,       120,     0,   122,     0,     0,     0,     0,     0,   104,   105,
      117,   118,   119,   120,     0,     0,     0,     0,   112,     0,       106,     0,   107,   108,   109,   110,   111,     0,   112,     0,
        0,     0,     0,   113,     0,   115,   116,   117,   118,   119,         0,     0,     0,   113,     0,   115,   116,   117,   118,   119,
      120       120,   107,   108,   104,   105,   106,     0,   112,     0,     0,
          0,     0,   113,     0,   115,   116,   117,   118,   119,   120,
          0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
          0,     0,   112,     0,     0,     0,     0,   113,     0,   115,
        116,   117,   118,   119,   120
 };  };
   
 static const short yycheck[] =  static const yytype_int16 yycheck[] =
 {  {
        0,     0,     4,    67,    49,     1,    66,    15,    16,    17,         0,     0,     4,    67,    49,     1,    66,    15,    16,    17,
       55,    71,     8,    46,    47,    68,    16,    16,    68,    72,        55,    71,     8,    46,    47,    68,    16,    16,    68,    72,
       47,    21,    72,    49,    20,    21,    22,    53,    54,    55,        47,    21,    72,    49,    20,    21,    22,    53,    54,    55,
       56,    31,     2,    69,    70,    68,    36,    37,    38,    39,        56,    31,     2,    69,    70,    68,    36,    37,    38,    39,
       40,    49,    42,    51,    52,    53,    54,    55,    56,    68,        40,    49,    42,    51,    52,    53,    54,    55,    56,    68,
       68,    67,    71,    71,    46,    47,    52,    69,    70,    71,        47,    68,    68,    72,    71,    71,    52,    69,    70,    71,
       15,    16,    17,    72,    60,    74,    47,    67,    68,    69,        15,    16,    17,    68,    60,    47,    71,    67,    68,    69,
       66,    73,    49,    47,    51,    52,    53,    54,    55,    56,        66,    73,    49,    47,    51,    52,    53,    54,    55,    56,
       47,    77,    82,    38,    39,    40,    41,    57,    67,    44,        67,    77,    82,    38,    39,    40,    41,    57,    67,    44,
       65,    67,    67,    93,    49,    95,    51,    52,    53,    54,        65,    67,    67,    93,    49,    95,    51,    52,    53,    54,
       55,    56,    15,   103,   104,   105,   106,   107,   108,   109,        55,    56,    67,   103,   104,   105,   106,   107,   108,   109,
      110,   111,   112,    83,   114,   115,   116,   117,   118,   119,       110,   111,   112,    83,   114,   115,   116,   117,   118,   119,
      120,   121,   122,    67,    94,    46,    65,    67,    67,    63,       120,   121,   122,    65,    94,    67,    72,    67,    74,    46,
       64,    67,   102,     0,    67,    67,    49,    67,    51,    52,        47,    67,   102,    63,    64,    67,    46,     0,    67,    67,
       53,    54,    55,    56,     6,    67,    46,    67,    67,    65,         6,    67,    67,    67,    65,    67,    46,    23,    47,    47,
       71,    72,    73,    67,   124,    23,    18,    19,   158,    47,        15,    47,    18,    19,   124,    49,    71,    76,   158,    68,
      160,    47,    47,    71,    85,    86,    87,    49,    30,    31,       160,    71,    72,    73,    30,    31,    32,    33,    34,    35,
       32,    33,    34,    35,    36,    37,    68,    76,    67,    69,        36,    37,    67,    47,    71,    85,    86,    87,    67,    45,
       71,    47,    66,    45,    46,    47,    48,    67,    15,    16,        46,    47,    48,    68,    49,    69,    51,    52,    53,    54,
       17,    68,   188,   189,   190,    68,   196,   196,   198,   198,        55,    56,   188,   189,   190,    68,   196,   196,   198,   198,
       71,    71,    46,    68,   204,    67,   127,    68,    68,    68,        71,    67,    71,    46,   204,    15,    16,    17,    68,    68,
       67,    38,    39,    40,    59,   215,    67,    44,    68,    26,        66,    68,    59,    68,    67,   215,    67,   127,    68,    26,
      216,   142,    49,   219,    51,    52,    53,    54,    55,    56,       216,    69,    68,   219,    68,    15,    16,    17,    38,    39,
       69,    68,    68,    68,    57,    57,    68,    68,   238,    68,        40,    68,   142,    57,    44,    57,    68,    68,   238,    49,
       68,    65,    48,   277,   257,   210,    -1,   217,    -1,   249,        68,    51,    52,    53,    54,    55,    56,   217,    38,   249,
      249,   247,    -1,   253,    -1,   255,    -1,    -1,   258,    -1,       249,   247,    48,   253,    44,   255,    65,   280,   258,    49,
       -1,    -1,    -1,    -1,    15,    16,    17,    -1,    -1,    -1,       270,    51,    52,    53,    54,    55,    56,   257,    -1,   210,
      266,   271,   271,    -1,   195,    -1,   197,    15,   278,    17,       266,    -1,   272,   272,    -1,    15,    16,    17,    -1,    -1,
      201,   202,   203,    -1,    -1,    -1,    -1,    38,    39,    40,        -1,   281,    -1,    -1,    -1,   195,    -1,   197,    15,    -1,
       41,    42,    -1,    44,    -1,    -1,    -1,   218,    49,    50,        17,   201,   202,   203,    -1,    -1,    -1,    -1,    38,    39,
       51,    52,    53,    54,    55,    56,    57,    58,    -1,    -1,        40,    41,    42,    -1,    44,    -1,    -1,    -1,   218,    49,
       -1,    49,   233,    51,    52,    53,    54,    55,    56,   240,        50,    51,    52,    53,    54,    55,    56,    57,    58,    -1,
       -1,    -1,    -1,    74,     1,    -1,     3,   248,     5,     6,        -1,    -1,    49,   233,    51,    52,    53,    54,    55,    56,
        7,     8,     9,    10,    11,    12,    13,    14,    -1,    -1,       240,    -1,    -1,    -1,    74,     1,    -1,     3,   248,     5,
       -1,    18,    19,    20,    -1,    22,    23,    24,    25,    -1,  
       27,    28,    29,    30,    31,    32,    33,    34,    35,    36,  
       37,    -1,    -1,    -1,    -1,    -1,    43,    -1,    45,    46,  
       47,    48,    49,    -1,    51,    52,    -1,    -1,    -1,    -1,  
       -1,    -1,    -1,    60,    -1,    -1,    -1,    64,    65,    66,  
       67,    -1,    69,    70,    -1,     1,    73,     3,    75,     5,  
        6,     7,     8,     9,    10,    11,    12,    13,    14,    -1,         6,     7,     8,     9,    10,    11,    12,    13,    14,    -1,
       -1,    -1,    18,    19,    20,    -1,    22,    23,    24,    25,        -1,    -1,    18,    19,    20,    -1,    22,    23,    24,    25,
       -1,    27,    28,    29,    30,    31,    32,    33,    34,    35,        -1,    27,    28,    29,    30,    31,    32,    33,    34,    35,
Line 818  static const short yycheck[] =
Line 966  static const short yycheck[] =
       35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,    -1,        35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,    -1,
       45,    46,    47,    48,    49,    -1,    51,    52,    -1,    -1,        45,    46,    47,    48,    49,    -1,    51,    52,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    60,    -1,    -1,    -1,    64,        -1,    -1,    -1,    -1,    -1,    60,    -1,    -1,    -1,    64,
       65,    -1,    67,    -1,    69,    70,    -1,    -1,    73,     3,        65,    66,    67,    -1,    69,    70,    -1,     1,    73,     3,
       75,     5,     6,    -1,    -1,    -1,    -1,    -1,    -1,    -1,        75,     5,     6,     7,     8,     9,    10,    11,    12,    13,
       -1,    -1,    -1,    -1,    18,    19,    20,    -1,    -1,    -1,        14,    -1,    -1,    -1,    18,    19,    20,    -1,    22,    23,
       -1,    -1,    -1,    -1,    -1,    -1,    30,    31,    32,    33,        24,    25,    -1,    27,    28,    29,    30,    31,    32,    33,
       34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,        34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,
       -1,    45,    46,    47,    48,    49,    -1,    51,    52,    53,  
       -1,     5,     6,    -1,    -1,    -1,    60,    -1,    -1,    -1,  
       64,    -1,    -1,    67,    18,    19,    20,    -1,    -1,    73,  
       -1,    75,    -1,    -1,    -1,    -1,    30,    31,    32,    33,  
       34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,  
       -1,    45,    46,    47,    48,    49,    -1,    51,    52,    -1,        -1,    45,    46,    47,    48,    49,    -1,    51,    52,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    60,    -1,    -1,    -1,        -1,    -1,    -1,    -1,    -1,    -1,    60,    -1,    -1,    -1,
       64,     5,     6,    67,    -1,    69,    70,    -1,    -1,    73,        64,    65,    -1,    67,    -1,    69,    70,    -1,    -1,    73,
       -1,    75,    -1,    -1,    18,    19,    20,    -1,    -1,    -1,         3,    75,     5,     6,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    30,    31,    32,    33,        -1,    -1,    -1,    -1,    -1,    18,    19,    20,    -1,    -1,
       34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,        -1,    -1,    -1,    -1,    -1,    -1,    -1,    30,    31,    32,
       -1,    45,    46,    47,    48,    49,    -1,    51,    52,    53,        33,    34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,
       -1,     5,     6,    -1,    -1,    -1,    60,    -1,    -1,    -1,        43,    -1,    45,    46,    47,    48,    49,    -1,    51,    52,
       64,    -1,    -1,    67,    18,    19,    20,    -1,    -1,    73,        53,    -1,     5,     6,    -1,    -1,    -1,    60,    -1,    -1,
       -1,    75,    -1,    -1,    -1,    -1,    30,    31,    32,    33,        -1,    64,    -1,    -1,    67,    18,    19,    20,    -1,    -1,
       34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,    43,        73,    -1,    75,    -1,    -1,    -1,    -1,    30,    31,    32,
       -1,    45,    46,    47,    48,    49,    -1,    51,    52,    15,        33,    34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,
       16,    17,    -1,    -1,    -1,    -1,    60,    -1,    -1,    -1,        43,    -1,    45,    46,    47,    48,    49,    -1,    51,    52,
       64,    -1,    -1,    67,    -1,    -1,    -1,    -1,    -1,    73,        -1,    -1,    -1,    -1,    -1,    -1,    -1,    60,    -1,    -1,
       -1,    75,    38,    39,    40,    41,    42,    -1,    44,    -1,        -1,    64,     5,     6,    67,    -1,    69,    70,    -1,    -1,
       15,    16,    17,    49,    50,    51,    52,    53,    54,    55,        73,    -1,    75,    -1,    -1,    18,    19,    20,    -1,    -1,
       56,    57,    58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,        -1,    -1,    -1,    -1,    -1,    -1,    -1,    30,    31,    32,
       -1,    -1,    -1,    38,    39,    40,    41,    42,    74,    44,        33,    34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    49,    50,    51,    52,    53,    54,        43,    -1,    45,    46,    47,    48,    49,    -1,    51,    52,
       55,    56,    57,    58,    15,    16,    17,    -1,    -1,    -1,        53,    -1,     5,     6,    -1,    -1,    -1,    60,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    71,    -1,    -1,    -1,        -1,    64,    -1,    -1,    67,    18,    19,    20,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    38,    39,    40,        73,    -1,    75,    -1,    -1,    -1,    -1,    30,    31,    32,
       41,    42,    -1,    44,    -1,    -1,    -1,    -1,    49,    50,        33,    34,    35,    36,    37,    -1,    -1,    -1,    -1,    -1,
       51,    52,    53,    54,    55,    56,    57,    58,    15,    16,        43,    -1,    45,    46,    47,    48,    49,    -1,    51,    52,
       17,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,        15,    16,    17,    -1,    -1,    -1,    -1,    60,    -1,    -1,
       71,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,        -1,    64,    -1,    -1,    67,    -1,    -1,    -1,    -1,    -1,
       -1,    38,    39,    40,    41,    42,    -1,    44,    -1,    -1,        73,    -1,    75,    38,    39,    40,    41,    42,    -1,    44,
       -1,    -1,    49,    50,    51,    52,    53,    54,    55,    56,        -1,    15,    16,    17,    49,    50,    51,    52,    53,    54,
       57,    58,    15,    16,    17,    -1,    -1,    -1,    -1,    -1,        55,    56,    57,    58,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    69,    70,    -1,    -1,    -1,    -1,    -1,    -1,        -1,    -1,    -1,    -1,    38,    39,    40,    41,    42,    74,
       -1,    -1,    -1,    -1,    -1,    38,    39,    40,    41,    42,        44,    -1,    -1,    -1,    -1,    49,    50,    51,    52,    53,
       -1,    44,    -1,    15,    16,    17,    49,    50,    51,    52,        54,    55,    56,    57,    58,    15,    16,    17,    -1,    -1,
       53,    54,    55,    56,    57,    58,    -1,    -1,    -1,    -1,        -1,    -1,    -1,    -1,    -1,    -1,    -1,    71,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    68,    38,    39,    40,    41,        -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    38,    39,
         40,    41,    42,    -1,    44,    -1,    -1,    -1,    -1,    49,
         50,    51,    52,    53,    54,    55,    56,    57,    58,    15,
         16,    17,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
         -1,    71,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
         -1,    -1,    38,    39,    40,    41,    42,    -1,    44,    -1,
         -1,    -1,    -1,    49,    50,    51,    52,    53,    54,    55,
         56,    57,    58,    15,    16,    17,    -1,    -1,    -1,    -1,
         -1,    -1,    -1,    69,    70,    -1,    -1,    -1,    -1,    -1,
         -1,    -1,    -1,    -1,    -1,    -1,    38,    39,    40,    41,
       42,    -1,    44,    -1,    15,    16,    17,    49,    50,    51,        42,    -1,    44,    -1,    15,    16,    17,    49,    50,    51,
       52,    53,    54,    55,    56,    57,    58,    -1,    -1,    -1,        52,    53,    54,    55,    56,    57,    58,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    68,    38,    39,    40,        -1,    -1,    -1,    -1,    -1,    -1,    68,    38,    39,    40,
Line 877  static const short yycheck[] =
Line 1029  static const short yycheck[] =
       38,    39,    40,    41,    42,    -1,    44,    -1,    15,    16,        38,    39,    40,    41,    42,    -1,    44,    -1,    15,    16,
       17,    49,    50,    51,    52,    53,    54,    55,    56,    57,        17,    49,    50,    51,    52,    53,    54,    55,    56,    57,
       58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,        58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       68,    38,    39,    40,    41,    42,    -1,    44,    15,    16,        68,    38,    39,    40,    41,    42,    -1,    44,    -1,    15,
       17,    -1,    49,    50,    51,    52,    53,    54,    55,    56,        16,    17,    49,    50,    51,    52,    53,    54,    55,    56,
       57,    58,    59,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  
       -1,    38,    39,    40,    41,    42,    -1,    44,    15,    16,  
       17,    -1,    49,    50,    51,    52,    53,    54,    55,    56,  
       57,    58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,        57,    58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    38,    39,    40,    41,    42,    -1,    44,    15,    16,        -1,    68,    38,    39,    40,    41,    42,    -1,    44,    15,
       17,    -1,    49,    -1,    51,    52,    53,    54,    55,    56,        16,    17,    -1,    49,    50,    51,    52,    53,    54,    55,
       -1,    58,    -1,    -1,    -1,    -1,    -1,    15,    16,    17,        56,    57,    58,    59,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    38,    39,    40,    41,    42,    -1,    44,    -1,    -1,        -1,    -1,    38,    39,    40,    41,    42,    -1,    44,    15,
       -1,    -1,    49,    -1,    51,    52,    53,    54,    55,    56,        16,    17,    -1,    49,    50,    51,    52,    53,    54,    55,
       38,    39,    15,    16,    17,    -1,    44,    -1,    -1,    -1,        56,    57,    58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    49,    -1,    51,    52,    53,    54,    55,    56,    15,        -1,    -1,    38,    39,    40,    41,    42,    -1,    44,    15,
       16,    17,    -1,    -1,    -1,    38,    -1,    -1,    -1,    -1,        16,    17,    -1,    49,    -1,    51,    52,    53,    54,    55,
       -1,    44,    -1,    -1,    -1,    -1,    49,    -1,    51,    52,        56,    -1,    58,    -1,    -1,    -1,    -1,    -1,    15,    16,
       53,    54,    55,    56,    -1,    -1,    -1,    -1,    44,    -1,        17,    -1,    38,    39,    40,    41,    42,    -1,    44,    -1,
       -1,    -1,    -1,    49,    -1,    51,    52,    53,    54,    55,        -1,    -1,    -1,    49,    -1,    51,    52,    53,    54,    55,
       56        56,    38,    39,    15,    16,    17,    -1,    44,    -1,    -1,
         -1,    -1,    49,    -1,    51,    52,    53,    54,    55,    56,
         -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
         -1,    -1,    44,    -1,    -1,    -1,    -1,    49,    -1,    51,
         52,    53,    54,    55,    56
 };  };
   
 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing  /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
    symbol of state STATE-NUM.  */     symbol of state STATE-NUM.  */
 static const unsigned char yystos[] =  static const yytype_uint8 yystos[] =
 {  {
        0,     1,     3,     5,     6,     7,     8,     9,    10,    11,         0,     1,     3,     5,     6,     7,     8,     9,    10,    11,
       12,    13,    14,    18,    19,    20,    22,    23,    24,    25,        12,    13,    14,    18,    19,    20,    22,    23,    24,    25,
Line 928  static const unsigned char yystos[] =
Line 1081  static const unsigned char yystos[] =
       67,    74,   102,    89,    99,    96,    89,    68,    69,    26,        67,    74,   102,    89,    99,    96,    89,    68,    69,    26,
       68,    68,    68,    71,    96,    57,    68,    71,    57,    96,        68,    68,    68,    71,    96,    57,    68,    71,    57,    96,
       88,    89,    96,    79,   102,    68,   102,   100,   102,    68,        88,    89,    96,    79,   102,    68,   102,   100,   102,    68,
       68,    68,    68,    89,    48,    90,    79,    65,    95,    66        72,    68,    68,    68,    89,    98,    48,    90,    79,    68,
         65,    95,    66
 };  };
   
 #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)  
 # define YYSIZE_T __SIZE_TYPE__  
 #endif  
 #if ! defined (YYSIZE_T) && defined (size_t)  
 # define YYSIZE_T size_t  
 #endif  
 #if ! defined (YYSIZE_T)  
 # if defined (__STDC__) || defined (__cplusplus)  
 #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */  
 #  define YYSIZE_T size_t  
 # endif  
 #endif  
 #if ! defined (YYSIZE_T)  
 # define YYSIZE_T unsigned int  
 #endif  
   
 #define yyerrok         (yyerrstatus = 0)  #define yyerrok         (yyerrstatus = 0)
 #define yyclearin       (yychar = YYEMPTY)  #define yyclearin       (yychar = YYEMPTY)
 #define YYEMPTY         (-2)  #define YYEMPTY         (-2)
Line 954  static const unsigned char yystos[] =
Line 1092  static const unsigned char yystos[] =
   
 #define YYACCEPT        goto yyacceptlab  #define YYACCEPT        goto yyacceptlab
 #define YYABORT         goto yyabortlab  #define YYABORT         goto yyabortlab
 #define YYERROR         goto yyerrlab1  #define YYERROR         goto yyerrorlab
   
   
 /* Like YYERROR except do call yyerror.  This remains here temporarily  /* Like YYERROR except do call yyerror.  This remains here temporarily
Line 972  do        \
Line 1110  do        \
       yychar = (Token);                                         \        yychar = (Token);                                         \
       yylval = (Value);                                         \        yylval = (Value);                                         \
       yytoken = YYTRANSLATE (yychar);                           \        yytoken = YYTRANSLATE (yychar);                           \
       YYPOPSTACK;                                               \        YYPOPSTACK (1);                                           \
       goto yybackup;                                            \        goto yybackup;                                            \
     }                                                           \      }                                                           \
   else                                                          \    else                                                          \
     {                                                           \      {                                                           \
       yyerror ("syntax error: cannot back up");\        yyerror (YY_("syntax error: cannot back up")); \
       YYERROR;                                                  \        YYERROR;                                                  \
     }                                                           \      }                                                           \
 while (0)  while (YYID (0))
   
   
 #define YYTERROR        1  #define YYTERROR        1
 #define YYERRCODE       256  #define YYERRCODE       256
   
 /* YYLLOC_DEFAULT -- Compute the default location (before the actions  
    are run).  */  
   
   /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
      If N is 0, then set CURRENT to the empty location which ends
      the previous symbol: RHS[0] (always defined).  */
   
   #define YYRHSLOC(Rhs, K) ((Rhs)[K])
 #ifndef YYLLOC_DEFAULT  #ifndef YYLLOC_DEFAULT
 # define YYLLOC_DEFAULT(Current, Rhs, N)         \  # define YYLLOC_DEFAULT(Current, Rhs, N)                                \
   Current.first_line   = Rhs[1].first_line;      \      do                                                                  \
   Current.first_column = Rhs[1].first_column;    \        if (YYID (N))                                                    \
   Current.last_line    = Rhs[N].last_line;       \          {                                                               \
   Current.last_column  = Rhs[N].last_column;            (Current).first_line   = YYRHSLOC (Rhs, 1).first_line;        \
             (Current).first_column = YYRHSLOC (Rhs, 1).first_column;      \
             (Current).last_line    = YYRHSLOC (Rhs, N).last_line;         \
             (Current).last_column  = YYRHSLOC (Rhs, N).last_column;       \
           }                                                               \
         else                                                              \
           {                                                               \
             (Current).first_line   = (Current).last_line   =              \
               YYRHSLOC (Rhs, 0).last_line;                                \
             (Current).first_column = (Current).last_column =              \
               YYRHSLOC (Rhs, 0).last_column;                              \
           }                                                               \
       while (YYID (0))
 #endif  #endif
   
   
   /* YY_LOCATION_PRINT -- Print the location on the stream.
      This macro was not mandated originally: define only if we know
      we won't break user code: when these are the locations we know.  */
   
   #ifndef YY_LOCATION_PRINT
   # if YYLTYPE_IS_TRIVIAL
   #  define YY_LOCATION_PRINT(File, Loc)                  \
        fprintf (File, "%d.%d-%d.%d",                      \
                 (Loc).first_line, (Loc).first_column,     \
                 (Loc).last_line,  (Loc).last_column)
   # else
   #  define YY_LOCATION_PRINT(File, Loc) ((void) 0)
   # endif
   #endif
   
   
 /* YYLEX -- calling `yylex' with the right arguments.  */  /* YYLEX -- calling `yylex' with the right arguments.  */
   
 #ifdef YYLEX_PARAM  #ifdef YYLEX_PARAM
Line 1016  while (0)
Line 1187  while (0)
 do {                                            \  do {                                            \
   if (yydebug)                                  \    if (yydebug)                                  \
     YYFPRINTF Args;                             \      YYFPRINTF Args;                             \
 } while (0)  } while (YYID (0))
   
 # define YYDSYMPRINT(Args)                      \  # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                    \
 do {                                            \  do {                                                                      \
   if (yydebug)                                  \    if (yydebug)                                                            \
     yysymprint Args;                            \      {                                                                     \
 } while (0)        YYFPRINTF (stderr, "%s ", Title);                                   \
         yy_symbol_print (stderr,                                            \
                     Type, Value); \
         YYFPRINTF (stderr, "\n");                                           \
       }                                                                     \
   } while (YYID (0))
   
 # define YYDSYMPRINTF(Title, Token, Value, Location)            \  
 do {                                                            \  
   if (yydebug)                                                  \  
     {                                                           \  
       YYFPRINTF (stderr, "%s ", Title);                         \  
       yysymprint (stderr,                                       \  
                   Token, Value);        \  
       YYFPRINTF (stderr, "\n");                                 \  
     }                                                           \  
 } while (0)  
   
   /*--------------------------------.
   | Print this symbol on YYOUTPUT.  |
   `--------------------------------*/
   
   /*ARGSUSED*/
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   static void
   yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
   #else
   static void
   yy_symbol_value_print (yyoutput, yytype, yyvaluep)
       FILE *yyoutput;
       int yytype;
       YYSTYPE const * const yyvaluep;
   #endif
   {
     if (!yyvaluep)
       return;
   # ifdef YYPRINT
     if (yytype < YYNTOKENS)
       YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
   # else
     YYUSE (yyoutput);
   # endif
     switch (yytype)
       {
         default:
           break;
       }
   }
   
   
   /*--------------------------------.
   | Print this symbol on YYOUTPUT.  |
   `--------------------------------*/
   
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   static void
   yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
   #else
   static void
   yy_symbol_print (yyoutput, yytype, yyvaluep)
       FILE *yyoutput;
       int yytype;
       YYSTYPE const * const yyvaluep;
   #endif
   {
     if (yytype < YYNTOKENS)
       YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
     else
       YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
   
     yy_symbol_value_print (yyoutput, yytype, yyvaluep);
     YYFPRINTF (yyoutput, ")");
   }
   
 /*------------------------------------------------------------------.  /*------------------------------------------------------------------.
 | yy_stack_print -- Print the state stack from its BOTTOM up to its |  | yy_stack_print -- Print the state stack from its BOTTOM up to its |
 | TOP (cinluded).                                                   |  | TOP (included).                                                   |
 `------------------------------------------------------------------*/  `------------------------------------------------------------------*/
   
 #if defined (__STDC__) || defined (__cplusplus)  #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static void  static void
 yy_stack_print (short *bottom, short *top)  yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
 #else  #else
 static void  static void
 yy_stack_print (bottom, top)  yy_stack_print (yybottom, yytop)
     short *bottom;      yytype_int16 *yybottom;
     short *top;      yytype_int16 *yytop;
 #endif  #endif
 {  {
   YYFPRINTF (stderr, "Stack now");    YYFPRINTF (stderr, "Stack now");
   for (/* Nothing. */; bottom <= top; ++bottom)    for (; yybottom <= yytop; yybottom++)
     YYFPRINTF (stderr, " %d", *bottom);      {
         int yybot = *yybottom;
         YYFPRINTF (stderr, " %d", yybot);
       }
   YYFPRINTF (stderr, "\n");    YYFPRINTF (stderr, "\n");
 }  }
   
Line 1060  yy_stack_print (bottom, top)
Line 1288  yy_stack_print (bottom, top)
 do {                                                            \  do {                                                            \
   if (yydebug)                                                  \    if (yydebug)                                                  \
     yy_stack_print ((Bottom), (Top));                           \      yy_stack_print ((Bottom), (Top));                           \
 } while (0)  } while (YYID (0))
   
   
 /*------------------------------------------------.  /*------------------------------------------------.
 | Report that the YYRULE is going to be reduced.  |  | Report that the YYRULE is going to be reduced.  |
 `------------------------------------------------*/  `------------------------------------------------*/
   
 #if defined (__STDC__) || defined (__cplusplus)  #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static void  static void
 yy_reduce_print (int yyrule)  yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
 #else  #else
 static void  static void
 yy_reduce_print (yyrule)  yy_reduce_print (yyvsp, yyrule)
       YYSTYPE *yyvsp;
     int yyrule;      int yyrule;
 #endif  #endif
 {  {
     int yynrhs = yyr2[yyrule];
   int yyi;    int yyi;
   unsigned int yylno = yyrline[yyrule];    unsigned long int yylno = yyrline[yyrule];
   YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",    YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
              yyrule - 1, yylno);               yyrule - 1, yylno);
   /* Print the symbols being reduced, and their result.  */    /* The symbols being reduced.  */
   for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)    for (yyi = 0; yyi < yynrhs; yyi++)
     YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);      {
   YYFPRINTF (stderr, "-> %s\n", yytname [yyr1[yyrule]]);        YYFPRINTF (stderr, "   $%d = ", yyi + 1);
         yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
                          &(yyvsp[(yyi + 1) - (yynrhs)])
                                          );
         YYFPRINTF (stderr, "\n");
       }
 }  }
   
 # define YY_REDUCE_PRINT(Rule)          \  # define YY_REDUCE_PRINT(Rule)          \
 do {                                    \  do {                                    \
   if (yydebug)                          \    if (yydebug)                          \
     yy_reduce_print (Rule);             \      yy_reduce_print (yyvsp, Rule); \
 } while (0)  } while (YYID (0))
   
 /* Nonzero means print parse trace.  It is left uninitialized so that  /* Nonzero means print parse trace.  It is left uninitialized so that
    multiple parsers can coexist.  */     multiple parsers can coexist.  */
 int yydebug;  int yydebug;
 #else /* !YYDEBUG */  #else /* !YYDEBUG */
 # define YYDPRINTF(Args)  # define YYDPRINTF(Args)
 # define YYDSYMPRINT(Args)  # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
 # define YYDSYMPRINTF(Title, Token, Value, Location)  
 # define YY_STACK_PRINT(Bottom, Top)  # define YY_STACK_PRINT(Bottom, Top)
 # define YY_REDUCE_PRINT(Rule)  # define YY_REDUCE_PRINT(Rule)
 #endif /* !YYDEBUG */  #endif /* !YYDEBUG */
Line 1113  int yydebug;
Line 1348  int yydebug;
    if the built-in stack extension method is used).     if the built-in stack extension method is used).
   
    Do not make this value too large; the results are undefined if     Do not make this value too large; the results are undefined if
    SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)     YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
    evaluated with infinite-precision integer arithmetic.  */     evaluated with infinite-precision integer arithmetic.  */
   
 #if YYMAXDEPTH == 0  
 # undef YYMAXDEPTH  
 #endif  
   
 #ifndef YYMAXDEPTH  #ifndef YYMAXDEPTH
 # define YYMAXDEPTH 10000  # define YYMAXDEPTH 10000
 #endif  #endif
Line 1129  int yydebug;
Line 1360  int yydebug;
 #if YYERROR_VERBOSE  #if YYERROR_VERBOSE
   
 # ifndef yystrlen  # ifndef yystrlen
 #  if defined (__GLIBC__) && defined (_STRING_H)  #  if defined __GLIBC__ && defined _STRING_H
 #   define yystrlen strlen  #   define yystrlen strlen
 #  else  #  else
 /* Return the length of YYSTR.  */  /* Return the length of YYSTR.  */
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static YYSIZE_T  static YYSIZE_T
 #   if defined (__STDC__) || defined (__cplusplus)  
 yystrlen (const char *yystr)  yystrlen (const char *yystr)
 #   else  #else
   static YYSIZE_T
 yystrlen (yystr)  yystrlen (yystr)
      const char *yystr;      const char *yystr;
 #   endif  #endif
 {  {
   register const char *yys = yystr;    YYSIZE_T yylen;
     for (yylen = 0; yystr[yylen]; yylen++)
   while (*yys++ != '\0')  
     continue;      continue;
     return yylen;
   return yys - yystr - 1;  
 }  }
 #  endif  #  endif
 # endif  # endif
   
 # ifndef yystpcpy  # ifndef yystpcpy
 #  if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)  #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
 #   define yystpcpy stpcpy  #   define yystpcpy stpcpy
 #  else  #  else
 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in  /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
    YYDEST.  */     YYDEST.  */
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static char *  static char *
 #   if defined (__STDC__) || defined (__cplusplus)  
 yystpcpy (char *yydest, const char *yysrc)  yystpcpy (char *yydest, const char *yysrc)
 #   else  #else
   static char *
 yystpcpy (yydest, yysrc)  yystpcpy (yydest, yysrc)
      char *yydest;      char *yydest;
      const char *yysrc;      const char *yysrc;
 #   endif  #endif
 {  {
   register char *yyd = yydest;    char *yyd = yydest;
   register const char *yys = yysrc;    const char *yys = yysrc;
   
   while ((*yyd++ = *yys++) != '\0')    while ((*yyd++ = *yys++) != '\0')
     continue;      continue;
Line 1177  yystpcpy (yydest, yysrc)
Line 1410  yystpcpy (yydest, yysrc)
 #  endif  #  endif
 # endif  # endif
   
 #endif /* !YYERROR_VERBOSE */  # ifndef yytnamerr
   /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
      quotes and backslashes, so that it's suitable for yyerror.  The
      heuristic is that double-quoting is unnecessary unless the string
      contains an apostrophe, a comma, or backslash (other than
      backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
      null, do not copy; instead, return the length of what the result
      would have been.  */
   static YYSIZE_T
   yytnamerr (char *yyres, const char *yystr)
   {
     if (*yystr == '"')
       {
         YYSIZE_T yyn = 0;
         char const *yyp = yystr;
   
         for (;;)
           switch (*++yyp)
             {
             case '\'':
             case ',':
               goto do_not_strip_quotes;
   
 #if YYDEBUG            case '\\':
 /*--------------------------------.              if (*++yyp != '\\')
 | Print this symbol on YYOUTPUT.  |                goto do_not_strip_quotes;
 `--------------------------------*/              /* Fall through.  */
             default:
               if (yyres)
                 yyres[yyn] = *yyp;
               yyn++;
               break;
   
 #if defined (__STDC__) || defined (__cplusplus)            case '"':
 static void              if (yyres)
 yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep)                yyres[yyn] = '\0';
 #else              return yyn;
 static void            }
 yysymprint (yyoutput, yytype, yyvaluep)      do_not_strip_quotes: ;
     FILE *yyoutput;      }
     int yytype;  
     YYSTYPE *yyvaluep;    if (! yyres)
 #endif      return yystrlen (yystr);
   
     return yystpcpy (yyres, yystr) - yyres;
   }
   # endif
   
   /* Copy into YYRESULT an error message about the unexpected token
      YYCHAR while in state YYSTATE.  Return the number of bytes copied,
      including the terminating null byte.  If YYRESULT is null, do not
      copy anything; just return the number of bytes that would be
      copied.  As a special case, return 0 if an ordinary "syntax error"
      message will do.  Return YYSIZE_MAXIMUM if overflow occurs during
      size calculation.  */
   static YYSIZE_T
   yysyntax_error (char *yyresult, int yystate, int yychar)
 {  {
   /* Pacify ``unused variable'' warnings.  */    int yyn = yypact[yystate];
   (void) yyvaluep;  
   
   if (yytype < YYNTOKENS)    if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
       return 0;
     else
     {      {
       YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);        int yytype = YYTRANSLATE (yychar);
 # ifdef YYPRINT        YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
       YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);        YYSIZE_T yysize = yysize0;
         YYSIZE_T yysize1;
         int yysize_overflow = 0;
         enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
         char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
         int yyx;
   
   # if 0
         /* This is so xgettext sees the translatable formats that are
            constructed on the fly.  */
         YY_("syntax error, unexpected %s");
         YY_("syntax error, unexpected %s, expecting %s");
         YY_("syntax error, unexpected %s, expecting %s or %s");
         YY_("syntax error, unexpected %s, expecting %s or %s or %s");
         YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
 # endif  # endif
     }        char *yyfmt;
   else        char const *yyf;
     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);        static char const yyunexpected[] = "syntax error, unexpected %s";
         static char const yyexpecting[] = ", expecting %s";
         static char const yyor[] = " or %s";
         char yyformat[sizeof yyunexpected
                       + sizeof yyexpecting - 1
                       + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
                          * (sizeof yyor - 1))];
         char const *yyprefix = yyexpecting;
   
   switch (yytype)        /* Start YYX at -YYN if negative to avoid negative indexes in
     {           YYCHECK.  */
       default:        int yyxbegin = yyn < 0 ? -yyn : 0;
         break;  
         /* Stay within bounds of both yycheck and yytname.  */
         int yychecklim = YYLAST - yyn + 1;
         int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
         int yycount = 1;
   
         yyarg[0] = yytname[yytype];
         yyfmt = yystpcpy (yyformat, yyunexpected);
   
         for (yyx = yyxbegin; yyx < yyxend; ++yyx)
           if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
             {
               if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
                 {
                   yycount = 1;
                   yysize = yysize0;
                   yyformat[sizeof yyunexpected - 1] = '\0';
                   break;
                 }
               yyarg[yycount++] = yytname[yyx];
               yysize1 = yysize + yytnamerr (0, yytname[yyx]);
               yysize_overflow |= (yysize1 < yysize);
               yysize = yysize1;
               yyfmt = yystpcpy (yyfmt, yyprefix);
               yyprefix = yyor;
             }
   
         yyf = YY_(yyformat);
         yysize1 = yysize + yystrlen (yyf);
         yysize_overflow |= (yysize1 < yysize);
         yysize = yysize1;
   
         if (yysize_overflow)
           return YYSIZE_MAXIMUM;
   
         if (yyresult)
           {
             /* Avoid sprintf, as that infringes on the user's name space.
                Don't have undefined behavior even if the translation
                produced a string with the wrong number of "%s"s.  */
             char *yyp = yyresult;
             int yyi = 0;
             while ((*yyp = *yyf) != '\0')
               {
                 if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
                   {
                     yyp += yytnamerr (yyp, yyarg[yyi++]);
                     yyf += 2;
                   }
                 else
                   {
                     yyp++;
                     yyf++;
                   }
               }
           }
         return yysize;
     }      }
   YYFPRINTF (yyoutput, ")");  
 }  }
   #endif /* YYERROR_VERBOSE */
   
   
 #endif /* ! YYDEBUG */  
 /*-----------------------------------------------.  /*-----------------------------------------------.
 | Release the memory associated to this symbol.  |  | Release the memory associated to this symbol.  |
 `-----------------------------------------------*/  `-----------------------------------------------*/
   
 #if defined (__STDC__) || defined (__cplusplus)  /*ARGSUSED*/
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static void  static void
 yydestruct (int yytype, YYSTYPE *yyvaluep)  yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
 #else  #else
 static void  static void
 yydestruct (yytype, yyvaluep)  yydestruct (yymsg, yytype, yyvaluep)
       const char *yymsg;
     int yytype;      int yytype;
     YYSTYPE *yyvaluep;      YYSTYPE *yyvaluep;
 #endif  #endif
 {  {
   /* Pacify ``unused variable'' warnings.  */    YYUSE (yyvaluep);
   (void) yyvaluep;  
   
     if (!yymsg)
       yymsg = "Deleting";
     YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
   
   switch (yytype)    switch (yytype)
     {      {
   
       default:        default:
         break;          break;
     }      }
 }  }
   
   
 /* Prevent warnings from -Wmissing-prototypes.  */  /* Prevent warnings from -Wmissing-prototypes.  */
   
 #ifdef YYPARSE_PARAM  #ifdef YYPARSE_PARAM
 # if defined (__STDC__) || defined (__cplusplus)  #if defined __STDC__ || defined __cplusplus
 int yyparse (void *YYPARSE_PARAM);  int yyparse (void *YYPARSE_PARAM);
 # else  #else
 int yyparse ();  int yyparse ();
 # endif  #endif
 #else /* ! YYPARSE_PARAM */  #else /* ! YYPARSE_PARAM */
 #if defined (__STDC__) || defined (__cplusplus)  #if defined __STDC__ || defined __cplusplus
 int yyparse (void);  int yyparse (void);
 #else  #else
 int yyparse ();  int yyparse ();
Line 1262  int yyparse ();
Line 1615  int yyparse ();
 #endif /* ! YYPARSE_PARAM */  #endif /* ! YYPARSE_PARAM */
   
   
   
 /* The lookahead symbol.  */  /* The lookahead symbol.  */
 int yychar;  int yychar;
   
Line 1274  int yynerrs;
Line 1626  int yynerrs;
   
   
   
 /*----------.  /*-------------------------.
 | yyparse.  |  | yyparse or yypush_parse.  |
 `----------*/  `-------------------------*/
   
 #ifdef YYPARSE_PARAM  #ifdef YYPARSE_PARAM
 # if defined (__STDC__) || defined (__cplusplus)  #if (defined __STDC__ || defined __C99__FUNC__ \
 int yyparse (void *YYPARSE_PARAM)       || defined __cplusplus || defined _MSC_VER)
 # else  int
 int yyparse (YYPARSE_PARAM)  yyparse (void *YYPARSE_PARAM)
   void *YYPARSE_PARAM;  #else
 # endif  int
   yyparse (YYPARSE_PARAM)
       void *YYPARSE_PARAM;
   #endif
 #else /* ! YYPARSE_PARAM */  #else /* ! YYPARSE_PARAM */
 #if defined (__STDC__) || defined (__cplusplus)  #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 int  int
 yyparse (void)  yyparse (void)
 #else  #else
Line 1296  yyparse ()
Line 1652  yyparse ()
 #endif  #endif
 #endif  #endif
 {  {
   
   register int yystate;  
   register int yyn;  
   int yyresult;  
   /* Number of tokens to shift before error messages enabled.  */  
   int yyerrstatus;  
   /* Lookahead token as an internal (translated) token number.  */  
   int yytoken = 0;  
   
   /* Three stacks and their tools:  
      `yyss': related to states,  
      `yyvs': related to semantic values,  
      `yyls': related to locations.  
   
      Refer to the stacks thru separate pointers, to allow yyoverflow      int yystate;
      to reallocate them elsewhere.  */      /* Number of tokens to shift before error messages enabled.  */
       int yyerrstatus;
   
   /* The state stack.  */      /* The stacks and their tools:
   short yyssa[YYINITDEPTH];         `yyss': related to states.
   short *yyss = yyssa;         `yyvs': related to semantic values.
   register short *yyssp;  
   
   /* The semantic value stack.  */         Refer to the stacks thru separate pointers, to allow yyoverflow
   YYSTYPE yyvsa[YYINITDEPTH];         to reallocate them elsewhere.  */
   YYSTYPE *yyvs = yyvsa;  
   register YYSTYPE *yyvsp;  
   
       /* The state stack.  */
       yytype_int16 yyssa[YYINITDEPTH];
       yytype_int16 *yyss;
       yytype_int16 *yyssp;
   
       /* The semantic value stack.  */
       YYSTYPE yyvsa[YYINITDEPTH];
       YYSTYPE *yyvs;
       YYSTYPE *yyvsp;
   
 #define YYPOPSTACK   (yyvsp--, yyssp--)      YYSIZE_T yystacksize;
   
   YYSIZE_T yystacksize = YYINITDEPTH;    int yyn;
     int yyresult;
     /* Lookahead token as an internal (translated) token number.  */
     int yytoken;
   /* The variables used to return semantic value and location from the    /* The variables used to return semantic value and location from the
      action routines.  */       action routines.  */
   YYSTYPE yyval;    YYSTYPE yyval;
   
   #if YYERROR_VERBOSE
     /* Buffer for error messages, and its allocated size.  */
     char yymsgbuf[128];
     char *yymsg = yymsgbuf;
     YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
   #endif
   
   /* When reducing, the number of symbols on the RHS of the reduced  #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))
      rule.  */  
   int yylen;  
   
     /* The number of symbols on the RHS of the reduced rule.
        Keep to zero when no symbol should be popped.  */
     int yylen = 0;
   
     yytoken = 0;
     yyss = yyssa;
     yyvs = yyvsa;
     yystacksize = YYINITDEPTH;
   
   YYDPRINTF ((stderr, "Starting parse\n"));    YYDPRINTF ((stderr, "Starting parse\n"));
   
   yystate = 0;    yystate = 0;
   yyerrstatus = 0;    yyerrstatus = 0;
   yynerrs = 0;    yynerrs = 0;
   yychar = YYEMPTY;             /* Cause a token to be read.  */    yychar = YYEMPTY; /* Cause a token to be read.  */
   
   /* Initialize stack pointers.    /* Initialize stack pointers.
      Waste one element of value and location stack       Waste one element of value and location stack
      so that they stay on the same level as the state stack.       so that they stay on the same level as the state stack.
      The wasted elements are never initialized.  */       The wasted elements are never initialized.  */
   
   yyssp = yyss;    yyssp = yyss;
   yyvsp = yyvs;    yyvsp = yyvs;
   
Line 1360  yyparse ()
Line 1724  yyparse ()
 `------------------------------------------------------------*/  `------------------------------------------------------------*/
  yynewstate:   yynewstate:
   /* In all cases, when you get here, the value and location stacks    /* In all cases, when you get here, the value and location stacks
      have just been pushed. so pushing a state here evens the stacks.       have just been pushed.  So pushing a state here evens the stacks.  */
      */  
   yyssp++;    yyssp++;
   
  yysetstate:   yysetstate:
Line 1374  yyparse ()
Line 1737  yyparse ()
   
 #ifdef yyoverflow  #ifdef yyoverflow
       {        {
         /* Give user a chance to reallocate the stack. Use copies of          /* Give user a chance to reallocate the stack.  Use copies of
            these so that the &'s don't force the real ones into             these so that the &'s don't force the real ones into
            memory.  */             memory.  */
         YYSTYPE *yyvs1 = yyvs;          YYSTYPE *yyvs1 = yyvs;
         short *yyss1 = yyss;          yytype_int16 *yyss1 = yyss;
   
   
         /* Each stack pointer address is followed by the size of the          /* Each stack pointer address is followed by the size of the
            data in use in that stack, in bytes.  This used to be a             data in use in that stack, in bytes.  This used to be a
            conditional around just the two extra args, but that might             conditional around just the two extra args, but that might
            be undefined if yyoverflow is a macro.  */             be undefined if yyoverflow is a macro.  */
         yyoverflow ("parser stack overflow",          yyoverflow (YY_("memory exhausted"),
                     &yyss1, yysize * sizeof (*yyssp),                      &yyss1, yysize * sizeof (*yyssp),
                     &yyvs1, yysize * sizeof (*yyvsp),                      &yyvs1, yysize * sizeof (*yyvsp),
   
                     &yystacksize);                      &yystacksize);
   
         yyss = yyss1;          yyss = yyss1;
Line 1396  yyparse ()
Line 1757  yyparse ()
       }        }
 #else /* no yyoverflow */  #else /* no yyoverflow */
 # ifndef YYSTACK_RELOCATE  # ifndef YYSTACK_RELOCATE
       goto yyoverflowlab;        goto yyexhaustedlab;
 # else  # else
       /* Extend the stack our own way.  */        /* Extend the stack our own way.  */
       if (YYMAXDEPTH <= yystacksize)        if (YYMAXDEPTH <= yystacksize)
         goto yyoverflowlab;          goto yyexhaustedlab;
       yystacksize *= 2;        yystacksize *= 2;
       if (YYMAXDEPTH < yystacksize)        if (YYMAXDEPTH < yystacksize)
         yystacksize = YYMAXDEPTH;          yystacksize = YYMAXDEPTH;
   
       {        {
         short *yyss1 = yyss;          yytype_int16 *yyss1 = yyss;
         union yyalloc *yyptr =          union yyalloc *yyptr =
           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));            (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
         if (! yyptr)          if (! yyptr)
           goto yyoverflowlab;            goto yyexhaustedlab;
         YYSTACK_RELOCATE (yyss);          YYSTACK_RELOCATE (yyss_alloc, yyss);
         YYSTACK_RELOCATE (yyvs);          YYSTACK_RELOCATE (yyvs_alloc, yyvs);
   
 #  undef YYSTACK_RELOCATE  #  undef YYSTACK_RELOCATE
         if (yyss1 != yyssa)          if (yyss1 != yyssa)
           YYSTACK_FREE (yyss1);            YYSTACK_FREE (yyss1);
Line 1424  yyparse ()
Line 1784  yyparse ()
       yyssp = yyss + yysize - 1;        yyssp = yyss + yysize - 1;
       yyvsp = yyvs + yysize - 1;        yyvsp = yyvs + yysize - 1;
   
   
       YYDPRINTF ((stderr, "Stack size increased to %lu\n",        YYDPRINTF ((stderr, "Stack size increased to %lu\n",
                   (unsigned long int) yystacksize));                    (unsigned long int) yystacksize));
   
Line 1434  yyparse ()
Line 1793  yyparse ()
   
   YYDPRINTF ((stderr, "Entering state %d\n", yystate));    YYDPRINTF ((stderr, "Entering state %d\n", yystate));
   
     if (yystate == YYFINAL)
       YYACCEPT;
   
   goto yybackup;    goto yybackup;
   
 /*-----------.  /*-----------.
Line 1441  yyparse ()
Line 1803  yyparse ()
 `-----------*/  `-----------*/
 yybackup:  yybackup:
   
 /* Do appropriate processing given the current state.  */    /* Do appropriate processing given the current state.  Read a
 /* Read a lookahead token if we need one and don't already have one.  */       lookahead token if we need one and don't already have one.  */
 /* yyresume: */  
   
   /* First try to decide what to do without reference to lookahead token.  */    /* First try to decide what to do without reference to lookahead token.  */
   
   yyn = yypact[yystate];    yyn = yypact[yystate];
   if (yyn == YYPACT_NINF)    if (yyn == YYPACT_NINF)
     goto yydefault;      goto yydefault;
Line 1468  yybackup:
Line 1828  yybackup:
   else    else
     {      {
       yytoken = YYTRANSLATE (yychar);        yytoken = YYTRANSLATE (yychar);
       YYDSYMPRINTF ("Next token is", yytoken, &yylval, &yylloc);        YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
     }      }
   
   /* If the proper action on seeing token YYTOKEN is to reduce or to    /* If the proper action on seeing token YYTOKEN is to reduce or to
Line 1485  yybackup:
Line 1845  yybackup:
       goto yyreduce;        goto yyreduce;
     }      }
   
   if (yyn == YYFINAL)  
     YYACCEPT;  
   
   /* Shift the lookahead token.  */  
   YYDPRINTF ((stderr, "Shifting token %s, ", yytname[yytoken]));  
   
   /* Discard the token being shifted unless it is eof.  */  
   if (yychar != YYEOF)  
     yychar = YYEMPTY;  
   
   *++yyvsp = yylval;  
   
   
   /* Count tokens shifted since error; after three, turn off error    /* Count tokens shifted since error; after three, turn off error
      status.  */       status.  */
   if (yyerrstatus)    if (yyerrstatus)
     yyerrstatus--;      yyerrstatus--;
   
     /* Shift the lookahead token.  */
     YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
   
     /* Discard the shifted token.  */
     yychar = YYEMPTY;
   
   yystate = yyn;    yystate = yyn;
     *++yyvsp = yylval;
   
   goto yynewstate;    goto yynewstate;
   
   
Line 1539  yyreduce:
Line 1894  yyreduce:
   switch (yyn)    switch (yyn)
     {      {
         case 2:          case 2:
   
   /* Line 1455 of yacc.c  */
 #line 131 "parse.y"  #line 131 "parse.y"
     {      {
                                 parse_snode = yyvsp[0].s;                                  parse_snode = (yyvsp[(1) - (1)].s);
                                 if ( yychar >= 0 )                                  if ( yychar >= 0 )
                                         fprintf(stderr,                                          fprintf(stderr,
                                                 "Warning: a token was wasted after an 'if' statement without 'else'.\n");                                                  "Warning: a token was wasted after an 'if' statement without 'else'.\n");
Line 1550  yyreduce:
Line 1907  yyreduce:
     break;      break;
   
   case 3:    case 3:
   
   /* Line 1455 of yacc.c  */
 #line 140 "parse.y"  #line 140 "parse.y"
     { yyval.s = 0; }      { (yyval.s) = 0; }
     break;      break;
   
   case 4:    case 4:
   
   /* Line 1455 of yacc.c  */
 #line 141 "parse.y"  #line 141 "parse.y"
     { gdef=1; }      { gdef=1; }
     break;      break;
   
   case 5:    case 5:
   
   /* Line 1455 of yacc.c  */
 #line 141 "parse.y"  #line 141 "parse.y"
     { gdef=0; }      { gdef=0; }
     break;      break;
   
   case 6:    case 6:
   
   /* Line 1455 of yacc.c  */
 #line 142 "parse.y"  #line 142 "parse.y"
     { yyval.s = 0; NOPR; }      { (yyval.s) = 0; NOPR; }
     break;      break;
   
   case 7:    case 7:
   
   /* Line 1455 of yacc.c  */
 #line 143 "parse.y"  #line 143 "parse.y"
     { mgdef=1; }      { mgdef=1; }
     break;      break;
   
   case 8:    case 8:
   
   /* Line 1455 of yacc.c  */
 #line 143 "parse.y"  #line 143 "parse.y"
     { mgdef=0; }      { mgdef=0; }
     break;      break;
   
   case 9:    case 9:
   
   /* Line 1455 of yacc.c  */
 #line 144 "parse.y"  #line 144 "parse.y"
     { yyval.s = 0; NOPR; }      { (yyval.s) = 0; NOPR; }
     break;      break;
   
   case 10:    case 10:
   
   /* Line 1455 of yacc.c  */
 #line 145 "parse.y"  #line 145 "parse.y"
     { ldef=1; }      { ldef=1; }
     break;      break;
   
   case 11:    case 11:
   
   /* Line 1455 of yacc.c  */
 #line 145 "parse.y"  #line 145 "parse.y"
     { ldef=0; }      { ldef=0; }
     break;      break;
   
   case 12:    case 12:
   
   /* Line 1455 of yacc.c  */
 #line 146 "parse.y"  #line 146 "parse.y"
     { yyval.s = 0; NOPR; }      { (yyval.s) = 0; NOPR; }
     break;      break;
   
   case 13:    case 13:
   
   /* Line 1455 of yacc.c  */
 #line 148 "parse.y"  #line 148 "parse.y"
     { appenduflist(yyvsp[-1].n); yyval.s = 0; NOPR; }      { appenduflist((yyvsp[(2) - (3)].n)); (yyval.s) = 0; NOPR; }
     break;      break;
   
   case 14:    case 14:
   
   /* Line 1455 of yacc.c  */
 #line 150 "parse.y"  #line 150 "parse.y"
     { structdef(yyvsp[-4].p,yyvsp[-2].n); yyval.s = 0; NOPR; }      { structdef((yyvsp[(2) - (6)].p),(yyvsp[(4) - (6)].n)); (yyval.s) = 0; NOPR; }
     break;      break;
   
   case 15:    case 15:
   
   /* Line 1455 of yacc.c  */
 #line 152 "parse.y"  #line 152 "parse.y"
     { yyval.s = mksnode(1,S_SINGLE,yyvsp[-1].f); }      { (yyval.s) = mksnode(1,S_SINGLE,(yyvsp[(1) - (2)].f)); }
     break;      break;
   
   case 16:    case 16:
   
   /* Line 1455 of yacc.c  */
 #line 154 "parse.y"  #line 154 "parse.y"
     { yyval.s = yyvsp[0].s; }      { (yyval.s) = (yyvsp[(1) - (1)].s); }
     break;      break;
   
   case 17:    case 17:
   
   /* Line 1455 of yacc.c  */
 #line 156 "parse.y"  #line 156 "parse.y"
     { yyval.s = mksnode(0,S_BREAK); }      { (yyval.s) = mksnode(0,S_BREAK); }
     break;      break;
   
   case 18:    case 18:
   
   /* Line 1455 of yacc.c  */
 #line 158 "parse.y"  #line 158 "parse.y"
     { yyval.s = mksnode(0,S_CONTINUE); }      { (yyval.s) = mksnode(0,S_CONTINUE); }
     break;      break;
   
   case 19:    case 19:
   
   /* Line 1455 of yacc.c  */
 #line 160 "parse.y"  #line 160 "parse.y"
     { yyval.s = mksnode(1,S_RETURN,0); }      { (yyval.s) = mksnode(1,S_RETURN,0); }
     break;      break;
   
   case 20:    case 20:
   
   /* Line 1455 of yacc.c  */
 #line 162 "parse.y"  #line 162 "parse.y"
     { yyval.s = mksnode(1,S_RETURN,yyvsp[-1].f); }      { (yyval.s) = mksnode(1,S_RETURN,(yyvsp[(2) - (3)].f)); }
     break;      break;
   
   case 21:    case 21:
   
   /* Line 1455 of yacc.c  */
 #line 164 "parse.y"  #line 164 "parse.y"
     { yyval.s = mksnode(4,S_IFELSE,yyvsp[-4].i,yyvsp[-2].n,yyvsp[0].s,0); yyvsp[0].s?yyval.s->ln=yyvsp[0].s->ln:0; NOPR; }      { (yyval.s) = mksnode(4,S_IFELSE,(yyvsp[(1) - (5)].i),(yyvsp[(3) - (5)].n),(yyvsp[(5) - (5)].s),0); (yyvsp[(5) - (5)].s)?(yyval.s)->ln=(yyvsp[(5) - (5)].s)->ln:0; NOPR; }
     break;      break;
   
   case 22:    case 22:
   
   /* Line 1455 of yacc.c  */
 #line 166 "parse.y"  #line 166 "parse.y"
     { yyval.s = mksnode(4,S_IFELSE,yyvsp[-6].i,yyvsp[-4].n,yyvsp[-2].s,yyvsp[0].s); yyvsp[0].s?yyval.s->ln=yyvsp[0].s->ln:0; NOPR; }      { (yyval.s) = mksnode(4,S_IFELSE,(yyvsp[(1) - (7)].i),(yyvsp[(3) - (7)].n),(yyvsp[(5) - (7)].s),(yyvsp[(7) - (7)].s)); (yyvsp[(7) - (7)].s)?(yyval.s)->ln=(yyvsp[(7) - (7)].s)->ln:0; NOPR; }
     break;      break;
   
   case 23:    case 23:
   
   /* Line 1455 of yacc.c  */
 #line 168 "parse.y"  #line 168 "parse.y"
     { yyval.s = mksnode(5,S_FOR,yyvsp[-8].i,yyvsp[-6].n,yyvsp[-4].n?yyvsp[-4].n:ONENODE,yyvsp[-2].n,yyvsp[0].s); yyvsp[0].s?yyval.s->ln=yyvsp[0].s->ln:0; NOPR; }      { (yyval.s) = mksnode(5,S_FOR,(yyvsp[(1) - (9)].i),(yyvsp[(3) - (9)].n),(yyvsp[(5) - (9)].n)?(yyvsp[(5) - (9)].n):ONENODE,(yyvsp[(7) - (9)].n),(yyvsp[(9) - (9)].s)); (yyvsp[(9) - (9)].s)?(yyval.s)->ln=(yyvsp[(9) - (9)].s)->ln:0; NOPR; }
     break;      break;
   
   case 24:    case 24:
   
   /* Line 1455 of yacc.c  */
 #line 170 "parse.y"  #line 170 "parse.y"
     { yyval.s = mksnode(5,S_FOR,yyvsp[-4].i,0,yyvsp[-2].n,0,yyvsp[0].s); yyvsp[0].s?yyval.s->ln=yyvsp[0].s->ln:0; NOPR; }      { (yyval.s) = mksnode(5,S_FOR,(yyvsp[(1) - (5)].i),0,(yyvsp[(3) - (5)].n),0,(yyvsp[(5) - (5)].s)); (yyvsp[(5) - (5)].s)?(yyval.s)->ln=(yyvsp[(5) - (5)].s)->ln:0; NOPR; }
     break;      break;
   
   case 25:    case 25:
   
   /* Line 1455 of yacc.c  */
 #line 172 "parse.y"  #line 172 "parse.y"
     { yyval.s = mksnode(3,S_DO,yyvsp[-6].i,yyvsp[-5].s,yyvsp[-2].n); NOPR; }      { (yyval.s) = mksnode(3,S_DO,(yyvsp[(1) - (7)].i),(yyvsp[(2) - (7)].s),(yyvsp[(5) - (7)].n)); NOPR; }
     break;      break;
   
   case 26:    case 26:
   
   /* Line 1455 of yacc.c  */
 #line 174 "parse.y"  #line 174 "parse.y"
     { yyval.s = mksnode(3,S_PFDEF,yyvsp[-7].p,yyvsp[-5].n,yyvsp[-1].f); NOPR; }      { (yyval.s) = mksnode(3,S_PFDEF,(yyvsp[(1) - (8)].p),(yyvsp[(3) - (8)].n),(yyvsp[(7) - (8)].f)); NOPR; }
     break;      break;
   
   case 27:    case 27:
   
   /* Line 1455 of yacc.c  */
 #line 176 "parse.y"  #line 176 "parse.y"
     { yyval.s = mksnode(3,S_PFDEF,yyvsp[-4].p,yyvsp[-2].n,0); NOPR; }      { (yyval.s) = mksnode(3,S_PFDEF,(yyvsp[(2) - (6)].p),(yyvsp[(4) - (6)].n),0); NOPR; }
     break;      break;
   
   case 28:    case 28:
   
   /* Line 1455 of yacc.c  */
 #line 177 "parse.y"  #line 177 "parse.y"
     { mkpvs(yyvsp[0].p); }      { mkpvs((yyvsp[(2) - (2)].p)); }
     break;      break;
   
   case 29:    case 29:
   
   /* Line 1455 of yacc.c  */
 #line 177 "parse.y"  #line 177 "parse.y"
     { ldef = 1; }      { ldef = 1; }
     break;      break;
   
   case 30:    case 30:
   
   /* Line 1455 of yacc.c  */
 #line 177 "parse.y"  #line 177 "parse.y"
     { ldef = -1; }      { ldef = -1; }
     break;      break;
   
   case 31:    case 31:
   
   /* Line 1455 of yacc.c  */
 #line 178 "parse.y"  #line 178 "parse.y"
     {      {
                                 mkuf(yyvsp[-10].p,asir_infile->name,yyvsp[-6].n,                                  mkuf((yyvsp[(2) - (12)].p),asir_infile->name,(yyvsp[(6) - (12)].n),
                                         mksnode(1,S_CPLX,yyvsp[-1].n),yyvsp[-11].i,asir_infile->ln,yyvsp[-3].p,CUR_MODULE);                                          mksnode(1,S_CPLX,(yyvsp[(11) - (12)].n)),(yyvsp[(1) - (12)].i),asir_infile->ln,(yyvsp[(9) - (12)].p),CUR_MODULE);
                                 yyval.s = 0; NOPR;                                  (yyval.s) = 0; NOPR;
                         }                          }
     break;      break;
   
   case 32:    case 32:
   
   /* Line 1455 of yacc.c  */
 #line 184 "parse.y"  #line 184 "parse.y"
     {      {
                                 CUR_MODULE = mkmodule(yyvsp[-1].p);                                  CUR_MODULE = mkmodule((yyvsp[(2) - (3)].p));
                                 MPVS = CUR_MODULE->pvs;                                  MPVS = CUR_MODULE->pvs;
                                 yyval.s = mksnode(1,S_MODULE,CUR_MODULE); NOPR;                                  (yyval.s) = mksnode(1,S_MODULE,CUR_MODULE); NOPR;
                         }                          }
     break;      break;
   
   case 33:    case 33:
   
   /* Line 1455 of yacc.c  */
 #line 190 "parse.y"  #line 190 "parse.y"
     { CUR_MODULE = 0; MPVS = 0; yyval.s = mksnode(1,S_MODULE,0); NOPR; }      { CUR_MODULE = 0; MPVS = 0; (yyval.s) = mksnode(1,S_MODULE,0); NOPR; }
     break;      break;
   
   case 34:    case 34:
   
   /* Line 1455 of yacc.c  */
 #line 192 "parse.y"  #line 192 "parse.y"
     { yyerrok; yyval.s = 0; }      { yyerrok; (yyval.s) = 0; }
     break;      break;
   
   case 35:    case 35:
   
   /* Line 1455 of yacc.c  */
 #line 195 "parse.y"  #line 195 "parse.y"
     { if ( main_parser ) prresult = 1; }      { if ( main_parser ) prresult = 1; }
     break;      break;
   
   case 36:    case 36:
   
   /* Line 1455 of yacc.c  */
 #line 197 "parse.y"  #line 197 "parse.y"
     { if ( main_parser ) prresult = 0; }      { if ( main_parser ) prresult = 0; }
     break;      break;
   
   case 37:    case 37:
   
   /* Line 1455 of yacc.c  */
 #line 200 "parse.y"  #line 200 "parse.y"
     { yyval.p = 0; }      { (yyval.p) = 0; }
     break;      break;
   
   case 38:    case 38:
   
   /* Line 1455 of yacc.c  */
 #line 202 "parse.y"  #line 202 "parse.y"
     { yyval.p = yyvsp[0].p; }      { (yyval.p) = (yyvsp[(1) - (1)].p); }
     break;      break;
   
   case 39:    case 39:
   
   /* Line 1455 of yacc.c  */
 #line 205 "parse.y"  #line 205 "parse.y"
     { yyval.s = mksnode(1,S_CPLX,yyvsp[-1].n); }      { (yyval.s) = mksnode(1,S_CPLX,(yyvsp[(2) - (3)].n)); }
     break;      break;
   
   case 40:    case 40:
   
   /* Line 1455 of yacc.c  */
 #line 208 "parse.y"  #line 208 "parse.y"
     { MKNODE(yyval.n,yyvsp[0].p,0); }      { MKNODE((yyval.n),(yyvsp[(1) - (1)].p),0); }
     break;      break;
   
   case 41:    case 41:
   
   /* Line 1455 of yacc.c  */
 #line 210 "parse.y"  #line 210 "parse.y"
     { appendtonode(yyvsp[-2].n,yyvsp[0].p,&yyval.n); }      { appendtonode((yyvsp[(1) - (3)].n),(yyvsp[(3) - (3)].p),&(yyval.n)); }
     break;      break;
   
   case 42:    case 42:
   
   /* Line 1455 of yacc.c  */
 #line 213 "parse.y"  #line 213 "parse.y"
     { MKNODE(yyval.n,yyvsp[0].p,0); }      { MKNODE((yyval.n),(yyvsp[(1) - (1)].p),0); }
     break;      break;
   
   case 43:    case 43:
   
   /* Line 1455 of yacc.c  */
 #line 215 "parse.y"  #line 215 "parse.y"
     { appendtonode(yyvsp[-2].n,yyvsp[0].p,&yyval.n); }      { appendtonode((yyvsp[(1) - (3)].n),(yyvsp[(3) - (3)].p),&(yyval.n)); }
     break;      break;
   
   case 44:    case 44:
   
   /* Line 1455 of yacc.c  */
 #line 218 "parse.y"  #line 218 "parse.y"
     { val = (pointer)makepvar(yyvsp[0].p); MKNODE(yyval.n,val,0); }      { val = (pointer)makepvar((yyvsp[(1) - (1)].p)); MKNODE((yyval.n),val,0); }
     break;      break;
   
   case 45:    case 45:
   
   /* Line 1455 of yacc.c  */
 #line 220 "parse.y"  #line 220 "parse.y"
     { appendtonode(yyvsp[-2].n,(pointer)makepvar(yyvsp[0].p),&yyval.n); }      { appendtonode((yyvsp[(1) - (3)].n),(pointer)makepvar((yyvsp[(3) - (3)].p)),&(yyval.n)); }
     break;      break;
   
   case 46:    case 46:
   
   /* Line 1455 of yacc.c  */
 #line 223 "parse.y"  #line 223 "parse.y"
     { yyval.n = 0; }      { (yyval.n) = 0; }
     break;      break;
   
   case 47:    case 47:
   
   /* Line 1455 of yacc.c  */
 #line 225 "parse.y"  #line 225 "parse.y"
     { appendtonode(yyvsp[-1].n,(pointer)yyvsp[0].s,&yyval.n); }      { appendtonode((yyvsp[(1) - (2)].n),(pointer)(yyvsp[(2) - (2)].s),&(yyval.n)); }
     break;      break;
   
   case 48:    case 48:
   
   /* Line 1455 of yacc.c  */
 #line 228 "parse.y"  #line 228 "parse.y"
     { yyval.n = 0; }      { (yyval.n) = 0; }
     break;      break;
   
   case 49:    case 49:
   
   /* Line 1455 of yacc.c  */
 #line 230 "parse.y"  #line 230 "parse.y"
     { yyval.n = yyvsp[0].n; }      { (yyval.n) = (yyvsp[(1) - (1)].n); }
     break;      break;
   
   case 50:    case 50:
   
   /* Line 1455 of yacc.c  */
 #line 233 "parse.y"  #line 233 "parse.y"
     { MKNODE(yyval.n,yyvsp[0].f,0); }      { MKNODE((yyval.n),(yyvsp[(1) - (1)].f),0); }
     break;      break;
   
   case 51:    case 51:
   
   /* Line 1455 of yacc.c  */
 #line 235 "parse.y"  #line 235 "parse.y"
     { appendtonode(yyvsp[-2].n,(pointer)yyvsp[0].f,&yyval.n); }      { appendtonode((yyvsp[(1) - (3)].n),(pointer)(yyvsp[(3) - (3)].f),&(yyval.n)); }
     break;      break;
   
   case 52:    case 52:
   
   /* Line 1455 of yacc.c  */
 #line 238 "parse.y"  #line 238 "parse.y"
     { MKNODE(yyval.n,yyvsp[0].f,0); }      { MKNODE((yyval.n),(yyvsp[(1) - (1)].f),0); }
     break;      break;
   
   case 53:    case 53:
   
   /* Line 1455 of yacc.c  */
 #line 240 "parse.y"  #line 240 "parse.y"
     { appendtonode(yyvsp[-2].n,(pointer)yyvsp[0].f,&yyval.n); }      { appendtonode((yyvsp[(1) - (3)].n),(pointer)(yyvsp[(3) - (3)].f),&(yyval.n)); }
     break;      break;
   
   case 54:    case 54:
   
   /* Line 1455 of yacc.c  */
 #line 243 "parse.y"  #line 243 "parse.y"
     { yyval.p = yyvsp[0].p; }      { (yyval.p) = (yyvsp[(1) - (1)].p); }
     break;      break;
   
   case 55:    case 55:
   
   /* Line 1455 of yacc.c  */
 #line 245 "parse.y"  #line 245 "parse.y"
     { yyval.p = yyvsp[0].p; }      { (yyval.p) = (yyvsp[(1) - (1)].p); }
     break;      break;
   
   case 56:    case 56:
   
   /* Line 1455 of yacc.c  */
 #line 248 "parse.y"  #line 248 "parse.y"
     { yyval.f = mkfnode(2,I_OPT,yyvsp[-2].p,yyvsp[0].f); }      { (yyval.f) = mkfnode(2,I_OPT,(yyvsp[(1) - (3)].p),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 57:    case 57:
   
   /* Line 1455 of yacc.c  */
 #line 251 "parse.y"  #line 251 "parse.y"
     { yyval.f = mkfnode(1,I_STR,yyvsp[0].p); }      { (yyval.f) = mkfnode(1,I_STR,(yyvsp[(1) - (1)].p)); }
     break;      break;
   
   case 58:    case 58:
   
   /* Line 1455 of yacc.c  */
 #line 253 "parse.y"  #line 253 "parse.y"
     { yyval.f = mkfnode(1,I_FORMULA,yyvsp[0].p); }      { (yyval.f) = mkfnode(1,I_FORMULA,(yyvsp[(1) - (1)].p)); }
     break;      break;
   
   case 59:    case 59:
   
   /* Line 1455 of yacc.c  */
 #line 255 "parse.y"  #line 255 "parse.y"
     { yyval.f = mkfnode(1,I_ANS,yyvsp[0].i); }      { (yyval.f) = mkfnode(1,I_ANS,(yyvsp[(1) - (1)].i)); }
     break;      break;
   
   case 60:    case 60:
   
   /* Line 1455 of yacc.c  */
 #line 257 "parse.y"  #line 257 "parse.y"
     { yyval.f = mkfnode(0,I_GF2NGEN); }      { (yyval.f) = mkfnode(0,I_GF2NGEN); }
     break;      break;
   
   case 61:    case 61:
   
   /* Line 1455 of yacc.c  */
 #line 259 "parse.y"  #line 259 "parse.y"
     { yyval.f = mkfnode(0,I_GFPNGEN); }      { (yyval.f) = mkfnode(0,I_GFPNGEN); }
     break;      break;
   
   case 62:    case 62:
   
   /* Line 1455 of yacc.c  */
 #line 261 "parse.y"  #line 261 "parse.y"
     { yyval.f = mkfnode(0,I_GFSNGEN); }      { (yyval.f) = mkfnode(0,I_GFSNGEN); }
     break;      break;
   
   case 63:    case 63:
   
   /* Line 1455 of yacc.c  */
 #line 263 "parse.y"  #line 263 "parse.y"
     {      {
                                 FUNC f;                                  FUNC f;
   
                                 searchf(noargsysf,yyvsp[0].p,&f);                                  searchf(noargsysf,(yyvsp[(1) - (1)].p),&f);
                                 if ( f )                                  if ( f )
                                          yyval.f = mkfnode(2,I_FUNC,f,0);                                           (yyval.f) = mkfnode(2,I_FUNC,f,0);
                                 else {                                  else {
                                         searchc(yyvsp[0].p,&f);                                          searchc((yyvsp[(1) - (1)].p),&f);
                                         if ( f )                                          if ( f )
                                                 yyval.f = mkfnode(2,I_FUNC,f,mkfnode(1,I_LIST,0));                                                  (yyval.f) = mkfnode(2,I_FUNC,f,mkfnode(1,I_LIST,0));
                                         else {                                          else {
                                                 gen_searchf_searchonly(yyvsp[0].p,(FUNC *)&f);                                                  gen_searchf_searchonly((yyvsp[(1) - (1)].p),(FUNC *)&f);
                                                 if ( f )                                                  if ( f )
                                                         makesrvar(f,(P *)&val);                                                          makesrvar(f,(P *)&val);
                                                 else                                                  else
                                                         makevar(yyvsp[0].p,(P *)&val);                                                          makevar((yyvsp[(1) - (1)].p),(P *)&val);
                                                 yyval.f = mkfnode(1,I_FORMULA,val);                                                  (yyval.f) = mkfnode(1,I_FORMULA,val);
                                         }                                          }
                                 }                                  }
                         }                          }
     break;      break;
   
   case 64:    case 64:
   
   /* Line 1455 of yacc.c  */
 #line 284 "parse.y"  #line 284 "parse.y"
     {      {
                                 gen_searchf(yyvsp[-3].p,(FUNC *)&val);                                  gen_searchf((yyvsp[(1) - (4)].p),(FUNC *)&val);
                                 print_crossref(val);                                  print_crossref(val);
                                 yyval.f = mkfnode(2,I_FUNC,val,mkfnode(1,I_LIST,yyvsp[-1].n));                                  (yyval.f) = mkfnode(2,I_FUNC,val,mkfnode(1,I_LIST,(yyvsp[(3) - (4)].n)));
                         }                          }
     break;      break;
   
   case 65:    case 65:
   
   /* Line 1455 of yacc.c  */
 #line 291 "parse.y"  #line 291 "parse.y"
     {      {
                                 gen_searchf(yyvsp[-5].p,(FUNC *)&val);                                  gen_searchf((yyvsp[(1) - (6)].p),(FUNC *)&val);
                                 print_crossref(val);                                  print_crossref(val);
                                 yyval.f = mkfnode(3,I_FUNC_OPT,val,                                  (yyval.f) = mkfnode(3,I_FUNC_OPT,val,
                                         mkfnode(1,I_LIST,yyvsp[-3].n),mkfnode(1,I_LIST,yyvsp[-1].n));                                          mkfnode(1,I_LIST,(yyvsp[(3) - (6)].n)),mkfnode(1,I_LIST,(yyvsp[(5) - (6)].n)));
                         }                          }
     break;      break;
   
   case 66:    case 66:
   
   /* Line 1455 of yacc.c  */
 #line 298 "parse.y"  #line 298 "parse.y"
     {      {
                                 gen_searchf(yyvsp[-3].p,(FUNC *)&val);                                  gen_searchf((yyvsp[(3) - (6)].p),(FUNC *)&val);
                                 print_crossref(val);                                  print_crossref(val);
                                 yyval.f = mkfnode(2,I_MAP,val,mkfnode(1,I_LIST,yyvsp[-1].n));                                  (yyval.f) = mkfnode(2,I_MAP,val,mkfnode(1,I_LIST,(yyvsp[(5) - (6)].n)));
                         }                          }
     break;      break;
   
   case 67:    case 67:
   
   /* Line 1455 of yacc.c  */
 #line 304 "parse.y"  #line 304 "parse.y"
     {      {
                                 gen_searchf(yyvsp[-3].p,(FUNC *)&val);                                  gen_searchf((yyvsp[(3) - (6)].p),(FUNC *)&val);
                                 print_crossref(val);                                  print_crossref(val);
                                 yyval.f = mkfnode(2,I_RECMAP,val,mkfnode(1,I_LIST,yyvsp[-1].n));                                  (yyval.f) = mkfnode(2,I_RECMAP,val,mkfnode(1,I_LIST,(yyvsp[(5) - (6)].n)));
                         }                          }
     break;      break;
   
   case 68:    case 68:
   
   /* Line 1455 of yacc.c  */
 #line 310 "parse.y"  #line 310 "parse.y"
     {      {
                                 searchpf(yyvsp[-6].p,(FUNC *)&val);                                  searchpf((yyvsp[(1) - (7)].p),(FUNC *)&val);
                                 yyval.f = mkfnode(3,I_PFDERIV,val,mkfnode(1,I_LIST,yyvsp[-1].n),mkfnode(1,I_LIST,yyvsp[-4].n));                                  (yyval.f) = mkfnode(3,I_PFDERIV,val,mkfnode(1,I_LIST,(yyvsp[(6) - (7)].n)),mkfnode(1,I_LIST,(yyvsp[(3) - (7)].n)));
                         }                          }
     break;      break;
   
   case 69:    case 69:
   
   /* Line 1455 of yacc.c  */
 #line 315 "parse.y"  #line 315 "parse.y"
     {      {
                                 yyval.f = mkfnode(2,I_GETOPT,yyvsp[-1].p);                                  (yyval.f) = mkfnode(2,I_GETOPT,(yyvsp[(3) - (4)].p));
                         }                          }
     break;      break;
   
   case 70:    case 70:
   
   /* Line 1455 of yacc.c  */
 #line 319 "parse.y"  #line 319 "parse.y"
     {      {
                                 yyval.f = mkfnode(2,I_GETOPT,0);                                  (yyval.f) = mkfnode(2,I_GETOPT,0);
                         }                          }
     break;      break;
   
   case 71:    case 71:
   
   /* Line 1455 of yacc.c  */
 #line 323 "parse.y"  #line 323 "parse.y"
     {      {
                                 yyval.f = mkfnode(3,I_TIMER,yyvsp[-5].f,yyvsp[-3].f,yyvsp[-1].f);                                  (yyval.f) = mkfnode(3,I_TIMER,(yyvsp[(3) - (8)].f),(yyvsp[(5) - (8)].f),(yyvsp[(7) - (8)].f));
                         }                          }
     break;      break;
   
   case 72:    case 72:
   
   /* Line 1455 of yacc.c  */
 #line 327 "parse.y"  #line 327 "parse.y"
     {      {
                                 searchf(parif,yyvsp[-1].p,(FUNC *)&val);                                  searchf(parif,(yyvsp[(3) - (4)].p),(FUNC *)&val);
                                 if ( !val )                                  if ( !val )
                                         mkparif(yyvsp[-1].p,(FUNC *)&val);                                          mkparif((yyvsp[(3) - (4)].p),(FUNC *)&val);
                                 yyval.f = mkfnode(2,I_FUNC,val,0);                                  (yyval.f) = mkfnode(2,I_FUNC,val,0);
                         }                          }
     break;      break;
   
   case 73:    case 73:
   
   /* Line 1455 of yacc.c  */
 #line 334 "parse.y"  #line 334 "parse.y"
     {      {
                                 searchf(parif,yyvsp[-3].p,(FUNC *)&val);                                  searchf(parif,(yyvsp[(3) - (6)].p),(FUNC *)&val);
                                 if ( !val )                                  if ( !val )
                                         mkparif(yyvsp[-3].p,(FUNC *)&val);                                          mkparif((yyvsp[(3) - (6)].p),(FUNC *)&val);
                                 yyval.f = mkfnode(2,I_FUNC,val,mkfnode(1,I_LIST,yyvsp[-1].n));                                  (yyval.f) = mkfnode(2,I_FUNC,val,mkfnode(1,I_LIST,(yyvsp[(5) - (6)].n)));
                         }                          }
     break;      break;
   
   case 74:    case 74:
   
   /* Line 1455 of yacc.c  */
 #line 341 "parse.y"  #line 341 "parse.y"
     {      {
                                 yyval.f = mkfnode(2,I_IFUNC,yyvsp[-4].f,mkfnode(1,I_LIST,yyvsp[-1].n));                                  (yyval.f) = mkfnode(2,I_IFUNC,(yyvsp[(3) - (7)].f),mkfnode(1,I_LIST,(yyvsp[(6) - (7)].n)),0);
                         }                          }
     break;      break;
   
   case 75:    case 75:
   
   /* Line 1455 of yacc.c  */
 #line 345 "parse.y"  #line 345 "parse.y"
     {      {
                                   (yyval.f) = mkfnode(3,I_IFUNC,(yyvsp[(3) - (9)].f),mkfnode(1,I_LIST,(yyvsp[(6) - (9)].n)),
                                           mkfnode(1,I_LIST,(yyvsp[(8) - (9)].n)));
                           }
       break;
   
     case 76:
   
   /* Line 1455 of yacc.c  */
   #line 350 "parse.y"
       {
                                 if ( main_parser || allow_create_var )                                  if ( main_parser || allow_create_var )
                                         t = mkfnode(2,I_PVAR,makepvar(yyvsp[-3].p),0);                                          t = mkfnode(2,I_PVAR,makepvar((yyvsp[(1) - (4)].p)),0);
                                 else {                                  else {
                                         ind = searchpvar(yyvsp[-3].p);                                          ind = searchpvar((yyvsp[(1) - (4)].p));
                                         if ( ind == -1 ) {                                          if ( ind == -1 ) {
                                                 fprintf(stderr,"%s : no such variable.\n",yyvsp[-3].p);                                                  fprintf(stderr,"%s : no such variable.\n",(yyvsp[(1) - (4)].p));
                                                 YYABORT;                                                  YYABORT;
                                         } else                                          } else
                                                 t = mkfnode(2,I_PVAR,ind,0);                                                  t = mkfnode(2,I_PVAR,ind,0);
                                 }                                  }
                                 yyval.f = mkfnode(2,I_IFUNC,t,mkfnode(1,I_LIST,yyvsp[-1].n));                                  (yyval.f) = mkfnode(2,I_IFUNC,t,mkfnode(1,I_LIST,(yyvsp[(3) - (4)].n)));
                         }                          }
     break;      break;
   
   case 76:  
 #line 359 "parse.y"  
     { yyval.f = mkfnode(1,I_CAR,yyvsp[-1].f); }  
     break;  
   
   case 77:    case 77:
 #line 361 "parse.y"  
     { yyval.f = mkfnode(1,I_CDR,yyvsp[-1].f); }  /* Line 1455 of yacc.c  */
   #line 364 "parse.y"
       { (yyval.f) = mkfnode(1,I_CAR,(yyvsp[(3) - (4)].f)); }
     break;      break;
   
   case 78:    case 78:
 #line 363 "parse.y"  
     { yyval.f = mkfnode(1,I_PAREN,yyvsp[-1].f); }  /* Line 1455 of yacc.c  */
   #line 366 "parse.y"
       { (yyval.f) = mkfnode(1,I_CDR,(yyvsp[(3) - (4)].f)); }
     break;      break;
   
   case 79:    case 79:
 #line 365 "parse.y"  
   /* Line 1455 of yacc.c  */
   #line 368 "parse.y"
       { (yyval.f) = mkfnode(1,I_PAREN,(yyvsp[(2) - (3)].f)); }
       break;
   
     case 80:
   
   /* Line 1455 of yacc.c  */
   #line 370 "parse.y"
     {      {
                                 if ( main_parser || allow_create_var )                                  if ( main_parser || allow_create_var )
                                         yyval.f = mkfnode(2,I_PVAR,makepvar(yyvsp[0].p),0);                                          (yyval.f) = mkfnode(2,I_PVAR,makepvar((yyvsp[(1) - (1)].p)),0);
                                 else {                                  else {
                                         ind = searchpvar(yyvsp[0].p);                                          ind = searchpvar((yyvsp[(1) - (1)].p));
                                         if ( ind == -1 ) {                                          if ( ind == -1 ) {
                                                 fprintf(stderr,"%s : no such variable.\n",yyvsp[0].p);                                                  fprintf(stderr,"%s : no such variable.\n",(yyvsp[(1) - (1)].p));
                                                 YYABORT;                                                  YYABORT;
                                         } else                                          } else
                                                 yyval.f = mkfnode(2,I_PVAR,ind,0);                                                  (yyval.f) = mkfnode(2,I_PVAR,ind,0);
                                 }                                  }
                         }                          }
     break;      break;
   
   case 80:    case 81:
 #line 378 "parse.y"  
   /* Line 1455 of yacc.c  */
   #line 383 "parse.y"
     {      {
                                 if ( yyvsp[-3].f->id == I_PVAR || yyvsp[-3].f->id == I_INDEX ) {                                  if ( (yyvsp[(1) - (4)].f)->id == I_PVAR || (yyvsp[(1) - (4)].f)->id == I_INDEX ) {
                                         appendtonode((NODE)yyvsp[-3].f->arg[1],(pointer)yyvsp[-1].f,&a);                                          appendtonode((NODE)(yyvsp[(1) - (4)].f)->arg[1],(pointer)(yyvsp[(3) - (4)].f),&a);
                                         yyvsp[-3].f->arg[1] = (pointer)a; yyval.f = yyvsp[-3].f;                                          (yyvsp[(1) - (4)].f)->arg[1] = (pointer)a; (yyval.f) = (yyvsp[(1) - (4)].f);
                                 } else {                                  } else {
                                         MKNODE(a,yyvsp[-1].f,0);                                          MKNODE(a,(yyvsp[(3) - (4)].f),0);
                                         yyval.f = mkfnode(2,I_INDEX,(pointer)yyvsp[-3].f,a);                                          (yyval.f) = mkfnode(2,I_INDEX,(pointer)(yyvsp[(1) - (4)].f),a);
                                 }                                  }
                         }                          }
     break;      break;
   
   case 81:  
 #line 388 "parse.y"  
     { yyval.f = mkfnode(2,I_POINT,yyvsp[-2].f,yyvsp[0].p); }  
     break;  
   
   case 82:    case 82:
 #line 391 "parse.y"  
     { yyval.f = yyvsp[0].f; }  /* Line 1455 of yacc.c  */
   #line 393 "parse.y"
       { (yyval.f) = mkfnode(2,I_POINT,(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].p)); }
     break;      break;
   
   case 83:    case 83:
 #line 393 "parse.y"  
     { yyval.f = mkfnode(3,I_CAST,structtoindex(yyvsp[-2].p),yyvsp[0].f,0); }  /* Line 1455 of yacc.c  */
   #line 396 "parse.y"
       { (yyval.f) = (yyvsp[(1) - (1)].f); }
     break;      break;
   
   case 84:    case 84:
 #line 395 "parse.y"  
     { yyval.f = mkfnode(2,I_ASSPVAR,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 398 "parse.y"
       { (yyval.f) = mkfnode(3,I_CAST,structtoindex((yyvsp[(3) - (5)].p)),(yyvsp[(5) - (5)].f),0); }
     break;      break;
   
   case 85:    case 85:
 #line 397 "parse.y"  
     { yyval.f = mkfnode(2,I_ASSPVAR,yyvsp[-2].f,mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f)); }  /* Line 1455 of yacc.c  */
   #line 400 "parse.y"
       { (yyval.f) = mkfnode(2,I_ASSPVAR,(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 86:    case 86:
 #line 399 "parse.y"  
     { yyval.f = mkfnode(2,I_POSTSELF,yyvsp[0].p,yyvsp[-1].f); }  /* Line 1455 of yacc.c  */
   #line 402 "parse.y"
       { (yyval.f) = mkfnode(2,I_ASSPVAR,(yyvsp[(1) - (3)].f),mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f))); }
     break;      break;
   
   case 87:    case 87:
 #line 401 "parse.y"  
     { yyval.f = mkfnode(2,I_PRESELF,yyvsp[-1].p,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 404 "parse.y"
       { (yyval.f) = mkfnode(2,I_POSTSELF,(yyvsp[(2) - (2)].p),(yyvsp[(1) - (2)].f)); }
     break;      break;
   
   case 88:    case 88:
 #line 403 "parse.y"  
     { yyval.f = mkfnode(1,I_LIST,yyvsp[-1].n); }  /* Line 1455 of yacc.c  */
   #line 406 "parse.y"
       { (yyval.f) = mkfnode(2,I_PRESELF,(yyvsp[(1) - (2)].p),(yyvsp[(2) - (2)].f)); }
     break;      break;
   
   case 89:    case 89:
 #line 405 "parse.y"  
     { yyval.f = yyvsp[0].f; }  /* Line 1455 of yacc.c  */
   #line 408 "parse.y"
       { (yyval.f) = mkfnode(1,I_LIST,(yyvsp[(2) - (3)].n)); }
     break;      break;
   
   case 90:    case 90:
 #line 407 "parse.y"  
     { yyval.f = mkfnode(1,I_MINUS,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 410 "parse.y"
       { (yyval.f) = (yyvsp[(2) - (2)].f); }
     break;      break;
   
   case 91:    case 91:
 #line 409 "parse.y"  
     { yyval.f = mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 412 "parse.y"
       { (yyval.f) = mkfnode(1,I_MINUS,(yyvsp[(2) - (2)].f)); }
     break;      break;
   
   case 92:    case 92:
 #line 411 "parse.y"  
     { yyval.f = mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 414 "parse.y"
       { (yyval.f) = mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 93:    case 93:
 #line 413 "parse.y"  
     { yyval.f = mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 416 "parse.y"
       { (yyval.f) = mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 94:    case 94:
 #line 415 "parse.y"  
     { yyval.f = mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 418 "parse.y"
       { (yyval.f) = mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 95:    case 95:
 #line 417 "parse.y"  
     { yyval.f = mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 420 "parse.y"
       { (yyval.f) = mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 96:    case 96:
 #line 419 "parse.y"  
     { yyval.f = mkfnode(3,I_BOP,yyvsp[-1].p,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 422 "parse.y"
       { (yyval.f) = mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 97:    case 97:
 #line 421 "parse.y"  
     { yyval.f = mkfnode(3,I_COP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 424 "parse.y"
       { (yyval.f) = mkfnode(3,I_BOP,(yyvsp[(2) - (3)].p),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 98:    case 98:
 #line 423 "parse.y"  
     { yyval.f = mkfnode(1,I_NOT,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 426 "parse.y"
       { (yyval.f) = mkfnode(3,I_COP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 99:    case 99:
 #line 425 "parse.y"  
     { yyval.f = mkfnode(2,I_OR,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 428 "parse.y"
       { (yyval.f) = mkfnode(1,I_NOT,(yyvsp[(2) - (2)].f)); }
     break;      break;
   
   case 100:    case 100:
 #line 427 "parse.y"  
     { yyval.f = mkfnode(2,I_AND,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 430 "parse.y"
       { (yyval.f) = mkfnode(2,I_OR,(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 101:    case 101:
 #line 429 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[0].f,0); }  /* Line 1455 of yacc.c  */
   #line 432 "parse.y"
       { (yyval.f) = mkfnode(2,I_AND,(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 102:    case 102:
 #line 431 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 434 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(1) - (2)].i),(yyvsp[(2) - (2)].f),0); }
     break;      break;
   
   case 103:    case 103:
 #line 433 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 436 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 104:    case 104:
 #line 435 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 438 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 105:    case 105:
 #line 437 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 440 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 106:    case 106:
 #line 439 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 442 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 107:    case 107:
 #line 441 "parse.y"  
     { yyval.f = mkfnode(3,I_LOP,yyvsp[-1].i,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 444 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 108:    case 108:
 #line 443 "parse.y"  
     { yyval.f = mkfnode(3,I_CE,yyvsp[-4].f,yyvsp[-2].f,yyvsp[0].f); }  /* Line 1455 of yacc.c  */
   #line 446 "parse.y"
       { (yyval.f) = mkfnode(3,I_LOP,(yyvsp[(2) - (3)].i),(yyvsp[(1) - (3)].f),(yyvsp[(3) - (3)].f)); }
     break;      break;
   
   case 109:    case 109:
 #line 445 "parse.y"  
     { yyval.f = mkfnode(1,I_EV,yyvsp[-1].n); }  /* Line 1455 of yacc.c  */
   #line 448 "parse.y"
       { (yyval.f) = mkfnode(3,I_CE,(yyvsp[(1) - (5)].f),(yyvsp[(3) - (5)].f),(yyvsp[(5) - (5)].f)); }
     break;      break;
   
   case 110:    case 110:
 #line 447 "parse.y"  
     { yyval.f = mkfnode(1,I_NEWCOMP,(int)structtoindex(yyvsp[-1].p)); }  /* Line 1455 of yacc.c  */
   #line 450 "parse.y"
       { (yyval.f) = mkfnode(1,I_EV,(yyvsp[(2) - (3)].n)); }
     break;      break;
   
   case 111:    case 111:
 #line 449 "parse.y"  
     { MKQUOTE(quote,yyvsp[-1].f); yyval.f = mkfnode(1,I_FORMULA,(pointer)quote); }  /* Line 1455 of yacc.c  */
   #line 452 "parse.y"
       { (yyval.f) = mkfnode(1,I_NEWCOMP,(int)structtoindex((yyvsp[(3) - (4)].p))); }
     break;      break;
   
   case 112:    case 112:
 #line 451 "parse.y"  
     { yyval.f = mkfnode(2,I_CONS,yyvsp[-3].n,yyvsp[-1].f); }  /* Line 1455 of yacc.c  */
   #line 454 "parse.y"
       { MKQUOTE(quote,(yyvsp[(3) - (4)].f)); (yyval.f) = mkfnode(1,I_FORMULA,(pointer)quote); }
     break;      break;
   
   case 113:    case 113:
 #line 453 "parse.y"  
     { MKQUOTE(quote,yyvsp[0].f); yyval.f = mkfnode(1,I_FORMULA,(pointer)quote); }  /* Line 1455 of yacc.c  */
   #line 456 "parse.y"
       { (yyval.f) = mkfnode(2,I_CONS,(yyvsp[(2) - (5)].n),(yyvsp[(4) - (5)].f)); }
     break;      break;
   
     case 114:
   
     }  /* Line 1455 of yacc.c  */
   #line 458 "parse.y"
       { MKQUOTE(quote,(yyvsp[(2) - (2)].f)); (yyval.f) = mkfnode(1,I_FORMULA,(pointer)quote); }
       break;
   
 /* Line 999 of yacc.c.  */  
 #line 2208 "y.tab.c"  
   
   yyvsp -= yylen;  
   yyssp -= yylen;  
   
   
   /* Line 1455 of yacc.c  */
   #line 2796 "y.tab.c"
         default: break;
       }
     YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
   
     YYPOPSTACK (yylen);
     yylen = 0;
   YY_STACK_PRINT (yyss, yyssp);    YY_STACK_PRINT (yyss, yyssp);
   
   *++yyvsp = yyval;    *++yyvsp = yyval;
   
   
   /* Now `shift' the result of the reduction.  Determine what state    /* Now `shift' the result of the reduction.  Determine what state
      that goes to, based on the state we popped back to and the rule       that goes to, based on the state we popped back to and the rule
      number reduced by.  */       number reduced by.  */
Line 2238  yyerrlab:
Line 2826  yyerrlab:
   if (!yyerrstatus)    if (!yyerrstatus)
     {      {
       ++yynerrs;        ++yynerrs;
 #if YYERROR_VERBOSE  #if ! YYERROR_VERBOSE
       yyn = yypact[yystate];        yyerror (YY_("syntax error"));
   #else
       if (YYPACT_NINF < yyn && yyn < YYLAST)        {
         {          YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
           YYSIZE_T yysize = 0;          if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
           int yytype = YYTRANSLATE (yychar);            {
           const char* yyprefix;              YYSIZE_T yyalloc = 2 * yysize;
           char *yymsg;              if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
           int yyx;                yyalloc = YYSTACK_ALLOC_MAXIMUM;
               if (yymsg != yymsgbuf)
           /* Start YYX at -YYN if negative to avoid negative indexes in                YYSTACK_FREE (yymsg);
              YYCHECK.  */              yymsg = (char *) YYSTACK_ALLOC (yyalloc);
           int yyxbegin = yyn < 0 ? -yyn : 0;              if (yymsg)
                 yymsg_alloc = yyalloc;
           /* Stay within bounds of both yycheck and yytname.  */              else
           int yychecklim = YYLAST - yyn;  
           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;  
           int yycount = 0;  
   
           yyprefix = ", expecting ";  
           for (yyx = yyxbegin; yyx < yyxend; ++yyx)  
             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)  
               {                {
                 yysize += yystrlen (yyprefix) + yystrlen (yytname [yyx]);                  yymsg = yymsgbuf;
                 yycount += 1;                  yymsg_alloc = sizeof yymsgbuf;
                 if (yycount == 5)  
                   {  
                     yysize = 0;  
                     break;  
                   }  
               }                }
           yysize += (sizeof ("syntax error, unexpected ")            }
                      + yystrlen (yytname[yytype]));  
           yymsg = (char *) YYSTACK_ALLOC (yysize);  
           if (yymsg != 0)  
             {  
               char *yyp = yystpcpy (yymsg, "syntax error, unexpected ");  
               yyp = yystpcpy (yyp, yytname[yytype]);  
   
               if (yycount < 5)          if (0 < yysize && yysize <= yymsg_alloc)
                 {            {
                   yyprefix = ", expecting ";              (void) yysyntax_error (yymsg, yystate, yychar);
                   for (yyx = yyxbegin; yyx < yyxend; ++yyx)              yyerror (yymsg);
                     if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)            }
                       {          else
                         yyp = yystpcpy (yyp, yyprefix);            {
                         yyp = yystpcpy (yyp, yytname[yyx]);              yyerror (YY_("syntax error"));
                         yyprefix = " or ";              if (yysize != 0)
                       }                goto yyexhaustedlab;
                 }            }
               yyerror (yymsg);        }
               YYSTACK_FREE (yymsg);  #endif
             }  
           else  
             yyerror ("syntax error; also virtual memory exhausted");  
         }  
       else  
 #endif /* YYERROR_VERBOSE */  
         yyerror ("syntax error");  
     }      }
   
   
Line 2307  yyerrlab:
Line 2870  yyerrlab:
       /* If just tried and failed to reuse lookahead token after an        /* If just tried and failed to reuse lookahead token after an
          error, discard it.  */           error, discard it.  */
   
       /* Return failure if at end of input.  */        if (yychar <= YYEOF)
       if (yychar == YYEOF)          {
         {            /* Return failure if at end of input.  */
           /* Pop the error token.  */            if (yychar == YYEOF)
           YYPOPSTACK;              YYABORT;
           /* Pop the rest of the stack.  */          }
           while (yyss < yyssp)        else
             {          {
               YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);            yydestruct ("Error: discarding",
               yydestruct (yystos[*yyssp], yyvsp);                        yytoken, &yylval);
               YYPOPSTACK;            yychar = YYEMPTY;
             }          }
           YYABORT;  
         }  
   
       YYDSYMPRINTF ("Error: discarding", yytoken, &yylval, &yylloc);  
       yydestruct (yytoken, &yylval);  
       yychar = YYEMPTY;  
   
     }      }
   
   /* Else will try to reuse lookahead token after shifting the error    /* Else will try to reuse lookahead token after shifting the error
Line 2333  yyerrlab:
Line 2889  yyerrlab:
   goto yyerrlab1;    goto yyerrlab1;
   
   
 /*----------------------------------------------------.  /*---------------------------------------------------.
 | yyerrlab1 -- error raised explicitly by an action.  |  | yyerrorlab -- error raised explicitly by YYERROR.  |
 `----------------------------------------------------*/  `---------------------------------------------------*/
   yyerrorlab:
   
     /* Pacify compilers like GCC when the user code never invokes
        YYERROR and the label yyerrorlab therefore never appears in user
        code.  */
     if (/*CONSTCOND*/ 0)
        goto yyerrorlab;
   
     /* Do not reclaim the symbols of the rule which action triggered
        this YYERROR.  */
     YYPOPSTACK (yylen);
     yylen = 0;
     YY_STACK_PRINT (yyss, yyssp);
     yystate = *yyssp;
     goto yyerrlab1;
   
   
   /*-------------------------------------------------------------.
   | yyerrlab1 -- common code for both syntax error and YYERROR.  |
   `-------------------------------------------------------------*/
 yyerrlab1:  yyerrlab1:
   yyerrstatus = 3;      /* Each real token shifted decrements this.  */    yyerrstatus = 3;      /* Each real token shifted decrements this.  */
   
Line 2357  yyerrlab1:
Line 2933  yyerrlab1:
       if (yyssp == yyss)        if (yyssp == yyss)
         YYABORT;          YYABORT;
   
       YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);  
       yydestruct (yystos[yystate], yyvsp);  
       yyvsp--;  
       yystate = *--yyssp;  
   
         yydestruct ("Error: popping",
                     yystos[yystate], yyvsp);
         YYPOPSTACK (1);
         yystate = *yyssp;
       YY_STACK_PRINT (yyss, yyssp);        YY_STACK_PRINT (yyss, yyssp);
     }      }
   
   if (yyn == YYFINAL)  
     YYACCEPT;  
   
   YYDPRINTF ((stderr, "Shifting error token, "));  
   
   *++yyvsp = yylval;    *++yyvsp = yylval;
   
   
     /* Shift the error token.  */
     YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
   
   yystate = yyn;    yystate = yyn;
   goto yynewstate;    goto yynewstate;
   
Line 2391  yyabortlab:
Line 2965  yyabortlab:
   yyresult = 1;    yyresult = 1;
   goto yyreturn;    goto yyreturn;
   
 #ifndef yyoverflow  #if !defined(yyoverflow) || YYERROR_VERBOSE
 /*----------------------------------------------.  /*-------------------------------------------------.
 | yyoverflowlab -- parser overflow comes here.  |  | yyexhaustedlab -- memory exhaustion comes here.  |
 `----------------------------------------------*/  `-------------------------------------------------*/
 yyoverflowlab:  yyexhaustedlab:
   yyerror ("parser stack overflow");    yyerror (YY_("memory exhausted"));
   yyresult = 2;    yyresult = 2;
   /* Fall through.  */    /* Fall through.  */
 #endif  #endif
   
 yyreturn:  yyreturn:
     if (yychar != YYEMPTY)
        yydestruct ("Cleanup: discarding lookahead",
                    yytoken, &yylval);
     /* Do not reclaim the symbols of the rule which action triggered
        this YYABORT or YYACCEPT.  */
     YYPOPSTACK (yylen);
     YY_STACK_PRINT (yyss, yyssp);
     while (yyssp != yyss)
       {
         yydestruct ("Cleanup: popping",
                     yystos[*yyssp], yyvsp);
         YYPOPSTACK (1);
       }
 #ifndef yyoverflow  #ifndef yyoverflow
   if (yyss != yyssa)    if (yyss != yyssa)
     YYSTACK_FREE (yyss);      YYSTACK_FREE (yyss);
 #endif  #endif
   return yyresult;  #if YYERROR_VERBOSE
     if (yymsg != yymsgbuf)
       YYSTACK_FREE (yymsg);
   #endif
     /* Make sure YYID is used.  */
     return YYID (yyresult);
 }  }
   
   
 #line 455 "parse.y"  
   /* Line 1675 of yacc.c  */
   #line 460 "parse.y"
   
   

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>