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

  68. #define        yymaxdepth go_maxdepth
  69. #define        yyparse        go_parse_internal
  70. #define        yylex        go_lex
  71. #define        yyerror        go_error
  72. #define        yylval        go_lval
  73. #define        yychar        go_char
  74. #define        yydebug        go_debug
  75. #define        yypact        go_pact
  76. #define        yyr1        go_r1
  77. #define        yyr2        go_r2
  78. #define        yydef        go_def
  79. #define        yychk        go_chk
  80. #define        yypgo        go_pgo
  81. #define        yyact        go_act
  82. #define        yyexca        go_exca
  83. #define yyerrflag go_errflag
  84. #define yynerrs        go_nerrs
  85. #define        yyps        go_ps
  86. #define        yypv        go_pv
  87. #define        yys        go_s
  88. #define        yy_yys        go_yys
  89. #define        yystate        go_state
  90. #define        yytmp        go_tmp
  91. #define        yyv        go_v
  92. #define        yy_yyv        go_yyv
  93. #define        yyval        go_val
  94. #define        yylloc        go_lloc
  95. #define yyreds        go_reds                /* With YYDEBUG defined */
  96. #define yytoks        go_toks                /* With YYDEBUG defined */
  97. #define yyname        go_name                /* With YYDEBUG defined */
  98. #define yyrule        go_rule                /* With YYDEBUG defined */
  99. #define yylhs        go_yylhs
  100. #define yylen        go_yylen
  101. #define yydefred go_yydefred
  102. #define yydgoto        go_yydgoto
  103. #define yysindex go_yysindex
  104. #define yyrindex go_yyrindex
  105. #define yygindex go_yygindex
  106. #define yytable         go_yytable
  107. #define yycheck         go_yycheck

  108. #ifndef YYDEBUG
  109. #define        YYDEBUG 1                /* Default to yydebug support */
  110. #endif

  111. #define YYFPRINTF parser_fprintf

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

  114. static struct parser_state *pstate = NULL;

  115. int yyparse (void);

  116. static int yylex (void);

  117. void yyerror (char *);


  118. /* Line 371 of yacc.c  */
  119. #line 153 "go-exp.c"

  120. # ifndef YY_NULL
  121. #  if defined __cplusplus && 201103L <= __cplusplus
  122. #   define YY_NULL nullptr
  123. #  else
  124. #   define YY_NULL 0
  125. #  endif
  126. # endif

  127. /* Enabling verbose error messages.  */
  128. #ifdef YYERROR_VERBOSE
  129. # undef YYERROR_VERBOSE
  130. # define YYERROR_VERBOSE 1
  131. #else
  132. # define YYERROR_VERBOSE 0
  133. #endif


  134. /* Enabling traces.  */
  135. #ifndef YYDEBUG
  136. # define YYDEBUG 0
  137. #endif
  138. #if YYDEBUG
  139. extern int yydebug;
  140. #endif

  141. /* Tokens.  */
  142. #ifndef YYTOKENTYPE
  143. # define YYTOKENTYPE
  144.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  145.       know about them.  */
  146.    enum yytokentype {
  147.      INT = 258,
  148.      FLOAT = 259,
  149.      RAW_STRING = 260,
  150.      STRING = 261,
  151.      CHAR = 262,
  152.      NAME = 263,
  153.      TYPENAME = 264,
  154.      COMPLETE = 265,
  155.      NAME_OR_INT = 266,
  156.      TRUE_KEYWORD = 267,
  157.      FALSE_KEYWORD = 268,
  158.      STRUCT_KEYWORD = 269,
  159.      INTERFACE_KEYWORD = 270,
  160.      TYPE_KEYWORD = 271,
  161.      CHAN_KEYWORD = 272,
  162.      SIZEOF_KEYWORD = 273,
  163.      LEN_KEYWORD = 274,
  164.      CAP_KEYWORD = 275,
  165.      NEW_KEYWORD = 276,
  166.      IOTA_KEYWORD = 277,
  167.      NIL_KEYWORD = 278,
  168.      CONST_KEYWORD = 279,
  169.      DOTDOTDOT = 280,
  170.      ENTRY = 281,
  171.      ERROR = 282,
  172.      BYTE_KEYWORD = 283,
  173.      DOLLAR_VARIABLE = 284,
  174.      ASSIGN_MODIFY = 285,
  175.      ABOVE_COMMA = 286,
  176.      OROR = 287,
  177.      ANDAND = 288,
  178.      ANDNOT = 289,
  179.      NOTEQUAL = 290,
  180.      EQUAL = 291,
  181.      GEQ = 292,
  182.      LEQ = 293,
  183.      RSH = 294,
  184.      LSH = 295,
  185.      DECREMENT = 296,
  186.      INCREMENT = 297,
  187.      UNARY = 298,
  188.      LEFT_ARROW = 299
  189.    };
  190. #endif
  191. /* Tokens.  */
  192. #define INT 258
  193. #define FLOAT 259
  194. #define RAW_STRING 260
  195. #define STRING 261
  196. #define CHAR 262
  197. #define NAME 263
  198. #define TYPENAME 264
  199. #define COMPLETE 265
  200. #define NAME_OR_INT 266
  201. #define TRUE_KEYWORD 267
  202. #define FALSE_KEYWORD 268
  203. #define STRUCT_KEYWORD 269
  204. #define INTERFACE_KEYWORD 270
  205. #define TYPE_KEYWORD 271
  206. #define CHAN_KEYWORD 272
  207. #define SIZEOF_KEYWORD 273
  208. #define LEN_KEYWORD 274
  209. #define CAP_KEYWORD 275
  210. #define NEW_KEYWORD 276
  211. #define IOTA_KEYWORD 277
  212. #define NIL_KEYWORD 278
  213. #define CONST_KEYWORD 279
  214. #define DOTDOTDOT 280
  215. #define ENTRY 281
  216. #define ERROR 282
  217. #define BYTE_KEYWORD 283
  218. #define DOLLAR_VARIABLE 284
  219. #define ASSIGN_MODIFY 285
  220. #define ABOVE_COMMA 286
  221. #define OROR 287
  222. #define ANDAND 288
  223. #define ANDNOT 289
  224. #define NOTEQUAL 290
  225. #define EQUAL 291
  226. #define GEQ 292
  227. #define LEQ 293
  228. #define RSH 294
  229. #define LSH 295
  230. #define DECREMENT 296
  231. #define INCREMENT 297
  232. #define UNARY 298
  233. #define LEFT_ARROW 299



  234. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  235. typedef union YYSTYPE
  236. {
  237. /* Line 387 of yacc.c  */
  238. #line 142 "go-exp.y"

  239.     LONGEST lval;
  240.     struct {
  241.       LONGEST val;
  242.       struct type *type;
  243.     } typed_val_int;
  244.     struct {
  245.       DOUBLEST dval;
  246.       struct type *type;
  247.     } typed_val_float;
  248.     struct stoken sval;
  249.     struct symtoken ssym;
  250.     struct type *tval;
  251.     struct typed_stoken tsval;
  252.     struct ttype tsym;
  253.     int voidval;
  254.     enum exp_opcode opcode;
  255.     struct internalvar *ivar;
  256.     struct stoken_vector svec;


  257. /* Line 387 of yacc.c  */
  258. #line 303 "go-exp.c"
  259. } YYSTYPE;
  260. # define YYSTYPE_IS_TRIVIAL 1
  261. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  262. # define YYSTYPE_IS_DECLARED 1
  263. #endif

  264. extern YYSTYPE yylval;

  265. #ifdef YYPARSE_PARAM
  266. #if defined __STDC__ || defined __cplusplus
  267. int yyparse (void *YYPARSE_PARAM);
  268. #else
  269. int yyparse ();
  270. #endif
  271. #else /* ! YYPARSE_PARAM */
  272. #if defined __STDC__ || defined __cplusplus
  273. int yyparse (void);
  274. #else
  275. int yyparse ();
  276. #endif
  277. #endif /* ! YYPARSE_PARAM */



  278. /* Copy the second part of user declarations.  */
  279. /* Line 390 of yacc.c  */
  280. #line 163 "go-exp.y"

  281. /* YYSTYPE gets defined by %union.  */
  282. static int parse_number (struct parser_state *,
  283.                          const char *, int, int, YYSTYPE *);
  284. static int parse_go_float (struct gdbarch *gdbarch, const char *p, int len,
  285.                            DOUBLEST *d, struct type **t);

  286. /* Line 390 of yacc.c  */
  287. #line 339 "go-exp.c"

  288. #ifdef short
  289. # undef short
  290. #endif

  291. #ifdef YYTYPE_UINT8
  292. typedef YYTYPE_UINT8 yytype_uint8;
  293. #else
  294. typedef unsigned char yytype_uint8;
  295. #endif

  296. #ifdef YYTYPE_INT8
  297. typedef YYTYPE_INT8 yytype_int8;
  298. #elif (defined __STDC__ || defined __C99__FUNC__ \
  299.      || defined __cplusplus || defined _MSC_VER)
  300. typedef signed char yytype_int8;
  301. #else
  302. typedef short int yytype_int8;
  303. #endif

  304. #ifdef YYTYPE_UINT16
  305. typedef YYTYPE_UINT16 yytype_uint16;
  306. #else
  307. typedef unsigned short int yytype_uint16;
  308. #endif

  309. #ifdef YYTYPE_INT16
  310. typedef YYTYPE_INT16 yytype_int16;
  311. #else
  312. typedef short int yytype_int16;
  313. #endif

  314. #ifndef YYSIZE_T
  315. # ifdef __SIZE_TYPE__
  316. #  define YYSIZE_T __SIZE_TYPE__
  317. # elif defined size_t
  318. #  define YYSIZE_T size_t
  319. # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
  320.      || defined __cplusplus || defined _MSC_VER)
  321. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  322. #  define YYSIZE_T size_t
  323. # else
  324. #  define YYSIZE_T unsigned int
  325. # endif
  326. #endif

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

  328. #ifndef YY_
  329. # if defined YYENABLE_NLS && YYENABLE_NLS
  330. #  if ENABLE_NLS
  331. #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
  332. #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
  333. #  endif
  334. # endif
  335. # ifndef YY_
  336. #  define YY_(Msgid) Msgid
  337. # endif
  338. #endif

  339. /* Suppress unused-variable warnings by "using" E.  */
  340. #if ! defined lint || defined __GNUC__
  341. # define YYUSE(E) ((void) (E))
  342. #else
  343. # define YYUSE(E) /* empty */
  344. #endif

  345. /* Identity function, used to suppress warnings about constant conditions.  */
  346. #ifndef lint
  347. # define YYID(N) (N)
  348. #else
  349. #if (defined __STDC__ || defined __C99__FUNC__ \
  350.      || defined __cplusplus || defined _MSC_VER)
  351. static int
  352. YYID (int yyi)
  353. #else
  354. static int
  355. YYID (yyi)
  356.     int yyi;
  357. #endif
  358. {
  359.   return yyi;
  360. }
  361. #endif

  362. #if ! defined yyoverflow || YYERROR_VERBOSE

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

  364. # ifdef YYSTACK_USE_ALLOCA
  365. #  if YYSTACK_USE_ALLOCA
  366. #   ifdef __GNUC__
  367. #    define YYSTACK_ALLOC __builtin_alloca
  368. #   elif defined __BUILTIN_VA_ARG_INCR
  369. #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
  370. #   elif defined _AIX
  371. #    define YYSTACK_ALLOC __alloca
  372. #   elif defined _MSC_VER
  373. #    define alloca _alloca
  374. #   else
  375. #    define YYSTACK_ALLOC alloca
  376. #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  377.      || defined __cplusplus || defined _MSC_VER)
  378. #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  379.       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
  380. #     ifndef EXIT_SUCCESS
  381. #      define EXIT_SUCCESS 0
  382. #     endif
  383. #    endif
  384. #   endif
  385. #  endif
  386. # endif

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


  427. #if (! defined yyoverflow \
  428.      && (! defined __cplusplus \
  429.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

  430. /* A type that is properly aligned for any stack member.  */
  431. union yyalloc
  432. {
  433.   yytype_int16 yyss_alloc;
  434.   YYSTYPE yyvs_alloc;
  435. };

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

  438. /* The size of an array large to enough to hold all stacks, each with
  439.    N elements.  */
  440. # define YYSTACK_BYTES(N) \
  441.      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
  442.       + YYSTACK_GAP_MAXIMUM)

  443. # define YYCOPY_NEEDED 1

  444. /* Relocate STACK from its old location to the new one.  The
  445.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  446.    elements in the stack, and YYPTR gives the new location of the
  447.    stack.  Advance YYPTR to a properly aligned location for the next
  448.    stack.  */
  449. # define YYSTACK_RELOCATE(Stack_alloc, Stack)                                \
  450.     do                                                                        \
  451.       {                                                                        \
  452.         YYSIZE_T yynewbytes;                                                \
  453.         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                        \
  454.         Stack = &yyptr->Stack_alloc;                                        \
  455.         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
  456.         yyptr += yynewbytes / sizeof (*yyptr);                                \
  457.       }                                                                        \
  458.     while (YYID (0))

  459. #endif

  460. #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
  461. /* Copy COUNT objects from SRC to DST.  The source and destination do
  462.    not overlap.  */
  463. # ifndef YYCOPY
  464. #  if defined __GNUC__ && 1 < __GNUC__
  465. #   define YYCOPY(Dst, Src, Count) \
  466.       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
  467. #  else
  468. #   define YYCOPY(Dst, Src, Count)              \
  469.       do                                        \
  470.         {                                       \
  471.           YYSIZE_T yyi;                         \
  472.           for (yyi = 0; yyi < (Count); yyi++)   \
  473.             (Dst)[yyi] = (Src)[yyi];            \
  474.         }                                       \
  475.       while (YYID (0))
  476. #  endif
  477. # endif
  478. #endif /* !YYCOPY_NEEDED */

  479. /* YYFINAL -- State number of the termination state.  */
  480. #define YYFINAL  40
  481. /* YYLAST -- Last index in YYTABLE.  */
  482. #define YYLAST   443

  483. /* YYNTOKENS -- Number of terminals.  */
  484. #define YYNTOKENS  68
  485. /* YYNNTS -- Number of nonterminals.  */
  486. #define YYNNTS  13
  487. /* YYNRULES -- Number of rules.  */
  488. #define YYNRULES  69
  489. /* YYNRULES -- Number of states.  */
  490. #define YYNSTATES  122

  491. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  492. #define YYUNDEFTOK  2
  493. #define YYMAXUTOK   299

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

  496. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  497. static const yytype_uint8 yytranslate[] =
  498. {
  499.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  500.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  501.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  502.        2,     2,     2,    62,     2,     2,     2,    54,    39,     2,
  503.       60,    64,    52,    50,    31,    51,    58,    53,     2,     2,
  504.        2,     2,     2,     2,     2,     2,     2,     2,    67,     2,
  505.       43,    33,    44,    34,    49,     2,     2,     2,     2,     2,
  506.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  507.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  508.        2,    59,     2,    63,    38,     2,     2,     2,     2,     2,
  509.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  510.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  511.        2,     2,     2,    65,    37,    66,     2,     2,     2,     2,
  512.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  513.        2,     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,     2,     2,     2,     2,     2,     2,     2,
  517.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  518.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  519.        2,     2,     2,     2,     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,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  523.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  524.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  525.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  526.       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  527.       25,    26,    27,    28,    29,    30,    32,    35,    36,    40,
  528.       41,    42,    45,    46,    47,    48,    55,    56,    57,    61
  529. };

  530. #if YYDEBUG
  531. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  532.    YYRHS.  */
  533. static const yytype_uint8 yyprhs[] =
  534. {
  535.        0,     0,     3,     5,     7,     9,    11,    15,    18,    21,
  536.       24,    27,    30,    33,    36,    39,    43,    48,    52,    57,
  537.       58,    64,    66,    67,    69,    73,    75,    80,    85,    89,
  538.       93,    97,   101,   105,   109,   113,   117,   121,   125,   129,
  539.      133,   137,   141,   145,   149,   153,   157,   161,   165,   171,
  540.      175,   179,   181,   183,   185,   187,   189,   191,   196,   201,
  541.      203,   207,   209,   211,   213,   216,   218,   221,   223,   225
  542. };

  543. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  544. static const yytype_int8 yyrhs[] =
  545. {
  546.       69,     0,    -1,    71,    -1,    70,    -1,    79,    -1,    72,
  547.       -1,    71,    31,    72,    -1,    52,    72,    -1,    39,    72,
  548.       -1,    51,    72,    -1,    50,    72,    -1,    62,    72,    -1,
  549.       38,    72,    -1,    72,    56,    -1,    72,    55,    -1,    72,
  550.       58,    80,    -1,    72,    58,    80,    10,    -1,    72,    58,
  551.       10,    -1,    72,    59,    71,    63,    -1,    -1,    72,    60,
  552.       73,    75,    64,    -1,    65,    -1,    -1,    72,    -1,    75,
  553.       31,    72,    -1,    66,    -1,    74,    79,    76,    72,    -1,
  554.       79,    60,    72,    64,    -1,    60,    71,    64,    -1,    72,
  555.       49,    72,    -1,    72,    52,    72,    -1,    72,    53,    72,
  556.       -1,    72,    54,    72,    -1,    72,    50,    72,    -1,    72,
  557.       51,    72,    -1,    72,    48,    72,    -1,    72,    47,    72,
  558.       -1,    72,    42,    72,    -1,    72,    41,    72,    -1,    72,
  559.       46,    72,    -1,    72,    45,    72,    -1,    72,    43,    72,
  560.       -1,    72,    44,    72,    -1,    72,    39,    72,    -1,    72,
  561.       38,    72,    -1,    72,    37,    72,    -1,    72,    36,    72,
  562.       -1,    72,    35,    72,    -1,    72,    34,    72,    67,    72,
  563.       -1,    72,    33,    72,    -1,    72,    30,    72,    -1,     3,
  564.       -1,     7,    -1,    11,    -1,     4,    -1,    78,    -1,    29,
  565.       -1,    18,    60,    79,    64,    -1,    18,    60,    72,    64,
  566.       -1,     6,    -1,    77,    50,     6,    -1,    77,    -1,    12,
  567.       -1,    13,    -1,    80,    26,    -1,    80,    -1,    52,    79,
  568.       -1,     9,    -1,    28,    -1,     8,    -1
  569. };

  570. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  571. static const yytype_uint16 yyrline[] =
  572. {
  573.        0,   242,   242,   243,   246,   253,   254,   259,   263,   267,
  574.      271,   275,   279,   283,   287,   293,   299,   306,   316,   323,
  575.      320,   331,   335,   338,   342,   346,   350,   356,   362,   368,
  576.      372,   376,   380,   384,   388,   392,   396,   400,   404,   408,
  577.      412,   416,   420,   424,   428,   432,   436,   440,   444,   448,
  578.      452,   458,   465,   474,   487,   494,   497,   503,   518,   525,
  579.      542,   560,   572,   578,   584,   600,   655,   657,   664,   677
  580. };
  581. #endif

  582. #if YYDEBUG || YYERROR_VERBOSE || 0
  583. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  584.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  585. static const char *const yytname[] =
  586. {
  587.   "$end", "error", "$undefined", "INT", "FLOAT", "RAW_STRING", "STRING",
  588.   "CHAR", "NAME", "TYPENAME", "COMPLETE", "NAME_OR_INT", "TRUE_KEYWORD",
  589.   "FALSE_KEYWORD", "STRUCT_KEYWORD", "INTERFACE_KEYWORD", "TYPE_KEYWORD",
  590.   "CHAN_KEYWORD", "SIZEOF_KEYWORD", "LEN_KEYWORD", "CAP_KEYWORD",
  591.   "NEW_KEYWORD", "IOTA_KEYWORD", "NIL_KEYWORD", "CONST_KEYWORD",
  592.   "DOTDOTDOT", "ENTRY", "ERROR", "BYTE_KEYWORD", "DOLLAR_VARIABLE",
  593.   "ASSIGN_MODIFY", "','", "ABOVE_COMMA", "'='", "'?'", "OROR", "ANDAND",
  594.   "'|'", "'^'", "'&'", "ANDNOT", "NOTEQUAL", "EQUAL", "'<'", "'>'", "GEQ",
  595.   "LEQ", "RSH", "LSH", "'@'", "'+'", "'-'", "'*'", "'/'", "'%'",
  596.   "DECREMENT", "INCREMENT", "UNARY", "'.'", "'['", "'('", "LEFT_ARROW",
  597.   "'!'", "']'", "')'", "'{'", "'}'", "':'", "$accept", "start", "type_exp",
  598.   "exp1", "exp", "$@1", "lcurly", "arglist", "rcurly", "string_exp",
  599.   "variable", "type", "name_not_typename", YY_NULL
  600. };
  601. #endif

  602. # ifdef YYPRINT
  603. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  604.    token YYLEX-NUM.  */
  605. static const yytype_uint16 yytoknum[] =
  606. {
  607.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  608.      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
  609.      275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
  610.      285,    44,   286,    61,    63,   287,   288,   124,    94,    38,
  611.      289,   290,   291,    60,    62,   292,   293,   294,   295,    64,
  612.       43,    45,    42,    47,    37,   296,   297,   298,    46,    91,
  613.       40,   299,    33,    93,    41,   123,   125,    58
  614. };
  615. # endif

  616. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  617. static const yytype_uint8 yyr1[] =
  618. {
  619.        0,    68,    69,    69,    70,    71,    71,    72,    72,    72,
  620.       72,    72,    72,    72,    72,    72,    72,    72,    72,    73,
  621.       72,    74,    75,    75,    75,    76,    72,    72,    72,    72,
  622.       72,    72,    72,    72,    72,    72,    72,    72,    72,    72,
  623.       72,    72,    72,    72,    72,    72,    72,    72,    72,    72,
  624.       72,    72,    72,    72,    72,    72,    72,    72,    72,    77,
  625.       77,    72,    72,    72,    78,    78,    79,    79,    79,    80
  626. };

  627. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  628. static const yytype_uint8 yyr2[] =
  629. {
  630.        0,     2,     1,     1,     1,     1,     3,     2,     2,     2,
  631.        2,     2,     2,     2,     2,     3,     4,     3,     4,     0,
  632.        5,     1,     0,     1,     3,     1,     4,     4,     3,     3,
  633.        3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  634.        3,     3,     3,     3,     3,     3,     3,     3,     5,     3,
  635.        3,     1,     1,     1,     1,     1,     1,     4,     4,     1,
  636.        3,     1,     1,     1,     2,     1,     2,     1,     1,     1
  637. };

  638. /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
  639.    Performed when YYTABLE doesn't specify something else to do.  Zero
  640.    means the default is an error.  */
  641. static const yytype_uint8 yydefact[] =
  642. {
  643.        0,    51,    54,    59,    52,    69,    67,    53,    62,    63,
  644.        0,    68,    56,     0,     0,     0,     0,     0,     0,     0,
  645.       21,     0,     3,     2,     5,     0,    61,    55,     4,    65,
  646.        0,    12,     0,     8,    10,     9,     7,    66,     0,    11,
  647.        1,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  648.        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  649.        0,     0,     0,     0,    14,    13,     0,     0,    19,     0,
  650.        0,     0,     0,    64,     0,     0,    28,     6,    50,    49,
  651.        0,    47,    46,    45,    44,    43,    38,    37,    41,    42,
  652.       40,    39,    36,    35,    29,    33,    34,    30,    31,    32,
  653.       17,    15,     0,    22,    66,    25,     0,    60,     0,    58,
  654.       57,     0,    16,    18,    23,     0,    26,    27,    48,     0,
  655.       20,    24
  656. };

  657. /* YYDEFGOTO[NTERM-NUM].  */
  658. static const yytype_int8 yydefgoto[] =
  659. {
  660.       -1,    21,    22,    23,    24,   103,    25,   115,   106,    26,
  661.       27,    32,    29
  662. };

  663. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  664.    STATE-NUM.  */
  665. #define YYPACT_NINF -56
  666. static const yytype_int16 yypact[] =
  667. {
  668.       49,   -56,   -56,   -56,   -56,   -56,   -56,   -56,   -56,   -56,
  669.      -44,   -56,   -56,    49,    49,    49,    49,    49,    49,    49,
  670.      -56,    23,   -56,    34,   187,    45,   -23,   -56,     6,    46,
  671.       49,   -48,     6,   -48,   -48,   -48,   -48,     6,    38,   -48,
  672.      -56,    49,    49,    49,    49,    49,    49,    49,    49,    49,
  673.       49,    49,    49,    49,    49,    49,    49,    49,    49,    49,
  674.       49,    49,    49,    49,   -56,   -56,     5,    49,   -56,    45,
  675.        8,    65,    49,   -56,   123,   -55,   -56,   187,   187,   187,
  676.       88,   239,   263,   286,   308,   328,   346,   346,   360,   360,
  677.      360,   360,   372,   372,   383,   -34,   -34,   -48,   -48,   -48,
  678.      -56,    69,    33,    49,   -56,   -56,    49,   -56,   155,   -56,
  679.      -56,    49,   -56,   -56,   187,    39,   -48,   -56,   214,    49,
  680.      -56,   187
  681. };

  682. /* YYPGOTO[NTERM-NUM].  */
  683. static const yytype_int8 yypgoto[] =
  684. {
  685.      -56,   -56,   -56,    -4,   -13,   -56,   -56,   -56,   -56,   -56,
  686.      -56,    51,     9
  687. };

  688. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  689.    positive, shift that token.  If negative, reduce the rule which
  690.    number is the opposite.  If YYTABLE_NINF, syntax error.  */
  691. #define YYTABLE_NINF -1
  692. static const yytype_uint8 yytable[] =
  693. {
  694.       31,    33,    34,    35,    36,    72,    39,    64,    65,   110,
  695.       66,    67,    68,     5,    38,   100,    30,    74,    61,    62,
  696.       63,    64,    65,    40,    66,    67,    68,    71,    77,    78,
  697.       79,    80,    81,    82,    83,    84,    85,    86,    87,    88,
  698.       89,    90,    91,    92,    93,    94,    95,    96,    97,    98,
  699.       99,    28,     1,     2,     6,     3,     4,     5,     6,   108,
  700.        7,     8,     9,   102,    41,    41,    72,    10,    37,    41,
  701.      119,   107,    73,    11,   105,   101,    70,    11,    12,   112,
  702.        0,    75,     0,     0,     0,     0,     0,    13,    14,     0,
  703.      114,     0,     0,   116,     0,     0,   113,    69,   118,    15,
  704.       16,    17,    76,   120,     0,     0,   121,     0,     0,    18,
  705.        0,    19,     0,     0,    20,     0,     0,     0,    42,     0,
  706.      104,    43,    44,    45,    46,    47,    48,    49,     0,    50,
  707.       51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
  708.       61,    62,    63,    64,    65,     0,    66,    67,    68,     0,
  709.        0,     0,     0,    42,     0,   111,    43,    44,    45,    46,
  710.       47,    48,    49,     0,    50,    51,    52,    53,    54,    55,
  711.       56,    57,    58,    59,    60,    61,    62,    63,    64,    65,
  712.        0,    66,    67,    68,     0,    42,     0,   109,    43,    44,
  713.       45,    46,    47,    48,    49,     0,    50,    51,    52,    53,
  714.       54,    55,    56,    57,    58,    59,    60,    61,    62,    63,
  715.       64,    65,     0,    66,    67,    68,     0,    42,     0,   117,
  716.       43,    44,    45,    46,    47,    48,    49,     0,    50,    51,
  717.       52,    53,    54,    55,    56,    57,    58,    59,    60,    61,
  718.       62,    63,    64,    65,     0,    66,    67,    68,    44,    45,
  719.       46,    47,    48,    49,     0,    50,    51,    52,    53,    54,
  720.       55,    56,    57,    58,    59,    60,    61,    62,    63,    64,
  721.       65,     0,    66,    67,    68,    46,    47,    48,    49,     0,
  722.       50,    51,    52,    53,    54,    55,    56,    57,    58,    59,
  723.       60,    61,    62,    63,    64,    65,     0,    66,    67,    68,
  724.       47,    48,    49,     0,    50,    51,    52,    53,    54,    55,
  725.       56,    57,    58,    59,    60,    61,    62,    63,    64,    65,
  726.        0,    66,    67,    68,    48,    49,     0,    50,    51,    52,
  727.       53,    54,    55,    56,    57,    58,    59,    60,    61,    62,
  728.       63,    64,    65,     0,    66,    67,    68,    49,     0,    50,
  729.       51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
  730.       61,    62,    63,    64,    65,     0,    66,    67,    68,    50,
  731.       51,    52,    53,    54,    55,    56,    57,    58,    59,    60,
  732.       61,    62,    63,    64,    65,     0,    66,    67,    68,    52,
  733.       53,    54,    55,    56,    57,    58,    59,    60,    61,    62,
  734.       63,    64,    65,     0,    66,    67,    68,    56,    57,    58,
  735.       59,    60,    61,    62,    63,    64,    65,     0,    66,    67,
  736.       68,    58,    59,    60,    61,    62,    63,    64,    65,     0,
  737.       66,    67,    68,    59,    60,    61,    62,    63,    64,    65,
  738.        0,    66,    67,    68
  739. };

  740. #define yypact_value_is_default(Yystate) \
  741.   (!!((Yystate) == (-56)))

  742. #define yytable_value_is_error(Yytable_value) \
  743.   YYID (0)

  744. static const yytype_int8 yycheck[] =
  745. {
  746.       13,    14,    15,    16,    17,    60,    19,    55,    56,    64,
  747.       58,    59,    60,     8,    18,    10,    60,    30,    52,    53,
  748.       54,    55,    56,     0,    58,    59,    60,    50,    41,    42,
  749.       43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  750.       53,    54,    55,    56,    57,    58,    59,    60,    61,    62,
  751.       63,     0,     3,     4,     9,     6,     7,     8,     9,    72,
  752.       11,    12,    13,    67,    31,    31,    60,    18,    17,    31,
  753.       31,     6,    26,    28,    66,    66,    25,    28,    29,    10,
  754.       -1,    30,    -1,    -1,    -1,    -1,    -1,    38,    39,    -1,
  755.      103,    -1,    -1,   106,    -1,    -1,    63,    52,   111,    50,
  756.       51,    52,    64,    64,    -1,    -1,   119,    -1,    -1,    60,
  757.       -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    30,    -1,
  758.       69,    33,    34,    35,    36,    37,    38,    39,    -1,    41,
  759.       42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  760.       52,    53,    54,    55,    56,    -1,    58,    59,    60,    -1,
  761.       -1,    -1,    -1,    30,    -1,    67,    33,    34,    35,    36,
  762.       37,    38,    39,    -1,    41,    42,    43,    44,    45,    46,
  763.       47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
  764.       -1,    58,    59,    60,    -1,    30,    -1,    64,    33,    34,
  765.       35,    36,    37,    38,    39,    -1,    41,    42,    43,    44,
  766.       45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
  767.       55,    56,    -1,    58,    59,    60,    -1,    30,    -1,    64,
  768.       33,    34,    35,    36,    37,    38,    39,    -1,    41,    42,
  769.       43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  770.       53,    54,    55,    56,    -1,    58,    59,    60,    34,    35,
  771.       36,    37,    38,    39,    -1,    41,    42,    43,    44,    45,
  772.       46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
  773.       56,    -1,    58,    59,    60,    36,    37,    38,    39,    -1,
  774.       41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  775.       51,    52,    53,    54,    55,    56,    -1,    58,    59,    60,
  776.       37,    38,    39,    -1,    41,    42,    43,    44,    45,    46,
  777.       47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
  778.       -1,    58,    59,    60,    38,    39,    -1,    41,    42,    43,
  779.       44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
  780.       54,    55,    56,    -1,    58,    59,    60,    39,    -1,    41,
  781.       42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  782.       52,    53,    54,    55,    56,    -1,    58,    59,    60,    41,
  783.       42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  784.       52,    53,    54,    55,    56,    -1,    58,    59,    60,    43,
  785.       44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
  786.       54,    55,    56,    -1,    58,    59,    60,    47,    48,    49,
  787.       50,    51,    52,    53,    54,    55,    56,    -1,    58,    59,
  788.       60,    49,    50,    51,    52,    53,    54,    55,    56,    -1,
  789.       58,    59,    60,    50,    51,    52,    53,    54,    55,    56,
  790.       -1,    58,    59,    60
  791. };

  792. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  793.    symbol of state STATE-NUM.  */
  794. static const yytype_uint8 yystos[] =
  795. {
  796.        0,     3,     4,     6,     7,     8,     9,    11,    12,    13,
  797.       18,    28,    29,    38,    39,    50,    51,    52,    60,    62,
  798.       65,    69,    70,    71,    72,    74,    77,    78,    79,    80,
  799.       60,    72,    79,    72,    72,    72,    72,    79,    71,    72,
  800.        0,    31,    30,    33,    34,    35,    36,    37,    38,    39,
  801.       41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  802.       51,    52,    53,    54,    55,    56,    58,    59,    60,    52,
  803.       79,    50,    60,    26,    72,    79,    64,    72,    72,    72,
  804.       72,    72,    72,    72,    72,    72,    72,    72,    72,    72,
  805.       72,    72,    72,    72,    72,    72,    72,    72,    72,    72,
  806.       10,    80,    71,    73,    79,    66,    76,     6,    72,    64,
  807.       64,    67,    10,    63,    72,    75,    72,    64,    72,    31,
  808.       64,    72
  809. };

  810. #define yyerrok                (yyerrstatus = 0)
  811. #define yyclearin        (yychar = YYEMPTY)
  812. #define YYEMPTY                (-2)
  813. #define YYEOF                0

  814. #define YYACCEPT        goto yyacceptlab
  815. #define YYABORT                goto yyabortlab
  816. #define YYERROR                goto yyerrorlab


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

  823. #define YYFAIL                goto yyerrlab
  824. #if defined YYFAIL
  825.   /* This is here to suppress warnings from the GCC cpp's
  826.      -Wunused-macros.  Normally we don't worry about that warning, but
  827.      some users do, and we want to make it easy for users to remove
  828.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  829. #endif

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

  831. #define YYBACKUP(Token, Value)                                  \
  832. do                                                              \
  833.   if (yychar == YYEMPTY)                                        \
  834.     {                                                           \
  835.       yychar = (Token);                                         \
  836.       yylval = (Value);                                         \
  837.       YYPOPSTACK (yylen);                                       \
  838.       yystate = *yyssp;                                         \
  839.       goto yybackup;                                            \
  840.     }                                                           \
  841.   else                                                          \
  842.     {                                                           \
  843.       yyerror (YY_("syntax error: cannot back up")); \
  844.       YYERROR;                                                        \
  845.     }                                                                \
  846. while (YYID (0))

  847. /* Error token number */
  848. #define YYTERROR        1
  849. #define YYERRCODE        256


  850. /* This macro is provided for backward compatibility. */
  851. #ifndef YY_LOCATION_PRINT
  852. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  853. #endif


  854. /* YYLEX -- calling `yylex' with the right arguments.  */
  855. #ifdef YYLEX_PARAM
  856. # define YYLEX yylex (YYLEX_PARAM)
  857. #else
  858. # define YYLEX yylex ()
  859. #endif

  860. /* Enable debugging if requested.  */
  861. #if YYDEBUG

  862. # ifndef YYFPRINTF
  863. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  864. #  define YYFPRINTF fprintf
  865. # endif

  866. # define YYDPRINTF(Args)                        \
  867. do {                                                \
  868.   if (yydebug)                                        \
  869.     YYFPRINTF Args;                                \
  870. } while (YYID (0))

  871. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  872. do {                                                                          \
  873.   if (yydebug)                                                                  \
  874.     {                                                                          \
  875.       YYFPRINTF (stderr, "%s ", Title);                                          \
  876.       yy_symbol_print (stderr,                                                  \
  877.                   Type, Value); \
  878.       YYFPRINTF (stderr, "\n");                                                  \
  879.     }                                                                          \
  880. } while (YYID (0))


  881. /*--------------------------------.
  882. | Print this symbol on YYOUTPUT.  |
  883. `--------------------------------*/

  884. /*ARGSUSED*/
  885. #if (defined __STDC__ || defined __C99__FUNC__ \
  886.      || defined __cplusplus || defined _MSC_VER)
  887. static void
  888. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  889. #else
  890. static void
  891. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  892.     FILE *yyoutput;
  893.     int yytype;
  894.     YYSTYPE const * const yyvaluep;
  895. #endif
  896. {
  897.   FILE *yyo = yyoutput;
  898.   YYUSE (yyo);
  899.   if (!yyvaluep)
  900.     return;
  901. # ifdef YYPRINT
  902.   if (yytype < YYNTOKENS)
  903.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  904. # else
  905.   YYUSE (yyoutput);
  906. # endif
  907.   switch (yytype)
  908.     {
  909.       default:
  910.         break;
  911.     }
  912. }


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

  916. #if (defined __STDC__ || defined __C99__FUNC__ \
  917.      || defined __cplusplus || defined _MSC_VER)
  918. static void
  919. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  920. #else
  921. static void
  922. yy_symbol_print (yyoutput, yytype, yyvaluep)
  923.     FILE *yyoutput;
  924.     int yytype;
  925.     YYSTYPE const * const yyvaluep;
  926. #endif
  927. {
  928.   if (yytype < YYNTOKENS)
  929.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  930.   else
  931.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  932.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  933.   YYFPRINTF (yyoutput, ")");
  934. }

  935. /*------------------------------------------------------------------.
  936. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  937. | TOP (included).                                                   |
  938. `------------------------------------------------------------------*/

  939. #if (defined __STDC__ || defined __C99__FUNC__ \
  940.      || defined __cplusplus || defined _MSC_VER)
  941. static void
  942. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  943. #else
  944. static void
  945. yy_stack_print (yybottom, yytop)
  946.     yytype_int16 *yybottom;
  947.     yytype_int16 *yytop;
  948. #endif
  949. {
  950.   YYFPRINTF (stderr, "Stack now");
  951.   for (; yybottom <= yytop; yybottom++)
  952.     {
  953.       int yybot = *yybottom;
  954.       YYFPRINTF (stderr, " %d", yybot);
  955.     }
  956.   YYFPRINTF (stderr, "\n");
  957. }

  958. # define YY_STACK_PRINT(Bottom, Top)                                \
  959. do {                                                                \
  960.   if (yydebug)                                                        \
  961.     yy_stack_print ((Bottom), (Top));                                \
  962. } while (YYID (0))


  963. /*------------------------------------------------.
  964. | Report that the YYRULE is going to be reduced.  |
  965. `------------------------------------------------*/

  966. #if (defined __STDC__ || defined __C99__FUNC__ \
  967.      || defined __cplusplus || defined _MSC_VER)
  968. static void
  969. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  970. #else
  971. static void
  972. yy_reduce_print (yyvsp, yyrule)
  973.     YYSTYPE *yyvsp;
  974.     int yyrule;
  975. #endif
  976. {
  977.   int yynrhs = yyr2[yyrule];
  978.   int yyi;
  979.   unsigned long int yylno = yyrline[yyrule];
  980.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
  981.              yyrule - 1, yylno);
  982.   /* The symbols being reduced.  */
  983.   for (yyi = 0; yyi < yynrhs; yyi++)
  984.     {
  985.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  986.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  987.                        &(yyvsp[(yyi + 1) - (yynrhs)])
  988.                                               );
  989.       YYFPRINTF (stderr, "\n");
  990.     }
  991. }

  992. # define YY_REDUCE_PRINT(Rule)                \
  993. do {                                        \
  994.   if (yydebug)                                \
  995.     yy_reduce_print (yyvsp, Rule); \
  996. } while (YYID (0))

  997. /* Nonzero means print parse trace.  It is left uninitialized so that
  998.    multiple parsers can coexist.  */
  999. int yydebug;
  1000. #else /* !YYDEBUG */
  1001. # define YYDPRINTF(Args)
  1002. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  1003. # define YY_STACK_PRINT(Bottom, Top)
  1004. # define YY_REDUCE_PRINT(Rule)
  1005. #endif /* !YYDEBUG */


  1006. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  1007. #ifndef        YYINITDEPTH
  1008. # define YYINITDEPTH 200
  1009. #endif

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

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

  1015. #ifndef YYMAXDEPTH
  1016. # define YYMAXDEPTH 10000
  1017. #endif


  1018. #if YYERROR_VERBOSE

  1019. # ifndef yystrlen
  1020. #  if defined __GLIBC__ && defined _STRING_H
  1021. #   define yystrlen strlen
  1022. #  else
  1023. /* Return the length of YYSTR.  */
  1024. #if (defined __STDC__ || defined __C99__FUNC__ \
  1025.      || defined __cplusplus || defined _MSC_VER)
  1026. static YYSIZE_T
  1027. yystrlen (const char *yystr)
  1028. #else
  1029. static YYSIZE_T
  1030. yystrlen (yystr)
  1031.     const char *yystr;
  1032. #endif
  1033. {
  1034.   YYSIZE_T yylen;
  1035.   for (yylen = 0; yystr[yylen]; yylen++)
  1036.     continue;
  1037.   return yylen;
  1038. }
  1039. #  endif
  1040. # endif

  1041. # ifndef yystpcpy
  1042. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1043. #   define yystpcpy stpcpy
  1044. #  else
  1045. /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
  1046.    YYDEST.  */
  1047. #if (defined __STDC__ || defined __C99__FUNC__ \
  1048.      || defined __cplusplus || defined _MSC_VER)
  1049. static char *
  1050. yystpcpy (char *yydest, const char *yysrc)
  1051. #else
  1052. static char *
  1053. yystpcpy (yydest, yysrc)
  1054.     char *yydest;
  1055.     const char *yysrc;
  1056. #endif
  1057. {
  1058.   char *yyd = yydest;
  1059.   const char *yys = yysrc;

  1060.   while ((*yyd++ = *yys++) != '\0')
  1061.     continue;

  1062.   return yyd - 1;
  1063. }
  1064. #  endif
  1065. # endif

  1066. # ifndef yytnamerr
  1067. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1068.    quotes and backslashes, so that it's suitable for yyerror.  The
  1069.    heuristic is that double-quoting is unnecessary unless the string
  1070.    contains an apostrophe, a comma, or backslash (other than
  1071.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1072.    null, do not copy; instead, return the length of what the result
  1073.    would have been.  */
  1074. static YYSIZE_T
  1075. yytnamerr (char *yyres, const char *yystr)
  1076. {
  1077.   if (*yystr == '"')
  1078.     {
  1079.       YYSIZE_T yyn = 0;
  1080.       char const *yyp = yystr;

  1081.       for (;;)
  1082.         switch (*++yyp)
  1083.           {
  1084.           case '\'':
  1085.           case ',':
  1086.             goto do_not_strip_quotes;

  1087.           case '\\':
  1088.             if (*++yyp != '\\')
  1089.               goto do_not_strip_quotes;
  1090.             /* Fall through.  */
  1091.           default:
  1092.             if (yyres)
  1093.               yyres[yyn] = *yyp;
  1094.             yyn++;
  1095.             break;

  1096.           case '"':
  1097.             if (yyres)
  1098.               yyres[yyn] = '\0';
  1099.             return yyn;
  1100.           }
  1101.     do_not_strip_quotes: ;
  1102.     }

  1103.   if (! yyres)
  1104.     return yystrlen (yystr);

  1105.   return yystpcpy (yyres, yystr) - yyres;
  1106. }
  1107. # endif

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

  1111.    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
  1112.    not large enough to hold the message.  In that case, also set
  1113.    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
  1114.    required number of bytes is too large to store.  */
  1115. static int
  1116. yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
  1117.                 yytype_int16 *yyssp, int yytoken)
  1118. {
  1119.   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  1120.   YYSIZE_T yysize = yysize0;
  1121.   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1122.   /* Internationalized format string. */
  1123.   const char *yyformat = YY_NULL;
  1124.   /* Arguments of yyformat. */
  1125.   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1126.   /* Number of reported tokens (one for the "unexpected", one per
  1127.      "expected"). */
  1128.   int yycount = 0;

  1129.   /* There are many possibilities here to consider:
  1130.      - Assume YYFAIL is not used.  It's too flawed to consider.  See
  1131.        <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
  1132.        for details.  YYERROR is fine as it does not invoke this
  1133.        function.
  1134.      - If this state is a consistent state with a default action, then
  1135.        the only way this function was invoked is if the default action
  1136.        is an error action.  In that case, don't check for expected
  1137.        tokens because there are none.
  1138.      - The only way there can be no lookahead present (in yychar) is if
  1139.        this state is a consistent state with a default action.  Thus,
  1140.        detecting the absence of a lookahead is sufficient to determine
  1141.        that there is no unexpected or expected token to report.  In that
  1142.        case, just report a simple "syntax error".
  1143.      - Don't assume there isn't a lookahead just because this state is a
  1144.        consistent state with a default action.  There might have been a
  1145.        previous inconsistent state, consistent state with a non-default
  1146.        action, or user semantic action that manipulated yychar.
  1147.      - Of course, the expected token list depends on states to have
  1148.        correct lookahead information, and it depends on the parser not
  1149.        to perform extra reductions after fetching a lookahead from the
  1150.        scanner and before detecting a syntax error.  Thus, state merging
  1151.        (from LALR or IELR) and default reductions corrupt the expected
  1152.        token list.  However, the list is correct for canonical LR with
  1153.        one exception: it will still contain any token that will not be
  1154.        accepted due to an error action in a later state.
  1155.   */
  1156.   if (yytoken != YYEMPTY)
  1157.     {
  1158.       int yyn = yypact[*yyssp];
  1159.       yyarg[yycount++] = yytname[yytoken];
  1160.       if (!yypact_value_is_default (yyn))
  1161.         {
  1162.           /* Start YYX at -YYN if negative to avoid negative indexes in
  1163.              YYCHECK.  In other words, skip the first -YYN actions for
  1164.              this state because they are default actions.  */
  1165.           int yyxbegin = yyn < 0 ? -yyn : 0;
  1166.           /* Stay within bounds of both yycheck and yytname.  */
  1167.           int yychecklim = YYLAST - yyn + 1;
  1168.           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
  1169.           int yyx;

  1170.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1171.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1172.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1173.               {
  1174.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1175.                   {
  1176.                     yycount = 1;
  1177.                     yysize = yysize0;
  1178.                     break;
  1179.                   }
  1180.                 yyarg[yycount++] = yytname[yyx];
  1181.                 {
  1182.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1183.                   if (! (yysize <= yysize1
  1184.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1185.                     return 2;
  1186.                   yysize = yysize1;
  1187.                 }
  1188.               }
  1189.         }
  1190.     }

  1191.   switch (yycount)
  1192.     {
  1193. # define YYCASE_(N, S)                      \
  1194.       case N:                               \
  1195.         yyformat = S;                       \
  1196.       break
  1197.       YYCASE_(0, YY_("syntax error"));
  1198.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1199.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1200.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1201.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1202.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1203. # undef YYCASE_
  1204.     }

  1205.   {
  1206.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1207.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1208.       return 2;
  1209.     yysize = yysize1;
  1210.   }

  1211.   if (*yymsg_alloc < yysize)
  1212.     {
  1213.       *yymsg_alloc = 2 * yysize;
  1214.       if (! (yysize <= *yymsg_alloc
  1215.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1216.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1217.       return 1;
  1218.     }

  1219.   /* Avoid sprintf, as that infringes on the user's name space.
  1220.      Don't have undefined behavior even if the translation
  1221.      produced a string with the wrong number of "%s"s.  */
  1222.   {
  1223.     char *yyp = *yymsg;
  1224.     int yyi = 0;
  1225.     while ((*yyp = *yyformat) != '\0')
  1226.       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
  1227.         {
  1228.           yyp += yytnamerr (yyp, yyarg[yyi++]);
  1229.           yyformat += 2;
  1230.         }
  1231.       else
  1232.         {
  1233.           yyp++;
  1234.           yyformat++;
  1235.         }
  1236.   }
  1237.   return 0;
  1238. }
  1239. #endif /* YYERROR_VERBOSE */

  1240. /*-----------------------------------------------.
  1241. | Release the memory associated to this symbol.  |
  1242. `-----------------------------------------------*/

  1243. /*ARGSUSED*/
  1244. #if (defined __STDC__ || defined __C99__FUNC__ \
  1245.      || defined __cplusplus || defined _MSC_VER)
  1246. static void
  1247. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1248. #else
  1249. static void
  1250. yydestruct (yymsg, yytype, yyvaluep)
  1251.     const char *yymsg;
  1252.     int yytype;
  1253.     YYSTYPE *yyvaluep;
  1254. #endif
  1255. {
  1256.   YYUSE (yyvaluep);

  1257.   if (!yymsg)
  1258.     yymsg = "Deleting";
  1259.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1260.   switch (yytype)
  1261.     {

  1262.       default:
  1263.         break;
  1264.     }
  1265. }




  1266. /* The lookahead symbol.  */
  1267. int yychar;


  1268. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1269. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1270. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1271. #endif
  1272. #ifndef YY_INITIAL_VALUE
  1273. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1274. #endif

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

  1277. /* Number of syntax errors so far.  */
  1278. int yynerrs;


  1279. /*----------.
  1280. | yyparse.  |
  1281. `----------*/

  1282. #ifdef YYPARSE_PARAM
  1283. #if (defined __STDC__ || defined __C99__FUNC__ \
  1284.      || defined __cplusplus || defined _MSC_VER)
  1285. int
  1286. yyparse (void *YYPARSE_PARAM)
  1287. #else
  1288. int
  1289. yyparse (YYPARSE_PARAM)
  1290.     void *YYPARSE_PARAM;
  1291. #endif
  1292. #else /* ! YYPARSE_PARAM */
  1293. #if (defined __STDC__ || defined __C99__FUNC__ \
  1294.      || defined __cplusplus || defined _MSC_VER)
  1295. int
  1296. yyparse (void)
  1297. #else
  1298. int
  1299. yyparse ()

  1300. #endif
  1301. #endif
  1302. {
  1303.     int yystate;
  1304.     /* Number of tokens to shift before error messages enabled.  */
  1305.     int yyerrstatus;

  1306.     /* The stacks and their tools:
  1307.        `yyss': related to states.
  1308.        `yyvs': related to semantic values.

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

  1311.     /* The state stack.  */
  1312.     yytype_int16 yyssa[YYINITDEPTH];
  1313.     yytype_int16 *yyss;
  1314.     yytype_int16 *yyssp;

  1315.     /* The semantic value stack.  */
  1316.     YYSTYPE yyvsa[YYINITDEPTH];
  1317.     YYSTYPE *yyvs;
  1318.     YYSTYPE *yyvsp;

  1319.     YYSIZE_T yystacksize;

  1320.   int yyn;
  1321.   int yyresult;
  1322.   /* Lookahead token as an internal (translated) token number.  */
  1323.   int yytoken = 0;
  1324.   /* The variables used to return semantic value and location from the
  1325.      action routines.  */
  1326.   YYSTYPE yyval;

  1327. #if YYERROR_VERBOSE
  1328.   /* Buffer for error messages, and its allocated size.  */
  1329.   char yymsgbuf[128];
  1330.   char *yymsg = yymsgbuf;
  1331.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1332. #endif

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

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

  1337.   yyssp = yyss = yyssa;
  1338.   yyvsp = yyvs = yyvsa;
  1339.   yystacksize = YYINITDEPTH;

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

  1341.   yystate = 0;
  1342.   yyerrstatus = 0;
  1343.   yynerrs = 0;
  1344.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1345.   goto yysetstate;

  1346. /*------------------------------------------------------------.
  1347. | yynewstate -- Push a new state, which is found in yystate.  |
  1348. `------------------------------------------------------------*/
  1349. yynewstate:
  1350.   /* In all cases, when you get here, the value and location stacks
  1351.      have just been pushed.  So pushing a state here evens the stacks.  */
  1352.   yyssp++;

  1353. yysetstate:
  1354.   *yyssp = yystate;

  1355.   if (yyss + yystacksize - 1 <= yyssp)
  1356.     {
  1357.       /* Get the current used size of the three stacks, in elements.  */
  1358.       YYSIZE_T yysize = yyssp - yyss + 1;

  1359. #ifdef yyoverflow
  1360.       {
  1361.         /* Give user a chance to xreallocate the stack.  Use copies of
  1362.            these so that the &'s don't force the real ones into
  1363.            memory.  */
  1364.         YYSTYPE *yyvs1 = yyvs;
  1365.         yytype_int16 *yyss1 = yyss;

  1366.         /* Each stack pointer address is followed by the size of the
  1367.            data in use in that stack, in bytes.  This used to be a
  1368.            conditional around just the two extra args, but that might
  1369.            be undefined if yyoverflow is a macro.  */
  1370.         yyoverflow (YY_("memory exhausted"),
  1371.                     &yyss1, yysize * sizeof (*yyssp),
  1372.                     &yyvs1, yysize * sizeof (*yyvsp),
  1373.                     &yystacksize);

  1374.         yyss = yyss1;
  1375.         yyvs = yyvs1;
  1376.       }
  1377. #else /* no yyoverflow */
  1378. # ifndef YYSTACK_RELOCATE
  1379.       goto yyexhaustedlab;
  1380. # else
  1381.       /* Extend the stack our own way.  */
  1382.       if (YYMAXDEPTH <= yystacksize)
  1383.         goto yyexhaustedlab;
  1384.       yystacksize *= 2;
  1385.       if (YYMAXDEPTH < yystacksize)
  1386.         yystacksize = YYMAXDEPTH;

  1387.       {
  1388.         yytype_int16 *yyss1 = yyss;
  1389.         union yyalloc *yyptr =
  1390.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1391.         if (! yyptr)
  1392.           goto yyexhaustedlab;
  1393.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1394.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1395. #  undef YYSTACK_RELOCATE
  1396.         if (yyss1 != yyssa)
  1397.           YYSTACK_FREE (yyss1);
  1398.       }
  1399. # endif
  1400. #endif /* no yyoverflow */

  1401.       yyssp = yyss + yysize - 1;
  1402.       yyvsp = yyvs + yysize - 1;

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

  1405.       if (yyss + yystacksize - 1 <= yyssp)
  1406.         YYABORT;
  1407.     }

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

  1409.   if (yystate == YYFINAL)
  1410.     YYACCEPT;

  1411.   goto yybackup;

  1412. /*-----------.
  1413. | yybackup.  |
  1414. `-----------*/
  1415. yybackup:

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

  1418.   /* First try to decide what to do without reference to lookahead token.  */
  1419.   yyn = yypact[yystate];
  1420.   if (yypact_value_is_default (yyn))
  1421.     goto yydefault;

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

  1423.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1424.   if (yychar == YYEMPTY)
  1425.     {
  1426.       YYDPRINTF ((stderr, "Reading a token: "));
  1427.       yychar = YYLEX;
  1428.     }

  1429.   if (yychar <= YYEOF)
  1430.     {
  1431.       yychar = yytoken = YYEOF;
  1432.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1433.     }
  1434.   else
  1435.     {
  1436.       yytoken = YYTRANSLATE (yychar);
  1437.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1438.     }

  1439.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1440.      detect an error, take that action.  */
  1441.   yyn += yytoken;
  1442.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1443.     goto yydefault;
  1444.   yyn = yytable[yyn];
  1445.   if (yyn <= 0)
  1446.     {
  1447.       if (yytable_value_is_error (yyn))
  1448.         goto yyerrlab;
  1449.       yyn = -yyn;
  1450.       goto yyreduce;
  1451.     }

  1452.   /* Count tokens shifted since error; after three, turn off error
  1453.      status.  */
  1454.   if (yyerrstatus)
  1455.     yyerrstatus--;

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

  1458.   /* Discard the shifted token.  */
  1459.   yychar = YYEMPTY;

  1460.   yystate = yyn;
  1461.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1462.   *++yyvsp = yylval;
  1463.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1464.   goto yynewstate;


  1465. /*-----------------------------------------------------------.
  1466. | yydefault -- do the default action for the current state.  |
  1467. `-----------------------------------------------------------*/
  1468. yydefault:
  1469.   yyn = yydefact[yystate];
  1470.   if (yyn == 0)
  1471.     goto yyerrlab;
  1472.   goto yyreduce;


  1473. /*-----------------------------.
  1474. | yyreduce -- Do a reduction.  |
  1475. `-----------------------------*/
  1476. yyreduce:
  1477.   /* yyn is the number of a rule to reduce with.  */
  1478.   yylen = yyr2[yyn];

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

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


  1487.   YY_REDUCE_PRINT (yyn);
  1488.   switch (yyn)
  1489.     {
  1490.         case 4:
  1491. /* Line 1792 of yacc.c  */
  1492. #line 247 "go-exp.y"
  1493.     { write_exp_elt_opcode (pstate, OP_TYPE);
  1494.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  1495.                           write_exp_elt_opcode (pstate, OP_TYPE); }
  1496.     break;

  1497.   case 6:
  1498. /* Line 1792 of yacc.c  */
  1499. #line 255 "go-exp.y"
  1500.     { write_exp_elt_opcode (pstate, BINOP_COMMA); }
  1501.     break;

  1502.   case 7:
  1503. /* Line 1792 of yacc.c  */
  1504. #line 260 "go-exp.y"
  1505.     { write_exp_elt_opcode (pstate, UNOP_IND); }
  1506.     break;

  1507.   case 8:
  1508. /* Line 1792 of yacc.c  */
  1509. #line 264 "go-exp.y"
  1510.     { write_exp_elt_opcode (pstate, UNOP_ADDR); }
  1511.     break;

  1512.   case 9:
  1513. /* Line 1792 of yacc.c  */
  1514. #line 268 "go-exp.y"
  1515.     { write_exp_elt_opcode (pstate, UNOP_NEG); }
  1516.     break;

  1517.   case 10:
  1518. /* Line 1792 of yacc.c  */
  1519. #line 272 "go-exp.y"
  1520.     { write_exp_elt_opcode (pstate, UNOP_PLUS); }
  1521.     break;

  1522.   case 11:
  1523. /* Line 1792 of yacc.c  */
  1524. #line 276 "go-exp.y"
  1525.     { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
  1526.     break;

  1527.   case 12:
  1528. /* Line 1792 of yacc.c  */
  1529. #line 280 "go-exp.y"
  1530.     { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
  1531.     break;

  1532.   case 13:
  1533. /* Line 1792 of yacc.c  */
  1534. #line 284 "go-exp.y"
  1535.     { write_exp_elt_opcode (pstate, UNOP_POSTINCREMENT); }
  1536.     break;

  1537.   case 14:
  1538. /* Line 1792 of yacc.c  */
  1539. #line 288 "go-exp.y"
  1540.     { write_exp_elt_opcode (pstate, UNOP_POSTDECREMENT); }
  1541.     break;

  1542.   case 15:
  1543. /* Line 1792 of yacc.c  */
  1544. #line 294 "go-exp.y"
  1545.     { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1546.                           write_exp_string (pstate, (yyvsp[(3) - (3)].ssym).stoken);
  1547.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1548.     break;

  1549.   case 16:
  1550. /* Line 1792 of yacc.c  */
  1551. #line 300 "go-exp.y"
  1552.     { mark_struct_expression (pstate);
  1553.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1554.                           write_exp_string (pstate, (yyvsp[(3) - (4)].ssym).stoken);
  1555.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1556.     break;

  1557.   case 17:
  1558. /* Line 1792 of yacc.c  */
  1559. #line 307 "go-exp.y"
  1560.     { struct stoken s;
  1561.                           mark_struct_expression (pstate);
  1562.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1563.                           s.ptr = "";
  1564.                           s.length = 0;
  1565.                           write_exp_string (pstate, s);
  1566.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1567.     break;

  1568.   case 18:
  1569. /* Line 1792 of yacc.c  */
  1570. #line 317 "go-exp.y"
  1571.     { write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
  1572.     break;

  1573.   case 19:
  1574. /* Line 1792 of yacc.c  */
  1575. #line 323 "go-exp.y"
  1576.     { start_arglist (); }
  1577.     break;

  1578.   case 20:
  1579. /* Line 1792 of yacc.c  */
  1580. #line 325 "go-exp.y"
  1581.     { write_exp_elt_opcode (pstate, OP_FUNCALL);
  1582.                           write_exp_elt_longcst (pstate,
  1583.                                                  (LONGEST) end_arglist ());
  1584.                           write_exp_elt_opcode (pstate, OP_FUNCALL); }
  1585.     break;

  1586.   case 21:
  1587. /* Line 1792 of yacc.c  */
  1588. #line 332 "go-exp.y"
  1589.     { start_arglist (); }
  1590.     break;

  1591.   case 23:
  1592. /* Line 1792 of yacc.c  */
  1593. #line 339 "go-exp.y"
  1594.     { arglist_len = 1; }
  1595.     break;

  1596.   case 24:
  1597. /* Line 1792 of yacc.c  */
  1598. #line 343 "go-exp.y"
  1599.     { arglist_len++; }
  1600.     break;

  1601.   case 25:
  1602. /* Line 1792 of yacc.c  */
  1603. #line 347 "go-exp.y"
  1604.     { (yyval.lval) = end_arglist () - 1; }
  1605.     break;

  1606.   case 26:
  1607. /* Line 1792 of yacc.c  */
  1608. #line 351 "go-exp.y"
  1609.     { write_exp_elt_opcode (pstate, UNOP_MEMVAL);
  1610.                           write_exp_elt_type (pstate, (yyvsp[(2) - (4)].tval));
  1611.                           write_exp_elt_opcode (pstate, UNOP_MEMVAL); }
  1612.     break;

  1613.   case 27:
  1614. /* Line 1792 of yacc.c  */
  1615. #line 357 "go-exp.y"
  1616.     { write_exp_elt_opcode (pstate, UNOP_CAST);
  1617.                           write_exp_elt_type (pstate, (yyvsp[(1) - (4)].tval));
  1618.                           write_exp_elt_opcode (pstate, UNOP_CAST); }
  1619.     break;

  1620.   case 28:
  1621. /* Line 1792 of yacc.c  */
  1622. #line 363 "go-exp.y"
  1623.     { }
  1624.     break;

  1625.   case 29:
  1626. /* Line 1792 of yacc.c  */
  1627. #line 369 "go-exp.y"
  1628.     { write_exp_elt_opcode (pstate, BINOP_REPEAT); }
  1629.     break;

  1630.   case 30:
  1631. /* Line 1792 of yacc.c  */
  1632. #line 373 "go-exp.y"
  1633.     { write_exp_elt_opcode (pstate, BINOP_MUL); }
  1634.     break;

  1635.   case 31:
  1636. /* Line 1792 of yacc.c  */
  1637. #line 377 "go-exp.y"
  1638.     { write_exp_elt_opcode (pstate, BINOP_DIV); }
  1639.     break;

  1640.   case 32:
  1641. /* Line 1792 of yacc.c  */
  1642. #line 381 "go-exp.y"
  1643.     { write_exp_elt_opcode (pstate, BINOP_REM); }
  1644.     break;

  1645.   case 33:
  1646. /* Line 1792 of yacc.c  */
  1647. #line 385 "go-exp.y"
  1648.     { write_exp_elt_opcode (pstate, BINOP_ADD); }
  1649.     break;

  1650.   case 34:
  1651. /* Line 1792 of yacc.c  */
  1652. #line 389 "go-exp.y"
  1653.     { write_exp_elt_opcode (pstate, BINOP_SUB); }
  1654.     break;

  1655.   case 35:
  1656. /* Line 1792 of yacc.c  */
  1657. #line 393 "go-exp.y"
  1658.     { write_exp_elt_opcode (pstate, BINOP_LSH); }
  1659.     break;

  1660.   case 36:
  1661. /* Line 1792 of yacc.c  */
  1662. #line 397 "go-exp.y"
  1663.     { write_exp_elt_opcode (pstate, BINOP_RSH); }
  1664.     break;

  1665.   case 37:
  1666. /* Line 1792 of yacc.c  */
  1667. #line 401 "go-exp.y"
  1668.     { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
  1669.     break;

  1670.   case 38:
  1671. /* Line 1792 of yacc.c  */
  1672. #line 405 "go-exp.y"
  1673.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
  1674.     break;

  1675.   case 39:
  1676. /* Line 1792 of yacc.c  */
  1677. #line 409 "go-exp.y"
  1678.     { write_exp_elt_opcode (pstate, BINOP_LEQ); }
  1679.     break;

  1680.   case 40:
  1681. /* Line 1792 of yacc.c  */
  1682. #line 413 "go-exp.y"
  1683.     { write_exp_elt_opcode (pstate, BINOP_GEQ); }
  1684.     break;

  1685.   case 41:
  1686. /* Line 1792 of yacc.c  */
  1687. #line 417 "go-exp.y"
  1688.     { write_exp_elt_opcode (pstate, BINOP_LESS); }
  1689.     break;

  1690.   case 42:
  1691. /* Line 1792 of yacc.c  */
  1692. #line 421 "go-exp.y"
  1693.     { write_exp_elt_opcode (pstate, BINOP_GTR); }
  1694.     break;

  1695.   case 43:
  1696. /* Line 1792 of yacc.c  */
  1697. #line 425 "go-exp.y"
  1698.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1699.     break;

  1700.   case 44:
  1701. /* Line 1792 of yacc.c  */
  1702. #line 429 "go-exp.y"
  1703.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  1704.     break;

  1705.   case 45:
  1706. /* Line 1792 of yacc.c  */
  1707. #line 433 "go-exp.y"
  1708.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1709.     break;

  1710.   case 46:
  1711. /* Line 1792 of yacc.c  */
  1712. #line 437 "go-exp.y"
  1713.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
  1714.     break;

  1715.   case 47:
  1716. /* Line 1792 of yacc.c  */
  1717. #line 441 "go-exp.y"
  1718.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
  1719.     break;

  1720.   case 48:
  1721. /* Line 1792 of yacc.c  */
  1722. #line 445 "go-exp.y"
  1723.     { write_exp_elt_opcode (pstate, TERNOP_COND); }
  1724.     break;

  1725.   case 49:
  1726. /* Line 1792 of yacc.c  */
  1727. #line 449 "go-exp.y"
  1728.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
  1729.     break;

  1730.   case 50:
  1731. /* Line 1792 of yacc.c  */
  1732. #line 453 "go-exp.y"
  1733.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY);
  1734.                           write_exp_elt_opcode (pstate, (yyvsp[(2) - (3)].opcode));
  1735.                           write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); }
  1736.     break;

  1737.   case 51:
  1738. /* Line 1792 of yacc.c  */
  1739. #line 459 "go-exp.y"
  1740.     { write_exp_elt_opcode (pstate, OP_LONG);
  1741.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_int).type);
  1742.                           write_exp_elt_longcst (pstate, (LONGEST)((yyvsp[(1) - (1)].typed_val_int).val));
  1743.                           write_exp_elt_opcode (pstate, OP_LONG); }
  1744.     break;

  1745.   case 52:
  1746. /* Line 1792 of yacc.c  */
  1747. #line 466 "go-exp.y"
  1748.     {
  1749.                           struct stoken_vector vec;
  1750.                           vec.len = 1;
  1751.                           vec.tokens = &(yyvsp[(1) - (1)].tsval);
  1752.                           write_exp_string_vector (pstate, (yyvsp[(1) - (1)].tsval).type, &vec);
  1753.                         }
  1754.     break;

  1755.   case 53:
  1756. /* Line 1792 of yacc.c  */
  1757. #line 475 "go-exp.y"
  1758.     { YYSTYPE val;
  1759.                           parse_number (pstate, (yyvsp[(1) - (1)].ssym).stoken.ptr,
  1760.                                         (yyvsp[(1) - (1)].ssym).stoken.length, 0, &val);
  1761.                           write_exp_elt_opcode (pstate, OP_LONG);
  1762.                           write_exp_elt_type (pstate, val.typed_val_int.type);
  1763.                           write_exp_elt_longcst (pstate, (LONGEST)
  1764.                                                  val.typed_val_int.val);
  1765.                           write_exp_elt_opcode (pstate, OP_LONG);
  1766.                         }
  1767.     break;

  1768.   case 54:
  1769. /* Line 1792 of yacc.c  */
  1770. #line 488 "go-exp.y"
  1771.     { write_exp_elt_opcode (pstate, OP_DOUBLE);
  1772.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_float).type);
  1773.                           write_exp_elt_dblcst (pstate, (yyvsp[(1) - (1)].typed_val_float).dval);
  1774.                           write_exp_elt_opcode (pstate, OP_DOUBLE); }
  1775.     break;

  1776.   case 56:
  1777. /* Line 1792 of yacc.c  */
  1778. #line 498 "go-exp.y"
  1779.     {
  1780.                           write_dollar_variable (pstate, (yyvsp[(1) - (1)].sval));
  1781.                         }
  1782.     break;

  1783.   case 57:
  1784. /* Line 1792 of yacc.c  */
  1785. #line 504 "go-exp.y"
  1786.     {
  1787.                           /* TODO(dje): Go objects in structs.  */
  1788.                           write_exp_elt_opcode (pstate, OP_LONG);
  1789.                           /* TODO(dje): What's the right type here?  */
  1790.                           write_exp_elt_type
  1791.                             (pstate,
  1792.                              parse_type (pstate)->builtin_unsigned_int);
  1793.                           CHECK_TYPEDEF ((yyvsp[(3) - (4)].tval));
  1794.                           write_exp_elt_longcst (pstate,
  1795.                                                  (LONGEST) TYPE_LENGTH ((yyvsp[(3) - (4)].tval)));
  1796.                           write_exp_elt_opcode (pstate, OP_LONG);
  1797.                         }
  1798.     break;

  1799.   case 58:
  1800. /* Line 1792 of yacc.c  */
  1801. #line 519 "go-exp.y"
  1802.     {
  1803.                           /* TODO(dje): Go objects in structs.  */
  1804.                           write_exp_elt_opcode (pstate, UNOP_SIZEOF);
  1805.                         }
  1806.     break;

  1807.   case 59:
  1808. /* Line 1792 of yacc.c  */
  1809. #line 526 "go-exp.y"
  1810.     {
  1811.                           /* We copy the string here, and not in the
  1812.                              lexer, to guarantee that we do not leak a
  1813.                              string.  */
  1814.                           /* Note that we NUL-terminate here, but just
  1815.                              for convenience.  */
  1816.                           struct typed_stoken *vec = XNEW (struct typed_stoken);
  1817.                           (yyval.svec).len = 1;
  1818.                           (yyval.svec).tokens = vec;

  1819.                           vec->type = (yyvsp[(1) - (1)].tsval).type;
  1820.                           vec->length = (yyvsp[(1) - (1)].tsval).length;
  1821.                           vec->ptr = xmalloc ((yyvsp[(1) - (1)].tsval).length + 1);
  1822.                           memcpy (vec->ptr, (yyvsp[(1) - (1)].tsval).ptr, (yyvsp[(1) - (1)].tsval).length + 1);
  1823.                         }
  1824.     break;

  1825.   case 60:
  1826. /* Line 1792 of yacc.c  */
  1827. #line 543 "go-exp.y"
  1828.     {
  1829.                           /* Note that we NUL-terminate here, but just
  1830.                              for convenience.  */
  1831.                           char *p;
  1832.                           ++(yyval.svec).len;
  1833.                           (yyval.svec).tokens = xrealloc ((yyval.svec).tokens,
  1834.                                                (yyval.svec).len * sizeof (struct typed_stoken));

  1835.                           p = xmalloc ((yyvsp[(3) - (3)].tsval).length + 1);
  1836.                           memcpy (p, (yyvsp[(3) - (3)].tsval).ptr, (yyvsp[(3) - (3)].tsval).length + 1);

  1837.                           (yyval.svec).tokens[(yyval.svec).len - 1].type = (yyvsp[(3) - (3)].tsval).type;
  1838.                           (yyval.svec).tokens[(yyval.svec).len - 1].length = (yyvsp[(3) - (3)].tsval).length;
  1839.                           (yyval.svec).tokens[(yyval.svec).len - 1].ptr = p;
  1840.                         }
  1841.     break;

  1842.   case 61:
  1843. /* Line 1792 of yacc.c  */
  1844. #line 561 "go-exp.y"
  1845.     {
  1846.                           int i;

  1847.                           write_exp_string_vector (pstate, 0 /*always utf8*/,
  1848.                                                    &(yyvsp[(1) - (1)].svec));
  1849.                           for (i = 0; i < (yyvsp[(1) - (1)].svec).len; ++i)
  1850.                             xfree ((yyvsp[(1) - (1)].svec).tokens[i].ptr);
  1851.                           xfree ((yyvsp[(1) - (1)].svec).tokens);
  1852.                         }
  1853.     break;

  1854.   case 62:
  1855. /* Line 1792 of yacc.c  */
  1856. #line 573 "go-exp.y"
  1857.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1858.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(1) - (1)].lval));
  1859.                           write_exp_elt_opcode (pstate, OP_BOOL); }
  1860.     break;

  1861.   case 63:
  1862. /* Line 1792 of yacc.c  */
  1863. #line 579 "go-exp.y"
  1864.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1865.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(1) - (1)].lval));
  1866.                           write_exp_elt_opcode (pstate, OP_BOOL); }
  1867.     break;

  1868.   case 64:
  1869. /* Line 1792 of yacc.c  */
  1870. #line 585 "go-exp.y"
  1871.     { struct symbol *sym = (yyvsp[(1) - (2)].ssym).sym;

  1872.                           if (sym == NULL
  1873.                               || !SYMBOL_IS_ARGUMENT (sym)
  1874.                               || !symbol_read_needs_frame (sym))
  1875.                             error (_("@entry can be used only for function "
  1876.                                      "parameters, not for \"%s\""),
  1877.                                    copy_name ((yyvsp[(1) - (2)].ssym).stoken));

  1878.                           write_exp_elt_opcode (pstate, OP_VAR_ENTRY_VALUE);
  1879.                           write_exp_elt_sym (pstate, sym);
  1880.                           write_exp_elt_opcode (pstate, OP_VAR_ENTRY_VALUE);
  1881.                         }
  1882.     break;

  1883.   case 65:
  1884. /* Line 1792 of yacc.c  */
  1885. #line 601 "go-exp.y"
  1886.     { struct symbol *sym = (yyvsp[(1) - (1)].ssym).sym;

  1887.                           if (sym)
  1888.                             {
  1889.                               if (symbol_read_needs_frame (sym))
  1890.                                 {
  1891.                                   if (innermost_block == 0
  1892.                                       || contained_in (block_found,
  1893.                                                        innermost_block))
  1894.                                     innermost_block = block_found;
  1895.                                 }

  1896.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  1897.                               /* We want to use the selected frame, not
  1898.                                  another more inner frame which happens to
  1899.                                  be in the same block.  */
  1900.                               write_exp_elt_block (pstate, NULL);
  1901.                               write_exp_elt_sym (pstate, sym);
  1902.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  1903.                             }
  1904.                           else if ((yyvsp[(1) - (1)].ssym).is_a_field_of_this)
  1905.                             {
  1906.                               /* TODO(dje): Can we get here?
  1907.                                  E.g., via a mix of c++ and go?  */
  1908.                               gdb_assert_not_reached ("go with `this' field");
  1909.                             }
  1910.                           else
  1911.                             {
  1912.                               struct bound_minimal_symbol msymbol;
  1913.                               char *arg = copy_name ((yyvsp[(1) - (1)].ssym).stoken);

  1914.                               msymbol =
  1915.                                 lookup_bound_minimal_symbol (arg);
  1916.                               if (msymbol.minsym != NULL)
  1917.                                 write_exp_msymbol (pstate, msymbol);
  1918.                               else if (!have_full_symbols ()
  1919.                                        && !have_partial_symbols ())
  1920.                                 error (_("No symbol table is loaded.  "
  1921.                                        "Use the \"file\" command."));
  1922.                               else
  1923.                                 error (_("No symbol \"%s\" in current context."),
  1924.                                        copy_name ((yyvsp[(1) - (1)].ssym).stoken));
  1925.                             }
  1926.                         }
  1927.     break;

  1928.   case 66:
  1929. /* Line 1792 of yacc.c  */
  1930. #line 656 "go-exp.y"
  1931.     { (yyval.tval) = lookup_pointer_type ((yyvsp[(2) - (2)].tval)); }
  1932.     break;

  1933.   case 67:
  1934. /* Line 1792 of yacc.c  */
  1935. #line 658 "go-exp.y"
  1936.     { (yyval.tval) = (yyvsp[(1) - (1)].tsym).type; }
  1937.     break;

  1938.   case 68:
  1939. /* Line 1792 of yacc.c  */
  1940. #line 665 "go-exp.y"
  1941.     { (yyval.tval) = builtin_go_type (parse_gdbarch (pstate))
  1942.                             ->builtin_uint8; }
  1943.     break;


  1944. /* Line 1792 of yacc.c  */
  1945. #line 2232 "go-exp.c"
  1946.       default: break;
  1947.     }
  1948.   /* User semantic actions sometimes alter yychar, and that requires
  1949.      that yytoken be updated with the new translation.  We take the
  1950.      approach of translating immediately before every use of yytoken.
  1951.      One alternative is translating here after every semantic action,
  1952.      but that translation would be missed if the semantic action invokes
  1953.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  1954.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  1955.      incorrect destructor might then be invoked immediately.  In the
  1956.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  1957.      to an incorrect destructor call or verbose syntax error message
  1958.      before the lookahead is translated.  */
  1959.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  1960.   YYPOPSTACK (yylen);
  1961.   yylen = 0;
  1962.   YY_STACK_PRINT (yyss, yyssp);

  1963.   *++yyvsp = yyval;

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

  1967.   yyn = yyr1[yyn];

  1968.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  1969.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  1970.     yystate = yytable[yystate];
  1971.   else
  1972.     yystate = yydefgoto[yyn - YYNTOKENS];

  1973.   goto yynewstate;


  1974. /*------------------------------------.
  1975. | yyerrlab -- here on detecting error |
  1976. `------------------------------------*/
  1977. yyerrlab:
  1978.   /* Make sure we have latest lookahead translation.  See comments at
  1979.      user semantic actions for why this is necessary.  */
  1980.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  1981.   /* If not already recovering from an error, report this error.  */
  1982.   if (!yyerrstatus)
  1983.     {
  1984.       ++yynerrs;
  1985. #if ! YYERROR_VERBOSE
  1986.       yyerror (YY_("syntax error"));
  1987. #else
  1988. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  1989.                                         yyssp, yytoken)
  1990.       {
  1991.         char const *yymsgp = YY_("syntax error");
  1992.         int yysyntax_error_status;
  1993.         yysyntax_error_status = YYSYNTAX_ERROR;
  1994.         if (yysyntax_error_status == 0)
  1995.           yymsgp = yymsg;
  1996.         else if (yysyntax_error_status == 1)
  1997.           {
  1998.             if (yymsg != yymsgbuf)
  1999.               YYSTACK_FREE (yymsg);
  2000.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  2001.             if (!yymsg)
  2002.               {
  2003.                 yymsg = yymsgbuf;
  2004.                 yymsg_alloc = sizeof yymsgbuf;
  2005.                 yysyntax_error_status = 2;
  2006.               }
  2007.             else
  2008.               {
  2009.                 yysyntax_error_status = YYSYNTAX_ERROR;
  2010.                 yymsgp = yymsg;
  2011.               }
  2012.           }
  2013.         yyerror (yymsgp);
  2014.         if (yysyntax_error_status == 2)
  2015.           goto yyexhaustedlab;
  2016.       }
  2017. # undef YYSYNTAX_ERROR
  2018. #endif
  2019.     }



  2020.   if (yyerrstatus == 3)
  2021.     {
  2022.       /* If just tried and failed to reuse lookahead token after an
  2023.          error, discard it.  */

  2024.       if (yychar <= YYEOF)
  2025.         {
  2026.           /* Return failure if at end of input.  */
  2027.           if (yychar == YYEOF)
  2028.             YYABORT;
  2029.         }
  2030.       else
  2031.         {
  2032.           yydestruct ("Error: discarding",
  2033.                       yytoken, &yylval);
  2034.           yychar = YYEMPTY;
  2035.         }
  2036.     }

  2037.   /* Else will try to reuse lookahead token after shifting the error
  2038.      token.  */
  2039.   goto yyerrlab1;


  2040. /*---------------------------------------------------.
  2041. | yyerrorlab -- error raised explicitly by YYERROR.  |
  2042. `---------------------------------------------------*/
  2043. yyerrorlab:

  2044.   /* Pacify compilers like GCC when the user code never invokes
  2045.      YYERROR and the label yyerrorlab therefore never appears in user
  2046.      code.  */
  2047.   if (/*CONSTCOND*/ 0)
  2048.      goto yyerrorlab;

  2049.   /* Do not reclaim the symbols of the rule which action triggered
  2050.      this YYERROR.  */
  2051.   YYPOPSTACK (yylen);
  2052.   yylen = 0;
  2053.   YY_STACK_PRINT (yyss, yyssp);
  2054.   yystate = *yyssp;
  2055.   goto yyerrlab1;


  2056. /*-------------------------------------------------------------.
  2057. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  2058. `-------------------------------------------------------------*/
  2059. yyerrlab1:
  2060.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  2061.   for (;;)
  2062.     {
  2063.       yyn = yypact[yystate];
  2064.       if (!yypact_value_is_default (yyn))
  2065.         {
  2066.           yyn += YYTERROR;
  2067.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  2068.             {
  2069.               yyn = yytable[yyn];
  2070.               if (0 < yyn)
  2071.                 break;
  2072.             }
  2073.         }

  2074.       /* Pop the current state because it cannot handle the error token.  */
  2075.       if (yyssp == yyss)
  2076.         YYABORT;


  2077.       yydestruct ("Error: popping",
  2078.                   yystos[yystate], yyvsp);
  2079.       YYPOPSTACK (1);
  2080.       yystate = *yyssp;
  2081.       YY_STACK_PRINT (yyss, yyssp);
  2082.     }

  2083.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  2084.   *++yyvsp = yylval;
  2085.   YY_IGNORE_MAYBE_UNINITIALIZED_END


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

  2088.   yystate = yyn;
  2089.   goto yynewstate;


  2090. /*-------------------------------------.
  2091. | yyacceptlab -- YYACCEPT comes here.  |
  2092. `-------------------------------------*/
  2093. yyacceptlab:
  2094.   yyresult = 0;
  2095.   goto yyreturn;

  2096. /*-----------------------------------.
  2097. | yyabortlab -- YYABORT comes here.  |
  2098. `-----------------------------------*/
  2099. yyabortlab:
  2100.   yyresult = 1;
  2101.   goto yyreturn;

  2102. #if !defined yyoverflow || YYERROR_VERBOSE
  2103. /*-------------------------------------------------.
  2104. | yyexhaustedlab -- memory exhaustion comes here.  |
  2105. `-------------------------------------------------*/
  2106. yyexhaustedlab:
  2107.   yyerror (YY_("memory exhausted"));
  2108.   yyresult = 2;
  2109.   /* Fall through.  */
  2110. #endif

  2111. yyreturn:
  2112.   if (yychar != YYEMPTY)
  2113.     {
  2114.       /* Make sure we have latest lookahead translation.  See comments at
  2115.          user semantic actions for why this is necessary.  */
  2116.       yytoken = YYTRANSLATE (yychar);
  2117.       yydestruct ("Cleanup: discarding lookahead",
  2118.                   yytoken, &yylval);
  2119.     }
  2120.   /* Do not reclaim the symbols of the rule which action triggered
  2121.      this YYABORT or YYACCEPT.  */
  2122.   YYPOPSTACK (yylen);
  2123.   YY_STACK_PRINT (yyss, yyssp);
  2124.   while (yyssp != yyss)
  2125.     {
  2126.       yydestruct ("Cleanup: popping",
  2127.                   yystos[*yyssp], yyvsp);
  2128.       YYPOPSTACK (1);
  2129.     }
  2130. #ifndef yyoverflow
  2131.   if (yyss != yyssa)
  2132.     YYSTACK_FREE (yyss);
  2133. #endif
  2134. #if YYERROR_VERBOSE
  2135.   if (yymsg != yymsgbuf)
  2136.     YYSTACK_FREE (yymsg);
  2137. #endif
  2138.   /* Make sure YYID is used.  */
  2139.   return YYID (yyresult);
  2140. }


  2141. /* Line 2055 of yacc.c  */
  2142. #line 687 "go-exp.y"


  2143. /* Wrapper on parse_c_float to get the type right for Go.  */

  2144. static int
  2145. parse_go_float (struct gdbarch *gdbarch, const char *p, int len,
  2146.                 DOUBLEST *d, struct type **t)
  2147. {
  2148.   int result = parse_c_float (gdbarch, p, len, d, t);
  2149.   const struct builtin_type *builtin_types = builtin_type (gdbarch);
  2150.   const struct builtin_go_type *builtin_go_types = builtin_go_type (gdbarch);

  2151.   if (*t == builtin_types->builtin_float)
  2152.     *t = builtin_go_types->builtin_float32;
  2153.   else if (*t == builtin_types->builtin_double)
  2154.     *t = builtin_go_types->builtin_float64;

  2155.   return result;
  2156. }

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

  2160. /* FIXME: Needs some error checking for the float case.  */
  2161. /* FIXME(dje): IWBN to use c-exp.y's parse_number if we could.
  2162.    That will require moving the guts into a function that we both call
  2163.    as our YYSTYPE is different than c-exp.y's  */

  2164. static int
  2165. parse_number (struct parser_state *par_state,
  2166.               const char *p, int len, int parsed_float, YYSTYPE *putithere)
  2167. {
  2168.   /* FIXME: Shouldn't these be unsigned?  We don't deal with negative values
  2169.      here, and we do kind of silly things like cast to unsigned.  */
  2170.   LONGEST n = 0;
  2171.   LONGEST prevn = 0;
  2172.   ULONGEST un;

  2173.   int i = 0;
  2174.   int c;
  2175.   int base = input_radix;
  2176.   int unsigned_p = 0;

  2177.   /* Number of "L" suffixes encountered.  */
  2178.   int long_p = 0;

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

  2181.   ULONGEST high_bit;
  2182.   struct type *signed_type;
  2183.   struct type *unsigned_type;

  2184.   if (parsed_float)
  2185.     {
  2186.       if (! parse_go_float (parse_gdbarch (par_state), p, len,
  2187.                             &putithere->typed_val_float.dval,
  2188.                             &putithere->typed_val_float.type))
  2189.         return ERROR;
  2190.       return FLOAT;
  2191.     }

  2192.   /* Handle base-switching prefixes 0x, 0t, 0d, 0.  */
  2193.   if (p[0] == '0')
  2194.     switch (p[1])
  2195.       {
  2196.       case 'x':
  2197.       case 'X':
  2198.         if (len >= 3)
  2199.           {
  2200.             p += 2;
  2201.             base = 16;
  2202.             len -= 2;
  2203.           }
  2204.         break;

  2205.       case 'b':
  2206.       case 'B':
  2207.         if (len >= 3)
  2208.           {
  2209.             p += 2;
  2210.             base = 2;
  2211.             len -= 2;
  2212.           }
  2213.         break;

  2214.       case 't':
  2215.       case 'T':
  2216.       case 'd':
  2217.       case 'D':
  2218.         if (len >= 3)
  2219.           {
  2220.             p += 2;
  2221.             base = 10;
  2222.             len -= 2;
  2223.           }
  2224.         break;

  2225.       default:
  2226.         base = 8;
  2227.         break;
  2228.       }

  2229.   while (len-- > 0)
  2230.     {
  2231.       c = *p++;
  2232.       if (c >= 'A' && c <= 'Z')
  2233.         c += 'a' - 'A';
  2234.       if (c != 'l' && c != 'u')
  2235.         n *= base;
  2236.       if (c >= '0' && c <= '9')
  2237.         {
  2238.           if (found_suffix)
  2239.             return ERROR;
  2240.           n += i = c - '0';
  2241.         }
  2242.       else
  2243.         {
  2244.           if (base > 10 && c >= 'a' && c <= 'f')
  2245.             {
  2246.               if (found_suffix)
  2247.                 return ERROR;
  2248.               n += i = c - 'a' + 10;
  2249.             }
  2250.           else if (c == 'l')
  2251.             {
  2252.               ++long_p;
  2253.               found_suffix = 1;
  2254.             }
  2255.           else if (c == 'u')
  2256.             {
  2257.               unsigned_p = 1;
  2258.               found_suffix = 1;
  2259.             }
  2260.           else
  2261.             return ERROR;        /* Char not a digit */
  2262.         }
  2263.       if (i >= base)
  2264.         return ERROR;                /* Invalid digit in this base.  */

  2265.       /* Portably test for overflow (only works for nonzero values, so make
  2266.          a second check for zero).  FIXME: Can't we just make n and prevn
  2267.          unsigned and avoid this?  */
  2268.       if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
  2269.         unsigned_p = 1;                /* Try something unsigned.  */

  2270.       /* Portably test for unsigned overflow.
  2271.          FIXME: This check is wrong; for example it doesn't find overflow
  2272.          on 0x123456789 when LONGEST is 32 bits.  */
  2273.       if (c != 'l' && c != 'u' && n != 0)
  2274.         {
  2275.           if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
  2276.             error (_("Numeric constant too large."));
  2277.         }
  2278.       prevn = n;
  2279.     }

  2280.   /* An integer constant is an int, a long, or a long long.  An L
  2281.      suffix forces it to be long; an LL suffix forces it to be long
  2282.      long.  If not forced to a larger size, it gets the first type of
  2283.      the above that it fits in.  To figure out whether it fits, we
  2284.      shift it right and see whether anything remains.  Note that we
  2285.      can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
  2286.      operation, because many compilers will warn about such a shift
  2287.      (which always produces a zero result).  Sometimes gdbarch_int_bit
  2288.      or gdbarch_long_bit will be that big, sometimes not.  To deal with
  2289.      the case where it is we just always shift the value more than
  2290.      once, with fewer bits each time.  */

  2291.   un = (ULONGEST)n >> 2;
  2292.   if (long_p == 0
  2293.       && (un >> (gdbarch_int_bit (parse_gdbarch (par_state)) - 2)) == 0)
  2294.     {
  2295.       high_bit
  2296.         = ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch (par_state)) - 1);

  2297.       /* A large decimal (not hex or octal) constant (between INT_MAX
  2298.          and UINT_MAX) is a long or unsigned long, according to ANSI,
  2299.          never an unsigned int, but this code treats it as unsigned
  2300.          int.  This probably should be fixed.  GCC gives a warning on
  2301.          such constants.  */

  2302.       unsigned_type = parse_type (par_state)->builtin_unsigned_int;
  2303.       signed_type = parse_type (par_state)->builtin_int;
  2304.     }
  2305.   else if (long_p <= 1
  2306.            && (un >> (gdbarch_long_bit (parse_gdbarch (par_state)) - 2)) == 0)
  2307.     {
  2308.       high_bit
  2309.         = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch (par_state)) - 1);
  2310.       unsigned_type = parse_type (par_state)->builtin_unsigned_long;
  2311.       signed_type = parse_type (par_state)->builtin_long;
  2312.     }
  2313.   else
  2314.     {
  2315.       int shift;
  2316.       if (sizeof (ULONGEST) * HOST_CHAR_BIT
  2317.           < gdbarch_long_long_bit (parse_gdbarch (par_state)))
  2318.         /* A long long does not fit in a LONGEST.  */
  2319.         shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
  2320.       else
  2321.         shift = (gdbarch_long_long_bit (parse_gdbarch (par_state)) - 1);
  2322.       high_bit = (ULONGEST) 1 << shift;
  2323.       unsigned_type = parse_type (par_state)->builtin_unsigned_long_long;
  2324.       signed_type = parse_type (par_state)->builtin_long_long;
  2325.     }

  2326.    putithere->typed_val_int.val = n;

  2327.    /* If the high bit of the worked out type is set then this number
  2328.       has to be unsigned.  */

  2329.    if (unsigned_p || (n & high_bit))
  2330.      {
  2331.        putithere->typed_val_int.type = unsigned_type;
  2332.      }
  2333.    else
  2334.      {
  2335.        putithere->typed_val_int.type = signed_type;
  2336.      }

  2337.    return INT;
  2338. }

  2339. /* Temporary obstack used for holding strings.  */
  2340. static struct obstack tempbuf;
  2341. static int tempbuf_init;

  2342. /* Parse a string or character literal from TOKPTR.  The string or
  2343.    character may be wide or unicode.  *OUTPTR is set to just after the
  2344.    end of the literal in the input string.  The resulting token is
  2345.    stored in VALUE.  This returns a token value, either STRING or
  2346.    CHAR, depending on what was parsed.  *HOST_CHARS is set to the
  2347.    number of host characters in the literal.  */

  2348. static int
  2349. parse_string_or_char (const char *tokptr, const char **outptr,
  2350.                       struct typed_stoken *value, int *host_chars)
  2351. {
  2352.   int quote;

  2353.   /* Build the gdb internal form of the input string in tempbuf.  Note
  2354.      that the buffer is null byte terminated *only* for the
  2355.      convenience of debugging gdb itself and printing the buffer
  2356.      contents when the buffer contains no embedded nulls.  Gdb does
  2357.      not depend upon the buffer being null byte terminated, it uses
  2358.      the length string instead.  This allows gdb to handle C strings
  2359.      (as well as strings in other languages) with embedded null
  2360.      bytes */

  2361.   if (!tempbuf_init)
  2362.     tempbuf_init = 1;
  2363.   else
  2364.     obstack_free (&tempbuf, NULL);
  2365.   obstack_init (&tempbuf);

  2366.   /* Skip the quote.  */
  2367.   quote = *tokptr;
  2368.   ++tokptr;

  2369.   *host_chars = 0;

  2370.   while (*tokptr)
  2371.     {
  2372.       char c = *tokptr;
  2373.       if (c == '\\')
  2374.         {
  2375.           ++tokptr;
  2376.           *host_chars += c_parse_escape (&tokptr, &tempbuf);
  2377.         }
  2378.       else if (c == quote)
  2379.         break;
  2380.       else
  2381.         {
  2382.           obstack_1grow (&tempbuf, c);
  2383.           ++tokptr;
  2384.           /* FIXME: this does the wrong thing with multi-byte host
  2385.              characters.  We could use mbrlen here, but that would
  2386.              make "set host-charset" a bit less useful.  */
  2387.           ++*host_chars;
  2388.         }
  2389.     }

  2390.   if (*tokptr != quote)
  2391.     {
  2392.       if (quote == '"')
  2393.         error (_("Unterminated string in expression."));
  2394.       else
  2395.         error (_("Unmatched single quote."));
  2396.     }
  2397.   ++tokptr;

  2398.   value->type = C_STRING | (quote == '\'' ? C_CHAR : 0); /*FIXME*/
  2399.   value->ptr = obstack_base (&tempbuf);
  2400.   value->length = obstack_object_size (&tempbuf);

  2401.   *outptr = tokptr;

  2402.   return quote == '\'' ? CHAR : STRING;
  2403. }

  2404. struct token
  2405. {
  2406.   char *operator;
  2407.   int token;
  2408.   enum exp_opcode opcode;
  2409. };

  2410. static const struct token tokentab3[] =
  2411.   {
  2412.     {">>=", ASSIGN_MODIFY, BINOP_RSH},
  2413.     {"<<=", ASSIGN_MODIFY, BINOP_LSH},
  2414.     /*{"&^=", ASSIGN_MODIFY, BINOP_BITWISE_ANDNOT}, TODO */
  2415.     {"...", DOTDOTDOT, OP_NULL},
  2416.   };

  2417. static const struct token tokentab2[] =
  2418.   {
  2419.     {"+=", ASSIGN_MODIFY, BINOP_ADD},
  2420.     {"-=", ASSIGN_MODIFY, BINOP_SUB},
  2421.     {"*=", ASSIGN_MODIFY, BINOP_MUL},
  2422.     {"/=", ASSIGN_MODIFY, BINOP_DIV},
  2423.     {"%=", ASSIGN_MODIFY, BINOP_REM},
  2424.     {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
  2425.     {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
  2426.     {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
  2427.     {"++", INCREMENT, BINOP_END},
  2428.     {"--", DECREMENT, BINOP_END},
  2429.     /*{"->", RIGHT_ARROW, BINOP_END}, Doesn't exist in Go.  */
  2430.     {"<-", LEFT_ARROW, BINOP_END},
  2431.     {"&&", ANDAND, BINOP_END},
  2432.     {"||", OROR, BINOP_END},
  2433.     {"<<", LSH, BINOP_END},
  2434.     {">>", RSH, BINOP_END},
  2435.     {"==", EQUAL, BINOP_END},
  2436.     {"!=", NOTEQUAL, BINOP_END},
  2437.     {"<=", LEQ, BINOP_END},
  2438.     {">=", GEQ, BINOP_END},
  2439.     /*{"&^", ANDNOT, BINOP_END}, TODO */
  2440.   };

  2441. /* Identifier-like tokens.  */
  2442. static const struct token ident_tokens[] =
  2443.   {
  2444.     {"true", TRUE_KEYWORD, OP_NULL},
  2445.     {"false", FALSE_KEYWORD, OP_NULL},
  2446.     {"nil", NIL_KEYWORD, OP_NULL},
  2447.     {"const", CONST_KEYWORD, OP_NULL},
  2448.     {"struct", STRUCT_KEYWORD, OP_NULL},
  2449.     {"type", TYPE_KEYWORD, OP_NULL},
  2450.     {"interface", INTERFACE_KEYWORD, OP_NULL},
  2451.     {"chan", CHAN_KEYWORD, OP_NULL},
  2452.     {"byte", BYTE_KEYWORD, OP_NULL}, /* An alias of uint8.  */
  2453.     {"len", LEN_KEYWORD, OP_NULL},
  2454.     {"cap", CAP_KEYWORD, OP_NULL},
  2455.     {"new", NEW_KEYWORD, OP_NULL},
  2456.     {"iota", IOTA_KEYWORD, OP_NULL},
  2457.   };

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

  2462. /* This is set if the previously-returned token was a structure
  2463.    operator -- either '.' or ARROW.  This is used only when parsing to
  2464.    do field name completion.  */
  2465. static int last_was_structop;

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

  2467. static int
  2468. lex_one_token (struct parser_state *par_state)
  2469. {
  2470.   int c;
  2471.   int namelen;
  2472.   unsigned int i;
  2473.   const char *tokstart;
  2474.   int saw_structop = last_was_structop;
  2475.   char *copy;

  2476.   last_was_structop = 0;

  2477. retry:

  2478.   prev_lexptr = lexptr;

  2479.   tokstart = lexptr;
  2480.   /* See if it is a special token of length 3.  */
  2481.   for (i = 0; i < sizeof (tokentab3) / sizeof (tokentab3[0]); i++)
  2482.     if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
  2483.       {
  2484.         lexptr += 3;
  2485.         yylval.opcode = tokentab3[i].opcode;
  2486.         return tokentab3[i].token;
  2487.       }

  2488.   /* See if it is a special token of length 2.  */
  2489.   for (i = 0; i < sizeof (tokentab2) / sizeof (tokentab2[0]); i++)
  2490.     if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
  2491.       {
  2492.         lexptr += 2;
  2493.         yylval.opcode = tokentab2[i].opcode;
  2494.         /* NOTE: -> doesn't exist in Go, so we don't need to watch for
  2495.            setting last_was_structop here.  */
  2496.         return tokentab2[i].token;
  2497.       }

  2498.   switch (c = *tokstart)
  2499.     {
  2500.     case 0:
  2501.       if (saw_name_at_eof)
  2502.         {
  2503.           saw_name_at_eof = 0;
  2504.           return COMPLETE;
  2505.         }
  2506.       else if (saw_structop)
  2507.         return COMPLETE;
  2508.       else
  2509.         return 0;

  2510.     case ' ':
  2511.     case '\t':
  2512.     case '\n':
  2513.       lexptr++;
  2514.       goto retry;

  2515.     case '[':
  2516.     case '(':
  2517.       paren_depth++;
  2518.       lexptr++;
  2519.       return c;

  2520.     case ']':
  2521.     case ')':
  2522.       if (paren_depth == 0)
  2523.         return 0;
  2524.       paren_depth--;
  2525.       lexptr++;
  2526.       return c;

  2527.     case ',':
  2528.       if (comma_terminates
  2529.           && paren_depth == 0)
  2530.         return 0;
  2531.       lexptr++;
  2532.       return c;

  2533.     case '.':
  2534.       /* Might be a floating point number.  */
  2535.       if (lexptr[1] < '0' || lexptr[1] > '9')
  2536.         {
  2537.           if (parse_completion)
  2538.             last_was_structop = 1;
  2539.           goto symbol;                /* Nope, must be a symbol. */
  2540.         }
  2541.       /* FALL THRU into number case.  */

  2542.     case '0':
  2543.     case '1':
  2544.     case '2':
  2545.     case '3':
  2546.     case '4':
  2547.     case '5':
  2548.     case '6':
  2549.     case '7':
  2550.     case '8':
  2551.     case '9':
  2552.       {
  2553.         /* It's a number.  */
  2554.         int got_dot = 0, got_e = 0, toktype;
  2555.         const char *p = tokstart;
  2556.         int hex = input_radix > 10;

  2557.         if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
  2558.           {
  2559.             p += 2;
  2560.             hex = 1;
  2561.           }

  2562.         for (;; ++p)
  2563.           {
  2564.             /* This test includes !hex because 'e' is a valid hex digit
  2565.                and thus does not indicate a floating point number when
  2566.                the radix is hex.  */
  2567.             if (!hex && !got_e && (*p == 'e' || *p == 'E'))
  2568.               got_dot = got_e = 1;
  2569.             /* This test does not include !hex, because a '.' always indicates
  2570.                a decimal floating point number regardless of the radix.  */
  2571.             else if (!got_dot && *p == '.')
  2572.               got_dot = 1;
  2573.             else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
  2574.                      && (*p == '-' || *p == '+'))
  2575.               /* This is the sign of the exponent, not the end of the
  2576.                  number.  */
  2577.               continue;
  2578.             /* We will take any letters or digits.  parse_number will
  2579.                complain if past the radix, or if L or U are not final.  */
  2580.             else if ((*p < '0' || *p > '9')
  2581.                      && ((*p < 'a' || *p > 'z')
  2582.                                   && (*p < 'A' || *p > 'Z')))
  2583.               break;
  2584.           }
  2585.         toktype = parse_number (par_state, tokstart, p - tokstart,
  2586.                                 got_dot|got_e, &yylval);
  2587.         if (toktype == ERROR)
  2588.           {
  2589.             char *err_copy = (char *) alloca (p - tokstart + 1);

  2590.             memcpy (err_copy, tokstart, p - tokstart);
  2591.             err_copy[p - tokstart] = 0;
  2592.             error (_("Invalid number \"%s\"."), err_copy);
  2593.           }
  2594.         lexptr = p;
  2595.         return toktype;
  2596.       }

  2597.     case '@':
  2598.       {
  2599.         const char *p = &tokstart[1];
  2600.         size_t len = strlen ("entry");

  2601.         while (isspace (*p))
  2602.           p++;
  2603.         if (strncmp (p, "entry", len) == 0 && !isalnum (p[len])
  2604.             && p[len] != '_')
  2605.           {
  2606.             lexptr = &p[len];
  2607.             return ENTRY;
  2608.           }
  2609.       }
  2610.       /* FALLTHRU */
  2611.     case '+':
  2612.     case '-':
  2613.     case '*':
  2614.     case '/':
  2615.     case '%':
  2616.     case '|':
  2617.     case '&':
  2618.     case '^':
  2619.     case '~':
  2620.     case '!':
  2621.     case '<':
  2622.     case '>':
  2623.     case '?':
  2624.     case ':':
  2625.     case '=':
  2626.     case '{':
  2627.     case '}':
  2628.     symbol:
  2629.       lexptr++;
  2630.       return c;

  2631.     case '\'':
  2632.     case '"':
  2633.     case '`':
  2634.       {
  2635.         int host_len;
  2636.         int result = parse_string_or_char (tokstart, &lexptr, &yylval.tsval,
  2637.                                            &host_len);
  2638.         if (result == CHAR)
  2639.           {
  2640.             if (host_len == 0)
  2641.               error (_("Empty character constant."));
  2642.             else if (host_len > 2 && c == '\'')
  2643.               {
  2644.                 ++tokstart;
  2645.                 namelen = lexptr - tokstart - 1;
  2646.                 goto tryname;
  2647.               }
  2648.             else if (host_len > 1)
  2649.               error (_("Invalid character constant."));
  2650.           }
  2651.         return result;
  2652.       }
  2653.     }

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

  2658.   /* It's a name.  See how long it is.  */
  2659.   namelen = 0;
  2660.   for (c = tokstart[namelen];
  2661.        (c == '_' || c == '$' || (c >= '0' && c <= '9')
  2662.         || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));)
  2663.     {
  2664.       c = tokstart[++namelen];
  2665.     }

  2666.   /* The token "if" terminates the expression and is NOT removed from
  2667.      the input stream.  It doesn't count if it appears in the
  2668.      expansion of a macro.  */
  2669.   if (namelen == 2
  2670.       && tokstart[0] == 'i'
  2671.       && tokstart[1] == 'f')
  2672.     {
  2673.       return 0;
  2674.     }

  2675.   /* For the same reason (breakpoint conditions), "thread N"
  2676.      terminates the expression.  "thread" could be an identifier, but
  2677.      an identifier is never followed by a number without intervening
  2678.      punctuation.
  2679.      Handle abbreviations of these, similarly to
  2680.      breakpoint.c:find_condition_and_thread.
  2681.      TODO: Watch for "goroutine" here?  */
  2682.   if (namelen >= 1
  2683.       && strncmp (tokstart, "thread", namelen) == 0
  2684.       && (tokstart[namelen] == ' ' || tokstart[namelen] == '\t'))
  2685.     {
  2686.       const char *p = tokstart + namelen + 1;

  2687.       while (*p == ' ' || *p == '\t')
  2688.         p++;
  2689.       if (*p >= '0' && *p <= '9')
  2690.         return 0;
  2691.     }

  2692.   lexptr += namelen;

  2693.   tryname:

  2694.   yylval.sval.ptr = tokstart;
  2695.   yylval.sval.length = namelen;

  2696.   /* Catch specific keywords.  */
  2697.   copy = copy_name (yylval.sval);
  2698.   for (i = 0; i < sizeof (ident_tokens) / sizeof (ident_tokens[0]); i++)
  2699.     if (strcmp (copy, ident_tokens[i].operator) == 0)
  2700.       {
  2701.         /* It is ok to always set this, even though we don't always
  2702.            strictly need to.  */
  2703.         yylval.opcode = ident_tokens[i].opcode;
  2704.         return ident_tokens[i].token;
  2705.       }

  2706.   if (*tokstart == '$')
  2707.     return DOLLAR_VARIABLE;

  2708.   if (parse_completion && *lexptr == '\0')
  2709.     saw_name_at_eof = 1;
  2710.   return NAME;
  2711. }

  2712. /* An object of this type is pushed on a FIFO by the "outer" lexer.  */
  2713. typedef struct
  2714. {
  2715.   int token;
  2716.   YYSTYPE value;
  2717. } token_and_value;

  2718. DEF_VEC_O (token_and_value);

  2719. /* A FIFO of tokens that have been read but not yet returned to the
  2720.    parser.  */
  2721. static VEC (token_and_value) *token_fifo;

  2722. /* Non-zero if the lexer should return tokens from the FIFO.  */
  2723. static int popping;

  2724. /* Temporary storage for yylex; this holds symbol names as they are
  2725.    built up.  */
  2726. static struct obstack name_obstack;

  2727. /* Build "package.name" in name_obstack.
  2728.    For convenience of the caller, the name is NUL-terminated,
  2729.    but the NUL is not included in the recorded length.  */

  2730. static struct stoken
  2731. build_packaged_name (const char *package, int package_len,
  2732.                      const char *name, int name_len)
  2733. {
  2734.   struct stoken result;

  2735.   obstack_free (&name_obstack, obstack_base (&name_obstack));
  2736.   obstack_grow (&name_obstack, package, package_len);
  2737.   obstack_grow_str (&name_obstack, ".");
  2738.   obstack_grow (&name_obstack, name, name_len);
  2739.   obstack_grow (&name_obstack, "", 1);
  2740.   result.ptr = obstack_base (&name_obstack);
  2741.   result.length = obstack_object_size (&name_obstack) - 1;

  2742.   return result;
  2743. }

  2744. /* Return non-zero if NAME is a package name.
  2745.    BLOCK is the scope in which to interpret NAME; this can be NULL
  2746.    to mean the global scope.  */

  2747. static int
  2748. package_name_p (const char *name, const struct block *block)
  2749. {
  2750.   struct symbol *sym;
  2751.   struct field_of_this_result is_a_field_of_this;

  2752.   sym = lookup_symbol (name, block, STRUCT_DOMAIN, &is_a_field_of_this);

  2753.   if (sym
  2754.       && SYMBOL_CLASS (sym) == LOC_TYPEDEF
  2755.       && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_MODULE)
  2756.     return 1;

  2757.   return 0;
  2758. }

  2759. /* Classify a (potential) function in the "unsafe" package.
  2760.    We fold these into "keywords" to keep things simple, at least until
  2761.    something more complex is warranted.  */

  2762. static int
  2763. classify_unsafe_function (struct stoken function_name)
  2764. {
  2765.   char *copy = copy_name (function_name);

  2766.   if (strcmp (copy, "Sizeof") == 0)
  2767.     {
  2768.       yylval.sval = function_name;
  2769.       return SIZEOF_KEYWORD;
  2770.     }

  2771.   error (_("Unknown function in `unsafe' package: %s"), copy);
  2772. }

  2773. /* Classify token(s) "name1.name2" where name1 is known to be a package.
  2774.    The contents of the token are in `yylval'.
  2775.    Updates yylval and returns the new token type.

  2776.    The result is one of NAME, NAME_OR_INT, or TYPENAME.  */

  2777. static int
  2778. classify_packaged_name (const struct block *block)
  2779. {
  2780.   char *copy;
  2781.   struct symbol *sym;
  2782.   struct field_of_this_result is_a_field_of_this;

  2783.   copy = copy_name (yylval.sval);

  2784.   sym = lookup_symbol (copy, block, VAR_DOMAIN, &is_a_field_of_this);

  2785.   if (sym)
  2786.     {
  2787.       yylval.ssym.sym = sym;
  2788.       yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  2789.     }

  2790.   return NAME;
  2791. }

  2792. /* Classify a NAME token.
  2793.    The contents of the token are in `yylval'.
  2794.    Updates yylval and returns the new token type.
  2795.    BLOCK is the block in which lookups start; this can be NULL
  2796.    to mean the global scope.

  2797.    The result is one of NAME, NAME_OR_INT, or TYPENAME.  */

  2798. static int
  2799. classify_name (struct parser_state *par_state, const struct block *block)
  2800. {
  2801.   struct type *type;
  2802.   struct symbol *sym;
  2803.   char *copy;
  2804.   struct field_of_this_result is_a_field_of_this;

  2805.   copy = copy_name (yylval.sval);

  2806.   /* Try primitive types first so they win over bad/weird debug info.  */
  2807.   type = language_lookup_primitive_type_by_name (parse_language (par_state),
  2808.                                                  parse_gdbarch (par_state),
  2809.                                                  copy);
  2810.   if (type != NULL)
  2811.     {
  2812.       /* NOTE: We take advantage of the fact that yylval coming in was a
  2813.          NAME, and that struct ttype is a compatible extension of struct
  2814.          stoken, so yylval.tsym.stoken is already filled in.  */
  2815.       yylval.tsym.type = type;
  2816.       return TYPENAME;
  2817.     }

  2818.   /* TODO: What about other types?  */

  2819.   sym = lookup_symbol (copy, block, VAR_DOMAIN, &is_a_field_of_this);

  2820.   if (sym)
  2821.     {
  2822.       yylval.ssym.sym = sym;
  2823.       yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  2824.       return NAME;
  2825.     }

  2826.   /* If we didn't find a symbol, look again in the current package.
  2827.      This is to, e.g., make "p global_var" work without having to specify
  2828.      the package name.  We intentionally only looks for objects in the
  2829.      current package.  */

  2830.   {
  2831.     char *current_package_name = go_block_package_name (block);

  2832.     if (current_package_name != NULL)
  2833.       {
  2834.         struct stoken sval =
  2835.           build_packaged_name (current_package_name,
  2836.                                strlen (current_package_name),
  2837.                                copy, strlen (copy));

  2838.         xfree (current_package_name);
  2839.         sym = lookup_symbol (sval.ptr, block, VAR_DOMAIN,
  2840.                              &is_a_field_of_this);
  2841.         if (sym)
  2842.           {
  2843.             yylval.ssym.stoken = sval;
  2844.             yylval.ssym.sym = sym;
  2845.             yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  2846.             return NAME;
  2847.           }
  2848.       }
  2849.   }

  2850.   /* Input names that aren't symbols but ARE valid hex numbers, when
  2851.      the input radix permits them, can be names or numbers depending
  2852.      on the parse.  Note we support radixes > 16 here.  */
  2853.   if ((copy[0] >= 'a' && copy[0] < 'a' + input_radix - 10)
  2854.       || (copy[0] >= 'A' && copy[0] < 'A' + input_radix - 10))
  2855.     {
  2856.       YYSTYPE newlval;        /* Its value is ignored.  */
  2857.       int hextype = parse_number (par_state, copy, yylval.sval.length,
  2858.                                   0, &newlval);
  2859.       if (hextype == INT)
  2860.         {
  2861.           yylval.ssym.sym = NULL;
  2862.           yylval.ssym.is_a_field_of_this = 0;
  2863.           return NAME_OR_INT;
  2864.         }
  2865.     }

  2866.   yylval.ssym.sym = NULL;
  2867.   yylval.ssym.is_a_field_of_this = 0;
  2868.   return NAME;
  2869. }

  2870. /* This is taken from c-exp.y mostly to get something working.
  2871.    The basic structure has been kept because we may yet need some of it.  */

  2872. static int
  2873. yylex (void)
  2874. {
  2875.   token_and_value current, next;

  2876.   if (popping && !VEC_empty (token_and_value, token_fifo))
  2877.     {
  2878.       token_and_value tv = *VEC_index (token_and_value, token_fifo, 0);
  2879.       VEC_ordered_remove (token_and_value, token_fifo, 0);
  2880.       yylval = tv.value;
  2881.       /* There's no need to fall through to handle package.name
  2882.          as that can never happen here.  In theory.  */
  2883.       return tv.token;
  2884.     }
  2885.   popping = 0;

  2886.   current.token = lex_one_token (pstate);

  2887.   /* TODO: Need a way to force specifying name1 as a package.
  2888.      .name1.name2 ?  */

  2889.   if (current.token != NAME)
  2890.     return current.token;

  2891.   /* See if we have "name1 . name2".  */

  2892.   current.value = yylval;
  2893.   next.token = lex_one_token (pstate);
  2894.   next.value = yylval;

  2895.   if (next.token == '.')
  2896.     {
  2897.       token_and_value name2;

  2898.       name2.token = lex_one_token (pstate);
  2899.       name2.value = yylval;

  2900.       if (name2.token == NAME)
  2901.         {
  2902.           /* Ok, we have "name1 . name2".  */
  2903.           char *copy;

  2904.           copy = copy_name (current.value.sval);

  2905.           if (strcmp (copy, "unsafe") == 0)
  2906.             {
  2907.               popping = 1;
  2908.               return classify_unsafe_function (name2.value.sval);
  2909.             }

  2910.           if (package_name_p (copy, expression_context_block))
  2911.             {
  2912.               popping = 1;
  2913.               yylval.sval = build_packaged_name (current.value.sval.ptr,
  2914.                                                  current.value.sval.length,
  2915.                                                  name2.value.sval.ptr,
  2916.                                                  name2.value.sval.length);
  2917.               return classify_packaged_name (expression_context_block);
  2918.             }
  2919.         }

  2920.       VEC_safe_push (token_and_value, token_fifo, &next);
  2921.       VEC_safe_push (token_and_value, token_fifo, &name2);
  2922.     }
  2923.   else
  2924.     {
  2925.       VEC_safe_push (token_and_value, token_fifo, &next);
  2926.     }

  2927.   /* If we arrive here we don't have a package-qualified name.  */

  2928.   popping = 1;
  2929.   yylval = current.value;
  2930.   return classify_name (pstate, expression_context_block);
  2931. }

  2932. int
  2933. go_parse (struct parser_state *par_state)
  2934. {
  2935.   int result;
  2936.   struct cleanup *back_to;

  2937.   /* Setting up the parser state.  */
  2938.   gdb_assert (par_state != NULL);
  2939.   pstate = par_state;

  2940.   back_to = make_cleanup (null_cleanup, NULL);

  2941.   make_cleanup_restore_integer (&yydebug);
  2942.   make_cleanup_clear_parser_state (&pstate);
  2943.   yydebug = parser_debug;

  2944.   /* Initialize some state used by the lexer.  */
  2945.   last_was_structop = 0;
  2946.   saw_name_at_eof = 0;

  2947.   VEC_free (token_and_value, token_fifo);
  2948.   popping = 0;
  2949.   obstack_init (&name_obstack);
  2950.   make_cleanup_obstack_free (&name_obstack);

  2951.   result = yyparse ();
  2952.   do_cleanups (back_to);
  2953.   return result;
  2954. }

  2955. void
  2956. yyerror (char *msg)
  2957. {
  2958.   if (prev_lexptr)
  2959.     lexptr = prev_lexptr;

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