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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [c-exp.c] - Diff between revs 834 and 842

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

Rev 834 Rev 842
/* 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,
     CHAR = 262,
     CHAR = 262,
     NAME = 263,
     NAME = 263,
     COMPLETE = 264,
     COMPLETE = 264,
     TYPENAME = 265,
     TYPENAME = 265,
     NAME_OR_INT = 266,
     NAME_OR_INT = 266,
     OPERATOR = 267,
     OPERATOR = 267,
     STRUCT = 268,
     STRUCT = 268,
     CLASS = 269,
     CLASS = 269,
     UNION = 270,
     UNION = 270,
     ENUM = 271,
     ENUM = 271,
     SIZEOF = 272,
     SIZEOF = 272,
     UNSIGNED = 273,
     UNSIGNED = 273,
     COLONCOLON = 274,
     COLONCOLON = 274,
     TEMPLATE = 275,
     TEMPLATE = 275,
     ERROR = 276,
     ERROR = 276,
     NEW = 277,
     NEW = 277,
     DELETE = 278,
     DELETE = 278,
     REINTERPRET_CAST = 279,
     REINTERPRET_CAST = 279,
     DYNAMIC_CAST = 280,
     DYNAMIC_CAST = 280,
     STATIC_CAST = 281,
     STATIC_CAST = 281,
     CONST_CAST = 282,
     CONST_CAST = 282,
     SIGNED_KEYWORD = 283,
     SIGNED_KEYWORD = 283,
     LONG = 284,
     LONG = 284,
     SHORT = 285,
     SHORT = 285,
     INT_KEYWORD = 286,
     INT_KEYWORD = 286,
     CONST_KEYWORD = 287,
     CONST_KEYWORD = 287,
     VOLATILE_KEYWORD = 288,
     VOLATILE_KEYWORD = 288,
     DOUBLE_KEYWORD = 289,
     DOUBLE_KEYWORD = 289,
     VARIABLE = 290,
     VARIABLE = 290,
     ASSIGN_MODIFY = 291,
     ASSIGN_MODIFY = 291,
     TRUEKEYWORD = 292,
     TRUEKEYWORD = 292,
     FALSEKEYWORD = 293,
     FALSEKEYWORD = 293,
     ABOVE_COMMA = 294,
     ABOVE_COMMA = 294,
     OROR = 295,
     OROR = 295,
     ANDAND = 296,
     ANDAND = 296,
     NOTEQUAL = 297,
     NOTEQUAL = 297,
     EQUAL = 298,
     EQUAL = 298,
     GEQ = 299,
     GEQ = 299,
     LEQ = 300,
     LEQ = 300,
     RSH = 301,
     RSH = 301,
     LSH = 302,
     LSH = 302,
     DECREMENT = 303,
     DECREMENT = 303,
     INCREMENT = 304,
     INCREMENT = 304,
     UNARY = 305,
     UNARY = 305,
     DOT_STAR = 306,
     DOT_STAR = 306,
     ARROW_STAR = 307,
     ARROW_STAR = 307,
     ARROW = 308,
     ARROW = 308,
     BLOCKNAME = 309,
     BLOCKNAME = 309,
     FILENAME = 310
     FILENAME = 310
   };
   };
#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 CHAR 262
#define CHAR 262
#define NAME 263
#define NAME 263
#define COMPLETE 264
#define COMPLETE 264
#define TYPENAME 265
#define TYPENAME 265
#define NAME_OR_INT 266
#define NAME_OR_INT 266
#define OPERATOR 267
#define OPERATOR 267
#define STRUCT 268
#define STRUCT 268
#define CLASS 269
#define CLASS 269
#define UNION 270
#define UNION 270
#define ENUM 271
#define ENUM 271
#define SIZEOF 272
#define SIZEOF 272
#define UNSIGNED 273
#define UNSIGNED 273
#define COLONCOLON 274
#define COLONCOLON 274
#define TEMPLATE 275
#define TEMPLATE 275
#define ERROR 276
#define ERROR 276
#define NEW 277
#define NEW 277
#define DELETE 278
#define DELETE 278
#define REINTERPRET_CAST 279
#define REINTERPRET_CAST 279
#define DYNAMIC_CAST 280
#define DYNAMIC_CAST 280
#define STATIC_CAST 281
#define STATIC_CAST 281
#define CONST_CAST 282
#define CONST_CAST 282
#define SIGNED_KEYWORD 283
#define SIGNED_KEYWORD 283
#define LONG 284
#define LONG 284
#define SHORT 285
#define SHORT 285
#define INT_KEYWORD 286
#define INT_KEYWORD 286
#define CONST_KEYWORD 287
#define CONST_KEYWORD 287
#define VOLATILE_KEYWORD 288
#define VOLATILE_KEYWORD 288
#define DOUBLE_KEYWORD 289
#define DOUBLE_KEYWORD 289
#define VARIABLE 290
#define VARIABLE 290
#define ASSIGN_MODIFY 291
#define ASSIGN_MODIFY 291
#define TRUEKEYWORD 292
#define TRUEKEYWORD 292
#define FALSEKEYWORD 293
#define FALSEKEYWORD 293
#define ABOVE_COMMA 294
#define ABOVE_COMMA 294
#define OROR 295
#define OROR 295
#define ANDAND 296
#define ANDAND 296
#define NOTEQUAL 297
#define NOTEQUAL 297
#define EQUAL 298
#define EQUAL 298
#define GEQ 299
#define GEQ 299
#define LEQ 300
#define LEQ 300
#define RSH 301
#define RSH 301
#define LSH 302
#define LSH 302
#define DECREMENT 303
#define DECREMENT 303
#define INCREMENT 304
#define INCREMENT 304
#define UNARY 305
#define UNARY 305
#define DOT_STAR 306
#define DOT_STAR 306
#define ARROW_STAR 307
#define ARROW_STAR 307
#define ARROW 308
#define ARROW 308
#define BLOCKNAME 309
#define BLOCKNAME 309
#define FILENAME 310
#define FILENAME 310
 
 
 
 
 
 
 
 
/* Copy the first part of user declarations.  */
/* Copy the first part of user declarations.  */
#line 38 "c-exp.y"
#line 38 "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"
#include "gdb_assert.h"
#include "gdb_assert.h"
#include "macroscope.h"
#include "macroscope.h"
 
 
#define parse_type builtin_type (parse_gdbarch)
#define parse_type builtin_type (parse_gdbarch)
 
 
/* 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_internal
#define yyparse c_parse_internal
#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 127 "c-exp.y"
#line 127 "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 typed_stoken tsval;
    struct typed_stoken tsval;
    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 stoken_vector svec;
    struct stoken_vector svec;
    struct type **tvec;
    struct type **tvec;
    int *ivec;
    int *ivec;
  } YYSTYPE;
  } YYSTYPE;
/* Line 191 of yacc.c.  */
/* Line 191 of yacc.c.  */
#line 300 "c-exp.c.tmp"
#line 300 "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 157 "c-exp.y"
#line 157 "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 *);
static struct stoken operator_stoken (const char *);
static struct stoken operator_stoken (const char *);
 
 
 
 
/* Line 214 of yacc.c.  */
/* Line 214 of yacc.c.  */
#line 317 "c-exp.c.tmp"
#line 317 "c-exp.c.tmp"
 
 
#if ! defined (yyoverflow) || YYERROR_VERBOSE
#if ! defined (yyoverflow) || YYERROR_VERBOSE
 
 
# ifndef YYFREE
# ifndef YYFREE
#  define YYFREE xfree
#  define YYFREE xfree
# 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  109
#define YYFINAL  109
/* YYLAST -- Last index in YYTABLE.  */
/* YYLAST -- Last index in YYTABLE.  */
#define YYLAST   1106
#define YYLAST   1106
 
 
/* YYNTOKENS -- Number of terminals. */
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS  80
#define YYNTOKENS  80
/* YYNNTS -- Number of nonterminals. */
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS  33
#define YYNNTS  33
/* YYNRULES -- Number of rules. */
/* YYNRULES -- Number of rules. */
#define YYNRULES  207
#define YYNRULES  207
/* YYNRULES -- Number of states. */
/* YYNRULES -- Number of states. */
#define YYNSTATES  320
#define YYNSTATES  320
 
 
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
#define YYUNDEFTOK  2
#define YYUNDEFTOK  2
#define YYMAXUTOK   310
#define YYMAXUTOK   310
 
 
#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,    73,     2,     2,     2,    61,    47,     2,
       2,     2,     2,    73,     2,     2,     2,    61,    47,     2,
      67,    76,    59,    57,    39,    58,    65,    60,     2,     2,
      67,    76,    59,    57,    39,    58,    65,    60,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,    79,     2,
       2,     2,     2,     2,     2,     2,     2,     2,    79,     2,
      50,    41,    51,    42,    56,     2,     2,     2,     2,     2,
      50,    41,    51,    42,    56,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     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,     2,    75,    46,     2,     2,     2,     2,     2,
       2,    66,     2,    75,    46,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,    77,    45,    78,    74,     2,     2,     2,
       2,     2,     2,    77,    45,    78,    74,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     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,    30,    31,    32,    33,    34,
      25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
      35,    36,    37,    38,    40,    43,    44,    48,    49,    52,
      35,    36,    37,    38,    40,    43,    44,    48,    49,    52,
      53,    54,    55,    62,    63,    64,    68,    69,    70,    71,
      53,    54,    55,    62,    63,    64,    68,    69,    70,    71,
      72
      72
};
};
 
 
#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,
      57,    61,    65,    69,    73,    78,    82,    86,    90,    95,
      57,    61,    65,    69,    73,    78,    82,    86,    90,    95,
      96,   102,   104,   105,   107,   111,   117,   119,   123,   128,
      96,   102,   104,   105,   107,   111,   117,   119,   123,   128,
     133,   137,   141,   145,   149,   153,   157,   161,   165,   169,
     133,   137,   141,   145,   149,   153,   157,   161,   165,   169,
     173,   177,   181,   185,   189,   193,   197,   201,   205,   209,
     173,   177,   181,   185,   189,   193,   197,   201,   205,   209,
     213,   219,   223,   227,   229,   231,   233,   235,   237,   239,
     213,   219,   223,   227,   229,   231,   233,   235,   237,   239,
     241,   246,   254,   262,   270,   278,   280,   283,   285,   287,
     241,   246,   254,   262,   270,   278,   280,   283,   285,   287,
     289,   291,   293,   297,   301,   305,   310,   312,   315,   317,
     289,   291,   293,   297,   301,   305,   310,   312,   315,   317,
     320,   322,   323,   327,   329,   331,   333,   334,   336,   339,
     320,   322,   323,   327,   329,   331,   333,   334,   336,   339,
     341,   344,   346,   350,   353,   355,   358,   360,   363,   367,
     341,   344,   346,   350,   353,   355,   358,   360,   363,   367,
     370,   374,   376,   378,   380,   382,   384,   387,   391,   394,
     370,   374,   376,   378,   380,   382,   384,   387,   391,   394,
     398,   402,   406,   409,   412,   416,   421,   425,   429,   434,
     398,   402,   406,   409,   412,   416,   421,   425,   429,   434,
     438,   443,   447,   452,   455,   459,   462,   466,   469,   473,
     438,   443,   447,   452,   455,   459,   462,   466,   469,   473,
     475,   478,   481,   484,   487,   490,   493,   495,   498,   500,
     475,   478,   481,   484,   487,   490,   493,   495,   498,   500,
     506,   509,   512,   514,   518,   520,   522,   524,   526,   528,
     506,   509,   512,   514,   518,   520,   522,   524,   526,   528,
     532,   534,   539,   542,   545,   547,   549,   551,   554,   557,
     532,   534,   539,   542,   545,   547,   549,   551,   554,   557,
     562,   567,   570,   573,   576,   579,   582,   585,   588,   591,
     562,   567,   570,   573,   576,   579,   582,   585,   588,   591,
     594,   597,   600,   603,   606,   609,   612,   615,   618,   621,
     594,   597,   600,   603,   606,   609,   612,   615,   618,   621,
     624,   627,   630,   633,   636,   639,   642,   645,   648,   652,
     624,   627,   630,   633,   636,   639,   642,   645,   648,   652,
     656,   659,   661,   663,   665,   667,   669,   671
     656,   659,   661,   663,   665,   667,   669,   671
};
};
 
 
/* 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[] =
{
{
      81,     0,    -1,    83,    -1,    82,    -1,   102,    -1,    84,
      81,     0,    -1,    83,    -1,    82,    -1,   102,    -1,    84,
      -1,    83,    39,    84,    -1,    59,    84,    -1,    47,    84,
      -1,    83,    39,    84,    -1,    59,    84,    -1,    47,    84,
      -1,    58,    84,    -1,    57,    84,    -1,    73,    84,    -1,
      -1,    58,    84,    -1,    57,    84,    -1,    73,    84,    -1,
      74,    84,    -1,    63,    84,    -1,    62,    84,    -1,    84,
      74,    84,    -1,    63,    84,    -1,    62,    84,    -1,    84,
      63,    -1,    84,    62,    -1,    17,    84,    -1,    84,    70,
      63,    -1,    84,    62,    -1,    17,    84,    -1,    84,    70,
     111,    -1,    84,    70,   111,     9,    -1,    84,    70,     9,
     111,    -1,    84,    70,   111,     9,    -1,    84,    70,     9,
      -1,    84,    70,    92,    -1,    84,    69,    84,    -1,    84,
      -1,    84,    70,    92,    -1,    84,    69,    84,    -1,    84,
      65,   111,    -1,    84,    65,   111,     9,    -1,    84,    65,
      65,   111,    -1,    84,    65,   111,     9,    -1,    84,    65,
       9,    -1,    84,    65,    92,    -1,    84,    68,    84,    -1,
       9,    -1,    84,    65,    92,    -1,    84,    68,    84,    -1,
      84,    66,    83,    75,    -1,    -1,    84,    67,    85,    87,
      84,    66,    83,    75,    -1,    -1,    84,    67,    85,    87,
      76,    -1,    77,    -1,    -1,    84,    -1,    87,    39,    84,
      76,    -1,    77,    -1,    -1,    84,    -1,    87,    39,    84,
      -1,    84,    67,   106,    76,    94,    -1,    78,    -1,    86,
      -1,    84,    67,   106,    76,    94,    -1,    78,    -1,    86,
      87,    88,    -1,    86,   102,    88,    84,    -1,    67,   102,
      87,    88,    -1,    86,   102,    88,    84,    -1,    67,   102,
      76,    84,    -1,    67,    83,    76,    -1,    84,    56,    84,
      76,    84,    -1,    67,    83,    76,    -1,    84,    56,    84,
      -1,    84,    59,    84,    -1,    84,    60,    84,    -1,    84,
      -1,    84,    59,    84,    -1,    84,    60,    84,    -1,    84,
      61,    84,    -1,    84,    57,    84,    -1,    84,    58,    84,
      61,    84,    -1,    84,    57,    84,    -1,    84,    58,    84,
      -1,    84,    55,    84,    -1,    84,    54,    84,    -1,    84,
      -1,    84,    55,    84,    -1,    84,    54,    84,    -1,    84,
      49,    84,    -1,    84,    48,    84,    -1,    84,    53,    84,
      49,    84,    -1,    84,    48,    84,    -1,    84,    53,    84,
      -1,    84,    52,    84,    -1,    84,    50,    84,    -1,    84,
      -1,    84,    52,    84,    -1,    84,    50,    84,    -1,    84,
      51,    84,    -1,    84,    47,    84,    -1,    84,    46,    84,
      51,    84,    -1,    84,    47,    84,    -1,    84,    46,    84,
      -1,    84,    45,    84,    -1,    84,    44,    84,    -1,    84,
      -1,    84,    45,    84,    -1,    84,    44,    84,    -1,    84,
      43,    84,    -1,    84,    42,    84,    79,    84,    -1,    84,
      43,    84,    -1,    84,    42,    84,    79,    84,    -1,    84,
      41,    84,    -1,    84,    36,    84,    -1,     3,    -1,     7,
      41,    84,    -1,    84,    36,    84,    -1,     3,    -1,     7,
      -1,    11,    -1,     4,    -1,     5,    -1,    91,    -1,    35,
      -1,    11,    -1,     4,    -1,     5,    -1,    91,    -1,    35,
      -1,    17,    67,   102,    76,    -1,    24,    50,   102,    51,
      -1,    17,    67,   102,    76,    -1,    24,    50,   102,    51,
      67,    84,    76,    -1,    26,    50,   102,    51,    67,    84,
      67,    84,    76,    -1,    26,    50,   102,    51,    67,    84,
      76,    -1,    25,    50,   102,    51,    67,    84,    76,    -1,
      76,    -1,    25,    50,   102,    51,    67,    84,    76,    -1,
      27,    50,   102,    51,    67,    84,    76,    -1,     6,    -1,
      27,    50,   102,    51,    67,    84,    76,    -1,     6,    -1,
      89,     6,    -1,    89,    -1,    37,    -1,    38,    -1,    71,
      89,     6,    -1,    89,    -1,    37,    -1,    38,    -1,    71,
      -1,    72,    -1,    90,    19,   111,    -1,    90,    19,   111,
      -1,    72,    -1,    90,    19,   111,    -1,    90,    19,   111,
      -1,   103,    19,   111,    -1,   103,    19,    74,   111,    -1,
      -1,   103,    19,   111,    -1,   103,    19,    74,   111,    -1,
      92,    -1,    19,   111,    -1,   112,    -1,    56,     8,    -1,
      92,    -1,    19,   111,    -1,   112,    -1,    56,     8,    -1,
     109,    -1,    -1,    94,    93,    94,    -1,    95,    -1,   109,
     109,    -1,    -1,    94,    93,    94,    -1,    95,    -1,   109,
      -1,    96,    -1,    -1,    59,    -1,    59,    98,    -1,    47,
      -1,    96,    -1,    -1,    59,    -1,    59,    98,    -1,    47,
      -1,    47,    98,    -1,    99,    -1,    67,    98,    76,    -1,
      -1,    47,    98,    -1,    99,    -1,    67,    98,    76,    -1,
      99,   100,    -1,   100,    -1,    99,   101,    -1,   101,    -1,
      99,   100,    -1,   100,    -1,    99,   101,    -1,   101,    -1,
      66,    75,    -1,    66,     3,    75,    -1,    67,    76,    -1,
      66,    75,    -1,    66,     3,    75,    -1,    67,    76,    -1,
      67,   106,    76,    -1,   107,    -1,    10,    -1,    31,    -1,
      67,   106,    76,    -1,   107,    -1,    10,    -1,    31,    -1,
      29,    -1,    30,    -1,    29,    31,    -1,    29,    28,    31,
      29,    -1,    30,    -1,    29,    31,    -1,    29,    28,    31,
      -1,    29,    28,    -1,    28,    29,    31,    -1,    18,    29,
      -1,    29,    28,    -1,    28,    29,    31,    -1,    18,    29,
      31,    -1,    29,    18,    31,    -1,    29,    18,    -1,    29,
      31,    -1,    29,    18,    31,    -1,    29,    18,    -1,    29,
      29,    -1,    29,    29,    31,    -1,    29,    29,    28,    31,
      29,    -1,    29,    29,    31,    -1,    29,    29,    28,    31,
      -1,    29,    29,    28,    -1,    28,    29,    29,    -1,    28,
      -1,    29,    29,    28,    -1,    28,    29,    29,    -1,    28,
      29,    29,    31,    -1,    18,    29,    29,    -1,    18,    29,
      29,    29,    31,    -1,    18,    29,    29,    -1,    18,    29,
      29,    31,    -1,    29,    29,    18,    -1,    29,    29,    18,
      29,    31,    -1,    29,    29,    18,    -1,    29,    29,    18,
      31,    -1,    30,    31,    -1,    30,    28,    31,    -1,    30,
      31,    -1,    30,    31,    -1,    30,    28,    31,    -1,    30,
      28,    -1,    18,    30,    31,    -1,    30,    18,    -1,    30,
      28,    -1,    18,    30,    31,    -1,    30,    18,    -1,    30,
      18,    31,    -1,    34,    -1,    29,    34,    -1,    13,   111,
      18,    31,    -1,    34,    -1,    29,    34,    -1,    13,   111,
      -1,    14,   111,    -1,    15,   111,    -1,    16,   111,    -1,
      -1,    14,   111,    -1,    15,   111,    -1,    16,   111,    -1,
      18,   105,    -1,    18,    -1,    28,   105,    -1,    28,    -1,
      18,   105,    -1,    18,    -1,    28,   105,    -1,    28,    -1,
      20,   111,    50,   102,    51,    -1,    96,   103,    -1,   103,
      20,   111,    50,   102,    51,    -1,    96,   103,    -1,   103,
      96,    -1,   104,    -1,   103,    19,   111,    -1,    10,    -1,
      96,    -1,   104,    -1,   103,    19,   111,    -1,    10,    -1,
      31,    -1,    29,    -1,    30,    -1,   102,    -1,   106,    39,
      31,    -1,    29,    -1,    30,    -1,   102,    -1,   106,    39,
     102,    -1,   103,    -1,   107,    97,    98,    97,    -1,    32,
     102,    -1,   103,    -1,   107,    97,    98,    97,    -1,    32,
      33,    -1,    33,    32,    -1,   108,    -1,    32,    -1,    33,
      33,    -1,    33,    32,    -1,   108,    -1,    32,    -1,    33,
      -1,    12,    22,    -1,    12,    23,    -1,    12,    22,    66,
      -1,    12,    22,    -1,    12,    23,    -1,    12,    22,    66,
      75,    -1,    12,    23,    66,    75,    -1,    12,    57,    -1,
      75,    -1,    12,    23,    66,    75,    -1,    12,    57,    -1,
      12,    58,    -1,    12,    59,    -1,    12,    60,    -1,    12,
      12,    58,    -1,    12,    59,    -1,    12,    60,    -1,    12,
      61,    -1,    12,    46,    -1,    12,    47,    -1,    12,    45,
      61,    -1,    12,    46,    -1,    12,    47,    -1,    12,    45,
      -1,    12,    74,    -1,    12,    73,    -1,    12,    41,    -1,
      -1,    12,    74,    -1,    12,    73,    -1,    12,    41,    -1,
      12,    50,    -1,    12,    51,    -1,    12,    36,    -1,    12,
      12,    50,    -1,    12,    51,    -1,    12,    36,    -1,    12,
      55,    -1,    12,    54,    -1,    12,    49,    -1,    12,    48,
      55,    -1,    12,    54,    -1,    12,    49,    -1,    12,    48,
      -1,    12,    53,    -1,    12,    52,    -1,    12,    44,    -1,
      -1,    12,    53,    -1,    12,    52,    -1,    12,    44,    -1,
      12,    43,    -1,    12,    63,    -1,    12,    62,    -1,    12,
      12,    43,    -1,    12,    63,    -1,    12,    62,    -1,    12,
      39,    -1,    12,    69,    -1,    12,    70,    -1,    12,    67,
      39,    -1,    12,    69,    -1,    12,    70,    -1,    12,    67,
      76,    -1,    12,    66,    75,    -1,    12,   107,    -1,     8,
      76,    -1,    12,    66,    75,    -1,    12,   107,    -1,     8,
      -1,    71,    -1,    10,    -1,    11,    -1,   110,    -1,     8,
      -1,    71,    -1,    10,    -1,    11,    -1,   110,    -1,     8,
      -1,    71,    -1
      -1,    71,    -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,   249,   249,   250,   253,   260,   261,   266,   270,   274,
       0,   249,   249,   250,   253,   260,   261,   266,   270,   274,
     278,   282,   286,   290,   294,   298,   302,   306,   310,   316,
     278,   282,   286,   290,   294,   298,   302,   306,   310,   316,
     323,   333,   341,   345,   351,   358,   368,   376,   380,   387,
     323,   333,   341,   345,   351,   358,   368,   376,   380,   387,
     384,   394,   398,   401,   405,   409,   421,   424,   431,   437,
     384,   394,   398,   401,   405,   409,   421,   424,   431,   437,
     443,   449,   453,   457,   461,   465,   469,   473,   477,   481,
     443,   449,   453,   457,   461,   465,   469,   473,   477,   481,
     485,   489,   493,   497,   501,   505,   509,   513,   517,   521,
     485,   489,   493,   497,   501,   505,   509,   513,   517,   521,
     525,   529,   533,   539,   546,   555,   566,   573,   580,   583,
     525,   529,   533,   539,   546,   555,   566,   573,   580,   583,
     587,   595,   601,   607,   613,   622,   639,   657,   691,   698,
     587,   595,   601,   607,   613,   622,   639,   657,   691,   698,
     707,   715,   721,   731,   746,   761,   787,   788,   816,   870,
     707,   715,   721,   731,   746,   761,   787,   788,   816,   870,
     876,   877,   880,   883,   884,   888,   889,   892,   894,   896,
     876,   877,   880,   883,   884,   888,   889,   892,   894,   896,
     898,   900,   903,   905,   910,   917,   919,   923,   925,   929,
     898,   900,   903,   905,   910,   917,   919,   923,   925,   929,
     931,   943,   947,   949,   951,   953,   955,   957,   959,   961,
     931,   943,   947,   949,   951,   953,   955,   957,   959,   961,
     963,   965,   967,   969,   971,   973,   975,   977,   979,   981,
     963,   965,   967,   969,   971,   973,   975,   977,   979,   981,
     983,   985,   987,   989,   991,   993,   995,   997,   999,  1001,
     983,   985,   987,   989,   991,   993,   995,   997,   999,  1001,
    1003,  1005,  1008,  1011,  1014,  1017,  1021,  1023,  1027,  1032,
    1003,  1005,  1008,  1011,  1014,  1017,  1021,  1023,  1027,  1032,
    1036,  1038,  1040,  1088,  1113,  1114,  1120,  1126,  1135,  1140,
    1036,  1038,  1040,  1088,  1113,  1114,  1120,  1126,  1135,  1140,
    1147,  1148,  1152,  1153,  1156,  1160,  1162,  1166,  1168,  1170,
    1147,  1148,  1152,  1153,  1156,  1160,  1162,  1166,  1168,  1170,
    1172,  1174,  1176,  1178,  1180,  1182,  1184,  1186,  1188,  1190,
    1172,  1174,  1176,  1178,  1180,  1182,  1184,  1186,  1188,  1190,
    1192,  1194,  1196,  1198,  1200,  1240,  1242,  1244,  1246,  1248,
    1192,  1194,  1196,  1198,  1200,  1240,  1242,  1244,  1246,  1248,
    1250,  1252,  1254,  1256,  1258,  1260,  1262,  1264,  1266,  1268,
    1250,  1252,  1254,  1256,  1258,  1260,  1262,  1264,  1266,  1268,
    1270,  1285,  1286,  1287,  1288,  1289,  1292,  1293
    1270,  1285,  1286,  1287,  1288,  1289,  1292,  1293
};
};
#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",
  "CHAR", "NAME", "COMPLETE", "TYPENAME", "NAME_OR_INT", "OPERATOR",
  "CHAR", "NAME", "COMPLETE", "TYPENAME", "NAME_OR_INT", "OPERATOR",
  "STRUCT", "CLASS", "UNION", "ENUM", "SIZEOF", "UNSIGNED", "COLONCOLON",
  "STRUCT", "CLASS", "UNION", "ENUM", "SIZEOF", "UNSIGNED", "COLONCOLON",
  "TEMPLATE", "ERROR", "NEW", "DELETE", "REINTERPRET_CAST", "DYNAMIC_CAST",
  "TEMPLATE", "ERROR", "NEW", "DELETE", "REINTERPRET_CAST", "DYNAMIC_CAST",
  "STATIC_CAST", "CONST_CAST", "SIGNED_KEYWORD", "LONG", "SHORT",
  "STATIC_CAST", "CONST_CAST", "SIGNED_KEYWORD", "LONG", "SHORT",
  "INT_KEYWORD", "CONST_KEYWORD", "VOLATILE_KEYWORD", "DOUBLE_KEYWORD",
  "INT_KEYWORD", "CONST_KEYWORD", "VOLATILE_KEYWORD", "DOUBLE_KEYWORD",
  "VARIABLE", "ASSIGN_MODIFY", "TRUEKEYWORD", "FALSEKEYWORD", "','",
  "VARIABLE", "ASSIGN_MODIFY", "TRUEKEYWORD", "FALSEKEYWORD", "','",
  "ABOVE_COMMA", "'='", "'?'", "OROR", "ANDAND", "'|'", "'^'", "'&'",
  "ABOVE_COMMA", "'='", "'?'", "OROR", "ANDAND", "'|'", "'^'", "'&'",
  "NOTEQUAL", "EQUAL", "'<'", "'>'", "GEQ", "LEQ", "RSH", "LSH", "'@'",
  "NOTEQUAL", "EQUAL", "'<'", "'>'", "GEQ", "LEQ", "RSH", "LSH", "'@'",
  "'+'", "'-'", "'*'", "'/'", "'%'", "DECREMENT", "INCREMENT", "UNARY",
  "'+'", "'-'", "'*'", "'/'", "'%'", "DECREMENT", "INCREMENT", "UNARY",
  "'.'", "'['", "'('", "DOT_STAR", "ARROW_STAR", "ARROW", "BLOCKNAME",
  "'.'", "'['", "'('", "DOT_STAR", "ARROW_STAR", "ARROW", "BLOCKNAME",
  "FILENAME", "'!'", "'~'", "']'", "')'", "'{'", "'}'", "':'", "$accept",
  "FILENAME", "'!'", "'~'", "']'", "')'", "'{'", "'}'", "':'", "$accept",
  "start", "type_exp", "exp1", "exp", "@1", "lcurly", "arglist", "rcurly",
  "start", "type_exp", "exp1", "exp", "@1", "lcurly", "arglist", "rcurly",
  "string_exp", "block", "variable", "qualified_name", "space_identifier",
  "string_exp", "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", "operator", "name", "name_not_typename", 0
  "const_or_volatile_noopt", "operator", "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,
     285,   286,   287,   288,   289,   290,   291,   292,   293,    44,
     285,   286,   287,   288,   289,   290,   291,   292,   293,    44,
     294,    61,    63,   295,   296,   124,    94,    38,   297,   298,
     294,    61,    63,   295,   296,   124,    94,    38,   297,   298,
      60,    62,   299,   300,   301,   302,    64,    43,    45,    42,
      60,    62,   299,   300,   301,   302,    64,    43,    45,    42,
      47,    37,   303,   304,   305,    46,    91,    40,   306,   307,
      47,    37,   303,   304,   305,    46,    91,    40,   306,   307,
     308,   309,   310,    33,   126,    93,    41,   123,   125,    58
     308,   309,   310,    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,    80,    81,    81,    82,    83,    83,    84,    84,    84,
       0,    80,    81,    81,    82,    83,    83,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    85,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    85,
      84,    86,    87,    87,    87,    84,    88,    84,    84,    84,
      84,    86,    87,    87,    87,    84,    88,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    89,    89,    84,    84,    84,
      84,    84,    84,    84,    84,    89,    89,    84,    84,    84,
      90,    90,    90,    91,    92,    92,    91,    91,    91,    93,
      90,    90,    90,    91,    92,    92,    91,    91,    91,    93,
      94,    94,    95,    96,    96,    97,    97,    98,    98,    98,
      94,    94,    95,    96,    96,    97,    97,    98,    98,    98,
      98,    98,    99,    99,    99,    99,    99,   100,   100,   101,
      98,    98,    99,    99,    99,    99,    99,   100,   100,   101,
     101,   102,   103,   103,   103,   103,   103,   103,   103,   103,
     101,   102,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   103,   103,   103,   103,   103,   103,   103,
     103,   103,   103,   104,   105,   105,   105,   105,   106,   106,
     103,   103,   103,   104,   105,   105,   105,   105,   106,   106,
     107,   107,   108,   108,   109,   109,   109,   110,   110,   110,
     107,   107,   108,   108,   109,   109,   109,   110,   110,   110,
     110,   110,   110,   110,   110,   110,   110,   110,   110,   110,
     110,   110,   110,   110,   110,   110,   110,   110,   110,   110,
     110,   110,   110,   110,   110,   110,   110,   110,   110,   110,
     110,   110,   110,   110,   110,   110,   110,   110,   110,   110,
     110,   110,   110,   110,   110,   110,   110,   110,   110,   110,
     110,   110,   110,   110,   110,   110,   110,   110,   110,   110,
     110,   111,   111,   111,   111,   111,   112,   112
     110,   111,   111,   111,   111,   111,   112,   112
};
};
 
 
/* 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,     4,
       2,     2,     2,     2,     2,     2,     2,     2,     3,     4,
       3,     3,     3,     3,     4,     3,     3,     3,     4,     0,
       3,     3,     3,     3,     4,     3,     3,     3,     4,     0,
       5,     1,     0,     1,     3,     5,     1,     3,     4,     4,
       5,     1,     0,     1,     3,     5,     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,
       3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
       5,     3,     3,     1,     1,     1,     1,     1,     1,     1,
       5,     3,     3,     1,     1,     1,     1,     1,     1,     1,
       4,     7,     7,     7,     7,     1,     2,     1,     1,     1,
       4,     7,     7,     7,     7,     1,     2,     1,     1,     1,
       1,     1,     3,     3,     3,     4,     1,     2,     1,     2,
       1,     1,     3,     3,     3,     4,     1,     2,     1,     2,
       1,     0,     3,     1,     1,     1,     0,     1,     2,     1,
       1,     0,     3,     1,     1,     1,     0,     1,     2,     1,
       2,     1,     3,     2,     1,     2,     1,     2,     3,     2,
       2,     1,     3,     2,     1,     2,     1,     2,     3,     2,
       3,     1,     1,     1,     1,     1,     2,     3,     2,     3,
       3,     1,     1,     1,     1,     1,     2,     3,     2,     3,
       3,     3,     2,     2,     3,     4,     3,     3,     4,     3,
       3,     3,     2,     2,     3,     4,     3,     3,     4,     3,
       4,     3,     4,     2,     3,     2,     3,     2,     3,     1,
       4,     3,     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,
       2,     2,     1,     3,     1,     1,     1,     1,     1,     3,
       1,     4,     2,     2,     1,     1,     1,     2,     2,     4,
       1,     4,     2,     2,     1,     1,     1,     2,     2,     4,
       4,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       4,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     3,     3,
       2,     2,     2,     2,     2,     2,     2,     2,     3,     3,
       2,     1,     1,     1,     1,     1,     1,     1
       2,     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[] =
{
{
      91,    63,    66,    67,    75,    64,   206,   112,    65,     0,
      91,    63,    66,    67,    75,    64,   206,   112,    65,     0,
       0,     0,     0,    91,   146,     0,     0,     0,     0,     0,
       0,     0,     0,    91,   146,     0,     0,     0,     0,     0,
       0,   148,   114,   115,   113,   165,   166,   139,    69,    78,
       0,   148,   114,   115,   113,   165,   166,   139,    69,    78,
      79,    91,    91,    91,    91,    91,    91,    91,   207,    81,
      79,    91,    91,    91,    91,    91,    91,    91,   207,    81,
      91,    91,    31,     0,     3,     2,     5,    32,    77,     0,
      91,    91,    31,     0,     3,     2,     5,    32,    77,     0,
      68,    86,     0,    93,    91,     4,   160,   152,   111,   164,
      68,    86,     0,    93,    91,     4,   160,   152,   111,   164,
      94,    88,   201,   203,   204,    91,   202,   205,   141,   142,
      94,    88,   201,   203,   204,    91,   202,   205,   141,   142,
     143,   144,    91,    17,    91,   154,   156,   157,   155,   145,
     143,   144,    91,    17,    91,   154,   156,   157,   155,   145,
      87,     0,    91,    91,    91,    91,   156,   157,   147,   122,
      87,     0,    91,    91,    91,    91,   156,   157,   147,   122,
     118,   123,   116,   140,   137,   135,   133,   162,   163,     8,
     118,   123,   116,   140,   137,   135,   133,   162,   163,     8,
      10,     9,     7,    14,    13,     0,     0,    11,    12,     1,
      10,     9,     7,    14,    13,     0,     0,    11,    12,     1,
      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,    16,    15,    91,    91,    29,    91,    91,
      91,    91,    91,    16,    15,    91,    91,    29,    91,    91,
      91,    33,     0,     0,    76,     0,     0,    91,   150,     0,
      91,    33,     0,     0,    76,     0,     0,    91,   150,     0,
     151,    95,     0,   167,   168,   184,   195,   181,   192,   191,
     151,    95,     0,   167,   168,   184,   195,   181,   192,   191,
     178,   176,   177,   188,   187,   182,   183,   190,   189,   186,
     178,   176,   177,   188,   187,   182,   183,   190,   189,   186,
     185,   171,   172,   173,   174,   175,   194,   193,     0,     0,
     185,   171,   172,   173,   174,   175,   194,   193,     0,     0,
     196,   197,   180,   179,   160,   200,     0,   129,   120,   136,
     196,   197,   180,   179,   160,   200,     0,   129,   120,   136,
      91,     0,     0,     0,     0,   127,   119,   121,   117,   131,
      91,     0,     0,     0,     0,   127,   119,   121,   117,   131,
     126,   124,   138,   134,    40,    91,     6,    62,    61,     0,
     126,   124,   138,   134,    40,    91,     6,    62,    61,     0,
      59,    58,    57,    56,    55,    50,    49,    53,    54,    52,
      59,    58,    57,    56,    55,    50,    49,    53,    54,    52,
      51,    48,    47,    41,    45,    46,    42,    43,    44,    25,
      51,    48,    47,    41,    45,    46,    42,    43,    44,    25,
     203,    26,    23,     0,    32,   158,     0,    27,    22,    20,
     203,    26,    23,     0,    32,   158,     0,    27,    22,    20,
      21,    18,    91,    36,    37,    91,    83,    89,    92,    90,
      21,    18,    91,    36,    37,    91,    83,    89,    92,    90,
       0,     0,    84,    99,    97,     0,    91,    96,   101,   104,
       0,     0,    84,    99,    97,     0,    91,    96,   101,   104,
     106,     0,     0,   199,   198,    70,   130,     0,     0,     0,
     106,     0,     0,   199,   198,    70,   130,     0,     0,     0,
       0,     0,   128,   132,   125,    39,    91,    24,    28,     0,
       0,     0,   128,   132,   125,    39,    91,    24,    28,     0,
      91,    91,    19,    34,    38,   153,    85,   100,    98,     0,
      91,    91,    19,    34,    38,   153,    85,   100,    98,     0,
     107,   109,     0,     0,   161,    91,   103,   105,   169,   170,
     107,   109,     0,     0,   161,    91,   103,   105,   169,   170,
     149,    91,    91,    91,    91,    60,    30,   159,    35,   108,
     149,    91,    91,    91,    91,    60,    30,   159,    35,   108,
     102,   110,     0,     0,     0,     0,    71,    73,    72,    74
     102,   110,     0,     0,     0,     0,    71,    73,    72,    74
};
};
 
 
/* YYDEFGOTO[NTERM-NUM]. */
/* YYDEFGOTO[NTERM-NUM]. */
static const short yydefgoto[] =
static const short yydefgoto[] =
{
{
      -1,    43,    44,   105,    46,   234,    47,   142,   244,    48,
      -1,    43,    44,   105,    46,   234,    47,   142,   244,    48,
      49,    50,    51,   147,    52,    53,    54,   152,   257,   258,
      49,    50,    51,   147,    52,    53,    54,   152,   257,   258,
     259,   260,   235,    74,    57,    79,   293,    58,    59,    60,
     259,   260,   235,    74,    57,    79,   293,    58,    59,    60,
      67,    68,    61
      67,    68,    61
};
};
 
 
/* 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 -140
#define YYPACT_NINF -140
static const short yypact[] =
static const short yypact[] =
{
{
     368,  -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,    58,
     368,  -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,    58,
      58,    58,    58,   443,    64,    58,    58,   -37,   -33,   -19,
      58,    58,    58,   443,    64,    58,    58,   -37,   -33,   -19,
      -4,   143,   170,   105,  -140,    -6,    23,  -140,  -140,  -140,
      -4,   143,   170,   105,  -140,    -6,    23,  -140,  -140,  -140,
    -140,   368,   368,   368,   368,   368,   368,   368,    45,  -140,
    -140,   368,   368,   368,   368,   368,   368,   368,    45,  -140,
     368,   368,  -140,    67,  -140,    38,   867,   293,    75,    73,
     368,   368,  -140,    67,  -140,    38,   867,   293,    75,    73,
    -140,  -140,    41,  -140,   245,  -140,    -7,  -140,   130,  -140,
    -140,  -140,    41,  -140,   245,  -140,    -7,  -140,   130,  -140,
      69,  -140,  -140,  -140,  -140,   583,  -140,  -140,  -140,  -140,
      69,  -140,  -140,  -140,  -140,   583,  -140,  -140,  -140,  -140,
    -140,  -140,   368,   173,   159,  -140,   110,    97,  -140,  -140,
    -140,  -140,   368,   173,   159,  -140,   110,    97,  -140,  -140,
    -140,    95,   245,   245,   245,   245,   126,  -140,  -140,   129,
    -140,    95,   245,   245,   245,   245,   126,  -140,  -140,   129,
     144,   216,  -140,  -140,   145,   150,  -140,  -140,  -140,   173,
     144,   216,  -140,  -140,   145,   150,  -140,  -140,  -140,   173,
     173,   173,   173,   173,   173,   -24,    85,   173,   173,  -140,
     173,   173,   173,   173,   173,   -24,    85,   173,   173,  -140,
     368,   368,   368,   368,   368,   368,   368,   368,   368,   368,
     368,   368,   368,   368,   368,   368,   368,   368,   368,   368,
     368,   368,   368,   368,   368,   368,   368,   368,   368,   368,
     368,   368,   368,   368,   368,   368,   368,   368,   368,   368,
     368,   368,   368,  -140,  -140,   650,   368,   245,   368,   368,
     368,   368,   368,  -140,  -140,   650,   368,   245,   368,   368,
     677,   867,   -36,   106,  -140,    58,   177,     1,    24,    50,
     677,   867,   -36,   106,  -140,    58,   177,     1,    24,    50,
    -140,  -140,    12,   121,   134,  -140,  -140,  -140,  -140,  -140,
    -140,  -140,    12,   121,   134,  -140,  -140,  -140,  -140,  -140,
    -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,
    -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,
    -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,   132,   138,
    -140,  -140,  -140,  -140,  -140,  -140,  -140,  -140,   132,   138,
    -140,  -140,  -140,  -140,    24,   130,   140,   186,  -140,  -140,
    -140,  -140,  -140,  -140,    24,   130,   140,   186,  -140,  -140,
     245,   167,   181,   197,   198,   190,  -140,  -140,  -140,   206,
     245,   167,   181,   197,   198,   190,  -140,  -140,  -140,   206,
     219,  -140,  -140,  -140,  -140,   368,   867,   867,   867,   684,
     219,  -140,  -140,  -140,  -140,   368,   867,   867,   867,   684,
     923,   949,   974,   998,   509,  1019,  1019,  1036,  1036,  1036,
     923,   949,   974,   998,   509,  1019,  1019,  1036,  1036,  1036,
    1036,   276,   276,   351,   426,   426,   173,   173,   173,  -140,
    1036,   276,   276,   351,   426,   426,   173,   173,   173,  -140,
     115,  -140,   242,   -25,   293,  -140,   -23,   606,   606,  -140,
     115,  -140,   242,   -25,   293,  -140,   -23,   606,   606,  -140,
    -140,   243,   368,  -140,  -140,   368,   235,  -140,  -140,  -140,
    -140,   243,   368,  -140,  -140,   368,   235,  -140,  -140,  -140,
      58,    58,   187,   203,   -22,    15,   136,     7,    65,  -140,
      58,    58,   187,   203,   -22,    15,   136,     7,    65,  -140,
    -140,   182,   191,  -140,  -140,   518,  -140,   217,   200,   205,
    -140,   182,   191,  -140,  -140,   518,  -140,   217,   200,   205,
     214,   215,  -140,  -140,  -140,   173,   368,  -140,  -140,    -3,
     214,   215,  -140,  -140,  -140,   173,   368,  -140,  -140,    -3,
     245,     1,  -140,   867,   173,  -140,  -140,  -140,  -140,   208,
     245,     1,  -140,   867,   173,  -140,  -140,  -140,  -140,   208,
    -140,  -140,   209,    -1,  -140,   195,  -140,  -140,  -140,  -140,
    -140,  -140,   209,    -1,  -140,   195,  -140,  -140,  -140,  -140,
    -140,   368,   368,   368,   368,   896,  -140,  -140,  -140,  -140,
    -140,   368,   368,   368,   368,   896,  -140,  -140,  -140,  -140,
    -140,  -140,   723,   759,   795,   831,  -140,  -140,  -140,  -140
    -140,  -140,   723,   759,   795,   831,  -140,  -140,  -140,  -140
};
};
 
 
/* YYPGOTO[NTERM-NUM].  */
/* YYPGOTO[NTERM-NUM].  */
static const short yypgoto[] =
static const short yypgoto[] =
{
{
    -140,  -140,  -140,     2,   -12,  -140,  -140,    52,   151,  -140,
    -140,  -140,  -140,     2,   -12,  -140,  -140,    52,   151,  -140,
    -140,  -140,   -44,  -140,  -139,  -140,   -26,    30,   -74,  -140,
    -140,  -140,   -44,  -140,  -139,  -140,   -26,    30,   -74,  -140,
      35,    44,     4,     0,  -140,   267,   168,   249,  -140,  -138,
      35,    44,     4,     0,  -140,   267,   168,   249,  -140,  -138,
    -140,    -5,  -140
    -140,    -5,  -140
};
};
 
 
/* 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 -154
#define YYTABLE_NINF -154
static const short yytable[] =
static const short yytable[] =
{
{
      56,    73,    45,   242,    55,    69,    70,    71,   248,   249,
      56,    73,    45,   242,    55,    69,    70,    71,   248,   249,
      80,    81,   149,    82,   110,   110,   280,    83,   289,    99,
      80,    81,   149,    82,   110,   110,   280,    83,   289,    99,
     100,   101,   102,   103,   104,    25,    26,    97,   107,   108,
     100,   101,   102,   103,   104,    25,    26,    97,   107,   108,
     150,    84,   151,    25,    26,   141,   242,    56,   280,    25,
     150,    84,   151,    25,    26,   141,   242,    56,   280,    25,
      26,   106,   243,   250,   255,   256,    85,    56,   150,   -91,
      26,   106,   243,   250,   255,   256,    85,    56,   150,   -91,
     278,   143,   204,   281,   148,    98,    25,    26,    62,   253,
     278,   143,   204,   281,   148,    98,    25,    26,    62,   253,
      63,    64,    65,   -91,   -80,   184,    62,   109,    63,    64,
      63,    64,    65,   -91,   -80,   184,    62,   109,    63,    64,
      65,   254,    56,   306,    75,   311,   186,   110,   255,   256,
      65,   254,    56,   306,    75,   311,   186,   110,   255,   256,
     -91,   144,   184,   184,   184,   184,   191,   192,   193,   194,
     -91,   144,   184,   184,   184,   184,   191,   192,   193,   194,
     290,   231,   145,    76,    77,    78,   240,   146,   206,   207,
     290,   231,   145,    76,    77,    78,   240,   146,   206,   207,
     208,   209,   210,   211,   212,   213,   214,   215,   216,   217,
     208,   209,   210,   211,   212,   213,   214,   215,   216,   217,
     218,   219,   220,   221,   222,   223,   224,   225,   226,   227,
     218,   219,   220,   221,   222,   223,   224,   225,   226,   227,
     228,    66,   150,    94,   251,   -90,   237,   238,   189,    66,
     228,    66,   150,    94,   251,   -90,   237,   238,   189,    66,
     232,   255,   295,    95,  -112,   241,    96,   184,   233,   187,
     232,   255,   295,    95,  -112,   241,    96,   184,   233,   187,
     246,   188,   308,   249,   252,   190,     7,  -112,  -112,     9,
     246,   188,   308,   249,   252,   190,     7,  -112,  -112,     9,
      10,    11,    12,    75,    14,   195,    16,   196,   150,   151,
      10,    11,    12,    75,    14,   195,    16,   196,   150,   151,
     197,   205,    25,    26,    21,    22,    23,    24,    25,    26,
     197,   205,    25,    26,    21,    22,    23,    24,    25,    26,
      27,  -112,    86,    87,    78,   198,   202,   -96,   149,   287,
      27,  -112,    86,    87,    78,   198,   202,   -96,   149,   287,
     288,   203,   292,   253,   243,   247,   -91,   261,    89,   -96,
     288,   203,   292,   253,   243,   247,   -91,   261,    89,   -96,
     184,    25,    26,   275,   267,   254,   -96,   -96,    90,    91,
     184,    25,    26,   275,   267,   254,   -96,   -96,    90,    91,
     262,    92,   255,   256,    93,     7,  -153,   263,     9,    10,
     262,    92,   255,   256,    93,     7,  -153,   263,     9,    10,
      11,    12,   291,    14,   264,    16,   265,   266,   268,  -153,
      11,    12,   291,    14,   264,    16,   265,   266,   268,  -153,
    -153,   272,   141,    21,    22,    23,    24,    25,    26,    27,
    -153,   272,   141,    21,    22,    23,    24,    25,    26,    27,
     283,   151,   269,   284,   199,   133,   134,   273,   135,   136,
     283,   151,   269,   284,   199,   133,   134,   273,   135,   136,
     137,   138,   139,   140,   200,   285,   286,   201,   270,   271,
     137,   138,   139,   140,   200,   285,   286,   201,   270,   271,
     274,   277,   282,   275,   -82,     7,   184,   298,     9,    10,
     274,   277,   282,   275,   -82,     7,   184,   298,     9,    10,
      11,    12,   254,    14,   305,    16,   299,   301,   300,   255,
      11,    12,   254,    14,   305,    16,   299,   301,   300,   255,
     256,   291,   302,    21,    22,    23,    24,    25,    26,    27,
     256,   291,   302,    21,    22,    23,    24,    25,    26,    27,
     184,   303,   304,   309,   307,   310,   279,   294,    88,   312,
     184,   303,   304,   309,   307,   310,   279,   294,    88,   312,
     313,   314,   315,   296,   245,   184,     1,     2,     3,     4,
     313,   314,   315,   296,   245,   184,     1,     2,     3,     4,
       5,     6,   297,     7,     8,   236,     9,    10,    11,    12,
       5,     6,   297,     7,     8,   236,     9,    10,    11,    12,
      13,    14,    15,    16,   185,     0,     0,    17,    18,    19,
      13,    14,    15,    16,   185,     0,     0,    17,    18,    19,
      20,    21,    22,    23,    24,    25,    26,    27,    28,     0,
      20,    21,    22,    23,    24,    25,    26,    27,    28,     0,
      29,    30,   127,   128,   129,   130,   131,   132,   133,   134,
      29,    30,   127,   128,   129,   130,   131,   132,   133,   134,
      31,   135,   136,   137,   138,   139,   140,     0,     0,   -91,
      31,   135,   136,   137,   138,   139,   140,     0,     0,   -91,
      32,    33,    34,     0,     0,    35,    36,     0,     0,     0,
      32,    33,    34,     0,     0,    35,    36,     0,     0,     0,
      37,     0,     0,     0,    38,    39,    40,    41,     0,     0,
      37,     0,     0,     0,    38,    39,    40,    41,     0,     0,
      42,     1,     2,     3,     4,     5,     6,     0,     7,     8,
      42,     1,     2,     3,     4,     5,     6,     0,     7,     8,
       0,     9,    10,    11,    12,    13,    14,    15,    16,     0,
       0,     9,    10,    11,    12,    13,    14,    15,    16,     0,
       0,     0,    17,    18,    19,    20,    21,    22,    23,    24,
       0,     0,    17,    18,    19,    20,    21,    22,    23,    24,
      25,    26,    27,    28,     0,    29,    30,     0,   128,   129,
      25,    26,    27,    28,     0,    29,    30,     0,   128,   129,
     130,   131,   132,   133,   134,    31,   135,   136,   137,   138,
     130,   131,   132,   133,   134,    31,   135,   136,   137,   138,
     139,   140,     0,     0,     0,    32,    33,    34,     0,     0,
     139,   140,     0,     0,     0,    32,    33,    34,     0,     0,
      35,    36,     0,     0,     0,    37,     0,     0,     0,    38,
      35,    36,     0,     0,     0,    37,     0,     0,     0,    38,
      39,    40,    41,     0,     0,    42,     1,     2,     3,     4,
      39,    40,    41,     0,     0,    42,     1,     2,     3,     4,
       5,     6,     0,     7,     8,     0,     9,    10,    11,    12,
       5,     6,     0,     7,     8,     0,     9,    10,    11,    12,
      13,    14,    15,    16,     0,     0,     0,    17,    18,    19,
      13,    14,    15,    16,     0,     0,     0,    17,    18,    19,
      20,    21,    22,    23,    24,    25,    26,    27,    28,     0,
      20,    21,    22,    23,    24,    25,    26,    27,    28,     0,
      29,    30,     0,     0,     0,   130,   131,   132,   133,   134,
      29,    30,     0,     0,     0,   130,   131,   132,   133,   134,
      31,   135,   136,   137,   138,   139,   140,     0,     0,     0,
      31,   135,   136,   137,   138,   139,   140,     0,     0,     0,
      32,    33,    34,     0,     0,    35,    36,     0,     0,     0,
      32,    33,    34,     0,     0,    35,    36,     0,     0,     0,
      72,     0,     0,     0,    38,    39,    40,    41,     0,     0,
      72,     0,     0,     0,    38,    39,    40,    41,     0,     0,
      42,     1,     2,     3,     4,     5,     6,     0,     7,     8,
      42,     1,     2,     3,     4,     5,     6,     0,     7,     8,
       0,     9,    10,    11,    12,    13,    14,    15,    16,     0,
       0,     9,    10,    11,    12,    13,    14,    15,    16,     0,
       0,     0,    17,    18,    19,    20,    21,    22,    23,    24,
       0,     0,    17,    18,    19,    20,    21,    22,    23,    24,
      25,    26,    27,    28,     0,    29,    30,   119,   120,   121,
      25,    26,    27,    28,     0,    29,    30,   119,   120,   121,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
      35,    36,     0,     0,     0,    37,     0,     0,     0,    38,
      35,    36,     0,     0,     0,    37,     0,     0,     0,    38,
      39,    40,    41,     7,     0,    42,     9,    10,    11,    12,
      39,    40,    41,     7,     0,    42,     9,    10,    11,    12,
       0,    14,     0,    16,     0,   153,   154,     0,     0,     0,
       0,    14,     0,    16,     0,   153,   154,     0,     0,     0,
       0,    21,    22,    23,    24,    25,    26,    27,     0,   155,
       0,    21,    22,    23,    24,    25,    26,    27,     0,   155,
       0,     0,   156,     0,   157,     0,   158,   159,   160,   161,
       0,     0,   156,     0,   157,     0,   158,   159,   160,   161,
     162,   163,   164,   165,   166,   167,   168,   169,   170,     0,
     162,   163,   164,   165,   166,   167,   168,   169,   170,     0,
     171,   172,   173,   174,   175,   176,   177,     0,     0,   178,
     171,   172,   173,   174,   175,   176,   177,     0,     0,   178,
     179,     0,   180,   181,     0,     0,   182,   183,    62,   229,
     179,     0,   180,   181,     0,     0,   182,   183,    62,   229,
     230,    64,    65,     9,    10,    11,    12,     0,    14,     0,
     230,    64,    65,     9,    10,    11,    12,     0,    14,     0,
      16,   135,   136,   137,   138,   139,   140,     0,    21,    22,
      16,   135,   136,   137,   138,   139,   140,     0,    21,    22,
      23,    24,    25,    26,    27,    62,   239,   230,    64,    65,
      23,    24,    25,    26,    27,    62,   239,   230,    64,    65,
       9,    10,    11,    12,     0,    14,     0,    16,     0,     0,
       9,    10,    11,    12,     0,    14,     0,    16,     0,     0,
       0,     0,     0,     0,     0,    21,    22,    23,    24,    25,
       0,     0,     0,     0,     0,    21,    22,    23,    24,    25,
      26,    27,     0,     0,     0,     0,     0,     0,     0,     0,
      26,    27,     0,     0,     0,     0,     0,     0,     0,     0,
     111,    66,     0,     0,     0,   112,   113,   114,   115,   116,
     111,    66,     0,     0,     0,   112,   113,   114,   115,   116,
     117,   118,   119,   120,   121,   122,   123,   124,   125,   126,
     117,   118,   119,   120,   121,   122,   123,   124,   125,   126,
     127,   128,   129,   130,   131,   132,   133,   134,    66,   135,
     127,   128,   129,   130,   131,   132,   133,   134,    66,   135,
     136,   137,   138,   139,   140,     0,     0,     0,     0,   111,
     136,   137,   138,   139,   140,     0,     0,     0,     0,   111,
       0,     0,     0,   276,   112,   113,   114,   115,   116,   117,
       0,     0,     0,   276,   112,   113,   114,   115,   116,   117,
     118,   119,   120,   121,   122,   123,   124,   125,   126,   127,
     118,   119,   120,   121,   122,   123,   124,   125,   126,   127,
     128,   129,   130,   131,   132,   133,   134,     0,   135,   136,
     128,   129,   130,   131,   132,   133,   134,     0,   135,   136,
     137,   138,   139,   140,     0,   111,     0,     0,     0,   316,
     137,   138,   139,   140,     0,   111,     0,     0,     0,   316,
     112,   113,   114,   115,   116,   117,   118,   119,   120,   121,
     112,   113,   114,   115,   116,   117,   118,   119,   120,   121,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
       0,   111,     0,     0,     0,   317,   112,   113,   114,   115,
       0,   111,     0,     0,     0,   317,   112,   113,   114,   115,
     116,   117,   118,   119,   120,   121,   122,   123,   124,   125,
     116,   117,   118,   119,   120,   121,   122,   123,   124,   125,
     126,   127,   128,   129,   130,   131,   132,   133,   134,     0,
     126,   127,   128,   129,   130,   131,   132,   133,   134,     0,
     135,   136,   137,   138,   139,   140,     0,   111,     0,     0,
     135,   136,   137,   138,   139,   140,     0,   111,     0,     0,
       0,   318,   112,   113,   114,   115,   116,   117,   118,   119,
       0,   318,   112,   113,   114,   115,   116,   117,   118,   119,
     120,   121,   122,   123,   124,   125,   126,   127,   128,   129,
     120,   121,   122,   123,   124,   125,   126,   127,   128,   129,
     130,   131,   132,   133,   134,     0,   135,   136,   137,   138,
     130,   131,   132,   133,   134,     0,   135,   136,   137,   138,
     139,   140,     0,   111,     0,     0,     0,   319,   112,   113,
     139,   140,     0,   111,     0,     0,     0,   319,   112,   113,
     114,   115,   116,   117,   118,   119,   120,   121,   122,   123,
     114,   115,   116,   117,   118,   119,   120,   121,   122,   123,
     124,   125,   126,   127,   128,   129,   130,   131,   132,   133,
     124,   125,   126,   127,   128,   129,   130,   131,   132,   133,
     134,     0,   135,   136,   137,   138,   139,   140,   113,   114,
     134,     0,   135,   136,   137,   138,   139,   140,   113,   114,
     115,   116,   117,   118,   119,   120,   121,   122,   123,   124,
     115,   116,   117,   118,   119,   120,   121,   122,   123,   124,
     125,   126,   127,   128,   129,   130,   131,   132,   133,   134,
     125,   126,   127,   128,   129,   130,   131,   132,   133,   134,
       0,   135,   136,   137,   138,   139,   140,   115,   116,   117,
       0,   135,   136,   137,   138,   139,   140,   115,   116,   117,
     118,   119,   120,   121,   122,   123,   124,   125,   126,   127,
     118,   119,   120,   121,   122,   123,   124,   125,   126,   127,
     128,   129,   130,   131,   132,   133,   134,     0,   135,   136,
     128,   129,   130,   131,   132,   133,   134,     0,   135,   136,
     137,   138,   139,   140,   116,   117,   118,   119,   120,   121,
     137,   138,   139,   140,   116,   117,   118,   119,   120,   121,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
     117,   118,   119,   120,   121,   122,   123,   124,   125,   126,
     117,   118,   119,   120,   121,   122,   123,   124,   125,   126,
     127,   128,   129,   130,   131,   132,   133,   134,     0,   135,
     127,   128,   129,   130,   131,   132,   133,   134,     0,   135,
     136,   137,   138,   139,   140,   118,   119,   120,   121,   122,
     136,   137,   138,   139,   140,   118,   119,   120,   121,   122,
     123,   124,   125,   126,   127,   128,   129,   130,   131,   132,
     123,   124,   125,   126,   127,   128,   129,   130,   131,   132,
     133,   134,     0,   135,   136,   137,   138,   139,   140,   121,
     133,   134,     0,   135,   136,   137,   138,   139,   140,   121,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
     132,   133,   134,     0,   135,   136,   137,   138,   139,   140,
     125,   126,   127,   128,   129,   130,   131,   132,   133,   134,
     125,   126,   127,   128,   129,   130,   131,   132,   133,   134,
       0,   135,   136,   137,   138,   139,   140
       0,   135,   136,   137,   138,   139,   140
};
};
 
 
static const short yycheck[] =
static const short yycheck[] =
{
{
       0,    13,     0,    39,     0,    10,    11,    12,   147,   147,
       0,    13,     0,    39,     0,    10,    11,    12,   147,   147,
      15,    16,    19,    50,    39,    39,    39,    50,     3,    31,
      15,    16,    19,    50,    39,    39,    39,    50,     3,    31,
      32,    33,    34,    35,    36,    32,    33,    33,    40,    41,
      32,    33,    34,    35,    36,    32,    33,    33,    40,    41,
      56,    50,    58,    32,    33,    47,    39,    37,    39,    32,
      56,    50,    58,    32,    33,    47,    39,    37,    39,    32,
      33,    37,    78,    19,    66,    67,    50,    47,    74,    56,
      33,    37,    78,    19,    66,    67,    50,    47,    74,    56,
      75,    47,    76,    76,    54,    32,    32,    33,     8,    47,
      75,    47,    76,    76,    54,    32,    32,    33,     8,    47,
      10,    11,    12,    56,    19,    65,     8,     0,    10,    11,
      10,    11,    12,    56,    19,    65,     8,     0,    10,    11,
      12,    59,    72,    76,    10,    76,    72,    39,    66,    67,
      12,    59,    72,    76,    10,    76,    72,    39,    66,    67,
      56,     6,    82,    83,    84,    85,    82,    83,    84,    85,
      56,     6,    82,    83,    84,    85,    82,    83,    84,    85,
      75,   135,    19,    29,    30,    31,   140,    56,   110,   111,
      75,   135,    19,    29,    30,    31,   140,    56,   110,   111,
     112,   113,   114,   115,   116,   117,   118,   119,   120,   121,
     112,   113,   114,   115,   116,   117,   118,   119,   120,   121,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     122,   123,   124,   125,   126,   127,   128,   129,   130,   131,
     132,    71,   148,    18,    74,    56,   138,   139,    31,    71,
     132,    71,   148,    18,    74,    56,   138,   139,    31,    71,
     135,    66,    67,    28,    19,   140,    31,   137,   136,    29,
     135,    66,    67,    28,    19,   140,    31,   137,   136,    29,
     145,    31,   281,   281,   149,    50,    10,    32,    33,    13,
     145,    31,   281,   281,   149,    50,    10,    32,    33,    13,
      14,    15,    16,    10,    18,    29,    20,    31,   184,   185,
      14,    15,    16,    10,    18,    29,    20,    31,   184,   185,
      31,    76,    32,    33,    28,    29,    30,    31,    32,    33,
      31,    76,    32,    33,    28,    29,    30,    31,    32,    33,
      34,    56,    29,    30,    31,    31,    31,    47,    19,   253,
      34,    56,    29,    30,    31,    31,    31,    47,    19,   253,
     254,    31,   256,    47,    78,     8,    56,    66,    18,    59,
     254,    31,   256,    47,    78,     8,    56,    66,    18,    59,
     190,    32,    33,   205,   190,    59,    66,    67,    28,    29,
     190,    32,    33,   205,   190,    59,    66,    67,    28,    29,
      66,    31,    66,    67,    34,    10,    19,    75,    13,    14,
      66,    31,    66,    67,    34,    10,    19,    75,    13,    14,
      15,    16,    76,    18,    76,    20,    76,    31,    51,    32,
      15,    16,    76,    18,    76,    20,    76,    31,    51,    32,
      33,    31,   234,    28,    29,    30,    31,    32,    33,    34,
      33,    31,   234,    28,    29,    30,    31,    32,    33,    34,
     242,   257,    51,   245,    18,    62,    63,    31,    65,    66,
     242,   257,    51,   245,    18,    62,    63,    31,    65,    66,
      67,    68,    69,    70,    28,   250,   251,    31,    51,    51,
      67,    68,    69,    70,    28,   250,   251,    31,    51,    51,
      31,     9,     9,   265,    19,    10,   256,    75,    13,    14,
      31,     9,     9,   265,    19,    10,   256,    75,    13,    14,
      15,    16,    59,    18,   276,    20,    75,    67,    51,    66,
      15,    16,    59,    18,   276,    20,    75,    67,    51,    66,
      67,    76,    67,    28,    29,    30,    31,    32,    33,    34,
      67,    76,    67,    28,    29,    30,    31,    32,    33,    34,
     280,    67,    67,    75,   280,    76,   234,   257,    21,   301,
     280,    67,    67,    75,   280,    76,   234,   257,    21,   301,
     302,   303,   304,   258,   143,   295,     3,     4,     5,     6,
     302,   303,   304,   258,   143,   295,     3,     4,     5,     6,
       7,     8,   258,    10,    11,   137,    13,    14,    15,    16,
       7,     8,   258,    10,    11,   137,    13,    14,    15,    16,
      17,    18,    19,    20,    65,    -1,    -1,    24,    25,    26,
      17,    18,    19,    20,    65,    -1,    -1,    24,    25,    26,
      27,    28,    29,    30,    31,    32,    33,    34,    35,    -1,
      27,    28,    29,    30,    31,    32,    33,    34,    35,    -1,
      37,    38,    56,    57,    58,    59,    60,    61,    62,    63,
      37,    38,    56,    57,    58,    59,    60,    61,    62,    63,
      47,    65,    66,    67,    68,    69,    70,    -1,    -1,    56,
      47,    65,    66,    67,    68,    69,    70,    -1,    -1,    56,
      57,    58,    59,    -1,    -1,    62,    63,    -1,    -1,    -1,
      57,    58,    59,    -1,    -1,    62,    63,    -1,    -1,    -1,
      67,    -1,    -1,    -1,    71,    72,    73,    74,    -1,    -1,
      67,    -1,    -1,    -1,    71,    72,    73,    74,    -1,    -1,
      77,     3,     4,     5,     6,     7,     8,    -1,    10,    11,
      77,     3,     4,     5,     6,     7,     8,    -1,    10,    11,
      -1,    13,    14,    15,    16,    17,    18,    19,    20,    -1,
      -1,    13,    14,    15,    16,    17,    18,    19,    20,    -1,
      -1,    -1,    24,    25,    26,    27,    28,    29,    30,    31,
      -1,    -1,    24,    25,    26,    27,    28,    29,    30,    31,
      32,    33,    34,    35,    -1,    37,    38,    -1,    57,    58,
      32,    33,    34,    35,    -1,    37,    38,    -1,    57,    58,
      59,    60,    61,    62,    63,    47,    65,    66,    67,    68,
      59,    60,    61,    62,    63,    47,    65,    66,    67,    68,
      69,    70,    -1,    -1,    -1,    57,    58,    59,    -1,    -1,
      69,    70,    -1,    -1,    -1,    57,    58,    59,    -1,    -1,
      62,    63,    -1,    -1,    -1,    67,    -1,    -1,    -1,    71,
      62,    63,    -1,    -1,    -1,    67,    -1,    -1,    -1,    71,
      72,    73,    74,    -1,    -1,    77,     3,     4,     5,     6,
      72,    73,    74,    -1,    -1,    77,     3,     4,     5,     6,
       7,     8,    -1,    10,    11,    -1,    13,    14,    15,    16,
       7,     8,    -1,    10,    11,    -1,    13,    14,    15,    16,
      17,    18,    19,    20,    -1,    -1,    -1,    24,    25,    26,
      17,    18,    19,    20,    -1,    -1,    -1,    24,    25,    26,
      27,    28,    29,    30,    31,    32,    33,    34,    35,    -1,
      27,    28,    29,    30,    31,    32,    33,    34,    35,    -1,
      37,    38,    -1,    -1,    -1,    59,    60,    61,    62,    63,
      37,    38,    -1,    -1,    -1,    59,    60,    61,    62,    63,
      47,    65,    66,    67,    68,    69,    70,    -1,    -1,    -1,
      47,    65,    66,    67,    68,    69,    70,    -1,    -1,    -1,
      57,    58,    59,    -1,    -1,    62,    63,    -1,    -1,    -1,
      57,    58,    59,    -1,    -1,    62,    63,    -1,    -1,    -1,
      67,    -1,    -1,    -1,    71,    72,    73,    74,    -1,    -1,
      67,    -1,    -1,    -1,    71,    72,    73,    74,    -1,    -1,
      77,     3,     4,     5,     6,     7,     8,    -1,    10,    11,
      77,     3,     4,     5,     6,     7,     8,    -1,    10,    11,
      -1,    13,    14,    15,    16,    17,    18,    19,    20,    -1,
      -1,    13,    14,    15,    16,    17,    18,    19,    20,    -1,
      -1,    -1,    24,    25,    26,    27,    28,    29,    30,    31,
      -1,    -1,    24,    25,    26,    27,    28,    29,    30,    31,
      32,    33,    34,    35,    -1,    37,    38,    48,    49,    50,
      32,    33,    34,    35,    -1,    37,    38,    48,    49,    50,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      62,    63,    -1,    -1,    -1,    67,    -1,    -1,    -1,    71,
      62,    63,    -1,    -1,    -1,    67,    -1,    -1,    -1,    71,
      72,    73,    74,    10,    -1,    77,    13,    14,    15,    16,
      72,    73,    74,    10,    -1,    77,    13,    14,    15,    16,
      -1,    18,    -1,    20,    -1,    22,    23,    -1,    -1,    -1,
      -1,    18,    -1,    20,    -1,    22,    23,    -1,    -1,    -1,
      -1,    28,    29,    30,    31,    32,    33,    34,    -1,    36,
      -1,    28,    29,    30,    31,    32,    33,    34,    -1,    36,
      -1,    -1,    39,    -1,    41,    -1,    43,    44,    45,    46,
      -1,    -1,    39,    -1,    41,    -1,    43,    44,    45,    46,
      47,    48,    49,    50,    51,    52,    53,    54,    55,    -1,
      47,    48,    49,    50,    51,    52,    53,    54,    55,    -1,
      57,    58,    59,    60,    61,    62,    63,    -1,    -1,    66,
      57,    58,    59,    60,    61,    62,    63,    -1,    -1,    66,
      67,    -1,    69,    70,    -1,    -1,    73,    74,     8,     9,
      67,    -1,    69,    70,    -1,    -1,    73,    74,     8,     9,
      10,    11,    12,    13,    14,    15,    16,    -1,    18,    -1,
      10,    11,    12,    13,    14,    15,    16,    -1,    18,    -1,
      20,    65,    66,    67,    68,    69,    70,    -1,    28,    29,
      20,    65,    66,    67,    68,    69,    70,    -1,    28,    29,
      30,    31,    32,    33,    34,     8,     9,    10,    11,    12,
      30,    31,    32,    33,    34,     8,     9,    10,    11,    12,
      13,    14,    15,    16,    -1,    18,    -1,    20,    -1,    -1,
      13,    14,    15,    16,    -1,    18,    -1,    20,    -1,    -1,
      -1,    -1,    -1,    -1,    -1,    28,    29,    30,    31,    32,
      -1,    -1,    -1,    -1,    -1,    28,    29,    30,    31,    32,
      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
      36,    71,    -1,    -1,    -1,    41,    42,    43,    44,    45,
      36,    71,    -1,    -1,    -1,    41,    42,    43,    44,    45,
      46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
      46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
      56,    57,    58,    59,    60,    61,    62,    63,    71,    65,
      56,    57,    58,    59,    60,    61,    62,    63,    71,    65,
      66,    67,    68,    69,    70,    -1,    -1,    -1,    -1,    36,
      66,    67,    68,    69,    70,    -1,    -1,    -1,    -1,    36,
      -1,    -1,    -1,    79,    41,    42,    43,    44,    45,    46,
      -1,    -1,    -1,    79,    41,    42,    43,    44,    45,    46,
      47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
      47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
      57,    58,    59,    60,    61,    62,    63,    -1,    65,    66,
      57,    58,    59,    60,    61,    62,    63,    -1,    65,    66,
      67,    68,    69,    70,    -1,    36,    -1,    -1,    -1,    76,
      67,    68,    69,    70,    -1,    36,    -1,    -1,    -1,    76,
      41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
      41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      -1,    36,    -1,    -1,    -1,    76,    41,    42,    43,    44,
      -1,    36,    -1,    -1,    -1,    76,    41,    42,    43,    44,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      55,    56,    57,    58,    59,    60,    61,    62,    63,    -1,
      55,    56,    57,    58,    59,    60,    61,    62,    63,    -1,
      65,    66,    67,    68,    69,    70,    -1,    36,    -1,    -1,
      65,    66,    67,    68,    69,    70,    -1,    36,    -1,    -1,
      -1,    76,    41,    42,    43,    44,    45,    46,    47,    48,
      -1,    76,    41,    42,    43,    44,    45,    46,    47,    48,
      49,    50,    51,    52,    53,    54,    55,    56,    57,    58,
      49,    50,    51,    52,    53,    54,    55,    56,    57,    58,
      59,    60,    61,    62,    63,    -1,    65,    66,    67,    68,
      59,    60,    61,    62,    63,    -1,    65,    66,    67,    68,
      69,    70,    -1,    36,    -1,    -1,    -1,    76,    41,    42,
      69,    70,    -1,    36,    -1,    -1,    -1,    76,    41,    42,
      43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
      43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
      53,    54,    55,    56,    57,    58,    59,    60,    61,    62,
      53,    54,    55,    56,    57,    58,    59,    60,    61,    62,
      63,    -1,    65,    66,    67,    68,    69,    70,    42,    43,
      63,    -1,    65,    66,    67,    68,    69,    70,    42,    43,
      44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
      44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
      54,    55,    56,    57,    58,    59,    60,    61,    62,    63,
      54,    55,    56,    57,    58,    59,    60,    61,    62,    63,
      -1,    65,    66,    67,    68,    69,    70,    44,    45,    46,
      -1,    65,    66,    67,    68,    69,    70,    44,    45,    46,
      47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
      47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
      57,    58,    59,    60,    61,    62,    63,    -1,    65,    66,
      57,    58,    59,    60,    61,    62,    63,    -1,    65,    66,
      67,    68,    69,    70,    45,    46,    47,    48,    49,    50,
      67,    68,    69,    70,    45,    46,    47,    48,    49,    50,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
      46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
      56,    57,    58,    59,    60,    61,    62,    63,    -1,    65,
      56,    57,    58,    59,    60,    61,    62,    63,    -1,    65,
      66,    67,    68,    69,    70,    47,    48,    49,    50,    51,
      66,    67,    68,    69,    70,    47,    48,    49,    50,    51,
      52,    53,    54,    55,    56,    57,    58,    59,    60,    61,
      52,    53,    54,    55,    56,    57,    58,    59,    60,    61,
      62,    63,    -1,    65,    66,    67,    68,    69,    70,    50,
      62,    63,    -1,    65,    66,    67,    68,    69,    70,    50,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      61,    62,    63,    -1,    65,    66,    67,    68,    69,    70,
      54,    55,    56,    57,    58,    59,    60,    61,    62,    63,
      54,    55,    56,    57,    58,    59,    60,    61,    62,    63,
      -1,    65,    66,    67,    68,    69,    70
      -1,    65,    66,    67,    68,    69,    70
};
};
 
 
/* 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,    10,    11,    13,
       0,     3,     4,     5,     6,     7,     8,    10,    11,    13,
      14,    15,    16,    17,    18,    19,    20,    24,    25,    26,
      14,    15,    16,    17,    18,    19,    20,    24,    25,    26,
      27,    28,    29,    30,    31,    32,    33,    34,    35,    37,
      27,    28,    29,    30,    31,    32,    33,    34,    35,    37,
      38,    47,    57,    58,    59,    62,    63,    67,    71,    72,
      38,    47,    57,    58,    59,    62,    63,    67,    71,    72,
      73,    74,    77,    81,    82,    83,    84,    86,    89,    90,
      73,    74,    77,    81,    82,    83,    84,    86,    89,    90,
      91,    92,    94,    95,    96,   102,   103,   104,   107,   108,
      91,    92,    94,    95,    96,   102,   103,   104,   107,   108,
     109,   112,     8,    10,    11,    12,    71,   110,   111,   111,
     109,   112,     8,    10,    11,    12,    71,   110,   111,   111,
     111,   111,    67,    84,   103,    10,    29,    30,    31,   105,
     111,   111,    67,    84,   103,    10,    29,    30,    31,   105,
     111,   111,    50,    50,    50,    50,    29,    30,   105,    18,
     111,   111,    50,    50,    50,    50,    29,    30,   105,    18,
      28,    29,    31,    34,    18,    28,    31,    33,    32,    84,
      28,    29,    31,    34,    18,    28,    31,    33,    32,    84,
      84,    84,    84,    84,    84,    83,   102,    84,    84,     0,
      84,    84,    84,    84,    84,    83,   102,    84,    84,     0,
      39,    36,    41,    42,    43,    44,    45,    46,    47,    48,
      39,    36,    41,    42,    43,    44,    45,    46,    47,    48,
      49,    50,    51,    52,    53,    54,    55,    56,    57,    58,
      49,    50,    51,    52,    53,    54,    55,    56,    57,    58,
      59,    60,    61,    62,    63,    65,    66,    67,    68,    69,
      59,    60,    61,    62,    63,    65,    66,    67,    68,    69,
      70,    84,    87,   102,     6,    19,    56,    93,   103,    19,
      70,    84,    87,   102,     6,    19,    56,    93,   103,    19,
      96,    96,    97,    22,    23,    36,    39,    41,    43,    44,
      96,    96,    97,    22,    23,    36,    39,    41,    43,    44,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      55,    57,    58,    59,    60,    61,    62,    63,    66,    67,
      55,    57,    58,    59,    60,    61,    62,    63,    66,    67,
      69,    70,    73,    74,   103,   107,   102,    29,    31,    31,
      69,    70,    73,    74,   103,   107,   102,    29,    31,    31,
      50,   102,   102,   102,   102,    29,    31,    31,    31,    18,
      50,   102,   102,   102,   102,    29,    31,    31,    31,    18,
      28,    31,    31,    31,    76,    76,    84,    84,    84,    84,
      28,    31,    31,    31,    76,    76,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
      84,    84,    84,    84,    84,    84,    84,    84,    84,     9,
      84,    84,    84,    84,    84,    84,    84,    84,    84,     9,
      10,    92,   111,    83,    85,   102,   106,    84,    84,     9,
      10,    92,   111,    83,    85,   102,   106,    84,    84,     9,
      92,   111,    39,    78,    88,    88,   111,     8,    94,   109,
      92,   111,    39,    78,    88,    88,   111,     8,    94,   109,
      19,    74,   111,    47,    59,    66,    67,    98,    99,   100,
      19,    74,   111,    47,    59,    66,    67,    98,    99,   100,
     101,    66,    66,    75,    76,    76,    31,   102,    51,    51,
     101,    66,    66,    75,    76,    76,    31,   102,    51,    51,
      51,    51,    31,    31,    31,    84,    79,     9,    75,    87,
      51,    51,    31,    31,    31,    84,    79,     9,    75,    87,
      39,    76,     9,    84,    84,   111,   111,    98,    98,     3,
      39,    76,     9,    84,    84,   111,   111,    98,    98,     3,
      75,    76,    98,   106,    97,    67,   100,   101,    75,    75,
      75,    76,    98,   106,    97,    67,   100,   101,    75,    75,
      51,    67,    67,    67,    67,    84,    76,   102,    94,    75,
      51,    67,    67,    67,    67,    84,    76,   102,    94,    75,
      76,    76,    84,    84,    84,    84,    76,    76,    76,    76
      76,    76,    84,    84,    84,    84,    76,    76,    76,    76
};
};
 
 
#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 254 "c-exp.y"
#line 254 "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 262 "c-exp.y"
#line 262 "c-exp.y"
    { write_exp_elt_opcode (BINOP_COMMA); }
    { write_exp_elt_opcode (BINOP_COMMA); }
    break;
    break;
 
 
  case 7:
  case 7:
#line 267 "c-exp.y"
#line 267 "c-exp.y"
    { write_exp_elt_opcode (UNOP_IND); }
    { write_exp_elt_opcode (UNOP_IND); }
    break;
    break;
 
 
  case 8:
  case 8:
#line 271 "c-exp.y"
#line 271 "c-exp.y"
    { write_exp_elt_opcode (UNOP_ADDR); }
    { write_exp_elt_opcode (UNOP_ADDR); }
    break;
    break;
 
 
  case 9:
  case 9:
#line 275 "c-exp.y"
#line 275 "c-exp.y"
    { write_exp_elt_opcode (UNOP_NEG); }
    { write_exp_elt_opcode (UNOP_NEG); }
    break;
    break;
 
 
  case 10:
  case 10:
#line 279 "c-exp.y"
#line 279 "c-exp.y"
    { write_exp_elt_opcode (UNOP_PLUS); }
    { write_exp_elt_opcode (UNOP_PLUS); }
    break;
    break;
 
 
  case 11:
  case 11:
#line 283 "c-exp.y"
#line 283 "c-exp.y"
    { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
    { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
    break;
    break;
 
 
  case 12:
  case 12:
#line 287 "c-exp.y"
#line 287 "c-exp.y"
    { write_exp_elt_opcode (UNOP_COMPLEMENT); }
    { write_exp_elt_opcode (UNOP_COMPLEMENT); }
    break;
    break;
 
 
  case 13:
  case 13:
#line 291 "c-exp.y"
#line 291 "c-exp.y"
    { write_exp_elt_opcode (UNOP_PREINCREMENT); }
    { write_exp_elt_opcode (UNOP_PREINCREMENT); }
    break;
    break;
 
 
  case 14:
  case 14:
#line 295 "c-exp.y"
#line 295 "c-exp.y"
    { write_exp_elt_opcode (UNOP_PREDECREMENT); }
    { write_exp_elt_opcode (UNOP_PREDECREMENT); }
    break;
    break;
 
 
  case 15:
  case 15:
#line 299 "c-exp.y"
#line 299 "c-exp.y"
    { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
    { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
    break;
    break;
 
 
  case 16:
  case 16:
#line 303 "c-exp.y"
#line 303 "c-exp.y"
    { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
    { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
    break;
    break;
 
 
  case 17:
  case 17:
#line 307 "c-exp.y"
#line 307 "c-exp.y"
    { write_exp_elt_opcode (UNOP_SIZEOF); }
    { write_exp_elt_opcode (UNOP_SIZEOF); }
    break;
    break;
 
 
  case 18:
  case 18:
#line 311 "c-exp.y"
#line 311 "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 317 "c-exp.y"
#line 317 "c-exp.y"
    { mark_struct_expression ();
    { mark_struct_expression ();
                          write_exp_elt_opcode (STRUCTOP_PTR);
                          write_exp_elt_opcode (STRUCTOP_PTR);
                          write_exp_string (yyvsp[-1].sval);
                          write_exp_string (yyvsp[-1].sval);
                          write_exp_elt_opcode (STRUCTOP_PTR); }
                          write_exp_elt_opcode (STRUCTOP_PTR); }
    break;
    break;
 
 
  case 20:
  case 20:
#line 324 "c-exp.y"
#line 324 "c-exp.y"
    { struct stoken s;
    { struct stoken s;
                          mark_struct_expression ();
                          mark_struct_expression ();
                          write_exp_elt_opcode (STRUCTOP_PTR);
                          write_exp_elt_opcode (STRUCTOP_PTR);
                          s.ptr = "";
                          s.ptr = "";
                          s.length = 0;
                          s.length = 0;
                          write_exp_string (s);
                          write_exp_string (s);
                          write_exp_elt_opcode (STRUCTOP_PTR); }
                          write_exp_elt_opcode (STRUCTOP_PTR); }
    break;
    break;
 
 
  case 21:
  case 21:
#line 334 "c-exp.y"
#line 334 "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 22:
  case 22:
#line 342 "c-exp.y"
#line 342 "c-exp.y"
    { write_exp_elt_opcode (STRUCTOP_MPTR); }
    { write_exp_elt_opcode (STRUCTOP_MPTR); }
    break;
    break;
 
 
  case 23:
  case 23:
#line 346 "c-exp.y"
#line 346 "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 24:
  case 24:
#line 352 "c-exp.y"
#line 352 "c-exp.y"
    { mark_struct_expression ();
    { mark_struct_expression ();
                          write_exp_elt_opcode (STRUCTOP_STRUCT);
                          write_exp_elt_opcode (STRUCTOP_STRUCT);
                          write_exp_string (yyvsp[-1].sval);
                          write_exp_string (yyvsp[-1].sval);
                          write_exp_elt_opcode (STRUCTOP_STRUCT); }
                          write_exp_elt_opcode (STRUCTOP_STRUCT); }
    break;
    break;
 
 
  case 25:
  case 25:
#line 359 "c-exp.y"
#line 359 "c-exp.y"
    { struct stoken s;
    { struct stoken s;
                          mark_struct_expression ();
                          mark_struct_expression ();
                          write_exp_elt_opcode (STRUCTOP_STRUCT);
                          write_exp_elt_opcode (STRUCTOP_STRUCT);
                          s.ptr = "";
                          s.ptr = "";
                          s.length = 0;
                          s.length = 0;
                          write_exp_string (s);
                          write_exp_string (s);
                          write_exp_elt_opcode (STRUCTOP_STRUCT); }
                          write_exp_elt_opcode (STRUCTOP_STRUCT); }
    break;
    break;
 
 
  case 26:
  case 26:
#line 369 "c-exp.y"
#line 369 "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 27:
  case 27:
#line 377 "c-exp.y"
#line 377 "c-exp.y"
    { write_exp_elt_opcode (STRUCTOP_MEMBER); }
    { write_exp_elt_opcode (STRUCTOP_MEMBER); }
    break;
    break;
 
 
  case 28:
  case 28:
#line 381 "c-exp.y"
#line 381 "c-exp.y"
    { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
    { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
    break;
    break;
 
 
  case 29:
  case 29:
#line 387 "c-exp.y"
#line 387 "c-exp.y"
    { start_arglist (); }
    { start_arglist (); }
    break;
    break;
 
 
  case 30:
  case 30:
#line 389 "c-exp.y"
#line 389 "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 31:
  case 31:
#line 395 "c-exp.y"
#line 395 "c-exp.y"
    { start_arglist (); }
    { start_arglist (); }
    break;
    break;
 
 
  case 33:
  case 33:
#line 402 "c-exp.y"
#line 402 "c-exp.y"
    { arglist_len = 1; }
    { arglist_len = 1; }
    break;
    break;
 
 
  case 34:
  case 34:
#line 406 "c-exp.y"
#line 406 "c-exp.y"
    { arglist_len++; }
    { arglist_len++; }
    break;
    break;
 
 
  case 35:
  case 35:
#line 410 "c-exp.y"
#line 410 "c-exp.y"
    { int i;
    { int i;
                          write_exp_elt_opcode (TYPE_INSTANCE);
                          write_exp_elt_opcode (TYPE_INSTANCE);
                          write_exp_elt_longcst ((LONGEST) yyvsp[-2].ivec[0]);
                          write_exp_elt_longcst ((LONGEST) yyvsp[-2].ivec[0]);
                          for (i = 0; i < yyvsp[-2].ivec[0]; ++i)
                          for (i = 0; i < yyvsp[-2].ivec[0]; ++i)
                            write_exp_elt_type (yyvsp[-2].tvec[i + 1]);
                            write_exp_elt_type (yyvsp[-2].tvec[i + 1]);
                          write_exp_elt_longcst((LONGEST) yyvsp[-2].ivec[0]);
                          write_exp_elt_longcst((LONGEST) yyvsp[-2].ivec[0]);
                          write_exp_elt_opcode (TYPE_INSTANCE);
                          write_exp_elt_opcode (TYPE_INSTANCE);
                          xfree (yyvsp[-2].tvec);
                          xfree (yyvsp[-2].tvec);
                        }
                        }
    break;
    break;
 
 
  case 36:
  case 36:
#line 422 "c-exp.y"
#line 422 "c-exp.y"
    { yyval.lval = end_arglist () - 1; }
    { yyval.lval = end_arglist () - 1; }
    break;
    break;
 
 
  case 37:
  case 37:
#line 425 "c-exp.y"
#line 425 "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 38:
  case 38:
#line 432 "c-exp.y"
#line 432 "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 39:
  case 39:
#line 438 "c-exp.y"
#line 438 "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 40:
  case 40:
#line 444 "c-exp.y"
#line 444 "c-exp.y"
    { }
    { }
    break;
    break;
 
 
  case 41:
  case 41:
#line 450 "c-exp.y"
#line 450 "c-exp.y"
    { write_exp_elt_opcode (BINOP_REPEAT); }
    { write_exp_elt_opcode (BINOP_REPEAT); }
    break;
    break;
 
 
  case 42:
  case 42:
#line 454 "c-exp.y"
#line 454 "c-exp.y"
    { write_exp_elt_opcode (BINOP_MUL); }
    { write_exp_elt_opcode (BINOP_MUL); }
    break;
    break;
 
 
  case 43:
  case 43:
#line 458 "c-exp.y"
#line 458 "c-exp.y"
    { write_exp_elt_opcode (BINOP_DIV); }
    { write_exp_elt_opcode (BINOP_DIV); }
    break;
    break;
 
 
  case 44:
  case 44:
#line 462 "c-exp.y"
#line 462 "c-exp.y"
    { write_exp_elt_opcode (BINOP_REM); }
    { write_exp_elt_opcode (BINOP_REM); }
    break;
    break;
 
 
  case 45:
  case 45:
#line 466 "c-exp.y"
#line 466 "c-exp.y"
    { write_exp_elt_opcode (BINOP_ADD); }
    { write_exp_elt_opcode (BINOP_ADD); }
    break;
    break;
 
 
  case 46:
  case 46:
#line 470 "c-exp.y"
#line 470 "c-exp.y"
    { write_exp_elt_opcode (BINOP_SUB); }
    { write_exp_elt_opcode (BINOP_SUB); }
    break;
    break;
 
 
  case 47:
  case 47:
#line 474 "c-exp.y"
#line 474 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LSH); }
    { write_exp_elt_opcode (BINOP_LSH); }
    break;
    break;
 
 
  case 48:
  case 48:
#line 478 "c-exp.y"
#line 478 "c-exp.y"
    { write_exp_elt_opcode (BINOP_RSH); }
    { write_exp_elt_opcode (BINOP_RSH); }
    break;
    break;
 
 
  case 49:
  case 49:
#line 482 "c-exp.y"
#line 482 "c-exp.y"
    { write_exp_elt_opcode (BINOP_EQUAL); }
    { write_exp_elt_opcode (BINOP_EQUAL); }
    break;
    break;
 
 
  case 50:
  case 50:
#line 486 "c-exp.y"
#line 486 "c-exp.y"
    { write_exp_elt_opcode (BINOP_NOTEQUAL); }
    { write_exp_elt_opcode (BINOP_NOTEQUAL); }
    break;
    break;
 
 
  case 51:
  case 51:
#line 490 "c-exp.y"
#line 490 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LEQ); }
    { write_exp_elt_opcode (BINOP_LEQ); }
    break;
    break;
 
 
  case 52:
  case 52:
#line 494 "c-exp.y"
#line 494 "c-exp.y"
    { write_exp_elt_opcode (BINOP_GEQ); }
    { write_exp_elt_opcode (BINOP_GEQ); }
    break;
    break;
 
 
  case 53:
  case 53:
#line 498 "c-exp.y"
#line 498 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LESS); }
    { write_exp_elt_opcode (BINOP_LESS); }
    break;
    break;
 
 
  case 54:
  case 54:
#line 502 "c-exp.y"
#line 502 "c-exp.y"
    { write_exp_elt_opcode (BINOP_GTR); }
    { write_exp_elt_opcode (BINOP_GTR); }
    break;
    break;
 
 
  case 55:
  case 55:
#line 506 "c-exp.y"
#line 506 "c-exp.y"
    { write_exp_elt_opcode (BINOP_BITWISE_AND); }
    { write_exp_elt_opcode (BINOP_BITWISE_AND); }
    break;
    break;
 
 
  case 56:
  case 56:
#line 510 "c-exp.y"
#line 510 "c-exp.y"
    { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
    { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
    break;
    break;
 
 
  case 57:
  case 57:
#line 514 "c-exp.y"
#line 514 "c-exp.y"
    { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
    { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
    break;
    break;
 
 
  case 58:
  case 58:
#line 518 "c-exp.y"
#line 518 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
    { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
    break;
    break;
 
 
  case 59:
  case 59:
#line 522 "c-exp.y"
#line 522 "c-exp.y"
    { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
    { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
    break;
    break;
 
 
  case 60:
  case 60:
#line 526 "c-exp.y"
#line 526 "c-exp.y"
    { write_exp_elt_opcode (TERNOP_COND); }
    { write_exp_elt_opcode (TERNOP_COND); }
    break;
    break;
 
 
  case 61:
  case 61:
#line 530 "c-exp.y"
#line 530 "c-exp.y"
    { write_exp_elt_opcode (BINOP_ASSIGN); }
    { write_exp_elt_opcode (BINOP_ASSIGN); }
    break;
    break;
 
 
  case 62:
  case 62:
#line 534 "c-exp.y"
#line 534 "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 63:
  case 63:
#line 540 "c-exp.y"
#line 540 "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 64:
  case 64:
#line 547 "c-exp.y"
#line 547 "c-exp.y"
    {
    {
                          struct stoken_vector vec;
                          struct stoken_vector vec;
                          vec.len = 1;
                          vec.len = 1;
                          vec.tokens = &yyvsp[0].tsval;
                          vec.tokens = &yyvsp[0].tsval;
                          write_exp_string_vector (yyvsp[0].tsval.type, &vec);
                          write_exp_string_vector (yyvsp[0].tsval.type, &vec);
                        }
                        }
    break;
    break;
 
 
  case 65:
  case 65:
#line 556 "c-exp.y"
#line 556 "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 66:
  case 66:
#line 567 "c-exp.y"
#line 567 "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 67:
  case 67:
#line 574 "c-exp.y"
#line 574 "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 70:
  case 70:
#line 588 "c-exp.y"
#line 588 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (parse_type->builtin_int);
                          write_exp_elt_type (parse_type->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 71:
  case 71:
#line 596 "c-exp.y"
#line 596 "c-exp.y"
    { write_exp_elt_opcode (UNOP_REINTERPRET_CAST);
    { write_exp_elt_opcode (UNOP_REINTERPRET_CAST);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_opcode (UNOP_REINTERPRET_CAST); }
                          write_exp_elt_opcode (UNOP_REINTERPRET_CAST); }
    break;
    break;
 
 
  case 72:
  case 72:
#line 602 "c-exp.y"
#line 602 "c-exp.y"
    { write_exp_elt_opcode (UNOP_CAST);
    { write_exp_elt_opcode (UNOP_CAST);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_opcode (UNOP_CAST); }
                          write_exp_elt_opcode (UNOP_CAST); }
    break;
    break;
 
 
  case 73:
  case 73:
#line 608 "c-exp.y"
#line 608 "c-exp.y"
    { write_exp_elt_opcode (UNOP_DYNAMIC_CAST);
    { write_exp_elt_opcode (UNOP_DYNAMIC_CAST);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_opcode (UNOP_DYNAMIC_CAST); }
                          write_exp_elt_opcode (UNOP_DYNAMIC_CAST); }
    break;
    break;
 
 
  case 74:
  case 74:
#line 614 "c-exp.y"
#line 614 "c-exp.y"
    { /* We could do more error checking here, but
    { /* We could do more error checking here, but
                             it doesn't seem worthwhile.  */
                             it doesn't seem worthwhile.  */
                          write_exp_elt_opcode (UNOP_CAST);
                          write_exp_elt_opcode (UNOP_CAST);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_type (yyvsp[-4].tval);
                          write_exp_elt_opcode (UNOP_CAST); }
                          write_exp_elt_opcode (UNOP_CAST); }
    break;
    break;
 
 
  case 75:
  case 75:
