gdb/f-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 43 "f-exp.y"


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

  59. #define parse_type(ps) builtin_type (parse_gdbarch (ps))
  60. #define parse_f_type(ps) builtin_f_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 f_maxdepth
  68. #define        yyparse f_parse_internal
  69. #define        yylex        f_lex
  70. #define        yyerror        f_error
  71. #define        yylval        f_lval
  72. #define        yychar        f_char
  73. #define        yydebug        f_debug
  74. #define        yypact        f_pact
  75. #define        yyr1        f_r1
  76. #define        yyr2        f_r2
  77. #define        yydef        f_def
  78. #define        yychk        f_chk
  79. #define        yypgo        f_pgo
  80. #define        yyact        f_act
  81. #define        yyexca        f_exca
  82. #define yyerrflag f_errflag
  83. #define yynerrs        f_nerrs
  84. #define        yyps        f_ps
  85. #define        yypv        f_pv
  86. #define        yys        f_s
  87. #define        yy_yys        f_yys
  88. #define        yystate        f_state
  89. #define        yytmp        f_tmp
  90. #define        yyv        f_v
  91. #define        yy_yyv        f_yyv
  92. #define        yyval        f_val
  93. #define        yylloc        f_lloc
  94. #define yyreds        f_reds                /* With YYDEBUG defined */
  95. #define yytoks        f_toks                /* With YYDEBUG defined */
  96. #define yyname        f_name                /* With YYDEBUG defined */
  97. #define yyrule        f_rule                /* With YYDEBUG defined */
  98. #define yylhs        f_yylhs
  99. #define yylen        f_yylen
  100. #define yydefred f_yydefred
  101. #define yydgoto        f_yydgoto
  102. #define yysindex f_yysindex
  103. #define yyrindex f_yyrindex
  104. #define yygindex f_yygindex
  105. #define yytable         f_yytable
  106. #define yycheck         f_yycheck
  107. #define yyss        f_yyss
  108. #define yysslim        f_yysslim
  109. #define yyssp        f_yyssp
  110. #define yystacksize f_yystacksize
  111. #define yyvs        f_yyvs
  112. #define yyvsp        f_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 void growbuf_by_size (int);

  124. static int match_string_literal (void);


  125. /* Line 371 of yacc.c  */
  126. #line 162 "f-exp.c"

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

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


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

  148. /* Tokens.  */
  149. #ifndef YYTOKENTYPE
  150. # define YYTOKENTYPE
  151.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  152.       know about them.  */
  153.    enum yytokentype {
  154.      INT = 258,
  155.      FLOAT = 259,
  156.      STRING_LITERAL = 260,
  157.      BOOLEAN_LITERAL = 261,
  158.      NAME = 262,
  159.      TYPENAME = 263,
  160.      NAME_OR_INT = 264,
  161.      SIZEOF = 265,
  162.      ERROR = 266,
  163.      INT_KEYWORD = 267,
  164.      INT_S2_KEYWORD = 268,
  165.      LOGICAL_S1_KEYWORD = 269,
  166.      LOGICAL_S2_KEYWORD = 270,
  167.      LOGICAL_S8_KEYWORD = 271,
  168.      LOGICAL_KEYWORD = 272,
  169.      REAL_KEYWORD = 273,
  170.      REAL_S8_KEYWORD = 274,
  171.      REAL_S16_KEYWORD = 275,
  172.      COMPLEX_S8_KEYWORD = 276,
  173.      COMPLEX_S16_KEYWORD = 277,
  174.      COMPLEX_S32_KEYWORD = 278,
  175.      BOOL_AND = 279,
  176.      BOOL_OR = 280,
  177.      BOOL_NOT = 281,
  178.      CHARACTER = 282,
  179.      VARIABLE = 283,
  180.      ASSIGN_MODIFY = 284,
  181.      ABOVE_COMMA = 285,
  182.      NOTEQUAL = 286,
  183.      EQUAL = 287,
  184.      GEQ = 288,
  185.      LEQ = 289,
  186.      GREATERTHAN = 290,
  187.      LESSTHAN = 291,
  188.      RSH = 292,
  189.      LSH = 293,
  190.      STARSTAR = 294,
  191.      UNARY = 295
  192.    };
  193. #endif
  194. /* Tokens.  */
  195. #define INT 258
  196. #define FLOAT 259
  197. #define STRING_LITERAL 260
  198. #define BOOLEAN_LITERAL 261
  199. #define NAME 262
  200. #define TYPENAME 263
  201. #define NAME_OR_INT 264
  202. #define SIZEOF 265
  203. #define ERROR 266
  204. #define INT_KEYWORD 267
  205. #define INT_S2_KEYWORD 268
  206. #define LOGICAL_S1_KEYWORD 269
  207. #define LOGICAL_S2_KEYWORD 270
  208. #define LOGICAL_S8_KEYWORD 271
  209. #define LOGICAL_KEYWORD 272
  210. #define REAL_KEYWORD 273
  211. #define REAL_S8_KEYWORD 274
  212. #define REAL_S16_KEYWORD 275
  213. #define COMPLEX_S8_KEYWORD 276
  214. #define COMPLEX_S16_KEYWORD 277
  215. #define COMPLEX_S32_KEYWORD 278
  216. #define BOOL_AND 279
  217. #define BOOL_OR 280
  218. #define BOOL_NOT 281
  219. #define CHARACTER 282
  220. #define VARIABLE 283
  221. #define ASSIGN_MODIFY 284
  222. #define ABOVE_COMMA 285
  223. #define NOTEQUAL 286
  224. #define EQUAL 287
  225. #define GEQ 288
  226. #define LEQ 289
  227. #define GREATERTHAN 290
  228. #define LESSTHAN 291
  229. #define RSH 292
  230. #define LSH 293
  231. #define STARSTAR 294
  232. #define UNARY 295



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

  238.     LONGEST lval;
  239.     struct {
  240.       LONGEST val;
  241.       struct type *type;
  242.     } typed_val;
  243.     DOUBLEST dval;
  244.     struct symbol *sym;
  245.     struct type *tval;
  246.     struct stoken sval;
  247.     struct ttype tsym;
  248.     struct symtoken ssym;
  249.     int voidval;
  250.     struct block *bval;
  251.     enum exp_opcode opcode;
  252.     struct internalvar *ivar;

  253.     struct type **tvec;
  254.     int *ivec;


  255. /* Line 387 of yacc.c  */
  256. #line 304 "f-exp.c"
  257. } YYSTYPE;
  258. # define YYSTYPE_IS_TRIVIAL 1
  259. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  260. # define YYSTYPE_IS_DECLARED 1
  261. #endif

  262. extern YYSTYPE yylval;

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



  276. /* Copy the second part of user declarations.  */
  277. /* Line 390 of yacc.c  */
  278. #line 163 "f-exp.y"

  279. /* YYSTYPE gets defined by %union */
  280. static int parse_number (struct parser_state *, const char *, int,
  281.                          int, YYSTYPE *);

  282. /* Line 390 of yacc.c  */
  283. #line 338 "f-exp.c"

  284. #ifdef short
  285. # undef short
  286. #endif

  287. #ifdef YYTYPE_UINT8
  288. typedef YYTYPE_UINT8 yytype_uint8;
  289. #else
  290. typedef unsigned char yytype_uint8;
  291. #endif

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

  300. #ifdef YYTYPE_UINT16
  301. typedef YYTYPE_UINT16 yytype_uint16;
  302. #else
  303. typedef unsigned short int yytype_uint16;
  304. #endif

  305. #ifdef YYTYPE_INT16
  306. typedef YYTYPE_INT16 yytype_int16;
  307. #else
  308. typedef short int yytype_int16;
  309. #endif

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

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

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

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

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

  358. #if ! defined yyoverflow || YYERROR_VERBOSE

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

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

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


  423. #if (! defined yyoverflow \
  424.      && (! defined __cplusplus \
  425.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

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

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

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

  439. # define YYCOPY_NEEDED 1

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

  455. #endif

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

  475. /* YYFINAL -- State number of the termination state.  */
  476. #define YYFINAL  47
  477. /* YYLAST -- Last index in YYTABLE.  */
  478. #define YYLAST   529

  479. /* YYNTOKENS -- Number of terminals.  */
  480. #define YYNTOKENS  57
  481. /* YYNNTS -- Number of nonterminals.  */
  482. #define YYNNTS  18
  483. /* YYNRULES -- Number of rules.  */
  484. #define YYNRULES  86
  485. /* YYNRULES -- Number of states.  */
  486. #define YYNSTATES  131

  487. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  488. #define YYUNDEFTOK  2
  489. #define YYMAXUTOK   295

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

  492. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  493. static const yytype_uint8 yytranslate[] =
  494. {
  495.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  496.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  497.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  498.        2,     2,     2,     2,     2,     2,     2,    51,    36,     2,
  499.       53,    54,    48,    46,    30,    47,     2,    49,     2,     2,
  500.        2,     2,     2,     2,     2,     2,     2,     2,    56,     2,
  501.        2,    32,     2,    33,    45,     2,     2,     2,     2,     2,
  502.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  503.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  504.        2,     2,     2,     2,    35,     2,     2,     2,     2,     2,
  505.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  506.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  507.        2,     2,     2,     2,    34,     2,    55,     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,     1,     2,     3,     4,
  521.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  522.       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  523.       25,    26,    27,    28,    29,    31,    37,    38,    39,    40,
  524.       41,    42,    43,    44,    50,    52
  525. };

  526. #if YYDEBUG
  527. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  528.    YYRHS.  */
  529. static const yytype_uint8 yyprhs[] =
  530. {
  531.        0,     0,     3,     5,     7,     9,    13,    16,    19,    22,
  532.       25,    28,    31,    32,    38,    39,    41,    43,    47,    51,
  533.       54,    57,    59,    63,    67,    72,    76,    80,    84,    88,
  534.       92,    96,   100,   104,   108,   112,   116,   120,   124,   128,
  535.      132,   136,   140,   144,   148,   152,   156,   160,   162,   164,
  536.      166,   168,   170,   175,   177,   179,   181,   183,   185,   188,
  537.      190,   193,   195,   198,   200,   204,   207,   209,   212,   216,
  538.      218,   220,   222,   224,   226,   228,   230,   232,   234,   236,
  539.      238,   240,   242,   244,   246,   250,   252
  540. };

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

  571. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  572. static const yytype_uint16 yyrline[] =
  573. {
  574.        0,   243,   243,   244,   247,   253,   258,   262,   266,   270,
  575.      274,   278,   288,   287,   298,   301,   305,   309,   315,   321,
  576.      327,   333,   339,   343,   351,   357,   365,   369,   373,   377,
  577.      381,   385,   389,   393,   397,   401,   405,   409,   413,   417,
  578.      421,   425,   429,   433,   438,   442,   446,   452,   459,   470,
  579.      479,   482,   485,   496,   503,   511,   551,   554,   555,   599,
  580.      601,   603,   605,   607,   610,   612,   614,   618,   620,   625,
  581.      627,   629,   631,   633,   635,   637,   639,   641,   643,   645,
  582.      647,   649,   651,   656,   661,   668,   672
  583. };
  584. #endif

  585. #if YYDEBUG || YYERROR_VERBOSE || 0
  586. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  587.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  588. static const char *const yytname[] =
  589. {
  590.   "$end", "error", "$undefined", "INT", "FLOAT", "STRING_LITERAL",
  591.   "BOOLEAN_LITERAL", "NAME", "TYPENAME", "NAME_OR_INT", "SIZEOF", "ERROR",
  592.   "INT_KEYWORD", "INT_S2_KEYWORD", "LOGICAL_S1_KEYWORD",
  593.   "LOGICAL_S2_KEYWORD", "LOGICAL_S8_KEYWORD", "LOGICAL_KEYWORD",
  594.   "REAL_KEYWORD", "REAL_S8_KEYWORD", "REAL_S16_KEYWORD",
  595.   "COMPLEX_S8_KEYWORD", "COMPLEX_S16_KEYWORD", "COMPLEX_S32_KEYWORD",
  596.   "BOOL_AND", "BOOL_OR", "BOOL_NOT", "CHARACTER", "VARIABLE",
  597.   "ASSIGN_MODIFY", "','", "ABOVE_COMMA", "'='", "'?'", "'|'", "'^'", "'&'",
  598.   "NOTEQUAL", "EQUAL", "GEQ", "LEQ", "GREATERTHAN", "LESSTHAN", "RSH",
  599.   "LSH", "'@'", "'+'", "'-'", "'*'", "'/'", "STARSTAR", "'%'", "UNARY",
  600.   "'('", "')'", "'~'", "':'", "$accept", "start", "type_exp", "exp", "$@1",
  601.   "arglist", "subrange", "complexnum", "variable", "type", "ptype",
  602.   "abs_decl", "direct_abs_decl", "func_mod", "typebase",
  603.   "nonempty_typelist", "name", "name_not_typename", YY_NULL
  604. };
  605. #endif

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

  619. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  620. static const yytype_uint8 yyr1[] =
  621. {
  622.        0,    57,    58,    58,    59,    60,    60,    60,    60,    60,
  623.       60,    60,    61,    60,    62,    62,    62,    62,    63,    63,
  624.       63,    63,    64,    60,    60,    60,    60,    60,    60,    60,
  625.       60,    60,    60,    60,    60,    60,    60,    60,    60,    60,
  626.       60,    60,    60,    60,    60,    60,    60,    60,    60,    60,
  627.       60,    60,    60,    60,    60,    65,    66,    67,    67,    68,
  628.       68,    68,    68,    68,    69,    69,    69,    70,    70,    71,
  629.       71,    71,    71,    71,    71,    71,    71,    71,    71,    71,
  630.       71,    71,    71,    72,    72,    73,    74
  631. };

  632. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  633. static const yytype_uint8 yyr2[] =
  634. {
  635.        0,     2,     1,     1,     1,     3,     2,     2,     2,     2,
  636.        2,     2,     0,     5,     0,     1,     1,     3,     3,     2,
  637.        2,     1,     3,     3,     4,     3,     3,     3,     3,     3,
  638.        3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  639.        3,     3,     3,     3,     3,     3,     3,     1,     1,     1,
  640.        1,     1,     4,     1,     1,     1,     1,     1,     2,     1,
  641.        2,     1,     2,     1,     3,     2,     1,     2,     3,     1,
  642.        1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  643.        1,     1,     1,     1,     3,     1,     1
  644. };

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

  665. /* YYDEFGOTO[NTERM-NUM].  */
  666. static const yytype_int8 yydefgoto[] =
  667. {
  668.       -1,    29,    30,    43,   105,   119,   120,    44,    32,   109,
  669.       34,    74,    75,    76,    35,   111,   104,    36
  670. };

  671. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  672.    STATE-NUM.  */
  673. #define YYPACT_NINF -57
  674. static const yytype_int16 yypact[] =
  675. {
  676.      134,   -57,   -57,   -57,   -57,   -57,   -57,   -57,   162,   -57,
  677.      -57,   -57,   -57,   -57,   -57,   -57,   -57,   -57,   -57,   -57,
  678.      -57,   190,   -57,   -57,   190,   190,   190,   134,   190,    19,
  679.      -57,   359,   -57,   -57,   -57,   -35,   -57,   134,   -33,   -33,
  680.      -33,   -33,   -33,   328,   -32,   -31,   -33,   -57,   190,   190,
  681.      190,   190,   190,   190,   190,   190,   190,   190,   190,   190,
  682.      190,   190,   190,   190,   190,   190,   190,   190,   190,    24,
  683.      -57,   -35,   -35,   234,   -57,   -12,   -57,   -11,   190,   -57,
  684.      -57,   190,   407,   387,   359,   359,   426,   444,   461,   476,
  685.      476,   228,   228,   228,   228,   -13,   -13,    49,   -39,   -39,
  686.      -46,   -46,   -46,   -57,   -57,    80,   -57,   -57,   -57,   -57,
  687.      -10,   -27,   277,   -57,    66,   359,   -33,   190,   298,   -24,
  688.      -57,   -57,   293,   -57,   359,   190,   190,   -57,   -57,   359,
  689.      359
  690. };

  691. /* YYPGOTO[NTERM-NUM].  */
  692. static const yytype_int8 yypgoto[] =
  693. {
  694.      -57,   -57,   -57,     0,   -57,   -57,   -57,   -57,   -57,     2,
  695.      -57,   -56,   -57,   -30,   -57,   -57,   -57,   -57
  696. };

  697. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  698.    positive, shift that token.  If negative, reduce the rule which
  699.    number is the opposite.  If YYTABLE_NINF, syntax error.  */
  700. #define YYTABLE_NINF -1
  701. static const yytype_uint8 yytable[] =
  702. {
  703.       31,    71,    33,   122,    68,    69,   126,    70,    38,    66,
  704.       67,    68,    69,    72,    70,   106,   107,   110,    73,    47,
  705.       70,    39,    80,    81,    40,    41,    42,   123,    46,    45,
  706.      127,   103,    63,    64,    65,    66,    67,    68,    69,    77,
  707.       70,   112,     0,   114,   121,   113,     0,     0,    82,    83,
  708.       84,    85,    86,    87,    88,    89,    90,    91,    92,    93,
  709.       94,    95,    96,    97,    98,    99,   100,   101,   102,     1,
  710.        2,     3,     4,     5,     0,     7,     8,     0,   115,     0,
  711.        0,   116,     0,     1,     2,     3,     4,     5,     0,     7,
  712.        8,     0,    21,     0,    23,    64,    65,    66,    67,    68,
  713.       69,     0,    70,     0,     0,   118,    21,     0,    23,     0,
  714.        0,     0,     0,     0,   116,     0,    24,   124,     0,    27,
  715.        0,    28,     0,     0,   128,   129,   130,    25,    26,     0,
  716.        0,     0,     0,    27,     0,    28,   117,     1,     2,     3,
  717.        4,     5,     6,     7,     8,     0,     9,    10,    11,    12,
  718.       13,    14,    15,    16,    17,    18,    19,    20,     0,     0,
  719.       21,    22,    23,     0,     0,     1,     2,     3,     4,     5,
  720.       24,     7,     8,     0,     0,     0,     0,     0,     0,     0,
  721.        0,    25,    26,     0,     0,     0,     0,    27,    21,    28,
  722.       23,     0,     0,     1,     2,     3,     4,     5,    24,     7,
  723.        8,     0,     0,     0,     0,     0,     0,     0,     0,    25,
  724.       26,     0,     0,     0,     0,    37,    21,    28,    23,     0,
  725.        0,     0,     0,     0,     0,     0,    24,     0,     0,     0,
  726.        0,     0,     0,     0,     0,     0,     0,    25,    26,     0,
  727.        0,     0,     6,    27,     0,    28,     9,    10,    11,    12,
  728.       13,    14,    15,    16,    17,    18,    19,    20,     0,     0,
  729.        0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  730.       71,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  731.        0,    70,    72,     0,     0,     6,     0,    73,   108,     9,
  732.       10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
  733.       20,     6,     0,     0,    22,     9,    10,    11,    12,    13,
  734.       14,    15,    16,    17,    18,    19,    20,     0,     0,     0,
  735.       22,     0,    48,    49,     0,     0,     0,    50,     0,     0,
  736.       51,   108,    52,    53,    54,    55,    56,    57,    58,    59,
  737.       60,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  738.        0,    70,    48,    49,   125,     0,     0,    50,    78,     0,
  739.       51,     0,    52,    53,    54,    55,    56,    57,    58,    59,
  740.       60,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  741.        0,    70,    79,    48,    49,     0,     0,     0,    50,     0,
  742.        0,    51,     0,    52,    53,    54,    55,    56,    57,    58,
  743.       59,    60,    61,    62,    63,    64,    65,    66,    67,    68,
  744.       69,    48,    70,     0,     0,     0,     0,     0,     0,     0,
  745.        0,    52,    53,    54,    55,    56,    57,    58,    59,    60,
  746.       61,    62,    63,    64,    65,    66,    67,    68,    69,     0,
  747.       70,    52,    53,    54,    55,    56,    57,    58,    59,    60,
  748.       61,    62,    63,    64,    65,    66,    67,    68,    69,     0,
  749.       70,    53,    54,    55,    56,    57,    58,    59,    60,    61,
  750.       62,    63,    64,    65,    66,    67,    68,    69,     0,    70,
  751.       54,    55,    56,    57,    58,    59,    60,    61,    62,    63,
  752.       64,    65,    66,    67,    68,    69,     0,    70,    55,    56,
  753.       57,    58,    59,    60,    61,    62,    63,    64,    65,    66,
  754.       67,    68,    69,     0,    70,    57,    58,    59,    60,    61,
  755.       62,    63,    64,    65,    66,    67,    68,    69,     0,    70
  756. };

  757. #define yypact_value_is_default(Yystate) \
  758.   (!!((Yystate) == (-57)))

  759. #define yytable_value_is_error(Yytable_value) \
  760.   YYID (0)

  761. static const yytype_int8 yycheck[] =
  762. {
  763.        0,    36,     0,    30,    50,    51,    30,    53,     8,    48,
  764.       49,    50,    51,    48,    53,    71,    72,    73,    53,     0,
  765.       53,    21,    54,    54,    24,    25,    26,    54,    28,    27,
  766.       54,     7,    45,    46,    47,    48,    49,    50,    51,    37,
  767.       53,    53,    -1,    54,    54,    75,    -1,    -1,    48,    49,
  768.       50,    51,    52,    53,    54,    55,    56,    57,    58,    59,
  769.       60,    61,    62,    63,    64,    65,    66,    67,    68,     3,
  770.        4,     5,     6,     7,    -1,     9,    10,    -1,    78,    -1,
  771.       -1,    81,    -1,     3,     4,     5,     6,     7,    -1,     9,
  772.       10,    -1,    26,    -1,    28,    46,    47,    48,    49,    50,
  773.       51,    -1,    53,    -1,    -1,   105,    26,    -1,    28,    -1,
  774.       -1,    -1,    -1,    -1,   114,    -1,    36,   117,    -1,    53,
  775.       -1,    55,    -1,    -1,   122,   125,   126,    47,    48,    -1,
  776.       -1,    -1,    -1,    53,    -1,    55,    56,     3,     4,     5,
  777.        6,     7,     8,     9,    10,    -1,    12,    13,    14,    15,
  778.       16,    17,    18,    19,    20,    21,    22,    23,    -1,    -1,
  779.       26,    27,    28,    -1,    -1,     3,     4,     5,     6,     7,
  780.       36,     9,    10,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  781.       -1,    47,    48,    -1,    -1,    -1,    -1,    53,    26,    55,
  782.       28,    -1,    -1,     3,     4,     5,     6,     7,    36,     9,
  783.       10,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    47,
  784.       48,    -1,    -1,    -1,    -1,    53,    26,    55,    28,    -1,
  785.       -1,    -1,    -1,    -1,    -1,    -1,    36,    -1,    -1,    -1,
  786.       -1,    -1,    -1,    -1,    -1,    -1,    -1,    47,    48,    -1,
  787.       -1,    -1,     8,    53,    -1,    55,    12,    13,    14,    15,
  788.       16,    17,    18,    19,    20,    21,    22,    23,    -1,    -1,
  789.       -1,    27,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  790.       36,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  791.       -1,    53,    48,    -1,    -1,     8,    -1,    53,    54,    12,
  792.       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
  793.       23,     8,    -1,    -1,    27,    12,    13,    14,    15,    16,
  794.       17,    18,    19,    20,    21,    22,    23,    -1,    -1,    -1,
  795.       27,    -1,    24,    25,    -1,    -1,    -1,    29,    -1,    -1,
  796.       32,    54,    34,    35,    36,    37,    38,    39,    40,    41,
  797.       42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  798.       -1,    53,    24,    25,    56,    -1,    -1,    29,    30,    -1,
  799.       32,    -1,    34,    35,    36,    37,    38,    39,    40,    41,
  800.       42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  801.       -1,    53,    54,    24,    25,    -1,    -1,    -1,    29,    -1,
  802.       -1,    32,    -1,    34,    35,    36,    37,    38,    39,    40,
  803.       41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  804.       51,    24,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  805.       -1,    34,    35,    36,    37,    38,    39,    40,    41,    42,
  806.       43,    44,    45,    46,    47,    48,    49,    50,    51,    -1,
  807.       53,    34,    35,    36,    37,    38,    39,    40,    41,    42,
  808.       43,    44,    45,    46,    47,    48,    49,    50,    51,    -1,
  809.       53,    35,    36,    37,    38,    39,    40,    41,    42,    43,
  810.       44,    45,    46,    47,    48,    49,    50,    51,    -1,    53,
  811.       36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  812.       46,    47,    48,    49,    50,    51,    -1,    53,    37,    38,
  813.       39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
  814.       49,    50,    51,    -1,    53,    39,    40,    41,    42,    43,
  815.       44,    45,    46,    47,    48,    49,    50,    51,    -1,    53
  816. };

  817. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  818.    symbol of state STATE-NUM.  */
  819. static const yytype_uint8 yystos[] =
  820. {
  821.        0,     3,     4,     5,     6,     7,     8,     9,    10,    12,
  822.       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
  823.       23,    26,    27,    28,    36,    47,    48,    53,    55,    58,
  824.       59,    60,    65,    66,    67,    71,    74,    53,    60,    60,
  825.       60,    60,    60,    60,    64,    66,    60,     0,    24,    25,
  826.       29,    32,    34,    35,    36,    37,    38,    39,    40,    41,
  827.       42,    43,    44,    45,    46,    47,    48,    49,    50,    51,
  828.       53,    36,    48,    53,    68,    69,    70,    66,    30,    54,
  829.       54,    54,    60,    60,    60,    60,    60,    60,    60,    60,
  830.       60,    60,    60,    60,    60,    60,    60,    60,    60,    60,
  831.       60,    60,    60,     7,    73,    61,    68,    68,    54,    66,
  832.       68,    72,    53,    70,    54,    60,    60,    56,    60,    62,
  833.       63,    54,    30,    54,    60,    56,    30,    54,    66,    60,
  834.       60
  835. };

  836. #define yyerrok                (yyerrstatus = 0)
  837. #define yyclearin        (yychar = YYEMPTY)
  838. #define YYEMPTY                (-2)
  839. #define YYEOF                0

  840. #define YYACCEPT        goto yyacceptlab
  841. #define YYABORT                goto yyabortlab
  842. #define YYERROR                goto yyerrorlab


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

  849. #define YYFAIL                goto yyerrlab
  850. #if defined YYFAIL
  851.   /* This is here to suppress warnings from the GCC cpp's
  852.      -Wunused-macros.  Normally we don't worry about that warning, but
  853.      some users do, and we want to make it easy for users to remove
  854.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  855. #endif

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

  857. #define YYBACKUP(Token, Value)                                  \
  858. do                                                              \
  859.   if (yychar == YYEMPTY)                                        \
  860.     {                                                           \
  861.       yychar = (Token);                                         \
  862.       yylval = (Value);                                         \
  863.       YYPOPSTACK (yylen);                                       \
  864.       yystate = *yyssp;                                         \
  865.       goto yybackup;                                            \
  866.     }                                                           \
  867.   else                                                          \
  868.     {                                                           \
  869.       yyerror (YY_("syntax error: cannot back up")); \
  870.       YYERROR;                                                        \
  871.     }                                                                \
  872. while (YYID (0))

  873. /* Error token number */
  874. #define YYTERROR        1
  875. #define YYERRCODE        256


  876. /* This macro is provided for backward compatibility. */
  877. #ifndef YY_LOCATION_PRINT
  878. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  879. #endif


  880. /* YYLEX -- calling `yylex' with the right arguments.  */
  881. #ifdef YYLEX_PARAM
  882. # define YYLEX yylex (YYLEX_PARAM)
  883. #else
  884. # define YYLEX yylex ()
  885. #endif

  886. /* Enable debugging if requested.  */
  887. #if YYDEBUG

  888. # ifndef YYFPRINTF
  889. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  890. #  define YYFPRINTF fprintf
  891. # endif

  892. # define YYDPRINTF(Args)                        \
  893. do {                                                \
  894.   if (yydebug)                                        \
  895.     YYFPRINTF Args;                                \
  896. } while (YYID (0))

  897. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  898. do {                                                                          \
  899.   if (yydebug)                                                                  \
  900.     {                                                                          \
  901.       YYFPRINTF (stderr, "%s ", Title);                                          \
  902.       yy_symbol_print (stderr,                                                  \
  903.                   Type, Value); \
  904.       YYFPRINTF (stderr, "\n");                                                  \
  905.     }                                                                          \
  906. } while (YYID (0))


  907. /*--------------------------------.
  908. | Print this symbol on YYOUTPUT.  |
  909. `--------------------------------*/

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


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

  942. #if (defined __STDC__ || defined __C99__FUNC__ \
  943.      || defined __cplusplus || defined _MSC_VER)
  944. static void
  945. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  946. #else
  947. static void
  948. yy_symbol_print (yyoutput, yytype, yyvaluep)
  949.     FILE *yyoutput;
  950.     int yytype;
  951.     YYSTYPE const * const yyvaluep;
  952. #endif
  953. {
  954.   if (yytype < YYNTOKENS)
  955.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  956.   else
  957.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  958.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  959.   YYFPRINTF (yyoutput, ")");
  960. }

  961. /*------------------------------------------------------------------.
  962. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  963. | TOP (included).                                                   |
  964. `------------------------------------------------------------------*/

  965. #if (defined __STDC__ || defined __C99__FUNC__ \
  966.      || defined __cplusplus || defined _MSC_VER)
  967. static void
  968. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  969. #else
  970. static void
  971. yy_stack_print (yybottom, yytop)
  972.     yytype_int16 *yybottom;
  973.     yytype_int16 *yytop;
  974. #endif
  975. {
  976.   YYFPRINTF (stderr, "Stack now");
  977.   for (; yybottom <= yytop; yybottom++)
  978.     {
  979.       int yybot = *yybottom;
  980.       YYFPRINTF (stderr, " %d", yybot);
  981.     }
  982.   YYFPRINTF (stderr, "\n");
  983. }

  984. # define YY_STACK_PRINT(Bottom, Top)                                \
  985. do {                                                                \
  986.   if (yydebug)                                                        \
  987.     yy_stack_print ((Bottom), (Top));                                \
  988. } while (YYID (0))


  989. /*------------------------------------------------.
  990. | Report that the YYRULE is going to be reduced.  |
  991. `------------------------------------------------*/

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

  1018. # define YY_REDUCE_PRINT(Rule)                \
  1019. do {                                        \
  1020.   if (yydebug)                                \
  1021.     yy_reduce_print (yyvsp, Rule); \
  1022. } while (YYID (0))

  1023. /* Nonzero means print parse trace.  It is left uninitialized so that
  1024.    multiple parsers can coexist.  */
  1025. int yydebug;
  1026. #else /* !YYDEBUG */
  1027. # define YYDPRINTF(Args)
  1028. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  1029. # define YY_STACK_PRINT(Bottom, Top)
  1030. # define YY_REDUCE_PRINT(Rule)
  1031. #endif /* !YYDEBUG */


  1032. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  1033. #ifndef        YYINITDEPTH
  1034. # define YYINITDEPTH 200
  1035. #endif

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

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

  1041. #ifndef YYMAXDEPTH
  1042. # define YYMAXDEPTH 10000
  1043. #endif


  1044. #if YYERROR_VERBOSE

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

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

  1086.   while ((*yyd++ = *yys++) != '\0')
  1087.     continue;

  1088.   return yyd - 1;
  1089. }
  1090. #  endif
  1091. # endif

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

  1107.       for (;;)
  1108.         switch (*++yyp)
  1109.           {
  1110.           case '\'':
  1111.           case ',':
  1112.             goto do_not_strip_quotes;

  1113.           case '\\':
  1114.             if (*++yyp != '\\')
  1115.               goto do_not_strip_quotes;
  1116.             /* Fall through.  */
  1117.           default:
  1118.             if (yyres)
  1119.               yyres[yyn] = *yyp;
  1120.             yyn++;
  1121.             break;

  1122.           case '"':
  1123.             if (yyres)
  1124.               yyres[yyn] = '\0';
  1125.             return yyn;
  1126.           }
  1127.     do_not_strip_quotes: ;
  1128.     }

  1129.   if (! yyres)
  1130.     return yystrlen (yystr);

  1131.   return yystpcpy (yyres, yystr) - yyres;
  1132. }
  1133. # endif

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

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

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

  1196.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1197.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1198.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1199.               {
  1200.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1201.                   {
  1202.                     yycount = 1;
  1203.                     yysize = yysize0;
  1204.                     break;
  1205.                   }
  1206.                 yyarg[yycount++] = yytname[yyx];
  1207.                 {
  1208.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1209.                   if (! (yysize <= yysize1
  1210.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1211.                     return 2;
  1212.                   yysize = yysize1;
  1213.                 }
  1214.               }
  1215.         }
  1216.     }

  1217.   switch (yycount)
  1218.     {
  1219. # define YYCASE_(N, S)                      \
  1220.       case N:                               \
  1221.         yyformat = S;                       \
  1222.       break
  1223.       YYCASE_(0, YY_("syntax error"));
  1224.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1225.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1226.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1227.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1228.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1229. # undef YYCASE_
  1230.     }

  1231.   {
  1232.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1233.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1234.       return 2;
  1235.     yysize = yysize1;
  1236.   }

  1237.   if (*yymsg_alloc < yysize)
  1238.     {
  1239.       *yymsg_alloc = 2 * yysize;
  1240.       if (! (yysize <= *yymsg_alloc
  1241.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1242.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1243.       return 1;
  1244.     }

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

  1266. /*-----------------------------------------------.
  1267. | Release the memory associated to this symbol.  |
  1268. `-----------------------------------------------*/

  1269. /*ARGSUSED*/
  1270. #if (defined __STDC__ || defined __C99__FUNC__ \
  1271.      || defined __cplusplus || defined _MSC_VER)
  1272. static void
  1273. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1274. #else
  1275. static void
  1276. yydestruct (yymsg, yytype, yyvaluep)
  1277.     const char *yymsg;
  1278.     int yytype;
  1279.     YYSTYPE *yyvaluep;
  1280. #endif
  1281. {
  1282.   YYUSE (yyvaluep);

  1283.   if (!yymsg)
  1284.     yymsg = "Deleting";
  1285.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1286.   switch (yytype)
  1287.     {

  1288.       default:
  1289.         break;
  1290.     }
  1291. }




  1292. /* The lookahead symbol.  */
  1293. int yychar;


  1294. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1295. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1296. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1297. #endif
  1298. #ifndef YY_INITIAL_VALUE
  1299. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1300. #endif

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

  1303. /* Number of syntax errors so far.  */
  1304. int yynerrs;


  1305. /*----------.
  1306. | yyparse.  |
  1307. `----------*/

  1308. #ifdef YYPARSE_PARAM
  1309. #if (defined __STDC__ || defined __C99__FUNC__ \
  1310.      || defined __cplusplus || defined _MSC_VER)
  1311. int
  1312. yyparse (void *YYPARSE_PARAM)
  1313. #else
  1314. int
  1315. yyparse (YYPARSE_PARAM)
  1316.     void *YYPARSE_PARAM;
  1317. #endif
  1318. #else /* ! YYPARSE_PARAM */
  1319. #if (defined __STDC__ || defined __C99__FUNC__ \
  1320.      || defined __cplusplus || defined _MSC_VER)
  1321. int
  1322. yyparse (void)
  1323. #else
  1324. int
  1325. yyparse ()

  1326. #endif
  1327. #endif
  1328. {
  1329.     int yystate;
  1330.     /* Number of tokens to shift before error messages enabled.  */
  1331.     int yyerrstatus;

  1332.     /* The stacks and their tools:
  1333.        `yyss': related to states.
  1334.        `yyvs': related to semantic values.

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

  1337.     /* The state stack.  */
  1338.     yytype_int16 yyssa[YYINITDEPTH];
  1339.     yytype_int16 *yyss;
  1340.     yytype_int16 *yyssp;

  1341.     /* The semantic value stack.  */
  1342.     YYSTYPE yyvsa[YYINITDEPTH];
  1343.     YYSTYPE *yyvs;
  1344.     YYSTYPE *yyvsp;

  1345.     YYSIZE_T yystacksize;

  1346.   int yyn;
  1347.   int yyresult;
  1348.   /* Lookahead token as an internal (translated) token number.  */
  1349.   int yytoken = 0;
  1350.   /* The variables used to return semantic value and location from the
  1351.      action routines.  */
  1352.   YYSTYPE yyval;

  1353. #if YYERROR_VERBOSE
  1354.   /* Buffer for error messages, and its allocated size.  */
  1355.   char yymsgbuf[128];
  1356.   char *yymsg = yymsgbuf;
  1357.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1358. #endif

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

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

  1363.   yyssp = yyss = yyssa;
  1364.   yyvsp = yyvs = yyvsa;
  1365.   yystacksize = YYINITDEPTH;

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

  1367.   yystate = 0;
  1368.   yyerrstatus = 0;
  1369.   yynerrs = 0;
  1370.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1371.   goto yysetstate;

  1372. /*------------------------------------------------------------.
  1373. | yynewstate -- Push a new state, which is found in yystate.  |
  1374. `------------------------------------------------------------*/
  1375. yynewstate:
  1376.   /* In all cases, when you get here, the value and location stacks
  1377.      have just been pushed.  So pushing a state here evens the stacks.  */
  1378.   yyssp++;

  1379. yysetstate:
  1380.   *yyssp = yystate;

  1381.   if (yyss + yystacksize - 1 <= yyssp)
  1382.     {
  1383.       /* Get the current used size of the three stacks, in elements.  */
  1384.       YYSIZE_T yysize = yyssp - yyss + 1;

  1385. #ifdef yyoverflow
  1386.       {
  1387.         /* Give user a chance to xreallocate the stack.  Use copies of
  1388.            these so that the &'s don't force the real ones into
  1389.            memory.  */
  1390.         YYSTYPE *yyvs1 = yyvs;
  1391.         yytype_int16 *yyss1 = yyss;

  1392.         /* Each stack pointer address is followed by the size of the
  1393.            data in use in that stack, in bytes.  This used to be a
  1394.            conditional around just the two extra args, but that might
  1395.            be undefined if yyoverflow is a macro.  */
  1396.         yyoverflow (YY_("memory exhausted"),
  1397.                     &yyss1, yysize * sizeof (*yyssp),
  1398.                     &yyvs1, yysize * sizeof (*yyvsp),
  1399.                     &yystacksize);

  1400.         yyss = yyss1;
  1401.         yyvs = yyvs1;
  1402.       }
  1403. #else /* no yyoverflow */
  1404. # ifndef YYSTACK_RELOCATE
  1405.       goto yyexhaustedlab;
  1406. # else
  1407.       /* Extend the stack our own way.  */
  1408.       if (YYMAXDEPTH <= yystacksize)
  1409.         goto yyexhaustedlab;
  1410.       yystacksize *= 2;
  1411.       if (YYMAXDEPTH < yystacksize)
  1412.         yystacksize = YYMAXDEPTH;

  1413.       {
  1414.         yytype_int16 *yyss1 = yyss;
  1415.         union yyalloc *yyptr =
  1416.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1417.         if (! yyptr)
  1418.           goto yyexhaustedlab;
  1419.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1420.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1421. #  undef YYSTACK_RELOCATE
  1422.         if (yyss1 != yyssa)
  1423.           YYSTACK_FREE (yyss1);
  1424.       }
  1425. # endif
  1426. #endif /* no yyoverflow */

  1427.       yyssp = yyss + yysize - 1;
  1428.       yyvsp = yyvs + yysize - 1;

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

  1431.       if (yyss + yystacksize - 1 <= yyssp)
  1432.         YYABORT;
  1433.     }

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

  1435.   if (yystate == YYFINAL)
  1436.     YYACCEPT;

  1437.   goto yybackup;

  1438. /*-----------.
  1439. | yybackup.  |
  1440. `-----------*/
  1441. yybackup:

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

  1444.   /* First try to decide what to do without reference to lookahead token.  */
  1445.   yyn = yypact[yystate];
  1446.   if (yypact_value_is_default (yyn))
  1447.     goto yydefault;

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

  1449.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1450.   if (yychar == YYEMPTY)
  1451.     {
  1452.       YYDPRINTF ((stderr, "Reading a token: "));
  1453.       yychar = YYLEX;
  1454.     }

  1455.   if (yychar <= YYEOF)
  1456.     {
  1457.       yychar = yytoken = YYEOF;
  1458.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1459.     }
  1460.   else
  1461.     {
  1462.       yytoken = YYTRANSLATE (yychar);
  1463.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1464.     }

  1465.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1466.      detect an error, take that action.  */
  1467.   yyn += yytoken;
  1468.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1469.     goto yydefault;
  1470.   yyn = yytable[yyn];
  1471.   if (yyn <= 0)
  1472.     {
  1473.       if (yytable_value_is_error (yyn))
  1474.         goto yyerrlab;
  1475.       yyn = -yyn;
  1476.       goto yyreduce;
  1477.     }

  1478.   /* Count tokens shifted since error; after three, turn off error
  1479.      status.  */
  1480.   if (yyerrstatus)
  1481.     yyerrstatus--;

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

  1484.   /* Discard the shifted token.  */
  1485.   yychar = YYEMPTY;

  1486.   yystate = yyn;
  1487.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1488.   *++yyvsp = yylval;
  1489.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1490.   goto yynewstate;


  1491. /*-----------------------------------------------------------.
  1492. | yydefault -- do the default action for the current state.  |
  1493. `-----------------------------------------------------------*/
  1494. yydefault:
  1495.   yyn = yydefact[yystate];
  1496.   if (yyn == 0)
  1497.     goto yyerrlab;
  1498.   goto yyreduce;


  1499. /*-----------------------------.
  1500. | yyreduce -- Do a reduction.  |
  1501. `-----------------------------*/
  1502. yyreduce:
  1503.   /* yyn is the number of a rule to reduce with.  */
  1504.   yylen = yyr2[yyn];

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

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


  1513.   YY_REDUCE_PRINT (yyn);
  1514.   switch (yyn)
  1515.     {
  1516.         case 4:
  1517. /* Line 1792 of yacc.c  */
  1518. #line 248 "f-exp.y"
  1519.     { write_exp_elt_opcode (pstate, OP_TYPE);
  1520.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].tval));
  1521.                           write_exp_elt_opcode (pstate, OP_TYPE); }
  1522.     break;

  1523.   case 5:
  1524. /* Line 1792 of yacc.c  */
  1525. #line 254 "f-exp.y"
  1526.     { }
  1527.     break;

  1528.   case 6:
  1529. /* Line 1792 of yacc.c  */
  1530. #line 259 "f-exp.y"
  1531.     { write_exp_elt_opcode (pstate, UNOP_IND); }
  1532.     break;

  1533.   case 7:
  1534. /* Line 1792 of yacc.c  */
  1535. #line 263 "f-exp.y"
  1536.     { write_exp_elt_opcode (pstate, UNOP_ADDR); }
  1537.     break;

  1538.   case 8:
  1539. /* Line 1792 of yacc.c  */
  1540. #line 267 "f-exp.y"
  1541.     { write_exp_elt_opcode (pstate, UNOP_NEG); }
  1542.     break;

  1543.   case 9:
  1544. /* Line 1792 of yacc.c  */
  1545. #line 271 "f-exp.y"
  1546.     { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
  1547.     break;

  1548.   case 10:
  1549. /* Line 1792 of yacc.c  */
  1550. #line 275 "f-exp.y"
  1551.     { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
  1552.     break;

  1553.   case 11:
  1554. /* Line 1792 of yacc.c  */
  1555. #line 279 "f-exp.y"
  1556.     { write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
  1557.     break;

  1558.   case 12:
  1559. /* Line 1792 of yacc.c  */
  1560. #line 288 "f-exp.y"
  1561.     { start_arglist (); }
  1562.     break;

  1563.   case 13:
  1564. /* Line 1792 of yacc.c  */
  1565. #line 290 "f-exp.y"
  1566.     { write_exp_elt_opcode (pstate,
  1567.                                                 OP_F77_UNDETERMINED_ARGLIST);
  1568.                           write_exp_elt_longcst (pstate,
  1569.                                                  (LONGEST) end_arglist ());
  1570.                           write_exp_elt_opcode (pstate,
  1571.                                               OP_F77_UNDETERMINED_ARGLIST); }
  1572.     break;

  1573.   case 15:
  1574. /* Line 1792 of yacc.c  */
  1575. #line 302 "f-exp.y"
  1576.     { arglist_len = 1; }
  1577.     break;

  1578.   case 16:
  1579. /* Line 1792 of yacc.c  */
  1580. #line 306 "f-exp.y"
  1581.     { arglist_len = 1; }
  1582.     break;

  1583.   case 17:
  1584. /* Line 1792 of yacc.c  */
  1585. #line 310 "f-exp.y"
  1586.     { arglist_len++; }
  1587.     break;

  1588.   case 18:
  1589. /* Line 1792 of yacc.c  */
  1590. #line 316 "f-exp.y"
  1591.     { write_exp_elt_opcode (pstate, OP_F90_RANGE);
  1592.                           write_exp_elt_longcst (pstate, NONE_BOUND_DEFAULT);
  1593.                           write_exp_elt_opcode (pstate, OP_F90_RANGE); }
  1594.     break;

  1595.   case 19:
  1596. /* Line 1792 of yacc.c  */
  1597. #line 322 "f-exp.y"
  1598.     { write_exp_elt_opcode (pstate, OP_F90_RANGE);
  1599.                           write_exp_elt_longcst (pstate, HIGH_BOUND_DEFAULT);
  1600.                           write_exp_elt_opcode (pstate, OP_F90_RANGE); }
  1601.     break;

  1602.   case 20:
  1603. /* Line 1792 of yacc.c  */
  1604. #line 328 "f-exp.y"
  1605.     { write_exp_elt_opcode (pstate, OP_F90_RANGE);
  1606.                           write_exp_elt_longcst (pstate, LOW_BOUND_DEFAULT);
  1607.                           write_exp_elt_opcode (pstate, OP_F90_RANGE); }
  1608.     break;

  1609.   case 21:
  1610. /* Line 1792 of yacc.c  */
  1611. #line 334 "f-exp.y"
  1612.     { write_exp_elt_opcode (pstate, OP_F90_RANGE);
  1613.                           write_exp_elt_longcst (pstate, BOTH_BOUND_DEFAULT);
  1614.                           write_exp_elt_opcode (pstate, OP_F90_RANGE); }
  1615.     break;

  1616.   case 22:
  1617. /* Line 1792 of yacc.c  */
  1618. #line 340 "f-exp.y"
  1619.     { }
  1620.     break;

  1621.   case 23:
  1622. /* Line 1792 of yacc.c  */
  1623. #line 344 "f-exp.y"
  1624.     { write_exp_elt_opcode (pstate, OP_COMPLEX);
  1625.                           write_exp_elt_type (pstate,
  1626.                                               parse_f_type (pstate)
  1627.                                               ->builtin_complex_s16);
  1628.                           write_exp_elt_opcode (pstate, OP_COMPLEX); }
  1629.     break;

  1630.   case 24:
  1631. /* Line 1792 of yacc.c  */
  1632. #line 352 "f-exp.y"
  1633.     { write_exp_elt_opcode (pstate, UNOP_CAST);
  1634.                           write_exp_elt_type (pstate, (yyvsp[(2) - (4)].tval));
  1635.                           write_exp_elt_opcode (pstate, UNOP_CAST); }
  1636.     break;

  1637.   case 25:
  1638. /* Line 1792 of yacc.c  */
  1639. #line 358 "f-exp.y"
  1640.     { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
  1641.                           write_exp_string (pstate, (yyvsp[(3) - (3)].sval));
  1642.                           write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
  1643.     break;

  1644.   case 26:
  1645. /* Line 1792 of yacc.c  */
  1646. #line 366 "f-exp.y"
  1647.     { write_exp_elt_opcode (pstate, BINOP_REPEAT); }
  1648.     break;

  1649.   case 27:
  1650. /* Line 1792 of yacc.c  */
  1651. #line 370 "f-exp.y"
  1652.     { write_exp_elt_opcode (pstate, BINOP_EXP); }
  1653.     break;

  1654.   case 28:
  1655. /* Line 1792 of yacc.c  */
  1656. #line 374 "f-exp.y"
  1657.     { write_exp_elt_opcode (pstate, BINOP_MUL); }
  1658.     break;

  1659.   case 29:
  1660. /* Line 1792 of yacc.c  */
  1661. #line 378 "f-exp.y"
  1662.     { write_exp_elt_opcode (pstate, BINOP_DIV); }
  1663.     break;

  1664.   case 30:
  1665. /* Line 1792 of yacc.c  */
  1666. #line 382 "f-exp.y"
  1667.     { write_exp_elt_opcode (pstate, BINOP_ADD); }
  1668.     break;

  1669.   case 31:
  1670. /* Line 1792 of yacc.c  */
  1671. #line 386 "f-exp.y"
  1672.     { write_exp_elt_opcode (pstate, BINOP_SUB); }
  1673.     break;

  1674.   case 32:
  1675. /* Line 1792 of yacc.c  */
  1676. #line 390 "f-exp.y"
  1677.     { write_exp_elt_opcode (pstate, BINOP_LSH); }
  1678.     break;

  1679.   case 33:
  1680. /* Line 1792 of yacc.c  */
  1681. #line 394 "f-exp.y"
  1682.     { write_exp_elt_opcode (pstate, BINOP_RSH); }
  1683.     break;

  1684.   case 34:
  1685. /* Line 1792 of yacc.c  */
  1686. #line 398 "f-exp.y"
  1687.     { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
  1688.     break;

  1689.   case 35:
  1690. /* Line 1792 of yacc.c  */
  1691. #line 402 "f-exp.y"
  1692.     { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
  1693.     break;

  1694.   case 36:
  1695. /* Line 1792 of yacc.c  */
  1696. #line 406 "f-exp.y"
  1697.     { write_exp_elt_opcode (pstate, BINOP_LEQ); }
  1698.     break;

  1699.   case 37:
  1700. /* Line 1792 of yacc.c  */
  1701. #line 410 "f-exp.y"
  1702.     { write_exp_elt_opcode (pstate, BINOP_GEQ); }
  1703.     break;

  1704.   case 38:
  1705. /* Line 1792 of yacc.c  */
  1706. #line 414 "f-exp.y"
  1707.     { write_exp_elt_opcode (pstate, BINOP_LESS); }
  1708.     break;

  1709.   case 39:
  1710. /* Line 1792 of yacc.c  */
  1711. #line 418 "f-exp.y"
  1712.     { write_exp_elt_opcode (pstate, BINOP_GTR); }
  1713.     break;

  1714.   case 40:
  1715. /* Line 1792 of yacc.c  */
  1716. #line 422 "f-exp.y"
  1717.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
  1718.     break;

  1719.   case 41:
  1720. /* Line 1792 of yacc.c  */
  1721. #line 426 "f-exp.y"
  1722.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
  1723.     break;

  1724.   case 42:
  1725. /* Line 1792 of yacc.c  */
  1726. #line 430 "f-exp.y"
  1727.     { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
  1728.     break;

  1729.   case 43:
  1730. /* Line 1792 of yacc.c  */
  1731. #line 434 "f-exp.y"
  1732.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
  1733.     break;

  1734.   case 44:
  1735. /* Line 1792 of yacc.c  */
  1736. #line 439 "f-exp.y"
  1737.     { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
  1738.     break;

  1739.   case 45:
  1740. /* Line 1792 of yacc.c  */
  1741. #line 443 "f-exp.y"
  1742.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
  1743.     break;

  1744.   case 46:
  1745. /* Line 1792 of yacc.c  */
  1746. #line 447 "f-exp.y"
  1747.     { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY);
  1748.                           write_exp_elt_opcode (pstate, (yyvsp[(2) - (3)].opcode));
  1749.                           write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); }
  1750.     break;

  1751.   case 47:
  1752. /* Line 1792 of yacc.c  */
  1753. #line 453 "f-exp.y"
  1754.     { write_exp_elt_opcode (pstate, OP_LONG);
  1755.                           write_exp_elt_type (pstate, (yyvsp[(1) - (1)].typed_val).type);
  1756.                           write_exp_elt_longcst (pstate, (LONGEST) ((yyvsp[(1) - (1)].typed_val).val));
  1757.                           write_exp_elt_opcode (pstate, OP_LONG); }
  1758.     break;

  1759.   case 48:
  1760. /* Line 1792 of yacc.c  */
  1761. #line 460 "f-exp.y"
  1762.     { YYSTYPE val;
  1763.                           parse_number (pstate, (yyvsp[(1) - (1)].ssym).stoken.ptr,
  1764.                                         (yyvsp[(1) - (1)].ssym).stoken.length, 0, &val);
  1765.                           write_exp_elt_opcode (pstate, OP_LONG);
  1766.                           write_exp_elt_type (pstate, val.typed_val.type);
  1767.                           write_exp_elt_longcst (pstate,
  1768.                                                  (LONGEST)val.typed_val.val);
  1769.                           write_exp_elt_opcode (pstate, OP_LONG); }
  1770.     break;

  1771.   case 49:
  1772. /* Line 1792 of yacc.c  */
  1773. #line 471 "f-exp.y"
  1774.     { write_exp_elt_opcode (pstate, OP_DOUBLE);
  1775.                           write_exp_elt_type (pstate,
  1776.                                               parse_f_type (pstate)
  1777.                                               ->builtin_real_s8);
  1778.                           write_exp_elt_dblcst (pstate, (yyvsp[(1) - (1)].dval));
  1779.                           write_exp_elt_opcode (pstate, OP_DOUBLE); }
  1780.     break;

  1781.   case 52:
  1782. /* Line 1792 of yacc.c  */
  1783. #line 486 "f-exp.y"
  1784.     { write_exp_elt_opcode (pstate, OP_LONG);
  1785.                           write_exp_elt_type (pstate,
  1786.                                               parse_f_type (pstate)
  1787.                                               ->builtin_integer);
  1788.                           CHECK_TYPEDEF ((yyvsp[(3) - (4)].tval));
  1789.                           write_exp_elt_longcst (pstate,
  1790.                                                  (LONGEST) TYPE_LENGTH ((yyvsp[(3) - (4)].tval)));
  1791.                           write_exp_elt_opcode (pstate, OP_LONG); }
  1792.     break;

  1793.   case 53:
  1794. /* Line 1792 of yacc.c  */
  1795. #line 497 "f-exp.y"
  1796.     { write_exp_elt_opcode (pstate, OP_BOOL);
  1797.                           write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[(1) - (1)].lval));
  1798.                           write_exp_elt_opcode (pstate, OP_BOOL);
  1799.                         }
  1800.     break;

  1801.   case 54:
  1802. /* Line 1792 of yacc.c  */
  1803. #line 504 "f-exp.y"
  1804.     {
  1805.                           write_exp_elt_opcode (pstate, OP_STRING);
  1806.                           write_exp_string (pstate, (yyvsp[(1) - (1)].sval));
  1807.                           write_exp_elt_opcode (pstate, OP_STRING);
  1808.                         }
  1809.     break;

  1810.   case 55:
  1811. /* Line 1792 of yacc.c  */
  1812. #line 512 "f-exp.y"
  1813.     { struct symbol *sym = (yyvsp[(1) - (1)].ssym).sym;

  1814.                           if (sym)
  1815.                             {
  1816.                               if (symbol_read_needs_frame (sym))
  1817.                                 {
  1818.                                   if (innermost_block == 0
  1819.                                       || contained_in (block_found,
  1820.                                                        innermost_block))
  1821.                                     innermost_block = block_found;
  1822.                                 }
  1823.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  1824.                               /* We want to use the selected frame, not
  1825.                                  another more inner frame which happens to
  1826.                                  be in the same block.  */
  1827.                               write_exp_elt_block (pstate, NULL);
  1828.                               write_exp_elt_sym (pstate, sym);
  1829.                               write_exp_elt_opcode (pstate, OP_VAR_VALUE);
  1830.                               break;
  1831.                             }
  1832.                           else
  1833.                             {
  1834.                               struct bound_minimal_symbol msymbol;
  1835.                               char *arg = copy_name ((yyvsp[(1) - (1)].ssym).stoken);

  1836.                               msymbol =
  1837.                                 lookup_bound_minimal_symbol (arg);
  1838.                               if (msymbol.minsym != NULL)
  1839.                                 write_exp_msymbol (pstate, msymbol);
  1840.                               else if (!have_full_symbols () && !have_partial_symbols ())
  1841.                                 error (_("No symbol table is loaded.  Use the \"file\" command."));
  1842.                               else
  1843.                                 error (_("No symbol \"%s\" in current context."),
  1844.                                        copy_name ((yyvsp[(1) - (1)].ssym).stoken));
  1845.                             }
  1846.                         }
  1847.     break;

  1848.   case 58:
  1849. /* Line 1792 of yacc.c  */
  1850. #line 556 "f-exp.y"
  1851.     {
  1852.                   /* This is where the interesting stuff happens.  */
  1853.                   int done = 0;
  1854.                   int array_size;
  1855.                   struct type *follow_type = (yyvsp[(1) - (2)].tval);
  1856.                   struct type *range_type;

  1857.                   while (!done)
  1858.                     switch (pop_type ())
  1859.                       {
  1860.                       case tp_end:
  1861.                         done = 1;
  1862.                         break;
  1863.                       case tp_pointer:
  1864.                         follow_type = lookup_pointer_type (follow_type);
  1865.                         break;
  1866.                       case tp_reference:
  1867.                         follow_type = lookup_reference_type (follow_type);
  1868.                         break;
  1869.                       case tp_array:
  1870.                         array_size = pop_type_int ();
  1871.                         if (array_size != -1)
  1872.                           {
  1873.                             range_type =
  1874.                               create_static_range_type ((struct type *) NULL,
  1875.                                                         parse_f_type (pstate)
  1876.                                                         ->builtin_integer,
  1877.                                                         0, array_size - 1);
  1878.                             follow_type =
  1879.                               create_array_type ((struct type *) NULL,
  1880.                                                  follow_type, range_type);
  1881.                           }
  1882.                         else
  1883.                           follow_type = lookup_pointer_type (follow_type);
  1884.                         break;
  1885.                       case tp_function:
  1886.                         follow_type = lookup_function_type (follow_type);
  1887.                         break;
  1888.                       }
  1889.                   (yyval.tval) = follow_type;
  1890.                 }
  1891.     break;

  1892.   case 59:
  1893. /* Line 1792 of yacc.c  */
  1894. #line 600 "f-exp.y"
  1895.     { push_type (tp_pointer); (yyval.voidval) = 0; }
  1896.     break;

  1897.   case 60:
  1898. /* Line 1792 of yacc.c  */
  1899. #line 602 "f-exp.y"
  1900.     { push_type (tp_pointer); (yyval.voidval) = (yyvsp[(2) - (2)].voidval); }
  1901.     break;

  1902.   case 61:
  1903. /* Line 1792 of yacc.c  */
  1904. #line 604 "f-exp.y"
  1905.     { push_type (tp_reference); (yyval.voidval) = 0; }
  1906.     break;

  1907.   case 62:
  1908. /* Line 1792 of yacc.c  */
  1909. #line 606 "f-exp.y"
  1910.     { push_type (tp_reference); (yyval.voidval) = (yyvsp[(2) - (2)].voidval); }
  1911.     break;

  1912.   case 64:
  1913. /* Line 1792 of yacc.c  */
  1914. #line 611 "f-exp.y"
  1915.     { (yyval.voidval) = (yyvsp[(2) - (3)].voidval); }
  1916.     break;

  1917.   case 65:
  1918. /* Line 1792 of yacc.c  */
  1919. #line 613 "f-exp.y"
  1920.     { push_type (tp_function); }
  1921.     break;

  1922.   case 66:
  1923. /* Line 1792 of yacc.c  */
  1924. #line 615 "f-exp.y"
  1925.     { push_type (tp_function); }
  1926.     break;

  1927.   case 67:
  1928. /* Line 1792 of yacc.c  */
  1929. #line 619 "f-exp.y"
  1930.     { (yyval.voidval) = 0; }
  1931.     break;

  1932.   case 68:
  1933. /* Line 1792 of yacc.c  */
  1934. #line 621 "f-exp.y"
  1935.     { xfree ((yyvsp[(2) - (3)].tvec)); (yyval.voidval) = 0; }
  1936.     break;

  1937.   case 69:
  1938. /* Line 1792 of yacc.c  */
  1939. #line 626 "f-exp.y"
  1940.     { (yyval.tval) = (yyvsp[(1) - (1)].tsym).type; }
  1941.     break;

  1942.   case 70:
  1943. /* Line 1792 of yacc.c  */
  1944. #line 628 "f-exp.y"
  1945.     { (yyval.tval) = parse_f_type (pstate)->builtin_integer; }
  1946.     break;

  1947.   case 71:
  1948. /* Line 1792 of yacc.c  */
  1949. #line 630 "f-exp.y"
  1950.     { (yyval.tval) = parse_f_type (pstate)->builtin_integer_s2; }
  1951.     break;

  1952.   case 72:
  1953. /* Line 1792 of yacc.c  */
  1954. #line 632 "f-exp.y"
  1955.     { (yyval.tval) = parse_f_type (pstate)->builtin_character; }
  1956.     break;

  1957.   case 73:
  1958. /* Line 1792 of yacc.c  */
  1959. #line 634 "f-exp.y"
  1960.     { (yyval.tval) = parse_f_type (pstate)->builtin_logical_s8; }
  1961.     break;

  1962.   case 74:
  1963. /* Line 1792 of yacc.c  */
  1964. #line 636 "f-exp.y"
  1965.     { (yyval.tval) = parse_f_type (pstate)->builtin_logical; }
  1966.     break;

  1967.   case 75:
  1968. /* Line 1792 of yacc.c  */
  1969. #line 638 "f-exp.y"
  1970.     { (yyval.tval) = parse_f_type (pstate)->builtin_logical_s2; }
  1971.     break;

  1972.   case 76:
  1973. /* Line 1792 of yacc.c  */
  1974. #line 640 "f-exp.y"
  1975.     { (yyval.tval) = parse_f_type (pstate)->builtin_logical_s1; }
  1976.     break;

  1977.   case 77:
  1978. /* Line 1792 of yacc.c  */
  1979. #line 642 "f-exp.y"
  1980.     { (yyval.tval) = parse_f_type (pstate)->builtin_real; }
  1981.     break;

  1982.   case 78:
  1983. /* Line 1792 of yacc.c  */
  1984. #line 644 "f-exp.y"
  1985.     { (yyval.tval) = parse_f_type (pstate)->builtin_real_s8; }
  1986.     break;

  1987.   case 79:
  1988. /* Line 1792 of yacc.c  */
  1989. #line 646 "f-exp.y"
  1990.     { (yyval.tval) = parse_f_type (pstate)->builtin_real_s16; }
  1991.     break;

  1992.   case 80:
  1993. /* Line 1792 of yacc.c  */
  1994. #line 648 "f-exp.y"
  1995.     { (yyval.tval) = parse_f_type (pstate)->builtin_complex_s8; }
  1996.     break;

  1997.   case 81:
  1998. /* Line 1792 of yacc.c  */
  1999. #line 650 "f-exp.y"
  2000.     { (yyval.tval) = parse_f_type (pstate)->builtin_complex_s16; }
  2001.     break;

  2002.   case 82:
  2003. /* Line 1792 of yacc.c  */
  2004. #line 652 "f-exp.y"
  2005.     { (yyval.tval) = parse_f_type (pstate)->builtin_complex_s32; }
  2006.     break;

  2007.   case 83:
  2008. /* Line 1792 of yacc.c  */
  2009. #line 657 "f-exp.y"
  2010.     { (yyval.tvec) = (struct type **) xmalloc (sizeof (struct type *) * 2);
  2011.                   (yyval.ivec)[0] = 1;        /* Number of types in vector */
  2012.                   (yyval.tvec)[1] = (yyvsp[(1) - (1)].tval);
  2013.                 }
  2014.     break;

  2015.   case 84:
  2016. /* Line 1792 of yacc.c  */
  2017. #line 662 "f-exp.y"
  2018.     { int len = sizeof (struct type *) * (++((yyvsp[(1) - (3)].ivec)[0]) + 1);
  2019.                   (yyval.tvec) = (struct type **) xrealloc ((char *) (yyvsp[(1) - (3)].tvec), len);
  2020.                   (yyval.tvec)[(yyval.ivec)[0]] = (yyvsp[(3) - (3)].tval);
  2021.                 }
  2022.     break;

  2023.   case 85:
  2024. /* Line 1792 of yacc.c  */
  2025. #line 669 "f-exp.y"
  2026.     {  (yyval.sval) = (yyvsp[(1) - (1)].ssym).stoken; }
  2027.     break;


  2028. /* Line 1792 of yacc.c  */
  2029. #line 2327 "f-exp.c"
  2030.       default: break;
  2031.     }
  2032.   /* User semantic actions sometimes alter yychar, and that requires
  2033.      that yytoken be updated with the new translation.  We take the
  2034.      approach of translating immediately before every use of yytoken.
  2035.      One alternative is translating here after every semantic action,
  2036.      but that translation would be missed if the semantic action invokes
  2037.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  2038.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  2039.      incorrect destructor might then be invoked immediately.  In the
  2040.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  2041.      to an incorrect destructor call or verbose syntax error message
  2042.      before the lookahead is translated.  */
  2043.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  2044.   YYPOPSTACK (yylen);
  2045.   yylen = 0;
  2046.   YY_STACK_PRINT (yyss, yyssp);

  2047.   *++yyvsp = yyval;

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

  2051.   yyn = yyr1[yyn];

  2052.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  2053.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  2054.     yystate = yytable[yystate];
  2055.   else
  2056.     yystate = yydefgoto[yyn - YYNTOKENS];

  2057.   goto yynewstate;


  2058. /*------------------------------------.
  2059. | yyerrlab -- here on detecting error |
  2060. `------------------------------------*/
  2061. yyerrlab:
  2062.   /* Make sure we have latest lookahead translation.  See comments at
  2063.      user semantic actions for why this is necessary.  */
  2064.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  2065.   /* If not already recovering from an error, report this error.  */
  2066.   if (!yyerrstatus)
  2067.     {
  2068.       ++yynerrs;
  2069. #if ! YYERROR_VERBOSE
  2070.       yyerror (YY_("syntax error"));
  2071. #else
  2072. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  2073.                                         yyssp, yytoken)
  2074.       {
  2075.         char const *yymsgp = YY_("syntax error");
  2076.         int yysyntax_error_status;
  2077.         yysyntax_error_status = YYSYNTAX_ERROR;
  2078.         if (yysyntax_error_status == 0)
  2079.           yymsgp = yymsg;
  2080.         else if (yysyntax_error_status == 1)
  2081.           {
  2082.             if (yymsg != yymsgbuf)
  2083.               YYSTACK_FREE (yymsg);
  2084.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  2085.             if (!yymsg)
  2086.               {
  2087.                 yymsg = yymsgbuf;
  2088.                 yymsg_alloc = sizeof yymsgbuf;
  2089.                 yysyntax_error_status = 2;
  2090.               }
  2091.             else
  2092.               {
  2093.                 yysyntax_error_status = YYSYNTAX_ERROR;
  2094.                 yymsgp = yymsg;
  2095.               }
  2096.           }
  2097.         yyerror (yymsgp);
  2098.         if (yysyntax_error_status == 2)
  2099.           goto yyexhaustedlab;
  2100.       }
  2101. # undef YYSYNTAX_ERROR
  2102. #endif
  2103.     }



  2104.   if (yyerrstatus == 3)
  2105.     {
  2106.       /* If just tried and failed to reuse lookahead token after an
  2107.          error, discard it.  */

  2108.       if (yychar <= YYEOF)
  2109.         {
  2110.           /* Return failure if at end of input.  */
  2111.           if (yychar == YYEOF)
  2112.             YYABORT;
  2113.         }
  2114.       else
  2115.         {
  2116.           yydestruct ("Error: discarding",
  2117.                       yytoken, &yylval);
  2118.           yychar = YYEMPTY;
  2119.         }
  2120.     }

  2121.   /* Else will try to reuse lookahead token after shifting the error
  2122.      token.  */
  2123.   goto yyerrlab1;


  2124. /*---------------------------------------------------.
  2125. | yyerrorlab -- error raised explicitly by YYERROR.  |
  2126. `---------------------------------------------------*/
  2127. yyerrorlab:

  2128.   /* Pacify compilers like GCC when the user code never invokes
  2129.      YYERROR and the label yyerrorlab therefore never appears in user
  2130.      code.  */
  2131.   if (/*CONSTCOND*/ 0)
  2132.      goto yyerrorlab;

  2133.   /* Do not reclaim the symbols of the rule which action triggered
  2134.      this YYERROR.  */
  2135.   YYPOPSTACK (yylen);
  2136.   yylen = 0;
  2137.   YY_STACK_PRINT (yyss, yyssp);
  2138.   yystate = *yyssp;
  2139.   goto yyerrlab1;


  2140. /*-------------------------------------------------------------.
  2141. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  2142. `-------------------------------------------------------------*/
  2143. yyerrlab1:
  2144.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  2145.   for (;;)
  2146.     {
  2147.       yyn = yypact[yystate];
  2148.       if (!yypact_value_is_default (yyn))
  2149.         {
  2150.           yyn += YYTERROR;
  2151.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  2152.             {
  2153.               yyn = yytable[yyn];
  2154.               if (0 < yyn)
  2155.                 break;
  2156.             }
  2157.         }

  2158.       /* Pop the current state because it cannot handle the error token.  */
  2159.       if (yyssp == yyss)
  2160.         YYABORT;


  2161.       yydestruct ("Error: popping",
  2162.                   yystos[yystate], yyvsp);
  2163.       YYPOPSTACK (1);
  2164.       yystate = *yyssp;
  2165.       YY_STACK_PRINT (yyss, yyssp);
  2166.     }

  2167.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  2168.   *++yyvsp = yylval;
  2169.   YY_IGNORE_MAYBE_UNINITIALIZED_END


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

  2172.   yystate = yyn;
  2173.   goto yynewstate;


  2174. /*-------------------------------------.
  2175. | yyacceptlab -- YYACCEPT comes here.  |
  2176. `-------------------------------------*/
  2177. yyacceptlab:
  2178.   yyresult = 0;
  2179.   goto yyreturn;

  2180. /*-----------------------------------.
  2181. | yyabortlab -- YYABORT comes here.  |
  2182. `-----------------------------------*/
  2183. yyabortlab:
  2184.   yyresult = 1;
  2185.   goto yyreturn;

  2186. #if !defined yyoverflow || YYERROR_VERBOSE
  2187. /*-------------------------------------------------.
  2188. | yyexhaustedlab -- memory exhaustion comes here.  |
  2189. `-------------------------------------------------*/
  2190. yyexhaustedlab:
  2191.   yyerror (YY_("memory exhausted"));
  2192.   yyresult = 2;
  2193.   /* Fall through.  */
  2194. #endif

  2195. yyreturn:
  2196.   if (yychar != YYEMPTY)
  2197.     {
  2198.       /* Make sure we have latest lookahead translation.  See comments at
  2199.          user semantic actions for why this is necessary.  */
  2200.       yytoken = YYTRANSLATE (yychar);
  2201.       yydestruct ("Cleanup: discarding lookahead",
  2202.                   yytoken, &yylval);
  2203.     }
  2204.   /* Do not reclaim the symbols of the rule which action triggered
  2205.      this YYABORT or YYACCEPT.  */
  2206.   YYPOPSTACK (yylen);
  2207.   YY_STACK_PRINT (yyss, yyssp);
  2208.   while (yyssp != yyss)
  2209.     {
  2210.       yydestruct ("Cleanup: popping",
  2211.                   yystos[*yyssp], yyvsp);
  2212.       YYPOPSTACK (1);
  2213.     }
  2214. #ifndef yyoverflow
  2215.   if (yyss != yyssa)
  2216.     YYSTACK_FREE (yyss);
  2217. #endif
  2218. #if YYERROR_VERBOSE
  2219.   if (yymsg != yymsgbuf)
  2220.     YYSTACK_FREE (yymsg);
  2221. #endif
  2222.   /* Make sure YYID is used.  */
  2223.   return YYID (yyresult);
  2224. }


  2225. /* Line 2055 of yacc.c  */
  2226. #line 682 "f-exp.y"


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

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

  2231. static int
  2232. parse_number (struct parser_state *par_state,
  2233.               const char *p, int len, int parsed_float, YYSTYPE *putithere)
  2234. {
  2235.   LONGEST n = 0;
  2236.   LONGEST prevn = 0;
  2237.   int c;
  2238.   int base = input_radix;
  2239.   int unsigned_p = 0;
  2240.   int long_p = 0;
  2241.   ULONGEST high_bit;
  2242.   struct type *signed_type;
  2243.   struct type *unsigned_type;

  2244.   if (parsed_float)
  2245.     {
  2246.       /* It's a float since it contains a point or an exponent.  */
  2247.       /* [dD] is not understood as an exponent by atof, change it to 'e'.  */
  2248.       char *tmp, *tmp2;

  2249.       tmp = xstrdup (p);
  2250.       for (tmp2 = tmp; *tmp2; ++tmp2)
  2251.         if (*tmp2 == 'd' || *tmp2 == 'D')
  2252.           *tmp2 = 'e';
  2253.       putithere->dval = atof (tmp);
  2254.       xfree (tmp);
  2255.       return FLOAT;
  2256.     }

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

  2270.       case 't':
  2271.       case 'T':
  2272.       case 'd':
  2273.       case 'D':
  2274.         if (len >= 3)
  2275.           {
  2276.             p += 2;
  2277.             base = 10;
  2278.             len -= 2;
  2279.           }
  2280.         break;

  2281.       default:
  2282.         base = 8;
  2283.         break;
  2284.       }

  2285.   while (len-- > 0)
  2286.     {
  2287.       c = *p++;
  2288.       if (isupper (c))
  2289.         c = tolower (c);
  2290.       if (len == 0 && c == 'l')
  2291.         long_p = 1;
  2292.       else if (len == 0 && c == 'u')
  2293.         unsigned_p = 1;
  2294.       else
  2295.         {
  2296.           int i;
  2297.           if (c >= '0' && c <= '9')
  2298.             i = c - '0';
  2299.           else if (c >= 'a' && c <= 'f')
  2300.             i = c - 'a' + 10;
  2301.           else
  2302.             return ERROR;        /* Char not a digit */
  2303.           if (i >= base)
  2304.             return ERROR;                /* Invalid digit in this base */
  2305.           n *= base;
  2306.           n += i;
  2307.         }
  2308.       /* Portably test for overflow (only works for nonzero values, so make
  2309.          a second check for zero).  */
  2310.       if ((prevn >= n) && n != 0)
  2311.         unsigned_p=1;                /* Try something unsigned */
  2312.       /* If range checking enabled, portably test for unsigned overflow.  */
  2313.       if (RANGE_CHECK && n != 0)
  2314.         {
  2315.           if ((unsigned_p && (unsigned)prevn >= (unsigned)n))
  2316.             range_error (_("Overflow on numeric constant."));
  2317.         }
  2318.       prevn = n;
  2319.     }

  2320.   /* If the number is too big to be an int, or it's got an l suffix
  2321.      then it's a long.  Work out if this has to be a long by
  2322.      shifting right and seeing if anything remains, and the
  2323.      target int size is different to the target long size.

  2324.      In the expression below, we could have tested
  2325.      (n >> gdbarch_int_bit (parse_gdbarch))
  2326.      to see if it was zero,
  2327.      but too many compilers warn about that, when ints and longs
  2328.      are the same size.  So we shift it twice, with fewer bits
  2329.      each time, for the same result.  */

  2330.   if ((gdbarch_int_bit (parse_gdbarch (par_state))
  2331.        != gdbarch_long_bit (parse_gdbarch (par_state))
  2332.        && ((n >> 2)
  2333.            >> (gdbarch_int_bit (parse_gdbarch (par_state))-2))) /* Avoid
  2334.                                                             shift warning */
  2335.       || long_p)
  2336.     {
  2337.       high_bit = ((ULONGEST)1)
  2338.       << (gdbarch_long_bit (parse_gdbarch (par_state))-1);
  2339.       unsigned_type = parse_type (par_state)->builtin_unsigned_long;
  2340.       signed_type = parse_type (par_state)->builtin_long;
  2341.     }
  2342.   else
  2343.     {
  2344.       high_bit =
  2345.         ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch (par_state)) - 1);
  2346.       unsigned_type = parse_type (par_state)->builtin_unsigned_int;
  2347.       signed_type = parse_type (par_state)->builtin_int;
  2348.     }

  2349.   putithere->typed_val.val = n;

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

  2352.   if (unsigned_p || (n & high_bit))
  2353.     putithere->typed_val.type = unsigned_type;
  2354.   else
  2355.     putithere->typed_val.type = signed_type;

  2356.   return INT;
  2357. }

  2358. struct token
  2359. {
  2360.   char *operator;
  2361.   int token;
  2362.   enum exp_opcode opcode;
  2363. };

  2364. static const struct token dot_ops[] =
  2365. {
  2366.   { ".and.", BOOL_AND, BINOP_END },
  2367.   { ".AND.", BOOL_AND, BINOP_END },
  2368.   { ".or.", BOOL_OR, BINOP_END },
  2369.   { ".OR.", BOOL_OR, BINOP_END },
  2370.   { ".not.", BOOL_NOT, BINOP_END },
  2371.   { ".NOT.", BOOL_NOT, BINOP_END },
  2372.   { ".eq.", EQUAL, BINOP_END },
  2373.   { ".EQ.", EQUAL, BINOP_END },
  2374.   { ".eqv.", EQUAL, BINOP_END },
  2375.   { ".NEQV.", NOTEQUAL, BINOP_END },
  2376.   { ".neqv.", NOTEQUAL, BINOP_END },
  2377.   { ".EQV.", EQUAL, BINOP_END },
  2378.   { ".ne.", NOTEQUAL, BINOP_END },
  2379.   { ".NE.", NOTEQUAL, BINOP_END },
  2380.   { ".le.", LEQ, BINOP_END },
  2381.   { ".LE.", LEQ, BINOP_END },
  2382.   { ".ge.", GEQ, BINOP_END },
  2383.   { ".GE.", GEQ, BINOP_END },
  2384.   { ".gt.", GREATERTHAN, BINOP_END },
  2385.   { ".GT.", GREATERTHAN, BINOP_END },
  2386.   { ".lt.", LESSTHAN, BINOP_END },
  2387.   { ".LT.", LESSTHAN, BINOP_END },
  2388.   { NULL, 0, 0 }
  2389. };

  2390. struct f77_boolean_val
  2391. {
  2392.   char *name;
  2393.   int value;
  2394. };

  2395. static const struct f77_boolean_val boolean_values[]  =
  2396. {
  2397.   { ".true.", 1 },
  2398.   { ".TRUE.", 1 },
  2399.   { ".false.", 0 },
  2400.   { ".FALSE.", 0 },
  2401.   { NULL, 0 }
  2402. };

  2403. static const struct token f77_keywords[] =
  2404. {
  2405.   { "complex_16", COMPLEX_S16_KEYWORD, BINOP_END },
  2406.   { "complex_32", COMPLEX_S32_KEYWORD, BINOP_END },
  2407.   { "character", CHARACTER, BINOP_END },
  2408.   { "integer_2", INT_S2_KEYWORD, BINOP_END },
  2409.   { "logical_1", LOGICAL_S1_KEYWORD, BINOP_END },
  2410.   { "logical_2", LOGICAL_S2_KEYWORD, BINOP_END },
  2411.   { "logical_8", LOGICAL_S8_KEYWORD, BINOP_END },
  2412.   { "complex_8", COMPLEX_S8_KEYWORD, BINOP_END },
  2413.   { "integer", INT_KEYWORD, BINOP_END },
  2414.   { "logical", LOGICAL_KEYWORD, BINOP_END },
  2415.   { "real_16", REAL_S16_KEYWORD, BINOP_END },
  2416.   { "complex", COMPLEX_S8_KEYWORD, BINOP_END },
  2417.   { "sizeof", SIZEOF, BINOP_END },
  2418.   { "real_8", REAL_S8_KEYWORD, BINOP_END },
  2419.   { "real", REAL_KEYWORD, BINOP_END },
  2420.   { NULL, 0, 0 }
  2421. };

  2422. /* Implementation of a dynamically expandable buffer for processing input
  2423.    characters acquired through lexptr and building a value to return in
  2424.    yylval.  Ripped off from ch-exp.y */

  2425. static char *tempbuf;                /* Current buffer contents */
  2426. static int tempbufsize;                /* Size of allocated buffer */
  2427. static int tempbufindex;        /* Current index into buffer */

  2428. #define GROWBY_MIN_SIZE 64        /* Minimum amount to grow buffer by */

  2429. #define CHECKBUF(size) \
  2430.   do { \
  2431.     if (tempbufindex + (size) >= tempbufsize) \
  2432.       { \
  2433.         growbuf_by_size (size); \
  2434.       } \
  2435.   } while (0);


  2436. /* Grow the static temp buffer if necessary, including allocating the
  2437.    first one on demand.  */

  2438. static void
  2439. growbuf_by_size (int count)
  2440. {
  2441.   int growby;

  2442.   growby = max (count, GROWBY_MIN_SIZE);
  2443.   tempbufsize += growby;
  2444.   if (tempbuf == NULL)
  2445.     tempbuf = (char *) xmalloc (tempbufsize);
  2446.   else
  2447.     tempbuf = (char *) xrealloc (tempbuf, tempbufsize);
  2448. }

  2449. /* Blatantly ripped off from ch-exp.y. This routine recognizes F77
  2450.    string-literals.

  2451.    Recognize a string literal.  A string literal is a nonzero sequence
  2452.    of characters enclosed in matching single quotes, except that
  2453.    a single character inside single quotes is a character literal, which
  2454.    we reject as a string literal.  To embed the terminator character inside
  2455.    a string, it is simply doubled (I.E. 'this''is''one''string') */

  2456. static int
  2457. match_string_literal (void)
  2458. {
  2459.   const char *tokptr = lexptr;

  2460.   for (tempbufindex = 0, tokptr++; *tokptr != '\0'; tokptr++)
  2461.     {
  2462.       CHECKBUF (1);
  2463.       if (*tokptr == *lexptr)
  2464.         {
  2465.           if (*(tokptr + 1) == *lexptr)
  2466.             tokptr++;
  2467.           else
  2468.             break;
  2469.         }
  2470.       tempbuf[tempbufindex++] = *tokptr;
  2471.     }
  2472.   if (*tokptr == '\0'                                        /* no terminator */
  2473.       || tempbufindex == 0)                                /* no string */
  2474.     return 0;
  2475.   else
  2476.     {
  2477.       tempbuf[tempbufindex] = '\0';
  2478.       yylval.sval.ptr = tempbuf;
  2479.       yylval.sval.length = tempbufindex;
  2480.       lexptr = ++tokptr;
  2481.       return STRING_LITERAL;
  2482.     }
  2483. }

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

  2485. static int
  2486. yylex (void)
  2487. {
  2488.   int c;
  2489.   int namelen;
  2490.   unsigned int i,token;
  2491.   const char *tokstart;

  2492. retry:

  2493.   prev_lexptr = lexptr;

  2494.   tokstart = lexptr;

  2495.   /* First of all, let us make sure we are not dealing with the
  2496.      special tokens .true. and .false. which evaluate to 1 and 0.  */

  2497.   if (*lexptr == '.')
  2498.     {
  2499.       for (i = 0; boolean_values[i].name != NULL; i++)
  2500.         {
  2501.           if (strncmp (tokstart, boolean_values[i].name,
  2502.                        strlen (boolean_values[i].name)) == 0)
  2503.             {
  2504.               lexptr += strlen (boolean_values[i].name);
  2505.               yylval.lval = boolean_values[i].value;
  2506.               return BOOLEAN_LITERAL;
  2507.             }
  2508.         }
  2509.     }

  2510.   /* See if it is a special .foo. operator.  */

  2511.   for (i = 0; dot_ops[i].operator != NULL; i++)
  2512.     if (strncmp (tokstart, dot_ops[i].operator,
  2513.                  strlen (dot_ops[i].operator)) == 0)
  2514.       {
  2515.         lexptr += strlen (dot_ops[i].operator);
  2516.         yylval.opcode = dot_ops[i].opcode;
  2517.         return dot_ops[i].token;
  2518.       }

  2519.   /* See if it is an exponentiation operator.  */

  2520.   if (strncmp (tokstart, "**", 2) == 0)
  2521.     {
  2522.       lexptr += 2;
  2523.       yylval.opcode = BINOP_EXP;
  2524.       return STARSTAR;
  2525.     }

  2526.   switch (c = *tokstart)
  2527.     {
  2528.     case 0:
  2529.       return 0;

  2530.     case ' ':
  2531.     case '\t':
  2532.     case '\n':
  2533.       lexptr++;
  2534.       goto retry;

  2535.     case '\'':
  2536.       token = match_string_literal ();
  2537.       if (token != 0)
  2538.         return (token);
  2539.       break;

  2540.     case '(':
  2541.       paren_depth++;
  2542.       lexptr++;
  2543.       return c;

  2544.     case ')':
  2545.       if (paren_depth == 0)
  2546.         return 0;
  2547.       paren_depth--;
  2548.       lexptr++;
  2549.       return c;

  2550.     case ',':
  2551.       if (comma_terminates && paren_depth == 0)
  2552.         return 0;
  2553.       lexptr++;
  2554.       return c;

  2555.     case '.':
  2556.       /* Might be a floating point number.  */
  2557.       if (lexptr[1] < '0' || lexptr[1] > '9')
  2558.         goto symbol;                /* Nope, must be a symbol.  */
  2559.       /* FALL THRU into number case.  */

  2560.     case '0':
  2561.     case '1':
  2562.     case '2':
  2563.     case '3':
  2564.     case '4':
  2565.     case '5':
  2566.     case '6':
  2567.     case '7':
  2568.     case '8':
  2569.     case '9':
  2570.       {
  2571.         /* It's a number.  */
  2572.         int got_dot = 0, got_e = 0, got_d = 0, toktype;
  2573.         const char *p = tokstart;
  2574.         int hex = input_radix > 10;

  2575.         if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
  2576.           {
  2577.             p += 2;
  2578.             hex = 1;
  2579.           }
  2580.         else if (c == '0' && (p[1]=='t' || p[1]=='T'
  2581.                               || p[1]=='d' || p[1]=='D'))
  2582.           {
  2583.             p += 2;
  2584.             hex = 0;
  2585.           }

  2586.         for (;; ++p)
  2587.           {
  2588.             if (!hex && !got_e && (*p == 'e' || *p == 'E'))
  2589.               got_dot = got_e = 1;
  2590.             else if (!hex && !got_d && (*p == 'd' || *p == 'D'))
  2591.               got_dot = got_d = 1;
  2592.             else if (!hex && !got_dot && *p == '.')
  2593.               got_dot = 1;
  2594.             else if (((got_e && (p[-1] == 'e' || p[-1] == 'E'))
  2595.                      || (got_d && (p[-1] == 'd' || p[-1] == 'D')))
  2596.                      && (*p == '-' || *p == '+'))
  2597.               /* This is the sign of the exponent, not the end of the
  2598.                  number.  */
  2599.               continue;
  2600.             /* We will take any letters or digits.  parse_number will
  2601.                complain if past the radix, or if L or U are not final.  */
  2602.             else if ((*p < '0' || *p > '9')
  2603.                      && ((*p < 'a' || *p > 'z')
  2604.                          && (*p < 'A' || *p > 'Z')))
  2605.               break;
  2606.           }
  2607.         toktype = parse_number (pstate, tokstart, p - tokstart,
  2608.                                 got_dot|got_e|got_d,
  2609.                                 &yylval);
  2610.         if (toktype == ERROR)
  2611.           {
  2612.             char *err_copy = (char *) alloca (p - tokstart + 1);

  2613.             memcpy (err_copy, tokstart, p - tokstart);
  2614.             err_copy[p - tokstart] = 0;
  2615.             error (_("Invalid number \"%s\"."), err_copy);
  2616.           }
  2617.         lexptr = p;
  2618.         return toktype;
  2619.       }

  2620.     case '+':
  2621.     case '-':
  2622.     case '*':
  2623.     case '/':
  2624.     case '%':
  2625.     case '|':
  2626.     case '&':
  2627.     case '^':
  2628.     case '~':
  2629.     case '!':
  2630.     case '@':
  2631.     case '<':
  2632.     case '>':
  2633.     case '[':
  2634.     case ']':
  2635.     case '?':
  2636.     case ':':
  2637.     case '=':
  2638.     case '{':
  2639.     case '}':
  2640.     symbol:
  2641.       lexptr++;
  2642.       return c;
  2643.     }

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

  2648.   namelen = 0;
  2649.   for (c = tokstart[namelen];
  2650.        (c == '_' || c == '$' || c == ':' || (c >= '0' && c <= '9')
  2651.         || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
  2652.        c = tokstart[++namelen]);

  2653.   /* The token "if" terminates the expression and is NOT
  2654.      removed from the input stream.  */

  2655.   if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
  2656.     return 0;

  2657.   lexptr += namelen;

  2658.   /* Catch specific keywords.  */

  2659.   for (i = 0; f77_keywords[i].operator != NULL; i++)
  2660.     if (strlen (f77_keywords[i].operator) == namelen
  2661.         && strncmp (tokstart, f77_keywords[i].operator, namelen) == 0)
  2662.       {
  2663.         /*         lexptr += strlen(f77_keywords[i].operator); */
  2664.         yylval.opcode = f77_keywords[i].opcode;
  2665.         return f77_keywords[i].token;
  2666.       }

  2667.   yylval.sval.ptr = tokstart;
  2668.   yylval.sval.length = namelen;

  2669.   if (*tokstart == '$')
  2670.     {
  2671.       write_dollar_variable (pstate, yylval.sval);
  2672.       return VARIABLE;
  2673.     }

  2674.   /* Use token-type TYPENAME for symbols that happen to be defined
  2675.      currently as names of types; NAME for other symbols.
  2676.      The caller is not constrained to care about the distinction.  */
  2677.   {
  2678.     char *tmp = copy_name (yylval.sval);
  2679.     struct symbol *sym;
  2680.     struct field_of_this_result is_a_field_of_this;
  2681.     enum domain_enum_tag lookup_domains[] =
  2682.     {
  2683.       STRUCT_DOMAIN,
  2684.       VAR_DOMAIN,
  2685.       MODULE_DOMAIN
  2686.     };
  2687.     int i;
  2688.     int hextype;

  2689.     for (i = 0; i < ARRAY_SIZE (lookup_domains); ++i)
  2690.       {
  2691.         /* Initialize this in case we *don't* use it in this call; that
  2692.            way we can refer to it unconditionally below.  */
  2693.         memset (&is_a_field_of_this, 0, sizeof (is_a_field_of_this));

  2694.         sym = lookup_symbol (tmp, expression_context_block,
  2695.                              lookup_domains[i],
  2696.                              parse_language (pstate)->la_language
  2697.                              == language_cplus ? &is_a_field_of_this : NULL);
  2698.         if (sym && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  2699.           {
  2700.             yylval.tsym.type = SYMBOL_TYPE (sym);
  2701.             return TYPENAME;
  2702.           }

  2703.         if (sym)
  2704.           break;
  2705.       }

  2706.     yylval.tsym.type
  2707.       = language_lookup_primitive_type_by_name (parse_language (pstate),
  2708.                                                 parse_gdbarch (pstate), tmp);
  2709.     if (yylval.tsym.type != NULL)
  2710.       return TYPENAME;

  2711.     /* Input names that aren't symbols but ARE valid hex numbers,
  2712.        when the input radix permits them, can be names or numbers
  2713.        depending on the parse.  Note we support radixes > 16 here.  */
  2714.     if (!sym
  2715.         && ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10)
  2716.             || (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
  2717.       {
  2718.          YYSTYPE newlval;        /* Its value is ignored.  */
  2719.         hextype = parse_number (pstate, tokstart, namelen, 0, &newlval);
  2720.         if (hextype == INT)
  2721.           {
  2722.             yylval.ssym.sym = sym;
  2723.             yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  2724.             return NAME_OR_INT;
  2725.           }
  2726.       }

  2727.     /* Any other kind of symbol */
  2728.     yylval.ssym.sym = sym;
  2729.     yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
  2730.     return NAME;
  2731.   }
  2732. }

  2733. int
  2734. f_parse (struct parser_state *par_state)
  2735. {
  2736.   int result;
  2737.   struct cleanup *c = make_cleanup_clear_parser_state (&pstate);

  2738.   /* Setting up the parser state.  */
  2739.   gdb_assert (par_state != NULL);
  2740.   pstate = par_state;

  2741.   result = yyparse ();
  2742.   do_cleanups (c);
  2743.   return result;
  2744. }

  2745. void
  2746. yyerror (char *msg)
  2747. {
  2748.   if (prev_lexptr)
  2749.     lexptr = prev_lexptr;

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