OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [gdb/] [c-exp.c] - Diff between revs 24 and 33

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
/* A Bison parser, made by GNU Bison 1.875c.  */
/* A Bison parser, made by GNU Bison 1.875c.  */
 
 
/* Skeleton parser for Yacc-like parsing with Bison,
/* Skeleton parser for Yacc-like parsing with Bison,
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
   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
   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 2, or (at your option)
   any later version.
   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, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330,
   Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.  */
   Boston, MA 02111-1307, USA.  */
 
 
/* As a special exception, when this file is copied by Bison into a
/* As a special exception, when this file is copied by Bison into a
   Bison output file, you may use that output file without restriction.
   Bison output file, you may use that output file without restriction.
   This special exception was added by the Free Software Foundation
   This special exception was added by the Free Software Foundation
   in version 1.24 of Bison.  */
   in version 1.24 of Bison.  */
 
 
/* Written by Richard Stallman by simplifying the original so called
/* Written by Richard Stallman by simplifying the original so called
   ``semantic'' parser.  */
   ``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
   variables, as they might otherwise be expanded by user macros.
   variables, as they might otherwise be expanded by user macros.
   There are some unavoidable exceptions within include files to
   There are some unavoidable exceptions within include files to
   define necessary library symbols; they are noted "INFRINGES ON
   define necessary library symbols; they are noted "INFRINGES ON
   USER NAME SPACE" below.  */
   USER NAME SPACE" below.  */
 
 
/* Identify Bison output.  */
/* Identify Bison output.  */
#define YYBISON 1
#define YYBISON 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
 
 
/* Using locations.  */
/* Using locations.  */
#define YYLSP_NEEDED 0
#define YYLSP_NEEDED 0
 
 
 
 
 
 
/* Tokens.  */
/* Tokens.  */
#ifndef YYTOKENTYPE
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
# define YYTOKENTYPE
   /* Put the tokens into the symbol table, so that GDB and other debuggers
   /* Put the tokens into the symbol table, so that GDB and other debuggers
      know about them.  */
      know about them.  */
   enum yytokentype {
   enum yytokentype {
     INT = 258,
     INT = 258,
     FLOAT = 259,
     FLOAT = 259,
     DECFLOAT = 260,
     DECFLOAT = 260,
     STRING = 261,
     STRING = 261,
     NAME = 262,
     NAME = 262,
     TYPENAME = 263,
     TYPENAME = 263,
     NAME_OR_INT = 264,
     NAME_OR_INT = 264,
     STRUCT = 265,
     STRUCT = 265,
     CLASS = 266,
     CLASS = 266,
     UNION = 267,
     UNION = 267,
     ENUM = 268,
     ENUM = 268,
     SIZEOF = 269,
     SIZEOF = 269,
     UNSIGNED = 270,
     UNSIGNED = 270,
     COLONCOLON = 271,
     COLONCOLON = 271,
     TEMPLATE = 272,
     TEMPLATE = 272,
     ERROR = 273,
     ERROR = 273,
     SIGNED_KEYWORD = 274,
     SIGNED_KEYWORD = 274,
     LONG = 275,
     LONG = 275,
     SHORT = 276,
     SHORT = 276,
     INT_KEYWORD = 277,
     INT_KEYWORD = 277,
     CONST_KEYWORD = 278,
     CONST_KEYWORD = 278,
     VOLATILE_KEYWORD = 279,
     VOLATILE_KEYWORD = 279,
     DOUBLE_KEYWORD = 280,
     DOUBLE_KEYWORD = 280,
     VARIABLE = 281,
     VARIABLE = 281,
     ASSIGN_MODIFY = 282,
     ASSIGN_MODIFY = 282,
     TRUEKEYWORD = 283,
     TRUEKEYWORD = 283,
     FALSEKEYWORD = 284,
     FALSEKEYWORD = 284,
     ABOVE_COMMA = 285,
     ABOVE_COMMA = 285,
     OROR = 286,
     OROR = 286,
     ANDAND = 287,
     ANDAND = 287,
     NOTEQUAL = 288,
     NOTEQUAL = 288,
     EQUAL = 289,
     EQUAL = 289,
     GEQ = 290,
     GEQ = 290,
     LEQ = 291,
     LEQ = 291,
     RSH = 292,
     RSH = 292,
     LSH = 293,
     LSH = 293,
     DECREMENT = 294,
     DECREMENT = 294,
     INCREMENT = 295,
     INCREMENT = 295,
     UNARY = 296,
     UNARY = 296,
     ARROW = 297,
     ARROW = 297,
     BLOCKNAME = 298,
     BLOCKNAME = 298,
     FILENAME = 299
     FILENAME = 299
   };
   };
#endif
#endif
#define INT 258
#define INT 258
#define FLOAT 259
#define FLOAT 259
#define DECFLOAT 260
#define DECFLOAT 260
#define STRING 261
#define STRING 261
#define NAME 262
#define NAME 262
#define TYPENAME 263
#define TYPENAME 263
#define NAME_OR_INT 264
#define NAME_OR_INT 264
#define STRUCT 265
#define STRUCT 265
#define CLASS 266
#define CLASS 266
#define UNION 267
#define UNION 267
#define ENUM 268
#define ENUM 268
#define SIZEOF 269
#define SIZEOF 269
#define UNSIGNED 270
#define UNSIGNED 270
#define COLONCOLON 271
#define COLONCOLON 271
#define TEMPLATE 272
#define TEMPLATE 272
#define ERROR 273
#define ERROR 273
#define SIGNED_KEYWORD 274
#define SIGNED_KEYWORD 274
#define LONG 275
#define LONG 275
#define SHORT 276
#define SHORT 276
#define INT_KEYWORD 277
#define INT_KEYWORD 277
#define CONST_KEYWORD 278
#define CONST_KEYWORD 278
#define VOLATILE_KEYWORD 279
#define VOLATILE_KEYWORD 279
#define DOUBLE_KEYWORD 280
#define DOUBLE_KEYWORD 280
#define VARIABLE 281
#define VARIABLE 281
#define ASSIGN_MODIFY 282
#define ASSIGN_MODIFY 282
#define TRUEKEYWORD 283
#define TRUEKEYWORD 283
#define FALSEKEYWORD 284
#define FALSEKEYWORD 284
#define ABOVE_COMMA 285
#define ABOVE_COMMA 285
#define OROR 286
#define OROR 286
#define ANDAND 287
#define ANDAND 287
#define NOTEQUAL 288
#define NOTEQUAL 288
#define EQUAL 289
#define EQUAL 289
#define GEQ 290
#define GEQ 290
#define LEQ 291
#define LEQ 291
#define RSH 292
#define RSH 292
#define LSH 293
#define LSH 293
#define DECREMENT 294
#define DECREMENT 294
#define INCREMENT 295
#define INCREMENT 295
#define UNARY 296
#define UNARY 296
#define ARROW 297
#define ARROW 297
#define BLOCKNAME 298
#define BLOCKNAME 298
#define FILENAME 299
#define FILENAME 299
 
 
 
 
 
 
 
 
/* Copy the first part of user declarations.  */
/* Copy the first part of user declarations.  */
#line 40 "c-exp.y"
#line 40 "c-exp.y"
 
 
 
 
#include "defs.h"
#include "defs.h"
#include "gdb_string.h"
#include "gdb_string.h"
#include <ctype.h>
#include <ctype.h>
#include "expression.h"
#include "expression.h"
#include "value.h"
#include "value.h"
#include "parser-defs.h"
#include "parser-defs.h"
#include "language.h"
#include "language.h"
#include "c-lang.h"
#include "c-lang.h"
#include "bfd.h" /* Required by objfiles.h.  */
#include "bfd.h" /* Required by objfiles.h.  */
#include "symfile.h" /* Required by objfiles.h.  */
#include "symfile.h" /* Required by objfiles.h.  */
#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
#include "charset.h"
#include "charset.h"
#include "block.h"
#include "block.h"
#include "cp-support.h"
#include "cp-support.h"
#include "dfp.h"
#include "dfp.h"
 
 
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
   as well as gratuitiously global symbol names, so we can have multiple
   as well as gratuitiously global symbol names, so we can have multiple
   yacc generated parsers in gdb.  Note that these are only the variables
   yacc generated parsers in gdb.  Note that these are only the variables
   produced by yacc.  If other parser generators (bison, byacc, etc) produce
   produced by yacc.  If other parser generators (bison, byacc, etc) produce
   additional global names that conflict at link time, then those parser
   additional global names that conflict at link time, then those parser
   generators need to be fixed instead of adding those names to this list. */
   generators need to be fixed instead of adding those names to this list. */
 
 
#define yymaxdepth c_maxdepth
#define yymaxdepth c_maxdepth
#define yyparse c_parse
#define yyparse c_parse
#define yylex   c_lex
#define yylex   c_lex
#define yyerror c_error
#define yyerror c_error
#define yylval  c_lval
#define yylval  c_lval
#define yychar  c_char
#define yychar  c_char
#define yydebug c_debug
#define yydebug c_debug
#define yypact  c_pact  
#define yypact  c_pact  
#define yyr1    c_r1                    
#define yyr1    c_r1                    
#define yyr2    c_r2                    
#define yyr2    c_r2                    
#define yydef   c_def           
#define yydef   c_def           
#define yychk   c_chk           
#define yychk   c_chk           
#define yypgo   c_pgo           
#define yypgo   c_pgo           
#define yyact   c_act           
#define yyact   c_act           
#define yyexca  c_exca
#define yyexca  c_exca
#define yyerrflag c_errflag
#define yyerrflag c_errflag
#define yynerrs c_nerrs
#define yynerrs c_nerrs
#define yyps    c_ps
#define yyps    c_ps
#define yypv    c_pv
#define yypv    c_pv
#define yys     c_s
#define yys     c_s
#define yy_yys  c_yys
#define yy_yys  c_yys
#define yystate c_state
#define yystate c_state
#define yytmp   c_tmp
#define yytmp   c_tmp
#define yyv     c_v
#define yyv     c_v
#define yy_yyv  c_yyv
#define yy_yyv  c_yyv
#define yyval   c_val
#define yyval   c_val
#define yylloc  c_lloc
#define yylloc  c_lloc
#define yyreds  c_reds          /* With YYDEBUG defined */
#define yyreds  c_reds          /* With YYDEBUG defined */
#define yytoks  c_toks          /* With YYDEBUG defined */
#define yytoks  c_toks          /* With YYDEBUG defined */
#define yyname  c_name          /* With YYDEBUG defined */
#define yyname  c_name          /* With YYDEBUG defined */
#define yyrule  c_rule          /* With YYDEBUG defined */
#define yyrule  c_rule          /* With YYDEBUG defined */
#define yylhs   c_yylhs
#define yylhs   c_yylhs
#define yylen   c_yylen
#define yylen   c_yylen
#define yydefred c_yydefred
#define yydefred c_yydefred
#define yydgoto c_yydgoto
#define yydgoto c_yydgoto
#define yysindex c_yysindex
#define yysindex c_yysindex
#define yyrindex c_yyrindex
#define yyrindex c_yyrindex
#define yygindex c_yygindex
#define yygindex c_yygindex
#define yytable  c_yytable
#define yytable  c_yytable
#define yycheck  c_yycheck
#define yycheck  c_yycheck
 
 
#ifndef YYDEBUG
#ifndef YYDEBUG
#define YYDEBUG 1               /* Default to yydebug support */
#define YYDEBUG 1               /* Default to yydebug support */
#endif
#endif
 
 
#define YYFPRINTF parser_fprintf
#define YYFPRINTF parser_fprintf
 
 
int yyparse (void);
int yyparse (void);
 
 
static int yylex (void);
static int yylex (void);
 
 
void yyerror (char *);
void yyerror (char *);
 
 
 
 
 
 
/* Enabling traces.  */
/* Enabling traces.  */
#ifndef YYDEBUG
#ifndef YYDEBUG
# define YYDEBUG 0
# define YYDEBUG 0
#endif
#endif
 
 
/* Enabling verbose error messages.  */
/* Enabling verbose error messages.  */
#ifdef YYERROR_VERBOSE
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
# define YYERROR_VERBOSE 1
#else
#else
# define YYERROR_VERBOSE 0
# define YYERROR_VERBOSE 0
#endif
#endif
 
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
#line 125 "c-exp.y"
#line 125 "c-exp.y"
typedef union YYSTYPE {
typedef union YYSTYPE {
    LONGEST lval;
    LONGEST lval;
    struct {
    struct {
      LONGEST val;
      LONGEST val;
      struct type *type;
      struct type *type;
    } typed_val_int;
    } typed_val_int;
    struct {
    struct {
      DOUBLEST dval;
      DOUBLEST dval;
      struct type *type;
      struct type *type;
    } typed_val_float;
    } typed_val_float;
    struct {
    struct {
      gdb_byte val[16];
      gdb_byte val[16];
      struct type *type;
      struct type *type;
    } typed_val_decfloat;
    } typed_val_decfloat;
    struct symbol *sym;
    struct symbol *sym;
    struct type *tval;
    struct type *tval;
    struct stoken sval;
    struct stoken sval;
    struct ttype tsym;
    struct ttype tsym;
    struct symtoken ssym;
    struct symtoken ssym;
    int voidval;
    int voidval;
    struct block *bval;
    struct block *bval;
    enum exp_opcode opcode;
    enum exp_opcode opcode;
    struct internalvar *ivar;
    struct internalvar *ivar;
 
 
    struct type **tvec;
    struct type **tvec;
    int *ivec;
    int *ivec;
  } YYSTYPE;
  } YYSTYPE;