#line 623 "c-exp.y"
#line 623 "c-exp.y"
    {
    {
                          /* We copy the string here, and not in the
                          /* We copy the string here, and not in the
                             lexer, to guarantee that we do not leak a
                             lexer, to guarantee that we do not leak a
                             string.  Note that we follow the
                             string.  Note that we follow the
                             NUL-termination convention of the
                             NUL-termination convention of the
                             lexer.  */
                             lexer.  */
                          struct typed_stoken *vec = XNEW (struct typed_stoken);
                          struct typed_stoken *vec = XNEW (struct typed_stoken);
                          yyval.svec.len = 1;
                          yyval.svec.len = 1;
                          yyval.svec.tokens = vec;
                          yyval.svec.tokens = vec;
 
 
                          vec->type = yyvsp[0].tsval.type;
                          vec->type = yyvsp[0].tsval.type;
                          vec->length = yyvsp[0].tsval.length;
                          vec->length = yyvsp[0].tsval.length;
                          vec->ptr = xmalloc (yyvsp[0].tsval.length + 1);
                          vec->ptr = xmalloc (yyvsp[0].tsval.length + 1);
                          memcpy (vec->ptr, yyvsp[0].tsval.ptr, yyvsp[0].tsval.length + 1);
                          memcpy (vec->ptr, yyvsp[0].tsval.ptr, yyvsp[0].tsval.length + 1);
                        }
                        }
    break;
    break;
 
 
  case 76:
  case 76:
