You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2855 lines
101 KiB
2855 lines
101 KiB
/* 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 <http://www.gnu.org/licenses/>. */
|
|
|
|
/* 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 2
|
|
|
|
/* Push parsers. */
|
|
#define YYPUSH 0
|
|
|
|
/* Pull parsers. */
|
|
#define YYPULL 1
|
|
|
|
|
|
|
|
|
|
/* Copy the first part of user declarations. */
|
|
#line 1 "parser.y" /* yacc.c:339 */
|
|
|
|
#include "sol.h"
|
|
#include "ast.h"
|
|
|
|
#include <string.h>
|
|
|
|
#define YYSTYPE void *
|
|
|
|
|
|
#line 76 "parser.tab.c" /* yacc.c:339 */
|
|
|
|
# ifndef YY_NULLPTR
|
|
# if defined __cplusplus && 201103L <= __cplusplus
|
|
# define YY_NULLPTR nullptr
|
|
# else
|
|
# define YY_NULLPTR 0
|
|
# endif
|
|
# endif
|
|
|
|
/* Enabling verbose error messages. */
|
|
#ifdef YYERROR_VERBOSE
|
|
# undef YYERROR_VERBOSE
|
|
# define YYERROR_VERBOSE 1
|
|
#else
|
|
# define YYERROR_VERBOSE 0
|
|
#endif
|
|
|
|
/* In a future release of Bison, this section will be replaced
|
|
by #include "parser.tab.h". */
|
|
#ifndef YY_YY_PARSER_TAB_H_INCLUDED
|
|
# define YY_YY_PARSER_TAB_H_INCLUDED
|
|
/* Debug traces. */
|
|
#ifndef YYDEBUG
|
|
# define YYDEBUG 1
|
|
#endif
|
|
#if YYDEBUG
|
|
extern int yydebug;
|
|
#endif
|
|
|
|
/* Token type. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
enum yytokentype
|
|
{
|
|
IF = 258,
|
|
THEN = 259,
|
|
ELSE = 260,
|
|
WHILE = 261,
|
|
FOR = 262,
|
|
IN = 263,
|
|
DO = 264,
|
|
FUNC = 265,
|
|
LAMBDA = 266,
|
|
RETURN = 267,
|
|
BREAK = 268,
|
|
CONTINUE = 269,
|
|
END = 270,
|
|
NONE = 271,
|
|
IDENT = 272,
|
|
INT = 273,
|
|
FLOAT = 274,
|
|
STRING = 275,
|
|
PLUS = 276,
|
|
MINUS = 277,
|
|
STAR = 278,
|
|
SLASH = 279,
|
|
PERCENT = 280,
|
|
DSTAR = 281,
|
|
BAND = 282,
|
|
BOR = 283,
|
|
BXOR = 284,
|
|
BNOT = 285,
|
|
LAND = 286,
|
|
LOR = 287,
|
|
LNOT = 288,
|
|
ASSIGN = 289,
|
|
ASSIGNPLUS = 290,
|
|
ASSIGNMINUS = 291,
|
|
ASSIGNSTAR = 292,
|
|
ASSIGNSLASH = 293,
|
|
ASSIGNDSTAR = 294,
|
|
ASSIGNBAND = 295,
|
|
ASSIGNBOR = 296,
|
|
ASSIGNBXOR = 297,
|
|
EQUAL = 298,
|
|
NEQUAL = 299,
|
|
LESS = 300,
|
|
GREATER = 301,
|
|
LESSEQ = 302,
|
|
GREATEREQ = 303,
|
|
RSHIFT = 304,
|
|
LSHIFT = 305,
|
|
LBRACE = 306,
|
|
RBRACE = 307,
|
|
LPAREN = 308,
|
|
RPAREN = 309,
|
|
LBRACKET = 310,
|
|
RBRACKET = 311,
|
|
DOT = 312,
|
|
COLON = 313,
|
|
SEMICOLON = 314,
|
|
COMMA = 315,
|
|
POUND = 316,
|
|
TBANG = 317
|
|
};
|
|
#endif
|
|
|
|
/* Value type. */
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef int YYSTYPE;
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
/* Location type. */
|
|
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
|
typedef struct YYLTYPE YYLTYPE;
|
|
struct YYLTYPE
|
|
{
|
|
int first_line;
|
|
int first_column;
|
|
int last_line;
|
|
int last_column;
|
|
};
|
|
# define YYLTYPE_IS_DECLARED 1
|
|
# define YYLTYPE_IS_TRIVIAL 1
|
|
#endif
|
|
|
|
|
|
|
|
int yyparse (stmt_node **program);
|
|
|
|
#endif /* !YY_YY_PARSER_TAB_H_INCLUDED */
|
|
|
|
/* Copy the second part of user declarations. */
|
|
|
|
#line 203 "parser.tab.c" /* 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 <stddef.h> /* 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 <libintl.h> /* 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 malloc; 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 <alloca.h> /* INFRINGES ON USER NAME SPACE */
|
|
# elif defined _AIX
|
|
# define YYSTACK_ALLOC __alloca
|
|
# elif defined _MSC_VER
|
|
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
|
|
# define alloca _alloca
|
|
# else
|
|
# define YYSTACK_ALLOC alloca
|
|
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
|
|
# include <stdlib.h> /* 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 malloc) \
|
|
&& (defined YYFREE || defined free)))
|
|
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
|
# ifndef EXIT_SUCCESS
|
|
# define EXIT_SUCCESS 0
|
|
# endif
|
|
# endif
|
|
# ifndef YYMALLOC
|
|
# define YYMALLOC malloc
|
|
# if ! defined malloc && ! defined EXIT_SUCCESS
|
|
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
|
|
# endif
|
|
# endif
|
|
# ifndef YYFREE
|
|
# define YYFREE free
|
|
# if ! defined free && ! defined EXIT_SUCCESS
|
|
void free (void *); /* INFRINGES ON USER NAME SPACE */
|
|
# endif
|
|
# endif
|
|
# endif
|
|
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
|
|
|
|
|
|
#if (! defined yyoverflow \
|
|
&& (! defined __cplusplus \
|
|
|| (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
|
|
&& 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;
|
|
YYLTYPE yyls_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) + sizeof (YYLTYPE)) \
|
|
+ 2 * 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 3
|
|
/* YYLAST -- Last index in YYTABLE. */
|
|
#define YYLAST 926
|
|
|
|
/* YYNTOKENS -- Number of terminals. */
|
|
#define YYNTOKENS 63
|
|
/* YYNNTS -- Number of nonterminals. */
|
|
#define YYNNTS 29
|
|
/* YYNRULES -- Number of rules. */
|
|
#define YYNRULES 108
|
|
/* YYNSTATES -- Number of states. */
|
|
#define YYNSTATES 200
|
|
|
|
/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
|
|
by yylex, with out-of-bounds checking. */
|
|
#define YYUNDEFTOK 2
|
|
#define YYMAXUTOK 317
|
|
|
|
#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, 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, 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, 30, 31, 32, 33, 34,
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
|
55, 56, 57, 58, 59, 60, 61, 62
|
|
};
|
|
|
|
#if YYDEBUG
|
|
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
|
|
static const yytype_uint16 yyrline[] =
|
|
{
|
|
0, 34, 34, 38, 49, 59, 60, 61, 62, 63,
|
|
64, 65, 66, 70, 74, 82, 90, 97, 105, 109,
|
|
110, 117, 124, 131, 138, 145, 152, 159, 166, 179,
|
|
192, 205, 218, 231, 244, 257, 270, 283, 287, 288,
|
|
289, 293, 294, 298, 299, 300, 301, 302, 303, 304,
|
|
308, 309, 310, 314, 315, 316, 317, 321, 322, 326,
|
|
327, 332, 333, 334, 335, 336, 337, 341, 342, 346,
|
|
347, 351, 352, 369, 373, 381, 389, 400, 404, 405,
|
|
416, 420, 421, 435, 436, 440, 441, 442, 443, 444,
|
|
445, 449, 450, 451, 455, 459, 460, 465, 466, 478,
|
|
479, 484, 485, 497, 498, 503, 504, 516, 521
|
|
};
|
|
#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", "IF", "THEN", "ELSE", "WHILE", "FOR",
|
|
"IN", "DO", "FUNC", "LAMBDA", "RETURN", "BREAK", "CONTINUE", "END",
|
|
"NONE", "IDENT", "INT", "FLOAT", "STRING", "PLUS", "MINUS", "STAR",
|
|
"SLASH", "PERCENT", "DSTAR", "BAND", "BOR", "BXOR", "BNOT", "LAND",
|
|
"LOR", "LNOT", "ASSIGN", "ASSIGNPLUS", "ASSIGNMINUS", "ASSIGNSTAR",
|
|
"ASSIGNSLASH", "ASSIGNDSTAR", "ASSIGNBAND", "ASSIGNBOR", "ASSIGNBXOR",
|
|
"EQUAL", "NEQUAL", "LESS", "GREATER", "LESSEQ", "GREATEREQ", "RSHIFT",
|
|
"LSHIFT", "LBRACE", "RBRACE", "LPAREN", "RPAREN", "LBRACKET", "RBRACKET",
|
|
"DOT", "COLON", "SEMICOLON", "COMMA", "POUND", "TBANG", "$accept",
|
|
"program", "stmt_list", "stmt", "expr", "control_expr", "assign_expr",
|
|
"logic_expr", "ulogic_expr", "rel_expr", "term_expr", "factor_expr",
|
|
"power_expr", "tbang_expr", "binary_expr", "ubinary_expr", "ulen_expr",
|
|
"call_expr", "funcdecl_expr", "index_expr", "ex_index_expr", "ref_expr",
|
|
"lit_expr", "gen_expr", "paren_expr", "expr_list", "ident_list",
|
|
"assoc_list", "assoc_item", YY_NULLPTR
|
|
};
|
|
#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,
|
|
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
|
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
|
|
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
|
315, 316, 317
|
|
};
|
|
# endif
|
|
|
|
#define YYPACT_NINF -106
|
|
|
|
#define yypact_value_is_default(Yystate) \
|
|
(!!((Yystate) == (-106)))
|
|
|
|
#define YYTABLE_NINF -83
|
|
|
|
#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[] =
|
|
{
|
|
-106, 16, 453, -106, 674, 674, 15, 20, -14, 674,
|
|
674, 674, -106, -11, -106, -106, -106, 28, 674, 674,
|
|
-5, 674, 674, 674, 27, 41, -106, -106, 46, -106,
|
|
-106, 190, 98, -106, 48, 120, -106, -106, -40, -106,
|
|
-106, 78, -106, -106, -106, -106, 7, 8, 82, 40,
|
|
91, 91, 41, 41, 41, 674, 674, 674, 674, 674,
|
|
674, 674, 674, 674, -106, 41, 715, -17, 94, 674,
|
|
32, -106, -21, 41, 506, 757, -106, 674, 115, 674,
|
|
674, 674, 674, 674, 674, 674, 674, 674, 674, 674,
|
|
674, 674, 674, 674, 674, 674, 674, 674, 674, 674,
|
|
116, 674, 674, 674, 674, 674, 674, 674, 674, 674,
|
|
-106, -106, 674, 91, -106, 31, 34, 41, 41, 41,
|
|
41, 41, 41, 41, 41, 41, 674, 95, -106, -106,
|
|
-106, -106, -106, -106, 41, 158, 189, -106, -106, 98,
|
|
98, -10, -10, -10, -10, -10, -10, -106, -106, -106,
|
|
869, 799, 799, 799, 799, 799, 841, 562, 92, 41,
|
|
41, 41, 41, 41, 41, 41, 41, 41, 124, 188,
|
|
26, 35, -106, -106, -106, 674, 41, 119, 242, -106,
|
|
674, -106, -106, -106, -106, -106, 241, 54, 674, 618,
|
|
294, 347, 400, -106, -106, 41, -106, -106, -106, -106
|
|
};
|
|
|
|
/* 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[] =
|
|
{
|
|
4, 0, 2, 1, 0, 0, 0, 0, 0, 7,
|
|
8, 10, 89, 83, 85, 87, 88, 0, 0, 0,
|
|
103, 0, 95, 0, 3, 5, 13, 18, 37, 40,
|
|
42, 49, 52, 56, 58, 60, 66, 68, 70, 73,
|
|
77, 0, 80, 84, 90, 93, 0, 0, 0, 0,
|
|
99, 99, 6, 9, 11, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 86, 0, 67, 41, 0, 0,
|
|
0, 104, 0, 96, 0, 69, 12, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 95,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
4, 4, 0, 99, 100, 0, 0, 19, 20, 21,
|
|
22, 23, 24, 25, 26, 27, 0, 0, 92, 105,
|
|
106, 94, 91, 97, 98, 0, 79, 38, 39, 50,
|
|
51, 43, 44, 45, 46, 47, 48, 53, 54, 55,
|
|
57, 61, 62, 63, 65, 64, 59, 0, 0, 28,
|
|
29, 30, 31, 32, 33, 34, 35, 36, 0, 0,
|
|
0, 0, 102, 4, 101, 0, 108, 0, 78, 71,
|
|
95, 4, 14, 16, 4, 4, 0, 0, 0, 0,
|
|
0, 0, 0, 75, 76, 107, 72, 15, 17, 74
|
|
};
|
|
|
|
/* YYPGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yypgoto[] =
|
|
{
|
|
-106, -106, -105, -106, -2, -106, -106, -106, -9, 75,
|
|
-106, 44, -48, 58, 171, 146, 142, -106, -106, -106,
|
|
-106, -106, -106, -106, -106, -98, -47, -106, 101
|
|
};
|
|
|
|
/* YYDEFGOTO[NTERM-NUM]. */
|
|
static const yytype_int8 yydefgoto[] =
|
|
{
|
|
-1, 1, 2, 24, 65, 26, 27, 28, 29, 30,
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
41, 42, 43, 44, 45, 74, 115, 70, 71
|
|
};
|
|
|
|
/* 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_int16 yytable[] =
|
|
{
|
|
25, 157, 46, 47, 116, 168, 169, 52, 53, 54,
|
|
67, 110, 68, 99, -40, -40, 3, 111, 100, 72,
|
|
73, -42, -42, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 48, 131, 77, 184, 78, 49, -40, 51,
|
|
-40, 147, 148, 149, 150, -42, 64, -42, 172, 68,
|
|
69, 172, 172, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 77, 77, 78, 78, 171, 127, 186, 194,
|
|
137, 138, 134, 50, 92, 135, 190, 79, 80, 191,
|
|
192, 77, 189, 78, 128, 173, 76, 69, 175, 185,
|
|
112, 174, 129, 113, 174, 174, 77, 73, 78, 159,
|
|
160, 161, 162, 163, 164, 165, 166, 167, 114, 77,
|
|
170, 78, 101, 102, 103, 104, 105, 106, 107, 108,
|
|
109, 89, 90, 91, 176, 139, 140, 4, 126, 181,
|
|
5, 6, 136, 158, 7, 8, 9, 10, 11, 182,
|
|
12, 13, 14, 15, 16, 180, 17, 93, 94, 95,
|
|
77, 177, 78, 188, 18, 134, 156, 19, 141, 142,
|
|
143, 144, 145, 146, 66, 75, 25, 25, 0, 96,
|
|
97, 130, 0, 187, 0, 20, 0, 21, 73, 22,
|
|
0, 0, 98, 0, 25, 23, 195, 134, 25, 25,
|
|
25, 4, 0, 0, 5, 6, 0, 0, 7, 8,
|
|
9, 10, 11, 183, 12, 13, 14, 15, 16, 0,
|
|
17, 81, 82, 77, 178, 78, 0, 0, 18, 0,
|
|
0, 19, 0, -82, -82, -82, -82, -82, -82, -82,
|
|
-82, -82, 0, 83, 84, 85, 86, 87, 88, 20,
|
|
0, 21, 0, 22, 4, 0, 0, 5, 6, 23,
|
|
0, 7, 8, 9, 10, 11, 193, 12, 13, 14,
|
|
15, 16, 0, 17, 151, 152, 153, 154, 155, 0,
|
|
0, 18, 0, 0, 19, 0, -81, -81, -81, -81,
|
|
-81, -81, -81, -81, -81, 0, 0, 0, 0, 0,
|
|
0, 0, 20, 0, 21, 0, 22, 4, 0, 0,
|
|
5, 6, 23, 0, 7, 8, 9, 10, 11, 197,
|
|
12, 13, 14, 15, 16, 0, 17, 0, 0, 0,
|
|
0, 0, 0, 0, 18, 0, 0, 19, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 20, 0, 21, 0, 22,
|
|
4, 0, 0, 5, 6, 23, 0, 7, 8, 9,
|
|
10, 11, 198, 12, 13, 14, 15, 16, 0, 17,
|
|
0, 0, 0, 0, 0, 0, 0, 18, 0, 0,
|
|
19, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 20, 0,
|
|
21, 0, 22, 4, 0, 0, 5, 6, 23, 0,
|
|
7, 8, 9, 10, 11, 199, 12, 13, 14, 15,
|
|
16, 0, 17, 0, 0, 0, 0, 0, 0, 0,
|
|
18, 0, 0, 19, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 20, 0, 21, 0, 22, 4, 0, 0, 5,
|
|
6, 23, 0, 7, 8, 9, 10, 11, 0, 12,
|
|
13, 14, 15, 16, 0, 17, 0, 0, 0, 0,
|
|
0, 0, 0, 18, 0, 0, 19, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 20, 0, 21, 0, 22, 4,
|
|
0, 0, 5, 6, 23, 0, 7, 8, 0, 0,
|
|
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
|
|
0, 0, 0, 0, 0, 0, 18, 0, 0, 19,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 20, 0, 21,
|
|
0, 22, 132, 0, 0, 4, 133, 23, 5, 6,
|
|
0, 0, 7, 8, 0, 0, 0, 0, 12, 13,
|
|
14, 15, 16, 0, 17, 0, 0, 0, 0, 0,
|
|
0, 0, 18, 0, 0, 19, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 20, 0, 21, 179, 22, 0, 0,
|
|
0, 4, 133, 23, 5, 6, 0, 0, 7, 8,
|
|
0, 0, 0, 0, 12, 13, 14, 15, 16, 0,
|
|
17, 0, 0, 0, 0, 0, 0, 0, 18, 0,
|
|
0, 19, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 20,
|
|
0, 21, 196, 22, 0, 0, 0, 4, 133, 23,
|
|
5, 6, 0, 0, 7, 8, 0, 0, 0, 0,
|
|
12, 13, 14, 15, 16, 0, 17, 0, 0, 0,
|
|
0, 0, 0, 0, 18, 0, 0, 19, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 20, 0, 21, 0, 22,
|
|
0, 0, 0, 0, 0, 23, -66, -66, -66, -66,
|
|
-66, -66, -66, -66, -66, 0, -66, -66, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, -66, -66,
|
|
-66, -66, -66, -66, -66, -66, 0, 0, 0, 0,
|
|
-66, 0, -66, 0, 0, 0, 0, -66, -68, -68,
|
|
-68, -68, -68, -68, -68, -68, -68, 0, -68, -68,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
-68, -68, -68, -68, -68, -68, -68, -68, 0, 0,
|
|
0, 0, -68, 0, -68, 0, 0, 0, 0, -68,
|
|
-60, -60, -60, -60, -60, -60, 93, 94, 95, 0,
|
|
-60, -60, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, -60, -60, -60, -60, -60, -60, 96, 97,
|
|
0, 0, 0, 0, -60, 0, -60, 0, 0, 0,
|
|
0, 98, -58, -58, -58, -58, -58, 92, 0, 0,
|
|
0, 0, -58, -58, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, -58, -58, -58, -58, -58, -58,
|
|
-56, -56, -56, -56, -56, 0, -58, 0, -58, 0,
|
|
-56, -56, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, -56, -56, -56, -56, -56, -56, 0, 0,
|
|
0, 0, 0, 0, -56, 0, -56
|
|
};
|
|
|
|
static const yytype_int16 yycheck[] =
|
|
{
|
|
2, 99, 4, 5, 51, 110, 111, 9, 10, 11,
|
|
19, 4, 17, 53, 31, 32, 0, 9, 58, 21,
|
|
22, 31, 32, 34, 35, 36, 37, 38, 39, 40,
|
|
41, 42, 17, 54, 55, 9, 57, 17, 55, 53,
|
|
57, 89, 90, 91, 92, 55, 18, 57, 17, 17,
|
|
55, 17, 17, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 55, 55, 57, 57, 113, 69, 173, 15,
|
|
79, 80, 74, 53, 26, 77, 181, 31, 32, 184,
|
|
185, 55, 180, 57, 52, 54, 59, 55, 54, 54,
|
|
8, 60, 60, 53, 60, 60, 55, 99, 57, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 17, 55,
|
|
112, 57, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
42, 23, 24, 25, 126, 81, 82, 3, 34, 5,
|
|
6, 7, 17, 17, 10, 11, 12, 13, 14, 15,
|
|
16, 17, 18, 19, 20, 53, 22, 27, 28, 29,
|
|
55, 56, 57, 34, 30, 157, 98, 33, 83, 84,
|
|
85, 86, 87, 88, 18, 23, 168, 169, -1, 49,
|
|
50, 70, -1, 175, -1, 51, -1, 53, 180, 55,
|
|
-1, -1, 62, -1, 186, 61, 188, 189, 190, 191,
|
|
192, 3, -1, -1, 6, 7, -1, -1, 10, 11,
|
|
12, 13, 14, 15, 16, 17, 18, 19, 20, -1,
|
|
22, 21, 22, 55, 56, 57, -1, -1, 30, -1,
|
|
-1, 33, -1, 34, 35, 36, 37, 38, 39, 40,
|
|
41, 42, -1, 43, 44, 45, 46, 47, 48, 51,
|
|
-1, 53, -1, 55, 3, -1, -1, 6, 7, 61,
|
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
19, 20, -1, 22, 93, 94, 95, 96, 97, -1,
|
|
-1, 30, -1, -1, 33, -1, 34, 35, 36, 37,
|
|
38, 39, 40, 41, 42, -1, -1, -1, -1, -1,
|
|
-1, -1, 51, -1, 53, -1, 55, 3, -1, -1,
|
|
6, 7, 61, -1, 10, 11, 12, 13, 14, 15,
|
|
16, 17, 18, 19, 20, -1, 22, -1, -1, -1,
|
|
-1, -1, -1, -1, 30, -1, -1, 33, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 51, -1, 53, -1, 55,
|
|
3, -1, -1, 6, 7, 61, -1, 10, 11, 12,
|
|
13, 14, 15, 16, 17, 18, 19, 20, -1, 22,
|
|
-1, -1, -1, -1, -1, -1, -1, 30, -1, -1,
|
|
33, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 51, -1,
|
|
53, -1, 55, 3, -1, -1, 6, 7, 61, -1,
|
|
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
|
20, -1, 22, -1, -1, -1, -1, -1, -1, -1,
|
|
30, -1, -1, 33, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 51, -1, 53, -1, 55, 3, -1, -1, 6,
|
|
7, 61, -1, 10, 11, 12, 13, 14, -1, 16,
|
|
17, 18, 19, 20, -1, 22, -1, -1, -1, -1,
|
|
-1, -1, -1, 30, -1, -1, 33, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 51, -1, 53, -1, 55, 3,
|
|
-1, -1, 6, 7, 61, -1, 10, 11, -1, -1,
|
|
-1, -1, 16, 17, 18, 19, 20, -1, 22, -1,
|
|
-1, -1, -1, -1, -1, -1, 30, -1, -1, 33,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 51, -1, 53,
|
|
-1, 55, 56, -1, -1, 3, 60, 61, 6, 7,
|
|
-1, -1, 10, 11, -1, -1, -1, -1, 16, 17,
|
|
18, 19, 20, -1, 22, -1, -1, -1, -1, -1,
|
|
-1, -1, 30, -1, -1, 33, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 51, -1, 53, 54, 55, -1, -1,
|
|
-1, 3, 60, 61, 6, 7, -1, -1, 10, 11,
|
|
-1, -1, -1, -1, 16, 17, 18, 19, 20, -1,
|
|
22, -1, -1, -1, -1, -1, -1, -1, 30, -1,
|
|
-1, 33, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 51,
|
|
-1, 53, 54, 55, -1, -1, -1, 3, 60, 61,
|
|
6, 7, -1, -1, 10, 11, -1, -1, -1, -1,
|
|
16, 17, 18, 19, 20, -1, 22, -1, -1, -1,
|
|
-1, -1, -1, -1, 30, -1, -1, 33, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 51, -1, 53, -1, 55,
|
|
-1, -1, -1, -1, -1, 61, 21, 22, 23, 24,
|
|
25, 26, 27, 28, 29, -1, 31, 32, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 43, 44,
|
|
45, 46, 47, 48, 49, 50, -1, -1, -1, -1,
|
|
55, -1, 57, -1, -1, -1, -1, 62, 21, 22,
|
|
23, 24, 25, 26, 27, 28, 29, -1, 31, 32,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
43, 44, 45, 46, 47, 48, 49, 50, -1, -1,
|
|
-1, -1, 55, -1, 57, -1, -1, -1, -1, 62,
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, -1,
|
|
31, 32, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
-1, -1, -1, -1, 55, -1, 57, -1, -1, -1,
|
|
-1, 62, 21, 22, 23, 24, 25, 26, -1, -1,
|
|
-1, -1, 31, 32, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 43, 44, 45, 46, 47, 48,
|
|
21, 22, 23, 24, 25, -1, 55, -1, 57, -1,
|
|
31, 32, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 43, 44, 45, 46, 47, 48, -1, -1,
|
|
-1, -1, -1, -1, 55, -1, 57
|
|
};
|
|
|
|
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
symbol of state STATE-NUM. */
|
|
static const yytype_uint8 yystos[] =
|
|
{
|
|
0, 64, 65, 0, 3, 6, 7, 10, 11, 12,
|
|
13, 14, 16, 17, 18, 19, 20, 22, 30, 33,
|
|
51, 53, 55, 61, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 67, 67, 17, 17,
|
|
53, 53, 67, 67, 67, 34, 35, 36, 37, 38,
|
|
39, 40, 41, 42, 18, 67, 78, 71, 17, 55,
|
|
90, 91, 67, 67, 88, 79, 59, 55, 57, 31,
|
|
32, 21, 22, 43, 44, 45, 46, 47, 48, 23,
|
|
24, 25, 26, 27, 28, 29, 49, 50, 62, 53,
|
|
58, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
|
4, 9, 8, 53, 17, 89, 89, 67, 67, 67,
|
|
67, 67, 67, 67, 67, 67, 34, 67, 52, 60,
|
|
91, 54, 56, 60, 67, 67, 17, 71, 71, 74,
|
|
74, 72, 72, 72, 72, 72, 72, 75, 75, 75,
|
|
75, 77, 77, 77, 77, 77, 76, 88, 17, 67,
|
|
67, 67, 67, 67, 67, 67, 67, 67, 65, 65,
|
|
67, 89, 17, 54, 60, 54, 67, 56, 56, 54,
|
|
53, 5, 15, 15, 9, 54, 65, 67, 34, 88,
|
|
65, 65, 65, 15, 15, 67, 54, 15, 15, 15
|
|
};
|
|
|
|
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
|
static const yytype_uint8 yyr1[] =
|
|
{
|
|
0, 63, 64, 65, 65, 66, 66, 66, 66, 66,
|
|
66, 66, 66, 67, 68, 68, 68, 68, 68, 69,
|
|
69, 69, 69, 69, 69, 69, 69, 69, 69, 69,
|
|
69, 69, 69, 69, 69, 69, 69, 69, 70, 70,
|
|
70, 71, 71, 72, 72, 72, 72, 72, 72, 72,
|
|
73, 73, 73, 74, 74, 74, 74, 75, 75, 76,
|
|
76, 77, 77, 77, 77, 77, 77, 78, 78, 79,
|
|
79, 80, 80, 80, 81, 81, 81, 81, 82, 82,
|
|
82, 83, 83, 84, 84, 85, 85, 85, 85, 85,
|
|
85, 86, 86, 86, 87, 88, 88, 88, 88, 89,
|
|
89, 89, 89, 90, 90, 90, 90, 91, 91
|
|
};
|
|
|
|
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
|
|
static const yytype_uint8 yyr2[] =
|
|
{
|
|
0, 2, 1, 2, 0, 1, 2, 1, 1, 2,
|
|
1, 2, 2, 1, 5, 7, 5, 7, 1, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 1, 3, 3,
|
|
1, 2, 1, 3, 3, 3, 3, 3, 3, 1,
|
|
3, 3, 1, 3, 3, 3, 1, 3, 1, 3,
|
|
1, 3, 3, 3, 3, 3, 1, 2, 1, 2,
|
|
1, 4, 6, 1, 7, 6, 6, 1, 4, 3,
|
|
1, 4, 3, 1, 1, 1, 2, 1, 1, 1,
|
|
1, 3, 3, 1, 3, 0, 1, 2, 2, 0,
|
|
1, 2, 2, 0, 1, 2, 2, 5, 3
|
|
};
|
|
|
|
|
|
#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 (&yylloc, program, YY_("syntax error: cannot back up")); \
|
|
YYERROR; \
|
|
} \
|
|
while (0)
|
|
|
|
/* Error token number */
|
|
#define YYTERROR 1
|
|
#define YYERRCODE 256
|
|
|
|
|
|
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
|
|
If N is 0, then set CURRENT to the empty location which ends
|
|
the previous symbol: RHS[0] (always defined). */
|
|
|
|
#ifndef YYLLOC_DEFAULT
|
|
# define YYLLOC_DEFAULT(Current, Rhs, N) \
|
|
do \
|
|
if (N) \
|
|
{ \
|
|
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
|
|
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
|
|
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
|
|
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
|
|
} \
|
|
else \
|
|
{ \
|
|
(Current).first_line = (Current).last_line = \
|
|
YYRHSLOC (Rhs, 0).last_line; \
|
|
(Current).first_column = (Current).last_column = \
|
|
YYRHSLOC (Rhs, 0).last_column; \
|
|
} \
|
|
while (0)
|
|
#endif
|
|
|
|
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
|
|
|
|
|
|
/* Enable debugging if requested. */
|
|
#if YYDEBUG
|
|
|
|
# ifndef YYFPRINTF
|
|
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
|
|
# define YYFPRINTF fprintf
|
|
# endif
|
|
|
|
# define YYDPRINTF(Args) \
|
|
do { \
|
|
if (yydebug) \
|
|
YYFPRINTF Args; \
|
|
} while (0)
|
|
|
|
|
|
/* YY_LOCATION_PRINT -- Print the location on the stream.
|
|
This macro was not mandated originally: define only if we know
|
|
we won't break user code: when these are the locations we know. */
|
|
|
|
#ifndef YY_LOCATION_PRINT
|
|
# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
|
|
|
|
/* Print *YYLOCP on YYO. Private, do not rely on its existence. */
|
|
|
|
YY_ATTRIBUTE_UNUSED
|
|
static unsigned
|
|
yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp)
|
|
{
|
|
unsigned res = 0;
|
|
int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
|
|
if (0 <= yylocp->first_line)
|
|
{
|
|
res += YYFPRINTF (yyo, "%d", yylocp->first_line);
|
|
if (0 <= yylocp->first_column)
|
|
res += YYFPRINTF (yyo, ".%d", yylocp->first_column);
|
|
}
|
|
if (0 <= yylocp->last_line)
|
|
{
|
|
if (yylocp->first_line < yylocp->last_line)
|
|
{
|
|
res += YYFPRINTF (yyo, "-%d", yylocp->last_line);
|
|
if (0 <= end_col)
|
|
res += YYFPRINTF (yyo, ".%d", end_col);
|
|
}
|
|
else if (0 <= end_col && yylocp->first_column < end_col)
|
|
res += YYFPRINTF (yyo, "-%d", end_col);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
# define YY_LOCATION_PRINT(File, Loc) \
|
|
yy_location_print_ (File, &(Loc))
|
|
|
|
# else
|
|
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
|
|
# endif
|
|
#endif
|
|
|
|
|
|
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
|
|
do { \
|
|
if (yydebug) \
|
|
{ \
|
|
YYFPRINTF (stderr, "%s ", Title); \
|
|
yy_symbol_print (stderr, \
|
|
Type, Value, Location, program); \
|
|
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, YYLTYPE const * const yylocationp, stmt_node **program)
|
|
{
|
|
FILE *yyo = yyoutput;
|
|
YYUSE (yyo);
|
|
YYUSE (yylocationp);
|
|
YYUSE (program);
|
|
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, YYLTYPE const * const yylocationp, stmt_node **program)
|
|
{
|
|
YYFPRINTF (yyoutput, "%s %s (",
|
|
yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
|
|
|
|
YY_LOCATION_PRINT (yyoutput, *yylocationp);
|
|
YYFPRINTF (yyoutput, ": ");
|
|
yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp, program);
|
|
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, YYLTYPE *yylsp, int yyrule, stmt_node **program)
|
|
{
|
|
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)])
|
|
, &(yylsp[(yyi + 1) - (yynrhs)]) , program);
|
|
YYFPRINTF (stderr, "\n");
|
|
}
|
|
}
|
|
|
|
# define YY_REDUCE_PRINT(Rule) \
|
|
do { \
|
|
if (yydebug) \
|
|
yy_reduce_print (yyssp, yyvsp, yylsp, Rule, program); \
|
|
} 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_NULLPTR, yytname[yytoken]);
|
|
YYSIZE_T yysize = yysize0;
|
|
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
|
|
/* Internationalized format string. */
|
|
const char *yyformat = YY_NULLPTR;
|
|
/* 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_NULLPTR, 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, YYLTYPE *yylocationp, stmt_node **program)
|
|
{
|
|
YYUSE (yyvaluep);
|
|
YYUSE (yylocationp);
|
|
YYUSE (program);
|
|
if (!yymsg)
|
|
yymsg = "Deleting";
|
|
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
|
|
|
|
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
|
YYUSE (yytype);
|
|
YY_IGNORE_MAYBE_UNINITIALIZED_END
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------.
|
|
| yyparse. |
|
|
`----------*/
|
|
|
|
int
|
|
yyparse (stmt_node **program)
|
|
{
|
|
/* The lookahead symbol. */
|
|
int yychar;
|
|
|
|
|
|
/* The semantic value of the lookahead symbol. */
|
|
/* Default value used for initialization, for pacifying older GCCs
|
|
or non-GCC compilers. */
|
|
YY_INITIAL_VALUE (static YYSTYPE yyval_default;)
|
|
YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
|
|
|
|
/* Location data for the lookahead symbol. */
|
|
static YYLTYPE yyloc_default
|
|
# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
|
|
= { 1, 1, 1, 1 }
|
|
# endif
|
|
;
|
|
YYLTYPE yylloc = yyloc_default;
|
|
|
|
/* Number of syntax errors so far. */
|
|
int yynerrs;
|
|
|
|
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.
|
|
'yyls': related to locations.
|
|
|
|
Refer to the stacks through separate pointers, to allow yyoverflow
|
|
to reallocate 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;
|
|
|
|
/* The location stack. */
|
|
YYLTYPE yylsa[YYINITDEPTH];
|
|
YYLTYPE *yyls;
|
|
YYLTYPE *yylsp;
|
|
|
|
/* The locations where the error started and ended. */
|
|
YYLTYPE yyerror_range[3];
|
|
|
|
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;
|
|
YYLTYPE yyloc;
|
|
|
|
#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), yylsp -= (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;
|
|
yylsp = yyls = yylsa;
|
|
yystacksize = YYINITDEPTH;
|
|
|
|
YYDPRINTF ((stderr, "Starting parse\n"));
|
|
|
|
yystate = 0;
|
|
yyerrstatus = 0;
|
|
yynerrs = 0;
|
|
yychar = YYEMPTY; /* Cause a token to be read. */
|
|
yylsp[0] = yylloc;
|
|
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 reallocate 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;
|
|
YYLTYPE *yyls1 = yyls;
|
|
|
|
/* 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),
|
|
&yyls1, yysize * sizeof (*yylsp),
|
|
&yystacksize);
|
|
|
|
yyls = yyls1;
|
|
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);
|
|
YYSTACK_RELOCATE (yyls_alloc, yyls);
|
|
# undef YYSTACK_RELOCATE
|
|
if (yyss1 != yyssa)
|
|
YYSTACK_FREE (yyss1);
|
|
}
|
|
# endif
|
|
#endif /* no yyoverflow */
|
|
|
|
yyssp = yyss + yysize - 1;
|
|
yyvsp = yyvs + yysize - 1;
|
|
yylsp = yyls + 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 (&yylval, &yylloc);
|
|
}
|
|
|
|
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
|
|
*++yylsp = yylloc;
|
|
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];
|
|
|
|
/* Default location. */
|
|
YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
|
|
YY_REDUCE_PRINT (yyn);
|
|
switch (yyn)
|
|
{
|
|
case 2:
|
|
#line 34 "parser.y" /* yacc.c:1646 */
|
|
{ *program = AS_ST((yyvsp[0])); }
|
|
#line 1671 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 3:
|
|
#line 38 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
stmtlist_node *cur = AS_ST((yyvsp[-1]))->stmtlist;
|
|
while(cur->next) cur = cur->next;
|
|
if(cur->stmt) {
|
|
cur->next = NEW(stmtlist_node);
|
|
cur = cur->next;
|
|
}
|
|
cur->stmt = (yyvsp[0]);
|
|
cur->next = NULL;
|
|
(yyval) = (yyvsp[-1]);
|
|
}
|
|
#line 1687 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 4:
|
|
#line 49 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_ST();
|
|
AS_ST((yyval))->type = ST_LIST;
|
|
AS_ST((yyval))->stmtlist = NEW(stmtlist_node);
|
|
AS_ST((yyval))->stmtlist->stmt = NULL;
|
|
AS_ST((yyval))->stmtlist->next = NULL;
|
|
}
|
|
#line 1699 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 5:
|
|
#line 59 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_EXPR; AS_ST((yyval))->expr = (yyvsp[0]); }
|
|
#line 1705 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 6:
|
|
#line 60 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_RET; AS_ST((yyval))->ret = NEW(ret_node); AS_ST((yyval))->ret->ret = (yyvsp[0]); }
|
|
#line 1711 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 7:
|
|
#line 61 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_RET; AS_ST((yyval))->ret = NEW(ret_node); AS_ST((yyval))->ret->ret = NULL; }
|
|
#line 1717 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 8:
|
|
#line 62 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_BREAK; AS_ST((yyval))->brk = NEW(break_node); }
|
|
#line 1723 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 9:
|
|
#line 63 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_BREAK; AS_ST((yyval))->brk = NEW(break_node); AS_ST((yyval))->brk->val = (yyvsp[0]); }
|
|
#line 1729 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 10:
|
|
#line 64 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_CONT; AS_ST((yyval))->cont = NEW(cont_node); }
|
|
#line 1735 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 11:
|
|
#line 65 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_ST(); SET_LOC(AS_ST((yyval)), (yyloc)); AS_ST((yyval))->type = ST_CONT; AS_ST((yyval))->cont = NEW(cont_node); AS_ST((yyval))->cont->val = (yyvsp[0]); }
|
|
#line 1741 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 12:
|
|
#line 66 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[-1]); }
|
|
#line 1747 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 13:
|
|
#line 70 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 1753 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 14:
|
|
#line 74 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_IFELSE;
|
|
AS_EX((yyval))->ifelse = NEW(ifelse_node);
|
|
AS_EX((yyval))->ifelse->cond = (yyvsp[-3]);
|
|
AS_EX((yyval))->ifelse->iftrue = (yyvsp[-1]);
|
|
AS_EX((yyval))->ifelse->iffalse = NULL;
|
|
}
|
|
#line 1766 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 15:
|
|
#line 82 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_IFELSE;
|
|
AS_EX((yyval))->ifelse = NEW(ifelse_node);
|
|
AS_EX((yyval))->ifelse->cond = (yyvsp[-5]);
|
|
AS_EX((yyval))->ifelse->iftrue = (yyvsp[-3]);
|
|
AS_EX((yyval))->ifelse->iffalse = (yyvsp[-1]);
|
|
}
|
|
#line 1779 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 16:
|
|
#line 90 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_LOOP;
|
|
AS_EX((yyval))->loop = NEW(loop_node);
|
|
AS_EX((yyval))->loop->cond = (yyvsp[-3]);
|
|
AS_EX((yyval))->loop->loop = (yyvsp[-1]);
|
|
}
|
|
#line 1791 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 17:
|
|
#line 97 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ITER;
|
|
AS_EX((yyval))->iter = NEW(iter_node);
|
|
AS_EX((yyval))->iter->var = (yyvsp[-5]);
|
|
AS_EX((yyval))->iter->iter = (yyvsp[-3]);
|
|
AS_EX((yyval))->iter->loop = (yyvsp[-1]);
|
|
}
|
|
#line 1804 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 18:
|
|
#line 105 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 1810 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 19:
|
|
#line 109 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_ASSIGN; AS_EX((yyval))->assign = NEW(assign_node); AS_EX((yyval))->assign->ident = (yyvsp[-2]); AS_EX((yyval))->assign->value = (yyvsp[0]); }
|
|
#line 1816 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 20:
|
|
#line 110 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_ADD, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1828 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 21:
|
|
#line 117 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_SUB, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1840 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 22:
|
|
#line 124 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_MUL, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1852 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 23:
|
|
#line 131 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_DIV, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1864 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 24:
|
|
#line 138 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_POW, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1876 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 25:
|
|
#line 145 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_BAND, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1888 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 26:
|
|
#line 152 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_BOR, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1900 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 27:
|
|
#line 159 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_ASSIGN;
|
|
AS_EX((yyval))->assign = NEW(assign_node);
|
|
AS_EX((yyval))->assign->ident = (yyvsp[-2]);
|
|
MAKE_REF_BINOP(AS_EX((yyval))->assign->value, OP_BXOR, (yyvsp[-2]), (yyvsp[0]));
|
|
}
|
|
#line 1912 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 28:
|
|
#line 166 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
AS_EX((yyval))->setindex->value = (yyvsp[0]);
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 1930 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 29:
|
|
#line 179 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_ADD, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 1948 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 30:
|
|
#line 192 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_SUB, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 1966 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 31:
|
|
#line 205 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_MUL, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 1984 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 32:
|
|
#line 218 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_DIV, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 2002 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 33:
|
|
#line 231 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_POW, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 2020 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 34:
|
|
#line 244 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_BAND, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 2038 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 35:
|
|
#line 257 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_BOR, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 2056 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 36:
|
|
#line 270 "parser.y" /* yacc.c:1646 */
|
|
{
|
|
if(AS_EX((yyvsp[-2]))->type != EX_INDEX) {
|
|
yyerror("Assigning to non-indexing expression");
|
|
YYABORT;
|
|
}
|
|
(yyval) = NEW_EX();
|
|
AS_EX((yyval))->type = EX_SETINDEX;
|
|
AS_EX((yyval))->setindex = NEW(setindex_node);
|
|
AS_EX((yyval))->setindex->expr = ex_copy(AS_EX((yyvsp[-2]))->index->expr);
|
|
AS_EX((yyval))->setindex->index = ex_copy(AS_EX((yyvsp[-2]))->index->index);
|
|
MAKE_IDX_BINOP(AS_EX((yyval))->setindex->value, OP_BXOR, AS_EX((yyvsp[-2]))->index->expr, AS_EX((yyvsp[-2]))->index->index, (yyvsp[0]));
|
|
ex_free(AS_EX((yyvsp[-2])));
|
|
}
|
|
#line 2074 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 37:
|
|
#line 283 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 2080 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 38:
|
|
#line 287 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_LAND; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2086 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 39:
|
|
#line 288 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_LOR; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2092 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 40:
|
|
#line 289 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 2098 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 41:
|
|
#line 293 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_UNOP; AS_EX((yyval))->unop = NEW(unop_node); AS_EX((yyval))->unop->type = OP_LNOT; AS_EX((yyval))->unop->expr = (yyvsp[0]); }
|
|
#line 2104 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 42:
|
|
#line 294 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 2110 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 43:
|
|
#line 298 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_EQUAL; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2116 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 44:
|
|
#line 299 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_NEQUAL; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2122 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 45:
|
|
#line 300 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_LESS; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2128 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 46:
|
|
#line 301 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_GREATER; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2134 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 47:
|
|
#line 302 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_LESSEQ; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2140 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 48:
|
|
#line 303 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_GREATEREQ; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2146 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 49:
|
|
#line 304 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 2152 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 50:
|
|
#line 308 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_ADD; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2158 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 51:
|
|
#line 309 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_SUB; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2164 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 52:
|
|
#line 310 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = (yyvsp[0]); }
|
|
#line 2170 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 53:
|
|
#line 314 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP; AS_EX((yyval))->binop = NEW(binop_node); AS_EX((yyval))->binop->type = OP_MUL; AS_EX((yyval))->binop->left = (yyvsp[-2]); AS_EX((yyval))->binop->right = (yyvsp[0]); }
|
|
#line 2176 "parser.tab.c" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 54:
|
|
#line 315 "parser.y" /* yacc.c:1646 */
|
|
{ (yyval) = NEW_EX(); AS_EX((yyval))->type = EX_BINOP |