/* Line 191 of yacc.c.  */
/* Line 191 of yacc.c.  */
#line 272 "c-exp.c.tmp"
#line 272 "c-exp.c.tmp"
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
#endif
 
 
 
 
 
 
/* Copy the second part of user declarations.  */
/* Copy the second part of user declarations.  */
#line 153 "c-exp.y"
#line 153 "c-exp.y"
 
 
/* YYSTYPE gets defined by %union */
/* YYSTYPE gets defined by %union */
static int parse_number (char *, int, int, YYSTYPE *);
static int parse_number (char *, int, int, YYSTYPE *);
 
 
 
 
/* Line 214 of yacc.c.  */
/* Line 214 of yacc.c.  */
#line 288 "c-exp.c.tmp"
#line 288 "c-exp.c.tmp"
 
 
#if ! defined (yyoverflow) || YYERROR_VERBOSE
#if ! defined (yyoverflow) || YYERROR_VERBOSE
 
 
# ifndef YYFREE
# ifndef YYFREE
#  define YYFREE free
#  define YYFREE free
# endif
# endif
# ifndef YYMALLOC
# ifndef YYMALLOC
#  define YYMALLOC xmalloc
#  define YYMALLOC xmalloc
# endif
# endif
 
 
/* The parser invokes alloca or xmalloc; define the necessary symbols.  */
/* The parser invokes alloca or xmalloc; define the necessary symbols.  */
 
 
# ifdef YYSTACK_USE_ALLOCA
# ifdef YYSTACK_USE_ALLOCA
#  if YYSTACK_USE_ALLOCA
#  if YYSTACK_USE_ALLOCA
#   define YYSTACK_ALLOC alloca
#   define YYSTACK_ALLOC alloca
#  endif
#  endif
# else
# else
#  if defined (alloca) || defined (_ALLOCA_H)
#  if defined (alloca) || defined (_ALLOCA_H)
#   define YYSTACK_ALLOC alloca
#   define YYSTACK_ALLOC alloca
#  else
#  else
#   ifdef __GNUC__
#   ifdef __GNUC__
#    define YYSTACK_ALLOC __builtin_alloca
#    define YYSTACK_ALLOC __builtin_alloca
#   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 (0)
# else
# else
#  if defined (__STDC__) || defined (__cplusplus)
#  if defined (__STDC__) || defined (__cplusplus)
#   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#   define YYSIZE_T size_t
#   define YYSIZE_T size_t
#  endif
#  endif
#  define YYSTACK_ALLOC YYMALLOC
#  define YYSTACK_ALLOC YYMALLOC
#  define YYSTACK_FREE YYFREE
#  define YYSTACK_FREE YYFREE
# endif
# endif
#endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
#endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
 
 
 
 
#if (! defined (yyoverflow) \
#if (! defined (yyoverflow) \
     && (! defined (__cplusplus) \
     && (! defined (__cplusplus) \
         || (defined (YYSTYPE_IS_TRIVIAL) && 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;
  short yyss;
  YYSTYPE yyvs;
  YYSTYPE yyvs;
  };
  };
 
 
/* 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)
 
 
/* 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 (short) + 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 defined (__GNUC__) && 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;                \
          register 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 (0)
#  endif
#  endif
# endif
# endif
 
 
/* Relocate STACK from its old location to the new one.  The
/* Relocate STACK from its old location to the new one.  The
   local variables YYSIZE and YYSTACKSIZE give the old and new number of
   local variables YYSIZE and YYSTACKSIZE give the old and new number of
   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)                                        \
    do                                                                  \
    do                                                                  \
      {                                                                 \
      {                                                                 \
        YYSIZE_T yynewbytes;                                            \
        YYSIZE_T yynewbytes;                                            \
        YYCOPY (&yyptr->Stack, Stack, yysize);                          \
        YYCOPY (&yyptr->Stack, Stack, yysize);                          \
        Stack = &yyptr->Stack;                                          \
        Stack = &yyptr->Stack;                                          \
        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 (0)
 
 
#endif
#endif
 
 
#if defined (__STDC__) || defined (__cplusplus)
#if defined (__STDC__) || defined (__cplusplus)
   typedef signed char yysigned_char;
   typedef signed char yysigned_char;
#else
#else
   typedef short yysigned_char;
   typedef short yysigned_char;
#endif
#endif
 
 
/* YYFINAL -- State number of the termination state. */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL  97
#define YYFINAL  97
/* YYLAST -- Last index in YYTABLE.  */
/* YYLAST -- Last index in YYTABLE.  */
#define YYLAST   771
#define YYLAST   771
 
 
/* YYNTOKENS -- Number of terminals. */
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS  69
#define YYNTOKENS  69
/* YYNNTS -- Number of nonterminals. */
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS  31
#define YYNNTS  31
/* YYNRULES -- Number of rules. */
/* YYNRULES -- Number of rules. */
#define YYNRULES  160
#define YYNRULES  160
/* YYNRULES -- Number of states. */
/* YYNRULES -- Number of states. */
#define YYNSTATES  242
#define YYNSTATES  242
 
 
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
#define YYUNDEFTOK  2
#define YYUNDEFTOK  2
#define YYMAXUTOK   299
#define YYMAXUTOK   299
 
 
#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 unsigned char 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,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,    62,     2,     2,     2,    52,    38,     2,
       2,     2,     2,    62,     2,     2,     2,    52,    38,     2,
      58,    65,    50,    48,    30,    49,    56,    51,     2,     2,
      58,    65,    50,    48,    30,    49,    56,    51,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,    68,     2,
       2,     2,     2,     2,     2,     2,     2,     2,    68,     2,
      41,    32,    42,    33,    47,     2,     2,     2,     2,     2,
      41,    32,    42,    33,    47,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,    57,     2,    64,    37,     2,     2,     2,     2,     2,
       2,    57,     2,    64,    37,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,    66,    36,    67,    63,     2,     2,     2,
       2,     2,     2,    66,    36,    67,    63,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
       2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
      25,    26,    27,    28,    29,    31,    34,    35,    39,    40,
      25,    26,    27,    28,    29,    31,    34,    35,    39,    40,
      43,    44,    45,    46,    53,    54,    55,    59,    60,    61
      43,    44,    45,    46,    53,    54,    55,    59,    60,    61
};
};
 
 
#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 unsigned short yyprhs[] =
{
{
       0,     0,     3,     5,     7,     9,    11,    15,    18,    21,
       0,     0,     3,     5,     7,     9,    11,    15,    18,    21,
      24,    27,    30,    33,    36,    39,    42,    45,    48,    52,
      24,    27,    30,    33,    36,    39,    42,    45,    48,    52,
      56,    61,    65,    69,    74,    79,    80,    86,    88,    89,
      56,    61,    65,    69,    74,    79,    80,    86,    88,    89,
      91,    95,    97,   101,   106,   111,   115,   119,   123,   127,
      91,    95,    97,   101,   106,   111,   115,   119,   123,   127,
     131,   135,   139,   143,   147,   151,   155,   159,   163,   167,
     131,   135,   139,   143,   147,   151,   155,   159,   163,   167,
     171,   175,   179,   183,   187,   191,   197,   201,   205,   207,
     171,   175,   179,   183,   187,   191,   197,   201,   205,   207,
     209,   211,   213,   215,   217,   222,   224,   226,   228,   230,
     209,   211,   213,   215,   217,   222,   224,   226,   228,   230,
     232,   236,   240,   244,   249,   251,   254,   256,   259,   261,
     232,   236,   240,   244,   249,   251,   254,   256,   259,   261,
     262,   266,   268,   270,   272,   273,   275,   278,   280,   283,
     262,   266,   268,   270,   272,   273,   275,   278,   280,   283,
     285,   289,   292,   294,   297,   299,   302,   306,   309,   313,
     285,   289,   292,   294,   297,   299,   302,   306,   309,   313,
     315,   317,   319,   321,   323,   326,   330,   333,   337,   341,
     315,   317,   319,   321,   323,   326,   330,   333,   337,   341,
     345,   348,   351,   355,   360,   364,   368,   373,   377,   382,
     345,   348,   351,   355,   360,   364,   368,   373,   377,   382,
     386,   391,   394,   398,   401,   405,   408,   412,   414,   417,
     386,   391,   394,   398,   401,   405,   408,   412,   414,   417,
     420,   423,   426,   429,   432,   434,   437,   439,   445,   448,
     420,   423,   426,   429,   432,   434,   437,   439,   445,   448,
     451,   453,   457,   459,   461,   463,   465,   467,   471,   473,
     451,   453,   457,   459,   461,   463,   465,   467,   471,   473,
     478,   481,   484,   486,   488,   490,   492,   494,   496,   498,
     478,   481,   484,   486,   488,   490,   492,   494,   496,   498,
     500
     500
};
};
 
 
/* 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 yysigned_char yyrhs[] =
{
{
      70,     0,    -1,    72,    -1,    71,    -1,    90,    -1,    73,
      70,     0,    -1,    72,    -1,    71,    -1,    90,    -1,    73,
      -1,    72,    30,    73,    -1,    50,    73,    -1,    38,    73,
      -1,    72,    30,    73,    -1,    50,    73,    -1,    38,    73,
      -1,    49,    73,    -1,    48,    73,    -1,    62,    73,    -1,
      -1,    49,    73,    -1,    48,    73,    -1,    62,    73,    -1,
      63,    73,    -1,    54,    73,    -1,    53,    73,    -1,    73,
      63,    73,    -1,    54,    73,    -1,    53,    73,    -1,    73,
      54,    -1,    73,    53,    -1,    14,    73,    -1,    73,    59,
      54,    -1,    73,    53,    -1,    14,    73,    -1,    73,    59,
      98,    -1,    73,    59,    80,    -1,    73,    59,    50,    73,
      98,    -1,    73,    59,    80,    -1,    73,    59,    50,    73,
      -1,    73,    56,    98,    -1,    73,    56,    80,    -1,    73,
      -1,    73,    56,    98,    -1,    73,    56,    80,    -1,    73,
      56,    50,    73,    -1,    73,    57,    72,    64,    -1,    -1,
      56,    50,    73,    -1,    73,    57,    72,    64,    -1,    -1,
      73,    58,    74,    76,    65,    -1,    66,    -1,    -1,    73,
      73,    58,    74,    76,    65,    -1,    66,    -1,    -1,    73,
      -1,    76,    30,    73,    -1,    67,    -1,    75,    76,    77,
      -1,    76,    30,    73,    -1,    67,    -1,    75,    76,    77,
      -1,    75,    90,    77,    73,    -1,    58,    90,    65,    73,
      -1,    75,    90,    77,    73,    -1,    58,    90,    65,    73,
      -1,    58,    72,    65,    -1,    73,    47,    73,    -1,    73,
      -1,    58,    72,    65,    -1,    73,    47,    73,    -1,    73,
      50,    73,    -1,    73,    51,    73,    -1,    73,    52,    73,
      50,    73,    -1,    73,    51,    73,    -1,    73,    52,    73,
      -1,    73,    48,    73,    -1,    73,    49,    73,    -1,    73,
      -1,    73,    48,    73,    -1,    73,    49,    73,    -1,    73,
      46,    73,    -1,    73,    45,    73,    -1,    73,    40,    73,
      46,    73,    -1,    73,    45,    73,    -1,    73,    40,    73,
      -1,    73,    39,    73,    -1,    73,    44,    73,    -1,    73,
      -1,    73,    39,    73,    -1,    73,    44,    73,    -1,    73,
      43,    73,    -1,    73,    41,    73,    -1,    73,    42,    73,
      43,    73,    -1,    73,    41,    73,    -1,    73,    42,    73,
      -1,    73,    38,    73,    -1,    73,    37,    73,    -1,    73,
      -1,    73,    38,    73,    -1,    73,    37,    73,    -1,    73,
      36,    73,    -1,    73,    35,    73,    -1,    73,    34,    73,
      36,    73,    -1,    73,    35,    73,    -1,    73,    34,    73,
      -1,    73,    33,    73,    68,    73,    -1,    73,    32,    73,
      -1,    73,    33,    73,    68,    73,    -1,    73,    32,    73,
      -1,    73,    27,    73,    -1,     3,    -1,     9,    -1,     4,
      -1,    73,    27,    73,    -1,     3,    -1,     9,    -1,     4,
      -1,     5,    -1,    79,    -1,    26,    -1,    14,    58,    90,
      -1,     5,    -1,    79,    -1,    26,    -1,    14,    58,    90,
      65,    -1,     6,    -1,    28,    -1,    29,    -1,    60,    -1,
      65,    -1,     6,    -1,    28,    -1,    29,    -1,    60,    -1,
      61,    -1,    78,    16,    98,    -1,    78,    16,    98,    -1,
      61,    -1,    78,    16,    98,    -1,    78,    16,    98,    -1,
      91,    16,    98,    -1,    91,    16,    63,    98,    -1,    80,
      91,    16,    98,    -1,    91,    16,    63,    98,    -1,    80,
      -1,    16,    98,    -1,    99,    -1,    47,     7,    -1,    97,
      -1,    16,    98,    -1,    99,    -1,    47,     7,    -1,    97,
      -1,    -1,    82,    81,    82,    -1,    83,    -1,    97,    -1,
      -1,    -1,    82,    81,    82,    -1,    83,    -1,    97,    -1,
      84,    -1,    -1,    50,    -1,    50,    86,    -1,    38,    -1,
      84,    -1,    -1,    50,    -1,    50,    86,    -1,    38,    -1,
      38,    86,    -1,    87,    -1,    58,    86,    65,    -1,    87,
      38,    86,    -1,    87,    -1,    58,    86,    65,    -1,    87,
      88,    -1,    88,    -1,    87,    89,    -1,    89,    -1,    57,
      88,    -1,    88,    -1,    87,    89,    -1,    89,    -1,    57,
      64,    -1,    57,     3,    64,    -1,    58,    65,    -1,    58,
      64,    -1,    57,     3,    64,    -1,    58,    65,    -1,    58,
      94,    65,    -1,    95,    -1,     8,    -1,    22,    -1,    20,
      94,    65,    -1,    95,    -1,     8,    -1,    22,    -1,    20,
      -1,    21,    -1,    20,    22,    -1,    20,    19,    22,    -1,
      -1,    21,    -1,    20,    22,    -1,    20,    19,    22,    -1,
      20,    19,    -1,    19,    20,    22,    -1,    15,    20,    22,
      20,    19,    -1,    19,    20,    22,    -1,    15,    20,    22,
      -1,    20,    15,    22,    -1,    20,    15,    -1,    20,    20,
      -1,    20,    15,    22,    -1,    20,    15,    -1,    20,    20,
      -1,    20,    20,    22,    -1,    20,    20,    19,    22,    -1,
      -1,    20,    20,    22,    -1,    20,    20,    19,    22,    -1,
      20,    20,    19,    -1,    19,    20,    20,    -1,    19,    20,
      20,    20,    19,    -1,    19,    20,    20,    -1,    19,    20,
      20,    22,    -1,    15,    20,    20,    -1,    15,    20,    20,
      20,    22,    -1,    15,    20,    20,    -1,    15,    20,    20,
      22,    -1,    20,    20,    15,    -1,    20,    20,    15,    22,
      22,    -1,    20,    20,    15,    -1,    20,    20,    15,    22,
      -1,    21,    22,    -1,    21,    19,    22,    -1,    21,    19,
      -1,    21,    22,    -1,    21,    19,    22,    -1,    21,    19,
      -1,    15,    21,    22,    -1,    21,    15,    -1,    21,    15,
      -1,    15,    21,    22,    -1,    21,    15,    -1,    21,    15,
      22,    -1,    25,    -1,    20,    25,    -1,    10,    98,    -1,
      22,    -1,    25,    -1,    20,    25,    -1,    10,    98,    -1,
      11,    98,    -1,    12,    98,    -1,    13,    98,    -1,    15,
      11,    98,    -1,    12,    98,    -1,    13,    98,    -1,    15,
      93,    -1,    15,    -1,    19,    93,    -1,    19,    -1,    17,
      93,    -1,    15,    -1,    19,    93,    -1,    19,    -1,    17,
      98,    41,    90,    42,    -1,    84,    91,    -1,    91,    84,
      98,    41,    90,    42,    -1,    84,    91,    -1,    91,    84,
      -1,    92,    -1,    91,    16,    98,    -1,     8,    -1,    22,
      -1,    92,    -1,    91,    16,    98,    -1,     8,    -1,    22,
      -1,    20,    -1,    21,    -1,    90,    -1,    94,    30,    90,
      -1,    20,    -1,    21,    -1,    90,    -1,    94,    30,    90,
      -1,    91,    -1,    95,    85,    86,    85,    -1,    23,    24,
      -1,    91,    -1,    95,    85,    86,    85,    -1,    23,    24,
      -1,    24,    23,    -1,    96,    -1,    23,    -1,    24,    -1,
      -1,    24,    23,    -1,    96,    -1,    23,    -1,    24,    -1,
       7,    -1,    60,    -1,     8,    -1,     9,    -1,     7,    -1,
       7,    -1,    60,    -1,     8,    -1,     9,    -1,     7,    -1,
      60,    -1
      60,    -1
};
};
 
 
/* 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 unsigned short yyrline[] =
{
{
       0,   237,   237,   238,   241,   248,   249,   254,   258,   262,
       0,   237,   237,   238,   241,   248,   249,   254,   258,   262,
     266,   270,   274,   278,   282,   286,   290,   294,   298,   304,
     266,   270,   274,   278,   282,   286,   290,   294,   298,   304,
     312,   316,   322,   330,   334,   341,   338,   348,   352,   355,
     312,   316,   322,   330,   334,   341,   338,   348,   352,   355,
     359,   363,   366,   373,   379,   385,   391,   395,   399,   403,
     359,   363,   366,   373,   379,   385,   391,   395,   399,   403,
     407,   411,   415,   419,   423,   427,   431,   435,   439,   443,
     407,   411,   415,   419,   423,   427,   431,   435,   439,   443,
     447,   451,   455,   459,   463,   467,   471,   475,   481,   488,
     447,   451,   455,   459,   463,   467,   471,   475,   481,   488,
     499,   506,   513,   516,   520,   528,   553,   560,   569,   577,
     499,   506,   513,   516,   520,   528,   553,   560,   569,   577,
     583,   594,   610,   624,   649,   650,   684,   741,   747,   748,
     583,   594,   610,   624,   649,   650,   684,   741,   747,   748,
     751,   754,   755,   759,   760,   763,   765,   767,   769,   771,
     751,   754,   755,   759,   760,   763,   765,   767,   769,   771,
     774,   776,   781,   788,   790,   794,   796,   800,   802,   814,
     774,   776,   781,   788,   790,   794,   796,   800,   802,   814,
     818,   820,   822,   824,   826,   828,   830,   832,   834,   836,
     818,   820,   822,   824,   826,   828,   830,   832,   834,   836,
     838,   840,   842,   844,   846,   848,   850,   852,   854,   856,
     838,   840,   842,   844,   846,   848,   850,   852,   854,   856,
     858,   860,   862,   864,   866,   868,   870,   872,   874,   876,
     858,   860,   862,   864,   866,   868,   870,   872,   874,   876,
     879,   882,   885,   888,   890,   892,   894,   899,   903,   905,
     879,   882,   885,   888,   890,   892,   894,   899,   903,   905,
     907,   955,   980,   981,   987,   993,  1002,  1007,  1014,  1015,
     907,   955,   980,   981,   987,   993,  1002,  1007,  1014,  1015,
    1019,  1020,  1023,  1027,  1029,  1033,  1034,  1035,  1036,  1039,
    1019,  1020,  1023,  1027,  1029,  1033,  1034,  1035,  1036,  1039,
    1040
    1040
};
};
#endif
#endif
 
 
#if YYDEBUG || YYERROR_VERBOSE
#if YYDEBUG || YYERROR_VERBOSE
/* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
/* YYTNME[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", "INT", "FLOAT", "DECFLOAT", "STRING",
  "$end", "error", "$undefined", "INT", "FLOAT", "DECFLOAT", "STRING",
  "NAME", "TYPENAME", "NAME_OR_INT", "STRUCT", "CLASS", "UNION", "ENUM",
  "NAME", "TYPENAME", "NAME_OR_INT", "STRUCT", "CLASS", "UNION", "ENUM",
  "SIZEOF", "UNSIGNED", "COLONCOLON", "TEMPLATE", "ERROR",
  "SIZEOF", "UNSIGNED", "COLONCOLON", "TEMPLATE", "ERROR",
  "SIGNED_KEYWORD", "LONG", "SHORT", "INT_KEYWORD", "CONST_KEYWORD",
  "SIGNED_KEYWORD", "LONG", "SHORT", "INT_KEYWORD", "CONST_KEYWORD",
  "VOLATILE_KEYWORD", "DOUBLE_KEYWORD", "VARIABLE", "ASSIGN_MODIFY",
  "VOLATILE_KEYWORD", "DOUBLE_KEYWORD", "VARIABLE", "ASSIGN_MODIFY",
  "TRUEKEYWORD", "FALSEKEYWORD", "','", "ABOVE_COMMA", "'='", "'?'",
  "TRUEKEYWORD", "FALSEKEYWORD", "','", "ABOVE_COMMA", "'='", "'?'",
  "OROR", "ANDAND", "'|'", "'^'", "'&'", "NOTEQUAL", "EQUAL", "'<'", "'>'",
  "OROR", "ANDAND", "'|'", "'^'", "'&'", "NOTEQUAL", "EQUAL", "'<'", "'>'",
  "GEQ", "LEQ", "RSH", "LSH", "'@'", "'+'", "'-'", "'*'", "'/'", "'%'",
  "GEQ", "LEQ", "RSH", "LSH", "'@'", "'+'", "'-'", "'*'", "'/'", "'%'",
  "DECREMENT", "INCREMENT", "UNARY", "'.'", "'['", "'('", "ARROW",
  "DECREMENT", "INCREMENT", "UNARY", "'.'", "'['", "'('", "ARROW",
  "BLOCKNAME", "FILENAME", "'!'", "'~'", "']'", "')'", "'{'", "'}'", "':'",
  "BLOCKNAME", "FILENAME", "'!'", "'~'", "']'", "')'", "'{'", "'}'", "':'",
  "$accept", "start", "type_exp", "exp1", "exp", "@1", "lcurly", "arglist",
  "$accept", "start", "type_exp", "exp1", "exp", "@1", "lcurly", "arglist",
  "rcurly", "block", "variable", "qualified_name", "space_identifier",
  "rcurly", "block", "variable", "qualified_name", "space_identifier",
  "const_or_volatile", "cv_with_space_id",
  "const_or_volatile", "cv_with_space_id",
  "const_or_volatile_or_space_identifier_noopt",
  "const_or_volatile_or_space_identifier_noopt",
  "const_or_volatile_or_space_identifier", "abs_decl", "direct_abs_decl",
  "const_or_volatile_or_space_identifier", "abs_decl", "direct_abs_decl",
  "array_mod", "func_mod", "type", "typebase", "qualified_type",
  "array_mod", "func_mod", "type", "typebase", "qualified_type",
  "typename", "nonempty_typelist", "ptype", "const_and_volatile",
  "typename", "nonempty_typelist", "ptype", "const_and_volatile",
  "const_or_volatile_noopt", "name", "name_not_typename", 0
  "const_or_volatile_noopt", "name", "name_not_typename", 0
};
};
#endif
#endif
 
 
# 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 unsigned short 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,
     275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
     275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
      44,   285,    61,    63,   286,   287,   124,    94,    38,   288,
      44,   285,    61,    63,   286,   287,   124,    94,    38,   288,
     289,    60,    62,   290,   291,   292,   293,    64,    43,    45,
     289,    60,    62,   290,   291,   292,   293,    64,    43,    45,
      42,    47,    37,   294,   295,   296,    46,    91,    40,   297,
      42,    47,    37,   294,   295,   296,    46,    91,    40,   297,
     298,   299,    33,   126,    93,    41,   123,   125,    58
     298,   299,    33,   126,    93,    41,   123,   125,    58
};
};
# 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 unsigned char yyr1[] =
{
{
       0,    69,    70,    70,    71,    72,    72,    73,    73,    73,
       0,    69,    70,    70,    71,    72,    72,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    74,    73,    75,    76,    76,
      73,    73,    73,    73,    73,    74,    73,    75,    76,    76,
      76,    77,    73,    73,    73,    73,    73,    73,    73,    73,
      76,    77,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    78,    78,
      73,    73,    73,    73,    73,    73,    73,    73,    78,    78,
      78,    79,    80,    80,    79,    79,    79,    81,    82,    82,
      78,    79,    80,    80,    79,    79,    79,    81,    82,    82,
      83,    84,    84,    85,    85,    86,    86,    86,    86,    86,
      83,    84,    84,    85,    85,    86,    86,    86,    86,    86,
      87,    87,    87,    87,    87,    88,    88,    89,    89,    90,
      87,    87,    87,    87,    87,    88,    88,    89,    89,    90,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    91,    91,    91,    91,    91,    91,    91,    91,    91,
      91,    92,    93,    93,    93,    93,    94,    94,    95,    95,
      91,    92,    93,    93,    93,    93,    94,    94,    95,    95,
      96,    96,    97,    97,    97,    98,    98,    98,    98,    99,
      96,    96,    97,    97,    97,    98,    98,    98,    98,    99,
      99
      99
};
};
 
 
/* 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 unsigned char yyr2[] =
{
{
       0,     2,     1,     1,     1,     1,     3,     2,     2,     2,
       0,     2,     1,     1,     1,     1,     3,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     3,     3,
       2,     2,     2,     2,     2,     2,     2,     2,     3,     3,
       4,     3,     3,     4,     4,     0,     5,     1,     0,     1,
       4,     3,     3,     4,     4,     0,     5,     1,     0,     1,
       3,     1,     3,     4,     4,     3,     3,     3,     3,     3,
       3,     1,     3,     4,     4,     3,     3,     3,     3,     3,
       3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
       3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
       3,     3,     3,     3,     3,     5,     3,     3,     1,     1,
       3,     3,     3,     3,     3,     5,     3,     3,     1,     1,
       1,     1,     1,     1,     4,     1,     1,     1,     1,     1,
       1,     1,     1,     1,     4,     1,     1,     1,     1,     1,
       3,     3,     3,     4,     1,     2,     1,     2,     1,     0,
       3,     3,     3,     4,     1,     2,     1,     2,     1,     0,
       3,     1,     1,     1,     0,     1,     2,     1,     2,     1,
       3,     1,     1,     1,     0,     1,     2,     1,     2,     1,
       3,     2,     1,     2,     1,     2,     3,     2,     3,     1,
       3,     2,     1,     2,     1,     2,     3,     2,     3,     1,
       1,     1,     1,     1,     2,     3,     2,     3,     3,     3,
       1,     1,     1,     1,     2,     3,     2,     3,     3,     3,
       2,     2,     3,     4,     3,     3,     4,     3,     4,     3,
       2,     2,     3,     4,     3,     3,     4,     3,     4,     3,
       4,     2,     3,     2,     3,     2,     3,     1,     2,     2,
       4,     2,     3,     2,     3,     2,     3,     1,     2,     2,
       2,     2,     2,     2,     1,     2,     1,     5,     2,     2,
       2,     2,     2,     2,     1,     2,     1,     5,     2,     2,
       1,     3,     1,     1,     1,     1,     1,     3,     1,     4,
       1,     3,     1,     1,     1,     1,     1,     3,     1,     4,
       2,     2,     1,     1,     1,     1,     1,     1,     1,     1,
       2,     2,     1,     1,     1,     1,     1,     1,     1,     1,
       1
       1
};
};
 
 
/* 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 unsigned char yydefact[] =
{
{
      79,    58,    60,    61,    65,   159,   100,    59,     0,     0,
      79,    58,    60,    61,    65,   159,   100,    59,     0,     0,
       0,     0,    79,   134,     0,     0,   136,   102,   103,   101,
       0,     0,    79,   134,     0,     0,   136,   102,   103,   101,
     153,   154,   127,    63,    66,    67,    79,    79,    79,    79,
     153,   154,   127,    63,    66,    67,    79,    79,    79,    79,
      79,    79,    79,   160,    69,    79,    79,    27,     0,     3,
      79,    79,    79,   160,    69,    79,    79,    27,     0,     3,
       2,     5,    28,     0,    62,    74,     0,    81,    79,     4,
       2,     5,    28,     0,    62,    74,     0,    81,    79,     4,
     148,   140,    99,   152,    82,    76,   155,   157,   158,   156,
     148,   140,    99,   152,    82,    76,   155,   157,   158,   156,
     129,   130,   131,   132,    79,    17,    79,   142,   144,   145,
     129,   130,   131,   132,    79,    17,    79,   142,   144,   145,
     143,   133,    75,     0,   144,   145,   135,   110,   106,   111,
     143,   133,    75,     0,   144,   145,   135,   110,   106,   111,
     104,   128,   125,   123,   121,   150,   151,     8,    10,     9,
     104,   128,   125,   123,   121,   150,   151,     8,    10,     9,
       7,    14,    13,     0,     0,    11,    12,     1,    79,    79,
       7,    14,    13,     0,     0,    11,    12,     1,    79,    79,
      79,    79,    79,    79,    79,    79,    79,    79,    79,    79,
      79,    79,    79,    79,    79,    79,    79,    79,    79,    79,
      79,    79,    79,    79,    79,    79,    79,    79,    79,    79,
      79,    79,    79,    79,    79,    79,    79,    79,    79,    79,
      79,    16,    15,    79,    79,    25,    79,    29,     0,     0,
      79,    16,    15,    79,    79,    25,    79,    29,     0,     0,
       0,     0,    79,   138,     0,   139,    83,     0,     0,   117,
       0,     0,    79,   138,     0,   139,    83,     0,     0,   117,
     108,   124,    79,   115,   107,   109,   105,   119,   114,   112,
     108,   124,    79,   115,   107,   109,   105,   119,   114,   112,
     126,   122,    35,    79,     6,    57,    56,     0,    54,    53,
     126,   122,    35,    79,     6,    57,    56,     0,    54,    53,
      52,    51,    50,    45,    44,    48,    49,    47,    46,    43,
      52,    51,    50,    45,    44,    48,    49,    47,    46,    43,
      42,    36,    40,    41,    37,    38,    39,   157,    79,    22,
      42,    36,    40,    41,    37,    38,    39,   157,    79,    22,
      21,     0,    28,    79,    19,    18,    79,    31,    32,    79,
      21,     0,    28,    79,    19,    18,    79,    31,    32,    79,
      71,    77,    80,    78,     0,     0,    72,    87,    85,     0,
      71,    77,    80,    78,     0,     0,    72,    87,    85,     0,
      79,    84,    89,    92,    94,    64,   118,     0,   148,   116,
      79,    84,    89,    92,    94,    64,   118,     0,   148,   116,
     120,   113,    34,    79,    23,    24,     0,    20,    30,    33,
     120,   113,    34,    79,    23,    24,     0,    20,    30,    33,
     141,    73,    88,    86,     0,    95,    97,     0,   146,     0,
     141,    73,    88,    86,     0,    95,    97,     0,   146,     0,
     149,    79,    91,    93,   137,    55,    26,    96,    90,    79,
     149,    79,    91,    93,   137,    55,    26,    96,    90,    79,
      98,   147
      98,   147
};
};
 
 
/* YYDEFGOTO[NTERM-NUM]. */
/* YYDEFGOTO[NTERM-NUM]. */
static const short yydefgoto[] =
static const short yydefgoto[] =
{
{
      -1,    38,    39,    93,    41,   182,    42,   128,   188,    43,
      -1,    38,    39,    93,    41,   182,    42,   128,   188,    43,
      44,    45,   132,    46,    47,    48,   137,   201,   202,   203,
      44,    45,   132,    46,    47,    48,   137,   201,   202,   203,
     204,   228,    66,    51,    71,   229,    52,    53,    54,    60,
     204,   228,    66,    51,    71,   229,    52,    53,    54,    60,
      55
      55
};
};
 
 
/* 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 -142
#define YYPACT_NINF -142
static const short yypact[] =
static const short yypact[] =
{
{
     268,  -142,  -142,  -142,  -142,  -142,  -142,  -142,     7,     7,
     268,  -142,  -142,  -142,  -142,  -142,  -142,  -142,     7,     7,
       7,     7,   332,    33,     7,     7,    64,   116,   125,  -142,
       7,     7,   332,    33,     7,     7,    64,   116,   125,  -142,
     -11,    13,  -142,  -142,  -142,  -142,   268,   268,   268,   268,
     -11,    13,  -142,  -142,  -142,  -142,   268,   268,   268,   268,
     268,   268,   268,    24,  -142,   268,   268,  -142,    46,  -142,
     268,   268,   268,    24,  -142,   268,   268,  -142,    46,  -142,
      20,   529,   204,    72,  -142,  -142,    68,  -142,   290,  -142,
      20,   529,   204,    72,  -142,  -142,    68,  -142,   290,  -142,
     105,  -142,   443,  -142,    73,  -142,  -142,  -142,  -142,  -142,
     105,  -142,   443,  -142,    73,  -142,  -142,  -142,  -142,  -142,
    -142,  -142,  -142,  -142,   268,   438,    15,  -142,    54,   102,
    -142,  -142,  -142,  -142,   268,   438,    15,  -142,    54,   102,
    -142,  -142,  -142,    93,    67,  -142,  -142,   115,   117,   219,
    -142,  -142,  -142,    93,    67,  -142,  -142,   115,   117,   219,
    -142,  -142,   132,   147,  -142,  -142,  -142,   438,   438,   438,
    -142,  -142,   132,   147,  -142,  -142,  -142,   438,   438,   438,
     438,   438,   438,   -21,   101,   438,   438,  -142,   268,   268,
     438,   438,   438,   -21,   101,   438,   438,  -142,   268,   268,
     268,   268,   268,   268,   268,   268,   268,   268,   268,   268,
     268,   268,   268,   268,   268,   268,   268,   268,   268,   268,
     268,   268,   268,   268,   268,   268,   268,   268,   268,   268,
     268,   268,   268,   268,   268,   268,   268,   268,   268,   268,
     268,  -142,  -142,   419,   268,  -142,   463,   529,   -22,   106,
     268,  -142,  -142,   419,   268,  -142,   463,   529,   -22,   106,
       7,   175,     6,   109,    53,  -142,  -142,   127,   118,   165,
       7,   175,     6,   109,    53,  -142,  -142,   127,   118,   165,
    -142,  -142,   290,   167,  -142,  -142,  -142,   170,   176,  -142,
    -142,  -142,   290,   167,  -142,  -142,  -142,   170,   176,  -142,
    -142,  -142,  -142,   268,   529,   529,   529,   492,   581,   605,
    -142,  -142,  -142,   268,   529,   529,   529,   492,   581,   605,
     628,   650,   671,   690,   690,   458,   458,   458,   458,   315,
     628,   650,   671,   690,   690,   458,   458,   458,   458,   315,
     315,   702,   712,   712,   438,   438,   438,   221,   268,  -142,
     315,   702,   712,   712,   438,   438,   438,   221,   268,  -142,
    -142,    -6,   204,   268,  -142,  -142,   268,  -142,  -142,   268,
    -142,    -6,   204,   268,  -142,  -142,   268,  -142,  -142,   268,
     183,  -142,  -142,  -142,     7,     7,   148,   144,   110,    -1,
     183,  -142,  -142,  -142,     7,     7,   148,   144,   110,    -1,
     138,     2,   122,  -142,  -142,   396,  -142,   162,   109,  -142,
     138,     2,   122,  -142,  -142,   396,  -142,   162,   109,  -142,
    -142,  -142,   438,   268,   438,  -142,   -18,   438,   529,   438,
    -142,  -142,   438,   268,   438,  -142,   -18,   438,   529,   438,
    -142,  -142,  -142,  -142,   142,  -142,  -142,   157,  -142,   -13,
    -142,  -142,  -142,  -142,   142,  -142,  -142,   157,  -142,   -13,
    -142,    58,  -142,  -142,  -142,   556,  -142,  -142,  -142,   290,
    -142,    58,  -142,  -142,  -142,   556,  -142,  -142,  -142,   290,
    -142,  -142
    -142,  -142
};
};
 
 
/* YYPGOTO[NTERM-NUM].  */
/* YYPGOTO[NTERM-NUM].  */
static const short yypgoto[] =
static const short yypgoto[] =
{
{
    -142,  -142,  -142,     3,    -8,  -142,  -142,    61,   107,  -142,
    -142,  -142,  -142,     3,    -8,  -142,  -142,    61,   107,  -142,
    -142,    -9,  -142,   103,  -142,   -15,    45,  -141,  -142,    47,
    -142,    -9,  -142,   103,  -142,   -15,    45,  -141,  -142,    47,
      48,     1,     0,  -142,   231,  -142,  -142,  -142,   123,    -4,
      48,     1,     0,  -142,   231,  -142,  -142,  -142,   123,    -4,
    -142
    -142
};
};
 
 
/* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
/* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
   positive, shift that token.  If negative, reduce the rule which
   positive, shift that token.  If negative, reduce the rule which
   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 -142
#define YYTABLE_NINF -142
static const short yytable[] =
static const short yytable[] =
{
{
      50,    49,   224,    40,    65,    61,    62,    63,   186,    98,
      50,    49,   224,    40,    65,    61,    62,    63,   186,    98,
      72,    73,   186,    85,    56,    57,    58,   239,    87,    88,
      72,    73,   186,    85,    56,    57,    58,   239,    87,    88,
      89,    90,    91,    92,    98,    20,    21,    95,    96,    20,
      89,    90,    91,    92,    98,    20,    21,    95,    96,    20,
      21,   134,    50,    94,   127,   135,    86,   136,    20,    21,
      21,   134,    50,    94,   127,   135,    86,   136,    20,    21,
     -68,    67,    50,   129,   152,   187,    97,   236,   133,   -79,
     -68,    67,    50,   129,   152,   187,    97,   236,   133,   -79,
      98,   135,   240,    68,    69,    70,   222,   223,   215,   227,
      98,   135,   240,    68,    69,    70,   222,   223,   215,   227,
      56,    57,    58,   225,    50,   138,     6,    59,     8,     9,
      56,    57,    58,   225,    50,   138,     6,    59,     8,     9,
      10,    11,    67,    13,   139,    15,   140,    16,    17,    18,
      10,    11,    67,    13,   139,    15,   140,    16,    17,    18,
      19,    20,    21,    22,    74,    75,    70,   143,   130,   144,
      19,    20,    21,    22,    74,    75,    70,   143,   130,   144,
     154,   155,   156,   157,   158,   159,   160,   161,   162,   163,
     154,   155,   156,   157,   158,   159,   160,   161,   162,   163,
     164,   165,   166,   167,   168,   169,   170,   171,   172,   173,
     164,   165,   166,   167,   168,   169,   170,   171,   172,   173,
     174,   175,   176,    59,   179,   131,   195,   184,   135,   180,
     174,   175,   176,    59,   179,   131,   195,   184,   135,   180,
     -78,   134,   185,   226,   141,   194,   190,   181,    20,    21,
     -78,   134,   185,   226,   141,   194,   190,   181,    20,    21,
     196,    77,    20,    21,   142,    78,    79,   145,    80,   146,
     196,    77,    20,    21,   142,    78,    79,   145,    80,   146,
      82,    81,   208,   207,    83,   212,     6,    84,     8,     9,
      82,    81,   208,   207,    83,   212,     6,    84,     8,     9,
      10,    11,   -79,    13,   150,    15,   -79,    16,    17,    18,
      10,    11,   -79,    13,   150,    15,   -79,    16,    17,    18,
      19,    20,    21,    22,  -141,   197,   153,   199,   200,   151,
      19,    20,    21,    22,  -141,   197,   153,   199,   200,   151,
     214,  -141,  -141,   187,   127,   217,   197,   198,   218,   199,
     214,  -141,  -141,   187,   127,   217,   197,   198,   218,   199,
     231,   219,   191,   205,   199,   200,   136,   206,   198,   209,
     231,   219,   191,   205,   199,   200,   136,   206,   198,   209,
     220,   221,   210,   135,   198,   199,   200,   212,   211,   -70,
     220,   221,   210,   135,   198,   199,   200,   212,   211,   -70,
     208,   199,   200,   226,   234,   235,   237,     1,     2,     3,
     208,   199,   200,   226,   234,   235,   237,     1,     2,     3,
       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
      14,    15,   238,    16,    17,    18,    19,    20,    21,    22,
      14,    15,   238,    16,    17,    18,    19,    20,    21,    22,
      23,   208,    24,    25,   147,   192,   189,  -100,   148,   208,
      23,   208,    24,    25,   147,   192,   189,  -100,   148,   208,
     241,   149,    26,   216,  -100,  -100,   230,    76,     0,   232,
     241,   149,    26,   216,  -100,  -100,   230,    76,     0,   232,
     233,   -79,    27,    28,    29,   193,     0,    30,    31,     0,
     233,   -79,    27,    28,    29,   193,     0,    30,    31,     0,
       0,     0,    32,     0,    33,    34,    35,    36,  -100,     0,
       0,     0,    32,     0,    33,    34,    35,    36,  -100,     0,
      37,     1,     2,     3,     4,     5,     6,     7,     8,     9,
      37,     1,     2,     3,     4,     5,     6,     7,     8,     9,
      10,    11,    12,    13,    14,    15,     0,    16,    17,    18,
      10,    11,    12,    13,    14,    15,     0,    16,    17,    18,
      19,    20,    21,    22,    23,     0,    24,    25,     6,     0,
      19,    20,    21,    22,    23,     0,    24,    25,     6,     0,
       8,     9,    10,    11,     0,    13,    26,    15,     0,    16,
       8,     9,    10,    11,     0,    13,    26,    15,     0,    16,
      17,    18,    19,    20,    21,    22,    27,    28,    29,     0,
      17,    18,    19,    20,    21,    22,    27,    28,    29,     0,
       0,    30,    31,     0,     0,     0,    32,     0,    33,    34,
       0,    30,    31,     0,     0,     0,    32,     0,    33,    34,
      35,    36,     0,     0,    37,     1,     2,     3,     4,     5,
      35,    36,     0,     0,    37,     1,     2,     3,     4,     5,
       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
       0,    16,    17,    18,    19,    20,    21,    22,    23,     0,
       0,    16,    17,    18,    19,    20,    21,    22,    23,     0,
      24,    25,   115,   116,   117,   118,   119,   120,   121,   122,
      24,    25,   115,   116,   117,   118,   119,   120,   121,   122,
      26,   123,   124,   125,   126,     0,     0,     0,     0,     0,
      26,   123,   124,   125,   126,     0,     0,     0,     0,     0,
      27,    28,    29,     0,     0,    30,    31,     0,     0,     0,
      27,    28,    29,     0,     0,    30,    31,     0,     0,     0,
      64,     0,    33,    34,    35,    36,     0,     0,    37,     1,
      64,     0,    33,    34,    35,    36,     0,     0,    37,     1,
       2,     3,     4,     5,     6,     7,     8,     9,    10,    11,
       2,     3,     4,     5,     6,     7,     8,     9,    10,    11,
      12,    13,    14,    15,     0,    16,    17,    18,    19,    20,
      12,    13,    14,    15,     0,    16,    17,    18,    19,    20,
      21,    22,    23,     0,    24,    25,    56,   177,    58,     8,
      21,    22,    23,     0,    24,    25,    56,   177,    58,     8,
       9,    10,    11,     0,    13,     0,    15,     0,    16,    17,
       9,    10,    11,     0,    13,     0,    15,     0,    16,    17,
      18,    19,    20,    21,    22,     0,     0,     0,     0,    30,
      18,    19,    20,    21,    22,     0,     0,     0,     0,    30,
      31,     0,     0,     0,    32,     0,    33,    34,    35,    36,
      31,     0,     0,     0,    32,     0,    33,    34,    35,    36,
       0,     0,    37,     0,     0,     0,    20,    21,     0,   178,
       0,     0,    37,     0,     0,     0,    20,    21,     0,   178,
      56,   177,    58,     8,     9,    10,    11,     0,    13,    59,
      56,   177,    58,     8,     9,    10,    11,     0,    13,    59,
      15,   -84,    16,    17,    18,    19,    20,    21,    22,     0,
      15,   -84,    16,    17,    18,    19,    20,    21,    22,     0,
     -79,   121,   122,   -84,   123,   124,   125,   126,     0,     0,
     -79,   121,   122,   -84,   123,   124,   125,   126,     0,     0,
     -84,   -84,     0,   113,   114,   115,   116,   117,   118,   119,
     -84,   -84,     0,   113,   114,   115,   116,   117,   118,   119,
     120,   121,   122,   183,   123,   124,   125,   126,     0,    99,
     120,   121,   122,   183,   123,   124,   125,   126,     0,    99,
       0,     0,     0,    59,   100,   101,   102,   103,   104,   105,
       0,     0,     0,    59,   100,   101,   102,   103,   104,   105,
     106,   107,   108,   109,   110,   111,   112,   113,   114,   115,
     106,   107,   108,   109,   110,   111,   112,   113,   114,   115,
     116,   117,   118,   119,   120,   121,   122,     0,   123,   124,
     116,   117,   118,   119,   120,   121,   122,     0,   123,   124,
     125,   126,     0,     0,     0,     0,    99,     0,     0,     0,
     125,   126,     0,     0,     0,     0,    99,     0,     0,     0,
     213,   100,   101,   102,   103,   104,   105,   106,   107,   108,
     213,   100,   101,   102,   103,   104,   105,   106,   107,   108,
     109,   110,   111,   112,   113,   114,   115,   116,   117,   118,
     109,   110,   111,   112,   113,   114,   115,   116,   117,   118,
     119,   120,   121,   122,     0,   123,   124,   125,   126,   101,
     119,   120,   121,   122,     0,   123,   124,   125,   126,   101,
     102,   103,   104,   105,   106,   107,   108,   109,   110,   111,
     102,   103,   104,   105,   106,   107,   108,   109,   110,   111,
     112,   113,   114,   115,   116,   117,   118,   119,   120,   121,
     112,   113,   114,   115,   116,   117,   118,   119,   120,   121,
     122,     0,   123,   124,   125,   126,   103,   104,   105,   106,
     122,     0,   123,   124,   125,   126,   103,   104,   105,   106,
     107,   108,   109,   110,   111,   112,   113,   114,   115,   116,
     107,   108,   109,   110,   111,   112,   113,   114,   115,   116,
     117,   118,   119,   120,   121,   122,     0,   123,   124,   125,
     117,   118,   119,   120,   121,   122,     0,   123,   124,   125,
     126,   104,   105,   106,   107,   108,   109,   110,   111,   112,
     126,   104,   105,   106,   107,   108,   109,   110,   111,   112,
     113,   114,   115,   116,   117,   118,   119,   120,   121,   122,
     113,   114,   115,   116,   117,   118,   119,   120,   121,   122,
       0,   123,   124,   125,   126,   105,   106,   107,   108,   109,
       0,   123,   124,   125,   126,   105,   106,   107,   108,   109,
     110,   111,   112,   113,   114,   115,   116,   117,   118,   119,
     110,   111,   112,   113,   114,   115,   116,   117,   118,   119,
     120,   121,   122,     0,   123,   124,   125,   126,   106,   107,
     120,   121,   122,     0,   123,   124,   125,   126,   106,   107,
     108,   109,   110,   111,   112,   113,   114,   115,   116,   117,
     108,   109,   110,   111,   112,   113,   114,   115,   116,   117,
     118,   119,   120,   121,   122,     0,   123,   124,   125,   126,
     118,   119,   120,   121,   122,     0,   123,   124,   125,   126,
     107,   108,   109,   110,   111,   112,   113,   114,   115,   116,
     107,   108,   109,   110,   111,   112,   113,   114,   115,   116,
     117,   118,   119,   120,   121,   122,     0,   123,   124,   125,
     117,   118,   119,   120,   121,   122,     0,   123,   124,   125,
     126,   109,   110,   111,   112,   113,   114,   115,   116,   117,
     126,   109,   110,   111,   112,   113,   114,   115,   116,   117,
     118,   119,   120,   121,   122,     0,   123,   124,   125,   126,
     118,   119,   120,   121,   122,     0,   123,   124,   125,   126,
     116,   117,   118,   119,   120,   121,   122,     0,   123,   124,
     116,   117,   118,   119,   120,   121,   122,     0,   123,   124,
     125,   126,   118,   119,   120,   121,   122,     0,   123,   124,
     125,   126,   118,   119,   120,   121,   122,     0,   123,   124,
     125,   126
     125,   126
};
};
 
 
static const short yycheck[] =
static const short yycheck[] =
{
{
       0,     0,     3,     0,    12,     9,    10,    11,    30,    30,
       0,     0,     3,     0,    12,     9,    10,    11,    30,    30,
      14,    15,    30,    24,     7,     8,     9,    30,    26,    27,
      14,    15,    30,    24,     7,     8,     9,    30,    26,    27,
      28,    29,    30,    31,    30,    23,    24,    35,    36,    23,
      28,    29,    30,    31,    30,    23,    24,    35,    36,    23,
      24,    16,    32,    32,    42,    50,    23,    52,    23,    24,
      24,    16,    32,    32,    42,    50,    23,    52,    23,    24,
      16,     8,    42,    42,    65,    67,     0,    65,    48,    47,
      16,     8,    42,    42,    65,    67,     0,    65,    48,    47,
      30,    66,    65,    20,    21,    22,   197,   198,    64,   200,
      30,    66,    65,    20,    21,    22,   197,   198,    64,   200,
       7,     8,     9,    64,    64,    64,     8,    60,    10,    11,
       7,     8,     9,    64,    64,    64,     8,    60,    10,    11,
      12,    13,     8,    15,    20,    17,    22,    19,    20,    21,
      12,    13,     8,    15,    20,    17,    22,    19,    20,    21,
      22,    23,    24,    25,    20,    21,    22,    20,    16,    22,
      22,    23,    24,    25,    20,    21,    22,    20,    16,    22,
      98,    99,   100,   101,   102,   103,   104,   105,   106,   107,
      98,    99,   100,   101,   102,   103,   104,   105,   106,   107,
     108,   109,   110,   111,   112,   113,   114,   115,   116,   117,
     108,   109,   110,   111,   112,   113,   114,   115,   116,   117,
     118,   119,   120,    60,   123,    47,    63,   126,   133,   123,
     118,   119,   120,    60,   123,    47,    63,   126,   133,   123,
      47,    16,   126,    65,    22,    16,   130,   124,    23,    24,
      47,    16,   126,    65,    22,    16,   130,   124,    23,    24,
     134,    15,    23,    24,    41,    19,    20,    22,    22,    22,
     134,    15,    23,    24,    41,    19,    20,    22,    22,    22,
      15,    25,   142,   142,    19,   153,     8,    22,    10,    11,
      15,    25,   142,   142,    19,   153,     8,    22,    10,    11,
      12,    13,    47,    15,    22,    17,    47,    19,    20,    21,
      12,    13,    47,    15,    22,    17,    47,    19,    20,    21,
      22,    23,    24,    25,    16,    38,    65,    57,    58,    22,
      22,    23,    24,    25,    16,    38,    65,    57,    58,    22,
     178,    23,    24,    67,   182,   183,    38,    50,   186,    57,
     178,    23,    24,    67,   182,   183,    38,    50,   186,    57,
      58,   189,     7,    65,    57,    58,   201,    22,    50,    22,
      58,   189,     7,    65,    57,    58,   201,    22,    50,    22,
     194,   195,    22,   208,    50,    57,    58,   205,    22,    16,
     194,   195,    22,   208,    50,    57,    58,   205,    22,    16,
     200,    57,    58,    65,    42,   213,    64,     3,     4,     5,
     200,    57,    58,    65,    42,   213,    64,     3,     4,     5,
       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
      16,    17,    65,    19,    20,    21,    22,    23,    24,    25,
      16,    17,    65,    19,    20,    21,    22,    23,    24,    25,
      26,   231,    28,    29,    15,   132,   129,    16,    19,   239,
      26,   231,    28,    29,    15,   132,   129,    16,    19,   239,
     239,    22,    38,   182,    23,    24,   201,    16,    -1,   202,
     239,    22,    38,   182,    23,    24,   201,    16,    -1,   202,
     202,    47,    48,    49,    50,   132,    -1,    53,    54,    -1,
     202,    47,    48,    49,    50,   132,    -1,    53,    54,    -1,
      -1,    -1,    58,    -1,    60,    61,    62,    63,    47,    -1,
      -1,    -1,    58,    -1,    60,    61,    62,    63,    47,    -1,
      66,     3,     4,     5,     6,     7,     8,     9,    10,    11,
      66,     3,     4,     5,     6,     7,     8,     9,    10,    11,
      12,    13,    14,    15,    16,    17,    -1,    19,    20,    21,
      12,    13,    14,    15,    16,    17,    -1,    19,    20,    21,
      22,    23,    24,    25,    26,    -1,    28,    29,     8,    -1,
      22,    23,    24,    25,    26,    -1,    28,    29,     8,    -1,
      10,    11,    12,    13,    -1,    15,    38,    17,    -1,    19,
      10,    11,    12,    13,    -1,    15,    38,    17,    -1,    19,
      20,    21,    22,    23,    24,    25,    48,    49,    50,    -1,
      20,    21,    22,    23,    24,    25,    48,    49,    50,    -1,
      -1,    53,    54,    -1,    -1,    -1,    58,    -1,    60,    61,
      -1,    53,    54,    -1,    -1,    -1,    58,    -1,    60,    61,
      62,    63,    -1,    -1,    66,     3,     4,     5,     6,     7,
      62,    63,    -1,    -1,    66,     3,     4,     5,     6,     7,
       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
      -1,    19,    20,    21,    22,    23,    24,    25,    26,    -1,
      -1,    19,    20,    21,    22,    23,    24,    25,    26,    -1,
      28,    29,    47,    48,    49,    50,    51,    52,    53,    54,
      28,    29,    47,    48,    49,    50,    51,    52,    53,    54,
      38,    56,    57,    58,    59,    -1,    -1,    -1,    -1,    -1,
      38,    56,    57,    58,    59,    -1,    -1,    -1,    -1,    -1,
      48,    49,    50,    -1,    -1,    53,    54,    -1,    -1,    -1,
      48,    49,    50,    -1,    -1,    53,    54,    -1,    -1,    -1,
      58,    -1,    60,    61,    62,    63,    -1,    -1,    66,     3,
      58,    -1,    60,    61,    62,    63,    -1,    -1,    66,     3,
       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
      14,    15,    16,    17,    -1,    19,    20,    21,    22,    23,
      14,    15,    16,    17,    -1,    19,    20,    21,    22,    23,
      24,    25,    26,    -1,    28,    29,     7,     8,     9,    10,
      24,    25,    26,    -1,    28,    29,     7,     8,     9,    10,
      11,    12,    13,    -1,    15,    -1,    17,    -1,    19,    20,
      11,    12,    13,    -1,    15,    -1,    17,    -1,    19,    20,
      21,    22,    23,    24,    25,    -1,    -1,    -1,    -1,    53,
      21,    22,    23,    24,    25,    -1,    -1,    -1,    -1,    53,
      54,    -1,    -1,    -1,    58,    -1,    60,    61,    62,    63,
      54,    -1,    -1,    -1,    58,    -1,    60,    61,    62,    63,
      -1,    -1,    66,    -1,    -1,    -1,    23,    24,    -1,    50,
      -1,    -1,    66,    -1,    -1,    -1,    23,    24,    -1,    50,
       7,     8,     9,    10,    11,    12,    13,    -1,    15,    60,
       7,     8,     9,    10,    11,    12,    13,    -1,    15,    60,
      17,    38,    19,    20,    21,    22,    23,    24,    25,    -1,
      17,    38,    19,    20,    21,    22,    23,    24,    25,    -1,
      47,    53,    54,    50,    56,    57,    58,    59,    -1,    -1,
      47,    53,    54,    50,    56,    57,    58,    59,    -1,    -1,
      57,    58,    -1,    45,    46,    47,    48,    49,    50,    51,
      57,    58,    -1,    45,    46,    47,    48,    49,    50,    51,
      52,    53,    54,    50,    56,    57,    58,    59,    -1,    27,
      52,    53,    54,    50,    56,    57,    58,    59,    -1,    27,
      -1,    -1,    -1,    60,    32,    33,    34,    35,    36,    37,
      -1,    -1,    -1,    60,    32,    33,    34,    35,    36,    37,
      38,    39,    40,    41,    42,    43,    44,    45,    46,    47,
      38,    39,    40,    41,    42,    43,    44,    45,    46,    47,
      48,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
      48,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
      58,    59,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,
      58,    59,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,
      68,    32,    33,    34,    35,    36,    37,    38,    39,    40,
      68,    32,    33,    34,    35,    36,    37,    38,    39,    40,
      41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
      41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
      51,    52,    53,    54,    -1,    56,    57,    58,    59,    33,
      51,    52,    53,    54,    -1,    56,    57,    58,    59,    33,
      34,    35,    36,    37,    38,    39,    40,    41,    42,    43,
      34,    35,    36,    37,    38,    39,    40,    41,    42,    43,
      44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
      44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
      54,    -1,    56,    57,    58,    59,    35,    36,    37,    38,
      54,    -1,    56,    57,    58,    59,    35,    36,    37,    38,
      39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
      39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
      49,    50,    51,    52,    53,    54,    -1,    56,    57,    58,
      49,    50,    51,    52,    53,    54,    -1,    56,    57,    58,
      59,    36,    37,    38,    39,    40,    41,    42,    43,    44,
      59,    36,    37,    38,    39,    40,    41,    42,    43,    44,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      -1,    56,    57,    58,    59,    37,    38,    39,    40,    41,
      -1,    56,    57,    58,    59,    37,    38,    39,    40,    41,
      42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
      42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
      52,    53,    54,    -1,    56,    57,    58,    59,    38,    39,
      52,    53,    54,    -1,    56,    57,    58,    59,    38,    39,
      40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
      40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
      50,    51,    52,    53,    54,    -1,    56,    57,    58,    59,
      50,    51,    52,    53,    54,    -1,    56,    57,    58,    59,
      39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
      39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
      49,    50,    51,    52,    53,    54,    -1,    56,    57,    58,
      49,    50,    51,    52,    53,    54,    -1,    56,    57,    58,
      59,    41,    42,    43,    44,    45,    46,    47,    48,    49,
      59,    41,    42,    43,    44,    45,    46,    47,    48,    49,
      50,    51,    52,    53,    54,    -1,    56,    57,    58,    59,
      50,    51,    52,    53,    54,    -1,    56,    57,    58,    59,
      48,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
      48,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
      58,    59,    50,    51,    52,    53,    54,    -1,    56,    57,
      58,    59,    50,    51,    52,    53,    54,    -1,    56,    57,
      58,    59
      58,    59
};
};
 
 
/* 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 unsigned char yystos[] =
{
{
       0,     3,     4,     5,     6,     7,     8,     9,    10,    11,
       0,     3,     4,     5,     6,     7,     8,     9,    10,    11,
      12,    13,    14,    15,    16,    17,    19,    20,    21,    22,
      12,    13,    14,    15,    16,    17,    19,    20,    21,    22,
      23,    24,    25,    26,    28,    29,    38,    48,    49,    50,
      23,    24,    25,    26,    28,    29,    38,    48,    49,    50,
      53,    54,    58,    60,    61,    62,    63,    66,    70,    71,
      53,    54,    58,    60,    61,    62,    63,    66,    70,    71,
      72,    73,    75,    78,    79,    80,    82,    83,    84,    90,
      72,    73,    75,    78,    79,    80,    82,    83,    84,    90,
      91,    92,    95,    96,    97,    99,     7,     8,     9,    60,
      91,    92,    95,    96,    97,    99,     7,     8,     9,    60,
      98,    98,    98,    98,    58,    73,    91,     8,    20,    21,
      98,    98,    98,    98,    58,    73,    91,     8,    20,    21,
      22,    93,    98,    98,    20,    21,    93,    15,    19,    20,
      22,    93,    98,    98,    20,    21,    93,    15,    19,    20,
      22,    25,    15,    19,    22,    24,    23,    73,    73,    73,
      22,    25,    15,    19,    22,    24,    23,    73,    73,    73,
      73,    73,    73,    72,    90,    73,    73,     0,    30,    27,
      73,    73,    73,    72,    90,    73,    73,     0,    30,    27,
      32,    33,    34,    35,    36,    37,    38,    39,    40,    41,
      32,    33,    34,    35,    36,    37,    38,    39,    40,    41,
      42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
      42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
      52,    53,    54,    56,    57,    58,    59,    73,    76,    90,
      52,    53,    54,    56,    57,    58,    59,    73,    76,    90,
      16,    47,    81,    91,    16,    84,    84,    85,    90,    20,
      16,    47,    81,    91,    16,    84,    84,    85,    90,    20,
      22,    22,    41,    20,    22,    22,    22,    15,    19,    22,
      22,    22,    41,    20,    22,    22,    22,    15,    19,    22,
      22,    22,    65,    65,    73,    73,    73,    73,    73,    73,
      22,    22,    65,    65,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,    73,    73,    73,
      73,    73,    73,    73,    73,    73,    73,     8,    50,    80,
      73,    73,    73,    73,    73,    73,    73,     8,    50,    80,
      98,    72,    74,    50,    80,    98,    30,    67,    77,    77,
      98,    72,    74,    50,    80,    98,    30,    67,    77,    77,
      98,     7,    82,    97,    16,    63,    98,    38,    50,    57,
      98,     7,    82,    97,    16,    63,    98,    38,    50,    57,
      58,    86,    87,    88,    89,    65,    22,    90,    91,    22,
      58,    86,    87,    88,    89,    65,    22,    90,    91,    22,
      22,    22,    73,    68,    73,    64,    76,    73,    73,    73,
      22,    22,    73,    68,    73,    64,    76,    73,    73,    73,
      98,    98,    86,    86,     3,    64,    65,    86,    90,    94,
      98,    98,    86,    86,     3,    64,    65,    86,    90,    94,
      85,    58,    88,    89,    42,    73,    65,    64,    65,    30,
      85,    58,    88,    89,    42,    73,    65,    64,    65,    30,
      65,    90
      65,    90
};
};
 
 
#if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
#if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
# define YYSIZE_T __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
#endif
#endif
#if ! defined (YYSIZE_T) && defined (size_t)
#if ! defined (YYSIZE_T) && defined (size_t)
# define YYSIZE_T size_t
# define YYSIZE_T size_t
#endif
#endif
#if ! defined (YYSIZE_T)
#if ! defined (YYSIZE_T)
# if defined (__STDC__) || defined (__cplusplus)
# if defined (__STDC__) || defined (__cplusplus)
#  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  define YYSIZE_T size_t
#  define YYSIZE_T size_t
# endif
# endif
#endif
#endif
#if ! defined (YYSIZE_T)
#if ! defined (YYSIZE_T)
# define YYSIZE_T unsigned int
# define YYSIZE_T unsigned int
#endif
#endif
 
 
#define yyerrok         (yyerrstatus = 0)
#define yyerrok         (yyerrstatus = 0)
#define yyclearin       (yychar = YYEMPTY)
#define yyclearin       (yychar = YYEMPTY)
#define YYEMPTY         (-2)
#define YYEMPTY         (-2)
#define YYEOF           0
#define YYEOF           0
 
 
#define YYACCEPT        goto yyacceptlab
#define YYACCEPT        goto yyacceptlab
#define YYABORT         goto yyabortlab
#define YYABORT         goto yyabortlab
#define YYERROR         goto yyerrorlab
#define YYERROR         goto yyerrorlab
 
 
 
 
/* Like YYERROR except do call yyerror.  This remains here temporarily
/* Like YYERROR except do call yyerror.  This remains here temporarily
   to ease the transition to the new meaning of YYERROR, for GCC.
   to ease the transition to the new meaning of YYERROR, for GCC.
   Once GCC version 2 has supplanted version 1, this can go.  */
   Once GCC version 2 has supplanted version 1, this can go.  */
 
 