#line 640 "c-exp.y"
#line 640 "c-exp.y"
    {
    {
                          /* Note that we NUL-terminate here, but just
                          /* Note that we NUL-terminate here, but just
                             for convenience.  */
                             for convenience.  */
                          char *p;
                          char *p;
                          ++yyval.svec.len;
                          ++yyval.svec.len;
                          yyval.svec.tokens = xrealloc (yyval.svec.tokens,
                          yyval.svec.tokens = xrealloc (yyval.svec.tokens,
                                               yyval.svec.len * sizeof (struct typed_stoken));
                                               yyval.svec.len * sizeof (struct typed_stoken));
 
 
                          p = xmalloc (yyvsp[0].tsval.length + 1);
                          p = xmalloc (yyvsp[0].tsval.length + 1);
                          memcpy (p, yyvsp[0].tsval.ptr, yyvsp[0].tsval.length + 1);
                          memcpy (p, yyvsp[0].tsval.ptr, yyvsp[0].tsval.length + 1);
 
 
                          yyval.svec.tokens[yyval.svec.len - 1].type = yyvsp[0].tsval.type;
                          yyval.svec.tokens[yyval.svec.len - 1].type = yyvsp[0].tsval.type;
                          yyval.svec.tokens[yyval.svec.len - 1].length = yyvsp[0].tsval.length;
                          yyval.svec.tokens[yyval.svec.len - 1].length = yyvsp[0].tsval.length;
                          yyval.svec.tokens[yyval.svec.len - 1].ptr = p;
                          yyval.svec.tokens[yyval.svec.len - 1].ptr = p;
                        }
                        }
    break;
    break;
 
 
  case 77:
  case 77:
