Rev 52772 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* A Bison parser, made by GNU Bison 2.4.2. *//* Skeleton implementation for Bison's Yacc-like parsers in CCopyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free SoftwareFoundation, Inc.This program is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program. If not, see <http://www.gnu.org/licenses/>. *//* As a special exception, you may create a larger work that containspart or all of the Bison parser skeleton and distribute that workunder terms of your choice, so long as that work isn't itself aparser generator using the skeleton or a modified version thereofas a parser skeleton. Alternatively, if you modify or redistributethe parser skeleton itself, you may (at your option) remove thisspecial exception, which will cause the skeleton and the resultingBison output files to be licensed under the GNU General PublicLicense without this special exception.This special exception was added by the Free Software Foundation inversion 2.2 of Bison. *//* C LALR(1) parser skeleton written by Richard Stallman, bysimplifying the original so-called "semantic" parser. *//* All symbols defined below should begin with yy or YY, to avoidinfringing on user name space. This should be done even for localvariables, as they might otherwise be expanded by user macros.There are some unavoidable exceptions within include files todefine necessary library symbols; they are noted "INFRINGES ONUSER NAME SPACE" below. *//* Identify Bison output. */#define YYBISON 1/* Bison version. */#define YYBISON_VERSION "2.4.2"/* Skeleton name. */#define YYSKELETON_NAME "yacc.c"/* Pure parsers. */#define YYPURE 0/* Push parsers. */#define YYPUSH 0/* Pull parsers. */#define YYPULL 1/* Using locations. */#define YYLSP_NEEDED 1/* Copy the first part of user declarations. *//* Line 189 of yacc.c */#line 1 "gram.y"/** R : A Computer Langage for Statistical Data Analysis* Copyright (C) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka* Copyright (C) 1997--2010 The R Development Core Team** 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 2 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, a copy is available at* http://www.r-project.org/Licenses/*/#ifdef HAVE_CONFIG_H#include <config.h>#endif#include "IOStuff.h" /*-> Defn.h */#include "Fileio.h"#include "Parse.h"#define YYERROR_VERBOSE 1static void yyerror(char *);static int yylex();int yyparse(void);/* alloca.h inclusion is now covered by Defn.h */#define yyconst consttypedef struct yyltype{int first_line;int first_column;int first_byte;int last_line;int last_column;int last_byte;} yyltype;# define YYLTYPE yyltype# define YYLLOC_DEFAULT(Current, Rhs, N) \do \if (YYID (N)) \{ \(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \(Current).first_byte = YYRHSLOC (Rhs, 1).first_byte; \(Current).last_line = YYRHSLOC (Rhs, N).last_line; \(Current).last_column = YYRHSLOC (Rhs, N).last_column; \(Current).last_byte = YYRHSLOC (Rhs, N).last_byte; \} \else \{ \(Current).first_line = (Current).last_line = \YYRHSLOC (Rhs, 0).last_line; \(Current).first_column = (Current).last_column = \YYRHSLOC (Rhs, 0).last_column; \(Current).first_byte = (Current).last_byte = \YYRHSLOC (Rhs, 0).last_byte; \} \while (YYID (0))/* Useful defines so editors don't get confused ... */#define LBRACE '{'#define RBRACE '}'/* Functions used in the parsing process */static void CheckFormalArgs(SEXP, SEXP, YYLTYPE *);static SEXP FirstArg(SEXP, SEXP);static SEXP GrowList(SEXP, SEXP);static SEXP Insert(SEXP, SEXP);static void IfPush(void);static int KeywordLookup(const char *);static SEXP NewList(void);static SEXP NextArg(SEXP, SEXP, SEXP);static SEXP TagArg(SEXP, SEXP, YYLTYPE *);static int processLineDirective();/* These routines allocate constants */static SEXP mkComplex(const char *);SEXP mkFalse(void);static SEXP mkFloat(const char *);static SEXP mkNA(void);SEXP mkTrue(void);/* Internal lexer / parser state variables */static int EatLines = 0;static int GenerateCode = 0;static int EndOfFile = 0;static int xxgetc();static int xxungetc(int);static int xxcharcount, xxcharsave;static int xxlinesave, xxbytesave, xxcolsave;static SEXP SrcRefs = NULL;static SrcRefState ParseState;static PROTECT_INDEX srindex;#include <R_ext/rlocale.h>/* # include <sys/param.h> what was this for? */#ifdef HAVE_LANGINFO_CODESET# include <langinfo.h>#endifstatic int mbcs_get_next(int c, wchar_t *wc){int i, res, clen = 1; char s[9];mbstate_t mb_st;s[0] = c;/* This assumes (probably OK) that all MBCS embed ASCII as single-bytelead bytes, including control chars */if((unsigned int) c < 0x80) {*wc = (wchar_t) c;return 1;}if(utf8locale) {clen = utf8clen(c);for(i = 1; i < clen; i++) {s[i] = xxgetc();if(s[i] == R_EOF) error(_("EOF whilst reading MBCS char at line %d"), ParseState.xxlineno);}s[clen] ='\0'; /* x86 Solaris requires this */res = mbrtowc(wc, s, clen, NULL);if(res == -1) error(_("invalid multibyte character in parser at line %d"), ParseState.xxlineno);} else {/* This is not necessarily correct for stateful MBCS */while(clen <= MB_CUR_MAX) {mbs_init(&mb_st);res = mbrtowc(wc, s, clen, &mb_st);if(res >= 0) break;if(res == -1)error(_("invalid multibyte character in parser at line %d"), ParseState.xxlineno);/* so res == -2 */c = xxgetc();if(c == R_EOF) error(_("EOF whilst reading MBCS char at line %d"), ParseState.xxlineno);s[clen++] = c;} /* we've tried enough, so must be complete or invalid by now */}for(i = clen - 1; i > 0; i--) xxungetc(s[i]);return clen;}/* Handle function source */#define MAXFUNSIZE 131072#define MAXNEST 265static unsigned char FunctionSource[MAXFUNSIZE];static unsigned char *FunctionStart[MAXNEST], *SourcePtr;static int FunctionLevel = 0;static int KeepSource;/* Soon to be defunct entry points */void R_SetInput(int);int R_fgetc(FILE*);/* Routines used to build the parse tree */static SEXP xxnullformal(void);static SEXP xxfirstformal0(SEXP);static SEXP xxfirstformal1(SEXP, SEXP);static SEXP xxaddformal0(SEXP, SEXP, YYLTYPE *);static SEXP xxaddformal1(SEXP, SEXP, SEXP, YYLTYPE *);static SEXP xxexprlist0();static SEXP xxexprlist1(SEXP, YYLTYPE *);static SEXP xxexprlist2(SEXP, SEXP, YYLTYPE *);static SEXP xxsub0(void);static SEXP xxsub1(SEXP, YYLTYPE *);static SEXP xxsymsub0(SEXP, YYLTYPE *);static SEXP xxsymsub1(SEXP, SEXP, YYLTYPE *);static SEXP xxnullsub0(YYLTYPE *);static SEXP xxnullsub1(SEXP, YYLTYPE *);static SEXP xxsublist1(SEXP);static SEXP xxsublist2(SEXP, SEXP);static SEXP xxcond(SEXP);static SEXP xxifcond(SEXP);static SEXP xxif(SEXP, SEXP, SEXP);static SEXP xxifelse(SEXP, SEXP, SEXP, SEXP);static SEXP xxforcond(SEXP, SEXP);static SEXP xxfor(SEXP, SEXP, SEXP);static SEXP xxwhile(SEXP, SEXP, SEXP);static SEXP xxrepeat(SEXP, SEXP);static SEXP xxnxtbrk(SEXP);static SEXP xxfuncall(SEXP, SEXP);static SEXP xxdefun(SEXP, SEXP, SEXP);static SEXP xxunary(SEXP, SEXP);static SEXP xxbinary(SEXP, SEXP, SEXP);static SEXP xxparen(SEXP, SEXP);static SEXP xxsubscript(SEXP, SEXP, SEXP);static SEXP xxexprlist(SEXP, YYLTYPE *, SEXP);static int xxvalue(SEXP, int, YYLTYPE *);#define YYSTYPE SEXP/* Line 189 of yacc.c */#line 287 "gram.c"/* Enabling traces. */#ifndef YYDEBUG# define YYDEBUG 0#endif/* Enabling verbose error messages. */#ifdef YYERROR_VERBOSE# undef YYERROR_VERBOSE# define YYERROR_VERBOSE 1#else# define YYERROR_VERBOSE 0#endif/* Enabling the token table. */#ifndef YYTOKEN_TABLE# define YYTOKEN_TABLE 0#endif/* Tokens. */#ifndef YYTOKENTYPE# define YYTOKENTYPE/* Put the tokens into the symbol table, so that GDB and other debuggersknow about them. */enum yytokentype {END_OF_INPUT = 258,ERROR = 259,STR_CONST = 260,NUM_CONST = 261,NULL_CONST = 262,SYMBOL = 263,FUNCTION = 264,LEFT_ASSIGN = 265,EQ_ASSIGN = 266,RIGHT_ASSIGN = 267,LBB = 268,FOR = 269,IN = 270,IF = 271,ELSE = 272,WHILE = 273,NEXT = 274,BREAK = 275,REPEAT = 276,GT = 277,GE = 278,LT = 279,LE = 280,EQ = 281,NE = 282,AND = 283,OR = 284,AND2 = 285,OR2 = 286,NS_GET = 287,NS_GET_INT = 288,LOW = 289,TILDE = 290,NOT = 291,UNOT = 292,SPECIAL = 293,UPLUS = 294,UMINUS = 295};#endif#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLAREDtypedef int YYSTYPE;# define YYSTYPE_IS_TRIVIAL 1# define yystype YYSTYPE /* obsolescent; will be withdrawn */# define YYSTYPE_IS_DECLARED 1#endif#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLAREDtypedef struct YYLTYPE{int first_line;int first_column;int last_line;int last_column;} YYLTYPE;# define yyltype YYLTYPE /* obsolescent; will be withdrawn */# define YYLTYPE_IS_DECLARED 1# define YYLTYPE_IS_TRIVIAL 1#endif/* Copy the second part of user declarations. *//* Line 264 of yacc.c */#line 382 "gram.c"#ifdef short# undef short#endif#ifdef YYTYPE_UINT8typedef YYTYPE_UINT8 yytype_uint8;#elsetypedef unsigned char yytype_uint8;#endif#ifdef YYTYPE_INT8typedef YYTYPE_INT8 yytype_int8;#elif (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)typedef signed char yytype_int8;#elsetypedef short int yytype_int8;#endif#ifdef YYTYPE_UINT16typedef YYTYPE_UINT16 yytype_uint16;#elsetypedef unsigned short int yytype_uint16;#endif#ifdef YYTYPE_INT16typedef YYTYPE_INT16 yytype_int16;#elsetypedef 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 && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)# 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/* Suppress unused-variable warnings by "using" E. */#if ! defined lint || defined __GNUC__# define YYUSE(e) ((void) (e))#else# define YYUSE(e) /* empty */#endif/* Identity function, used to suppress warnings about constant conditions. */#ifndef lint# define YYID(n) (n)#else#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static intYYID (int yyi)#elsestatic intYYID (yyi)int yyi;#endif{return yyi;}#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 _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */# ifndef _STDLIB_H# define _STDLIB_H 1# endif# endif# endif# endif# endif# ifdef YYSTACK_ALLOC/* Pacify GCC's `empty if-body' warning. */# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (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 safelyinvoke alloca (N) if N exceeds 4096. Use a slightly smaller numberto 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 _STDLIB_H \&& ! ((defined YYMALLOC || defined malloc) \&& (defined YYFREE || defined free)))# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */# ifndef _STDLIB_H# define _STDLIB_H 1# endif# endif# ifndef YYMALLOC# define YYMALLOC malloc# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */# endif# endif# ifndef YYFREE# define YYFREE free# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)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 withN elements. */# define YYSTACK_BYTES(N) \((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \+ 2 * YYSTACK_GAP_MAXIMUM)/* Copy COUNT objects from FROM to TO. The source and destination donot overlap. */# ifndef YYCOPY# if defined __GNUC__ && 1 < __GNUC__# define YYCOPY(To, From, Count) \__builtin_memcpy (To, From, (Count) * sizeof (*(From)))# else# define YYCOPY(To, From, Count) \do \{ \YYSIZE_T yyi; \for (yyi = 0; yyi < (Count); yyi++) \(To)[yyi] = (From)[yyi]; \} \while (YYID (0))# endif# endif/* Relocate STACK from its old location to the new one. Thelocal variables YYSIZE and YYSTACKSIZE give the old and new number ofelements in the stack, and YYPTR gives the new location of thestack. Advance YYPTR to a properly aligned location for the nextstack. */# 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 (YYID (0))#endif/* YYFINAL -- State number of the termination state. */#define YYFINAL 46/* YYLAST -- Last index in YYTABLE. */#define YYLAST 709/* YYNTOKENS -- Number of terminals. */#define YYNTOKENS 62/* YYNNTS -- Number of nonterminals. */#define YYNNTS 13/* YYNRULES -- Number of rules. */#define YYNRULES 90/* YYNRULES -- Number of states. */#define YYNSTATES 163/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */#define YYUNDEFTOK 2#define YYMAXUTOK 295#define YYTRANSLATE(YYX) \((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */static const yytype_uint8 yytranslate[] ={0, 2, 2, 2, 2, 2, 2, 2, 2, 2,53, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 58, 2, 2, 49, 59, 2, 2,51, 57, 42, 40, 61, 41, 2, 43, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 45, 54,2, 2, 2, 34, 50, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 52, 2, 60, 48, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 55, 2, 56, 36, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 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, 35,37, 38, 39, 44, 46, 47};#if YYDEBUG/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN inYYRHS. */static const yytype_uint16 yyprhs[] ={0, 0, 3, 5, 7, 10, 13, 15, 17, 19,23, 25, 27, 29, 31, 35, 39, 42, 45, 48,51, 54, 58, 62, 66, 70, 74, 78, 82, 86,90, 94, 98, 102, 106, 110, 114, 118, 122, 126,130, 134, 138, 142, 149, 154, 158, 164, 168, 172,175, 181, 186, 190, 194, 198, 202, 206, 210, 214,218, 222, 226, 230, 234, 236, 238, 242, 246, 252,253, 255, 259, 262, 266, 269, 271, 276, 277, 279,282, 286, 289, 293, 296, 300, 301, 303, 307, 311,317};/* YYRHS -- A `-1'-separated list of the rules' RHS. */static const yytype_int8 yyrhs[] ={63, 0, -1, 3, -1, 53, -1, 64, 53, -1,64, 54, -1, 1, -1, 66, -1, 65, -1, 66,11, 64, -1, 6, -1, 5, -1, 7, -1, 8,-1, 55, 70, 56, -1, 51, 64, 57, -1, 41,66, -1, 40, 66, -1, 58, 66, -1, 36, 66,-1, 34, 66, -1, 66, 45, 66, -1, 66, 40,66, -1, 66, 41, 66, -1, 66, 42, 66, -1,66, 43, 66, -1, 66, 48, 66, -1, 66, 44,66, -1, 66, 59, 66, -1, 66, 36, 66, -1,66, 34, 66, -1, 66, 24, 66, -1, 66, 25,66, -1, 66, 26, 66, -1, 66, 27, 66, -1,66, 23, 66, -1, 66, 22, 66, -1, 66, 28,66, -1, 66, 29, 66, -1, 66, 30, 66, -1,66, 31, 66, -1, 66, 10, 66, -1, 66, 12,66, -1, 9, 51, 73, 57, 74, 64, -1, 66,51, 71, 57, -1, 16, 68, 64, -1, 16, 68,64, 17, 64, -1, 14, 69, 64, -1, 18, 67,64, -1, 21, 64, -1, 66, 13, 71, 60, 60,-1, 66, 52, 71, 60, -1, 8, 32, 8, -1,8, 32, 5, -1, 5, 32, 8, -1, 5, 32,5, -1, 8, 33, 8, -1, 8, 33, 5, -1,5, 33, 8, -1, 5, 33, 5, -1, 66, 49,8, -1, 66, 49, 5, -1, 66, 50, 8, -1,66, 50, 5, -1, 19, -1, 20, -1, 51, 66,57, -1, 51, 66, 57, -1, 51, 8, 15, 66,57, -1, -1, 64, -1, 70, 54, 64, -1, 70,54, -1, 70, 53, 64, -1, 70, 53, -1, 72,-1, 71, 74, 61, 72, -1, -1, 66, -1, 8,11, -1, 8, 11, 66, -1, 5, 11, -1, 5,11, 66, -1, 7, 11, -1, 7, 11, 66, -1,-1, 8, -1, 8, 11, 66, -1, 73, 61, 8,-1, 73, 61, 8, 11, 66, -1, -1};/* YYRLINE[YYN] -- source line where rule number YYN was defined. */static const yytype_uint16 yyrline[] ={0, 248, 248, 249, 250, 251, 252, 255, 256, 259,262, 263, 264, 265, 267, 268, 270, 271, 272, 273,274, 276, 277, 278, 279, 280, 281, 282, 283, 284,285, 286, 287, 288, 289, 290, 291, 292, 293, 294,295, 297, 298, 299, 301, 302, 303, 304, 305, 306,307, 308, 309, 310, 311, 312, 313, 314, 315, 316,317, 318, 319, 320, 321, 322, 326, 329, 332, 336,337, 338, 339, 340, 341, 344, 345, 348, 349, 350,351, 352, 353, 354, 355, 358, 359, 360, 361, 362,365};#endif#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE/* 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", "END_OF_INPUT", "ERROR", "STR_CONST","NUM_CONST", "NULL_CONST", "SYMBOL", "FUNCTION", "LEFT_ASSIGN","EQ_ASSIGN", "RIGHT_ASSIGN", "LBB", "FOR", "IN", "IF", "ELSE", "WHILE","NEXT", "BREAK", "REPEAT", "GT", "GE", "LT", "LE", "EQ", "NE", "AND","OR", "AND2", "OR2", "NS_GET", "NS_GET_INT", "'?'", "LOW", "'~'","TILDE", "NOT", "UNOT", "'+'", "'-'", "'*'", "'/'", "SPECIAL", "':'","UPLUS", "UMINUS", "'^'", "'$'", "'@'", "'('", "'['", "'\\n'", "';'","'{'", "'}'", "')'", "'!'", "'%'", "']'", "','", "$accept", "prog","expr_or_assign", "equal_assign", "expr", "cond", "ifcond", "forcond","exprlist", "sublist", "sub", "formlist", "cr", 0};#endif# ifdef YYPRINT/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding totoken YYLEX-NUM. */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, 63, 289, 126, 290, 291, 292,43, 45, 42, 47, 293, 58, 294, 295, 94, 36,64, 40, 91, 10, 59, 123, 125, 41, 33, 37,93, 44};# endif/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */static const yytype_uint8 yyr1[] ={0, 62, 63, 63, 63, 63, 63, 64, 64, 65,66, 66, 66, 66, 66, 66, 66, 66, 66, 66,66, 66, 66, 66, 66, 66, 66, 66, 66, 66,66, 66, 66, 66, 66, 66, 66, 66, 66, 66,66, 66, 66, 66, 66, 66, 66, 66, 66, 66,66, 66, 66, 66, 66, 66, 66, 66, 66, 66,66, 66, 66, 66, 66, 66, 67, 68, 69, 70,70, 70, 70, 70, 70, 71, 71, 72, 72, 72,72, 72, 72, 72, 72, 73, 73, 73, 73, 73,74};/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */static const yytype_uint8 yyr2[] ={0, 2, 1, 1, 2, 2, 1, 1, 1, 3,1, 1, 1, 1, 3, 3, 2, 2, 2, 2,2, 3, 3, 3, 3, 3, 3, 3, 3, 3,3, 3, 3, 3, 3, 3, 3, 3, 3, 3,3, 3, 3, 6, 4, 3, 5, 3, 3, 2,5, 4, 3, 3, 3, 3, 3, 3, 3, 3,3, 3, 3, 3, 1, 1, 3, 3, 5, 0,1, 3, 2, 3, 2, 1, 4, 0, 1, 2,3, 2, 3, 2, 3, 0, 1, 3, 3, 5,0};/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in stateSTATE-NUM when YYTABLE doesn't specify something else to do. Zeromeans the default is an error. */static const yytype_uint8 yydefact[] ={0, 6, 2, 11, 10, 12, 13, 0, 0, 0,0, 64, 65, 0, 0, 0, 0, 0, 0, 3,69, 0, 0, 0, 8, 7, 0, 0, 0, 0,85, 0, 0, 0, 0, 0, 0, 49, 20, 19,17, 16, 0, 70, 0, 18, 1, 4, 5, 0,0, 0, 77, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 77, 77, 0, 55, 54, 59,58, 53, 52, 57, 56, 86, 0, 0, 47, 0,45, 0, 48, 15, 74, 72, 14, 41, 9, 42,11, 12, 13, 78, 90, 75, 36, 35, 31, 32,33, 34, 37, 38, 39, 40, 30, 29, 22, 23,24, 25, 27, 21, 26, 61, 60, 63, 62, 90,90, 28, 0, 90, 0, 0, 67, 0, 66, 73,71, 81, 83, 79, 0, 0, 44, 51, 87, 0,88, 0, 46, 82, 84, 80, 50, 77, 43, 0,68, 76, 89};/* YYDEFGOTO[NTERM-NUM]. */static const yytype_int16 yydefgoto[] ={-1, 22, 23, 24, 25, 36, 34, 32, 44, 104,105, 86, 145};/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describingSTATE-NUM. */#define YYPACT_NINF -53static const yytype_int16 yypact[] ={83, -53, -53, 37, -53, -53, 61, -35, -33, -29,-27, -53, -53, 144, 144, 144, 144, 144, 144, -53,144, 144, 8, 56, -53, 235, 7, 9, 15, 24,58, 70, 144, 144, 144, 144, 144, -53, 450, 530,141, 141, 2, -53, -43, 610, -53, -53, -53, 144,144, 144, 198, 144, 144, 144, 144, 144, 144, 144,144, 144, 144, 144, 144, 144, 144, 144, 144, 144,144, 144, 25, 26, 198, 198, 144, -53, -53, -53,-53, -53, -53, -53, -53, 53, -52, 65, -53, 278,66, 321, -53, -53, 144, 144, -53, 450, -53, 490,-7, 74, -5, 407, 27, -53, 650, 650, 650, 650,650, 650, 610, 570, 610, 570, 450, 530, 63, 63,23, 23, 122, 141, 141, -53, -53, -53, -53, 39,38, 407, 144, -53, 92, 144, -53, 144, -53, -53,-53, 144, 144, 144, 60, 55, -53, -53, 407, 144,119, 364, -53, 407, 407, 407, -53, 198, -53, 144,-53, -53, 407};/* YYPGOTO[NTERM-NUM]. */static const yytype_int8 yypgoto[] ={-53, -53, 45, -53, -14, -53, -53, -53, -53, 51,-26, -53, -1};/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. Ifpositive, shift that token. If negative, reduce the rule whichnumber is the opposite. If zero, do what YYDEFACT says.If YYTABLE_NINF, syntax error. */#define YYTABLE_NINF -1static const yytype_int16 yytable[] ={38, 39, 40, 41, 141, 133, 143, 45, 46, 134,94, 95, 77, 96, 79, 78, 30, 80, 31, 89,81, 91, 33, 82, 35, 26, 27, 28, 29, 83,125, 127, 84, 126, 128, 97, 52, 99, 103, 106,107, 108, 109, 110, 111, 112, 113, 114, 115, 116,117, 118, 119, 120, 121, 122, 123, 124, 37, 93,103, 103, 131, 42, 132, 43, 85, 69, 70, 26,27, 71, 72, 73, 74, 75, 52, 88, 87, 90,135, 92, 76, 137, 1, 142, 2, 144, 3, 4,5, 6, 7, 28, 29, 98, 146, 8, 147, 9,150, 10, 11, 12, 13, 67, 68, 69, 70, 47,48, 71, 72, 73, 74, 75, 157, 14, 148, 15,156, 151, 76, 16, 17, 129, 130, 153, 154, 155,159, 161, 149, 0, 18, 52, 19, 0, 20, 139,140, 21, 0, 103, 0, 162, 0, 0, 0, 3,4, 5, 6, 7, 52, 0, 0, 0, 8, 0,9, 0, 10, 11, 12, 13, 0, 70, 0, 0,71, 72, 73, 74, 75, 0, 0, 0, 14, 0,15, 76, 152, 0, 16, 17, 0, 0, 0, 71,72, 73, 74, 75, 158, 18, 0, 0, 0, 20,76, 0, 21, 100, 4, 101, 102, 7, 0, 0,0, 0, 8, 0, 9, 0, 10, 11, 12, 13,0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 14, 0, 15, 0, 0, 0, 16, 17,0, 0, 0, 0, 0, 49, 50, 51, 52, 18,0, 0, 0, 20, 0, 0, 21, 53, 54, 55,56, 57, 58, 59, 60, 61, 62, 0, 0, 63,0, 64, 0, 0, 0, 65, 66, 67, 68, 69,70, 0, 0, 71, 72, 73, 74, 75, 49, 0,51, 52, 0, 0, 76, 0, 0, 0, 0, 0,53, 54, 55, 56, 57, 58, 59, 60, 61, 62,0, 0, 63, 0, 64, 0, 0, 0, 65, 66,67, 68, 69, 70, 0, 0, 71, 72, 73, 74,75, 49, 0, 51, 52, 136, 0, 76, 0, 0,0, 0, 0, 53, 54, 55, 56, 57, 58, 59,60, 61, 62, 0, 0, 63, 0, 64, 0, 0,0, 65, 66, 67, 68, 69, 70, 0, 0, 71,72, 73, 74, 75, 49, 0, 51, 52, 138, 0,76, 0, 0, 0, 0, 0, 53, 54, 55, 56,57, 58, 59, 60, 61, 62, 0, 0, 63, 0,64, 0, 0, 0, 65, 66, 67, 68, 69, 70,0, 0, 71, 72, 73, 74, 75, 49, 0, 51,52, 160, 0, 76, 0, 0, 0, 0, 0, 53,54, 55, 56, 57, 58, 59, 60, 61, 62, 0,0, 63, 0, 64, 0, 0, 0, 65, 66, 67,68, 69, 70, 0, 0, 71, 72, 73, 74, 75,49, 0, 51, 52, 0, 0, 76, 0, 0, 0,0, 0, 53, 54, 55, 56, 57, 58, 59, 60,61, 62, 0, 0, 0, 0, 64, 0, 0, 0,65, 66, 67, 68, 69, 70, 0, 0, 71, 72,73, 74, 75, 52, 0, 0, 0, 0, 0, 76,0, 0, 53, 54, 55, 56, 57, 58, 59, 60,61, 62, 0, 0, 0, 0, 64, 0, 0, 0,65, 66, 67, 68, 69, 70, 0, 0, 71, 72,73, 74, 75, 52, 0, 0, 0, 0, 0, 76,0, 0, 53, 54, 55, 56, 57, 58, 59, 60,61, 62, 0, 0, 0, 0, 0, 0, 0, 0,65, 66, 67, 68, 69, 70, 0, 0, 71, 72,73, 74, 75, 52, 0, 0, 0, 0, 0, 76,0, 0, 53, 54, 55, 56, 57, 58, 59, 0,61, 0, 0, 0, 0, 0, 0, 0, 0, 0,65, 66, 67, 68, 69, 70, 0, 0, 71, 72,73, 74, 75, 52, 0, 0, 0, 0, 0, 76,0, 0, 53, 54, 55, 56, 57, 58, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0,65, 66, 67, 68, 69, 70, 0, 0, 71, 72,73, 74, 75, 52, 0, 0, 0, 0, 0, 76,0, 0, -1, -1, -1, -1, -1, -1, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0,65, 66, 67, 68, 69, 70, 0, 0, 71, 72,73, 74, 75, 0, 0, 0, 0, 0, 0, 76};static const yytype_int16 yycheck[] ={14, 15, 16, 17, 11, 57, 11, 21, 0, 61,53, 54, 5, 56, 5, 8, 51, 8, 51, 33,5, 35, 51, 8, 51, 32, 33, 32, 33, 5,5, 5, 8, 8, 8, 49, 13, 51, 52, 53,54, 55, 56, 57, 58, 59, 60, 61, 62, 63,64, 65, 66, 67, 68, 69, 70, 71, 13, 57,74, 75, 76, 18, 11, 20, 8, 44, 45, 32,33, 48, 49, 50, 51, 52, 13, 32, 8, 34,15, 36, 59, 17, 1, 11, 3, 60, 5, 6,7, 8, 9, 32, 33, 50, 57, 14, 60, 16,8, 18, 19, 20, 21, 42, 43, 44, 45, 53,54, 48, 49, 50, 51, 52, 61, 34, 132, 36,60, 135, 59, 40, 41, 74, 75, 141, 142, 143,11, 157, 133, -1, 51, 13, 53, -1, 55, 94,95, 58, -1, 157, -1, 159, -1, -1, -1, 5,6, 7, 8, 9, 13, -1, -1, -1, 14, -1,16, -1, 18, 19, 20, 21, -1, 45, -1, -1,48, 49, 50, 51, 52, -1, -1, -1, 34, -1,36, 59, 137, -1, 40, 41, -1, -1, -1, 48,49, 50, 51, 52, 149, 51, -1, -1, -1, 55,59, -1, 58, 5, 6, 7, 8, 9, -1, -1,-1, -1, 14, -1, 16, -1, 18, 19, 20, 21,-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,-1, -1, -1, -1, -1, 10, 11, 12, 13, 51,-1, -1, -1, 55, -1, -1, 58, 22, 23, 24,25, 26, 27, 28, 29, 30, 31, -1, -1, 34,-1, 36, -1, -1, -1, 40, 41, 42, 43, 44,45, -1, -1, 48, 49, 50, 51, 52, 10, -1,12, 13, -1, -1, 59, -1, -1, -1, -1, -1,22, 23, 24, 25, 26, 27, 28, 29, 30, 31,-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,42, 43, 44, 45, -1, -1, 48, 49, 50, 51,52, 10, -1, 12, 13, 57, -1, 59, -1, -1,-1, -1, -1, 22, 23, 24, 25, 26, 27, 28,29, 30, 31, -1, -1, 34, -1, 36, -1, -1,-1, 40, 41, 42, 43, 44, 45, -1, -1, 48,49, 50, 51, 52, 10, -1, 12, 13, 57, -1,59, -1, -1, -1, -1, -1, 22, 23, 24, 25,26, 27, 28, 29, 30, 31, -1, -1, 34, -1,36, -1, -1, -1, 40, 41, 42, 43, 44, 45,-1, -1, 48, 49, 50, 51, 52, 10, -1, 12,13, 57, -1, 59, -1, -1, -1, -1, -1, 22,23, 24, 25, 26, 27, 28, 29, 30, 31, -1,-1, 34, -1, 36, -1, -1, -1, 40, 41, 42,43, 44, 45, -1, -1, 48, 49, 50, 51, 52,10, -1, 12, 13, -1, -1, 59, -1, -1, -1,-1, -1, 22, 23, 24, 25, 26, 27, 28, 29,30, 31, -1, -1, -1, -1, 36, -1, -1, -1,40, 41, 42, 43, 44, 45, -1, -1, 48, 49,50, 51, 52, 13, -1, -1, -1, -1, -1, 59,-1, -1, 22, 23, 24, 25, 26, 27, 28, 29,30, 31, -1, -1, -1, -1, 36, -1, -1, -1,40, 41, 42, 43, 44, 45, -1, -1, 48, 49,50, 51, 52, 13, -1, -1, -1, -1, -1, 59,-1, -1, 22, 23, 24, 25, 26, 27, 28, 29,30, 31, -1, -1, -1, -1, -1, -1, -1, -1,40, 41, 42, 43, 44, 45, -1, -1, 48, 49,50, 51, 52, 13, -1, -1, -1, -1, -1, 59,-1, -1, 22, 23, 24, 25, 26, 27, 28, -1,30, -1, -1, -1, -1, -1, -1, -1, -1, -1,40, 41, 42, 43, 44, 45, -1, -1, 48, 49,50, 51, 52, 13, -1, -1, -1, -1, -1, 59,-1, -1, 22, 23, 24, 25, 26, 27, -1, -1,-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,40, 41, 42, 43, 44, 45, -1, -1, 48, 49,50, 51, 52, 13, -1, -1, -1, -1, -1, 59,-1, -1, 22, 23, 24, 25, 26, 27, -1, -1,-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,40, 41, 42, 43, 44, 45, -1, -1, 48, 49,50, 51, 52, -1, -1, -1, -1, -1, -1, 59};/* YYSTOS[STATE-NUM] -- The (internal number of the) accessingsymbol of state STATE-NUM. */static const yytype_uint8 yystos[] ={0, 1, 3, 5, 6, 7, 8, 9, 14, 16,18, 19, 20, 21, 34, 36, 40, 41, 51, 53,55, 58, 63, 64, 65, 66, 32, 33, 32, 33,51, 51, 69, 51, 68, 51, 67, 64, 66, 66,66, 66, 64, 64, 70, 66, 0, 53, 54, 10,11, 12, 13, 22, 23, 24, 25, 26, 27, 28,29, 30, 31, 34, 36, 40, 41, 42, 43, 44,45, 48, 49, 50, 51, 52, 59, 5, 8, 5,8, 5, 8, 5, 8, 8, 73, 8, 64, 66,64, 66, 64, 57, 53, 54, 56, 66, 64, 66,5, 7, 8, 66, 71, 72, 66, 66, 66, 66,66, 66, 66, 66, 66, 66, 66, 66, 66, 66,66, 66, 66, 66, 66, 5, 8, 5, 8, 71,71, 66, 11, 57, 61, 15, 57, 17, 57, 64,64, 11, 11, 11, 60, 74, 57, 60, 66, 74,8, 66, 64, 66, 66, 66, 60, 61, 64, 11,57, 72, 66};#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/* Like YYERROR except do call yyerror. This remains here temporarilyto ease the transition to the new meaning of YYERROR, for GCC.Once GCC version 2 has supplanted version 1, this can go. However,YYFAIL appears to be in use. Nevertheless, it is formally deprecatedin Bison 2.4.2's NEWS entry, where a plan to phase it out isdiscussed. */#define YYFAIL goto yyerrlab#if defined YYFAIL/* This is here to suppress warnings from the GCC cpp's-Wunused-macros. Normally we don't worry about that warning, butsome users do, and we want to make it easy for users to removeYYFAIL uses, which will produce warnings from Bison 2.5. */#endif#define YYRECOVERING() (!!yyerrstatus)#define YYBACKUP(Token, Value) \do \if (yychar == YYEMPTY && yylen == 1) \{ \yychar = (Token); \yylval = (Value); \yytoken = YYTRANSLATE (yychar); \YYPOPSTACK (1); \goto yybackup; \} \else \{ \yyerror (YY_("syntax error: cannot back up")); \YYERROR; \} \while (YYID (0))#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 endsthe previous symbol: RHS[0] (always defined). */#define YYRHSLOC(Rhs, K) ((Rhs)[K])#ifndef YYLLOC_DEFAULT# define YYLLOC_DEFAULT(Current, Rhs, N) \do \if (YYID (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 (YYID (0))#endif/* YY_LOCATION_PRINT -- Print the location on the stream.This macro was not mandated originally: define only if we knowwe won't break user code: when these are the locations we know. */#ifndef YY_LOCATION_PRINT# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL# define YY_LOCATION_PRINT(File, Loc) \fprintf (File, "%d.%d-%d.%d", \(Loc).first_line, (Loc).first_column, \(Loc).last_line, (Loc).last_column)# else# define YY_LOCATION_PRINT(File, Loc) ((void) 0)# endif#endif/* YYLEX -- calling `yylex' with the right arguments. */#ifdef YYLEX_PARAM# define YYLEX yylex (YYLEX_PARAM)#else# define YYLEX yylex ()#endif/* 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 (YYID (0))# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \do { \if (yydebug) \{ \YYFPRINTF (stderr, "%s ", Title); \yy_symbol_print (stderr, \Type, Value, Location); \YYFPRINTF (stderr, "\n"); \} \} while (YYID (0))/*--------------------------------.| Print this symbol on YYOUTPUT. |`--------------------------------*//*ARGSUSED*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp)#elsestatic voidyy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp)FILE *yyoutput;int yytype;YYSTYPE const * const yyvaluep;YYLTYPE const * const yylocationp;#endif{if (!yyvaluep)return;YYUSE (yylocationp);# ifdef YYPRINTif (yytype < YYNTOKENS)YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);# elseYYUSE (yyoutput);# endifswitch (yytype){default:break;}}/*--------------------------------.| Print this symbol on YYOUTPUT. |`--------------------------------*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp)#elsestatic voidyy_symbol_print (yyoutput, yytype, yyvaluep, yylocationp)FILE *yyoutput;int yytype;YYSTYPE const * const yyvaluep;YYLTYPE const * const yylocationp;#endif{if (yytype < YYNTOKENS)YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);elseYYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);YY_LOCATION_PRINT (yyoutput, *yylocationp);YYFPRINTF (yyoutput, ": ");yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp);YYFPRINTF (yyoutput, ")");}/*------------------------------------------------------------------.| yy_stack_print -- Print the state stack from its BOTTOM up to its || TOP (included). |`------------------------------------------------------------------*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)#elsestatic voidyy_stack_print (yybottom, yytop)yytype_int16 *yybottom;yytype_int16 *yytop;#endif{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 (YYID (0))/*------------------------------------------------.| Report that the YYRULE is going to be reduced. |`------------------------------------------------*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_reduce_print (YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule)#elsestatic voidyy_reduce_print (yyvsp, yylsp, yyrule)YYSTYPE *yyvsp;YYLTYPE *yylsp;int yyrule;#endif{int yynrhs = yyr2[yyrule];int yyi;unsigned long int yylno = yyrline[yyrule];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, yyrhs[yyprhs[yyrule] + yyi],&(yyvsp[(yyi + 1) - (yynrhs)]), &(yylsp[(yyi + 1) - (yynrhs)]) );YYFPRINTF (stderr, "\n");}}# define YY_REDUCE_PRINT(Rule) \do { \if (yydebug) \yy_reduce_print (yyvsp, yylsp, Rule); \} while (YYID (0))/* Nonzero means print parse trace. It is left uninitialized so thatmultiple 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 onlyif the built-in stack extension method is used).Do not make this value too large; the results are undefined ifYYSTACK_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. */#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static YYSIZE_Tyystrlen (const char *yystr)#elsestatic YYSIZE_Tyystrlen (yystr)const char *yystr;#endif{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' inYYDEST. */#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static char *yystpcpy (char *yydest, const char *yysrc)#elsestatic char *yystpcpy (yydest, yysrc)char *yydest;const char *yysrc;#endif{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 unnecessaryquotes and backslashes, so that it's suitable for yyerror. Theheuristic is that double-quoting is unnecessary unless the stringcontains an apostrophe, a comma, or backslash (other thanbackslash-backslash). YYSTR is taken from yytname. If YYRES isnull, do not copy; instead, return the length of what the resultwould have been. */static YYSIZE_Tyytnamerr (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 YYRESULT an error message about the unexpected tokenYYCHAR while in state YYSTATE. Return the number of bytes copied,including the terminating null byte. If YYRESULT is null, do notcopy anything; just return the number of bytes that would becopied. As a special case, return 0 if an ordinary "syntax error"message will do. Return YYSIZE_MAXIMUM if overflow occurs duringsize calculation. */static YYSIZE_Tyysyntax_error (char *yyresult, int yystate, int yychar){int yyn = yypact[yystate];if (! (YYPACT_NINF < yyn && yyn <= YYLAST))return 0;else{int yytype = YYTRANSLATE (yychar);YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);YYSIZE_T yysize = yysize0;YYSIZE_T yysize1;int yysize_overflow = 0;enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];int yyx;# if 0/* This is so xgettext sees the translatable formats that areconstructed on the fly. */YY_("syntax error, unexpected %s");YY_("syntax error, unexpected %s, expecting %s");YY_("syntax error, unexpected %s, expecting %s or %s");YY_("syntax error, unexpected %s, expecting %s or %s or %s");YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");# endifchar *yyfmt;char const *yyf;static char const yyunexpected[] = "syntax error, unexpected %s";static char const yyexpecting[] = ", expecting %s";static char const yyor[] = " or %s";char yyformat[sizeof yyunexpected+ sizeof yyexpecting - 1+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)* (sizeof yyor - 1))];char const *yyprefix = yyexpecting;/* Start YYX at -YYN if negative to avoid negative indexes inYYCHECK. */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 yycount = 1;yyarg[0] = yytname[yytype];yyfmt = yystpcpy (yyformat, yyunexpected);for (yyx = yyxbegin; yyx < yyxend; ++yyx)if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR){if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM){yycount = 1;yysize = yysize0;yyformat[sizeof yyunexpected - 1] = '\0';break;}yyarg[yycount++] = yytname[yyx];yysize1 = yysize + yytnamerr (0, yytname[yyx]);yysize_overflow |= (yysize1 < yysize);yysize = yysize1;yyfmt = yystpcpy (yyfmt, yyprefix);yyprefix = yyor;}yyf = YY_(yyformat);yysize1 = yysize + yystrlen (yyf);yysize_overflow |= (yysize1 < yysize);yysize = yysize1;if (yysize_overflow)return YYSIZE_MAXIMUM;if (yyresult){/* Avoid sprintf, as that infringes on the user's name space.Don't have undefined behavior even if the translationproduced a string with the wrong number of "%s"s. */char *yyp = yyresult;int yyi = 0;while ((*yyp = *yyf) != '\0'){if (*yyp == '%' && yyf[1] == 's' && yyi < yycount){yyp += yytnamerr (yyp, yyarg[yyi++]);yyf += 2;}else{yyp++;yyf++;}}}return yysize;}}#endif /* YYERROR_VERBOSE *//*-----------------------------------------------.| Release the memory associated to this symbol. |`-----------------------------------------------*//*ARGSUSED*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)#elsestatic voidyydestruct (yymsg, yytype, yyvaluep, yylocationp)const char *yymsg;int yytype;YYSTYPE *yyvaluep;YYLTYPE *yylocationp;#endif{YYUSE (yyvaluep);YYUSE (yylocationp);if (!yymsg)yymsg = "Deleting";YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);switch (yytype){default:break;}}/* Prevent warnings from -Wmissing-prototypes. */#ifdef YYPARSE_PARAM#if defined __STDC__ || defined __cplusplusint yyparse (void *YYPARSE_PARAM);#elseint yyparse ();#endif#else /* ! YYPARSE_PARAM */#if defined __STDC__ || defined __cplusplusint yyparse (void);#elseint yyparse ();#endif#endif /* ! YYPARSE_PARAM *//* The lookahead symbol. */int yychar;/* The semantic value of the lookahead symbol. */YYSTYPE yylval;/* Location data for the lookahead symbol. */YYLTYPE yylloc;/* Number of syntax errors so far. */int yynerrs;/*-------------------------.| yyparse or yypush_parse. |`-------------------------*/#ifdef YYPARSE_PARAM#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)intyyparse (void *YYPARSE_PARAM)#elseintyyparse (YYPARSE_PARAM)void *YYPARSE_PARAM;#endif#else /* ! YYPARSE_PARAM */#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)intyyparse (void)#elseintyyparse ()#endif#endif{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 thru separate pointers, to allow yyoverflowto 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[2];YYSIZE_T yystacksize;int yyn;int yyresult;/* Lookahead token as an internal (translated) token number. */int yytoken;/* The variables used to return semantic value and location from theaction 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;yytoken = 0;yyss = yyssa;yyvs = yyvsa;yyls = yylsa;yystacksize = YYINITDEPTH;YYDPRINTF ((stderr, "Starting parse\n"));yystate = 0;yyerrstatus = 0;yynerrs = 0;yychar = YYEMPTY; /* Cause a token to be read. *//* Initialize stack pointers.Waste one element of value and location stackso that they stay on the same level as the state stack.The wasted elements are never initialized. */yyssp = yyss;yyvsp = yyvs;yylsp = yyls;#if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL/* Initialize the default location before parsing starts. */yylloc.first_line = yylloc.last_line = 1;yylloc.first_column = yylloc.last_column = 1;#endifgoto yysetstate;/*------------------------------------------------------------.| yynewstate -- Push a new state, which is found in yystate. |`------------------------------------------------------------*/yynewstate:/* In all cases, when you get here, the value and location stackshave 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 ofthese so that the &'s don't force the real ones intomemory. */YYSTYPE *yyvs1 = yyvs;yytype_int16 *yyss1 = yyss;YYLTYPE *yyls1 = yyls;/* Each stack pointer address is followed by the size of thedata in use in that stack, in bytes. This used to be aconditional around just the two extra args, but that mightbe 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_RELOCATEgoto 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_RELOCATEif (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 alookahead 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 (yyn == YYPACT_NINF)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 todetect an error, take that action. */yyn += yytoken;if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)goto yydefault;yyn = yytable[yyn];if (yyn <= 0){if (yyn == 0 || yyn == YYTABLE_NINF)goto yyerrlab;yyn = -yyn;goto yyreduce;}/* Count tokens shifted since error; after three, turn off errorstatus. */if (yyerrstatus)yyerrstatus--;/* Shift the lookahead token. */YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);/* Discard the shifted token. */yychar = YYEMPTY;yystate = yyn;*++yyvsp = yylval;*++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 Bisonusers should not rely upon it. Assigning to YYVALunconditionally makes the parser a bit smaller, and it avoids aGCC 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 1464 of yacc.c */#line 248 "gram.y"{ return 0; ;}break;case 3:/* Line 1464 of yacc.c */#line 249 "gram.y"{ return xxvalue(NULL,2,NULL); ;}break;case 4:/* Line 1464 of yacc.c */#line 250 "gram.y"{ return xxvalue((yyvsp[(1) - (2)]),3,&(yylsp[(1) - (2)])); ;}break;case 5:/* Line 1464 of yacc.c */#line 251 "gram.y"{ return xxvalue((yyvsp[(1) - (2)]),4,&(yylsp[(1) - (2)])); ;}break;case 6:/* Line 1464 of yacc.c */#line 252 "gram.y"{ YYABORT; ;}break;case 7:/* Line 1464 of yacc.c */#line 255 "gram.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 8:/* Line 1464 of yacc.c */#line 256 "gram.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 9:/* Line 1464 of yacc.c */#line 259 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 10:/* Line 1464 of yacc.c */#line 262 "gram.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 11:/* Line 1464 of yacc.c */#line 263 "gram.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 12:/* Line 1464 of yacc.c */#line 264 "gram.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 13:/* Line 1464 of yacc.c */#line 265 "gram.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 14:/* Line 1464 of yacc.c */#line 267 "gram.y"{ (yyval) = xxexprlist((yyvsp[(1) - (3)]),&(yylsp[(1) - (3)]),(yyvsp[(2) - (3)])); ;}break;case 15:/* Line 1464 of yacc.c */#line 268 "gram.y"{ (yyval) = xxparen((yyvsp[(1) - (3)]),(yyvsp[(2) - (3)])); ;}break;case 16:/* Line 1464 of yacc.c */#line 270 "gram.y"{ (yyval) = xxunary((yyvsp[(1) - (2)]),(yyvsp[(2) - (2)])); ;}break;case 17:/* Line 1464 of yacc.c */#line 271 "gram.y"{ (yyval) = xxunary((yyvsp[(1) - (2)]),(yyvsp[(2) - (2)])); ;}break;case 18:/* Line 1464 of yacc.c */#line 272 "gram.y"{ (yyval) = xxunary((yyvsp[(1) - (2)]),(yyvsp[(2) - (2)])); ;}break;case 19:/* Line 1464 of yacc.c */#line 273 "gram.y"{ (yyval) = xxunary((yyvsp[(1) - (2)]),(yyvsp[(2) - (2)])); ;}break;case 20:/* Line 1464 of yacc.c */#line 274 "gram.y"{ (yyval) = xxunary((yyvsp[(1) - (2)]),(yyvsp[(2) - (2)])); ;}break;case 21:/* Line 1464 of yacc.c */#line 276 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 22:/* Line 1464 of yacc.c */#line 277 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 23:/* Line 1464 of yacc.c */#line 278 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 24:/* Line 1464 of yacc.c */#line 279 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 25:/* Line 1464 of yacc.c */#line 280 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 26:/* Line 1464 of yacc.c */#line 281 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 27:/* Line 1464 of yacc.c */#line 282 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 28:/* Line 1464 of yacc.c */#line 283 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 29:/* Line 1464 of yacc.c */#line 284 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 30:/* Line 1464 of yacc.c */#line 285 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 31:/* Line 1464 of yacc.c */#line 286 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 32:/* Line 1464 of yacc.c */#line 287 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 33:/* Line 1464 of yacc.c */#line 288 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 34:/* Line 1464 of yacc.c */#line 289 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 35:/* Line 1464 of yacc.c */#line 290 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 36:/* Line 1464 of yacc.c */#line 291 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 37:/* Line 1464 of yacc.c */#line 292 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 38:/* Line 1464 of yacc.c */#line 293 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 39:/* Line 1464 of yacc.c */#line 294 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 40:/* Line 1464 of yacc.c */#line 295 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 41:/* Line 1464 of yacc.c */#line 297 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 42:/* Line 1464 of yacc.c */#line 298 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(3) - (3)]),(yyvsp[(1) - (3)])); ;}break;case 43:/* Line 1464 of yacc.c */#line 300 "gram.y"{ (yyval) = xxdefun((yyvsp[(1) - (6)]),(yyvsp[(3) - (6)]),(yyvsp[(6) - (6)])); ;}break;case 44:/* Line 1464 of yacc.c */#line 301 "gram.y"{ (yyval) = xxfuncall((yyvsp[(1) - (4)]),(yyvsp[(3) - (4)])); ;}break;case 45:/* Line 1464 of yacc.c */#line 302 "gram.y"{ (yyval) = xxif((yyvsp[(1) - (3)]),(yyvsp[(2) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 46:/* Line 1464 of yacc.c */#line 303 "gram.y"{ (yyval) = xxifelse((yyvsp[(1) - (5)]),(yyvsp[(2) - (5)]),(yyvsp[(3) - (5)]),(yyvsp[(5) - (5)])); ;}break;case 47:/* Line 1464 of yacc.c */#line 304 "gram.y"{ (yyval) = xxfor((yyvsp[(1) - (3)]),(yyvsp[(2) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 48:/* Line 1464 of yacc.c */#line 305 "gram.y"{ (yyval) = xxwhile((yyvsp[(1) - (3)]),(yyvsp[(2) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 49:/* Line 1464 of yacc.c */#line 306 "gram.y"{ (yyval) = xxrepeat((yyvsp[(1) - (2)]),(yyvsp[(2) - (2)])); ;}break;case 50:/* Line 1464 of yacc.c */#line 307 "gram.y"{ (yyval) = xxsubscript((yyvsp[(1) - (5)]),(yyvsp[(2) - (5)]),(yyvsp[(3) - (5)])); ;}break;case 51:/* Line 1464 of yacc.c */#line 308 "gram.y"{ (yyval) = xxsubscript((yyvsp[(1) - (4)]),(yyvsp[(2) - (4)]),(yyvsp[(3) - (4)])); ;}break;case 52:/* Line 1464 of yacc.c */#line 309 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 53:/* Line 1464 of yacc.c */#line 310 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 54:/* Line 1464 of yacc.c */#line 311 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 55:/* Line 1464 of yacc.c */#line 312 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 56:/* Line 1464 of yacc.c */#line 313 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 57:/* Line 1464 of yacc.c */#line 314 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 58:/* Line 1464 of yacc.c */#line 315 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 59:/* Line 1464 of yacc.c */#line 316 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 60:/* Line 1464 of yacc.c */#line 317 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 61:/* Line 1464 of yacc.c */#line 318 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 62:/* Line 1464 of yacc.c */#line 319 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 63:/* Line 1464 of yacc.c */#line 320 "gram.y"{ (yyval) = xxbinary((yyvsp[(2) - (3)]),(yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 64:/* Line 1464 of yacc.c */#line 321 "gram.y"{ (yyval) = xxnxtbrk((yyvsp[(1) - (1)])); ;}break;case 65:/* Line 1464 of yacc.c */#line 322 "gram.y"{ (yyval) = xxnxtbrk((yyvsp[(1) - (1)])); ;}break;case 66:/* Line 1464 of yacc.c */#line 326 "gram.y"{ (yyval) = xxcond((yyvsp[(2) - (3)])); ;}break;case 67:/* Line 1464 of yacc.c */#line 329 "gram.y"{ (yyval) = xxifcond((yyvsp[(2) - (3)])); ;}break;case 68:/* Line 1464 of yacc.c */#line 332 "gram.y"{ (yyval) = xxforcond((yyvsp[(2) - (5)]),(yyvsp[(4) - (5)])); ;}break;case 69:/* Line 1464 of yacc.c */#line 336 "gram.y"{ (yyval) = xxexprlist0(); ;}break;case 70:/* Line 1464 of yacc.c */#line 337 "gram.y"{ (yyval) = xxexprlist1((yyvsp[(1) - (1)]), &(yylsp[(1) - (1)])); ;}break;case 71:/* Line 1464 of yacc.c */#line 338 "gram.y"{ (yyval) = xxexprlist2((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)]), &(yylsp[(3) - (3)])); ;}break;case 72:/* Line 1464 of yacc.c */#line 339 "gram.y"{ (yyval) = (yyvsp[(1) - (2)]); ;}break;case 73:/* Line 1464 of yacc.c */#line 340 "gram.y"{ (yyval) = xxexprlist2((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)]), &(yylsp[(3) - (3)])); ;}break;case 74:/* Line 1464 of yacc.c */#line 341 "gram.y"{ (yyval) = (yyvsp[(1) - (2)]);;}break;case 75:/* Line 1464 of yacc.c */#line 344 "gram.y"{ (yyval) = xxsublist1((yyvsp[(1) - (1)])); ;}break;case 76:/* Line 1464 of yacc.c */#line 345 "gram.y"{ (yyval) = xxsublist2((yyvsp[(1) - (4)]),(yyvsp[(4) - (4)])); ;}break;case 77:/* Line 1464 of yacc.c */#line 348 "gram.y"{ (yyval) = xxsub0(); ;}break;case 78:/* Line 1464 of yacc.c */#line 349 "gram.y"{ (yyval) = xxsub1((yyvsp[(1) - (1)]), &(yylsp[(1) - (1)])); ;}break;case 79:/* Line 1464 of yacc.c */#line 350 "gram.y"{ (yyval) = xxsymsub0((yyvsp[(1) - (2)]), &(yylsp[(1) - (2)])); ;}break;case 80:/* Line 1464 of yacc.c */#line 351 "gram.y"{ (yyval) = xxsymsub1((yyvsp[(1) - (3)]),(yyvsp[(3) - (3)]), &(yylsp[(1) - (3)])); ;}break;case 81:/* Line 1464 of yacc.c */#line 352 "gram.y"{ (yyval) = xxsymsub0((yyvsp[(1) - (2)]), &(yylsp[(1) - (2)])); ;}break;case 82:/* Line 1464 of yacc.c */#line 353 "gram.y"{ (yyval) = xxsymsub1((yyvsp[(1) - (3)]),(yyvsp[(3) - (3)]), &(yylsp[(1) - (3)])); ;}break;case 83:/* Line 1464 of yacc.c */#line 354 "gram.y"{ (yyval) = xxnullsub0(&(yylsp[(1) - (2)])); ;}break;case 84:/* Line 1464 of yacc.c */#line 355 "gram.y"{ (yyval) = xxnullsub1((yyvsp[(3) - (3)]), &(yylsp[(1) - (3)])); ;}break;case 85:/* Line 1464 of yacc.c */#line 358 "gram.y"{ (yyval) = xxnullformal(); ;}break;case 86:/* Line 1464 of yacc.c */#line 359 "gram.y"{ (yyval) = xxfirstformal0((yyvsp[(1) - (1)])); ;}break;case 87:/* Line 1464 of yacc.c */#line 360 "gram.y"{ (yyval) = xxfirstformal1((yyvsp[(1) - (3)]),(yyvsp[(3) - (3)])); ;}break;case 88:/* Line 1464 of yacc.c */#line 361 "gram.y"{ (yyval) = xxaddformal0((yyvsp[(1) - (3)]),(yyvsp[(3) - (3)]), &(yylsp[(3) - (3)])); ;}break;case 89:/* Line 1464 of yacc.c */#line 362 "gram.y"{ (yyval) = xxaddformal1((yyvsp[(1) - (5)]),(yyvsp[(3) - (5)]),(yyvsp[(5) - (5)]),&(yylsp[(3) - (5)])); ;}break;case 90:/* Line 1464 of yacc.c */#line 365 "gram.y"{ EatLines = 1; ;}break;/* Line 1464 of yacc.c */#line 2503 "gram.c"default: break;}YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);YYPOPSTACK (yylen);yylen = 0;YY_STACK_PRINT (yyss, yyssp);*++yyvsp = yyval;*++yylsp = yyloc;/* Now `shift' the result of the reduction. Determine what statethat goes to, based on the state we popped back to and the rulenumber reduced by. */yyn = yyr1[yyn];yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)yystate = yytable[yystate];elseyystate = yydefgoto[yyn - YYNTOKENS];goto yynewstate;/*------------------------------------.| yyerrlab -- here on detecting error |`------------------------------------*/yyerrlab:/* If not already recovering from an error, report this error. */if (!yyerrstatus){++yynerrs;#if ! YYERROR_VERBOSEyyerror (YY_("syntax error"));#else{YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM){YYSIZE_T yyalloc = 2 * yysize;if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))yyalloc = YYSTACK_ALLOC_MAXIMUM;if (yymsg != yymsgbuf)YYSTACK_FREE (yymsg);yymsg = (char *) YYSTACK_ALLOC (yyalloc);if (yymsg)yymsg_alloc = yyalloc;else{yymsg = yymsgbuf;yymsg_alloc = sizeof yymsgbuf;}}if (0 < yysize && yysize <= yymsg_alloc){(void) yysyntax_error (yymsg, yystate, yychar);yyerror (yymsg);}else{yyerror (YY_("syntax error"));if (yysize != 0)goto yyexhaustedlab;}}#endif}yyerror_range[0] = yylloc;if (yyerrstatus == 3){/* If just tried and failed to reuse lookahead token after anerror, discard it. */if (yychar <= YYEOF){/* Return failure if at end of input. */if (yychar == YYEOF)YYABORT;}else{yydestruct ("Error: discarding",yytoken, &yylval, &yylloc);yychar = YYEMPTY;}}/* Else will try to reuse lookahead token after shifting the errortoken. */goto yyerrlab1;/*---------------------------------------------------.| yyerrorlab -- error raised explicitly by YYERROR. |`---------------------------------------------------*/yyerrorlab:/* Pacify compilers like GCC when the user code never invokesYYERROR and the label yyerrorlab therefore never appears in usercode. */if (/*CONSTCOND*/ 0)goto yyerrorlab;yyerror_range[0] = yylsp[1-yylen];/* Do not reclaim the symbols of the rule which action triggeredthis 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 (yyn != YYPACT_NINF){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;yyerror_range[0] = *yylsp;yydestruct ("Error: popping",yystos[yystate], yyvsp, yylsp);YYPOPSTACK (1);yystate = *yyssp;YY_STACK_PRINT (yyss, yyssp);}*++yyvsp = yylval;yyerror_range[1] = yylloc;/* Using YYLLOC is tempting, but would change the location ofthe lookahead. YYLOC is available though. */YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);*++yylsp = yyloc;/* 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. */#endifyyreturn:if (yychar != YYEMPTY)yydestruct ("Cleanup: discarding lookahead",yytoken, &yylval, &yylloc);/* Do not reclaim the symbols of the rule which action triggeredthis YYABORT or YYACCEPT. */YYPOPSTACK (yylen);YY_STACK_PRINT (yyss, yyssp);while (yyssp != yyss){yydestruct ("Cleanup: popping",yystos[*yyssp], yyvsp, yylsp);YYPOPSTACK (1);}#ifndef yyoverflowif (yyss != yyssa)YYSTACK_FREE (yyss);#endif#if YYERROR_VERBOSEif (yymsg != yymsgbuf)YYSTACK_FREE (yymsg);#endif/* Make sure YYID is used. */return YYID (yyresult);}/* Line 1684 of yacc.c */#line 367 "gram.y"/*----------------------------------------------------------------------------*/static int (*ptr_getc)(void);/* Private pushback, since file ungetc only guarantees one byte.We need up to one MBCS-worth */#define PUSHBACK_BUFSIZE 16static int pushback[PUSHBACK_BUFSIZE];static unsigned int npush = 0;static int prevpos = 0;static int prevlines[PUSHBACK_BUFSIZE];static int prevcols[PUSHBACK_BUFSIZE];static int prevbytes[PUSHBACK_BUFSIZE];static int xxgetc(void){int c, oldpos;if(npush) c = pushback[--npush]; else c = ptr_getc();oldpos = prevpos;prevpos = (prevpos + 1) % PUSHBACK_BUFSIZE;prevbytes[prevpos] = ParseState.xxbyteno;prevlines[prevpos] = ParseState.xxlineno;/* We only advance the column for the 1st byte in UTF-8, so handle later bytes specially */if (0x80 <= (unsigned char)c && (unsigned char)c <= 0xBF && known_to_be_utf8) {ParseState.xxcolno--;prevcols[prevpos] = prevcols[oldpos];} elseprevcols[prevpos] = ParseState.xxcolno;if (c == EOF) {EndOfFile = 1;return R_EOF;}R_ParseContextLast = (R_ParseContextLast + 1) % PARSE_CONTEXT_SIZE;R_ParseContext[R_ParseContextLast] = c;if (c == '\n') {ParseState.xxlineno += 1;ParseState.xxcolno = 0;ParseState.xxbyteno = 0;} else {ParseState.xxcolno++;ParseState.xxbyteno++;}if (c == '\t') ParseState.xxcolno = ((ParseState.xxcolno + 7) & ~7);R_ParseContextLine = ParseState.xxlineno;if ( KeepSource && GenerateCode && FunctionLevel > 0 ) {if(SourcePtr < FunctionSource + MAXFUNSIZE)*SourcePtr++ = c;else error(_("function is too long to keep source (at line %d)"), ParseState.xxlineno);}xxcharcount++;return c;}static int xxungetc(int c){/* this assumes that c was the result of xxgetc; if not, some edits will be needed */ParseState.xxlineno = prevlines[prevpos];ParseState.xxbyteno = prevbytes[prevpos];ParseState.xxcolno = prevcols[prevpos];prevpos = (prevpos + PUSHBACK_BUFSIZE - 1) % PUSHBACK_BUFSIZE;R_ParseContextLine = ParseState.xxlineno;if ( KeepSource && GenerateCode && FunctionLevel > 0 )SourcePtr--;xxcharcount--;R_ParseContext[R_ParseContextLast] = '\0';/* precaution as to how % is implemented for < 0 numbers */R_ParseContextLast = (R_ParseContextLast + PARSE_CONTEXT_SIZE -1) % PARSE_CONTEXT_SIZE;if(npush >= PUSHBACK_BUFSIZE) return EOF;pushback[npush++] = c;return c;}static SEXP makeSrcref(YYLTYPE *lloc, SEXP srcfile){SEXP val;PROTECT(val = allocVector(INTSXP, 6));INTEGER(val)[0] = lloc->first_line;INTEGER(val)[1] = lloc->first_byte;INTEGER(val)[2] = lloc->last_line;INTEGER(val)[3] = lloc->last_byte;INTEGER(val)[4] = lloc->first_column;INTEGER(val)[5] = lloc->last_column;setAttrib(val, R_SrcfileSymbol, srcfile);setAttrib(val, R_ClassSymbol, mkString("srcref"));UNPROTECT(1);return val;}static SEXP attachSrcrefs(SEXP val, SEXP srcfile){SEXP t, srval;int n;PROTECT(val);t = CDR(SrcRefs);srval = allocVector(VECSXP, length(t));for (n = 0 ; n < LENGTH(srval) ; n++, t = CDR(t))SET_VECTOR_ELT(srval, n, CAR(t));setAttrib(val, R_SrcrefSymbol, srval);setAttrib(val, R_SrcfileSymbol, srcfile);{YYLTYPE wholeFile;wholeFile.first_line = 1;wholeFile.first_byte = 0;wholeFile.first_column = 0;wholeFile.last_line = ParseState.xxlineno;wholeFile.last_byte = ParseState.xxbyteno;wholeFile.last_column = ParseState.xxcolno;setAttrib(val, R_WholeSrcrefSymbol, makeSrcref(&wholeFile, srcfile));}UNPROTECT(1);SrcRefs = NULL;return val;}static int xxvalue(SEXP v, int k, YYLTYPE *lloc){if (k > 2) {if (ParseState.keepSrcRefs)REPROTECT(SrcRefs = GrowList(SrcRefs, makeSrcref(lloc, ParseState.SrcFile)), srindex);UNPROTECT_PTR(v);}R_CurrentExpr = v;return k;}static SEXP xxnullformal(){SEXP ans;PROTECT(ans = R_NilValue);return ans;}static SEXP xxfirstformal0(SEXP sym){SEXP ans;UNPROTECT_PTR(sym);if (GenerateCode)PROTECT(ans = FirstArg(R_MissingArg, sym));elsePROTECT(ans = R_NilValue);return ans;}static SEXP xxfirstformal1(SEXP sym, SEXP expr){SEXP ans;if (GenerateCode)PROTECT(ans = FirstArg(expr, sym));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);UNPROTECT_PTR(sym);return ans;}static SEXP xxaddformal0(SEXP formlist, SEXP sym, YYLTYPE *lloc){SEXP ans;if (GenerateCode) {CheckFormalArgs(formlist, sym, lloc);PROTECT(ans = NextArg(formlist, R_MissingArg, sym));}elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(sym);UNPROTECT_PTR(formlist);return ans;}static SEXP xxaddformal1(SEXP formlist, SEXP sym, SEXP expr, YYLTYPE *lloc){SEXP ans;if (GenerateCode) {CheckFormalArgs(formlist, sym, lloc);PROTECT(ans = NextArg(formlist, expr, sym));}elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);UNPROTECT_PTR(sym);UNPROTECT_PTR(formlist);return ans;}static SEXP xxexprlist0(void){SEXP ans;if (GenerateCode) {PROTECT(ans = NewList());if (ParseState.keepSrcRefs) {setAttrib(ans, R_SrcrefSymbol, SrcRefs);REPROTECT(SrcRefs = NewList(), srindex);}}elsePROTECT(ans = R_NilValue);return ans;}static SEXP xxexprlist1(SEXP expr, YYLTYPE *lloc){SEXP ans,tmp;if (GenerateCode) {PROTECT(tmp = NewList());if (ParseState.keepSrcRefs) {setAttrib(tmp, R_SrcrefSymbol, SrcRefs);REPROTECT(SrcRefs = NewList(), srindex);REPROTECT(SrcRefs = GrowList(SrcRefs, makeSrcref(lloc, ParseState.SrcFile)), srindex);}PROTECT(ans = GrowList(tmp, expr));UNPROTECT_PTR(tmp);}elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);return ans;}static SEXP xxexprlist2(SEXP exprlist, SEXP expr, YYLTYPE *lloc){SEXP ans;if (GenerateCode) {if (ParseState.keepSrcRefs)REPROTECT(SrcRefs = GrowList(SrcRefs, makeSrcref(lloc, ParseState.SrcFile)), srindex);PROTECT(ans = GrowList(exprlist, expr));}elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);UNPROTECT_PTR(exprlist);return ans;}static SEXP xxsub0(void){SEXP ans;if (GenerateCode)PROTECT(ans = lang2(R_MissingArg,R_NilValue));elsePROTECT(ans = R_NilValue);return ans;}static SEXP xxsub1(SEXP expr, YYLTYPE *lloc){SEXP ans;if (GenerateCode)PROTECT(ans = TagArg(expr, R_NilValue, lloc));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);return ans;}static SEXP xxsymsub0(SEXP sym, YYLTYPE *lloc){SEXP ans;if (GenerateCode)PROTECT(ans = TagArg(R_MissingArg, sym, lloc));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(sym);return ans;}static SEXP xxsymsub1(SEXP sym, SEXP expr, YYLTYPE *lloc){SEXP ans;if (GenerateCode)PROTECT(ans = TagArg(expr, sym, lloc));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);UNPROTECT_PTR(sym);return ans;}static SEXP xxnullsub0(YYLTYPE *lloc){SEXP ans;UNPROTECT_PTR(R_NilValue);if (GenerateCode)PROTECT(ans = TagArg(R_MissingArg, install("NULL"), lloc));elsePROTECT(ans = R_NilValue);return ans;}static SEXP xxnullsub1(SEXP expr, YYLTYPE *lloc){SEXP ans = install("NULL");UNPROTECT_PTR(R_NilValue);if (GenerateCode)PROTECT(ans = TagArg(expr, ans, lloc));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);return ans;}static SEXP xxsublist1(SEXP sub){SEXP ans;if (GenerateCode)PROTECT(ans = FirstArg(CAR(sub),CADR(sub)));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(sub);return ans;}static SEXP xxsublist2(SEXP sublist, SEXP sub){SEXP ans;if (GenerateCode)PROTECT(ans = NextArg(sublist, CAR(sub), CADR(sub)));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(sub);UNPROTECT_PTR(sublist);return ans;}static SEXP xxcond(SEXP expr){EatLines = 1;return expr;}static SEXP xxifcond(SEXP expr){EatLines = 1;return expr;}static SEXP xxif(SEXP ifsym, SEXP cond, SEXP expr){SEXP ans;if (GenerateCode)PROTECT(ans = lang3(ifsym, cond, expr));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);UNPROTECT_PTR(cond);return ans;}static SEXP xxifelse(SEXP ifsym, SEXP cond, SEXP ifexpr, SEXP elseexpr){SEXP ans;if( GenerateCode)PROTECT(ans = lang4(ifsym, cond, ifexpr, elseexpr));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(elseexpr);UNPROTECT_PTR(ifexpr);UNPROTECT_PTR(cond);return ans;}static SEXP xxforcond(SEXP sym, SEXP expr){SEXP ans;EatLines = 1;if (GenerateCode)PROTECT(ans = LCONS(sym, expr));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(expr);UNPROTECT_PTR(sym);return ans;}static SEXP xxfor(SEXP forsym, SEXP forcond, SEXP body){SEXP ans;if (GenerateCode)PROTECT(ans = lang4(forsym, CAR(forcond), CDR(forcond), body));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(body);UNPROTECT_PTR(forcond);return ans;}static SEXP xxwhile(SEXP whilesym, SEXP cond, SEXP body){SEXP ans;if (GenerateCode)PROTECT(ans = lang3(whilesym, cond, body));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(body);UNPROTECT_PTR(cond);return ans;}static SEXP xxrepeat(SEXP repeatsym, SEXP body){SEXP ans;if (GenerateCode)PROTECT(ans = lang2(repeatsym, body));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(body);return ans;}static SEXP xxnxtbrk(SEXP keyword){if (GenerateCode)PROTECT(keyword = lang1(keyword));elsePROTECT(keyword = R_NilValue);return keyword;}static SEXP xxfuncall(SEXP expr, SEXP args){SEXP ans, sav_expr = expr;if(GenerateCode) {if (isString(expr))expr = install(CHAR(STRING_ELT(expr, 0)));PROTECT(expr);if (length(CDR(args)) == 1 && CADR(args) == R_MissingArg && TAG(CDR(args)) == R_NilValue )ans = lang1(expr);elseans = LCONS(expr, CDR(args));UNPROTECT(1);PROTECT(ans);}else {PROTECT(ans = R_NilValue);}UNPROTECT_PTR(args);UNPROTECT_PTR(sav_expr);return ans;}static SEXP mkString2(const char *s, int len, Rboolean escaped){SEXP t;cetype_t enc = CE_NATIVE;if(known_to_be_latin1) enc= CE_LATIN1;else if(!escaped && known_to_be_utf8) enc = CE_UTF8;PROTECT(t = allocVector(STRSXP, 1));SET_STRING_ELT(t, 0, mkCharLenCE(s, len, enc));UNPROTECT(1);return t;}static SEXP xxdefun(SEXP fname, SEXP formals, SEXP body){SEXP ans;SEXP source;if (GenerateCode) {if (!KeepSource)PROTECT(source = R_NilValue);else {unsigned char *p, *p0, *end;int lines = 0, nc;/* If the function ends with an endline comment, e.g.function()print("Hey") # This commentwe need some special handling to keep it from gettingchopped off. Normally, we will have read one token toofar, which is what xxcharcount and xxcharsave keepstrack of.*/end = SourcePtr - (xxcharcount - xxcharsave);/* FIXME: this should be whitespace */for (p = end ; p < SourcePtr && (*p == ' ' || *p == '\t') ; p++);if (*p == '#') {while (p < SourcePtr && *p != '\n')p++;end = p;}for (p = FunctionStart[FunctionLevel]; p < end ; p++)if (*p == '\n') lines++;if ( *(end - 1) != '\n' ) lines++;PROTECT(source = allocVector(STRSXP, lines));p0 = FunctionStart[FunctionLevel];lines = 0;for (p = FunctionStart[FunctionLevel]; p < end ; p++)if (*p == '\n' || p == end - 1) {cetype_t enc = CE_NATIVE;nc = p - p0;if (*p != '\n') nc++;if(known_to_be_latin1) enc = CE_LATIN1;else if(known_to_be_utf8) enc = CE_UTF8;SET_STRING_ELT(source, lines++,mkCharLenCE((char *)p0, nc, enc));p0 = p + 1;}/* PrintValue(source); */}PROTECT(ans = lang4(fname, CDR(formals), body, source));UNPROTECT_PTR(source);}elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(body);UNPROTECT_PTR(formals);FunctionLevel--;return ans;}static SEXP xxunary(SEXP op, SEXP arg){SEXP ans;if (GenerateCode)PROTECT(ans = lang2(op, arg));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(arg);return ans;}static SEXP xxbinary(SEXP n1, SEXP n2, SEXP n3){SEXP ans;if (GenerateCode)PROTECT(ans = lang3(n1, n2, n3));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(n2);UNPROTECT_PTR(n3);return ans;}static SEXP xxparen(SEXP n1, SEXP n2){SEXP ans;if (GenerateCode)PROTECT(ans = lang2(n1, n2));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(n2);return ans;}/* This should probably use CONS rather than LCONS, butit shouldn't matter and we would rather not meddleSee PR#7055 */static SEXP xxsubscript(SEXP a1, SEXP a2, SEXP a3){SEXP ans;if (GenerateCode)PROTECT(ans = LCONS(a2, CONS(a1, CDR(a3))));elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(a3);UNPROTECT_PTR(a1);return ans;}static SEXP xxexprlist(SEXP a1, YYLTYPE *lloc, SEXP a2){SEXP ans;SEXP prevSrcrefs;EatLines = 0;if (GenerateCode) {SET_TYPEOF(a2, LANGSXP);SETCAR(a2, a1);if (ParseState.keepSrcRefs) {PROTECT(prevSrcrefs = getAttrib(a2, R_SrcrefSymbol));REPROTECT(SrcRefs = Insert(SrcRefs, makeSrcref(lloc, ParseState.SrcFile)), srindex);PROTECT(ans = attachSrcrefs(a2, ParseState.SrcFile));REPROTECT(SrcRefs = prevSrcrefs, srindex);/* SrcRefs got NAMED by being an attribute... */SET_NAMED(SrcRefs, 0);UNPROTECT_PTR(prevSrcrefs);}elsePROTECT(ans = a2);}elsePROTECT(ans = R_NilValue);UNPROTECT_PTR(a2);return ans;}/*--------------------------------------------------------------------------*/static SEXP TagArg(SEXP arg, SEXP tag, YYLTYPE *lloc){switch (TYPEOF(tag)) {case STRSXP:tag = install(translateChar(STRING_ELT(tag, 0)));case NILSXP:case SYMSXP:return lang2(arg, tag);default:error(_("incorrect tag type at line %d"), lloc->first_line); return R_NilValue/* -Wall */;}}/* Stretchy List Structures : Lists are created and grown using a special *//* dotted pair. The CAR of the list points to the last cons-cell in the *//* list and the CDR points to the first. The list can be extracted from *//* the pair by taking its CDR, while the CAR gives fast access to the end *//* of the list. *//* Create a stretchy-list dotted pair */static SEXP NewList(void){SEXP s = CONS(R_NilValue, R_NilValue);SETCAR(s, s);return s;}/* Add a new element at the end of a stretchy list */static SEXP GrowList(SEXP l, SEXP s){SEXP tmp;PROTECT(s);tmp = CONS(s, R_NilValue);UNPROTECT(1);SETCDR(CAR(l), tmp);SETCAR(l, tmp);return l;}/* Insert a new element at the head of a stretchy list */static SEXP Insert(SEXP l, SEXP s){SEXP tmp;PROTECT(s);tmp = CONS(s, CDR(l));UNPROTECT(1);SETCDR(l, tmp);return l;}static SEXP FirstArg(SEXP s, SEXP tag){SEXP tmp;PROTECT(s);PROTECT(tag);PROTECT(tmp = NewList());tmp = GrowList(tmp, s);SET_TAG(CAR(tmp), tag);UNPROTECT(3);return tmp;}static SEXP NextArg(SEXP l, SEXP s, SEXP tag){PROTECT(tag);PROTECT(l);l = GrowList(l, s);SET_TAG(CAR(l), tag);UNPROTECT(2);return l;}/*--------------------------------------------------------------------------*//** Parsing Entry Points:** The Following entry points provide language parsing facilities.* Note that there are separate entry points for parsing IoBuffers* (i.e. interactve use), files and R character strings.** The entry points provide the same functionality, they just* set things up in slightly different ways.** The following routines parse a single expression:*** SEXP R_Parse1File(FILE *fp, int gencode, ParseStatus *status, Rboolean first)* (used for R_ReplFile in main.c)** SEXP R_Parse1Buffer(IoBuffer *buffer, int gencode, ParseStatus *status, Rboolean first)* (used for ReplIteration and R_ReplDLLdo1 in main.c)** The success of the parse is indicated as folllows:*** status = PARSE_NULL - there was no statement to parse* PARSE_OK - complete statement* PARSE_INCOMPLETE - incomplete statement* PARSE_ERROR - syntax error* PARSE_EOF - end of file*** The following routines parse several expressions and return* their values in a single expression vector.** SEXP R_ParseFile(FILE *fp, int n, ParseStatus *status, SEXP srcfile)* (used for do_edit in file edit.c)** SEXP R_ParseVector(SEXP *text, int n, ParseStatus *status, SEXP srcfile)* (public, and used by parse(text=) in file source.c)** SEXP R_ParseBuffer(IoBuffer *buffer, int n, ParseStatus *status, SEXP prompt, SEXP srcfile)* (used by parse(file="") in file source.c)** SEXP R_ParseConn(Rconnection con, int n, ParseStatus *status, SEXP srcfile)* (used by parse(file=) in file source.c)** Here, status is 1 for a successful parse and 0 if parsing failed* for some reason.*/#define CONTEXTSTACK_SIZE 50static int SavedToken;static SEXP SavedLval;static char contextstack[CONTEXTSTACK_SIZE], *contextp;void R_InitSrcRefState(SrcRefState *state){state->keepSrcRefs = FALSE;PROTECT_WITH_INDEX(state->SrcFile = R_NilValue, &(state->SrcFileProt));state->xxlineno = 1;state->xxcolno = 0;state->xxbyteno = 0;}void R_FinalizeSrcRefState(SrcRefState *state){UNPROTECT_PTR(state->SrcFile);}static void UseSrcRefState(SrcRefState *state){if (state) {ParseState.keepSrcRefs = state->keepSrcRefs;ParseState.SrcFile = state->SrcFile;ParseState.SrcFileProt = state->SrcFileProt;ParseState.xxlineno = state->xxlineno;ParseState.xxcolno = state->xxcolno;ParseState.xxbyteno = state->xxbyteno;} elseR_InitSrcRefState(&ParseState);}static void PutSrcRefState(SrcRefState *state){if (state) {state->keepSrcRefs = ParseState.keepSrcRefs;state->SrcFile = ParseState.SrcFile;state->SrcFileProt = ParseState.SrcFileProt;state->xxlineno = ParseState.xxlineno;state->xxcolno = ParseState.xxcolno;state->xxbyteno = ParseState.xxbyteno;} elseR_FinalizeSrcRefState(&ParseState);}static void ParseInit(void){contextp = contextstack;*contextp = ' ';SavedToken = 0;SavedLval = R_NilValue;EatLines = 0;EndOfFile = 0;FunctionLevel=0;SourcePtr = FunctionSource;xxcharcount = 0;KeepSource = *LOGICAL(GetOption(install("keep.source"), R_BaseEnv));npush = 0;}static void ParseContextInit(void){R_ParseContextLast = 0;R_ParseContext[0] = '\0';}static SEXP R_Parse1(ParseStatus *status){switch(yyparse()) {case 0: /* End of file */*status = PARSE_EOF;if (EndOfFile == 2) *status = PARSE_INCOMPLETE;break;case 1: /* Syntax error / incomplete */*status = PARSE_ERROR;if (EndOfFile) *status = PARSE_INCOMPLETE;break;case 2: /* Empty Line */*status = PARSE_NULL;break;case 3: /* Valid expr '\n' terminated */case 4: /* Valid expr ';' terminated */*status = PARSE_OK;break;}return R_CurrentExpr;}static FILE *fp_parse;static int file_getc(void){return R_fgetc(fp_parse);}/* used in main.c */attribute_hiddenSEXP R_Parse1File(FILE *fp, int gencode, ParseStatus *status, SrcRefState *state){UseSrcRefState(state);ParseInit();ParseContextInit();GenerateCode = gencode;fp_parse = fp;ptr_getc = file_getc;R_Parse1(status);PutSrcRefState(state);return R_CurrentExpr;}static IoBuffer *iob;static int buffer_getc(void){return R_IoBufferGetc(iob);}/* Used only in main.c */attribute_hiddenSEXP R_Parse1Buffer(IoBuffer *buffer, int gencode, ParseStatus *status,SrcRefState *state){UseSrcRefState(state);ParseInit();ParseContextInit();GenerateCode = gencode;iob = buffer;ptr_getc = buffer_getc;R_Parse1(status);PutSrcRefState(state);return R_CurrentExpr;}static TextBuffer *txtb;static int text_getc(void){return R_TextBufferGetc(txtb);}static SEXP R_Parse(int n, ParseStatus *status, SEXP srcfile){volatile int savestack;int i;SEXP t, rval;R_InitSrcRefState(&ParseState);ParseContextInit();savestack = R_PPStackTop;PROTECT(t = NewList());REPROTECT(ParseState.SrcFile = srcfile, ParseState.SrcFileProt);if (!isNull(ParseState.SrcFile)) {ParseState.keepSrcRefs = TRUE;PROTECT_WITH_INDEX(SrcRefs = NewList(), &srindex);}for(i = 0; ; ) {if(n >= 0 && i >= n) break;ParseInit();rval = R_Parse1(status);switch(*status) {case PARSE_NULL:break;case PARSE_OK:t = GrowList(t, rval);i++;break;case PARSE_INCOMPLETE:case PARSE_ERROR:R_PPStackTop = savestack;R_FinalizeSrcRefState(&ParseState);return R_NilValue;break;case PARSE_EOF:goto finish;break;}}finish:t = CDR(t);rval = allocVector(EXPRSXP, length(t));for (n = 0 ; n < LENGTH(rval) ; n++, t = CDR(t))SET_VECTOR_ELT(rval, n, CAR(t));if (ParseState.keepSrcRefs)rval = attachSrcrefs(rval, ParseState.SrcFile);R_PPStackTop = savestack;R_FinalizeSrcRefState(&ParseState);*status = PARSE_OK;return rval;}/* used in edit.c */attribute_hiddenSEXP R_ParseFile(FILE *fp, int n, ParseStatus *status, SEXP srcfile){GenerateCode = 1;fp_parse = fp;ptr_getc = file_getc;return R_Parse(n, status, srcfile);}#include "Rconnections.h"static Rconnection con_parse;/* need to handle incomplete last line */static int con_getc(void){int c;static int last=-1000;c = Rconn_fgetc(con_parse);if (c == EOF && last != '\n') c = '\n';return (last = c);}/* used in source.c */attribute_hiddenSEXP R_ParseConn(Rconnection con, int n, ParseStatus *status, SEXP srcfile){GenerateCode = 1;con_parse = con;ptr_getc = con_getc;return R_Parse(n, status, srcfile);}/* This one is public, and used in source.c */SEXP R_ParseVector(SEXP text, int n, ParseStatus *status, SEXP srcfile){SEXP rval;TextBuffer textb;R_TextBufferInit(&textb, text);txtb = &textb;GenerateCode = 1;ptr_getc = text_getc;rval = R_Parse(n, status, srcfile);R_TextBufferFree(&textb);return rval;}static const char *Prompt(SEXP prompt, int type){if(type == 1) {if(length(prompt) <= 0) {return CHAR(STRING_ELT(GetOption(install("prompt"),R_BaseEnv), 0));}elsereturn CHAR(STRING_ELT(prompt, 0));}else {return CHAR(STRING_ELT(GetOption(install("continue"),R_BaseEnv), 0));}}/* used in source.c */attribute_hiddenSEXP R_ParseBuffer(IoBuffer *buffer, int n, ParseStatus *status, SEXP prompt,SEXP srcfile){SEXP rval, t;char *bufp, buf[CONSOLE_BUFFER_SIZE];int c, i, prompt_type = 1;volatile int savestack;R_IoBufferWriteReset(buffer);buf[0] = '\0';bufp = buf;R_InitSrcRefState(&ParseState);savestack = R_PPStackTop;PROTECT(t = NewList());GenerateCode = 1;iob = buffer;ptr_getc = buffer_getc;REPROTECT(ParseState.SrcFile = srcfile, ParseState.SrcFileProt);if (!isNull(ParseState.SrcFile)) {ParseState.keepSrcRefs = TRUE;PROTECT_WITH_INDEX(SrcRefs = NewList(), &srindex);}for(i = 0; ; ) {if(n >= 0 && i >= n) break;if (!*bufp) {if(R_ReadConsole((char *) Prompt(prompt, prompt_type),(unsigned char *)buf, CONSOLE_BUFFER_SIZE, 1) == 0)goto finish;bufp = buf;}while ((c = *bufp++)) {R_IoBufferPutc(c, buffer);if (c == ';' || c == '\n') break;}/* Was a call to R_Parse1Buffer, but we don't want to resetxxlineno and xxcolno */ParseInit();ParseContextInit();R_Parse1(status);rval = R_CurrentExpr;switch(*status) {case PARSE_NULL:break;case PARSE_OK:t = GrowList(t, rval);i++;break;case PARSE_INCOMPLETE:case PARSE_ERROR:R_IoBufferWriteReset(buffer);R_PPStackTop = savestack;R_FinalizeSrcRefState(&ParseState);return R_NilValue;break;case PARSE_EOF:goto finish;break;}}finish:R_IoBufferWriteReset(buffer);t = CDR(t);rval = allocVector(EXPRSXP, length(t));for (n = 0 ; n < LENGTH(rval) ; n++, t = CDR(t))SET_VECTOR_ELT(rval, n, CAR(t));if (ParseState.keepSrcRefs) {rval = attachSrcrefs(rval, ParseState.SrcFile);}R_PPStackTop = savestack;R_FinalizeSrcRefState(&ParseState);*status = PARSE_OK;return rval;}/*----------------------------------------------------------------------------** The Lexical Analyzer:** Basic lexical analysis is performed by the following* routines. Input is read a line at a time, and, if the* program is in batch mode, each input line is echoed to* standard output after it is read.** The function yylex() scans the input, breaking it into* tokens which are then passed to the parser. The lexical* analyser maintains a symbol table (in a very messy fashion).** The fact that if statements need to parse differently* depending on whether the statement is being interpreted or* part of the body of a function causes the need for ifpop* and IfPush. When an if statement is encountered an 'i' is* pushed on a stack (provided there are parentheses active).* At later points this 'i' needs to be popped off of the if* stack.**/static void IfPush(void){if (*contextp==LBRACE ||*contextp=='[' ||*contextp=='(' ||*contextp == 'i') {if(contextp - contextstack >= CONTEXTSTACK_SIZE)error(_("contextstack overflow"));*++contextp = 'i';}}static void ifpop(void){if (*contextp=='i')*contextp-- = 0;}/* This is only called following ., so we only care if it isan ANSI digit or not */static int typeofnext(void){int k, c;c = xxgetc();if (isdigit(c)) k = 1; else k = 2;xxungetc(c);return k;}static int nextchar(int expect){int c = xxgetc();if (c == expect)return 1;elsexxungetc(c);return 0;}/* Special Symbols *//* Syntactic Keywords + Symbolic Constants */struct {char *name;int token;}static keywords[] = {{ "NULL", NULL_CONST },{ "NA", NUM_CONST },{ "TRUE", NUM_CONST },{ "FALSE", NUM_CONST },{ "Inf", NUM_CONST },{ "NaN", NUM_CONST },{ "NA_integer_", NUM_CONST },{ "NA_real_", NUM_CONST },{ "NA_character_", NUM_CONST },{ "NA_complex_", NUM_CONST },{ "function", FUNCTION },{ "while", WHILE },{ "repeat", REPEAT },{ "for", FOR },{ "if", IF },{ "in", IN },{ "else", ELSE },{ "next", NEXT },{ "break", BREAK },{ "...", SYMBOL },{ 0, 0 }};/* KeywordLookup has side effects, it sets yylval */static int KeywordLookup(const char *s){int i;for (i = 0; keywords[i].name; i++) {if (strcmp(keywords[i].name, s) == 0) {switch (keywords[i].token) {case NULL_CONST:PROTECT(yylval = R_NilValue);break;case NUM_CONST:if(GenerateCode) {switch(i) {case 1:PROTECT(yylval = mkNA());break;case 2:PROTECT(yylval = mkTrue());break;case 3:PROTECT(yylval = mkFalse());break;case 4:PROTECT(yylval = allocVector(REALSXP, 1));REAL(yylval)[0] = R_PosInf;break;case 5:PROTECT(yylval = allocVector(REALSXP, 1));REAL(yylval)[0] = R_NaN;break;case 6:PROTECT(yylval = allocVector(INTSXP, 1));INTEGER(yylval)[0] = NA_INTEGER;break;case 7:PROTECT(yylval = allocVector(REALSXP, 1));REAL(yylval)[0] = NA_REAL;break;case 8:PROTECT(yylval = allocVector(STRSXP, 1));SET_STRING_ELT(yylval, 0, NA_STRING);break;case 9:PROTECT(yylval = allocVector(CPLXSXP, 1));COMPLEX(yylval)[0].r = COMPLEX(yylval)[0].i = NA_REAL;break;}} elsePROTECT(yylval = R_NilValue);break;case FUNCTION:case WHILE:case REPEAT:case FOR:case IF:case NEXT:case BREAK:yylval = install(s);break;case IN:case ELSE:break;case SYMBOL:PROTECT(yylval = install(s));break;}return keywords[i].token;}}return 0;}static SEXP mkFloat(const char *s){return ScalarReal(R_atof(s));}static SEXP mkInt(const char *s){double f = R_atof(s); /* or R_strtol? */return ScalarInteger((int) f);}static SEXP mkComplex(const char *s){SEXP t = R_NilValue;double f;f = R_atof(s); /* FIXME: make certain the value is legitimate. */if(GenerateCode) {t = allocVector(CPLXSXP, 1);COMPLEX(t)[0].r = 0;COMPLEX(t)[0].i = f;}return t;}static SEXP mkNA(void){SEXP t = allocVector(LGLSXP, 1);LOGICAL(t)[0] = NA_LOGICAL;return t;}SEXP mkTrue(void){SEXP s = allocVector(LGLSXP, 1);LOGICAL(s)[0] = 1;return s;}SEXP mkFalse(void){SEXP s = allocVector(LGLSXP, 1);LOGICAL(s)[0] = 0;return s;}static void yyerror(char *s){static const char *const yytname_translations[] ={/* the left column are strings coming from bison, the rightcolumn are translations for users.The first YYENGLISH from the right column are English to be translated,the rest are to be copied literally. The #if 0 block below allows xgettextto see these.*/#define YYENGLISH 8"$undefined", "input","END_OF_INPUT", "end of input","ERROR", "input","STR_CONST", "string constant","NUM_CONST", "numeric constant","SYMBOL", "symbol","LEFT_ASSIGN", "assignment","'\\n'", "end of line","NULL_CONST", "'NULL'","FUNCTION", "'function'","EQ_ASSIGN", "'='","RIGHT_ASSIGN", "'->'","LBB", "'[['","FOR", "'for'","IN", "'in'","IF", "'if'","ELSE", "'else'","WHILE", "'while'","NEXT", "'next'","BREAK", "'break'","REPEAT", "'repeat'","GT", "'>'","GE", "'>='","LT", "'<'","LE", "'<='","EQ", "'=='","NE", "'!='","AND", "'&'","OR", "'|'","AND2", "'&&'","OR2", "'||'","NS_GET", "'::'","NS_GET_INT", "':::'",0};static char const yyunexpected[] = "syntax error, unexpected ";static char const yyexpecting[] = ", expecting ";char *expecting;#if 0/* these are just here to trigger the internationalization */_("input");_("end of input");_("string constant");_("numeric constant");_("symbol");_("assignment");_("end of line");#endifR_ParseError = yylloc.first_line;R_ParseErrorCol = yylloc.first_column;R_ParseErrorFile = ParseState.SrcFile;if (!strncmp(s, yyunexpected, sizeof yyunexpected -1)) {int i;/* Edit the error message */expecting = strstr(s + sizeof yyunexpected -1, yyexpecting);if (expecting) *expecting = '\0';for (i = 0; yytname_translations[i]; i += 2) {if (!strcmp(s + sizeof yyunexpected - 1, yytname_translations[i])) {sprintf(R_ParseErrorMsg, _("unexpected %s"),i/2 < YYENGLISH ? _(yytname_translations[i+1]): yytname_translations[i+1]);return;}}sprintf(R_ParseErrorMsg, _("unexpected %s"), s + sizeof yyunexpected - 1);} else {strncpy(R_ParseErrorMsg, s, PARSE_ERROR_SIZE - 1);}}static void CheckFormalArgs(SEXP formlist, SEXP _new, YYLTYPE *lloc){while (formlist != R_NilValue) {if (TAG(formlist) == _new) {error(_("Repeated formal argument '%s' on line %d"), CHAR(PRINTNAME(_new)),lloc->first_line);}formlist = CDR(formlist);}}/* This is used as the buffer for NumericValue, SpecialValue andSymbolValue. None of these could conceivably need 8192 bytes.It has not been used as the buffer for input character stringssince Oct 2007 (released as 2.7.0), and for comments since 2.8.0*/static char yytext[MAXELTSIZE];#define DECLARE_YYTEXT_BUFP(bp) char *bp = yytext#define YYTEXT_PUSH(c, bp) do { \if ((bp) - yytext >= sizeof(yytext) - 1) \error(_("input buffer overflow at line %d"), ParseState.xxlineno); \*(bp)++ = (c); \} while(0)static int SkipSpace(void){int c;#ifdef Win32if(!mbcslocale) { /* 0xa0 is NBSP in all 8-bit Windows locales */while ((c = xxgetc()) == ' ' || c == '\t' || c == '\f' ||(unsigned int) c == 0xa0) ;return c;} else {int i, clen;wchar_t wc;while (1) {c = xxgetc();if (c == ' ' || c == '\t' || c == '\f') continue;if (c == '\n' || c == R_EOF) break;if ((unsigned int) c < 0x80) break;clen = mbcs_get_next(c, &wc); /* always 2 */if(! Ri18n_iswctype(wc, Ri18n_wctype("blank")) ) break;for(i = 1; i < clen; i++) c = xxgetc();}return c;}#endif#if defined(__STDC_ISO_10646__)if(mbcslocale) { /* wctype functions need Unicode wchar_t */int i, clen;wchar_t wc;while (1) {c = xxgetc();if (c == ' ' || c == '\t' || c == '\f') continue;if (c == '\n' || c == R_EOF) break;if ((unsigned int) c < 0x80) break;clen = mbcs_get_next(c, &wc);if(! Ri18n_iswctype(wc, Ri18n_wctype("blank")) ) break;for(i = 1; i < clen; i++) c = xxgetc();}} else#endifwhile ((c = xxgetc()) == ' ' || c == '\t' || c == '\f') ;return c;}/* Note that with interactive use, EOF cannot occur inside *//* a comment. However, semicolons inside comments make it *//* appear that this does happen. For this reason we use the *//* special assignment EndOfFile=2 to indicate that this is *//* going on. This is detected and dealt with in Parse1Buffer. */static int SkipComment(void){int c='#', i;Rboolean maybeLine = (ParseState.xxcolno == 1);if (maybeLine) {char lineDirective[] = "#line";for (i=1; i<5; i++) {c = xxgetc();if (c != (int)(lineDirective[i])) {maybeLine = FALSE;break;}}if (maybeLine)c = processLineDirective();}while (c != '\n' && c != R_EOF)c = xxgetc();if (c == R_EOF) EndOfFile = 2;return c;}static int NumericValue(int c){int seendot = (c == '.');int seenexp = 0;int last = c;int nd = 0;int asNumeric = 0;DECLARE_YYTEXT_BUFP(yyp);YYTEXT_PUSH(c, yyp);/* We don't care about other than ASCII digits */while (isdigit(c = xxgetc()) || c == '.' || c == 'e' || c == 'E'|| c == 'x' || c == 'X' || c == 'L'){if (c == 'L') /* must be at the end. Won't allow 1Le3 (at present). */break;if (c == 'x' || c == 'X') {if (last != '0') break;YYTEXT_PUSH(c, yyp);while(isdigit(c = xxgetc()) || ('a' <= c && c <= 'f') ||('A' <= c && c <= 'F') || c == '.') {YYTEXT_PUSH(c, yyp);nd++;}if (nd == 0) return ERROR;if (c == 'p' || c == 'P') {YYTEXT_PUSH(c, yyp);c = xxgetc();if (!isdigit(c) && c != '+' && c != '-') return ERROR;if (c == '+' || c == '-') {YYTEXT_PUSH(c, yyp);c = xxgetc();}for(nd = 0; isdigit(c); c = xxgetc(), nd++)YYTEXT_PUSH(c, yyp);if (nd == 0) return ERROR;}break;}if (c == 'E' || c == 'e') {if (seenexp)break;seenexp = 1;seendot = seendot == 1 ? seendot : 2;YYTEXT_PUSH(c, yyp);c = xxgetc();if (!isdigit(c) && c != '+' && c != '-') return ERROR;if (c == '+' || c == '-') {YYTEXT_PUSH(c, yyp);c = xxgetc();if (!isdigit(c)) return ERROR;}}if (c == '.') {if (seendot)break;seendot = 1;}YYTEXT_PUSH(c, yyp);last = c;}YYTEXT_PUSH('\0', yyp);/* Make certain that things are okay. */if(c == 'L') {double a = R_atof(yytext);int b = (int) a;/* We are asked to create an integer via the L, so we check that thedouble and int values are the same. If not, this is a problem and wewill not lose information and so use the numeric value.*/if(a != (double) b) {if(GenerateCode) {if(seendot == 1 && seenexp == 0)warning(_("integer literal %sL contains decimal; using numeric value"), yytext);elsewarning(_("non-integer value %s qualified with L; using numeric value"), yytext);}asNumeric = 1;seenexp = 1;}}if(c == 'i') {yylval = GenerateCode ? mkComplex(yytext) : R_NilValue;} else if(c == 'L' && asNumeric == 0) {if(GenerateCode && seendot == 1 && seenexp == 0)warning(_("integer literal %sL contains unnecessary decimal point"), yytext);yylval = GenerateCode ? mkInt(yytext) : R_NilValue;#if 0 /* do this to make 123 integer not double */} else if(!(seendot || seenexp)) {if(c != 'L') xxungetc(c);if (GenerateCode) {double a = R_atof(yytext);int b = (int) a;yylval = (a != (double) b) ? mkFloat(yytext) : mkInt(yytext);} else yylval = R_NilValue;#endif} else {if(c != 'L')xxungetc(c);yylval = GenerateCode ? mkFloat(yytext) : R_NilValue;}PROTECT(yylval);return NUM_CONST;}/* Strings may contain the standard ANSI escapes and octal *//* specifications of the form \o, \oo or \ooo, where 'o' *//* is an octal digit. */#define STEXT_PUSH(c) do { \unsigned int nc = bp - stext; \if (nc >= nstext - 1) { \char *old = stext; \nstext *= 2; \stext = malloc(nstext); \if(!stext) error(_("unable to allocate buffer for long string at line %d"), ParseState.xxlineno);\memmove(stext, old, nc); \if(old != st0) free(old); \bp = stext+nc; } \*bp++ = (c); \} while(0)/* The idea here is that if a string contains \u escapes that are notvalid in the current locale, we should switch to UTF-8 for thatstring. Needs Unicode wide-char support.*/#if defined(__APPLE_CC__)/* This may not be 100% true (see the comment in rlocales.h),but it seems true in normal locales */# define __STDC_ISO_10646__#endif#if defined(Win32) || defined(__STDC_ISO_10646__)typedef wchar_t ucs_t;# define mbcs_get_next2 mbcs_get_next#elsetypedef unsigned int ucs_t;# define WC_NOT_UNICODEstatic int mbcs_get_next2(int c, ucs_t *wc){int i, res, clen = 1; char s[9];s[0] = c;/* This assumes (probably OK) that all MBCS embed ASCII as single-bytelead bytes, including control chars */if((unsigned int) c < 0x80) {*wc = (wchar_t) c;return 1;}if(utf8locale) {clen = utf8clen(c);for(i = 1; i < clen; i++) {s[i] = xxgetc();if(s[i] == R_EOF) error(_("EOF whilst reading MBCS char at line %d"), ParseState.xxlineno);}s[clen] ='\0'; /* x86 Solaris requires this */res = mbtoucs(wc, s, clen);if(res == -1) error(_("invalid multibyte character in parser at line %d"), ParseState.xxlineno);} else {/* This is not necessarily correct for stateful MBCS */while(clen <= MB_CUR_MAX) {res = mbtoucs(wc, s, clen);if(res >= 0) break;if(res == -1)error(_("invalid multibyte character in parser at line %d"), ParseState.xxlineno);/* so res == -2 */c = xxgetc();if(c == R_EOF) error(_("EOF whilst reading MBCS char at line %d"), ParseState.xxlineno);s[clen++] = c;} /* we've tried enough, so must be complete or invalid by now */}for(i = clen - 1; i > 0; i--) xxungetc(s[i]);return clen;}#endif#define WTEXT_PUSH(c) do { if(wcnt < 10000) wcs[wcnt++] = c; } while(0)static SEXP mkStringUTF8(const ucs_t *wcs, int cnt){SEXP t;int nb;/* NB: cnt includes the terminator */#ifdef Win32nb = cnt*4; /* UCS-2/UTF-16 so max 4 bytes per wchar_t */#elsenb = cnt*6;#endifchar s[nb];R_CheckStack();memset(s, 0, nb); /* safety */#ifdef WC_NOT_UNICODE{char *ss;for(ss = s; *wcs; wcs++) ss += ucstoutf8(ss, *wcs);}#elsewcstoutf8(s, wcs, nb);#endifPROTECT(t = allocVector(STRSXP, 1));SET_STRING_ELT(t, 0, mkCharCE(s, CE_UTF8));UNPROTECT(1);return t;}#define CTEXT_PUSH(c) do { \if (ct - currtext >= 1000) {memmove(currtext, currtext+100, 901); memmove(currtext, "... ", 4); ct -= 100;} \*ct++ = (c); \} while(0)#define CTEXT_POP() ct--/* forSymbol is true when parsing backticked symbols */static int StringValue(int c, Rboolean forSymbol){int quote = c;char currtext[1010], *ct = currtext;char st0[MAXELTSIZE];unsigned int nstext = MAXELTSIZE;char *stext = st0, *bp = st0;int wcnt = 0;ucs_t wcs[10001];Rboolean oct_or_hex = FALSE, use_wcs = FALSE;while ((c = xxgetc()) != R_EOF && c != quote) {CTEXT_PUSH(c);if (c == '\n') {xxungetc(c);/* Fix suggested by Mark Bravington to allow multiline strings* by pretending we've seen a backslash. Was:* return ERROR;*/c = '\\';}if (c == '\\') {c = xxgetc(); CTEXT_PUSH(c);if ('0' <= c && c <= '8') {int octal = c - '0';if ('0' <= (c = xxgetc()) && c <= '8') {CTEXT_PUSH(c);octal = 8 * octal + c - '0';if ('0' <= (c = xxgetc()) && c <= '8') {CTEXT_PUSH(c);octal = 8 * octal + c - '0';} else {xxungetc(c);CTEXT_POP();}} else {xxungetc(c);CTEXT_POP();}c = octal;oct_or_hex = TRUE;}else if(c == 'x') {int val = 0; int i, ext;for(i = 0; i < 2; i++) {c = xxgetc(); CTEXT_PUSH(c);if(c >= '0' && c <= '9') ext = c - '0';else if (c >= 'A' && c <= 'F') ext = c - 'A' + 10;else if (c >= 'a' && c <= 'f') ext = c - 'a' + 10;else {xxungetc(c);CTEXT_POP();if (i == 0) { /* was just \x */*ct = '\0';errorcall(R_NilValue, _("'\\x' used without hex digits in character string starting \"%s\""), currtext);}break;}val = 16*val + ext;}c = val;oct_or_hex = TRUE;}else if(c == 'u') {unsigned int val = 0; int i, ext;Rboolean delim = FALSE;if(forSymbol)error(_("\\uxxxx sequences not supported inside backticks (line %d)"), ParseState.xxlineno);if((c = xxgetc()) == '{') {delim = TRUE;CTEXT_PUSH(c);} else xxungetc(c);for(i = 0; i < 4; i++) {c = xxgetc(); CTEXT_PUSH(c);if(c >= '0' && c <= '9') ext = c - '0';else if (c >= 'A' && c <= 'F') ext = c - 'A' + 10;else if (c >= 'a' && c <= 'f') ext = c - 'a' + 10;else {xxungetc(c);CTEXT_POP();if (i == 0) { /* was just \u */*ct = '\0';errorcall(R_NilValue, _("'\\u' used without hex digits in character string starting \"%s\""), currtext);}break;}val = 16*val + ext;}if(delim) {if((c = xxgetc()) != '}')error(_("invalid \\u{xxxx} sequence (line %d)"),ParseState.xxlineno);else CTEXT_PUSH(c);}WTEXT_PUSH(val); /* this assumes wchar_t is Unicode */use_wcs = TRUE;continue;}else if(c == 'U') {unsigned int val = 0; int i, ext;Rboolean delim = FALSE;if(forSymbol)error(_("\\Uxxxxxxxx sequences not supported inside backticks (line %d)"), ParseState.xxlineno);if((c = xxgetc()) == '{') {delim = TRUE;CTEXT_PUSH(c);} else xxungetc(c);for(i = 0; i < 8; i++) {c = xxgetc(); CTEXT_PUSH(c);if(c >= '0' && c <= '9') ext = c - '0';else if (c >= 'A' && c <= 'F') ext = c - 'A' + 10;else if (c >= 'a' && c <= 'f') ext = c - 'a' + 10;else {xxungetc(c);CTEXT_POP();if (i == 0) { /* was just \U */*ct = '\0';errorcall(R_NilValue, _("'\\U' used without hex digits in character string starting \"%s\""), currtext);}break;}val = 16*val + ext;}if(delim) {if((c = xxgetc()) != '}')error(_("invalid \\U{xxxxxxxx} sequence (line %d)"), ParseState.xxlineno);else CTEXT_PUSH(c);}WTEXT_PUSH(val);use_wcs = TRUE;continue;}else {switch (c) {case 'a':c = '\a';break;case 'b':c = '\b';break;case 'f':c = '\f';break;case 'n':c = '\n';break;case 'r':c = '\r';break;case 't':c = '\t';break;case 'v':c = '\v';break;case '\\':c = '\\';break;case '"':case '\'':case ' ':case '\n':break;default:*ct = '\0';errorcall(R_NilValue, _("'\\%c' is an unrecognized escape in character string starting \"%s\""), c, currtext);}}} else if(mbcslocale) {int i, clen;ucs_t wc;clen = mbcs_get_next2(c, &wc);WTEXT_PUSH(wc);for(i = 0; i < clen - 1; i++){STEXT_PUSH(c);c = xxgetc();if (c == R_EOF) break;CTEXT_PUSH(c);if (c == '\n') {xxungetc(c); CTEXT_POP();c = '\\';}}if (c == R_EOF) break;STEXT_PUSH(c);continue;}STEXT_PUSH(c);if ((unsigned int) c < 0x80) WTEXT_PUSH(c);else { /* have an 8-bit char in the current encoding */#ifdef WC_NOT_UNICODEucs_t wc;char s[2] = " ";s[0] = c;mbtoucs(&wc, s, 2);#elsewchar_t wc;char s[2] = " ";s[0] = c;mbrtowc(&wc, s, 2, NULL);#endifWTEXT_PUSH(wc);}}STEXT_PUSH('\0');WTEXT_PUSH(0);if(forSymbol) {PROTECT(yylval = install(stext));if(stext != st0) free(stext);return SYMBOL;} else {if(use_wcs) {if(oct_or_hex)error(_("mixing Unicode and octal/hex escapes in a string is not allowed"));if(wcnt < 10000)PROTECT(yylval = mkStringUTF8(wcs, wcnt)); /* include terminator */elseerror(_("string at line %d containing Unicode escapes not in this locale\nis too long (max 10000 chars)"), ParseState.xxlineno);} elsePROTECT(yylval = mkString2(stext, bp - stext - 1, oct_or_hex));if(stext != st0) free(stext);return STR_CONST;}}static int SpecialValue(int c){DECLARE_YYTEXT_BUFP(yyp);YYTEXT_PUSH(c, yyp);while ((c = xxgetc()) != R_EOF && c != '%') {if (c == '\n') {xxungetc(c);return ERROR;}YYTEXT_PUSH(c, yyp);}if (c == '%')YYTEXT_PUSH(c, yyp);YYTEXT_PUSH('\0', yyp);yylval = install(yytext);return SPECIAL;}/* return 1 if name is a valid name 0 otherwise */int isValidName(const char *name){const char *p = name;int i;if(mbcslocale) {/* the only way to establish which chars are alpha etc is touse the wchar variants */int n = strlen(name), used;wchar_t wc;used = Mbrtowc(&wc, p, n, NULL); p += used; n -= used;if(used == 0) return 0;if (wc != L'.' && !iswalpha(wc) ) return 0;if (wc == L'.') {/* We don't care about other than ASCII digits */if(isdigit(0xff & (int)*p)) return 0;/* Mbrtowc(&wc, p, n, NULL); if(iswdigit(wc)) return 0; */}while((used = Mbrtowc(&wc, p, n, NULL))) {if (!(iswalnum(wc) || wc == L'.' || wc == L'_')) break;p += used; n -= used;}if (*p != '\0') return 0;} else {int c = 0xff & *p++;if (c != '.' && !isalpha(c) ) return 0;if (c == '.' && isdigit(0xff & (int)*p)) return 0;while ( c = 0xff & *p++, (isalnum(c) || c == '.' || c == '_') ) ;if (c != '\0') return 0;}if (strcmp(name, "...") == 0) return 1;for (i = 0; keywords[i].name != NULL; i++)if (strcmp(keywords[i].name, name) == 0) return 0;return 1;}static int SymbolValue(int c){int kw;DECLARE_YYTEXT_BUFP(yyp);if(mbcslocale) {wchar_t wc; int i, clen;clen = mbcs_get_next(c, &wc);while(1) {/* at this point we have seen one char, so push its bytesand get one more */for(i = 0; i < clen; i++) {YYTEXT_PUSH(c, yyp);c = xxgetc();}if(c == R_EOF) break;if(c == '.' || c == '_') {clen = 1;continue;}clen = mbcs_get_next(c, &wc);if(!iswalnum(wc)) break;}} elsedo {YYTEXT_PUSH(c, yyp);} while ((c = xxgetc()) != R_EOF &&(isalnum(c) || c == '.' || c == '_'));xxungetc(c);YYTEXT_PUSH('\0', yyp);if ((kw = KeywordLookup(yytext))) {if ( kw == FUNCTION ) {if (FunctionLevel >= MAXNEST)error(_("functions nested too deeply in source code at line %d"), ParseState.xxlineno);if ( FunctionLevel++ == 0 && GenerateCode) {strcpy((char *)FunctionSource, "function");SourcePtr = FunctionSource + 8;}FunctionStart[FunctionLevel] = SourcePtr - 8;#if 0printf("%d,%d\n", SourcePtr - FunctionSource, FunctionLevel);#endif}return kw;}PROTECT(yylval = install(yytext));return SYMBOL;}static void setParseFilename(SEXP newname) {if (isEnvironment(ParseState.SrcFile)) {SEXP oldname = findVar(install("filename"), ParseState.SrcFile);if (isString(oldname) && length(oldname) > 0 &&strcmp(CHAR(STRING_ELT(oldname, 0)),CHAR(STRING_ELT(newname, 0))) == 0) return;}REPROTECT(ParseState.SrcFile = NewEnvironment(R_NilValue, R_NilValue, R_EmptyEnv), ParseState.SrcFileProt);defineVar(install("filename"), newname, ParseState.SrcFile);setAttrib(ParseState.SrcFile, R_ClassSymbol, mkString("srcfile"));UNPROTECT_PTR(newname);}static int processLineDirective(){int c, tok, linenumber;c = SkipSpace();if (!isdigit(c)) return(c);tok = NumericValue(c);linenumber = atoi(yytext);c = SkipSpace();if (c == '"')tok = StringValue(c, FALSE);elsexxungetc(c);if (tok == STR_CONST)setParseFilename(yylval);while ((c = xxgetc()) != '\n' && c != R_EOF) /* skip */ ;ParseState.xxlineno = linenumber;R_ParseContext[R_ParseContextLast] = '\0'; /* Context report shouldn't show the directive */return(c);}/* Split the input stream into tokens. *//* This is the lowest of the parsing levels. */static int token(void){int c;wchar_t wc;if (SavedToken) {c = SavedToken;yylval = SavedLval;SavedLval = R_NilValue;SavedToken = 0;yylloc.first_line = xxlinesave;yylloc.first_column = xxcolsave;yylloc.first_byte = xxbytesave;return c;}xxcharsave = xxcharcount; /* want to be able to go back one token */c = SkipSpace();if (c == '#') c = SkipComment();yylloc.first_line = ParseState.xxlineno;yylloc.first_column = ParseState.xxcolno;yylloc.first_byte = ParseState.xxbyteno;if (c == R_EOF) return END_OF_INPUT;/* Either digits or symbols can start with a "." *//* so we need to decide which it is and jump to *//* the correct spot. */if (c == '.' && typeofnext() >= 2) goto symbol;/* literal numbers */if (c == '.') return NumericValue(c);/* We don't care about other than ASCII digits */if (isdigit(c)) return NumericValue(c);/* literal strings */if (c == '\"' || c == '\'')return StringValue(c, FALSE);/* special functions */if (c == '%')return SpecialValue(c);/* functions, constants and variables */if (c == '`')return StringValue(c, TRUE);symbol:if (c == '.') return SymbolValue(c);if(mbcslocale) {mbcs_get_next(c, &wc);if (iswalpha(wc)) return SymbolValue(c);} elseif (isalpha(c)) return SymbolValue(c);/* compound tokens */switch (c) {case '<':if (nextchar('=')) {yylval = install("<=");return LE;}if (nextchar('-')) {yylval = install("<-");return LEFT_ASSIGN;}if (nextchar('<')) {if (nextchar('-')) {yylval = install("<<-");return LEFT_ASSIGN;}elsereturn ERROR;}yylval = install("<");return LT;case '-':if (nextchar('>')) {if (nextchar('>')) {yylval = install("<<-");return RIGHT_ASSIGN;}else {yylval = install("<-");return RIGHT_ASSIGN;}}yylval = install("-");return '-';case '>':if (nextchar('=')) {yylval = install(">=");return GE;}yylval = install(">");return GT;case '!':if (nextchar('=')) {yylval = install("!=");return NE;}yylval = install("!");return '!';case '=':if (nextchar('=')) {yylval = install("==");return EQ;}yylval = install("=");return EQ_ASSIGN;case ':':if (nextchar(':')) {if (nextchar(':')) {yylval = install(":::");return NS_GET_INT;}else {yylval = install("::");return NS_GET;}}if (nextchar('=')) {yylval = install(":=");return LEFT_ASSIGN;}yylval = install(":");return ':';case '&':if (nextchar('&')) {yylval = install("&&");return AND2;}yylval = install("&");return AND;case '|':if (nextchar('|')) {yylval = install("||");return OR2;}yylval = install("|");return OR;case LBRACE:yylval = install("{");return c;case RBRACE:return c;case '(':yylval = install("(");return c;case ')':return c;case '[':if (nextchar('[')) {yylval = install("[[");return LBB;}yylval = install("[");return c;case ']':return c;case '?':strcpy(yytext, "?");yylval = install(yytext);return c;case '*':/* Replace ** by ^. This has been here since 1998, but isundocumented (at least in the obvious places). It is inthe index of the Blue Book with a reference to p. 431, thehelp for 'Deprecated'. S-PLUS 6.2 still allowed this, sopresumably it was for compatibility with S. */if (nextchar('*'))c='^';yytext[0] = c;yytext[1] = '\0';yylval = install(yytext);return c;case '+':case '/':case '^':case '~':case '$':case '@':yytext[0] = c;yytext[1] = '\0';yylval = install(yytext);return c;default:return c;}}static void setlastloc(void){yylloc.last_line = ParseState.xxlineno;yylloc.last_column = ParseState.xxcolno;yylloc.last_byte = ParseState.xxbyteno;}static int yylex(void){int tok;again:tok = token();/* Newlines must be handled in a context *//* sensitive way. The following block of *//* deals directly with newlines in the *//* body of "if" statements. */if (tok == '\n') {if (EatLines || *contextp == '[' || *contextp == '(')goto again;/* The essence of this is that in the body of *//* an "if", any newline must be checked to *//* see if it is followed by an "else". *//* such newlines are discarded. */if (*contextp == 'i') {/* Find the next non-newline token */while(tok == '\n')tok = token();/* If we encounter "}", ")" or "]" then *//* we know that all immediately preceding *//* "if" bodies have been terminated. *//* The corresponding "i" values are *//* popped off the context stack. */if (tok == RBRACE || tok == ')' || tok == ']' ) {while (*contextp == 'i')ifpop();*contextp-- = 0;setlastloc();return tok;}/* When a "," is encountered, it terminates *//* just the immediately preceding "if" body *//* so we pop just a single "i" of the *//* context stack. */if (tok == ',') {ifpop();setlastloc();return tok;}/* Tricky! If we find an "else" we must *//* ignore the preceding newline. Any other *//* token means that we must return the newline *//* to terminate the "if" and "push back" that *//* token so that we will obtain it on the next *//* call to token. In either case sensitivity *//* is lost, so we pop the "i" from the context *//* stack. */if(tok == ELSE) {EatLines = 1;ifpop();setlastloc();return ELSE;}else {ifpop();SavedToken = tok;xxlinesave = yylloc.first_line;xxcolsave = yylloc.first_column;xxbytesave = yylloc.first_byte;SavedLval = yylval;setlastloc();return '\n';}}else {setlastloc();return '\n';}}/* Additional context sensitivities */switch(tok) {/* Any newlines immediately following the *//* the following tokens are discarded. The *//* expressions are clearly incomplete. */case '+':case '-':case '*':case '/':case '^':case LT:case LE:case GE:case GT:case EQ:case NE:case OR:case AND:case OR2:case AND2:case SPECIAL:case FUNCTION:case WHILE:case REPEAT:case FOR:case IN:case '?':case '!':case '=':case ':':case '~':case '$':case '@':case LEFT_ASSIGN:case RIGHT_ASSIGN:case EQ_ASSIGN:EatLines = 1;break;/* Push any "if" statements found and *//* discard any immediately following newlines. */case IF:IfPush();EatLines = 1;break;/* Terminate any immediately preceding "if" *//* statements and discard any immediately *//* following newlines. */case ELSE:ifpop();EatLines = 1;break;/* These tokens terminate any immediately *//* preceding "if" statements. */case ';':case ',':ifpop();break;/* Any newlines following these tokens can *//* indicate the end of an expression. */case SYMBOL:case STR_CONST:case NUM_CONST:case NULL_CONST:case NEXT:case BREAK:EatLines = 0;break;/* Handle brackets, braces and parentheses */case LBB:if(contextp - contextstack >= CONTEXTSTACK_SIZE - 1)error(_("contextstack overflow at line %d"), ParseState.xxlineno);*++contextp = '[';*++contextp = '[';break;case '[':if(contextp - contextstack >= CONTEXTSTACK_SIZE)error(_("contextstack overflow at line %d"), ParseState.xxlineno);*++contextp = tok;break;case LBRACE:if(contextp - contextstack >= CONTEXTSTACK_SIZE)error(_("contextstack overflow at line %d"), ParseState.xxlineno);*++contextp = tok;EatLines = 1;break;case '(':if(contextp - contextstack >= CONTEXTSTACK_SIZE)error(_("contextstack overflow at line %d"), ParseState.xxlineno);*++contextp = tok;break;case ']':while (*contextp == 'i')ifpop();*contextp-- = 0;EatLines = 0;break;case RBRACE:while (*contextp == 'i')ifpop();*contextp-- = 0;break;case ')':while (*contextp == 'i')ifpop();*contextp-- = 0;EatLines = 0;break;}setlastloc();return tok;}