gdb/ada-exp.c - gdb

Global variables defined

Data types defined

Functions defined

Macros defined

Source code

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




  45. /* Copy the first part of user declarations.  */
  46. /* Line 371 of yacc.c  */
  47. #line 36 "ada-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 "ada-lang.h"
  55. #include "bfd.h" /* Required by objfiles.h.  */
  56. #include "symfile.h" /* Required by objfiles.h.  */
  57. #include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
  58. #include "frame.h"
  59. #include "block.h"

  60. #define parse_type(ps) builtin_type (parse_gdbarch (ps))

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

  67. /* NOTE: This is clumsy, especially since BISON and FLEX provide --prefix
  68.    options.  I presume we are maintaining it to accommodate systems
  69.    without BISON?  (PNH) */

  70. #define        yymaxdepth ada_maxdepth
  71. /* ada_parse calls this after initialization */
  72. #define        yyparse        ada_parse_internal
  73. #define        yylex        ada_lex
  74. #define        yyerror        ada_error
  75. #define        yylval        ada_lval
  76. #define        yychar        ada_char
  77. #define        yydebug        ada_debug
  78. #define        yypact        ada_pact
  79. #define        yyr1        ada_r1
  80. #define        yyr2        ada_r2
  81. #define        yydef        ada_def
  82. #define        yychk        ada_chk
  83. #define        yypgo        ada_pgo
  84. #define        yyact        ada_act
  85. #define        yyexca        ada_exca
  86. #define yyerrflag ada_errflag
  87. #define yynerrs        ada_nerrs
  88. #define        yyps        ada_ps
  89. #define        yypv        ada_pv
  90. #define        yys        ada_s
  91. #define        yy_yys        ada_yys
  92. #define        yystate        ada_state
  93. #define        yytmp        ada_tmp
  94. #define        yyv        ada_v
  95. #define        yy_yyv        ada_yyv
  96. #define        yyval        ada_val
  97. #define        yylloc        ada_lloc
  98. #define yyreds        ada_reds                /* With YYDEBUG defined */
  99. #define yytoks        ada_toks                /* With YYDEBUG defined */
  100. #define yyname        ada_name                /* With YYDEBUG defined */
  101. #define yyrule        ada_rule                /* With YYDEBUG defined */
  102. #define yyss        ada_yyss
  103. #define yysslim        ada_yysslim
  104. #define yyssp        ada_yyssp
  105. #define yystacksize ada_yystacksize
  106. #define yyvs        ada_yyvs
  107. #define yyvsp        ada_yyvsp

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

  111. #define YYFPRINTF parser_fprintf

  112. struct name_info {
  113.   struct symbol *sym;
  114.   struct minimal_symbol *msym;
  115.   const struct block *block;
  116.   struct stoken stoken;
  117. };

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

  120. static struct parser_state *pstate = NULL;

  121. static struct stoken empty_stoken = { "", 0 };

  122. /* If expression is in the context of TYPE'(...), then TYPE, else
  123. * NULL.  */
  124. static struct type *type_qualifier;

  125. int yyparse (void);

  126. static int yylex (void);

  127. void yyerror (char *);

  128. static void write_int (struct parser_state *, LONGEST, struct type *);

  129. static void write_object_renaming (struct parser_state *,
  130.                                    const struct block *, const char *, int,
  131.                                    const char *, int);

  132. static struct type* write_var_or_type (struct parser_state *,
  133.                                        const struct block *, struct stoken);

  134. static void write_name_assoc (struct parser_state *, struct stoken);

  135. static void write_exp_op_with_string (struct parser_state *, enum exp_opcode,
  136.                                       struct stoken);

  137. static const struct block *block_lookup (const struct block *, const char *);

  138. static LONGEST convert_char_literal (struct type *, LONGEST);

  139. static void write_ambiguous_var (struct parser_state *,
  140.                                  const struct block *, char *, int);

  141. static struct type *type_int (struct parser_state *);

  142. static struct type *type_long (struct parser_state *);

  143. static struct type *type_long_long (struct parser_state *);

  144. static struct type *type_float (struct parser_state *);

  145. static struct type *type_double (struct parser_state *);

  146. static struct type *type_long_double (struct parser_state *);

  147. static struct type *type_char (struct parser_state *);

  148. static struct type *type_boolean (struct parser_state *);

  149. static struct type *type_system_address (struct parser_state *);


  150. /* Line 371 of yacc.c  */
  151. #line 206 "ada-exp.c"

  152. # ifndef YY_NULL
  153. #  if defined __cplusplus && 201103L <= __cplusplus
  154. #   define YY_NULL nullptr
  155. #  else
  156. #   define YY_NULL 0
  157. #  endif
  158. # endif

  159. /* Enabling verbose error messages.  */
  160. #ifdef YYERROR_VERBOSE
  161. # undef YYERROR_VERBOSE
  162. # define YYERROR_VERBOSE 1
  163. #else
  164. # define YYERROR_VERBOSE 0
  165. #endif


  166. /* Enabling traces.  */
  167. #ifndef YYDEBUG
  168. # define YYDEBUG 0
  169. #endif
  170. #if YYDEBUG
  171. extern int yydebug;
  172. #endif

  173. /* Tokens.  */
  174. #ifndef YYTOKENTYPE
  175. # define YYTOKENTYPE
  176.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  177.       know about them.  */
  178.    enum yytokentype {
  179.      INT = 258,
  180.      NULL_PTR = 259,
  181.      CHARLIT = 260,
  182.      FLOAT = 261,
  183.      TRUEKEYWORD = 262,
  184.      FALSEKEYWORD = 263,
  185.      COLONCOLON = 264,
  186.      STRING = 265,
  187.      NAME = 266,
  188.      DOT_ID = 267,
  189.      DOT_ALL = 268,
  190.      SPECIAL_VARIABLE = 269,
  191.      ASSIGN = 270,
  192.      ELSE = 271,
  193.      THEN = 272,
  194.      XOR = 273,
  195.      OR = 274,
  196.      _AND_ = 275,
  197.      DOTDOT = 276,
  198.      IN = 277,
  199.      GEQ = 278,
  200.      LEQ = 279,
  201.      NOTEQUAL = 280,
  202.      UNARY = 281,
  203.      REM = 282,
  204.      MOD = 283,
  205.      NOT = 284,
  206.      ABS = 285,
  207.      STARSTAR = 286,
  208.      VAR = 287,
  209.      ARROW = 288,
  210.      TICK_LENGTH = 289,
  211.      TICK_LAST = 290,
  212.      TICK_FIRST = 291,
  213.      TICK_ADDRESS = 292,
  214.      TICK_ACCESS = 293,
  215.      TICK_MODULUS = 294,
  216.      TICK_MIN = 295,
  217.      TICK_MAX = 296,
  218.      TICK_VAL = 297,
  219.      TICK_TAG = 298,
  220.      TICK_SIZE = 299,
  221.      TICK_RANGE = 300,
  222.      TICK_POS = 301,
  223.      NEW = 302,
  224.      OTHERS = 303
  225.    };
  226. #endif
  227. /* Tokens.  */
  228. #define INT 258
  229. #define NULL_PTR 259
  230. #define CHARLIT 260
  231. #define FLOAT 261
  232. #define TRUEKEYWORD 262
  233. #define FALSEKEYWORD 263
  234. #define COLONCOLON 264
  235. #define STRING 265
  236. #define NAME 266
  237. #define DOT_ID 267
  238. #define DOT_ALL 268
  239. #define SPECIAL_VARIABLE 269
  240. #define ASSIGN 270
  241. #define ELSE 271
  242. #define THEN 272
  243. #define XOR 273
  244. #define OR 274
  245. #define _AND_ 275
  246. #define DOTDOT 276
  247. #define IN 277
  248. #define GEQ 278
  249. #define LEQ 279
  250. #define NOTEQUAL 280
  251. #define UNARY 281
  252. #define REM 282
  253. #define MOD 283
  254. #define NOT 284
  255. #define ABS 285
  256. #define STARSTAR 286
  257. #define VAR 287
  258. #define ARROW 288
  259. #define TICK_LENGTH 289
  260. #define TICK_LAST 290
  261. #define TICK_FIRST 291
  262. #define TICK_ADDRESS 292
  263. #define TICK_ACCESS 293
  264. #define TICK_MODULUS 294
  265. #define TICK_MIN 295
  266. #define TICK_MAX 296
  267. #define TICK_VAL 297
  268. #define TICK_TAG 298
  269. #define TICK_SIZE 299
  270. #define TICK_RANGE 300
  271. #define TICK_POS 301
  272. #define NEW 302
  273. #define OTHERS 303



  274. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  275. typedef union YYSTYPE
  276. {
  277. /* Line 387 of yacc.c  */
  278. #line 175 "ada-exp.y"

  279.     LONGEST lval;
  280.     struct {
  281.       LONGEST val;
  282.       struct type *type;
  283.     } typed_val;
  284.     struct {
  285.       DOUBLEST dval;
  286.       struct type *type;
  287.     } typed_val_float;
  288.     struct type *tval;
  289.     struct stoken sval;
  290.     const struct block *bval;
  291.     struct internalvar *ivar;


  292. /* Line 387 of yacc.c  */
  293. #line 359 "ada-exp.c"
  294. } YYSTYPE;
  295. # define YYSTYPE_IS_TRIVIAL 1
  296. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  297. # define YYSTYPE_IS_DECLARED 1
  298. #endif

  299. extern YYSTYPE yylval;

  300. #ifdef YYPARSE_PARAM
  301. #if defined __STDC__ || defined __cplusplus
  302. int yyparse (void *YYPARSE_PARAM);
  303. #else
  304. int yyparse ();
  305. #endif
  306. #else /* ! YYPARSE_PARAM */
  307. #if defined __STDC__ || defined __cplusplus
  308. int yyparse (void);
  309. #else
  310. int yyparse ();
  311. #endif
  312. #endif /* ! YYPARSE_PARAM */



  313. /* Copy the second part of user declarations.  */

  314. /* Line 390 of yacc.c  */
  315. #line 387 "ada-exp.c"

  316. #ifdef short
  317. # undef short
  318. #endif

  319. #ifdef YYTYPE_UINT8
  320. typedef YYTYPE_UINT8 yytype_uint8;
  321. #else
  322. typedef unsigned char yytype_uint8;
  323. #endif

  324. #ifdef YYTYPE_INT8
  325. typedef YYTYPE_INT8 yytype_int8;
  326. #elif (defined __STDC__ || defined __C99__FUNC__ \
  327.      || defined __cplusplus || defined _MSC_VER)
  328. typedef signed char yytype_int8;
  329. #else
  330. typedef short int yytype_int8;
  331. #endif

  332. #ifdef YYTYPE_UINT16
  333. typedef YYTYPE_UINT16 yytype_uint16;
  334. #else
  335. typedef unsigned short int yytype_uint16;
  336. #endif

  337. #ifdef YYTYPE_INT16
  338. typedef YYTYPE_INT16 yytype_int16;
  339. #else
  340. typedef short int yytype_int16;
  341. #endif

  342. #ifndef YYSIZE_T
  343. # ifdef __SIZE_TYPE__
  344. #  define YYSIZE_T __SIZE_TYPE__
  345. # elif defined size_t
  346. #  define YYSIZE_T size_t
  347. # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
  348.      || defined __cplusplus || defined _MSC_VER)
  349. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  350. #  define YYSIZE_T size_t
  351. # else
  352. #  define YYSIZE_T unsigned int
  353. # endif
  354. #endif

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

  356. #ifndef YY_
  357. # if defined YYENABLE_NLS && YYENABLE_NLS
  358. #  if ENABLE_NLS
  359. #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
  360. #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
  361. #  endif
  362. # endif
  363. # ifndef YY_
  364. #  define YY_(Msgid) Msgid
  365. # endif
  366. #endif

  367. /* Suppress unused-variable warnings by "using" E.  */
  368. #if ! defined lint || defined __GNUC__
  369. # define YYUSE(E) ((void) (E))
  370. #else
  371. # define YYUSE(E) /* empty */
  372. #endif

  373. /* Identity function, used to suppress warnings about constant conditions.  */
  374. #ifndef lint
  375. # define YYID(N) (N)
  376. #else
  377. #if (defined __STDC__ || defined __C99__FUNC__ \
  378.      || defined __cplusplus || defined _MSC_VER)
  379. static int
  380. YYID (int yyi)
  381. #else
  382. static int
  383. YYID (yyi)
  384.     int yyi;
  385. #endif
  386. {
  387.   return yyi;
  388. }
  389. #endif

  390. #if ! defined yyoverflow || YYERROR_VERBOSE

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

  392. # ifdef YYSTACK_USE_ALLOCA
  393. #  if YYSTACK_USE_ALLOCA
  394. #   ifdef __GNUC__
  395. #    define YYSTACK_ALLOC __builtin_alloca
  396. #   elif defined __BUILTIN_VA_ARG_INCR
  397. #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
  398. #   elif defined _AIX
  399. #    define YYSTACK_ALLOC __alloca
  400. #   elif defined _MSC_VER
  401. #    define alloca _alloca
  402. #   else
  403. #    define YYSTACK_ALLOC alloca
  404. #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  405.      || defined __cplusplus || defined _MSC_VER)
  406. #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  407.       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
  408. #     ifndef EXIT_SUCCESS
  409. #      define EXIT_SUCCESS 0
  410. #     endif
  411. #    endif
  412. #   endif
  413. #  endif
  414. # endif

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


  455. #if (! defined yyoverflow \
  456.      && (! defined __cplusplus \
  457.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

  458. /* A type that is properly aligned for any stack member.  */
  459. union yyalloc
  460. {
  461.   yytype_int16 yyss_alloc;
  462.   YYSTYPE yyvs_alloc;
  463. };

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

  466. /* The size of an array large to enough to hold all stacks, each with
  467.    N elements.  */
  468. # define YYSTACK_BYTES(N) \
  469.      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
  470.       + YYSTACK_GAP_MAXIMUM)

  471. # define YYCOPY_NEEDED 1

  472. /* Relocate STACK from its old location to the new one.  The
  473.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  474.    elements in the stack, and YYPTR gives the new location of the
  475.    stack.  Advance YYPTR to a properly aligned location for the next
  476.    stack.  */
  477. # define YYSTACK_RELOCATE(Stack_alloc, Stack)                                \
  478.     do                                                                        \
  479.       {                                                                        \
  480.         YYSIZE_T yynewbytes;                                                \
  481.         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                        \
  482.         Stack = &yyptr->Stack_alloc;                                        \
  483.         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
  484.         yyptr += yynewbytes / sizeof (*yyptr);                                \
  485.       }                                                                        \
  486.     while (YYID (0))

  487. #endif

  488. #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
  489. /* Copy COUNT objects from SRC to DST.  The source and destination do
  490.    not overlap.  */
  491. # ifndef YYCOPY
  492. #  if defined __GNUC__ && 1 < __GNUC__
  493. #   define YYCOPY(Dst, Src, Count) \
  494.       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
  495. #  else
  496. #   define YYCOPY(Dst, Src, Count)              \
  497.       do                                        \
  498.         {                                       \
  499.           YYSIZE_T yyi;                         \
  500.           for (yyi = 0; yyi < (Count); yyi++)   \
  501.             (Dst)[yyi] = (Src)[yyi];            \
  502.         }                                       \
  503.       while (YYID (0))
  504. #  endif
  505. # endif
  506. #endif /* !YYCOPY_NEEDED */

  507. /* YYFINAL -- State number of the termination state.  */
  508. #define YYFINAL  57
  509. /* YYLAST -- Last index in YYTABLE.  */
  510. #define YYLAST   770

  511. /* YYNTOKENS -- Number of terminals.  */
  512. #define YYNTOKENS  69
  513. /* YYNNTS -- Number of nonterminals.  */
  514. #define YYNNTS  31
  515. /* YYNRULES -- Number of rules.  */
  516. #define YYNRULES  122
  517. /* YYNRULES -- Number of states.  */
  518. #define YYNSTATES  233

  519. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  520. #define YYUNDEFTOK  2
  521. #define YYMAXUTOK   303

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

  524. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  525. static const yytype_uint8 yytranslate[] =
  526. {
  527.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  528.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  529.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  530.        2,     2,     2,     2,     2,     2,     2,     2,    32,    64,
  531.       58,    63,    34,    30,    65,    31,    57,    35,     2,     2,
  532.        2,     2,     2,     2,     2,     2,     2,     2,     2,    62,
  533.       22,    21,    23,     2,    29,     2,     2,     2,     2,     2,
  534.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  535.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  536.        2,    59,     2,    68,     2,     2,     2,     2,     2,     2,
  537.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  538.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  539.        2,     2,     2,    66,    42,    67,     2,     2,     2,     2,
  540.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  541.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  542.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  543.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  544.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  545.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  546.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  547.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  548.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  549.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  550.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  551.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  552.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  553.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  554.       15,    16,    17,    18,    19,    20,    24,    25,    26,    27,
  555.       28,    33,    36,    37,    38,    39,    40,    41,    43,    44,
  556.       45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
  557.       55,    56,    60,    61
  558. };

  559. #if YYDEBUG
  560. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  561.    YYRHS.  */
  562. static const yytype_uint16 yyprhs[] =
  563. {
  564.        0,     0,     3,     5,     7,    11,    15,    18,    21,    26,
  565.       31,    32,    40,    41,    48,    55,    59,    61,    63,    65,
  566.       67,    70,    73,    76,    79,    80,    82,    86,    90,    96,
  567.      101,   105,   109,   113,   117,   121,   125,   129,   133,   137,
  568.      139,   143,   147,   151,   157,   163,   167,   174,   181,   186,
  569.      190,   194,   198,   200,   202,   204,   206,   208,   210,   214,
  570.      218,   223,   228,   232,   236,   241,   246,   250,   254,   257,
  571.      260,   264,   268,   272,   275,   278,   286,   294,   300,   306,
  572.      309,   310,   314,   316,   318,   319,   321,   323,   325,   327,
  573.      329,   331,   333,   336,   338,   341,   344,   348,   351,   355,
  574.      359,   361,   364,   367,   370,   374,   376,   378,   382,   386,
  575.      388,   389,   394,   398,   399,   406,   407,   412,   416,   417,
  576.      424,   427,   430
  577. };

  578. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  579. static const yytype_int8 yyrhs[] =
  580. {
  581.       70,     0,    -1,    71,    -1,    78,    -1,    71,    62,    78,
  582.       -1,    72,    15,    78,    -1,    72,    13,    -1,    72,    12,
  583.       -1,    72,    58,    76,    63,    -1,    87,    58,    76,    63,
  584.       -1,    -1,    87,    64,    74,    73,    58,    78,    63,    -1,
  585.       -1,    72,    58,    75,    24,    75,    63,    -1,    87,    58,
  586.       75,    24,    75,    63,    -1,    58,    71,    63,    -1,    87,
  587.       -1,    14,    -1,    89,    -1,    72,    -1,    31,    75,    -1,
  588.       30,    75,    -1,    38,    75,    -1,    39,    75,    -1,    -1,
  589.       78,    -1,    11,    43,    78,    -1,    76,    65,    78,    -1,
  590.       76,    65,    11,    43,    78,    -1,    66,    87,    67,    72,
  591.       -1,    75,    40,    75,    -1,    75,    34,    75,    -1,    75,
  592.       35,    75,    -1,    75,    36,    75,    -1,    75,    37,    75,
  593.       -1,    75,    29,    75,    -1,    75,    30,    75,    -1,    75,
  594.       32,    75,    -1,    75,    31,    75,    -1,    75,    -1,    75,
  595.       21,    75,    -1,    75,    28,    75,    -1,    75,    27,    75,
  596.       -1,    75,    25,    75,    24,    75,    -1,    75,    25,    72,
  597.       55,    84,    -1,    75,    25,    87,    -1,    75,    38,    25,
  598.       75,    24,    75,    -1,    75,    38,    25,    72,    55,    84,
  599.       -1,    75,    38,    25,    87,    -1,    75,    26,    75,    -1,
  600.       75,    22,    75,    -1,    75,    23,    75,    -1,    77,    -1,
  601.       79,    -1,    80,    -1,    81,    -1,    82,    -1,    83,    -1,
  602.       77,    20,    77,    -1,    79,    20,    77,    -1,    77,    20,
  603.       17,    77,    -1,    80,    20,    17,    77,    -1,    77,    19,
  604.       77,    -1,    81,    19,    77,    -1,    77,    19,    16,    77,
  605.       -1,    82,    19,    16,    77,    -1,    77,    18,    77,    -1,
  606.       83,    18,    77,    -1,    72,    48,    -1,    72,    47,    -1,
  607.       72,    46,    84,    -1,    72,    45,    84,    -1,    72,    44,
  608.       84,    -1,    72,    54,    -1,    72,    53,    -1,    86,    50,
  609.       58,    78,    65,    78,    63,    -1,    86,    51,    58,    78,
  610.       65,    78,    63,    -1,    86,    56,    58,    78,    63,    -1,
  611.       85,    52,    58,    78,    63,    -1,    85,    49,    -1,    -1,
  612.       58,     3,    63,    -1,    87,    -1,    85,    -1,    -1,     3,
  613.       -1,     5,    -1,     6,    -1,     4,    -1,    10,    -1,     7,
  614.       -1,     8,    -1,    60,    11,    -1,    11,    -1,    88,    11,
  615.       -1,    11,    48,    -1,    88,    11,    48,    -1,    11,     9,
  616.       -1,    88,    11,     9,    -1,    58,    90,    63,    -1,    92,
  617.       -1,    91,    78,    -1,    91,    92,    -1,    78,    65,    -1,
  618.       91,    78,    65,    -1,    93,    -1,    94,    -1,    94,    65,
  619.       92,    -1,    61,    43,    78,    -1,    95,    -1,    -1,    11,
  620.       43,    96,    78,    -1,    75,    43,    78,    -1,    -1,    75,
  621.       24,    75,    43,    97,    78,    -1,    -1,    11,    42,    98,
  622.       95,    -1,    75,    42,    95,    -1,    -1,    75,    24,    75,
  623.       42,    99,    95,    -1,    34,    72,    -1,    32,    72,    -1,
  624.       72,    59,    78,    68,    -1
  625. };

  626. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  627. static const yytype_uint16 yyrline[] =
  628. {
  629.        0,   240,   240,   244,   245,   247,   252,   256,   261,   267,
  630.      286,   286,   298,   302,   304,   312,   323,   333,   337,   340,
  631.      343,   347,   351,   355,   359,   362,   364,   366,   368,   372,
  632.      385,   389,   393,   397,   401,   405,   409,   413,   417,   421,
  633.      424,   428,   432,   436,   438,   443,   451,   455,   461,   472,
  634.      476,   480,   484,   485,   486,   487,   488,   489,   493,   495,
  635.      500,   502,   507,   509,   514,   516,   520,   522,   534,   536,
  636.      543,   546,   549,   552,   554,   556,   558,   560,   562,   564,
  637.      568,   570,   575,   585,   587,   594,   598,   606,   614,   618,
  638.      624,   626,   630,   634,   636,   638,   646,   657,   659,   664,
  639.      673,   674,   680,   685,   691,   700,   701,   702,   706,   711,
  640.      726,   725,   728,   731,   730,   737,   736,   739,   742,   741,
  641.      749,   751,   753
  642. };
  643. #endif

  644. #if YYDEBUG || YYERROR_VERBOSE || 0
  645. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  646.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  647. static const char *const yytname[] =
  648. {
  649.   "$end", "error", "$undefined", "INT", "NULL_PTR", "CHARLIT", "FLOAT",
  650.   "TRUEKEYWORD", "FALSEKEYWORD", "COLONCOLON", "STRING", "NAME", "DOT_ID",
  651.   "DOT_ALL", "SPECIAL_VARIABLE", "ASSIGN", "ELSE", "THEN", "XOR", "OR",
  652.   "_AND_", "'='", "'<'", "'>'", "DOTDOT", "IN", "GEQ", "LEQ", "NOTEQUAL",
  653.   "'@'", "'+'", "'-'", "'&'", "UNARY", "'*'", "'/'", "REM", "MOD", "NOT",
  654.   "ABS", "STARSTAR", "VAR", "'|'", "ARROW", "TICK_LENGTH", "TICK_LAST",
  655.   "TICK_FIRST", "TICK_ADDRESS", "TICK_ACCESS", "TICK_MODULUS", "TICK_MIN",
  656.   "TICK_MAX", "TICK_VAL", "TICK_TAG", "TICK_SIZE", "TICK_RANGE",
  657.   "TICK_POS", "'.'", "'('", "'['", "NEW", "OTHERS", "';'", "')'", "'\\''",
  658.   "','", "'{'", "'}'", "']'", "$accept", "start", "exp1", "primary", "$@1",
  659.   "save_qualifier", "simple_exp", "arglist", "relation", "exp", "and_exp",
  660.   "and_then_exp", "or_exp", "or_else_exp", "xor_exp", "tick_arglist",
  661.   "type_prefix", "opt_type_prefix", "var_or_type", "block", "aggregate",
  662.   "aggregate_component_list", "positional_list", "component_groups",
  663.   "others", "component_group", "component_associations", "$@2", "$@3",
  664.   "$@4", "$@5", YY_NULL
  665. };
  666. #endif

  667. # ifdef YYPRINT
  668. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  669.    token YYLEX-NUM.  */
  670. static const yytype_uint16 yytoknum[] =
  671. {
  672.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  673.      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
  674.      275,    61,    60,    62,   276,   277,   278,   279,   280,    64,
  675.       43,    45,    38,   281,    42,    47,   282,   283,   284,   285,
  676.      286,   287,   124,   288,   289,   290,   291,   292,   293,   294,
  677.      295,   296,   297,   298,   299,   300,   301,    46,    40,    91,
  678.      302,   303,    59,    41,    39,    44,   123,   125,    93
  679. };
  680. # endif

  681. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  682. static const yytype_uint8 yyr1[] =
  683. {
  684.        0,    69,    70,    71,    71,    71,    72,    72,    72,    72,
  685.       73,    72,    74,    72,    72,    72,    72,    72,    72,    75,
  686.       75,    75,    75,    75,    76,    76,    76,    76,    76,    72,
  687.       75,    75,    75,    75,    75,    75,    75,    75,    75,    77,
  688.       77,    77,    77,    77,    77,    77,    77,    77,    77,    77,
  689.       77,    77,    78,    78,    78,    78,    78,    78,    79,    79,
  690.       80,    80,    81,    81,    82,    82,    83,    83,    72,    72,
  691.       72,    72,    72,    72,    72,    72,    72,    72,    72,    72,
  692.       84,    84,    85,    86,    86,    72,    72,    72,    72,    72,
  693.       72,    72,    72,    87,    87,    87,    87,    88,    88,    89,
  694.       90,    90,    90,    91,    91,    92,    92,    92,    93,    94,
  695.       96,    95,    95,    97,    95,    98,    95,    95,    99,    95,
  696.       72,    72,    72
  697. };

  698. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  699. static const yytype_uint8 yyr2[] =
  700. {
  701.        0,     2,     1,     1,     3,     3,     2,     2,     4,     4,
  702.        0,     7,     0,     6,     6,     3,     1,     1,     1,     1,
  703.        2,     2,     2,     2,     0,     1,     3,     3,     5,     4,
  704.        3,     3,     3,     3,     3,     3,     3,     3,     3,     1,
  705.        3,     3,     3,     5,     5,     3,     6,     6,     4,     3,
  706.        3,     3,     1,     1,     1,     1,     1,     1,     3,     3,
  707.        4,     4,     3,     3,     4,     4,     3,     3,     2,     2,
  708.        3,     3,     3,     2,     2,     7,     7,     5,     5,     2,
  709.        0,     3,     1,     1,     0,     1,     1,     1,     1,     1,
  710.        1,     1,     2,     1,     2,     2,     3,     2,     3,     3,
  711.        1,     2,     2,     2,     3,     1,     1,     3,     3,     1,
  712.        0,     4,     3,     0,     6,     0,     4,     3,     0,     6,
  713.        2,     2,     4
  714. };

  715. /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
  716.    Performed when YYTABLE doesn't specify something else to do.  Zero
  717.    means the default is an error.  */
  718. static const yytype_uint8 yydefact[] =
  719. {
  720.       84,    85,    88,    86,    87,    90,    91,    89,    93,    17,
  721.       84,    84,    84,    84,    84,    84,    84,     0,     0,     0,
  722.        2,    19,    39,    52,     3,    53,    54,    55,    56,    57,
  723.       83,     0,    16,     0,    18,    97,    95,    19,    21,    20,
  724.      121,   120,    22,    23,    93,     0,     0,    39,     3,     0,
  725.       84,   100,   105,   106,   109,    92,     0,     1,    84,     7,
  726.        6,    84,    80,    80,    80,    69,    68,    74,    73,    84,
  727.       84,    84,    84,    84,    84,    84,    84,    84,    84,    84,
  728.       84,    84,    84,    84,    84,    84,     0,    84,    84,    84,
  729.       84,    84,     0,    84,     0,    84,    79,     0,     0,     0,
  730.        0,    84,    12,    94,   115,   110,    84,    15,    84,    84,
  731.       84,   103,    99,   101,   102,    84,    84,     4,     5,     0,
  732.       72,    71,    70,    93,    39,     0,    25,     0,    40,    50,
  733.       51,    19,     0,    16,    49,    42,    41,    35,    36,    38,
  734.       37,    31,    32,    33,    34,    84,    30,    66,    84,    62,
  735.       84,    58,    59,    84,    63,    84,    67,    84,    84,    84,
  736.       84,    39,     0,    10,    98,    96,    84,    84,   108,     0,
  737.        0,   117,   112,   104,   107,    29,     0,    84,    84,     8,
  738.       84,   122,    80,    84,    19,     0,    16,    64,    60,    61,
  739.       65,     0,     0,     0,     0,    84,     9,     0,   116,   111,
  740.      118,   113,    81,    26,     0,    93,    27,    44,    43,    80,
  741.       84,    78,    84,    84,    77,     0,    84,    84,    84,    13,
  742.       84,    47,    46,     0,     0,    14,     0,   119,   114,    28,
  743.       75,    76,    11
  744. };

  745. /* YYDEFGOTO[NTERM-NUM].  */
  746. static const yytype_int16 yydefgoto[] =
  747. {
  748.       -1,    19,    20,    37,   197,   163,    22,   125,    23,   126,
  749.       25,    26,    27,    28,    29,   120,    30,    31,    32,    33,
  750.       34,    49,    50,    51,    52,    53,    54,   167,   218,   166,
  751.      217
  752. };

  753. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  754.    STATE-NUM.  */
  755. #define YYPACT_NINF -104
  756. static const yytype_int16 yypact[] =
  757. {
  758.      424,  -104,  -104,  -104,  -104,  -104,  -104,  -104,    16,  -104,
  759.      424,   424,   118,   118,   424,   424,   286,    -7,     6,    31,
  760.      -26,   501,   674,    20,  -104,    28,    32,    22,    34,    42,
  761.      -44,   -21,    84,    57,  -104,  -104,  -104,   558,    63,    63,
  762.       -3,    -3,    63,    63,    23,    26,   -36,   611,     9,    27,
  763.      286,  -104,  -104,    29,  -104,  -104,    25,  -104,   424,  -104,
  764.     -104,   424,    35,    35,    35,  -104,  -104,  -104,  -104,   274,
  765.      424,   424,   424,   424,   424,   424,   424,   424,   424,   424,
  766.      424,   424,   424,   424,   424,   424,    71,   424,   424,   350,
  767.      387,   424,    91,   424,    85,   424,  -104,    53,    58,    59,
  768.       60,   274,  -104,    19,  -104,  -104,   424,  -104,   424,   461,
  769.      424,  -104,  -104,    50,  -104,   286,   118,  -104,  -104,   124,
  770.     -104,  -104,  -104,     3,   634,   -52,  -104,    70,   719,   719,
  771.      719,   521,   166,   173,   719,   719,   719,   730,    63,    63,
  772.       63,    99,    99,    99,    99,   424,    99,  -104,   424,  -104,
  773.      424,  -104,  -104,   424,  -104,   424,  -104,   424,   424,   424,
  774.      424,   654,   -41,  -104,  -104,  -104,   461,   424,  -104,   704,
  775.      689,  -104,  -104,  -104,  -104,    -3,    68,   424,   424,  -104,
  776.      498,  -104,    35,   424,   538,   215,   208,  -104,  -104,  -104,
  777.     -104,    78,    79,    80,    83,   424,  -104,    93,  -104,  -104,
  778.     -104,  -104,  -104,  -104,   339,    14,  -104,  -104,   719,    35,
  779.      424,  -104,   424,   424,  -104,   589,   424,   461,   424,  -104,
  780.      424,  -104,   719,    90,    92,  -104,    98,  -104,  -104,  -104,
  781.     -104,  -104,  -104
  782. };

  783. /* YYPGOTO[NTERM-NUM].  */
  784. static const yytype_int8 yypgoto[] =
  785. {
  786.     -104,  -104,   127,    21,  -104,  -104,     4,    55,   -46,     0,
  787.     -104,  -104,  -104,  -104,  -104,   -62,  -104,  -104,   -15,  -104,
  788.     -104,  -104,  -104,   -43,  -104,  -104,  -103,  -104,  -104,  -104,
  789.     -104
  790. };

  791. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  792.    positive, shift that token.  If negative, reduce the rule which
  793.    number is the opposite.  If YYTABLE_NINF, syntax error.  */
  794. #define YYTABLE_NINF -83
  795. static const yytype_int16 yytable[] =
  796. {
  797.       24,   121,   122,    56,    55,    96,   171,   114,    97,    59,
  798.       60,   179,    35,   180,    38,    39,    48,     8,    42,    43,
  799.       47,    21,   196,    35,   180,    35,    58,   107,   164,    98,
  800.       99,    57,    35,    40,    41,   100,    58,    21,    88,    89,
  801.       90,    93,   147,   149,   151,   152,   177,   154,    91,   156,
  802.      113,    36,    92,    94,    47,    69,    70,   220,   117,   133,
  803.       95,   118,    36,   198,    36,   104,   105,   165,   103,   106,
  804.      127,    36,   174,   124,   111,   128,   129,   130,   132,   134,
  805.      135,   136,   137,   138,   139,   140,   141,   142,   143,   144,
  806.      112,   146,   116,   119,   115,   131,   145,    82,    83,    84,
  807.       85,   155,   187,    87,   188,   161,   168,   189,   153,   190,
  808.      172,   157,   169,   170,   227,   173,   158,   159,   160,   170,
  809.      207,     1,     2,     3,     4,     5,     6,   176,     7,     8,
  810.      186,   202,     9,   -82,   -82,   -82,   -82,   175,   181,    87,
  811.      -82,   211,   101,    46,   212,   213,   214,   221,   102,   185,
  812.       12,   216,    13,   230,     0,   231,   162,   191,   192,   193,
  813.      194,   232,     0,     0,     0,     0,   184,   199,     0,     0,
  814.      170,     0,     0,   -45,     0,     0,    16,   203,    17,     0,
  815.      206,     0,   204,     0,    18,     0,     0,   208,     0,     0,
  816.      183,   -45,   -45,   -45,     0,    78,    79,    80,    81,   215,
  817.       82,    83,    84,    85,     0,     0,    87,     0,   -48,     0,
  818.        0,     0,   223,   224,   222,     0,   226,     0,   228,     0,
  819.      229,   170,   -82,   -82,   -82,   -82,   -48,   -48,   -48,   -82,
  820.        0,   101,     0,     0,     0,   -45,   -45,   102,   -45,   210,
  821.        0,   -45,     0,     0,    78,    79,    80,    81,     0,    82,
  822.       83,    84,    85,     0,     0,    87,     0,   -82,   -82,   -82,
  823.      -82,     0,     0,     0,   -82,     0,   101,     0,     0,     0,
  824.      -48,   -48,   102,   -48,     0,     0,   -48,     1,     2,     3,
  825.        4,     5,     6,     0,     7,   123,     0,     0,     9,     1,
  826.        2,     3,     4,     5,     6,     0,     7,    44,     0,     0,
  827.        9,     0,     0,     0,    10,    11,    12,     0,    13,     0,
  828.        0,     0,    14,    15,     0,     0,    10,    11,    12,     0,
  829.       13,     0,     0,     0,    14,    15,     0,     0,     0,     0,
  830.        0,     0,    16,     0,    17,     0,     0,   -24,     0,   -24,
  831.       18,     0,     0,     0,    16,     0,    17,    45,     0,     0,
  832.        0,     0,    18,     1,     2,     3,     4,     5,     6,     0,
  833.        7,     8,     0,     0,     9,     0,   148,     0,    78,    79,
  834.       80,    81,     0,    82,    83,    84,    85,     0,     0,    87,
  835.       10,    11,    12,     0,    13,     0,     0,     0,    14,    15,
  836.        1,     2,     3,     4,     5,     6,     0,     7,     8,     0,
  837.        0,     9,   219,     0,   150,     0,     0,     0,    16,     0,
  838.       17,     0,     0,     0,     0,     0,    18,    10,    11,    12,
  839.        0,    13,     0,     0,     0,    14,    15,     1,     2,     3,
  840.        4,     5,     6,     0,     7,     8,     0,     0,     9,     0,
  841.        0,     0,     0,     0,     0,    16,     0,    17,     0,     0,
  842.        0,     0,     0,    18,    10,    11,    12,     0,    13,     0,
  843.        0,     0,    14,    15,     1,     2,     3,     4,     5,     6,
  844.        0,     7,    44,     0,     0,     9,     0,     0,     0,     0,
  845.        0,     0,    16,     0,    17,     0,     0,     0,     0,     0,
  846.       18,    10,    11,    12,     0,    13,     0,     0,     0,    14,
  847.       15,     1,     2,     3,     4,     5,     6,     0,     7,   205,
  848.        0,     0,     9,    59,    60,     0,    61,     0,     0,    16,
  849.        0,    17,     0,     0,     0,     0,     0,    18,    10,    11,
  850.       12,     0,    13,    59,    60,     0,    14,    15,     0,     0,
  851.        0,     0,     0,     0,     0,    62,    63,    64,    65,    66,
  852.       59,    60,     0,     0,    67,    68,    16,     0,    17,    69,
  853.       70,     0,     0,     0,    18,    62,    63,    64,    65,    66,
  854.       59,    60,     0,     0,    67,    68,   182,     0,     0,    69,
  855.       70,     0,    62,    63,    64,    65,    66,     0,     0,     0,
  856.        0,    67,    68,   209,     0,     0,    69,    70,     0,     0,
  857.        0,     0,    62,    63,    64,    65,    66,     0,     0,     0,
  858.        0,    67,    68,     0,     0,     0,    69,    70,    78,    79,
  859.       80,    81,     0,    82,    83,    84,    85,     0,     0,    87,
  860.        0,     0,    71,    72,    73,   108,    74,    75,    76,    77,
  861.       78,    79,    80,    81,     0,    82,    83,    84,    85,    86,
  862.        0,    87,   225,   109,   110,    71,    72,    73,   178,    74,
  863.       75,    76,    77,    78,    79,    80,    81,     0,    82,    83,
  864.       84,    85,    86,     0,    87,    71,    72,    73,   195,    74,
  865.       75,    76,    77,    78,    79,    80,    81,     0,    82,    83,
  866.       84,    85,    86,     0,    87,    71,    72,    73,     0,    74,
  867.       75,    76,    77,    78,    79,    80,    81,     0,    82,    83,
  868.       84,    85,    86,   108,    87,     0,     0,     0,    78,    79,
  869.       80,    81,     0,    82,    83,    84,    85,     0,     0,    87,
  870.        0,   109,   110,    78,    79,    80,    81,     0,    82,    83,
  871.       84,    85,     0,     0,    87,     0,   200,   201,    78,    79,
  872.       80,    81,     0,    82,    83,    84,    85,     0,     0,    87,
  873.       79,    80,    81,     0,    82,    83,    84,    85,     0,     0,
  874.       87
  875. };

  876. #define yypact_value_is_default(Yystate) \
  877.   (!!((Yystate) == (-104)))

  878. #define yytable_value_is_error(Yytable_value) \
  879.   YYID (0)

  880. static const yytype_int16 yycheck[] =
  881. {
  882.        0,    63,    64,    18,    11,    49,   109,    50,    52,    12,
  883.       13,    63,     9,    65,    10,    11,    16,    11,    14,    15,
  884.       16,     0,    63,     9,    65,     9,    62,    63,     9,    50,
  885.       51,     0,     9,    12,    13,    56,    62,    16,    18,    19,
  886.       20,    19,    88,    89,    90,    91,    43,    93,    20,    95,
  887.       50,    48,    20,    19,    50,    58,    59,    43,    58,    74,
  888.       18,    61,    48,   166,    48,    42,    43,    48,    11,    43,
  889.       70,    48,   115,    69,    65,    71,    72,    73,    74,    75,
  890.       76,    77,    78,    79,    80,    81,    82,    83,    84,    85,
  891.       63,    87,    67,    58,    65,    74,    25,    34,    35,    36,
  892.       37,    16,   148,    40,   150,   101,   106,   153,    17,   155,
  893.      110,    58,   108,   109,   217,    65,    58,    58,    58,   115,
  894.      182,     3,     4,     5,     6,     7,     8,     3,    10,    11,
  895.      145,    63,    14,    49,    50,    51,    52,   116,    68,    40,
  896.       56,    63,    58,    16,    65,    65,    63,   209,    64,   145,
  897.       32,    58,    34,    63,    -1,    63,   101,   157,   158,   159,
  898.      160,    63,    -1,    -1,    -1,    -1,   145,   167,    -1,    -1,
  899.      166,    -1,    -1,     0,    -1,    -1,    58,   177,    60,    -1,
  900.      180,    -1,   178,    -1,    66,    -1,    -1,   183,    -1,    -1,
  901.       24,    18,    19,    20,    -1,    29,    30,    31,    32,   195,
  902.       34,    35,    36,    37,    -1,    -1,    40,    -1,     0,    -1,
  903.       -1,    -1,   212,   213,   210,    -1,   216,    -1,   218,    -1,
  904.      220,   217,    49,    50,    51,    52,    18,    19,    20,    56,
  905.       -1,    58,    -1,    -1,    -1,    62,    63,    64,    65,    24,
  906.       -1,    68,    -1,    -1,    29,    30,    31,    32,    -1,    34,
  907.       35,    36,    37,    -1,    -1,    40,    -1,    49,    50,    51,
  908.       52,    -1,    -1,    -1,    56,    -1,    58,    -1,    -1,    -1,
  909.       62,    63,    64,    65,    -1,    -1,    68,     3,     4,     5,
  910.        6,     7,     8,    -1,    10,    11,    -1,    -1,    14,     3,
  911.        4,     5,     6,     7,     8,    -1,    10,    11,    -1,    -1,
  912.       14,    -1,    -1,    -1,    30,    31,    32,    -1,    34,    -1,
  913.       -1,    -1,    38,    39,    -1,    -1,    30,    31,    32,    -1,
  914.       34,    -1,    -1,    -1,    38,    39,    -1,    -1,    -1,    -1,
  915.       -1,    -1,    58,    -1,    60,    -1,    -1,    63,    -1,    65,
  916.       66,    -1,    -1,    -1,    58,    -1,    60,    61,    -1,    -1,
  917.       -1,    -1,    66,     3,     4,     5,     6,     7,     8,    -1,
  918.       10,    11,    -1,    -1,    14,    -1,    16,    -1,    29,    30,
  919.       31,    32,    -1,    34,    35,    36,    37,    -1,    -1,    40,
  920.       30,    31,    32,    -1,    34,    -1,    -1,    -1,    38,    39,
  921.        3,     4,     5,     6,     7,     8,    -1,    10,    11,    -1,
  922.       -1,    14,    63,    -1,    17,    -1,    -1,    -1,    58,    -1,
  923.       60,    -1,    -1,    -1,    -1,    -1,    66,    30,    31,    32,
  924.       -1,    34,    -1,    -1,    -1,    38,    39,     3,     4,     5,
  925.        6,     7,     8,    -1,    10,    11,    -1,    -1,    14,    -1,
  926.       -1,    -1,    -1,    -1,    -1,    58,    -1,    60,    -1,    -1,
  927.       -1,    -1,    -1,    66,    30,    31,    32,    -1,    34,    -1,
  928.       -1,    -1,    38,    39,     3,     4,     5,     6,     7,     8,
  929.       -1,    10,    11,    -1,    -1,    14,    -1,    -1,    -1,    -1,
  930.       -1,    -1,    58,    -1,    60,    -1,    -1,    -1,    -1,    -1,
  931.       66,    30,    31,    32,    -1,    34,    -1,    -1,    -1,    38,
  932.       39,     3,     4,     5,     6,     7,     8,    -1,    10,    11,
  933.       -1,    -1,    14,    12,    13,    -1,    15,    -1,    -1,    58,
  934.       -1,    60,    -1,    -1,    -1,    -1,    -1,    66,    30,    31,
  935.       32,    -1,    34,    12,    13,    -1,    38,    39,    -1,    -1,
  936.       -1,    -1,    -1,    -1,    -1,    44,    45,    46,    47,    48,
  937.       12,    13,    -1,    -1,    53,    54,    58,    -1,    60,    58,
  938.       59,    -1,    -1,    -1,    66,    44,    45,    46,    47,    48,
  939.       12,    13,    -1,    -1,    53,    54,    55,    -1,    -1,    58,
  940.       59,    -1,    44,    45,    46,    47,    48,    -1,    -1,    -1,
  941.       -1,    53,    54,    55,    -1,    -1,    58,    59,    -1,    -1,
  942.       -1,    -1,    44,    45,    46,    47,    48,    -1,    -1,    -1,
  943.       -1,    53,    54,    -1,    -1,    -1,    58,    59,    29,    30,
  944.       31,    32,    -1,    34,    35,    36,    37,    -1,    -1,    40,
  945.       -1,    -1,    21,    22,    23,    24,    25,    26,    27,    28,
  946.       29,    30,    31,    32,    -1,    34,    35,    36,    37,    38,
  947.       -1,    40,    63,    42,    43,    21,    22,    23,    24,    25,
  948.       26,    27,    28,    29,    30,    31,    32,    -1,    34,    35,
  949.       36,    37,    38,    -1,    40,    21,    22,    23,    24,    25,
  950.       26,    27,    28,    29,    30,    31,    32,    -1,    34,    35,
  951.       36,    37,    38,    -1,    40,    21,    22,    23,    -1,    25,
  952.       26,    27,    28,    29,    30,    31,    32,    -1,    34,    35,
  953.       36,    37,    38,    24,    40,    -1,    -1,    -1,    29,    30,
  954.       31,    32,    -1,    34,    35,    36,    37,    -1,    -1,    40,
  955.       -1,    42,    43,    29,    30,    31,    32,    -1,    34,    35,
  956.       36,    37,    -1,    -1,    40,    -1,    42,    43,    29,    30,
  957.       31,    32,    -1,    34,    35,    36,    37,    -1,    -1,    40,
  958.       30,    31,    32,    -1,    34,    35,    36,    37,    -1,    -1,
  959.       40
  960. };

  961. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  962.    symbol of state STATE-NUM.  */
  963. static const yytype_uint8 yystos[] =
  964. {
  965.        0,     3,     4,     5,     6,     7,     8,    10,    11,    14,
  966.       30,    31,    32,    34,    38,    39,    58,    60,    66,    70,
  967.       71,    72,    75,    77,    78,    79,    80,    81,    82,    83,
  968.       85,    86,    87,    88,    89,     9,    48,    72,    75,    75,
  969.       72,    72,    75,    75,    11,    61,    71,    75,    78,    90,
  970.       91,    92,    93,    94,    95,    11,    87,     0,    62,    12,
  971.       13,    15,    44,    45,    46,    47,    48,    53,    54,    58,
  972.       59,    21,    22,    23,    25,    26,    27,    28,    29,    30,
  973.       31,    32,    34,    35,    36,    37,    38,    40,    18,    19,
  974.       20,    20,    20,    19,    19,    18,    49,    52,    50,    51,
  975.       56,    58,    64,    11,    42,    43,    43,    63,    24,    42,
  976.       43,    65,    63,    78,    92,    65,    67,    78,    78,    58,
  977.       84,    84,    84,    11,    75,    76,    78,    78,    75,    75,
  978.       75,    72,    75,    87,    75,    75,    75,    75,    75,    75,
  979.       75,    75,    75,    75,    75,    25,    75,    77,    16,    77,
  980.       17,    77,    77,    17,    77,    16,    77,    58,    58,    58,
  981.       58,    75,    76,    74,     9,    48,    98,    96,    78,    75,
  982.       75,    95,    78,    65,    92,    72,     3,    43,    24,    63,
  983.       65,    68,    55,    24,    72,    75,    87,    77,    77,    77,
  984.       77,    78,    78,    78,    78,    24,    63,    73,    95,    78,
  985.       42,    43,    63,    78,    75,    11,    78,    84,    75,    55,
  986.       24,    63,    65,    65,    63,    75,    58,    99,    97,    63,
  987.       43,    84,    75,    78,    78,    63,    78,    95,    78,    78,
  988.       63,    63,    63
  989. };

  990. #define yyerrok                (yyerrstatus = 0)
  991. #define yyclearin        (yychar = YYEMPTY)
  992. #define YYEMPTY                (-2)
  993. #define YYEOF                0

  994. #define YYACCEPT        goto yyacceptlab
  995. #define YYABORT                goto yyabortlab
  996. #define YYERROR                goto yyerrorlab


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

  1003. #define YYFAIL                goto yyerrlab
  1004. #if defined YYFAIL
  1005.   /* This is here to suppress warnings from the GCC cpp's
  1006.      -Wunused-macros.  Normally we don't worry about that warning, but
  1007.      some users do, and we want to make it easy for users to remove
  1008.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  1009. #endif

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

  1011. #define YYBACKUP(Token, Value)                                  \
  1012. do                                                              \
  1013.   if (yychar == YYEMPTY)                                        \
  1014.     {                                                           \
  1015.       yychar = (Token);                                         \
  1016.       yylval = (Value);                                         \
  1017.       YYPOPSTACK (yylen);                                       \
  1018.       yystate = *yyssp;                                         \
  1019.       goto yybackup;                                            \
  1020.     }                                                           \
  1021.   else                                                          \
  1022.     {                                                           \
  1023.       yyerror (YY_("syntax error: cannot back up")); \
  1024.       YYERROR;                                                        \
  1025.     }                                                                \
  1026. while (YYID (0))

  1027. /* Error token number */
  1028. #define YYTERROR        1
  1029. #define YYERRCODE        256


  1030. /* This macro is provided for backward compatibility. */
  1031. #ifndef YY_LOCATION_PRINT
  1032. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  1033. #endif


  1034. /* YYLEX -- calling `yylex' with the right arguments.  */
  1035. #ifdef YYLEX_PARAM
  1036. # define YYLEX yylex (YYLEX_PARAM)
  1037. #else
  1038. # define YYLEX yylex ()
  1039. #endif

  1040. /* Enable debugging if requested.  */
  1041. #if YYDEBUG

  1042. # ifndef YYFPRINTF
  1043. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  1044. #  define YYFPRINTF fprintf
  1045. # endif

  1046. # define YYDPRINTF(Args)                        \
  1047. do {                                                \
  1048.   if (yydebug)                                        \
  1049.     YYFPRINTF Args;                                \
  1050. } while (YYID (0))

  1051. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  1052. do {                                                                          \
  1053.   if (yydebug)                                                                  \
  1054.     {                                                                          \
  1055.       YYFPRINTF (stderr, "%s ", Title);                                          \
  1056.       yy_symbol_print (stderr,                                                  \
  1057.                   Type, Value); \
  1058.       YYFPRINTF (stderr, "\n");                                                  \
  1059.     }                                                                          \
  1060. } while (YYID (0))


  1061. /*--------------------------------.
  1062. | Print this symbol on YYOUTPUT.  |
  1063. `--------------------------------*/

  1064. /*ARGSUSED*/
  1065. #if (defined __STDC__ || defined __C99__FUNC__ \
  1066.      || defined __cplusplus || defined _MSC_VER)
  1067. static void
  1068. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  1069. #else
  1070. static void
  1071. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  1072.     FILE *yyoutput;
  1073.     int yytype;
  1074.     YYSTYPE const * const yyvaluep;
  1075. #endif
  1076. {
  1077.   FILE *yyo = yyoutput;
  1078.   YYUSE (yyo);
  1079.   if (!yyvaluep)
  1080.     return;
  1081. # ifdef YYPRINT
  1082.   if (yytype < YYNTOKENS)
  1083.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  1084. # else
  1085.   YYUSE (yyoutput);
  1086. # endif
  1087.   switch (yytype)
  1088.     {
  1089.       default:
  1090.         break;
  1091.     }
  1092. }


  1093. /*--------------------------------.
  1094. | Print this symbol on YYOUTPUT.  |
  1095. `--------------------------------*/

  1096. #if (defined __STDC__ || defined __C99__FUNC__ \
  1097.      || defined __cplusplus || defined _MSC_VER)
  1098. static void
  1099. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  1100. #else
  1101. static void
  1102. yy_symbol_print (yyoutput, yytype, yyvaluep)
  1103.     FILE *yyoutput;
  1104.     int yytype;
  1105.     YYSTYPE const * const yyvaluep;
  1106. #endif
  1107. {
  1108.   if (yytype < YYNTOKENS)
  1109.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  1110.   else
  1111.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  1112.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  1113.   YYFPRINTF (yyoutput, ")");
  1114. }

  1115. /*------------------------------------------------------------------.
  1116. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  1117. | TOP (included).                                                   |
  1118. `------------------------------------------------------------------*/

  1119. #if (defined __STDC__ || defined __C99__FUNC__ \
  1120.      || defined __cplusplus || defined _MSC_VER)
  1121. static void
  1122. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  1123. #else
  1124. static void
  1125. yy_stack_print (yybottom, yytop)
  1126.     yytype_int16 *yybottom;
  1127.     yytype_int16 *yytop;
  1128. #endif
  1129. {
  1130.   YYFPRINTF (stderr, "Stack now");
  1131.   for (; yybottom <= yytop; yybottom++)
  1132.     {
  1133.       int yybot = *yybottom;
  1134.       YYFPRINTF (stderr, " %d", yybot);
  1135.     }
  1136.   YYFPRINTF (stderr, "\n");
  1137. }

  1138. # define YY_STACK_PRINT(Bottom, Top)                                \
  1139. do {                                                                \
  1140.   if (yydebug)                                                        \
  1141.     yy_stack_print ((Bottom), (Top));                                \
  1142. } while (YYID (0))


  1143. /*------------------------------------------------.
  1144. | Report that the YYRULE is going to be reduced.  |
  1145. `------------------------------------------------*/

  1146. #if (defined __STDC__ || defined __C99__FUNC__ \
  1147.      || defined __cplusplus || defined _MSC_VER)
  1148. static void
  1149. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  1150. #else
  1151. static void
  1152. yy_reduce_print (yyvsp, yyrule)
  1153.     YYSTYPE *yyvsp;
  1154.     int yyrule;
  1155. #endif
  1156. {
  1157.   int yynrhs = yyr2[yyrule];
  1158.   int yyi;
  1159.   unsigned long int yylno = yyrline[yyrule];
  1160.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
  1161.              yyrule - 1, yylno);
  1162.   /* The symbols being reduced.  */
  1163.   for (yyi = 0; yyi < yynrhs; yyi++)
  1164.     {
  1165.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  1166.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  1167.                        &(yyvsp[(yyi + 1) - (yynrhs)])
  1168.                                               );
  1169.       YYFPRINTF (stderr, "\n");
  1170.     }
  1171. }

  1172. # define YY_REDUCE_PRINT(Rule)                \
  1173. do {                                        \
  1174.   if (yydebug)                                \
  1175.     yy_reduce_print (yyvsp, Rule); \
  1176. } while (YYID (0))

  1177. /* Nonzero means print parse trace.  It is left uninitialized so that
  1178.    multiple parsers can coexist.  */
  1179. int yydebug;
  1180. #else /* !YYDEBUG */
  1181. # define YYDPRINTF(Args)
  1182. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  1183. # define YY_STACK_PRINT(Bottom, Top)
  1184. # define YY_REDUCE_PRINT(Rule)
  1185. #endif /* !YYDEBUG */


  1186. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  1187. #ifndef        YYINITDEPTH
  1188. # define YYINITDEPTH 200
  1189. #endif

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

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

  1195. #ifndef YYMAXDEPTH
  1196. # define YYMAXDEPTH 10000
  1197. #endif


  1198. #if YYERROR_VERBOSE

  1199. # ifndef yystrlen
  1200. #  if defined __GLIBC__ && defined _STRING_H
  1201. #   define yystrlen strlen
  1202. #  else
  1203. /* Return the length of YYSTR.  */
  1204. #if (defined __STDC__ || defined __C99__FUNC__ \
  1205.      || defined __cplusplus || defined _MSC_VER)
  1206. static YYSIZE_T
  1207. yystrlen (const char *yystr)
  1208. #else
  1209. static YYSIZE_T
  1210. yystrlen (yystr)
  1211.     const char *yystr;
  1212. #endif
  1213. {
  1214.   YYSIZE_T yylen;
  1215.   for (yylen = 0; yystr[yylen]; yylen++)
  1216.     continue;
  1217.   return yylen;
  1218. }
  1219. #  endif
  1220. # endif

  1221. # ifndef yystpcpy
  1222. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1223. #   define yystpcpy stpcpy
  1224. #  else
  1225. /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
  1226.    YYDEST.  */
  1227. #if (defined __STDC__ || defined __C99__FUNC__ \
  1228.      || defined __cplusplus || defined _MSC_VER)
  1229. static char *
  1230. yystpcpy (char *yydest, const char *yysrc)
  1231. #else
  1232. static char *
  1233. yystpcpy (yydest, yysrc)
  1234.     char *yydest;
  1235.     const char *yysrc;
  1236. #endif
  1237. {
  1238.   char *yyd = yydest;
  1239.   const char *yys = yysrc;

  1240.   while ((*yyd++ = *yys++) != '\0')
  1241.     continue;

  1242.   return yyd - 1;
  1243. }
  1244. #  endif
  1245. # endif

  1246. # ifndef yytnamerr
  1247. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1248.    quotes and backslashes, so that it's suitable for yyerror.  The
  1249.    heuristic is that double-quoting is unnecessary unless the string
  1250.    contains an apostrophe, a comma, or backslash (other than
  1251.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1252.    null, do not copy; instead, return the length of what the result
  1253.    would have been.  */
  1254. static YYSIZE_T
  1255. yytnamerr (char *yyres, const char *yystr)
  1256. {
  1257.   if (*yystr == '"')
  1258.     {
  1259.       YYSIZE_T yyn = 0;
  1260.       char const *yyp = yystr;

  1261.       for (;;)
  1262.         switch (*++yyp)
  1263.           {
  1264.           case '\'':
  1265.           case ',':
  1266.             goto do_not_strip_quotes;

  1267.           case '\\':
  1268.             if (*++yyp != '\\')
  1269.               goto do_not_strip_quotes;
  1270.             /* Fall through.  */
  1271.           default:
  1272.             if (yyres)
  1273.               yyres[yyn] = *yyp;
  1274.             yyn++;
  1275.             break;

  1276.           case '"':
  1277.             if (yyres)
  1278.               yyres[yyn] = '\0';
  1279.             return yyn;
  1280.           }
  1281.     do_not_strip_quotes: ;
  1282.     }

  1283.   if (! yyres)
  1284.     return yystrlen (yystr);

  1285.   return yystpcpy (yyres, yystr) - yyres;
  1286. }
  1287. # endif

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

  1291.    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
  1292.    not large enough to hold the message.  In that case, also set
  1293.    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
  1294.    required number of bytes is too large to store.  */
  1295. static int
  1296. yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
  1297.                 yytype_int16 *yyssp, int yytoken)
  1298. {
  1299.   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  1300.   YYSIZE_T yysize = yysize0;
  1301.   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1302.   /* Internationalized format string. */
  1303.   const char *yyformat = YY_NULL;
  1304.   /* Arguments of yyformat. */
  1305.   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1306.   /* Number of reported tokens (one for the "unexpected", one per
  1307.      "expected"). */
  1308.   int yycount = 0;

  1309.   /* There are many possibilities here to consider:
  1310.      - Assume YYFAIL is not used.  It's too flawed to consider.  See
  1311.        <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
  1312.        for details.  YYERROR is fine as it does not invoke this
  1313.        function.
  1314.      - If this state is a consistent state with a default action, then
  1315.        the only way this function was invoked is if the default action
  1316.        is an error action.  In that case, don't check for expected
  1317.        tokens because there are none.
  1318.      - The only way there can be no lookahead present (in yychar) is if
  1319.        this state is a consistent state with a default action.  Thus,
  1320.        detecting the absence of a lookahead is sufficient to determine
  1321.        that there is no unexpected or expected token to report.  In that
  1322.        case, just report a simple "syntax error".
  1323.      - Don't assume there isn't a lookahead just because this state is a
  1324.        consistent state with a default action.  There might have been a
  1325.        previous inconsistent state, consistent state with a non-default
  1326.        action, or user semantic action that manipulated yychar.
  1327.      - Of course, the expected token list depends on states to have
  1328.        correct lookahead information, and it depends on the parser not
  1329.        to perform extra reductions after fetching a lookahead from the
  1330.        scanner and before detecting a syntax error.  Thus, state merging
  1331.        (from LALR or IELR) and default reductions corrupt the expected
  1332.        token list.  However, the list is correct for canonical LR with
  1333.        one exception: it will still contain any token that will not be
  1334.        accepted due to an error action in a later state.
  1335.   */
  1336.   if (yytoken != YYEMPTY)
  1337.     {
  1338.       int yyn = yypact[*yyssp];
  1339.       yyarg[yycount++] = yytname[yytoken];
  1340.       if (!yypact_value_is_default (yyn))
  1341.         {
  1342.           /* Start YYX at -YYN if negative to avoid negative indexes in
  1343.              YYCHECK.  In other words, skip the first -YYN actions for
  1344.              this state because they are default actions.  */
  1345.           int yyxbegin = yyn < 0 ? -yyn : 0;
  1346.           /* Stay within bounds of both yycheck and yytname.  */
  1347.           int yychecklim = YYLAST - yyn + 1;
  1348.           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
  1349.           int yyx;

  1350.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1351.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1352.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1353.               {
  1354.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1355.                   {
  1356.                     yycount = 1;
  1357.                     yysize = yysize0;
  1358.                     break;
  1359.                   }
  1360.                 yyarg[yycount++] = yytname[yyx];
  1361.                 {
  1362.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1363.                   if (! (yysize <= yysize1
  1364.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1365.                     return 2;
  1366.                   yysize = yysize1;
  1367.                 }
  1368.               }
  1369.         }
  1370.     }

  1371.   switch (yycount)
  1372.     {
  1373. # define YYCASE_(N, S)                      \
  1374.       case N:                               \
  1375.         yyformat = S;                       \
  1376.       break
  1377.       YYCASE_(0, YY_("syntax error"));
  1378.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1379.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1380.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1381.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1382.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1383. # undef YYCASE_
  1384.     }

  1385.   {
  1386.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1387.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1388.       return 2;
  1389.     yysize = yysize1;
  1390.   }

  1391.   if (*yymsg_alloc < yysize)
  1392.     {
  1393.       *yymsg_alloc = 2 * yysize;
  1394.       if (! (yysize <= *yymsg_alloc
  1395.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1396.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1397.       return 1;
  1398.     }

  1399.   /* Avoid sprintf, as that infringes on the user's name space.
  1400.      Don't have undefined behavior even if the translation
  1401.      produced a string with the wrong number of "%s"s.  */
  1402.   {
  1403.     char *yyp = *yymsg;
  1404.     int yyi = 0;
  1405.     while ((*yyp = *yyformat) != '\0')
  1406.       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
  1407.         {
  1408.           yyp += yytnamerr (yyp, yyarg[yyi++]);
  1409.           yyformat += 2;
  1410.         }
  1411.       else
  1412.         {
  1413.           yyp++;
  1414.           yyformat++;
  1415.         }
  1416.   }
  1417.   return 0;
  1418. }
  1419. #endif /* YYERROR_VERBOSE */

  1420. /*-----------------------------------------------.
  1421. | Release the memory associated to this symbol.  |
  1422. `-----------------------------------------------*/

  1423. /*ARGSUSED*/
  1424. #if (defined __STDC__ || defined __C99__FUNC__ \
  1425.      || defined __cplusplus || defined _MSC_VER)
  1426. static void
  1427. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1428. #else
  1429. static void
  1430. yydestruct (yymsg, yytype, yyvaluep)
  1431.     const char *yymsg;
  1432.     int yytype;
  1433.     YYSTYPE *yyvaluep;
  1434. #endif
  1435. {
  1436.   YYUSE (yyvaluep);

  1437.   if (!yymsg)
  1438.     yymsg = "Deleting";
  1439.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1440.   switch (yytype)
  1441.     {

  1442.       default:
  1443.         break;
  1444.     }
  1445. }




  1446. /* The lookahead symbol.  */
  1447. int yychar;


  1448. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1449. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1450. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1451. #endif
  1452. #ifndef YY_INITIAL_VALUE
  1453. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1454. #endif

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

  1457. /* Number of syntax errors so far.  */
  1458. int yynerrs;


  1459. /*----------.
  1460. | yyparse.  |
  1461. `----------*/

  1462. #ifdef YYPARSE_PARAM
  1463. #if (defined __STDC__ || defined __C99__FUNC__ \
  1464.      || defined __cplusplus || defined _MSC_VER)
  1465. int
  1466. yyparse (void *YYPARSE_PARAM)
  1467. #else
  1468. int
  1469. yyparse (YYPARSE_PARAM)
  1470.     void *YYPARSE_PARAM;
  1471. #endif
  1472. #else /* ! YYPARSE_PARAM */
  1473. #if (defined __STDC__ || defined __C99__FUNC__ \
  1474.      || defined __cplusplus || defined _MSC_VER)
  1475. int
  1476. yyparse (void)
  1477. #else
  1478. int
  1479. yyparse ()

  1480. #endif
  1481. #endif
  1482. {
  1483.     int yystate;
  1484.     /* Number of tokens to shift before error messages enabled.  */
  1485.     int yyerrstatus;

  1486.     /* The stacks and their tools:
  1487.        `yyss': related to states.
  1488.        `yyvs': related to semantic values.

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

  1491.     /* The state stack.  */
  1492.     yytype_int16 yyssa[YYINITDEPTH];
  1493.     yytype_int16 *yyss;
  1494.     yytype_int16 *yyssp;

  1495.     /* The semantic value stack.  */
  1496.     YYSTYPE yyvsa[YYINITDEPTH];
  1497.     YYSTYPE *yyvs;
  1498.     YYSTYPE *yyvsp;

  1499.     YYSIZE_T yystacksize;

  1500.   int yyn;
  1501.   int yyresult;
  1502.   /* Lookahead token as an internal (translated) token number.  */
  1503.   int yytoken = 0;
  1504.   /* The variables used to return semantic value and location from the
  1505.      action routines.  */
  1506.   YYSTYPE yyval;

  1507. #if YYERROR_VERBOSE
  1508.   /* Buffer for error messages, and its allocated size.  */
  1509.   char yymsgbuf[128];
  1510.   char *yymsg = yymsgbuf;
  1511.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1512. #endif

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

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

  1517.   yyssp = yyss = yyssa;
  1518.   yyvsp = yyvs = yyvsa;
  1519.   yystacksize = YYINITDEPTH;

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

  1521.   yystate = 0;
  1522.   yyerrstatus = 0;
  1523.   yynerrs = 0;
  1524.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1525.   goto yysetstate;

  1526. /*------------------------------------------------------------.
  1527. | yynewstate -- Push a new state, which is found in yystate.  |
  1528. `------------------------------------------------------------*/
  1529. yynewstate:
  1530.   /* In all cases, when you get here, the value and location stacks
  1531.      have just been pushed.  So pushing a state here evens the stacks.  */
  1532.   yyssp++;

  1533. yysetstate:
  1534.   *yyssp = yystate;

  1535.   if (yyss + yystacksize - 1 <= yyssp)
  1536.     {
  1537.       /* Get the current used size of the three stacks, in elements.  */
  1538.       YYSIZE_T yysize = yyssp - yyss + 1;

  1539. #ifdef yyoverflow
  1540.       {
  1541.         /* Give user a chance to xreallocate the stack.  Use copies of
  1542.            these so that the &'s don't force the real ones into
  1543.            memory.  */
  1544.         YYSTYPE *yyvs1 = yyvs;
  1545.         yytype_int16 *yyss1 = yyss;

  1546.         /* Each stack pointer address is followed by the size of the
  1547.            data in use in that stack, in bytes.  This used to be a
  1548.            conditional around just the two extra args, but that might
  1549.            be undefined if yyoverflow is a macro.  */
  1550.         yyoverflow (YY_("memory exhausted"),
  1551.                     &yyss1, yysize * sizeof (*yyssp),
  1552.                     &yyvs1, yysize * sizeof (*yyvsp),
  1553.                     &yystacksize);

  1554.         yyss = yyss1;
  1555.         yyvs = yyvs1;
  1556.       }
  1557. #else /* no yyoverflow */
  1558. # ifndef YYSTACK_RELOCATE
  1559.       goto yyexhaustedlab;
  1560. # else
  1561.       /* Extend the stack our own way.  */
  1562.       if (YYMAXDEPTH <= yystacksize)
  1563.         goto yyexhaustedlab;
  1564.       yystacksize *= 2;
  1565.       if (YYMAXDEPTH < yystacksize)
  1566.         yystacksize = YYMAXDEPTH;

  1567.       {
  1568.         yytype_int16 *yyss1 = yyss;
  1569.         union yyalloc *yyptr =
  1570.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1571.         if (! yyptr)
  1572.           goto yyexhaustedlab;
  1573.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1574.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1575. #  undef YYSTACK_RELOCATE
  1576.         if (yyss1 != yyssa)
  1577.           YYSTACK_FREE (yyss1);
  1578.       }
  1579. # endif
  1580. #endif /* no yyoverflow */

  1581.       yyssp = yyss + yysize - 1;
  1582.       yyvsp = yyvs + yysize - 1;

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

  1585.       if (yyss + yystacksize - 1 <= yyssp)
  1586.         YYABORT;
  1587.     }

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

  1589.   if (yystate == YYFINAL)
  1590.     YYACCEPT;

  1591.   goto yybackup;

  1592. /*-----------.
  1593. | yybackup.  |
  1594. `-----------*/
  1595. yybackup:

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

  1598.   /* First try to decide what to do without reference to lookahead token.  */
  1599.   yyn = yypact[yystate];
  1600.   if (yypact_value_is_default (yyn))
  1601.     goto yydefault;

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

  1603.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1604.   if (yychar == YYEMPTY)
  1605.     {
  1606.       YYDPRINTF ((stderr, "Reading a token: "));
  1607.       yychar = YYLEX;
  1608.     }

  1609.   if (yychar <= YYEOF)
  1610.     {
  1611.       yychar = yytoken = YYEOF;
  1612.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1613.     }
  1614.   else
  1615.     {
  1616.       yytoken = YYTRANSLATE (yychar);
  1617.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1618.     }

  1619.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1620.      detect an error, take that action.  */
  1621.   yyn += yytoken;
  1622.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1623.     goto yydefault;
  1624.   yyn = yytable[yyn];
  1625.   if (yyn <= 0)
  1626.     {
  1627.       if (yytable_value_is_error (yyn))
  1628.         goto yyerrlab;
  1629.       yyn = -yyn;
  1630.       goto yyreduce;
  1631.     }

  1632.   /* Count tokens shifted since error; after three, turn off error
  1633.      status.  */
  1634.   if (yyerrstatus)
  1635.     yyerrstatus--;

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

  1638.   /* Discard the shifted token.  */
  1639.   yychar = YYEMPTY;

  1640.   yystate = yyn;
  1641.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1642.   *++yyvsp = yylval;
  1643.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1644.   goto yynewstate;


  1645. /*-----------------------------------------------------------.
  1646. | yydefault -- do the default action for the current state.  |
  1647. `-----------------------------------------------------------*/
  1648. yydefault:
  1649.   yyn = yydefact[yystate];
  1650.   if (yyn == 0)
  1651.     goto yyerrlab;
  1652.   goto yyreduce;


  1653. /*-----------------------------.
  1654. | yyreduce -- Do a reduction.  |
  1655. `-----------------------------*/
  1656. yyreduce:
  1657.   /* yyn is the number of a rule to reduce with.  */
  1658.   yylen = yyr2[yyn];

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

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


  1667.   YY_REDUCE_PRINT (yyn);
  1668.   switch (yyn)
  1669.     {
  1670.         case 4:
  1671. /* Line 1792 of yacc.c  */
  1672. #line 246 "ada-exp.y"
  1673.     { write_exp_elt_opcode (pstate, BINOP_COMMA); }
  1674.     break;

  1675.   case 5:
  1676. /* Line 1792 of yacc.c  */
  1677. #line 248 "ada-exp.y"
  1678.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
  1679.     break;

  1680.   case 6:
  1681. /* Line 1792 of yacc.c  */
  1682. #line 253 "ada-exp.y"
  1683.     { write_exp_elt_opcode (pstate, UNOP_IND); }
  1684.     break;

  1685.   case 7:
  1686. /* Line 1792 of yacc.c  */
  1687. #line 257 "ada-exp.y"
  1688.     { write_exp_op_with_string (pstate, STRUCTOP_STRUCT,
  1689.                                                     (yyvsp[(2) - (2)].sval)); }
  1690.     break;

  1691.   case 8:
  1692. /* Line 1792 of yacc.c  */
  1693. #line 262 "ada-exp.y"
  1694.     {
  1695.                           write_exp_elt_opcode (pstate, OP_FUNCALL);
  1696.                           write_exp_elt_longcst (pstate, (yyvsp[(3) - (4)].lval));
  1697.                           write_exp_elt_opcode (pstate, OP_FUNCALL);
  1698.                         }
  1699.     break;

  1700.   case 9:
  1701. /* Line 1792 of yacc.c  */
  1702. #line 268 "ada-exp.y"
  1703.     {
  1704.                           if ((yyvsp[(1) - (4)].tval) != NULL)
  1705.                             {
  1706.                               if ((yyvsp[(3) - (4)].lval) != 1)
  1707.                                 error (_("Invalid conversion"));
  1708.                               write_exp_elt_opcode (pstate, UNOP_CAST);
  1709.                               write_exp_elt_type (pstate, (yyvsp[(1) - (4)].tval));
  1710.                               write_exp_elt_opcode (pstate, UNOP_CAST);
  1711.                             }
  1712.                           else
  1713.                             {
  1714.                               write_exp_elt_opcode (pstate, OP_FUNCALL);
  1715.                               write_exp_elt_longcst (pstate, (yyvsp[(3) - (4)].lval));
  1716.                               write_exp_elt_opcode (pstate, OP_FUNCALL);
  1717.                             }
  1718.                         }
  1719.     break;

  1720.   case 10:
  1721. /* Line 1792 of yacc.c  */
  1722. #line 286 "ada-exp.y"
  1723.     { type_qualifier = (yyvsp[(1) - (3)].tval); }
  1724.     break;

  1725.   case 11:
  1726. /* Line 1792 of yacc.c  */
  1727. #line 288 "ada-exp.y"
  1728.     {
  1729.                           if ((yyvsp[(1) - (7)].tval) == NULL)
  1730.                             error (_("Type required for qualification"));
  1731.                           write_exp_elt_opcode (pstate, UNOP_QUAL);
  1732.                           write_exp_elt_type (pstate, (yyvsp[(1) - (7)].tval));
  1733.                           write_exp_elt_opcode (pstate, UNOP_QUAL);
  1734.                           type_qualifier = (yyvsp[(3) - (7)].tval);
  1735.                         }
  1736.     break;

  1737.   case 12:
  1738. /* Line 1792 of yacc.c  */
  1739. #line 298 "ada-exp.y"
  1740.     { (yyval.tval) = type_qualifier; }
  1741.     break;

  1742.   case 13:
  1743. /* Line 1792 of yacc.c  */
  1744. #line 303 "ada-exp.y"
  1745.     { write_exp_elt_opcode (pstate, TERNOP_SLICE); }
  1746.     break;

  1747.   case 14:
  1748. /* Line 1792 of yacc.c  */
  1749. #line 305 "ada-exp.y"
  1750.     { if ((yyvsp[(1) - (6)].tval) == NULL)
  1751.                             write_exp_elt_opcode (pstate, TERNOP_SLICE);
  1752.                           else
  1753.                             error (_("Cannot slice a type"));
  1754.                         }
  1755.     break;

  1756.   case 15:
  1757. /* Line 1792 of yacc.c  */
  1758. #line 312 "ada-exp.y"
  1759.     { }
  1760.     break;

  1761.   case 16:
  1762. /* Line 1792 of yacc.c  */
  1763. #line 324 "ada-exp.y"
  1764.     { if ((yyvsp[(1) - (1)].tval) != NULL)
  1765.                             {
  1766.                               write_exp_elt_opcode (pstate, OP_TYPE);
  1767.                               write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  1768.                               write_exp_elt_opcode (pstate, OP_TYPE);
  1769.                             }
  1770.                         }
  1771.     break;

  1772.   case 17:
  1773. /* Line 1792 of yacc.c  */
  1774. #line 334 "ada-exp.y"
  1775.     { write_dollar_variable (pstate, (yyvsp[(1) - (1)].sval)); }
  1776.     break;

  1777.   case 20:
  1778. /* Line 1792 of yacc.c  */
  1779. #line 344 "ada-exp.y"
  1780.     { write_exp_elt_opcode (pstate, UNOP_NEG); }
  1781.     break;

  1782.   case 21:
  1783. /* Line 1792 of yacc.c  */
  1784. #line 348 "ada-exp.y"
  1785.     { write_exp_elt_opcode (pstate, UNOP_PLUS); }
  1786.     break;

  1787.   case 22:
  1788. /* Line 1792 of yacc.c  */
  1789. #line 352 "ada-exp.y"
  1790.     { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
  1791.     break;

  1792.   case 23:
  1793. /* Line 1792 of yacc.c  */
  1794. #line 356 "ada-exp.y"
  1795.     { write_exp_elt_opcode (pstate, UNOP_ABS); }
  1796.     break;

  1797.   case 24:
  1798. /* Line 1792 of yacc.c  */
  1799. #line 359 "ada-exp.y"
  1800.     { (yyval.lval) = 0; }
  1801.     break;

  1802.   case 25:
  1803. /* Line 1792 of yacc.c  */
  1804. #line 363 "ada-exp.y"
  1805.     { (yyval.lval) = 1; }
  1806.     break;

  1807.   case 26:
  1808. /* Line 1792 of yacc.c  */
  1809. #line 365 "ada-exp.y"
  1810.     { (yyval.lval) = 1; }
  1811.     break;

  1812.   case 27:
  1813. /* Line 1792 of yacc.c  */
  1814. #line 367 "ada-exp.y"
  1815.     { (yyval.lval) = (yyvsp[(1) - (3)].lval) + 1; }
  1816.     break;

  1817.   case 28:
  1818. /* Line 1792 of yacc.c  */
  1819. #line 369 "ada-exp.y"
  1820.     { (yyval.lval) = (yyvsp[(1) - (5)].lval) + 1; }
  1821.     break;

  1822.   case 29:
  1823. /* Line 1792 of yacc.c  */
  1824. #line 374 "ada-exp.y"
  1825.     {
  1826.                           if ((yyvsp[(2) - (4)].tval) == NULL)
  1827.                             error (_("Type required within braces in coercion"));
  1828.                           write_exp_elt_opcode (pstate, UNOP_MEMVAL);
  1829.                           write_exp_elt_type (pstate, (yyvsp[(2) - (4)].tval));
  1830.                           write_exp_elt_opcode (pstate, UNOP_MEMVAL);
  1831.                         }
  1832.     break;

  1833.   case 30:
  1834. /* Line 1792 of yacc.c  */
  1835. #line 386 "ada-exp.y"
  1836.     { write_exp_elt_opcode (pstate, BINOP_EXP); }
  1837.     break;

  1838.   case 31:
  1839. /* Line 1792 of yacc.c  */
  1840. #line 390 "ada-exp.y"
  1841.     { write_exp_elt_opcode (pstate, BINOP_MUL); }
  1842.     break;

  1843.   case 32:
  1844. /* Line 1792 of yacc.c  */
  1845. #line 394 "ada-exp.y"
  1846.     { write_exp_elt_opcode (pstate, BINOP_DIV); }
  1847.     break;

  1848.   case 33:
  1849. /* Line 1792 of yacc.c  */
  1850. #line 398 "ada-exp.y"
  1851.     { write_exp_elt_opcode (pstate, BINOP_REM); }
  1852.     break;

  1853.   case 34:
  1854. /* Line 1792 of yacc.c  */
  1855. #line 402 "ada-exp.y"
  1856.     { write_exp_elt_opcode (pstate, BINOP_MOD); }
  1857.     break;

  1858.   case 35:
  1859. /* Line 1792 of yacc.c  */
  1860. #line 406 "ada-exp.y"
  1861.     { write_exp_elt_opcode (pstate, BINOP_REPEAT); }
  1862.     break;

  1863.   case 36:
  1864. /* Line 1792 of yacc.c  */
  1865. #line 410 "ada-exp.y"
  1866.     { write_exp_elt_opcode (pstate, BINOP_ADD); }
  1867.     break;

  1868.   case 37:
  1869. /* Line 1792 of yacc.c  */
  1870. #line 414 "ada-exp.y"
  1871.     { write_exp_elt_opcode (pstate, BINOP_CONCAT); }
  1872.     break;

  1873.   case 38:
  1874. /* Line 1792 of yacc.c  */
  1875. #line 418 "ada-exp.y"
  1876.     { write_exp_elt_opcode (pstate, BINOP_SUB); }
  1877.     break;

  1878.   case 40:
  1879. /* Line 1792 of yacc.c  */
  1880. #line 425 "ada-exp.y"
  1881.     { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
  1882.     break;

  1883.   case 41:
  1884. /* Line 1792 of yacc.c  */
  1885. #line 429 "ada-exp.y"
  1886.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
  1887.     break;

  1888.   case 42:
  1889. /* Line 1792 of yacc.c  */
  1890. #line 433 "ada-exp.y"
  1891.     { write_exp_elt_opcode (pstate, BINOP_LEQ); }
  1892.     break;

  1893.   case 43:
  1894. /* Line 1792 of yacc.c  */
  1895. #line 437 "ada-exp.y"
  1896.     { write_exp_elt_opcode (pstate, TERNOP_IN_RANGE); }
  1897.     break;

  1898.   case 44:
  1899. /* Line 1792 of yacc.c  */
  1900. #line 439 "ada-exp.y"
  1901.     { write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
  1902.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(5) - (5)].lval));
  1903.                           write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
  1904.                         }
  1905.     break;

  1906.   case 45:
  1907. /* Line 1792 of yacc.c  */
  1908. #line 444 "ada-exp.y"
  1909.     {
  1910.                           if ((yyvsp[(3) - (3)].tval) == NULL)
  1911.                             error (_("Right operand of 'in' must be type"));
  1912.                           write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
  1913.                           write_exp_elt_type (pstate, (yyvsp[(3) - (3)].tval));
  1914.                           write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
  1915.                         }
  1916.     break;

  1917.   case 46:
  1918. /* Line 1792 of yacc.c  */
  1919. #line 452 "ada-exp.y"
  1920.     { write_exp_elt_opcode (pstate, TERNOP_IN_RANGE);
  1921.                           write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT);
  1922.                         }
  1923.     break;

  1924.   case 47:
  1925. /* Line 1792 of yacc.c  */
  1926. #line 456 "ada-exp.y"
  1927.     { write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
  1928.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(6) - (6)].lval));
  1929.                           write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
  1930.                           write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT);
  1931.                         }
  1932.     break;

  1933.   case 48:
  1934. /* Line 1792 of yacc.c  */
  1935. #line 462 "ada-exp.y"
  1936.     {
  1937.                           if ((yyvsp[(4) - (4)].tval) == NULL)
  1938.                             error (_("Right operand of 'in' must be type"));
  1939.                           write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
  1940.                           write_exp_elt_type (pstate, (yyvsp[(4) - (4)].tval));
  1941.                           write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
  1942.                           write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT);
  1943.                         }
  1944.     break;

  1945.   case 49:
  1946. /* Line 1792 of yacc.c  */
  1947. #line 473 "ada-exp.y"
  1948.     { write_exp_elt_opcode (pstate, BINOP_GEQ); }
  1949.     break;

  1950.   case 50:
  1951. /* Line 1792 of yacc.c  */
  1952. #line 477 "ada-exp.y"
  1953.     { write_exp_elt_opcode (pstate, BINOP_LESS); }
  1954.     break;

  1955.   case 51:
  1956. /* Line 1792 of yacc.c  */
  1957. #line 481 "ada-exp.y"
  1958.     { write_exp_elt_opcode (pstate, BINOP_GTR); }
  1959.     break;

  1960.   case 58:
  1961. /* Line 1792 of yacc.c  */
  1962. #line 494 "ada-exp.y"
  1963.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1964.     break;

  1965.   case 59:
  1966. /* Line 1792 of yacc.c  */
  1967. #line 496 "ada-exp.y"
  1968.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1969.     break;

  1970.   case 60:
  1971. /* Line 1792 of yacc.c  */
  1972. #line 501 "ada-exp.y"
  1973.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
  1974.     break;

  1975.   case 61:
  1976. /* Line 1792 of yacc.c  */
  1977. #line 503 "ada-exp.y"
  1978.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
  1979.     break;

  1980.   case 62:
  1981. /* Line 1792 of yacc.c  */
  1982. #line 508 "ada-exp.y"
  1983.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1984.     break;

  1985.   case 63:
  1986. /* Line 1792 of yacc.c  */
  1987. #line 510 "ada-exp.y"
  1988.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1989.     break;

  1990.   case 64:
  1991. /* Line 1792 of yacc.c  */
  1992. #line 515 "ada-exp.y"
  1993.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
  1994.     break;

  1995.   case 65:
  1996. /* Line 1792 of yacc.c  */
  1997. #line 517 "ada-exp.y"
  1998.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
  1999.     break;

  2000.   case 66:
  2001. /* Line 1792 of yacc.c  */
  2002. #line 521 "ada-exp.y"
  2003.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  2004.     break;

  2005.   case 67:
  2006. /* Line 1792 of yacc.c  */
  2007. #line 523 "ada-exp.y"
  2008.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  2009.     break;

  2010.   case 68:
  2011. /* Line 1792 of yacc.c  */
  2012. #line 535 "ada-exp.y"
  2013.     { write_exp_elt_opcode (pstate, UNOP_ADDR); }
  2014.     break;

  2015.   case 69:
  2016. /* Line 1792 of yacc.c  */
  2017. #line 537 "ada-exp.y"
  2018.     { write_exp_elt_opcode (pstate, UNOP_ADDR);
  2019.                           write_exp_elt_opcode (pstate, UNOP_CAST);
  2020.                           write_exp_elt_type (pstate,
  2021.                                               type_system_address (pstate));
  2022.                           write_exp_elt_opcode (pstate, UNOP_CAST);
  2023.                         }
  2024.     break;

  2025.   case 70:
  2026. /* Line 1792 of yacc.c  */
  2027. #line 544 "ada-exp.y"
  2028.     { write_int (pstate, (yyvsp[(3) - (3)].lval), type_int (pstate));
  2029.                           write_exp_elt_opcode (pstate, OP_ATR_FIRST); }
  2030.     break;

  2031.   case 71:
  2032. /* Line 1792 of yacc.c  */
  2033. #line 547 "ada-exp.y"
  2034.     { write_int (pstate, (yyvsp[(3) - (3)].lval), type_int (pstate));
  2035.                           write_exp_elt_opcode (pstate, OP_ATR_LAST); }
  2036.     break;

  2037.   case 72:
  2038. /* Line 1792 of yacc.c  */
  2039. #line 550 "ada-exp.y"
  2040.     { write_int (pstate, (yyvsp[(3) - (3)].lval), type_int (pstate));
  2041.                           write_exp_elt_opcode (pstate, OP_ATR_LENGTH); }
  2042.     break;

  2043.   case 73:
  2044. /* Line 1792 of yacc.c  */
  2045. #line 553 "ada-exp.y"
  2046.     { write_exp_elt_opcode (pstate, OP_ATR_SIZE); }
  2047.     break;

  2048.   case 74:
  2049. /* Line 1792 of yacc.c  */
  2050. #line 555 "ada-exp.y"
  2051.     { write_exp_elt_opcode (pstate, OP_ATR_TAG); }
  2052.     break;

  2053.   case 75:
  2054. /* Line 1792 of yacc.c  */
  2055. #line 557 "ada-exp.y"
  2056.     { write_exp_elt_opcode (pstate, OP_ATR_MIN); }
  2057.     break;

  2058.   case 76:
  2059. /* Line 1792 of yacc.c  */
  2060. #line 559 "ada-exp.y"
  2061.     { write_exp_elt_opcode (pstate, OP_ATR_MAX); }
  2062.     break;

  2063.   case 77:
  2064. /* Line 1792 of yacc.c  */
  2065. #line 561 "ada-exp.y"
  2066.     { write_exp_elt_opcode (pstate, OP_ATR_POS); }
  2067.     break;

  2068.   case 78:
  2069. /* Line 1792 of yacc.c  */
  2070. #line 563 "ada-exp.y"
  2071.     { write_exp_elt_opcode (pstate, OP_ATR_VAL); }
  2072.     break;

  2073.   case 79:
  2074. /* Line 1792 of yacc.c  */
  2075. #line 565 "ada-exp.y"
  2076.     { write_exp_elt_opcode (pstate, OP_ATR_MODULUS); }
  2077.     break;

  2078.   case 80:
  2079. /* Line 1792 of yacc.c  */
  2080. #line 569 "ada-exp.y"
  2081.     { (yyval.lval) = 1; }
  2082.     break;

  2083.   case 81:
  2084. /* Line 1792 of yacc.c  */
  2085. #line 571 "ada-exp.y"
  2086.     { (yyval.lval) = (yyvsp[(2) - (3)].typed_val).val; }
  2087.     break;

  2088.   case 82:
  2089. /* Line 1792 of yacc.c  */
  2090. #line 576 "ada-exp.y"
  2091.     {
  2092.                           if ((yyvsp[(1) - (1)].tval) == NULL)
  2093.                             error (_("Prefix must be type"));
  2094.                           write_exp_elt_opcode (pstate, OP_TYPE);
  2095.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  2096.                           write_exp_elt_opcode (pstate, OP_TYPE); }
  2097.     break;

  2098.   case 84:
  2099. /* Line 1792 of yacc.c  */
  2100. #line 587 "ada-exp.y"
  2101.     { write_exp_elt_opcode (pstate, OP_TYPE);
  2102.                           write_exp_elt_type (pstate,
  2103.                                           parse_type (pstate)->builtin_void);
  2104.                           write_exp_elt_opcode (pstate, OP_TYPE); }
  2105.     break;

  2106.   case 85:
  2107. /* Line 1792 of yacc.c  */
  2108. #line 595 "ada-exp.y"
  2109.     { write_int (pstate, (LONGEST) (yyvsp[(1) - (1)].typed_val).val, (yyvsp[(1) - (1)].typed_val).type); }
  2110.     break;

  2111.   case 86:
  2112. /* Line 1792 of yacc.c  */
  2113. #line 599 "ada-exp.y"
  2114.     { write_int (pstate,
  2115.                                convert_char_literal (type_qualifier, (yyvsp[(1) - (1)].typed_val).val),
  2116.                                (type_qualifier == NULL)
  2117.                                ? (yyvsp[(1) - (1)].typed_val).type : type_qualifier);
  2118.                   }
  2119.     break;

  2120.   case 87:
  2121. /* Line 1792 of yacc.c  */
  2122. #line 607 "ada-exp.y"
  2123.     { write_exp_elt_opcode (pstate, OP_DOUBLE);
  2124.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_float).type);
  2125.                           write_exp_elt_dblcst (pstate, (yyvsp[(1) - (1)].typed_val_float).dval);
  2126.                           write_exp_elt_opcode (pstate, OP_DOUBLE);
  2127.                         }
  2128.     break;

  2129.   case 88:
  2130. /* Line 1792 of yacc.c  */
  2131. #line 615 "ada-exp.y"
  2132.     { write_int (pstate, 0, type_int (pstate)); }
  2133.     break;

  2134.   case 89:
  2135. /* Line 1792 of yacc.c  */
  2136. #line 619 "ada-exp.y"
  2137.     {
  2138.                           write_exp_op_with_string (pstate, OP_STRING, (yyvsp[(1) - (1)].sval));
  2139.                         }
  2140.     break;

  2141.   case 90:
  2142. /* Line 1792 of yacc.c  */
  2143. #line 625 "ada-exp.y"
  2144.     { write_int (pstate, 1, type_boolean (pstate)); }
  2145.     break;

  2146.   case 91:
  2147. /* Line 1792 of yacc.c  */
  2148. #line 627 "ada-exp.y"
  2149.     { write_int (pstate, 0, type_boolean (pstate)); }
  2150.     break;

  2151.   case 92:
  2152. /* Line 1792 of yacc.c  */
  2153. #line 631 "ada-exp.y"
  2154.     { error (_("NEW not implemented.")); }
  2155.     break;

  2156.   case 93:
  2157. /* Line 1792 of yacc.c  */
  2158. #line 635 "ada-exp.y"
  2159.     { (yyval.tval) = write_var_or_type (pstate, NULL, (yyvsp[(1) - (1)].sval)); }
  2160.     break;

  2161.   case 94:
  2162. /* Line 1792 of yacc.c  */
  2163. #line 637 "ada-exp.y"
  2164.     { (yyval.tval) = write_var_or_type (pstate, (yyvsp[(1) - (2)].bval), (yyvsp[(2) - (2)].sval)); }
  2165.     break;

  2166.   case 95:
  2167. /* Line 1792 of yacc.c  */
  2168. #line 639 "ada-exp.y"
  2169.     {
  2170.                           (yyval.tval) = write_var_or_type (pstate, NULL, (yyvsp[(1) - (2)].sval));
  2171.                           if ((yyval.tval) == NULL)
  2172.                             write_exp_elt_opcode (pstate, UNOP_ADDR);
  2173.                           else
  2174.                             (yyval.tval) = lookup_pointer_type ((yyval.tval));
  2175.                         }
  2176.     break;

  2177.   case 96:
  2178. /* Line 1792 of yacc.c  */
  2179. #line 647 "ada-exp.y"
  2180.     {
  2181.                           (yyval.tval) = write_var_or_type (pstate, (yyvsp[(1) - (3)].bval), (yyvsp[(2) - (3)].sval));
  2182.                           if ((yyval.tval) == NULL)
  2183.                             write_exp_elt_opcode (pstate, UNOP_ADDR);
  2184.                           else
  2185.                             (yyval.tval) = lookup_pointer_type ((yyval.tval));
  2186.                         }
  2187.     break;

  2188.   case 97:
  2189. /* Line 1792 of yacc.c  */
  2190. #line 658 "ada-exp.y"
  2191.     { (yyval.bval) = block_lookup (NULL, (yyvsp[(1) - (2)].sval).ptr); }
  2192.     break;

  2193.   case 98:
  2194. /* Line 1792 of yacc.c  */
  2195. #line 660 "ada-exp.y"
  2196.     { (yyval.bval) = block_lookup ((yyvsp[(1) - (3)].bval), (yyvsp[(2) - (3)].sval).ptr); }
  2197.     break;

  2198.   case 99:
  2199. /* Line 1792 of yacc.c  */
  2200. #line 665 "ada-exp.y"
  2201.     {
  2202.                           write_exp_elt_opcode (pstate, OP_AGGREGATE);
  2203.                           write_exp_elt_longcst (pstate, (yyvsp[(2) - (3)].lval));
  2204.                           write_exp_elt_opcode (pstate, OP_AGGREGATE);
  2205.                         }
  2206.     break;

  2207.   case 100:
  2208. /* Line 1792 of yacc.c  */
  2209. #line 673 "ada-exp.y"
  2210.     { (yyval.lval) = (yyvsp[(1) - (1)].lval); }
  2211.     break;

  2212.   case 101:
  2213. /* Line 1792 of yacc.c  */
  2214. #line 675 "ada-exp.y"
  2215.     { write_exp_elt_opcode (pstate, OP_POSITIONAL);
  2216.                           write_exp_elt_longcst (pstate, (yyvsp[(1) - (2)].lval));
  2217.                           write_exp_elt_opcode (pstate, OP_POSITIONAL);
  2218.                           (yyval.lval) = (yyvsp[(1) - (2)].lval) + 1;
  2219.                         }
  2220.     break;

  2221.   case 102:
  2222. /* Line 1792 of yacc.c  */
  2223. #line 681 "ada-exp.y"
  2224.     { (yyval.lval) = (yyvsp[(1) - (2)].lval) + (yyvsp[(2) - (2)].lval); }
  2225.     break;

  2226.   case 103:
  2227. /* Line 1792 of yacc.c  */
  2228. #line 686 "ada-exp.y"
  2229.     { write_exp_elt_opcode (pstate, OP_POSITIONAL);
  2230.                           write_exp_elt_longcst (pstate, 0);
  2231.                           write_exp_elt_opcode (pstate, OP_POSITIONAL);
  2232.                           (yyval.lval) = 1;
  2233.                         }
  2234.     break;

  2235.   case 104:
  2236. /* Line 1792 of yacc.c  */
  2237. #line 692 "ada-exp.y"
  2238.     { write_exp_elt_opcode (pstate, OP_POSITIONAL);
  2239.                           write_exp_elt_longcst (pstate, (yyvsp[(1) - (3)].lval));
  2240.                           write_exp_elt_opcode (pstate, OP_POSITIONAL);
  2241.                           (yyval.lval) = (yyvsp[(1) - (3)].lval) + 1;
  2242.                         }
  2243.     break;

  2244.   case 105:
  2245. /* Line 1792 of yacc.c  */
  2246. #line 700 "ada-exp.y"
  2247.     { (yyval.lval) = 1; }
  2248.     break;

  2249.   case 106:
  2250. /* Line 1792 of yacc.c  */
  2251. #line 701 "ada-exp.y"
  2252.     { (yyval.lval) = 1; }
  2253.     break;

  2254.   case 107:
  2255. /* Line 1792 of yacc.c  */
  2256. #line 703 "ada-exp.y"
  2257.     { (yyval.lval) = (yyvsp[(3) - (3)].lval) + 1; }
  2258.     break;

  2259.   case 108:
  2260. /* Line 1792 of yacc.c  */
  2261. #line 707 "ada-exp.y"
  2262.     { write_exp_elt_opcode (pstate, OP_OTHERS); }
  2263.     break;

  2264.   case 109:
  2265. /* Line 1792 of yacc.c  */
  2266. #line 712 "ada-exp.y"
  2267.     {
  2268.                           write_exp_elt_opcode (pstate, OP_CHOICES);
  2269.                           write_exp_elt_longcst (pstate, (yyvsp[(1) - (1)].lval));
  2270.                           write_exp_elt_opcode (pstate, OP_CHOICES);
  2271.                         }
  2272.     break;

  2273.   case 110:
  2274. /* Line 1792 of yacc.c  */
  2275. #line 726 "ada-exp.y"
  2276.     { write_name_assoc (pstate, (yyvsp[(1) - (2)].sval)); }
  2277.     break;

  2278.   case 111:
  2279. /* Line 1792 of yacc.c  */
  2280. #line 727 "ada-exp.y"
  2281.     { (yyval.lval) = 1; }
  2282.     break;

  2283.   case 112:
  2284. /* Line 1792 of yacc.c  */
  2285. #line 729 "ada-exp.y"
  2286.     { (yyval.lval) = 1; }
  2287.     break;

  2288.   case 113:
  2289. /* Line 1792 of yacc.c  */
  2290. #line 731 "ada-exp.y"
  2291.     { write_exp_elt_opcode (pstate, OP_DISCRETE_RANGE);
  2292.                           write_exp_op_with_string (pstate, OP_NAME,
  2293.                                                     empty_stoken);
  2294.                         }
  2295.     break;

  2296.   case 114:
  2297. /* Line 1792 of yacc.c  */
  2298. #line 735 "ada-exp.y"
  2299.     { (yyval.lval) = 1; }
  2300.     break;

  2301.   case 115:
  2302. /* Line 1792 of yacc.c  */
  2303. #line 737 "ada-exp.y"
  2304.     { write_name_assoc (pstate, (yyvsp[(1) - (2)].sval)); }
  2305.     break;

  2306.   case 116:
  2307. /* Line 1792 of yacc.c  */
  2308. #line 738 "ada-exp.y"
  2309.     { (yyval.lval) = (yyvsp[(4) - (4)].lval) + 1; }
  2310.     break;

  2311.   case 117:
  2312. /* Line 1792 of yacc.c  */
  2313. #line 740 "ada-exp.y"
  2314.     { (yyval.lval) = (yyvsp[(3) - (3)].lval) + 1; }
  2315.     break;

  2316.   case 118:
  2317. /* Line 1792 of yacc.c  */
  2318. #line 742 "ada-exp.y"
  2319.     { write_exp_elt_opcode (pstate, OP_DISCRETE_RANGE); }
  2320.     break;

  2321.   case 119:
  2322. /* Line 1792 of yacc.c  */
  2323. #line 743 "ada-exp.y"
  2324.     { (yyval.lval) = (yyvsp[(6) - (6)].lval) + 1; }
  2325.     break;

  2326.   case 120:
  2327. /* Line 1792 of yacc.c  */
  2328. #line 750 "ada-exp.y"
  2329.     { write_exp_elt_opcode (pstate, UNOP_IND); }
  2330.     break;

  2331.   case 121:
  2332. /* Line 1792 of yacc.c  */
  2333. #line 752 "ada-exp.y"
  2334.     { write_exp_elt_opcode (pstate, UNOP_ADDR); }
  2335.     break;

  2336.   case 122:
  2337. /* Line 1792 of yacc.c  */
  2338. #line 754 "ada-exp.y"
  2339.     { write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
  2340.     break;


  2341. /* Line 1792 of yacc.c  */
  2342. #line 2687 "ada-exp.c"
  2343.       default: break;
  2344.     }
  2345.   /* User semantic actions sometimes alter yychar, and that requires
  2346.      that yytoken be updated with the new translation.  We take the
  2347.      approach of translating immediately before every use of yytoken.
  2348.      One alternative is translating here after every semantic action,
  2349.      but that translation would be missed if the semantic action invokes
  2350.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  2351.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  2352.      incorrect destructor might then be invoked immediately.  In the
  2353.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  2354.      to an incorrect destructor call or verbose syntax error message
  2355.      before the lookahead is translated.  */
  2356.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  2357.   YYPOPSTACK (yylen);
  2358.   yylen = 0;
  2359.   YY_STACK_PRINT (yyss, yyssp);

  2360.   *++yyvsp = yyval;

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

  2364.   yyn = yyr1[yyn];

  2365.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  2366.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  2367.     yystate = yytable[yystate];
  2368.   else
  2369.     yystate = yydefgoto[yyn - YYNTOKENS];

  2370.   goto yynewstate;


  2371. /*------------------------------------.
  2372. | yyerrlab -- here on detecting error |
  2373. `------------------------------------*/
  2374. yyerrlab:
  2375.   /* Make sure we have latest lookahead translation.  See comments at
  2376.      user semantic actions for why this is necessary.  */
  2377.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  2378.   /* If not already recovering from an error, report this error.  */
  2379.   if (!yyerrstatus)
  2380.     {
  2381.       ++yynerrs;
  2382. #if ! YYERROR_VERBOSE
  2383.       yyerror (YY_("syntax error"));
  2384. #else
  2385. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  2386.                                         yyssp, yytoken)
  2387.       {
  2388.         char const *yymsgp = YY_("syntax error");
  2389.         int yysyntax_error_status;
  2390.         yysyntax_error_status = YYSYNTAX_ERROR;
  2391.         if (yysyntax_error_status == 0)
  2392.           yymsgp = yymsg;
  2393.         else if (yysyntax_error_status == 1)
  2394.           {
  2395.             if (yymsg != yymsgbuf)
  2396.               YYSTACK_FREE (yymsg);
  2397.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  2398.             if (!yymsg)
  2399.               {
  2400.                 yymsg = yymsgbuf;
  2401.                 yymsg_alloc = sizeof yymsgbuf;
  2402.                 yysyntax_error_status = 2;
  2403.               }
  2404.             else
  2405.               {
  2406.                 yysyntax_error_status = YYSYNTAX_ERROR;
  2407.                 yymsgp = yymsg;
  2408.               }
  2409.           }
  2410.         yyerror (yymsgp);
  2411.         if (yysyntax_error_status == 2)
  2412.           goto yyexhaustedlab;
  2413.       }
  2414. # undef YYSYNTAX_ERROR
  2415. #endif
  2416.     }



  2417.   if (yyerrstatus == 3)
  2418.     {
  2419.       /* If just tried and failed to reuse lookahead token after an
  2420.          error, discard it.  */

  2421.       if (yychar <= YYEOF)
  2422.         {
  2423.           /* Return failure if at end of input.  */
  2424.           if (yychar == YYEOF)
  2425.             YYABORT;
  2426.         }
  2427.       else
  2428.         {
  2429.           yydestruct ("Error: discarding",
  2430.                       yytoken, &yylval);
  2431.           yychar = YYEMPTY;
  2432.         }
  2433.     }

  2434.   /* Else will try to reuse lookahead token after shifting the error
  2435.      token.  */
  2436.   goto yyerrlab1;


  2437. /*---------------------------------------------------.
  2438. | yyerrorlab -- error raised explicitly by YYERROR.  |
  2439. `---------------------------------------------------*/
  2440. yyerrorlab:

  2441.   /* Pacify compilers like GCC when the user code never invokes
  2442.      YYERROR and the label yyerrorlab therefore never appears in user
  2443.      code.  */
  2444.   if (/*CONSTCOND*/ 0)
  2445.      goto yyerrorlab;

  2446.   /* Do not reclaim the symbols of the rule which action triggered
  2447.      this YYERROR.  */
  2448.   YYPOPSTACK (yylen);
  2449.   yylen = 0;
  2450.   YY_STACK_PRINT (yyss, yyssp);
  2451.   yystate = *yyssp;
  2452.   goto yyerrlab1;


  2453. /*-------------------------------------------------------------.
  2454. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  2455. `-------------------------------------------------------------*/
  2456. yyerrlab1:
  2457.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  2458.   for (;;)
  2459.     {
  2460.       yyn = yypact[yystate];
  2461.       if (!yypact_value_is_default (yyn))
  2462.         {
  2463.           yyn += YYTERROR;
  2464.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  2465.             {
  2466.               yyn = yytable[yyn];
  2467.               if (0 < yyn)
  2468.                 break;
  2469.             }
  2470.         }

  2471.       /* Pop the current state because it cannot handle the error token.  */
  2472.       if (yyssp == yyss)
  2473.         YYABORT;


  2474.       yydestruct ("Error: popping",
  2475.                   yystos[yystate], yyvsp);
  2476.       YYPOPSTACK (1);
  2477.       yystate = *yyssp;
  2478.       YY_STACK_PRINT (yyss, yyssp);
  2479.     }

  2480.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  2481.   *++yyvsp = yylval;
  2482.   YY_IGNORE_MAYBE_UNINITIALIZED_END


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

  2485.   yystate = yyn;
  2486.   goto yynewstate;


  2487. /*-------------------------------------.
  2488. | yyacceptlab -- YYACCEPT comes here.  |
  2489. `-------------------------------------*/
  2490. yyacceptlab:
  2491.   yyresult = 0;
  2492.   goto yyreturn;

  2493. /*-----------------------------------.
  2494. | yyabortlab -- YYABORT comes here.  |
  2495. `-----------------------------------*/
  2496. yyabortlab:
  2497.   yyresult = 1;
  2498.   goto yyreturn;

  2499. #if !defined yyoverflow || YYERROR_VERBOSE
  2500. /*-------------------------------------------------.
  2501. | yyexhaustedlab -- memory exhaustion comes here.  |
  2502. `-------------------------------------------------*/
  2503. yyexhaustedlab:
  2504.   yyerror (YY_("memory exhausted"));
  2505.   yyresult = 2;
  2506.   /* Fall through.  */
  2507. #endif

  2508. yyreturn:
  2509.   if (yychar != YYEMPTY)
  2510.     {
  2511.       /* Make sure we have latest lookahead translation.  See comments at
  2512.          user semantic actions for why this is necessary.  */
  2513.       yytoken = YYTRANSLATE (yychar);
  2514.       yydestruct ("Cleanup: discarding lookahead",
  2515.                   yytoken, &yylval);
  2516.     }
  2517.   /* Do not reclaim the symbols of the rule which action triggered
  2518.      this YYABORT or YYACCEPT.  */
  2519.   YYPOPSTACK (yylen);
  2520.   YY_STACK_PRINT (yyss, yyssp);
  2521.   while (yyssp != yyss)
  2522.     {
  2523.       yydestruct ("Cleanup: popping",
  2524.                   yystos[*yyssp], yyvsp);
  2525.       YYPOPSTACK (1);
  2526.     }
  2527. #ifndef yyoverflow
  2528.   if (yyss != yyssa)
  2529.     YYSTACK_FREE (yyss);
  2530. #endif
  2531. #if YYERROR_VERBOSE
  2532.   if (yymsg != yymsgbuf)
  2533.     YYSTACK_FREE (yymsg);
  2534. #endif
  2535.   /* Make sure YYID is used.  */
  2536.   return YYID (yyresult);
  2537. }


  2538. /* Line 2055 of yacc.c  */
  2539. #line 757 "ada-exp.y"


  2540. /* yylex defined in ada-lex.c: Reads one token, getting characters */
  2541. /* through lexptr.  */

  2542. /* Remap normal flex interface names (yylex) as well as gratuitiously */
  2543. /* global symbol names, so we can have multiple flex-generated parsers */
  2544. /* in gdb.  */

  2545. /* (See note above on previous definitions for YACC.) */

  2546. #define yy_create_buffer ada_yy_create_buffer
  2547. #define yy_delete_buffer ada_yy_delete_buffer
  2548. #define yy_init_buffer ada_yy_init_buffer
  2549. #define yy_load_buffer_state ada_yy_load_buffer_state
  2550. #define yy_switch_to_buffer ada_yy_switch_to_buffer
  2551. #define yyrestart ada_yyrestart
  2552. #define yytext ada_yytext
  2553. #define yywrap ada_yywrap

  2554. static struct obstack temp_parse_space;

  2555. /* The following kludge was found necessary to prevent conflicts between */
  2556. /* defs.h and non-standard stdlib.h files.  */
  2557. #define qsort __qsort__dummy
  2558. #include "ada-lex.c"

  2559. int
  2560. ada_parse (struct parser_state *par_state)
  2561. {
  2562.   int result;
  2563.   struct cleanup *c = make_cleanup_clear_parser_state (&pstate);

  2564.   /* Setting up the parser state.  */
  2565.   gdb_assert (par_state != NULL);
  2566.   pstate = par_state;

  2567.   lexer_init (yyin);                /* (Re-)initialize lexer.  */
  2568.   type_qualifier = NULL;
  2569.   obstack_free (&temp_parse_space, NULL);
  2570.   obstack_init (&temp_parse_space);

  2571.   result = yyparse ();
  2572.   do_cleanups (c);
  2573.   return result;
  2574. }

  2575. void
  2576. yyerror (char *msg)
  2577. {
  2578.   error (_("Error in expression, near `%s'."), lexptr);
  2579. }

  2580. /* Emit expression to access an instance of SYM, in block BLOCK (if
  2581. * non-NULL), and with :: qualification ORIG_LEFT_CONTEXT.  */
  2582. static void
  2583. write_var_from_sym (struct parser_state *par_state,
  2584.                     const struct block *orig_left_context,
  2585.                     const struct block *block,
  2586.                     struct symbol *sym)
  2587. {
  2588.   if (orig_left_context == NULL && symbol_read_needs_frame (sym))
  2589.     {
  2590.       if (innermost_block == 0
  2591.           || contained_in (block, innermost_block))
  2592.         innermost_block = block;
  2593.     }

  2594.   write_exp_elt_opcode (par_state, OP_VAR_VALUE);
  2595.   write_exp_elt_block (par_state, block);
  2596.   write_exp_elt_sym (par_state, sym);
  2597.   write_exp_elt_opcode (par_state, OP_VAR_VALUE);
  2598. }

  2599. /* Write integer or boolean constant ARG of type TYPE.  */

  2600. static void
  2601. write_int (struct parser_state *par_state, LONGEST arg, struct type *type)
  2602. {
  2603.   write_exp_elt_opcode (par_state, OP_LONG);
  2604.   write_exp_elt_type (par_state, type);
  2605.   write_exp_elt_longcst (par_state, arg);
  2606.   write_exp_elt_opcode (par_state, OP_LONG);
  2607. }

  2608. /* Write an OPCODE, string, OPCODE sequence to the current expression.  */
  2609. static void
  2610. write_exp_op_with_string (struct parser_state *par_state,
  2611.                           enum exp_opcode opcode, struct stoken token)
  2612. {
  2613.   write_exp_elt_opcode (par_state, opcode);
  2614.   write_exp_string (par_state, token);
  2615.   write_exp_elt_opcode (par_state, opcode);
  2616. }

  2617. /* Emit expression corresponding to the renamed object named
  2618. * designated by RENAMED_ENTITY[0 .. RENAMED_ENTITY_LEN-1] in the
  2619. * context of ORIG_LEFT_CONTEXT, to which is applied the operations
  2620. * encoded by RENAMING_EXPR.  MAX_DEPTH is the maximum number of
  2621. * cascaded renamings to allow.  If ORIG_LEFT_CONTEXT is null, it
  2622. * defaults to the currently selected block. ORIG_SYMBOL is the
  2623. * symbol that originally encoded the renaming.  It is needed only
  2624. * because its prefix also qualifies any index variables used to index
  2625. * or slice an array.  It should not be necessary once we go to the
  2626. * new encoding entirely (FIXME pnh 7/20/2007).  */

  2627. static void
  2628. write_object_renaming (struct parser_state *par_state,
  2629.                        const struct block *orig_left_context,
  2630.                        const char *renamed_entity, int renamed_entity_len,
  2631.                        const char *renaming_expr, int max_depth)
  2632. {
  2633.   char *name;
  2634.   enum { SIMPLE_INDEX, LOWER_BOUND, UPPER_BOUND } slice_state;
  2635.   struct ada_symbol_info sym_info;

  2636.   if (max_depth <= 0)
  2637.     error (_("Could not find renamed symbol"));

  2638.   if (orig_left_context == NULL)
  2639.     orig_left_context = get_selected_block (NULL);

  2640.   name = obstack_copy0 (&temp_parse_space, renamed_entity, renamed_entity_len);
  2641.   ada_lookup_encoded_symbol (name, orig_left_context, VAR_DOMAIN, &sym_info);
  2642.   if (sym_info.sym == NULL)
  2643.     error (_("Could not find renamed variable: %s"), ada_decode (name));
  2644.   else if (SYMBOL_CLASS (sym_info.sym) == LOC_TYPEDEF)
  2645.     /* We have a renaming of an old-style renaming symbol.  Don't
  2646.        trust the block information.  */
  2647.     sym_info.block = orig_left_context;

  2648.   {
  2649.     const char *inner_renamed_entity;
  2650.     int inner_renamed_entity_len;
  2651.     const char *inner_renaming_expr;

  2652.     switch (ada_parse_renaming (sym_info.sym, &inner_renamed_entity,
  2653.                                 &inner_renamed_entity_len,
  2654.                                 &inner_renaming_expr))
  2655.       {
  2656.       case ADA_NOT_RENAMING:
  2657.         write_var_from_sym (par_state, orig_left_context, sym_info.block,
  2658.                             sym_info.sym);
  2659.         break;
  2660.       case ADA_OBJECT_RENAMING:
  2661.         write_object_renaming (par_state, sym_info.block,
  2662.                                inner_renamed_entity, inner_renamed_entity_len,
  2663.                                inner_renaming_expr, max_depth - 1);
  2664.         break;
  2665.       default:
  2666.         goto BadEncoding;
  2667.       }
  2668.   }

  2669.   slice_state = SIMPLE_INDEX;
  2670.   while (*renaming_expr == 'X')
  2671.     {
  2672.       renaming_expr += 1;

  2673.       switch (*renaming_expr) {
  2674.       case 'A':
  2675.         renaming_expr += 1;
  2676.         write_exp_elt_opcode (par_state, UNOP_IND);
  2677.         break;
  2678.       case 'L':
  2679.         slice_state = LOWER_BOUND;
  2680.         /* FALLTHROUGH */
  2681.       case 'S':
  2682.         renaming_expr += 1;
  2683.         if (isdigit (*renaming_expr))
  2684.           {
  2685.             char *next;
  2686.             long val = strtol (renaming_expr, &next, 10);
  2687.             if (next == renaming_expr)
  2688.               goto BadEncoding;
  2689.             renaming_expr = next;
  2690.             write_exp_elt_opcode (par_state, OP_LONG);
  2691.             write_exp_elt_type (par_state, type_int (par_state));
  2692.             write_exp_elt_longcst (par_state, (LONGEST) val);
  2693.             write_exp_elt_opcode (par_state, OP_LONG);
  2694.           }
  2695.         else
  2696.           {
  2697.             const char *end;
  2698.             char *index_name;
  2699.             struct ada_symbol_info index_sym_info;

  2700.             end = strchr (renaming_expr, 'X');
  2701.             if (end == NULL)
  2702.               end = renaming_expr + strlen (renaming_expr);

  2703.             index_name =
  2704.               obstack_copy0 (&temp_parse_space, renaming_expr,
  2705.                              end - renaming_expr);
  2706.             renaming_expr = end;

  2707.             ada_lookup_encoded_symbol (index_name, NULL, VAR_DOMAIN,
  2708.                                        &index_sym_info);
  2709.             if (index_sym_info.sym == NULL)
  2710.               error (_("Could not find %s"), index_name);
  2711.             else if (SYMBOL_CLASS (index_sym_info.sym) == LOC_TYPEDEF)
  2712.               /* Index is an old-style renaming symbol.  */
  2713.               index_sym_info.block = orig_left_context;
  2714.             write_var_from_sym (par_state, NULL, index_sym_info.block,
  2715.                                 index_sym_info.sym);
  2716.           }
  2717.         if (slice_state == SIMPLE_INDEX)
  2718.           {
  2719.             write_exp_elt_opcode (par_state, OP_FUNCALL);
  2720.             write_exp_elt_longcst (par_state, (LONGEST) 1);
  2721.             write_exp_elt_opcode (par_state, OP_FUNCALL);
  2722.           }
  2723.         else if (slice_state == LOWER_BOUND)
  2724.           slice_state = UPPER_BOUND;
  2725.         else if (slice_state == UPPER_BOUND)
  2726.           {
  2727.             write_exp_elt_opcode (par_state, TERNOP_SLICE);
  2728.             slice_state = SIMPLE_INDEX;
  2729.           }
  2730.         break;

  2731.       case 'R':
  2732.         {
  2733.           struct stoken field_name;
  2734.           const char *end;
  2735.           char *buf;

  2736.           renaming_expr += 1;

  2737.           if (slice_state != SIMPLE_INDEX)
  2738.             goto BadEncoding;
  2739.           end = strchr (renaming_expr, 'X');
  2740.           if (end == NULL)
  2741.             end = renaming_expr + strlen (renaming_expr);
  2742.           field_name.length = end - renaming_expr;
  2743.           buf = xmalloc (end - renaming_expr + 1);
  2744.           field_name.ptr = buf;
  2745.           strncpy (buf, renaming_expr, end - renaming_expr);
  2746.           buf[end - renaming_expr] = '\000';
  2747.           renaming_expr = end;
  2748.           write_exp_op_with_string (par_state, STRUCTOP_STRUCT, field_name);
  2749.           break;
  2750.         }

  2751.       default:
  2752.         goto BadEncoding;
  2753.       }
  2754.     }
  2755.   if (slice_state == SIMPLE_INDEX)
  2756.     return;

  2757. BadEncoding:
  2758.   error (_("Internal error in encoding of renaming declaration"));
  2759. }

  2760. static const struct block*
  2761. block_lookup (const struct block *context, const char *raw_name)
  2762. {
  2763.   const char *name;
  2764.   struct ada_symbol_info *syms;
  2765.   int nsyms;
  2766.   struct symtab *symtab;

  2767.   if (raw_name[0] == '\'')
  2768.     {
  2769.       raw_name += 1;
  2770.       name = raw_name;
  2771.     }
  2772.   else
  2773.     name = ada_encode (raw_name);

  2774.   nsyms = ada_lookup_symbol_list (name, context, VAR_DOMAIN, &syms);
  2775.   if (context == NULL
  2776.       && (nsyms == 0 || SYMBOL_CLASS (syms[0].sym) != LOC_BLOCK))
  2777.     symtab = lookup_symtab (name);
  2778.   else
  2779.     symtab = NULL;

  2780.   if (symtab != NULL)
  2781.     return BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
  2782.   else if (nsyms == 0 || SYMBOL_CLASS (syms[0].sym) != LOC_BLOCK)
  2783.     {
  2784.       if (context == NULL)
  2785.         error (_("No file or function \"%s\"."), raw_name);
  2786.       else
  2787.         error (_("No function \"%s\" in specified context."), raw_name);
  2788.     }
  2789.   else
  2790.     {
  2791.       if (nsyms > 1)
  2792.         warning (_("Function name \"%s\" ambiguous here"), raw_name);
  2793.       return SYMBOL_BLOCK_VALUE (syms[0].sym);
  2794.     }
  2795. }

  2796. static struct symbol*
  2797. select_possible_type_sym (struct ada_symbol_info *syms, int nsyms)
  2798. {
  2799.   int i;
  2800.   int preferred_index;
  2801.   struct type *preferred_type;

  2802.   preferred_index = -1; preferred_type = NULL;
  2803.   for (i = 0; i < nsyms; i += 1)
  2804.     switch (SYMBOL_CLASS (syms[i].sym))
  2805.       {
  2806.       case LOC_TYPEDEF:
  2807.         if (ada_prefer_type (SYMBOL_TYPE (syms[i].sym), preferred_type))
  2808.           {
  2809.             preferred_index = i;
  2810.             preferred_type = SYMBOL_TYPE (syms[i].sym);
  2811.           }
  2812.         break;
  2813.       case LOC_REGISTER:
  2814.       case LOC_ARG:
  2815.       case LOC_REF_ARG:
  2816.       case LOC_REGPARM_ADDR:
  2817.       case LOC_LOCAL:
  2818.       case LOC_COMPUTED:
  2819.         return NULL;
  2820.       default:
  2821.         break;
  2822.       }
  2823.   if (preferred_type == NULL)
  2824.     return NULL;
  2825.   return syms[preferred_index].sym;
  2826. }

  2827. static struct type*
  2828. find_primitive_type (struct parser_state *par_state, char *name)
  2829. {
  2830.   struct type *type;
  2831.   type = language_lookup_primitive_type_by_name (parse_language (par_state),
  2832.                                                  parse_gdbarch (par_state),
  2833.                                                  name);
  2834.   if (type == NULL && strcmp ("system__address", name) == 0)
  2835.     type = type_system_address (par_state);

  2836.   if (type != NULL)
  2837.     {
  2838.       /* Check to see if we have a regular definition of this
  2839.          type that just didn't happen to have been read yet.  */
  2840.       struct symbol *sym;
  2841.       char *expanded_name =
  2842.         (char *) alloca (strlen (name) + sizeof ("standard__"));
  2843.       strcpy (expanded_name, "standard__");
  2844.       strcat (expanded_name, name);
  2845.       sym = ada_lookup_symbol (expanded_name, NULL, VAR_DOMAIN, NULL);
  2846.       if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  2847.         type = SYMBOL_TYPE (sym);
  2848.     }

  2849.   return type;
  2850. }

  2851. static int
  2852. chop_selector (char *name, int end)
  2853. {
  2854.   int i;
  2855.   for (i = end - 1; i > 0; i -= 1)
  2856.     if (name[i] == '.' || (name[i] == '_' && name[i+1] == '_'))
  2857.       return i;
  2858.   return -1;
  2859. }

  2860. /* If NAME is a string beginning with a separator (either '__', or
  2861.    '.'), chop this separator and return the result; else, return
  2862.    NAME.  */

  2863. static char *
  2864. chop_separator (char *name)
  2865. {
  2866.   if (*name == '.')
  2867.    return name + 1;

  2868.   if (name[0] == '_' && name[1] == '_')
  2869.     return name + 2;

  2870.   return name;
  2871. }

  2872. /* Given that SELS is a string of the form (<sep><identifier>)*, where
  2873.    <sep> is '__' or '.', write the indicated sequence of
  2874.    STRUCTOP_STRUCT expression operators. */
  2875. static void
  2876. write_selectors (struct parser_state *par_state, char *sels)
  2877. {
  2878.   while (*sels != '\0')
  2879.     {
  2880.       struct stoken field_name;
  2881.       char *p = chop_separator (sels);
  2882.       sels = p;
  2883.       while (*sels != '\0' && *sels != '.'
  2884.              && (sels[0] != '_' || sels[1] != '_'))
  2885.         sels += 1;
  2886.       field_name.length = sels - p;
  2887.       field_name.ptr = p;
  2888.       write_exp_op_with_string (par_state, STRUCTOP_STRUCT, field_name);
  2889.     }
  2890. }

  2891. /* Write a variable access (OP_VAR_VALUE) to ambiguous encoded name
  2892.    NAME[0..LEN-1], in block context BLOCK, to be resolved later.  Writes
  2893.    a temporary symbol that is valid until the next call to ada_parse.
  2894.    */
  2895. static void
  2896. write_ambiguous_var (struct parser_state *par_state,
  2897.                      const struct block *block, char *name, int len)
  2898. {
  2899.   struct symbol *sym =
  2900.     obstack_alloc (&temp_parse_space, sizeof (struct symbol));
  2901.   memset (sym, 0, sizeof (struct symbol));
  2902.   SYMBOL_DOMAIN (sym) = UNDEF_DOMAIN;
  2903.   SYMBOL_LINKAGE_NAME (sym) = obstack_copy0 (&temp_parse_space, name, len);
  2904.   SYMBOL_LANGUAGE (sym) = language_ada;

  2905.   write_exp_elt_opcode (par_state, OP_VAR_VALUE);
  2906.   write_exp_elt_block (par_state, block);
  2907.   write_exp_elt_sym (par_state, sym);
  2908.   write_exp_elt_opcode (par_state, OP_VAR_VALUE);
  2909. }

  2910. /* A convenient wrapper around ada_get_field_index that takes
  2911.    a non NUL-terminated FIELD_NAME0 and a FIELD_NAME_LEN instead
  2912.    of a NUL-terminated field name.  */

  2913. static int
  2914. ada_nget_field_index (const struct type *type, const char *field_name0,
  2915.                       int field_name_len, int maybe_missing)
  2916. {
  2917.   char *field_name = alloca ((field_name_len + 1) * sizeof (char));

  2918.   strncpy (field_name, field_name0, field_name_len);
  2919.   field_name[field_name_len] = '\0';
  2920.   return ada_get_field_index (type, field_name, maybe_missing);
  2921. }

  2922. /* If encoded_field_name is the name of a field inside symbol SYM,
  2923.    then return the type of that field.  Otherwise, return NULL.

  2924.    This function is actually recursive, so if ENCODED_FIELD_NAME
  2925.    doesn't match one of the fields of our symbol, then try to see
  2926.    if ENCODED_FIELD_NAME could not be a succession of field names
  2927.    (in other words, the user entered an expression of the form
  2928.    TYPE_NAME.FIELD1.FIELD2.FIELD3), in which case we evaluate
  2929.    each field name sequentially to obtain the desired field type.
  2930.    In case of failure, we return NULL.  */

  2931. static struct type *
  2932. get_symbol_field_type (struct symbol *sym, char *encoded_field_name)
  2933. {
  2934.   char *field_name = encoded_field_name;
  2935.   char *subfield_name;
  2936.   struct type *type = SYMBOL_TYPE (sym);
  2937.   int fieldno;

  2938.   if (type == NULL || field_name == NULL)
  2939.     return NULL;
  2940.   type = check_typedef (type);

  2941.   while (field_name[0] != '\0')
  2942.     {
  2943.       field_name = chop_separator (field_name);

  2944.       fieldno = ada_get_field_index (type, field_name, 1);
  2945.       if (fieldno >= 0)
  2946.         return TYPE_FIELD_TYPE (type, fieldno);

  2947.       subfield_name = field_name;
  2948.       while (*subfield_name != '\0' && *subfield_name != '.'
  2949.              && (subfield_name[0] != '_' || subfield_name[1] != '_'))
  2950.         subfield_name += 1;

  2951.       if (subfield_name[0] == '\0')
  2952.         return NULL;

  2953.       fieldno = ada_nget_field_index (type, field_name,
  2954.                                       subfield_name - field_name, 1);
  2955.       if (fieldno < 0)
  2956.         return NULL;

  2957.       type = TYPE_FIELD_TYPE (type, fieldno);
  2958.       field_name = subfield_name;
  2959.     }

  2960.   return NULL;
  2961. }

  2962. /* Look up NAME0 (an unencoded identifier or dotted name) in BLOCK (or
  2963.    expression_block_context if NULL).  If it denotes a type, return
  2964.    that type.  Otherwise, write expression code to evaluate it as an
  2965.    object and return NULL. In this second case, NAME0 will, in general,
  2966.    have the form <name>(.<selector_name>)*, where <name> is an object
  2967.    or renaming encoded in the debugging data.  Calls error if no
  2968.    prefix <name> matches a name in the debugging data (i.e., matches
  2969.    either a complete name or, as a wild-card match, the final
  2970.    identifier).  */

  2971. static struct type*
  2972. write_var_or_type (struct parser_state *par_state,
  2973.                    const struct block *block, struct stoken name0)
  2974. {
  2975.   int depth;
  2976.   char *encoded_name;
  2977.   int name_len;

  2978.   if (block == NULL)
  2979.     block = expression_context_block;

  2980.   encoded_name = ada_encode (name0.ptr);
  2981.   name_len = strlen (encoded_name);
  2982.   encoded_name = obstack_copy0 (&temp_parse_space, encoded_name, name_len);
  2983.   for (depth = 0; depth < MAX_RENAMING_CHAIN_LENGTH; depth += 1)
  2984.     {
  2985.       int tail_index;

  2986.       tail_index = name_len;
  2987.       while (tail_index > 0)
  2988.         {
  2989.           int nsyms;
  2990.           struct ada_symbol_info *syms;
  2991.           struct symbol *type_sym;
  2992.           struct symbol *renaming_sym;
  2993.           const char* renaming;
  2994.           int renaming_len;
  2995.           const char* renaming_expr;
  2996.           int terminator = encoded_name[tail_index];

  2997.           encoded_name[tail_index] = '\0';
  2998.           nsyms = ada_lookup_symbol_list (encoded_name, block,
  2999.                                           VAR_DOMAIN, &syms);
  3000.           encoded_name[tail_index] = terminator;

  3001.           /* A single symbol may rename a package or object. */

  3002.           /* This should go away when we move entirely to new version.
  3003.              FIXME pnh 7/20/2007. */
  3004.           if (nsyms == 1)
  3005.             {
  3006.               struct symbol *ren_sym =
  3007.                 ada_find_renaming_symbol (syms[0].sym, syms[0].block);

  3008.               if (ren_sym != NULL)
  3009.                 syms[0].sym = ren_sym;
  3010.             }

  3011.           type_sym = select_possible_type_sym (syms, nsyms);

  3012.           if (type_sym != NULL)
  3013.             renaming_sym = type_sym;
  3014.           else if (nsyms == 1)
  3015.             renaming_sym = syms[0].sym;
  3016.           else
  3017.             renaming_sym = NULL;

  3018.           switch (ada_parse_renaming (renaming_sym, &renaming,
  3019.                                       &renaming_len, &renaming_expr))
  3020.             {
  3021.             case ADA_NOT_RENAMING:
  3022.               break;
  3023.             case ADA_PACKAGE_RENAMING:
  3024.             case ADA_EXCEPTION_RENAMING:
  3025.             case ADA_SUBPROGRAM_RENAMING:
  3026.               {
  3027.                 char *new_name
  3028.                   = obstack_alloc (&temp_parse_space,
  3029.                                    renaming_len + name_len - tail_index + 1);
  3030.                 strncpy (new_name, renaming, renaming_len);
  3031.                 strcpy (new_name + renaming_len, encoded_name + tail_index);
  3032.                 encoded_name = new_name;
  3033.                 name_len = renaming_len + name_len - tail_index;
  3034.                 goto TryAfterRenaming;
  3035.               }
  3036.             case ADA_OBJECT_RENAMING:
  3037.               write_object_renaming (par_state, block, renaming, renaming_len,
  3038.                                      renaming_expr, MAX_RENAMING_CHAIN_LENGTH);
  3039.               write_selectors (par_state, encoded_name + tail_index);
  3040.               return NULL;
  3041.             default:
  3042.               internal_error (__FILE__, __LINE__,
  3043.                               _("impossible value from ada_parse_renaming"));
  3044.             }

  3045.           if (type_sym != NULL)
  3046.             {
  3047.               struct type *field_type;

  3048.               if (tail_index == name_len)
  3049.                 return SYMBOL_TYPE (type_sym);

  3050.               /* We have some extraneous characters after the type name.
  3051.                  If this is an expression "TYPE_NAME.FIELD0.[...].FIELDN",
  3052.                  then try to get the type of FIELDN.  */
  3053.               field_type
  3054.                 = get_symbol_field_type (type_sym, encoded_name + tail_index);
  3055.               if (field_type != NULL)
  3056.                 return field_type;
  3057.               else
  3058.                 error (_("Invalid attempt to select from type: \"%s\"."),
  3059.                        name0.ptr);
  3060.             }
  3061.           else if (tail_index == name_len && nsyms == 0)
  3062.             {
  3063.               struct type *type = find_primitive_type (par_state,
  3064.                                                        encoded_name);

  3065.               if (type != NULL)
  3066.                 return type;
  3067.             }

  3068.           if (nsyms == 1)
  3069.             {
  3070.               write_var_from_sym (par_state, block, syms[0].block,
  3071.                                   syms[0].sym);
  3072.               write_selectors (par_state, encoded_name + tail_index);
  3073.               return NULL;
  3074.             }
  3075.           else if (nsyms == 0)
  3076.             {
  3077.               struct bound_minimal_symbol msym
  3078.                 = ada_lookup_simple_minsym (encoded_name);
  3079.               if (msym.minsym != NULL)
  3080.                 {
  3081.                   write_exp_msymbol (par_state, msym);
  3082.                   /* Maybe cause error here rather than later? FIXME? */
  3083.                   write_selectors (par_state, encoded_name + tail_index);
  3084.                   return NULL;
  3085.                 }

  3086.               if (tail_index == name_len
  3087.                   && strncmp (encoded_name, "standard__",
  3088.                               sizeof ("standard__") - 1) == 0)
  3089.                 error (_("No definition of \"%s\" found."), name0.ptr);

  3090.               tail_index = chop_selector (encoded_name, tail_index);
  3091.             }
  3092.           else
  3093.             {
  3094.               write_ambiguous_var (par_state, block, encoded_name,
  3095.                                    tail_index);
  3096.               write_selectors (par_state, encoded_name + tail_index);
  3097.               return NULL;
  3098.             }
  3099.         }

  3100.       if (!have_full_symbols () && !have_partial_symbols () && block == NULL)
  3101.         error (_("No symbol table is loaded.  Use the \"file\" command."));
  3102.       if (block == expression_context_block)
  3103.         error (_("No definition of \"%s\" in current context."), name0.ptr);
  3104.       else
  3105.         error (_("No definition of \"%s\" in specified context."), name0.ptr);

  3106.     TryAfterRenaming: ;
  3107.     }

  3108.   error (_("Could not find renamed symbol \"%s\""), name0.ptr);

  3109. }

  3110. /* Write a left side of a component association (e.g., NAME in NAME =>
  3111.    exp).  If NAME has the form of a selected component, write it as an
  3112.    ordinary expression.  If it is a simple variable that unambiguously
  3113.    corresponds to exactly one symbol that does not denote a type or an
  3114.    object renaming, also write it normally as an OP_VAR_VALUE.
  3115.    Otherwise, write it as an OP_NAME.

  3116.    Unfortunately, we don't know at this point whether NAME is supposed
  3117.    to denote a record component name or the value of an array index.
  3118.    Therefore, it is not appropriate to disambiguate an ambiguous name
  3119.    as we normally would, nor to replace a renaming with its referent.
  3120.    As a result, in the (one hopes) rare case that one writes an
  3121.    aggregate such as (R => 42) where R renames an object or is an
  3122.    ambiguous name, one must write instead ((R) => 42). */

  3123. static void
  3124. write_name_assoc (struct parser_state *par_state, struct stoken name)
  3125. {
  3126.   if (strchr (name.ptr, '.') == NULL)
  3127.     {
  3128.       struct ada_symbol_info *syms;
  3129.       int nsyms = ada_lookup_symbol_list (name.ptr, expression_context_block,
  3130.                                           VAR_DOMAIN, &syms);
  3131.       if (nsyms != 1 || SYMBOL_CLASS (syms[0].sym) == LOC_TYPEDEF)
  3132.         write_exp_op_with_string (par_state, OP_NAME, name);
  3133.       else
  3134.         write_var_from_sym (par_state, NULL, syms[0].block, syms[0].sym);
  3135.     }
  3136.   else
  3137.     if (write_var_or_type (par_state, NULL, name) != NULL)
  3138.       error (_("Invalid use of type."));
  3139. }

  3140. /* Convert the character literal whose ASCII value would be VAL to the
  3141.    appropriate value of type TYPE, if there is a translation.
  3142.    Otherwise return VAL.  Hence, in an enumeration type ('A', 'B'),
  3143.    the literal 'A' (VAL == 65), returns 0.  */

  3144. static LONGEST
  3145. convert_char_literal (struct type *type, LONGEST val)
  3146. {
  3147.   char name[7];
  3148.   int f;

  3149.   if (type == NULL)
  3150.     return val;
  3151.   type = check_typedef (type);
  3152.   if (TYPE_CODE (type) != TYPE_CODE_ENUM)
  3153.     return val;

  3154.   xsnprintf (name, sizeof (name), "QU%02x", (int) val);
  3155.   for (f = 0; f < TYPE_NFIELDS (type); f += 1)
  3156.     {
  3157.       if (strcmp (name, TYPE_FIELD_NAME (type, f)) == 0)
  3158.         return TYPE_FIELD_ENUMVAL (type, f);
  3159.     }
  3160.   return val;
  3161. }

  3162. static struct type *
  3163. type_int (struct parser_state *par_state)
  3164. {
  3165.   return parse_type (par_state)->builtin_int;
  3166. }

  3167. static struct type *
  3168. type_long (struct parser_state *par_state)
  3169. {
  3170.   return parse_type (par_state)->builtin_long;
  3171. }

  3172. static struct type *
  3173. type_long_long (struct parser_state *par_state)
  3174. {
  3175.   return parse_type (par_state)->builtin_long_long;
  3176. }

  3177. static struct type *
  3178. type_float (struct parser_state *par_state)
  3179. {
  3180.   return parse_type (par_state)->builtin_float;
  3181. }

  3182. static struct type *
  3183. type_double (struct parser_state *par_state)
  3184. {
  3185.   return parse_type (par_state)->builtin_double;
  3186. }

  3187. static struct type *
  3188. type_long_double (struct parser_state *par_state)
  3189. {
  3190.   return parse_type (par_state)->builtin_long_double;
  3191. }

  3192. static struct type *
  3193. type_char (struct parser_state *par_state)
  3194. {
  3195.   return language_string_char_type (parse_language (par_state),
  3196.                                     parse_gdbarch (par_state));
  3197. }

  3198. static struct type *
  3199. type_boolean (struct parser_state *par_state)
  3200. {
  3201.   return parse_type (par_state)->builtin_bool;
  3202. }

  3203. static struct type *
  3204. type_system_address (struct parser_state *par_state)
  3205. {
  3206.   struct type *type
  3207.     = language_lookup_primitive_type_by_name (parse_language (par_state),
  3208.                                               parse_gdbarch (par_state),
  3209.                                               "system__address");
  3210.   return  type != NULL ? type : parse_type (par_state)->builtin_data_ptr;
  3211. }

  3212. /* Provide a prototype to silence -Wmissing-prototypes.  */
  3213. extern initialize_file_ftype _initialize_ada_exp;

  3214. void
  3215. _initialize_ada_exp (void)
  3216. {
  3217.   obstack_init (&temp_parse_space);
  3218. }