#line 658 "c-exp.y"
#line 658 "c-exp.y"
    {
    {
                          int i;
                          int i;
                          enum c_string_type type = C_STRING;
                          enum c_string_type type = C_STRING;
 
 
                          for (i = 0; i < yyvsp[0].svec.len; ++i)
                          for (i = 0; i < yyvsp[0].svec.len; ++i)
                            {
                            {
                              switch (yyvsp[0].svec.tokens[i].type)
                              switch (yyvsp[0].svec.tokens[i].type)
                                {
                                {
                                case C_STRING:
                                case C_STRING:
                                  break;
                                  break;
                                case C_WIDE_STRING:
                                case C_WIDE_STRING:
                                case C_STRING_16:
                                case C_STRING_16:
                                case C_STRING_32:
                                case C_STRING_32:
                                  if (type != C_STRING
                                  if (type != C_STRING
                                      && type != yyvsp[0].svec.tokens[i].type)
                                      && type != yyvsp[0].svec.tokens[i].type)
                                    error ("Undefined string concatenation.");
                                    error ("Undefined string concatenation.");
                                  type = yyvsp[0].svec.tokens[i].type;
                                  type = yyvsp[0].svec.tokens[i].type;
                                  break;
                                  break;
                                default:
                                default:
                                  /* internal error */
                                  /* internal error */
                                  internal_error (__FILE__, __LINE__,
                                  internal_error (__FILE__, __LINE__,
                                                  "unrecognized type in string concatenation");
                                                  "unrecognized type in string concatenation");
                                }
                                }
                            }
                            }
 
 
                          write_exp_string_vector (type, &yyvsp[0].svec);
                          write_exp_string_vector (type, &yyvsp[0].svec);
                          for (i = 0; i < yyvsp[0].svec.len; ++i)
                          for (i = 0; i < yyvsp[0].svec.len; ++i)
                            xfree (yyvsp[0].svec.tokens[i].ptr);
                            xfree (yyvsp[0].svec.tokens[i].ptr);
                          xfree (yyvsp[0].svec.tokens);
                          xfree (yyvsp[0].svec.tokens);
                        }
                        }
    break;
    break;
 
 
  case 78:
  case 78:
