/* A Bison parser, made by GNU Bison 3.0.4. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "3.0.4" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Copy the first part of user declarations. */ #line 43 "f-exp.y" /* yacc.c:339 */ #include "defs.h" #include "expression.h" #include "value.h" #include "parser-defs.h" #include "language.h" #include "f-lang.h" #include "bfd.h" /* Required by objfiles.h. */ #include "symfile.h" /* Required by objfiles.h. */ #include "objfiles.h" /* For have_full_symbols and have_partial_symbols */ #include "block.h" #include #include #define parse_type(ps) builtin_type (parse_gdbarch (ps)) #define parse_f_type(ps) builtin_f_type (parse_gdbarch (ps)) /* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc). */ #define GDB_YY_REMAP_PREFIX f_ #include "yy-remap.h" /* The state of the parser, used internally when we are parsing the expression. */ static struct parser_state *pstate = NULL; int yyparse (void); static int yylex (void); static void yyerror (const char *); static void growbuf_by_size (int); static int match_string_literal (void); #line 106 "f-exp.c.tmp" /* yacc.c:339 */ # ifndef YY_NULLPTRPTR # if defined __cplusplus && 201103L <= __cplusplus # define YY_NULLPTRPTR nullptr # else # define YY_NULLPTRPTR 0 # endif # endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int yydebug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { INT = 258, FLOAT = 259, STRING_LITERAL = 260, BOOLEAN_LITERAL = 261, NAME = 262, TYPENAME = 263, NAME_OR_INT = 264, SIZEOF = 265, ERROR = 266, INT_KEYWORD = 267, INT_S2_KEYWORD = 268, LOGICAL_S1_KEYWORD = 269, LOGICAL_S2_KEYWORD = 270, LOGICAL_S8_KEYWORD = 271, LOGICAL_KEYWORD = 272, REAL_KEYWORD = 273, REAL_S8_KEYWORD = 274, REAL_S16_KEYWORD = 275, COMPLEX_S8_KEYWORD = 276, COMPLEX_S16_KEYWORD = 277, COMPLEX_S32_KEYWORD = 278, BOOL_AND = 279, BOOL_OR = 280, BOOL_NOT = 281, CHARACTER = 282, DOLLAR_VARIABLE = 283, ASSIGN_MODIFY = 284, ABOVE_COMMA = 285, EQUAL = 286, NOTEQUAL = 287, LESSTHAN = 288, GREATERTHAN = 289, LEQ = 290, GEQ = 291, LSH = 292, RSH = 293, STARSTAR = 294, UNARY = 295 }; #endif /* Tokens. */ #define INT 258 #define FLOAT 259 #define STRING_LITERAL 260 #define BOOLEAN_LITERAL 261 #define NAME 262 #define TYPENAME 263 #define NAME_OR_INT 264 #define SIZEOF 265 #define ERROR 266 #define INT_KEYWORD 267 #define INT_S2_KEYWORD 268 #define LOGICAL_S1_KEYWORD 269 #define LOGICAL_S2_KEYWORD 270 #define LOGICAL_S8_KEYWORD 271 #define LOGICAL_KEYWORD 272 #define REAL_KEYWORD 273 #define REAL_S8_KEYWORD 274 #define REAL_S16_KEYWORD 275 #define COMPLEX_S8_KEYWORD 276 #define COMPLEX_S16_KEYWORD 277 #define COMPLEX_S32_KEYWORD 278 #define BOOL_AND 279 #define BOOL_OR 280 #define BOOL_NOT 281 #define CHARACTER 282 #define DOLLAR_VARIABLE 283 #define ASSIGN_MODIFY 284 #define ABOVE_COMMA 285 #define EQUAL 286 #define NOTEQUAL 287 #define LESSTHAN 288 #define GREATERTHAN 289 #define LEQ 290 #define GEQ 291 #define LSH 292 #define RSH 293 #define STARSTAR 294 #define UNARY 295 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { #line 88 "f-exp.y" /* yacc.c:355 */ LONGEST lval; struct { LONGEST val; struct type *type; } typed_val; struct { gdb_byte val[16]; struct type *type; } typed_val_float; struct symbol *sym; struct type *tval; struct stoken sval; struct ttype tsym; struct symtoken ssym; int voidval; struct block *bval; enum exp_opcode opcode; struct internalvar *ivar; struct type **tvec; int *ivec; #line 248 "f-exp.c.tmp" /* yacc.c:355 */ }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (void); /* Copy the second part of user declarations. */ #line 112 "f-exp.y" /* yacc.c:358 */ /* YYSTYPE gets defined by %union */ static int parse_number (struct parser_state *, const char *, int, int, YYSTYPE *); #line 270 "f-exp.c.tmp" /* yacc.c:358 */ #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE # if (defined __GNUC__ \ && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C # define YY_ATTRIBUTE(Spec) __attribute__(Spec) # else # define YY_ATTRIBUTE(Spec) /* empty */ # endif #endif #ifndef YY_ATTRIBUTE_PURE # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) #endif #ifndef YY_ATTRIBUTE_UNUSED # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) #endif #if !defined _Noreturn \ && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) # if defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) #else # define YYUSE(E) /* empty */ #endif #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or xmalloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined xmalloc) \ && (defined YYFREE || defined xfree))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC xmalloc # if ! defined xmalloc && ! defined EXIT_SUCCESS void *xmalloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE xfree # if ! defined xfree && ! defined EXIT_SUCCESS void xfree (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 47 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 529 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 57 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 18 /* YYNRULES -- Number of rules. */ #define YYNRULES 86 /* YYNSTATES -- Number of states. */ #define YYNSTATES 131 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 295 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex, without out-of-bounds checking. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 51, 36, 2, 53, 54, 48, 46, 30, 47, 2, 49, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 56, 2, 2, 32, 2, 33, 45, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 35, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 34, 2, 55, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 37, 38, 39, 40, 41, 42, 43, 44, 50, 52 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 192, 192, 193, 196, 202, 207, 211, 215, 219, 223, 227, 237, 236, 247, 250, 254, 258, 264, 270, 276, 282, 288, 292, 300, 306, 314, 318, 322, 326, 330, 334, 338, 342, 346, 350, 354, 358, 362, 366, 370, 374, 378, 382, 387, 391, 395, 401, 408, 419, 426, 429, 432, 443, 450, 458, 490, 493, 494, 538, 540, 542, 544, 546, 549, 551, 553, 557, 559, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 595, 600, 607, 611 }; #endif #if YYDEBUG || YYERROR_VERBOSE || 0 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "INT", "FLOAT", "STRING_LITERAL", "BOOLEAN_LITERAL", "NAME", "TYPENAME", "NAME_OR_INT", "SIZEOF", "ERROR", "INT_KEYWORD", "INT_S2_KEYWORD", "LOGICAL_S1_KEYWORD", "LOGICAL_S2_KEYWORD", "LOGICAL_S8_KEYWORD", "LOGICAL_KEYWORD", "REAL_KEYWORD", "REAL_S8_KEYWORD", "REAL_S16_KEYWORD", "COMPLEX_S8_KEYWORD", "COMPLEX_S16_KEYWORD", "COMPLEX_S32_KEYWORD", "BOOL_AND", "BOOL_OR", "BOOL_NOT", "CHARACTER", "DOLLAR_VARIABLE", "ASSIGN_MODIFY", "','", "ABOVE_COMMA", "'='", "'?'", "'|'", "'^'", "'&'", "EQUAL", "NOTEQUAL", "LESSTHAN", "GREATERTHAN", "LEQ", "GEQ", "LSH", "RSH", "'@'", "'+'", "'-'", "'*'", "'/'", "STARSTAR", "'%'", "UNARY", "'('", "')'", "'~'", "':'", "$accept", "start", "type_exp", "exp", "$@1", "arglist", "subrange", "complexnum", "variable", "type", "ptype", "abs_decl", "direct_abs_decl", "func_mod", "typebase", "nonempty_typelist", "name", "name_not_typename", YY_NULLPTRPTR }; #endif # ifdef YYPRINT /* YYTOKNUM[NUM] -- (External) token number corresponding to the (internal) symbol number NUM (which must be that of a token). */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 44, 285, 61, 63, 124, 94, 38, 286, 287, 288, 289, 290, 291, 292, 293, 64, 43, 45, 42, 47, 294, 37, 295, 40, 41, 126, 58 }; # endif #define YYPACT_NINF -57 #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-57))) #define YYTABLE_NINF -1 #define yytable_value_is_error(Yytable_value) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { 134, -57, -57, -57, -57, -57, -57, -57, 162, -57, -57, -57, -57, -57, -57, -57, -57, -57, -57, -57, -57, 190, -57, -57, 190, 190, 190, 134, 190, 19, -57, 359, -57, -57, -57, -35, -57, 134, -33, -33, -33, -33, -33, 328, -32, -31, -33, -57, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 24, -57, -35, -35, 234, -57, -12, -57, -11, 190, -57, -57, 190, 407, 387, 359, 359, 426, 444, 461, 476, 476, 228, 228, 228, 228, -13, -13, 49, -39, -39, -46, -46, -46, -57, -57, 80, -57, -57, -57, -57, -10, -27, 277, -57, 66, 359, -33, 190, 298, -24, -57, -57, 293, -57, 359, 190, 190, -57, -57, 359, 359 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { 0, 47, 49, 54, 53, 86, 69, 48, 0, 70, 71, 76, 75, 73, 74, 77, 78, 79, 80, 81, 82, 0, 72, 51, 0, 0, 0, 0, 0, 0, 3, 2, 50, 4, 56, 57, 55, 0, 11, 9, 7, 8, 6, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 61, 59, 0, 58, 63, 66, 0, 0, 5, 23, 0, 43, 44, 46, 45, 42, 41, 40, 34, 35, 38, 39, 36, 37, 32, 33, 26, 30, 31, 28, 29, 27, 85, 25, 14, 62, 60, 67, 83, 0, 0, 0, 65, 52, 22, 24, 21, 15, 0, 16, 64, 0, 68, 20, 19, 0, 13, 84, 18, 17 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { -57, -57, -57, 0, -57, -57, -57, -57, -57, 2, -57, -56, -57, -30, -57, -57, -57, -57 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int8 yydefgoto[] = { -1, 29, 30, 43, 105, 119, 120, 44, 32, 109, 34, 74, 75, 76, 35, 111, 104, 36 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_uint8 yytable[] = { 31, 71, 33, 122, 68, 69, 126, 70, 38, 66, 67, 68, 69, 72, 70, 106, 107, 110, 73, 47, 70, 39, 80, 81, 40, 41, 42, 123, 46, 45, 127, 103, 63, 64, 65, 66, 67, 68, 69, 77, 70, 112, 0, 114, 121, 113, 0, 0, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 1, 2, 3, 4, 5, 0, 7, 8, 0, 115, 0, 0, 116, 0, 1, 2, 3, 4, 5, 0, 7, 8, 0, 21, 0, 23, 64, 65, 66, 67, 68, 69, 0, 70, 0, 0, 118, 21, 0, 23, 0, 0, 0, 0, 0, 116, 0, 24, 124, 0, 27, 0, 28, 0, 0, 128, 129, 130, 25, 26, 0, 0, 0, 0, 27, 0, 28, 117, 1, 2, 3, 4, 5, 6, 7, 8, 0, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0, 0, 21, 22, 23, 0, 0, 1, 2, 3, 4, 5, 24, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 25, 26, 0, 0, 0, 0, 27, 21, 28, 23, 0, 0, 1, 2, 3, 4, 5, 24, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 25, 26, 0, 0, 0, 0, 37, 21, 28, 23, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 26, 0, 0, 0, 6, 27, 0, 28, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 71, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 72, 0, 0, 6, 0, 73, 108, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 0, 0, 22, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0, 0, 0, 22, 0, 48, 49, 0, 0, 0, 50, 0, 0, 51, 108, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 48, 49, 125, 0, 0, 50, 78, 0, 51, 0, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 79, 48, 49, 0, 0, 0, 50, 0, 0, 51, 0, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 48, 70, 0, 0, 0, 0, 0, 0, 0, 0, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 0, 70 }; static const yytype_int8 yycheck[] = { 0, 36, 0, 30, 50, 51, 30, 53, 8, 48, 49, 50, 51, 48, 53, 71, 72, 73, 53, 0, 53, 21, 54, 54, 24, 25, 26, 54, 28, 27, 54, 7, 45, 46, 47, 48, 49, 50, 51, 37, 53, 53, -1, 54, 54, 75, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 3, 4, 5, 6, 7, -1, 9, 10, -1, 78, -1, -1, 81, -1, 3, 4, 5, 6, 7, -1, 9, 10, -1, 26, -1, 28, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 105, 26, -1, 28, -1, -1, -1, -1, -1, 114, -1, 36, 117, -1, 53, -1, 55, -1, -1, 122, 125, 126, 47, 48, -1, -1, -1, -1, 53, -1, 55, 56, 3, 4, 5, 6, 7, 8, 9, 10, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, 26, 27, 28, -1, -1, 3, 4, 5, 6, 7, 36, 9, 10, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, 53, 26, 55, 28, -1, -1, 3, 4, 5, 6, 7, 36, 9, 10, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, 53, 26, 55, 28, -1, -1, -1, -1, -1, -1, -1, 36, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, 8, 53, -1, 55, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, 27, -1, -1, -1, -1, -1, -1, -1, -1, 36, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 48, -1, -1, 8, -1, 53, 54, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 8, -1, -1, 27, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, 27, -1, 24, 25, -1, -1, -1, 29, -1, -1, 32, 54, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 24, 25, 56, -1, -1, 29, 30, -1, 32, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 24, 25, -1, -1, -1, 29, -1, -1, 32, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 24, 53, -1, -1, -1, -1, -1, -1, -1, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 36, 47, 48, 53, 55, 58, 59, 60, 65, 66, 67, 71, 74, 53, 60, 60, 60, 60, 60, 60, 64, 66, 60, 0, 24, 25, 29, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 36, 48, 53, 68, 69, 70, 66, 30, 54, 54, 54, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 7, 73, 61, 68, 68, 54, 66, 68, 72, 53, 70, 54, 60, 60, 56, 60, 62, 63, 54, 30, 54, 60, 56, 30, 54, 66, 60, 60 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 57, 58, 58, 59, 60, 60, 60, 60, 60, 60, 60, 61, 60, 62, 62, 62, 62, 63, 63, 63, 63, 64, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 65, 66, 67, 67, 68, 68, 68, 68, 68, 69, 69, 69, 70, 70, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 72, 72, 73, 74 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 1, 1, 3, 2, 2, 2, 2, 2, 2, 0, 5, 0, 1, 1, 3, 3, 2, 2, 1, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 3, 2, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Error token number */ #define YYTERROR 1 #define YYERRCODE 256 /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*----------------------------------------. | Print this symbol's value on YYOUTPUT. | `----------------------------------------*/ static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) { FILE *yyo = yyoutput; YYUSE (yyo); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # endif YYUSE (yytype); } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) { YYFPRINTF (yyoutput, "%s %s (", yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule) { unsigned long int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yystos[yyssp[yyi + 1 - yynrhs]], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, Rule); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ static YYSIZE_T yystrlen (const char *yystr) { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * yystpcpy (char *yydest, const char *yysrc) { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (YY_NULLPTRPTR, yytname[yytoken]); YYSIZE_T yysize = yysize0; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULLPTRPTR; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; { YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTRPTR, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } { YYSIZE_T yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YYUSE (yytype); YY_IGNORE_MAYBE_UNINITIALIZED_END } /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ int yyparse (void) { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: 'yyss': related to states. 'yyvs': related to semantic values. Refer to the stacks through separate pointers, to allow yyoverflow to xreallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken = 0; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yyssp = yyss = yyssa; yyvsp = yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to xreallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = yylex (); } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 4: #line 197 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_TYPE); write_exp_elt_type (pstate, (yyvsp[0].tval)); write_exp_elt_opcode (pstate, OP_TYPE); } #line 1527 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 5: #line 203 "f-exp.y" /* yacc.c:1646 */ { } #line 1533 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 6: #line 208 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_IND); } #line 1539 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 7: #line 212 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_ADDR); } #line 1545 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 8: #line 216 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_NEG); } #line 1551 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 9: #line 220 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); } #line 1557 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 10: #line 224 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); } #line 1563 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 11: #line 228 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_SIZEOF); } #line 1569 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 12: #line 237 "f-exp.y" /* yacc.c:1646 */ { start_arglist (); } #line 1575 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 13: #line 239 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_F77_UNDETERMINED_ARGLIST); write_exp_elt_longcst (pstate, (LONGEST) end_arglist ()); write_exp_elt_opcode (pstate, OP_F77_UNDETERMINED_ARGLIST); } #line 1586 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 15: #line 251 "f-exp.y" /* yacc.c:1646 */ { arglist_len = 1; } #line 1592 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 16: #line 255 "f-exp.y" /* yacc.c:1646 */ { arglist_len = 1; } #line 1598 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 17: #line 259 "f-exp.y" /* yacc.c:1646 */ { arglist_len++; } #line 1604 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 18: #line 265 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_RANGE); write_exp_elt_longcst (pstate, NONE_BOUND_DEFAULT); write_exp_elt_opcode (pstate, OP_RANGE); } #line 1612 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 19: #line 271 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_RANGE); write_exp_elt_longcst (pstate, HIGH_BOUND_DEFAULT); write_exp_elt_opcode (pstate, OP_RANGE); } #line 1620 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 20: #line 277 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_RANGE); write_exp_elt_longcst (pstate, LOW_BOUND_DEFAULT); write_exp_elt_opcode (pstate, OP_RANGE); } #line 1628 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 21: #line 283 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_RANGE); write_exp_elt_longcst (pstate, BOTH_BOUND_DEFAULT); write_exp_elt_opcode (pstate, OP_RANGE); } #line 1636 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 22: #line 289 "f-exp.y" /* yacc.c:1646 */ { } #line 1642 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 23: #line 293 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_COMPLEX); write_exp_elt_type (pstate, parse_f_type (pstate) ->builtin_complex_s16); write_exp_elt_opcode (pstate, OP_COMPLEX); } #line 1652 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 24: #line 301 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, UNOP_CAST); write_exp_elt_type (pstate, (yyvsp[-2].tval)); write_exp_elt_opcode (pstate, UNOP_CAST); } #line 1660 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 25: #line 307 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); write_exp_string (pstate, (yyvsp[0].sval)); write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); } #line 1668 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 26: #line 315 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_REPEAT); } #line 1674 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 27: #line 319 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_EXP); } #line 1680 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 28: #line 323 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_MUL); } #line 1686 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 29: #line 327 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_DIV); } #line 1692 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 30: #line 331 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_ADD); } #line 1698 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 31: #line 335 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_SUB); } #line 1704 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 32: #line 339 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_LSH); } #line 1710 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 33: #line 343 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_RSH); } #line 1716 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 34: #line 347 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_EQUAL); } #line 1722 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 35: #line 351 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); } #line 1728 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 36: #line 355 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_LEQ); } #line 1734 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 37: #line 359 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_GEQ); } #line 1740 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 38: #line 363 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_LESS); } #line 1746 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 39: #line 367 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_GTR); } #line 1752 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 40: #line 371 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); } #line 1758 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 41: #line 375 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); } #line 1764 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 42: #line 379 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); } #line 1770 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 43: #line 383 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); } #line 1776 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 44: #line 388 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); } #line 1782 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 45: #line 392 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_ASSIGN); } #line 1788 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 46: #line 396 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); write_exp_elt_opcode (pstate, (yyvsp[-1].opcode)); write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); } #line 1796 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 47: #line 402 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_LONG); write_exp_elt_type (pstate, (yyvsp[0].typed_val).type); write_exp_elt_longcst (pstate, (LONGEST) ((yyvsp[0].typed_val).val)); write_exp_elt_opcode (pstate, OP_LONG); } #line 1805 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 48: #line 409 "f-exp.y" /* yacc.c:1646 */ { YYSTYPE val; parse_number (pstate, (yyvsp[0].ssym).stoken.ptr, (yyvsp[0].ssym).stoken.length, 0, &val); write_exp_elt_opcode (pstate, OP_LONG); write_exp_elt_type (pstate, val.typed_val.type); write_exp_elt_longcst (pstate, (LONGEST)val.typed_val.val); write_exp_elt_opcode (pstate, OP_LONG); } #line 1818 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 49: #line 420 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_FLOAT); write_exp_elt_type (pstate, (yyvsp[0].typed_val_float).type); write_exp_elt_floatcst (pstate, (yyvsp[0].typed_val_float).val); write_exp_elt_opcode (pstate, OP_FLOAT); } #line 1827 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 52: #line 433 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_LONG); write_exp_elt_type (pstate, parse_f_type (pstate) ->builtin_integer); (yyvsp[-1].tval) = check_typedef ((yyvsp[-1].tval)); write_exp_elt_longcst (pstate, (LONGEST) TYPE_LENGTH ((yyvsp[-1].tval))); write_exp_elt_opcode (pstate, OP_LONG); } #line 1840 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 53: #line 444 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_BOOL); write_exp_elt_longcst (pstate, (LONGEST) (yyvsp[0].lval)); write_exp_elt_opcode (pstate, OP_BOOL); } #line 1849 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 54: #line 451 "f-exp.y" /* yacc.c:1646 */ { write_exp_elt_opcode (pstate, OP_STRING); write_exp_string (pstate, (yyvsp[0].sval)); write_exp_elt_opcode (pstate, OP_STRING); } #line 1859 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 55: #line 459 "f-exp.y" /* yacc.c:1646 */ { struct block_symbol sym = (yyvsp[0].ssym).sym; if (sym.symbol) { if (symbol_read_needs_frame (sym.symbol)) innermost_block.update (sym); write_exp_elt_opcode (pstate, OP_VAR_VALUE); write_exp_elt_block (pstate, sym.block); write_exp_elt_sym (pstate, sym.symbol); write_exp_elt_opcode (pstate, OP_VAR_VALUE); break; } else { struct bound_minimal_symbol msymbol; char *arg = copy_name ((yyvsp[0].ssym).stoken); msymbol = lookup_bound_minimal_symbol (arg); if (msymbol.minsym != NULL) write_exp_msymbol (pstate, msymbol); else if (!have_full_symbols () && !have_partial_symbols ()) error (_("No symbol table is loaded. Use the \"file\" command.")); else error (_("No symbol \"%s\" in current context."), copy_name ((yyvsp[0].ssym).stoken)); } } #line 1892 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 58: #line 495 "f-exp.y" /* yacc.c:1646 */ { /* This is where the interesting stuff happens. */ int done = 0; int array_size; struct type *follow_type = (yyvsp[-1].tval); struct type *range_type; while (!done) switch (pop_type ()) { case tp_end: done = 1; break; case tp_pointer: follow_type = lookup_pointer_type (follow_type); break; case tp_reference: follow_type = lookup_lvalue_reference_type (follow_type); break; case tp_array: array_size = pop_type_int (); if (array_size != -1) { range_type = create_static_range_type ((struct type *) NULL, parse_f_type (pstate) ->builtin_integer, 0, array_size - 1); follow_type = create_array_type ((struct type *) NULL, follow_type, range_type); } else follow_type = lookup_pointer_type (follow_type); break; case tp_function: follow_type = lookup_function_type (follow_type); break; } (yyval.tval) = follow_type; } #line 1938 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 59: #line 539 "f-exp.y" /* yacc.c:1646 */ { push_type (tp_pointer); (yyval.voidval) = 0; } #line 1944 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 60: #line 541 "f-exp.y" /* yacc.c:1646 */ { push_type (tp_pointer); (yyval.voidval) = (yyvsp[0].voidval); } #line 1950 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 61: #line 543 "f-exp.y" /* yacc.c:1646 */ { push_type (tp_reference); (yyval.voidval) = 0; } #line 1956 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 62: #line 545 "f-exp.y" /* yacc.c:1646 */ { push_type (tp_reference); (yyval.voidval) = (yyvsp[0].voidval); } #line 1962 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 64: #line 550 "f-exp.y" /* yacc.c:1646 */ { (yyval.voidval) = (yyvsp[-1].voidval); } #line 1968 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 65: #line 552 "f-exp.y" /* yacc.c:1646 */ { push_type (tp_function); } #line 1974 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 66: #line 554 "f-exp.y" /* yacc.c:1646 */ { push_type (tp_function); } #line 1980 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 67: #line 558 "f-exp.y" /* yacc.c:1646 */ { (yyval.voidval) = 0; } #line 1986 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 68: #line 560 "f-exp.y" /* yacc.c:1646 */ { xfree ((yyvsp[-1].tvec)); (yyval.voidval) = 0; } #line 1992 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 69: #line 565 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = (yyvsp[0].tsym).type; } #line 1998 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 70: #line 567 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_integer; } #line 2004 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 71: #line 569 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_integer_s2; } #line 2010 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 72: #line 571 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_character; } #line 2016 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 73: #line 573 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_logical_s8; } #line 2022 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 74: #line 575 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_logical; } #line 2028 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 75: #line 577 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_logical_s2; } #line 2034 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 76: #line 579 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_logical_s1; } #line 2040 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 77: #line 581 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_real; } #line 2046 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 78: #line 583 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_real_s8; } #line 2052 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 79: #line 585 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_real_s16; } #line 2058 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 80: #line 587 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_complex_s8; } #line 2064 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 81: #line 589 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_complex_s16; } #line 2070 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 82: #line 591 "f-exp.y" /* yacc.c:1646 */ { (yyval.tval) = parse_f_type (pstate)->builtin_complex_s32; } #line 2076 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 83: #line 596 "f-exp.y" /* yacc.c:1646 */ { (yyval.tvec) = (struct type **) xmalloc (sizeof (struct type *) * 2); (yyval.ivec)[0] = 1; /* Number of types in vector */ (yyval.tvec)[1] = (yyvsp[0].tval); } #line 2085 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 84: #line 601 "f-exp.y" /* yacc.c:1646 */ { int len = sizeof (struct type *) * (++((yyvsp[-2].ivec)[0]) + 1); (yyval.tvec) = (struct type **) xrealloc ((char *) (yyvsp[-2].tvec), len); (yyval.tvec)[(yyval.ivec)[0]] = (yyvsp[0].tval); } #line 2094 "f-exp.c.tmp" /* yacc.c:1646 */ break; case 85: #line 608 "f-exp.y" /* yacc.c:1646 */ { (yyval.sval) = (yyvsp[0].ssym).stoken; } #line 2100 "f-exp.c.tmp" /* yacc.c:1646 */ break; #line 2104 "f-exp.c.tmp" /* yacc.c:1646 */ default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined yyoverflow || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif return yyresult; } #line 621 "f-exp.y" /* yacc.c:1906 */ /* Take care of parsing a number (anything that starts with a digit). Set yylval and return the token type; update lexptr. LEN is the number of characters in it. */ /*** Needs some error checking for the float case ***/ static int parse_number (struct parser_state *par_state, const char *p, int len, int parsed_float, YYSTYPE *putithere) { LONGEST n = 0; LONGEST prevn = 0; int c; int base = input_radix; int unsigned_p = 0; int long_p = 0; ULONGEST high_bit; struct type *signed_type; struct type *unsigned_type; if (parsed_float) { /* It's a float since it contains a point or an exponent. */ /* [dD] is not understood as an exponent by parse_float, change it to 'e'. */ char *tmp, *tmp2; tmp = xstrdup (p); for (tmp2 = tmp; *tmp2; ++tmp2) if (*tmp2 == 'd' || *tmp2 == 'D') *tmp2 = 'e'; /* FIXME: Should this use different types? */ putithere->typed_val_float.type = parse_f_type (pstate)->builtin_real_s8; bool parsed = parse_float (tmp, len, putithere->typed_val_float.type, putithere->typed_val_float.val); xfree (tmp); return parsed? FLOAT : ERROR; } /* Handle base-switching prefixes 0x, 0t, 0d, 0 */ if (p[0] == '0') switch (p[1]) { case 'x': case 'X': if (len >= 3) { p += 2; base = 16; len -= 2; } break; case 't': case 'T': case 'd': case 'D': if (len >= 3) { p += 2; base = 10; len -= 2; } break; default: base = 8; break; } while (len-- > 0) { c = *p++; if (isupper (c)) c = tolower (c); if (len == 0 && c == 'l') long_p = 1; else if (len == 0 && c == 'u') unsigned_p = 1; else { int i; if (c >= '0' && c <= '9') i = c - '0'; else if (c >= 'a' && c <= 'f') i = c - 'a' + 10; else return ERROR; /* Char not a digit */ if (i >= base) return ERROR; /* Invalid digit in this base */ n *= base; n += i; } /* Portably test for overflow (only works for nonzero values, so make a second check for zero). */ if ((prevn >= n) && n != 0) unsigned_p=1; /* Try something unsigned */ /* If range checking enabled, portably test for unsigned overflow. */ if (RANGE_CHECK && n != 0) { if ((unsigned_p && (unsigned)prevn >= (unsigned)n)) range_error (_("Overflow on numeric constant.")); } prevn = n; } /* If the number is too big to be an int, or it's got an l suffix then it's a long. Work out if this has to be a long by shifting right and seeing if anything remains, and the target int size is different to the target long size. In the expression below, we could have tested (n >> gdbarch_int_bit (parse_gdbarch)) to see if it was zero, but too many compilers warn about that, when ints and longs are the same size. So we shift it twice, with fewer bits each time, for the same result. */ if ((gdbarch_int_bit (parse_gdbarch (par_state)) != gdbarch_long_bit (parse_gdbarch (par_state)) && ((n >> 2) >> (gdbarch_int_bit (parse_gdbarch (par_state))-2))) /* Avoid shift warning */ || long_p) { high_bit = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch (par_state))-1); unsigned_type = parse_type (par_state)->builtin_unsigned_long; signed_type = parse_type (par_state)->builtin_long; } else { high_bit = ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch (par_state)) - 1); unsigned_type = parse_type (par_state)->builtin_unsigned_int; signed_type = parse_type (par_state)->builtin_int; } putithere->typed_val.val = n; /* If the high bit of the worked out type is set then this number has to be unsigned. */ if (unsigned_p || (n & high_bit)) putithere->typed_val.type = unsigned_type; else putithere->typed_val.type = signed_type; return INT; } struct token { const char *oper; int token; enum exp_opcode opcode; }; static const struct token dot_ops[] = { { ".and.", BOOL_AND, BINOP_END }, { ".AND.", BOOL_AND, BINOP_END }, { ".or.", BOOL_OR, BINOP_END }, { ".OR.", BOOL_OR, BINOP_END }, { ".not.", BOOL_NOT, BINOP_END }, { ".NOT.", BOOL_NOT, BINOP_END }, { ".eq.", EQUAL, BINOP_END }, { ".EQ.", EQUAL, BINOP_END }, { ".eqv.", EQUAL, BINOP_END }, { ".NEQV.", NOTEQUAL, BINOP_END }, { ".neqv.", NOTEQUAL, BINOP_END }, { ".EQV.", EQUAL, BINOP_END }, { ".ne.", NOTEQUAL, BINOP_END }, { ".NE.", NOTEQUAL, BINOP_END }, { ".le.", LEQ, BINOP_END }, { ".LE.", LEQ, BINOP_END }, { ".ge.", GEQ, BINOP_END }, { ".GE.", GEQ, BINOP_END }, { ".gt.", GREATERTHAN, BINOP_END }, { ".GT.", GREATERTHAN, BINOP_END }, { ".lt.", LESSTHAN, BINOP_END }, { ".LT.", LESSTHAN, BINOP_END }, { NULL, 0, BINOP_END } }; struct f77_boolean_val { const char *name; int value; }; static const struct f77_boolean_val boolean_values[] = { { ".true.", 1 }, { ".TRUE.", 1 }, { ".false.", 0 }, { ".FALSE.", 0 }, { NULL, 0 } }; static const struct token f77_keywords[] = { { "complex_16", COMPLEX_S16_KEYWORD, BINOP_END }, { "complex_32", COMPLEX_S32_KEYWORD, BINOP_END }, { "character", CHARACTER, BINOP_END }, { "integer_2", INT_S2_KEYWORD, BINOP_END }, { "logical_1", LOGICAL_S1_KEYWORD, BINOP_END }, { "logical_2", LOGICAL_S2_KEYWORD, BINOP_END }, { "logical_8", LOGICAL_S8_KEYWORD, BINOP_END }, { "complex_8", COMPLEX_S8_KEYWORD, BINOP_END }, { "integer", INT_KEYWORD, BINOP_END }, { "logical", LOGICAL_KEYWORD, BINOP_END }, { "real_16", REAL_S16_KEYWORD, BINOP_END }, { "complex", COMPLEX_S8_KEYWORD, BINOP_END }, { "sizeof", SIZEOF, BINOP_END }, { "real_8", REAL_S8_KEYWORD, BINOP_END }, { "real", REAL_KEYWORD, BINOP_END }, { NULL, 0, BINOP_END } }; /* Implementation of a dynamically expandable buffer for processing input characters acquired through lexptr and building a value to return in yylval. Ripped off from ch-exp.y */ static char *tempbuf; /* Current buffer contents */ static int tempbufsize; /* Size of allocated buffer */ static int tempbufindex; /* Current index into buffer */ #define GROWBY_MIN_SIZE 64 /* Minimum amount to grow buffer by */ #define CHECKBUF(size) \ do { \ if (tempbufindex + (size) >= tempbufsize) \ { \ growbuf_by_size (size); \ } \ } while (0); /* Grow the static temp buffer if necessary, including allocating the first one on demand. */ static void growbuf_by_size (int count) { int growby; growby = std::max (count, GROWBY_MIN_SIZE); tempbufsize += growby; if (tempbuf == NULL) tempbuf = (char *) xmalloc (tempbufsize); else tempbuf = (char *) xrealloc (tempbuf, tempbufsize); } /* Blatantly ripped off from ch-exp.y. This routine recognizes F77 string-literals. Recognize a string literal. A string literal is a nonzero sequence of characters enclosed in matching single quotes, except that a single character inside single quotes is a character literal, which we reject as a string literal. To embed the terminator character inside a string, it is simply doubled (I.E. 'this''is''one''string') */ static int match_string_literal (void) { const char *tokptr = lexptr; for (tempbufindex = 0, tokptr++; *tokptr != '\0'; tokptr++) { CHECKBUF (1); if (*tokptr == *lexptr) { if (*(tokptr + 1) == *lexptr) tokptr++; else break; } tempbuf[tempbufindex++] = *tokptr; } if (*tokptr == '\0' /* no terminator */ || tempbufindex == 0) /* no string */ return 0; else { tempbuf[tempbufindex] = '\0'; yylval.sval.ptr = tempbuf; yylval.sval.length = tempbufindex; lexptr = ++tokptr; return STRING_LITERAL; } } /* Read one token, getting characters through lexptr. */ static int yylex (void) { int c; int namelen; unsigned int token; const char *tokstart; retry: prev_lexptr = lexptr; tokstart = lexptr; /* First of all, let us make sure we are not dealing with the special tokens .true. and .false. which evaluate to 1 and 0. */ if (*lexptr == '.') { for (int i = 0; boolean_values[i].name != NULL; i++) { if (strncmp (tokstart, boolean_values[i].name, strlen (boolean_values[i].name)) == 0) { lexptr += strlen (boolean_values[i].name); yylval.lval = boolean_values[i].value; return BOOLEAN_LITERAL; } } } /* See if it is a special .foo. operator. */ for (int i = 0; dot_ops[i].oper != NULL; i++) if (strncmp (tokstart, dot_ops[i].oper, strlen (dot_ops[i].oper)) == 0) { lexptr += strlen (dot_ops[i].oper); yylval.opcode = dot_ops[i].opcode; return dot_ops[i].token; } /* See if it is an exponentiation operator. */ if (strncmp (tokstart, "**", 2) == 0) { lexptr += 2; yylval.opcode = BINOP_EXP; return STARSTAR; } switch (c = *tokstart) { case 0: return 0; case ' ': case '\t': case '\n': lexptr++; goto retry; case '\'': token = match_string_literal (); if (token != 0) return (token); break; case '(': paren_depth++; lexptr++; return c; case ')': if (paren_depth == 0) return 0; paren_depth--; lexptr++; return c; case ',': if (comma_terminates && paren_depth == 0) return 0; lexptr++; return c; case '.': /* Might be a floating point number. */ if (lexptr[1] < '0' || lexptr[1] > '9') goto symbol; /* Nope, must be a symbol. */ /* FALL THRU. */ case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { /* It's a number. */ int got_dot = 0, got_e = 0, got_d = 0, toktype; const char *p = tokstart; int hex = input_radix > 10; if (c == '0' && (p[1] == 'x' || p[1] == 'X')) { p += 2; hex = 1; } else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D')) { p += 2; hex = 0; } for (;; ++p) { if (!hex && !got_e && (*p == 'e' || *p == 'E')) got_dot = got_e = 1; else if (!hex && !got_d && (*p == 'd' || *p == 'D')) got_dot = got_d = 1; else if (!hex && !got_dot && *p == '.') got_dot = 1; else if (((got_e && (p[-1] == 'e' || p[-1] == 'E')) || (got_d && (p[-1] == 'd' || p[-1] == 'D'))) && (*p == '-' || *p == '+')) /* This is the sign of the exponent, not the end of the number. */ continue; /* We will take any letters or digits. parse_number will complain if past the radix, or if L or U are not final. */ else if ((*p < '0' || *p > '9') && ((*p < 'a' || *p > 'z') && (*p < 'A' || *p > 'Z'))) break; } toktype = parse_number (pstate, tokstart, p - tokstart, got_dot|got_e|got_d, &yylval); if (toktype == ERROR) { char *err_copy = (char *) alloca (p - tokstart + 1); memcpy (err_copy, tokstart, p - tokstart); err_copy[p - tokstart] = 0; error (_("Invalid number \"%s\"."), err_copy); } lexptr = p; return toktype; } case '+': case '-': case '*': case '/': case '%': case '|': case '&': case '^': case '~': case '!': case '@': case '<': case '>': case '[': case ']': case '?': case ':': case '=': case '{': case '}': symbol: lexptr++; return c; } if (!(c == '_' || c == '$' || c ==':' || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))) /* We must have come across a bad character (e.g. ';'). */ error (_("Invalid character '%c' in expression."), c); namelen = 0; for (c = tokstart[namelen]; (c == '_' || c == '$' || c == ':' || (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')); c = tokstart[++namelen]); /* The token "if" terminates the expression and is NOT removed from the input stream. */ if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f') return 0; lexptr += namelen; /* Catch specific keywords. */ for (int i = 0; f77_keywords[i].oper != NULL; i++) if (strlen (f77_keywords[i].oper) == namelen && strncmp (tokstart, f77_keywords[i].oper, namelen) == 0) { /* lexptr += strlen(f77_keywords[i].operator); */ yylval.opcode = f77_keywords[i].opcode; return f77_keywords[i].token; } yylval.sval.ptr = tokstart; yylval.sval.length = namelen; if (*tokstart == '$') { write_dollar_variable (pstate, yylval.sval); return DOLLAR_VARIABLE; } /* Use token-type TYPENAME for symbols that happen to be defined currently as names of types; NAME for other symbols. The caller is not constrained to care about the distinction. */ { char *tmp = copy_name (yylval.sval); struct block_symbol result; struct field_of_this_result is_a_field_of_this; enum domain_enum_tag lookup_domains[] = { STRUCT_DOMAIN, VAR_DOMAIN, MODULE_DOMAIN }; int hextype; for (int i = 0; i < ARRAY_SIZE (lookup_domains); ++i) { /* Initialize this in case we *don't* use it in this call; that way we can refer to it unconditionally below. */ memset (&is_a_field_of_this, 0, sizeof (is_a_field_of_this)); result = lookup_symbol (tmp, expression_context_block, lookup_domains[i], parse_language (pstate)->la_language == language_cplus ? &is_a_field_of_this : NULL); if (result.symbol && SYMBOL_CLASS (result.symbol) == LOC_TYPEDEF) { yylval.tsym.type = SYMBOL_TYPE (result.symbol); return TYPENAME; } if (result.symbol) break; } yylval.tsym.type = language_lookup_primitive_type (parse_language (pstate), parse_gdbarch (pstate), tmp); if (yylval.tsym.type != NULL) return TYPENAME; /* Input names that aren't symbols but ARE valid hex numbers, when the input radix permits them, can be names or numbers depending on the parse. Note we support radixes > 16 here. */ if (!result.symbol && ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) || (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10))) { YYSTYPE newlval; /* Its value is ignored. */ hextype = parse_number (pstate, tokstart, namelen, 0, &newlval); if (hextype == INT) { yylval.ssym.sym = result; yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL; return NAME_OR_INT; } } /* Any other kind of symbol */ yylval.ssym.sym = result; yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL; return NAME; } } int f_parse (struct parser_state *par_state) { /* Setting up the parser state. */ scoped_restore pstate_restore = make_scoped_restore (&pstate); gdb_assert (par_state != NULL); pstate = par_state; return yyparse (); } static void yyerror (const char *msg) { if (prev_lexptr) lexptr = prev_lexptr; error (_("A %s in expression, near `%s'."), msg, lexptr); }