#define YYFAIL          goto yyerrlab
#define YYFAIL          goto yyerrlab
 
 
#define YYRECOVERING()  (!!yyerrstatus)
#define YYRECOVERING()  (!!yyerrstatus)
 
 
#define YYBACKUP(Token, Value)                                  \
#define YYBACKUP(Token, Value)                                  \
do                                                              \
do                                                              \
  if (yychar == YYEMPTY && yylen == 1)                          \
  if (yychar == YYEMPTY && yylen == 1)                          \
    {                                                           \
    {                                                           \
      yychar = (Token);                                         \
      yychar = (Token);                                         \
      yylval = (Value);                                         \
      yylval = (Value);                                         \
      yytoken = YYTRANSLATE (yychar);                           \
      yytoken = YYTRANSLATE (yychar);                           \
      YYPOPSTACK;                                               \
      YYPOPSTACK;                                               \
      goto yybackup;                                            \
      goto yybackup;                                            \
    }                                                           \
    }                                                           \
  else                                                          \
  else                                                          \
    {                                                           \
    {                                                           \
      yyerror ("syntax error: cannot back up");\
      yyerror ("syntax error: cannot back up");\
      YYERROR;                                                  \
      YYERROR;                                                  \
    }                                                           \
    }                                                           \
while (0)
while (0)
 
 
#define YYTERROR        1
#define YYTERROR        1
#define YYERRCODE       256
#define YYERRCODE       256
 
 
/* YYLLOC_DEFAULT -- Compute the default location (before the actions
/* YYLLOC_DEFAULT -- Compute the default location (before the actions
   are run).  */
   are run).  */
 
 