#line 692 "c-exp.y"
#line 692 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (parse_type->builtin_bool);
                          write_exp_elt_type (parse_type->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 79:
  case 79:
#line 699 "c-exp.y"
#line 699 "c-exp.y"
    { write_exp_elt_opcode (OP_LONG);
    { write_exp_elt_opcode (OP_LONG);
                          write_exp_elt_type (parse_type->builtin_bool);
                          write_exp_elt_type (parse_type->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 80:
  case 80:
#line 708 "c-exp.y"
#line 708 "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 81:
  case 81:
#line 716 "c-exp.y"
#line 716 "c-exp.y"
    {
    {
                          yyval.bval = yyvsp[0].bval;
                          yyval.bval = yyvsp[0].bval;
                        }
                        }
    break;
    break;
 
 
  case 82:
  case 82:
#line 722 "c-exp.y"
#line 722 "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);
                          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 83:
  case 83:
#line 732 "c-exp.y"
#line 732 "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);
                          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 84:
  case 84:
#line 747 "c-exp.y"
#line 747 "c-exp.y"
    {
    {
                          struct type *type = yyvsp[-2].tval;
                          struct type *type = yyvsp[-2].tval;
                          CHECK_TYPEDEF (type);
                          CHECK_TYPEDEF (type);
                          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 85:
  case 85:
#line 762 "c-exp.y"
#line 762 "c-exp.y"
    {
    {
                          struct type *type = yyvsp[-3].tval;
                          struct type *type = yyvsp[-3].tval;
                          struct stoken tmp_token;
                          struct stoken tmp_token;
                          CHECK_TYPEDEF (type);
                          CHECK_TYPEDEF (type);
                          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 87:
  case 87:
#line 789 "c-exp.y"
#line 789 "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);
                          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);
                          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.", name);
                            error ("No symbol \"%s\" in current context.", name);
                        }
                        }
    break;
    break;
 
 
  case 88:
  case 88:
#line 817 "c-exp.y"
#line 817 "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,
                                  || contained_in (block_found,
                                                   innermost_block))
                                                   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);
                              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 89:
  case 89:
#line 871 "c-exp.y"
#line 871 "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 97:
  case 97:
#line 893 "c-exp.y"
#line 893 "c-exp.y"
    { push_type (tp_pointer); yyval.voidval = 0; }
    { push_type (tp_pointer); yyval.voidval = 0; }
    break;
    break;
 
 
  case 98:
  case 98:
#line 895 "c-exp.y"
#line 895 "c-exp.y"
    { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; }
    { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; }
    break;
    break;
 
 
  case 99:
  case 99:
#line 897 "c-exp.y"
#line 897 "c-exp.y"
    { push_type (tp_reference); yyval.voidval = 0; }
    { push_type (tp_reference); yyval.voidval = 0; }
    break;
    break;
 
 
  case 100:
  case 100:
#line 899 "c-exp.y"
#line 899 "c-exp.y"
    { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; }
    { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; }
    break;
    break;
 
 
  case 102:
  case 102:
#line 904 "c-exp.y"
#line 904 "c-exp.y"
    { yyval.voidval = yyvsp[-1].voidval; }
    { yyval.voidval = yyvsp[-1].voidval; }
    break;
    break;
 
 
  case 103:
  case 103:
#line 906 "c-exp.y"
#line 906 "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 104:
  case 104:
#line 911 "c-exp.y"
#line 911 "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 105:
  case 105:
#line 918 "c-exp.y"
#line 918 "c-exp.y"
    { push_type (tp_function); }
    { push_type (tp_function); }
    break;
    break;
 
 
  case 106:
  case 106:
#line 920 "c-exp.y"
#line 920 "c-exp.y"
    { push_type (tp_function); }
    { push_type (tp_function); }
    break;
    break;
 
 
  case 107:
  case 107:
#line 924 "c-exp.y"
#line 924 "c-exp.y"
    { yyval.lval = -1; }
    { yyval.lval = -1; }
    break;
    break;
 
 
  case 108:
  case 108:
#line 926 "c-exp.y"
#line 926 "c-exp.y"
    { yyval.lval = yyvsp[-1].typed_val_int.val; }
    { yyval.lval = yyvsp[-1].typed_val_int.val; }
    break;
    break;
 
 
  case 109:
  case 109:
#line 930 "c-exp.y"
#line 930 "c-exp.y"
    { yyval.voidval = 0; }
    { yyval.voidval = 0; }
    break;
    break;
 
 
  case 110:
  case 110:
#line 932 "c-exp.y"
#line 932 "c-exp.y"
    { xfree (yyvsp[-1].tvec); yyval.voidval = 0; }
    { xfree (yyvsp[-1].tvec); yyval.voidval = 0; }
    break;
    break;
 
 
  case 112:
  case 112:
#line 948 "c-exp.y"
#line 948 "c-exp.y"
    { yyval.tval = yyvsp[0].tsym.type; }
    { yyval.tval = yyvsp[0].tsym.type; }
    break;
    break;
 
 
  case 113:
  case 113:
#line 950 "c-exp.y"
#line 950 "c-exp.y"
    { yyval.tval = parse_type->builtin_int; }
    { yyval.tval = parse_type->builtin_int; }
    break;
    break;
 
 
  case 114:
  case 114:
#line 952 "c-exp.y"
#line 952 "c-exp.y"
    { yyval.tval = parse_type->builtin_long; }
    { yyval.tval = parse_type->builtin_long; }
    break;
    break;
 
 
  case 115:
  case 115:
#line 954 "c-exp.y"
#line 954 "c-exp.y"
    { yyval.tval = parse_type->builtin_short; }
    { yyval.tval = parse_type->builtin_short; }
    break;
    break;
 
 
  case 116:
  case 116:
#line 956 "c-exp.y"
#line 956 "c-exp.y"
    { yyval.tval = parse_type->builtin_long; }
    { yyval.tval = parse_type->builtin_long; }
    break;
    break;
 
 
  case 117:
  case 117:
#line 958 "c-exp.y"
#line 958 "c-exp.y"
    { yyval.tval = parse_type->builtin_long; }
    { yyval.tval = parse_type->builtin_long; }
    break;
    break;
 
 
  case 118:
  case 118:
#line 960 "c-exp.y"
#line 960 "c-exp.y"
    { yyval.tval = parse_type->builtin_long; }
    { yyval.tval = parse_type->builtin_long; }
    break;
    break;
 
 
  case 119:
  case 119:
#line 962 "c-exp.y"
#line 962 "c-exp.y"
    { yyval.tval = parse_type->builtin_long; }
    { yyval.tval = parse_type->builtin_long; }
    break;
    break;
 
 
  case 120:
  case 120:
#line 964 "c-exp.y"
#line 964 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long; }
    { yyval.tval = parse_type->builtin_unsigned_long; }
    break;
    break;
 
 
  case 121:
  case 121:
#line 966 "c-exp.y"
#line 966 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long; }
    { yyval.tval = parse_type->builtin_unsigned_long; }
    break;
    break;
 
 
  case 122:
  case 122:
#line 968 "c-exp.y"
#line 968 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long; }
    { yyval.tval = parse_type->builtin_unsigned_long; }
    break;
    break;
 
 
  case 123:
  case 123:
#line 970 "c-exp.y"
#line 970 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_long; }
    { yyval.tval = parse_type->builtin_long_long; }
    break;
    break;
 
 
  case 124:
  case 124:
#line 972 "c-exp.y"
#line 972 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_long; }
    { yyval.tval = parse_type->builtin_long_long; }
    break;
    break;
 
 
  case 125:
  case 125:
#line 974 "c-exp.y"
#line 974 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_long; }
    { yyval.tval = parse_type->builtin_long_long; }
    break;
    break;
 
 
  case 126:
  case 126:
#line 976 "c-exp.y"
#line 976 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_long; }
    { yyval.tval = parse_type->builtin_long_long; }
    break;
    break;
 
 
  case 127:
  case 127:
#line 978 "c-exp.y"
#line 978 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_long; }
    { yyval.tval = parse_type->builtin_long_long; }
    break;
    break;
 
 
  case 128:
  case 128:
#line 980 "c-exp.y"
#line 980 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_long; }
    { yyval.tval = parse_type->builtin_long_long; }
    break;
    break;
 
 
  case 129:
  case 129:
#line 982 "c-exp.y"
#line 982 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 130:
  case 130:
#line 984 "c-exp.y"
#line 984 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 131:
  case 131:
#line 986 "c-exp.y"
#line 986 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 132:
  case 132:
#line 988 "c-exp.y"
#line 988 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    { yyval.tval = parse_type->builtin_unsigned_long_long; }
    break;
    break;
 
 
  case 133:
  case 133:
#line 990 "c-exp.y"
#line 990 "c-exp.y"
    { yyval.tval = parse_type->builtin_short; }
    { yyval.tval = parse_type->builtin_short; }
    break;
    break;
 
 
  case 134:
  case 134:
#line 992 "c-exp.y"
#line 992 "c-exp.y"
    { yyval.tval = parse_type->builtin_short; }
    { yyval.tval = parse_type->builtin_short; }
    break;
    break;
 
 
  case 135:
  case 135:
#line 994 "c-exp.y"
#line 994 "c-exp.y"
    { yyval.tval = parse_type->builtin_short; }
    { yyval.tval = parse_type->builtin_short; }
    break;
    break;
 
 
  case 136:
  case 136:
#line 996 "c-exp.y"
#line 996 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_short; }
    { yyval.tval = parse_type->builtin_unsigned_short; }
    break;
    break;
 
 
  case 137:
  case 137:
#line 998 "c-exp.y"
#line 998 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_short; }
    { yyval.tval = parse_type->builtin_unsigned_short; }
    break;
    break;
 
 
  case 138:
  case 138:
#line 1000 "c-exp.y"
#line 1000 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_short; }
    { yyval.tval = parse_type->builtin_unsigned_short; }
    break;
    break;
 
 
  case 139:
  case 139:
#line 1002 "c-exp.y"
#line 1002 "c-exp.y"
    { yyval.tval = parse_type->builtin_double; }
    { yyval.tval = parse_type->builtin_double; }
    break;
    break;
 
 
  case 140:
  case 140:
#line 1004 "c-exp.y"
#line 1004 "c-exp.y"
    { yyval.tval = parse_type->builtin_long_double; }
    { yyval.tval = parse_type->builtin_long_double; }
    break;
    break;
 
 
  case 141:
  case 141:
#line 1006 "c-exp.y"
#line 1006 "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 142:
  case 142:
#line 1009 "c-exp.y"
#line 1009 "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 143:
  case 143:
#line 1012 "c-exp.y"
#line 1012 "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 144:
  case 144:
#line 1015 "c-exp.y"
#line 1015 "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 145:
  case 145:
#line 1018 "c-exp.y"
#line 1018 "c-exp.y"
    { yyval.tval = lookup_unsigned_typename (parse_language,
    { yyval.tval = lookup_unsigned_typename (parse_language,
                                                         parse_gdbarch,
                                                         parse_gdbarch,
                                                         TYPE_NAME(yyvsp[0].tsym.type)); }
                                                         TYPE_NAME(yyvsp[0].tsym.type)); }
    break;
    break;
 
 
  case 146:
  case 146:
#line 1022 "c-exp.y"
#line 1022 "c-exp.y"
    { yyval.tval = parse_type->builtin_unsigned_int; }
    { yyval.tval = parse_type->builtin_unsigned_int; }
    break;
    break;
 
 
  case 147:
  case 147:
#line 1024 "c-exp.y"
#line 1024 "c-exp.y"
    { yyval.tval = lookup_signed_typename (parse_language,
    { yyval.tval = lookup_signed_typename (parse_language,
                                                       parse_gdbarch,
                                                       parse_gdbarch,
                                                       TYPE_NAME(yyvsp[0].tsym.type)); }
                                                       TYPE_NAME(yyvsp[0].tsym.type)); }
    break;
    break;
 
 
  case 148:
  case 148:
#line 1028 "c-exp.y"
#line 1028 "c-exp.y"
    { yyval.tval = parse_type->builtin_int; }
    { yyval.tval = parse_type->builtin_int; }
    break;
    break;
 
 
  case 149:
  case 149:
#line 1033 "c-exp.y"
#line 1033 "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 150:
  case 150:
#line 1037 "c-exp.y"
#line 1037 "c-exp.y"
    { yyval.tval = follow_types (yyvsp[0].tval); }
    { yyval.tval = follow_types (yyvsp[0].tval); }
    break;
    break;
 
 
  case 151:
  case 151:
#line 1039 "c-exp.y"
#line 1039 "c-exp.y"
    { yyval.tval = follow_types (yyvsp[-1].tval); }
    { yyval.tval = follow_types (yyvsp[-1].tval); }
    break;
    break;
 
 
  case 153:
  case 153:
#line 1089 "c-exp.y"
#line 1089 "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 155:
  case 155:
#line 1115 "c-exp.y"
#line 1115 "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 = parse_type->builtin_int;
                  yyval.tsym.type = parse_type->builtin_int;
                }
                }
    break;
    break;
 
 
  case 156:
  case 156:
#line 1121 "c-exp.y"
#line 1121 "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 = parse_type->builtin_long;
                  yyval.tsym.type = parse_type->builtin_long;
                }
                }
    break;
    break;
 
 
  case 157:
  case 157:
#line 1127 "c-exp.y"
#line 1127 "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 = parse_type->builtin_short;
                  yyval.tsym.type = parse_type->builtin_short;
                }
                }
    break;
    break;
 
 
  case 158:
  case 158:
#line 1136 "c-exp.y"
#line 1136 "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 159:
  case 159:
#line 1141 "c-exp.y"
#line 1141 "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 161:
  case 161:
#line 1149 "c-exp.y"
#line 1149 "c-exp.y"
    { yyval.tval = follow_types (yyvsp[-3].tval); }
    { yyval.tval = follow_types (yyvsp[-3].tval); }
    break;
    break;
 
 
  case 164:
  case 164:
#line 1157 "c-exp.y"
#line 1157 "c-exp.y"
    { push_type (tp_const);
    { push_type (tp_const);
                          push_type (tp_volatile);
                          push_type (tp_volatile);
                        }
                        }
    break;
    break;
 
 
  case 165:
  case 165:
#line 1161 "c-exp.y"
#line 1161 "c-exp.y"
    { push_type (tp_const); }
    { push_type (tp_const); }
    break;
    break;
 
 
  case 166:
  case 166:
#line 1163 "c-exp.y"
#line 1163 "c-exp.y"
    { push_type (tp_volatile); }
    { push_type (tp_volatile); }
    break;
    break;
 
 
  case 167:
  case 167:
#line 1167 "c-exp.y"
#line 1167 "c-exp.y"
    { yyval.sval = operator_stoken (" new"); }
    { yyval.sval = operator_stoken (" new"); }
    break;
    break;
 
 
  case 168:
  case 168:
#line 1169 "c-exp.y"
#line 1169 "c-exp.y"
    { yyval.sval = operator_stoken (" delete"); }
    { yyval.sval = operator_stoken (" delete"); }
    break;
    break;
 
 
  case 169:
  case 169:
#line 1171 "c-exp.y"
#line 1171 "c-exp.y"
    { yyval.sval = operator_stoken (" new[]"); }
    { yyval.sval = operator_stoken (" new[]"); }
    break;
    break;
 
 
  case 170:
  case 170:
#line 1173 "c-exp.y"
#line 1173 "c-exp.y"
    { yyval.sval = operator_stoken (" delete[]"); }
    { yyval.sval = operator_stoken (" delete[]"); }
    break;
    break;
 
 
  case 171:
  case 171:
#line 1175 "c-exp.y"
#line 1175 "c-exp.y"
    { yyval.sval = operator_stoken ("+"); }
    { yyval.sval = operator_stoken ("+"); }
    break;
    break;
 
 
  case 172:
  case 172:
#line 1177 "c-exp.y"
#line 1177 "c-exp.y"
    { yyval.sval = operator_stoken ("-"); }
    { yyval.sval = operator_stoken ("-"); }
    break;
    break;
 
 
  case 173:
  case 173:
#line 1179 "c-exp.y"
#line 1179 "c-exp.y"
    { yyval.sval = operator_stoken ("*"); }
    { yyval.sval = operator_stoken ("*"); }
    break;
    break;
 
 
  case 174:
  case 174:
#line 1181 "c-exp.y"
#line 1181 "c-exp.y"
    { yyval.sval = operator_stoken ("/"); }
    { yyval.sval = operator_stoken ("/"); }
    break;
    break;
 
 
  case 175:
  case 175:
#line 1183 "c-exp.y"
#line 1183 "c-exp.y"
    { yyval.sval = operator_stoken ("%"); }
    { yyval.sval = operator_stoken ("%"); }
    break;
    break;
 
 
  case 176:
  case 176:
#line 1185 "c-exp.y"
#line 1185 "c-exp.y"
    { yyval.sval = operator_stoken ("^"); }
    { yyval.sval = operator_stoken ("^"); }
    break;
    break;
 
 
  case 177:
  case 177:
#line 1187 "c-exp.y"
#line 1187 "c-exp.y"
    { yyval.sval = operator_stoken ("&"); }
    { yyval.sval = operator_stoken ("&"); }
    break;
    break;
 
 
  case 178:
  case 178:
#line 1189 "c-exp.y"
#line 1189 "c-exp.y"
    { yyval.sval = operator_stoken ("|"); }
    { yyval.sval = operator_stoken ("|"); }
    break;
    break;
 
 
  case 179:
  case 179:
#line 1191 "c-exp.y"
#line 1191 "c-exp.y"
    { yyval.sval = operator_stoken ("~"); }
    { yyval.sval = operator_stoken ("~"); }
    break;
    break;
 
 
  case 180:
  case 180:
#line 1193 "c-exp.y"
#line 1193 "c-exp.y"
    { yyval.sval = operator_stoken ("!"); }
    { yyval.sval = operator_stoken ("!"); }
    break;
    break;
 
 
  case 181:
  case 181:
#line 1195 "c-exp.y"
#line 1195 "c-exp.y"
    { yyval.sval = operator_stoken ("="); }
    { yyval.sval = operator_stoken ("="); }
    break;
    break;
 
 
  case 182:
  case 182:
#line 1197 "c-exp.y"
#line 1197 "c-exp.y"
    { yyval.sval = operator_stoken ("<"); }
    { yyval.sval = operator_stoken ("<"); }
    break;
    break;
 
 
  case 183:
  case 183:
#line 1199 "c-exp.y"
#line 1199 "c-exp.y"
    { yyval.sval = operator_stoken (">"); }
    { yyval.sval = operator_stoken (">"); }
    break;
    break;
 
 
  case 184:
  case 184:
#line 1201 "c-exp.y"
#line 1201 "c-exp.y"
    { const char *op = "unknown";
    { const char *op = "unknown";
                          switch (yyvsp[0].opcode)
                          switch (yyvsp[0].opcode)
                            {
                            {
                            case BINOP_RSH:
                            case BINOP_RSH:
                              op = ">>=";
                              op = ">>=";
                              break;
                              break;
                            case BINOP_LSH:
                            case BINOP_LSH:
                              op = "<<=";
                              op = "<<=";
                              break;
                              break;
                            case BINOP_ADD:
                            case BINOP_ADD:
                              op = "+=";
                              op = "+=";
                              break;
                              break;
                            case BINOP_SUB:
                            case BINOP_SUB:
                              op = "-=";
                              op = "-=";
                              break;
                              break;
                            case BINOP_MUL:
                            case BINOP_MUL:
                              op = "*=";
                              op = "*=";
                              break;
                              break;
                            case BINOP_DIV:
                            case BINOP_DIV:
                              op = "/=";
                              op = "/=";
                              break;
                              break;
                            case BINOP_REM:
                            case BINOP_REM:
                              op = "%=";
                              op = "%=";
                              break;
                              break;
                            case BINOP_BITWISE_IOR:
                            case BINOP_BITWISE_IOR:
                              op = "|=";
                              op = "|=";
                              break;
                              break;
                            case BINOP_BITWISE_AND:
                            case BINOP_BITWISE_AND:
                              op = "&=";
                              op = "&=";
                              break;
                              break;
                            case BINOP_BITWISE_XOR:
                            case BINOP_BITWISE_XOR:
                              op = "^=";
                              op = "^=";
                              break;
                              break;
                            default:
                            default:
                              break;
                              break;
                            }
                            }
 
 
                          yyval.sval = operator_stoken (op);
                          yyval.sval = operator_stoken (op);
                        }
                        }
    break;
    break;
 
 
  case 185:
  case 185:
#line 1241 "c-exp.y"
#line 1241 "c-exp.y"
    { yyval.sval = operator_stoken ("<<"); }
    { yyval.sval = operator_stoken ("<<"); }
    break;
    break;
 
 
  case 186:
  case 186:
#line 1243 "c-exp.y"
#line 1243 "c-exp.y"
    { yyval.sval = operator_stoken (">>"); }
    { yyval.sval = operator_stoken (">>"); }
    break;
    break;
 
 
  case 187:
  case 187:
#line 1245 "c-exp.y"
#line 1245 "c-exp.y"
    { yyval.sval = operator_stoken ("=="); }
    { yyval.sval = operator_stoken ("=="); }
    break;
    break;
 
 
  case 188:
  case 188:
#line 1247 "c-exp.y"
#line 1247 "c-exp.y"
    { yyval.sval = operator_stoken ("!="); }
    { yyval.sval = operator_stoken ("!="); }
    break;
    break;
 
 
  case 189:
  case 189:
#line 1249 "c-exp.y"
#line 1249 "c-exp.y"
    { yyval.sval = operator_stoken ("<="); }
    { yyval.sval = operator_stoken ("<="); }
    break;
    break;
 
 
  case 190:
  case 190:
#line 1251 "c-exp.y"
#line 1251 "c-exp.y"
    { yyval.sval = operator_stoken (">="); }
    { yyval.sval = operator_stoken (">="); }
    break;
    break;
 
 
  case 191:
  case 191:
#line 1253 "c-exp.y"
#line 1253 "c-exp.y"
    { yyval.sval = operator_stoken ("&&"); }
    { yyval.sval = operator_stoken ("&&"); }
    break;
    break;
 
 
  case 192:
  case 192:
#line 1255 "c-exp.y"
#line 1255 "c-exp.y"
    { yyval.sval = operator_stoken ("||"); }
    { yyval.sval = operator_stoken ("||"); }
    break;
    break;
 
 
  case 193:
  case 193:
#line 1257 "c-exp.y"
#line 1257 "c-exp.y"
    { yyval.sval = operator_stoken ("++"); }
    { yyval.sval = operator_stoken ("++"); }
    break;
    break;
 
 
  case 194:
  case 194:
#line 1259 "c-exp.y"
#line 1259 "c-exp.y"
    { yyval.sval = operator_stoken ("--"); }
    { yyval.sval = operator_stoken ("--"); }
    break;
    break;
 
 
  case 195:
  case 195:
#line 1261 "c-exp.y"
#line 1261 "c-exp.y"
    { yyval.sval = operator_stoken (","); }
    { yyval.sval = operator_stoken (","); }
    break;
    break;
 
 
  case 196:
  case 196:
#line 1263 "c-exp.y"
#line 1263 "c-exp.y"
    { yyval.sval = operator_stoken ("->*"); }
    { yyval.sval = operator_stoken ("->*"); }
    break;
    break;
 
 
  case 197:
  case 197:
#line 1265 "c-exp.y"
#line 1265 "c-exp.y"
    { yyval.sval = operator_stoken ("->"); }
    { yyval.sval = operator_stoken ("->"); }
    break;
    break;
 
 
  case 198:
  case 198:
#line 1267 "c-exp.y"
#line 1267 "c-exp.y"
    { yyval.sval = operator_stoken ("()"); }
    { yyval.sval = operator_stoken ("()"); }
    break;
    break;
 
 
  case 199:
  case 199:
#line 1269 "c-exp.y"
#line 1269 "c-exp.y"
    { yyval.sval = operator_stoken ("[]"); }
    { yyval.sval = operator_stoken ("[]"); }
    break;
    break;
 
 
  case 200:
  case 200:
#line 1271 "c-exp.y"
#line 1271 "c-exp.y"
    { char *name;
    { char *name;
                          long length;
                          long length;
                          struct ui_file *buf = mem_fileopen ();
                          struct ui_file *buf = mem_fileopen ();
 
 
                          c_print_type (yyvsp[0].tval, NULL, buf, -1, 0);
                          c_print_type (yyvsp[0].tval, NULL, buf, -1, 0);
                          name = ui_file_xstrdup (buf, &length);
                          name = ui_file_xstrdup (buf, &length);
                          ui_file_delete (buf);
                          ui_file_delete (buf);
                          yyval.sval = operator_stoken (name);
                          yyval.sval = operator_stoken (name);
                          xfree (name);
                          xfree (name);
                        }
                        }
    break;
    break;
 
 
  case 201:
  case 201:
#line 1285 "c-exp.y"
#line 1285 "c-exp.y"
    { yyval.sval = yyvsp[0].ssym.stoken; }
    { yyval.sval = yyvsp[0].ssym.stoken; }
    break;
    break;
 
 
  case 202:
  case 202:
#line 1286 "c-exp.y"
#line 1286 "c-exp.y"
    { yyval.sval = yyvsp[0].ssym.stoken; }
    { yyval.sval = yyvsp[0].ssym.stoken; }
    break;
    break;
 
 
  case 203:
  case 203:
#line 1287 "c-exp.y"
#line 1287 "c-exp.y"
    { yyval.sval = yyvsp[0].tsym.stoken; }
    { yyval.sval = yyvsp[0].tsym.stoken; }
    break;
    break;
 
 
  case 204:
  case 204:
#line 1288 "c-exp.y"
#line 1288 "c-exp.y"
    { yyval.sval = yyvsp[0].ssym.stoken; }
    { yyval.sval = yyvsp[0].ssym.stoken; }
    break;
    break;
 
 
  case 205:
  case 205:
