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

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

  61. /* 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.  Note that 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. #define        yymaxdepth pascal_maxdepth
  68. #define        yyparse        pascal_parse_internal
  69. #define        yylex        pascal_lex
  70. #define        yyerror        pascal_error
  71. #define        yylval        pascal_lval
  72. #define        yychar        pascal_char
  73. #define        yydebug        pascal_debug
  74. #define        yypact        pascal_pact
  75. #define        yyr1        pascal_r1
  76. #define        yyr2        pascal_r2
  77. #define        yydef        pascal_def
  78. #define        yychk        pascal_chk
  79. #define        yypgo        pascal_pgo
  80. #define        yyact        pascal_act
  81. #define        yyexca        pascal_exca
  82. #define yyerrflag pascal_errflag
  83. #define yynerrs        pascal_nerrs
  84. #define        yyps        pascal_ps
  85. #define        yypv        pascal_pv
  86. #define        yys        pascal_s
  87. #define        yy_yys        pascal_yys
  88. #define        yystate        pascal_state
  89. #define        yytmp        pascal_tmp
  90. #define        yyv        pascal_v
  91. #define        yy_yyv        pascal_yyv
  92. #define        yyval        pascal_val
  93. #define        yylloc        pascal_lloc
  94. #define yyreds        pascal_reds                /* With YYDEBUG defined */
  95. #define yytoks        pascal_toks                /* With YYDEBUG defined */
  96. #define yyname        pascal_name                /* With YYDEBUG defined */
  97. #define yyrule        pascal_rule                /* With YYDEBUG defined */
  98. #define yylhs        pascal_yylhs
  99. #define yylen        pascal_yylen
  100. #define yydefred pascal_yydefred
  101. #define yydgoto        pascal_yydgoto
  102. #define yysindex pascal_yysindex
  103. #define yyrindex pascal_yyrindex
  104. #define yygindex pascal_yygindex
  105. #define yytable         pascal_yytable
  106. #define yycheck         pascal_yycheck
  107. #define yyss        pascal_yyss
  108. #define yysslim        pascal_yysslim
  109. #define yyssp        pascal_yyssp
  110. #define yystacksize pascal_yystacksize
  111. #define yyvs        pascal_yyvs
  112. #define yyvsp        pascal_yyvsp

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

  116. #define YYFPRINTF parser_fprintf

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

  119. static struct parser_state *pstate = NULL;

  120. int yyparse (void);

  121. static int yylex (void);

  122. void yyerror (char *);

  123. static char *uptok (const char *, int);

  124. /* Line 371 of yacc.c  */
  125. #line 159 "p-exp.c"

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

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


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

  147. /* Tokens.  */
  148. #ifndef YYTOKENTYPE
  149. # define YYTOKENTYPE
  150.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  151.       know about them.  */
  152.    enum yytokentype {
  153.      INT = 258,
  154.      FLOAT = 259,
  155.      STRING = 260,
  156.      FIELDNAME = 261,
  157.      COMPLETE = 262,
  158.      NAME = 263,
  159.      TYPENAME = 264,
  160.      NAME_OR_INT = 265,
  161.      STRUCT = 266,
  162.      CLASS = 267,
  163.      SIZEOF = 268,
  164.      COLONCOLON = 269,
  165.      ERROR = 270,
  166.      VARIABLE = 271,
  167.      THIS = 272,
  168.      TRUEKEYWORD = 273,
  169.      FALSEKEYWORD = 274,
  170.      ABOVE_COMMA = 275,
  171.      ASSIGN = 276,
  172.      NOT = 277,
  173.      OR = 278,
  174.      XOR = 279,
  175.      ANDAND = 280,
  176.      NOTEQUAL = 281,
  177.      GEQ = 282,
  178.      LEQ = 283,
  179.      MOD = 284,
  180.      DIV = 285,
  181.      RSH = 286,
  182.      LSH = 287,
  183.      DECREMENT = 288,
  184.      INCREMENT = 289,
  185.      UNARY = 290,
  186.      ARROW = 291,
  187.      BLOCKNAME = 292
  188.    };
  189. #endif
  190. /* Tokens.  */
  191. #define INT 258
  192. #define FLOAT 259
  193. #define STRING 260
  194. #define FIELDNAME 261
  195. #define COMPLETE 262
  196. #define NAME 263
  197. #define TYPENAME 264
  198. #define NAME_OR_INT 265
  199. #define STRUCT 266
  200. #define CLASS 267
  201. #define SIZEOF 268
  202. #define COLONCOLON 269
  203. #define ERROR 270
  204. #define VARIABLE 271
  205. #define THIS 272
  206. #define TRUEKEYWORD 273
  207. #define FALSEKEYWORD 274
  208. #define ABOVE_COMMA 275
  209. #define ASSIGN 276
  210. #define NOT 277
  211. #define OR 278
  212. #define XOR 279
  213. #define ANDAND 280
  214. #define NOTEQUAL 281
  215. #define GEQ 282
  216. #define LEQ 283
  217. #define MOD 284
  218. #define DIV 285
  219. #define RSH 286
  220. #define LSH 287
  221. #define DECREMENT 288
  222. #define INCREMENT 289
  223. #define UNARY 290
  224. #define ARROW 291
  225. #define BLOCKNAME 292



  226. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  227. typedef union YYSTYPE
  228. {
  229. /* Line 387 of yacc.c  */
  230. #line 140 "p-exp.y"

  231.     LONGEST lval;
  232.     struct {
  233.       LONGEST val;
  234.       struct type *type;
  235.     } typed_val_int;
  236.     struct {
  237.       DOUBLEST dval;
  238.       struct type *type;
  239.     } typed_val_float;
  240.     struct symbol *sym;
  241.     struct type *tval;
  242.     struct stoken sval;
  243.     struct ttype tsym;
  244.     struct symtoken ssym;
  245.     int voidval;
  246.     const struct block *bval;
  247.     enum exp_opcode opcode;
  248.     struct internalvar *ivar;

  249.     struct type **tvec;
  250.     int *ivec;


  251. /* Line 387 of yacc.c  */
  252. #line 298 "p-exp.c"
  253. } YYSTYPE;
  254. # define YYSTYPE_IS_TRIVIAL 1
  255. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  256. # define YYSTYPE_IS_DECLARED 1
  257. #endif

  258. extern YYSTYPE yylval;

  259. #ifdef YYPARSE_PARAM
  260. #if defined __STDC__ || defined __cplusplus
  261. int yyparse (void *YYPARSE_PARAM);
  262. #else
  263. int yyparse ();
  264. #endif
  265. #else /* ! YYPARSE_PARAM */
  266. #if defined __STDC__ || defined __cplusplus
  267. int yyparse (void);
  268. #else
  269. int yyparse ();
  270. #endif
  271. #endif /* ! YYPARSE_PARAM */



  272. /* Copy the second part of user declarations.  */
  273. /* Line 390 of yacc.c  */
  274. #line 164 "p-exp.y"

  275. /* YYSTYPE gets defined by %union */
  276. static int parse_number (struct parser_state *,
  277.                          const char *, int, int, YYSTYPE *);

  278. static struct type *current_type;
  279. static struct internalvar *intvar;
  280. static int leftdiv_is_integer;
  281. static void push_current_type (void);
  282. static void pop_current_type (void);
  283. static int search_field;

  284. /* Line 390 of yacc.c  */
  285. #line 339 "p-exp.c"

  286. #ifdef short
  287. # undef short
  288. #endif

  289. #ifdef YYTYPE_UINT8
  290. typedef YYTYPE_UINT8 yytype_uint8;
  291. #else
  292. typedef unsigned char yytype_uint8;
  293. #endif

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

  302. #ifdef YYTYPE_UINT16
  303. typedef YYTYPE_UINT16 yytype_uint16;
  304. #else
  305. typedef unsigned short int yytype_uint16;
  306. #endif

  307. #ifdef YYTYPE_INT16
  308. typedef YYTYPE_INT16 yytype_int16;
  309. #else
  310. typedef short int yytype_int16;
  311. #endif

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

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

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

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

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

  360. #if ! defined yyoverflow || YYERROR_VERBOSE

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

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

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


  425. #if (! defined yyoverflow \
  426.      && (! defined __cplusplus \
  427.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

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

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

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

  441. # define YYCOPY_NEEDED 1

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

  457. #endif

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

  477. /* YYFINAL -- State number of the termination state.  */
  478. #define YYFINAL  3
  479. /* YYLAST -- Last index in YYTABLE.  */
  480. #define YYLAST   383

  481. /* YYNTOKENS -- Number of terminals.  */
  482. #define YYNTOKENS  53
  483. /* YYNNTS -- Number of nonterminals.  */
  484. #define YYNNTS  20
  485. /* YYNRULES -- Number of rules.  */
  486. #define YYNRULES  77
  487. /* YYNRULES -- Number of states.  */
  488. #define YYNSTATES  126

  489. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  490. #define YYUNDEFTOK  2
  491. #define YYMAXUTOK   292

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

  494. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  495. static const yytype_uint8 yytranslate[] =
  496. {
  497.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  498.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  499.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  500.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  501.       47,    51,    40,    38,    20,    39,    45,    41,     2,     2,
  502.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  503.       29,    27,    30,     2,    37,     2,     2,     2,     2,     2,
  504.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  505.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  506.        2,    46,     2,    52,    49,     2,     2,     2,     2,     2,
  507.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  508.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  509.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  510.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  511.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  512.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  513.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  514.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  515.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  516.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  517.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  518.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  519.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  520.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  521.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  522.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  523.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  524.       15,    16,    17,    18,    19,    21,    22,    23,    24,    25,
  525.       26,    28,    31,    32,    33,    34,    35,    36,    42,    43,
  526.       44,    48,    50
  527. };

  528. #if YYDEBUG
  529. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  530.    YYRHS.  */
  531. static const yytype_uint8 yyprhs[] =
  532. {
  533.        0,     0,     3,     4,     7,     9,    11,    13,    15,    19,
  534.       22,    25,    28,    31,    36,    41,    44,    47,    50,    54,
  535.       57,    58,    64,    65,    71,    72,    74,    78,    83,    87,
  536.       91,    92,    97,   101,   105,   109,   113,   117,   121,   125,
  537.      129,   133,   137,   141,   145,   149,   153,   157,   161,   163,
  538.      165,   167,   169,   171,   173,   175,   180,   185,   187,   189,
  539.      191,   195,   199,   203,   205,   208,   210,   212,   214,   217,
  540.      219,   222,   225,   227,   229,   231,   233,   235
  541. };

  542. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  543. static const yytype_int8 yyrhs[] =
  544. {
  545.       54,     0,    -1,    -1,    55,    56,    -1,    58,    -1,    57,
  546.       -1,    69,    -1,    59,    -1,    58,    20,    59,    -1,    59,
  547.       49,    -1,    37,    59,    -1,    39,    59,    -1,    23,    59,
  548.       -1,    43,    47,    59,    51,    -1,    42,    47,    59,    51,
  549.       -1,    59,    45,    -1,    60,     6,    -1,    60,    71,    -1,
  550.       60,    71,     7,    -1,    60,     7,    -1,    -1,    59,    46,
  551.       61,    58,    52,    -1,    -1,    59,    47,    62,    63,    51,
  552.       -1,    -1,    59,    -1,    63,    20,    59,    -1,    69,    47,
  553.       59,    51,    -1,    47,    58,    51,    -1,    59,    40,    59,
  554.       -1,    -1,    59,    41,    64,    59,    -1,    59,    34,    59,
  555.       -1,    59,    33,    59,    -1,    59,    38,    59,    -1,    59,
  556.       39,    59,    -1,    59,    36,    59,    -1,    59,    35,    59,
  557.       -1,    59,    27,    59,    -1,    59,    28,    59,    -1,    59,
  558.       32,    59,    -1,    59,    31,    59,    -1,    59,    29,    59,
  559.       -1,    59,    30,    59,    -1,    59,    26,    59,    -1,    59,
  560.       25,    59,    -1,    59,    24,    59,    -1,    59,    22,    59,
  561.       -1,    18,    -1,    19,    -1,     3,    -1,    10,    -1,     4,
  562.       -1,    66,    -1,    16,    -1,    13,    47,    69,    51,    -1,
  563.       13,    47,    59,    51,    -1,     5,    -1,    17,    -1,    50,
  564.       -1,    65,    14,    71,    -1,    65,    14,    71,    -1,    70,
  565.       14,    71,    -1,    67,    -1,    14,    71,    -1,    72,    -1,
  566.       70,    -1,    68,    -1,    49,    70,    -1,     9,    -1,    11,
  567.       71,    -1,    12,    71,    -1,     8,    -1,    50,    -1,     9,
  568.       -1,    10,    -1,     8,    -1,    50,    -1
  569. };

  570. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  571. static const yytype_uint16 yyrline[] =
  572. {
  573.        0,   246,   246,   246,   255,   256,   259,   266,   267,   272,
  574.      278,   284,   288,   292,   296,   301,   305,   323,   339,   345,
  575.      357,   355,   388,   385,   401,   402,   404,   408,   423,   429,
  576.      433,   433,   456,   460,   464,   468,   472,   476,   480,   486,
  577.      492,   498,   504,   510,   516,   520,   524,   528,   532,   539,
  578.      546,   554,   568,   576,   579,   594,   605,   609,   641,   669,
  579.      687,   697,   712,   727,   728,   759,   831,   842,   846,   848,
  580.      850,   853,   861,   862,   863,   864,   867,   868
  581. };
  582. #endif

  583. #if YYDEBUG || YYERROR_VERBOSE || 0
  584. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  585.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  586. static const char *const yytname[] =
  587. {
  588.   "$end", "error", "$undefined", "INT", "FLOAT", "STRING", "FIELDNAME",
  589.   "COMPLETE", "NAME", "TYPENAME", "NAME_OR_INT", "STRUCT", "CLASS",
  590.   "SIZEOF", "COLONCOLON", "ERROR", "VARIABLE", "THIS", "TRUEKEYWORD",
  591.   "FALSEKEYWORD", "','", "ABOVE_COMMA", "ASSIGN", "NOT", "OR", "XOR",
  592.   "ANDAND", "'='", "NOTEQUAL", "'<'", "'>'", "GEQ", "LEQ", "MOD", "DIV",
  593.   "RSH", "LSH", "'@'", "'+'", "'-'", "'*'", "'/'", "DECREMENT",
  594.   "INCREMENT", "UNARY", "'.'", "'['", "'('", "ARROW", "'^'", "BLOCKNAME",
  595.   "')'", "']'", "$accept", "start", "$@1", "normal_start", "type_exp",
  596.   "exp1", "exp", "field_exp", "$@2", "$@3", "arglist", "$@4", "block",
  597.   "variable", "qualified_name", "ptype", "type", "typebase", "name",
  598.   "name_not_typename", YY_NULL
  599. };
  600. #endif

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

  614. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  615. static const yytype_uint8 yyr1[] =
  616. {
  617.        0,    53,    55,    54,    56,    56,    57,    58,    58,    59,
  618.       59,    59,    59,    59,    59,    60,    59,    59,    59,    59,
  619.       61,    59,    62,    59,    63,    63,    63,    59,    59,    59,
  620.       64,    59,    59,    59,    59,    59,    59,    59,    59,    59,
  621.       59,    59,    59,    59,    59,    59,    59,    59,    59,    59,
  622.       59,    59,    59,    59,    59,    59,    59,    59,    59,    65,
  623.       65,    66,    67,    66,    66,    66,    68,    69,    70,    70,
  624.       70,    70,    71,    71,    71,    71,    72,    72
  625. };

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

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

  657. /* YYDEFGOTO[NTERM-NUM].  */
  658. static const yytype_int8 yydefgoto[] =
  659. {
  660.       -1,     1,     2,    26,    27,    28,    29,    30,   107,   108,
  661.      120,   106,    31,    32,    33,    34,    47,    36,    42,    37
  662. };

  663. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  664.    STATE-NUM.  */
  665. #define YYPACT_NINF -43
  666. static const yytype_int16 yypact[] =
  667. {
  668.      -43,     8,    90,   -43,   -43,   -43,   -43,   -43,   -43,   -43,
  669.        7,     7,   -40,     7,   -43,   -43,   -43,   -43,    90,    90,
  670.       90,   -27,   -23,    90,    10,    13,   -43,   -43,    14,   231,
  671.        4,    21,   -43,   -43,   -43,   -19,    41,   -43,   -43,   -43,
  672.      -43,   -43,   -43,   -43,    90,   -43,    36,   -19,    36,    36,
  673.       90,    90,     5,   -43,    90,    90,    90,    90,    90,    90,
  674.       90,    90,    90,    90,    90,    90,    90,    90,    90,    90,
  675.       90,    90,   -43,   -43,   -43,   -43,   -43,   -43,   -43,    23,
  676.        7,    90,     7,   119,   -42,   147,   175,   -43,   231,   231,
  677.      256,   280,   303,   324,   324,    31,    31,    31,    31,    76,
  678.       76,    76,    76,   334,   334,    36,    90,    90,    90,   -43,
  679.       44,   203,   -43,   -43,   -43,   -43,   -43,    36,     9,   231,
  680.       11,   -43,   -43,    90,   -43,   231
  681. };

  682. /* YYPGOTO[NTERM-NUM].  */
  683. static const yytype_int8 yypgoto[] =
  684. {
  685.      -43,   -43,   -43,   -43,   -43,   -20,   -18,   -43,   -43,   -43,
  686.      -43,   -43,   -43,   -43,   -43,   -43,    16,    50,    -7,   -43
  687. };

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

  734. #define yypact_value_is_default(Yystate) \
  735.   (!!((Yystate) == (-43)))

  736. #define yytable_value_is_error(Yytable_value) \
  737.   YYID (0)

  738. static const yytype_int8 yycheck[] =
  739. {
  740.       18,    19,    20,    23,    11,    47,    13,    47,     0,    51,
  741.        6,     7,     8,     9,    10,     8,     9,    10,     2,     9,
  742.       47,    11,    12,    30,    47,    20,    44,    14,    47,    20,
  743.        7,    20,    50,    51,    20,    14,    54,    55,    56,    57,
  744.       58,    59,    60,    61,    62,    63,    64,    65,    66,    67,
  745.       68,    69,    70,    71,    50,    14,    51,    50,    14,    49,
  746.       44,    52,    51,    81,    33,    34,    35,    36,    -1,    38,
  747.       39,    40,    41,    80,    24,    82,    45,    46,    47,    -1,
  748.       49,    45,    46,    47,    -1,    49,    -1,   107,   106,    -1,
  749.      108,    -1,    -1,     3,     4,     5,    -1,    -1,     8,     9,
  750.       10,    11,    12,    13,    14,   123,    16,    17,    18,    19,
  751.       -1,    -1,    -1,    23,    38,    39,    40,    41,    -1,    -1,
  752.       -1,    45,    46,    47,    -1,    49,    -1,    37,    -1,    39,
  753.       -1,    -1,    42,    43,    -1,    -1,    -1,    47,    -1,    49,
  754.       50,    22,    -1,    24,    25,    26,    27,    28,    29,    30,
  755.       31,    32,    33,    34,    35,    36,    -1,    38,    39,    40,
  756.       41,    -1,    -1,    -1,    45,    46,    47,    -1,    49,    22,
  757.       51,    24,    25,    26,    27,    28,    29,    30,    31,    32,
  758.       33,    34,    35,    36,    -1,    38,    39,    40,    41,    -1,
  759.       -1,    -1,    45,    46,    47,    -1,    49,    22,    51,    24,
  760.       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
  761.       35,    36,    -1,    38,    39,    40,    41,    -1,    -1,    -1,
  762.       45,    46,    47,    -1,    49,    22,    51,    24,    25,    26,
  763.       27,    28,    29,    30,    31,    32,    33,    34,    35,    36,
  764.       -1,    38,    39,    40,    41,    -1,    -1,    -1,    45,    46,
  765.       47,    -1,    49,    22,    51,    24,    25,    26,    27,    28,
  766.       29,    30,    31,    32,    33,    34,    35,    36,    -1,    38,
  767.       39,    40,    41,    -1,    -1,    -1,    45,    46,    47,    -1,
  768.       49,    25,    26,    27,    28,    29,    30,    31,    32,    33,
  769.       34,    35,    36,    -1,    38,    39,    40,    41,    -1,    -1,
  770.       -1,    45,    46,    47,    -1,    49,    26,    27,    28,    29,
  771.       30,    31,    32,    33,    34,    35,    36,    -1,    38,    39,
  772.       40,    41,    -1,    -1,    -1,    45,    46,    47,    -1,    49,
  773.       27,    28,    29,    30,    31,    32,    33,    34,    35,    36,
  774.       -1,    38,    39,    40,    41,    -1,    -1,    -1,    45,    46,
  775.       47,    -1,    49,    29,    30,    31,    32,    33,    34,    35,
  776.       36,    -1,    38,    39,    40,    41,    -1,    -1,    -1,    45,
  777.       46,    47,    -1,    49,    40,    41,    -1,    -1,    -1,    45,
  778.       46,    47,    -1,    49
  779. };

  780. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  781.    symbol of state STATE-NUM.  */
  782. static const yytype_uint8 yystos[] =
  783. {
  784.        0,    54,    55,     0,     3,     4,     5,     8,     9,    10,
  785.       11,    12,    13,    14,    16,    17,    18,    19,    23,    37,
  786.       39,    42,    43,    47,    49,    50,    56,    57,    58,    59,
  787.       60,    65,    66,    67,    68,    69,    70,    72,     8,     9,
  788.       10,    50,    71,    71,    47,    71,    59,    69,    59,    59,
  789.       47,    47,    58,    70,    20,    22,    24,    25,    26,    27,
  790.       28,    29,    30,    31,    32,    33,    34,    35,    36,    38,
  791.       39,    40,    41,    45,    46,    47,    49,     6,     7,    71,
  792.       14,    47,    14,    59,    69,    59,    59,    51,    59,    59,
  793.       59,    59,    59,    59,    59,    59,    59,    59,    59,    59,
  794.       59,    59,    59,    59,    59,    59,    64,    61,    62,     7,
  795.       71,    59,    71,    51,    51,    51,    51,    59,    58,    59,
  796.       63,    51,    52,    20,    51,    59
  797. };

  798. #define yyerrok                (yyerrstatus = 0)
  799. #define yyclearin        (yychar = YYEMPTY)
  800. #define YYEMPTY                (-2)
  801. #define YYEOF                0

  802. #define YYACCEPT        goto yyacceptlab
  803. #define YYABORT                goto yyabortlab
  804. #define YYERROR                goto yyerrorlab


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

  811. #define YYFAIL                goto yyerrlab
  812. #if defined YYFAIL
  813.   /* This is here to suppress warnings from the GCC cpp's
  814.      -Wunused-macros.  Normally we don't worry about that warning, but
  815.      some users do, and we want to make it easy for users to remove
  816.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  817. #endif

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

  819. #define YYBACKUP(Token, Value)                                  \
  820. do                                                              \
  821.   if (yychar == YYEMPTY)                                        \
  822.     {                                                           \
  823.       yychar = (Token);                                         \
  824.       yylval = (Value);                                         \
  825.       YYPOPSTACK (yylen);                                       \
  826.       yystate = *yyssp;                                         \
  827.       goto yybackup;                                            \
  828.     }                                                           \
  829.   else                                                          \
  830.     {                                                           \
  831.       yyerror (YY_("syntax error: cannot back up")); \
  832.       YYERROR;                                                        \
  833.     }                                                                \
  834. while (YYID (0))

  835. /* Error token number */
  836. #define YYTERROR        1
  837. #define YYERRCODE        256


  838. /* This macro is provided for backward compatibility. */
  839. #ifndef YY_LOCATION_PRINT
  840. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  841. #endif


  842. /* YYLEX -- calling `yylex' with the right arguments.  */
  843. #ifdef YYLEX_PARAM
  844. # define YYLEX yylex (YYLEX_PARAM)
  845. #else
  846. # define YYLEX yylex ()
  847. #endif

  848. /* Enable debugging if requested.  */
  849. #if YYDEBUG

  850. # ifndef YYFPRINTF
  851. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  852. #  define YYFPRINTF fprintf
  853. # endif

  854. # define YYDPRINTF(Args)                        \
  855. do {                                                \
  856.   if (yydebug)                                        \
  857.     YYFPRINTF Args;                                \
  858. } while (YYID (0))

  859. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  860. do {                                                                          \
  861.   if (yydebug)                                                                  \
  862.     {                                                                          \
  863.       YYFPRINTF (stderr, "%s ", Title);                                          \
  864.       yy_symbol_print (stderr,                                                  \
  865.                   Type, Value); \
  866.       YYFPRINTF (stderr, "\n");                                                  \
  867.     }                                                                          \
  868. } while (YYID (0))


  869. /*--------------------------------.
  870. | Print this symbol on YYOUTPUT.  |
  871. `--------------------------------*/

  872. /*ARGSUSED*/
  873. #if (defined __STDC__ || defined __C99__FUNC__ \
  874.      || defined __cplusplus || defined _MSC_VER)
  875. static void
  876. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  877. #else
  878. static void
  879. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  880.     FILE *yyoutput;
  881.     int yytype;
  882.     YYSTYPE const * const yyvaluep;
  883. #endif
  884. {
  885.   FILE *yyo = yyoutput;
  886.   YYUSE (yyo);
  887.   if (!yyvaluep)
  888.     return;
  889. # ifdef YYPRINT
  890.   if (yytype < YYNTOKENS)
  891.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  892. # else
  893.   YYUSE (yyoutput);
  894. # endif
  895.   switch (yytype)
  896.     {
  897.       default:
  898.         break;
  899.     }
  900. }


  901. /*--------------------------------.
  902. | Print this symbol on YYOUTPUT.  |
  903. `--------------------------------*/

  904. #if (defined __STDC__ || defined __C99__FUNC__ \
  905.      || defined __cplusplus || defined _MSC_VER)
  906. static void
  907. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  908. #else
  909. static void
  910. yy_symbol_print (yyoutput, yytype, yyvaluep)
  911.     FILE *yyoutput;
  912.     int yytype;
  913.     YYSTYPE const * const yyvaluep;
  914. #endif
  915. {
  916.   if (yytype < YYNTOKENS)
  917.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  918.   else
  919.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  920.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  921.   YYFPRINTF (yyoutput, ")");
  922. }

  923. /*------------------------------------------------------------------.
  924. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  925. | TOP (included).                                                   |
  926. `------------------------------------------------------------------*/

  927. #if (defined __STDC__ || defined __C99__FUNC__ \
  928.      || defined __cplusplus || defined _MSC_VER)
  929. static void
  930. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  931. #else
  932. static void
  933. yy_stack_print (yybottom, yytop)
  934.     yytype_int16 *yybottom;
  935.     yytype_int16 *yytop;
  936. #endif
  937. {
  938.   YYFPRINTF (stderr, "Stack now");
  939.   for (; yybottom <= yytop; yybottom++)
  940.     {
  941.       int yybot = *yybottom;
  942.       YYFPRINTF (stderr, " %d", yybot);
  943.     }
  944.   YYFPRINTF (stderr, "\n");
  945. }

  946. # define YY_STACK_PRINT(Bottom, Top)                                \
  947. do {                                                                \
  948.   if (yydebug)                                                        \
  949.     yy_stack_print ((Bottom), (Top));                                \
  950. } while (YYID (0))


  951. /*------------------------------------------------.
  952. | Report that the YYRULE is going to be reduced.  |
  953. `------------------------------------------------*/

  954. #if (defined __STDC__ || defined __C99__FUNC__ \
  955.      || defined __cplusplus || defined _MSC_VER)
  956. static void
  957. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  958. #else
  959. static void
  960. yy_reduce_print (yyvsp, yyrule)
  961.     YYSTYPE *yyvsp;
  962.     int yyrule;
  963. #endif
  964. {
  965.   int yynrhs = yyr2[yyrule];
  966.   int yyi;
  967.   unsigned long int yylno = yyrline[yyrule];
  968.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
  969.              yyrule - 1, yylno);
  970.   /* The symbols being reduced.  */
  971.   for (yyi = 0; yyi < yynrhs; yyi++)
  972.     {
  973.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  974.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  975.                        &(yyvsp[(yyi + 1) - (yynrhs)])
  976.                                               );
  977.       YYFPRINTF (stderr, "\n");
  978.     }
  979. }

  980. # define YY_REDUCE_PRINT(Rule)                \
  981. do {                                        \
  982.   if (yydebug)                                \
  983.     yy_reduce_print (yyvsp, Rule); \
  984. } while (YYID (0))

  985. /* Nonzero means print parse trace.  It is left uninitialized so that
  986.    multiple parsers can coexist.  */
  987. int yydebug;
  988. #else /* !YYDEBUG */
  989. # define YYDPRINTF(Args)
  990. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  991. # define YY_STACK_PRINT(Bottom, Top)
  992. # define YY_REDUCE_PRINT(Rule)
  993. #endif /* !YYDEBUG */


  994. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  995. #ifndef        YYINITDEPTH
  996. # define YYINITDEPTH 200
  997. #endif

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

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

  1003. #ifndef YYMAXDEPTH
  1004. # define YYMAXDEPTH 10000
  1005. #endif


  1006. #if YYERROR_VERBOSE

  1007. # ifndef yystrlen
  1008. #  if defined __GLIBC__ && defined _STRING_H
  1009. #   define yystrlen strlen
  1010. #  else
  1011. /* Return the length of YYSTR.  */
  1012. #if (defined __STDC__ || defined __C99__FUNC__ \
  1013.      || defined __cplusplus || defined _MSC_VER)
  1014. static YYSIZE_T
  1015. yystrlen (const char *yystr)
  1016. #else
  1017. static YYSIZE_T
  1018. yystrlen (yystr)
  1019.     const char *yystr;
  1020. #endif
  1021. {
  1022.   YYSIZE_T yylen;
  1023.   for (yylen = 0; yystr[yylen]; yylen++)
  1024.     continue;
  1025.   return yylen;
  1026. }
  1027. #  endif
  1028. # endif

  1029. # ifndef yystpcpy
  1030. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1031. #   define yystpcpy stpcpy
  1032. #  else
  1033. /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
  1034.    YYDEST.  */
  1035. #if (defined __STDC__ || defined __C99__FUNC__ \
  1036.      || defined __cplusplus || defined _MSC_VER)
  1037. static char *
  1038. yystpcpy (char *yydest, const char *yysrc)
  1039. #else
  1040. static char *
  1041. yystpcpy (yydest, yysrc)
  1042.     char *yydest;
  1043.     const char *yysrc;
  1044. #endif
  1045. {
  1046.   char *yyd = yydest;
  1047.   const char *yys = yysrc;

  1048.   while ((*yyd++ = *yys++) != '\0')
  1049.     continue;

  1050.   return yyd - 1;
  1051. }
  1052. #  endif
  1053. # endif

  1054. # ifndef yytnamerr
  1055. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1056.    quotes and backslashes, so that it's suitable for yyerror.  The
  1057.    heuristic is that double-quoting is unnecessary unless the string
  1058.    contains an apostrophe, a comma, or backslash (other than
  1059.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1060.    null, do not copy; instead, return the length of what the result
  1061.    would have been.  */
  1062. static YYSIZE_T
  1063. yytnamerr (char *yyres, const char *yystr)
  1064. {
  1065.   if (*yystr == '"')
  1066.     {
  1067.       YYSIZE_T yyn = 0;
  1068.       char const *yyp = yystr;

  1069.       for (;;)
  1070.         switch (*++yyp)
  1071.           {
  1072.           case '\'':
  1073.           case ',':
  1074.             goto do_not_strip_quotes;

  1075.           case '\\':
  1076.             if (*++yyp != '\\')
  1077.               goto do_not_strip_quotes;
  1078.             /* Fall through.  */
  1079.           default:
  1080.             if (yyres)
  1081.               yyres[yyn] = *yyp;
  1082.             yyn++;
  1083.             break;

  1084.           case '"':
  1085.             if (yyres)
  1086.               yyres[yyn] = '\0';
  1087.             return yyn;
  1088.           }
  1089.     do_not_strip_quotes: ;
  1090.     }

  1091.   if (! yyres)
  1092.     return yystrlen (yystr);

  1093.   return yystpcpy (yyres, yystr) - yyres;
  1094. }
  1095. # endif

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

  1099.    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
  1100.    not large enough to hold the message.  In that case, also set
  1101.    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
  1102.    required number of bytes is too large to store.  */
  1103. static int
  1104. yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
  1105.                 yytype_int16 *yyssp, int yytoken)
  1106. {
  1107.   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  1108.   YYSIZE_T yysize = yysize0;
  1109.   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1110.   /* Internationalized format string. */
  1111.   const char *yyformat = YY_NULL;
  1112.   /* Arguments of yyformat. */
  1113.   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1114.   /* Number of reported tokens (one for the "unexpected", one per
  1115.      "expected"). */
  1116.   int yycount = 0;

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

  1158.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1159.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1160.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1161.               {
  1162.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1163.                   {
  1164.                     yycount = 1;
  1165.                     yysize = yysize0;
  1166.                     break;
  1167.                   }
  1168.                 yyarg[yycount++] = yytname[yyx];
  1169.                 {
  1170.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1171.                   if (! (yysize <= yysize1
  1172.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1173.                     return 2;
  1174.                   yysize = yysize1;
  1175.                 }
  1176.               }
  1177.         }
  1178.     }

  1179.   switch (yycount)
  1180.     {
  1181. # define YYCASE_(N, S)                      \
  1182.       case N:                               \
  1183.         yyformat = S;                       \
  1184.       break
  1185.       YYCASE_(0, YY_("syntax error"));
  1186.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1187.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1188.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1189.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1190.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1191. # undef YYCASE_
  1192.     }

  1193.   {
  1194.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1195.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1196.       return 2;
  1197.     yysize = yysize1;
  1198.   }

  1199.   if (*yymsg_alloc < yysize)
  1200.     {
  1201.       *yymsg_alloc = 2 * yysize;
  1202.       if (! (yysize <= *yymsg_alloc
  1203.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1204.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1205.       return 1;
  1206.     }

  1207.   /* Avoid sprintf, as that infringes on the user's name space.
  1208.      Don't have undefined behavior even if the translation
  1209.      produced a string with the wrong number of "%s"s.  */
  1210.   {
  1211.     char *yyp = *yymsg;
  1212.     int yyi = 0;
  1213.     while ((*yyp = *yyformat) != '\0')
  1214.       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
  1215.         {
  1216.           yyp += yytnamerr (yyp, yyarg[yyi++]);
  1217.           yyformat += 2;
  1218.         }
  1219.       else
  1220.         {
  1221.           yyp++;
  1222.           yyformat++;
  1223.         }
  1224.   }
  1225.   return 0;
  1226. }
  1227. #endif /* YYERROR_VERBOSE */

  1228. /*-----------------------------------------------.
  1229. | Release the memory associated to this symbol.  |
  1230. `-----------------------------------------------*/

  1231. /*ARGSUSED*/
  1232. #if (defined __STDC__ || defined __C99__FUNC__ \
  1233.      || defined __cplusplus || defined _MSC_VER)
  1234. static void
  1235. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1236. #else
  1237. static void
  1238. yydestruct (yymsg, yytype, yyvaluep)
  1239.     const char *yymsg;
  1240.     int yytype;
  1241.     YYSTYPE *yyvaluep;
  1242. #endif
  1243. {
  1244.   YYUSE (yyvaluep);

  1245.   if (!yymsg)
  1246.     yymsg = "Deleting";
  1247.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1248.   switch (yytype)
  1249.     {

  1250.       default:
  1251.         break;
  1252.     }
  1253. }




  1254. /* The lookahead symbol.  */
  1255. int yychar;


  1256. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1257. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1258. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1259. #endif
  1260. #ifndef YY_INITIAL_VALUE
  1261. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1262. #endif

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

  1265. /* Number of syntax errors so far.  */
  1266. int yynerrs;


  1267. /*----------.
  1268. | yyparse.  |
  1269. `----------*/

  1270. #ifdef YYPARSE_PARAM
  1271. #if (defined __STDC__ || defined __C99__FUNC__ \
  1272.      || defined __cplusplus || defined _MSC_VER)
  1273. int
  1274. yyparse (void *YYPARSE_PARAM)
  1275. #else
  1276. int
  1277. yyparse (YYPARSE_PARAM)
  1278.     void *YYPARSE_PARAM;
  1279. #endif
  1280. #else /* ! YYPARSE_PARAM */
  1281. #if (defined __STDC__ || defined __C99__FUNC__ \
  1282.      || defined __cplusplus || defined _MSC_VER)
  1283. int
  1284. yyparse (void)
  1285. #else
  1286. int
  1287. yyparse ()

  1288. #endif
  1289. #endif
  1290. {
  1291.     int yystate;
  1292.     /* Number of tokens to shift before error messages enabled.  */
  1293.     int yyerrstatus;

  1294.     /* The stacks and their tools:
  1295.        `yyss': related to states.
  1296.        `yyvs': related to semantic values.

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

  1299.     /* The state stack.  */
  1300.     yytype_int16 yyssa[YYINITDEPTH];
  1301.     yytype_int16 *yyss;
  1302.     yytype_int16 *yyssp;

  1303.     /* The semantic value stack.  */
  1304.     YYSTYPE yyvsa[YYINITDEPTH];
  1305.     YYSTYPE *yyvs;
  1306.     YYSTYPE *yyvsp;

  1307.     YYSIZE_T yystacksize;

  1308.   int yyn;
  1309.   int yyresult;
  1310.   /* Lookahead token as an internal (translated) token number.  */
  1311.   int yytoken = 0;
  1312.   /* The variables used to return semantic value and location from the
  1313.      action routines.  */
  1314.   YYSTYPE yyval;

  1315. #if YYERROR_VERBOSE
  1316.   /* Buffer for error messages, and its allocated size.  */
  1317.   char yymsgbuf[128];
  1318.   char *yymsg = yymsgbuf;
  1319.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1320. #endif

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

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

  1325.   yyssp = yyss = yyssa;
  1326.   yyvsp = yyvs = yyvsa;
  1327.   yystacksize = YYINITDEPTH;

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

  1329.   yystate = 0;
  1330.   yyerrstatus = 0;
  1331.   yynerrs = 0;
  1332.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1333.   goto yysetstate;

  1334. /*------------------------------------------------------------.
  1335. | yynewstate -- Push a new state, which is found in yystate.  |
  1336. `------------------------------------------------------------*/
  1337. yynewstate:
  1338.   /* In all cases, when you get here, the value and location stacks
  1339.      have just been pushed.  So pushing a state here evens the stacks.  */
  1340.   yyssp++;

  1341. yysetstate:
  1342.   *yyssp = yystate;

  1343.   if (yyss + yystacksize - 1 <= yyssp)
  1344.     {
  1345.       /* Get the current used size of the three stacks, in elements.  */
  1346.       YYSIZE_T yysize = yyssp - yyss + 1;

  1347. #ifdef yyoverflow
  1348.       {
  1349.         /* Give user a chance to xreallocate the stack.  Use copies of
  1350.            these so that the &'s don't force the real ones into
  1351.            memory.  */
  1352.         YYSTYPE *yyvs1 = yyvs;
  1353.         yytype_int16 *yyss1 = yyss;

  1354.         /* Each stack pointer address is followed by the size of the
  1355.            data in use in that stack, in bytes.  This used to be a
  1356.            conditional around just the two extra args, but that might
  1357.            be undefined if yyoverflow is a macro.  */
  1358.         yyoverflow (YY_("memory exhausted"),
  1359.                     &yyss1, yysize * sizeof (*yyssp),
  1360.                     &yyvs1, yysize * sizeof (*yyvsp),
  1361.                     &yystacksize);

  1362.         yyss = yyss1;
  1363.         yyvs = yyvs1;
  1364.       }
  1365. #else /* no yyoverflow */
  1366. # ifndef YYSTACK_RELOCATE
  1367.       goto yyexhaustedlab;
  1368. # else
  1369.       /* Extend the stack our own way.  */
  1370.       if (YYMAXDEPTH <= yystacksize)
  1371.         goto yyexhaustedlab;
  1372.       yystacksize *= 2;
  1373.       if (YYMAXDEPTH < yystacksize)
  1374.         yystacksize = YYMAXDEPTH;

  1375.       {
  1376.         yytype_int16 *yyss1 = yyss;
  1377.         union yyalloc *yyptr =
  1378.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1379.         if (! yyptr)
  1380.           goto yyexhaustedlab;
  1381.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1382.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1383. #  undef YYSTACK_RELOCATE
  1384.         if (yyss1 != yyssa)
  1385.           YYSTACK_FREE (yyss1);
  1386.       }
  1387. # endif
  1388. #endif /* no yyoverflow */

  1389.       yyssp = yyss + yysize - 1;
  1390.       yyvsp = yyvs + yysize - 1;

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

  1393.       if (yyss + yystacksize - 1 <= yyssp)
  1394.         YYABORT;
  1395.     }

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

  1397.   if (yystate == YYFINAL)
  1398.     YYACCEPT;

  1399.   goto yybackup;

  1400. /*-----------.
  1401. | yybackup.  |
  1402. `-----------*/
  1403. yybackup:

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

  1406.   /* First try to decide what to do without reference to lookahead token.  */
  1407.   yyn = yypact[yystate];
  1408.   if (yypact_value_is_default (yyn))
  1409.     goto yydefault;

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

  1411.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1412.   if (yychar == YYEMPTY)
  1413.     {
  1414.       YYDPRINTF ((stderr, "Reading a token: "));
  1415.       yychar = YYLEX;
  1416.     }

  1417.   if (yychar <= YYEOF)
  1418.     {
  1419.       yychar = yytoken = YYEOF;
  1420.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1421.     }
  1422.   else
  1423.     {
  1424.       yytoken = YYTRANSLATE (yychar);
  1425.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1426.     }

  1427.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1428.      detect an error, take that action.  */
  1429.   yyn += yytoken;
  1430.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1431.     goto yydefault;
  1432.   yyn = yytable[yyn];
  1433.   if (yyn <= 0)
  1434.     {
  1435.       if (yytable_value_is_error (yyn))
  1436.         goto yyerrlab;
  1437.       yyn = -yyn;
  1438.       goto yyreduce;
  1439.     }

  1440.   /* Count tokens shifted since error; after three, turn off error
  1441.      status.  */
  1442.   if (yyerrstatus)
  1443.     yyerrstatus--;

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

  1446.   /* Discard the shifted token.  */
  1447.   yychar = YYEMPTY;

  1448.   yystate = yyn;
  1449.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1450.   *++yyvsp = yylval;
  1451.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1452.   goto yynewstate;


  1453. /*-----------------------------------------------------------.
  1454. | yydefault -- do the default action for the current state.  |
  1455. `-----------------------------------------------------------*/
  1456. yydefault:
  1457.   yyn = yydefact[yystate];
  1458.   if (yyn == 0)
  1459.     goto yyerrlab;
  1460.   goto yyreduce;


  1461. /*-----------------------------.
  1462. | yyreduce -- Do a reduction.  |
  1463. `-----------------------------*/
  1464. yyreduce:
  1465.   /* yyn is the number of a rule to reduce with.  */
  1466.   yylen = yyr2[yyn];

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

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


  1475.   YY_REDUCE_PRINT (yyn);
  1476.   switch (yyn)
  1477.     {
  1478.         case 2:
  1479. /* Line 1792 of yacc.c  */
  1480. #line 246 "p-exp.y"
  1481.     { current_type = NULL;
  1482.                   intvar = NULL;
  1483.                   search_field = 0;
  1484.                   leftdiv_is_integer = 0;
  1485.                 }
  1486.     break;

  1487.   case 3:
  1488. /* Line 1792 of yacc.c  */
  1489. #line 251 "p-exp.y"
  1490.     {}
  1491.     break;

  1492.   case 6:
  1493. /* Line 1792 of yacc.c  */
  1494. #line 260 "p-exp.y"
  1495.     { write_exp_elt_opcode (pstate, OP_TYPE);
  1496.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  1497.                           write_exp_elt_opcode (pstate, OP_TYPE);
  1498.                           current_type = (yyvsp[(1) - (1)].tval); }
  1499.     break;

  1500.   case 8:
  1501. /* Line 1792 of yacc.c  */
  1502. #line 268 "p-exp.y"
  1503.     { write_exp_elt_opcode (pstate, BINOP_COMMA); }
  1504.     break;

  1505.   case 9:
  1506. /* Line 1792 of yacc.c  */
  1507. #line 273 "p-exp.y"
  1508.     { write_exp_elt_opcode (pstate, UNOP_IND);
  1509.                           if (current_type)
  1510.                             current_type = TYPE_TARGET_TYPE (current_type); }
  1511.     break;

  1512.   case 10:
  1513. /* Line 1792 of yacc.c  */
  1514. #line 279 "p-exp.y"
  1515.     { write_exp_elt_opcode (pstate, UNOP_ADDR);
  1516.                           if (current_type)
  1517.                             current_type = TYPE_POINTER_TYPE (current_type); }
  1518.     break;

  1519.   case 11:
  1520. /* Line 1792 of yacc.c  */
  1521. #line 285 "p-exp.y"
  1522.     { write_exp_elt_opcode (pstate, UNOP_NEG); }
  1523.     break;

  1524.   case 12:
  1525. /* Line 1792 of yacc.c  */
  1526. #line 289 "p-exp.y"
  1527.     { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
  1528.     break;

  1529.   case 13:
  1530. /* Line 1792 of yacc.c  */
  1531. #line 293 "p-exp.y"
  1532.     { write_exp_elt_opcode (pstate, UNOP_PREINCREMENT); }
  1533.     break;

  1534.   case 14:
  1535. /* Line 1792 of yacc.c  */
  1536. #line 297 "p-exp.y"
  1537.     { write_exp_elt_opcode (pstate, UNOP_PREDECREMENT); }
  1538.     break;

  1539.   case 15:
  1540. /* Line 1792 of yacc.c  */
  1541. #line 302 "p-exp.y"
  1542.     { search_field = 1; }
  1543.     break;

  1544.   case 16:
  1545. /* Line 1792 of yacc.c  */
  1546. #line 306 "p-exp.y"
  1547.     { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1548.                           write_exp_string (pstate, (yyvsp[(2) - (2)].sval));
  1549.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1550.                           search_field = 0;
  1551.                           if (current_type)
  1552.                             {
  1553.                               while (TYPE_CODE (current_type)
  1554.                                      == TYPE_CODE_PTR)
  1555.                                 current_type =
  1556.                                   TYPE_TARGET_TYPE (current_type);
  1557.                               current_type = lookup_struct_elt_type (
  1558.                                 current_type, (yyvsp[(2) - (2)].sval).ptr, 0);
  1559.                             }
  1560.                          }
  1561.     break;

  1562.   case 17:
  1563. /* Line 1792 of yacc.c  */
  1564. #line 324 "p-exp.y"
  1565.     { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1566.                           write_exp_string (pstate, (yyvsp[(2) - (2)].sval));
  1567.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1568.                           search_field = 0;
  1569.                           if (current_type)
  1570.                             {
  1571.                               while (TYPE_CODE (current_type)
  1572.                                      == TYPE_CODE_PTR)
  1573.                                 current_type =
  1574.                                   TYPE_TARGET_TYPE (current_type);
  1575.                               current_type = lookup_struct_elt_type (
  1576.                                 current_type, (yyvsp[(2) - (2)].sval).ptr, 0);
  1577.                             }
  1578.                         }
  1579.     break;

  1580.   case 18:
  1581. /* Line 1792 of yacc.c  */
  1582. #line 340 "p-exp.y"
  1583.     { mark_struct_expression (pstate);
  1584.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1585.                           write_exp_string (pstate, (yyvsp[(2) - (3)].sval));
  1586.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1587.     break;

  1588.   case 19:
  1589. /* Line 1792 of yacc.c  */
  1590. #line 346 "p-exp.y"
  1591.     { struct stoken s;
  1592.                           mark_struct_expression (pstate);
  1593.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1594.                           s.ptr = "";
  1595.                           s.length = 0;
  1596.                           write_exp_string (pstate, s);
  1597.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1598.     break;

  1599.   case 20:
  1600. /* Line 1792 of yacc.c  */
  1601. #line 357 "p-exp.y"
  1602.     { const char *arrayname;
  1603.                           int arrayfieldindex;
  1604.                           arrayfieldindex = is_pascal_string_type (
  1605.                                 current_type, NULL, NULL,
  1606.                                 NULL, NULL, &arrayname);
  1607.                           if (arrayfieldindex)
  1608.                             {
  1609.                               struct stoken stringsval;
  1610.                               char *buf;

  1611.                               buf = alloca (strlen (arrayname) + 1);
  1612.                               stringsval.ptr = buf;
  1613.                               stringsval.length = strlen (arrayname);
  1614.                               strcpy (buf, arrayname);
  1615.                               current_type = TYPE_FIELD_TYPE (current_type,
  1616.                                 arrayfieldindex - 1);
  1617.                               write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1618.                               write_exp_string (pstate, stringsval);
  1619.                               write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1620.                             }
  1621.                           push_current_type ();  }
  1622.     break;

  1623.   case 21:
  1624. /* Line 1792 of yacc.c  */
  1625. #line 379 "p-exp.y"
  1626.     { pop_current_type ();
  1627.                           write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT);
  1628.                           if (current_type)
  1629.                             current_type = TYPE_TARGET_TYPE (current_type); }
  1630.     break;

  1631.   case 22:
  1632. /* Line 1792 of yacc.c  */
  1633. #line 388 "p-exp.y"
  1634.     { push_current_type ();
  1635.                           start_arglist (); }
  1636.     break;

  1637.   case 23:
  1638. /* Line 1792 of yacc.c  */
  1639. #line 391 "p-exp.y"
  1640.     { write_exp_elt_opcode (pstate, OP_FUNCALL);
  1641.                           write_exp_elt_longcst (pstate,
  1642.                                                  (LONGEST) end_arglist ());
  1643.                           write_exp_elt_opcode (pstate, OP_FUNCALL);
  1644.                           pop_current_type ();
  1645.                           if (current_type)
  1646.                                current_type = TYPE_TARGET_TYPE (current_type);
  1647.                         }
  1648.     break;

  1649.   case 25:
  1650. /* Line 1792 of yacc.c  */
  1651. #line 403 "p-exp.y"
  1652.     { arglist_len = 1; }
  1653.     break;

  1654.   case 26:
  1655. /* Line 1792 of yacc.c  */
  1656. #line 405 "p-exp.y"
  1657.     { arglist_len++; }
  1658.     break;

  1659.   case 27:
  1660. /* Line 1792 of yacc.c  */
  1661. #line 409 "p-exp.y"
  1662.     { if (current_type)
  1663.                             {
  1664.                               /* Allow automatic dereference of classes.  */
  1665.                               if ((TYPE_CODE (current_type) == TYPE_CODE_PTR)
  1666.                                   && (TYPE_CODE (TYPE_TARGET_TYPE (current_type)) == TYPE_CODE_CLASS)
  1667.                                   && (TYPE_CODE ((yyvsp[(1) - (4)].tval)) == TYPE_CODE_CLASS))
  1668.                                 write_exp_elt_opcode (pstate, UNOP_IND);
  1669.                             }
  1670.                           write_exp_elt_opcode (pstate, UNOP_CAST);
  1671.                           write_exp_elt_type (pstate, (yyvsp[(1) - (4)].tval));
  1672.                           write_exp_elt_opcode (pstate, UNOP_CAST);
  1673.                           current_type = (yyvsp[(1) - (4)].tval); }
  1674.     break;

  1675.   case 28:
  1676. /* Line 1792 of yacc.c  */
  1677. #line 424 "p-exp.y"
  1678.     { }
  1679.     break;

  1680.   case 29:
  1681. /* Line 1792 of yacc.c  */
  1682. #line 430 "p-exp.y"
  1683.     { write_exp_elt_opcode (pstate, BINOP_MUL); }
  1684.     break;

  1685.   case 30:
  1686. /* Line 1792 of yacc.c  */
  1687. #line 433 "p-exp.y"
  1688.     {
  1689.                           if (current_type && is_integral_type (current_type))
  1690.                             leftdiv_is_integer = 1;
  1691.                         }
  1692.     break;

  1693.   case 31:
  1694. /* Line 1792 of yacc.c  */
  1695. #line 438 "p-exp.y"
  1696.     {
  1697.                           if (leftdiv_is_integer && current_type
  1698.                               && is_integral_type (current_type))
  1699.                             {
  1700.                               write_exp_elt_opcode (pstate, UNOP_CAST);
  1701.                               write_exp_elt_type (pstate,
  1702.                                                   parse_type (pstate)
  1703.                                                   ->builtin_long_double);
  1704.                               current_type
  1705.                                 = parse_type (pstate)->builtin_long_double;
  1706.                               write_exp_elt_opcode (pstate, UNOP_CAST);
  1707.                               leftdiv_is_integer = 0;
  1708.                             }

  1709.                           write_exp_elt_opcode (pstate, BINOP_DIV);
  1710.                         }
  1711.     break;

  1712.   case 32:
  1713. /* Line 1792 of yacc.c  */
  1714. #line 457 "p-exp.y"
  1715.     { write_exp_elt_opcode (pstate, BINOP_INTDIV); }
  1716.     break;

  1717.   case 33:
  1718. /* Line 1792 of yacc.c  */
  1719. #line 461 "p-exp.y"
  1720.     { write_exp_elt_opcode (pstate, BINOP_REM); }
  1721.     break;

  1722.   case 34:
  1723. /* Line 1792 of yacc.c  */
  1724. #line 465 "p-exp.y"
  1725.     { write_exp_elt_opcode (pstate, BINOP_ADD); }
  1726.     break;

  1727.   case 35:
  1728. /* Line 1792 of yacc.c  */
  1729. #line 469 "p-exp.y"
  1730.     { write_exp_elt_opcode (pstate, BINOP_SUB); }
  1731.     break;

  1732.   case 36:
  1733. /* Line 1792 of yacc.c  */
  1734. #line 473 "p-exp.y"
  1735.     { write_exp_elt_opcode (pstate, BINOP_LSH); }
  1736.     break;

  1737.   case 37:
  1738. /* Line 1792 of yacc.c  */
  1739. #line 477 "p-exp.y"
  1740.     { write_exp_elt_opcode (pstate, BINOP_RSH); }
  1741.     break;

  1742.   case 38:
  1743. /* Line 1792 of yacc.c  */
  1744. #line 481 "p-exp.y"
  1745.     { write_exp_elt_opcode (pstate, BINOP_EQUAL);
  1746.                           current_type = parse_type (pstate)->builtin_bool;
  1747.                         }
  1748.     break;

  1749.   case 39:
  1750. /* Line 1792 of yacc.c  */
  1751. #line 487 "p-exp.y"
  1752.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL);
  1753.                           current_type = parse_type (pstate)->builtin_bool;
  1754.                         }
  1755.     break;

  1756.   case 40:
  1757. /* Line 1792 of yacc.c  */
  1758. #line 493 "p-exp.y"
  1759.     { write_exp_elt_opcode (pstate, BINOP_LEQ);
  1760.                           current_type = parse_type (pstate)->builtin_bool;
  1761.                         }
  1762.     break;

  1763.   case 41:
  1764. /* Line 1792 of yacc.c  */
  1765. #line 499 "p-exp.y"
  1766.     { write_exp_elt_opcode (pstate, BINOP_GEQ);
  1767.                           current_type = parse_type (pstate)->builtin_bool;
  1768.                         }
  1769.     break;

  1770.   case 42:
  1771. /* Line 1792 of yacc.c  */
  1772. #line 505 "p-exp.y"
  1773.     { write_exp_elt_opcode (pstate, BINOP_LESS);
  1774.                           current_type = parse_type (pstate)->builtin_bool;
  1775.                         }
  1776.     break;

  1777.   case 43:
  1778. /* Line 1792 of yacc.c  */
  1779. #line 511 "p-exp.y"
  1780.     { write_exp_elt_opcode (pstate, BINOP_GTR);
  1781.                           current_type = parse_type (pstate)->builtin_bool;
  1782.                         }
  1783.     break;

  1784.   case 44:
  1785. /* Line 1792 of yacc.c  */
  1786. #line 517 "p-exp.y"
  1787.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1788.     break;

  1789.   case 45:
  1790. /* Line 1792 of yacc.c  */
  1791. #line 521 "p-exp.y"
  1792.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  1793.     break;

  1794.   case 46:
  1795. /* Line 1792 of yacc.c  */
  1796. #line 525 "p-exp.y"
  1797.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1798.     break;

  1799.   case 47:
  1800. /* Line 1792 of yacc.c  */
  1801. #line 529 "p-exp.y"
  1802.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
  1803.     break;

  1804.   case 48:
  1805. /* Line 1792 of yacc.c  */
  1806. #line 533 "p-exp.y"
  1807.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1808.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(1) - (1)].lval));
  1809.                           current_type = parse_type (pstate)->builtin_bool;
  1810.                           write_exp_elt_opcode (pstate, OP_BOOL); }
  1811.     break;

  1812.   case 49:
  1813. /* Line 1792 of yacc.c  */
  1814. #line 540 "p-exp.y"
  1815.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1816.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(1) - (1)].lval));
  1817.                           current_type = parse_type (pstate)->builtin_bool;
  1818.                           write_exp_elt_opcode (pstate, OP_BOOL); }
  1819.     break;

  1820.   case 50:
  1821. /* Line 1792 of yacc.c  */
  1822. #line 547 "p-exp.y"
  1823.     { write_exp_elt_opcode (pstate, OP_LONG);
  1824.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_int).type);
  1825.                           current_type = (yyvsp[(1) - (1)].typed_val_int).type;
  1826.                           write_exp_elt_longcst (pstate, (LONGEST)((yyvsp[(1) - (1)].typed_val_int).val));
  1827.                           write_exp_elt_opcode (pstate, OP_LONG); }
  1828.     break;

  1829.   case 51:
  1830. /* Line 1792 of yacc.c  */
  1831. #line 555 "p-exp.y"
  1832.     { YYSTYPE val;
  1833.                           parse_number (pstate, (yyvsp[(1) - (1)].ssym).stoken.ptr,
  1834.                                         (yyvsp[(1) - (1)].ssym).stoken.length, 0, &val);
  1835.                           write_exp_elt_opcode (pstate, OP_LONG);
  1836.                           write_exp_elt_type (pstate, val.typed_val_int.type);
  1837.                           current_type = val.typed_val_int.type;
  1838.                           write_exp_elt_longcst (pstate, (LONGEST)
  1839.                                                  val.typed_val_int.val);
  1840.                           write_exp_elt_opcode (pstate, OP_LONG);
  1841.                         }
  1842.     break;

  1843.   case 52:
  1844. /* Line 1792 of yacc.c  */
  1845. #line 569 "p-exp.y"
  1846.     { write_exp_elt_opcode (pstate, OP_DOUBLE);
  1847.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val_float).type);
  1848.                           current_type = (yyvsp[(1) - (1)].typed_val_float).type;
  1849.                           write_exp_elt_dblcst (pstate, (yyvsp[(1) - (1)].typed_val_float).dval);
  1850.                           write_exp_elt_opcode (pstate, OP_DOUBLE); }
  1851.     break;

  1852.   case 54:
  1853. /* Line 1792 of yacc.c  */
  1854. #line 582 "p-exp.y"
  1855.     {  if (intvar) {
  1856.                               struct value * val, * mark;

  1857.                              mark = value_mark ();
  1858.                               val = value_of_internalvar (parse_gdbarch (pstate),
  1859.                                                           intvar);
  1860.                               current_type = value_type (val);
  1861.                              value_release_to_mark (mark);
  1862.                             }
  1863.                          }
  1864.     break;

  1865.   case 55:
  1866. /* Line 1792 of yacc.c  */
  1867. #line 595 "p-exp.y"
  1868.     { write_exp_elt_opcode (pstate, OP_LONG);
  1869.                           write_exp_elt_type (pstate,
  1870.                                             parse_type (pstate)->builtin_int);
  1871.                           current_type = parse_type (pstate)->builtin_int;
  1872.                           CHECK_TYPEDEF ((yyvsp[(3) - (4)].tval));
  1873.                           write_exp_elt_longcst (pstate,
  1874.                                                  (LONGEST) TYPE_LENGTH ((yyvsp[(3) - (4)].tval)));
  1875.                           write_exp_elt_opcode (pstate, OP_LONG); }
  1876.     break;

  1877.   case 56:
  1878. /* Line 1792 of yacc.c  */
  1879. #line 606 "p-exp.y"
  1880.     { write_exp_elt_opcode (pstate, UNOP_SIZEOF);
  1881.                           current_type = parse_type (pstate)->builtin_int; }
  1882.     break;

  1883.   case 57:
  1884. /* Line 1792 of yacc.c  */
  1885. #line 610 "p-exp.y"
  1886.     { /* C strings are converted into array constants with
  1887.                              an explicit null byte added at the end.  Thus
  1888.                              the array upper bound is the string length.
  1889.                              There is no such thing in C as a completely empty
  1890.                              string.  */
  1891.                           const char *sp = (yyvsp[(1) - (1)].sval).ptr; int count = (yyvsp[(1) - (1)].sval).length;

  1892.                           while (count-- > 0)
  1893.                             {
  1894.                               write_exp_elt_opcode (pstate, OP_LONG);
  1895.                               write_exp_elt_type (pstate,
  1896.                                                   parse_type (pstate)
  1897.                                                   ->builtin_char);
  1898.                               write_exp_elt_longcst (pstate,
  1899.                                                      (LONGEST) (*sp++));
  1900.                               write_exp_elt_opcode (pstate, OP_LONG);
  1901.                             }
  1902.                           write_exp_elt_opcode (pstate, OP_LONG);
  1903.                           write_exp_elt_type (pstate,
  1904.                                               parse_type (pstate)
  1905.                                               ->builtin_char);
  1906.                           write_exp_elt_longcst (pstate, (LONGEST)'\0');
  1907.                           write_exp_elt_opcode (pstate, OP_LONG);
  1908.                           write_exp_elt_opcode (pstate, OP_ARRAY);
  1909.                           write_exp_elt_longcst (pstate, (LONGEST) 0);
  1910.                           write_exp_elt_longcst (pstate,
  1911.                                                  (LONGEST) ((yyvsp[(1) - (1)].sval).length));
  1912.                           write_exp_elt_opcode (pstate, OP_ARRAY); }
  1913.     break;

  1914.   case 58:
  1915. /* Line 1792 of yacc.c  */
  1916. #line 642 "p-exp.y"
  1917.     {
  1918.                           struct value * this_val;
  1919.                           struct type * this_type;
  1920.                           write_exp_elt_opcode (pstate, OP_THIS);
  1921.                           write_exp_elt_opcode (pstate, OP_THIS);
  1922.                           /* We need type of this.  */
  1923.                           this_val
  1924.                             = value_of_this_silent (parse_language (pstate));
  1925.                           if (this_val)
  1926.                             this_type = value_type (this_val);
  1927.                           else
  1928.                             this_type = NULL;
  1929.                           if (this_type)
  1930.                             {
  1931.                               if (TYPE_CODE (this_type) == TYPE_CODE_PTR)
  1932.                                 {
  1933.                                   this_type = TYPE_TARGET_TYPE (this_type);
  1934.                                   write_exp_elt_opcode (pstate, UNOP_IND);
  1935.                                 }
  1936.                             }

  1937.                           current_type = this_type;
  1938.                         }
  1939.     break;

  1940.   case 59:
  1941. /* Line 1792 of yacc.c  */
  1942. #line 670 "p-exp.y"
  1943.     {
  1944.                           if ((yyvsp[(1) - (1)].ssym).sym != 0)
  1945.                               (yyval.bval) = SYMBOL_BLOCK_VALUE ((yyvsp[(1) - (1)].ssym).sym);
  1946.                           else
  1947.                             {
  1948.                               struct symtab *tem =
  1949.                                   lookup_symtab (copy_name ((yyvsp[(1) - (1)].ssym).stoken));
  1950.                               if (tem)
  1951.                                 (yyval.bval) = BLOCKVECTOR_BLOCK (BLOCKVECTOR (tem),
  1952.                                                         STATIC_BLOCK);
  1953.                               else
  1954.                                 error (_("No file or function \"%s\"."),
  1955.                                        copy_name ((yyvsp[(1) - (1)].ssym).stoken));
  1956.                             }
  1957.                         }
  1958.     break;

  1959.   case 60:
  1960. /* Line 1792 of yacc.c  */
  1961. #line 688 "p-exp.y"
  1962.     { struct symbol *tem
  1963.                             = lookup_symbol (copy_name ((yyvsp[(3) - (3)].sval)), (yyvsp[(1) - (3)].bval),
  1964.                                              VAR_DOMAIN, NULL);
  1965.                           if (!tem || SYMBOL_CLASS (tem) != LOC_BLOCK)
  1966.                             error (_("No function \"%s\" in specified context."),
  1967.                                    copy_name ((yyvsp[(3) - (3)].sval)));
  1968.                           (yyval.bval) = SYMBOL_BLOCK_VALUE (tem); }
  1969.     break;

  1970.   case 61:
  1971. /* Line 1792 of yacc.c  */
  1972. #line 698 "p-exp.y"
  1973.     { struct symbol *sym;
  1974.                           sym = lookup_symbol (copy_name ((yyvsp[(3) - (3)].sval)), (yyvsp[(1) - (3)].bval),
  1975.                                                VAR_DOMAIN, NULL);
  1976.                           if (sym == 0)
  1977.                             error (_("No symbol \"%s\" in specified context."),
  1978.                                    copy_name ((yyvsp[(3) - (3)].sval)));

  1979.                           write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  1980.                           /* block_found is set by lookup_symbol.  */
  1981.                           write_exp_elt_block (pstate, block_found);
  1982.                           write_exp_elt_sym (pstate, sym);
  1983.                           write_exp_elt_opcode (pstate, OP_VAR_VALUE); }
  1984.     break;

  1985.   case 62:
  1986. /* Line 1792 of yacc.c  */
  1987. #line 713 "p-exp.y"
  1988.     {
  1989.                           struct type *type = (yyvsp[(1) - (3)].tval);
  1990.                           if (TYPE_CODE (type) != TYPE_CODE_STRUCT
  1991.                               && TYPE_CODE (type) != TYPE_CODE_UNION)
  1992.                             error (_("`%s' is not defined as an aggregate type."),
  1993.                                    TYPE_NAME (type));

  1994.                           write_exp_elt_opcode (pstate, OP_SCOPE);
  1995.                           write_exp_elt_type (pstate, type);
  1996.                           write_exp_string (pstate, (yyvsp[(3) - (3)].sval));
  1997.                           write_exp_elt_opcode (pstate, OP_SCOPE);
  1998.                         }
  1999.     break;

  2000.   case 64:
  2001. /* Line 1792 of yacc.c  */
  2002. #line 729 "p-exp.y"
  2003.     {
  2004.                           char *name = copy_name ((yyvsp[(2) - (2)].sval));
  2005.                           struct symbol *sym;
  2006.                           struct bound_minimal_symbol msymbol;

  2007.                           sym =
  2008.                             lookup_symbol (name, (const struct block *) NULL,
  2009.                                            VAR_DOMAIN, NULL);
  2010.                           if (sym)
  2011.                             {
  2012.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  2013.                               write_exp_elt_block (pstate, NULL);
  2014.                               write_exp_elt_sym (pstate, sym);
  2015.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  2016.                               break;
  2017.                             }

  2018.                           msymbol = lookup_bound_minimal_symbol (name);
  2019.                           if (msymbol.minsym != NULL)
  2020.                             write_exp_msymbol (pstate, msymbol);
  2021.                           else if (!have_full_symbols ()
  2022.                                    && !have_partial_symbols ())
  2023.                             error (_("No symbol table is loaded.  "
  2024.                                    "Use the \"file\" command."));
  2025.                           else
  2026.                             error (_("No symbol \"%s\" in current context."),
  2027.                                    name);
  2028.                         }
  2029.     break;

  2030.   case 65:
  2031. /* Line 1792 of yacc.c  */
  2032. #line 760 "p-exp.y"
  2033.     { struct symbol *sym = (yyvsp[(1) - (1)].ssym).sym;

  2034.                           if (sym)
  2035.                             {
  2036.                               if (symbol_read_needs_frame (sym))
  2037.                                 {
  2038.                                   if (innermost_block == 0
  2039.                                       || contained_in (block_found,
  2040.                                                        innermost_block))
  2041.                                     innermost_block = block_found;
  2042.                                 }

  2043.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  2044.                               /* We want to use the selected frame, not
  2045.                                  another more inner frame which happens to
  2046.                                  be in the same block.  */
  2047.                               write_exp_elt_block (pstate, NULL);
  2048.                               write_exp_elt_sym (pstate, sym);
  2049.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  2050.                               current_type = sym->type; }
  2051.                           else if ((yyvsp[(1) - (1)].ssym).is_a_field_of_this)
  2052.                             {
  2053.                               struct value * this_val;
  2054.                               struct type * this_type;
  2055.                               /* Object pascal: it hangs off of `this'.  Must
  2056.                                  not inadvertently convert from a method call
  2057.                                  to data ref.  */
  2058.                               if (innermost_block == 0
  2059.                                   || contained_in (block_found,
  2060.                                                    innermost_block))
  2061.                                 innermost_block = block_found;
  2062.                               write_exp_elt_opcode (pstate, OP_THIS);
  2063.                               write_exp_elt_opcode (pstate, OP_THIS);
  2064.                               write_exp_elt_opcode (pstate, STRUCTOP_PTR);
  2065.                               write_exp_string (pstate, (yyvsp[(1) - (1)].ssym).stoken);
  2066.                               write_exp_elt_opcode (pstate, STRUCTOP_PTR);
  2067.                               /* We need type of this.  */
  2068.                               this_val
  2069.                                 = value_of_this_silent (parse_language (pstate));
  2070.                               if (this_val)
  2071.                                 this_type = value_type (this_val);
  2072.                               else
  2073.                                 this_type = NULL;
  2074.                               if (this_type)
  2075.                                 current_type = lookup_struct_elt_type (
  2076.                                   this_type,
  2077.                                   copy_name ((yyvsp[(1) - (1)].ssym).stoken), 0);
  2078.                               else
  2079.                                 current_type = NULL;
  2080.                             }
  2081.                           else
  2082.                             {
  2083.                               struct bound_minimal_symbol msymbol;
  2084.                               char *arg = copy_name ((yyvsp[(1) - (1)].ssym).stoken);

  2085.                               msymbol =
  2086.                                 lookup_bound_minimal_symbol (arg);
  2087.                               if (msymbol.minsym != NULL)
  2088.                                 write_exp_msymbol (pstate, msymbol);
  2089.                               else if (!have_full_symbols ()
  2090.                                        && !have_partial_symbols ())
  2091.                                 error (_("No symbol table is loaded.  "
  2092.                                        "Use the \"file\" command."));
  2093.                               else
  2094.                                 error (_("No symbol \"%s\" in current context."),
  2095.                                        copy_name ((yyvsp[(1) - (1)].ssym).stoken));
  2096.                             }
  2097.                         }
  2098.     break;

  2099.   case 68:
  2100. /* Line 1792 of yacc.c  */
  2101. #line 847 "p-exp.y"
  2102.     { (yyval.tval) = lookup_pointer_type ((yyvsp[(2) - (2)].tval)); }
  2103.     break;

  2104.   case 69:
  2105. /* Line 1792 of yacc.c  */
  2106. #line 849 "p-exp.y"
  2107.     { (yyval.tval) = (yyvsp[(1) - (1)].tsym).type; }
  2108.     break;

  2109.   case 70:
  2110. /* Line 1792 of yacc.c  */
  2111. #line 851 "p-exp.y"
  2112.     { (yyval.tval) = lookup_struct (copy_name ((yyvsp[(2) - (2)].sval)),
  2113.                                               expression_context_block); }
  2114.     break;

  2115.   case 71:
  2116. /* Line 1792 of yacc.c  */
  2117. #line 854 "p-exp.y"
  2118.     { (yyval.tval) = lookup_struct (copy_name ((yyvsp[(2) - (2)].sval)),
  2119.                                               expression_context_block); }
  2120.     break;

  2121.   case 72:
  2122. /* Line 1792 of yacc.c  */
  2123. #line 861 "p-exp.y"
  2124.     { (yyval.sval) = (yyvsp[(1) - (1)].ssym).stoken; }
  2125.     break;

  2126.   case 73:
  2127. /* Line 1792 of yacc.c  */
  2128. #line 862 "p-exp.y"
  2129.     { (yyval.sval) = (yyvsp[(1) - (1)].ssym).stoken; }
  2130.     break;

  2131.   case 74:
  2132. /* Line 1792 of yacc.c  */
  2133. #line 863 "p-exp.y"
  2134.     { (yyval.sval) = (yyvsp[(1) - (1)].tsym).stoken; }
  2135.     break;

  2136.   case 75:
  2137. /* Line 1792 of yacc.c  */
  2138. #line 864 "p-exp.y"
  2139.     { (yyval.sval) = (yyvsp[(1) - (1)].ssym).stoken; }
  2140.     break;


  2141. /* Line 1792 of yacc.c  */
  2142. #line 2438 "p-exp.c"
  2143.       default: break;
  2144.     }
  2145.   /* User semantic actions sometimes alter yychar, and that requires
  2146.      that yytoken be updated with the new translation.  We take the
  2147.      approach of translating immediately before every use of yytoken.
  2148.      One alternative is translating here after every semantic action,
  2149.      but that translation would be missed if the semantic action invokes
  2150.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  2151.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  2152.      incorrect destructor might then be invoked immediately.  In the
  2153.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  2154.      to an incorrect destructor call or verbose syntax error message
  2155.      before the lookahead is translated.  */
  2156.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  2157.   YYPOPSTACK (yylen);
  2158.   yylen = 0;
  2159.   YY_STACK_PRINT (yyss, yyssp);

  2160.   *++yyvsp = yyval;

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

  2164.   yyn = yyr1[yyn];

  2165.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  2166.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  2167.     yystate = yytable[yystate];
  2168.   else
  2169.     yystate = yydefgoto[yyn - YYNTOKENS];

  2170.   goto yynewstate;


  2171. /*------------------------------------.
  2172. | yyerrlab -- here on detecting error |
  2173. `------------------------------------*/
  2174. yyerrlab:
  2175.   /* Make sure we have latest lookahead translation.  See comments at
  2176.      user semantic actions for why this is necessary.  */
  2177.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  2178.   /* If not already recovering from an error, report this error.  */
  2179.   if (!yyerrstatus)
  2180.     {
  2181.       ++yynerrs;
  2182. #if ! YYERROR_VERBOSE
  2183.       yyerror (YY_("syntax error"));
  2184. #else
  2185. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  2186.                                         yyssp, yytoken)
  2187.       {
  2188.         char const *yymsgp = YY_("syntax error");
  2189.         int yysyntax_error_status;
  2190.         yysyntax_error_status = YYSYNTAX_ERROR;
  2191.         if (yysyntax_error_status == 0)
  2192.           yymsgp = yymsg;
  2193.         else if (yysyntax_error_status == 1)
  2194.           {
  2195.             if (yymsg != yymsgbuf)
  2196.               YYSTACK_FREE (yymsg);
  2197.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  2198.             if (!yymsg)
  2199.               {
  2200.                 yymsg = yymsgbuf;
  2201.                 yymsg_alloc = sizeof yymsgbuf;
  2202.                 yysyntax_error_status = 2;
  2203.               }
  2204.             else
  2205.               {
  2206.                 yysyntax_error_status = YYSYNTAX_ERROR;
  2207.                 yymsgp = yymsg;
  2208.               }
  2209.           }
  2210.         yyerror (yymsgp);
  2211.         if (yysyntax_error_status == 2)
  2212.           goto yyexhaustedlab;
  2213.       }
  2214. # undef YYSYNTAX_ERROR
  2215. #endif
  2216.     }



  2217.   if (yyerrstatus == 3)
  2218.     {
  2219.       /* If just tried and failed to reuse lookahead token after an
  2220.          error, discard it.  */

  2221.       if (yychar <= YYEOF)
  2222.         {
  2223.           /* Return failure if at end of input.  */
  2224.           if (yychar == YYEOF)
  2225.             YYABORT;
  2226.         }
  2227.       else
  2228.         {
  2229.           yydestruct ("Error: discarding",
  2230.                       yytoken, &yylval);
  2231.           yychar = YYEMPTY;
  2232.         }
  2233.     }

  2234.   /* Else will try to reuse lookahead token after shifting the error
  2235.      token.  */
  2236.   goto yyerrlab1;


  2237. /*---------------------------------------------------.
  2238. | yyerrorlab -- error raised explicitly by YYERROR.  |
  2239. `---------------------------------------------------*/
  2240. yyerrorlab:

  2241.   /* Pacify compilers like GCC when the user code never invokes
  2242.      YYERROR and the label yyerrorlab therefore never appears in user
  2243.      code.  */
  2244.   if (/*CONSTCOND*/ 0)
  2245.      goto yyerrorlab;

  2246.   /* Do not reclaim the symbols of the rule which action triggered
  2247.      this YYERROR.  */
  2248.   YYPOPSTACK (yylen);
  2249.   yylen = 0;
  2250.   YY_STACK_PRINT (yyss, yyssp);
  2251.   yystate = *yyssp;
  2252.   goto yyerrlab1;


  2253. /*-------------------------------------------------------------.
  2254. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  2255. `-------------------------------------------------------------*/
  2256. yyerrlab1:
  2257.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  2258.   for (;;)
  2259.     {
  2260.       yyn = yypact[yystate];
  2261.       if (!yypact_value_is_default (yyn))
  2262.         {
  2263.           yyn += YYTERROR;
  2264.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  2265.             {
  2266.               yyn = yytable[yyn];
  2267.               if (0 < yyn)
  2268.                 break;
  2269.             }
  2270.         }

  2271.       /* Pop the current state because it cannot handle the error token.  */
  2272.       if (yyssp == yyss)
  2273.         YYABORT;


  2274.       yydestruct ("Error: popping",
  2275.                   yystos[yystate], yyvsp);
  2276.       YYPOPSTACK (1);
  2277.       yystate = *yyssp;
  2278.       YY_STACK_PRINT (yyss, yyssp);
  2279.     }

  2280.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  2281.   *++yyvsp = yylval;
  2282.   YY_IGNORE_MAYBE_UNINITIALIZED_END


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

  2285.   yystate = yyn;
  2286.   goto yynewstate;


  2287. /*-------------------------------------.
  2288. | yyacceptlab -- YYACCEPT comes here.  |
  2289. `-------------------------------------*/
  2290. yyacceptlab:
  2291.   yyresult = 0;
  2292.   goto yyreturn;

  2293. /*-----------------------------------.
  2294. | yyabortlab -- YYABORT comes here.  |
  2295. `-----------------------------------*/
  2296. yyabortlab:
  2297.   yyresult = 1;
  2298.   goto yyreturn;

  2299. #if !defined yyoverflow || YYERROR_VERBOSE
  2300. /*-------------------------------------------------.
  2301. | yyexhaustedlab -- memory exhaustion comes here.  |
  2302. `-------------------------------------------------*/
  2303. yyexhaustedlab:
  2304.   yyerror (YY_("memory exhausted"));
  2305.   yyresult = 2;
  2306.   /* Fall through.  */
  2307. #endif

  2308. yyreturn:
  2309.   if (yychar != YYEMPTY)
  2310.     {
  2311.       /* Make sure we have latest lookahead translation.  See comments at
  2312.          user semantic actions for why this is necessary.  */
  2313.       yytoken = YYTRANSLATE (yychar);
  2314.       yydestruct ("Cleanup: discarding lookahead",
  2315.                   yytoken, &yylval);
  2316.     }
  2317.   /* Do not reclaim the symbols of the rule which action triggered
  2318.      this YYABORT or YYACCEPT.  */
  2319.   YYPOPSTACK (yylen);
  2320.   YY_STACK_PRINT (yyss, yyssp);
  2321.   while (yyssp != yyss)
  2322.     {
  2323.       yydestruct ("Cleanup: popping",
  2324.                   yystos[*yyssp], yyvsp);
  2325.       YYPOPSTACK (1);
  2326.     }
  2327. #ifndef yyoverflow
  2328.   if (yyss != yyssa)
  2329.     YYSTACK_FREE (yyss);
  2330. #endif
  2331. #if YYERROR_VERBOSE
  2332.   if (yymsg != yymsgbuf)
  2333.     YYSTACK_FREE (yymsg);
  2334. #endif
  2335.   /* Make sure YYID is used.  */
  2336.   return YYID (yyresult);
  2337. }


  2338. /* Line 2055 of yacc.c  */
  2339. #line 878 "p-exp.y"


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

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

  2344. static int
  2345. parse_number (struct parser_state *par_state,
  2346.               const char *p, int len, int parsed_float, YYSTYPE *putithere)
  2347. {
  2348.   /* FIXME: Shouldn't these be unsigned?  We don't deal with negative values
  2349.      here, and we do kind of silly things like cast to unsigned.  */
  2350.   LONGEST n = 0;
  2351.   LONGEST prevn = 0;
  2352.   ULONGEST un;

  2353.   int i = 0;
  2354.   int c;
  2355.   int base = input_radix;
  2356.   int unsigned_p = 0;

  2357.   /* Number of "L" suffixes encountered.  */
  2358.   int long_p = 0;

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

  2361.   ULONGEST high_bit;
  2362.   struct type *signed_type;
  2363.   struct type *unsigned_type;

  2364.   if (parsed_float)
  2365.     {
  2366.       if (! parse_c_float (parse_gdbarch (par_state), p, len,
  2367.                            &putithere->typed_val_float.dval,
  2368.                            &putithere->typed_val_float.type))
  2369.         return ERROR;
  2370.       return FLOAT;
  2371.     }

  2372.   /* Handle base-switching prefixes 0x, 0t, 0d, 0.  */
  2373.   if (p[0] == '0')
  2374.     switch (p[1])
  2375.       {
  2376.       case 'x':
  2377.       case 'X':
  2378.         if (len >= 3)
  2379.           {
  2380.             p += 2;
  2381.             base = 16;
  2382.             len -= 2;
  2383.           }
  2384.         break;

  2385.       case 't':
  2386.       case 'T':
  2387.       case 'd':
  2388.       case 'D':
  2389.         if (len >= 3)
  2390.           {
  2391.             p += 2;
  2392.             base = 10;
  2393.             len -= 2;
  2394.           }
  2395.         break;

  2396.       default:
  2397.         base = 8;
  2398.         break;
  2399.       }

  2400.   while (len-- > 0)
  2401.     {
  2402.       c = *p++;
  2403.       if (c >= 'A' && c <= 'Z')
  2404.         c += 'a' - 'A';
  2405.       if (c != 'l' && c != 'u')
  2406.         n *= base;
  2407.       if (c >= '0' && c <= '9')
  2408.         {
  2409.           if (found_suffix)
  2410.             return ERROR;
  2411.           n += i = c - '0';
  2412.         }
  2413.       else
  2414.         {
  2415.           if (base > 10 && c >= 'a' && c <= 'f')
  2416.             {
  2417.               if (found_suffix)
  2418.                 return ERROR;
  2419.               n += i = c - 'a' + 10;
  2420.             }
  2421.           else if (c == 'l')
  2422.             {
  2423.               ++long_p;
  2424.               found_suffix = 1;
  2425.             }
  2426.           else if (c == 'u')
  2427.             {
  2428.               unsigned_p = 1;
  2429.               found_suffix = 1;
  2430.             }
  2431.           else
  2432.             return ERROR;        /* Char not a digit */
  2433.         }
  2434.       if (i >= base)
  2435.         return ERROR;                /* Invalid digit in this base.  */

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

  2441.       /* Portably test for unsigned overflow.
  2442.          FIXME: This check is wrong; for example it doesn't find overflow
  2443.          on 0x123456789 when LONGEST is 32 bits.  */
  2444.       if (c != 'l' && c != 'u' && n != 0)
  2445.         {
  2446.           if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
  2447.             error (_("Numeric constant too large."));
  2448.         }
  2449.       prevn = n;
  2450.     }

  2451.   /* An integer constant is an int, a long, or a long long.  An L
  2452.      suffix forces it to be long; an LL suffix forces it to be long
  2453.      long.  If not forced to a larger size, it gets the first type of
  2454.      the above that it fits in.  To figure out whether it fits, we
  2455.      shift it right and see whether anything remains.  Note that we
  2456.      can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
  2457.      operation, because many compilers will warn about such a shift
  2458.      (which always produces a zero result).  Sometimes gdbarch_int_bit
  2459.      or gdbarch_long_bit will be that big, sometimes not.  To deal with
  2460.      the case where it is we just always shift the value more than
  2461.      once, with fewer bits each time.  */

  2462.   un = (ULONGEST)n >> 2;
  2463.   if (long_p == 0
  2464.       && (un >> (gdbarch_int_bit (parse_gdbarch (par_state)) - 2)) == 0)
  2465.     {
  2466.       high_bit
  2467.         = ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch (par_state)) - 1);

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

  2473.       unsigned_type = parse_type (par_state)->builtin_unsigned_int;
  2474.       signed_type = parse_type (par_state)->builtin_int;
  2475.     }
  2476.   else if (long_p <= 1
  2477.            && (un >> (gdbarch_long_bit (parse_gdbarch (par_state)) - 2)) == 0)
  2478.     {
  2479.       high_bit
  2480.         = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch (par_state)) - 1);
  2481.       unsigned_type = parse_type (par_state)->builtin_unsigned_long;
  2482.       signed_type = parse_type (par_state)->builtin_long;
  2483.     }
  2484.   else
  2485.     {
  2486.       int shift;
  2487.       if (sizeof (ULONGEST) * HOST_CHAR_BIT
  2488.           < gdbarch_long_long_bit (parse_gdbarch (par_state)))
  2489.         /* A long long does not fit in a LONGEST.  */
  2490.         shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
  2491.       else
  2492.         shift = (gdbarch_long_long_bit (parse_gdbarch (par_state)) - 1);
  2493.       high_bit = (ULONGEST) 1 << shift;
  2494.       unsigned_type = parse_type (par_state)->builtin_unsigned_long_long;
  2495.       signed_type = parse_type (par_state)->builtin_long_long;
  2496.     }

  2497.    putithere->typed_val_int.val = n;

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

  2500.    if (unsigned_p || (n & high_bit))
  2501.      {
  2502.        putithere->typed_val_int.type = unsigned_type;
  2503.      }
  2504.    else
  2505.      {
  2506.        putithere->typed_val_int.type = signed_type;
  2507.      }

  2508.    return INT;
  2509. }


  2510. struct type_push
  2511. {
  2512.   struct type *stored;
  2513.   struct type_push *next;
  2514. };

  2515. static struct type_push *tp_top = NULL;

  2516. static void
  2517. push_current_type (void)
  2518. {
  2519.   struct type_push *tpnew;
  2520.   tpnew = (struct type_push *) xmalloc (sizeof (struct type_push));
  2521.   tpnew->next = tp_top;
  2522.   tpnew->stored = current_type;
  2523.   current_type = NULL;
  2524.   tp_top = tpnew;
  2525. }

  2526. static void
  2527. pop_current_type (void)
  2528. {
  2529.   struct type_push *tp = tp_top;
  2530.   if (tp)
  2531.     {
  2532.       current_type = tp->stored;
  2533.       tp_top = tp->next;
  2534.       xfree (tp);
  2535.     }
  2536. }

  2537. struct token
  2538. {
  2539.   char *operator;
  2540.   int token;
  2541.   enum exp_opcode opcode;
  2542. };

  2543. static const struct token tokentab3[] =
  2544.   {
  2545.     {"shr", RSH, BINOP_END},
  2546.     {"shl", LSH, BINOP_END},
  2547.     {"and", ANDAND, BINOP_END},
  2548.     {"div", DIV, BINOP_END},
  2549.     {"not", NOT, BINOP_END},
  2550.     {"mod", MOD, BINOP_END},
  2551.     {"inc", INCREMENT, BINOP_END},
  2552.     {"dec", DECREMENT, BINOP_END},
  2553.     {"xor", XOR, BINOP_END}
  2554.   };

  2555. static const struct token tokentab2[] =
  2556.   {
  2557.     {"or", OR, BINOP_END},
  2558.     {"<>", NOTEQUAL, BINOP_END},
  2559.     {"<=", LEQ, BINOP_END},
  2560.     {">=", GEQ, BINOP_END},
  2561.     {":=", ASSIGN, BINOP_END},
  2562.     {"::", COLONCOLON, BINOP_END} };

  2563. /* Allocate uppercased var: */
  2564. /* make an uppercased copy of tokstart.  */
  2565. static char *
  2566. uptok (const char *tokstart, int namelen)
  2567. {
  2568.   int i;
  2569.   char *uptokstart = (char *)xmalloc(namelen+1);
  2570.   for (i = 0;i <= namelen;i++)
  2571.     {
  2572.       if ((tokstart[i]>='a' && tokstart[i]<='z'))
  2573.         uptokstart[i] = tokstart[i]-('a'-'A');
  2574.       else
  2575.         uptokstart[i] = tokstart[i];
  2576.     }
  2577.   uptokstart[namelen]='\0';
  2578.   return uptokstart;
  2579. }

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

  2581. static int
  2582. yylex (void)
  2583. {
  2584.   int c;
  2585.   int namelen;
  2586.   unsigned int i;
  2587.   const char *tokstart;
  2588.   char *uptokstart;
  2589.   const char *tokptr;
  2590.   int explen, tempbufindex;
  2591.   static char *tempbuf;
  2592.   static int tempbufsize;

  2593. retry:

  2594.   prev_lexptr = lexptr;

  2595.   tokstart = lexptr;
  2596.   explen = strlen (lexptr);

  2597.   /* See if it is a special token of length 3.  */
  2598.   if (explen > 2)
  2599.     for (i = 0; i < sizeof (tokentab3) / sizeof (tokentab3[0]); i++)
  2600.       if (strncasecmp (tokstart, tokentab3[i].operator, 3) == 0
  2601.           && (!isalpha (tokentab3[i].operator[0]) || explen == 3
  2602.               || (!isalpha (tokstart[3])
  2603.                   && !isdigit (tokstart[3]) && tokstart[3] != '_')))
  2604.         {
  2605.           lexptr += 3;
  2606.           yylval.opcode = tokentab3[i].opcode;
  2607.           return tokentab3[i].token;
  2608.         }

  2609.   /* See if it is a special token of length 2.  */
  2610.   if (explen > 1)
  2611.   for (i = 0; i < sizeof (tokentab2) / sizeof (tokentab2[0]); i++)
  2612.       if (strncasecmp (tokstart, tokentab2[i].operator, 2) == 0
  2613.           && (!isalpha (tokentab2[i].operator[0]) || explen == 2
  2614.               || (!isalpha (tokstart[2])
  2615.                   && !isdigit (tokstart[2]) && tokstart[2] != '_')))
  2616.         {
  2617.           lexptr += 2;
  2618.           yylval.opcode = tokentab2[i].opcode;
  2619.           return tokentab2[i].token;
  2620.         }

  2621.   switch (c = *tokstart)
  2622.     {
  2623.     case 0:
  2624.       if (search_field && parse_completion)
  2625.         return COMPLETE;
  2626.       else
  2627.        return 0;

  2628.     case ' ':
  2629.     case '\t':
  2630.     case '\n':
  2631.       lexptr++;
  2632.       goto retry;

  2633.     case '\'':
  2634.       /* We either have a character constant ('0' or '\177' for example)
  2635.          or we have a quoted symbol reference ('foo(int,int)' in object pascal
  2636.          for example).  */
  2637.       lexptr++;
  2638.       c = *lexptr++;
  2639.       if (c == '\\')
  2640.         c = parse_escape (parse_gdbarch (pstate), &lexptr);
  2641.       else if (c == '\'')
  2642.         error (_("Empty character constant."));

  2643.       yylval.typed_val_int.val = c;
  2644.       yylval.typed_val_int.type = parse_type (pstate)->builtin_char;

  2645.       c = *lexptr++;
  2646.       if (c != '\'')
  2647.         {
  2648.           namelen = skip_quoted (tokstart) - tokstart;
  2649.           if (namelen > 2)
  2650.             {
  2651.               lexptr = tokstart + namelen;
  2652.               if (lexptr[-1] != '\'')
  2653.                 error (_("Unmatched single quote."));
  2654.               namelen -= 2;
  2655.               tokstart++;
  2656.               uptokstart = uptok(tokstart,namelen);
  2657.               goto tryname;
  2658.             }
  2659.           error (_("Invalid character constant."));
  2660.         }
  2661.       return INT;

  2662.     case '(':
  2663.       paren_depth++;
  2664.       lexptr++;
  2665.       return c;

  2666.     case ')':
  2667.       if (paren_depth == 0)
  2668.         return 0;
  2669.       paren_depth--;
  2670.       lexptr++;
  2671.       return c;

  2672.     case ',':
  2673.       if (comma_terminates && paren_depth == 0)
  2674.         return 0;
  2675.       lexptr++;
  2676.       return c;

  2677.     case '.':
  2678.       /* Might be a floating point number.  */
  2679.       if (lexptr[1] < '0' || lexptr[1] > '9')
  2680.         {
  2681.           goto symbol;                /* Nope, must be a symbol.  */
  2682.         }

  2683.       /* FALL THRU into number case.  */

  2684.     case '0':
  2685.     case '1':
  2686.     case '2':
  2687.     case '3':
  2688.     case '4':
  2689.     case '5':
  2690.     case '6':
  2691.     case '7':
  2692.     case '8':
  2693.     case '9':
  2694.       {
  2695.         /* It's a number.  */
  2696.         int got_dot = 0, got_e = 0, toktype;
  2697.         const char *p = tokstart;
  2698.         int hex = input_radix > 10;

  2699.         if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
  2700.           {
  2701.             p += 2;
  2702.             hex = 1;
  2703.           }
  2704.         else if (c == '0' && (p[1]=='t' || p[1]=='T'
  2705.                               || p[1]=='d' || p[1]=='D'))
  2706.           {
  2707.             p += 2;
  2708.             hex = 0;
  2709.           }

  2710.         for (;; ++p)
  2711.           {
  2712.             /* This test includes !hex because 'e' is a valid hex digit
  2713.                and thus does not indicate a floating point number when
  2714.                the radix is hex.  */
  2715.             if (!hex && !got_e && (*p == 'e' || *p == 'E'))
  2716.               got_dot = got_e = 1;
  2717.             /* This test does not include !hex, because a '.' always indicates
  2718.                a decimal floating point number regardless of the radix.  */
  2719.             else if (!got_dot && *p == '.')
  2720.               got_dot = 1;
  2721.             else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
  2722.                      && (*p == '-' || *p == '+'))
  2723.               /* This is the sign of the exponent, not the end of the
  2724.                  number.  */
  2725.               continue;
  2726.             /* We will take any letters or digits.  parse_number will
  2727.                complain if past the radix, or if L or U are not final.  */
  2728.             else if ((*p < '0' || *p > '9')
  2729.                      && ((*p < 'a' || *p > 'z')
  2730.                                   && (*p < 'A' || *p > 'Z')))
  2731.               break;
  2732.           }
  2733.         toktype = parse_number (pstate, tokstart,
  2734.                                 p - tokstart, got_dot | got_e, &yylval);
  2735.         if (toktype == ERROR)
  2736.           {
  2737.             char *err_copy = (char *) alloca (p - tokstart + 1);

  2738.             memcpy (err_copy, tokstart, p - tokstart);
  2739.             err_copy[p - tokstart] = 0;
  2740.             error (_("Invalid number \"%s\"."), err_copy);
  2741.           }
  2742.         lexptr = p;
  2743.         return toktype;
  2744.       }

  2745.     case '+':
  2746.     case '-':
  2747.     case '*':
  2748.     case '/':
  2749.     case '|':
  2750.     case '&':
  2751.     case '^':
  2752.     case '~':
  2753.     case '!':
  2754.     case '@':
  2755.     case '<':
  2756.     case '>':
  2757.     case '[':
  2758.     case ']':
  2759.     case '?':
  2760.     case ':':
  2761.     case '=':
  2762.     case '{':
  2763.     case '}':
  2764.     symbol:
  2765.       lexptr++;
  2766.       return c;

  2767.     case '"':

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

  2776.       tokptr = ++tokstart;
  2777.       tempbufindex = 0;

  2778.       do {
  2779.         /* Grow the static temp buffer if necessary, including allocating
  2780.            the first one on demand.  */
  2781.         if (tempbufindex + 1 >= tempbufsize)
  2782.           {
  2783.             tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64);
  2784.           }

  2785.         switch (*tokptr)
  2786.           {
  2787.           case '\0':
  2788.           case '"':
  2789.             /* Do nothing, loop will terminate.  */
  2790.             break;
  2791.           case '\\':
  2792.             ++tokptr;
  2793.             c = parse_escape (parse_gdbarch (pstate), &tokptr);
  2794.             if (c == -1)
  2795.               {
  2796.                 continue;
  2797.               }
  2798.             tempbuf[tempbufindex++] = c;
  2799.             break;
  2800.           default:
  2801.             tempbuf[tempbufindex++] = *tokptr++;
  2802.             break;
  2803.           }
  2804.       } while ((*tokptr != '"') && (*tokptr != '\0'));
  2805.       if (*tokptr++ != '"')
  2806.         {
  2807.           error (_("Unterminated string in expression."));
  2808.         }
  2809.       tempbuf[tempbufindex] = '\0';        /* See note above.  */
  2810.       yylval.sval.ptr = tempbuf;
  2811.       yylval.sval.length = tempbufindex;
  2812.       lexptr = tokptr;
  2813.       return (STRING);
  2814.     }

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

  2819.   /* It's a name.  See how long it is.  */
  2820.   namelen = 0;
  2821.   for (c = tokstart[namelen];
  2822.        (c == '_' || c == '$' || (c >= '0' && c <= '9')
  2823.         || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '<');)
  2824.     {
  2825.       /* Template parameter lists are part of the name.
  2826.          FIXME: This mishandles `print $a<4&&$a>3'.  */
  2827.       if (c == '<')
  2828.         {
  2829.           int i = namelen;
  2830.           int nesting_level = 1;
  2831.           while (tokstart[++i])
  2832.             {
  2833.               if (tokstart[i] == '<')
  2834.                 nesting_level++;
  2835.               else if (tokstart[i] == '>')
  2836.                 {
  2837.                   if (--nesting_level == 0)
  2838.                     break;
  2839.                 }
  2840.             }
  2841.           if (tokstart[i] == '>')
  2842.             namelen = i;
  2843.           else
  2844.             break;
  2845.         }

  2846.       /* do NOT uppercase internals because of registers !!!  */
  2847.       c = tokstart[++namelen];
  2848.     }

  2849.   uptokstart = uptok(tokstart,namelen);

  2850.   /* The token "if" terminates the expression and is NOT
  2851.      removed from the input stream.  */
  2852.   if (namelen == 2 && uptokstart[0] == 'I' && uptokstart[1] == 'F')
  2853.     {
  2854.       xfree (uptokstart);
  2855.       return 0;
  2856.     }

  2857.   lexptr += namelen;

  2858.   tryname:

  2859.   /* Catch specific keywords.  Should be done with a data structure.  */
  2860.   switch (namelen)
  2861.     {
  2862.     case 6:
  2863.       if (strcmp (uptokstart, "OBJECT") == 0)
  2864.         {
  2865.           xfree (uptokstart);
  2866.           return CLASS;
  2867.         }
  2868.       if (strcmp (uptokstart, "RECORD") == 0)
  2869.         {
  2870.           xfree (uptokstart);
  2871.           return STRUCT;
  2872.         }
  2873.       if (strcmp (uptokstart, "SIZEOF") == 0)
  2874.         {
  2875.           xfree (uptokstart);
  2876.           return SIZEOF;
  2877.         }
  2878.       break;
  2879.     case 5:
  2880.       if (strcmp (uptokstart, "CLASS") == 0)
  2881.         {
  2882.           xfree (uptokstart);
  2883.           return CLASS;
  2884.         }
  2885.       if (strcmp (uptokstart, "FALSE") == 0)
  2886.         {
  2887.           yylval.lval = 0;
  2888.           xfree (uptokstart);
  2889.           return FALSEKEYWORD;
  2890.         }
  2891.       break;
  2892.     case 4:
  2893.       if (strcmp (uptokstart, "TRUE") == 0)
  2894.         {
  2895.           yylval.lval = 1;
  2896.           xfree (uptokstart);
  2897.             return TRUEKEYWORD;
  2898.         }
  2899.       if (strcmp (uptokstart, "SELF") == 0)
  2900.         {
  2901.           /* Here we search for 'this' like
  2902.              inserted in FPC stabs debug info.  */
  2903.           static const char this_name[] = "this";

  2904.           if (lookup_symbol (this_name, expression_context_block,
  2905.                              VAR_DOMAIN, NULL))
  2906.             {
  2907.               xfree (uptokstart);
  2908.               return THIS;
  2909.             }
  2910.         }
  2911.       break;
  2912.     default:
  2913.       break;
  2914.     }

  2915.   yylval.sval.ptr = tokstart;
  2916.   yylval.sval.length = namelen;

  2917.   if (*tokstart == '$')
  2918.     {
  2919.       char *tmp;

  2920.       /* $ is the normal prefix for pascal hexadecimal values
  2921.         but this conflicts with the GDB use for debugger variables
  2922.         so in expression to enter hexadecimal values
  2923.         we still need to use C syntax with 0xff  */
  2924.       write_dollar_variable (pstate, yylval.sval);
  2925.       tmp = alloca (namelen + 1);
  2926.       memcpy (tmp, tokstart, namelen);
  2927.       tmp[namelen] = '\0';
  2928.       intvar = lookup_only_internalvar (tmp + 1);
  2929.       xfree (uptokstart);
  2930.       return VARIABLE;
  2931.     }

  2932.   /* Use token-type BLOCKNAME for symbols that happen to be defined as
  2933.      functions or symtabs.  If this is not so, then ...
  2934.      Use token-type TYPENAME for symbols that happen to be defined
  2935.      currently as names of types; NAME for other symbols.
  2936.      The caller is not constrained to care about the distinction.  */
  2937.   {
  2938.     char *tmp = copy_name (yylval.sval);
  2939.     struct symbol *sym;
  2940.     struct field_of_this_result is_a_field_of_this;
  2941.     int is_a_field = 0;
  2942.     int hextype;


  2943.     if (search_field && current_type)
  2944.       is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL);
  2945.     if (is_a_field)
  2946.       sym = NULL;
  2947.     else
  2948.       sym = lookup_symbol (tmp, expression_context_block,
  2949.                            VAR_DOMAIN, &is_a_field_of_this);
  2950.     /* second chance uppercased (as Free Pascal does).  */
  2951.     if (!sym && is_a_field_of_this.type == NULL && !is_a_field)
  2952.       {
  2953.        for (i = 0; i <= namelen; i++)
  2954.          {
  2955.            if ((tmp[i] >= 'a' && tmp[i] <= 'z'))
  2956.              tmp[i] -= ('a'-'A');
  2957.          }
  2958.        if (search_field && current_type)
  2959.          is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL);
  2960.        if (is_a_field)
  2961.          sym = NULL;
  2962.        else
  2963.          sym = lookup_symbol (tmp, expression_context_block,
  2964.                               VAR_DOMAIN, &is_a_field_of_this);
  2965.       }
  2966.     /* Third chance Capitalized (as GPC does).  */
  2967.     if (!sym && is_a_field_of_this.type == NULL && !is_a_field)
  2968.       {
  2969.        for (i = 0; i <= namelen; i++)
  2970.          {
  2971.            if (i == 0)
  2972.              {
  2973.               if ((tmp[i] >= 'a' && tmp[i] <= 'z'))
  2974.                 tmp[i] -= ('a'-'A');
  2975.              }
  2976.            else
  2977.            if ((tmp[i] >= 'A' && tmp[i] <= 'Z'))
  2978.              tmp[i] -= ('A'-'a');
  2979.           }
  2980.        if (search_field && current_type)
  2981.          is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL);
  2982.        if (is_a_field)
  2983.          sym = NULL;
  2984.        else
  2985.          sym = lookup_symbol (tmp, expression_context_block,
  2986.                               VAR_DOMAIN, &is_a_field_of_this);
  2987.       }

  2988.     if (is_a_field)
  2989.       {
  2990.         tempbuf = (char *) xrealloc (tempbuf, namelen + 1);
  2991.         strncpy (tempbuf, tmp, namelen);
  2992.         tempbuf [namelen] = 0;
  2993.         yylval.sval.ptr = tempbuf;
  2994.         yylval.sval.length = namelen;
  2995.         xfree (uptokstart);
  2996.         return FIELDNAME;
  2997.       }
  2998.     /* Call lookup_symtab, not lookup_partial_symtab, in case there are
  2999.        no psymtabs (coff, xcoff, or some future change to blow away the
  3000.        psymtabs once once symbols are read).  */
  3001.     if ((sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
  3002.         || lookup_symtab (tmp))
  3003.       {
  3004.         yylval.ssym.sym = sym;
  3005.         yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  3006.         xfree (uptokstart);
  3007.         return BLOCKNAME;
  3008.       }
  3009.     if (sym && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  3010.         {
  3011. #if 1
  3012.           /* Despite the following flaw, we need to keep this code enabled.
  3013.              Because we can get called from check_stub_method, if we don't
  3014.              handle nested types then it screws many operations in any
  3015.              program which uses nested types.  */
  3016.           /* In "A::x", if x is a member function of A and there happens
  3017.              to be a type (nested or not, since the stabs don't make that
  3018.              distinction) named x, then this code incorrectly thinks we
  3019.              are dealing with nested types rather than a member function.  */

  3020.           const char *p;
  3021.           const char *namestart;
  3022.           struct symbol *best_sym;

  3023.           /* Look ahead to detect nested types.  This probably should be
  3024.              done in the grammar, but trying seemed to introduce a lot
  3025.              of shift/reduce and reduce/reduce conflicts.  It's possible
  3026.              that it could be done, though.  Or perhaps a non-grammar, but
  3027.              less ad hoc, approach would work well.  */

  3028.           /* Since we do not currently have any way of distinguishing
  3029.              a nested type from a non-nested one (the stabs don't tell
  3030.              us whether a type is nested), we just ignore the
  3031.              containing type.  */

  3032.           p = lexptr;
  3033.           best_sym = sym;
  3034.           while (1)
  3035.             {
  3036.               /* Skip whitespace.  */
  3037.               while (*p == ' ' || *p == '\t' || *p == '\n')
  3038.                 ++p;
  3039.               if (*p == ':' && p[1] == ':')
  3040.                 {
  3041.                   /* Skip the `::'.  */
  3042.                   p += 2;
  3043.                   /* Skip whitespace.  */
  3044.                   while (*p == ' ' || *p == '\t' || *p == '\n')
  3045.                     ++p;
  3046.                   namestart = p;
  3047.                   while (*p == '_' || *p == '$' || (*p >= '0' && *p <= '9')
  3048.                          || (*p >= 'a' && *p <= 'z')
  3049.                          || (*p >= 'A' && *p <= 'Z'))
  3050.                     ++p;
  3051.                   if (p != namestart)
  3052.                     {
  3053.                       struct symbol *cur_sym;
  3054.                       /* As big as the whole rest of the expression, which is
  3055.                          at least big enough.  */
  3056.                       char *ncopy = alloca (strlen (tmp)+strlen (namestart)+3);
  3057.                       char *tmp1;

  3058.                       tmp1 = ncopy;
  3059.                       memcpy (tmp1, tmp, strlen (tmp));
  3060.                       tmp1 += strlen (tmp);
  3061.                       memcpy (tmp1, "::", 2);
  3062.                       tmp1 += 2;
  3063.                       memcpy (tmp1, namestart, p - namestart);
  3064.                       tmp1[p - namestart] = '\0';
  3065.                       cur_sym = lookup_symbol (ncopy, expression_context_block,
  3066.                                                VAR_DOMAIN, NULL);
  3067.                       if (cur_sym)
  3068.                         {
  3069.                           if (SYMBOL_CLASS (cur_sym) == LOC_TYPEDEF)
  3070.                             {
  3071.                               best_sym = cur_sym;
  3072.                               lexptr = p;
  3073.                             }
  3074.                           else
  3075.                             break;
  3076.                         }
  3077.                       else
  3078.                         break;
  3079.                     }
  3080.                   else
  3081.                     break;
  3082.                 }
  3083.               else
  3084.                 break;
  3085.             }

  3086.           yylval.tsym.type = SYMBOL_TYPE (best_sym);
  3087. #else /* not 0 */
  3088.           yylval.tsym.type = SYMBOL_TYPE (sym);
  3089. #endif /* not 0 */
  3090.           xfree (uptokstart);
  3091.           return TYPENAME;
  3092.         }
  3093.     yylval.tsym.type
  3094.       = language_lookup_primitive_type_by_name (parse_language (pstate),
  3095.                                                 parse_gdbarch (pstate), tmp);
  3096.     if (yylval.tsym.type != NULL)
  3097.       {
  3098.         xfree (uptokstart);
  3099.         return TYPENAME;
  3100.       }

  3101.     /* Input names that aren't symbols but ARE valid hex numbers,
  3102.        when the input radix permits them, can be names or numbers
  3103.        depending on the parse.  Note we support radixes > 16 here.  */
  3104.     if (!sym
  3105.         && ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10)
  3106.             || (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
  3107.       {
  3108.          YYSTYPE newlval;        /* Its value is ignored.  */
  3109.         hextype = parse_number (pstate, tokstart, namelen, 0, &newlval);
  3110.         if (hextype == INT)
  3111.           {
  3112.             yylval.ssym.sym = sym;
  3113.             yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  3114.             xfree (uptokstart);
  3115.             return NAME_OR_INT;
  3116.           }
  3117.       }

  3118.     xfree(uptokstart);
  3119.     /* Any other kind of symbol.  */
  3120.     yylval.ssym.sym = sym;
  3121.     yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  3122.     return NAME;
  3123.   }
  3124. }

  3125. int
  3126. pascal_parse (struct parser_state *par_state)
  3127. {
  3128.   int result;
  3129.   struct cleanup *c = make_cleanup_clear_parser_state (&pstate);

  3130.   /* Setting up the parser state.  */
  3131.   gdb_assert (par_state != NULL);
  3132.   pstate = par_state;

  3133.   result = yyparse ();
  3134.   do_cleanups (c);
  3135.   return result;
  3136. }

  3137. void
  3138. yyerror (char *msg)
  3139. {
  3140.   if (prev_lexptr)
  3141.     lexptr = prev_lexptr;

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