gdb/d-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 39 "d-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 "c-lang.h"
  55. #include "d-lang.h"
  56. #include "bfd.h" /* Required by objfiles.h.  */
  57. #include "symfile.h" /* Required by objfiles.h.  */
  58. #include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
  59. #include "charset.h"
  60. #include "block.h"

  61. #define parse_type(ps) builtin_type (parse_gdbarch (ps))
  62. #define parse_d_type(ps) builtin_d_type (parse_gdbarch (ps))

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

  69. #define        yymaxdepth d_maxdepth
  70. #define        yyparse        d_parse_internal
  71. #define        yylex        d_lex
  72. #define        yyerror        d_error
  73. #define        yylval        d_lval
  74. #define        yychar        d_char
  75. #define        yydebug        d_debug
  76. #define        yypact        d_pact
  77. #define        yyr1        d_r1
  78. #define        yyr2        d_r2
  79. #define        yydef        d_def
  80. #define        yychk        d_chk
  81. #define        yypgo        d_pgo
  82. #define        yyact        d_act
  83. #define        yyexca        d_exca
  84. #define        yyerrflag d_errflag
  85. #define        yynerrs        d_nerrs
  86. #define        yyps        d_ps
  87. #define        yypv        d_pv
  88. #define        yys        d_s
  89. #define        yy_yys        d_yys
  90. #define        yystate        d_state
  91. #define        yytmp        d_tmp
  92. #define        yyv        d_v
  93. #define        yy_yyv        d_yyv
  94. #define        yyval        d_val
  95. #define        yylloc        d_lloc
  96. #define        yyreds        d_reds        /* With YYDEBUG defined */
  97. #define        yytoks        d_toks        /* With YYDEBUG defined */
  98. #define        yyname        d_name        /* With YYDEBUG defined */
  99. #define        yyrule        d_rule        /* With YYDEBUG defined */
  100. #define        yylhs        d_yylhs
  101. #define        yylen        d_yylen
  102. #define        yydefre        d_yydefred
  103. #define        yydgoto        d_yydgoto
  104. #define        yysindex d_yysindex
  105. #define        yyrindex d_yyrindex
  106. #define        yygindex d_yygindex
  107. #define        yytable        d_yytable
  108. #define        yycheck        d_yycheck
  109. #define        yyss        d_yyss
  110. #define        yysslim        d_yysslim
  111. #define        yyssp        d_yyssp
  112. #define        yystacksize d_yystacksize
  113. #define        yyvs        d_yyvs
  114. #define        yyvsp        d_yyvsp

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

  118. #define YYFPRINTF parser_fprintf

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

  121. static struct parser_state *pstate = NULL;

  122. int yyparse (void);

  123. static int yylex (void);

  124. void yyerror (char *);


  125. /* Line 371 of yacc.c  */
  126. #line 160 "d-exp.c"

  127. # ifndef YY_NULL
  128. #  if defined __cplusplus && 201103L <= __cplusplus
  129. #   define YY_NULL nullptr
  130. #  else
  131. #   define YY_NULL 0
  132. #  endif
  133. # endif

  134. /* Enabling verbose error messages.  */
  135. #ifdef YYERROR_VERBOSE
  136. # undef YYERROR_VERBOSE
  137. # define YYERROR_VERBOSE 1
  138. #else
  139. # define YYERROR_VERBOSE 0
  140. #endif


  141. /* Enabling traces.  */
  142. #ifndef YYDEBUG
  143. # define YYDEBUG 0
  144. #endif
  145. #if YYDEBUG
  146. extern int yydebug;
  147. #endif

  148. /* Tokens.  */
  149. #ifndef YYTOKENTYPE
  150. # define YYTOKENTYPE
  151.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  152.       know about them.  */
  153.    enum yytokentype {
  154.      IDENTIFIER = 258,
  155.      TYPENAME = 259,
  156.      COMPLETE = 260,
  157.      NAME_OR_INT = 261,
  158.      INTEGER_LITERAL = 262,
  159.      FLOAT_LITERAL = 263,
  160.      CHARACTER_LITERAL = 264,
  161.      STRING_LITERAL = 265,
  162.      ENTRY = 266,
  163.      ERROR = 267,
  164.      TRUE_KEYWORD = 268,
  165.      FALSE_KEYWORD = 269,
  166.      NULL_KEYWORD = 270,
  167.      SUPER_KEYWORD = 271,
  168.      CAST_KEYWORD = 272,
  169.      SIZEOF_KEYWORD = 273,
  170.      TYPEOF_KEYWORD = 274,
  171.      TYPEID_KEYWORD = 275,
  172.      INIT_KEYWORD = 276,
  173.      IMMUTABLE_KEYWORD = 277,
  174.      CONST_KEYWORD = 278,
  175.      SHARED_KEYWORD = 279,
  176.      STRUCT_KEYWORD = 280,
  177.      UNION_KEYWORD = 281,
  178.      CLASS_KEYWORD = 282,
  179.      INTERFACE_KEYWORD = 283,
  180.      ENUM_KEYWORD = 284,
  181.      TEMPLATE_KEYWORD = 285,
  182.      DELEGATE_KEYWORD = 286,
  183.      FUNCTION_KEYWORD = 287,
  184.      DOLLAR_VARIABLE = 288,
  185.      ASSIGN_MODIFY = 289,
  186.      OROR = 290,
  187.      ANDAND = 291,
  188.      GEQ = 292,
  189.      LEQ = 293,
  190.      NOTEQUAL = 294,
  191.      EQUAL = 295,
  192.      RSH = 296,
  193.      LSH = 297,
  194.      HATHAT = 298,
  195.      NOTIDENTITY = 299,
  196.      IDENTITY = 300,
  197.      DECREMENT = 301,
  198.      INCREMENT = 302,
  199.      DOTDOT = 303
  200.    };
  201. #endif
  202. /* Tokens.  */
  203. #define IDENTIFIER 258
  204. #define TYPENAME 259
  205. #define COMPLETE 260
  206. #define NAME_OR_INT 261
  207. #define INTEGER_LITERAL 262
  208. #define FLOAT_LITERAL 263
  209. #define CHARACTER_LITERAL 264
  210. #define STRING_LITERAL 265
  211. #define ENTRY 266
  212. #define ERROR 267
  213. #define TRUE_KEYWORD 268
  214. #define FALSE_KEYWORD 269
  215. #define NULL_KEYWORD 270
  216. #define SUPER_KEYWORD 271
  217. #define CAST_KEYWORD 272
  218. #define SIZEOF_KEYWORD 273
  219. #define TYPEOF_KEYWORD 274
  220. #define TYPEID_KEYWORD 275
  221. #define INIT_KEYWORD 276
  222. #define IMMUTABLE_KEYWORD 277
  223. #define CONST_KEYWORD 278
  224. #define SHARED_KEYWORD 279
  225. #define STRUCT_KEYWORD 280
  226. #define UNION_KEYWORD 281
  227. #define CLASS_KEYWORD 282
  228. #define INTERFACE_KEYWORD 283
  229. #define ENUM_KEYWORD 284
  230. #define TEMPLATE_KEYWORD 285
  231. #define DELEGATE_KEYWORD 286
  232. #define FUNCTION_KEYWORD 287
  233. #define DOLLAR_VARIABLE 288
  234. #define ASSIGN_MODIFY 289
  235. #define OROR 290
  236. #define ANDAND 291
  237. #define GEQ 292
  238. #define LEQ 293
  239. #define NOTEQUAL 294
  240. #define EQUAL 295
  241. #define RSH 296
  242. #define LSH 297
  243. #define HATHAT 298
  244. #define NOTIDENTITY 299
  245. #define IDENTITY 300
  246. #define DECREMENT 301
  247. #define INCREMENT 302
  248. #define DOTDOT 303



  249. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  250. typedef union YYSTYPE
  251. {
  252. /* Line 387 of yacc.c  */
  253. #line 136 "d-exp.y"

  254.     struct {
  255.       LONGEST val;
  256.       struct type *type;
  257.     } typed_val_int;
  258.     struct {
  259.       DOUBLEST dval;
  260.       struct type *type;
  261.     } typed_val_float;
  262.     struct symbol *sym;
  263.     struct type *tval;
  264.     struct typed_stoken tsval;
  265.     struct stoken sval;
  266.     struct ttype tsym;
  267.     struct symtoken ssym;
  268.     int ival;
  269.     struct block *bval;
  270.     enum exp_opcode opcode;
  271.     struct stoken_vector svec;


  272. /* Line 387 of yacc.c  */
  273. #line 318 "d-exp.c"
  274. } YYSTYPE;
  275. # define YYSTYPE_IS_TRIVIAL 1
  276. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  277. # define YYSTYPE_IS_DECLARED 1
  278. #endif

  279. extern YYSTYPE yylval;

  280. #ifdef YYPARSE_PARAM
  281. #if defined __STDC__ || defined __cplusplus
  282. int yyparse (void *YYPARSE_PARAM);
  283. #else
  284. int yyparse ();
  285. #endif
  286. #else /* ! YYPARSE_PARAM */
  287. #if defined __STDC__ || defined __cplusplus
  288. int yyparse (void);
  289. #else
  290. int yyparse ();
  291. #endif
  292. #endif /* ! YYPARSE_PARAM */



  293. /* Copy the second part of user declarations.  */
  294. /* Line 390 of yacc.c  */
  295. #line 157 "d-exp.y"

  296. /* YYSTYPE gets defined by %union */
  297. static int parse_number (struct parser_state *, const char *,
  298.                          int, int, YYSTYPE *);

  299. static void push_expression_name (struct parser_state *, struct stoken);

  300. /* Line 390 of yacc.c  */
  301. #line 354 "d-exp.c"

  302. #ifdef short
  303. # undef short
  304. #endif

  305. #ifdef YYTYPE_UINT8
  306. typedef YYTYPE_UINT8 yytype_uint8;
  307. #else
  308. typedef unsigned char yytype_uint8;
  309. #endif

  310. #ifdef YYTYPE_INT8
  311. typedef YYTYPE_INT8 yytype_int8;
  312. #elif (defined __STDC__ || defined __C99__FUNC__ \
  313.      || defined __cplusplus || defined _MSC_VER)
  314. typedef signed char yytype_int8;
  315. #else
  316. typedef short int yytype_int8;
  317. #endif

  318. #ifdef YYTYPE_UINT16
  319. typedef YYTYPE_UINT16 yytype_uint16;
  320. #else
  321. typedef unsigned short int yytype_uint16;
  322. #endif

  323. #ifdef YYTYPE_INT16
  324. typedef YYTYPE_INT16 yytype_int16;
  325. #else
  326. typedef short int yytype_int16;
  327. #endif

  328. #ifndef YYSIZE_T
  329. # ifdef __SIZE_TYPE__
  330. #  define YYSIZE_T __SIZE_TYPE__
  331. # elif defined size_t
  332. #  define YYSIZE_T size_t
  333. # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
  334.      || defined __cplusplus || defined _MSC_VER)
  335. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  336. #  define YYSIZE_T size_t
  337. # else
  338. #  define YYSIZE_T unsigned int
  339. # endif
  340. #endif

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

  342. #ifndef YY_
  343. # if defined YYENABLE_NLS && YYENABLE_NLS
  344. #  if ENABLE_NLS
  345. #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
  346. #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
  347. #  endif
  348. # endif
  349. # ifndef YY_
  350. #  define YY_(Msgid) Msgid
  351. # endif
  352. #endif

  353. /* Suppress unused-variable warnings by "using" E.  */
  354. #if ! defined lint || defined __GNUC__
  355. # define YYUSE(E) ((void) (E))
  356. #else
  357. # define YYUSE(E) /* empty */
  358. #endif

  359. /* Identity function, used to suppress warnings about constant conditions.  */
  360. #ifndef lint
  361. # define YYID(N) (N)
  362. #else
  363. #if (defined __STDC__ || defined __C99__FUNC__ \
  364.      || defined __cplusplus || defined _MSC_VER)
  365. static int
  366. YYID (int yyi)
  367. #else
  368. static int
  369. YYID (yyi)
  370.     int yyi;
  371. #endif
  372. {
  373.   return yyi;
  374. }
  375. #endif

  376. #if ! defined yyoverflow || YYERROR_VERBOSE

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

  378. # ifdef YYSTACK_USE_ALLOCA
  379. #  if YYSTACK_USE_ALLOCA
  380. #   ifdef __GNUC__
  381. #    define YYSTACK_ALLOC __builtin_alloca
  382. #   elif defined __BUILTIN_VA_ARG_INCR
  383. #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
  384. #   elif defined _AIX
  385. #    define YYSTACK_ALLOC __alloca
  386. #   elif defined _MSC_VER
  387. #    define alloca _alloca
  388. #   else
  389. #    define YYSTACK_ALLOC alloca
  390. #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  391.      || defined __cplusplus || defined _MSC_VER)
  392. #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  393.       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
  394. #     ifndef EXIT_SUCCESS
  395. #      define EXIT_SUCCESS 0
  396. #     endif
  397. #    endif
  398. #   endif
  399. #  endif
  400. # endif

  401. # ifdef YYSTACK_ALLOC
  402.    /* Pacify GCC's `empty if-body' warning.  */
  403. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
  404. #  ifndef YYSTACK_ALLOC_MAXIMUM
  405.     /* The OS might guarantee only one guard page at the bottom of the stack,
  406.        and a page size can be as small as 4096 bytes.  So we cannot safely
  407.        invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
  408.        to allow for a few compiler-allocated temporary stack slots.  */
  409. #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
  410. #  endif
  411. # else
  412. #  define YYSTACK_ALLOC YYMALLOC
  413. #  define YYSTACK_FREE YYFREE
  414. #  ifndef YYSTACK_ALLOC_MAXIMUM
  415. #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
  416. #  endif
  417. #  if (defined __cplusplus && ! defined EXIT_SUCCESS \
  418.        && ! ((defined YYMALLOC || defined xmalloc) \
  419.              && (defined YYFREE || defined xfree)))
  420. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  421. #   ifndef EXIT_SUCCESS
  422. #    define EXIT_SUCCESS 0
  423. #   endif
  424. #  endif
  425. #  ifndef YYMALLOC
  426. #   define YYMALLOC xmalloc
  427. #   if ! defined xmalloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  428.      || defined __cplusplus || defined _MSC_VER)
  429. void *xmalloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
  430. #   endif
  431. #  endif
  432. #  ifndef YYFREE
  433. #   define YYFREE xfree
  434. #   if ! defined xfree && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  435.      || defined __cplusplus || defined _MSC_VER)
  436. void xfree (void *); /* INFRINGES ON USER NAME SPACE */
  437. #   endif
  438. #  endif
  439. # endif
  440. #endif /* ! defined yyoverflow || YYERROR_VERBOSE */


  441. #if (! defined yyoverflow \
  442.      && (! defined __cplusplus \
  443.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

  444. /* A type that is properly aligned for any stack member.  */
  445. union yyalloc
  446. {
  447.   yytype_int16 yyss_alloc;
  448.   YYSTYPE yyvs_alloc;
  449. };

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

  452. /* The size of an array large to enough to hold all stacks, each with
  453.    N elements.  */
  454. # define YYSTACK_BYTES(N) \
  455.      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
  456.       + YYSTACK_GAP_MAXIMUM)

  457. # define YYCOPY_NEEDED 1

  458. /* Relocate STACK from its old location to the new one.  The
  459.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  460.    elements in the stack, and YYPTR gives the new location of the
  461.    stack.  Advance YYPTR to a properly aligned location for the next
  462.    stack.  */
  463. # define YYSTACK_RELOCATE(Stack_alloc, Stack)                                \
  464.     do                                                                        \
  465.       {                                                                        \
  466.         YYSIZE_T yynewbytes;                                                \
  467.         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                        \
  468.         Stack = &yyptr->Stack_alloc;                                        \
  469.         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
  470.         yyptr += yynewbytes / sizeof (*yyptr);                                \
  471.       }                                                                        \
  472.     while (YYID (0))

  473. #endif

  474. #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
  475. /* Copy COUNT objects from SRC to DST.  The source and destination do
  476.    not overlap.  */
  477. # ifndef YYCOPY
  478. #  if defined __GNUC__ && 1 < __GNUC__
  479. #   define YYCOPY(Dst, Src, Count) \
  480.       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
  481. #  else
  482. #   define YYCOPY(Dst, Src, Count)              \
  483.       do                                        \
  484.         {                                       \
  485.           YYSIZE_T yyi;                         \
  486.           for (yyi = 0; yyi < (Count); yyi++)   \
  487.             (Dst)[yyi] = (Src)[yyi];            \
  488.         }                                       \
  489.       while (YYID (0))
  490. #  endif
  491. # endif
  492. #endif /* !YYCOPY_NEEDED */

  493. /* YYFINAL -- State number of the termination state.  */
  494. #define YYFINAL  79
  495. /* YYLAST -- Last index in YYTABLE.  */
  496. #define YYLAST   236

  497. /* YYNTOKENS -- Number of terminals.  */
  498. #define YYNTOKENS  70
  499. /* YYNNTS -- Number of nonterminals.  */
  500. #define YYNNTS  35
  501. /* YYNRULES -- Number of rules.  */
  502. #define YYNRULES  111
  503. /* YYNRULES -- Number of states.  */
  504. #define YYNSTATES  175

  505. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  506. #define YYUNDEFTOK  2
  507. #define YYMAXUTOK   303

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

  510. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  511. static const yytype_uint8 yytranslate[] =
  512. {
  513.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  514.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  515.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  516.        2,     2,     2,    67,     2,     2,     2,    55,    42,     2,
  517.       63,    68,    53,    51,    35,    52,    61,    54,     2,     2,
  518.        2,     2,     2,     2,     2,     2,     2,     2,    65,     2,
  519.       43,    36,    44,    37,     2,     2,     2,     2,     2,     2,
  520.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  521.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  522.        2,    62,     2,    69,    41,     2,     2,     2,     2,     2,
  523.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  524.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  525.        2,     2,     2,     2,    40,     2,    66,     2,     2,     2,
  526.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  527.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  528.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  529.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  530.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  531.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  532.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  533.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  534.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  535.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  536.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  537.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  538.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  539.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  540.       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  541.       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
  542.       38,    39,    45,    46,    47,    48,    49,    50,    56,    57,
  543.       58,    59,    60,    64
  544. };

  545. #if YYDEBUG
  546. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  547.    YYRHS.  */
  548. static const yytype_uint16 yyprhs[] =
  549. {
  550.        0,     0,     3,     5,     7,     9,    11,    15,    17,    21,
  551.       25,    27,    33,    35,    39,    41,    45,    47,    51,    53,
  552.       57,    59,    63,    65,    67,    69,    71,    75,    79,    83,
  553.       87,    91,    95,    99,   103,   105,   109,   113,   115,   119,
  554.      123,   127,   129,   133,   137,   141,   144,   147,   150,   153,
  555.      156,   159,   162,   165,   167,   169,   175,   180,   182,   186,
  556.      188,   191,   194,   196,   198,   200,   202,   206,   207,   209,
  557.      210,   216,   221,   225,   232,   236,   238,   242,   247,   249,
  558.      251,   253,   255,   257,   259,   261,   263,   265,   267,   271,
  559.      273,   277,   279,   282,   284,   287,   289,   292,   296,   301,
  560.      303,   306,   309,   313,   316,   319,   323,   326,   329,   333,
  561.      336,   339
  562. };

  563. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  564. static const yytype_int8 yyrhs[] =
  565. {
  566.       71,     0,    -1,    72,    -1,   102,    -1,    73,    -1,    74,
  567.       -1,    74,    35,    73,    -1,    75,    -1,    75,    36,    74,
  568.       -1,    75,    34,    74,    -1,    76,    -1,    76,    37,    72,
  569.       65,    75,    -1,    77,    -1,    76,    38,    77,    -1,    78,
  570.       -1,    77,    39,    78,    -1,    79,    -1,    78,    40,    79,
  571.       -1,    80,    -1,    79,    41,    80,    -1,    81,    -1,    80,
  572.       42,    81,    -1,    85,    -1,    82,    -1,    83,    -1,    84,
  573.       -1,    85,    48,    85,    -1,    85,    47,    85,    -1,    85,
  574.       58,    85,    -1,    85,    57,    85,    -1,    85,    43,    85,
  575.       -1,    85,    46,    85,    -1,    85,    44,    85,    -1,    85,
  576.       45,    85,    -1,    86,    -1,    85,    50,    86,    -1,    85,
  577.       49,    86,    -1,    87,    -1,    86,    51,    87,    -1,    86,
  578.       52,    87,    -1,    86,    66,    87,    -1,    88,    -1,    87,
  579.       53,    88,    -1,    87,    54,    88,    -1,    87,    55,    88,
  580.       -1,    42,    88,    -1,    60,    88,    -1,    59,    88,    -1,
  581.       53,    88,    -1,    52,    88,    -1,    51,    88,    -1,    67,
  582.       88,    -1,    66,    88,    -1,    89,    -1,    90,    -1,    17,
  583.       63,   102,    68,    88,    -1,    63,   102,    68,    88,    -1,
  584.       91,    -1,    91,    56,    88,    -1,    98,    -1,    91,    60,
  585.       -1,    91,    59,    -1,    94,    -1,    96,    -1,    97,    -1,
  586.       74,    -1,    92,    35,    74,    -1,    -1,    92,    -1,    -1,
  587.       91,    63,    95,    93,    68,    -1,    91,    62,    92,    69,
  588.       -1,    91,    62,    69,    -1,    91,    62,    74,    64,    74,
  589.       69,    -1,    63,    72,    68,    -1,   100,    -1,   100,    61,
  590.        5,    -1,   100,    61,     3,     5,    -1,    33,    -1,     6,
  591.       -1,    15,    -1,    13,    -1,    14,    -1,     7,    -1,     8,
  592.       -1,     9,    -1,   101,    -1,    99,    -1,    62,    93,    69,
  593.       -1,     3,    -1,   100,    61,     3,    -1,    10,    -1,   101,
  594.       10,    -1,   104,    -1,   104,   103,    -1,    53,    -1,    53,
  595.      103,    -1,    62,     7,    69,    -1,    62,     7,    69,   103,
  596.       -1,     4,    -1,    27,   100,    -1,    27,     5,    -1,    27,
  597.      100,     5,    -1,    25,   100,    -1,    25,     5,    -1,    25,
  598.      100,     5,    -1,    26,   100,    -1,    26,     5,    -1,    26,
  599.      100,     5,    -1,    29,   100,    -1,    29,     5,    -1,    29,
  600.      100,     5,    -1
  601. };

  602. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  603. static const yytype_uint16 yyrline[] =
  604. {
  605.        0,   232,   232,   233,   239,   243,   244,   249,   250,   252,
  606.      259,   260,   265,   266,   271,   272,   277,   278,   283,   284,
  607.      289,   290,   295,   296,   297,   298,   302,   304,   309,   311,
  608.      316,   318,   320,   322,   327,   328,   330,   335,   336,   338,
  609.      340,   345,   346,   348,   350,   354,   356,   358,   360,   362,
  610.      364,   366,   368,   370,   371,   375,   381,   388,   389,   394,
  611.      395,   397,   399,   400,   401,   405,   407,   413,   414,   419,
  612.      418,   427,   440,   442,   447,   449,   451,   460,   466,   468,
  613.      476,   483,   487,   491,   496,   501,   506,   512,   520,   525,
  614.      526,   543,   558,   576,   580,   589,   591,   593,   596,   602,
  615.      604,   607,   610,   613,   616,   619,   622,   625,   628,   631,
  616.      634,   637
  617. };
  618. #endif

  619. #if YYDEBUG || YYERROR_VERBOSE || 0
  620. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  621.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  622. static const char *const yytname[] =
  623. {
  624.   "$end", "error", "$undefined", "IDENTIFIER", "TYPENAME", "COMPLETE",
  625.   "NAME_OR_INT", "INTEGER_LITERAL", "FLOAT_LITERAL", "CHARACTER_LITERAL",
  626.   "STRING_LITERAL", "ENTRY", "ERROR", "TRUE_KEYWORD", "FALSE_KEYWORD",
  627.   "NULL_KEYWORD", "SUPER_KEYWORD", "CAST_KEYWORD", "SIZEOF_KEYWORD",
  628.   "TYPEOF_KEYWORD", "TYPEID_KEYWORD", "INIT_KEYWORD", "IMMUTABLE_KEYWORD",
  629.   "CONST_KEYWORD", "SHARED_KEYWORD", "STRUCT_KEYWORD", "UNION_KEYWORD",
  630.   "CLASS_KEYWORD", "INTERFACE_KEYWORD", "ENUM_KEYWORD", "TEMPLATE_KEYWORD",
  631.   "DELEGATE_KEYWORD", "FUNCTION_KEYWORD", "DOLLAR_VARIABLE",
  632.   "ASSIGN_MODIFY", "','", "'='", "'?'", "OROR", "ANDAND", "'|'", "'^'",
  633.   "'&'", "'<'", "'>'", "GEQ", "LEQ", "NOTEQUAL", "EQUAL", "RSH", "LSH",
  634.   "'+'", "'-'", "'*'", "'/'", "'%'", "HATHAT", "NOTIDENTITY", "IDENTITY",
  635.   "DECREMENT", "INCREMENT", "'.'", "'['", "'('", "DOTDOT", "':'", "'~'",
  636.   "'!'", "')'", "']'", "$accept", "start", "Expression", "CommaExpression",
  637.   "AssignExpression", "ConditionalExpression", "OrOrExpression",
  638.   "AndAndExpression", "OrExpression", "XorExpression", "AndExpression",
  639.   "CmpExpression", "EqualExpression", "IdentityExpression",
  640.   "RelExpression", "ShiftExpression", "AddExpression", "MulExpression",
  641.   "UnaryExpression", "CastExpression", "PowExpression",
  642.   "PostfixExpression", "ArgumentList", "ArgumentList_opt",
  643.   "CallExpression", "$@1", "IndexExpression", "SliceExpression",
  644.   "PrimaryExpression", "ArrayLiteral", "IdentifierExp", "StringExp",
  645.   "TypeExp", "BasicType2", "BasicType", YY_NULL
  646. };
  647. #endif

  648. # ifdef YYPRINT
  649. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  650.    token YYLEX-NUM.  */
  651. static const yytype_uint16 yytoknum[] =
  652. {
  653.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  654.      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
  655.      275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
  656.      285,   286,   287,   288,   289,    44,    61,    63,   290,   291,
  657.      124,    94,    38,    60,    62,   292,   293,   294,   295,   296,
  658.      297,    43,    45,    42,    47,    37,   298,   299,   300,   301,
  659.      302,    46,    91,    40,   303,    58,   126,    33,    41,    93
  660. };
  661. # endif

  662. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  663. static const yytype_uint8 yyr1[] =
  664. {
  665.        0,    70,    71,    71,    72,    73,    73,    74,    74,    74,
  666.       75,    75,    76,    76,    77,    77,    78,    78,    79,    79,
  667.       80,    80,    81,    81,    81,    81,    82,    82,    83,    83,
  668.       84,    84,    84,    84,    85,    85,    85,    86,    86,    86,
  669.       86,    87,    87,    87,    87,    88,    88,    88,    88,    88,
  670.       88,    88,    88,    88,    88,    89,    89,    90,    90,    91,
  671.       91,    91,    91,    91,    91,    92,    92,    93,    93,    95,
  672.       94,    96,    97,    97,    98,    98,    98,    98,    98,    98,
  673.       98,    98,    98,    98,    98,    98,    98,    98,    99,   100,
  674.      100,   101,   101,   102,   102,   103,   103,   103,   103,   104,
  675.      104,   104,   104,   104,   104,   104,   104,   104,   104,   104,
  676.      104,   104
  677. };

  678. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  679. static const yytype_uint8 yyr2[] =
  680. {
  681.        0,     2,     1,     1,     1,     1,     3,     1,     3,     3,
  682.        1,     5,     1,     3,     1,     3,     1,     3,     1,     3,
  683.        1,     3,     1,     1,     1,     1,     3,     3,     3,     3,
  684.        3,     3,     3,     3,     1,     3,     3,     1,     3,     3,
  685.        3,     1,     3,     3,     3,     2,     2,     2,     2,     2,
  686.        2,     2,     2,     1,     1,     5,     4,     1,     3,     1,
  687.        2,     2,     1,     1,     1,     1,     3,     0,     1,     0,
  688.        5,     4,     3,     6,     3,     1,     3,     4,     1,     1,
  689.        1,     1,     1,     1,     1,     1,     1,     1,     3,     1,
  690.        3,     1,     2,     1,     2,     1,     2,     3,     4,     1,
  691.        2,     2,     3,     2,     2,     3,     2,     2,     3,     2,
  692.        2,     3
  693. };

  694. /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
  695.    Performed when YYTABLE doesn't specify something else to do.  Zero
  696.    means the default is an error.  */
  697. static const yytype_uint8 yydefact[] =
  698. {
  699.        0,    89,    99,    79,    83,    84,    85,    91,    81,    82,
  700.       80,     0,     0,     0,     0,     0,    78,     0,     0,     0,
  701.        0,     0,     0,    67,     0,     0,     0,     0,     2,     4,
  702.        5,     7,    10,    12,    14,    16,    18,    20,    23,    24,
  703.       25,    22,    34,    37,    41,    53,    54,    57,    62,    63,
  704.       64,    59,    87,    75,    86,     3,    93,     0,   104,   103,
  705.      107,   106,   101,   100,   110,   109,    45,    50,    49,    48,
  706.       47,    46,    65,    68,     0,     0,     0,    52,    51,     1,
  707.        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  708.        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  709.        0,     0,     0,     0,     0,     0,    61,    60,     0,    69,
  710.        0,    92,    95,     0,    94,     0,   105,     0,   108,   102,
  711.      111,     0,    88,    74,     0,     6,     9,     8,     0,    13,
  712.       15,    17,    19,    21,    30,    32,    33,    31,    27,    26,
  713.       36,    35,    29,    28,    38,    39,    40,    42,    43,    44,
  714.       58,    72,    65,     0,    67,    90,    76,    96,     0,     0,
  715.       90,    66,    56,     0,     0,    71,     0,    77,    97,    55,
  716.       11,     0,    70,    98,    73
  717. };

  718. /* YYDEFGOTO[NTERM-NUM].  */
  719. static const yytype_int16 yydefgoto[] =
  720. {
  721.       -1,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  722.       36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  723.       46,    47,    73,    74,    48,   154,    49,    50,    51,    52,
  724.       53,    54,    55,   114,    56
  725. };

  726. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  727.    STATE-NUM.  */
  728. #define YYPACT_NINF -86
  729. static const yytype_int16 yypact[] =
  730. {
  731.      107,   -86,   -86,   -86,   -86,   -86,   -86,   -86,   -86,   -86,
  732.      -86,   -24,    37,    40,    76,    86,   -86,   169,   169,   169,
  733.      169,   169,   169,   169,   107,   169,   169,    72,   -86,   -86,
  734.       16,    68,    20,    34,    38,    43,    48,   -86,   -86,   -86,
  735.      -86,    51,   -22,    -6,   -86,   -86,   -86,    67,   -86,   -86,
  736.      -86,   -86,   -86,    32,    93,   -86,   -25,     9,   -86,     1,
  737.      -86,    15,   -86,    19,   -86,    21,   -86,   -86,   -86,   -86,
  738.      -86,   -86,   -86,    71,    56,    44,    60,   -86,   -86,   -86,
  739.      169,   169,   169,   169,   169,   169,   169,   169,   169,   169,
  740.      169,   169,   169,   169,   169,   169,   169,   169,   169,   169,
  741.      169,   169,   169,   169,   169,   169,   -86,   -86,     8,   -86,
  742.      132,   -86,   -25,   124,   -86,    73,   -86,   136,   -86,   -86,
  743.      -86,   169,   -86,   -86,   169,   -86,   -86,   -86,    78,    34,
  744.       38,    43,    48,   -86,    14,    14,    14,    14,    14,    14,
  745.      -22,   -22,    14,    14,    -6,    -6,    -6,   -86,   -86,   -86,
  746.      -86,   -86,    80,   -23,   169,   140,   -86,   -86,    77,   169,
  747.      -86,   -86,   -86,   169,   169,   -86,    79,   -86,   -25,   -86,
  748.      -86,    81,   -86,   -86,   -86
  749. };

  750. /* YYPGOTO[NTERM-NUM].  */
  751. static const yytype_int8 yypgoto[] =
  752. {
  753.      -86,   -86,   -14,    74,   -16,   -12,   -86,    69,    70,    66,
  754.       75,    83,   -86,   -86,   -86,    98,    23,   -68,   -17,   -86,
  755.      -86,   -86,    49,     2,   -86,   -86,   -86,   -86,   -86,   -86,
  756.       41,   -86,    -5,   -85,   -86
  757. };

  758. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  759.    positive, shift that token.  If negative, reduce the rule which
  760.    number is the opposite.  If YYTABLE_NINF, syntax error.  */
  761. #define YYTABLE_NINF -1
  762. static const yytype_uint8 yytable[] =
  763. {
  764.       66,    67,    68,    69,    70,    71,   116,    72,    77,    78,
  765.       75,     1,   121,     2,     3,     4,     5,     6,     7,    76,
  766.      118,     8,     9,    10,   119,    11,   120,   157,   112,    99,
  767.      100,   144,   145,   146,    12,    13,    14,   113,    15,    57,
  768.        1,    16,    58,     1,   101,    60,   165,   102,   103,   104,
  769.       17,    80,   115,    59,    61,    63,    65,    83,    84,    18,
  770.       19,    20,   117,    95,    96,   126,   127,    21,    22,   128,
  771.       23,    24,    79,    85,    25,    26,   117,   151,    86,     1,
  772.      117,    62,   117,   173,    87,   147,   148,   149,   150,     1,
  773.       88,    64,   152,   110,    89,    90,    91,    92,    93,    94,
  774.       95,    96,    81,   111,    82,   161,   121,   162,    97,    98,
  775.        1,     2,   123,     3,     4,     5,     6,     7,   140,   141,
  776.        8,     9,    10,   105,    11,   122,   106,   107,   124,   108,
  777.      109,   158,    12,    13,    14,   155,    15,   156,    72,   160,
  778.       16,   159,   169,   163,   164,   167,   168,   172,   171,    17,
  779.      174,   170,   131,   129,   125,   130,   166,   153,    18,    19,
  780.       20,     0,   132,     0,     0,     0,    21,    22,     0,    23,
  781.       24,   133,     1,    25,    26,     3,     4,     5,     6,     7,
  782.        0,     0,     8,     9,    10,     0,    11,   134,   135,   136,
  783.      137,   138,   139,     0,     0,   142,   143,     0,     0,     0,
  784.        0,     0,    16,     0,     0,     0,     0,     0,     0,     0,
  785.        0,    17,     0,     0,     0,     0,     0,     0,     0,     0,
  786.       18,    19,    20,     0,     0,     0,     0,     0,    21,    22,
  787.        0,    23,    24,     0,     0,    25,    26
  788. };

  789. #define yypact_value_is_default(Yystate) \
  790.   (!!((Yystate) == (-86)))

  791. #define yytable_value_is_error(Yytable_value) \
  792.   YYID (0)

  793. static const yytype_int16 yycheck[] =
  794. {
  795.       17,    18,    19,    20,    21,    22,     5,    23,    25,    26,
  796.       24,     3,    35,     4,     6,     7,     8,     9,    10,    24,
  797.        5,    13,    14,    15,     5,    17,     5,   112,    53,    51,
  798.       52,    99,   100,   101,    25,    26,    27,    62,    29,    63,
  799.        3,    33,     5,     3,    66,     5,    69,    53,    54,    55,
  800.       42,    35,    57,    12,    13,    14,    15,    37,    38,    51,
  801.       52,    53,    61,    49,    50,    81,    82,    59,    60,    83,
  802.       62,    63,     0,    39,    66,    67,    61,    69,    40,     3,
  803.       61,     5,    61,   168,    41,   102,   103,   104,   105,     3,
  804.       42,     5,   108,    61,    43,    44,    45,    46,    47,    48,
  805.       49,    50,    34,    10,    36,   121,    35,   124,    57,    58,
  806.        3,     4,    68,     6,     7,     8,     9,    10,    95,    96,
  807.       13,    14,    15,    56,    17,    69,    59,    60,    68,    62,
  808.       63,     7,    25,    26,    27,     3,    29,     5,   154,     3,
  809.       33,    68,   159,    65,    64,     5,    69,    68,   164,    42,
  810.       69,   163,    86,    84,    80,    85,   154,   108,    51,    52,
  811.       53,    -1,    87,    -1,    -1,    -1,    59,    60,    -1,    62,
  812.       63,    88,     3,    66,    67,     6,     7,     8,     9,    10,
  813.       -1,    -1,    13,    14,    15,    -1,    17,    89,    90,    91,
  814.       92,    93,    94,    -1,    -1,    97,    98,    -1,    -1,    -1,
  815.       -1,    -1,    33,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  816.       -1,    42,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  817.       51,    52,    53,    -1,    -1,    -1,    -1,    -1,    59,    60,
  818.       -1,    62,    63,    -1,    -1,    66,    67
  819. };

  820. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  821.    symbol of state STATE-NUM.  */
  822. static const yytype_uint8 yystos[] =
  823. {
  824.        0,     3,     4,     6,     7,     8,     9,    10,    13,    14,
  825.       15,    17,    25,    26,    27,    29,    33,    42,    51,    52,
  826.       53,    59,    60,    62,    63,    66,    67,    71,    72,    73,
  827.       74,    75,    76,    77,    78,    79,    80,    81,    82,    83,
  828.       84,    85,    86,    87,    88,    89,    90,    91,    94,    96,
  829.       97,    98,    99,   100,   101,   102,   104,    63,     5,   100,
  830.        5,   100,     5,   100,     5,   100,    88,    88,    88,    88,
  831.       88,    88,    74,    92,    93,    72,   102,    88,    88,     0,
  832.       35,    34,    36,    37,    38,    39,    40,    41,    42,    43,
  833.       44,    45,    46,    47,    48,    49,    50,    57,    58,    51,
  834.       52,    66,    53,    54,    55,    56,    59,    60,    62,    63,
  835.       61,    10,    53,    62,   103,   102,     5,    61,     5,     5,
  836.        5,    35,    69,    68,    68,    73,    74,    74,    72,    77,
  837.       78,    79,    80,    81,    85,    85,    85,    85,    85,    85,
  838.       86,    86,    85,    85,    87,    87,    87,    88,    88,    88,
  839.       88,    69,    74,    92,    95,     3,     5,   103,     7,    68,
  840.        3,    74,    88,    65,    64,    69,    93,     5,    69,    88,
  841.       75,    74,    68,   103,    69
  842. };

  843. #define yyerrok                (yyerrstatus = 0)
  844. #define yyclearin        (yychar = YYEMPTY)
  845. #define YYEMPTY                (-2)
  846. #define YYEOF                0

  847. #define YYACCEPT        goto yyacceptlab
  848. #define YYABORT                goto yyabortlab
  849. #define YYERROR                goto yyerrorlab


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

  856. #define YYFAIL                goto yyerrlab
  857. #if defined YYFAIL
  858.   /* This is here to suppress warnings from the GCC cpp's
  859.      -Wunused-macros.  Normally we don't worry about that warning, but
  860.      some users do, and we want to make it easy for users to remove
  861.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  862. #endif

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

  864. #define YYBACKUP(Token, Value)                                  \
  865. do                                                              \
  866.   if (yychar == YYEMPTY)                                        \
  867.     {                                                           \
  868.       yychar = (Token);                                         \
  869.       yylval = (Value);                                         \
  870.       YYPOPSTACK (yylen);                                       \
  871.       yystate = *yyssp;                                         \
  872.       goto yybackup;                                            \
  873.     }                                                           \
  874.   else                                                          \
  875.     {                                                           \
  876.       yyerror (YY_("syntax error: cannot back up")); \
  877.       YYERROR;                                                        \
  878.     }                                                                \
  879. while (YYID (0))

  880. /* Error token number */
  881. #define YYTERROR        1
  882. #define YYERRCODE        256


  883. /* This macro is provided for backward compatibility. */
  884. #ifndef YY_LOCATION_PRINT
  885. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  886. #endif


  887. /* YYLEX -- calling `yylex' with the right arguments.  */
  888. #ifdef YYLEX_PARAM
  889. # define YYLEX yylex (YYLEX_PARAM)
  890. #else
  891. # define YYLEX yylex ()
  892. #endif

  893. /* Enable debugging if requested.  */
  894. #if YYDEBUG

  895. # ifndef YYFPRINTF
  896. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  897. #  define YYFPRINTF fprintf
  898. # endif

  899. # define YYDPRINTF(Args)                        \
  900. do {                                                \
  901.   if (yydebug)                                        \
  902.     YYFPRINTF Args;                                \
  903. } while (YYID (0))

  904. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  905. do {                                                                          \
  906.   if (yydebug)                                                                  \
  907.     {                                                                          \
  908.       YYFPRINTF (stderr, "%s ", Title);                                          \
  909.       yy_symbol_print (stderr,                                                  \
  910.                   Type, Value); \
  911.       YYFPRINTF (stderr, "\n");                                                  \
  912.     }                                                                          \
  913. } while (YYID (0))


  914. /*--------------------------------.
  915. | Print this symbol on YYOUTPUT.  |
  916. `--------------------------------*/

  917. /*ARGSUSED*/
  918. #if (defined __STDC__ || defined __C99__FUNC__ \
  919.      || defined __cplusplus || defined _MSC_VER)
  920. static void
  921. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  922. #else
  923. static void
  924. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  925.     FILE *yyoutput;
  926.     int yytype;
  927.     YYSTYPE const * const yyvaluep;
  928. #endif
  929. {
  930.   FILE *yyo = yyoutput;
  931.   YYUSE (yyo);
  932.   if (!yyvaluep)
  933.     return;
  934. # ifdef YYPRINT
  935.   if (yytype < YYNTOKENS)
  936.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  937. # else
  938.   YYUSE (yyoutput);
  939. # endif
  940.   switch (yytype)
  941.     {
  942.       default:
  943.         break;
  944.     }
  945. }


  946. /*--------------------------------.
  947. | Print this symbol on YYOUTPUT.  |
  948. `--------------------------------*/

  949. #if (defined __STDC__ || defined __C99__FUNC__ \
  950.      || defined __cplusplus || defined _MSC_VER)
  951. static void
  952. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  953. #else
  954. static void
  955. yy_symbol_print (yyoutput, yytype, yyvaluep)
  956.     FILE *yyoutput;
  957.     int yytype;
  958.     YYSTYPE const * const yyvaluep;
  959. #endif
  960. {
  961.   if (yytype < YYNTOKENS)
  962.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  963.   else
  964.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  965.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  966.   YYFPRINTF (yyoutput, ")");
  967. }

  968. /*------------------------------------------------------------------.
  969. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  970. | TOP (included).                                                   |
  971. `------------------------------------------------------------------*/

  972. #if (defined __STDC__ || defined __C99__FUNC__ \
  973.      || defined __cplusplus || defined _MSC_VER)
  974. static void
  975. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  976. #else
  977. static void
  978. yy_stack_print (yybottom, yytop)
  979.     yytype_int16 *yybottom;
  980.     yytype_int16 *yytop;
  981. #endif
  982. {
  983.   YYFPRINTF (stderr, "Stack now");
  984.   for (; yybottom <= yytop; yybottom++)
  985.     {
  986.       int yybot = *yybottom;
  987.       YYFPRINTF (stderr, " %d", yybot);
  988.     }
  989.   YYFPRINTF (stderr, "\n");
  990. }

  991. # define YY_STACK_PRINT(Bottom, Top)                                \
  992. do {                                                                \
  993.   if (yydebug)                                                        \
  994.     yy_stack_print ((Bottom), (Top));                                \
  995. } while (YYID (0))


  996. /*------------------------------------------------.
  997. | Report that the YYRULE is going to be reduced.  |
  998. `------------------------------------------------*/

  999. #if (defined __STDC__ || defined __C99__FUNC__ \
  1000.      || defined __cplusplus || defined _MSC_VER)
  1001. static void
  1002. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  1003. #else
  1004. static void
  1005. yy_reduce_print (yyvsp, yyrule)
  1006.     YYSTYPE *yyvsp;
  1007.     int yyrule;
  1008. #endif
  1009. {
  1010.   int yynrhs = yyr2[yyrule];
  1011.   int yyi;
  1012.   unsigned long int yylno = yyrline[yyrule];
  1013.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
  1014.              yyrule - 1, yylno);
  1015.   /* The symbols being reduced.  */
  1016.   for (yyi = 0; yyi < yynrhs; yyi++)
  1017.     {
  1018.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  1019.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  1020.                        &(yyvsp[(yyi + 1) - (yynrhs)])
  1021.                                               );
  1022.       YYFPRINTF (stderr, "\n");
  1023.     }
  1024. }

  1025. # define YY_REDUCE_PRINT(Rule)                \
  1026. do {                                        \
  1027.   if (yydebug)                                \
  1028.     yy_reduce_print (yyvsp, Rule); \
  1029. } while (YYID (0))

  1030. /* Nonzero means print parse trace.  It is left uninitialized so that
  1031.    multiple parsers can coexist.  */
  1032. int yydebug;
  1033. #else /* !YYDEBUG */
  1034. # define YYDPRINTF(Args)
  1035. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  1036. # define YY_STACK_PRINT(Bottom, Top)
  1037. # define YY_REDUCE_PRINT(Rule)
  1038. #endif /* !YYDEBUG */


  1039. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  1040. #ifndef        YYINITDEPTH
  1041. # define YYINITDEPTH 200
  1042. #endif

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

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

  1048. #ifndef YYMAXDEPTH
  1049. # define YYMAXDEPTH 10000
  1050. #endif


  1051. #if YYERROR_VERBOSE

  1052. # ifndef yystrlen
  1053. #  if defined __GLIBC__ && defined _STRING_H
  1054. #   define yystrlen strlen
  1055. #  else
  1056. /* Return the length of YYSTR.  */
  1057. #if (defined __STDC__ || defined __C99__FUNC__ \
  1058.      || defined __cplusplus || defined _MSC_VER)
  1059. static YYSIZE_T
  1060. yystrlen (const char *yystr)
  1061. #else
  1062. static YYSIZE_T
  1063. yystrlen (yystr)
  1064.     const char *yystr;
  1065. #endif
  1066. {
  1067.   YYSIZE_T yylen;
  1068.   for (yylen = 0; yystr[yylen]; yylen++)
  1069.     continue;
  1070.   return yylen;
  1071. }
  1072. #  endif
  1073. # endif

  1074. # ifndef yystpcpy
  1075. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1076. #   define yystpcpy stpcpy
  1077. #  else
  1078. /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
  1079.    YYDEST.  */
  1080. #if (defined __STDC__ || defined __C99__FUNC__ \
  1081.      || defined __cplusplus || defined _MSC_VER)
  1082. static char *
  1083. yystpcpy (char *yydest, const char *yysrc)
  1084. #else
  1085. static char *
  1086. yystpcpy (yydest, yysrc)
  1087.     char *yydest;
  1088.     const char *yysrc;
  1089. #endif
  1090. {
  1091.   char *yyd = yydest;
  1092.   const char *yys = yysrc;

  1093.   while ((*yyd++ = *yys++) != '\0')
  1094.     continue;

  1095.   return yyd - 1;
  1096. }
  1097. #  endif
  1098. # endif

  1099. # ifndef yytnamerr
  1100. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1101.    quotes and backslashes, so that it's suitable for yyerror.  The
  1102.    heuristic is that double-quoting is unnecessary unless the string
  1103.    contains an apostrophe, a comma, or backslash (other than
  1104.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1105.    null, do not copy; instead, return the length of what the result
  1106.    would have been.  */
  1107. static YYSIZE_T
  1108. yytnamerr (char *yyres, const char *yystr)
  1109. {
  1110.   if (*yystr == '"')
  1111.     {
  1112.       YYSIZE_T yyn = 0;
  1113.       char const *yyp = yystr;

  1114.       for (;;)
  1115.         switch (*++yyp)
  1116.           {
  1117.           case '\'':
  1118.           case ',':
  1119.             goto do_not_strip_quotes;

  1120.           case '\\':
  1121.             if (*++yyp != '\\')
  1122.               goto do_not_strip_quotes;
  1123.             /* Fall through.  */
  1124.           default:
  1125.             if (yyres)
  1126.               yyres[yyn] = *yyp;
  1127.             yyn++;
  1128.             break;

  1129.           case '"':
  1130.             if (yyres)
  1131.               yyres[yyn] = '\0';
  1132.             return yyn;
  1133.           }
  1134.     do_not_strip_quotes: ;
  1135.     }

  1136.   if (! yyres)
  1137.     return yystrlen (yystr);

  1138.   return yystpcpy (yyres, yystr) - yyres;
  1139. }
  1140. # endif

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

  1144.    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
  1145.    not large enough to hold the message.  In that case, also set
  1146.    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
  1147.    required number of bytes is too large to store.  */
  1148. static int
  1149. yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
  1150.                 yytype_int16 *yyssp, int yytoken)
  1151. {
  1152.   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  1153.   YYSIZE_T yysize = yysize0;
  1154.   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1155.   /* Internationalized format string. */
  1156.   const char *yyformat = YY_NULL;
  1157.   /* Arguments of yyformat. */
  1158.   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1159.   /* Number of reported tokens (one for the "unexpected", one per
  1160.      "expected"). */
  1161.   int yycount = 0;

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

  1203.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1204.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1205.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1206.               {
  1207.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1208.                   {
  1209.                     yycount = 1;
  1210.                     yysize = yysize0;
  1211.                     break;
  1212.                   }
  1213.                 yyarg[yycount++] = yytname[yyx];
  1214.                 {
  1215.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1216.                   if (! (yysize <= yysize1
  1217.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1218.                     return 2;
  1219.                   yysize = yysize1;
  1220.                 }
  1221.               }
  1222.         }
  1223.     }

  1224.   switch (yycount)
  1225.     {
  1226. # define YYCASE_(N, S)                      \
  1227.       case N:                               \
  1228.         yyformat = S;                       \
  1229.       break
  1230.       YYCASE_(0, YY_("syntax error"));
  1231.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1232.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1233.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1234.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1235.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1236. # undef YYCASE_
  1237.     }

  1238.   {
  1239.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1240.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1241.       return 2;
  1242.     yysize = yysize1;
  1243.   }

  1244.   if (*yymsg_alloc < yysize)
  1245.     {
  1246.       *yymsg_alloc = 2 * yysize;
  1247.       if (! (yysize <= *yymsg_alloc
  1248.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1249.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1250.       return 1;
  1251.     }

  1252.   /* Avoid sprintf, as that infringes on the user's name space.
  1253.      Don't have undefined behavior even if the translation
  1254.      produced a string with the wrong number of "%s"s.  */
  1255.   {
  1256.     char *yyp = *yymsg;
  1257.     int yyi = 0;
  1258.     while ((*yyp = *yyformat) != '\0')
  1259.       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
  1260.         {
  1261.           yyp += yytnamerr (yyp, yyarg[yyi++]);
  1262.           yyformat += 2;
  1263.         }
  1264.       else
  1265.         {
  1266.           yyp++;
  1267.           yyformat++;
  1268.         }
  1269.   }
  1270.   return 0;
  1271. }
  1272. #endif /* YYERROR_VERBOSE */

  1273. /*-----------------------------------------------.
  1274. | Release the memory associated to this symbol.  |
  1275. `-----------------------------------------------*/

  1276. /*ARGSUSED*/
  1277. #if (defined __STDC__ || defined __C99__FUNC__ \
  1278.      || defined __cplusplus || defined _MSC_VER)
  1279. static void
  1280. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1281. #else
  1282. static void
  1283. yydestruct (yymsg, yytype, yyvaluep)
  1284.     const char *yymsg;
  1285.     int yytype;
  1286.     YYSTYPE *yyvaluep;
  1287. #endif
  1288. {
  1289.   YYUSE (yyvaluep);

  1290.   if (!yymsg)
  1291.     yymsg = "Deleting";
  1292.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1293.   switch (yytype)
  1294.     {

  1295.       default:
  1296.         break;
  1297.     }
  1298. }




  1299. /* The lookahead symbol.  */
  1300. int yychar;


  1301. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1302. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1303. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1304. #endif
  1305. #ifndef YY_INITIAL_VALUE
  1306. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1307. #endif

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

  1310. /* Number of syntax errors so far.  */
  1311. int yynerrs;


  1312. /*----------.
  1313. | yyparse.  |
  1314. `----------*/

  1315. #ifdef YYPARSE_PARAM
  1316. #if (defined __STDC__ || defined __C99__FUNC__ \
  1317.      || defined __cplusplus || defined _MSC_VER)
  1318. int
  1319. yyparse (void *YYPARSE_PARAM)
  1320. #else
  1321. int
  1322. yyparse (YYPARSE_PARAM)
  1323.     void *YYPARSE_PARAM;
  1324. #endif
  1325. #else /* ! YYPARSE_PARAM */
  1326. #if (defined __STDC__ || defined __C99__FUNC__ \
  1327.      || defined __cplusplus || defined _MSC_VER)
  1328. int
  1329. yyparse (void)
  1330. #else
  1331. int
  1332. yyparse ()

  1333. #endif
  1334. #endif
  1335. {
  1336.     int yystate;
  1337.     /* Number of tokens to shift before error messages enabled.  */
  1338.     int yyerrstatus;

  1339.     /* The stacks and their tools:
  1340.        `yyss': related to states.
  1341.        `yyvs': related to semantic values.

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

  1344.     /* The state stack.  */
  1345.     yytype_int16 yyssa[YYINITDEPTH];
  1346.     yytype_int16 *yyss;
  1347.     yytype_int16 *yyssp;

  1348.     /* The semantic value stack.  */
  1349.     YYSTYPE yyvsa[YYINITDEPTH];
  1350.     YYSTYPE *yyvs;
  1351.     YYSTYPE *yyvsp;

  1352.     YYSIZE_T yystacksize;

  1353.   int yyn;
  1354.   int yyresult;
  1355.   /* Lookahead token as an internal (translated) token number.  */
  1356.   int yytoken = 0;
  1357.   /* The variables used to return semantic value and location from the
  1358.      action routines.  */
  1359.   YYSTYPE yyval;

  1360. #if YYERROR_VERBOSE
  1361.   /* Buffer for error messages, and its allocated size.  */
  1362.   char yymsgbuf[128];
  1363.   char *yymsg = yymsgbuf;
  1364.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1365. #endif

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

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

  1370.   yyssp = yyss = yyssa;
  1371.   yyvsp = yyvs = yyvsa;
  1372.   yystacksize = YYINITDEPTH;

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

  1374.   yystate = 0;
  1375.   yyerrstatus = 0;
  1376.   yynerrs = 0;
  1377.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1378.   goto yysetstate;

  1379. /*------------------------------------------------------------.
  1380. | yynewstate -- Push a new state, which is found in yystate.  |
  1381. `------------------------------------------------------------*/
  1382. yynewstate:
  1383.   /* In all cases, when you get here, the value and location stacks
  1384.      have just been pushed.  So pushing a state here evens the stacks.  */
  1385.   yyssp++;

  1386. yysetstate:
  1387.   *yyssp = yystate;

  1388.   if (yyss + yystacksize - 1 <= yyssp)
  1389.     {
  1390.       /* Get the current used size of the three stacks, in elements.  */
  1391.       YYSIZE_T yysize = yyssp - yyss + 1;

  1392. #ifdef yyoverflow
  1393.       {
  1394.         /* Give user a chance to xreallocate the stack.  Use copies of
  1395.            these so that the &'s don't force the real ones into
  1396.            memory.  */
  1397.         YYSTYPE *yyvs1 = yyvs;
  1398.         yytype_int16 *yyss1 = yyss;

  1399.         /* Each stack pointer address is followed by the size of the
  1400.            data in use in that stack, in bytes.  This used to be a
  1401.            conditional around just the two extra args, but that might
  1402.            be undefined if yyoverflow is a macro.  */
  1403.         yyoverflow (YY_("memory exhausted"),
  1404.                     &yyss1, yysize * sizeof (*yyssp),
  1405.                     &yyvs1, yysize * sizeof (*yyvsp),
  1406.                     &yystacksize);

  1407.         yyss = yyss1;
  1408.         yyvs = yyvs1;
  1409.       }
  1410. #else /* no yyoverflow */
  1411. # ifndef YYSTACK_RELOCATE
  1412.       goto yyexhaustedlab;
  1413. # else
  1414.       /* Extend the stack our own way.  */
  1415.       if (YYMAXDEPTH <= yystacksize)
  1416.         goto yyexhaustedlab;
  1417.       yystacksize *= 2;
  1418.       if (YYMAXDEPTH < yystacksize)
  1419.         yystacksize = YYMAXDEPTH;

  1420.       {
  1421.         yytype_int16 *yyss1 = yyss;
  1422.         union yyalloc *yyptr =
  1423.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1424.         if (! yyptr)
  1425.           goto yyexhaustedlab;
  1426.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1427.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1428. #  undef YYSTACK_RELOCATE
  1429.         if (yyss1 != yyssa)
  1430.           YYSTACK_FREE (yyss1);
  1431.       }
  1432. # endif
  1433. #endif /* no yyoverflow */

  1434.       yyssp = yyss + yysize - 1;
  1435.       yyvsp = yyvs + yysize - 1;

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

  1438.       if (yyss + yystacksize - 1 <= yyssp)
  1439.         YYABORT;
  1440.     }

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

  1442.   if (yystate == YYFINAL)
  1443.     YYACCEPT;

  1444.   goto yybackup;

  1445. /*-----------.
  1446. | yybackup.  |
  1447. `-----------*/
  1448. yybackup:

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

  1451.   /* First try to decide what to do without reference to lookahead token.  */
  1452.   yyn = yypact[yystate];
  1453.   if (yypact_value_is_default (yyn))
  1454.     goto yydefault;

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

  1456.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1457.   if (yychar == YYEMPTY)
  1458.     {
  1459.       YYDPRINTF ((stderr, "Reading a token: "));
  1460.       yychar = YYLEX;
  1461.     }

  1462.   if (yychar <= YYEOF)
  1463.     {
  1464.       yychar = yytoken = YYEOF;
  1465.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1466.     }
  1467.   else
  1468.     {
  1469.       yytoken = YYTRANSLATE (yychar);
  1470.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1471.     }

  1472.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1473.      detect an error, take that action.  */
  1474.   yyn += yytoken;
  1475.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1476.     goto yydefault;
  1477.   yyn = yytable[yyn];
  1478.   if (yyn <= 0)
  1479.     {
  1480.       if (yytable_value_is_error (yyn))
  1481.         goto yyerrlab;
  1482.       yyn = -yyn;
  1483.       goto yyreduce;
  1484.     }

  1485.   /* Count tokens shifted since error; after three, turn off error
  1486.      status.  */
  1487.   if (yyerrstatus)
  1488.     yyerrstatus--;

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

  1491.   /* Discard the shifted token.  */
  1492.   yychar = YYEMPTY;

  1493.   yystate = yyn;
  1494.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1495.   *++yyvsp = yylval;
  1496.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1497.   goto yynewstate;


  1498. /*-----------------------------------------------------------.
  1499. | yydefault -- do the default action for the current state.  |
  1500. `-----------------------------------------------------------*/
  1501. yydefault:
  1502.   yyn = yydefact[yystate];
  1503.   if (yyn == 0)
  1504.     goto yyerrlab;
  1505.   goto yyreduce;


  1506. /*-----------------------------.
  1507. | yyreduce -- Do a reduction.  |
  1508. `-----------------------------*/
  1509. yyreduce:
  1510.   /* yyn is the number of a rule to reduce with.  */
  1511.   yylen = yyr2[yyn];

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

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


  1520.   YY_REDUCE_PRINT (yyn);
  1521.   switch (yyn)
  1522.     {
  1523.         case 6:
  1524. /* Line 1792 of yacc.c  */
  1525. #line 245 "d-exp.y"
  1526.     { write_exp_elt_opcode (pstate, BINOP_COMMA); }
  1527.     break;

  1528.   case 8:
  1529. /* Line 1792 of yacc.c  */
  1530. #line 251 "d-exp.y"
  1531.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
  1532.     break;

  1533.   case 9:
  1534. /* Line 1792 of yacc.c  */
  1535. #line 253 "d-exp.y"
  1536.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY);
  1537.                   write_exp_elt_opcode (pstate, (yyvsp[(2) - (3)].opcode));
  1538.                   write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); }
  1539.     break;

  1540.   case 11:
  1541. /* Line 1792 of yacc.c  */
  1542. #line 261 "d-exp.y"
  1543.     { write_exp_elt_opcode (pstate, TERNOP_COND); }
  1544.     break;

  1545.   case 13:
  1546. /* Line 1792 of yacc.c  */
  1547. #line 267 "d-exp.y"
  1548.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
  1549.     break;

  1550.   case 15:
  1551. /* Line 1792 of yacc.c  */
  1552. #line 273 "d-exp.y"
  1553.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
  1554.     break;

  1555.   case 17:
  1556. /* Line 1792 of yacc.c  */
  1557. #line 279 "d-exp.y"
  1558.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1559.     break;

  1560.   case 19:
  1561. /* Line 1792 of yacc.c  */
  1562. #line 285 "d-exp.y"
  1563.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  1564.     break;

  1565.   case 21:
  1566. /* Line 1792 of yacc.c  */
  1567. #line 291 "d-exp.y"
  1568.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1569.     break;

  1570.   case 26:
  1571. /* Line 1792 of yacc.c  */
  1572. #line 303 "d-exp.y"
  1573.     { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
  1574.     break;

  1575.   case 27:
  1576. /* Line 1792 of yacc.c  */
  1577. #line 305 "d-exp.y"
  1578.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
  1579.     break;

  1580.   case 28:
  1581. /* Line 1792 of yacc.c  */
  1582. #line 310 "d-exp.y"
  1583.     { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
  1584.     break;

  1585.   case 29:
  1586. /* Line 1792 of yacc.c  */
  1587. #line 312 "d-exp.y"
  1588.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
  1589.     break;

  1590.   case 30:
  1591. /* Line 1792 of yacc.c  */
  1592. #line 317 "d-exp.y"
  1593.     { write_exp_elt_opcode (pstate, BINOP_LESS); }
  1594.     break;

  1595.   case 31:
  1596. /* Line 1792 of yacc.c  */
  1597. #line 319 "d-exp.y"
  1598.     { write_exp_elt_opcode (pstate, BINOP_LEQ); }
  1599.     break;

  1600.   case 32:
  1601. /* Line 1792 of yacc.c  */
  1602. #line 321 "d-exp.y"
  1603.     { write_exp_elt_opcode (pstate, BINOP_GTR); }
  1604.     break;

  1605.   case 33:
  1606. /* Line 1792 of yacc.c  */
  1607. #line 323 "d-exp.y"
  1608.     { write_exp_elt_opcode (pstate, BINOP_GEQ); }
  1609.     break;

  1610.   case 35:
  1611. /* Line 1792 of yacc.c  */
  1612. #line 329 "d-exp.y"
  1613.     { write_exp_elt_opcode (pstate, BINOP_LSH); }
  1614.     break;

  1615.   case 36:
  1616. /* Line 1792 of yacc.c  */
  1617. #line 331 "d-exp.y"
  1618.     { write_exp_elt_opcode (pstate, BINOP_RSH); }
  1619.     break;

  1620.   case 38:
  1621. /* Line 1792 of yacc.c  */
  1622. #line 337 "d-exp.y"
  1623.     { write_exp_elt_opcode (pstate, BINOP_ADD); }
  1624.     break;

  1625.   case 39:
  1626. /* Line 1792 of yacc.c  */
  1627. #line 339 "d-exp.y"
  1628.     { write_exp_elt_opcode (pstate, BINOP_SUB); }
  1629.     break;

  1630.   case 40:
  1631. /* Line 1792 of yacc.c  */
  1632. #line 341 "d-exp.y"
  1633.     { write_exp_elt_opcode (pstate, BINOP_CONCAT); }
  1634.     break;

  1635.   case 42:
  1636. /* Line 1792 of yacc.c  */
  1637. #line 347 "d-exp.y"
  1638.     { write_exp_elt_opcode (pstate, BINOP_MUL); }
  1639.     break;

  1640.   case 43:
  1641. /* Line 1792 of yacc.c  */
  1642. #line 349 "d-exp.y"
  1643.     { write_exp_elt_opcode (pstate, BINOP_DIV); }
  1644.     break;

  1645.   case 44:
  1646. /* Line 1792 of yacc.c  */
  1647. #line 351 "d-exp.y"
  1648.     { write_exp_elt_opcode (pstate, BINOP_REM); }
  1649.     break;

  1650.   case 45:
  1651. /* Line 1792 of yacc.c  */
  1652. #line 355 "d-exp.y"
  1653.     { write_exp_elt_opcode (pstate, UNOP_ADDR); }
  1654.     break;

  1655.   case 46:
  1656. /* Line 1792 of yacc.c  */
  1657. #line 357 "d-exp.y"
  1658.     { write_exp_elt_opcode (pstate, UNOP_PREINCREMENT); }
  1659.     break;

  1660.   case 47:
  1661. /* Line 1792 of yacc.c  */
  1662. #line 359 "d-exp.y"
  1663.     { write_exp_elt_opcode (pstate, UNOP_PREDECREMENT); }
  1664.     break;

  1665.   case 48:
  1666. /* Line 1792 of yacc.c  */
  1667. #line 361 "d-exp.y"
  1668.     { write_exp_elt_opcode (pstate, UNOP_IND); }
  1669.     break;

  1670.   case 49:
  1671. /* Line 1792 of yacc.c  */
  1672. #line 363 "d-exp.y"
  1673.     { write_exp_elt_opcode (pstate, UNOP_NEG); }
  1674.     break;

  1675.   case 50:
  1676. /* Line 1792 of yacc.c  */
  1677. #line 365 "d-exp.y"
  1678.     { write_exp_elt_opcode (pstate, UNOP_PLUS); }
  1679.     break;

  1680.   case 51:
  1681. /* Line 1792 of yacc.c  */
  1682. #line 367 "d-exp.y"
  1683.     { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
  1684.     break;

  1685.   case 52:
  1686. /* Line 1792 of yacc.c  */
  1687. #line 369 "d-exp.y"
  1688.     { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
  1689.     break;

  1690.   case 55:
  1691. /* Line 1792 of yacc.c  */
  1692. #line 376 "d-exp.y"
  1693.     { write_exp_elt_opcode (pstate, UNOP_CAST);
  1694.                   write_exp_elt_type (pstate, (yyvsp[(3) - (5)].tval));
  1695.                   write_exp_elt_opcode (pstate, UNOP_CAST); }
  1696.     break;

  1697.   case 56:
  1698. /* Line 1792 of yacc.c  */
  1699. #line 382 "d-exp.y"
  1700.     { write_exp_elt_opcode (pstate, UNOP_CAST);
  1701.                   write_exp_elt_type (pstate, (yyvsp[(2) - (4)].tval));
  1702.                   write_exp_elt_opcode (pstate, UNOP_CAST); }
  1703.     break;

  1704.   case 58:
  1705. /* Line 1792 of yacc.c  */
  1706. #line 390 "d-exp.y"
  1707.     { write_exp_elt_opcode (pstate, BINOP_EXP); }
  1708.     break;

  1709.   case 60:
  1710. /* Line 1792 of yacc.c  */
  1711. #line 396 "d-exp.y"
  1712.     { write_exp_elt_opcode (pstate, UNOP_POSTINCREMENT); }
  1713.     break;

  1714.   case 61:
  1715. /* Line 1792 of yacc.c  */
  1716. #line 398 "d-exp.y"
  1717.     { write_exp_elt_opcode (pstate, UNOP_POSTDECREMENT); }
  1718.     break;

  1719.   case 65:
  1720. /* Line 1792 of yacc.c  */
  1721. #line 406 "d-exp.y"
  1722.     { arglist_len = 1; }
  1723.     break;

  1724.   case 66:
  1725. /* Line 1792 of yacc.c  */
  1726. #line 408 "d-exp.y"
  1727.     { arglist_len++; }
  1728.     break;

  1729.   case 67:
  1730. /* Line 1792 of yacc.c  */
  1731. #line 413 "d-exp.y"
  1732.     { arglist_len = 0; }
  1733.     break;

  1734.   case 69:
  1735. /* Line 1792 of yacc.c  */
  1736. #line 419 "d-exp.y"
  1737.     { start_arglist (); }
  1738.     break;

  1739.   case 70:
  1740. /* Line 1792 of yacc.c  */
  1741. #line 421 "d-exp.y"
  1742.     { write_exp_elt_opcode (pstate, OP_FUNCALL);
  1743.                   write_exp_elt_longcst (pstate, (LONGEST) end_arglist ());
  1744.                   write_exp_elt_opcode (pstate, OP_FUNCALL); }
  1745.     break;

  1746.   case 71:
  1747. /* Line 1792 of yacc.c  */
  1748. #line 428 "d-exp.y"
  1749.     { if (arglist_len > 0)
  1750.                     {
  1751.                       write_exp_elt_opcode (pstate, MULTI_SUBSCRIPT);
  1752.                       write_exp_elt_longcst (pstate, (LONGEST) arglist_len);
  1753.                       write_exp_elt_opcode (pstate, MULTI_SUBSCRIPT);
  1754.                     }
  1755.                   else
  1756.                     write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT);
  1757.                 }
  1758.     break;

  1759.   case 72:
  1760. /* Line 1792 of yacc.c  */
  1761. #line 441 "d-exp.y"
  1762.     { /* Do nothing.  */ }
  1763.     break;

  1764.   case 73:
  1765. /* Line 1792 of yacc.c  */
  1766. #line 443 "d-exp.y"
  1767.     { write_exp_elt_opcode (pstate, TERNOP_SLICE); }
  1768.     break;

  1769.   case 74:
  1770. /* Line 1792 of yacc.c  */
  1771. #line 448 "d-exp.y"
  1772.     { /* Do nothing.  */ }
  1773.     break;

  1774.   case 75:
  1775. /* Line 1792 of yacc.c  */
  1776. #line 450 "d-exp.y"
  1777.     { push_expression_name (pstate, (yyvsp[(1) - (1)].sval)); }
  1778.     break;

  1779.   case 76:
  1780. /* Line 1792 of yacc.c  */
  1781. #line 452 "d-exp.y"
  1782.     { struct stoken s;
  1783.                   s.ptr = "";
  1784.                   s.length = 0;
  1785.                   push_expression_name (pstate, (yyvsp[(1) - (3)].sval));
  1786.                   mark_struct_expression (pstate);
  1787.                   write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1788.                   write_exp_string (pstate, s);
  1789.                   write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1790.     break;

  1791.   case 77:
  1792. /* Line 1792 of yacc.c  */
  1793. #line 461 "d-exp.y"
  1794.     { push_expression_name (pstate, (yyvsp[(1) - (4)].sval));
  1795.                   mark_struct_expression (pstate);
  1796.                   write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1797.                   write_exp_string (pstate, (yyvsp[(3) - (4)].sval));
  1798.                   write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1799.     break;

  1800.   case 78:
  1801. /* Line 1792 of yacc.c  */
  1802. #line 467 "d-exp.y"
  1803.     { write_dollar_variable (pstate, (yyvsp[(1) - (1)].sval)); }
  1804.     break;

  1805.   case 79:
  1806. /* Line 1792 of yacc.c  */
  1807. #line 469 "d-exp.y"
  1808.     { YYSTYPE val;
  1809.                   parse_number (pstate, (yyvsp[(1) - (1)].sval).ptr, (yyvsp[(1) - (1)].sval).length, 0, &val);
  1810.                   write_exp_elt_opcode (pstate, OP_LONG);
  1811.                   write_exp_elt_type (pstate, val.typed_val_int.type);
  1812.                   write_exp_elt_longcst (pstate,
  1813.                                          (LONGEST) val.typed_val_int.val);
  1814.                   write_exp_elt_opcode (pstate, OP_LONG); }
  1815.     break;

  1816.   case 80:
  1817. /* Line 1792 of yacc.c  */
  1818. #line 477 "d-exp.y"
  1819.     { struct type *type = parse_d_type (pstate)->builtin_void;
  1820.                   type = lookup_pointer_type (type);
  1821.                   write_exp_elt_opcode (pstate, OP_LONG);
  1822.                   write_exp_elt_type (pstate, type);
  1823.                   write_exp_elt_longcst (pstate, (LONGEST) 0);
  1824.                   write_exp_elt_opcode (pstate, OP_LONG); }
  1825.     break;

  1826.   case 81:
  1827. /* Line 1792 of yacc.c  */
  1828. #line 484 "d-exp.y"
  1829.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1830.                   write_exp_elt_longcst (pstate, (LONGEST) 1);
  1831.                   write_exp_elt_opcode (pstate, OP_BOOL); }
  1832.     break;

  1833.   case 82:
  1834. /* Line 1792 of yacc.c  */
  1835. #line 488 "d-exp.y"
  1836.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1837.                   write_exp_elt_longcst (pstate, (LONGEST) 0);
  1838.                   write_exp_elt_opcode (pstate, OP_BOOL); }
  1839.     break;

  1840.   case 83:
  1841. /* Line 1792 of yacc.c  */
  1842. #line 492 "d-exp.y"
  1843.     { write_exp_elt_opcode (pstate, OP_LONG);
  1844.                   write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_int).type);
  1845.                   write_exp_elt_longcst (pstate, (LONGEST)((yyvsp[(1) - (1)].typed_val_int).val));
  1846.                   write_exp_elt_opcode (pstate, OP_LONG); }
  1847.     break;

  1848.   case 84:
  1849. /* Line 1792 of yacc.c  */
  1850. #line 497 "d-exp.y"
  1851.     { write_exp_elt_opcode (pstate, OP_DOUBLE);
  1852.                   write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_float).type);
  1853.                   write_exp_elt_dblcst (pstate, (yyvsp[(1) - (1)].typed_val_float).dval);
  1854.                   write_exp_elt_opcode (pstate, OP_DOUBLE); }
  1855.     break;

  1856.   case 85:
  1857. /* Line 1792 of yacc.c  */
  1858. #line 502 "d-exp.y"
  1859.     { struct stoken_vector vec;
  1860.                   vec.len = 1;
  1861.                   vec.tokens = &(yyvsp[(1) - (1)].tsval);
  1862.                   write_exp_string_vector (pstate, (yyvsp[(1) - (1)].tsval).type, &vec); }
  1863.     break;

  1864.   case 86:
  1865. /* Line 1792 of yacc.c  */
  1866. #line 507 "d-exp.y"
  1867.     { int i;
  1868.                   write_exp_string_vector (pstate, 0, &(yyvsp[(1) - (1)].svec));
  1869.                   for (i = 0; i < (yyvsp[(1) - (1)].svec).len; ++i)
  1870.                     xfree ((yyvsp[(1) - (1)].svec).tokens[i].ptr);
  1871.                   xfree ((yyvsp[(1) - (1)].svec).tokens); }
  1872.     break;

  1873.   case 87:
  1874. /* Line 1792 of yacc.c  */
  1875. #line 513 "d-exp.y"
  1876.     { write_exp_elt_opcode (pstate, OP_ARRAY);
  1877.                   write_exp_elt_longcst (pstate, (LONGEST) 0);
  1878.                   write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(1) - (1)].ival) - 1);
  1879.                   write_exp_elt_opcode (pstate, OP_ARRAY); }
  1880.     break;

  1881.   case 88:
  1882. /* Line 1792 of yacc.c  */
  1883. #line 521 "d-exp.y"
  1884.     { (yyval.ival) = arglist_len; }
  1885.     break;

  1886.   case 90:
  1887. /* Line 1792 of yacc.c  */
  1888. #line 527 "d-exp.y"
  1889.     { (yyval.sval).length = (yyvsp[(1) - (3)].sval).length + (yyvsp[(3) - (3)].sval).length + 1;
  1890.                   if ((yyvsp[(1) - (3)].sval).ptr + (yyvsp[(1) - (3)].sval).length + 1 == (yyvsp[(3) - (3)].sval).ptr
  1891.                       && (yyvsp[(1) - (3)].sval).ptr[(yyvsp[(1) - (3)].sval).length] == '.')
  1892.                     (yyval.sval).ptr = (yyvsp[(1) - (3)].sval).ptr/* Optimization.  */
  1893.                   else
  1894.                     {
  1895.                       char *buf = xmalloc ((yyval.sval).length + 1);
  1896.                       make_cleanup (xfree, buf);
  1897.                       sprintf (buf, "%.*s.%.*s",
  1898.                                (yyvsp[(1) - (3)].sval).length, (yyvsp[(1) - (3)].sval).ptr, (yyvsp[(3) - (3)].sval).length, (yyvsp[(3) - (3)].sval).ptr);
  1899.                       (yyval.sval).ptr = buf;
  1900.                     }
  1901.                 }
  1902.     break;

  1903.   case 91:
  1904. /* Line 1792 of yacc.c  */
  1905. #line 544 "d-exp.y"
  1906.     { /* We copy the string here, and not in the
  1907.                      lexer, to guarantee that we do not leak a
  1908.                      string.  Note that we follow the
  1909.                      NUL-termination convention of the
  1910.                      lexer.  */
  1911.                   struct typed_stoken *vec = XNEW (struct typed_stoken);
  1912.                   (yyval.svec).len = 1;
  1913.                   (yyval.svec).tokens = vec;

  1914.                   vec->type = (yyvsp[(1) - (1)].tsval).type;
  1915.                   vec->length = (yyvsp[(1) - (1)].tsval).length;
  1916.                   vec->ptr = xmalloc ((yyvsp[(1) - (1)].tsval).length + 1);
  1917.                   memcpy (vec->ptr, (yyvsp[(1) - (1)].tsval).ptr, (yyvsp[(1) - (1)].tsval).length + 1);
  1918.                 }
  1919.     break;

  1920.   case 92:
  1921. /* Line 1792 of yacc.c  */
  1922. #line 559 "d-exp.y"
  1923.     { /* Note that we NUL-terminate here, but just
  1924.                      for convenience.  */
  1925.                   char *p;
  1926.                   ++(yyval.svec).len;
  1927.                   (yyval.svec).tokens = xrealloc ((yyval.svec).tokens,
  1928.                                        (yyval.svec).len * sizeof (struct typed_stoken));

  1929.                   p = xmalloc ((yyvsp[(2) - (2)].tsval).length + 1);
  1930.                   memcpy (p, (yyvsp[(2) - (2)].tsval).ptr, (yyvsp[(2) - (2)].tsval).length + 1);

  1931.                   (yyval.svec).tokens[(yyval.svec).len - 1].type = (yyvsp[(2) - (2)].tsval).type;
  1932.                   (yyval.svec).tokens[(yyval.svec).len - 1].length = (yyvsp[(2) - (2)].tsval).length;
  1933.                   (yyval.svec).tokens[(yyval.svec).len - 1].ptr = p;
  1934.                 }
  1935.     break;

  1936.   case 93:
  1937. /* Line 1792 of yacc.c  */
  1938. #line 577 "d-exp.y"
  1939.     { write_exp_elt_opcode (pstate, OP_TYPE);
  1940.                   write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  1941.                   write_exp_elt_opcode (pstate, OP_TYPE); }
  1942.     break;

  1943.   case 94:
  1944. /* Line 1792 of yacc.c  */
  1945. #line 581 "d-exp.y"
  1946.     { (yyval.tval) = follow_types ((yyvsp[(1) - (2)].tval));
  1947.                   write_exp_elt_opcode (pstate, OP_TYPE);
  1948.                   write_exp_elt_type (pstate, (yyval.tval));
  1949.                   write_exp_elt_opcode (pstate, OP_TYPE);
  1950.                 }
  1951.     break;

  1952.   case 95:
  1953. /* Line 1792 of yacc.c  */
  1954. #line 590 "d-exp.y"
  1955.     { push_type (tp_pointer); }
  1956.     break;

  1957.   case 96:
  1958. /* Line 1792 of yacc.c  */
  1959. #line 592 "d-exp.y"
  1960.     { push_type (tp_pointer); }
  1961.     break;

  1962.   case 97:
  1963. /* Line 1792 of yacc.c  */
  1964. #line 594 "d-exp.y"
  1965.     { push_type_int ((yyvsp[(2) - (3)].typed_val_int).val);
  1966.                   push_type (tp_array); }
  1967.     break;

  1968.   case 98:
  1969. /* Line 1792 of yacc.c  */
  1970. #line 597 "d-exp.y"
  1971.     { push_type_int ((yyvsp[(2) - (4)].typed_val_int).val);
  1972.                   push_type (tp_array); }
  1973.     break;

  1974.   case 99:
  1975. /* Line 1792 of yacc.c  */
  1976. #line 603 "d-exp.y"
  1977.     { (yyval.tval) = (yyvsp[(1) - (1)].tsym).type; }
  1978.     break;

  1979.   case 100:
  1980. /* Line 1792 of yacc.c  */
  1981. #line 605 "d-exp.y"
  1982.     { (yyval.tval) = lookup_struct (copy_name ((yyvsp[(2) - (2)].sval)),
  1983.                                       expression_context_block); }
  1984.     break;

  1985.   case 101:
  1986. /* Line 1792 of yacc.c  */
  1987. #line 608 "d-exp.y"
  1988.     { mark_completion_tag (TYPE_CODE_CLASS, "", 0);
  1989.                   (yyval.tval) = NULL; }
  1990.     break;

  1991.   case 102:
  1992. /* Line 1792 of yacc.c  */
  1993. #line 611 "d-exp.y"
  1994.     { mark_completion_tag (TYPE_CODE_CLASS, (yyvsp[(2) - (3)].sval).ptr, (yyvsp[(2) - (3)].sval).length);
  1995.                   (yyval.tval) = NULL; }
  1996.     break;

  1997.   case 103:
  1998. /* Line 1792 of yacc.c  */
  1999. #line 614 "d-exp.y"
  2000.     { (yyval.tval) = lookup_struct (copy_name ((yyvsp[(2) - (2)].sval)),
  2001.                                       expression_context_block); }
  2002.     break;

  2003.   case 104:
  2004. /* Line 1792 of yacc.c  */
  2005. #line 617 "d-exp.y"
  2006.     { mark_completion_tag (TYPE_CODE_STRUCT, "", 0);
  2007.                   (yyval.tval) = NULL; }
  2008.     break;

  2009.   case 105:
  2010. /* Line 1792 of yacc.c  */
  2011. #line 620 "d-exp.y"
  2012.     { mark_completion_tag (TYPE_CODE_STRUCT, (yyvsp[(2) - (3)].sval).ptr, (yyvsp[(2) - (3)].sval).length);
  2013.                   (yyval.tval) = NULL; }
  2014.     break;

  2015.   case 106:
  2016. /* Line 1792 of yacc.c  */
  2017. #line 623 "d-exp.y"
  2018.     { (yyval.tval) = lookup_union (copy_name ((yyvsp[(2) - (2)].sval)),
  2019.                                      expression_context_block); }
  2020.     break;

  2021.   case 107:
  2022. /* Line 1792 of yacc.c  */
  2023. #line 626 "d-exp.y"
  2024.     { mark_completion_tag (TYPE_CODE_UNION, "", 0);
  2025.                   (yyval.tval) = NULL; }
  2026.     break;

  2027.   case 108:
  2028. /* Line 1792 of yacc.c  */
  2029. #line 629 "d-exp.y"
  2030.     { mark_completion_tag (TYPE_CODE_UNION, (yyvsp[(2) - (3)].sval).ptr, (yyvsp[(2) - (3)].sval).length);
  2031.                   (yyval.tval) = NULL; }
  2032.     break;

  2033.   case 109:
  2034. /* Line 1792 of yacc.c  */
  2035. #line 632 "d-exp.y"
  2036.     { (yyval.tval) = lookup_enum (copy_name ((yyvsp[(2) - (2)].sval)),
  2037.                                     expression_context_block); }
  2038.     break;

  2039.   case 110:
  2040. /* Line 1792 of yacc.c  */
  2041. #line 635 "d-exp.y"
  2042.     { mark_completion_tag (TYPE_CODE_ENUM, "", 0);
  2043.                   (yyval.tval) = NULL; }
  2044.     break;

  2045.   case 111:
  2046. /* Line 1792 of yacc.c  */
  2047. #line 638 "d-exp.y"
  2048.     { mark_completion_tag (TYPE_CODE_ENUM, (yyvsp[(2) - (3)].sval).ptr, (yyvsp[(2) - (3)].sval).length);
  2049.                   (yyval.tval) = NULL; }
  2050.     break;


  2051. /* Line 1792 of yacc.c  */
  2052. #line 2355 "d-exp.c"
  2053.       default: break;
  2054.     }
  2055.   /* User semantic actions sometimes alter yychar, and that requires
  2056.      that yytoken be updated with the new translation.  We take the
  2057.      approach of translating immediately before every use of yytoken.
  2058.      One alternative is translating here after every semantic action,
  2059.      but that translation would be missed if the semantic action invokes
  2060.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  2061.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  2062.      incorrect destructor might then be invoked immediately.  In the
  2063.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  2064.      to an incorrect destructor call or verbose syntax error message
  2065.      before the lookahead is translated.  */
  2066.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  2067.   YYPOPSTACK (yylen);
  2068.   yylen = 0;
  2069.   YY_STACK_PRINT (yyss, yyssp);

  2070.   *++yyvsp = yyval;

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

  2074.   yyn = yyr1[yyn];

  2075.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  2076.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  2077.     yystate = yytable[yystate];
  2078.   else
  2079.     yystate = yydefgoto[yyn - YYNTOKENS];

  2080.   goto yynewstate;


  2081. /*------------------------------------.
  2082. | yyerrlab -- here on detecting error |
  2083. `------------------------------------*/
  2084. yyerrlab:
  2085.   /* Make sure we have latest lookahead translation.  See comments at
  2086.      user semantic actions for why this is necessary.  */
  2087.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  2088.   /* If not already recovering from an error, report this error.  */
  2089.   if (!yyerrstatus)
  2090.     {
  2091.       ++yynerrs;
  2092. #if ! YYERROR_VERBOSE
  2093.       yyerror (YY_("syntax error"));
  2094. #else
  2095. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  2096.                                         yyssp, yytoken)
  2097.       {
  2098.         char const *yymsgp = YY_("syntax error");
  2099.         int yysyntax_error_status;
  2100.         yysyntax_error_status = YYSYNTAX_ERROR;
  2101.         if (yysyntax_error_status == 0)
  2102.           yymsgp = yymsg;
  2103.         else if (yysyntax_error_status == 1)
  2104.           {
  2105.             if (yymsg != yymsgbuf)
  2106.               YYSTACK_FREE (yymsg);
  2107.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  2108.             if (!yymsg)
  2109.               {
  2110.                 yymsg = yymsgbuf;
  2111.                 yymsg_alloc = sizeof yymsgbuf;
  2112.                 yysyntax_error_status = 2;
  2113.               }
  2114.             else
  2115.               {
  2116.                 yysyntax_error_status = YYSYNTAX_ERROR;
  2117.                 yymsgp = yymsg;
  2118.               }
  2119.           }
  2120.         yyerror (yymsgp);
  2121.         if (yysyntax_error_status == 2)
  2122.           goto yyexhaustedlab;
  2123.       }
  2124. # undef YYSYNTAX_ERROR
  2125. #endif
  2126.     }



  2127.   if (yyerrstatus == 3)
  2128.     {
  2129.       /* If just tried and failed to reuse lookahead token after an
  2130.          error, discard it.  */

  2131.       if (yychar <= YYEOF)
  2132.         {
  2133.           /* Return failure if at end of input.  */
  2134.           if (yychar == YYEOF)
  2135.             YYABORT;
  2136.         }
  2137.       else
  2138.         {
  2139.           yydestruct ("Error: discarding",
  2140.                       yytoken, &yylval);
  2141.           yychar = YYEMPTY;
  2142.         }
  2143.     }

  2144.   /* Else will try to reuse lookahead token after shifting the error
  2145.      token.  */
  2146.   goto yyerrlab1;


  2147. /*---------------------------------------------------.
  2148. | yyerrorlab -- error raised explicitly by YYERROR.  |
  2149. `---------------------------------------------------*/
  2150. yyerrorlab:

  2151.   /* Pacify compilers like GCC when the user code never invokes
  2152.      YYERROR and the label yyerrorlab therefore never appears in user
  2153.      code.  */
  2154.   if (/*CONSTCOND*/ 0)
  2155.      goto yyerrorlab;

  2156.   /* Do not reclaim the symbols of the rule which action triggered
  2157.      this YYERROR.  */
  2158.   YYPOPSTACK (yylen);
  2159.   yylen = 0;
  2160.   YY_STACK_PRINT (yyss, yyssp);
  2161.   yystate = *yyssp;
  2162.   goto yyerrlab1;


  2163. /*-------------------------------------------------------------.
  2164. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  2165. `-------------------------------------------------------------*/
  2166. yyerrlab1:
  2167.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  2168.   for (;;)
  2169.     {
  2170.       yyn = yypact[yystate];
  2171.       if (!yypact_value_is_default (yyn))
  2172.         {
  2173.           yyn += YYTERROR;
  2174.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  2175.             {
  2176.               yyn = yytable[yyn];
  2177.               if (0 < yyn)
  2178.                 break;
  2179.             }
  2180.         }

  2181.       /* Pop the current state because it cannot handle the error token.  */
  2182.       if (yyssp == yyss)
  2183.         YYABORT;


  2184.       yydestruct ("Error: popping",
  2185.                   yystos[yystate], yyvsp);
  2186.       YYPOPSTACK (1);
  2187.       yystate = *yyssp;
  2188.       YY_STACK_PRINT (yyss, yyssp);
  2189.     }

  2190.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  2191.   *++yyvsp = yylval;
  2192.   YY_IGNORE_MAYBE_UNINITIALIZED_END


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

  2195.   yystate = yyn;
  2196.   goto yynewstate;


  2197. /*-------------------------------------.
  2198. | yyacceptlab -- YYACCEPT comes here.  |
  2199. `-------------------------------------*/
  2200. yyacceptlab:
  2201.   yyresult = 0;
  2202.   goto yyreturn;

  2203. /*-----------------------------------.
  2204. | yyabortlab -- YYABORT comes here.  |
  2205. `-----------------------------------*/
  2206. yyabortlab:
  2207.   yyresult = 1;
  2208.   goto yyreturn;

  2209. #if !defined yyoverflow || YYERROR_VERBOSE
  2210. /*-------------------------------------------------.
  2211. | yyexhaustedlab -- memory exhaustion comes here.  |
  2212. `-------------------------------------------------*/
  2213. yyexhaustedlab:
  2214.   yyerror (YY_("memory exhausted"));
  2215.   yyresult = 2;
  2216.   /* Fall through.  */
  2217. #endif

  2218. yyreturn:
  2219.   if (yychar != YYEMPTY)
  2220.     {
  2221.       /* Make sure we have latest lookahead translation.  See comments at
  2222.          user semantic actions for why this is necessary.  */
  2223.       yytoken = YYTRANSLATE (yychar);
  2224.       yydestruct ("Cleanup: discarding lookahead",
  2225.                   yytoken, &yylval);
  2226.     }
  2227.   /* Do not reclaim the symbols of the rule which action triggered
  2228.      this YYABORT or YYACCEPT.  */
  2229.   YYPOPSTACK (yylen);
  2230.   YY_STACK_PRINT (yyss, yyssp);
  2231.   while (yyssp != yyss)
  2232.     {
  2233.       yydestruct ("Cleanup: popping",
  2234.                   yystos[*yyssp], yyvsp);
  2235.       YYPOPSTACK (1);
  2236.     }
  2237. #ifndef yyoverflow
  2238.   if (yyss != yyssa)
  2239.     YYSTACK_FREE (yyss);
  2240. #endif
  2241. #if YYERROR_VERBOSE
  2242.   if (yymsg != yymsgbuf)
  2243.     YYSTACK_FREE (yymsg);
  2244. #endif
  2245.   /* Make sure YYID is used.  */
  2246.   return YYID (yyresult);
  2247. }


  2248. /* Line 2055 of yacc.c  */
  2249. #line 642 "d-exp.y"


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

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

  2254. static int
  2255. parse_number (struct parser_state *ps, const char *p,
  2256.               int len, int parsed_float, YYSTYPE *putithere)
  2257. {
  2258.   ULONGEST n = 0;
  2259.   ULONGEST prevn = 0;
  2260.   ULONGEST un;

  2261.   int i = 0;
  2262.   int c;
  2263.   int base = input_radix;
  2264.   int unsigned_p = 0;
  2265.   int long_p = 0;

  2266.   /* We have found a "L" or "U" suffix.  */
  2267.   int found_suffix = 0;

  2268.   ULONGEST high_bit;
  2269.   struct type *signed_type;
  2270.   struct type *unsigned_type;

  2271.   if (parsed_float)
  2272.     {
  2273.       const struct builtin_d_type *builtin_d_types;
  2274.       const char *suffix;
  2275.       int suffix_len;
  2276.       char *s, *sp;

  2277.       /* Strip out all embedded '_' before passing to parse_float.  */
  2278.       s = (char *) alloca (len + 1);
  2279.       sp = s;
  2280.       while (len-- > 0)
  2281.         {
  2282.           if (*p != '_')
  2283.             *sp++ = *p;
  2284.           p++;
  2285.         }
  2286.       *sp = '\0';
  2287.       len = strlen (s);

  2288.       if (! parse_float (s, len, &putithere->typed_val_float.dval, &suffix))
  2289.         return ERROR;

  2290.       suffix_len = s + len - suffix;

  2291.       if (suffix_len == 0)
  2292.         {
  2293.           putithere->typed_val_float.type
  2294.             = parse_d_type (ps)->builtin_double;
  2295.         }
  2296.       else if (suffix_len == 1)
  2297.         {
  2298.           /* Check suffix for `f', `l', or `i' (float, real, or idouble).  */
  2299.           if (tolower (*suffix) == 'f')
  2300.             {
  2301.               putithere->typed_val_float.type
  2302.                 = parse_d_type (ps)->builtin_float;
  2303.             }
  2304.           else if (tolower (*suffix) == 'l')
  2305.             {
  2306.               putithere->typed_val_float.type
  2307.                 = parse_d_type (ps)->builtin_real;
  2308.             }
  2309.           else if (tolower (*suffix) == 'i')
  2310.             {
  2311.               putithere->typed_val_float.type
  2312.                 = parse_d_type (ps)->builtin_idouble;
  2313.             }
  2314.           else
  2315.             return ERROR;
  2316.         }
  2317.       else if (suffix_len == 2)
  2318.         {
  2319.           /* Check suffix for `fi' or `li' (ifloat or ireal).  */
  2320.           if (tolower (suffix[0]) == 'f' && tolower (suffix[1] == 'i'))
  2321.             {
  2322.               putithere->typed_val_float.type
  2323.                 = parse_d_type (ps)->builtin_ifloat;
  2324.             }
  2325.           else if (tolower (suffix[0]) == 'l' && tolower (suffix[1] == 'i'))
  2326.             {
  2327.               putithere->typed_val_float.type
  2328.                 = parse_d_type (ps)->builtin_ireal;
  2329.             }
  2330.           else
  2331.             return ERROR;
  2332.         }
  2333.       else
  2334.         return ERROR;

  2335.       return FLOAT_LITERAL;
  2336.     }

  2337.   /* Handle base-switching prefixes 0x, 0b, 0 */
  2338.   if (p[0] == '0')
  2339.     switch (p[1])
  2340.       {
  2341.       case 'x':
  2342.       case 'X':
  2343.         if (len >= 3)
  2344.           {
  2345.             p += 2;
  2346.             base = 16;
  2347.             len -= 2;
  2348.           }
  2349.         break;

  2350.       case 'b':
  2351.       case 'B':
  2352.         if (len >= 3)
  2353.           {
  2354.             p += 2;
  2355.             base = 2;
  2356.             len -= 2;
  2357.           }
  2358.         break;

  2359.       default:
  2360.         base = 8;
  2361.         break;
  2362.       }

  2363.   while (len-- > 0)
  2364.     {
  2365.       c = *p++;
  2366.       if (c == '_')
  2367.         continue;        /* Ignore embedded '_'.  */
  2368.       if (c >= 'A' && c <= 'Z')
  2369.         c += 'a' - 'A';
  2370.       if (c != 'l' && c != 'u')
  2371.         n *= base;
  2372.       if (c >= '0' && c <= '9')
  2373.         {
  2374.           if (found_suffix)
  2375.             return ERROR;
  2376.           n += i = c - '0';
  2377.         }
  2378.       else
  2379.         {
  2380.           if (base > 10 && c >= 'a' && c <= 'f')
  2381.             {
  2382.               if (found_suffix)
  2383.                 return ERROR;
  2384.               n += i = c - 'a' + 10;
  2385.             }
  2386.           else if (c == 'l' && long_p == 0)
  2387.             {
  2388.               long_p = 1;
  2389.               found_suffix = 1;
  2390.             }
  2391.           else if (c == 'u' && unsigned_p == 0)
  2392.             {
  2393.               unsigned_p = 1;
  2394.               found_suffix = 1;
  2395.             }
  2396.           else
  2397.             return ERROR;        /* Char not a digit */
  2398.         }
  2399.       if (i >= base)
  2400.         return ERROR;                /* Invalid digit in this base.  */
  2401.       /* Portably test for integer overflow.  */
  2402.       if (c != 'l' && c != 'u')
  2403.         {
  2404.           ULONGEST n2 = prevn * base;
  2405.           if ((n2 / base != prevn) || (n2 + i < prevn))
  2406.             error (_("Numeric constant too large."));
  2407.         }
  2408.       prevn = n;
  2409.     }

  2410.   /* An integer constant is an int or a long.  An L suffix forces it to
  2411.      be long, and a U suffix forces it to be unsigned.  To figure out
  2412.      whether it fits, we shift it right and see whether anything remains.
  2413.      Note that we can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or
  2414.      more in one operation, because many compilers will warn about such a
  2415.      shift (which always produces a zero result).  To deal with the case
  2416.      where it is we just always shift the value more than once, with fewer
  2417.      bits each time.  */
  2418.   un = (ULONGEST) n >> 2;
  2419.   if (long_p == 0 && (un >> 30) == 0)
  2420.     {
  2421.       high_bit = ((ULONGEST) 1) << 31;
  2422.       signed_type = parse_d_type (ps)->builtin_int;
  2423.       /* For decimal notation, keep the sign of the worked out type.  */
  2424.       if (base == 10 && !unsigned_p)
  2425.         unsigned_type = parse_d_type (ps)->builtin_long;
  2426.       else
  2427.         unsigned_type = parse_d_type (ps)->builtin_uint;
  2428.     }
  2429.   else
  2430.     {
  2431.       int shift;
  2432.       if (sizeof (ULONGEST) * HOST_CHAR_BIT < 64)
  2433.         /* A long long does not fit in a LONGEST.  */
  2434.         shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
  2435.       else
  2436.         shift = 63;
  2437.       high_bit = (ULONGEST) 1 << shift;
  2438.       signed_type = parse_d_type (ps)->builtin_long;
  2439.       unsigned_type = parse_d_type (ps)->builtin_ulong;
  2440.     }

  2441.   putithere->typed_val_int.val = n;

  2442.   /* If the high bit of the worked out type is set then this number
  2443.      has to be unsigned_type.  */
  2444.   if (unsigned_p || (n & high_bit))
  2445.     putithere->typed_val_int.type = unsigned_type;
  2446.   else
  2447.     putithere->typed_val_int.type = signed_type;

  2448.   return INTEGER_LITERAL;
  2449. }

  2450. /* Temporary obstack used for holding strings.  */
  2451. static struct obstack tempbuf;
  2452. static int tempbuf_init;

  2453. /* Parse a string or character literal from TOKPTR.  The string or
  2454.    character may be wide or unicode.  *OUTPTR is set to just after the
  2455.    end of the literal in the input string.  The resulting token is
  2456.    stored in VALUE.  This returns a token value, either STRING or
  2457.    CHAR, depending on what was parsed.  *HOST_CHARS is set to the
  2458.    number of host characters in the literal.  */

  2459. static int
  2460. parse_string_or_char (const char *tokptr, const char **outptr,
  2461.                       struct typed_stoken *value, int *host_chars)
  2462. {
  2463.   int quote;

  2464.   /* Build the gdb internal form of the input string in tempbuf.  Note
  2465.      that the buffer is null byte terminated *only* for the
  2466.      convenience of debugging gdb itself and printing the buffer
  2467.      contents when the buffer contains no embedded nulls.  Gdb does
  2468.      not depend upon the buffer being null byte terminated, it uses
  2469.      the length string instead.  This allows gdb to handle C strings
  2470.      (as well as strings in other languages) with embedded null
  2471.      bytes */

  2472.   if (!tempbuf_init)
  2473.     tempbuf_init = 1;
  2474.   else
  2475.     obstack_free (&tempbuf, NULL);
  2476.   obstack_init (&tempbuf);

  2477.   /* Skip the quote.  */
  2478.   quote = *tokptr;
  2479.   ++tokptr;

  2480.   *host_chars = 0;

  2481.   while (*tokptr)
  2482.     {
  2483.       char c = *tokptr;
  2484.       if (c == '\\')
  2485.         {
  2486.            ++tokptr;
  2487.            *host_chars += c_parse_escape (&tokptr, &tempbuf);
  2488.         }
  2489.       else if (c == quote)
  2490.         break;
  2491.       else
  2492.         {
  2493.           obstack_1grow (&tempbuf, c);
  2494.           ++tokptr;
  2495.           /* FIXME: this does the wrong thing with multi-byte host
  2496.              characters.  We could use mbrlen here, but that would
  2497.              make "set host-charset" a bit less useful.  */
  2498.           ++*host_chars;
  2499.         }
  2500.     }

  2501.   if (*tokptr != quote)
  2502.     {
  2503.       if (quote == '"' || quote == '`')
  2504.         error (_("Unterminated string in expression."));
  2505.       else
  2506.         error (_("Unmatched single quote."));
  2507.     }
  2508.   ++tokptr;

  2509.   /* FIXME: should instead use own language string_type enum
  2510.      and handle D-specific string suffixes here. */
  2511.   if (quote == '\'')
  2512.     value->type = C_CHAR;
  2513.   else
  2514.     value->type = C_STRING;

  2515.   value->ptr = obstack_base (&tempbuf);
  2516.   value->length = obstack_object_size (&tempbuf);

  2517.   *outptr = tokptr;

  2518.   return quote == '\'' ? CHARACTER_LITERAL : STRING_LITERAL;
  2519. }

  2520. struct token
  2521. {
  2522.   char *operator;
  2523.   int token;
  2524.   enum exp_opcode opcode;
  2525. };

  2526. static const struct token tokentab3[] =
  2527.   {
  2528.     {"^^=", ASSIGN_MODIFY, BINOP_EXP},
  2529.     {"<<=", ASSIGN_MODIFY, BINOP_LSH},
  2530.     {">>=", ASSIGN_MODIFY, BINOP_RSH},
  2531.   };

  2532. static const struct token tokentab2[] =
  2533.   {
  2534.     {"+=", ASSIGN_MODIFY, BINOP_ADD},
  2535.     {"-=", ASSIGN_MODIFY, BINOP_SUB},
  2536.     {"*=", ASSIGN_MODIFY, BINOP_MUL},
  2537.     {"/=", ASSIGN_MODIFY, BINOP_DIV},
  2538.     {"%=", ASSIGN_MODIFY, BINOP_REM},
  2539.     {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
  2540.     {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
  2541.     {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
  2542.     {"++", INCREMENT, BINOP_END},
  2543.     {"--", DECREMENT, BINOP_END},
  2544.     {"&&", ANDAND, BINOP_END},
  2545.     {"||", OROR, BINOP_END},
  2546.     {"^^", HATHAT, BINOP_END},
  2547.     {"<<", LSH, BINOP_END},
  2548.     {">>", RSH, BINOP_END},
  2549.     {"==", EQUAL, BINOP_END},
  2550.     {"!=", NOTEQUAL, BINOP_END},
  2551.     {"<=", LEQ, BINOP_END},
  2552.     {">=", GEQ, BINOP_END},
  2553.     {"..", DOTDOT, BINOP_END},
  2554.   };

  2555. /* Identifier-like tokens.  */
  2556. static const struct token ident_tokens[] =
  2557.   {
  2558.     {"is", IDENTITY, BINOP_END},
  2559.     {"!is", NOTIDENTITY, BINOP_END},

  2560.     {"cast", CAST_KEYWORD, OP_NULL},
  2561.     {"const", CONST_KEYWORD, OP_NULL},
  2562.     {"immutable", IMMUTABLE_KEYWORD, OP_NULL},
  2563.     {"shared", SHARED_KEYWORD, OP_NULL},
  2564.     {"super", SUPER_KEYWORD, OP_NULL},

  2565.     {"null", NULL_KEYWORD, OP_NULL},
  2566.     {"true", TRUE_KEYWORD, OP_NULL},
  2567.     {"false", FALSE_KEYWORD, OP_NULL},

  2568.     {"init", INIT_KEYWORD, OP_NULL},
  2569.     {"sizeof", SIZEOF_KEYWORD, OP_NULL},
  2570.     {"typeof", TYPEOF_KEYWORD, OP_NULL},
  2571.     {"typeid", TYPEID_KEYWORD, OP_NULL},

  2572.     {"delegate", DELEGATE_KEYWORD, OP_NULL},
  2573.     {"function", FUNCTION_KEYWORD, OP_NULL},
  2574.     {"struct", STRUCT_KEYWORD, OP_NULL},
  2575.     {"union", UNION_KEYWORD, OP_NULL},
  2576.     {"class", CLASS_KEYWORD, OP_NULL},
  2577.     {"interface", INTERFACE_KEYWORD, OP_NULL},
  2578.     {"enum", ENUM_KEYWORD, OP_NULL},
  2579.     {"template", TEMPLATE_KEYWORD, OP_NULL},
  2580.   };

  2581. /* If NAME is a type name in this scope, return it.  */

  2582. static struct type *
  2583. d_type_from_name (struct stoken name)
  2584. {
  2585.   struct symbol *sym;
  2586.   char *copy = copy_name (name);

  2587.   sym = lookup_symbol (copy, expression_context_block,
  2588.                        STRUCT_DOMAIN, NULL);
  2589.   if (sym != NULL)
  2590.     return SYMBOL_TYPE (sym);

  2591.   return NULL;
  2592. }

  2593. /* If NAME is a module name in this scope, return it.  */

  2594. static struct type *
  2595. d_module_from_name (struct stoken name)
  2596. {
  2597.   struct symbol *sym;
  2598.   char *copy = copy_name (name);

  2599.   sym = lookup_symbol (copy, expression_context_block,
  2600.                        MODULE_DOMAIN, NULL);
  2601.   if (sym != NULL)
  2602.     return SYMBOL_TYPE (sym);

  2603.   return NULL;
  2604. }

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

  2607. static int
  2608. push_variable (struct parser_state *ps, struct stoken name)
  2609. {
  2610.   char *copy = copy_name (name);
  2611.   struct field_of_this_result is_a_field_of_this;
  2612.   struct symbol *sym;
  2613.   sym = lookup_symbol (copy, expression_context_block, VAR_DOMAIN,
  2614.                        &is_a_field_of_this);
  2615.   if (sym && SYMBOL_CLASS (sym) != LOC_TYPEDEF)
  2616.     {
  2617.       if (symbol_read_needs_frame (sym))
  2618.         {
  2619.           if (innermost_block == 0 ||
  2620.               contained_in (block_found, innermost_block))
  2621.             innermost_block = block_found;
  2622.         }

  2623.       write_exp_elt_opcode (ps, OP_VAR_VALUE);
  2624.       /* We want to use the selected frame, not another more inner frame
  2625.          which happens to be in the same block.  */
  2626.       write_exp_elt_block (ps, NULL);
  2627.       write_exp_elt_sym (ps, sym);
  2628.       write_exp_elt_opcode (ps, OP_VAR_VALUE);
  2629.       return 1;
  2630.     }
  2631.   if (is_a_field_of_this.type != NULL)
  2632.     {
  2633.       /* It hangs off of `this'.  Must not inadvertently convert from a
  2634.          method call to data ref.  */
  2635.       if (innermost_block == 0 ||
  2636.           contained_in (block_found, innermost_block))
  2637.         innermost_block = block_found;
  2638.       write_exp_elt_opcode (ps, OP_THIS);
  2639.       write_exp_elt_opcode (ps, OP_THIS);
  2640.       write_exp_elt_opcode (ps, STRUCTOP_PTR);
  2641.       write_exp_string (ps, name);
  2642.       write_exp_elt_opcode (ps, STRUCTOP_PTR);
  2643.       return 1;
  2644.     }
  2645.   return 0;
  2646. }

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

  2650. static void
  2651. push_fieldnames (struct parser_state *ps, struct stoken name)
  2652. {
  2653.   int i;
  2654.   struct stoken token;
  2655.   token.ptr = name.ptr;
  2656.   for (i = 0;  ;  i++)
  2657.     {
  2658.       if (i == name.length || name.ptr[i] == '.')
  2659.         {
  2660.           /* token.ptr is start of current field name.  */
  2661.           token.length = &name.ptr[i] - token.ptr;
  2662.           write_exp_elt_opcode (ps, STRUCTOP_PTR);
  2663.           write_exp_string (ps, token);
  2664.           write_exp_elt_opcode (ps, STRUCTOP_PTR);
  2665.           token.ptr += token.length + 1;
  2666.         }
  2667.       if (i >= name.length)
  2668.         break;
  2669.     }
  2670. }

  2671. /* Helper routine for push_expression_name.  Handle a TYPE symbol,
  2672.    where DOT_INDEX is the index of the first '.' if NAME is part of
  2673.    a qualified type.  */

  2674. static void
  2675. push_type_name (struct parser_state *ps, struct type *type,
  2676.                 struct stoken name, int dot_index)
  2677. {
  2678.   if (dot_index == name.length)
  2679.     {
  2680.       write_exp_elt_opcode (ps, OP_TYPE);
  2681.       write_exp_elt_type (ps, type);
  2682.       write_exp_elt_opcode (ps, OP_TYPE);
  2683.     }
  2684.   else
  2685.     {
  2686.       struct stoken token;

  2687.       token.ptr = name.ptr;
  2688.       token.length = dot_index;

  2689.       dot_index = 0;

  2690.       while (dot_index < name.length && name.ptr[dot_index] != '.')
  2691.         dot_index++;
  2692.       token.ptr = name.ptr;
  2693.       token.length = dot_index;

  2694.       write_exp_elt_opcode (ps, OP_SCOPE);
  2695.       write_exp_elt_type (ps, type);
  2696.       write_exp_string (ps, token);
  2697.       write_exp_elt_opcode (ps, OP_SCOPE);

  2698.       if (dot_index < name.length)
  2699.         {
  2700.           dot_index++;
  2701.           name.ptr += dot_index;
  2702.           name.length -= dot_index;
  2703.           push_fieldnames (ps, name);
  2704.         }
  2705.     }
  2706. }

  2707. /* Helper routine for push_expression_name.  Like push_type_name,
  2708.    but used when TYPE is a module.  Returns 1 on pushing the symbol.  */

  2709. static int
  2710. push_module_name (struct parser_state *ps, struct type *module,
  2711.                   struct stoken name, int dot_index)
  2712. {
  2713.   if (dot_index == name.length)
  2714.     {
  2715.       write_exp_elt_opcode (ps, OP_TYPE);
  2716.       write_exp_elt_type (ps, module);
  2717.       write_exp_elt_opcode (ps, OP_TYPE);
  2718.       return 1;
  2719.     }
  2720.   else
  2721.     {
  2722.       struct symbol *sym;
  2723.       char *copy;

  2724.       copy = copy_name (name);
  2725.       sym = lookup_symbol_static (copy, expression_context_block,
  2726.                                   VAR_DOMAIN);
  2727.       if (sym != NULL)
  2728.         sym = lookup_symbol_global (copy, expression_context_block,
  2729.                                     VAR_DOMAIN);

  2730.       if (sym != NULL)
  2731.         {
  2732.           if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
  2733.             {
  2734.               write_exp_elt_opcode (ps, OP_VAR_VALUE);
  2735.               write_exp_elt_block (ps, NULL);
  2736.               write_exp_elt_sym (ps, sym);
  2737.               write_exp_elt_opcode (ps, OP_VAR_VALUE);
  2738.             }
  2739.           else
  2740.             {
  2741.               write_exp_elt_opcode (ps, OP_TYPE);
  2742.               write_exp_elt_type (ps, SYMBOL_TYPE (sym));
  2743.               write_exp_elt_opcode (ps, OP_TYPE);
  2744.             }
  2745.           return 1;
  2746.         }
  2747.     }

  2748.   return 0;
  2749. }

  2750. /* Handle NAME in an expression (or LHS), which could be a
  2751.    variable, type, or module.  */

  2752. static void
  2753. push_expression_name (struct parser_state *ps, struct stoken name)
  2754. {
  2755.   struct stoken token;
  2756.   struct type *typ;
  2757.   struct bound_minimal_symbol msymbol;
  2758.   char *copy;
  2759.   int doti;

  2760.   /* Handle VAR, which could be local or global.  */
  2761.   if (push_variable (ps, name) != 0)
  2762.     return;

  2763.   /* Handle MODULE.  */
  2764.   typ = d_module_from_name (name);
  2765.   if (typ != NULL)
  2766.     {
  2767.       if (push_module_name (ps, typ, name, name.length) != 0)
  2768.         return;
  2769.     }

  2770.   /* Handle TYPE.  */
  2771.   typ = d_type_from_name (name);
  2772.   if (typ != NULL)
  2773.     {
  2774.       push_type_name (ps, typ, name, name.length);
  2775.       return;
  2776.     }

  2777.   /* Handle VAR.FIELD1..FIELDN.  */
  2778.   for (doti = 0;  doti < name.length;  doti++)
  2779.     {
  2780.       if (name.ptr[doti] == '.')
  2781.         {
  2782.           token.ptr = name.ptr;
  2783.           token.length = doti;

  2784.           if (push_variable (ps, token) != 0)
  2785.             {
  2786.               token.ptr = name.ptr + doti + 1;
  2787.               token.length = name.length - doti - 1;
  2788.               push_fieldnames (ps, token);
  2789.               return;
  2790.             }
  2791.           break;
  2792.         }
  2793.     }

  2794.   /* Continue looking if we found a '.' in the name.  */
  2795.   if (doti < name.length)
  2796.     {
  2797.       token.ptr = name.ptr;
  2798.       for (;;)
  2799.         {
  2800.           token.length = doti;

  2801.           /* Handle PACKAGE.MODULE.  */
  2802.           typ = d_module_from_name (token);
  2803.           if (typ != NULL)
  2804.             {
  2805.               if (push_module_name (ps, typ, name, doti) != 0)
  2806.                 return;
  2807.             }
  2808.           /* Handle TYPE.FIELD1..FIELDN.  */
  2809.           typ = d_type_from_name (token);
  2810.           if (typ != NULL)
  2811.             {
  2812.               push_type_name (ps, typ, name, doti);
  2813.               return;
  2814.             }

  2815.           if (doti >= name.length)
  2816.             break;
  2817.           doti++;   /* Skip '.'  */
  2818.           while (doti < name.length && name.ptr[doti] != '.')
  2819.             doti++;
  2820.         }
  2821.     }

  2822.   /* Lookup foreign name in global static symbols.  */
  2823.   copy  = copy_name (name);
  2824.   msymbol = lookup_bound_minimal_symbol (copy);
  2825.   if (msymbol.minsym != NULL)
  2826.     write_exp_msymbol (ps, msymbol);
  2827.   else if (!have_full_symbols () && !have_partial_symbols ())
  2828.     error (_("No symbol table is loaded.  Use the \"file\" command"));
  2829.   else
  2830.     error (_("No symbol \"%s\" in current context."), copy);
  2831. }

  2832. /* This is set if a NAME token appeared at the very end of the input
  2833.    string, with no whitespace separating the name from the EOF.  This
  2834.    is used only when parsing to do field name completion.  */
  2835. static int saw_name_at_eof;

  2836. /* This is set if the previously-returned token was a structure operator.
  2837.    This is used only when parsing to do field name completion.  */
  2838. static int last_was_structop;

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

  2840. static int
  2841. yylex (void)
  2842. {
  2843.   int c;
  2844.   int namelen;
  2845.   unsigned int i;
  2846.   const char *tokstart;
  2847.   int saw_structop = last_was_structop;
  2848.   char *copy;

  2849.   last_was_structop = 0;

  2850. retry:

  2851.   prev_lexptr = lexptr;

  2852.   tokstart = lexptr;
  2853.   /* See if it is a special token of length 3.  */
  2854.   for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
  2855.     if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
  2856.       {
  2857.         lexptr += 3;
  2858.         yylval.opcode = tokentab3[i].opcode;
  2859.         return tokentab3[i].token;
  2860.       }

  2861.   /* See if it is a special token of length 2.  */
  2862.   for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
  2863.     if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
  2864.       {
  2865.         lexptr += 2;
  2866.         yylval.opcode = tokentab2[i].opcode;
  2867.         return tokentab2[i].token;
  2868.       }

  2869.   switch (c = *tokstart)
  2870.     {
  2871.     case 0:
  2872.       /* If we're parsing for field name completion, and the previous
  2873.          token allows such completion, return a COMPLETE token.
  2874.          Otherwise, we were already scanning the original text, and
  2875.          we're really done.  */
  2876.       if (saw_name_at_eof)
  2877.         {
  2878.           saw_name_at_eof = 0;
  2879.           return COMPLETE;
  2880.         }
  2881.       else if (saw_structop)
  2882.         return COMPLETE;
  2883.       else
  2884.         return 0;

  2885.     case ' ':
  2886.     case '\t':
  2887.     case '\n':
  2888.       lexptr++;
  2889.       goto retry;

  2890.     case '[':
  2891.     case '(':
  2892.       paren_depth++;
  2893.       lexptr++;
  2894.       return c;

  2895.     case ']':
  2896.     case ')':
  2897.       if (paren_depth == 0)
  2898.         return 0;
  2899.       paren_depth--;
  2900.       lexptr++;
  2901.       return c;

  2902.     case ',':
  2903.       if (comma_terminates && paren_depth == 0)
  2904.         return 0;
  2905.       lexptr++;
  2906.       return c;

  2907.     case '.':
  2908.       /* Might be a floating point number.  */
  2909.       if (lexptr[1] < '0' || lexptr[1] > '9')
  2910.         {
  2911.           if (parse_completion)
  2912.             last_was_structop = 1;
  2913.           goto symbol;                /* Nope, must be a symbol.  */
  2914.         }
  2915.       /* FALL THRU into number case.  */

  2916.     case '0':
  2917.     case '1':
  2918.     case '2':
  2919.     case '3':
  2920.     case '4':
  2921.     case '5':
  2922.     case '6':
  2923.     case '7':
  2924.     case '8':
  2925.     case '9':
  2926.       {
  2927.         /* It's a number.  */
  2928.         int got_dot = 0, got_e = 0, toktype;
  2929.         const char *p = tokstart;
  2930.         int hex = input_radix > 10;

  2931.         if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
  2932.           {
  2933.             p += 2;
  2934.             hex = 1;
  2935.           }

  2936.         for (;; ++p)
  2937.           {
  2938.             /* Hex exponents start with 'p', because 'e' is a valid hex
  2939.                digit and thus does not indicate a floating point number
  2940.                when the radix is hex.  */
  2941.             if ((!hex && !got_e && tolower (p[0]) == 'e')
  2942.                 || (hex && !got_e && tolower (p[0] == 'p')))
  2943.               got_dot = got_e = 1;
  2944.             /* A '.' always indicates a decimal floating point number
  2945.                regardless of the radix.  If we have a '..' then its the
  2946.                end of the number and the beginning of a slice.  */
  2947.             else if (!got_dot && (p[0] == '.' && p[1] != '.'))
  2948.                 got_dot = 1;
  2949.             /* This is the sign of the exponent, not the end of the number.  */
  2950.             else if (got_e && (tolower (p[-1]) == 'e' || tolower (p[-1]) == 'p')
  2951.                      && (*p == '-' || *p == '+'))
  2952.               continue;
  2953.             /* We will take any letters or digits, ignoring any embedded '_'.
  2954.                parse_number will complain if past the radix, or if L or U are
  2955.                not final.  */
  2956.             else if ((*p < '0' || *p > '9') && (*p != '_') &&
  2957.                      ((*p < 'a' || *p > 'z') && (*p < 'A' || *p > 'Z')))
  2958.               break;
  2959.           }

  2960.         toktype = parse_number (pstate, tokstart, p - tokstart,
  2961.                                 got_dot|got_e, &yylval);
  2962.         if (toktype == ERROR)
  2963.           {
  2964.             char *err_copy = (char *) alloca (p - tokstart + 1);

  2965.             memcpy (err_copy, tokstart, p - tokstart);
  2966.             err_copy[p - tokstart] = 0;
  2967.             error (_("Invalid number \"%s\"."), err_copy);
  2968.           }
  2969.         lexptr = p;
  2970.         return toktype;
  2971.       }

  2972.     case '@':
  2973.       {
  2974.         const char *p = &tokstart[1];
  2975.         size_t len = strlen ("entry");

  2976.         while (isspace (*p))
  2977.           p++;
  2978.         if (strncmp (p, "entry", len) == 0 && !isalnum (p[len])
  2979.             && p[len] != '_')
  2980.           {
  2981.             lexptr = &p[len];
  2982.             return ENTRY;
  2983.           }
  2984.       }
  2985.       /* FALLTHRU */
  2986.     case '+':
  2987.     case '-':
  2988.     case '*':
  2989.     case '/':
  2990.     case '%':
  2991.     case '|':
  2992.     case '&':
  2993.     case '^':
  2994.     case '~':
  2995.     case '!':
  2996.     case '<':
  2997.     case '>':
  2998.     case '?':
  2999.     case ':':
  3000.     case '=':
  3001.     case '{':
  3002.     case '}':
  3003.     symbol:
  3004.       lexptr++;
  3005.       return c;

  3006.     case '\'':
  3007.     case '"':
  3008.     case '`':
  3009.       {
  3010.         int host_len;
  3011.         int result = parse_string_or_char (tokstart, &lexptr, &yylval.tsval,
  3012.                                            &host_len);
  3013.         if (result == CHARACTER_LITERAL)
  3014.           {
  3015.             if (host_len == 0)
  3016.               error (_("Empty character constant."));
  3017.             else if (host_len > 2 && c == '\'')
  3018.               {
  3019.                 ++tokstart;
  3020.                 namelen = lexptr - tokstart - 1;
  3021.                 goto tryname;
  3022.               }
  3023.             else if (host_len > 1)
  3024.               error (_("Invalid character constant."));
  3025.           }
  3026.         return result;
  3027.       }
  3028.     }

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

  3033.   /* It's a name.  See how long it is.  */
  3034.   namelen = 0;
  3035.   for (c = tokstart[namelen];
  3036.        (c == '_' || c == '$' || (c >= '0' && c <= '9')
  3037.         || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));)
  3038.     c = tokstart[++namelen];

  3039.   /* The token "if" terminates the expression and is NOT
  3040.      removed from the input stream.  */
  3041.   if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
  3042.     return 0;

  3043.   /* For the same reason (breakpoint conditions), "thread N"
  3044.      terminates the expression.  "thread" could be an identifier, but
  3045.      an identifier is never followed by a number without intervening
  3046.      punctuation.  "task" is similar.  Handle abbreviations of these,
  3047.      similarly to breakpoint.c:find_condition_and_thread.  */
  3048.   if (namelen >= 1
  3049.       && (strncmp (tokstart, "thread", namelen) == 0
  3050.           || strncmp (tokstart, "task", namelen) == 0)
  3051.       && (tokstart[namelen] == ' ' || tokstart[namelen] == '\t'))
  3052.     {
  3053.       const char *p = tokstart + namelen + 1;

  3054.       while (*p == ' ' || *p == '\t')
  3055.         p++;
  3056.       if (*p >= '0' && *p <= '9')
  3057.         return 0;
  3058.     }

  3059.   lexptr += namelen;

  3060. tryname:

  3061.   yylval.sval.ptr = tokstart;
  3062.   yylval.sval.length = namelen;

  3063.   /* Catch specific keywords.  */
  3064.   copy = copy_name (yylval.sval);
  3065.   for (i = 0; i < sizeof ident_tokens / sizeof ident_tokens[0]; i++)
  3066.     if (strcmp (copy, ident_tokens[i].operator) == 0)
  3067.       {
  3068.         /* It is ok to always set this, even though we don't always
  3069.            strictly need to.  */
  3070.         yylval.opcode = ident_tokens[i].opcode;
  3071.         return ident_tokens[i].token;
  3072.       }

  3073.   if (*tokstart == '$')
  3074.     return DOLLAR_VARIABLE;

  3075.   yylval.tsym.type
  3076.     = language_lookup_primitive_type_by_name (parse_language (pstate),
  3077.                                               parse_gdbarch (pstate), copy);
  3078.   if (yylval.tsym.type != NULL)
  3079.     return TYPENAME;

  3080.   /* Input names that aren't symbols but ARE valid hex numbers,
  3081.      when the input radix permits them, can be names or numbers
  3082.      depending on the parse.  Note we support radixes > 16 here.  */
  3083.   if ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10)
  3084.       || (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10))
  3085.     {
  3086.       YYSTYPE newlval;        /* Its value is ignored.  */
  3087.       int hextype = parse_number (pstate, tokstart, namelen, 0, &newlval);
  3088.       if (hextype == INTEGER_LITERAL)
  3089.         return NAME_OR_INT;
  3090.     }

  3091.   if (parse_completion && *lexptr == '\0')
  3092.     saw_name_at_eof = 1;

  3093.   return IDENTIFIER;
  3094. }

  3095. int
  3096. d_parse (struct parser_state *par_state)
  3097. {
  3098.   int result;
  3099.   struct cleanup *back_to;

  3100.   /* Setting up the parser state.  */
  3101.   gdb_assert (par_state != NULL);
  3102.   pstate = par_state;

  3103.   back_to = make_cleanup (null_cleanup, NULL);

  3104.   make_cleanup_restore_integer (&yydebug);
  3105.   make_cleanup_clear_parser_state (&pstate);
  3106.   yydebug = parser_debug;

  3107.   /* Initialize some state used by the lexer.  */
  3108.   last_was_structop = 0;
  3109.   saw_name_at_eof = 0;

  3110.   result = yyparse ();
  3111.   do_cleanups (back_to);
  3112.   return result;
  3113. }

  3114. void
  3115. yyerror (char *msg)
  3116. {
  3117.   if (prev_lexptr)
  3118.     lexptr = prev_lexptr;

  3119.   error (_("A %s in expression, near `%s'."), (msg ? msg : "error"), lexptr);
  3120. }