#line 1289 "c-exp.y"
#line 1289 "c-exp.y"
    { yyval.sval = yyvsp[0].sval; }
    { yyval.sval = yyvsp[0].sval; }
    break;
    break;
 
 
 
 
    }
    }
 
 
/* Line 1000 of yacc.c.  */
/* Line 1000 of yacc.c.  */
#line 2986 "c-exp.c.tmp"
#line 2986 "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 1303 "c-exp.y"
#line 1303 "c-exp.y"
 
 
 
 
/* Returns a stoken of the operator name given by OP (which does not
/* Returns a stoken of the operator name given by OP (which does not
   include the string "operator").  */
   include the string "operator").  */
static struct stoken
static struct stoken
operator_stoken (const char *op)
operator_stoken (const char *op)
{
{
  static const char *operator_string = "operator";
  static const char *operator_string = "operator";
  struct stoken st = { NULL, 0 };
  struct stoken st = { NULL, 0 };
  st.length = strlen (operator_string) + strlen (op);
  st.length = strlen (operator_string) + strlen (op);
  st.ptr = xmalloc (st.length + 1);
  st.ptr = xmalloc (st.length + 1);
  strcpy (st.ptr, operator_string);
  strcpy (st.ptr, operator_string);
  strcat (st.ptr, op);
  strcat (st.ptr, op);
 
 
  /* The toplevel (c_parse) will free the memory allocated here.  */
  /* The toplevel (c_parse) will free the memory allocated here.  */
  make_cleanup (xfree, st.ptr);
  make_cleanup (xfree, st.ptr);
  return st;
  return st;
};
};
 
 
/* 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 (char *p, int len, int parsed_float, YYSTYPE *putithere)
parse_number (char *p, int len, int parsed_float, 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;
      char *s;
      int num;  /* number of tokens scanned by scanf */
      int num;  /* number of tokens scanned by scanf */
      char saved_char;
      char saved_char;
 
 
      /* 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 (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'f')
      if (len >= 2 && 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
            = parse_type->builtin_decfloat;
            = parse_type->builtin_decfloat;
          decimal_from_string (putithere->typed_val_decfloat.val, 4,
          decimal_from_string (putithere->typed_val_decfloat.val, 4,
                               gdbarch_byte_order (parse_gdbarch), p);
                               gdbarch_byte_order (parse_gdbarch), p);
          p[len - 2] = 'd';
          p[len - 2] = 'd';
          return DECFLOAT;
          return DECFLOAT;
        }
        }
 
 
      if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'd')
      if (len >= 2 && 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
            = parse_type->builtin_decdouble;
            = parse_type->builtin_decdouble;
          decimal_from_string (putithere->typed_val_decfloat.val, 8,
          decimal_from_string (putithere->typed_val_decfloat.val, 8,
                               gdbarch_byte_order (parse_gdbarch), p);
                               gdbarch_byte_order (parse_gdbarch), p);
          p[len - 2] = 'd';
          p[len - 2] = 'd';
          return DECFLOAT;
          return DECFLOAT;
        }
        }
 
 
      if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'l')
      if (len >= 2 && 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
            = parse_type->builtin_declong;
            = parse_type->builtin_declong;
          decimal_from_string (putithere->typed_val_decfloat.val, 16,
          decimal_from_string (putithere->typed_val_decfloat.val, 16,
                               gdbarch_byte_order (parse_gdbarch), p);
                               gdbarch_byte_order (parse_gdbarch), p);
          p[len - 2] = 'd';
          p[len - 2] = 'd';
          return DECFLOAT;
          return DECFLOAT;
        }
        }
 
 
      s = xmalloc (len);
      s = xmalloc (len);
      saved_char = p[len];
      saved_char = p[len];
      p[len] = 0;        /* null-terminate the token */
      p[len] = 0;        /* null-terminate the token */
      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 =
          parse_type->builtin_double;
          parse_type->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 =
              parse_type->builtin_float;
              parse_type->builtin_float;
          else if (!strcasecmp (s, "l"))
          else if (!strcasecmp (s, "l"))
            putithere->typed_val_float.type =
            putithere->typed_val_float.type =
              parse_type->builtin_long_double;
              parse_type->builtin_long_double;
          else
          else
            {
            {
              xfree (s);
              xfree (s);
              return ERROR;
              return ERROR;
            }
            }
        }
        }
 
 
      xfree (s);
      xfree (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 'b':
      case 'b':
      case 'B':
      case 'B':
        if (len >= 3)
        if (len >= 3)
          {
          {
            p += 2;
            p += 2;
            base = 2;
            base = 2;
            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 (parse_gdbarch) - 2)) == 0)
      && (un >> (gdbarch_int_bit (parse_gdbarch) - 2)) == 0)
    {
    {
      high_bit = ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch) - 1);
      high_bit = ((ULONGEST)1) << (gdbarch_int_bit (parse_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 = parse_type->builtin_unsigned_int;
      unsigned_type = parse_type->builtin_unsigned_int;
      signed_type = parse_type->builtin_int;
      signed_type = parse_type->builtin_int;
    }
    }
  else if (long_p <= 1
  else if (long_p <= 1
           && (un >> (gdbarch_long_bit (parse_gdbarch) - 2)) == 0)
           && (un >> (gdbarch_long_bit (parse_gdbarch) - 2)) == 0)
    {
    {
      high_bit = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch) - 1);
      high_bit = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch) - 1);
      unsigned_type = parse_type->builtin_unsigned_long;
      unsigned_type = parse_type->builtin_unsigned_long;
      signed_type = parse_type->builtin_long;
      signed_type = parse_type->builtin_long;
    }
    }
  else
  else
    {
    {
      int shift;
      int shift;
      if (sizeof (ULONGEST) * HOST_CHAR_BIT
      if (sizeof (ULONGEST) * HOST_CHAR_BIT
          < gdbarch_long_long_bit (parse_gdbarch))
          < gdbarch_long_long_bit (parse_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 (parse_gdbarch) - 1);
        shift = (gdbarch_long_long_bit (parse_gdbarch) - 1);
      high_bit = (ULONGEST) 1 << shift;
      high_bit = (ULONGEST) 1 << shift;
      unsigned_type = parse_type->builtin_unsigned_long_long;
      unsigned_type = parse_type->builtin_unsigned_long_long;
      signed_type = parse_type->builtin_long_long;
      signed_type = parse_type->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;
}
}
 
 
/* Temporary obstack used for holding strings.  */
/* Temporary obstack used for holding strings.  */
static struct obstack tempbuf;
static struct obstack tempbuf;
static int tempbuf_init;
static int tempbuf_init;
 
 
/* Parse a C escape sequence.  The initial backslash of the sequence
/* Parse a C escape sequence.  The initial backslash of the sequence
   is at (*PTR)[-1].  *PTR will be updated to point to just after the
   is at (*PTR)[-1].  *PTR will be updated to point to just after the
   last character of the sequence.  If OUTPUT is not NULL, the
   last character of the sequence.  If OUTPUT is not NULL, the
   translated form of the escape sequence will be written there.  If
   translated form of the escape sequence will be written there.  If
   OUTPUT is NULL, no output is written and the call will only affect
   OUTPUT is NULL, no output is written and the call will only affect
   *PTR.  If an escape sequence is expressed in target bytes, then the
   *PTR.  If an escape sequence is expressed in target bytes, then the
   entire sequence will simply be copied to OUTPUT.  Return 1 if any
   entire sequence will simply be copied to OUTPUT.  Return 1 if any
   character was emitted, 0 otherwise.  */
   character was emitted, 0 otherwise.  */
 
 
int
int
c_parse_escape (char **ptr, struct obstack *output)
c_parse_escape (char **ptr, struct obstack *output)
{
{
  char *tokptr = *ptr;
  char *tokptr = *ptr;
  int result = 1;
  int result = 1;
 
 
  /* Some escape sequences undergo character set conversion.  Those we
  /* Some escape sequences undergo character set conversion.  Those we
     translate here.  */
     translate here.  */
  switch (*tokptr)
  switch (*tokptr)
    {
    {
      /* Hex escapes do not undergo character set conversion, so keep
      /* Hex escapes do not undergo character set conversion, so keep
         the escape sequence for later.  */
         the escape sequence for later.  */
    case 'x':
    case 'x':
      if (output)
      if (output)
        obstack_grow_str (output, "\\x");
        obstack_grow_str (output, "\\x");
      ++tokptr;
      ++tokptr;
      if (!isxdigit (*tokptr))
      if (!isxdigit (*tokptr))
        error (_("\\x escape without a following hex digit"));
        error (_("\\x escape without a following hex digit"));
      while (isxdigit (*tokptr))
      while (isxdigit (*tokptr))
        {
        {
          if (output)
          if (output)
            obstack_1grow (output, *tokptr);
            obstack_1grow (output, *tokptr);
          ++tokptr;
          ++tokptr;
        }
        }
      break;
      break;
 
 
      /* Octal escapes do not undergo character set conversion, so
      /* Octal escapes do not undergo character set conversion, so
         keep the escape sequence for later.  */
         keep the escape sequence for later.  */
    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':
      {
      {
        int i;
        int i;
        if (output)
        if (output)
          obstack_grow_str (output, "\\");
          obstack_grow_str (output, "\\");
        for (i = 0;
        for (i = 0;
             i < 3 && isdigit (*tokptr) && *tokptr != '8' && *tokptr != '9';
             i < 3 && isdigit (*tokptr) && *tokptr != '8' && *tokptr != '9';
             ++i)
             ++i)
          {
          {
            if (output)
            if (output)
              obstack_1grow (output, *tokptr);
              obstack_1grow (output, *tokptr);
            ++tokptr;
            ++tokptr;
          }
          }
      }
      }
      break;
      break;
 
 
      /* We handle UCNs later.  We could handle them here, but that
      /* We handle UCNs later.  We could handle them here, but that
         would mean a spurious error in the case where the UCN could
         would mean a spurious error in the case where the UCN could
         be converted to the target charset but not the host
         be converted to the target charset but not the host
         charset.  */
         charset.  */
    case 'u':
    case 'u':
    case 'U':
    case 'U':
      {
      {
        char c = *tokptr;
        char c = *tokptr;
        int i, len = c == 'U' ? 8 : 4;
        int i, len = c == 'U' ? 8 : 4;
        if (output)
        if (output)
          {
          {
            obstack_1grow (output, '\\');
            obstack_1grow (output, '\\');
            obstack_1grow (output, *tokptr);
            obstack_1grow (output, *tokptr);
          }
          }
        ++tokptr;
        ++tokptr;
        if (!isxdigit (*tokptr))
        if (!isxdigit (*tokptr))
          error (_("\\%c escape without a following hex digit"), c);
          error (_("\\%c escape without a following hex digit"), c);
        for (i = 0; i < len && isxdigit (*tokptr); ++i)
        for (i = 0; i < len && isxdigit (*tokptr); ++i)
          {
          {
            if (output)
            if (output)
              obstack_1grow (output, *tokptr);
              obstack_1grow (output, *tokptr);
            ++tokptr;
            ++tokptr;
          }
          }
      }
      }
      break;
      break;
 
 
      /* We must pass backslash through so that it does not
      /* We must pass backslash through so that it does not
         cause quoting during the second expansion.  */
         cause quoting during the second expansion.  */
    case '\\':
    case '\\':
      if (output)
      if (output)
        obstack_grow_str (output, "\\\\");
        obstack_grow_str (output, "\\\\");
      ++tokptr;
      ++tokptr;
      break;
      break;
 
 
      /* Escapes which undergo conversion.  */
      /* Escapes which undergo conversion.  */
    case 'a':
    case 'a':
      if (output)
      if (output)
        obstack_1grow (output, '\a');
        obstack_1grow (output, '\a');
      ++tokptr;
      ++tokptr;
      break;
      break;
    case 'b':
    case 'b':
      if (output)
      if (output)
        obstack_1grow (output, '\b');
        obstack_1grow (output, '\b');
      ++tokptr;
      ++tokptr;
      break;
      break;
    case 'f':
    case 'f':
      if (output)
      if (output)
        obstack_1grow (output, '\f');
        obstack_1grow (output, '\f');
      ++tokptr;
      ++tokptr;
      break;
      break;
    case 'n':
    case 'n':
      if (output)
      if (output)
        obstack_1grow (output, '\n');
        obstack_1grow (output, '\n');
      ++tokptr;
      ++tokptr;
      break;
      break;
    case 'r':
    case 'r':
      if (output)
      if (output)
        obstack_1grow (output, '\r');
        obstack_1grow (output, '\r');
      ++tokptr;
      ++tokptr;
      break;
      break;
    case 't':
    case 't':
      if (output)
      if (output)
        obstack_1grow (output, '\t');
        obstack_1grow (output, '\t');
      ++tokptr;
      ++tokptr;
      break;
      break;
    case 'v':
    case 'v':
      if (output)
      if (output)
        obstack_1grow (output, '\v');
        obstack_1grow (output, '\v');
      ++tokptr;
      ++tokptr;
      break;
      break;
 
 
      /* GCC extension.  */
      /* GCC extension.  */
    case 'e':
    case 'e':
      if (output)
      if (output)
        obstack_1grow (output, HOST_ESCAPE_CHAR);
        obstack_1grow (output, HOST_ESCAPE_CHAR);
      ++tokptr;
      ++tokptr;
      break;
      break;
 
 
      /* Backslash-newline expands to nothing at all.  */
      /* Backslash-newline expands to nothing at all.  */
    case '\n':
    case '\n':
      ++tokptr;
      ++tokptr;
      result = 0;
      result = 0;
      break;
      break;
 
 
      /* A few escapes just expand to the character itself.  */
      /* A few escapes just expand to the character itself.  */
    case '\'':
    case '\'':
    case '\"':
    case '\"':
    case '?':
    case '?':
      /* GCC extensions.  */
      /* GCC extensions.  */
    case '(':
    case '(':
    case '{':
    case '{':
    case '[':
    case '[':
    case '%':
    case '%':
      /* Unrecognized escapes turn into the character itself.  */
      /* Unrecognized escapes turn into the character itself.  */
    default:
    default:
      if (output)
      if (output)
        obstack_1grow (output, *tokptr);
        obstack_1grow (output, *tokptr);
      ++tokptr;
      ++tokptr;
      break;
      break;
    }
    }
  *ptr = tokptr;
  *ptr = tokptr;
  return result;
  return result;
}
}
 
 
/* Parse a string or character literal from TOKPTR.  The string or
/* Parse a string or character literal from TOKPTR.  The string or
   character may be wide or unicode.  *OUTPTR is set to just after the
   character may be wide or unicode.  *OUTPTR is set to just after the
   end of the literal in the input string.  The resulting token is
   end of the literal in the input string.  The resulting token is
   stored in VALUE.  This returns a token value, either STRING or
   stored in VALUE.  This returns a token value, either STRING or
   CHAR, depending on what was parsed.  *HOST_CHARS is set to the
   CHAR, depending on what was parsed.  *HOST_CHARS is set to the
   number of host characters in the literal.  */
   number of host characters in the literal.  */
static int
static int
parse_string_or_char (char *tokptr, char **outptr, struct typed_stoken *value,
parse_string_or_char (char *tokptr, char **outptr, struct typed_stoken *value,
                      int *host_chars)
                      int *host_chars)
{
{
  int quote, i;
  int quote, i;
  enum c_string_type type;
  enum c_string_type type;
 
 
  /* Build the gdb internal form of the input string in tempbuf.  Note
  /* Build the gdb internal form of the input string in tempbuf.  Note
     that the buffer is null byte terminated *only* for the
     that the buffer is null byte terminated *only* for the
     convenience of debugging gdb itself and printing the buffer
     convenience of debugging gdb itself and printing the buffer
     contents when the buffer contains no embedded nulls.  Gdb does
     contents when the buffer contains no embedded nulls.  Gdb does
     not depend upon the buffer being null byte terminated, it uses
     not depend upon the buffer being null byte terminated, it uses
     the length string instead.  This allows gdb to handle C strings
     the length string instead.  This allows gdb to handle C strings
     (as well as strings in other languages) with embedded null
     (as well as strings in other languages) with embedded null
     bytes */
     bytes */
 
 
  if (!tempbuf_init)
  if (!tempbuf_init)
    tempbuf_init = 1;
    tempbuf_init = 1;
  else
  else
    obstack_free (&tempbuf, NULL);
    obstack_free (&tempbuf, NULL);
  obstack_init (&tempbuf);
  obstack_init (&tempbuf);
 
 
  /* Record the string type.  */
  /* Record the string type.  */
  if (*tokptr == 'L')
  if (*tokptr == 'L')
    {
    {
      type = C_WIDE_STRING;
      type = C_WIDE_STRING;
      ++tokptr;
      ++tokptr;
    }
    }
  else if (*tokptr == 'u')
  else if (*tokptr == 'u')
    {
    {
      type = C_STRING_16;
      type = C_STRING_16;
      ++tokptr;
      ++tokptr;
    }
    }
  else if (*tokptr == 'U')
  else if (*tokptr == 'U')
    {
    {
      type = C_STRING_32;
      type = C_STRING_32;
      ++tokptr;
      ++tokptr;
    }
    }
  else
  else
    type = C_STRING;
    type = C_STRING;
 
 
  /* Skip the quote.  */
  /* Skip the quote.  */
  quote = *tokptr;
  quote = *tokptr;
  if (quote == '\'')
  if (quote == '\'')
    type |= C_CHAR;
    type |= C_CHAR;
  ++tokptr;
  ++tokptr;
 
 
  *host_chars = 0;
  *host_chars = 0;
 
 
  while (*tokptr)
  while (*tokptr)
    {
    {
      char c = *tokptr;
      char c = *tokptr;
      if (c == '\\')
      if (c == '\\')
        {
        {
          ++tokptr;
          ++tokptr;
          *host_chars += c_parse_escape (&tokptr, &tempbuf);
          *host_chars += c_parse_escape (&tokptr, &tempbuf);
        }
        }
      else if (c == quote)
      else if (c == quote)
        break;
        break;
      else
      else
        {
        {
          obstack_1grow (&tempbuf, c);
          obstack_1grow (&tempbuf, c);
          ++tokptr;
          ++tokptr;
          /* FIXME: this does the wrong thing with multi-byte host
          /* FIXME: this does the wrong thing with multi-byte host
             characters.  We could use mbrlen here, but that would
             characters.  We could use mbrlen here, but that would
             make "set host-charset" a bit less useful.  */
             make "set host-charset" a bit less useful.  */
          ++*host_chars;
          ++*host_chars;
        }
        }
    }
    }
 
 
  if (*tokptr != quote)
  if (*tokptr != quote)
    {
    {
      if (quote == '"')
      if (quote == '"')
        error ("Unterminated string in expression.");
        error ("Unterminated string in expression.");
      else
      else
        error ("Unmatched single quote.");
        error ("Unmatched single quote.");
    }
    }
  ++tokptr;
  ++tokptr;
 
 
  value->type = type;
  value->type = type;
  value->ptr = obstack_base (&tempbuf);
  value->ptr = obstack_base (&tempbuf);
  value->length = obstack_object_size (&tempbuf);
  value->length = obstack_object_size (&tempbuf);
 
 
  *outptr = tokptr;
  *outptr = tokptr;
 
 
  return quote == '"' ? STRING : CHAR;
  return quote == '"' ? STRING : CHAR;
}
}
 
 
struct token
struct token
{
{
  char *operator;
  char *operator;
  int token;
  int token;
  enum exp_opcode opcode;
  enum exp_opcode opcode;
  int cxx_only;
  int cxx_only;
};
};
 
 
static const struct token tokentab3[] =
static const struct token tokentab3[] =
  {
  {
    {">>=", ASSIGN_MODIFY, BINOP_RSH, 0},
    {">>=", ASSIGN_MODIFY, BINOP_RSH, 0},
    {"<<=", ASSIGN_MODIFY, BINOP_LSH, 0},
    {"<<=", ASSIGN_MODIFY, BINOP_LSH, 0},
    {"->*", ARROW_STAR, BINOP_END, 1}
    {"->*", ARROW_STAR, BINOP_END, 1}
  };
  };
 
 
static const struct token tokentab2[] =
static const struct token tokentab2[] =
  {
  {
    {"+=", ASSIGN_MODIFY, BINOP_ADD, 0},
    {"+=", ASSIGN_MODIFY, BINOP_ADD, 0},
    {"-=", ASSIGN_MODIFY, BINOP_SUB, 0},
    {"-=", ASSIGN_MODIFY, BINOP_SUB, 0},
    {"*=", ASSIGN_MODIFY, BINOP_MUL, 0},
    {"*=", ASSIGN_MODIFY, BINOP_MUL, 0},
    {"/=", ASSIGN_MODIFY, BINOP_DIV, 0},
    {"/=", ASSIGN_MODIFY, BINOP_DIV, 0},
    {"%=", ASSIGN_MODIFY, BINOP_REM, 0},
    {"%=", ASSIGN_MODIFY, BINOP_REM, 0},
    {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR, 0},
    {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR, 0},
    {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND, 0},
    {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND, 0},
    {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR, 0},
    {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR, 0},
    {"++", INCREMENT, BINOP_END, 0},
    {"++", INCREMENT, BINOP_END, 0},
    {"--", DECREMENT, BINOP_END, 0},
    {"--", DECREMENT, BINOP_END, 0},
    {"->", ARROW, BINOP_END, 0},
    {"->", ARROW, BINOP_END, 0},
    {"&&", ANDAND, BINOP_END, 0},
    {"&&", ANDAND, BINOP_END, 0},
    {"||", OROR, BINOP_END, 0},
    {"||", OROR, BINOP_END, 0},
    /* "::" is *not* only C++: gdb overrides its meaning in several
    /* "::" is *not* only C++: gdb overrides its meaning in several
       different ways, e.g., 'filename'::func, function::variable.  */
       different ways, e.g., 'filename'::func, function::variable.  */
    {"::", COLONCOLON, BINOP_END, 0},
    {"::", COLONCOLON, BINOP_END, 0},
    {"<<", LSH, BINOP_END, 0},
    {"<<", LSH, BINOP_END, 0},
    {">>", RSH, BINOP_END, 0},
    {">>", RSH, BINOP_END, 0},
    {"==", EQUAL, BINOP_END, 0},
    {"==", EQUAL, BINOP_END, 0},
    {"!=", NOTEQUAL, BINOP_END, 0},
    {"!=", NOTEQUAL, BINOP_END, 0},
    {"<=", LEQ, BINOP_END, 0},
    {"<=", LEQ, BINOP_END, 0},
    {">=", GEQ, BINOP_END, 0},
    {">=", GEQ, BINOP_END, 0},
    {".*", DOT_STAR, BINOP_END, 1}
    {".*", DOT_STAR, BINOP_END, 1}
  };
  };
 
 
/* Identifier-like tokens.  */
/* Identifier-like tokens.  */
static const struct token ident_tokens[] =
static const struct token ident_tokens[] =
  {
  {
    {"unsigned", UNSIGNED, OP_NULL, 0},
    {"unsigned", UNSIGNED, OP_NULL, 0},
    {"template", TEMPLATE, OP_NULL, 1},
    {"template", TEMPLATE, OP_NULL, 1},
    {"volatile", VOLATILE_KEYWORD, OP_NULL, 0},
    {"volatile", VOLATILE_KEYWORD, OP_NULL, 0},
    {"struct", STRUCT, OP_NULL, 0},
    {"struct", STRUCT, OP_NULL, 0},
    {"signed", SIGNED_KEYWORD, OP_NULL, 0},
    {"signed", SIGNED_KEYWORD, OP_NULL, 0},
    {"sizeof", SIZEOF, OP_NULL, 0},
    {"sizeof", SIZEOF, OP_NULL, 0},
    {"double", DOUBLE_KEYWORD, OP_NULL, 0},
    {"double", DOUBLE_KEYWORD, OP_NULL, 0},
    {"false", FALSEKEYWORD, OP_NULL, 1},
    {"false", FALSEKEYWORD, OP_NULL, 1},
    {"class", CLASS, OP_NULL, 1},
    {"class", CLASS, OP_NULL, 1},
    {"union", UNION, OP_NULL, 0},
    {"union", UNION, OP_NULL, 0},
    {"short", SHORT, OP_NULL, 0},
    {"short", SHORT, OP_NULL, 0},
    {"const", CONST_KEYWORD, OP_NULL, 0},
    {"const", CONST_KEYWORD, OP_NULL, 0},
    {"enum", ENUM, OP_NULL, 0},
    {"enum", ENUM, OP_NULL, 0},
    {"long", LONG, OP_NULL, 0},
    {"long", LONG, OP_NULL, 0},
    {"true", TRUEKEYWORD, OP_NULL, 1},
    {"true", TRUEKEYWORD, OP_NULL, 1},
    {"int", INT_KEYWORD, OP_NULL, 0},
    {"int", INT_KEYWORD, OP_NULL, 0},
    {"new", NEW, OP_NULL, 1},
    {"new", NEW, OP_NULL, 1},
    {"delete", DELETE, OP_NULL, 1},
    {"delete", DELETE, OP_NULL, 1},
    {"operator", OPERATOR, OP_NULL, 1},
    {"operator", OPERATOR, OP_NULL, 1},
 
 
    {"and", ANDAND, BINOP_END, 1},
    {"and", ANDAND, BINOP_END, 1},
    {"and_eq", ASSIGN_MODIFY, BINOP_BITWISE_AND, 1},
    {"and_eq", ASSIGN_MODIFY, BINOP_BITWISE_AND, 1},
    {"bitand", '&', OP_NULL, 1},
    {"bitand", '&', OP_NULL, 1},
    {"bitor", '|', OP_NULL, 1},
    {"bitor", '|', OP_NULL, 1},
    {"compl", '~', OP_NULL, 1},
    {"compl", '~', OP_NULL, 1},
    {"not", '!', OP_NULL, 1},
    {"not", '!', OP_NULL, 1},
    {"not_eq", NOTEQUAL, BINOP_END, 1},
    {"not_eq", NOTEQUAL, BINOP_END, 1},
    {"or", OROR, BINOP_END, 1},
    {"or", OROR, BINOP_END, 1},
    {"or_eq", ASSIGN_MODIFY, BINOP_BITWISE_IOR, 1},
    {"or_eq", ASSIGN_MODIFY, BINOP_BITWISE_IOR, 1},
    {"xor", '^', OP_NULL, 1},
    {"xor", '^', OP_NULL, 1},
    {"xor_eq", ASSIGN_MODIFY, BINOP_BITWISE_XOR, 1},
    {"xor_eq", ASSIGN_MODIFY, BINOP_BITWISE_XOR, 1},
 
 
    {"const_cast", CONST_CAST, OP_NULL, 1 },
    {"const_cast", CONST_CAST, OP_NULL, 1 },
    {"dynamic_cast", DYNAMIC_CAST, OP_NULL, 1 },
    {"dynamic_cast", DYNAMIC_CAST, OP_NULL, 1 },
    {"static_cast", STATIC_CAST, OP_NULL, 1 },
    {"static_cast", STATIC_CAST, OP_NULL, 1 },
    {"reinterpret_cast", REINTERPRET_CAST, OP_NULL, 1 }
    {"reinterpret_cast", REINTERPRET_CAST, OP_NULL, 1 }
  };
  };
 
 
/* When we find that lexptr (the global var defined in parse.c) is
/* When we find that lexptr (the global var defined in parse.c) is
   pointing at a macro invocation, we expand the invocation, and call
   pointing at a macro invocation, we expand the invocation, and call
   scan_macro_expansion to save the old lexptr here and point lexptr
   scan_macro_expansion to save the old lexptr here and point lexptr
   into the expanded text.  When we reach the end of that, we call
   into the expanded text.  When we reach the end of that, we call
   end_macro_expansion to pop back to the value we saved here.  The
   end_macro_expansion to pop back to the value we saved here.  The
   macro expansion code promises to return only fully-expanded text,
   macro expansion code promises to return only fully-expanded text,
   so we don't need to "push" more than one level.
   so we don't need to "push" more than one level.
 
 
   This is disgusting, of course.  It would be cleaner to do all macro
   This is disgusting, of course.  It would be cleaner to do all macro
   expansion beforehand, and then hand that to lexptr.  But we don't
   expansion beforehand, and then hand that to lexptr.  But we don't
   really know where the expression ends.  Remember, in a command like
   really know where the expression ends.  Remember, in a command like
 
 
     (gdb) break *ADDRESS if CONDITION
     (gdb) break *ADDRESS if CONDITION
 
 
   we evaluate ADDRESS in the scope of the current frame, but we
   we evaluate ADDRESS in the scope of the current frame, but we
   evaluate CONDITION in the scope of the breakpoint's location.  So
   evaluate CONDITION in the scope of the breakpoint's location.  So
   it's simply wrong to try to macro-expand the whole thing at once.  */
   it's simply wrong to try to macro-expand the whole thing at once.  */
static char *macro_original_text;
static char *macro_original_text;
 
 
/* We save all intermediate macro expansions on this obstack for the
/* We save all intermediate macro expansions on this obstack for the
   duration of a single parse.  The expansion text may sometimes have
   duration of a single parse.  The expansion text may sometimes have
   to live past the end of the expansion, due to yacc lookahead.
   to live past the end of the expansion, due to yacc lookahead.
   Rather than try to be clever about saving the data for a single
   Rather than try to be clever about saving the data for a single
   token, we simply keep it all and delete it after parsing has
   token, we simply keep it all and delete it after parsing has
   completed.  */
   completed.  */
static struct obstack expansion_obstack;
static struct obstack expansion_obstack;
 
 
static void
static void
scan_macro_expansion (char *expansion)
scan_macro_expansion (char *expansion)
{
{
  char *copy;
  char *copy;
 
 
  /* We'd better not be trying to push the stack twice.  */
  /* We'd better not be trying to push the stack twice.  */
  gdb_assert (! macro_original_text);
  gdb_assert (! macro_original_text);
 
 
  /* Copy to the obstack, and then free the intermediate
  /* Copy to the obstack, and then free the intermediate
     expansion.  */
     expansion.  */
  copy = obstack_copy0 (&expansion_obstack, expansion, strlen (expansion));
  copy = obstack_copy0 (&expansion_obstack, expansion, strlen (expansion));
  xfree (expansion);
  xfree (expansion);
 
 
  /* Save the old lexptr value, so we can return to it when we're done
  /* Save the old lexptr value, so we can return to it when we're done
     parsing the expanded text.  */
     parsing the expanded text.  */
  macro_original_text = lexptr;
  macro_original_text = lexptr;
  lexptr = copy;
  lexptr = copy;
}
}
 
 
 
 
static int
static int
scanning_macro_expansion (void)
scanning_macro_expansion (void)
{
{
  return macro_original_text != 0;
  return macro_original_text != 0;
}
}
 
 
 
 
static void
static void
finished_macro_expansion (void)
finished_macro_expansion (void)
{
{
  /* There'd better be something to pop back to.  */
  /* There'd better be something to pop back to.  */
  gdb_assert (macro_original_text);
  gdb_assert (macro_original_text);
 
 
  /* Pop back to the original text.  */
  /* Pop back to the original text.  */
  lexptr = macro_original_text;
  lexptr = macro_original_text;
  macro_original_text = 0;
  macro_original_text = 0;
}
}
 
 
 
 
static void
static void
scan_macro_cleanup (void *dummy)
scan_macro_cleanup (void *dummy)
{
{
  if (macro_original_text)
  if (macro_original_text)
    finished_macro_expansion ();
    finished_macro_expansion ();
 
 
  obstack_free (&expansion_obstack, NULL);
  obstack_free (&expansion_obstack, NULL);
}
}
 
 
/* Return true iff the token represents a C++ cast operator.  */
/* Return true iff the token represents a C++ cast operator.  */
 
 
static int
static int
is_cast_operator (const char *token, int len)
is_cast_operator (const char *token, int len)
{
{
  return (! strncmp (token, "dynamic_cast", len)
  return (! strncmp (token, "dynamic_cast", len)
          || ! strncmp (token, "static_cast", len)
          || ! strncmp (token, "static_cast", len)
          || ! strncmp (token, "reinterpret_cast", len)
          || ! strncmp (token, "reinterpret_cast", len)
          || ! strncmp (token, "const_cast", len));
          || ! strncmp (token, "const_cast", len));
}
}
 
 
/* The scope used for macro expansion.  */
/* The scope used for macro expansion.  */
static struct macro_scope *expression_macro_scope;
static struct macro_scope *expression_macro_scope;
 
 
/* This is set if a NAME token appeared at the very end of the input
/* This is set if a NAME token appeared at the very end of the input
   string, with no whitespace separating the name from the EOF.  This
   string, with no whitespace separating the name from the EOF.  This
   is used only when parsing to do field name completion.  */
   is used only when parsing to do field name completion.  */
static int saw_name_at_eof;
static int saw_name_at_eof;
 
 
/* This is set if the previously-returned token was a structure
/* This is set if the previously-returned token was a structure
   operator -- either '.' or ARROW.  This is used only when parsing to
   operator -- either '.' or ARROW.  This is used only when parsing to
   do field name completion.  */
   do field name completion.  */
static int last_was_structop;
static int last_was_structop;
 
 
/* Read one token, getting characters through lexptr.  */
/* Read one token, getting characters through lexptr.  */
 
 
static int
static int
yylex (void)
yylex (void)
{
{
  int c;
  int c;
  int namelen;
  int namelen;
  unsigned int i;
  unsigned int i;
  char *tokstart;
  char *tokstart;
  int saw_structop = last_was_structop;
  int saw_structop = last_was_structop;
  char *copy;
  char *copy;
 
 
  last_was_structop = 0;
  last_was_structop = 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,
                                          standard_macro_lookup,
                                          standard_macro_lookup,
                                          expression_macro_scope);
                                          expression_macro_scope);
 
 
      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)
      {
      {
        if (tokentab3[i].cxx_only
        if (tokentab3[i].cxx_only
            && parse_language->la_language != language_cplus)
            && parse_language->la_language != language_cplus)
          break;
          break;
 
 
        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)
      {
      {
        if (tokentab2[i].cxx_only
        if (tokentab2[i].cxx_only
            && parse_language->la_language != language_cplus)
            && parse_language->la_language != language_cplus)
          break;
          break;
 
 
        lexptr += 2;
        lexptr += 2;
        yylval.opcode = tokentab2[i].opcode;
        yylval.opcode = tokentab2[i].opcode;
        if (in_parse_field && tokentab2[i].token == ARROW)
        if (in_parse_field && tokentab2[i].token == ARROW)
          last_was_structop = 1;
          last_was_structop = 1;
        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.
         If we're parsing for field name completion, and the previous
         If we're parsing for field name completion, and the previous
         token allows such completion, return a COMPLETE token.
         token allows such completion, return a COMPLETE token.
         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 if (saw_name_at_eof)
      else if (saw_name_at_eof)
        {
        {
          saw_name_at_eof = 0;
          saw_name_at_eof = 0;
          return COMPLETE;
          return COMPLETE;
        }
        }
      else if (saw_structop)
      else if (saw_structop)
        return COMPLETE;
        return COMPLETE;
      else
      else
        return 0;
        return 0;
 
 
    case ' ':
    case ' ':
    case '\t':
    case '\t':
    case '\n':
    case '\n':
      lexptr++;
      lexptr++;
      goto retry;
      goto retry;
 
 
    case '[':
    case '[':
    case '(':
    case '(':
      paren_depth++;
      paren_depth++;
      lexptr++;
      lexptr++;
      return c;
      return c;
 
 
    case ']':
    case ']':
    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')
        {
        {
          if (in_parse_field)
          if (in_parse_field)
            last_was_structop = 1;
            last_was_structop = 1;
          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 '}':
    symbol:
    symbol:
      lexptr++;
      lexptr++;
      return c;
      return c;
 
 
    case 'L':
    case 'L':
    case 'u':
    case 'u':
    case 'U':
    case 'U':
      if (tokstart[1] != '"' && tokstart[1] != '\'')
      if (tokstart[1] != '"' && tokstart[1] != '\'')
        break;
        break;
      /* Fall through.  */
      /* Fall through.  */
    case '\'':
    case '\'':
    case '"':
    case '"':
      {
      {
        int host_len;
        int host_len;
        int result = parse_string_or_char (tokstart, &lexptr, &yylval.tsval,
        int result = parse_string_or_char (tokstart, &lexptr, &yylval.tsval,
                                           &host_len);
                                           &host_len);
        if (result == CHAR)
        if (result == CHAR)
          {
          {
            if (host_len == 0)
            if (host_len == 0)
              error ("Empty character constant.");
              error ("Empty character constant.");
            else if (host_len > 2 && c == '\'')
            else if (host_len > 2 && c == '\'')
              {
              {
                ++tokstart;
                ++tokstart;
                namelen = lexptr - tokstart - 1;
                namelen = lexptr - tokstart - 1;
                goto tryname;
                goto tryname;
              }
              }
            else if (host_len > 1)
            else if (host_len > 1)
              error ("Invalid character constant.");
              error ("Invalid character constant.");
          }
          }
        return result;
        return result;
      }
      }
    }
    }
 
 
  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 == '<')
        {
        {
          if (! is_cast_operator (tokstart, namelen))
          if (! is_cast_operator (tokstart, namelen))
            {
            {
              /* 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;
    }
    }
 
 
  /* For the same reason (breakpoint conditions), "thread N"
  /* For the same reason (breakpoint conditions), "thread N"
     terminates the expression.  "thread" could be an identifier, but
     terminates the expression.  "thread" could be an identifier, but
     an identifier is never followed by a number without intervening
     an identifier is never followed by a number without intervening
     punctuation.  "task" is similar.  Handle abbreviations of these,
     punctuation.  "task" is similar.  Handle abbreviations of these,
     similarly to breakpoint.c:find_condition_and_thread.  */
     similarly to breakpoint.c:find_condition_and_thread.  */
  if (namelen >= 1
  if (namelen >= 1
      && (strncmp (tokstart, "thread", namelen) == 0
      && (strncmp (tokstart, "thread", namelen) == 0
          || strncmp (tokstart, "task", namelen) == 0)
          || strncmp (tokstart, "task", namelen) == 0)
      && (tokstart[namelen] == ' ' || tokstart[namelen] == '\t')
      && (tokstart[namelen] == ' ' || tokstart[namelen] == '\t')
      && ! scanning_macro_expansion ())
      && ! scanning_macro_expansion ())
    {
    {
      char *p = tokstart + namelen + 1;
      char *p = tokstart + namelen + 1;
      while (*p == ' ' || *p == '\t')
      while (*p == ' ' || *p == '\t')
        p++;
        p++;
      if (*p >= '0' && *p <= '9')
      if (*p >= '0' && *p <= '9')
        return 0;
        return 0;
    }
    }
 
 
  lexptr += namelen;
  lexptr += namelen;
 
 
  tryname:
  tryname:
 
 
  yylval.sval.ptr = tokstart;
  yylval.sval.ptr = tokstart;
  yylval.sval.length = namelen;
  yylval.sval.length = namelen;
 
 
  /* Catch specific keywords.  */
  /* Catch specific keywords.  */
  copy = copy_name (yylval.sval);
  copy = copy_name (yylval.sval);
  for (i = 0; i < sizeof ident_tokens / sizeof ident_tokens[0]; i++)
  for (i = 0; i < sizeof ident_tokens / sizeof ident_tokens[0]; i++)
    if (strcmp (copy, ident_tokens[i].operator) == 0)
    if (strcmp (copy, ident_tokens[i].operator) == 0)
      {
      {
        if (ident_tokens[i].cxx_only
        if (ident_tokens[i].cxx_only
            && parse_language->la_language != language_cplus)
            && parse_language->la_language != language_cplus)
          break;
          break;
 
 
        /* It is ok to always set this, even though we don't always
        /* It is ok to always set this, even though we don't always
           strictly need to.  */
           strictly need to.  */
        yylval.opcode = ident_tokens[i].opcode;
        yylval.opcode = ident_tokens[i].opcode;
        return ident_tokens[i].token;
        return ident_tokens[i].token;
      }
      }
 
 
  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.  */
  {
  {
    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 (copy, expression_context_block,
    sym = lookup_symbol (copy, expression_context_block,
                         VAR_DOMAIN,
                         VAR_DOMAIN,
                         parse_language->la_language == language_cplus
                         parse_language->la_language == language_cplus
                         ? &is_a_field_of_this : (int *) NULL);
                         ? &is_a_field_of_this : (int *) 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 (copy);
        symtab = lookup_symtab (copy);
 
 
        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 (parse_language,
      = language_lookup_primitive_type_by_name (parse_language,
                                                parse_gdbarch, copy);
                                                parse_gdbarch, copy);
    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;
    if (in_parse_field && *lexptr == '\0')
    if (in_parse_field && *lexptr == '\0')
      saw_name_at_eof = 1;
      saw_name_at_eof = 1;
    return NAME;
    return NAME;
  }
  }
}
}
 
 
int
int
c_parse (void)
c_parse (void)
{
{
  int result;
  int result;
  struct cleanup *back_to = make_cleanup (free_current_contents,
  struct cleanup *back_to = make_cleanup (free_current_contents,
                                          &expression_macro_scope);
                                          &expression_macro_scope);
 
 
  /* Set up the scope for macro expansion.  */
  /* Set up the scope for macro expansion.  */
  expression_macro_scope = NULL;
  expression_macro_scope = NULL;
 
 
  if (expression_context_block)
  if (expression_context_block)
    expression_macro_scope
    expression_macro_scope
      = sal_macro_scope (find_pc_line (expression_context_pc, 0));
      = sal_macro_scope (find_pc_line (expression_context_pc, 0));
  else
  else
    expression_macro_scope = default_macro_scope ();
    expression_macro_scope = default_macro_scope ();
  if (! expression_macro_scope)
  if (! expression_macro_scope)
    expression_macro_scope = user_macro_scope ();
    expression_macro_scope = user_macro_scope ();
 
 
  /* Initialize macro expansion code.  */
  /* Initialize macro expansion code.  */
  obstack_init (&expansion_obstack);
  obstack_init (&expansion_obstack);
  gdb_assert (! macro_original_text);
  gdb_assert (! macro_original_text);
  make_cleanup (scan_macro_cleanup, 0);
  make_cleanup (scan_macro_cleanup, 0);
 
 
  make_cleanup_restore_integer (&yydebug);
  make_cleanup_restore_integer (&yydebug);
  yydebug = parser_debug;
  yydebug = parser_debug;
 
 
  /* Initialize some state used by the lexer.  */
  /* Initialize some state used by the lexer.  */
  last_was_structop = 0;
  last_was_structop = 0;
  saw_name_at_eof = 0;
  saw_name_at_eof = 0;
 
 
  result = yyparse ();
  result = yyparse ();
  do_cleanups (back_to);
  do_cleanups (back_to);
  return result;
  return result;
}
}
 
 
 
 
void
void
yyerror (char *msg)
yyerror (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.