#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,       \
   ((Current).first_line   = (Rhs)[1].first_line,       \
    (Current).first_column = (Rhs)[1].first_column,     \
    (Current).first_column = (Rhs)[1].first_column,     \
    (Current).last_line    = (Rhs)[N].last_line,        \
    (Current).last_line    = (Rhs)[N].last_line,        \
    (Current).last_column  = (Rhs)[N].last_column)
    (Current).last_column  = (Rhs)[N].last_column)
#endif
#endif
 
 
/* YYLEX -- calling `yylex' with the right arguments.  */
/* YYLEX -- calling `yylex' with the right arguments.  */
 
 
#ifdef YYLEX_PARAM
#ifdef YYLEX_PARAM
# define YYLEX yylex (YYLEX_PARAM)
# define YYLEX yylex (YYLEX_PARAM)
#else
#else
# define YYLEX yylex ()
# define YYLEX yylex ()
#endif
#endif
 
 
/* Enable debugging if requested.  */
/* Enable debugging if requested.  */
#if YYDEBUG
#if YYDEBUG
 
 
# ifndef YYFPRINTF
# ifndef YYFPRINTF
#  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
#  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
#  define YYFPRINTF fprintf
#  define YYFPRINTF fprintf
# endif
# endif
 
 
# define YYDPRINTF(Args)                        \
# define YYDPRINTF(Args)                        \
do {                                            \
do {                                            \
  if (yydebug)                                  \
  if (yydebug)                                  \
    YYFPRINTF Args;                             \
    YYFPRINTF Args;                             \
} while (0)
} while (0)
 
 
# define YYDSYMPRINT(Args)                      \
# define YYDSYMPRINT(Args)                      \
do {                                            \
do {                                            \
  if (yydebug)                                  \
  if (yydebug)                                  \
    yysymprint Args;                            \
    yysymprint Args;                            \
} while (0)
} while (0)
 
 
# define YYDSYMPRINTF(Title, Token, Value, Location)            \
# define YYDSYMPRINTF(Title, Token, Value, Location)            \
do {                                                            \
do {                                                            \
  if (yydebug)                                                  \
  if (yydebug)                                                  \
    {                                                           \
    {                                                           \
      YYFPRINTF (stderr, "%s ", Title);                         \
      YYFPRINTF (stderr, "%s ", Title);                         \
      yysymprint (stderr,                                       \
      yysymprint (stderr,                                       \
                  Token, Value);        \
                  Token, Value);        \
      YYFPRINTF (stderr, "\n");                                 \
      YYFPRINTF (stderr, "\n");                                 \
    }                                                           \
    }                                                           \
} while (0)
} while (0)
 
 
/*------------------------------------------------------------------.
/*------------------------------------------------------------------.
| 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 (included).                                                   |
| TOP (included).                                                   |
`------------------------------------------------------------------*/
`------------------------------------------------------------------*/
 
 
#if defined (__STDC__) || defined (__cplusplus)
#if defined (__STDC__) || defined (__cplusplus)
static void
static void
yy_stack_print (short *bottom, short *top)
yy_stack_print (short *bottom, short *top)
#else
#else
static void
static void
yy_stack_print (bottom, top)
yy_stack_print (bottom, top)
    short *bottom;
    short *bottom;
    short *top;
    short *top;
#endif
#endif
{
{
  YYFPRINTF (stderr, "Stack now");
  YYFPRINTF (stderr, "Stack now");
  for (/* Nothing. */; bottom <= top; ++bottom)
  for (/* Nothing. */; bottom <= top; ++bottom)
    YYFPRINTF (stderr, " %d", *bottom);
    YYFPRINTF (stderr, " %d", *bottom);
  YYFPRINTF (stderr, "\n");
  YYFPRINTF (stderr, "\n");
}
}
 
 
# define YY_STACK_PRINT(Bottom, Top)                            \
# define YY_STACK_PRINT(Bottom, Top)                            \
do {                                                            \
do {                                                            \
  if (yydebug)                                                  \
  if (yydebug)                                                  \
    yy_stack_print ((Bottom), (Top));                           \
    yy_stack_print ((Bottom), (Top));                           \
} while (0)
} while (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 (__cplusplus)
static void
static void
yy_reduce_print (int yyrule)
yy_reduce_print (int yyrule)
#else
#else
static void
static void
yy_reduce_print (yyrule)
yy_reduce_print (yyrule)
    int yyrule;
    int yyrule;
#endif
#endif
{
{
  int yyi;
  int yyi;
  unsigned int yylno = yyrline[yyrule];
  unsigned int yylno = yyrline[yyrule];
  YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
  YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
             yyrule - 1, yylno);
             yyrule - 1, yylno);
  /* Print the symbols being reduced, and their result.  */
  /* Print the symbols being reduced, and their result.  */
  for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
  for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
    YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);
    YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);
  YYFPRINTF (stderr, "-> %s\n", yytname [yyr1[yyrule]]);
  YYFPRINTF (stderr, "-> %s\n", yytname [yyr1[yyrule]]);
}
}
 
 
# define YY_REDUCE_PRINT(Rule)          \
# define YY_REDUCE_PRINT(Rule)          \
do {                                    \
do {                                    \
  if (yydebug)                          \
  if (yydebug)                          \
    yy_reduce_print (Rule);             \
    yy_reduce_print (Rule);             \
} while (0)
} while (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 YYDSYMPRINT(Args)
# define YYDSYMPRINTF(Title, Token, 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 */
 
 
 
 
/* YYINITDEPTH -- initial size of the parser's stacks.  */
/* YYINITDEPTH -- initial size of the parser's stacks.  */
#ifndef YYINITDEPTH
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
# define YYINITDEPTH 200
#endif
#endif
 
 
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
   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)
   SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
   evaluated with infinite-precision integer arithmetic.  */
   evaluated with infinite-precision integer arithmetic.  */
 
 
#if defined (YYMAXDEPTH) && YYMAXDEPTH == 0
#if defined (YYMAXDEPTH) && YYMAXDEPTH == 0
# undef YYMAXDEPTH
# undef YYMAXDEPTH
#endif
#endif
 
 
#ifndef YYMAXDEPTH
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
# define YYMAXDEPTH 10000
#endif
#endif
 
 


 
 
#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.  */
static YYSIZE_T
static YYSIZE_T
#   if defined (__STDC__) || defined (__cplusplus)
#   if defined (__STDC__) || defined (__cplusplus)
yystrlen (const char *yystr)
yystrlen (const char *yystr)
#   else
#   else
yystrlen (yystr)
yystrlen (yystr)
     const char *yystr;
     const char *yystr;
#   endif
#   endif
{
{
  register const char *yys = yystr;
  register const char *yys = yystr;
 
 
  while (*yys++ != '\0')
  while (*yys++ != '\0')
    continue;
    continue;
 
 
  return yys - yystr - 1;
  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.  */
static char *
static char *
#   if defined (__STDC__) || defined (__cplusplus)
#   if defined (__STDC__) || defined (__cplusplus)
yystpcpy (char *yydest, const char *yysrc)
yystpcpy (char *yydest, const char *yysrc)
#   else
#   else
yystpcpy (yydest, yysrc)
yystpcpy (yydest, yysrc)
     char *yydest;
     char *yydest;
     const char *yysrc;
     const char *yysrc;
#   endif
#   endif
{
{
  register char *yyd = yydest;
  register char *yyd = yydest;
  register const char *yys = yysrc;
  register const char *yys = yysrc;
 
 
  while ((*yyd++ = *yys++) != '\0')
  while ((*yyd++ = *yys++) != '\0')
    continue;
    continue;
 
 
  return yyd - 1;
  return yyd - 1;
}
}
#  endif
#  endif
# endif
# endif
 
 
#endif /* !YYERROR_VERBOSE */
#endif /* !YYERROR_VERBOSE */
 
 


 
 
#if YYDEBUG
#if YYDEBUG
/*--------------------------------.
/*--------------------------------.
| Print this symbol on YYOUTPUT.  |
| Print this symbol on YYOUTPUT.  |
`--------------------------------*/
`--------------------------------*/
 
 
#if defined (__STDC__) || defined (__cplusplus)
#if defined (__STDC__) || defined (__cplusplus)
static void
static void
yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep)
yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep)
#else
#else
static void
static void
yysymprint (yyoutput, yytype, yyvaluep)
yysymprint (yyoutput, yytype, yyvaluep)
    FILE *yyoutput;
    FILE *yyoutput;
    int yytype;
    int yytype;
    YYSTYPE *yyvaluep;
    YYSTYPE *yyvaluep;
#endif
#endif
{
{
  /* Pacify ``unused variable'' warnings.  */
  /* Pacify ``unused variable'' warnings.  */
  (void) yyvaluep;
  (void) yyvaluep;
 
 
  if (yytype < YYNTOKENS)
  if (yytype < YYNTOKENS)
    {
    {
      YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
      YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
# ifdef YYPRINT
# ifdef YYPRINT
      YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
      YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# endif
# endif
    }
    }
  else
  else
    YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
    YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
 
 
  switch (yytype)
  switch (yytype)
    {
    {
      default:
      default:
        break;
        break;
    }
    }
  YYFPRINTF (yyoutput, ")");
  YYFPRINTF (yyoutput, ")");
}
}
 
 
#endif /* ! YYDEBUG */
#endif /* ! YYDEBUG */
/*-----------------------------------------------.
/*-----------------------------------------------.
| Release the memory associated to this symbol.  |
| Release the memory associated to this symbol.  |
`-----------------------------------------------*/
`-----------------------------------------------*/
 
 
#if defined (__STDC__) || defined (__cplusplus)
#if defined (__STDC__) || defined (__cplusplus)
static void
static void
yydestruct (int yytype, YYSTYPE *yyvaluep)
yydestruct (int yytype, YYSTYPE *yyvaluep)
#else
#else
static void
static void
yydestruct (yytype, yyvaluep)
yydestruct (yytype, yyvaluep)
    int yytype;
    int yytype;
    YYSTYPE *yyvaluep;
    YYSTYPE *yyvaluep;
#endif
#endif
{
{
  /* Pacify ``unused variable'' warnings.  */
  /* Pacify ``unused variable'' warnings.  */
  (void) yyvaluep;
  (void) yyvaluep;
 
 
  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 ();
#endif
#endif
#endif /* ! YYPARSE_PARAM */
#endif /* ! YYPARSE_PARAM */
 
 
 
 
 
 
/* The lookahead symbol.  */
/* The lookahead symbol.  */
int yychar;
int yychar;
 
 
/* The semantic value of the lookahead symbol.  */
/* The semantic value of the lookahead symbol.  */
YYSTYPE yylval;
YYSTYPE yylval;
 
 
/* Number of syntax errors so far.  */
/* Number of syntax errors so far.  */
int yynerrs;
int yynerrs;
 
 
 
 
 
 
/*----------.
/*----------.
| yyparse.  |
| yyparse.  |
`----------*/
`----------*/
 
 
#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 (YYPARSE_PARAM)
int yyparse (YYPARSE_PARAM)
  void *YYPARSE_PARAM;
  void *YYPARSE_PARAM;
# endif
# endif
#else /* ! YYPARSE_PARAM */
#else /* ! YYPARSE_PARAM */
#if defined (__STDC__) || defined (__cplusplus)
#if defined (__STDC__) || defined (__cplusplus)
int
int
yyparse (void)
yyparse (void)
#else
#else
int
int
yyparse ()
yyparse ()
 
 
#endif
#endif
#endif
#endif
{
{
 
 
  register int yystate;
  register int yystate;
  register int yyn;
  register int yyn;
  int yyresult;
  int yyresult;
  /* Number of tokens to shift before error messages enabled.  */
  /* Number of tokens to shift before error messages enabled.  */
  int yyerrstatus;
  int yyerrstatus;
  /* Lookahead token as an internal (translated) token number.  */
  /* Lookahead token as an internal (translated) token number.  */
  int yytoken = 0;
  int yytoken = 0;
 
 
  /* Three stacks and their tools:
  /* Three stacks and their tools:
     `yyss': related to states,
     `yyss': related to states,
     `yyvs': related to semantic values,
     `yyvs': related to semantic values,
     `yyls': related to locations.
     `yyls': related to locations.
 
 
     Refer to the stacks thru separate pointers, to allow yyoverflow
     Refer to the stacks thru separate pointers, to allow yyoverflow
     to xreallocate them elsewhere.  */
     to xreallocate them elsewhere.  */
 
 
  /* The state stack.  */
  /* The state stack.  */
  short yyssa[YYINITDEPTH];
  short yyssa[YYINITDEPTH];
  short *yyss = yyssa;
  short *yyss = yyssa;
  register short *yyssp;
  register short *yyssp;
 
 
  /* The semantic value stack.  */
  /* The semantic value stack.  */
  YYSTYPE yyvsa[YYINITDEPTH];
  YYSTYPE yyvsa[YYINITDEPTH];
  YYSTYPE *yyvs = yyvsa;
  YYSTYPE *yyvs = yyvsa;
  register YYSTYPE *yyvsp;
  register YYSTYPE *yyvsp;
 
 
 
 
 
 
#define YYPOPSTACK   (yyvsp--, yyssp--)
#define YYPOPSTACK   (yyvsp--, yyssp--)
 
 
  YYSIZE_T yystacksize = YYINITDEPTH;
  YYSIZE_T yystacksize = YYINITDEPTH;
 
 
  /* 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;
 
 
 
 
  /* When reducing, the number of symbols on the RHS of the reduced
  /* When reducing, the number of symbols on the RHS of the reduced
     rule.  */
     rule.  */
  int yylen;
  int yylen;
 
 
  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;
 
 
  goto yysetstate;
  goto yysetstate;
 
 
/*------------------------------------------------------------.
/*------------------------------------------------------------.
| yynewstate -- Push a new state, which is found in yystate.  |
| yynewstate -- Push a new state, which is found in yystate.  |
`------------------------------------------------------------*/
`------------------------------------------------------------*/
 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:
  *yyssp = yystate;
  *yyssp = yystate;
 
 
  if (yyss + yystacksize - 1 <= yyssp)
  if (yyss + yystacksize - 1 <= yyssp)
    {
    {
      /* Get the current used size of the three stacks, in elements.  */
      /* Get the current used size of the three stacks, in elements.  */
      YYSIZE_T yysize = yyssp - yyss + 1;
      YYSIZE_T yysize = yyssp - yyss + 1;
 
 
#ifdef yyoverflow
#ifdef yyoverflow
      {
      {
        /* Give user a chance to xreallocate the stack. Use copies of
        /* Give user a chance to xreallocate 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;
        short *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 ("parser stack overflow",
                    &yyss1, yysize * sizeof (*yyssp),
                    &yyss1, yysize * sizeof (*yyssp),
                    &yyvs1, yysize * sizeof (*yyvsp),
                    &yyvs1, yysize * sizeof (*yyvsp),
 
 
                    &yystacksize);
                    &yystacksize);
 
 
        yyss = yyss1;
        yyss = yyss1;
        yyvs = yyvs1;
        yyvs = yyvs1;
      }
      }
#else /* no yyoverflow */
#else /* no yyoverflow */
# ifndef YYSTACK_RELOCATE
# ifndef YYSTACK_RELOCATE
      goto yyoverflowlab;
      goto yyoverflowlab;
# else
# else
      /* Extend the stack our own way.  */
      /* Extend the stack our own way.  */
      if (YYMAXDEPTH <= yystacksize)
      if (YYMAXDEPTH <= yystacksize)
        goto yyoverflowlab;
        goto yyoverflowlab;
      yystacksize *= 2;
      yystacksize *= 2;
      if (YYMAXDEPTH < yystacksize)
      if (YYMAXDEPTH < yystacksize)
        yystacksize = YYMAXDEPTH;
        yystacksize = YYMAXDEPTH;
 
 
      {
      {
        short *yyss1 = yyss;
        short *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 yyoverflowlab;
        YYSTACK_RELOCATE (yyss);
        YYSTACK_RELOCATE (yyss);
        YYSTACK_RELOCATE (yyvs);
        YYSTACK_RELOCATE (yyvs);
 
 
#  undef YYSTACK_RELOCATE
#  undef YYSTACK_RELOCATE
        if (yyss1 != yyssa)
        if (yyss1 != yyssa)
          YYSTACK_FREE (yyss1);
          YYSTACK_FREE (yyss1);
      }
      }
# endif
# endif
#endif /* no yyoverflow */
#endif /* no yyoverflow */
 
 
      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));
 
 
      if (yyss + yystacksize - 1 <= yyssp)
      if (yyss + yystacksize - 1 <= yyssp)
        YYABORT;
        YYABORT;
    }
    }
 
 
  YYDPRINTF ((stderr, "Entering state %d\n", yystate));
  YYDPRINTF ((stderr, "Entering state %d\n", yystate));
 
 
  goto yybackup;
  goto yybackup;
 
 
/*-----------.
/*-----------.
| yybackup.  |
| yybackup.  |
`-----------*/
`-----------*/
yybackup:
yybackup:
 
 
/* Do appropriate processing given the current state.  */
/* Do appropriate processing given the current state.  */
/* Read a lookahead token if we need one and don't already have one.  */
/* Read a lookahead token if we need one and don't already have one.  */
/* yyresume: */
/* 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;
 
 
  /* Not known => get a lookahead token if don't already have one.  */
  /* Not known => get a lookahead token if don't already have one.  */
 
 
  /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  if (yychar == YYEMPTY)
  if (yychar == YYEMPTY)
    {
    {
      YYDPRINTF ((stderr, "Reading a token: "));
      YYDPRINTF ((stderr, "Reading a token: "));
      yychar = YYLEX;
      yychar = YYLEX;
    }
    }
 
 
  if (yychar <= YYEOF)
  if (yychar <= YYEOF)
    {
    {
      yychar = yytoken = YYEOF;
      yychar = yytoken = YYEOF;
      YYDPRINTF ((stderr, "Now at end of input.\n"));
      YYDPRINTF ((stderr, "Now at end of input.\n"));
    }
    }
  else
  else
    {
    {
      yytoken = YYTRANSLATE (yychar);
      yytoken = YYTRANSLATE (yychar);
      YYDSYMPRINTF ("Next token is", yytoken, &yylval, &yylloc);
      YYDSYMPRINTF ("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
     detect an error, take that action.  */
     detect an error, take that action.  */
  yyn += yytoken;
  yyn += yytoken;
  if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
    goto yydefault;
    goto yydefault;
  yyn = yytable[yyn];
  yyn = yytable[yyn];
  if (yyn <= 0)
  if (yyn <= 0)
    {
    {
      if (yyn == 0 || yyn == YYTABLE_NINF)
      if (yyn == 0 || yyn == YYTABLE_NINF)
        goto yyerrlab;
        goto yyerrlab;
      yyn = -yyn;
      yyn = -yyn;
      goto yyreduce;
      goto yyreduce;
    }
    }
 
 
  if (yyn == YYFINAL)
  if (yyn == YYFINAL)
    YYACCEPT;
    YYACCEPT;
 
 
  /* Shift the lookahead token.  */
  /* Shift the lookahead token.  */
  YYDPRINTF ((stderr, "Shifting token %s, ", yytname[yytoken]));
  YYDPRINTF ((stderr, "Shifting token %s, ", yytname[yytoken]));
 
 
  /* Discard the token being shifted unless it is eof.  */
  /* Discard the token being shifted unless it is eof.  */
  if (yychar != YYEOF)
  if (yychar != YYEOF)
    yychar = YYEMPTY;
    yychar = YYEMPTY;
 
 
  *++yyvsp = yylval;
  *++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--;
 
 
  yystate = yyn;
  yystate = yyn;
  goto yynewstate;
  goto yynewstate;
 
 
 
 
/*-----------------------------------------------------------.
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state.  |
| yydefault -- do the default action for the current state.  |
`-----------------------------------------------------------*/
`-----------------------------------------------------------*/
yydefault:
yydefault:
  yyn = yydefact[yystate];
  yyn = yydefact[yystate];
  if (yyn == 0)
  if (yyn == 0)
    goto yyerrlab;
    goto yyerrlab;
  goto yyreduce;
  goto yyreduce;
 
 
 
 
/*-----------------------------.
/*-----------------------------.
| yyreduce -- Do a reduction.  |
| yyreduce -- Do a reduction.  |
`-----------------------------*/
`-----------------------------*/
yyreduce:
yyreduce:
  /* yyn is the number of a rule to reduce with.  */
  /* yyn is the number of a rule to reduce with.  */
  yylen = yyr2[yyn];
  yylen = yyr2[yyn];
 
 
  /* If YYLEN is nonzero, implement the default value of the action:
  /* If YYLEN is nonzero, implement the default value of the action:
     `$$ = $1'.
     `$$ = $1'.
 
 
     Otherwise, the following line sets YYVAL to garbage.
     Otherwise, the following line sets YYVAL to garbage.
     This behavior is undocumented and Bison
     This behavior is undocumented and Bison
     users should not rely upon it.  Assigning to YYVAL
     users should not rely upon it.  Assigning to YYVAL
     unconditionally makes the parser a bit smaller, and it avoids a
     unconditionally makes the parser a bit smaller, and it avoids a
     GCC warning that YYVAL may be used uninitialized.  */
     GCC warning that YYVAL may be used uninitialized.  */
  yyval = yyvsp[1-yylen];
  yyval = yyvsp[1-yylen];
 
 
 
 
  YY_REDUCE_PRINT (yyn);
  YY_REDUCE_PRINT (yyn);
  switch (yyn)
  switch (yyn)
    {
    {
        case 4:
        case 4:
#line 242 "c-exp.y"
#line 242 "c-exp.y"
    { write_exp_elt_opcode(OP_TYPE);
    { write_exp_elt_opcode(OP_TYPE);
                          write_exp_elt_type(yyvsp[0].tval);
                          write_exp_elt_type(yyvsp[0].tval);
                          write_exp_elt_opcode(OP_TYPE);}
                          write_exp_elt_opcode(OP_TYPE);}
    break;
    break;
 
 
  case 6:
  case 6:
#line 250 "c-exp.y"
#line 250 "c-exp.y"
    { write_exp_elt_opcode (BINOP_COMMA); }
    { write_exp_elt_opcode (BINOP_COMMA); }
    break;
    break;
 
 
  case 7:
  case 7:
#line 255 "c-exp.y"
#line 255 "c-exp.y"
    { write_exp_elt_opcode (UNOP_IND); }
    { write_exp_elt_opcode (UNOP_IND); }
    break;
    break;
 
 
  case 8:
  case 8:
#line 259 "c-exp.y"
#line 259 "c-exp.y"
    { write_exp_elt_opcode (UNOP_ADDR); }
    { write_exp_elt_opcode (UNOP_ADDR); }
    break;
    break;
 
 
  case 9:
  case 9:
#line 263 "c-exp.y"
#line 263 "c-exp.y"
    { write_exp_elt_opcode (UNOP_NEG); }
    { write_exp_elt_opcode (UNOP_NEG); }
    break;
    break;
 
 
  case 10:
  case 10:
#line 267 "c-exp.y"
#line 267 "c-exp.y"
    { write_exp_elt_opcode (UNOP_PLUS); }
    { write_exp_elt_opcode (UNOP_PLUS); }
    break;
    break;
 
 
  case 11:
  case 11:
#line 271 "c-exp.y"
#line 271 "c-exp.y"
    { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
    { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
    break;
    break;
 
 
  case 12:
  case 12:
#line 275 "c-exp.y"
#line 275 "c-exp.y"
    { write_exp_elt_opcode (UNOP_COMPLEMENT); }
    { write_exp_elt_opcode (UNOP_COMPLEMENT); }
    break;
    break;
 
 
  case 13:
  case 13:
#line 279 "c-exp.y"
#line 279 "c-exp.y"
    { write_exp_elt_opcode (UNOP_PREINCREMENT); }
    { write_exp_elt_opcode (UNOP_PREINCREMENT); }
    break;
    break;
 
 
  case 14:
  case 14:
#line 283 "c-exp.y"
#line 283 "c-exp.y"
    { write_exp_elt_opcode (UNOP_PREDECREMENT); }
    { write_exp_elt_opcode (UNOP_PREDECREMENT); }
    break;
    break;
 
 
  case 15:
  case 15:
#line 287 "c-exp.y"
#line 287 "c-exp.y"
    { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
    { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
    break;
    break;
 
 
  case 16:
  case 16:
#line 291 "c-exp.y"
#line 291 "c-exp.y"
    { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
    { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
    break;
    break;
 
 
  case 17:
  case 17:
#line 295 "c-exp.y"
#line 295 "c-exp.y"
    { write_exp_elt_opcode (UNOP_SIZEOF); }
    { write_exp_elt_opcode (UNOP_SIZEOF); }
    break;
    break;
 
 
  case 18:
  case 18:
#line 299 "c-exp.y"
#line 299 "c-exp.y"
    { write_exp_elt_opcode (STRUCTOP_PTR);
    { write_exp_elt_opcode (STRUCTOP_PTR);
                          write_exp_string (yyvsp[0].sval);
                          write_exp_string (yyvsp[0].sval);
                          write_exp_elt_opcode (STRUCTOP_PTR); }
                          write_exp_elt_opcode (STRUCTOP_PTR); }
    break;
    break;
 
 
  case 19:
  case 19:
#line 305 "c-exp.y"
#line 305 "c-exp.y"
    { /* exp->type::name becomes exp->*(&type::name) */
    { /* exp->type::name becomes exp->*(&type::name) */
                          /* Note: this doesn't work if name is a
                          /* Note: this doesn't work if name is a
                             static member!  FIXME */
                             static member!  FIXME */
                          write_exp_elt_opcode (UNOP_ADDR);
                          write_exp_elt_opcode (UNOP_ADDR);
                          write_exp_elt_opcode (STRUCTOP_MPTR); }
                          write_exp_elt_opcode (STRUCTOP_MPTR); }
    break;
    break;
 
 
  case 20:
  case 20:
#line 313 "c-exp.y"
#line 313 "c-exp.y"
    { write_exp_elt_opcode (STRUCTOP_MPTR); }
    { write_exp_elt_opcode (STRUCTOP_MPTR); }
    break;
    break;
 
 
  case 21:
  case 21:
#line 317 "c-exp.y"
#line 317 "c-exp.y"
    { write_exp_elt_opcode (STRUCTOP_STRUCT);
    { write_exp_elt_opcode (STRUCTOP_STRUCT);
                          write_exp_string (yyvsp[0].sval);
                          write_exp_string (yyvsp[0].sval);
                          write_exp_elt_opcode (STRUCTOP_STRUCT); }
                          write_exp_elt_opcode (STRUCTOP_STRUCT); }
    break;
    break;
 
 
  case 22:
  case 22:
#line 323 "c-exp.y"
#line 323 "c-exp.y"
    { /* exp.type::name becomes exp.*(&type::name) */
    { /* exp.type::name becomes exp.*(&type::name) */
                          /* Note: this doesn't work if name is a
                          /* Note: this doesn't work if name is a
                             static member!  FIXME */
                             static member!  FIXME */
                          write_exp_elt_opcode (UNOP_ADDR);
                          write_exp_elt_opcode (UNOP_ADDR);
                          write_exp_elt_opcode (STRUCTOP_MEMBER); }
                          write_exp_elt_opcode (STRUCTOP_MEMBER); }
    break;
    break;
 
 
  case 23:
  case 23:
#line 331 "c-exp.y"
#line 331 "c-exp.y"
    { write_exp_elt_opcode (STRUCTOP_MEMBER); }
    { write_exp_elt_opcode (STRUCTOP_MEMBER); }
    break;
    break;
 
 
  case 24:
  case 24:
#line 335 "c-exp.y"
#line 335 "c-exp.y"
    { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
    { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
    break;
    break;
 
 
  case 25:
  case 25:
#line 341 "c-exp.y"
#line 341 "c-exp.y"
    { start_arglist (); }
    { start_arglist (); }
    break;
    break;
 
 
  case 26:
  case 26:
#line 343 "c-exp.y"
#line 343 "c-exp.y"
    { write_exp_elt_opcode (OP_FUNCALL);
    { write_exp_elt_opcode (OP_FUNCALL);
                          write_exp_elt_longcst ((LONGEST) end_arglist ());
                          write_exp_elt_longcst ((LONGEST) end_arglist ());
                          write_exp_elt_opcode (OP_FUNCALL); }
                          write_exp_elt_opcode (OP_FUNCALL); }
    break;
    break;
 
 
  case 27:
  case 27:
#line 349 "c-exp.y"
#line 349 "c-exp.y"
    { start_arglist (); }
    { start_arglist (); }
    break;
    break;
 
 
  case 29:
  case 29:
#line 356 "c-exp.y"
#line 356 "c-exp.y"
    { arglist_len = 1; }
    { arglist_len = 1; }
    break;
    break;
 
 
  case 30:
  case 30:
#line 360 "c-exp.y"
#line 360 "c-exp.y"
    { arglist_len++; }
    { arglist_len++; }
    break;
    break;
 
 
  case 31:
  case 31:
#line 364 "c-exp.y"
#line 364 "c-exp.y"
    { yyval.lval = end_arglist () - 1; }
    { yyval.lval = end_arglist () - 1; }
    break;
    break;
 
 
  case 32:
  case 32:
#line 367 "c-exp.y"
#line 367 "c-exp.y"
    { write_exp_elt_opcode (OP_ARRAY);
    { write_exp_elt_opcode (OP_ARRAY);
                          write_exp_elt_longcst ((LONGEST) 0);
                          write_exp_elt_longcst ((LONGEST) 0);
                          write_exp_elt_longcst ((LONGEST) yyvsp[0].lval);
                          write_exp_elt_longcst ((LONGEST) yyvsp[0].lval);
                          write_exp_elt_opcode (OP_ARRAY); }
                          write_exp_elt_opcode (OP_ARRAY); }
    break;
    break;
 
 
  case 33:
  case 33:
#line 374 "c-exp.y"
#line 374 "c-exp.y"
    { write_exp_elt_opcode (UNOP_MEMVAL);
    { write_exp_elt_opcode (UNOP_MEMVAL);
                          write_exp_elt_type (yyvsp[-2].tval);
                          write_exp_elt_type (yyvsp[-2].tval);
                          write_exp_elt_opcode (UNOP_MEMVAL); }
                          write_exp_elt_opcode (UNOP_MEMVAL); }
    break;
    break;
 
 
  case 34:
  case 34:
#line 380 "c-exp.y"
#line 380 "c-exp.y"
    { write_exp_elt_opcode (UNOP_CAST);
    { write_exp_elt_opcode (UNOP_CAST);
                          write_exp_elt_type (yyvsp[-2].tval);
                          write_exp_elt_type (yyvsp[-2].tval);
                          write_exp_elt_opcode (UNOP_CAST); }
                          write_exp_elt_opcode (UNOP_CAST); }
    break;
    break;
 
 
  case 35:
  case 35:
#line 386 "c-exp.y"
#line 386 "c-exp.y"
    { }
    { }
    break;
    break;
 
 
  case 36:
  case 36:
#line 392 "c-exp.y"
#line 392 "c-exp.y"
    { write_exp_elt_opcode (BINOP_REPEAT); }
    { write_exp_elt_opcode (BINOP_REPEAT); }
    break;
    break;
 
 
  case 37:
  case 37:
#line 396 "c-exp.y"
#line 396 "c-exp.y"
    { write_exp_elt_opcode (BINOP_MUL); }
    { write_exp_elt_opcode (BINOP_MUL); }
    break;
    break;
 
 
  case 38:
  case 38:
#line 400 "c-exp.y"
#line 400 "c-exp.y"
    { write_exp_elt_opcode (BINOP_DIV); }
    { write_exp_elt_opcode (BINOP_DIV); }
    break;
    break;
 
 
  case 39:
  case 39:
#line 404 "c-exp.y"
#line 404 "c-exp.y"
    { write_exp_elt_opcode (BINOP_REM); }
    { write_exp_elt_opcode (BINOP_REM); }
    break;
    break;
 
 
  case 40:
  case 40:
#line 408 "c-exp.y"
#line 408 "c-exp.y"
    { write_exp_elt_opcode (BINOP_ADD); }
    { write_exp_elt_opcode (BINOP_ADD); }
    break;
    break;
 
 
  case 41:
  case 41:
#line 412 "c-exp.y"
#line 412 "c-exp.y"
    { write_exp_elt_opcode (BINOP_SUB); }
    { write_exp_elt_opcode (BINOP_SUB); }
    break;
    break;
 
 
  case 42:
  case 42:
#line 416 "c-exp.y"
#line 416 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LSH); }
    { write_exp_elt_opcode (BINOP_LSH); }
    break;
    break;
 
 
  case 43:
  case 43:
#line 420 "c-exp.y"
#line 420 "c-exp.y"
    { write_exp_elt_opcode (BINOP_RSH); }
    { write_exp_elt_opcode (BINOP_RSH); }
    break;
    break;
 
 
  case 44:
  case 44:
#line 424 "c-exp.y"
#line 424 "c-exp.y"
    { write_exp_elt_opcode (BINOP_EQUAL); }
    { write_exp_elt_opcode (BINOP_EQUAL); }
    break;
    break;
 
 
  case 45:
  case 45:
#line 428 "c-exp.y"
#line 428 "c-exp.y"
    { write_exp_elt_opcode (BINOP_NOTEQUAL); }
    { write_exp_elt_opcode (BINOP_NOTEQUAL); }
    break;
    break;
 
 
  case 46:
  case 46:
#line 432 "c-exp.y"
#line 432 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LEQ); }
    { write_exp_elt_opcode (BINOP_LEQ); }
    break;
    break;
 
 
  case 47:
  case 47:
#line 436 "c-exp.y"
#line 436 "c-exp.y"
    { write_exp_elt_opcode (BINOP_GEQ); }
    { write_exp_elt_opcode (BINOP_GEQ); }
    break;
    break;
 
 
  case 48:
  case 48:
#line 440 "c-exp.y"
#line 440 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LESS); }
    { write_exp_elt_opcode (BINOP_LESS); }
    break;
    break;
 
 
  case 49:
  case 49:
#line 444 "c-exp.y"
#line 444 "c-exp.y"
    { write_exp_elt_opcode (BINOP_GTR); }
    { write_exp_elt_opcode (BINOP_GTR); }
    break;
    break;
 
 
  case 50:
  case 50:
#line 448 "c-exp.y"
#line 448 "c-exp.y"
    { write_exp_elt_opcode (BINOP_BITWISE_AND); }
    { write_exp_elt_opcode (BINOP_BITWISE_AND); }
    break;
    break;
 
 
  case 51:
  case 51:
#line 452 "c-exp.y"
#line 452 "c-exp.y"
    { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
    { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
    break;
    break;
 
 
  case 52:
  case 52:
#line 456 "c-exp.y"
#line 456 "c-exp.y"
    { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
    { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
    break;
    break;
 
 
  case 53:
  case 53:
#line 460 "c-exp.y"
#line 460 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
    { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
    break;
    break;
 
 
  case 54:
  case 54:
#line 464 "c-exp.y"
#line 464 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
    { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
    break;
    break;
 
 
  case 55:
  case 55:
#line 468 "c-exp.y"
#line 468 "c-exp.y"
    { write_exp_elt_opcode (TERNOP_COND); }
    { write_exp_elt_opcode (TERNOP_COND); }
    break;
    break;
 
 
  case 56:
  case 56:
#line 472 "c-exp.y"
#line 472 "c-exp.y"
    { write_exp_elt_opcode (BINOP_ASSIGN); }
    { write_exp_elt_opcode (BINOP_ASSIGN); }
    break;
    break;
 
 
  case 57:
  case 57:
#line 476 "c-exp.y"
#line 476 "c-exp.y"
    { write_exp_elt_opcode (BINOP_ASSIGN_MODIFY);
    { write_exp_elt_opcode (BINOP_ASSIGN_MODIFY);
                          write_exp_elt_opcode (yyvsp[-1].opcode);
                          write_exp_elt_opcode (yyvsp[-1].opcode);
                          write_exp_elt_opcode (BINOP_ASSIGN_MODIFY); }
                          write_exp_elt_opcode (BINOP_ASSIGN_MODIFY); }
    break;
    break;
 
 
  case 58:
  case 58:
#line 482 "c-exp.y"
#line 482 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (yyvsp[0].typed_val_int.type);
                          write_exp_elt_type (yyvsp[0].typed_val_int.type);
                          write_exp_elt_longcst ((LONGEST)(yyvsp[0].typed_val_int.val));
                          write_exp_elt_longcst ((LONGEST)(yyvsp[0].typed_val_int.val));
                          write_exp_elt_opcode (OP_LONG); }
                          write_exp_elt_opcode (OP_LONG); }
    break;
    break;
 
 
  case 59:
  case 59:
#line 489 "c-exp.y"
#line 489 "c-exp.y"
    { YYSTYPE val;
    { YYSTYPE val;
                          parse_number (yyvsp[0].ssym.stoken.ptr, yyvsp[0].ssym.stoken.length, 0, &val);
                          parse_number (yyvsp[0].ssym.stoken.ptr, yyvsp[0].ssym.stoken.length, 0, &val);
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (val.typed_val_int.type);
                          write_exp_elt_type (val.typed_val_int.type);
                          write_exp_elt_longcst ((LONGEST)val.typed_val_int.val);
                          write_exp_elt_longcst ((LONGEST)val.typed_val_int.val);
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_opcode (OP_LONG);
                        }
                        }
    break;
    break;
 
 
  case 60:
  case 60:
#line 500 "c-exp.y"
#line 500 "c-exp.y"
    { write_exp_elt_opcode (OP_DOUBLE);
    { write_exp_elt_opcode (OP_DOUBLE);
                          write_exp_elt_type (yyvsp[0].typed_val_float.type);
                          write_exp_elt_type (yyvsp[0].typed_val_float.type);
                          write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);
                          write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);
                          write_exp_elt_opcode (OP_DOUBLE); }
                          write_exp_elt_opcode (OP_DOUBLE); }
    break;
    break;
 
 
  case 61:
  case 61:
#line 507 "c-exp.y"
#line 507 "c-exp.y"
    { write_exp_elt_opcode (OP_DECFLOAT);
    { write_exp_elt_opcode (OP_DECFLOAT);
                          write_exp_elt_type (yyvsp[0].typed_val_decfloat.type);
                          write_exp_elt_type (yyvsp[0].typed_val_decfloat.type);
                          write_exp_elt_decfloatcst (yyvsp[0].typed_val_decfloat.val);
                          write_exp_elt_decfloatcst (yyvsp[0].typed_val_decfloat.val);
                          write_exp_elt_opcode (OP_DECFLOAT); }
                          write_exp_elt_opcode (OP_DECFLOAT); }
    break;
    break;
 
 
  case 64:
  case 64:
#line 521 "c-exp.y"
#line 521 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_int);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_int);
                          CHECK_TYPEDEF (yyvsp[-1].tval);
                          CHECK_TYPEDEF (yyvsp[-1].tval);
                          write_exp_elt_longcst ((LONGEST) TYPE_LENGTH (yyvsp[-1].tval));
                          write_exp_elt_longcst ((LONGEST) TYPE_LENGTH (yyvsp[-1].tval));
                          write_exp_elt_opcode (OP_LONG); }
                          write_exp_elt_opcode (OP_LONG); }
    break;
    break;
 
 
  case 65:
  case 65:
#line 529 "c-exp.y"
#line 529 "c-exp.y"
    { /* C strings are converted into array constants with
    { /* C strings are converted into array constants with
                             an explicit null byte added at the end.  Thus
                             an explicit null byte added at the end.  Thus
                             the array upper bound is the string length.
                             the array upper bound is the string length.
                             There is no such thing in C as a completely empty
                             There is no such thing in C as a completely empty
                             string. */
                             string. */
                          char *sp = yyvsp[0].sval.ptr; int count = yyvsp[0].sval.length;
                          char *sp = yyvsp[0].sval.ptr; int count = yyvsp[0].sval.length;
                          while (count-- > 0)
                          while (count-- > 0)
                            {
                            {
                              write_exp_elt_opcode (OP_LONG);
                              write_exp_elt_opcode (OP_LONG);
                              write_exp_elt_type (builtin_type (current_gdbarch)->builtin_char);
                              write_exp_elt_type (builtin_type (current_gdbarch)->builtin_char);
                              write_exp_elt_longcst ((LONGEST)(*sp++));
                              write_exp_elt_longcst ((LONGEST)(*sp++));
                              write_exp_elt_opcode (OP_LONG);
                              write_exp_elt_opcode (OP_LONG);
                            }
                            }
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_char);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_char);
                          write_exp_elt_longcst ((LONGEST)'\0');
                          write_exp_elt_longcst ((LONGEST)'\0');
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_opcode (OP_ARRAY);
                          write_exp_elt_opcode (OP_ARRAY);
                          write_exp_elt_longcst ((LONGEST) 0);
                          write_exp_elt_longcst ((LONGEST) 0);
                          write_exp_elt_longcst ((LONGEST) (yyvsp[0].sval.length));
                          write_exp_elt_longcst ((LONGEST) (yyvsp[0].sval.length));
                          write_exp_elt_opcode (OP_ARRAY); }
                          write_exp_elt_opcode (OP_ARRAY); }
    break;
    break;
 
 
  case 66:
  case 66:
#line 554 "c-exp.y"
#line 554 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_bool);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_bool);
                          write_exp_elt_longcst ((LONGEST) 1);
                          write_exp_elt_longcst ((LONGEST) 1);
                          write_exp_elt_opcode (OP_LONG); }
                          write_exp_elt_opcode (OP_LONG); }
    break;
    break;
 
 
  case 67:
  case 67:
#line 561 "c-exp.y"
#line 561 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_bool);
                          write_exp_elt_type (builtin_type (current_gdbarch)->builtin_bool);
                          write_exp_elt_longcst ((LONGEST) 0);
                          write_exp_elt_longcst ((LONGEST) 0);
                          write_exp_elt_opcode (OP_LONG); }
                          write_exp_elt_opcode (OP_LONG); }
    break;
    break;
 
 
  case 68:
  case 68:
#line 570 "c-exp.y"
#line 570 "c-exp.y"
    {
    {
                          if (yyvsp[0].ssym.sym)
                          if (yyvsp[0].ssym.sym)
                            yyval.bval = SYMBOL_BLOCK_VALUE (yyvsp[0].ssym.sym);
                            yyval.bval = SYMBOL_BLOCK_VALUE (yyvsp[0].ssym.sym);
                          else
                          else
                            error ("No file or function \"%s\".",
                            error ("No file or function \"%s\".",
                                   copy_name (yyvsp[0].ssym.stoken));
                                   copy_name (yyvsp[0].ssym.stoken));
                        }
                        }
    break;
    break;
 
 
  case 69:
  case 69:
#line 578 "c-exp.y"
#line 578 "c-exp.y"
    {
    {
                          yyval.bval = yyvsp[0].bval;
                          yyval.bval = yyvsp[0].bval;
                        }
                        }
    break;
    break;
 
 
  case 70:
  case 70:
#line 584 "c-exp.y"
#line 584 "c-exp.y"
    { struct symbol *tem
    { struct symbol *tem
                            = lookup_symbol (copy_name (yyvsp[0].sval), yyvsp[-2].bval,
                            = lookup_symbol (copy_name (yyvsp[0].sval), yyvsp[-2].bval,
                                             VAR_DOMAIN, (int *) NULL,
                                             VAR_DOMAIN, (int *) NULL,
                                             (struct symtab **) NULL);
                                             (struct symtab **) NULL);
                          if (!tem || SYMBOL_CLASS (tem) != LOC_BLOCK)
                          if (!tem || SYMBOL_CLASS (tem) != LOC_BLOCK)
                            error ("No function \"%s\" in specified context.",
                            error ("No function \"%s\" in specified context.",
                                   copy_name (yyvsp[0].sval));
                                   copy_name (yyvsp[0].sval));
                          yyval.bval = SYMBOL_BLOCK_VALUE (tem); }
                          yyval.bval = SYMBOL_BLOCK_VALUE (tem); }
    break;
    break;
 
 
  case 71:
  case 71:
#line 595 "c-exp.y"
#line 595 "c-exp.y"
    { struct symbol *sym;
    { struct symbol *sym;
                          sym = lookup_symbol (copy_name (yyvsp[0].sval), yyvsp[-2].bval,
                          sym = lookup_symbol (copy_name (yyvsp[0].sval), yyvsp[-2].bval,
                                               VAR_DOMAIN, (int *) NULL,
                                               VAR_DOMAIN, (int *) NULL,
                                               (struct symtab **) NULL);
                                               (struct symtab **) NULL);
                          if (sym == 0)
                          if (sym == 0)
                            error ("No symbol \"%s\" in specified context.",
                            error ("No symbol \"%s\" in specified context.",
                                   copy_name (yyvsp[0].sval));
                                   copy_name (yyvsp[0].sval));
 
 
                          write_exp_elt_opcode (OP_VAR_VALUE);
                          write_exp_elt_opcode (OP_VAR_VALUE);
                          /* block_found is set by lookup_symbol.  */
                          /* block_found is set by lookup_symbol.  */
                          write_exp_elt_block (block_found);
                          write_exp_elt_block (block_found);
                          write_exp_elt_sym (sym);
                          write_exp_elt_sym (sym);
                          write_exp_elt_opcode (OP_VAR_VALUE); }
                          write_exp_elt_opcode (OP_VAR_VALUE); }
    break;
    break;
 
 
  case 72:
  case 72:
#line 611 "c-exp.y"
#line 611 "c-exp.y"
    {
    {
                          struct type *type = yyvsp[-2].tval;
                          struct type *type = yyvsp[-2].tval;
                          if (TYPE_CODE (type) != TYPE_CODE_STRUCT
                          if (TYPE_CODE (type) != TYPE_CODE_STRUCT
                              && TYPE_CODE (type) != TYPE_CODE_UNION
                              && TYPE_CODE (type) != TYPE_CODE_UNION
                              && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
                              && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
                            error ("`%s' is not defined as an aggregate type.",
                            error ("`%s' is not defined as an aggregate type.",
                                   TYPE_NAME (type));
                                   TYPE_NAME (type));
 
 
                          write_exp_elt_opcode (OP_SCOPE);
                          write_exp_elt_opcode (OP_SCOPE);
                          write_exp_elt_type (type);
                          write_exp_elt_type (type);
                          write_exp_string (yyvsp[0].sval);
                          write_exp_string (yyvsp[0].sval);
                          write_exp_elt_opcode (OP_SCOPE);
                          write_exp_elt_opcode (OP_SCOPE);
                        }
                        }
    break;
    break;
 
 
  case 73:
  case 73:
#line 625 "c-exp.y"
#line 625 "c-exp.y"
    {
    {
                          struct type *type = yyvsp[-3].tval;
                          struct type *type = yyvsp[-3].tval;
                          struct stoken tmp_token;
                          struct stoken tmp_token;
                          if (TYPE_CODE (type) != TYPE_CODE_STRUCT
                          if (TYPE_CODE (type) != TYPE_CODE_STRUCT
                              && TYPE_CODE (type) != TYPE_CODE_UNION
                              && TYPE_CODE (type) != TYPE_CODE_UNION
                              && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
                              && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
                            error ("`%s' is not defined as an aggregate type.",
                            error ("`%s' is not defined as an aggregate type.",
                                   TYPE_NAME (type));
                                   TYPE_NAME (type));
 
 
                          tmp_token.ptr = (char*) alloca (yyvsp[0].sval.length + 2);
                          tmp_token.ptr = (char*) alloca (yyvsp[0].sval.length + 2);
                          tmp_token.length = yyvsp[0].sval.length + 1;
                          tmp_token.length = yyvsp[0].sval.length + 1;
                          tmp_token.ptr[0] = '~';
                          tmp_token.ptr[0] = '~';
                          memcpy (tmp_token.ptr+1, yyvsp[0].sval.ptr, yyvsp[0].sval.length);
                          memcpy (tmp_token.ptr+1, yyvsp[0].sval.ptr, yyvsp[0].sval.length);
                          tmp_token.ptr[tmp_token.length] = 0;
                          tmp_token.ptr[tmp_token.length] = 0;
 
 
                          /* Check for valid destructor name.  */
                          /* Check for valid destructor name.  */
                          destructor_name_p (tmp_token.ptr, type);
                          destructor_name_p (tmp_token.ptr, type);
                          write_exp_elt_opcode (OP_SCOPE);
                          write_exp_elt_opcode (OP_SCOPE);
                          write_exp_elt_type (type);
                          write_exp_elt_type (type);
                          write_exp_string (tmp_token);
                          write_exp_string (tmp_token);
                          write_exp_elt_opcode (OP_SCOPE);
                          write_exp_elt_opcode (OP_SCOPE);
                        }
                        }
    break;
    break;
 
 
  case 75:
  case 75:
#line 651 "c-exp.y"
#line 651 "c-exp.y"
    {
    {
                          char *name = copy_name (yyvsp[0].sval);
                          char *name = copy_name (yyvsp[0].sval);
                          struct symbol *sym;
                          struct symbol *sym;
                          struct minimal_symbol *msymbol;
                          struct minimal_symbol *msymbol;
 
 
                          sym =
                          sym =
                            lookup_symbol (name, (const struct block *) NULL,
                            lookup_symbol (name, (const struct block *) NULL,
                                           VAR_DOMAIN, (int *) NULL,
                                           VAR_DOMAIN, (int *) NULL,
                                           (struct symtab **) NULL);
                                           (struct symtab **) NULL);
                          if (sym)
                          if (sym)
                            {
                            {
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              write_exp_elt_block (NULL);
                              write_exp_elt_block (NULL);
                              write_exp_elt_sym (sym);
                              write_exp_elt_sym (sym);
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              break;
                              break;
                            }
                            }
 
 
                          msymbol = lookup_minimal_symbol (name, NULL, NULL);
                          msymbol = lookup_minimal_symbol (name, NULL, NULL);
                          if (msymbol != NULL)
                          if (msymbol != NULL)
                            {
                            {
                              write_exp_msymbol (msymbol,
                              write_exp_msymbol (msymbol,
                                                 lookup_function_type (builtin_type (current_gdbarch)->builtin_int),
                                                 lookup_function_type (builtin_type (current_gdbarch)->builtin_int),
                                                 builtin_type (current_gdbarch)->builtin_int);
                                                 builtin_type (current_gdbarch)->builtin_int);
                            }
                            }
                          else
                          else
                            if (!have_full_symbols () && !have_partial_symbols ())
                            if (!have_full_symbols () && !have_partial_symbols ())
                              error ("No symbol table is loaded.  Use the \"file\" command.");
                              error ("No symbol table is loaded.  Use the \"file\" command.");
                            else
                            else
                              error ("No symbol \"%s\" in current context.", name);
                              error ("No symbol \"%s\" in current context.", name);
                        }
                        }
    break;
    break;
 
 
  case 76:
  case 76:
#line 685 "c-exp.y"
#line 685 "c-exp.y"
    { struct symbol *sym = yyvsp[0].ssym.sym;
    { struct symbol *sym = yyvsp[0].ssym.sym;
 
 
                          if (sym)
                          if (sym)
                            {
                            {
                              if (symbol_read_needs_frame (sym))
                              if (symbol_read_needs_frame (sym))
                                {
                                {
                                  if (innermost_block == 0 ||
                                  if (innermost_block == 0 ||
                                      contained_in (block_found,
                                      contained_in (block_found,
                                                    innermost_block))
                                                    innermost_block))
                                    innermost_block = block_found;
                                    innermost_block = block_found;
                                }
                                }
 
 
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              /* We want to use the selected frame, not
                              /* We want to use the selected frame, not
                                 another more inner frame which happens to
                                 another more inner frame which happens to
                                 be in the same block.  */
                                 be in the same block.  */
                              write_exp_elt_block (NULL);
                              write_exp_elt_block (NULL);
                              write_exp_elt_sym (sym);
                              write_exp_elt_sym (sym);
                              write_exp_elt_opcode (OP_VAR_VALUE);
                              write_exp_elt_opcode (OP_VAR_VALUE);
                            }
                            }
                          else if (yyvsp[0].ssym.is_a_field_of_this)
                          else if (yyvsp[0].ssym.is_a_field_of_this)
                            {
                            {
                              /* C++: it hangs off of `this'.  Must
                              /* C++: it hangs off of `this'.  Must
                                 not inadvertently convert from a method call
                                 not inadvertently convert from a method call
                                 to data ref.  */
                                 to data ref.  */
                              if (innermost_block == 0 ||
                              if (innermost_block == 0 ||
                                  contained_in (block_found, innermost_block))
                                  contained_in (block_found, innermost_block))
                                innermost_block = block_found;
                                innermost_block = block_found;
                              write_exp_elt_opcode (OP_THIS);
                              write_exp_elt_opcode (OP_THIS);
                              write_exp_elt_opcode (OP_THIS);
                              write_exp_elt_opcode (OP_THIS);
                              write_exp_elt_opcode (STRUCTOP_PTR);
                              write_exp_elt_opcode (STRUCTOP_PTR);
                              write_exp_string (yyvsp[0].ssym.stoken);
                              write_exp_string (yyvsp[0].ssym.stoken);
                              write_exp_elt_opcode (STRUCTOP_PTR);
                              write_exp_elt_opcode (STRUCTOP_PTR);
                            }
                            }
                          else
                          else
                            {
                            {
                              struct minimal_symbol *msymbol;
                              struct minimal_symbol *msymbol;
                              char *arg = copy_name (yyvsp[0].ssym.stoken);
                              char *arg = copy_name (yyvsp[0].ssym.stoken);
 
 
                              msymbol =
                              msymbol =
                                lookup_minimal_symbol (arg, NULL, NULL);
                                lookup_minimal_symbol (arg, NULL, NULL);
                              if (msymbol != NULL)
                              if (msymbol != NULL)
                                {
                                {
                                  write_exp_msymbol (msymbol,
                                  write_exp_msymbol (msymbol,
                                                     lookup_function_type (builtin_type (current_gdbarch)->builtin_int),
                                                     lookup_function_type (builtin_type (current_gdbarch)->builtin_int),
                                                     builtin_type (current_gdbarch)->builtin_int);
                                                     builtin_type (current_gdbarch)->builtin_int);
                                }
                                }
                              else if (!have_full_symbols () && !have_partial_symbols ())
                              else if (!have_full_symbols () && !have_partial_symbols ())
                                error ("No symbol table is loaded.  Use the \"file\" command.");
                                error ("No symbol table is loaded.  Use the \"file\" command.");
                              else
                              else
                                error ("No symbol \"%s\" in current context.",
                                error ("No symbol \"%s\" in current context.",
                                       copy_name (yyvsp[0].ssym.stoken));
                                       copy_name (yyvsp[0].ssym.stoken));
                            }
                            }
                        }
                        }
    break;
    break;
 
 
  case 77:
  case 77:
#line 742 "c-exp.y"
#line 742 "c-exp.y"
    { push_type_address_space (copy_name (yyvsp[0].ssym.stoken));
    { push_type_address_space (copy_name (yyvsp[0].ssym.stoken));
                  push_type (tp_space_identifier);
                  push_type (tp_space_identifier);
                }
                }
    break;
    break;
 
 
  case 85:
  case 85:
#line 764 "c-exp.y"
#line 764 "c-exp.y"
    { push_type (tp_pointer); yyval.voidval = 0; }
    { push_type (tp_pointer); yyval.voidval = 0; }
    break;
    break;
 
 
  case 86:
  case 86:
#line 766 "c-exp.y"
#line 766 "c-exp.y"
    { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; }
    { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; }
    break;
    break;
 
 
  case 87:
  case 87:
#line 768 "c-exp.y"
#line 768 "c-exp.y"
    { push_type (tp_reference); yyval.voidval = 0; }
    { push_type (tp_reference); yyval.voidval = 0; }
    break;
    break;
 
 
  case 88:
  case 88:
#line 770 "c-exp.y"
#line 770 "c-exp.y"
    { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; }
    { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; }
    break;
    break;
 
 
  case 90:
  case 90:
#line 775 "c-exp.y"
#line 775 "c-exp.y"
    { yyval.voidval = yyvsp[-1].voidval; }
    { yyval.voidval = yyvsp[-1].voidval; }
    break;
    break;
 
 
  case 91:
  case 91:
#line 777 "c-exp.y"
#line 777 "c-exp.y"
    {
    {
                          push_type_int (yyvsp[0].lval);
                          push_type_int (yyvsp[0].lval);
                          push_type (tp_array);
                          push_type (tp_array);
                        }
                        }
    break;
    break;
 
 
  case 92:
  case 92:
#line 782 "c-exp.y"
#line 782 "c-exp.y"
    {
    {
                          push_type_int (yyvsp[0].lval);
                          push_type_int (yyvsp[0].lval);
                          push_type (tp_array);
                          push_type (tp_array);
                          yyval.voidval = 0;
                          yyval.voidval = 0;
                        }
                        }
    break;
    break;
 
 
  case 93:
  case 93:
#line 789 "c-exp.y"
#line 789 "c-exp.y"
    { push_type (tp_function); }
    { push_type (tp_function); }
    break;
    break;
 
 
  case 94:
  case 94:
#line 791 "c-exp.y"
#line 791 "c-exp.y"
    { push_type (tp_function); }
    { push_type (tp_function); }
    break;
    break;
 
 
  case 95:
  case 95:
#line 795 "c-exp.y"
#line 795 "c-exp.y"
    { yyval.lval = -1; }
    { yyval.lval = -1; }
    break;
    break;
 
 
  case 96:
  case 96:
#line 797 "c-exp.y"
#line 797 "c-exp.y"
    { yyval.lval = yyvsp[-1].typed_val_int.val; }
    { yyval.lval = yyvsp[-1].typed_val_int.val; }
    break;
    break;
 
 
  case 97:
  case 97:
#line 801 "c-exp.y"
#line 801 "c-exp.y"
    { yyval.voidval = 0; }
    { yyval.voidval = 0; }
    break;
    break;
 
 
  case 98:
  case 98:
#line 803 "c-exp.y"
#line 803 "c-exp.y"
    { free (yyvsp[-1].tvec); yyval.voidval = 0; }
    { free (yyvsp[-1].tvec); yyval.voidval = 0; }
    break;
    break;
 
 
  case 100:
  case 100:
#line 819 "c-exp.y"
#line 819 "c-exp.y"
    { yyval.tval = yyvsp[0].tsym.type; }
    { yyval.tval = yyvsp[0].tsym.type; }
    break;
    break;
 
 
  case 101:
  case 101:
#line 821 "c-exp.y"
#line 821 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_int; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_int; }
    break;
    break;
 
 
  case 102:
  case 102:
#line 823 "c-exp.y"
#line 823 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    break;
    break;
 
 
  case 103:
  case 103:
#line 825 "c-exp.y"
#line 825 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    break;
    break;
 
 
  case 104:
  case 104:
#line 827 "c-exp.y"
#line 827 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    break;
    break;
 
 
  case 105:
  case 105:
#line 829 "c-exp.y"
#line 829 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    break;
    break;
 
 
  case 106:
  case 106:
#line 831 "c-exp.y"
#line 831 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    break;
    break;
 
 
  case 107:
  case 107:
#line 833 "c-exp.y"
#line 833 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long; }
    break;
    break;
 
 
  case 108:
  case 108:
#line 835 "c-exp.y"
#line 835 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long; }
    break;
    break;
 
 
  case 109:
  case 109:
#line 837 "c-exp.y"
#line 837 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long; }
    break;
    break;
 
 
  case 110:
  case 110:
#line 839 "c-exp.y"
#line 839 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long; }
    break;
    break;
 
 
  case 111:
  case 111:
#line 841 "c-exp.y"
#line 841 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    break;
    break;
 
 
  case 112:
  case 112:
#line 843 "c-exp.y"
#line 843 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    break;
    break;
 
 
  case 113:
  case 113:
#line 845 "c-exp.y"
#line 845 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    break;
    break;
 
 
  case 114:
  case 114:
#line 847 "c-exp.y"
#line 847 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    break;
    break;
 
 
  case 115:
  case 115:
#line 849 "c-exp.y"
#line 849 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    break;
    break;
 
 
  case 116:
  case 116:
#line 851 "c-exp.y"
#line 851 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_long; }
    break;
    break;
 
 
  case 117:
  case 117:
#line 853 "c-exp.y"
#line 853 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 118:
  case 118:
#line 855 "c-exp.y"
#line 855 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 119:
  case 119:
#line 857 "c-exp.y"
#line 857 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 120:
  case 120:
#line 859 "c-exp.y"
#line 859 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 121:
  case 121:
#line 861 "c-exp.y"
#line 861 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    break;
    break;
 
 
  case 122:
  case 122:
#line 863 "c-exp.y"
#line 863 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    break;
    break;
 
 
  case 123:
  case 123:
#line 865 "c-exp.y"
#line 865 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_short; }
    break;
    break;
 
 
  case 124:
  case 124:
#line 867 "c-exp.y"
#line 867 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_short; }
    break;
    break;
 
 
  case 125:
  case 125:
#line 869 "c-exp.y"
#line 869 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_short; }
    break;
    break;
 
 
  case 126:
  case 126:
#line 871 "c-exp.y"
#line 871 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_short; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_short; }
    break;
    break;
 
 
  case 127:
  case 127:
#line 873 "c-exp.y"
#line 873 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_double; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_double; }
    break;
    break;
 
 
  case 128:
  case 128:
#line 875 "c-exp.y"
#line 875 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_double; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_long_double; }
    break;
    break;
 
 
  case 129:
  case 129:
#line 877 "c-exp.y"
#line 877 "c-exp.y"
    { yyval.tval = lookup_struct (copy_name (yyvsp[0].sval),
    { yyval.tval = lookup_struct (copy_name (yyvsp[0].sval),
                                              expression_context_block); }
                                              expression_context_block); }
    break;
    break;
 
 
  case 130:
  case 130:
#line 880 "c-exp.y"
#line 880 "c-exp.y"
    { yyval.tval = lookup_struct (copy_name (yyvsp[0].sval),
    { yyval.tval = lookup_struct (copy_name (yyvsp[0].sval),
                                              expression_context_block); }
                                              expression_context_block); }
    break;
    break;
 
 
  case 131:
  case 131:
#line 883 "c-exp.y"
#line 883 "c-exp.y"
    { yyval.tval = lookup_union (copy_name (yyvsp[0].sval),
    { yyval.tval = lookup_union (copy_name (yyvsp[0].sval),
                                             expression_context_block); }
                                             expression_context_block); }
    break;
    break;
 
 
  case 132:
  case 132:
#line 886 "c-exp.y"
#line 886 "c-exp.y"
    { yyval.tval = lookup_enum (copy_name (yyvsp[0].sval),
    { yyval.tval = lookup_enum (copy_name (yyvsp[0].sval),
                                            expression_context_block); }
                                            expression_context_block); }
    break;
    break;
 
 
  case 133:
  case 133:
#line 889 "c-exp.y"
#line 889 "c-exp.y"
    { yyval.tval = lookup_unsigned_typename (TYPE_NAME(yyvsp[0].tsym.type)); }
    { yyval.tval = lookup_unsigned_typename (TYPE_NAME(yyvsp[0].tsym.type)); }
    break;
    break;
 
 
  case 134:
  case 134:
#line 891 "c-exp.y"
#line 891 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_int; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_unsigned_int; }
    break;
    break;
 
 
  case 135:
  case 135:
#line 893 "c-exp.y"
#line 893 "c-exp.y"
    { yyval.tval = lookup_signed_typename (TYPE_NAME(yyvsp[0].tsym.type)); }
    { yyval.tval = lookup_signed_typename (TYPE_NAME(yyvsp[0].tsym.type)); }
    break;
    break;
 
 
  case 136:
  case 136:
#line 895 "c-exp.y"
#line 895 "c-exp.y"
    { yyval.tval = builtin_type (current_gdbarch)->builtin_int; }
    { yyval.tval = builtin_type (current_gdbarch)->builtin_int; }
    break;
    break;
 
 
  case 137:
  case 137:
#line 900 "c-exp.y"
#line 900 "c-exp.y"
    { yyval.tval = lookup_template_type(copy_name(yyvsp[-3].sval), yyvsp[-1].tval,
    { yyval.tval = lookup_template_type(copy_name(yyvsp[-3].sval), yyvsp[-1].tval,
                                                    expression_context_block);
                                                    expression_context_block);
                        }
                        }
    break;
    break;
 
 
  case 138:
  case 138:
#line 904 "c-exp.y"
#line 904 "c-exp.y"
    { yyval.tval = follow_types (yyvsp[0].tval); }
    { yyval.tval = follow_types (yyvsp[0].tval); }
    break;
    break;
 
 
  case 139:
  case 139:
#line 906 "c-exp.y"
#line 906 "c-exp.y"
    { yyval.tval = follow_types (yyvsp[-1].tval); }
    { yyval.tval = follow_types (yyvsp[-1].tval); }
    break;
    break;
 
 
  case 141:
  case 141:
#line 956 "c-exp.y"
#line 956 "c-exp.y"
    {
    {
                  struct type *type = yyvsp[-2].tval;
                  struct type *type = yyvsp[-2].tval;
                  struct type *new_type;
                  struct type *new_type;
                  char *ncopy = alloca (yyvsp[0].sval.length + 1);
                  char *ncopy = alloca (yyvsp[0].sval.length + 1);
 
 
                  memcpy (ncopy, yyvsp[0].sval.ptr, yyvsp[0].sval.length);
                  memcpy (ncopy, yyvsp[0].sval.ptr, yyvsp[0].sval.length);
                  ncopy[yyvsp[0].sval.length] = '\0';
                  ncopy[yyvsp[0].sval.length] = '\0';
 
 
                  if (TYPE_CODE (type) != TYPE_CODE_STRUCT
                  if (TYPE_CODE (type) != TYPE_CODE_STRUCT
                      && TYPE_CODE (type) != TYPE_CODE_UNION
                      && TYPE_CODE (type) != TYPE_CODE_UNION
                      && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
                      && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
                    error ("`%s' is not defined as an aggregate type.",
                    error ("`%s' is not defined as an aggregate type.",
                           TYPE_NAME (type));
                           TYPE_NAME (type));
 
 
                  new_type = cp_lookup_nested_type (type, ncopy,
                  new_type = cp_lookup_nested_type (type, ncopy,
                                                    expression_context_block);
                                                    expression_context_block);
                  if (new_type == NULL)
                  if (new_type == NULL)
                    error ("No type \"%s\" within class or namespace \"%s\".",
                    error ("No type \"%s\" within class or namespace \"%s\".",
                           ncopy, TYPE_NAME (type));
                           ncopy, TYPE_NAME (type));
 
 
                  yyval.tval = new_type;
                  yyval.tval = new_type;
                }
                }
    break;
    break;
 
 
  case 143:
  case 143:
#line 982 "c-exp.y"
#line 982 "c-exp.y"
    {
    {
                  yyval.tsym.stoken.ptr = "int";
                  yyval.tsym.stoken.ptr = "int";
                  yyval.tsym.stoken.length = 3;
                  yyval.tsym.stoken.length = 3;
                  yyval.tsym.type = builtin_type (current_gdbarch)->builtin_int;
                  yyval.tsym.type = builtin_type (current_gdbarch)->builtin_int;
                }
                }
    break;
    break;
 
 
  case 144:
  case 144:
#line 988 "c-exp.y"
#line 988 "c-exp.y"
    {
    {
                  yyval.tsym.stoken.ptr = "long";
                  yyval.tsym.stoken.ptr = "long";
                  yyval.tsym.stoken.length = 4;
                  yyval.tsym.stoken.length = 4;
                  yyval.tsym.type = builtin_type (current_gdbarch)->builtin_long;
                  yyval.tsym.type = builtin_type (current_gdbarch)->builtin_long;
                }
                }
    break;
    break;
 
 
  case 145:
  case 145:
#line 994 "c-exp.y"
#line 994 "c-exp.y"
    {
    {
                  yyval.tsym.stoken.ptr = "short";
                  yyval.tsym.stoken.ptr = "short";
                  yyval.tsym.stoken.length = 5;
                  yyval.tsym.stoken.length = 5;
                  yyval.tsym.type = builtin_type (current_gdbarch)->builtin_short;
                  yyval.tsym.type = builtin_type (current_gdbarch)->builtin_short;
                }
                }
    break;
    break;
 
 
  case 146:
  case 146:
#line 1003 "c-exp.y"
#line 1003 "c-exp.y"
    { yyval.tvec = (struct type **) xmalloc (sizeof (struct type *) * 2);
    { yyval.tvec = (struct type **) xmalloc (sizeof (struct type *) * 2);
                  yyval.ivec[0] = 1;     /* Number of types in vector */
                  yyval.ivec[0] = 1;     /* Number of types in vector */
                  yyval.tvec[1] = yyvsp[0].tval;
                  yyval.tvec[1] = yyvsp[0].tval;
                }
                }
    break;
    break;
 
 
  case 147:
  case 147:
#line 1008 "c-exp.y"
#line 1008 "c-exp.y"
    { int len = sizeof (struct type *) * (++(yyvsp[-2].ivec[0]) + 1);
    { int len = sizeof (struct type *) * (++(yyvsp[-2].ivec[0]) + 1);
                  yyval.tvec = (struct type **) xrealloc ((char *) yyvsp[-2].tvec, len);
                  yyval.tvec = (struct type **) xrealloc ((char *) yyvsp[-2].tvec, len);
                  yyval.tvec[yyval.ivec[0]] = yyvsp[0].tval;
                  yyval.tvec[yyval.ivec[0]] = yyvsp[0].tval;
                }
                }
    break;
    break;
 
 
  case 149:
  case 149:
#line 1016 "c-exp.y"
#line 1016 "c-exp.y"
    { yyval.tval = follow_types (yyvsp[-3].tval); }
    { yyval.tval = follow_types (yyvsp[-3].tval); }
    break;
    break;
 
 
  case 152:
  case 152:
#line 1024 "c-exp.y"
#line 1024 "c-exp.y"
    { push_type (tp_const);
    { push_type (tp_const);
                          push_type (tp_volatile);
                          push_type (tp_volatile);
                        }
                        }
    break;
    break;
 
 
  case 153:
  case 153:
#line 1028 "c-exp.y"
#line 1028 "c-exp.y"
    { push_type (tp_const); }
    { push_type (tp_const); }
    break;
    break;
 
 
  case 154:
  case 154:
#line 1030 "c-exp.y"
#line 1030 "c-exp.y"
    { push_type (tp_volatile); }
    { push_type (tp_volatile); }
    break;
    break;
 
 
  case 155:
  case 155:
#line 1033 "c-exp.y"
#line 1033 "c-exp.y"
    { yyval.sval = yyvsp[0].ssym.stoken; }
    { yyval.sval = yyvsp[0].ssym.stoken; }
    break;
    break;
 
 
  case 156:
  case 156:
#line 1034 "c-exp.y"
#line 1034 "c-exp.y"
    { yyval.sval = yyvsp[0].ssym.stoken; }
    { yyval.sval = yyvsp[0].ssym.stoken; }
    break;
    break;
 
 
  case 157:
  case 157:
#line 1035 "c-exp.y"
#line 1035 "c-exp.y"
    { yyval.sval = yyvsp[0].tsym.stoken; }
    { yyval.sval = yyvsp[0].tsym.stoken; }
    break;
    break;
 
 
  case 158:
  case 158:
#line 1036 "c-exp.y"
#line 1036 "c-exp.y"
    { yyval.sval = yyvsp[0].ssym.stoken; }
    { yyval.sval = yyvsp[0].ssym.stoken; }
    break;
    break;
 
 
 
 
    }
    }
 
 
/* Line 1000 of yacc.c.  */
/* Line 1000 of yacc.c.  */
#line 2477 "c-exp.c.tmp"
#line 2477 "c-exp.c.tmp"


  yyvsp -= yylen;
  yyvsp -= yylen;
  yyssp -= yylen;
  yyssp -= yylen;
 
 
 
 
  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.  */
 
 
  yyn = yyr1[yyn];
  yyn = yyr1[yyn];
 
 
  yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
    yystate = yytable[yystate];
    yystate = yytable[yystate];
  else
  else
    yystate = yydefgoto[yyn - YYNTOKENS];
    yystate = yydefgoto[yyn - YYNTOKENS];
 
 
  goto yynewstate;
  goto yynewstate;
 
 
 
 
/*------------------------------------.
/*------------------------------------.
| yyerrlab -- here on detecting error |
| yyerrlab -- here on detecting error |
`------------------------------------*/
`------------------------------------*/
yyerrlab:
yyerrlab:
  /* If not already recovering from an error, report this error.  */
  /* If not already recovering from an error, report this error.  */
  if (!yyerrstatus)
  if (!yyerrstatus)
    {
    {
      ++yynerrs;
      ++yynerrs;
#if YYERROR_VERBOSE
#if YYERROR_VERBOSE
      yyn = yypact[yystate];
      yyn = yypact[yystate];
 
 
      if (YYPACT_NINF < yyn && yyn < YYLAST)
      if (YYPACT_NINF < yyn && yyn < YYLAST)
        {
        {
          YYSIZE_T yysize = 0;
          YYSIZE_T yysize = 0;
          int yytype = YYTRANSLATE (yychar);
          int yytype = YYTRANSLATE (yychar);
          const char* yyprefix;
          const char* yyprefix;
          char *yymsg;
          char *yymsg;
          int yyx;
          int yyx;
 
 
          /* Start YYX at -YYN if negative to avoid negative indexes in
          /* Start YYX at -YYN if negative to avoid negative indexes in
             YYCHECK.  */
             YYCHECK.  */
          int yyxbegin = yyn < 0 ? -yyn : 0;
          int yyxbegin = yyn < 0 ? -yyn : 0;
 
 
          /* Stay within bounds of both yycheck and yytname.  */
          /* Stay within bounds of both yycheck and yytname.  */
          int yychecklim = YYLAST - yyn;
          int yychecklim = YYLAST - yyn;
          int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
          int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
          int yycount = 0;
          int yycount = 0;
 
 
          yyprefix = ", expecting ";
          yyprefix = ", expecting ";
          for (yyx = yyxbegin; yyx < yyxend; ++yyx)
          for (yyx = yyxbegin; yyx < yyxend; ++yyx)
            if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
            if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
              {
              {
                yysize += yystrlen (yyprefix) + yystrlen (yytname [yyx]);
                yysize += yystrlen (yyprefix) + yystrlen (yytname [yyx]);
                yycount += 1;
                yycount += 1;
                if (yycount == 5)
                if (yycount == 5)
                  {
                  {
                    yysize = 0;
                    yysize = 0;
                    break;
                    break;
                  }
                  }
              }
              }
          yysize += (sizeof ("syntax error, unexpected ")
          yysize += (sizeof ("syntax error, unexpected ")
                     + yystrlen (yytname[yytype]));
                     + yystrlen (yytname[yytype]));
          yymsg = (char *) YYSTACK_ALLOC (yysize);
          yymsg = (char *) YYSTACK_ALLOC (yysize);
          if (yymsg != 0)
          if (yymsg != 0)
            {
            {
              char *yyp = yystpcpy (yymsg, "syntax error, unexpected ");
              char *yyp = yystpcpy (yymsg, "syntax error, unexpected ");
              yyp = yystpcpy (yyp, yytname[yytype]);
              yyp = yystpcpy (yyp, yytname[yytype]);
 
 
              if (yycount < 5)
              if (yycount < 5)
                {
                {
                  yyprefix = ", expecting ";
                  yyprefix = ", expecting ";
                  for (yyx = yyxbegin; yyx < yyxend; ++yyx)
                  for (yyx = yyxbegin; yyx < yyxend; ++yyx)
                    if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
                    if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
                      {
                      {
                        yyp = yystpcpy (yyp, yyprefix);
                        yyp = yystpcpy (yyp, yyprefix);
                        yyp = yystpcpy (yyp, yytname[yyx]);
                        yyp = yystpcpy (yyp, yytname[yyx]);
                        yyprefix = " or ";
                        yyprefix = " or ";
                      }
                      }
                }
                }
              yyerror (yymsg);
              yyerror (yymsg);
              YYSTACK_FREE (yymsg);
              YYSTACK_FREE (yymsg);
            }
            }
          else
          else
            yyerror ("syntax error; also virtual memory exhausted");
            yyerror ("syntax error; also virtual memory exhausted");
        }
        }
      else
      else
#endif /* YYERROR_VERBOSE */
#endif /* YYERROR_VERBOSE */
        yyerror ("syntax error");
        yyerror ("syntax error");
    }
    }
 
 
 
 
 
 
  if (yyerrstatus == 3)
  if (yyerrstatus == 3)
    {
    {
      /* 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.  */
 
 
      if (yychar <= YYEOF)
      if (yychar <= YYEOF)
        {
        {
          /* If at end of input, pop the error token,
          /* If at end of input, pop the error token,
             then the rest of the stack, then return failure.  */
             then the rest of the stack, then return failure.  */
          if (yychar == YYEOF)
          if (yychar == YYEOF)
             for (;;)
             for (;;)
               {
               {
                 YYPOPSTACK;
                 YYPOPSTACK;
                 if (yyssp == yyss)
                 if (yyssp == yyss)
                   YYABORT;
                   YYABORT;
                 YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
                 YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
                 yydestruct (yystos[*yyssp], yyvsp);
                 yydestruct (yystos[*yyssp], yyvsp);
               }
               }
        }
        }
      else
      else
        {
        {
          YYDSYMPRINTF ("Error: discarding", yytoken, &yylval, &yylloc);
          YYDSYMPRINTF ("Error: discarding", yytoken, &yylval, &yylloc);
          yydestruct (yytoken, &yylval);
          yydestruct (yytoken, &yylval);
          yychar = YYEMPTY;
          yychar = YYEMPTY;
 
 
        }
        }
    }
    }
 
 
  /* Else will try to reuse lookahead token after shifting the error
  /* Else will try to reuse lookahead token after shifting the error
     token.  */
     token.  */
  goto yyerrlab1;
  goto yyerrlab1;
 
 
 
 
/*---------------------------------------------------.
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR.  |
| yyerrorlab -- error raised explicitly by YYERROR.  |
`---------------------------------------------------*/
`---------------------------------------------------*/
yyerrorlab:
yyerrorlab:
 
 
#ifdef __GNUC__
#ifdef __GNUC__
  /* Pacify GCC when the user code never invokes YYERROR and the label
  /* Pacify GCC when the user code never invokes YYERROR and the label
     yyerrorlab therefore never appears in user code.  */
     yyerrorlab therefore never appears in user code.  */
  if (0)
  if (0)
     goto yyerrorlab;
     goto yyerrorlab;
#endif
#endif
 
 
  yyvsp -= yylen;
  yyvsp -= yylen;
  yyssp -= yylen;
  yyssp -= yylen;
  yystate = *yyssp;
  yystate = *yyssp;
  goto yyerrlab1;
  goto yyerrlab1;
 
 
 
 
/*-------------------------------------------------------------.
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR.  |
| 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.  */
 
 
  for (;;)
  for (;;)
    {
    {
      yyn = yypact[yystate];
      yyn = yypact[yystate];
      if (yyn != YYPACT_NINF)
      if (yyn != YYPACT_NINF)
        {
        {
          yyn += YYTERROR;
          yyn += YYTERROR;
          if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
          if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
            {
            {
              yyn = yytable[yyn];
              yyn = yytable[yyn];
              if (0 < yyn)
              if (0 < yyn)
                break;
                break;
            }
            }
        }
        }
 
 
      /* Pop the current state because it cannot handle the error token.  */
      /* Pop the current state because it cannot handle the error token.  */
      if (yyssp == yyss)
      if (yyssp == yyss)
        YYABORT;
        YYABORT;
 
 
      YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
      YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
      yydestruct (yystos[yystate], yyvsp);
      yydestruct (yystos[yystate], yyvsp);
      YYPOPSTACK;
      YYPOPSTACK;
      yystate = *yyssp;
      yystate = *yyssp;
      YY_STACK_PRINT (yyss, yyssp);
      YY_STACK_PRINT (yyss, yyssp);
    }
    }
 
 
  if (yyn == YYFINAL)
  if (yyn == YYFINAL)
    YYACCEPT;
    YYACCEPT;
 
 
  YYDPRINTF ((stderr, "Shifting error token, "));
  YYDPRINTF ((stderr, "Shifting error token, "));
 
 
  *++yyvsp = yylval;
  *++yyvsp = yylval;
 
 
 
 
  yystate = yyn;
  yystate = yyn;
  goto yynewstate;
  goto yynewstate;
 
 
 
 
/*-------------------------------------.
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here.  |
| yyacceptlab -- YYACCEPT comes here.  |
`-------------------------------------*/
`-------------------------------------*/
yyacceptlab:
yyacceptlab:
  yyresult = 0;
  yyresult = 0;
  goto yyreturn;
  goto yyreturn;
 
 
/*-----------------------------------.
/*-----------------------------------.
| yyabortlab -- YYABORT comes here.  |
| yyabortlab -- YYABORT comes here.  |
`-----------------------------------*/
`-----------------------------------*/
yyabortlab:
yyabortlab:
  yyresult = 1;
  yyresult = 1;
  goto yyreturn;
  goto yyreturn;
 
 
#ifndef yyoverflow
#ifndef yyoverflow
/*----------------------------------------------.
/*----------------------------------------------.
| yyoverflowlab -- parser overflow comes here.  |
| yyoverflowlab -- parser overflow comes here.  |
`----------------------------------------------*/
`----------------------------------------------*/
yyoverflowlab:
yyoverflowlab:
  yyerror ("parser stack overflow");
  yyerror ("parser stack overflow");
  yyresult = 2;
  yyresult = 2;
  /* Fall through.  */
  /* Fall through.  */
#endif
#endif
 
 
yyreturn:
yyreturn:
#ifndef yyoverflow
#ifndef yyoverflow
  if (yyss != yyssa)
  if (yyss != yyssa)
    YYSTACK_FREE (yyss);
    YYSTACK_FREE (yyss);
#endif
#endif
  return yyresult;
  return yyresult;
}
}
 
 
 
 
#line 1050 "c-exp.y"
#line 1050 "c-exp.y"
 
 
 
 
/* Take care of parsing a number (anything that starts with a digit).
/* Take care of parsing a number (anything that starts with a digit).
   Set yylval and return the token type; update lexptr.
   Set yylval and return the token type; update lexptr.
   LEN is the number of characters in it.  */
   LEN is the number of characters in it.  */
 
 
/*** Needs some error checking for the float case ***/
/*** Needs some error checking for the float case ***/
 
 
static int
static int
parse_number (p, len, parsed_float, putithere)
parse_number (p, len, parsed_float, putithere)
     char *p;
     char *p;
     int len;
     int len;
     int parsed_float;
     int parsed_float;
     YYSTYPE *putithere;
     YYSTYPE *putithere;
{
{
  /* FIXME: Shouldn't these be unsigned?  We don't deal with negative values
  /* FIXME: Shouldn't these be unsigned?  We don't deal with negative values
     here, and we do kind of silly things like cast to unsigned.  */
     here, and we do kind of silly things like cast to unsigned.  */
  LONGEST n = 0;
  LONGEST n = 0;
  LONGEST prevn = 0;
  LONGEST prevn = 0;
  ULONGEST un;
  ULONGEST un;
 
 
  int i = 0;
  int i = 0;
  int c;
  int c;
  int base = input_radix;
  int base = input_radix;
  int unsigned_p = 0;
  int unsigned_p = 0;
 
 
  /* Number of "L" suffixes encountered.  */
  /* Number of "L" suffixes encountered.  */
  int long_p = 0;
  int long_p = 0;
 
 
  /* We have found a "L" or "U" suffix.  */
  /* We have found a "L" or "U" suffix.  */
  int found_suffix = 0;
  int found_suffix = 0;
 
 
  ULONGEST high_bit;
  ULONGEST high_bit;
  struct type *signed_type;
  struct type *signed_type;
  struct type *unsigned_type;
  struct type *unsigned_type;
 
 
  if (parsed_float)
  if (parsed_float)
    {
    {
      /* It's a float since it contains a point or an exponent.  */
      /* It's a float since it contains a point or an exponent.  */
      char *s = xmalloc (len);
      char *s = xmalloc (len);
      int num = 0;       /* number of tokens scanned by scanf */
      int num = 0;       /* number of tokens scanned by scanf */
      char saved_char = p[len];
      char saved_char = p[len];
 
 
      p[len] = 0;        /* null-terminate the token */
      p[len] = 0;        /* null-terminate the token */
 
 
      /* If it ends at "df", "dd" or "dl", take it as type of decimal floating
      /* If it ends at "df", "dd" or "dl", take it as type of decimal floating
         point.  Return DECFLOAT.  */
         point.  Return DECFLOAT.  */
 
 
      if (p[len - 2] == 'd' && p[len - 1] == 'f')
      if (p[len - 2] == 'd' && p[len - 1] == 'f')
        {
        {
          p[len - 2] = '\0';
          p[len - 2] = '\0';
          putithere->typed_val_decfloat.type
          putithere->typed_val_decfloat.type
            = builtin_type (current_gdbarch)->builtin_decfloat;
            = builtin_type (current_gdbarch)->builtin_decfloat;
          decimal_from_string (putithere->typed_val_decfloat.val, 4, p);
          decimal_from_string (putithere->typed_val_decfloat.val, 4, p);
          p[len] = saved_char;
          p[len] = saved_char;
          return (DECFLOAT);
          return (DECFLOAT);
        }
        }
 
 
      if (p[len - 2] == 'd' && p[len - 1] == 'd')
      if (p[len - 2] == 'd' && p[len - 1] == 'd')
        {
        {
          p[len - 2] = '\0';
          p[len - 2] = '\0';
          putithere->typed_val_decfloat.type
          putithere->typed_val_decfloat.type
            = builtin_type (current_gdbarch)->builtin_decdouble;
            = builtin_type (current_gdbarch)->builtin_decdouble;
          decimal_from_string (putithere->typed_val_decfloat.val, 8, p);
          decimal_from_string (putithere->typed_val_decfloat.val, 8, p);
          p[len] = saved_char;
          p[len] = saved_char;
          return (DECFLOAT);
          return (DECFLOAT);
        }
        }
 
 
      if (p[len - 2] == 'd' && p[len - 1] == 'l')
      if (p[len - 2] == 'd' && p[len - 1] == 'l')
        {
        {
          p[len - 2] = '\0';
          p[len - 2] = '\0';
          putithere->typed_val_decfloat.type
          putithere->typed_val_decfloat.type
            = builtin_type (current_gdbarch)->builtin_declong;
            = builtin_type (current_gdbarch)->builtin_declong;
          decimal_from_string (putithere->typed_val_decfloat.val, 16, p);
          decimal_from_string (putithere->typed_val_decfloat.val, 16, p);
          p[len] = saved_char;
          p[len] = saved_char;
          return (DECFLOAT);
          return (DECFLOAT);
        }
        }
 
 
      num = sscanf (p, "%" DOUBLEST_SCAN_FORMAT "%s",
      num = sscanf (p, "%" DOUBLEST_SCAN_FORMAT "%s",
                    &putithere->typed_val_float.dval, s);
                    &putithere->typed_val_float.dval, s);
      p[len] = saved_char;      /* restore the input stream */
      p[len] = saved_char;      /* restore the input stream */
 
 
      if (num == 1)
      if (num == 1)
        putithere->typed_val_float.type =
        putithere->typed_val_float.type =
          builtin_type (current_gdbarch)->builtin_double;
          builtin_type (current_gdbarch)->builtin_double;
 
 
      if (num == 2 )
      if (num == 2 )
        {
        {
          /* See if it has any float suffix: 'f' for float, 'l' for long
          /* See if it has any float suffix: 'f' for float, 'l' for long
             double.  */
             double.  */
          if (!strcasecmp (s, "f"))
          if (!strcasecmp (s, "f"))
            putithere->typed_val_float.type =
            putithere->typed_val_float.type =
              builtin_type (current_gdbarch)->builtin_float;
              builtin_type (current_gdbarch)->builtin_float;
          else if (!strcasecmp (s, "l"))
          else if (!strcasecmp (s, "l"))
            putithere->typed_val_float.type =
            putithere->typed_val_float.type =
              builtin_type (current_gdbarch)->builtin_long_double;
              builtin_type (current_gdbarch)->builtin_long_double;
          else
          else
            {
            {
              free (s);
              free (s);
              return ERROR;
              return ERROR;
            }
            }
        }
        }
 
 
      free (s);
      free (s);
      return FLOAT;
      return FLOAT;
    }
    }
 
 
  /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
  /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
  if (p[0] == '0')
  if (p[0] == '0')
    switch (p[1])
    switch (p[1])
      {
      {
      case 'x':
      case 'x':
      case 'X':
      case 'X':
        if (len >= 3)
        if (len >= 3)
          {
          {
            p += 2;
            p += 2;
            base = 16;
            base = 16;
            len -= 2;
            len -= 2;
          }
          }
        break;
        break;
 
 
      case 't':
      case 't':
      case 'T':
      case 'T':
      case 'd':
      case 'd':
      case 'D':
      case 'D':
        if (len >= 3)
        if (len >= 3)
          {
          {
            p += 2;
            p += 2;
            base = 10;
            base = 10;
            len -= 2;
            len -= 2;
          }
          }
        break;
        break;
 
 
      default:
      default:
        base = 8;
        base = 8;
        break;
        break;
      }
      }
 
 
  while (len-- > 0)
  while (len-- > 0)
    {
    {
      c = *p++;
      c = *p++;
      if (c >= 'A' && c <= 'Z')
      if (c >= 'A' && c <= 'Z')
        c += 'a' - 'A';
        c += 'a' - 'A';
      if (c != 'l' && c != 'u')
      if (c != 'l' && c != 'u')
        n *= base;
        n *= base;
      if (c >= '0' && c <= '9')
      if (c >= '0' && c <= '9')
        {
        {
          if (found_suffix)
          if (found_suffix)
            return ERROR;
            return ERROR;
          n += i = c - '0';
          n += i = c - '0';
        }
        }
      else
      else
        {
        {
          if (base > 10 && c >= 'a' && c <= 'f')
          if (base > 10 && c >= 'a' && c <= 'f')
            {
            {
              if (found_suffix)
              if (found_suffix)
                return ERROR;
                return ERROR;
              n += i = c - 'a' + 10;
              n += i = c - 'a' + 10;
            }
            }
          else if (c == 'l')
          else if (c == 'l')
            {
            {
              ++long_p;
              ++long_p;
              found_suffix = 1;
              found_suffix = 1;
            }
            }
          else if (c == 'u')
          else if (c == 'u')
            {
            {
              unsigned_p = 1;
              unsigned_p = 1;
              found_suffix = 1;
              found_suffix = 1;
            }
            }
          else
          else
            return ERROR;       /* Char not a digit */
            return ERROR;       /* Char not a digit */
        }
        }
      if (i >= base)
      if (i >= base)
        return ERROR;           /* Invalid digit in this base */
        return ERROR;           /* Invalid digit in this base */
 
 
      /* Portably test for overflow (only works for nonzero values, so make
      /* Portably test for overflow (only works for nonzero values, so make
         a second check for zero).  FIXME: Can't we just make n and prevn
         a second check for zero).  FIXME: Can't we just make n and prevn
         unsigned and avoid this?  */
         unsigned and avoid this?  */
      if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
      if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
        unsigned_p = 1;         /* Try something unsigned */
        unsigned_p = 1;         /* Try something unsigned */
 
 
      /* Portably test for unsigned overflow.
      /* Portably test for unsigned overflow.
         FIXME: This check is wrong; for example it doesn't find overflow
         FIXME: This check is wrong; for example it doesn't find overflow
         on 0x123456789 when LONGEST is 32 bits.  */
         on 0x123456789 when LONGEST is 32 bits.  */
      if (c != 'l' && c != 'u' && n != 0)
      if (c != 'l' && c != 'u' && n != 0)
        {
        {
          if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
          if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
            error ("Numeric constant too large.");
            error ("Numeric constant too large.");
        }
        }
      prevn = n;
      prevn = n;
    }
    }
 
 
  /* An integer constant is an int, a long, or a long long.  An L
  /* An integer constant is an int, a long, or a long long.  An L
     suffix forces it to be long; an LL suffix forces it to be long
     suffix forces it to be long; an LL suffix forces it to be long
     long.  If not forced to a larger size, it gets the first type of
     long.  If not forced to a larger size, it gets the first type of
     the above that it fits in.  To figure out whether it fits, we
     the above that it fits in.  To figure out whether it fits, we
     shift it right and see whether anything remains.  Note that we
     shift it right and see whether anything remains.  Note that we
     can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
     can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
     operation, because many compilers will warn about such a shift
     operation, because many compilers will warn about such a shift
     (which always produces a zero result).  Sometimes gdbarch_int_bit
     (which always produces a zero result).  Sometimes gdbarch_int_bit
     or gdbarch_long_bit will be that big, sometimes not.  To deal with
     or gdbarch_long_bit will be that big, sometimes not.  To deal with
     the case where it is we just always shift the value more than
     the case where it is we just always shift the value more than
     once, with fewer bits each time.  */
     once, with fewer bits each time.  */
 
 
  un = (ULONGEST)n >> 2;
  un = (ULONGEST)n >> 2;
  if (long_p == 0
  if (long_p == 0
      && (un >> (gdbarch_int_bit (current_gdbarch) - 2)) == 0)
      && (un >> (gdbarch_int_bit (current_gdbarch) - 2)) == 0)
    {
    {
      high_bit = ((ULONGEST)1) << (gdbarch_int_bit (current_gdbarch) - 1);
      high_bit = ((ULONGEST)1) << (gdbarch_int_bit (current_gdbarch) - 1);
 
 
      /* A large decimal (not hex or octal) constant (between INT_MAX
      /* A large decimal (not hex or octal) constant (between INT_MAX
         and UINT_MAX) is a long or unsigned long, according to ANSI,
         and UINT_MAX) is a long or unsigned long, according to ANSI,
         never an unsigned int, but this code treats it as unsigned
         never an unsigned int, but this code treats it as unsigned
         int.  This probably should be fixed.  GCC gives a warning on
         int.  This probably should be fixed.  GCC gives a warning on
         such constants.  */
         such constants.  */
 
 
      unsigned_type = builtin_type (current_gdbarch)->builtin_unsigned_int;
      unsigned_type = builtin_type (current_gdbarch)->builtin_unsigned_int;
      signed_type = builtin_type (current_gdbarch)->builtin_int;
      signed_type = builtin_type (current_gdbarch)->builtin_int;
    }
    }
  else if (long_p <= 1
  else if (long_p <= 1
           && (un >> (gdbarch_long_bit (current_gdbarch) - 2)) == 0)
           && (un >> (gdbarch_long_bit (current_gdbarch) - 2)) == 0)
    {
    {
      high_bit = ((ULONGEST)1) << (gdbarch_long_bit (current_gdbarch) - 1);
      high_bit = ((ULONGEST)1) << (gdbarch_long_bit (current_gdbarch) - 1);
      unsigned_type = builtin_type (current_gdbarch)->builtin_unsigned_long;
      unsigned_type = builtin_type (current_gdbarch)->builtin_unsigned_long;
      signed_type = builtin_type (current_gdbarch)->builtin_long;
      signed_type = builtin_type (current_gdbarch)->builtin_long;
    }
    }
  else
  else
    {
    {
      int shift;
      int shift;
      if (sizeof (ULONGEST) * HOST_CHAR_BIT
      if (sizeof (ULONGEST) * HOST_CHAR_BIT
          < gdbarch_long_long_bit (current_gdbarch))
          < gdbarch_long_long_bit (current_gdbarch))
        /* A long long does not fit in a LONGEST.  */
        /* A long long does not fit in a LONGEST.  */
        shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
        shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
      else
      else
        shift = (gdbarch_long_long_bit (current_gdbarch) - 1);
        shift = (gdbarch_long_long_bit (current_gdbarch) - 1);
      high_bit = (ULONGEST) 1 << shift;
      high_bit = (ULONGEST) 1 << shift;
      unsigned_type = builtin_type (current_gdbarch)->builtin_unsigned_long_long;
      unsigned_type = builtin_type (current_gdbarch)->builtin_unsigned_long_long;
      signed_type = builtin_type (current_gdbarch)->builtin_long_long;
      signed_type = builtin_type (current_gdbarch)->builtin_long_long;
    }
    }
 
 
   putithere->typed_val_int.val = n;
   putithere->typed_val_int.val = n;
 
 
   /* If the high bit of the worked out type is set then this number
   /* If the high bit of the worked out type is set then this number
      has to be unsigned. */
      has to be unsigned. */
 
 
   if (unsigned_p || (n & high_bit))
   if (unsigned_p || (n & high_bit))
     {
     {
       putithere->typed_val_int.type = unsigned_type;
       putithere->typed_val_int.type = unsigned_type;
     }
     }
   else
   else
     {
     {
       putithere->typed_val_int.type = signed_type;
       putithere->typed_val_int.type = signed_type;
     }
     }
 
 
   return INT;
   return INT;
}
}
 
 
struct token
struct token
{
{
  char *operator;
  char *operator;
  int token;
  int token;
  enum exp_opcode opcode;
  enum exp_opcode opcode;
};
};
 
 
static const struct token tokentab3[] =
static const struct token tokentab3[] =
  {
  {
    {">>=", ASSIGN_MODIFY, BINOP_RSH},
    {">>=", ASSIGN_MODIFY, BINOP_RSH},
    {"<<=", ASSIGN_MODIFY, BINOP_LSH}
    {"<<=", ASSIGN_MODIFY, BINOP_LSH}
  };
  };
 
 
static const struct token tokentab2[] =
static const struct token tokentab2[] =
  {
  {
    {"+=", ASSIGN_MODIFY, BINOP_ADD},
    {"+=", ASSIGN_MODIFY, BINOP_ADD},
    {"-=", ASSIGN_MODIFY, BINOP_SUB},
    {"-=", ASSIGN_MODIFY, BINOP_SUB},
    {"*=", ASSIGN_MODIFY, BINOP_MUL},
    {"*=", ASSIGN_MODIFY, BINOP_MUL},
    {"/=", ASSIGN_MODIFY, BINOP_DIV},
    {"/=", ASSIGN_MODIFY, BINOP_DIV},
    {"%=", ASSIGN_MODIFY, BINOP_REM},
    {"%=", ASSIGN_MODIFY, BINOP_REM},
    {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
    {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
    {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
    {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
    {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
    {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
    {"++", INCREMENT, BINOP_END},
    {"++", INCREMENT, BINOP_END},
    {"--", DECREMENT, BINOP_END},
    {"--", DECREMENT, BINOP_END},
    {"->", ARROW, BINOP_END},
    {"->", ARROW, BINOP_END},
    {"&&", ANDAND, BINOP_END},
    {"&&", ANDAND, BINOP_END},
    {"||", OROR, BINOP_END},
    {"||", OROR, BINOP_END},
    {"::", COLONCOLON, BINOP_END},
    {"::", COLONCOLON, BINOP_END},
    {"<<", LSH, BINOP_END},
    {"<<", LSH, BINOP_END},
    {">>", RSH, BINOP_END},
    {">>", RSH, BINOP_END},
    {"==", EQUAL, BINOP_END},
    {"==", EQUAL, BINOP_END},
    {"!=", NOTEQUAL, BINOP_END},
    {"!=", NOTEQUAL, BINOP_END},
    {"<=", LEQ, BINOP_END},
    {"<=", LEQ, BINOP_END},
    {">=", GEQ, BINOP_END}
    {">=", GEQ, BINOP_END}
  };
  };
 
 
/* Read one token, getting characters through lexptr.  */
/* Read one token, getting characters through lexptr.  */
 
 
static int
static int
yylex ()
yylex ()
{
{
  int c;
  int c;
  int namelen;
  int namelen;
  unsigned int i;
  unsigned int i;
  char *tokstart;
  char *tokstart;
  char *tokptr;
  char *tokptr;
  int tempbufindex;
  int tempbufindex;
  static char *tempbuf;
  static char *tempbuf;
  static int tempbufsize;
  static int tempbufsize;
  char * token_string = NULL;
  char * token_string = NULL;
  int class_prefix = 0;
  int class_prefix = 0;
 
 
 retry:
 retry:
 
 
  /* Check if this is a macro invocation that we need to expand.  */
  /* Check if this is a macro invocation that we need to expand.  */
  if (! scanning_macro_expansion ())
  if (! scanning_macro_expansion ())
    {
    {
      char *expanded = macro_expand_next (&lexptr,
      char *expanded = macro_expand_next (&lexptr,
                                          expression_macro_lookup_func,
                                          expression_macro_lookup_func,
                                          expression_macro_lookup_baton);
                                          expression_macro_lookup_baton);
 
 
      if (expanded)
      if (expanded)
        scan_macro_expansion (expanded);
        scan_macro_expansion (expanded);
    }
    }
 
 
  prev_lexptr = lexptr;
  prev_lexptr = lexptr;
 
 
  tokstart = lexptr;
  tokstart = lexptr;
  /* See if it is a special token of length 3.  */
  /* See if it is a special token of length 3.  */
  for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
  for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
    if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
    if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
      {
      {
        lexptr += 3;
        lexptr += 3;
        yylval.opcode = tokentab3[i].opcode;
        yylval.opcode = tokentab3[i].opcode;
        return tokentab3[i].token;
        return tokentab3[i].token;
      }
      }
 
 
  /* See if it is a special token of length 2.  */
  /* See if it is a special token of length 2.  */
  for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
  for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
    if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
    if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
      {
      {
        lexptr += 2;
        lexptr += 2;
        yylval.opcode = tokentab2[i].opcode;
        yylval.opcode = tokentab2[i].opcode;
        return tokentab2[i].token;
        return tokentab2[i].token;
      }
      }
 
 
  switch (c = *tokstart)
  switch (c = *tokstart)
    {
    {
    case 0:
    case 0:
      /* If we were just scanning the result of a macro expansion,
      /* If we were just scanning the result of a macro expansion,
         then we need to resume scanning the original text.
         then we need to resume scanning the original text.
         Otherwise, we were already scanning the original text, and
         Otherwise, we were already scanning the original text, and
         we're really done.  */
         we're really done.  */
      if (scanning_macro_expansion ())
      if (scanning_macro_expansion ())
        {
        {
          finished_macro_expansion ();
          finished_macro_expansion ();
          goto retry;
          goto retry;
        }
        }
      else
      else
        return 0;
        return 0;
 
 
    case ' ':
    case ' ':
    case '\t':
    case '\t':
    case '\n':
    case '\n':
      lexptr++;
      lexptr++;
      goto retry;
      goto retry;
 
 
    case '\'':
    case '\'':
      /* We either have a character constant ('0' or '\177' for example)
      /* We either have a character constant ('0' or '\177' for example)
         or we have a quoted symbol reference ('foo(int,int)' in C++
         or we have a quoted symbol reference ('foo(int,int)' in C++
         for example). */
         for example). */
      lexptr++;
      lexptr++;
      c = *lexptr++;
      c = *lexptr++;
      if (c == '\\')
      if (c == '\\')
        c = parse_escape (&lexptr);
        c = parse_escape (&lexptr);
      else if (c == '\'')
      else if (c == '\'')
        error ("Empty character constant.");
        error ("Empty character constant.");
      else if (! host_char_to_target (c, &c))
      else if (! host_char_to_target (c, &c))
        {
        {
          int toklen = lexptr - tokstart + 1;
          int toklen = lexptr - tokstart + 1;
          char *tok = alloca (toklen + 1);
          char *tok = alloca (toklen + 1);
          memcpy (tok, tokstart, toklen);
          memcpy (tok, tokstart, toklen);
          tok[toklen] = '\0';
          tok[toklen] = '\0';
          error ("There is no character corresponding to %s in the target "
          error ("There is no character corresponding to %s in the target "
                 "character set `%s'.", tok, target_charset ());
                 "character set `%s'.", tok, target_charset ());
        }
        }
 
 
      yylval.typed_val_int.val = c;
      yylval.typed_val_int.val = c;
      yylval.typed_val_int.type = builtin_type (current_gdbarch)->builtin_char;
      yylval.typed_val_int.type = builtin_type (current_gdbarch)->builtin_char;
 
 
      c = *lexptr++;
      c = *lexptr++;
      if (c != '\'')
      if (c != '\'')
        {
        {
          namelen = skip_quoted (tokstart) - tokstart;
          namelen = skip_quoted (tokstart) - tokstart;
          if (namelen > 2)
          if (namelen > 2)
            {
            {
              lexptr = tokstart + namelen;
              lexptr = tokstart + namelen;
              if (lexptr[-1] != '\'')
              if (lexptr[-1] != '\'')
                error ("Unmatched single quote.");
                error ("Unmatched single quote.");
              namelen -= 2;
              namelen -= 2;
              tokstart++;
              tokstart++;
              goto tryname;
              goto tryname;
            }
            }
          error ("Invalid character constant.");
          error ("Invalid character constant.");
        }
        }
      return INT;
      return INT;
 
 
    case '(':
    case '(':
      paren_depth++;
      paren_depth++;
      lexptr++;
      lexptr++;
      return c;
      return c;
 
 
    case ')':
    case ')':
      if (paren_depth == 0)
      if (paren_depth == 0)
        return 0;
        return 0;
      paren_depth--;
      paren_depth--;
      lexptr++;
      lexptr++;
      return c;
      return c;
 
 
    case ',':
    case ',':
      if (comma_terminates
      if (comma_terminates
          && paren_depth == 0
          && paren_depth == 0
          && ! scanning_macro_expansion ())
          && ! scanning_macro_expansion ())
        return 0;
        return 0;
      lexptr++;
      lexptr++;
      return c;
      return c;
 
 
    case '.':
    case '.':
      /* Might be a floating point number.  */
      /* Might be a floating point number.  */
      if (lexptr[1] < '0' || lexptr[1] > '9')
      if (lexptr[1] < '0' || lexptr[1] > '9')
        goto symbol;            /* Nope, must be a symbol. */
        goto symbol;            /* Nope, must be a symbol. */
      /* FALL THRU into number case.  */
      /* FALL THRU into number case.  */
 
 
    case '0':
    case '0':
    case '1':
    case '1':
    case '2':
    case '2':
    case '3':
    case '3':
    case '4':
    case '4':
    case '5':
    case '5':
    case '6':
    case '6':
    case '7':
    case '7':
    case '8':
    case '8':
    case '9':
    case '9':
      {
      {
        /* It's a number.  */
        /* It's a number.  */
        int got_dot = 0, got_e = 0, toktype;
        int got_dot = 0, got_e = 0, toktype;
        char *p = tokstart;
        char *p = tokstart;
        int hex = input_radix > 10;
        int hex = input_radix > 10;
 
 
        if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
        if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
          {
          {
            p += 2;
            p += 2;
            hex = 1;
            hex = 1;
          }
          }
        else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
        else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
          {
          {
            p += 2;
            p += 2;
            hex = 0;
            hex = 0;
          }
          }
 
 
        for (;; ++p)
        for (;; ++p)
          {
          {
            /* This test includes !hex because 'e' is a valid hex digit
            /* This test includes !hex because 'e' is a valid hex digit
               and thus does not indicate a floating point number when
               and thus does not indicate a floating point number when
               the radix is hex.  */
               the radix is hex.  */
            if (!hex && !got_e && (*p == 'e' || *p == 'E'))
            if (!hex && !got_e && (*p == 'e' || *p == 'E'))
              got_dot = got_e = 1;
              got_dot = got_e = 1;
            /* This test does not include !hex, because a '.' always indicates
            /* This test does not include !hex, because a '.' always indicates
               a decimal floating point number regardless of the radix.  */
               a decimal floating point number regardless of the radix.  */
            else if (!got_dot && *p == '.')
            else if (!got_dot && *p == '.')
              got_dot = 1;
              got_dot = 1;
            else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
            else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
                     && (*p == '-' || *p == '+'))
                     && (*p == '-' || *p == '+'))
              /* This is the sign of the exponent, not the end of the
              /* This is the sign of the exponent, not the end of the
                 number.  */
                 number.  */
              continue;
              continue;
            /* We will take any letters or digits.  parse_number will
            /* We will take any letters or digits.  parse_number will
               complain if past the radix, or if L or U are not final.  */
               complain if past the radix, or if L or U are not final.  */
            else if ((*p < '0' || *p > '9')
            else if ((*p < '0' || *p > '9')
                     && ((*p < 'a' || *p > 'z')
                     && ((*p < 'a' || *p > 'z')
                                  && (*p < 'A' || *p > 'Z')))
                                  && (*p < 'A' || *p > 'Z')))
              break;
              break;
          }
          }
        toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
        toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
        if (toktype == ERROR)
        if (toktype == ERROR)
          {
          {
            char *err_copy = (char *) alloca (p - tokstart + 1);
            char *err_copy = (char *) alloca (p - tokstart + 1);
 
 
            memcpy (err_copy, tokstart, p - tokstart);
            memcpy (err_copy, tokstart, p - tokstart);
            err_copy[p - tokstart] = 0;
            err_copy[p - tokstart] = 0;
            error ("Invalid number \"%s\".", err_copy);
            error ("Invalid number \"%s\".", err_copy);
          }
          }
        lexptr = p;
        lexptr = p;
        return toktype;
        return toktype;
      }
      }
 
 
    case '+':
    case '+':
    case '-':
    case '-':
    case '*':
    case '*':
    case '/':
    case '/':
    case '%':
    case '%':
    case '|':
    case '|':
    case '&':
    case '&':
    case '^':
    case '^':
    case '~':
    case '~':
    case '!':
    case '!':
    case '@':
    case '@':
    case '<':
    case '<':
    case '>':
    case '>':
    case '[':
    case '[':
    case ']':
    case ']':
    case '?':
    case '?':
    case ':':
    case ':':
    case '=':
    case '=':
    case '{':
    case '{':
    case '}':
    case '}':
    symbol:
    symbol:
      lexptr++;
      lexptr++;
      return c;
      return c;
 
 
    case '"':
    case '"':
 
 
      /* Build the gdb internal form of the input string in tempbuf,
      /* Build the gdb internal form of the input string in tempbuf,
         translating any standard C escape forms seen.  Note that the
         translating any standard C escape forms seen.  Note that the
         buffer is null byte terminated *only* for the convenience of
         buffer is null byte terminated *only* for the convenience of
         debugging gdb itself and printing the buffer contents when
         debugging gdb itself and printing the buffer contents when
         the buffer contains no embedded nulls.  Gdb does not depend
         the buffer contains no embedded nulls.  Gdb does not depend
         upon the buffer being null byte terminated, it uses the length
         upon the buffer being null byte terminated, it uses the length
         string instead.  This allows gdb to handle C strings (as well
         string instead.  This allows gdb to handle C strings (as well
         as strings in other languages) with embedded null bytes */
         as strings in other languages) with embedded null bytes */
 
 
      tokptr = ++tokstart;
      tokptr = ++tokstart;
      tempbufindex = 0;
      tempbufindex = 0;
 
 
      do {
      do {
        char *char_start_pos = tokptr;
        char *char_start_pos = tokptr;
 
 
        /* Grow the static temp buffer if necessary, including allocating
        /* Grow the static temp buffer if necessary, including allocating
           the first one on demand. */
           the first one on demand. */
        if (tempbufindex + 1 >= tempbufsize)
        if (tempbufindex + 1 >= tempbufsize)
          {
          {
            tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64);
            tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64);
          }
          }
        switch (*tokptr)
        switch (*tokptr)
          {
          {
          case '\0':
          case '\0':
          case '"':
          case '"':
            /* Do nothing, loop will terminate. */
            /* Do nothing, loop will terminate. */
            break;
            break;
          case '\\':
          case '\\':
            tokptr++;
            tokptr++;
            c = parse_escape (&tokptr);
            c = parse_escape (&tokptr);
            if (c == -1)
            if (c == -1)
              {
              {
                continue;
                continue;
              }
              }
            tempbuf[tempbufindex++] = c;
            tempbuf[tempbufindex++] = c;
            break;
            break;
          default:
          default:
            c = *tokptr++;
            c = *tokptr++;
            if (! host_char_to_target (c, &c))
            if (! host_char_to_target (c, &c))
              {
              {
                int len = tokptr - char_start_pos;
                int len = tokptr - char_start_pos;
                char *copy = alloca (len + 1);
                char *copy = alloca (len + 1);
                memcpy (copy, char_start_pos, len);
                memcpy (copy, char_start_pos, len);
                copy[len] = '\0';
                copy[len] = '\0';
 
 
                error ("There is no character corresponding to `%s' "
                error ("There is no character corresponding to `%s' "
                       "in the target character set `%s'.",
                       "in the target character set `%s'.",
                       copy, target_charset ());
                       copy, target_charset ());
              }
              }
            tempbuf[tempbufindex++] = c;
            tempbuf[tempbufindex++] = c;
            break;
            break;
          }
          }
      } while ((*tokptr != '"') && (*tokptr != '\0'));
      } while ((*tokptr != '"') && (*tokptr != '\0'));
      if (*tokptr++ != '"')
      if (*tokptr++ != '"')
        {
        {
          error ("Unterminated string in expression.");
          error ("Unterminated string in expression.");
        }
        }
      tempbuf[tempbufindex] = '\0';     /* See note above */
      tempbuf[tempbufindex] = '\0';     /* See note above */
      yylval.sval.ptr = tempbuf;
      yylval.sval.ptr = tempbuf;
      yylval.sval.length = tempbufindex;
      yylval.sval.length = tempbufindex;
      lexptr = tokptr;
      lexptr = tokptr;
      return (STRING);
      return (STRING);
    }
    }
 
 
  if (!(c == '_' || c == '$'
  if (!(c == '_' || c == '$'
        || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
        || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
    /* We must have come across a bad character (e.g. ';').  */
    /* We must have come across a bad character (e.g. ';').  */
    error ("Invalid character '%c' in expression.", c);
    error ("Invalid character '%c' in expression.", c);
 
 
  /* It's a name.  See how long it is.  */
  /* It's a name.  See how long it is.  */
  namelen = 0;
  namelen = 0;
  for (c = tokstart[namelen];
  for (c = tokstart[namelen];
       (c == '_' || c == '$' || (c >= '0' && c <= '9')
       (c == '_' || c == '$' || (c >= '0' && c <= '9')
        || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '<');)
        || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '<');)
    {
    {
      /* Template parameter lists are part of the name.
      /* Template parameter lists are part of the name.
         FIXME: This mishandles `print $a<4&&$a>3'.  */
         FIXME: This mishandles `print $a<4&&$a>3'.  */
 
 
      if (c == '<')
      if (c == '<')
        {
        {
               /* Scan ahead to get rest of the template specification.  Note
               /* Scan ahead to get rest of the template specification.  Note
                  that we look ahead only when the '<' adjoins non-whitespace
                  that we look ahead only when the '<' adjoins non-whitespace
                  characters; for comparison expressions, e.g. "a < b > c",
                  characters; for comparison expressions, e.g. "a < b > c",
                  there must be spaces before the '<', etc. */
                  there must be spaces before the '<', etc. */
 
 
               char * p = find_template_name_end (tokstart + namelen);
               char * p = find_template_name_end (tokstart + namelen);
               if (p)
               if (p)
                 namelen = p - tokstart;
                 namelen = p - tokstart;
               break;
               break;
        }
        }
      c = tokstart[++namelen];
      c = tokstart[++namelen];
    }
    }
 
 
  /* The token "if" terminates the expression and is NOT removed from
  /* The token "if" terminates the expression and is NOT removed from
     the input stream.  It doesn't count if it appears in the
     the input stream.  It doesn't count if it appears in the
     expansion of a macro.  */
     expansion of a macro.  */
  if (namelen == 2
  if (namelen == 2
      && tokstart[0] == 'i'
      && tokstart[0] == 'i'
      && tokstart[1] == 'f'
      && tokstart[1] == 'f'
      && ! scanning_macro_expansion ())
      && ! scanning_macro_expansion ())
    {
    {
      return 0;
      return 0;
    }
    }
 
 
  lexptr += namelen;
  lexptr += namelen;
 
 
  tryname:
  tryname:
 
 
  /* Catch specific keywords.  Should be done with a data structure.  */
  /* Catch specific keywords.  Should be done with a data structure.  */
  switch (namelen)
  switch (namelen)
    {
    {
    case 8:
    case 8:
      if (strncmp (tokstart, "unsigned", 8) == 0)
      if (strncmp (tokstart, "unsigned", 8) == 0)
        return UNSIGNED;
        return UNSIGNED;
      if (current_language->la_language == language_cplus
      if (current_language->la_language == language_cplus
          && strncmp (tokstart, "template", 8) == 0)
          && strncmp (tokstart, "template", 8) == 0)
        return TEMPLATE;
        return TEMPLATE;
      if (strncmp (tokstart, "volatile", 8) == 0)
      if (strncmp (tokstart, "volatile", 8) == 0)
        return VOLATILE_KEYWORD;
        return VOLATILE_KEYWORD;
      break;
      break;
    case 6:
    case 6:
      if (strncmp (tokstart, "struct", 6) == 0)
      if (strncmp (tokstart, "struct", 6) == 0)
        return STRUCT;
        return STRUCT;
      if (strncmp (tokstart, "signed", 6) == 0)
      if (strncmp (tokstart, "signed", 6) == 0)
        return SIGNED_KEYWORD;
        return SIGNED_KEYWORD;
      if (strncmp (tokstart, "sizeof", 6) == 0)
      if (strncmp (tokstart, "sizeof", 6) == 0)
        return SIZEOF;
        return SIZEOF;
      if (strncmp (tokstart, "double", 6) == 0)
      if (strncmp (tokstart, "double", 6) == 0)
        return DOUBLE_KEYWORD;
        return DOUBLE_KEYWORD;
      break;
      break;
    case 5:
    case 5:
      if (current_language->la_language == language_cplus)
      if (current_language->la_language == language_cplus)
        {
        {
          if (strncmp (tokstart, "false", 5) == 0)
          if (strncmp (tokstart, "false", 5) == 0)
            return FALSEKEYWORD;
            return FALSEKEYWORD;
          if (strncmp (tokstart, "class", 5) == 0)
          if (strncmp (tokstart, "class", 5) == 0)
            return CLASS;
            return CLASS;
        }
        }
      if (strncmp (tokstart, "union", 5) == 0)
      if (strncmp (tokstart, "union", 5) == 0)
        return UNION;
        return UNION;
      if (strncmp (tokstart, "short", 5) == 0)
      if (strncmp (tokstart, "short", 5) == 0)
        return SHORT;
        return SHORT;
      if (strncmp (tokstart, "const", 5) == 0)
      if (strncmp (tokstart, "const", 5) == 0)
        return CONST_KEYWORD;
        return CONST_KEYWORD;
      break;
      break;
    case 4:
    case 4:
      if (strncmp (tokstart, "enum", 4) == 0)
      if (strncmp (tokstart, "enum", 4) == 0)
        return ENUM;
        return ENUM;
      if (strncmp (tokstart, "long", 4) == 0)
      if (strncmp (tokstart, "long", 4) == 0)
        return LONG;
        return LONG;
      if (current_language->la_language == language_cplus)
      if (current_language->la_language == language_cplus)
          {
          {
            if (strncmp (tokstart, "true", 4) == 0)
            if (strncmp (tokstart, "true", 4) == 0)
              return TRUEKEYWORD;
              return TRUEKEYWORD;
          }
          }
      break;
      break;
    case 3:
    case 3:
      if (strncmp (tokstart, "int", 3) == 0)
      if (strncmp (tokstart, "int", 3) == 0)
        return INT_KEYWORD;
        return INT_KEYWORD;
      break;
      break;
    default:
    default:
      break;
      break;
    }
    }
 
 
  yylval.sval.ptr = tokstart;
  yylval.sval.ptr = tokstart;
  yylval.sval.length = namelen;
  yylval.sval.length = namelen;
 
 
  if (*tokstart == '$')
  if (*tokstart == '$')
    {
    {
      write_dollar_variable (yylval.sval);
      write_dollar_variable (yylval.sval);
      return VARIABLE;
      return VARIABLE;
    }
    }
 
 
  /* Use token-type BLOCKNAME for symbols that happen to be defined as
  /* Use token-type BLOCKNAME for symbols that happen to be defined as
     functions or symtabs.  If this is not so, then ...
     functions or symtabs.  If this is not so, then ...
     Use token-type TYPENAME for symbols that happen to be defined
     Use token-type TYPENAME for symbols that happen to be defined
     currently as names of types; NAME for other symbols.
     currently as names of types; NAME for other symbols.
     The caller is not constrained to care about the distinction.  */
     The caller is not constrained to care about the distinction.  */
  {
  {
    char *tmp = copy_name (yylval.sval);
    char *tmp = copy_name (yylval.sval);
    struct symbol *sym;
    struct symbol *sym;
    int is_a_field_of_this = 0;
    int is_a_field_of_this = 0;
    int hextype;
    int hextype;
 
 
    sym = lookup_symbol (tmp, expression_context_block,
    sym = lookup_symbol (tmp, expression_context_block,
                         VAR_DOMAIN,
                         VAR_DOMAIN,
                         current_language->la_language == language_cplus
                         current_language->la_language == language_cplus
                         ? &is_a_field_of_this : (int *) NULL,
                         ? &is_a_field_of_this : (int *) NULL,
                         (struct symtab **) NULL);
                         (struct symtab **) NULL);
    /* Call lookup_symtab, not lookup_partial_symtab, in case there are
    /* Call lookup_symtab, not lookup_partial_symtab, in case there are
       no psymtabs (coff, xcoff, or some future change to blow away the
       no psymtabs (coff, xcoff, or some future change to blow away the
       psymtabs once once symbols are read).  */
       psymtabs once once symbols are read).  */
    if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
    if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
      {
      {
        yylval.ssym.sym = sym;
        yylval.ssym.sym = sym;
        yylval.ssym.is_a_field_of_this = is_a_field_of_this;
        yylval.ssym.is_a_field_of_this = is_a_field_of_this;
        return BLOCKNAME;
        return BLOCKNAME;
      }
      }
    else if (!sym)
    else if (!sym)
      {                         /* See if it's a file name. */
      {                         /* See if it's a file name. */
        struct symtab *symtab;
        struct symtab *symtab;
 
 
        symtab = lookup_symtab (tmp);
        symtab = lookup_symtab (tmp);
 
 
        if (symtab)
        if (symtab)
          {
          {
            yylval.bval = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
            yylval.bval = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
            return FILENAME;
            return FILENAME;
          }
          }
      }
      }
 
 
    if (sym && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
    if (sym && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
        {
        {
          /* NOTE: carlton/2003-09-25: There used to be code here to
          /* NOTE: carlton/2003-09-25: There used to be code here to
             handle nested types.  It didn't work very well.  See the
             handle nested types.  It didn't work very well.  See the
             comment before qualified_type for more info.  */
             comment before qualified_type for more info.  */
          yylval.tsym.type = SYMBOL_TYPE (sym);
          yylval.tsym.type = SYMBOL_TYPE (sym);
          return TYPENAME;
          return TYPENAME;
        }
        }
    yylval.tsym.type
    yylval.tsym.type
      = language_lookup_primitive_type_by_name (current_language,
      = language_lookup_primitive_type_by_name (current_language,
                                                current_gdbarch, tmp);
                                                current_gdbarch, tmp);
    if (yylval.tsym.type != NULL)
    if (yylval.tsym.type != NULL)
      return TYPENAME;
      return TYPENAME;
 
 
    /* Input names that aren't symbols but ARE valid hex numbers,
    /* Input names that aren't symbols but ARE valid hex numbers,
       when the input radix permits them, can be names or numbers
       when the input radix permits them, can be names or numbers
       depending on the parse.  Note we support radixes > 16 here.  */
       depending on the parse.  Note we support radixes > 16 here.  */
    if (!sym &&
    if (!sym &&
        ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
        ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
         (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
         (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
      {
      {
        YYSTYPE newlval;        /* Its value is ignored.  */
        YYSTYPE newlval;        /* Its value is ignored.  */
        hextype = parse_number (tokstart, namelen, 0, &newlval);
        hextype = parse_number (tokstart, namelen, 0, &newlval);
        if (hextype == INT)
        if (hextype == INT)
          {
          {
            yylval.ssym.sym = sym;
            yylval.ssym.sym = sym;
            yylval.ssym.is_a_field_of_this = is_a_field_of_this;
            yylval.ssym.is_a_field_of_this = is_a_field_of_this;
            return NAME_OR_INT;
            return NAME_OR_INT;
          }
          }
      }
      }
 
 
    /* Any other kind of symbol */
    /* Any other kind of symbol */
    yylval.ssym.sym = sym;
    yylval.ssym.sym = sym;
    yylval.ssym.is_a_field_of_this = is_a_field_of_this;
    yylval.ssym.is_a_field_of_this = is_a_field_of_this;
    return NAME;
    return NAME;
  }
  }
}
}
 
 
void
void
yyerror (msg)
yyerror (msg)
     char *msg;
     char *msg;
{
{
  if (prev_lexptr)
  if (prev_lexptr)
    lexptr = prev_lexptr;
    lexptr = prev_lexptr;
 
 
  error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
  error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
}
}
 
 
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.