gdb/jv-exp.c - gdb

Global variables defined

Data types defined

Functions defined

Macros defined

Source code

  1. /* A Bison parser, made by GNU Bison 2.7.  */

  2. /* Bison implementation for Yacc-like parsers in C

  3.       Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.

  4.    This program is free software: you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation, either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. /* As a special exception, you may create a larger work that contains
  15.    part or all of the Bison parser skeleton and distribute that work
  16.    under terms of your choice, so long as that work isn't itself a
  17.    parser generator using the skeleton or a modified version thereof
  18.    as a parser skeleton.  Alternatively, if you modify or redistribute
  19.    the parser skeleton itself, you may (at your option) remove this
  20.    special exception, which will cause the skeleton and the resulting
  21.    Bison output files to be licensed under the GNU General Public
  22.    License without this special exception.

  23.    This special exception was added by the Free Software Foundation in
  24.    version 2.2 of Bison.  */

  25. /* C LALR(1) parser skeleton written by Richard Stallman, by
  26.    simplifying the original so-called "semantic" parser.  */

  27. /* All symbols defined below should begin with yy or YY, to avoid
  28.    infringing on user name space.  This should be done even for local
  29.    variables, as they might otherwise be expanded by user macros.
  30.    There are some unavoidable exceptions within include files to
  31.    define necessary library symbols; they are noted "INFRINGES ON
  32.    USER NAME SPACE" below.  */

  33. /* Identify Bison output.  */
  34. #define YYBISON 1

  35. /* Bison version.  */
  36. #define YYBISON_VERSION "2.7"

  37. /* Skeleton name.  */
  38. #define YYSKELETON_NAME "yacc.c"

  39. /* Pure parsers.  */
  40. #define YYPURE 0

  41. /* Push parsers.  */
  42. #define YYPUSH 0

  43. /* Pull parsers.  */
  44. #define YYPULL 1




  45. /* Copy the first part of user declarations.  */
  46. /* Line 371 of yacc.c  */
  47. #line 36 "jv-exp.y"


  48. #include "defs.h"
  49. #include <ctype.h>
  50. #include "expression.h"
  51. #include "value.h"
  52. #include "parser-defs.h"
  53. #include "language.h"
  54. #include "jv-lang.h"
  55. #include "bfd.h" /* Required by objfiles.h.  */
  56. #include "symfile.h" /* Required by objfiles.h.  */
  57. #include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
  58. #include "block.h"
  59. #include "completer.h"

  60. #define parse_type(ps) builtin_type (parse_gdbarch (ps))
  61. #define parse_java_type(ps) builtin_java_type (parse_gdbarch (ps))

  62. /* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
  63.    as well as gratuitiously global symbol names, so we can have multiple
  64.    yacc generated parsers in gdb.  Note that these are only the variables
  65.    produced by yacc.  If other parser generators (bison, byacc, etc) produce
  66.    additional global names that conflict at link time, then those parser
  67.    generators need to be fixed instead of adding those names to this list.  */

  68. #define        yymaxdepth java_maxdepth
  69. #define        yyparse        java_parse_internal
  70. #define        yylex        java_lex
  71. #define        yyerror        java_error
  72. #define        yylval        java_lval
  73. #define        yychar        java_char
  74. #define        yydebug        java_debug
  75. #define        yypact        java_pact
  76. #define        yyr1        java_r1
  77. #define        yyr2        java_r2
  78. #define        yydef        java_def
  79. #define        yychk        java_chk
  80. #define        yypgo        java_pgo
  81. #define        yyact        java_act
  82. #define        yyexca        java_exca
  83. #define yyerrflag java_errflag
  84. #define yynerrs        java_nerrs
  85. #define        yyps        java_ps
  86. #define        yypv        java_pv
  87. #define        yys        java_s
  88. #define        yy_yys        java_yys
  89. #define        yystate        java_state
  90. #define        yytmp        java_tmp
  91. #define        yyv        java_v
  92. #define        yy_yyv        java_yyv
  93. #define        yyval        java_val
  94. #define        yylloc        java_lloc
  95. #define yyreds        java_reds                /* With YYDEBUG defined */
  96. #define yytoks        java_toks                /* With YYDEBUG defined */
  97. #define yyname        java_name                /* With YYDEBUG defined */
  98. #define yyrule        java_rule                /* With YYDEBUG defined */
  99. #define yylhs        java_yylhs
  100. #define yylen        java_yylen
  101. #define yydefred java_yydefred
  102. #define yydgoto        java_yydgoto
  103. #define yysindex java_yysindex
  104. #define yyrindex java_yyrindex
  105. #define yygindex java_yygindex
  106. #define yytable         java_yytable
  107. #define yycheck         java_yycheck
  108. #define yyss        java_yyss
  109. #define yysslim        java_yysslim
  110. #define yyssp        java_yyssp
  111. #define yystacksize java_yystacksize
  112. #define yyvs        java_yyvs
  113. #define yyvsp        java_yyvsp

  114. #ifndef YYDEBUG
  115. #define        YYDEBUG 1                /* Default to yydebug support */
  116. #endif

  117. #define YYFPRINTF parser_fprintf

  118. /* The state of the parser, used internally when we are parsing the
  119.    expression.  */

  120. static struct parser_state *pstate = NULL;

  121. int yyparse (void);

  122. static int yylex (void);

  123. void yyerror (char *);

  124. static struct type *java_type_from_name (struct stoken);
  125. static void push_expression_name (struct parser_state *, struct stoken);
  126. static void push_fieldnames (struct parser_state *, struct stoken);

  127. static struct expression *copy_exp (struct expression *, int);
  128. static void insert_exp (struct parser_state *, int, struct expression *);


  129. /* Line 371 of yacc.c  */
  130. #line 166 "jv-exp.c"

  131. # ifndef YY_NULL
  132. #  if defined __cplusplus && 201103L <= __cplusplus
  133. #   define YY_NULL nullptr
  134. #  else
  135. #   define YY_NULL 0
  136. #  endif
  137. # endif

  138. /* Enabling verbose error messages.  */
  139. #ifdef YYERROR_VERBOSE
  140. # undef YYERROR_VERBOSE
  141. # define YYERROR_VERBOSE 1
  142. #else
  143. # define YYERROR_VERBOSE 0
  144. #endif


  145. /* Enabling traces.  */
  146. #ifndef YYDEBUG
  147. # define YYDEBUG 0
  148. #endif
  149. #if YYDEBUG
  150. extern int yydebug;
  151. #endif

  152. /* Tokens.  */
  153. #ifndef YYTOKENTYPE
  154. # define YYTOKENTYPE
  155.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  156.       know about them.  */
  157.    enum yytokentype {
  158.      INTEGER_LITERAL = 258,
  159.      FLOATING_POINT_LITERAL = 259,
  160.      IDENTIFIER = 260,
  161.      STRING_LITERAL = 261,
  162.      BOOLEAN_LITERAL = 262,
  163.      TYPENAME = 263,
  164.      NAME_OR_INT = 264,
  165.      ERROR = 265,
  166.      LONG = 266,
  167.      SHORT = 267,
  168.      BYTE = 268,
  169.      INT = 269,
  170.      CHAR = 270,
  171.      BOOLEAN = 271,
  172.      DOUBLE = 272,
  173.      FLOAT = 273,
  174.      VARIABLE = 274,
  175.      ASSIGN_MODIFY = 275,
  176.      SUPER = 276,
  177.      NEW = 277,
  178.      OROR = 278,
  179.      ANDAND = 279,
  180.      NOTEQUAL = 280,
  181.      EQUAL = 281,
  182.      GEQ = 282,
  183.      LEQ = 283,
  184.      RSH = 284,
  185.      LSH = 285,
  186.      DECREMENT = 286,
  187.      INCREMENT = 287
  188.    };
  189. #endif
  190. /* Tokens.  */
  191. #define INTEGER_LITERAL 258
  192. #define FLOATING_POINT_LITERAL 259
  193. #define IDENTIFIER 260
  194. #define STRING_LITERAL 261
  195. #define BOOLEAN_LITERAL 262
  196. #define TYPENAME 263
  197. #define NAME_OR_INT 264
  198. #define ERROR 265
  199. #define LONG 266
  200. #define SHORT 267
  201. #define BYTE 268
  202. #define INT 269
  203. #define CHAR 270
  204. #define BOOLEAN 271
  205. #define DOUBLE 272
  206. #define FLOAT 273
  207. #define VARIABLE 274
  208. #define ASSIGN_MODIFY 275
  209. #define SUPER 276
  210. #define NEW 277
  211. #define OROR 278
  212. #define ANDAND 279
  213. #define NOTEQUAL 280
  214. #define EQUAL 281
  215. #define GEQ 282
  216. #define LEQ 283
  217. #define RSH 284
  218. #define LSH 285
  219. #define DECREMENT 286
  220. #define INCREMENT 287



  221. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  222. typedef union YYSTYPE
  223. {
  224. /* Line 387 of yacc.c  */
  225. #line 139 "jv-exp.y"

  226.     LONGEST lval;
  227.     struct {
  228.       LONGEST val;
  229.       struct type *type;
  230.     } typed_val_int;
  231.     struct {
  232.       DOUBLEST dval;
  233.       struct type *type;
  234.     } typed_val_float;
  235.     struct symbol *sym;
  236.     struct type *tval;
  237.     struct stoken sval;
  238.     struct ttype tsym;
  239.     struct symtoken ssym;
  240.     struct block *bval;
  241.     enum exp_opcode opcode;
  242.     struct internalvar *ivar;
  243.     int *ivec;


  244. /* Line 387 of yacc.c  */
  245. #line 292 "jv-exp.c"
  246. } YYSTYPE;
  247. # define YYSTYPE_IS_TRIVIAL 1
  248. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  249. # define YYSTYPE_IS_DECLARED 1
  250. #endif

  251. extern YYSTYPE yylval;

  252. #ifdef YYPARSE_PARAM
  253. #if defined __STDC__ || defined __cplusplus
  254. int yyparse (void *YYPARSE_PARAM);
  255. #else
  256. int yyparse ();
  257. #endif
  258. #else /* ! YYPARSE_PARAM */
  259. #if defined __STDC__ || defined __cplusplus
  260. int yyparse (void);
  261. #else
  262. int yyparse ();
  263. #endif
  264. #endif /* ! YYPARSE_PARAM */



  265. /* Copy the second part of user declarations.  */
  266. /* Line 390 of yacc.c  */
  267. #line 160 "jv-exp.y"

  268. /* YYSTYPE gets defined by %union */
  269. static int parse_number (struct parser_state *, const char *, int,
  270.                          int, YYSTYPE *);

  271. /* Line 390 of yacc.c  */
  272. #line 326 "jv-exp.c"

  273. #ifdef short
  274. # undef short
  275. #endif

  276. #ifdef YYTYPE_UINT8
  277. typedef YYTYPE_UINT8 yytype_uint8;
  278. #else
  279. typedef unsigned char yytype_uint8;
  280. #endif

  281. #ifdef YYTYPE_INT8
  282. typedef YYTYPE_INT8 yytype_int8;
  283. #elif (defined __STDC__ || defined __C99__FUNC__ \
  284.      || defined __cplusplus || defined _MSC_VER)
  285. typedef signed char yytype_int8;
  286. #else
  287. typedef short int yytype_int8;
  288. #endif

  289. #ifdef YYTYPE_UINT16
  290. typedef YYTYPE_UINT16 yytype_uint16;
  291. #else
  292. typedef unsigned short int yytype_uint16;
  293. #endif

  294. #ifdef YYTYPE_INT16
  295. typedef YYTYPE_INT16 yytype_int16;
  296. #else
  297. typedef short int yytype_int16;
  298. #endif

  299. #ifndef YYSIZE_T
  300. # ifdef __SIZE_TYPE__
  301. #  define YYSIZE_T __SIZE_TYPE__
  302. # elif defined size_t
  303. #  define YYSIZE_T size_t
  304. # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
  305.      || defined __cplusplus || defined _MSC_VER)
  306. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  307. #  define YYSIZE_T size_t
  308. # else
  309. #  define YYSIZE_T unsigned int
  310. # endif
  311. #endif

  312. #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)

  313. #ifndef YY_
  314. # if defined YYENABLE_NLS && YYENABLE_NLS
  315. #  if ENABLE_NLS
  316. #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
  317. #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
  318. #  endif
  319. # endif
  320. # ifndef YY_
  321. #  define YY_(Msgid) Msgid
  322. # endif
  323. #endif

  324. /* Suppress unused-variable warnings by "using" E.  */
  325. #if ! defined lint || defined __GNUC__
  326. # define YYUSE(E) ((void) (E))
  327. #else
  328. # define YYUSE(E) /* empty */
  329. #endif

  330. /* Identity function, used to suppress warnings about constant conditions.  */
  331. #ifndef lint
  332. # define YYID(N) (N)
  333. #else
  334. #if (defined __STDC__ || defined __C99__FUNC__ \
  335.      || defined __cplusplus || defined _MSC_VER)
  336. static int
  337. YYID (int yyi)
  338. #else
  339. static int
  340. YYID (yyi)
  341.     int yyi;
  342. #endif
  343. {
  344.   return yyi;
  345. }
  346. #endif

  347. #if ! defined yyoverflow || YYERROR_VERBOSE

  348. /* The parser invokes alloca or xmalloc; define the necessary symbols.  */

  349. # ifdef YYSTACK_USE_ALLOCA
  350. #  if YYSTACK_USE_ALLOCA
  351. #   ifdef __GNUC__
  352. #    define YYSTACK_ALLOC __builtin_alloca
  353. #   elif defined __BUILTIN_VA_ARG_INCR
  354. #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
  355. #   elif defined _AIX
  356. #    define YYSTACK_ALLOC __alloca
  357. #   elif defined _MSC_VER
  358. #    define alloca _alloca
  359. #   else
  360. #    define YYSTACK_ALLOC alloca
  361. #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  362.      || defined __cplusplus || defined _MSC_VER)
  363. #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  364.       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
  365. #     ifndef EXIT_SUCCESS
  366. #      define EXIT_SUCCESS 0
  367. #     endif
  368. #    endif
  369. #   endif
  370. #  endif
  371. # endif

  372. # ifdef YYSTACK_ALLOC
  373.    /* Pacify GCC's `empty if-body' warning.  */
  374. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
  375. #  ifndef YYSTACK_ALLOC_MAXIMUM
  376.     /* The OS might guarantee only one guard page at the bottom of the stack,
  377.        and a page size can be as small as 4096 bytes.  So we cannot safely
  378.        invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
  379.        to allow for a few compiler-allocated temporary stack slots.  */
  380. #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
  381. #  endif
  382. # else
  383. #  define YYSTACK_ALLOC YYMALLOC
  384. #  define YYSTACK_FREE YYFREE
  385. #  ifndef YYSTACK_ALLOC_MAXIMUM
  386. #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
  387. #  endif
  388. #  if (defined __cplusplus && ! defined EXIT_SUCCESS \
  389.        && ! ((defined YYMALLOC || defined xmalloc) \
  390.              && (defined YYFREE || defined xfree)))
  391. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  392. #   ifndef EXIT_SUCCESS
  393. #    define EXIT_SUCCESS 0
  394. #   endif
  395. #  endif
  396. #  ifndef YYMALLOC
  397. #   define YYMALLOC xmalloc
  398. #   if ! defined xmalloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  399.      || defined __cplusplus || defined _MSC_VER)
  400. void *xmalloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
  401. #   endif
  402. #  endif
  403. #  ifndef YYFREE
  404. #   define YYFREE xfree
  405. #   if ! defined xfree && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  406.      || defined __cplusplus || defined _MSC_VER)
  407. void xfree (void *); /* INFRINGES ON USER NAME SPACE */
  408. #   endif
  409. #  endif
  410. # endif
  411. #endif /* ! defined yyoverflow || YYERROR_VERBOSE */


  412. #if (! defined yyoverflow \
  413.      && (! defined __cplusplus \
  414.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

  415. /* A type that is properly aligned for any stack member.  */
  416. union yyalloc
  417. {
  418.   yytype_int16 yyss_alloc;
  419.   YYSTYPE yyvs_alloc;
  420. };

  421. /* The size of the maximum gap between one aligned stack and the next.  */
  422. # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)

  423. /* The size of an array large to enough to hold all stacks, each with
  424.    N elements.  */
  425. # define YYSTACK_BYTES(N) \
  426.      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
  427.       + YYSTACK_GAP_MAXIMUM)

  428. # define YYCOPY_NEEDED 1

  429. /* Relocate STACK from its old location to the new one.  The
  430.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  431.    elements in the stack, and YYPTR gives the new location of the
  432.    stack.  Advance YYPTR to a properly aligned location for the next
  433.    stack.  */
  434. # define YYSTACK_RELOCATE(Stack_alloc, Stack)                                \
  435.     do                                                                        \
  436.       {                                                                        \
  437.         YYSIZE_T yynewbytes;                                                \
  438.         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                        \
  439.         Stack = &yyptr->Stack_alloc;                                        \
  440.         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
  441.         yyptr += yynewbytes / sizeof (*yyptr);                                \
  442.       }                                                                        \
  443.     while (YYID (0))

  444. #endif

  445. #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
  446. /* Copy COUNT objects from SRC to DST.  The source and destination do
  447.    not overlap.  */
  448. # ifndef YYCOPY
  449. #  if defined __GNUC__ && 1 < __GNUC__
  450. #   define YYCOPY(Dst, Src, Count) \
  451.       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
  452. #  else
  453. #   define YYCOPY(Dst, Src, Count)              \
  454.       do                                        \
  455.         {                                       \
  456.           YYSIZE_T yyi;                         \
  457.           for (yyi = 0; yyi < (Count); yyi++)   \
  458.             (Dst)[yyi] = (Src)[yyi];            \
  459.         }                                       \
  460.       while (YYID (0))
  461. #  endif
  462. # endif
  463. #endif /* !YYCOPY_NEEDED */

  464. /* YYFINAL -- State number of the termination state.  */
  465. #define YYFINAL  98
  466. /* YYLAST -- Last index in YYTABLE.  */
  467. #define YYLAST   373

  468. /* YYNTOKENS -- Number of terminals.  */
  469. #define YYNTOKENS  56
  470. /* YYNNTS -- Number of nonterminals.  */
  471. #define YYNNTS  58
  472. /* YYNRULES -- Number of rules.  */
  473. #define YYNRULES  132
  474. /* YYNRULES -- Number of states.  */
  475. #define YYNSTATES  209

  476. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  477. #define YYUNDEFTOK  2
  478. #define YYMAXUTOK   287

  479. #define YYTRANSLATE(YYX)                                                \
  480.   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)

  481. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  482. static const yytype_uint8 yytranslate[] =
  483. {
  484.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  485.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  486.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  487.        2,     2,     2,    54,     2,     2,     2,    43,    30,     2,
  488.       48,    49,    41,    39,    23,    40,    46,    42,     2,     2,
  489.        2,     2,     2,     2,     2,     2,     2,     2,    55,     2,
  490.       33,    24,    34,    25,     2,     2,     2,     2,     2,     2,
  491.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  492.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  493.        2,    47,     2,    52,    29,     2,     2,     2,     2,     2,
  494.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  495.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  496.        2,     2,     2,    50,    28,    51,    53,     2,     2,     2,
  497.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  498.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  499.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  500.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  501.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  502.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  503.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  504.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  505.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  506.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  507.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  508.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  509.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  510.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  511.       15,    16,    17,    18,    19,    20,    21,    22,    26,    27,
  512.       31,    32,    35,    36,    37,    38,    44,    45
  513. };

  514. #if YYDEBUG
  515. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  516.    YYRHS.  */
  517. static const yytype_uint16 yyprhs[] =
  518. {
  519.        0,     0,     3,     5,     7,     9,    11,    13,    15,    17,
  520.       19,    21,    23,    25,    27,    29,    31,    33,    35,    37,
  521.       39,    41,    43,    45,    47,    49,    51,    54,    57,    59,
  522.       61,    63,    65,    67,    69,    73,    75,    79,    81,    83,
  523.       85,    89,    91,    93,    95,    97,   101,   103,   105,   111,
  524.      113,   117,   118,   120,   125,   130,   132,   135,   139,   142,
  525.      146,   148,   149,   153,   157,   160,   161,   166,   173,   180,
  526.      185,   190,   195,   197,   199,   201,   203,   205,   208,   211,
  527.      213,   215,   218,   221,   224,   226,   229,   232,   234,   237,
  528.      240,   242,   248,   253,   259,   261,   265,   269,   273,   275,
  529.      279,   283,   285,   289,   293,   295,   299,   303,   307,   311,
  530.      313,   317,   321,   323,   327,   329,   333,   335,   339,   341,
  531.      345,   347,   351,   353,   359,   361,   363,   367,   371,   373,
  532.      375,   377,   379
  533. };

  534. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  535. static const yytype_int8 yyrhs[] =
  536. {
  537.       57,     0,    -1,    73,    -1,    58,    -1,    59,    -1,    62,
  538.       -1,    68,    -1,     6,    -1,     3,    -1,     9,    -1,     4,
  539.       -1,     7,    -1,    60,    -1,    63,    -1,    16,    -1,    64,
  540.       -1,    65,    -1,    13,    -1,    12,    -1,    14,    -1,    11,
  541.       -1,    15,    -1,    18,    -1,    17,    -1,    69,    -1,    66,
  542.       -1,    62,    84,    -1,    69,    84,    -1,     5,    -1,    72,
  543.       -1,    71,    -1,    72,    -1,     5,    -1,     9,    -1,    69,
  544.       46,    71,    -1,   113,    -1,    73,    23,   113,    -1,    75,
  545.       -1,    81,    -1,    61,    -1,    48,   113,    49,    -1,    78,
  546.       -1,    86,    -1,    88,    -1,    90,    -1,    76,    79,    77,
  547.       -1,    50,    -1,    51,    -1,    22,    67,    48,    80,    49,
  548.       -1,   113,    -1,    79,    23,   113,    -1,    -1,    79,    -1,
  549.       22,    62,    82,    85,    -1,    22,    66,    82,    85,    -1,
  550.       83,    -1,    82,    83,    -1,    47,   113,    52,    -1,    47,
  551.       52,    -1,    84,    47,    52,    -1,    84,    -1,    -1,    74,
  552.       46,    71,    -1,    19,    46,    71,    -1,    69,    48,    -1,
  553.       -1,    87,    89,    80,    49,    -1,    74,    46,    71,    48,
  554.       80,    49,    -1,    21,    46,    71,    48,    80,    49,    -1,
  555.       69,    47,   113,    52,    -1,    19,    47,   113,    52,    -1,
  556.       75,    47,   113,    52,    -1,    74,    -1,    69,    -1,    19,
  557.       -1,    92,    -1,    93,    -1,    91,    45,    -1,    91,    44,
  558.       -1,    95,    -1,    96,    -1,    39,    94,    -1,    40,    94,
  559.       -1,    41,    94,    -1,    97,    -1,    45,    94,    -1,    44,
  560.       94,    -1,    91,    -1,    53,    94,    -1,    54,    94,    -1,
  561.       98,    -1,    48,    62,    85,    49,    94,    -1,    48,   113,
  562.       49,    97,    -1,    48,    69,    84,    49,    97,    -1,    94,
  563.       -1,    99,    41,    94,    -1,    99,    42,    94,    -1,    99,
  564.       43,    94,    -1,    99,    -1,   100,    39,    99,    -1,   100,
  565.       40,    99,    -1,   100,    -1,   101,    38,   100,    -1,   101,
  566.       37,   100,    -1,   101,    -1,   102,    33,   101,    -1,   102,
  567.       34,   101,    -1,   102,    36,   101,    -1,   102,    35,   101,
  568.       -1,   102,    -1,   103,    32,   102,    -1,   103,    31,   102,
  569.       -1,   103,    -1,   104,    30,   103,    -1,   104,    -1,   105,
  570.       29,   104,    -1,   105,    -1,   106,    28,   105,    -1,   106,
  571.       -1,   107,    27,   106,    -1,   107,    -1,   108,    26,   107,
  572.       -1,   108,    -1,   108,    25,   113,    55,   109,    -1,   109,
  573.       -1,   111,    -1,   112,    24,   109,    -1,   112,    20,   109,
  574.       -1,    70,    -1,    19,    -1,    86,    -1,    90,    -1,   110,
  575.       -1
  576. };

  577. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  578. static const yytype_uint16 yyrline[] =
  579. {
  580.        0,   217,   217,   218,   221,   230,   231,   235,   244,   249,
  581.      258,   263,   269,   280,   281,   286,   287,   291,   293,   295,
  582.      297,   299,   304,   306,   318,   323,   327,   329,   334,   335,
  583.      339,   340,   344,   345,   349,   375,   376,   381,   382,   386,
  584.      387,   388,   389,   390,   391,   392,   400,   405,   410,   416,
  585.      418,   424,   425,   429,   432,   438,   439,   443,   447,   449,
  586.      454,   456,   460,   462,   468,   474,   473,   479,   481,   486,
  587.      506,   508,   513,   514,   516,   518,   519,   523,   528,   533,
  588.      534,   535,   536,   538,   541,   545,   550,   555,   556,   558,
  589.      560,   564,   568,   592,   602,   603,   605,   607,   612,   613,
  590.      615,   620,   621,   623,   629,   630,   632,   634,   636,   642,
  591.      643,   645,   650,   651,   656,   657,   661,   662,   667,   668,
  592.      673,   674,   679,   680,   685,   686,   690,   692,   699,   701,
  593.      703,   704,   709
  594. };
  595. #endif

  596. #if YYDEBUG || YYERROR_VERBOSE || 0
  597. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  598.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  599. static const char *const yytname[] =
  600. {
  601.   "$end", "error", "$undefined", "INTEGER_LITERAL",
  602.   "FLOATING_POINT_LITERAL", "IDENTIFIER", "STRING_LITERAL",
  603.   "BOOLEAN_LITERAL", "TYPENAME", "NAME_OR_INT", "ERROR", "LONG", "SHORT",
  604.   "BYTE", "INT", "CHAR", "BOOLEAN", "DOUBLE", "FLOAT", "VARIABLE",
  605.   "ASSIGN_MODIFY", "SUPER", "NEW", "','", "'='", "'?'", "OROR", "ANDAND",
  606.   "'|'", "'^'", "'&'", "NOTEQUAL", "EQUAL", "'<'", "'>'", "GEQ", "LEQ",
  607.   "RSH", "LSH", "'+'", "'-'", "'*'", "'/'", "'%'", "DECREMENT",
  608.   "INCREMENT", "'.'", "'['", "'('", "')'", "'{'", "'}'", "']'", "'~'",
  609.   "'!'", "':'", "$accept", "start", "type_exp", "PrimitiveOrArrayType",
  610.   "StringLiteral", "Literal", "PrimitiveType", "NumericType",
  611.   "IntegralType", "FloatingPointType", "ClassOrInterfaceType", "ClassType",
  612.   "ArrayType", "Name", "ForcedName", "SimpleName", "QualifiedName", "exp1",
  613.   "Primary", "PrimaryNoNewArray", "lcurly", "rcurly",
  614.   "ClassInstanceCreationExpression", "ArgumentList", "ArgumentList_opt",
  615.   "ArrayCreationExpression", "DimExprs", "DimExpr", "Dims", "Dims_opt",
  616.   "FieldAccess", "FuncStart", "MethodInvocation", "$@1", "ArrayAccess",
  617.   "PostfixExpression", "PostIncrementExpression",
  618.   "PostDecrementExpression", "UnaryExpression", "PreIncrementExpression",
  619.   "PreDecrementExpression", "UnaryExpressionNotPlusMinus",
  620.   "CastExpression", "MultiplicativeExpression", "AdditiveExpression",
  621.   "ShiftExpression", "RelationalExpression", "EqualityExpression",
  622.   "AndExpression", "ExclusiveOrExpression", "InclusiveOrExpression",
  623.   "ConditionalAndExpression", "ConditionalOrExpression",
  624.   "ConditionalExpression", "AssignmentExpression", "Assignment",
  625.   "LeftHandSide", "Expression", YY_NULL
  626. };
  627. #endif

  628. # ifdef YYPRINT
  629. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  630.    token YYLEX-NUM.  */
  631. static const yytype_uint16 yytoknum[] =
  632. {
  633.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  634.      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
  635.      275,   276,   277,    44,    61,    63,   278,   279,   124,    94,
  636.       38,   280,   281,    60,    62,   282,   283,   284,   285,    43,
  637.       45,    42,    47,    37,   286,   287,    46,    91,    40,    41,
  638.      123,   125,    93,   126,    33,    58
  639. };
  640. # endif

  641. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  642. static const yytype_uint8 yyr1[] =
  643. {
  644.        0,    56,    57,    57,    58,    59,    59,    60,    61,    61,
  645.       61,    61,    61,    62,    62,    63,    63,    64,    64,    64,
  646.       64,    64,    65,    65,    66,    67,    68,    68,    69,    69,
  647.       70,    70,    71,    71,    72,    73,    73,    74,    74,    75,
  648.       75,    75,    75,    75,    75,    75,    76,    77,    78,    79,
  649.       79,    80,    80,    81,    81,    82,    82,    83,    84,    84,
  650.       85,    85,    86,    86,    87,    89,    88,    88,    88,    90,
  651.       90,    90,    91,    91,    91,    91,    91,    92,    93,    94,
  652.       94,    94,    94,    94,    94,    95,    96,    97,    97,    97,
  653.       97,    98,    98,    98,    99,    99,    99,    99,   100,   100,
  654.      100,   101,   101,   101,   102,   102,   102,   102,   102,   103,
  655.      103,   103,   104,   104,   105,   105,   106,   106,   107,   107,
  656.      108,   108,   109,   109,   110,   110,   111,   111,   112,   112,
  657.      112,   112,   113
  658. };

  659. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  660. static const yytype_uint8 yyr2[] =
  661. {
  662.        0,     2,     1,     1,     1,     1,     1,     1,     1,     1,
  663.        1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  664.        1,     1,     1,     1,     1,     1,     2,     2,     1,     1,
  665.        1,     1,     1,     1,     3,     1,     3,     1,     1,     1,
  666.        3,     1,     1,     1,     1,     3,     1,     1,     5,     1,
  667.        3,     0,     1,     4,     4,     1,     2,     3,     2,     3,
  668.        1,     0,     3,     3,     2,     0,     4,     6,     6,     4,
  669.        4,     4,     1,     1,     1,     1,     1,     2,     2,     1,
  670.        1,     2,     2,     2,     1,     2,     2,     1,     2,     2,
  671.        1,     5,     4,     5,     1,     3,     3,     3,     1,     3,
  672.        3,     1,     3,     3,     1,     3,     3,     3,     3,     1,
  673.        3,     3,     1,     3,     1,     3,     1,     3,     1,     3,
  674.        1,     3,     1,     5,     1,     1,     3,     3,     1,     1,
  675.        1,     1,     1
  676. };

  677. /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
  678.    Performed when YYTABLE doesn't specify something else to do.  Zero
  679.    means the default is an error.  */
  680. static const yytype_uint8 yydefact[] =
  681. {
  682.        0,     8,    10,    28,     7,    11,     9,    20,    18,    17,
  683.       19,    21,    14,    23,    22,    74,     0,     0,     0,     0,
  684.        0,     0,     0,     0,    46,     0,     0,     0,     3,     4,
  685.       12,    39,     5,    13,    15,    16,     6,    73,   128,    30,
  686.       29,     2,    72,    37,     0,    41,    38,    42,    65,    43,
  687.       44,    87,    75,    76,    94,    79,    80,    84,    90,    98,
  688.      101,   104,   109,   112,   114,   116,   118,   120,   122,   124,
  689.      132,   125,     0,    35,     0,     0,     0,    28,     0,    25,
  690.        0,    24,    29,     9,    74,    73,    42,    44,    81,    82,
  691.       83,    86,    85,    61,    73,     0,    88,    89,     1,     0,
  692.       26,     0,     0,    64,    27,     0,     0,     0,     0,    49,
  693.       51,    78,    77,     0,     0,     0,     0,     0,     0,     0,
  694.        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  695.        0,     0,     0,     0,    32,    33,    63,     0,     0,     0,
  696.       61,    55,    61,    51,     0,    60,     0,     0,    40,    58,
  697.        0,    34,     0,    36,    62,     0,     0,    47,    45,    52,
  698.        0,    95,    96,    97,    99,   100,   103,   102,   105,   106,
  699.      108,   107,   111,   110,   113,   115,   117,   119,     0,   121,
  700.      127,   126,    70,    51,     0,     0,    56,    53,    54,     0,
  701.        0,     0,    92,    59,    69,    51,    71,    50,    66,     0,
  702.        0,    57,    48,    91,    93,     0,   123,    68,    67
  703. };

  704. /* YYDEFGOTO[NTERM-NUM].  */
  705. static const yytype_int16 yydefgoto[] =
  706. {
  707.       -1,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  708.       79,    80,    36,    85,    38,    39,    82,    41,    42,    43,
  709.       44,   158,    45,   159,   160,    46,   140,   141,   145,   146,
  710.       86,    48,    49,   110,    87,    51,    52,    53,    54,    55,
  711.       56,    57,    58,    59,    60,    61,    62,    63,    64,    65,
  712.       66,    67,    68,    69,    70,    71,    72,   109
  713. };

  714. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  715.    STATE-NUM.  */
  716. #define YYPACT_NINF -145
  717. static const yytype_int16 yypact[] =
  718. {
  719.      215,  -145,  -145,    -5,  -145,  -145,     1,  -145,  -145,  -145,
  720.     -145,  -145,  -145,  -145,  -145,    -7,   -19,   279,    50,    50,
  721.       50,    50,    50,   215,  -145,    50,    50,    46,  -145,  -145,
  722.     -145,  -145,    -9,  -145,  -145,  -145,  -145,    87,  -145,  -145,
  723.       12,    44,     5,    16,   319,  -145,  -145,    28,  -145,  -145,
  724.       38,    29,  -145,  -145,  -145,  -145,  -145,  -145,  -145,    99,
  725.       53,    85,    52,    94,    66,    41,    71,    74,   122,  -145,
  726.     -145,  -145,    40,  -145,    26,   319,    26,  -145,    59,    59,
  727.       67,    82,  -145,  -145,   111,   107,  -145,  -145,  -145,  -145,
  728.     -145,  -145,  -145,    -9,    87,    68,  -145,  -145,  -145,    79,
  729.       91,    26,   267,  -145,    91,   319,    26,   319,   -18,  -145,
  730.      319,  -145,  -145,    50,    50,    50,    50,    50,    50,    50,
  731.       50,    50,    50,    50,    50,    50,    50,    50,    50,    50,
  732.      319,    50,    50,    50,  -145,  -145,  -145,   112,   126,   319,
  733.      128,  -145,   128,   319,   319,    91,   127,   -31,   193,  -145,
  734.      125,  -145,   129,  -145,   131,   130,   319,  -145,  -145,   157,
  735.      135,  -145,  -145,  -145,    99,    99,    53,    53,    85,    85,
  736.       85,    85,    52,    52,    94,    66,    41,    71,   132,    74,
  737.     -145,  -145,  -145,   319,   134,   267,  -145,  -145,  -145,   139,
  738.       50,   193,  -145,  -145,  -145,   319,  -145,  -145,  -145,    50,
  739.      141,  -145,  -145,  -145,  -145,   144,  -145,  -145,  -145
  740. };

  741. /* YYPGOTO[NTERM-NUM].  */
  742. static const yytype_int16 yypgoto[] =
  743. {
  744.     -145,  -145,  -145,  -145,  -145,  -145,    -3,  -145,  -145,  -145,
  745.     -145,  -145,  -145,    11,  -145,   -64,     0,  -145,  -145,  -145,
  746.     -145,  -145,  -145,   150,  -134,  -145,   124,  -116,   -29,   -99,
  747.        6,  -145,  -145,  -145,    22,  -145,  -145,  -145,    58,  -145,
  748.     -145,  -144,  -145,    43,    49,    -2,    45,    78,    81,    83,
  749.       77,    92,  -145,  -131,  -145,  -145,  -145,     7
  750. };

  751. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  752.    positive, shift that token.  If negative, reduce the rule which
  753.    number is the opposite.  If YYTABLE_NINF, syntax error.  */
  754. #define YYTABLE_NINF -132
  755. static const yytype_int16 yytable[] =
  756. {
  757.       40,   180,   181,   100,   192,   156,    47,    73,   104,   189,
  758.      136,    37,   138,  -129,    78,   -32,   150,  -129,   191,   -32,
  759.       93,   -33,    50,    40,   186,   -33,   186,    76,    81,    47,
  760.       95,   134,   -31,   157,    94,   135,   -31,   151,    99,    74,
  761.       75,   187,   154,   188,    40,    50,    98,   204,  -130,   200,
  762.       47,   106,  -130,     1,     2,    77,     4,     5,  -131,    83,
  763.      132,   205,  -131,   107,   133,   147,    50,   105,   206,    84,
  764.      127,    16,    17,   111,   112,    40,    88,    89,    90,    91,
  765.       92,    47,   137,    96,    97,   120,   121,   122,   123,    18,
  766.       19,    20,   116,   117,    21,    22,   126,    50,    23,   128,
  767.       24,   129,    40,    25,    26,    40,   139,    40,    47,   152,
  768.       40,    47,   153,    47,   155,   143,    47,   148,   168,   169,
  769.      170,   171,   118,   119,    50,   124,   125,    50,   101,    50,
  770.       40,   149,    50,   101,   102,   103,    47,   178,   150,    40,
  771.      113,   114,   115,    40,    40,    47,   184,   130,   131,    47,
  772.       47,   152,    50,   101,   144,   103,    40,    74,    75,   164,
  773.      165,    50,    47,   197,   182,    50,    50,   166,   167,   172,
  774.      173,   161,   162,   163,   183,   185,   190,   193,    50,   195,
  775.      156,   194,   196,    40,   198,    40,   201,   199,   202,    47,
  776.      207,    47,   184,   208,   108,    40,     1,     2,    77,     4,
  777.        5,    47,    83,   142,   174,    50,   177,    50,   175,     0,
  778.        0,   176,    84,     0,    16,    17,     0,    50,     1,     2,
  779.        3,     4,     5,   179,     6,     0,     7,     8,     9,    10,
  780.       11,    12,    13,    14,    15,     0,    16,    17,     0,     0,
  781.        0,    23,     0,    24,     0,     0,    25,    26,   203,     0,
  782.        0,     0,     0,     0,    18,    19,    20,     0,     0,    21,
  783.       22,     0,     0,    23,     0,    24,     0,     0,    25,    26,
  784.        1,     2,     3,     4,     5,     0,     6,     0,     0,     0,
  785.        0,     0,     0,     0,    77,     0,    15,     0,    16,    17,
  786.        7,     8,     9,    10,    11,    12,    13,    14,     0,     0,
  787.        0,     0,     0,     0,     0,     0,    18,    19,    20,     0,
  788.        0,    21,    22,     0,     0,    23,     0,    24,     0,   149,
  789.       25,    26,     1,     2,     3,     4,     5,     0,     6,     0,
  790.        0,     0,     0,     0,     0,     0,     0,     0,    15,     0,
  791.       16,    17,     0,     0,     0,     0,     0,     0,     0,     0,
  792.        0,     0,     0,     0,     0,     0,     0,     0,    18,    19,
  793.       20,     0,     0,    21,    22,     0,     0,    23,     0,    24,
  794.        0,     0,    25,    26
  795. };

  796. #define yypact_value_is_default(Yystate) \
  797.   (!!((Yystate) == (-145)))

  798. #define yytable_value_is_error(Yytable_value) \
  799.   YYID (0)

  800. static const yytype_int16 yycheck[] =
  801. {
  802.        0,   132,   133,    32,   148,    23,     0,     0,    37,   143,
  803.       74,     0,    76,    20,    17,    20,    47,    24,    49,    24,
  804.       23,    20,     0,    23,   140,    24,   142,    46,    17,    23,
  805.       23,     5,    20,    51,    23,     9,    24,   101,    47,    46,
  806.       47,   140,   106,   142,    44,    23,     0,   191,    20,   183,
  807.       44,    46,    24,     3,     4,     5,     6,     7,    20,     9,
  808.       20,   195,    24,    47,    24,    94,    44,    23,   199,    19,
  809.       29,    21,    22,    44,    45,    75,    18,    19,    20,    21,
  810.       22,    75,    75,    25,    26,    33,    34,    35,    36,    39,
  811.       40,    41,    39,    40,    44,    45,    30,    75,    48,    28,
  812.       50,    27,   102,    53,    54,   105,    47,   107,   102,   102,
  813.      110,   105,   105,   107,   107,    48,   110,    49,   120,   121,
  814.      122,   123,    37,    38,   102,    31,    32,   105,    46,   107,
  815.      130,    52,   110,    46,    47,    48,   130,   130,    47,   139,
  816.       41,    42,    43,   143,   144,   139,   139,    25,    26,   143,
  817.      144,   144,   130,    46,    47,    48,   156,    46,    47,   116,
  818.      117,   139,   156,   156,    52,   143,   144,   118,   119,   124,
  819.      125,   113,   114,   115,    48,    47,    49,    52,   156,    48,
  820.       23,    52,    52,   183,    49,   185,    52,    55,    49,   183,
  821.       49,   185,   185,    49,    44,   195,     3,     4,     5,     6,
  822.        7,   195,     9,    79,   126,   183,   129,   185,   127,    -1,
  823.       -1,   128,    19,    -1,    21,    22,    -1,   195,     3,     4,
  824.        5,     6,     7,   131,     9,    -1,    11,    12,    13,    14,
  825.       15,    16,    17,    18,    19,    -1,    21,    22,    -1,    -1,
  826.       -1,    48,    -1,    50,    -1,    -1,    53,    54,   190,    -1,
  827.       -1,    -1,    -1,    -1,    39,    40,    41,    -1,    -1,    44,
  828.       45,    -1,    -1,    48,    -1,    50,    -1,    -1,    53,    54,
  829.        3,     4,     5,     6,     7,    -1,     9,    -1,    -1,    -1,
  830.       -1,    -1,    -1,    -1,     5,    -1,    19,    -1,    21,    22,
  831.       11,    12,    13,    14,    15,    16,    17,    18,    -1,    -1,
  832.       -1,    -1,    -1,    -1,    -1,    -1,    39,    40,    41,    -1,
  833.       -1,    44,    45,    -1,    -1,    48,    -1,    50,    -1,    52,
  834.       53,    54,     3,     4,     5,     6,     7,    -1,     9,    -1,
  835.       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    19,    -1,
  836.       21,    22,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  837.       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    39,    40,
  838.       41,    -1,    -1,    44,    45,    -1,    -1,    48,    -1,    50,
  839.       -1,    -1,    53,    54
  840. };

  841. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  842.    symbol of state STATE-NUM.  */
  843. static const yytype_uint8 yystos[] =
  844. {
  845.        0,     3,     4,     5,     6,     7,     9,    11,    12,    13,
  846.       14,    15,    16,    17,    18,    19,    21,    22,    39,    40,
  847.       41,    44,    45,    48,    50,    53,    54,    57,    58,    59,
  848.       60,    61,    62,    63,    64,    65,    68,    69,    70,    71,
  849.       72,    73,    74,    75,    76,    78,    81,    86,    87,    88,
  850.       90,    91,    92,    93,    94,    95,    96,    97,    98,    99,
  851.      100,   101,   102,   103,   104,   105,   106,   107,   108,   109,
  852.      110,   111,   112,   113,    46,    47,    46,     5,    62,    66,
  853.       67,    69,    72,     9,    19,    69,    86,    90,    94,    94,
  854.       94,    94,    94,    62,    69,   113,    94,    94,     0,    47,
  855.       84,    46,    47,    48,    84,    23,    46,    47,    79,   113,
  856.       89,    44,    45,    41,    42,    43,    39,    40,    37,    38,
  857.       33,    34,    35,    36,    31,    32,    30,    29,    28,    27,
  858.       25,    26,    20,    24,     5,     9,    71,   113,    71,    47,
  859.       82,    83,    82,    48,    47,    84,    85,    84,    49,    52,
  860.       47,    71,   113,   113,    71,   113,    23,    51,    77,    79,
  861.       80,    94,    94,    94,    99,    99,   100,   100,   101,   101,
  862.      101,   101,   102,   102,   103,   104,   105,   106,   113,   107,
  863.      109,   109,    52,    48,   113,    47,    83,    85,    85,    80,
  864.       49,    49,    97,    52,    52,    48,    52,   113,    49,    55,
  865.       80,    52,    49,    94,    97,    80,   109,    49,    49
  866. };

  867. #define yyerrok                (yyerrstatus = 0)
  868. #define yyclearin        (yychar = YYEMPTY)
  869. #define YYEMPTY                (-2)
  870. #define YYEOF                0

  871. #define YYACCEPT        goto yyacceptlab
  872. #define YYABORT                goto yyabortlab
  873. #define YYERROR                goto yyerrorlab


  874. /* Like YYERROR except do call yyerror.  This remains here temporarily
  875.    to ease the transition to the new meaning of YYERROR, for GCC.
  876.    Once GCC version 2 has supplanted version 1, this can go.  However,
  877.    YYFAIL appears to be in use.  Nevertheless, it is formally deprecated
  878.    in Bison 2.4.2's NEWS entry, where a plan to phase it out is
  879.    discussed.  */

  880. #define YYFAIL                goto yyerrlab
  881. #if defined YYFAIL
  882.   /* This is here to suppress warnings from the GCC cpp's
  883.      -Wunused-macros.  Normally we don't worry about that warning, but
  884.      some users do, and we want to make it easy for users to remove
  885.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  886. #endif

  887. #define YYRECOVERING()  (!!yyerrstatus)

  888. #define YYBACKUP(Token, Value)                                  \
  889. do                                                              \
  890.   if (yychar == YYEMPTY)                                        \
  891.     {                                                           \
  892.       yychar = (Token);                                         \
  893.       yylval = (Value);                                         \
  894.       YYPOPSTACK (yylen);                                       \
  895.       yystate = *yyssp;                                         \
  896.       goto yybackup;                                            \
  897.     }                                                           \
  898.   else                                                          \
  899.     {                                                           \
  900.       yyerror (YY_("syntax error: cannot back up")); \
  901.       YYERROR;                                                        \
  902.     }                                                                \
  903. while (YYID (0))

  904. /* Error token number */
  905. #define YYTERROR        1
  906. #define YYERRCODE        256


  907. /* This macro is provided for backward compatibility. */
  908. #ifndef YY_LOCATION_PRINT
  909. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  910. #endif


  911. /* YYLEX -- calling `yylex' with the right arguments.  */
  912. #ifdef YYLEX_PARAM
  913. # define YYLEX yylex (YYLEX_PARAM)
  914. #else
  915. # define YYLEX yylex ()
  916. #endif

  917. /* Enable debugging if requested.  */
  918. #if YYDEBUG

  919. # ifndef YYFPRINTF
  920. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  921. #  define YYFPRINTF fprintf
  922. # endif

  923. # define YYDPRINTF(Args)                        \
  924. do {                                                \
  925.   if (yydebug)                                        \
  926.     YYFPRINTF Args;                                \
  927. } while (YYID (0))

  928. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  929. do {                                                                          \
  930.   if (yydebug)                                                                  \
  931.     {                                                                          \
  932.       YYFPRINTF (stderr, "%s ", Title);                                          \
  933.       yy_symbol_print (stderr,                                                  \
  934.                   Type, Value); \
  935.       YYFPRINTF (stderr, "\n");                                                  \
  936.     }                                                                          \
  937. } while (YYID (0))


  938. /*--------------------------------.
  939. | Print this symbol on YYOUTPUT.  |
  940. `--------------------------------*/

  941. /*ARGSUSED*/
  942. #if (defined __STDC__ || defined __C99__FUNC__ \
  943.      || defined __cplusplus || defined _MSC_VER)
  944. static void
  945. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  946. #else
  947. static void
  948. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  949.     FILE *yyoutput;
  950.     int yytype;
  951.     YYSTYPE const * const yyvaluep;
  952. #endif
  953. {
  954.   FILE *yyo = yyoutput;
  955.   YYUSE (yyo);
  956.   if (!yyvaluep)
  957.     return;
  958. # ifdef YYPRINT
  959.   if (yytype < YYNTOKENS)
  960.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  961. # else
  962.   YYUSE (yyoutput);
  963. # endif
  964.   switch (yytype)
  965.     {
  966.       default:
  967.         break;
  968.     }
  969. }


  970. /*--------------------------------.
  971. | Print this symbol on YYOUTPUT.  |
  972. `--------------------------------*/

  973. #if (defined __STDC__ || defined __C99__FUNC__ \
  974.      || defined __cplusplus || defined _MSC_VER)
  975. static void
  976. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  977. #else
  978. static void
  979. yy_symbol_print (yyoutput, yytype, yyvaluep)
  980.     FILE *yyoutput;
  981.     int yytype;
  982.     YYSTYPE const * const yyvaluep;
  983. #endif
  984. {
  985.   if (yytype < YYNTOKENS)
  986.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  987.   else
  988.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  989.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  990.   YYFPRINTF (yyoutput, ")");
  991. }

  992. /*------------------------------------------------------------------.
  993. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  994. | TOP (included).                                                   |
  995. `------------------------------------------------------------------*/

  996. #if (defined __STDC__ || defined __C99__FUNC__ \
  997.      || defined __cplusplus || defined _MSC_VER)
  998. static void
  999. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  1000. #else
  1001. static void
  1002. yy_stack_print (yybottom, yytop)
  1003.     yytype_int16 *yybottom;
  1004.     yytype_int16 *yytop;
  1005. #endif
  1006. {
  1007.   YYFPRINTF (stderr, "Stack now");
  1008.   for (; yybottom <= yytop; yybottom++)
  1009.     {
  1010.       int yybot = *yybottom;
  1011.       YYFPRINTF (stderr, " %d", yybot);
  1012.     }
  1013.   YYFPRINTF (stderr, "\n");
  1014. }

  1015. # define YY_STACK_PRINT(Bottom, Top)                                \
  1016. do {                                                                \
  1017.   if (yydebug)                                                        \
  1018.     yy_stack_print ((Bottom), (Top));                                \
  1019. } while (YYID (0))


  1020. /*------------------------------------------------.
  1021. | Report that the YYRULE is going to be reduced.  |
  1022. `------------------------------------------------*/

  1023. #if (defined __STDC__ || defined __C99__FUNC__ \
  1024.      || defined __cplusplus || defined _MSC_VER)
  1025. static void
  1026. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  1027. #else
  1028. static void
  1029. yy_reduce_print (yyvsp, yyrule)
  1030.     YYSTYPE *yyvsp;
  1031.     int yyrule;
  1032. #endif
  1033. {
  1034.   int yynrhs = yyr2[yyrule];
  1035.   int yyi;
  1036.   unsigned long int yylno = yyrline[yyrule];
  1037.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
  1038.              yyrule - 1, yylno);
  1039.   /* The symbols being reduced.  */
  1040.   for (yyi = 0; yyi < yynrhs; yyi++)
  1041.     {
  1042.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  1043.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  1044.                        &(yyvsp[(yyi + 1) - (yynrhs)])
  1045.                                               );
  1046.       YYFPRINTF (stderr, "\n");
  1047.     }
  1048. }

  1049. # define YY_REDUCE_PRINT(Rule)                \
  1050. do {                                        \
  1051.   if (yydebug)                                \
  1052.     yy_reduce_print (yyvsp, Rule); \
  1053. } while (YYID (0))

  1054. /* Nonzero means print parse trace.  It is left uninitialized so that
  1055.    multiple parsers can coexist.  */
  1056. int yydebug;
  1057. #else /* !YYDEBUG */
  1058. # define YYDPRINTF(Args)
  1059. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  1060. # define YY_STACK_PRINT(Bottom, Top)
  1061. # define YY_REDUCE_PRINT(Rule)
  1062. #endif /* !YYDEBUG */


  1063. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  1064. #ifndef        YYINITDEPTH
  1065. # define YYINITDEPTH 200
  1066. #endif

  1067. /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
  1068.    if the built-in stack extension method is used).

  1069.    Do not make this value too large; the results are undefined if
  1070.    YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
  1071.    evaluated with infinite-precision integer arithmetic.  */

  1072. #ifndef YYMAXDEPTH
  1073. # define YYMAXDEPTH 10000
  1074. #endif


  1075. #if YYERROR_VERBOSE

  1076. # ifndef yystrlen
  1077. #  if defined __GLIBC__ && defined _STRING_H
  1078. #   define yystrlen strlen
  1079. #  else
  1080. /* Return the length of YYSTR.  */
  1081. #if (defined __STDC__ || defined __C99__FUNC__ \
  1082.      || defined __cplusplus || defined _MSC_VER)
  1083. static YYSIZE_T
  1084. yystrlen (const char *yystr)
  1085. #else
  1086. static YYSIZE_T
  1087. yystrlen (yystr)
  1088.     const char *yystr;
  1089. #endif
  1090. {
  1091.   YYSIZE_T yylen;
  1092.   for (yylen = 0; yystr[yylen]; yylen++)
  1093.     continue;
  1094.   return yylen;
  1095. }
  1096. #  endif
  1097. # endif

  1098. # ifndef yystpcpy
  1099. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1100. #   define yystpcpy stpcpy
  1101. #  else
  1102. /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
  1103.    YYDEST.  */
  1104. #if (defined __STDC__ || defined __C99__FUNC__ \
  1105.      || defined __cplusplus || defined _MSC_VER)
  1106. static char *
  1107. yystpcpy (char *yydest, const char *yysrc)
  1108. #else
  1109. static char *
  1110. yystpcpy (yydest, yysrc)
  1111.     char *yydest;
  1112.     const char *yysrc;
  1113. #endif
  1114. {
  1115.   char *yyd = yydest;
  1116.   const char *yys = yysrc;

  1117.   while ((*yyd++ = *yys++) != '\0')
  1118.     continue;

  1119.   return yyd - 1;
  1120. }
  1121. #  endif
  1122. # endif

  1123. # ifndef yytnamerr
  1124. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1125.    quotes and backslashes, so that it's suitable for yyerror.  The
  1126.    heuristic is that double-quoting is unnecessary unless the string
  1127.    contains an apostrophe, a comma, or backslash (other than
  1128.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1129.    null, do not copy; instead, return the length of what the result
  1130.    would have been.  */
  1131. static YYSIZE_T
  1132. yytnamerr (char *yyres, const char *yystr)
  1133. {
  1134.   if (*yystr == '"')
  1135.     {
  1136.       YYSIZE_T yyn = 0;
  1137.       char const *yyp = yystr;

  1138.       for (;;)
  1139.         switch (*++yyp)
  1140.           {
  1141.           case '\'':
  1142.           case ',':
  1143.             goto do_not_strip_quotes;

  1144.           case '\\':
  1145.             if (*++yyp != '\\')
  1146.               goto do_not_strip_quotes;
  1147.             /* Fall through.  */
  1148.           default:
  1149.             if (yyres)
  1150.               yyres[yyn] = *yyp;
  1151.             yyn++;
  1152.             break;

  1153.           case '"':
  1154.             if (yyres)
  1155.               yyres[yyn] = '\0';
  1156.             return yyn;
  1157.           }
  1158.     do_not_strip_quotes: ;
  1159.     }

  1160.   if (! yyres)
  1161.     return yystrlen (yystr);

  1162.   return yystpcpy (yyres, yystr) - yyres;
  1163. }
  1164. # endif

  1165. /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
  1166.    about the unexpected token YYTOKEN for the state stack whose top is
  1167.    YYSSP.

  1168.    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
  1169.    not large enough to hold the message.  In that case, also set
  1170.    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
  1171.    required number of bytes is too large to store.  */
  1172. static int
  1173. yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
  1174.                 yytype_int16 *yyssp, int yytoken)
  1175. {
  1176.   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  1177.   YYSIZE_T yysize = yysize0;
  1178.   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1179.   /* Internationalized format string. */
  1180.   const char *yyformat = YY_NULL;
  1181.   /* Arguments of yyformat. */
  1182.   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1183.   /* Number of reported tokens (one for the "unexpected", one per
  1184.      "expected"). */
  1185.   int yycount = 0;

  1186.   /* There are many possibilities here to consider:
  1187.      - Assume YYFAIL is not used.  It's too flawed to consider.  See
  1188.        <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
  1189.        for details.  YYERROR is fine as it does not invoke this
  1190.        function.
  1191.      - If this state is a consistent state with a default action, then
  1192.        the only way this function was invoked is if the default action
  1193.        is an error action.  In that case, don't check for expected
  1194.        tokens because there are none.
  1195.      - The only way there can be no lookahead present (in yychar) is if
  1196.        this state is a consistent state with a default action.  Thus,
  1197.        detecting the absence of a lookahead is sufficient to determine
  1198.        that there is no unexpected or expected token to report.  In that
  1199.        case, just report a simple "syntax error".
  1200.      - Don't assume there isn't a lookahead just because this state is a
  1201.        consistent state with a default action.  There might have been a
  1202.        previous inconsistent state, consistent state with a non-default
  1203.        action, or user semantic action that manipulated yychar.
  1204.      - Of course, the expected token list depends on states to have
  1205.        correct lookahead information, and it depends on the parser not
  1206.        to perform extra reductions after fetching a lookahead from the
  1207.        scanner and before detecting a syntax error.  Thus, state merging
  1208.        (from LALR or IELR) and default reductions corrupt the expected
  1209.        token list.  However, the list is correct for canonical LR with
  1210.        one exception: it will still contain any token that will not be
  1211.        accepted due to an error action in a later state.
  1212.   */
  1213.   if (yytoken != YYEMPTY)
  1214.     {
  1215.       int yyn = yypact[*yyssp];
  1216.       yyarg[yycount++] = yytname[yytoken];
  1217.       if (!yypact_value_is_default (yyn))
  1218.         {
  1219.           /* Start YYX at -YYN if negative to avoid negative indexes in
  1220.              YYCHECK.  In other words, skip the first -YYN actions for
  1221.              this state because they are default actions.  */
  1222.           int yyxbegin = yyn < 0 ? -yyn : 0;
  1223.           /* Stay within bounds of both yycheck and yytname.  */
  1224.           int yychecklim = YYLAST - yyn + 1;
  1225.           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
  1226.           int yyx;

  1227.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1228.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1229.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1230.               {
  1231.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1232.                   {
  1233.                     yycount = 1;
  1234.                     yysize = yysize0;
  1235.                     break;
  1236.                   }
  1237.                 yyarg[yycount++] = yytname[yyx];
  1238.                 {
  1239.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1240.                   if (! (yysize <= yysize1
  1241.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1242.                     return 2;
  1243.                   yysize = yysize1;
  1244.                 }
  1245.               }
  1246.         }
  1247.     }

  1248.   switch (yycount)
  1249.     {
  1250. # define YYCASE_(N, S)                      \
  1251.       case N:                               \
  1252.         yyformat = S;                       \
  1253.       break
  1254.       YYCASE_(0, YY_("syntax error"));
  1255.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1256.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1257.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1258.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1259.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1260. # undef YYCASE_
  1261.     }

  1262.   {
  1263.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1264.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1265.       return 2;
  1266.     yysize = yysize1;
  1267.   }

  1268.   if (*yymsg_alloc < yysize)
  1269.     {
  1270.       *yymsg_alloc = 2 * yysize;
  1271.       if (! (yysize <= *yymsg_alloc
  1272.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1273.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1274.       return 1;
  1275.     }

  1276.   /* Avoid sprintf, as that infringes on the user's name space.
  1277.      Don't have undefined behavior even if the translation
  1278.      produced a string with the wrong number of "%s"s.  */
  1279.   {
  1280.     char *yyp = *yymsg;
  1281.     int yyi = 0;
  1282.     while ((*yyp = *yyformat) != '\0')
  1283.       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
  1284.         {
  1285.           yyp += yytnamerr (yyp, yyarg[yyi++]);
  1286.           yyformat += 2;
  1287.         }
  1288.       else
  1289.         {
  1290.           yyp++;
  1291.           yyformat++;
  1292.         }
  1293.   }
  1294.   return 0;
  1295. }
  1296. #endif /* YYERROR_VERBOSE */

  1297. /*-----------------------------------------------.
  1298. | Release the memory associated to this symbol.  |
  1299. `-----------------------------------------------*/

  1300. /*ARGSUSED*/
  1301. #if (defined __STDC__ || defined __C99__FUNC__ \
  1302.      || defined __cplusplus || defined _MSC_VER)
  1303. static void
  1304. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1305. #else
  1306. static void
  1307. yydestruct (yymsg, yytype, yyvaluep)
  1308.     const char *yymsg;
  1309.     int yytype;
  1310.     YYSTYPE *yyvaluep;
  1311. #endif
  1312. {
  1313.   YYUSE (yyvaluep);

  1314.   if (!yymsg)
  1315.     yymsg = "Deleting";
  1316.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1317.   switch (yytype)
  1318.     {

  1319.       default:
  1320.         break;
  1321.     }
  1322. }




  1323. /* The lookahead symbol.  */
  1324. int yychar;


  1325. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1326. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1327. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1328. #endif
  1329. #ifndef YY_INITIAL_VALUE
  1330. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1331. #endif

  1332. /* The semantic value of the lookahead symbol.  */
  1333. YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);

  1334. /* Number of syntax errors so far.  */
  1335. int yynerrs;


  1336. /*----------.
  1337. | yyparse.  |
  1338. `----------*/

  1339. #ifdef YYPARSE_PARAM
  1340. #if (defined __STDC__ || defined __C99__FUNC__ \
  1341.      || defined __cplusplus || defined _MSC_VER)
  1342. int
  1343. yyparse (void *YYPARSE_PARAM)
  1344. #else
  1345. int
  1346. yyparse (YYPARSE_PARAM)
  1347.     void *YYPARSE_PARAM;
  1348. #endif
  1349. #else /* ! YYPARSE_PARAM */
  1350. #if (defined __STDC__ || defined __C99__FUNC__ \
  1351.      || defined __cplusplus || defined _MSC_VER)
  1352. int
  1353. yyparse (void)
  1354. #else
  1355. int
  1356. yyparse ()

  1357. #endif
  1358. #endif
  1359. {
  1360.     int yystate;
  1361.     /* Number of tokens to shift before error messages enabled.  */
  1362.     int yyerrstatus;

  1363.     /* The stacks and their tools:
  1364.        `yyss': related to states.
  1365.        `yyvs': related to semantic values.

  1366.        Refer to the stacks through separate pointers, to allow yyoverflow
  1367.        to xreallocate them elsewhere.  */

  1368.     /* The state stack.  */
  1369.     yytype_int16 yyssa[YYINITDEPTH];
  1370.     yytype_int16 *yyss;
  1371.     yytype_int16 *yyssp;

  1372.     /* The semantic value stack.  */
  1373.     YYSTYPE yyvsa[YYINITDEPTH];
  1374.     YYSTYPE *yyvs;
  1375.     YYSTYPE *yyvsp;

  1376.     YYSIZE_T yystacksize;

  1377.   int yyn;
  1378.   int yyresult;
  1379.   /* Lookahead token as an internal (translated) token number.  */
  1380.   int yytoken = 0;
  1381.   /* The variables used to return semantic value and location from the
  1382.      action routines.  */
  1383.   YYSTYPE yyval;

  1384. #if YYERROR_VERBOSE
  1385.   /* Buffer for error messages, and its allocated size.  */
  1386.   char yymsgbuf[128];
  1387.   char *yymsg = yymsgbuf;
  1388.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1389. #endif

  1390. #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))

  1391.   /* The number of symbols on the RHS of the reduced rule.
  1392.      Keep to zero when no symbol should be popped.  */
  1393.   int yylen = 0;

  1394.   yyssp = yyss = yyssa;
  1395.   yyvsp = yyvs = yyvsa;
  1396.   yystacksize = YYINITDEPTH;

  1397.   YYDPRINTF ((stderr, "Starting parse\n"));

  1398.   yystate = 0;
  1399.   yyerrstatus = 0;
  1400.   yynerrs = 0;
  1401.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1402.   goto yysetstate;

  1403. /*------------------------------------------------------------.
  1404. | yynewstate -- Push a new state, which is found in yystate.  |
  1405. `------------------------------------------------------------*/
  1406. yynewstate:
  1407.   /* In all cases, when you get here, the value and location stacks
  1408.      have just been pushed.  So pushing a state here evens the stacks.  */
  1409.   yyssp++;

  1410. yysetstate:
  1411.   *yyssp = yystate;

  1412.   if (yyss + yystacksize - 1 <= yyssp)
  1413.     {
  1414.       /* Get the current used size of the three stacks, in elements.  */
  1415.       YYSIZE_T yysize = yyssp - yyss + 1;

  1416. #ifdef yyoverflow
  1417.       {
  1418.         /* Give user a chance to xreallocate the stack.  Use copies of
  1419.            these so that the &'s don't force the real ones into
  1420.            memory.  */
  1421.         YYSTYPE *yyvs1 = yyvs;
  1422.         yytype_int16 *yyss1 = yyss;

  1423.         /* Each stack pointer address is followed by the size of the
  1424.            data in use in that stack, in bytes.  This used to be a
  1425.            conditional around just the two extra args, but that might
  1426.            be undefined if yyoverflow is a macro.  */
  1427.         yyoverflow (YY_("memory exhausted"),
  1428.                     &yyss1, yysize * sizeof (*yyssp),
  1429.                     &yyvs1, yysize * sizeof (*yyvsp),
  1430.                     &yystacksize);

  1431.         yyss = yyss1;
  1432.         yyvs = yyvs1;
  1433.       }
  1434. #else /* no yyoverflow */
  1435. # ifndef YYSTACK_RELOCATE
  1436.       goto yyexhaustedlab;
  1437. # else
  1438.       /* Extend the stack our own way.  */
  1439.       if (YYMAXDEPTH <= yystacksize)
  1440.         goto yyexhaustedlab;
  1441.       yystacksize *= 2;
  1442.       if (YYMAXDEPTH < yystacksize)
  1443.         yystacksize = YYMAXDEPTH;

  1444.       {
  1445.         yytype_int16 *yyss1 = yyss;
  1446.         union yyalloc *yyptr =
  1447.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1448.         if (! yyptr)
  1449.           goto yyexhaustedlab;
  1450.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1451.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1452. #  undef YYSTACK_RELOCATE
  1453.         if (yyss1 != yyssa)
  1454.           YYSTACK_FREE (yyss1);
  1455.       }
  1456. # endif
  1457. #endif /* no yyoverflow */

  1458.       yyssp = yyss + yysize - 1;
  1459.       yyvsp = yyvs + yysize - 1;

  1460.       YYDPRINTF ((stderr, "Stack size increased to %lu\n",
  1461.                   (unsigned long int) yystacksize));

  1462.       if (yyss + yystacksize - 1 <= yyssp)
  1463.         YYABORT;
  1464.     }

  1465.   YYDPRINTF ((stderr, "Entering state %d\n", yystate));

  1466.   if (yystate == YYFINAL)
  1467.     YYACCEPT;

  1468.   goto yybackup;

  1469. /*-----------.
  1470. | yybackup.  |
  1471. `-----------*/
  1472. yybackup:

  1473.   /* Do appropriate processing given the current state.  Read a
  1474.      lookahead token if we need one and don't already have one.  */

  1475.   /* First try to decide what to do without reference to lookahead token.  */
  1476.   yyn = yypact[yystate];
  1477.   if (yypact_value_is_default (yyn))
  1478.     goto yydefault;

  1479.   /* Not known => get a lookahead token if don't already have one.  */

  1480.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1481.   if (yychar == YYEMPTY)
  1482.     {
  1483.       YYDPRINTF ((stderr, "Reading a token: "));
  1484.       yychar = YYLEX;
  1485.     }

  1486.   if (yychar <= YYEOF)
  1487.     {
  1488.       yychar = yytoken = YYEOF;
  1489.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1490.     }
  1491.   else
  1492.     {
  1493.       yytoken = YYTRANSLATE (yychar);
  1494.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1495.     }

  1496.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1497.      detect an error, take that action.  */
  1498.   yyn += yytoken;
  1499.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1500.     goto yydefault;
  1501.   yyn = yytable[yyn];
  1502.   if (yyn <= 0)
  1503.     {
  1504.       if (yytable_value_is_error (yyn))
  1505.         goto yyerrlab;
  1506.       yyn = -yyn;
  1507.       goto yyreduce;
  1508.     }

  1509.   /* Count tokens shifted since error; after three, turn off error
  1510.      status.  */
  1511.   if (yyerrstatus)
  1512.     yyerrstatus--;

  1513.   /* Shift the lookahead token.  */
  1514.   YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);

  1515.   /* Discard the shifted token.  */
  1516.   yychar = YYEMPTY;

  1517.   yystate = yyn;
  1518.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1519.   *++yyvsp = yylval;
  1520.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1521.   goto yynewstate;


  1522. /*-----------------------------------------------------------.
  1523. | yydefault -- do the default action for the current state.  |
  1524. `-----------------------------------------------------------*/
  1525. yydefault:
  1526.   yyn = yydefact[yystate];
  1527.   if (yyn == 0)
  1528.     goto yyerrlab;
  1529.   goto yyreduce;


  1530. /*-----------------------------.
  1531. | yyreduce -- Do a reduction.  |
  1532. `-----------------------------*/
  1533. yyreduce:
  1534.   /* yyn is the number of a rule to reduce with.  */
  1535.   yylen = yyr2[yyn];

  1536.   /* If YYLEN is nonzero, implement the default value of the action:
  1537.      `$$ = $1'.

  1538.      Otherwise, the following line sets YYVAL to garbage.
  1539.      This behavior is undocumented and Bison
  1540.      users should not rely upon it.  Assigning to YYVAL
  1541.      unconditionally makes the parser a bit smaller, and it avoids a
  1542.      GCC warning that YYVAL may be used uninitialized.  */
  1543.   yyval = yyvsp[1-yylen];


  1544.   YY_REDUCE_PRINT (yyn);
  1545.   switch (yyn)
  1546.     {
  1547.         case 4:
  1548. /* Line 1792 of yacc.c  */
  1549. #line 222 "jv-exp.y"
  1550.     {
  1551.                   write_exp_elt_opcode (pstate, OP_TYPE);
  1552.                   write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  1553.                   write_exp_elt_opcode (pstate, OP_TYPE);
  1554.                 }
  1555.     break;

  1556.   case 7:
  1557. /* Line 1792 of yacc.c  */
  1558. #line 236 "jv-exp.y"
  1559.     {
  1560.                   write_exp_elt_opcode (pstate, OP_STRING);
  1561.                   write_exp_string (pstate, (yyvsp[(1) - (1)].sval));
  1562.                   write_exp_elt_opcode (pstate, OP_STRING);
  1563.                 }
  1564.     break;

  1565.   case 8:
  1566. /* Line 1792 of yacc.c  */
  1567. #line 245 "jv-exp.y"
  1568.     { write_exp_elt_opcode (pstate, OP_LONG);
  1569.                   write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_int).type);
  1570.                   write_exp_elt_longcst (pstate, (LONGEST)((yyvsp[(1) - (1)].typed_val_int).val));
  1571.                   write_exp_elt_opcode (pstate, OP_LONG); }
  1572.     break;

  1573.   case 9:
  1574. /* Line 1792 of yacc.c  */
  1575. #line 250 "jv-exp.y"
  1576.     { YYSTYPE val;
  1577.                   parse_number (pstate, (yyvsp[(1) - (1)].sval).ptr, (yyvsp[(1) - (1)].sval).length, 0, &val);
  1578.                   write_exp_elt_opcode (pstate, OP_LONG);
  1579.                   write_exp_elt_type (pstate, val.typed_val_int.type);
  1580.                   write_exp_elt_longcst (pstate,
  1581.                                          (LONGEST) val.typed_val_int.val);
  1582.                   write_exp_elt_opcode (pstate, OP_LONG);
  1583.                 }
  1584.     break;

  1585.   case 10:
  1586. /* Line 1792 of yacc.c  */
  1587. #line 259 "jv-exp.y"
  1588.     { write_exp_elt_opcode (pstate, OP_DOUBLE);
  1589.                   write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_float).type);
  1590.                   write_exp_elt_dblcst (pstate, (yyvsp[(1) - (1)].typed_val_float).dval);
  1591.                   write_exp_elt_opcode (pstate, OP_DOUBLE); }
  1592.     break;

  1593.   case 11:
  1594. /* Line 1792 of yacc.c  */
  1595. #line 264 "jv-exp.y"
  1596.     { write_exp_elt_opcode (pstate, OP_LONG);
  1597.                   write_exp_elt_type (pstate,
  1598.                                   parse_java_type (pstate)->builtin_boolean);
  1599.                   write_exp_elt_longcst (pstate, (LONGEST)(yyvsp[(1) - (1)].lval));
  1600.                   write_exp_elt_opcode (pstate, OP_LONG); }
  1601.     break;

  1602.   case 14:
  1603. /* Line 1792 of yacc.c  */
  1604. #line 282 "jv-exp.y"
  1605.     { (yyval.tval) = parse_java_type (pstate)->builtin_boolean; }
  1606.     break;

  1607.   case 17:
  1608. /* Line 1792 of yacc.c  */
  1609. #line 292 "jv-exp.y"
  1610.     { (yyval.tval) = parse_java_type (pstate)->builtin_byte; }
  1611.     break;

  1612.   case 18:
  1613. /* Line 1792 of yacc.c  */
  1614. #line 294 "jv-exp.y"
  1615.     { (yyval.tval) = parse_java_type (pstate)->builtin_short; }
  1616.     break;

  1617.   case 19:
  1618. /* Line 1792 of yacc.c  */
  1619. #line 296 "jv-exp.y"
  1620.     { (yyval.tval) = parse_java_type (pstate)->builtin_int; }
  1621.     break;

  1622.   case 20:
  1623. /* Line 1792 of yacc.c  */
  1624. #line 298 "jv-exp.y"
  1625.     { (yyval.tval) = parse_java_type (pstate)->builtin_long; }
  1626.     break;

  1627.   case 21:
  1628. /* Line 1792 of yacc.c  */
  1629. #line 300 "jv-exp.y"
  1630.     { (yyval.tval) = parse_java_type (pstate)->builtin_char; }
  1631.     break;

  1632.   case 22:
  1633. /* Line 1792 of yacc.c  */
  1634. #line 305 "jv-exp.y"
  1635.     { (yyval.tval) = parse_java_type (pstate)->builtin_float; }
  1636.     break;

  1637.   case 23:
  1638. /* Line 1792 of yacc.c  */
  1639. #line 307 "jv-exp.y"
  1640.     { (yyval.tval) = parse_java_type (pstate)->builtin_double; }
  1641.     break;

  1642.   case 24:
  1643. /* Line 1792 of yacc.c  */
  1644. #line 319 "jv-exp.y"
  1645.     { (yyval.tval) = java_type_from_name ((yyvsp[(1) - (1)].sval)); }
  1646.     break;

  1647.   case 26:
  1648. /* Line 1792 of yacc.c  */
  1649. #line 328 "jv-exp.y"
  1650.     { (yyval.tval) = java_array_type ((yyvsp[(1) - (2)].tval), (yyvsp[(2) - (2)].lval)); }
  1651.     break;

  1652.   case 27:
  1653. /* Line 1792 of yacc.c  */
  1654. #line 330 "jv-exp.y"
  1655.     { (yyval.tval) = java_array_type (java_type_from_name ((yyvsp[(1) - (2)].sval)), (yyvsp[(2) - (2)].lval)); }
  1656.     break;

  1657.   case 34:
  1658. /* Line 1792 of yacc.c  */
  1659. #line 350 "jv-exp.y"
  1660.     { (yyval.sval).length = (yyvsp[(1) - (3)].sval).length + (yyvsp[(3) - (3)].sval).length + 1;
  1661.                   if ((yyvsp[(1) - (3)].sval).ptr + (yyvsp[(1) - (3)].sval).length + 1 == (yyvsp[(3) - (3)].sval).ptr
  1662.                       && (yyvsp[(1) - (3)].sval).ptr[(yyvsp[(1) - (3)].sval).length] == '.')
  1663.                     (yyval.sval).ptr = (yyvsp[(1) - (3)].sval).ptr/* Optimization.  */
  1664.                   else
  1665.                     {
  1666.                       char *buf;

  1667.                       buf = xmalloc ((yyval.sval).length + 1);
  1668.                       make_cleanup (xfree, buf);
  1669.                       sprintf (buf, "%.*s.%.*s",
  1670.                                (yyvsp[(1) - (3)].sval).length, (yyvsp[(1) - (3)].sval).ptr, (yyvsp[(3) - (3)].sval).length, (yyvsp[(3) - (3)].sval).ptr);
  1671.                       (yyval.sval).ptr = buf;
  1672.                 } }
  1673.     break;

  1674.   case 36:
  1675. /* Line 1792 of yacc.c  */
  1676. #line 377 "jv-exp.y"
  1677.     { write_exp_elt_opcode (pstate, BINOP_COMMA); }
  1678.     break;

  1679.   case 45:
  1680. /* Line 1792 of yacc.c  */
  1681. #line 393 "jv-exp.y"
  1682.     { write_exp_elt_opcode (pstate, OP_ARRAY);
  1683.                   write_exp_elt_longcst (pstate, (LONGEST) 0);
  1684.                   write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(3) - (3)].lval));
  1685.                   write_exp_elt_opcode (pstate, OP_ARRAY); }
  1686.     break;

  1687.   case 46:
  1688. /* Line 1792 of yacc.c  */
  1689. #line 401 "jv-exp.y"
  1690.     { start_arglist (); }
  1691.     break;

  1692.   case 47:
  1693. /* Line 1792 of yacc.c  */
  1694. #line 406 "jv-exp.y"
  1695.     { (yyval.lval) = end_arglist () - 1; }
  1696.     break;

  1697.   case 48:
  1698. /* Line 1792 of yacc.c  */
  1699. #line 411 "jv-exp.y"
  1700.     { internal_error (__FILE__, __LINE__,
  1701.                                   _("FIXME - ClassInstanceCreationExpression")); }
  1702.     break;

  1703.   case 49:
  1704. /* Line 1792 of yacc.c  */
  1705. #line 417 "jv-exp.y"
  1706.     { arglist_len = 1; }
  1707.     break;

  1708.   case 50:
  1709. /* Line 1792 of yacc.c  */
  1710. #line 419 "jv-exp.y"
  1711.     { arglist_len++; }
  1712.     break;

  1713.   case 51:
  1714. /* Line 1792 of yacc.c  */
  1715. #line 424 "jv-exp.y"
  1716.     { arglist_len = 0; }
  1717.     break;

  1718.   case 53:
  1719. /* Line 1792 of yacc.c  */
  1720. #line 430 "jv-exp.y"
  1721.     { internal_error (__FILE__, __LINE__,
  1722.                                   _("FIXME - ArrayCreationExpression")); }
  1723.     break;

  1724.   case 54:
  1725. /* Line 1792 of yacc.c  */
  1726. #line 433 "jv-exp.y"
  1727.     { internal_error (__FILE__, __LINE__,
  1728.                                   _("FIXME - ArrayCreationExpression")); }
  1729.     break;

  1730.   case 58:
  1731. /* Line 1792 of yacc.c  */
  1732. #line 448 "jv-exp.y"
  1733.     { (yyval.lval) = 1; }
  1734.     break;

  1735.   case 59:
  1736. /* Line 1792 of yacc.c  */
  1737. #line 450 "jv-exp.y"
  1738.     { (yyval.lval) = (yyvsp[(1) - (3)].lval) + 1; }
  1739.     break;

  1740.   case 61:
  1741. /* Line 1792 of yacc.c  */
  1742. #line 456 "jv-exp.y"
  1743.     { (yyval.lval) = 0; }
  1744.     break;

  1745.   case 62:
  1746. /* Line 1792 of yacc.c  */
  1747. #line 461 "jv-exp.y"
  1748.     { push_fieldnames (pstate, (yyvsp[(3) - (3)].sval)); }
  1749.     break;

  1750.   case 63:
  1751. /* Line 1792 of yacc.c  */
  1752. #line 463 "jv-exp.y"
  1753.     { push_fieldnames (pstate, (yyvsp[(3) - (3)].sval)); }
  1754.     break;

  1755.   case 64:
  1756. /* Line 1792 of yacc.c  */
  1757. #line 469 "jv-exp.y"
  1758.     { push_expression_name (pstate, (yyvsp[(1) - (2)].sval)); }
  1759.     break;

  1760.   case 65:
  1761. /* Line 1792 of yacc.c  */
  1762. #line 474 "jv-exp.y"
  1763.     { start_arglist(); }
  1764.     break;

  1765.   case 66:
  1766. /* Line 1792 of yacc.c  */
  1767. #line 476 "jv-exp.y"
  1768.     { write_exp_elt_opcode (pstate, OP_FUNCALL);
  1769.                   write_exp_elt_longcst (pstate, (LONGEST) end_arglist ());
  1770.                   write_exp_elt_opcode (pstate, OP_FUNCALL); }
  1771.     break;

  1772.   case 67:
  1773. /* Line 1792 of yacc.c  */
  1774. #line 480 "jv-exp.y"
  1775.     { error (_("Form of method invocation not implemented")); }
  1776.     break;

  1777.   case 68:
  1778. /* Line 1792 of yacc.c  */
  1779. #line 482 "jv-exp.y"
  1780.     { error (_("Form of method invocation not implemented")); }
  1781.     break;

  1782.   case 69:
  1783. /* Line 1792 of yacc.c  */
  1784. #line 487 "jv-exp.y"
  1785.     {
  1786.                   /* Emit code for the Name now, then exchange it in the
  1787.                      expout array with the Expression's code.  We could
  1788.                      introduce a OP_SWAP code or a reversed version of
  1789.                      BINOP_SUBSCRIPT, but that makes the rest of GDB pay
  1790.                      for our parsing kludges.  */
  1791.                   struct expression *name_expr;

  1792.                   push_expression_name (pstate, (yyvsp[(1) - (4)].sval));
  1793.                   name_expr = copy_exp (pstate->expout, pstate->expout_ptr);
  1794.                   pstate->expout_ptr -= name_expr->nelts;
  1795.                   insert_exp (pstate,
  1796.                               pstate->expout_ptr
  1797.                               - length_of_subexp (pstate->expout,
  1798.                                                   pstate->expout_ptr),
  1799.                               name_expr);
  1800.                   xfree (name_expr);
  1801.                   write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT);
  1802.                 }
  1803.     break;

  1804.   case 70:
  1805. /* Line 1792 of yacc.c  */
  1806. #line 507 "jv-exp.y"
  1807.     { write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
  1808.     break;

  1809.   case 71:
  1810. /* Line 1792 of yacc.c  */
  1811. #line 509 "jv-exp.y"
  1812.     { write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
  1813.     break;

  1814.   case 73:
  1815. /* Line 1792 of yacc.c  */
  1816. #line 515 "jv-exp.y"
  1817.     { push_expression_name (pstate, (yyvsp[(1) - (1)].sval)); }
  1818.     break;

  1819.   case 77:
  1820. /* Line 1792 of yacc.c  */
  1821. #line 524 "jv-exp.y"
  1822.     { write_exp_elt_opcode (pstate, UNOP_POSTINCREMENT); }
  1823.     break;

  1824.   case 78:
  1825. /* Line 1792 of yacc.c  */
  1826. #line 529 "jv-exp.y"
  1827.     { write_exp_elt_opcode (pstate, UNOP_POSTDECREMENT); }
  1828.     break;

  1829.   case 82:
  1830. /* Line 1792 of yacc.c  */
  1831. #line 537 "jv-exp.y"
  1832.     { write_exp_elt_opcode (pstate, UNOP_NEG); }
  1833.     break;

  1834.   case 83:
  1835. /* Line 1792 of yacc.c  */
  1836. #line 539 "jv-exp.y"
  1837.     { write_exp_elt_opcode (pstate,
  1838.                                         UNOP_IND); }
  1839.     break;

  1840.   case 85:
  1841. /* Line 1792 of yacc.c  */
  1842. #line 546 "jv-exp.y"
  1843.     { write_exp_elt_opcode (pstate, UNOP_PREINCREMENT); }
  1844.     break;

  1845.   case 86:
  1846. /* Line 1792 of yacc.c  */
  1847. #line 551 "jv-exp.y"
  1848.     { write_exp_elt_opcode (pstate, UNOP_PREDECREMENT); }
  1849.     break;

  1850.   case 88:
  1851. /* Line 1792 of yacc.c  */
  1852. #line 557 "jv-exp.y"
  1853.     { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
  1854.     break;

  1855.   case 89:
  1856. /* Line 1792 of yacc.c  */
  1857. #line 559 "jv-exp.y"
  1858.     { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
  1859.     break;

  1860.   case 91:
  1861. /* Line 1792 of yacc.c  */
  1862. #line 565 "jv-exp.y"
  1863.     { write_exp_elt_opcode (pstate, UNOP_CAST);
  1864.                   write_exp_elt_type (pstate, java_array_type ((yyvsp[(2) - (5)].tval), (yyvsp[(3) - (5)].lval)));
  1865.                   write_exp_elt_opcode (pstate, UNOP_CAST); }
  1866.     break;

  1867.   case 92:
  1868. /* Line 1792 of yacc.c  */
  1869. #line 569 "jv-exp.y"
  1870.     {
  1871.                   int last_exp_size = length_of_subexp (pstate->expout,
  1872.                                                         pstate->expout_ptr);
  1873.                   struct type *type;
  1874.                   int i;
  1875.                   int base = pstate->expout_ptr - last_exp_size - 3;

  1876.                   if (base < 0
  1877.                       || pstate->expout->elts[base+2].opcode != OP_TYPE)
  1878.                     error (_("Invalid cast expression"));
  1879.                   type = pstate->expout->elts[base+1].type;
  1880.                   /* Remove the 'Expression' and slide the
  1881.                      UnaryExpressionNotPlusMinus down to replace it.  */
  1882.                   for (i = 0i < last_exp_size;  i++)
  1883.                     pstate->expout->elts[base + i]
  1884.                       = pstate->expout->elts[base + i + 3];
  1885.                   pstate->expout_ptr -= 3;
  1886.                   if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
  1887.                     type = lookup_pointer_type (type);
  1888.                   write_exp_elt_opcode (pstate, UNOP_CAST);
  1889.                   write_exp_elt_type (pstate, type);
  1890.                   write_exp_elt_opcode (pstate, UNOP_CAST);
  1891.                 }
  1892.     break;

  1893.   case 93:
  1894. /* Line 1792 of yacc.c  */
  1895. #line 593 "jv-exp.y"
  1896.     { write_exp_elt_opcode (pstate, UNOP_CAST);
  1897.                   write_exp_elt_type (pstate,
  1898.                                       java_array_type (java_type_from_name
  1899.                                                        ((yyvsp[(2) - (5)].sval)), (yyvsp[(3) - (5)].lval)));
  1900.                   write_exp_elt_opcode (pstate, UNOP_CAST); }
  1901.     break;

  1902.   case 95:
  1903. /* Line 1792 of yacc.c  */
  1904. #line 604 "jv-exp.y"
  1905.     { write_exp_elt_opcode (pstate, BINOP_MUL); }
  1906.     break;

  1907.   case 96:
  1908. /* Line 1792 of yacc.c  */
  1909. #line 606 "jv-exp.y"
  1910.     { write_exp_elt_opcode (pstate, BINOP_DIV); }
  1911.     break;

  1912.   case 97:
  1913. /* Line 1792 of yacc.c  */
  1914. #line 608 "jv-exp.y"
  1915.     { write_exp_elt_opcode (pstate, BINOP_REM); }
  1916.     break;

  1917.   case 99:
  1918. /* Line 1792 of yacc.c  */
  1919. #line 614 "jv-exp.y"
  1920.     { write_exp_elt_opcode (pstate, BINOP_ADD); }
  1921.     break;

  1922.   case 100:
  1923. /* Line 1792 of yacc.c  */
  1924. #line 616 "jv-exp.y"
  1925.     { write_exp_elt_opcode (pstate, BINOP_SUB); }
  1926.     break;

  1927.   case 102:
  1928. /* Line 1792 of yacc.c  */
  1929. #line 622 "jv-exp.y"
  1930.     { write_exp_elt_opcode (pstate, BINOP_LSH); }
  1931.     break;

  1932.   case 103:
  1933. /* Line 1792 of yacc.c  */
  1934. #line 624 "jv-exp.y"
  1935.     { write_exp_elt_opcode (pstate, BINOP_RSH); }
  1936.     break;

  1937.   case 105:
  1938. /* Line 1792 of yacc.c  */
  1939. #line 631 "jv-exp.y"
  1940.     { write_exp_elt_opcode (pstate, BINOP_LESS); }
  1941.     break;

  1942.   case 106:
  1943. /* Line 1792 of yacc.c  */
  1944. #line 633 "jv-exp.y"
  1945.     { write_exp_elt_opcode (pstate, BINOP_GTR); }
  1946.     break;

  1947.   case 107:
  1948. /* Line 1792 of yacc.c  */
  1949. #line 635 "jv-exp.y"
  1950.     { write_exp_elt_opcode (pstate, BINOP_LEQ); }
  1951.     break;

  1952.   case 108:
  1953. /* Line 1792 of yacc.c  */
  1954. #line 637 "jv-exp.y"
  1955.     { write_exp_elt_opcode (pstate, BINOP_GEQ); }
  1956.     break;

  1957.   case 110:
  1958. /* Line 1792 of yacc.c  */
  1959. #line 644 "jv-exp.y"
  1960.     { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
  1961.     break;

  1962.   case 111:
  1963. /* Line 1792 of yacc.c  */
  1964. #line 646 "jv-exp.y"
  1965.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
  1966.     break;

  1967.   case 113:
  1968. /* Line 1792 of yacc.c  */
  1969. #line 652 "jv-exp.y"
  1970.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1971.     break;

  1972.   case 115:
  1973. /* Line 1792 of yacc.c  */
  1974. #line 658 "jv-exp.y"
  1975.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  1976.     break;

  1977.   case 117:
  1978. /* Line 1792 of yacc.c  */
  1979. #line 663 "jv-exp.y"
  1980.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1981.     break;

  1982.   case 119:
  1983. /* Line 1792 of yacc.c  */
  1984. #line 669 "jv-exp.y"
  1985.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
  1986.     break;

  1987.   case 121:
  1988. /* Line 1792 of yacc.c  */
  1989. #line 675 "jv-exp.y"
  1990.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
  1991.     break;

  1992.   case 123:
  1993. /* Line 1792 of yacc.c  */
  1994. #line 681 "jv-exp.y"
  1995.     { write_exp_elt_opcode (pstate, TERNOP_COND); }
  1996.     break;

  1997.   case 126:
  1998. /* Line 1792 of yacc.c  */
  1999. #line 691 "jv-exp.y"
  2000.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
  2001.     break;

  2002.   case 127:
  2003. /* Line 1792 of yacc.c  */
  2004. #line 693 "jv-exp.y"
  2005.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY);
  2006.                   write_exp_elt_opcode (pstate, (yyvsp[(2) - (3)].opcode));
  2007.                   write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); }
  2008.     break;

  2009.   case 128:
  2010. /* Line 1792 of yacc.c  */
  2011. #line 700 "jv-exp.y"
  2012.     { push_expression_name (pstate, (yyvsp[(1) - (1)].sval)); }
  2013.     break;


  2014. /* Line 1792 of yacc.c  */
  2015. #line 2311 "jv-exp.c"
  2016.       default: break;
  2017.     }
  2018.   /* User semantic actions sometimes alter yychar, and that requires
  2019.      that yytoken be updated with the new translation.  We take the
  2020.      approach of translating immediately before every use of yytoken.
  2021.      One alternative is translating here after every semantic action,
  2022.      but that translation would be missed if the semantic action invokes
  2023.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  2024.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  2025.      incorrect destructor might then be invoked immediately.  In the
  2026.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  2027.      to an incorrect destructor call or verbose syntax error message
  2028.      before the lookahead is translated.  */
  2029.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  2030.   YYPOPSTACK (yylen);
  2031.   yylen = 0;
  2032.   YY_STACK_PRINT (yyss, yyssp);

  2033.   *++yyvsp = yyval;

  2034.   /* Now `shift' the result of the reduction.  Determine what state
  2035.      that goes to, based on the state we popped back to and the rule
  2036.      number reduced by.  */

  2037.   yyn = yyr1[yyn];

  2038.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  2039.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  2040.     yystate = yytable[yystate];
  2041.   else
  2042.     yystate = yydefgoto[yyn - YYNTOKENS];

  2043.   goto yynewstate;


  2044. /*------------------------------------.
  2045. | yyerrlab -- here on detecting error |
  2046. `------------------------------------*/
  2047. yyerrlab:
  2048.   /* Make sure we have latest lookahead translation.  See comments at
  2049.      user semantic actions for why this is necessary.  */
  2050.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  2051.   /* If not already recovering from an error, report this error.  */
  2052.   if (!yyerrstatus)
  2053.     {
  2054.       ++yynerrs;
  2055. #if ! YYERROR_VERBOSE
  2056.       yyerror (YY_("syntax error"));
  2057. #else
  2058. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  2059.                                         yyssp, yytoken)
  2060.       {
  2061.         char const *yymsgp = YY_("syntax error");
  2062.         int yysyntax_error_status;
  2063.         yysyntax_error_status = YYSYNTAX_ERROR;
  2064.         if (yysyntax_error_status == 0)
  2065.           yymsgp = yymsg;
  2066.         else if (yysyntax_error_status == 1)
  2067.           {
  2068.             if (yymsg != yymsgbuf)
  2069.               YYSTACK_FREE (yymsg);
  2070.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  2071.             if (!yymsg)
  2072.               {
  2073.                 yymsg = yymsgbuf;
  2074.                 yymsg_alloc = sizeof yymsgbuf;
  2075.                 yysyntax_error_status = 2;
  2076.               }
  2077.             else
  2078.               {
  2079.                 yysyntax_error_status = YYSYNTAX_ERROR;
  2080.                 yymsgp = yymsg;
  2081.               }
  2082.           }
  2083.         yyerror (yymsgp);
  2084.         if (yysyntax_error_status == 2)
  2085.           goto yyexhaustedlab;
  2086.       }
  2087. # undef YYSYNTAX_ERROR
  2088. #endif
  2089.     }



  2090.   if (yyerrstatus == 3)
  2091.     {
  2092.       /* If just tried and failed to reuse lookahead token after an
  2093.          error, discard it.  */

  2094.       if (yychar <= YYEOF)
  2095.         {
  2096.           /* Return failure if at end of input.  */
  2097.           if (yychar == YYEOF)
  2098.             YYABORT;
  2099.         }
  2100.       else
  2101.         {
  2102.           yydestruct ("Error: discarding",
  2103.                       yytoken, &yylval);
  2104.           yychar = YYEMPTY;
  2105.         }
  2106.     }

  2107.   /* Else will try to reuse lookahead token after shifting the error
  2108.      token.  */
  2109.   goto yyerrlab1;


  2110. /*---------------------------------------------------.
  2111. | yyerrorlab -- error raised explicitly by YYERROR.  |
  2112. `---------------------------------------------------*/
  2113. yyerrorlab:

  2114.   /* Pacify compilers like GCC when the user code never invokes
  2115.      YYERROR and the label yyerrorlab therefore never appears in user
  2116.      code.  */
  2117.   if (/*CONSTCOND*/ 0)
  2118.      goto yyerrorlab;

  2119.   /* Do not reclaim the symbols of the rule which action triggered
  2120.      this YYERROR.  */
  2121.   YYPOPSTACK (yylen);
  2122.   yylen = 0;
  2123.   YY_STACK_PRINT (yyss, yyssp);
  2124.   yystate = *yyssp;
  2125.   goto yyerrlab1;


  2126. /*-------------------------------------------------------------.
  2127. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  2128. `-------------------------------------------------------------*/
  2129. yyerrlab1:
  2130.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  2131.   for (;;)
  2132.     {
  2133.       yyn = yypact[yystate];
  2134.       if (!yypact_value_is_default (yyn))
  2135.         {
  2136.           yyn += YYTERROR;
  2137.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  2138.             {
  2139.               yyn = yytable[yyn];
  2140.               if (0 < yyn)
  2141.                 break;
  2142.             }
  2143.         }

  2144.       /* Pop the current state because it cannot handle the error token.  */
  2145.       if (yyssp == yyss)
  2146.         YYABORT;


  2147.       yydestruct ("Error: popping",
  2148.                   yystos[yystate], yyvsp);
  2149.       YYPOPSTACK (1);
  2150.       yystate = *yyssp;
  2151.       YY_STACK_PRINT (yyss, yyssp);
  2152.     }

  2153.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  2154.   *++yyvsp = yylval;
  2155.   YY_IGNORE_MAYBE_UNINITIALIZED_END


  2156.   /* Shift the error token.  */
  2157.   YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);

  2158.   yystate = yyn;
  2159.   goto yynewstate;


  2160. /*-------------------------------------.
  2161. | yyacceptlab -- YYACCEPT comes here.  |
  2162. `-------------------------------------*/
  2163. yyacceptlab:
  2164.   yyresult = 0;
  2165.   goto yyreturn;

  2166. /*-----------------------------------.
  2167. | yyabortlab -- YYABORT comes here.  |
  2168. `-----------------------------------*/
  2169. yyabortlab:
  2170.   yyresult = 1;
  2171.   goto yyreturn;

  2172. #if !defined yyoverflow || YYERROR_VERBOSE
  2173. /*-------------------------------------------------.
  2174. | yyexhaustedlab -- memory exhaustion comes here.  |
  2175. `-------------------------------------------------*/
  2176. yyexhaustedlab:
  2177.   yyerror (YY_("memory exhausted"));
  2178.   yyresult = 2;
  2179.   /* Fall through.  */
  2180. #endif

  2181. yyreturn:
  2182.   if (yychar != YYEMPTY)
  2183.     {
  2184.       /* Make sure we have latest lookahead translation.  See comments at
  2185.          user semantic actions for why this is necessary.  */
  2186.       yytoken = YYTRANSLATE (yychar);
  2187.       yydestruct ("Cleanup: discarding lookahead",
  2188.                   yytoken, &yylval);
  2189.     }
  2190.   /* Do not reclaim the symbols of the rule which action triggered
  2191.      this YYABORT or YYACCEPT.  */
  2192.   YYPOPSTACK (yylen);
  2193.   YY_STACK_PRINT (yyss, yyssp);
  2194.   while (yyssp != yyss)
  2195.     {
  2196.       yydestruct ("Cleanup: popping",
  2197.                   yystos[*yyssp], yyvsp);
  2198.       YYPOPSTACK (1);
  2199.     }
  2200. #ifndef yyoverflow
  2201.   if (yyss != yyssa)
  2202.     YYSTACK_FREE (yyss);
  2203. #endif
  2204. #if YYERROR_VERBOSE
  2205.   if (yymsg != yymsgbuf)
  2206.     YYSTACK_FREE (yymsg);
  2207. #endif
  2208.   /* Make sure YYID is used.  */
  2209.   return YYID (yyresult);
  2210. }


  2211. /* Line 2055 of yacc.c  */
  2212. #line 712 "jv-exp.y"

  2213. /* Take care of parsing a number (anything that starts with a digit).
  2214.    Set yylval and return the token type; update lexptr.
  2215.    LEN is the number of characters in it.  */

  2216. /*** Needs some error checking for the float case ***/

  2217. static int
  2218. parse_number (struct parser_state *par_state,
  2219.               const char *p, int len, int parsed_float, YYSTYPE *putithere)
  2220. {
  2221.   ULONGEST n = 0;
  2222.   ULONGEST limit, limit_div_base;

  2223.   int c;
  2224.   int base = input_radix;

  2225.   struct type *type;

  2226.   if (parsed_float)
  2227.     {
  2228.       const char *suffix;
  2229.       int suffix_len;

  2230.       if (! parse_float (p, len, &putithere->typed_val_float.dval, &suffix))
  2231.         return ERROR;

  2232.       suffix_len = p + len - suffix;

  2233.       if (suffix_len == 0)
  2234.         putithere->typed_val_float.type
  2235.           = parse_type (par_state)->builtin_double;
  2236.       else if (suffix_len == 1)
  2237.         {
  2238.           /* See if it has `f' or `d' suffix (float or double).  */
  2239.           if (tolower (*suffix) == 'f')
  2240.             putithere->typed_val_float.type =
  2241.               parse_type (par_state)->builtin_float;
  2242.           else if (tolower (*suffix) == 'd')
  2243.             putithere->typed_val_float.type =
  2244.               parse_type (par_state)->builtin_double;
  2245.           else
  2246.             return ERROR;
  2247.         }
  2248.       else
  2249.         return ERROR;

  2250.       return FLOATING_POINT_LITERAL;
  2251.     }

  2252.   /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
  2253.   if (p[0] == '0')
  2254.     switch (p[1])
  2255.       {
  2256.       case 'x':
  2257.       case 'X':
  2258.         if (len >= 3)
  2259.           {
  2260.             p += 2;
  2261.             base = 16;
  2262.             len -= 2;
  2263.           }
  2264.         break;

  2265.       case 't':
  2266.       case 'T':
  2267.       case 'd':
  2268.       case 'D':
  2269.         if (len >= 3)
  2270.           {
  2271.             p += 2;
  2272.             base = 10;
  2273.             len -= 2;
  2274.           }
  2275.         break;

  2276.       default:
  2277.         base = 8;
  2278.         break;
  2279.       }

  2280.   c = p[len-1];
  2281.   /* A paranoid calculation of (1<<64)-1.  */
  2282.   limit = (ULONGEST)0xffffffff;
  2283.   limit = ((limit << 16) << 16) | limit;
  2284.   if (c == 'l' || c == 'L')
  2285.     {
  2286.       type = parse_java_type (par_state)->builtin_long;
  2287.       len--;
  2288.     }
  2289.   else
  2290.     {
  2291.       type = parse_java_type (par_state)->builtin_int;
  2292.     }
  2293.   limit_div_base = limit / (ULONGEST) base;

  2294.   while (--len >= 0)
  2295.     {
  2296.       c = *p++;
  2297.       if (c >= '0' && c <= '9')
  2298.         c -= '0';
  2299.       else if (c >= 'A' && c <= 'Z')
  2300.         c -= 'A' - 10;
  2301.       else if (c >= 'a' && c <= 'z')
  2302.         c -= 'a' - 10;
  2303.       else
  2304.         return ERROR;        /* Char not a digit */
  2305.       if (c >= base)
  2306.         return ERROR;
  2307.       if (n > limit_div_base
  2308.           || (n *= base) > limit - c)
  2309.         error (_("Numeric constant too large"));
  2310.       n += c;
  2311.         }

  2312.   /* If the type is bigger than a 32-bit signed integer can be, implicitly
  2313.      promote to long.  Java does not do this, so mark it as
  2314.      parse_type (par_state)->builtin_uint64 rather than
  2315.      parse_java_type (par_state)->builtin_long.
  2316.      0x80000000 will become -0x80000000 instead of 0x80000000L, because we
  2317.      don't know the sign at this point.  */
  2318.   if (type == parse_java_type (par_state)->builtin_int
  2319.       && n > (ULONGEST)0x80000000)
  2320.     type = parse_type (par_state)->builtin_uint64;

  2321.   putithere->typed_val_int.val = n;
  2322.   putithere->typed_val_int.type = type;

  2323.   return INTEGER_LITERAL;
  2324. }

  2325. struct token
  2326. {
  2327.   char *operator;
  2328.   int token;
  2329.   enum exp_opcode opcode;
  2330. };

  2331. static const struct token tokentab3[] =
  2332.   {
  2333.     {">>=", ASSIGN_MODIFY, BINOP_RSH},
  2334.     {"<<=", ASSIGN_MODIFY, BINOP_LSH}
  2335.   };

  2336. static const struct token tokentab2[] =
  2337.   {
  2338.     {"+=", ASSIGN_MODIFY, BINOP_ADD},
  2339.     {"-=", ASSIGN_MODIFY, BINOP_SUB},
  2340.     {"*=", ASSIGN_MODIFY, BINOP_MUL},
  2341.     {"/=", ASSIGN_MODIFY, BINOP_DIV},
  2342.     {"%=", ASSIGN_MODIFY, BINOP_REM},
  2343.     {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
  2344.     {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
  2345.     {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
  2346.     {"++", INCREMENT, BINOP_END},
  2347.     {"--", DECREMENT, BINOP_END},
  2348.     {"&&", ANDAND, BINOP_END},
  2349.     {"||", OROR, BINOP_END},
  2350.     {"<<", LSH, BINOP_END},
  2351.     {">>", RSH, BINOP_END},
  2352.     {"==", EQUAL, BINOP_END},
  2353.     {"!=", NOTEQUAL, BINOP_END},
  2354.     {"<=", LEQ, BINOP_END},
  2355.     {">=", GEQ, BINOP_END}
  2356.   };

  2357. /* Read one token, getting characters through lexptr.  */

  2358. static int
  2359. yylex (void)
  2360. {
  2361.   int c;
  2362.   int namelen;
  2363.   unsigned int i;
  2364.   const char *tokstart;
  2365.   const char *tokptr;
  2366.   int tempbufindex;
  2367.   static char *tempbuf;
  2368.   static int tempbufsize;

  2369. retry:

  2370.   prev_lexptr = lexptr;

  2371.   tokstart = lexptr;
  2372.   /* See if it is a special token of length 3.  */
  2373.   for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
  2374.     if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
  2375.       {
  2376.         lexptr += 3;
  2377.         yylval.opcode = tokentab3[i].opcode;
  2378.         return tokentab3[i].token;
  2379.       }

  2380.   /* See if it is a special token of length 2.  */
  2381.   for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
  2382.     if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
  2383.       {
  2384.         lexptr += 2;
  2385.         yylval.opcode = tokentab2[i].opcode;
  2386.         return tokentab2[i].token;
  2387.       }

  2388.   switch (c = *tokstart)
  2389.     {
  2390.     case 0:
  2391.       return 0;

  2392.     case ' ':
  2393.     case '\t':
  2394.     case '\n':
  2395.       lexptr++;
  2396.       goto retry;

  2397.     case '\'':
  2398.       /* We either have a character constant ('0' or '\177' for example)
  2399.          or we have a quoted symbol reference ('foo(int,int)' in C++
  2400.          for example).  */
  2401.       lexptr++;
  2402.       c = *lexptr++;
  2403.       if (c == '\\')
  2404.         c = parse_escape (parse_gdbarch (pstate), &lexptr);
  2405.       else if (c == '\'')
  2406.         error (_("Empty character constant"));

  2407.       yylval.typed_val_int.val = c;
  2408.       yylval.typed_val_int.type = parse_java_type (pstate)->builtin_char;

  2409.       c = *lexptr++;
  2410.       if (c != '\'')
  2411.         {
  2412.           namelen = skip_quoted (tokstart) - tokstart;
  2413.           if (namelen > 2)
  2414.             {
  2415.               lexptr = tokstart + namelen;
  2416.               if (lexptr[-1] != '\'')
  2417.                 error (_("Unmatched single quote"));
  2418.               namelen -= 2;
  2419.               tokstart++;
  2420.               goto tryname;
  2421.             }
  2422.           error (_("Invalid character constant"));
  2423.         }
  2424.       return INTEGER_LITERAL;

  2425.     case '(':
  2426.       paren_depth++;
  2427.       lexptr++;
  2428.       return c;

  2429.     case ')':
  2430.       if (paren_depth == 0)
  2431.         return 0;
  2432.       paren_depth--;
  2433.       lexptr++;
  2434.       return c;

  2435.     case ',':
  2436.       if (comma_terminates && paren_depth == 0)
  2437.         return 0;
  2438.       lexptr++;
  2439.       return c;

  2440.     case '.':
  2441.       /* Might be a floating point number.  */
  2442.       if (lexptr[1] < '0' || lexptr[1] > '9')
  2443.         goto symbol;                /* Nope, must be a symbol.  */
  2444.       /* FALL THRU into number case.  */

  2445.     case '0':
  2446.     case '1':
  2447.     case '2':
  2448.     case '3':
  2449.     case '4':
  2450.     case '5':
  2451.     case '6':
  2452.     case '7':
  2453.     case '8':
  2454.     case '9':
  2455.       {
  2456.         /* It's a number.  */
  2457.         int got_dot = 0, got_e = 0, toktype;
  2458.         const char *p = tokstart;
  2459.         int hex = input_radix > 10;

  2460.         if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
  2461.           {
  2462.             p += 2;
  2463.             hex = 1;
  2464.           }
  2465.         else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
  2466.           {
  2467.             p += 2;
  2468.             hex = 0;
  2469.           }

  2470.         for (;; ++p)
  2471.           {
  2472.             /* This test includes !hex because 'e' is a valid hex digit
  2473.                and thus does not indicate a floating point number when
  2474.                the radix is hex.  */
  2475.             if (!hex && !got_e && (*p == 'e' || *p == 'E'))
  2476.               got_dot = got_e = 1;
  2477.             /* This test does not include !hex, because a '.' always indicates
  2478.                a decimal floating point number regardless of the radix.  */
  2479.             else if (!got_dot && *p == '.')
  2480.               got_dot = 1;
  2481.             else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
  2482.                      && (*p == '-' || *p == '+'))
  2483.               /* This is the sign of the exponent, not the end of the
  2484.                  number.  */
  2485.               continue;
  2486.             /* We will take any letters or digits.  parse_number will
  2487.                complain if past the radix, or if L or U are not final.  */
  2488.             else if ((*p < '0' || *p > '9')
  2489.                      && ((*p < 'a' || *p > 'z')
  2490.                                   && (*p < 'A' || *p > 'Z')))
  2491.               break;
  2492.           }
  2493.         toktype = parse_number (pstate, tokstart, p - tokstart,
  2494.                                 got_dot|got_e, &yylval);
  2495.         if (toktype == ERROR)
  2496.           {
  2497.             char *err_copy = (char *) alloca (p - tokstart + 1);

  2498.             memcpy (err_copy, tokstart, p - tokstart);
  2499.             err_copy[p - tokstart] = 0;
  2500.             error (_("Invalid number \"%s\""), err_copy);
  2501.           }
  2502.         lexptr = p;
  2503.         return toktype;
  2504.       }

  2505.     case '+':
  2506.     case '-':
  2507.     case '*':
  2508.     case '/':
  2509.     case '%':
  2510.     case '|':
  2511.     case '&':
  2512.     case '^':
  2513.     case '~':
  2514.     case '!':
  2515.     case '<':
  2516.     case '>':
  2517.     case '[':
  2518.     case ']':
  2519.     case '?':
  2520.     case ':':
  2521.     case '=':
  2522.     case '{':
  2523.     case '}':
  2524.     symbol:
  2525.       lexptr++;
  2526.       return c;

  2527.     case '"':

  2528.       /* Build the gdb internal form of the input string in tempbuf,
  2529.          translating any standard C escape forms seen.  Note that the
  2530.          buffer is null byte terminated *only* for the convenience of
  2531.          debugging gdb itself and printing the buffer contents when
  2532.          the buffer contains no embedded nulls.  Gdb does not depend
  2533.          upon the buffer being null byte terminated, it uses the length
  2534.          string instead.  This allows gdb to handle C strings (as well
  2535.          as strings in other languages) with embedded null bytes */

  2536.       tokptr = ++tokstart;
  2537.       tempbufindex = 0;

  2538.       do {
  2539.         /* Grow the static temp buffer if necessary, including allocating
  2540.            the first one on demand.  */
  2541.         if (tempbufindex + 1 >= tempbufsize)
  2542.           {
  2543.             tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64);
  2544.           }
  2545.         switch (*tokptr)
  2546.           {
  2547.           case '\0':
  2548.           case '"':
  2549.             /* Do nothing, loop will terminate.  */
  2550.             break;
  2551.           case '\\':
  2552.             tokptr++;
  2553.             c = parse_escape (parse_gdbarch (pstate), &tokptr);
  2554.             if (c == -1)
  2555.               {
  2556.                 continue;
  2557.               }
  2558.             tempbuf[tempbufindex++] = c;
  2559.             break;
  2560.           default:
  2561.             tempbuf[tempbufindex++] = *tokptr++;
  2562.             break;
  2563.           }
  2564.       } while ((*tokptr != '"') && (*tokptr != '\0'));
  2565.       if (*tokptr++ != '"')
  2566.         {
  2567.           error (_("Unterminated string in expression"));
  2568.         }
  2569.       tempbuf[tempbufindex] = '\0';        /* See note above */
  2570.       yylval.sval.ptr = tempbuf;
  2571.       yylval.sval.length = tempbufindex;
  2572.       lexptr = tokptr;
  2573.       return (STRING_LITERAL);
  2574.     }

  2575.   if (!(c == '_' || c == '$'
  2576.         || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
  2577.     /* We must have come across a bad character (e.g. ';').  */
  2578.     error (_("Invalid character '%c' in expression"), c);

  2579.   /* It's a name.  See how long it is.  */
  2580.   namelen = 0;
  2581.   for (c = tokstart[namelen];
  2582.        (c == '_'
  2583.         || c == '$'
  2584.         || (c >= '0' && c <= '9')
  2585.         || (c >= 'a' && c <= 'z')
  2586.         || (c >= 'A' && c <= 'Z')
  2587.         || c == '<');
  2588.        )
  2589.     {
  2590.       if (c == '<')
  2591.         {
  2592.           int i = namelen;
  2593.           while (tokstart[++i] && tokstart[i] != '>');
  2594.           if (tokstart[i] == '>')
  2595.             namelen = i;
  2596.         }
  2597.        c = tokstart[++namelen];
  2598.      }

  2599.   /* The token "if" terminates the expression and is NOT
  2600.      removed from the input stream.  */
  2601.   if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
  2602.     {
  2603.       return 0;
  2604.     }

  2605.   lexptr += namelen;

  2606.   tryname:

  2607.   /* Catch specific keywords.  Should be done with a data structure.  */
  2608.   switch (namelen)
  2609.     {
  2610.     case 7:
  2611.       if (strncmp (tokstart, "boolean", 7) == 0)
  2612.         return BOOLEAN;
  2613.       break;
  2614.     case 6:
  2615.       if (strncmp (tokstart, "double", 6) == 0)
  2616.         return DOUBLE;
  2617.       break;
  2618.     case 5:
  2619.       if (strncmp (tokstart, "short", 5) == 0)
  2620.         return SHORT;
  2621.       if (strncmp (tokstart, "false", 5) == 0)
  2622.         {
  2623.           yylval.lval = 0;
  2624.           return BOOLEAN_LITERAL;
  2625.         }
  2626.       if (strncmp (tokstart, "super", 5) == 0)
  2627.         return SUPER;
  2628.       if (strncmp (tokstart, "float", 5) == 0)
  2629.         return FLOAT;
  2630.       break;
  2631.     case 4:
  2632.       if (strncmp (tokstart, "long", 4) == 0)
  2633.         return LONG;
  2634.       if (strncmp (tokstart, "byte", 4) == 0)
  2635.         return BYTE;
  2636.       if (strncmp (tokstart, "char", 4) == 0)
  2637.         return CHAR;
  2638.       if (strncmp (tokstart, "true", 4) == 0)
  2639.         {
  2640.           yylval.lval = 1;
  2641.           return BOOLEAN_LITERAL;
  2642.         }
  2643.       break;
  2644.     case 3:
  2645.       if (strncmp (tokstart, "int", 3) == 0)
  2646.         return INT;
  2647.       if (strncmp (tokstart, "new", 3) == 0)
  2648.         return NEW;
  2649.       break;
  2650.     default:
  2651.       break;
  2652.     }

  2653.   yylval.sval.ptr = tokstart;
  2654.   yylval.sval.length = namelen;

  2655.   if (*tokstart == '$')
  2656.     {
  2657.       write_dollar_variable (pstate, yylval.sval);
  2658.       return VARIABLE;
  2659.     }

  2660.   /* Input names that aren't symbols but ARE valid hex numbers,
  2661.      when the input radix permits them, can be names or numbers
  2662.      depending on the parse.  Note we support radixes > 16 here.  */
  2663.   if (((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
  2664.        (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
  2665.     {
  2666.       YYSTYPE newlval;        /* Its value is ignored.  */
  2667.       int hextype = parse_number (pstate, tokstart, namelen, 0, &newlval);
  2668.       if (hextype == INTEGER_LITERAL)
  2669.         return NAME_OR_INT;
  2670.     }
  2671.   return IDENTIFIER;
  2672. }

  2673. int
  2674. java_parse (struct parser_state *par_state)
  2675. {
  2676.   int result;
  2677.   struct cleanup *c = make_cleanup_clear_parser_state (&pstate);

  2678.   /* Setting up the parser state.  */
  2679.   gdb_assert (par_state != NULL);
  2680.   pstate = par_state;

  2681.   result = yyparse ();
  2682.   do_cleanups (c);

  2683.   return result;
  2684. }

  2685. void
  2686. yyerror (char *msg)
  2687. {
  2688.   if (prev_lexptr)
  2689.     lexptr = prev_lexptr;

  2690.   if (msg)
  2691.     error (_("%s: near `%s'"), msg, lexptr);
  2692.   else
  2693.     error (_("error in expression, near `%s'"), lexptr);
  2694. }

  2695. static struct type *
  2696. java_type_from_name (struct stoken name)
  2697. {
  2698.   char *tmp = copy_name (name);
  2699.   struct type *typ = java_lookup_class (tmp);
  2700.   if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
  2701.     error (_("No class named `%s'"), tmp);
  2702.   return typ;
  2703. }

  2704. /* If NAME is a valid variable name in this scope, push it and return 1.
  2705.    Otherwise, return 0.  */

  2706. static int
  2707. push_variable (struct parser_state *par_state, struct stoken name)
  2708. {
  2709.   char *tmp = copy_name (name);
  2710.   struct field_of_this_result is_a_field_of_this;
  2711.   struct symbol *sym;

  2712.   sym = lookup_symbol (tmp, expression_context_block, VAR_DOMAIN,
  2713.                        &is_a_field_of_this);
  2714.   if (sym && SYMBOL_CLASS (sym) != LOC_TYPEDEF)
  2715.     {
  2716.       if (symbol_read_needs_frame (sym))
  2717.         {
  2718.           if (innermost_block == 0 ||
  2719.               contained_in (block_found, innermost_block))
  2720.             innermost_block = block_found;
  2721.         }

  2722.       write_exp_elt_opcode (par_state, OP_VAR_VALUE);
  2723.       /* We want to use the selected frame, not another more inner frame
  2724.          which happens to be in the same block.  */
  2725.       write_exp_elt_block (par_state, NULL);
  2726.       write_exp_elt_sym (par_state, sym);
  2727.       write_exp_elt_opcode (par_state, OP_VAR_VALUE);
  2728.       return 1;
  2729.     }
  2730.   if (is_a_field_of_this.type != NULL)
  2731.     {
  2732.       /* it hangs off of `this'.  Must not inadvertently convert from a
  2733.          method call to data ref.  */
  2734.       if (innermost_block == 0 ||
  2735.           contained_in (block_found, innermost_block))
  2736.         innermost_block = block_found;
  2737.       write_exp_elt_opcode (par_state, OP_THIS);
  2738.       write_exp_elt_opcode (par_state, OP_THIS);
  2739.       write_exp_elt_opcode (par_state, STRUCTOP_PTR);
  2740.       write_exp_string (par_state, name);
  2741.       write_exp_elt_opcode (par_state, STRUCTOP_PTR);
  2742.       return 1;
  2743.     }
  2744.   return 0;
  2745. }

  2746. /* Assuming a reference expression has been pushed, emit the
  2747.    STRUCTOP_PTR ops to access the field named NAME.  If NAME is a
  2748.    qualified name (has '.'), generate a field access for each part.  */

  2749. static void
  2750. push_fieldnames (struct parser_state *par_state, struct stoken name)
  2751. {
  2752.   int i;
  2753.   struct stoken token;
  2754.   token.ptr = name.ptr;
  2755.   for (i = 0;  ;  i++)
  2756.     {
  2757.       if (i == name.length || name.ptr[i] == '.')
  2758.         {
  2759.           /* token.ptr is start of current field name.  */
  2760.           token.length = &name.ptr[i] - token.ptr;
  2761.           write_exp_elt_opcode (par_state, STRUCTOP_PTR);
  2762.           write_exp_string (par_state, token);
  2763.           write_exp_elt_opcode (par_state, STRUCTOP_PTR);
  2764.           token.ptr += token.length + 1;
  2765.         }
  2766.       if (i >= name.length)
  2767.         break;
  2768.     }
  2769. }

  2770. /* Helper routine for push_expression_name.
  2771.    Handle a qualified name, where DOT_INDEX is the index of the first '.' */

  2772. static void
  2773. push_qualified_expression_name (struct parser_state *par_state,
  2774.                                 struct stoken name, int dot_index)
  2775. {
  2776.   struct stoken token;
  2777.   char *tmp;
  2778.   struct type *typ;

  2779.   token.ptr = name.ptr;
  2780.   token.length = dot_index;

  2781.   if (push_variable (par_state, token))
  2782.     {
  2783.       token.ptr = name.ptr + dot_index + 1;
  2784.       token.length = name.length - dot_index - 1;
  2785.       push_fieldnames (par_state, token);
  2786.       return;
  2787.     }

  2788.   token.ptr = name.ptr;
  2789.   for (;;)
  2790.     {
  2791.       token.length = dot_index;
  2792.       tmp = copy_name (token);
  2793.       typ = java_lookup_class (tmp);
  2794.       if (typ != NULL)
  2795.         {
  2796.           if (dot_index == name.length)
  2797.             {
  2798.               write_exp_elt_opcode (par_state, OP_TYPE);
  2799.               write_exp_elt_type (par_state, typ);
  2800.               write_exp_elt_opcode (par_state, OP_TYPE);
  2801.               return;
  2802.             }
  2803.           dot_index++;  /* Skip '.' */
  2804.           name.ptr += dot_index;
  2805.           name.length -= dot_index;
  2806.           dot_index = 0;
  2807.           while (dot_index < name.length && name.ptr[dot_index] != '.')
  2808.             dot_index++;
  2809.           token.ptr = name.ptr;
  2810.           token.length = dot_index;
  2811.           write_exp_elt_opcode (par_state, OP_SCOPE);
  2812.           write_exp_elt_type (par_state, typ);
  2813.           write_exp_string (par_state, token);
  2814.           write_exp_elt_opcode (par_state, OP_SCOPE);
  2815.           if (dot_index < name.length)
  2816.             {
  2817.               dot_index++;
  2818.               name.ptr += dot_index;
  2819.               name.length -= dot_index;
  2820.               push_fieldnames (par_state, name);
  2821.             }
  2822.           return;
  2823.         }
  2824.       else if (dot_index >= name.length)
  2825.         break;
  2826.       dot_index++;  /* Skip '.' */
  2827.       while (dot_index < name.length && name.ptr[dot_index] != '.')
  2828.         dot_index++;
  2829.     }
  2830.   error (_("unknown type `%.*s'"), name.length, name.ptr);
  2831. }

  2832. /* Handle Name in an expression (or LHS).
  2833.    Handle VAR, TYPE, TYPE.FIELD1....FIELDN and VAR.FIELD1....FIELDN.  */

  2834. static void
  2835. push_expression_name (struct parser_state *par_state, struct stoken name)
  2836. {
  2837.   char *tmp;
  2838.   struct type *typ;
  2839.   int i;

  2840.   for (i = 0i < name.length;  i++)
  2841.     {
  2842.       if (name.ptr[i] == '.')
  2843.         {
  2844.           /* It's a Qualified Expression Name.  */
  2845.           push_qualified_expression_name (par_state, name, i);
  2846.           return;
  2847.         }
  2848.     }

  2849.   /* It's a Simple Expression Name.  */

  2850.   if (push_variable (par_state, name))
  2851.     return;
  2852.   tmp = copy_name (name);
  2853.   typ = java_lookup_class (tmp);
  2854.   if (typ != NULL)
  2855.     {
  2856.       write_exp_elt_opcode (par_state, OP_TYPE);
  2857.       write_exp_elt_type (par_state, typ);
  2858.       write_exp_elt_opcode (par_state, OP_TYPE);
  2859.     }
  2860.   else
  2861.     {
  2862.       struct bound_minimal_symbol msymbol;

  2863.       msymbol = lookup_bound_minimal_symbol (tmp);
  2864.       if (msymbol.minsym != NULL)
  2865.         write_exp_msymbol (par_state, msymbol);
  2866.       else if (!have_full_symbols () && !have_partial_symbols ())
  2867.         error (_("No symbol table is loaded.  Use the \"file\" command"));
  2868.       else
  2869.         error (_("No symbol \"%s\" in current context."), tmp);
  2870.     }

  2871. }


  2872. /* The following two routines, copy_exp and insert_exp, aren't specific to
  2873.    Java, so they could go in parse.c, but their only purpose is to support
  2874.    the parsing kludges we use in this file, so maybe it's best to isolate
  2875.    them here.  */

  2876. /* Copy the expression whose last element is at index ENDPOS - 1 in EXPR
  2877.    into a freshly xmalloc'ed struct expression.  Its language_defn is set
  2878.    to null.  */
  2879. static struct expression *
  2880. copy_exp (struct expression *expr, int endpos)
  2881. {
  2882.   int len = length_of_subexp (expr, endpos);
  2883.   struct expression *new
  2884.     = (struct expression *) xmalloc (sizeof (*new) + EXP_ELEM_TO_BYTES (len));

  2885.   new->nelts = len;
  2886.   memcpy (new->elts, expr->elts + endpos - len, EXP_ELEM_TO_BYTES (len));
  2887.   new->language_defn = 0;

  2888.   return new;
  2889. }

  2890. /* Insert the expression NEW into the current expression (expout) at POS.  */
  2891. static void
  2892. insert_exp (struct parser_state *par_state, int pos, struct expression *new)
  2893. {
  2894.   int newlen = new->nelts;
  2895.   int i;

  2896.   /* Grow expout if necessary.  In this function's only use at present,
  2897.      this should never be necessary.  */
  2898.   increase_expout_size (par_state, newlen);

  2899.   for (i = par_state->expout_ptr - 1; i >= pos; i--)
  2900.     par_state->expout->elts[i + newlen] = par_state->expout->elts[i];

  2901.   memcpy (par_state->expout->elts + pos, new->elts,
  2902.           EXP_ELEM_TO_BYTES (newlen));
  2903.   par_state->expout_ptr += newlen;
  2904. }