/* A Bison parser, made by GNU Bison 3.8.2. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual, especially those whose name start with YY_ or yy_. They are private implementation details that can be changed or removed. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output, and Bison version. */ #define YYBISON 30802 /* Bison version string. */ #define YYBISON_VERSION "3.8.2" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* First part of user prologue. */ /* * R : A Computer Language for Statistical Data Analysis * Copyright (C) 1997--2023 The R Core Team * Copyright (C) 2009--2011 Romain Francois * Copyright (C) 1995--1997 Robert Gentleman and Ross Ihaka * * 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 * https://www.R-project.org/Licenses/ */ #ifdef HAVE_CONFIG_H #include #endif #define R_USE_SIGNALS 1 #include "IOStuff.h" /*-> Defn.h */ #include "Fileio.h" #include "Parse.h" #include #if !defined(__STDC_ISO_10646__) && (defined(__APPLE__) || defined(__FreeBSD__) || defined(__sun)) /* This may not be 100% true (see the comment in rlocale.h), but it seems true in normal locales. */ # define __STDC_ISO_10646__ #endif /* #define YYDEBUG 1 */ #define YYERROR_VERBOSE 1 #define PARSE_ERROR_SIZE 256 /* Parse error messages saved here */ #define PARSE_CONTEXT_SIZE 256 /* Recent parse context kept in a circular buffer */ static Rboolean busy = FALSE; static SEXP R_NullSymbol = NULL; static int identifier ; static void incrementId(void); static void initData(void); static void initId(void); static void record_( int, int, int, int, int, int, char* ) ; static void yyerror(const char *); static int yylex(void); int yyparse(void); static FILE *fp_parse; static int (*ptr_getc)(void); static int SavedToken; static SEXP SavedLval; #define yyconst const typedef struct yyltype { int first_line; int first_column; int first_byte; int last_line; int last_column; int last_byte; int first_parsed; int last_parsed; int id; } yyltype; #define INIT_DATA_COUNT 16384 /* init parser data to this size */ #define MAX_DATA_COUNT 65536 /* release it at the end if it is this size or larger*/ #define DATA_COUNT (length( PS_DATA ) / DATA_ROWS) #define ID_COUNT ((length( PS_IDS ) / 2) - 1) static void finalizeData(void) ; static void growData(void) ; static void growID( int ) ; #define DATA_ROWS 8 #define _FIRST_PARSED( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) ] #define _FIRST_COLUMN( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 1 ] #define _LAST_PARSED( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 2 ] #define _LAST_COLUMN( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 3 ] #define _TERMINAL( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 4 ] #define _TOKEN( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 5 ] #define _ID( i ) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 6 ] #define _PARENT(i) INTEGER( PS_DATA )[ DATA_ROWS*(i) + 7 ] #define ID_ID( i ) INTEGER(PS_IDS)[ 2*(i) ] #define ID_PARENT( i ) INTEGER(PS_IDS)[ 2*(i) + 1 ] static void modif_token( yyltype*, int ) ; static void recordParents( int, yyltype*, int) ; static int _current_token ; /** * Records the current non-terminal token expression and gives it an id * * @param loc the location of the expression */ static void setId(yyltype loc){ record_( (loc).first_parsed, (loc).first_column, (loc).last_parsed, (loc).last_column, _current_token, (loc).id, 0 ) ; } # define YYLTYPE yyltype # define YYLLOC_DEFAULT(Current, Rhs, N) \ do { \ if (N){ \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).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; \ (Current).first_parsed = YYRHSLOC (Rhs, 1).first_parsed; \ (Current).last_parsed = YYRHSLOC (Rhs, N).last_parsed; \ incrementId( ) ; \ (Current).id = identifier ; \ _current_token = yyr1[yyn] ; \ if (ParseState.keepSrcRefs && ParseState.keepParseData) { \ yyltype childs[N]; \ int ii = 0; \ for(ii=0; ii #ifdef HAVE_LANGINFO_CODESET # include #endif static int mbcs_get_next(int c, wchar_t *wc) { int i, res, clen = 1; char s[9]; mbstate_t mb_st; s[0] = (char) c; /* This assumes (probably OK) that all MBCS embed ASCII as single-byte lead bytes, including control chars */ if((unsigned int) c < 0x80) { *wc = (wchar_t) c; return 1; } if(utf8locale) { clen = utf8clen((char) c); for(i = 1; i < clen; i++) { c = xxgetc(); if(c == R_EOF) { /* EOF whilst reading MBCS char */ for(i--; i > 0; i--) xxungetc(s[i]); return -1; } s[i] = (char) c; } s[clen] ='\0'; /* x86 Solaris requires this */ mbs_init(&mb_st); res = (int) mbrtowc(wc, s, clen, &mb_st); if(res == -1) raiseLexError("invalidMBCS", NO_VALUE, NULL, _("invalid multibyte character in parser (%s:%d:%d)")); } else { /* This is not necessarily correct for stateful MBCS */ while(clen <= R_MB_CUR_MAX) { mbs_init(&mb_st); res = (int) mbrtowc(wc, s, clen, &mb_st); if(res >= 0) break; if(res == -1) raiseLexError("invalidMBCS", NO_VALUE, NULL, _("invalid multibyte character in parser (%s:%d:%d)")); /* so res == -2 */ c = xxgetc(); if(c == R_EOF) { /* EOF whilst reading MBCS char */ for(i = clen - 1; i > 0; i--) xxungetc(s[i]); return -1; } s[clen++] = (char) 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; } /* 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(void); 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, YYLTYPE *); static SEXP xxpipe(SEXP, SEXP, YYLTYPE *); static SEXP xxpipebind(SEXP, SEXP, SEXP, YYLTYPE *); 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 # ifndef YY_CAST # ifdef __cplusplus # define YY_CAST(Type, Val) static_cast (Val) # define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast (Val) # else # define YY_CAST(Type, Val) ((Type) (Val)) # define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val)) # endif # endif # ifndef YY_NULLPTR # if defined __cplusplus # if 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # else # define YY_NULLPTR ((void*)0) # endif # endif /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int yydebug; #endif /* Token kinds. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { YYEMPTY = -2, YYEOF = 0, /* "end of file" */ YYerror = 256, /* error */ YYUNDEF = 257, /* "invalid token" */ END_OF_INPUT = 258, /* END_OF_INPUT */ ERROR = 259, /* ERROR */ STR_CONST = 260, /* STR_CONST */ NUM_CONST = 261, /* NUM_CONST */ NULL_CONST = 262, /* NULL_CONST */ SYMBOL = 263, /* SYMBOL */ FUNCTION = 264, /* FUNCTION */ INCOMPLETE_STRING = 265, /* INCOMPLETE_STRING */ LEFT_ASSIGN = 266, /* LEFT_ASSIGN */ EQ_ASSIGN = 267, /* EQ_ASSIGN */ RIGHT_ASSIGN = 268, /* RIGHT_ASSIGN */ LBB = 269, /* LBB */ FOR = 270, /* FOR */ IN = 271, /* IN */ IF = 272, /* IF */ ELSE = 273, /* ELSE */ WHILE = 274, /* WHILE */ NEXT = 275, /* NEXT */ BREAK = 276, /* BREAK */ REPEAT = 277, /* REPEAT */ GT = 278, /* GT */ GE = 279, /* GE */ LT = 280, /* LT */ LE = 281, /* LE */ EQ = 282, /* EQ */ NE = 283, /* NE */ AND = 284, /* AND */ OR = 285, /* OR */ AND2 = 286, /* AND2 */ OR2 = 287, /* OR2 */ NS_GET = 288, /* NS_GET */ NS_GET_INT = 289, /* NS_GET_INT */ COMMENT = 290, /* COMMENT */ LINE_DIRECTIVE = 291, /* LINE_DIRECTIVE */ SYMBOL_FORMALS = 292, /* SYMBOL_FORMALS */ EQ_FORMALS = 293, /* EQ_FORMALS */ EQ_SUB = 294, /* EQ_SUB */ SYMBOL_SUB = 295, /* SYMBOL_SUB */ SYMBOL_FUNCTION_CALL = 296, /* SYMBOL_FUNCTION_CALL */ SYMBOL_PACKAGE = 297, /* SYMBOL_PACKAGE */ SLOT = 298, /* SLOT */ PIPE = 299, /* PIPE */ PLACEHOLDER = 300, /* PLACEHOLDER */ PIPEBIND = 301, /* PIPEBIND */ LOW = 302, /* LOW */ TILDE = 303, /* TILDE */ UNOT = 304, /* UNOT */ NOT = 305, /* NOT */ SPECIAL = 306, /* SPECIAL */ UMINUS = 307, /* UMINUS */ UPLUS = 308 /* UPLUS */ }; typedef enum yytokentype yytoken_kind_t; #endif /* Token kinds. */ #define YYEMPTY -2 #define YYEOF 0 #define YYerror 256 #define YYUNDEF 257 #define END_OF_INPUT 258 #define ERROR 259 #define STR_CONST 260 #define NUM_CONST 261 #define NULL_CONST 262 #define SYMBOL 263 #define FUNCTION 264 #define INCOMPLETE_STRING 265 #define LEFT_ASSIGN 266 #define EQ_ASSIGN 267 #define RIGHT_ASSIGN 268 #define LBB 269 #define FOR 270 #define IN 271 #define IF 272 #define ELSE 273 #define WHILE 274 #define NEXT 275 #define BREAK 276 #define REPEAT 277 #define GT 278 #define GE 279 #define LT 280 #define LE 281 #define EQ 282 #define NE 283 #define AND 284 #define OR 285 #define AND2 286 #define OR2 287 #define NS_GET 288 #define NS_GET_INT 289 #define COMMENT 290 #define LINE_DIRECTIVE 291 #define SYMBOL_FORMALS 292 #define EQ_FORMALS 293 #define EQ_SUB 294 #define SYMBOL_SUB 295 #define SYMBOL_FUNCTION_CALL 296 #define SYMBOL_PACKAGE 297 #define SLOT 298 #define PIPE 299 #define PLACEHOLDER 300 #define PIPEBIND 301 #define LOW 302 #define TILDE 303 #define UNOT 304 #define NOT 305 #define SPECIAL 306 #define UMINUS 307 #define UPLUS 308 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif /* Location type. */ #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED typedef struct YYLTYPE YYLTYPE; struct YYLTYPE { int first_line; int first_column; int last_line; int last_column; }; # define YYLTYPE_IS_DECLARED 1 # define YYLTYPE_IS_TRIVIAL 1 #endif extern YYSTYPE yylval; extern YYLTYPE yylloc; int yyparse (void); /* Symbol kind. */ enum yysymbol_kind_t { YYSYMBOL_YYEMPTY = -2, YYSYMBOL_YYEOF = 0, /* "end of file" */ YYSYMBOL_YYerror = 1, /* error */ YYSYMBOL_YYUNDEF = 2, /* "invalid token" */ YYSYMBOL_END_OF_INPUT = 3, /* END_OF_INPUT */ YYSYMBOL_ERROR = 4, /* ERROR */ YYSYMBOL_STR_CONST = 5, /* STR_CONST */ YYSYMBOL_NUM_CONST = 6, /* NUM_CONST */ YYSYMBOL_NULL_CONST = 7, /* NULL_CONST */ YYSYMBOL_SYMBOL = 8, /* SYMBOL */ YYSYMBOL_FUNCTION = 9, /* FUNCTION */ YYSYMBOL_INCOMPLETE_STRING = 10, /* INCOMPLETE_STRING */ YYSYMBOL_LEFT_ASSIGN = 11, /* LEFT_ASSIGN */ YYSYMBOL_EQ_ASSIGN = 12, /* EQ_ASSIGN */ YYSYMBOL_RIGHT_ASSIGN = 13, /* RIGHT_ASSIGN */ YYSYMBOL_LBB = 14, /* LBB */ YYSYMBOL_FOR = 15, /* FOR */ YYSYMBOL_IN = 16, /* IN */ YYSYMBOL_IF = 17, /* IF */ YYSYMBOL_ELSE = 18, /* ELSE */ YYSYMBOL_WHILE = 19, /* WHILE */ YYSYMBOL_NEXT = 20, /* NEXT */ YYSYMBOL_BREAK = 21, /* BREAK */ YYSYMBOL_REPEAT = 22, /* REPEAT */ YYSYMBOL_GT = 23, /* GT */ YYSYMBOL_GE = 24, /* GE */ YYSYMBOL_LT = 25, /* LT */ YYSYMBOL_LE = 26, /* LE */ YYSYMBOL_EQ = 27, /* EQ */ YYSYMBOL_NE = 28, /* NE */ YYSYMBOL_AND = 29, /* AND */ YYSYMBOL_OR = 30, /* OR */ YYSYMBOL_AND2 = 31, /* AND2 */ YYSYMBOL_OR2 = 32, /* OR2 */ YYSYMBOL_NS_GET = 33, /* NS_GET */ YYSYMBOL_NS_GET_INT = 34, /* NS_GET_INT */ YYSYMBOL_COMMENT = 35, /* COMMENT */ YYSYMBOL_LINE_DIRECTIVE = 36, /* LINE_DIRECTIVE */ YYSYMBOL_SYMBOL_FORMALS = 37, /* SYMBOL_FORMALS */ YYSYMBOL_EQ_FORMALS = 38, /* EQ_FORMALS */ YYSYMBOL_EQ_SUB = 39, /* EQ_SUB */ YYSYMBOL_SYMBOL_SUB = 40, /* SYMBOL_SUB */ YYSYMBOL_SYMBOL_FUNCTION_CALL = 41, /* SYMBOL_FUNCTION_CALL */ YYSYMBOL_SYMBOL_PACKAGE = 42, /* SYMBOL_PACKAGE */ YYSYMBOL_SLOT = 43, /* SLOT */ YYSYMBOL_PIPE = 44, /* PIPE */ YYSYMBOL_PLACEHOLDER = 45, /* PLACEHOLDER */ YYSYMBOL_PIPEBIND = 46, /* PIPEBIND */ YYSYMBOL_47_ = 47, /* '?' */ YYSYMBOL_LOW = 48, /* LOW */ YYSYMBOL_49_ = 49, /* '~' */ YYSYMBOL_TILDE = 50, /* TILDE */ YYSYMBOL_UNOT = 51, /* UNOT */ YYSYMBOL_NOT = 52, /* NOT */ YYSYMBOL_53_ = 53, /* '+' */ YYSYMBOL_54_ = 54, /* '-' */ YYSYMBOL_55_ = 55, /* '*' */ YYSYMBOL_56_ = 56, /* '/' */ YYSYMBOL_SPECIAL = 57, /* SPECIAL */ YYSYMBOL_58_ = 58, /* ':' */ YYSYMBOL_UMINUS = 59, /* UMINUS */ YYSYMBOL_UPLUS = 60, /* UPLUS */ YYSYMBOL_61_ = 61, /* '^' */ YYSYMBOL_62_ = 62, /* '$' */ YYSYMBOL_63_ = 63, /* '@' */ YYSYMBOL_64_ = 64, /* '(' */ YYSYMBOL_65_ = 65, /* '[' */ YYSYMBOL_66_n_ = 66, /* '\n' */ YYSYMBOL_67_ = 67, /* ';' */ YYSYMBOL_68_ = 68, /* '{' */ YYSYMBOL_69_ = 69, /* '}' */ YYSYMBOL_70_ = 70, /* ')' */ YYSYMBOL_71_ = 71, /* '!' */ YYSYMBOL_72_ = 72, /* '\\' */ YYSYMBOL_73_ = 73, /* ']' */ YYSYMBOL_74_ = 74, /* ',' */ YYSYMBOL_YYACCEPT = 75, /* $accept */ YYSYMBOL_prog = 76, /* prog */ YYSYMBOL_expr_or_assign_or_help = 77, /* expr_or_assign_or_help */ YYSYMBOL_expr_or_help = 78, /* expr_or_help */ YYSYMBOL_expr = 79, /* expr */ YYSYMBOL_cond = 80, /* cond */ YYSYMBOL_ifcond = 81, /* ifcond */ YYSYMBOL_forcond = 82, /* forcond */ YYSYMBOL_exprlist = 83, /* exprlist */ YYSYMBOL_sublist = 84, /* sublist */ YYSYMBOL_sub = 85, /* sub */ YYSYMBOL_formlist = 86, /* formlist */ YYSYMBOL_cr = 87 /* cr */ }; typedef enum yysymbol_kind_t yysymbol_kind_t; #ifdef short # undef short #endif /* On compilers that do not define __PTRDIFF_MAX__ etc., make sure and (if available) are included so that the code can choose integer types of a good width. */ #ifndef __PTRDIFF_MAX__ # include /* INFRINGES ON USER NAME SPACE */ # if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__ # include /* INFRINGES ON USER NAME SPACE */ # define YY_STDINT_H # endif #endif /* Narrow types that promote to a signed type and that can represent a signed or unsigned integer of at least N bits. In tables they can save space and decrease cache pressure. Promoting to a signed type helps avoid bugs in integer arithmetic. */ #ifdef __INT_LEAST8_MAX__ typedef __INT_LEAST8_TYPE__ yytype_int8; #elif defined YY_STDINT_H typedef int_least8_t yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef __INT_LEAST16_MAX__ typedef __INT_LEAST16_TYPE__ yytype_int16; #elif defined YY_STDINT_H typedef int_least16_t yytype_int16; #else typedef short yytype_int16; #endif /* Work around bug in HP-UX 11.23, which defines these macros incorrectly for preprocessor constants. This workaround can likely be removed in 2023, as HPE has promised support for HP-UX 11.23 (aka HP-UX 11i v2) only through the end of 2022; see Table 2 of . */ #ifdef __hpux # undef UINT_LEAST8_MAX # undef UINT_LEAST16_MAX # define UINT_LEAST8_MAX 255 # define UINT_LEAST16_MAX 65535 #endif #if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__ typedef __UINT_LEAST8_TYPE__ yytype_uint8; #elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \ && UINT_LEAST8_MAX <= INT_MAX) typedef uint_least8_t yytype_uint8; #elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX typedef unsigned char yytype_uint8; #else typedef short yytype_uint8; #endif #if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__ typedef __UINT_LEAST16_TYPE__ yytype_uint16; #elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \ && UINT_LEAST16_MAX <= INT_MAX) typedef uint_least16_t yytype_uint16; #elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX typedef unsigned short yytype_uint16; #else typedef int yytype_uint16; #endif #ifndef YYPTRDIFF_T # if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__ # define YYPTRDIFF_T __PTRDIFF_TYPE__ # define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__ # elif defined PTRDIFF_MAX # ifndef ptrdiff_t # include /* INFRINGES ON USER NAME SPACE */ # endif # define YYPTRDIFF_T ptrdiff_t # define YYPTRDIFF_MAXIMUM PTRDIFF_MAX # else # define YYPTRDIFF_T long # define YYPTRDIFF_MAXIMUM LONG_MAX # endif #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__ # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned # endif #endif #define YYSIZE_MAXIMUM \ YY_CAST (YYPTRDIFF_T, \ (YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \ ? YYPTRDIFF_MAXIMUM \ : YY_CAST (YYSIZE_T, -1))) #define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X)) /* Stored state numbers (used for stacks). */ typedef yytype_uint8 yy_state_t; /* State numbers in computations. */ typedef int yy_state_fast_t; #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE_PURE # if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__) # define YY_ATTRIBUTE_PURE __attribute__ ((__pure__)) # else # define YY_ATTRIBUTE_PURE # endif #endif #ifndef YY_ATTRIBUTE_UNUSED # if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__) # define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__)) # else # define YY_ATTRIBUTE_UNUSED # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YY_USE(E) ((void) (E)) #else # define YY_USE(E) /* empty */ #endif /* Suppress an incorrect diagnostic about yylval being uninitialized. */ #if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__ # if __GNUC__ * 100 + __GNUC_MINOR__ < 407 # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") # else # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # endif # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__ # define YY_IGNORE_USELESS_CAST_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"") # define YY_IGNORE_USELESS_CAST_END \ _Pragma ("GCC diagnostic pop") #endif #ifndef YY_IGNORE_USELESS_CAST_BEGIN # define YY_IGNORE_USELESS_CAST_BEGIN # define YY_IGNORE_USELESS_CAST_END #endif #define YY_ASSERT(E) ((void) (0 && (E))) #if 1 /* 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 /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* 1 */ #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 { yy_state_t 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 (YYSIZEOF (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE) \ + YYSIZEOF (YYLTYPE)) \ + 2 * YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYPTRDIFF_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / YYSIZEOF (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYPTRDIFF_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 48 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 572 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 75 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 13 /* YYNRULES -- Number of rules. */ #define YYNRULES 94 /* YYNSTATES -- Number of states. */ #define YYNSTATES 174 /* YYMAXUTOK -- Last valid token kind. */ #define YYMAXUTOK 308 /* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM as returned by yylex, with out-of-bounds checking. */ #define YYTRANSLATE(YYX) \ (0 <= (YYX) && (YYX) <= YYMAXUTOK \ ? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \ : YYSYMBOL_YYUNDEF) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex. */ static const yytype_int8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 66, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 71, 2, 2, 62, 2, 2, 2, 64, 70, 55, 53, 74, 54, 2, 56, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 58, 67, 2, 2, 2, 47, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 65, 72, 73, 61, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 68, 2, 69, 49, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 50, 51, 52, 57, 59, 60 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_int16 yyrline[] = { 0, 445, 445, 446, 447, 448, 449, 452, 453, 454, 457, 458, 461, 462, 463, 464, 465, 467, 468, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 526, 529, 532, 536, 537, 538, 539, 540, 541, 544, 545, 548, 549, 550, 551, 552, 553, 554, 555, 558, 559, 560, 561, 562, 566 }; #endif /** Accessing symbol of state STATE. */ #define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State]) #if 1 /* The user-facing name of the symbol whose (internal) number is YYSYMBOL. No bounds checking. */ static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED; /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "\"end of file\"", "error", "\"invalid token\"", "END_OF_INPUT", "ERROR", "STR_CONST", "NUM_CONST", "NULL_CONST", "SYMBOL", "FUNCTION", "INCOMPLETE_STRING", "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", "COMMENT", "LINE_DIRECTIVE", "SYMBOL_FORMALS", "EQ_FORMALS", "EQ_SUB", "SYMBOL_SUB", "SYMBOL_FUNCTION_CALL", "SYMBOL_PACKAGE", "SLOT", "PIPE", "PLACEHOLDER", "PIPEBIND", "'?'", "LOW", "'~'", "TILDE", "UNOT", "NOT", "'+'", "'-'", "'*'", "'/'", "SPECIAL", "':'", "UMINUS", "UPLUS", "'^'", "'$'", "'@'", "'('", "'['", "'\\n'", "';'", "'{'", "'}'", "')'", "'!'", "'\\\\'", "']'", "','", "$accept", "prog", "expr_or_assign_or_help", "expr_or_help", "expr", "cond", "ifcond", "forcond", "exprlist", "sublist", "sub", "formlist", "cr", YY_NULLPTR }; static const char * yysymbol_name (yysymbol_kind_t yysymbol) { return yytname[yysymbol]; } #endif #define YYPACT_NINF (-130) #define yypact_value_is_default(Yyn) \ ((Yyn) == YYPACT_NINF) #define YYTABLE_NINF (-1) #define yytable_value_is_error(Yyn) \ ((Yyn) == YYTABLE_NINF) /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { 139, -130, -130, -11, -130, -130, 2, -49, 10, 27, 29, -130, -130, 209, -130, 209, 209, 209, 209, 209, -130, 209, 209, 30, 95, 14, 281, 16, 70, 71, 77, 88, 89, 209, 209, 209, 209, 209, 86, 86, 371, 225, 225, 13, 18, -53, 440, 88, -130, 209, 209, -130, -130, 209, 209, 229, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 82, 84, 229, 229, -130, -130, -130, -130, -130, -130, -130, -130, 87, -3, 90, 86, -43, 281, -1, -39, 86, -130, 209, 209, -130, 3, 86, 86, 281, 326, -5, 91, 0, 55, 31, -130, 485, 485, 485, 485, 485, 485, 440, 416, 440, 416, 206, 107, 371, 118, 118, 507, 507, 206, 225, 225, -130, -130, -130, -130, 35, 36, 209, -130, 100, 209, 209, -130, 209, -130, 18, 18, -130, 209, 209, 209, 39, 40, -130, -130, 55, 209, 101, -38, -130, 86, 209, 55, 55, 55, -130, 229, 86, 209, -130, 86, -130, 55 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_int8 yydefact[] = { 0, 6, 2, 13, 12, 14, 16, 0, 0, 0, 0, 68, 69, 0, 15, 0, 0, 0, 0, 0, 3, 73, 0, 0, 0, 0, 7, 0, 0, 0, 0, 89, 0, 0, 0, 0, 0, 0, 53, 23, 22, 20, 19, 0, 74, 0, 21, 89, 1, 0, 0, 4, 5, 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 81, 59, 58, 63, 62, 57, 56, 61, 60, 90, 0, 0, 51, 0, 10, 49, 0, 52, 18, 78, 76, 17, 0, 8, 9, 44, 45, 13, 14, 16, 82, 94, 79, 37, 36, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 31, 25, 26, 27, 28, 30, 24, 29, 65, 64, 67, 66, 94, 94, 0, 94, 0, 0, 0, 71, 0, 70, 77, 75, 94, 85, 87, 83, 0, 0, 48, 55, 91, 0, 92, 0, 11, 50, 0, 86, 88, 84, 54, 81, 46, 0, 72, 47, 80, 93 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -130, -130, 51, -31, -16, -130, -130, -130, -130, -10, -52, 69, -129 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_uint8 yydefgoto[] = { 0, 24, 25, 109, 26, 37, 35, 33, 45, 110, 111, 89, 153 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_int16 yytable[] = { 40, 41, 42, 92, 142, 95, 46, 149, 142, 142, 157, 49, 151, 98, 99, 31, 100, 144, 93, 162, 93, 80, 27, 28, 81, 49, 49, 143, 27, 28, 49, 145, 170, 29, 30, 29, 30, 104, 105, 93, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 50, 50, 93, 93, 38, 50, 39, 139, 136, 137, 43, 140, 44, 148, 32, 82, 84, 140, 83, 85, 51, 52, 86, 97, 91, 87, 94, 132, 96, 134, 133, 34, 135, 36, 47, 48, 88, 90, 49, 138, 102, 103, 142, 150, 152, 154, 141, 156, 158, 155, 159, 160, 166, 169, 167, 172, 101, 0, 163, 164, 165, 55, 93, 0, 0, 93, 93, 0, 0, 0, 0, 0, 55, 93, 93, 93, 0, 0, 173, 0, 1, 0, 2, 0, 3, 4, 5, 6, 7, 146, 147, 93, 0, 93, 8, 0, 9, 0, 10, 11, 12, 13, 66, 0, 67, 74, 0, 0, 75, 76, 77, 78, 79, 71, 72, 73, 74, 0, 0, 75, 76, 77, 78, 79, 14, 0, 15, 0, 16, 0, 0, 0, 17, 18, 0, 161, 0, 0, 0, 0, 0, 0, 0, 19, 0, 20, 0, 21, 168, 0, 22, 23, 0, 171, 3, 4, 5, 6, 7, 0, 55, 0, 0, 0, 8, 0, 9, 0, 10, 11, 12, 13, 0, 0, 106, 4, 107, 108, 7, 55, 0, 0, 0, 0, 8, 0, 9, 0, 10, 11, 12, 13, 67, 0, 14, 0, 15, 0, 16, 0, 0, 0, 17, 18, 74, 0, 0, 75, 76, 77, 78, 79, 0, 19, 14, 0, 15, 21, 16, 0, 22, 23, 17, 18, 0, 0, 75, 76, 77, 78, 79, 0, 53, 19, 54, 55, 0, 21, 0, 0, 22, 23, 0, 0, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 67, 0, 0, 68, 0, 0, 0, 69, 70, 71, 72, 73, 74, 55, 0, 75, 76, 77, 78, 79, 0, 0, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 67, 0, 0, 68, 0, 0, 0, 69, 70, 71, 72, 73, 74, 55, 0, 75, 76, 77, 78, 79, 0, 0, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 67, 0, 0, 0, 0, 0, 0, 69, 70, 71, 72, 73, 74, 55, 0, 75, 76, 77, 78, 79, 0, 0, 56, 57, 58, 59, 60, 61, 62, 0, 64, 0, 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 66, 0, 67, 56, 57, 58, 59, 60, 61, 69, 70, 71, 72, 73, 74, 0, 0, 75, 76, 77, 78, 79, 0, 0, 66, 0, 67, 0, 0, 0, 0, 0, 0, 69, 70, 71, 72, 73, 74, 55, 0, 75, 76, 77, 78, 79, 0, 0, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 66, 0, 67, 0, 0, 0, 0, 0, 0, 69, 70, 71, 72, 73, 74, 0, 0, 75, 76, 77, 78, 79, 66, 0, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 74, 0, 0, 75, 76, 77, 78, 79 }; static const yytype_int16 yycheck[] = { 16, 17, 18, 34, 47, 36, 22, 12, 47, 47, 139, 12, 12, 66, 67, 64, 69, 18, 34, 148, 36, 5, 33, 34, 8, 12, 12, 70, 33, 34, 12, 70, 70, 33, 34, 33, 34, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 47, 47, 78, 79, 13, 47, 15, 70, 78, 79, 19, 74, 21, 70, 64, 5, 5, 74, 8, 8, 66, 67, 5, 70, 33, 8, 35, 5, 37, 5, 8, 64, 8, 64, 64, 0, 8, 8, 12, 12, 49, 50, 47, 12, 73, 70, 16, 138, 8, 73, 141, 142, 73, 12, 74, 167, 47, -1, 149, 150, 151, 14, 138, -1, -1, 141, 142, -1, -1, -1, -1, -1, 14, 149, 150, 151, -1, -1, 169, -1, 1, -1, 3, -1, 5, 6, 7, 8, 9, 98, 99, 167, -1, 169, 15, -1, 17, -1, 19, 20, 21, 22, 44, -1, 46, 58, -1, -1, 61, 62, 63, 64, 65, 55, 56, 57, 58, -1, -1, 61, 62, 63, 64, 65, 45, -1, 47, -1, 49, -1, -1, -1, 53, 54, -1, 144, -1, -1, -1, -1, -1, -1, -1, 64, -1, 66, -1, 68, 157, -1, 71, 72, -1, 162, 5, 6, 7, 8, 9, -1, 14, -1, -1, -1, 15, -1, 17, -1, 19, 20, 21, 22, -1, -1, 5, 6, 7, 8, 9, 14, -1, -1, -1, -1, 15, -1, 17, -1, 19, 20, 21, 22, 46, -1, 45, -1, 47, -1, 49, -1, -1, -1, 53, 54, 58, -1, -1, 61, 62, 63, 64, 65, -1, 64, 45, -1, 47, 68, 49, -1, 71, 72, 53, 54, -1, -1, 61, 62, 63, 64, 65, -1, 11, 64, 13, 14, -1, 68, -1, -1, 71, 72, -1, -1, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, 46, -1, -1, 49, -1, -1, -1, 53, 54, 55, 56, 57, 58, 14, -1, 61, 62, 63, 64, 65, -1, -1, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, 46, -1, -1, 49, -1, -1, -1, 53, 54, 55, 56, 57, 58, 14, -1, 61, 62, 63, 64, 65, -1, -1, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, 46, -1, -1, -1, -1, -1, -1, 53, 54, 55, 56, 57, 58, 14, -1, 61, 62, 63, 64, 65, -1, -1, 23, 24, 25, 26, 27, 28, 29, -1, 31, -1, -1, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, 44, -1, 46, 23, 24, 25, 26, 27, 28, 53, 54, 55, 56, 57, 58, -1, -1, 61, 62, 63, 64, 65, -1, -1, 44, -1, 46, -1, -1, -1, -1, -1, -1, 53, 54, 55, 56, 57, 58, 14, -1, 61, 62, 63, 64, 65, -1, -1, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, -1, 44, -1, 46, -1, -1, -1, -1, -1, -1, 53, 54, 55, 56, 57, 58, -1, -1, 61, 62, 63, 64, 65, 44, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 57, 58, -1, -1, 61, 62, 63, 64, 65 }; /* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of state STATE-NUM. */ static const yytype_int8 yystos[] = { 0, 1, 3, 5, 6, 7, 8, 9, 15, 17, 19, 20, 21, 22, 45, 47, 49, 53, 54, 64, 66, 68, 71, 72, 76, 77, 79, 33, 34, 33, 34, 64, 64, 82, 64, 81, 64, 80, 77, 77, 79, 79, 79, 77, 77, 83, 79, 64, 0, 12, 47, 66, 67, 11, 13, 14, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 44, 46, 49, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 65, 5, 8, 5, 8, 5, 8, 5, 8, 8, 86, 8, 77, 78, 79, 77, 78, 77, 70, 66, 67, 69, 86, 77, 77, 79, 79, 5, 7, 8, 78, 84, 85, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 5, 8, 5, 8, 84, 84, 12, 70, 74, 16, 47, 70, 18, 70, 77, 77, 70, 12, 12, 12, 73, 87, 70, 73, 78, 87, 8, 78, 78, 77, 87, 78, 78, 78, 73, 74, 77, 12, 70, 77, 85, 78 }; /* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */ static const yytype_int8 yyr1[] = { 0, 75, 76, 76, 76, 76, 76, 77, 77, 77, 78, 78, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 80, 81, 82, 83, 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 85, 85, 85, 86, 86, 86, 86, 86, 87 }; /* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */ static const yytype_int8 yyr2[] = { 0, 2, 1, 1, 2, 2, 1, 1, 3, 3, 1, 3, 1, 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, 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 }; enum { YYENOMEM = -2 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYNOMEM goto yyexhaustedlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Backward compatibility with an undocumented macro. Use YYerror or YYUNDEF. */ #define YYERRCODE YYUNDEF /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (N) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (0) #endif #define YYRHSLOC(Rhs, K) ((Rhs)[K]) /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* YYLOCATION_PRINT -- Print the location on the stream. This macro was not mandated originally: define only if we know we won't break user code: when these are the locations we know. */ # ifndef YYLOCATION_PRINT # if defined YY_LOCATION_PRINT /* Temporary convenience wrapper in case some people defined the undocumented and private YY_LOCATION_PRINT macros. */ # define YYLOCATION_PRINT(File, Loc) YY_LOCATION_PRINT(File, *(Loc)) # elif defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL /* Print *YYLOCP on YYO. Private, do not rely on its existence. */ YY_ATTRIBUTE_UNUSED static int yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp) { int res = 0; int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; if (0 <= yylocp->first_line) { res += YYFPRINTF (yyo, "%d", yylocp->first_line); if (0 <= yylocp->first_column) res += YYFPRINTF (yyo, ".%d", yylocp->first_column); } if (0 <= yylocp->last_line) { if (yylocp->first_line < yylocp->last_line) { res += YYFPRINTF (yyo, "-%d", yylocp->last_line); if (0 <= end_col) res += YYFPRINTF (yyo, ".%d", end_col); } else if (0 <= end_col && yylocp->first_column < end_col) res += YYFPRINTF (yyo, "-%d", end_col); } return res; } # define YYLOCATION_PRINT yy_location_print_ /* Temporary convenience wrapper in case some people defined the undocumented and private YY_LOCATION_PRINT macros. */ # define YY_LOCATION_PRINT(File, Loc) YYLOCATION_PRINT(File, &(Loc)) # else # define YYLOCATION_PRINT(File, Loc) ((void) 0) /* Temporary convenience wrapper in case some people defined the undocumented and private YY_LOCATION_PRINT macros. */ # define YY_LOCATION_PRINT YYLOCATION_PRINT # endif # endif /* !defined YYLOCATION_PRINT */ # define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Kind, Value, Location); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*-----------------------------------. | Print this symbol's value on YYO. | `-----------------------------------*/ static void yy_symbol_value_print (FILE *yyo, yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp) { FILE *yyoutput = yyo; YY_USE (yyoutput); YY_USE (yylocationp); if (!yyvaluep) return; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YY_USE (yykind); YY_IGNORE_MAYBE_UNINITIALIZED_END } /*---------------------------. | Print this symbol on YYO. | `---------------------------*/ static void yy_symbol_print (FILE *yyo, yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp) { YYFPRINTF (yyo, "%s %s (", yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind)); YYLOCATION_PRINT (yyo, yylocationp); YYFPRINTF (yyo, ": "); yy_symbol_value_print (yyo, yykind, yyvaluep, yylocationp); YYFPRINTF (yyo, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule) { int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]), &yyvsp[(yyi + 1) - (yynrhs)], &(yylsp[(yyi + 1) - (yynrhs)])); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, yylsp, Rule); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) ((void) 0) # define YY_SYMBOL_PRINT(Title, Kind, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif /* Context of a parse error. */ typedef struct { yy_state_t *yyssp; yysymbol_kind_t yytoken; YYLTYPE *yylloc; } yypcontext_t; /* Put in YYARG at most YYARGN of the expected tokens given the current YYCTX, and return the number of tokens stored in YYARG. If YYARG is null, return the number of expected tokens (guaranteed to be less than YYNTOKENS). Return YYENOMEM on memory exhaustion. Return 0 if there are more than YYARGN expected tokens, yet fill YYARG up to YYARGN. */ static int yypcontext_expected_tokens (const yypcontext_t *yyctx, yysymbol_kind_t yyarg[], int yyargn) { /* Actual size of YYARG. */ int yycount = 0; int yyn = yypact[+*yyctx->yyssp]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYSYMBOL_YYerror && !yytable_value_is_error (yytable[yyx + yyn])) { if (!yyarg) ++yycount; else if (yycount == yyargn) return 0; else yyarg[yycount++] = YY_CAST (yysymbol_kind_t, yyx); } } if (yyarg && yycount == 0 && 0 < yyargn) yyarg[0] = YYSYMBOL_YYEMPTY; return yycount; } #ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S))) # else /* Return the length of YYSTR. */ static YYPTRDIFF_T yystrlen (const char *yystr) { YYPTRDIFF_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif #endif #ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * yystpcpy (char *yydest, const char *yysrc) { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif #endif #ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYPTRDIFF_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYPTRDIFF_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; else goto append; append: default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (yyres) return yystpcpy (yyres, yystr) - yyres; else return yystrlen (yystr); } #endif static int yy_syntax_error_arguments (const yypcontext_t *yyctx, yysymbol_kind_t yyarg[], int yyargn) { /* Actual size of YYARG. */ int yycount = 0; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yyctx->yytoken != YYSYMBOL_YYEMPTY) { int yyn; if (yyarg) yyarg[yycount] = yyctx->yytoken; ++yycount; yyn = yypcontext_expected_tokens (yyctx, yyarg ? yyarg + 1 : yyarg, yyargn - 1); if (yyn == YYENOMEM) return YYENOMEM; else yycount += yyn; } return yycount; } /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return -1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return YYENOMEM if the required number of bytes is too large to store. */ static int yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg, const yypcontext_t *yyctx) { enum { YYARGS_MAX = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULLPTR; /* Arguments of yyformat: reported tokens (one for the "unexpected", one per "expected"). */ yysymbol_kind_t yyarg[YYARGS_MAX]; /* Cumulated lengths of YYARG. */ YYPTRDIFF_T yysize = 0; /* Actual size of YYARG. */ int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX); if (yycount == YYENOMEM) return YYENOMEM; switch (yycount) { #define YYCASE_(N, S) \ case N: \ yyformat = S; \ break default: /* Avoid compiler warnings. */ YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); #undef YYCASE_ } /* Compute error message size. Don't count the "%s"s, but reserve room for the terminator. */ yysize = yystrlen (yyformat) - 2 * yycount + 1; { int yyi; for (yyi = 0; yyi < yycount; ++yyi) { YYPTRDIFF_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyarg[yyi]]); if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM) yysize = yysize1; else return YYENOMEM; } } if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return -1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yytname[yyarg[yyi++]]); yyformat += 2; } else { ++yyp; ++yyformat; } } return 0; } /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, yysymbol_kind_t yykind, YYSTYPE *yyvaluep, YYLTYPE *yylocationp) { YY_USE (yyvaluep); YY_USE (yylocationp); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YY_USE (yykind); YY_IGNORE_MAYBE_UNINITIALIZED_END } /* Lookahead token kind. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Location data for the lookahead symbol. */ YYLTYPE yylloc # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL = { 1, 1, 1, 1 } # endif ; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ int yyparse (void) { yy_state_fast_t yystate = 0; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus = 0; /* Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* Their size. */ YYPTRDIFF_T yystacksize = YYINITDEPTH; /* The state stack: array, bottom, top. */ yy_state_t yyssa[YYINITDEPTH]; yy_state_t *yyss = yyssa; yy_state_t *yyssp = yyss; /* The semantic value stack: array, bottom, top. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; YYSTYPE *yyvsp = yyvs; /* The location stack: array, bottom, top. */ YYLTYPE yylsa[YYINITDEPTH]; YYLTYPE *yyls = yylsa; YYLTYPE *yylsp = yyls; int yyn; /* The return value of yyparse. */ int yyresult; /* Lookahead symbol kind. */ yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; YYLTYPE yyloc; /* The locations where the error started and ended. */ YYLTYPE yyerror_range[3]; /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf; #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; YYDPRINTF ((stderr, "Starting parse\n")); yychar = YYEMPTY; /* Cause a token to be read. */ yylsp[0] = yylloc; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; /*--------------------------------------------------------------------. | yysetstate -- set current state (the top of the stack) to yystate. | `--------------------------------------------------------------------*/ yysetstate: YYDPRINTF ((stderr, "Entering state %d\n", yystate)); YY_ASSERT (0 <= yystate && yystate < YYNSTATES); YY_IGNORE_USELESS_CAST_BEGIN *yyssp = YY_CAST (yy_state_t, yystate); YY_IGNORE_USELESS_CAST_END YY_STACK_PRINT (yyss, yyssp); if (yyss + yystacksize - 1 <= yyssp) #if !defined yyoverflow && !defined YYSTACK_RELOCATE YYNOMEM; #else { /* Get the current used size of the three stacks, in elements. */ YYPTRDIFF_T yysize = yyssp - yyss + 1; # if defined yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ yy_state_t *yyss1 = yyss; YYSTYPE *yyvs1 = yyvs; YYLTYPE *yyls1 = yyls; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * YYSIZEOF (*yyssp), &yyvs1, yysize * YYSIZEOF (*yyvsp), &yyls1, yysize * YYSIZEOF (*yylsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; yyls = yyls1; } # else /* defined YYSTACK_RELOCATE */ /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) YYNOMEM; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yy_state_t *yyss1 = yyss; union yyalloc *yyptr = YY_CAST (union yyalloc *, YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize)))); if (! yyptr) YYNOMEM; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); YYSTACK_RELOCATE (yyls_alloc, yyls); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; yylsp = yyls + yysize - 1; YY_IGNORE_USELESS_CAST_BEGIN YYDPRINTF ((stderr, "Stack size increased to %ld\n", YY_CAST (long, yystacksize))); YY_IGNORE_USELESS_CAST_END if (yyss + yystacksize - 1 <= yyssp) YYABORT; } #endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */ if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either empty, or end-of-input, or a valid lookahead. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token\n")); yychar = yylex (); } if (yychar <= YYEOF) { yychar = YYEOF; yytoken = YYSYMBOL_YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else if (yychar == YYerror) { /* The scanner already issued an error message, process directly to error recovery. But do not keep the error token as lookahead, it is too special and may lead us to an endless loop in error recovery. */ yychar = YYUNDEF; yytoken = YYSYMBOL_YYerror; yyerror_range[1] = yylloc; goto yyerrlab1; } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END *++yylsp = yylloc; /* Discard the shifted token. */ yychar = YYEMPTY; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; /* Default location. */ YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen); yyerror_range[1] = yyloc; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* prog: END_OF_INPUT */ { Status = 0; YYACCEPT; } break; case 3: /* prog: '\n' */ { Status = 2; yyresult = xxvalue(NULL,2,NULL); YYACCEPT; } break; case 4: /* prog: expr_or_assign_or_help '\n' */ { Status = 3; yyresult = xxvalue(yyvsp[-1],3,&(yylsp[-1])); YYACCEPT; } break; case 5: /* prog: expr_or_assign_or_help ';' */ { Status = 4; yyresult = xxvalue(yyvsp[-1],4,&(yylsp[-1])); YYACCEPT; } break; case 6: /* prog: error */ { Status = 1; YYABORT; } break; case 7: /* expr_or_assign_or_help: expr */ { yyval = yyvsp[0]; } break; case 8: /* expr_or_assign_or_help: expr_or_assign_or_help EQ_ASSIGN expr_or_assign_or_help */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 9: /* expr_or_assign_or_help: expr_or_assign_or_help '?' expr_or_assign_or_help */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 10: /* expr_or_help: expr */ { yyval = yyvsp[0]; } break; case 11: /* expr_or_help: expr_or_help '?' expr_or_help */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 12: /* expr: NUM_CONST */ { yyval = yyvsp[0]; setId((yyloc)); } break; case 13: /* expr: STR_CONST */ { yyval = yyvsp[0]; setId((yyloc)); } break; case 14: /* expr: NULL_CONST */ { yyval = yyvsp[0]; setId((yyloc)); } break; case 15: /* expr: PLACEHOLDER */ { yyval = yyvsp[0]; setId((yyloc)); } break; case 16: /* expr: SYMBOL */ { yyval = yyvsp[0]; setId((yyloc)); } break; case 17: /* expr: '{' exprlist '}' */ { yyval = xxexprlist(yyvsp[-2],&(yylsp[-2]),yyvsp[-1]); setId((yyloc)); } break; case 18: /* expr: '(' expr_or_assign_or_help ')' */ { yyval = xxparen(yyvsp[-2],yyvsp[-1]); setId((yyloc)); } break; case 19: /* expr: '-' expr */ { yyval = xxunary(yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 20: /* expr: '+' expr */ { yyval = xxunary(yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 21: /* expr: '!' expr */ { yyval = xxunary(yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 22: /* expr: '~' expr */ { yyval = xxunary(yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 23: /* expr: '?' expr_or_assign_or_help */ { yyval = xxunary(yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 24: /* expr: expr ':' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 25: /* expr: expr '+' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 26: /* expr: expr '-' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 27: /* expr: expr '*' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 28: /* expr: expr '/' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 29: /* expr: expr '^' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 30: /* expr: expr SPECIAL expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 31: /* expr: expr '~' expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 32: /* expr: expr LT expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 33: /* expr: expr LE expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 34: /* expr: expr EQ expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 35: /* expr: expr NE expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 36: /* expr: expr GE expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 37: /* expr: expr GT expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 38: /* expr: expr AND expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 39: /* expr: expr OR expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 40: /* expr: expr AND2 expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 41: /* expr: expr OR2 expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 42: /* expr: expr PIPE expr */ { yyval = xxpipe(yyvsp[-2],yyvsp[0],&(yylsp[0])); setId((yyloc)); } break; case 43: /* expr: expr PIPEBIND expr */ { yyval = xxpipebind(yyvsp[-1],yyvsp[-2],yyvsp[0],&(yylsp[-1])); setId((yyloc)); } break; case 44: /* expr: expr LEFT_ASSIGN expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 45: /* expr: expr RIGHT_ASSIGN expr */ { yyval = xxbinary(yyvsp[-1],yyvsp[0],yyvsp[-2]); setId((yyloc)); } break; case 46: /* expr: FUNCTION '(' formlist ')' cr expr_or_assign_or_help */ { yyval = xxdefun(yyvsp[-5],yyvsp[-3],yyvsp[0],&(yyloc)); setId((yyloc)); } break; case 47: /* expr: '\\' '(' formlist ')' cr expr_or_assign_or_help */ { yyval = xxdefun(R_FunctionSymbol,yyvsp[-3],yyvsp[0],&(yyloc)); setId((yyloc)); } break; case 48: /* expr: expr '(' sublist ')' */ { yyval = xxfuncall(yyvsp[-3],yyvsp[-1]); setId((yyloc)); modif_token( &(yylsp[-3]), SYMBOL_FUNCTION_CALL ) ; } break; case 49: /* expr: IF ifcond expr_or_assign_or_help */ { yyval = xxif(yyvsp[-2],yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 50: /* expr: IF ifcond expr_or_assign_or_help ELSE expr_or_assign_or_help */ { yyval = xxifelse(yyvsp[-4],yyvsp[-3],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 51: /* expr: FOR forcond expr_or_assign_or_help */ { yyval = xxfor(yyvsp[-2],yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 52: /* expr: WHILE cond expr_or_assign_or_help */ { yyval = xxwhile(yyvsp[-2],yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 53: /* expr: REPEAT expr_or_assign_or_help */ { yyval = xxrepeat(yyvsp[-1],yyvsp[0]); setId((yyloc)); } break; case 54: /* expr: expr LBB sublist ']' ']' */ { yyval = xxsubscript(yyvsp[-4],yyvsp[-3],yyvsp[-2]); setId((yyloc)); } break; case 55: /* expr: expr '[' sublist ']' */ { yyval = xxsubscript(yyvsp[-3],yyvsp[-2],yyvsp[-1]); setId((yyloc)); } break; case 56: /* expr: SYMBOL NS_GET SYMBOL */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); modif_token( &(yylsp[-2]), SYMBOL_PACKAGE ) ; } break; case 57: /* expr: SYMBOL NS_GET STR_CONST */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); modif_token( &(yylsp[-2]), SYMBOL_PACKAGE ) ; } break; case 58: /* expr: STR_CONST NS_GET SYMBOL */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 59: /* expr: STR_CONST NS_GET STR_CONST */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 60: /* expr: SYMBOL NS_GET_INT SYMBOL */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); modif_token( &(yylsp[-2]), SYMBOL_PACKAGE ) ;} break; case 61: /* expr: SYMBOL NS_GET_INT STR_CONST */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); modif_token( &(yylsp[-2]), SYMBOL_PACKAGE ) ;} break; case 62: /* expr: STR_CONST NS_GET_INT SYMBOL */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 63: /* expr: STR_CONST NS_GET_INT STR_CONST */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 64: /* expr: expr '$' SYMBOL */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 65: /* expr: expr '$' STR_CONST */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 66: /* expr: expr '@' SYMBOL */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); modif_token( &(yylsp[0]), SLOT ) ; } break; case 67: /* expr: expr '@' STR_CONST */ { yyval = xxbinary(yyvsp[-1],yyvsp[-2],yyvsp[0]); setId((yyloc)); } break; case 68: /* expr: NEXT */ { yyval = xxnxtbrk(yyvsp[0]); setId((yyloc)); } break; case 69: /* expr: BREAK */ { yyval = xxnxtbrk(yyvsp[0]); setId((yyloc)); } break; case 70: /* cond: '(' expr_or_help ')' */ { yyval = xxcond(yyvsp[-1]); } break; case 71: /* ifcond: '(' expr_or_help ')' */ { yyval = xxifcond(yyvsp[-1]); } break; case 72: /* forcond: '(' SYMBOL IN expr_or_help ')' */ { yyval = xxforcond(yyvsp[-3],yyvsp[-1]); setId((yyloc)); } break; case 73: /* exprlist: %empty */ { yyval = xxexprlist0(); setId((yyloc)); } break; case 74: /* exprlist: expr_or_assign_or_help */ { yyval = xxexprlist1(yyvsp[0], &(yylsp[0])); } break; case 75: /* exprlist: exprlist ';' expr_or_assign_or_help */ { yyval = xxexprlist2(yyvsp[-2], yyvsp[0], &(yylsp[0])); } break; case 76: /* exprlist: exprlist ';' */ { yyval = yyvsp[-1]; setId((yyloc)); } break; case 77: /* exprlist: exprlist '\n' expr_or_assign_or_help */ { yyval = xxexprlist2(yyvsp[-2], yyvsp[0], &(yylsp[0])); } break; case 78: /* exprlist: exprlist '\n' */ { yyval = yyvsp[-1];} break; case 79: /* sublist: sub */ { yyval = xxsublist1(yyvsp[0]); } break; case 80: /* sublist: sublist cr ',' sub */ { yyval = xxsublist2(yyvsp[-3],yyvsp[0]); } break; case 81: /* sub: %empty */ { yyval = xxsub0(); } break; case 82: /* sub: expr_or_help */ { yyval = xxsub1(yyvsp[0], &(yylsp[0])); } break; case 83: /* sub: SYMBOL EQ_ASSIGN */ { yyval = xxsymsub0(yyvsp[-1], &(yylsp[-1])); modif_token( &(yylsp[0]), EQ_SUB ) ; modif_token( &(yylsp[-1]), SYMBOL_SUB ) ; } break; case 84: /* sub: SYMBOL EQ_ASSIGN expr_or_help */ { yyval = xxsymsub1(yyvsp[-2],yyvsp[0], &(yylsp[-2])); modif_token( &(yylsp[-1]), EQ_SUB ) ; modif_token( &(yylsp[-2]), SYMBOL_SUB ) ; } break; case 85: /* sub: STR_CONST EQ_ASSIGN */ { yyval = xxsymsub0(yyvsp[-1], &(yylsp[-1])); modif_token( &(yylsp[0]), EQ_SUB ) ; } break; case 86: /* sub: STR_CONST EQ_ASSIGN expr_or_help */ { yyval = xxsymsub1(yyvsp[-2],yyvsp[0], &(yylsp[-2])); modif_token( &(yylsp[-1]), EQ_SUB ) ; } break; case 87: /* sub: NULL_CONST EQ_ASSIGN */ { yyval = xxnullsub0(&(yylsp[-1])); modif_token( &(yylsp[0]), EQ_SUB ) ; } break; case 88: /* sub: NULL_CONST EQ_ASSIGN expr_or_help */ { yyval = xxnullsub1(yyvsp[0], &(yylsp[-2])); modif_token( &(yylsp[-1]), EQ_SUB ) ; } break; case 89: /* formlist: %empty */ { yyval = xxnullformal(); } break; case 90: /* formlist: SYMBOL */ { yyval = xxfirstformal0(yyvsp[0]); modif_token( &(yylsp[0]), SYMBOL_FORMALS ) ; } break; case 91: /* formlist: SYMBOL EQ_ASSIGN expr_or_help */ { yyval = xxfirstformal1(yyvsp[-2],yyvsp[0]); modif_token( &(yylsp[-2]), SYMBOL_FORMALS ) ; modif_token( &(yylsp[-1]), EQ_FORMALS ) ; } break; case 92: /* formlist: formlist ',' SYMBOL */ { yyval = xxaddformal0(yyvsp[-2],yyvsp[0], &(yylsp[0])); modif_token( &(yylsp[0]), SYMBOL_FORMALS ) ; } break; case 93: /* formlist: formlist ',' SYMBOL EQ_ASSIGN expr_or_help */ { yyval = xxaddformal1(yyvsp[-4],yyvsp[-2],yyvsp[0],&(yylsp[-2])); modif_token( &(yylsp[-2]), SYMBOL_FORMALS ) ; modif_token( &(yylsp[-1]), EQ_FORMALS ) ;} break; case 94: /* cr: %empty */ { EatLines = 1; } break; default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; *++yyvsp = yyval; *++yylsp = yyloc; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ { const int yylhs = yyr1[yyn] - YYNTOKENS; const int yyi = yypgoto[yylhs] + *yyssp; yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp ? yytable[yyi] : yydefgoto[yylhs]); } goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; { yypcontext_t yyctx = {yyssp, yytoken, &yylloc}; char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx); if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == -1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = YY_CAST (char *, YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc))); if (yymsg) { yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx); yymsgp = yymsg; } else { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = YYENOMEM; } } yyerror (yymsgp); if (yysyntax_error_status == YYENOMEM) YYNOMEM; } } yyerror_range[1] = yylloc; if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, &yylloc); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (0) YYERROR; ++yynerrs; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ /* Pop stack until we find a state that shifts the error token. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYSYMBOL_YYerror; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yyerror_range[1] = *yylsp; yydestruct ("Error: popping", YY_ACCESSING_SYMBOL (yystate), yyvsp, yylsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END yyerror_range[2] = yylloc; ++yylsp; YYLLOC_DEFAULT (*yylsp, yyerror_range, 2); /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturnlab; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturnlab; /*-----------------------------------------------------------. | yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. | `-----------------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; goto yyreturnlab; /*----------------------------------------------------------. | yyreturnlab -- parsing is finished, clean up and return. | `----------------------------------------------------------*/ yyreturnlab: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, &yylloc); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", YY_ACCESSING_SYMBOL (+*yyssp), yyvsp, yylsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); return yyresult; } /*----------------------------------------------------------------------------*/ static int (*ptr_getc)(void); /* Private pushback, since file ungetc only guarantees one byte. We need up to one MBCS-worth */ #define DECLARE_YYTEXT_BUFP(bp) char *bp = yytext ; #define YYTEXT_PUSH(c, bp) do { \ if ((bp) - yytext >= sizeof(yytext) - 1){ \ raiseLexError("bufferOverflow", NO_VALUE, NULL, \ _("input buffer overflow (%s:%d:%d)")); \ } \ *(bp)++ = ((char)c); \ } while(0) ; #define PUSHBACK_BUFSIZE 16 static 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 prevparse[PUSHBACK_BUFSIZE]; static int xxgetc(void) { int c; if(npush) c = pushback[--npush]; else c = ptr_getc(); prevpos = (prevpos + 1) % PUSHBACK_BUFSIZE; prevbytes[prevpos] = ParseState.xxbyteno; prevlines[prevpos] = ParseState.xxlineno; prevparse[prevpos] = ParseState.xxparseno; prevcols[prevpos] = ParseState.xxcolno; if (c == EOF) { EndOfFile = 1; return R_EOF; } R_ParseContextLast = (R_ParseContextLast + 1) % PARSE_CONTEXT_SIZE; R_ParseContext[R_ParseContextLast] = (char) c; if (c == '\n') { ParseState.xxlineno += 1; ParseState.xxcolno = 0; ParseState.xxbyteno = 0; ParseState.xxparseno += 1; } else { /* We only advance the column for the 1st byte in UTF-8, so handle later bytes specially */ if (!known_to_be_utf8 || (unsigned char)c < 0x80 || 0xC0 <= (unsigned char)c) ParseState.xxcolno++; ParseState.xxbyteno++; } if (c == '\t') ParseState.xxcolno = ((ParseState.xxcolno + 7) & ~7); R_ParseContextLine = 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]; ParseState.xxparseno = prevparse[prevpos]; prevpos = (prevpos + PUSHBACK_BUFSIZE - 1) % PUSHBACK_BUFSIZE; R_ParseContextLine = ParseState.xxlineno; 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; } /* Only used from finish_mbcs_in_parse_context. */ static int add_mbcs_byte_to_parse_context(void) { int c; if (EndOfFile) raiseLexError("invalidMBCS", NO_VALUE, NULL, _("invalid multibyte character in parser (%s:%d:%d)")); if(npush) c = pushback[--npush]; else c = ptr_getc(); if (c == EOF) raiseLexError("invalidMBCS", NO_VALUE, NULL, _("invalid multibyte character in parser (%s:%d:%d)")); R_ParseContextLast = (R_ParseContextLast + 1) % PARSE_CONTEXT_SIZE; R_ParseContext[R_ParseContextLast] = (char) c; return c; } /* On error, the parse context may end inside a multi-byte character. Add the missing bytes to the context to so that it contains full characters. */ static void finish_mbcs_in_parse_context(void) { int i, c, nbytes = 0, first; Rboolean mbcs = FALSE; /* find the first byte of the context */ for(i = R_ParseContextLast; R_ParseContext[i]; i = (i + PARSE_CONTEXT_SIZE - 1) % PARSE_CONTEXT_SIZE) { nbytes++; if (nbytes == PARSE_CONTEXT_SIZE) break; } if (!nbytes) return; if (!R_ParseContext[i]) first = (i + 1) % PARSE_CONTEXT_SIZE; else /* The beginning of the context has been overwritten and for a general encoding there is not way to recover it. It is possible for UTF-8, though. */ return; /* decode multi-byte characters */ for(i = 0; i < nbytes; i++) { c = R_ParseContext[(first + i) % PARSE_CONTEXT_SIZE]; if ((unsigned int)c < 0x80) continue; /* ASCII */ if (utf8locale) { /* UTF-8 could be handled more efficiently, searching from the end of the string */ i += utf8clen((char) c) - 1; if (i >= nbytes) { while (i >= nbytes) { add_mbcs_byte_to_parse_context(); nbytes++; } return; } } else mbcs = TRUE; } if (!mbcs) return; /* copy the context to a linear buffer */ char buf[nbytes + R_MB_CUR_MAX]; for(i = 0; i < nbytes; i++) buf[i] = R_ParseContext[(first + i) % PARSE_CONTEXT_SIZE]; for(i = 0; i < nbytes; i++) { wchar_t wc; int res; mbstate_t mb_st; mbs_init(&mb_st); res = (int) mbrtowc(&wc, buf + i, nbytes - i, &mb_st); while (res == -2 && nbytes < sizeof(buf)) { /* This is not necessarily correct for stateful MBCS */ buf[nbytes++] = (char) add_mbcs_byte_to_parse_context(); mbs_init(&mb_st); res = (int) mbrtowc(&wc, buf + i, nbytes - i, &mb_st); } if (res == -1) raiseLexError("invalidMBCS", NO_VALUE, NULL, _("invalid multibyte character in parser (%s:%d:%d)")); i += res - 1; } } /* * Increments/inits the token/grouping counter */ static void incrementId(void){ identifier++; } static void initId(void){ identifier = 0 ; } static SEXP makeSrcref(YYLTYPE *lloc, SEXP srcfile) { SEXP val; PROTECT(val = allocVector(INTSXP, 8)); 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; INTEGER(val)[6] = lloc->first_parsed; INTEGER(val)[7] = lloc->last_parsed; setAttrib(val, R_SrcfileSymbol, srcfile); setAttrib(val, R_ClassSymbol, mkString("srcref")); UNPROTECT(1); /* val */ return val; } static void attachSrcrefs(SEXP val) { SEXP srval; PROTECT(srval = SrcRefsToVectorList()); setAttrib(val, R_SrcrefSymbol, srval); setAttrib(val, R_SrcfileSymbol, PS_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; wholeFile.first_parsed = 1; wholeFile.last_parsed = ParseState.xxparseno; setAttrib(val, R_WholeSrcrefSymbol, makeSrcref(&wholeFile, PS_SRCFILE)); } PS_SET_SRCREFS(R_NilValue); ParseState.didAttach = TRUE; UNPROTECT(1); /* srval */ } static int xxvalue(SEXP v, int k, YYLTYPE *lloc) { if (k > 2) { if (ParseState.keepSrcRefs) { SEXP s = PROTECT(makeSrcref(lloc, PS_SRCFILE)); AppendToSrcRefs(s); UNPROTECT(1); /* s */ } RELEASE_SV(v); } R_CurrentExpr = v; return k; } static SEXP xxnullformal(void) { SEXP ans; PRESERVE_SV(ans = R_NilValue); return ans; } static SEXP xxfirstformal0(SEXP sym) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = FirstArg(R_MissingArg, sym)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(sym); return ans; } static SEXP xxfirstformal1(SEXP sym, SEXP expr) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = FirstArg(expr, sym)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(expr); RELEASE_SV(sym); return ans; } static SEXP xxaddformal0(SEXP formlist, SEXP sym, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) { CheckFormalArgs(formlist, sym, lloc); NextArg(formlist, R_MissingArg, sym); ans = formlist; } else { RELEASE_SV(formlist); PRESERVE_SV(ans = R_NilValue); } RELEASE_SV(sym); return ans; } static SEXP xxaddformal1(SEXP formlist, SEXP sym, SEXP expr, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) { CheckFormalArgs(formlist, sym, lloc); NextArg(formlist, expr, sym); ans = formlist; } else { RELEASE_SV(formlist); PRESERVE_SV(ans = R_NilValue); } RELEASE_SV(expr); RELEASE_SV(sym); return ans; } static SEXP xxexprlist0(void) { SEXP ans; if (GenerateCode) { PRESERVE_SV(ans = NewList()); if (ParseState.keepSrcRefs) { setAttrib(ans, R_SrcrefSymbol, PS_SRCREFS); PS_SET_SRCREFS(R_NilValue); } } else PRESERVE_SV(ans = R_NilValue); return ans; } static SEXP xxexprlist1(SEXP expr, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) { PRESERVE_SV(ans = NewList()); if (ParseState.keepSrcRefs) { setAttrib(ans, R_SrcrefSymbol, PS_SRCREFS); SEXP s = PROTECT(makeSrcref(lloc, PS_SRCFILE)); SetSingleSrcRef(s); UNPROTECT(1); /* s */ } GrowList(ans, expr); } else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(expr); return ans; } static SEXP xxexprlist2(SEXP exprlist, SEXP expr, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) { if (ParseState.keepSrcRefs) { SEXP s = PROTECT(makeSrcref(lloc, PS_SRCFILE)); AppendToSrcRefs(s); UNPROTECT(1); /* s */ } GrowList(exprlist, expr); ans = exprlist; } else { RELEASE_SV(exprlist); PRESERVE_SV(ans = R_NilValue); } RELEASE_SV(expr); return ans; } static SEXP xxsub0(void) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang2(R_MissingArg,R_NilValue)); else PRESERVE_SV(ans = R_NilValue); return ans; } static SEXP xxsub1(SEXP expr, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = TagArg(expr, R_NilValue, lloc)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(expr); return ans; } static SEXP xxsymsub0(SEXP sym, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = TagArg(R_MissingArg, sym, lloc)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(sym); return ans; } static SEXP xxsymsub1(SEXP sym, SEXP expr, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = TagArg(expr, sym, lloc)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(expr); RELEASE_SV(sym); return ans; } static SEXP xxnullsub0(YYLTYPE *lloc) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = TagArg(R_MissingArg, R_NullSymbol, lloc)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(R_NilValue); return ans; } static SEXP xxnullsub1(SEXP expr, YYLTYPE *lloc) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = TagArg(expr, R_NullSymbol, lloc)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(R_NilValue); RELEASE_SV(expr); return ans; } static SEXP xxsublist1(SEXP sub) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = FirstArg(CAR(sub),CADR(sub))); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(sub); return ans; } static SEXP xxsublist2(SEXP sublist, SEXP sub) { SEXP ans; if (GenerateCode) { NextArg(sublist, CAR(sub), CADR(sub)); ans = sublist; } else { RELEASE_SV(sublist); PRESERVE_SV(ans = R_NilValue); } RELEASE_SV(sub); 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) PRESERVE_SV(ans = lang3(ifsym, cond, expr)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(expr); RELEASE_SV(cond); return ans; } static SEXP xxifelse(SEXP ifsym, SEXP cond, SEXP ifexpr, SEXP elseexpr) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang4(ifsym, cond, ifexpr, elseexpr)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(elseexpr); RELEASE_SV(ifexpr); RELEASE_SV(cond); return ans; } static SEXP xxforcond(SEXP sym, SEXP expr) { SEXP ans; EatLines = 1; if (GenerateCode) PRESERVE_SV(ans = LCONS(sym, expr)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(expr); RELEASE_SV(sym); return ans; } static SEXP xxfor(SEXP forsym, SEXP forcond, SEXP body) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang4(forsym, CAR(forcond), CDR(forcond), body)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(body); RELEASE_SV(forcond); return ans; } static SEXP xxwhile(SEXP whilesym, SEXP cond, SEXP body) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang3(whilesym, cond, body)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(body); RELEASE_SV(cond); return ans; } static SEXP xxrepeat(SEXP repeatsym, SEXP body) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang2(repeatsym, body)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(body); return ans; } static SEXP xxnxtbrk(SEXP keyword) { if (GenerateCode) PRESERVE_SV(keyword = lang1(keyword)); else PRESERVE_SV(keyword = R_NilValue); return keyword; } static SEXP xxfuncall(SEXP expr, SEXP args) { SEXP ans, sav_expr = expr; if (GenerateCode) { if (isString(expr) && expr != R_PlaceholderToken) expr = installTrChar(STRING_ELT(expr, 0)); PROTECT(expr); if (length(CDR(args)) == 1 && CADR(args) == R_MissingArg && TAG(CDR(args)) == R_NilValue ) ans = lang1(expr); else ans = LCONS(expr, CDR(args)); UNPROTECT(1); /* expr */ PRESERVE_SV(ans); } else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(args); RELEASE_SV(sav_expr); return ans; } static SEXP mkChar2(const char *name) { cetype_t enc = CE_NATIVE; if(known_to_be_latin1) enc = CE_LATIN1; else if(known_to_be_utf8) enc = CE_UTF8; return mkCharLenCE(name, (int) strlen(name), enc); } static SEXP mkString2(const char *s, size_t 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, (int) len, enc)); UNPROTECT(1); /* t */ return t; } static SEXP xxdefun(SEXP fname, SEXP formals, SEXP body, YYLTYPE *lloc) { SEXP ans, srcref; if (GenerateCode) { if (ParseState.keepSrcRefs) { srcref = makeSrcref(lloc, PS_SRCFILE); ParseState.didAttach = TRUE; } else srcref = R_NilValue; PRESERVE_SV(ans = lang4(fname, CDR(formals), body, srcref)); } else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(body); RELEASE_SV(formals); return ans; } static SEXP xxunary(SEXP op, SEXP arg) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang2(op, arg)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(arg); return ans; } static SEXP xxbinary(SEXP n1, SEXP n2, SEXP n3) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang3(n1, n2, n3)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(n2); RELEASE_SV(n3); return ans; } static void check_rhs(SEXP rhs, YYLTYPE *lloc) { /* rule out syntactically special functions */ /* the IS_SPECIAL_SYMBOL bit is set in names.c */ SEXP fun = CAR(rhs); if (TYPEOF(fun) == SYMSXP && IS_SPECIAL_SYMBOL(fun)) raiseParseError("unsupportedInPipe", rhs, STRING_VALUE, CHAR(PRINTNAME(fun)), lloc, _("function '%s' not supported in RHS call of a pipe (%s:%d:%d)")); } static void checkTooManyPlaceholders(SEXP rhs, SEXP args, YYLTYPE *lloc) { for (SEXP rest = args; rest != R_NilValue; rest = CDR(rest)) if (CAR(rest) == R_PlaceholderToken) raiseParseError("tooManyPlaceholders", rhs, NO_VALUE, NULL, lloc, _("pipe placeholder may only appear once (%s:%d:%d)")); } static int checkForPlaceholderList(SEXP placeholder, SEXP list) { for (; list != R_NilValue; list = CDR(list)) if (checkForPlaceholder(placeholder, CAR(list))) return TRUE; return FALSE; } static SEXP findExtractorChainPHCell(SEXP placeholder, SEXP rhs, SEXP expr, YYLTYPE *lloc) { SEXP fun = CAR(expr); if (fun == R_BracketSymbol || fun == R_Bracket2Symbol || fun == R_DollarSymbol || fun == R_AtsignSymbol) { /* If the RHS is a call to an extractor ([, [[, $), then recursively follow the chain of extractions to the expression for the object from which elements are being extracted. */ SEXP arg1 = CADR(expr); SEXP phcell = arg1 == placeholder ? CDR(expr) : findExtractorChainPHCell(placeholder, rhs, arg1, lloc); /* If a placeholder is found, then check on the way back out that there are no other placeholders. */ if (phcell != NULL && checkForPlaceholderList(placeholder, CDDR(expr))) raiseParseError("tooManyPlaceholders", rhs, NO_VALUE, NULL, lloc, _("pipe placeholder may only appear once (%s:%d:%d)")); return phcell; } else return NULL; } static SEXP xxpipe(SEXP lhs, SEXP rhs, YYLTYPE *lloc_rhs) { SEXP ans; if (GenerateCode) { if (TYPEOF(rhs) != LANGSXP) raiseParseError("RHSnotFnCall", rhs, NO_VALUE, NULL, lloc_rhs, _("The pipe operator requires a function call as RHS (%s:%d:%d)")); /* allow x => log(x) on RHS */ if (CAR(rhs) == R_PipeBindSymbol) { SEXP var = CADR(rhs); SEXP expr = CADDR(rhs); if (TYPEOF(var) != SYMSXP) raiseParseError("notASymbol", var, NO_VALUE, NULL, lloc_rhs, _("RHS variable must be a symbol (%s:%d:%d)")); SEXP alist = list1(R_MissingArg); SET_TAG(alist, var); SEXP fun = lang4(R_FunctionSymbol, alist, expr, R_NilValue); return lang2(fun, lhs); } /* check for placeholder in the RHS function */ if (checkForPlaceholder(R_PlaceholderToken, CAR(rhs))) raiseParseError("placeholderInRHSFn",R_NilValue, NO_VALUE, NULL, lloc_rhs, _("pipe placeholder cannot be used in the RHS function (%s:%d:%d)")); /* allow for _$a[1]$b and the like */ SEXP phcell = findExtractorChainPHCell(R_PlaceholderToken, rhs, rhs, lloc_rhs); if (phcell != NULL) { SETCAR(phcell, lhs); return rhs; } /* allow top-level placeholder */ for (SEXP a = CDR(rhs); a != R_NilValue; a = CDR(a)) if (CAR(a) == R_PlaceholderToken) { if (TAG(a) == R_NilValue) raiseParseError("placeholderNotNamed", rhs, NO_VALUE, NULL, lloc_rhs, _("pipe placeholder can only be used as a named argument (%s:%d:%d)")); checkTooManyPlaceholders(rhs, CDR(a), lloc_rhs); SETCAR(a, lhs); return rhs; } check_rhs(rhs, lloc_rhs); SEXP fun = CAR(rhs); SEXP args = CDR(rhs); PRESERVE_SV(ans = lcons(fun, lcons(lhs, args))); } else { PRESERVE_SV(ans = R_NilValue); } RELEASE_SV(lhs); RELEASE_SV(rhs); return ans; } static SEXP xxpipebind(SEXP fn, SEXP lhs, SEXP rhs, YYLTYPE *lloc_bind) { static int use_pipebind = 0; if (use_pipebind != 1) { char *lookup = getenv("_R_USE_PIPEBIND_"); use_pipebind = ((lookup != NULL) && StringTrue(lookup)) ? 1 : 0; } if (use_pipebind) return xxbinary(fn, lhs, rhs); else raiseParseError("pipebindDisabled", R_NilValue, NO_VALUE, NULL, lloc_bind, _("'=>' is disabled; set '_R_USE_PIPEBIND_' envvar to a true value to enable it (%s:%d:%d)")); } static SEXP xxparen(SEXP n1, SEXP n2) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = lang2(n1, n2)); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(n2); return ans; } /* This should probably use CONS rather than LCONS, but it shouldn't matter and we would rather not meddle See PR#7055 */ static SEXP xxsubscript(SEXP a1, SEXP a2, SEXP a3) { SEXP ans; if (GenerateCode) PRESERVE_SV(ans = LCONS(a2, CONS(a1, CDR(a3)))); else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(a3); RELEASE_SV(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)); SEXP s = PROTECT(makeSrcref(lloc, PS_SRCFILE)); PrependToSrcRefs(s); attachSrcrefs(a2); UNPROTECT(2); /* prevSrcrefs, s */ #ifndef SWITCH_TO_REFCNT /* SrcRefs got NAMED by being an attribute, preventively getAttrib(), but it has not in fact been referenced. Set NAMED to 0 to avoid overhead in further setAttrib calls due to cycle detection. */ SET_NAMED(prevSrcrefs, 0); #endif PS_SET_SRCREFS(prevSrcrefs); } PRESERVE_SV(ans = a2); } else PRESERVE_SV(ans = R_NilValue); RELEASE_SV(a2); return ans; } /*--------------------------------------------------------------------------*/ static SEXP TagArg(SEXP arg, SEXP tag, YYLTYPE *lloc) { switch (TYPEOF(tag)) { case STRSXP: tag = installTrChar(STRING_ELT(tag, 0)); case NILSXP: case SYMSXP: return lang2(arg, tag); default: raiseParseError("badTagType", R_NilValue, NO_VALUE, NULL, lloc, _("incorrect tag type (%s:%d:%d)")); 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. */ /* These functions must be called with arguments protected */ /* 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 void GrowList(SEXP l, SEXP s) { SEXP tmp; tmp = CONS(s, R_NilValue); SETCDR(CAR(l), tmp); SETCAR(l, tmp); } /* Create a stretchy list with a single named element */ static SEXP FirstArg(SEXP s, SEXP tag) { SEXP tmp; PROTECT(tmp = NewList()); GrowList(tmp, s); SET_TAG(CAR(tmp), tag); UNPROTECT(1); /* tmp */ return tmp; } /* Add named element to the end of a stretchy list */ static void NextArg(SEXP l, SEXP s, SEXP tag) { GrowList(l, s); SET_TAG(CAR(l), tag); } /* SrcRefs (PS_SRCREFS) are represented as R_NilValue (empty) or by a stretchy list (which includes another representation for empty) for fast append operation. */ static void SetSingleSrcRef(SEXP r) { SEXP l; PROTECT(l = NewList()); GrowList(l, r); PS_SET_SRCREFS(l); UNPROTECT(1); /* l */ } static void AppendToSrcRefs(SEXP r) { SEXP l = PS_SRCREFS; if (l == R_NilValue) SetSingleSrcRef(r); else GrowList(l, r); } static void PrependToSrcRefs(SEXP r) { SEXP l = PS_SRCREFS; if (l == R_NilValue) SetSingleSrcRef(r); else if (CDR(l) == R_NilValue) /* adding to empty stretchy list */ GrowList(l, r); else { SEXP tmp = CONS(r, CDR(l)); SETCDR(l, tmp); } } static SEXP SrcRefsToVectorList(void) { SEXP l = PS_SRCREFS; if (l == R_NilValue) return PairToVectorList(l); else return PairToVectorList(CDR(l)); } /*--------------------------------------------------------------------------*/ /* * Parsing Entry Points: * * The Following entry points provide language parsing facilities. * Note that there are separate entry points for parsing IoBuffers * (i.e. interactive 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 50 static int SavedToken; static SEXP SavedLval; static char contextstack[CONTEXTSTACK_SIZE], *contextp; static void PutSrcRefState(SrcRefState *state); static void UseSrcRefState(SrcRefState *state); /* This is called once when R starts up. */ attribute_hidden void InitParser(void) { ParseState.sexps = allocVector(VECSXP, 7); /* initialized to R_NilValue */ ParseState.data = R_NilValue; INIT_SVS(); R_PreserveObject(ParseState.sexps); /* never released in an R session */ R_NullSymbol = install("NULL"); R_PlaceholderToken = ScalarString(mkChar("_")); MARK_NOT_MUTABLE(R_PlaceholderToken); R_PreserveObject(R_PlaceholderToken); R_PipeBindSymbol = install("=>"); } static void FinalizeSrcRefStateOnError(void *dummy) { R_FinalizeSrcRefState(); } /* This is called each time a new parse sequence begins */ attribute_hidden void R_InitSrcRefState(RCNTXT* cptr) { if (busy) { SrcRefState *prev = malloc(sizeof(SrcRefState)); if (prev == NULL) error(_("allocation of source reference state failed")); PutSrcRefState(prev); ParseState.prevState = prev; ParseState.sexps = allocVector(VECSXP, 7); ParseState.data = R_NilValue; INIT_SVS(); R_PreserveObject(ParseState.sexps); /* ParseState.sexps released in R_FinalizeSrcRefState */ } else /* re-use data, text, ids arrays */ ParseState.prevState = NULL; /* set up context _after_ PutSrcRefState */ begincontext(cptr, CTXT_CCODE, R_NilValue, R_BaseEnv, R_BaseEnv, R_NilValue, R_NilValue); cptr->cend = &FinalizeSrcRefStateOnError; cptr->cenddata = NULL; ParseState.keepSrcRefs = FALSE; ParseState.keepParseData = TRUE; ParseState.didAttach = FALSE; PS_SET_SRCFILE(R_NilValue); PS_SET_ORIGINAL(R_NilValue); ParseState.data_count = 0; ParseState.xxlineno = 1; ParseState.xxcolno = 0; ParseState.xxbyteno = 0; ParseState.xxparseno = 1; busy = TRUE; } attribute_hidden void R_FinalizeSrcRefState(void) { PS_SET_SRCFILE(R_NilValue); PS_SET_ORIGINAL(R_NilValue); CLEAR_SVS(); /* Free the data, text and ids if we are restoring a previous state, or if they have grown too large */ if (PS_DATA != R_NilValue) { if (ParseState.prevState || DATA_COUNT > MAX_DATA_COUNT) { PS_SET_DATA(R_NilValue); PS_SET_TEXT(R_NilValue); } else /* Remove all the strings from the text vector so they don't take up memory, and clean up data */ for (int i=0; i < ParseState.data_count; i++) { SET_STRING_ELT(PS_TEXT, i, R_BlankString); _PARENT(i) = 0; } } if (PS_IDS != R_NilValue) { if (ParseState.prevState || ID_COUNT > MAX_DATA_COUNT) { PS_SET_IDS(R_NilValue); } else {/* Remove the parent records */ if (identifier > ID_COUNT) identifier = ID_COUNT; for (int i=0; i < identifier; i++) { ID_ID(i) = 0; ID_PARENT(i) = 0; } } } ParseState.data_count = NA_INTEGER; if (ParseState.prevState) { R_ReleaseObject(ParseState.sexps); SrcRefState *prev = ParseState.prevState; UseSrcRefState(prev); free(prev); } else busy = FALSE; } static void UseSrcRefState(SrcRefState *state) { ParseState.keepSrcRefs = state->keepSrcRefs; ParseState.keepParseData = state->keepParseData; ParseState.sexps = state->sexps; ParseState.data = state->data; ParseState.data_count = state->data_count; ParseState.xxlineno = state->xxlineno; ParseState.xxcolno = state->xxcolno; ParseState.xxbyteno = state->xxbyteno; ParseState.xxparseno = state->xxparseno; ParseState.prevState = state->prevState; busy = TRUE; } static void PutSrcRefState(SrcRefState *state) { state->keepSrcRefs = ParseState.keepSrcRefs; state->keepParseData = ParseState.keepParseData; state->sexps = ParseState.sexps; state->data = ParseState.data; state->data_count = ParseState.data_count; state->xxlineno = ParseState.xxlineno; state->xxcolno = ParseState.xxcolno; state->xxbyteno = ParseState.xxbyteno; state->xxparseno = ParseState.xxparseno; state->prevState = ParseState.prevState; } static void ParseInit(void) { contextp = contextstack; *contextp = ' '; SavedToken = 0; SavedLval = R_NilValue; EatLines = 0; EndOfFile = 0; xxcharcount = 0; npush = 0; HavePipeBind = FALSE; } static void initData(void) { ParseState.data_count = 0 ; } static void ParseContextInit(void) { R_ParseContextLast = 0; R_ParseContext[0] = '\0'; /* starts the identifier counter*/ initId(); initData(); } static int checkForPipeBind(SEXP arg) { if (! HavePipeBind) return FALSE; else if (arg == R_PipeBindSymbol) return TRUE; else if (TYPEOF(arg) == LANGSXP) for (SEXP cur = arg; cur != R_NilValue; cur = CDR(cur)) if (checkForPipeBind(CAR(cur))) return TRUE; return FALSE; } static SEXP R_Parse1(ParseStatus *status) { Status = 1; /* safety */ switch(yyparse()) { case 0: switch(Status) { case 0: /* End of file */ *status = PARSE_EOF; if (EndOfFile == 2) *status = PARSE_INCOMPLETE; break; case 1: /* Error (currently unreachable) */ *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 */ if (checkForPlaceholder(R_PlaceholderToken, R_CurrentExpr)) { YYLTYPE lloc; lloc.first_line = ParseState.xxlineno; lloc.first_column = ParseState.xxcolno; if (Status == 3) lloc.first_line--; raiseParseError("invalidPlaceholder", R_CurrentExpr, NO_VALUE, NULL, &lloc, _("invalid use of pipe placeholder (%s:%d:%d)")); } if (checkForPipeBind(R_CurrentExpr)) { YYLTYPE lloc; lloc.first_line = ParseState.xxlineno; lloc.first_column = ParseState.xxcolno; if (Status == 3) lloc.first_line--; raiseParseError("invalidPipeBind", R_CurrentExpr, NO_VALUE, NULL, &lloc, _("invalid use of pipe bind symbol (%s:%d:%d)")); } *status = PARSE_OK; break; } break; case 1: /* Syntax error / incomplete */ *status = PARSE_ERROR; if (EndOfFile) *status = PARSE_INCOMPLETE; break; case 2: error(_("out of memory while parsing")); } return R_CurrentExpr; } static FILE *fp_parse; static int file_getc(void) { return R_fgetc(fp_parse); } /* used in main.c */ attribute_hidden SEXP R_Parse1File(FILE *fp, int gencode, ParseStatus *status) { ParseInit(); ParseContextInit(); GenerateCode = gencode; fp_parse = fp; ptr_getc = file_getc; R_Parse1(status); CLEAR_SVS(); return R_CurrentExpr; } static IoBuffer *iob; static int buffer_getc(void) { return R_IoBufferGetc(iob); } /* Used only in main.c */ attribute_hidden SEXP R_Parse1Buffer(IoBuffer *buffer, int gencode, ParseStatus *status) { Rboolean keepSource = FALSE; RCNTXT cntxt; R_InitSrcRefState(&cntxt); if (gencode) { keepSource = asLogical(GetOption1(install("keep.source"))); if (keepSource) { ParseState.keepSrcRefs = TRUE; ParseState.keepParseData = asLogical(GetOption1(install("keep.parse.data"))); PS_SET_SRCFILE(NewEnvironment(R_NilValue, R_NilValue, R_EmptyEnv)); PS_SET_ORIGINAL(PS_SRCFILE); PS_SET_SRCREFS(R_NilValue); } } ParseInit(); ParseContextInit(); GenerateCode = gencode; iob = buffer; ptr_getc = buffer_getc; R_Parse1(status); if (gencode && keepSource) { if (ParseState.didAttach) { int buflen = R_IoBufferReadOffset(buffer); char buf[buflen+1]; SEXP class; R_IoBufferReadReset(buffer); for (int i=0; i= 0 && i >= n) break; ParseInit(); rval = R_Parse1(status); switch(*status) { case PARSE_NULL: break; case PARSE_OK: PROTECT(rval); GrowList(t, rval); UNPROTECT(1); /* rval */ i++; break; case PARSE_INCOMPLETE: case PARSE_ERROR: UNPROTECT(1); /* t */ if (ParseState.keepSrcRefs && ParseState.keepParseData) finalizeData(); endcontext(&cntxt); R_FinalizeSrcRefState(); return R_NilValue; break; case PARSE_EOF: goto finish; break; } } finish: t = CDR(t); PROTECT(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) { if (ParseState.keepParseData) finalizeData(); attachSrcrefs(rval); } UNPROTECT(2); /* t, rval */ PROTECT(rval); endcontext(&cntxt); R_FinalizeSrcRefState(); UNPROTECT(1); /* rval */ *status = PARSE_OK; return rval; } /* used in edit.c */ attribute_hidden SEXP 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_hidden SEXP 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(GetOption1(install("prompt")), 0)); } else return CHAR(STRING_ELT(prompt, 0)); } else { return CHAR(STRING_ELT(GetOption1(install("continue")), 0)); } } /* used in source.c */ attribute_hidden SEXP 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; RCNTXT cntxt; R_IoBufferWriteReset(buffer); buf[0] = '\0'; bufp = buf; R_InitSrcRefState(&cntxt); ParseContextInit(); GenerateCode = 1; iob = buffer; ptr_getc = buffer_getc; PS_SET_SRCFILE(srcfile); PS_SET_ORIGINAL(srcfile); if (isEnvironment(srcfile)) { ParseState.keepSrcRefs = TRUE; ParseState.keepParseData = asLogical(GetOption1(install("keep.parse.data"))); PS_SET_SRCREFS(R_NilValue); } PROTECT(t = NewList()); 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 reset xxlineno and xxcolno */ ParseInit(); /* Not calling ParseContextInit() as it resets parse data, and to be consistent with R_Parse */ R_Parse1(status); rval = R_CurrentExpr; switch(*status) { case PARSE_NULL: break; case PARSE_OK: PROTECT(rval); GrowList(t, rval); UNPROTECT(1); /* rval */ i++; break; case PARSE_INCOMPLETE: case PARSE_ERROR: UNPROTECT(1); /* t */ R_IoBufferWriteReset(buffer); endcontext(&cntxt); R_FinalizeSrcRefState(); return R_NilValue; break; case PARSE_EOF: goto finish; break; } } finish: R_IoBufferWriteReset(buffer); t = CDR(t); PROTECT(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) { if (ParseState.keepParseData) finalizeData(); attachSrcrefs(rval); } UNPROTECT(2); /* t, rval */ PROTECT(rval); endcontext(&cntxt); R_FinalizeSrcRefState(); UNPROTECT(1); /* rval */ *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) raiseLexError("contextstackOverflow", NO_VALUE, NULL, _("contextstack overflow (%s:%d:%d)")); *++contextp = 'i'; } } static void ifpop(void) { if (*contextp=='i') *contextp-- = 0; } /* This is only called following ., so we only care if it is an 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; else xxungetc(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: PRESERVE_SV(yylval = R_NilValue); break; case NUM_CONST: if(GenerateCode) { switch(i) { case 1: PRESERVE_SV(yylval = mkNA()); break; case 2: PRESERVE_SV(yylval = mkTrue()); break; case 3: PRESERVE_SV(yylval = mkFalse()); break; case 4: PRESERVE_SV(yylval = allocVector(REALSXP, 1)); REAL(yylval)[0] = R_PosInf; break; case 5: PRESERVE_SV(yylval = allocVector(REALSXP, 1)); REAL(yylval)[0] = R_NaN; break; case 6: PRESERVE_SV(yylval = allocVector(INTSXP, 1)); INTEGER(yylval)[0] = NA_INTEGER; break; case 7: PRESERVE_SV(yylval = allocVector(REALSXP, 1)); REAL(yylval)[0] = NA_REAL; break; case 8: PRESERVE_SV(yylval = allocVector(STRSXP, 1)); SET_STRING_ELT(yylval, 0, NA_STRING); break; case 9: PRESERVE_SV(yylval = allocVector(CPLXSXP, 1)); COMPLEX(yylval)[0].r = COMPLEX(yylval)[0].i = NA_REAL; break; } } else PRESERVE_SV(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: PRESERVE_SV(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. */ 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; } attribute_hidden 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(const char *s) { static const char *const yytname_translations[] = { /* the left column are strings coming from bison, the right column 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 xgettext to 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", "':::'", "PIPE", "'|>'", "PIPEBIND", "'=>'", "PLACEHOLDER", "'_'", 0 }; static char const yyunexpected[] = "syntax error, unexpected "; static char const yyexpecting[] = ", expecting "; char *expecting; if (!EndOfFile) /* On EndOfFile, there are no more bytes to add, but trying to do so may have non-trivial performance overhead and this can be reached also in non-error situations, e.g. from repl. */ finish_mbcs_in_parse_context(); R_ParseError = yylloc.first_line; R_ParseErrorCol = yylloc.first_column; R_ParseErrorFile = PS_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])) { switch(i/2) { case 0: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected input")); break; case 1: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected end of input")); break; case 2: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected input")); break; case 3: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected string constant")); break; case 4: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected numeric constant")); break; case 5: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected symbol")); break; case 6: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected assignment")); break; case 7: snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected end of line")); break; default: if (!strcmp(s + sizeof yyunexpected - 1, "PLACEHOLDER")) { /* cheat to avoid changing the parse error message for mis-use of _ */ snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected input")); break; } snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE, _("unexpected %s"), yytname_translations[i+1]); break; } return; } } snprintf(R_ParseErrorMsg, PARSE_ERROR_SIZE - 1, _("unexpected %s"), s + sizeof yyunexpected - 1); } else { strncpy(R_ParseErrorMsg, s, PARSE_ERROR_SIZE - 1); R_ParseErrorMsg[PARSE_ERROR_SIZE - 1] = '\0'; } } static void CheckFormalArgs(SEXP formlist, SEXP _new, YYLTYPE *lloc) { while (formlist != R_NilValue) { if (TAG(formlist) == _new) { raiseParseError("repeatedFormal", R_NilValue, STRING_VALUE, EncodeChar(PRINTNAME(_new)), lloc, _("repeated formal argument '%s' (%s:%d:%d)")); } formlist = CDR(formlist); } } /* This is used as the buffer for NumericValue, SpecialValue and SymbolValue. None of these could conceivably need 8192 bytes. It has not been used as the buffer for input character strings since Oct 2007 (released as 2.7.0), and for comments since 2.8.0 */ static char yytext[MAXELTSIZE]; static int SkipSpace(void) { int c; #if defined(USE_RI18N_FNS) // includes Win32 static wctype_t blankwct = 0; if (!blankwct) blankwct = Ri18n_wctype("blank"); #endif #ifdef Win32 if(!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 (clen == -1) { /* EOF whilst reading MBCS char */ xxungetc(c); c = R_EOF; break; } if(! Ri18n_iswctype(wc, blankwct) ) 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 (clen == -1) { /* EOF whilst reading MBCS char */ xxungetc(c); c = R_EOF; break; } #if defined(USE_RI18N_FNS) if(! Ri18n_iswctype(wc, blankwct) ) break; #else if(! iswblank(wc) ) break; #endif for(i = 1; i < clen; i++) c = xxgetc(); } } else #endif // does not support non-ASCII spaces, unlike Windows while ((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; /* locations before the # character was read */ int _first_column = ParseState.xxcolno ; int _first_parsed = ParseState.xxparseno ; int type = COMMENT ; Rboolean maybeLine = (ParseState.xxcolno == 1); Rboolean doSave; DECLARE_YYTEXT_BUFP(yyp); if (maybeLine) { char lineDirective[] = "#line"; YYTEXT_PUSH(c, yyp); for (i=1; i<5; i++) { c = xxgetc(); if (c != (int)(lineDirective[i])) { maybeLine = FALSE; break; } YYTEXT_PUSH(c, yyp); } if (maybeLine) c = processLineDirective(&type); } // we want to track down the character // __before__ the new line character int _last_column = ParseState.xxcolno ; int _last_parsed = ParseState.xxparseno ; if (c == '\n') { _last_column = prevcols[prevpos]; _last_parsed = prevparse[prevpos]; } doSave = !maybeLine; while (c != '\n' && c != R_EOF) { // Comments can be any length; we only record the ones that fit in yytext. if (doSave) { YYTEXT_PUSH(c, yyp); doSave = (yyp - yytext) < sizeof(yytext) - 2; } _last_column = ParseState.xxcolno ; _last_parsed = ParseState.xxparseno ; c = xxgetc(); } if (c == R_EOF) EndOfFile = 2; incrementId( ) ; YYTEXT_PUSH('\0', yyp); record_( _first_parsed, _first_column, _last_parsed, _last_column, type, identifier, doSave ? yytext : 0 ) ; return c; } static int NumericValue(int c) { int seendot = (c == '.'); int seenexp = 0; int last = c; int nd = 0; int asNumeric = 0; int count = 1; /* The number of characters seen */ 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') { count++; if (c == 'L') /* must be at the end. Won't allow 1Le3 (at present). */ { YYTEXT_PUSH(c, yyp); break; } if (c == 'x' || c == 'X') { if (count > 2 || last != '0') break; /* 0x must be first */ YYTEXT_PUSH(c, yyp); while(isdigit(c = xxgetc()) || ('a' <= c && c <= 'f') || ('A' <= c && c <= 'F') || c == '.') { if (c == '.') { if (seendot) return ERROR; seendot = 1; } YYTEXT_PUSH(c, yyp); nd++; } if (nd == 0) return ERROR; if (c == 'p' || c == 'P') { seenexp = 1; 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; } if (seendot && !seenexp) return ERROR; if (c == 'L') /* for getParseData */ { // seenexp will be checked later YYTEXT_PUSH(c, yyp); break; } 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; } if(c == 'i') YYTEXT_PUSH(c, yyp); /* for getParseData */ 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 the double and int values are the same. If not, this is a problem and we will not lose information and so use the numeric value. */ if(a != (double) b) { if(GenerateCode) { if(seendot == 1 && seenexp == 0) warning(_("integer literal %s contains decimal; using numeric value"), yytext); else { /* hide the L for the warning message */ warning(_("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 %s 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; } PRESERVE_SV(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. */ /* The buffer is reallocated on the R heap if needed; not by malloc */ /* to avoid memory leak in case of R error (long jump) */ #define STEXT_PUSH(c) do { \ size_t nc = bp - stext; \ if (nc >= nstext - 1) { \ char *old = stext; \ SEXP st1; \ nstext *= 2; \ PROTECT(st1 = allocVector(RAWSXP, nstext)); \ stext = (char *)RAW(st1); \ memmove(stext, old, nc); \ REPROTECT(st1, sti); \ UNPROTECT(1); /* st1 */ \ bp = stext+nc; } \ *bp++ = ((char) c); \ } while(0) /* The idea here is that if a string contains \u escapes that are not valid in the current locale, we should switch to UTF-8 for that string. Needs Unicode wide-char support or out substitutes. Defining __STDC_ISO_10646__ is done by the OS (or not) in wchar.t. Some (e.g. macOS, Solaris, FreeBSD) have Unicode wchar_t but do not define it: we override macOS and FreeBSD earlier in this file. */ #if defined(Win32) || defined(__STDC_ISO_10646__) typedef wchar_t ucs_t; # define mbcs_get_next2 mbcs_get_next #else typedef unsigned int ucs_t; # define WC_NOT_UNICODE // which is used to select our mbtoucs rather than system mbrtowc static 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-byte lead 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++) { c = xxgetc(); if(c == R_EOF) { /* EOF whilst reading MBCS char */ for(i--; i > 0; i--) xxungetc(s[i]); return -1; } s[i] = (char) c; } s[clen] ='\0'; /* x86 Solaris requires this */ res = mbtoucs(wc, s, clen); if(res == -1) raiseLexError("invalidMultibyteCharacter", NO_VALUE, NULL, _("invalid multibyte character (%s:%d:%d)")); } else { /* This is not necessarily correct for stateful MBCS */ while(clen <= R_MB_CUR_MAX) { res = mbtoucs(wc, s, clen); if(res >= 0) break; if(res == -1) raiseLexError("invalidMultibyte", NO_VALUE, NULL, _("invalid multibyte character (%s:%d:%d)")); /* so res == -2 */ c = xxgetc(); if(c == R_EOF) {/* EOF whilst reading MBCS char */ for(i = clen - 1; i > 0; i--) xxungetc(s[i]); return -1; } 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 Win32 nb = cnt*4; /* UCS-2/UTF-16 so max 4 bytes per wchar_t */ #else nb = cnt*6; #endif R_CheckStack2(nb); char s[nb]; memset(s, 0, nb); /* safety */ // This used to differentiate WC_NOT_UNICODE but not needed wcstoutf8(s, (const wchar_t *)wcs, sizeof(s)); PROTECT(t = allocVector(STRSXP, 1)); SET_STRING_ELT(t, 0, mkCharCE(s, CE_UTF8)); UNPROTECT(1); /* t */ return t; } /* * Skip at Least `min` Bytes in Complete Character Steps * * min: minimum number bytes of prefix of "c" to skip * returns: min or more as needed to skip complete characters * * Assumptions: * - sizeof(buffer) >= min + R_MB_CUR_MAX, i.e. at least 1 full char in buffer. * - MBCS encodings are valid (they've been read already so should be). * - Stateless encodings. */ static int skipBytesByChar(char *c, int min) { int res = 0; if(!mbcslocale) res = min; else { if(utf8locale) { /* Find first non continuation byte; we assume UTF-8 is valid. */ char *cc = c + min; while(((unsigned char)*cc & 0xc0) == 0x80) ++cc; res = (int) (cc - c); } else { mbstate_t mb_st; mbs_init(&mb_st); while(res < min) res += (int) mbrtowc(NULL, c + res, R_MB_CUR_MAX, &mb_st); } } return res; } #define CTEXT_PUSH(c) do { \ if (ct - currtext >= 1000) { \ int skip = skipBytesByChar(currtext, 100 + 4); \ memmove(currtext, "... ", 4); \ memmove(currtext + 4, currtext + skip, 1000 - skip + 1); \ ct -= skip - 4; \ currtext_truncated = TRUE; \ } \ *ct++ = ((char) c); \ } while(0) #define CTEXT_POP() ct-- /* Bidi formatting could confuse the code */ #define BIDI_CHECK(wc) do { \ if((wc) >= 0x202A && (wc) <= 0x2069 && \ !((wc) > 0x202E && (wc) < 0x2066)) \ raiseLexError("bidiNotAllowed", UCS_VALUE, &wc, \ _("bidi formatting not allowed, use escapes instead (\\u%04x) (%s:%d:%d)")); \ } while(0) /* 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; PROTECT_INDEX sti; int wcnt = 0; ucs_t wcs[10001]; Rboolean oct_or_hex = FALSE, use_wcs = FALSE, currtext_truncated = FALSE; PROTECT_WITH_INDEX(R_NilValue, &sti); CTEXT_PUSH(c); while ((c = xxgetc()) != R_EOF && c != quote) { CTEXT_PUSH(c); if (c == '\n') { xxungetc(c); CTEXT_POP(); /* Fix suggested by Mark Bravington to allow multiline strings * by pretending we've seen a backslash. Was: * return ERROR; */ c = '\\'; } if (c == '\\') { c = xxgetc(); if (c == R_EOF) break; CTEXT_PUSH(c); if ('0' <= c && c <= '7') { int octal = c - '0'; c = xxgetc(); if (c == R_EOF) break; if ('0' <= c && c <= '7') { CTEXT_PUSH(c); octal = 8 * octal + c - '0'; c = xxgetc(); if (c == R_EOF) break; if ('0' <= c && c <= '7') { CTEXT_PUSH(c); octal = 8 * octal + c - '0'; } else { xxungetc(c); } } else { xxungetc(c); } if (!octal) raiseLexError("nulNotAllowed", NO_VALUE, NULL, _("nul character not allowed (%s:%d:%d)")); if(octal > 0xff) raiseLexError("invalidOctal", INT_VALUE, &octal, _("\\%o exceeds maximum allowed octal value \\377 (%s:%d:%d)")); c = octal; oct_or_hex = TRUE; } else if(c == 'x') { int val = 0; int i, ext; for(i = 0; i < 2; i++) { c = xxgetc(); if (c == R_EOF) break; 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'; raiseLexError("badHex", NO_VALUE, NULL, _("'\\x' used without hex digits in character string (%s:%d:%d)")); } break; } val = 16*val + ext; } if (c == R_EOF) break; if (!val) raiseLexError("nulNotAllowed", NO_VALUE, NULL, _("nul character not allowed (%s:%d:%d)")); c = val; oct_or_hex = TRUE; } else if(c == 'u') { unsigned int val = 0; int i, ext; Rboolean delim = FALSE; if(forSymbol) raiseLexError("unicodeInBackticks", NO_VALUE, NULL, _("\\uxxxx sequences not supported inside backticks (%s:%d:%d)")); c = xxgetc(); if (c == R_EOF) break; if (c == '{') { delim = TRUE; CTEXT_PUSH(c); } else xxungetc(c); for(i = 0; i < 4; i++) { c = xxgetc(); if (c == R_EOF) break; 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'; raiseLexError("badUnicodeHex", NO_VALUE, NULL, _("'\\u' used without hex digits in character string (%s:%d:%d)")); } break; } val = 16*val + ext; } if (c == R_EOF) break; if(delim) { c = xxgetc(); if (c == R_EOF) break; if (c != '}') raiseLexError("invalidUnicode", NO_VALUE, NULL, _("invalid \\u{xxxx} sequence (line %d)")); else CTEXT_PUSH(c); } if (!val) raiseLexError("nulNotAllowed", NO_VALUE, NULL, _("nul character not allowed (%s:%d:%d)")); 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) raiseLexError("unicodeInBackticks", NO_VALUE, NULL, _("\\Uxxxxxxxx sequences not supported inside backticks (%s:%d:%d)")); c = xxgetc(); if (c == R_EOF) break; if (c == '{') { delim = TRUE; CTEXT_PUSH(c); } else xxungetc(c); for(i = 0; i < 8; i++) { c = xxgetc(); if (c == R_EOF) break; 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'; raiseLexError("badUnicodeHex", NO_VALUE, NULL, _("'\\U' used without hex digits in character string (%s:%d:%d)")); } break; } val = 16*val + ext; } if (c == R_EOF) break; if(delim) { c = xxgetc(); if (c == R_EOF) break; if (c != '}') raiseLexError("invalidUnicode", NO_VALUE, NULL, _("invalid \\U{xxxxxxxx} sequence (%s:%d:%d)")); else CTEXT_PUSH(c); } if (!val) raiseLexError("nulNotAllowed", NO_VALUE, NULL, _("nul character not allowed (%s:%d:%d)")); if (val > 0x10FFFF) { if(delim) raiseLexError("invalidUnicode", INT_VALUE, &val, _("invalid \\U{xxxxxxxx} value %6x (%s:%d:%d)")); else raiseLexError("invalidUnicode", INT_VALUE, &val, _("invalid \\Uxxxxxxxx value %6x (%s:%d:%d)")); } #ifdef Win32 if (0x010000 <= val && val <= 0x10FFFF) { /* Need surrogate pair in Windows */ val = val - 0x010000; WTEXT_PUSH( 0xD800 | (val >> 10) ); val = 0xDC00 | (val & 0x03FF); } #endif 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 '\\': case '"': case '\'': case '`': case ' ': case '\n': break; default: { char ch[2]; ch[0] = (char) c; ch[1] = '\0'; raiseLexError("unrecognizedEscape", STRING_VALUE, ch, _("'\\%s' is an unrecognized escape in character string (%s:%d:%d)")); } } } } else if(mbcslocale) { ucs_t wc; int clen = mbcs_get_next2(c, &wc); if (clen == -1) { /* EOF whilst reading MBCS char */ xxungetc(c); c = R_EOF; break; } BIDI_CHECK(wc); WTEXT_PUSH(wc); ParseState.xxbyteno += clen-1; for(int 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 */ /* FIXME: `wc` values will be wrong when native encoding differs from that indicated by `known_to_be*` */ int res = 0; #ifdef WC_NOT_UNICODE ucs_t wc; char s[2] = " "; s[0] = (char) c; res = (int) mbtoucs(&wc, s, 2); #else wchar_t wc; char s[2] = " "; s[0] = (char) c; /* This is not necessarily correct for stateful SBCS */ mbstate_t mb_st; mbs_init(&mb_st); res = (int) mbrtowc(&wc, s, 2, &mb_st); #endif if(res < 0) wc = 0xFFFD; /* placeholder for invalid encoding */ WTEXT_PUSH(wc); } } STEXT_PUSH('\0'); WTEXT_PUSH(0); yytext[0] = '\0'; if (c == R_EOF) { PRESERVE_SV(yylval = R_NilValue); UNPROTECT(1); /* release stext */ return INCOMPLETE_STRING; } else { CTEXT_PUSH(c); CTEXT_PUSH('\0'); } if (!currtext_truncated) strcpy(yytext, currtext); else if (forSymbol || !use_wcs) { size_t total = strlen(stext); snprintf(yytext, MAXELTSIZE, "[%u chars quoted with '%c']", (unsigned int)total, quote); } else snprintf(yytext, MAXELTSIZE, "[%d wide chars quoted with '%c']", wcnt, quote); if(forSymbol) { PRESERVE_SV(yylval = install(stext)); UNPROTECT(1); /* release stext */ return SYMBOL; } else { if(use_wcs) { if(oct_or_hex) raiseLexError("mixedEscapes", NO_VALUE, NULL, _("mixing Unicode and octal/hex escapes in a string is not allowed (%s:%d:%d)")); if(wcnt < 10000) PRESERVE_SV(yylval = mkStringUTF8(wcs, wcnt)); /* include terminator */ else raiseLexError("UnicodeTooLong", NO_VALUE, NULL, _("string containing Unicode escapes not in this locale\n" "is too long (max 10000 chars) (%s:%d:%d)")); } else PRESERVE_SV(yylval = mkString2(stext, bp - stext - 1, oct_or_hex)); UNPROTECT(1); /* release stext */ return STR_CONST; } } static int RawStringValue(int c0, int c) { int quote = c; int delim = ')'; char currtext[1010], *ct = currtext; char st0[MAXELTSIZE]; unsigned int nstext = MAXELTSIZE; char *stext = st0, *bp = st0; PROTECT_INDEX sti; int wcnt = 0; ucs_t wcs[10001]; Rboolean oct_or_hex = FALSE, use_wcs = FALSE, currtext_truncated = FALSE; CTEXT_PUSH(c0); /* 'r' or 'R' */ CTEXT_PUSH(c); /* opening quote */ /* count dashes between the opening quote and opening delimiter */ int ndash = 0; while (nextchar('-')) { CTEXT_PUSH('-'); ndash++; } c = xxgetc(); CTEXT_PUSH(c); switch(c) { case '(': delim = ')'; break; case '[': delim = ']'; break; case '{': delim = '}'; break; case '|': delim = '|'; break; default: raiseLexError("invalidRawLiteral", NO_VALUE, NULL, _("malformed raw string literal (%s:%d:%d)")); } PROTECT_WITH_INDEX(R_NilValue, &sti); while ((c = xxgetc()) != R_EOF) { if (c == delim) { /* count the dashes after the closing delimiter */ int nd = 0; while (nd < ndash && nextchar('-')) nd++; if (nd == ndash && nextchar(quote)) /* right number of dashes, right quote: were done! */ break; else { /* not done: emit closing delimiter, dashes, and continue */ CTEXT_PUSH(delim); STEXT_PUSH(delim); WTEXT_PUSH(delim); for (int i = 0; i < nd; i++) { CTEXT_PUSH('-'); STEXT_PUSH('-'); WTEXT_PUSH('-'); } continue; } } CTEXT_PUSH(c); if(mbcslocale) { int i, clen; ucs_t wc; clen = mbcs_get_next2(c, &wc); if (clen == -1) { /* EOF whilst reading MBCS char */ xxungetc(c); c = R_EOF; break; } BIDI_CHECK(wc); WTEXT_PUSH(wc); ParseState.xxbyteno += clen-1; for(i = 0; i < clen - 1; i++){ STEXT_PUSH(c); c = xxgetc(); if (c == R_EOF) break; CTEXT_PUSH(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 */ int res = 0; #ifdef WC_NOT_UNICODE ucs_t wc; char s[2] = " "; s[0] = (char) c; res = (int) mbtoucs(&wc, s, 2); #else wchar_t wc; char s[2] = " "; s[0] = (char) c; /* This is not necessarily correct for stateful SBCS */ mbstate_t mb_st; mbs_init(&mb_st); res = (int) mbrtowc(&wc, s, 2, &mb_st); #endif if(res < 0) wc = 0xFFFD; /* placeholder for invalid encoding */ WTEXT_PUSH(wc); } } STEXT_PUSH('\0'); WTEXT_PUSH(0); yytext[0] = '\0'; if (c == R_EOF) { PRESERVE_SV(yylval = R_NilValue); UNPROTECT(1); /* release stext */ return INCOMPLETE_STRING; } else { /* record delim, dashes, and quote, and terminate string */ CTEXT_PUSH(delim); for (int i = 0; i < ndash; i++) CTEXT_PUSH('-'); CTEXT_PUSH(quote); CTEXT_PUSH('\0'); } if (!currtext_truncated) strcpy(yytext, currtext); else if (!use_wcs) { size_t total = strlen(stext); snprintf(yytext, MAXELTSIZE, "[%u chars quoted with '%c']", (unsigned int)total, quote); } else snprintf(yytext, MAXELTSIZE, "[%d wide chars quoted with '%c']", wcnt, quote); if(use_wcs) { if(oct_or_hex) raiseLexError("mixedEscapes", NO_VALUE, NULL, _("mixing Unicode and octal/hex escapes in a string is not allowed (%s:%d:%d)")); if(wcnt < 10000) PRESERVE_SV(yylval = mkStringUTF8(wcs, wcnt)); /* include terminator */ else raiseLexError("UnicodeTooLong", NO_VALUE, NULL, _("string containing Unicode escapes not in this locale\n" "is too long (max 10000 chars) (%s:%d:%d)")); } else PRESERVE_SV(yylval = mkString2(stext, bp - stext - 1, oct_or_hex)); UNPROTECT(1); /* release 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 */ attribute_hidden int isValidName(const char *name) { const char *p = name; int i; if(mbcslocale) { /* the only way to establish which chars are alpha etc is to use the wchar variants */ size_t n = strlen(name), used; wchar_t wc; /* This is not necessarily correct for stateful MBCS */ mbstate_t mb_st; mbs_init(&mb_st); used = Mbrtowc(&wc, p, n, &mb_st); 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, &mb_st))) { 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) { // FIXME potentially need R_wchar_t with UTF-8 Windows. wchar_t wc; int i, clen; clen = mbcs_get_next(c, &wc); while(clen != -1) { /* at this point we have seen one char, so push its bytes and 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 (clen == -1) break; /* EOF whilst reading MBCS char */ if(!iswalnum(wc)) break; } } else do { YYTEXT_PUSH(c, yyp); } while ((c = xxgetc()) != R_EOF && (isalnum(c) || c == '.' || c == '_')); xxungetc(c); YYTEXT_PUSH('\0', yyp); if ((kw = KeywordLookup(yytext))) return kw; PRESERVE_SV(yylval = install(yytext)); return SYMBOL; } static int Placeholder(int c) { DECLARE_YYTEXT_BUFP(yyp); YYTEXT_PUSH(c, yyp); YYTEXT_PUSH('\0', yyp); HavePlaceholder = TRUE; PRESERVE_SV(yylval = R_PlaceholderToken); return PLACEHOLDER; } static void setParseFilename(SEXP newname) { SEXP class; if (isEnvironment(PS_SRCFILE)) { SEXP oldname = findVar(install("filename"), PS_SRCFILE); if (isString(oldname) && length(oldname) > 0 && strcmp(CHAR(STRING_ELT(oldname, 0)), CHAR(STRING_ELT(newname, 0))) == 0) return; PS_SET_SRCFILE(NewEnvironment(R_NilValue, R_NilValue, R_EmptyEnv)); defineVar(install("filename"), newname, PS_SRCFILE); defineVar(install("original"), PS_ORIGINAL, PS_SRCFILE); PROTECT(class = allocVector(STRSXP, 2)); SET_STRING_ELT(class, 0, mkChar("srcfilealias")); SET_STRING_ELT(class, 1, mkChar("srcfile")); setAttrib(PS_SRCFILE, R_ClassSymbol, class); UNPROTECT(1); /* class */ } else PS_SET_SRCFILE(duplicate(newname)); RELEASE_SV(newname); } static int processLineDirective(int *type) { 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); else xxungetc(c); if (tok == STR_CONST) setParseFilename(yylval); while ((c = xxgetc()) != '\n' && c != R_EOF) /* skip */ ; ParseState.xxlineno = linenumber; *type = LINE_DIRECTIVE; /* we don't change xxparseno here: it counts parsed lines, not official lines */ R_ParseContext[R_ParseContextLast] = '\0'; /* Context report shouldn't show the directive */ return(c); } /* Get the R symbol, and set yytext at the same time */ static SEXP install_and_save(char * text) { strcpy(yytext, text); return install(text); } /* Get an R symbol, and set different yytext. Used for translation of -> to <-. ->> to <<- */ static SEXP install_and_save2(char * text, char * savetext) { strcpy(yytext, savetext); return install(text); } /* 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; yylloc.first_parsed = xxparsesave; 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; yylloc.first_parsed = ParseState.xxparseno; 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); /* raw string literal */ if (c == 'r' || c == 'R') { if (nextchar('"')) return RawStringValue(c, '"'); else if (nextchar('\'')) return RawStringValue(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 (c == '_') return Placeholder(c); if(mbcslocale) { // FIXME potentially need R_wchar_t with UTF-8 Windows. if (mbcs_get_next(c, &wc) == -1) return END_OF_INPUT; /* EOF whilst reading MBCS char */ if (iswalpha(wc)) return SymbolValue(c); } else if (isalpha(c)) return SymbolValue(c); /* compound tokens */ switch (c) { case '<': if (nextchar('=')) { yylval = install_and_save("<="); return LE; } if (nextchar('-')) { yylval = install_and_save("<-"); return LEFT_ASSIGN; } if (nextchar('<')) { if (nextchar('-')) { yylval = install_and_save("<<-"); return LEFT_ASSIGN; } else return ERROR; } yylval = install_and_save("<"); return LT; case '-': if (nextchar('>')) { if (nextchar('>')) { yylval = install_and_save2("<<-", "->>"); return RIGHT_ASSIGN; } else { yylval = install_and_save2("<-", "->"); return RIGHT_ASSIGN; } } yylval = install_and_save("-"); return '-'; case '>': if (nextchar('=')) { yylval = install_and_save(">="); return GE; } yylval = install_and_save(">"); return GT; case '!': if (nextchar('=')) { yylval = install_and_save("!="); return NE; } yylval = install_and_save("!"); return '!'; case '=': if (nextchar('=')) { yylval = install_and_save("=="); return EQ; } else if (nextchar('>')) { yylval = install_and_save("=>"); HavePipeBind = TRUE; return PIPEBIND; } yylval = install_and_save("="); return EQ_ASSIGN; case ':': if (nextchar(':')) { if (nextchar(':')) { yylval = install_and_save(":::"); return NS_GET_INT; } else { yylval = install_and_save("::"); return NS_GET; } } if (nextchar('=')) { yylval = install_and_save(":="); return LEFT_ASSIGN; } yylval = install_and_save(":"); return ':'; case '&': if (nextchar('&')) { yylval = install_and_save("&&"); return AND2; } yylval = install_and_save("&"); return AND; case '|': if (nextchar('|')) { yylval = install_and_save("||"); return OR2; } else if (nextchar('>')) { yylval = install_and_save("|>"); return PIPE; } yylval = install_and_save("|"); return OR; case LBRACE: yylval = install_and_save("{"); return c; case RBRACE: strcpy(yytext, "}"); return c; case '(': yylval = install_and_save("("); return c; case ')': strcpy(yytext, ")"); return c; case '[': if (nextchar('[')) { yylval = install_and_save("[["); return LBB; } yylval = install_and_save("["); return c; case ']': strcpy(yytext, "]"); return c; case '?': yylval = install_and_save("?"); return c; case '*': /* Replace ** by ^. This has been here since 1998, but is undocumented (at least in the obvious places). It is in the index of the Blue Book with a reference to p. 431, the help for 'Deprecated'. S-PLUS 6.2 still allowed this, so presumably it was for compatibility with S. */ if (nextchar('*')) { yylval = install_and_save2("^", "**"); return '^'; } else yylval = install_and_save("*"); return c; case '+': case '/': case '^': case '~': case '$': case '@': case '\\': yytext[0] = (char) c; yytext[1] = '\0'; yylval = install(yytext); return c; default: yytext[0] = (char) c; yytext[1] = '\0'; return c; } } /** * Sets the first elements of the yyloc structure with current * information */ static void setfirstloc(void) { yylloc.first_line = ParseState.xxlineno; yylloc.first_column = ParseState.xxcolno; yylloc.first_byte = ParseState.xxbyteno; yylloc.first_parsed = ParseState.xxparseno; } static void setlastloc(void) { yylloc.last_line = ParseState.xxlineno; yylloc.last_column = ParseState.xxcolno; yylloc.last_byte = ParseState.xxbyteno; yylloc.last_parsed = ParseState.xxparseno; } /** * Wrap around the token function. Returns the same result * but increments the identifier, after a call to token_, * the identifier variable contains the id of the token * just returned * * @return the same as token */ static int token_(void){ // capture the position before retrieving the token setfirstloc( ) ; // get the token int res = token( ) ; // capture the position after int _last_col = ParseState.xxcolno ; int _last_parsed = ParseState.xxparseno ; _current_token = res ; incrementId( ) ; yylloc.id = identifier ; // record the position if( res != '\n' && res != END_OF_INPUT) record_( yylloc.first_parsed, yylloc.first_column, _last_parsed, _last_col, res, identifier, yytext ); return res; } 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; xxparsesave = yylloc.first_parsed; SavedLval = yylval; setlastloc(); if (ParseState.keepSrcRefs && ParseState.keepParseData && yytext[0]) /* unrecord the pushed back token if not null */ ParseState.data_count--; 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 PIPE: case PIPEBIND: 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 PLACEHOLDER: 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) raiseLexError("contextstackOverflow", NO_VALUE, NULL, _("contextstack overflow (%s:%d:%d)")); *++contextp = '['; *++contextp = '['; break; case '[': if(contextp - contextstack >= CONTEXTSTACK_SIZE) raiseLexError("contextstackOverflow", NO_VALUE, NULL, _("contextstack overflow (%s:%d:%d)")); *++contextp = (char) tok; break; case LBRACE: if(contextp - contextstack >= CONTEXTSTACK_SIZE) raiseLexError("contextstackOverflow", NO_VALUE, NULL, _("contextstack overflow (%s:%d:%d)")); *++contextp = (char) tok; EatLines = 1; break; case '(': if(contextp - contextstack >= CONTEXTSTACK_SIZE) raiseLexError("contextstackOverflow", NO_VALUE, NULL, _("contextstack overflow (%s:%d:%d)")); *++contextp = (char) 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; } /** * Records location information about a symbol. The information is * used to fill the data * */ static void record_( int first_parsed, int first_column, int last_parsed, int last_column, int token, int id, char* text_in ){ if (!ParseState.keepSrcRefs || !ParseState.keepParseData || id == NA_INTEGER) return; // don't care about zero sized things if( !yytext[0] ) return ; if (ParseState.data_count == DATA_COUNT) growData(); _FIRST_COLUMN( ParseState.data_count ) = first_column; _FIRST_PARSED( ParseState.data_count ) = first_parsed; _LAST_COLUMN( ParseState.data_count ) = last_column; _LAST_PARSED( ParseState.data_count ) = last_parsed; _TOKEN( ParseState.data_count ) = token; _ID( ParseState.data_count ) = id ; _PARENT(ParseState.data_count) = 0 ; if ( text_in ) SET_STRING_ELT(PS_TEXT, ParseState.data_count, mkChar2(text_in)); else SET_STRING_ELT(PS_TEXT, ParseState.data_count, mkChar("")); if( id > ID_COUNT ) growID(id) ; ID_ID( id ) = ParseState.data_count ; ParseState.data_count++ ; } /** * records parent as the parent of all its childs. This grows the * parents list with a new vector. The first element of the new * vector is the parent id, and other elements are childs id * * @param parent id of the parent expression * @param childs array of location information for all child symbols * @param nchilds number of childs */ static void recordParents( int parent, yyltype * childs, int nchilds){ if( parent > ID_COUNT ){ growID(parent) ; } /* some of the childs might be an empty token (like cr) which we do not want to track */ int ii; /* loop index */ yyltype loc ; for( ii=0; ii loc.last_byte) ) continue ; /* This shouldn't happen... */ if (loc.id < 0 || loc.id > identifier) { raiseLexError("internalError", NO_VALUE, NULL, _("internal parser error (%s:%d:%d)")); } ID_PARENT( loc.id ) = parent; } } /** * The token pointed by the location has the wrong token type, * This updates the type * * @param loc location information for the token to track */ static void modif_token( yyltype* loc, int tok ){ int id = loc->id ; if (!ParseState.keepSrcRefs || !ParseState.keepParseData || id < 0 || id > ID_COUNT) return; if( tok == SYMBOL_FUNCTION_CALL ){ // looking for first child of id int j = ID_ID( id ) ; int parent = id ; if (j < 0 || j > ID_COUNT) return; while( ID_PARENT( _ID(j) ) != parent ){ j-- ; if (j < 0) return; } if( _TOKEN(j) == SYMBOL ){ _TOKEN(j) = SYMBOL_FUNCTION_CALL ; } } else{ _TOKEN( ID_ID(id) ) = tok ; } } /* this local version of lengthgets() always copies and doesn't fill with NA */ static SEXP lengthgets2(SEXP x, int len) { SEXP result; PROTECT(result = allocVector( TYPEOF(x), len )); len = (len < length(x)) ? len : length(x); switch(TYPEOF(x)) { case INTSXP: for (int i = 0; i < len; i++) INTEGER(result)[i] = INTEGER(x)[i]; for (int i = len; i < length(result); i++) INTEGER(result)[i] = 0; break; case STRSXP: for (int i = 0; i < len; i++) SET_STRING_ELT(result, i, STRING_ELT(x, i)); break; default: UNIMPLEMENTED_TYPE("lengthgets2", x); } UNPROTECT(1); /* result */ return result; } static void finalizeData(void){ int nloc = ParseState.data_count ; int i, j, id ; int parent ; /* store parents in the data */ for( i=0; i= 0; i--) { if (_TOKEN(i) == COMMENT) { int orphan = 1; int istartl = _FIRST_PARSED(i); int istartc = _FIRST_COLUMN(i); /* look for first node j that does not end before the comment i */ for(j = i + 1; j < nloc && _LAST_PARSED(j) <= istartl; j++); if (j < nloc) { for(;;) { int jstartl = _FIRST_PARSED(j); int jstartc = _FIRST_COLUMN(j); if (jstartl < istartl || (jstartl == istartl && jstartc <= istartc)) { /* j starts before or at the comment */ _PARENT(i) = _ID(j); orphan = 0; break; } /* find parent of j */ int jparent = _PARENT(j); if (jparent == 0) break; /* orphan */ j = ID_ID(jparent); } } if (orphan) _PARENT(i) = 0; } } #else /* the original algorithm, which is slow for large inputs */ int comment_line, comment_first_col; int this_first_parsed, this_last_parsed, this_first_col ; int orphan ; for( i=0; i new_count) new_count = 2*new_count + 1; if (new_count <= ID_COUNT) return; int new_size = (1 + new_count)*2; PS_SET_IDS(lengthgets2(PS_IDS, new_size)); } static int checkForPlaceholder(SEXP placeholder, SEXP arg) { if (! HavePlaceholder) return FALSE; else if (arg == placeholder) return TRUE; else if (TYPEOF(arg) == LANGSXP) for (SEXP cur = arg; cur != R_NilValue; cur = CDR(cur)) if (checkForPlaceholder(placeholder, CAR(cur))) return TRUE; return FALSE; } static const char* getFilename(void) { SEXP srcfile = PS_SRCFILE; if (!srcfile || TYPEOF(srcfile) != ENVSXP) return ""; srcfile = findVar(install("filename"), srcfile); if (TYPEOF(srcfile) != STRSXP || !strlen(CHAR(STRING_ELT(srcfile, 0)))) return ""; else return CHAR(STRING_ELT(srcfile, 0)); } /* raiseParseError creates a "parseError: condition object and signals an error. "value" is optional; use valuetype = NO_VALUE to skip other args will always be passed. Args appear in the order [value], filename, lineno, colno in the sprintf call for the format. */ NORET static void raiseParseError(const char *subclassname, SEXP call, int valuetype, const void *value, YYLTYPE *lloc, const char *format) { int nextra = 4, lineno = lloc->first_line, colno = lloc->first_column; const char *filename = getFilename(); SEXP cond; switch(valuetype) { case NO_VALUE: cond = R_makeErrorCondition(call, "parseError", subclassname, nextra, format, filename, lineno, colno); break; case CHAR_VALUE: cond = R_makeErrorCondition(call, "parseError", subclassname, nextra, format, *(const char *)value, filename, lineno, colno); break; case STRING_VALUE: cond = R_makeErrorCondition(call, "parseError", subclassname, nextra, format, (const char *)value, filename, lineno, colno); break; case INT_VALUE: cond = R_makeErrorCondition(call, "parseError", subclassname, nextra, format, *(const int *)value, filename, lineno, colno); break; case UINT_VALUE: cond = R_makeErrorCondition(call, "parseError", subclassname, nextra, format, *(const unsigned int *)value, filename, lineno, colno); break; case UCS_VALUE: cond = R_makeErrorCondition(call, "parseError", subclassname, nextra, format, *(const ucs_t *)value, filename, lineno, colno); break; } PROTECT(cond); switch(valuetype) { case NO_VALUE: R_setConditionField(cond, 2, "value", R_NilValue); break; case STRING_VALUE: R_setConditionField(cond, 2, "value", mkString((const char *)value)); break; case INT_VALUE: R_setConditionField(cond, 2, "value", ScalarInteger(*(int*)value)); break; case UINT_VALUE: R_setConditionField(cond, 2, "value", ScalarInteger(*(unsigned int*)value)); break; case CHAR_VALUE: { char c[2]; c[0] = *(char *)value; c[1] = '\0'; R_setConditionField(cond, 2, "value", mkString(c)); break; } case UCS_VALUE: { ucs_t wc[2]; wc[0] = *(ucs_t *)value; wc[1] = '\0'; R_setConditionField(cond, 2, "value", mkStringUTF8(wc, 1)); break; } } R_setConditionField(cond, 3, "filename", mkString(getFilename())); R_setConditionField(cond, 4, "lineno", ScalarInteger(lineno)); R_setConditionField(cond, 5, "colno", ScalarInteger(colno)); R_signalErrorCondition(cond, call); UNPROTECT(1); /* cond; not reached */ } /* This function is for lexer errors; it gets the location from the ParseState, but is otherwise the same as raiseParseError. */ NORET static void raiseLexError(const char *subclassname, int valuetype, const void *value, const char *format) { YYLTYPE lloc; lloc.first_line = ParseState.xxlineno; lloc.first_column = ParseState.xxcolno; raiseParseError(subclassname, R_NilValue, valuetype, value, &lloc, format); }