| |
| /* A Bison parser, made by GNU Bison 2.4.1. */ |
| |
| /* Skeleton implementation for Bison's Yacc-like parsers in C |
| |
| Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 |
| Free Software Foundation, Inc. |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation, either version 3 of the License, or |
| (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| |
| /* As a special exception, you may create a larger work that contains |
| part or all of the Bison parser skeleton and distribute that work |
| under terms of your choice, so long as that work isn't itself a |
| parser generator using the skeleton or a modified version thereof |
| as a parser skeleton. Alternatively, if you modify or redistribute |
| the parser skeleton itself, you may (at your option) remove this |
| special exception, which will cause the skeleton and the resulting |
| Bison output files to be licensed under the GNU General Public |
| License without this special exception. |
| |
| This special exception was added by the Free Software Foundation in |
| version 2.2 of Bison. */ |
| |
| /* C LALR(1) parser skeleton written by Richard Stallman, by |
| simplifying the original so-called "semantic" parser. */ |
| |
| /* All symbols defined below should begin with yy or YY, to avoid |
| infringing on user name space. This should be done even for local |
| variables, as they might otherwise be expanded by user macros. |
| There are some unavoidable exceptions within include files to |
| define necessary library symbols; they are noted "INFRINGES ON |
| USER NAME SPACE" below. */ |
| |
| /* Identify Bison output. */ |
| #define YYBISON 1 |
| |
| /* Bison version. */ |
| #define YYBISON_VERSION "2.4.1" |
| |
| /* Skeleton name. */ |
| #define YYSKELETON_NAME "yacc.c" |
| |
| /* Pure parsers. */ |
| #define YYPURE 1 |
| |
| /* Push parsers. */ |
| #define YYPUSH 0 |
| |
| /* Pull parsers. */ |
| #define YYPULL 1 |
| |
| /* Using locations. */ |
| #define YYLSP_NEEDED 0 |
| |
| |
| |
| /* Copy the first part of user declarations. */ |
| |
| |
| // |
| // Copyright (c) 2002-2015 The ANGLE Project Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // |
| |
| // This file is auto-generated by generate_parser.sh. DO NOT EDIT! |
| |
| // Ignore errors in auto-generated code. |
| #if defined(__GNUC__) |
| #pragma GCC diagnostic ignored "-Wunused-function" |
| #pragma GCC diagnostic ignored "-Wunused-variable" |
| #pragma GCC diagnostic ignored "-Wswitch-enum" |
| #elif defined(_MSC_VER) |
| #pragma warning(disable: 4065) |
| #pragma warning(disable: 4189) |
| #pragma warning(disable: 4505) |
| #pragma warning(disable: 4701) |
| #endif |
| |
| #include "SymbolTable.h" |
| #include "ParseHelper.h" |
| |
| #define YYENABLE_NLS 0 |
| #define YYLTYPE_IS_TRIVIAL 1 |
| |
| #define YYLEX_PARAM context->scanner |
| |
| |
| |
| /* Enabling traces. */ |
| #ifndef YYDEBUG |
| # define YYDEBUG 0 |
| #endif |
| |
| /* Enabling verbose error messages. */ |
| #ifdef YYERROR_VERBOSE |
| # undef YYERROR_VERBOSE |
| # define YYERROR_VERBOSE 1 |
| #else |
| # define YYERROR_VERBOSE 0 |
| #endif |
| |
| /* Enabling the token table. */ |
| #ifndef YYTOKEN_TABLE |
| # define YYTOKEN_TABLE 0 |
| #endif |
| |
| |
| /* Tokens. */ |
| #ifndef YYTOKENTYPE |
| # define YYTOKENTYPE |
| /* Put the tokens into the symbol table, so that GDB and other debuggers |
| know about them. */ |
| enum yytokentype { |
| INVARIANT = 258, |
| HIGH_PRECISION = 259, |
| MEDIUM_PRECISION = 260, |
| LOW_PRECISION = 261, |
| PRECISION = 262, |
| ATTRIBUTE = 263, |
| CONST_QUAL = 264, |
| BOOL_TYPE = 265, |
| FLOAT_TYPE = 266, |
| INT_TYPE = 267, |
| UINT_TYPE = 268, |
| BREAK = 269, |
| CONTINUE = 270, |
| DO = 271, |
| ELSE = 272, |
| FOR = 273, |
| IF = 274, |
| DISCARD = 275, |
| RETURN = 276, |
| SWITCH = 277, |
| CASE = 278, |
| DEFAULT = 279, |
| BVEC2 = 280, |
| BVEC3 = 281, |
| BVEC4 = 282, |
| IVEC2 = 283, |
| IVEC3 = 284, |
| IVEC4 = 285, |
| VEC2 = 286, |
| VEC3 = 287, |
| VEC4 = 288, |
| UVEC2 = 289, |
| UVEC3 = 290, |
| UVEC4 = 291, |
| MATRIX2 = 292, |
| MATRIX3 = 293, |
| MATRIX4 = 294, |
| IN_QUAL = 295, |
| OUT_QUAL = 296, |
| INOUT_QUAL = 297, |
| UNIFORM = 298, |
| VARYING = 299, |
| MATRIX2x3 = 300, |
| MATRIX3x2 = 301, |
| MATRIX2x4 = 302, |
| MATRIX4x2 = 303, |
| MATRIX3x4 = 304, |
| MATRIX4x3 = 305, |
| CENTROID = 306, |
| FLAT = 307, |
| SMOOTH = 308, |
| STRUCT = 309, |
| VOID_TYPE = 310, |
| WHILE = 311, |
| SAMPLER2D = 312, |
| SAMPLERCUBE = 313, |
| SAMPLER_EXTERNAL_OES = 314, |
| SAMPLER2DRECT = 315, |
| SAMPLER2DARRAY = 316, |
| ISAMPLER2D = 317, |
| ISAMPLER3D = 318, |
| ISAMPLERCUBE = 319, |
| ISAMPLER2DARRAY = 320, |
| USAMPLER2D = 321, |
| USAMPLER3D = 322, |
| USAMPLERCUBE = 323, |
| USAMPLER2DARRAY = 324, |
| SAMPLER3D = 325, |
| SAMPLER3DRECT = 326, |
| SAMPLER2DSHADOW = 327, |
| SAMPLERCUBESHADOW = 328, |
| SAMPLER2DARRAYSHADOW = 329, |
| LAYOUT = 330, |
| IDENTIFIER = 331, |
| TYPE_NAME = 332, |
| FLOATCONSTANT = 333, |
| INTCONSTANT = 334, |
| UINTCONSTANT = 335, |
| BOOLCONSTANT = 336, |
| FIELD_SELECTION = 337, |
| LEFT_OP = 338, |
| RIGHT_OP = 339, |
| INC_OP = 340, |
| DEC_OP = 341, |
| LE_OP = 342, |
| GE_OP = 343, |
| EQ_OP = 344, |
| NE_OP = 345, |
| AND_OP = 346, |
| OR_OP = 347, |
| XOR_OP = 348, |
| MUL_ASSIGN = 349, |
| DIV_ASSIGN = 350, |
| ADD_ASSIGN = 351, |
| MOD_ASSIGN = 352, |
| LEFT_ASSIGN = 353, |
| RIGHT_ASSIGN = 354, |
| AND_ASSIGN = 355, |
| XOR_ASSIGN = 356, |
| OR_ASSIGN = 357, |
| SUB_ASSIGN = 358, |
| LEFT_PAREN = 359, |
| RIGHT_PAREN = 360, |
| LEFT_BRACKET = 361, |
| RIGHT_BRACKET = 362, |
| LEFT_BRACE = 363, |
| RIGHT_BRACE = 364, |
| DOT = 365, |
| COMMA = 366, |
| COLON = 367, |
| EQUAL = 368, |
| SEMICOLON = 369, |
| BANG = 370, |
| DASH = 371, |
| TILDE = 372, |
| PLUS = 373, |
| STAR = 374, |
| SLASH = 375, |
| PERCENT = 376, |
| LEFT_ANGLE = 377, |
| RIGHT_ANGLE = 378, |
| VERTICAL_BAR = 379, |
| CARET = 380, |
| AMPERSAND = 381, |
| QUESTION = 382 |
| }; |
| #endif |
| |
| |
| |
| #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED |
| typedef union YYSTYPE |
| { |
| |
| |
| struct { |
| TSourceLoc line; |
| union { |
| TString *string; |
| float f; |
| int i; |
| unsigned int u; |
| bool b; |
| }; |
| TSymbol* symbol; |
| } lex; |
| struct { |
| TSourceLoc line; |
| TOperator op; |
| union { |
| TIntermNode* intermNode; |
| TIntermNodePair nodePair; |
| TIntermTyped* intermTypedNode; |
| TIntermAggregate* intermAggregate; |
| }; |
| union { |
| TPublicType type; |
| TPrecision precision; |
| TLayoutQualifier layoutQualifier; |
| TQualifier qualifier; |
| TFunction* function; |
| TParameter param; |
| TTypeLine typeLine; |
| TTypeList* typeList; |
| }; |
| } interm; |
| |
| |
| |
| } YYSTYPE; |
| # define YYSTYPE_IS_TRIVIAL 1 |
| # define yystype YYSTYPE /* obsolescent; will be withdrawn */ |
| # define YYSTYPE_IS_DECLARED 1 |
| #endif |
| |
| |
| /* Copy the second part of user declarations. */ |
| |
| |
| extern int yylex(YYSTYPE* yylval_param, void* yyscanner); |
| extern void yyerror(TParseContext* context, const char* reason); |
| |
| #define FRAG_VERT_ONLY(S, L) { \ |
| if (context->shaderType != GL_FRAGMENT_SHADER && \ |
| context->shaderType != GL_VERTEX_SHADER) { \ |
| context->error(L, " supported in vertex/fragment shaders only ", S); \ |
| context->recover(); \ |
| } \ |
| } |
| |
| #define VERTEX_ONLY(S, L) { \ |
| if (context->shaderType != GL_VERTEX_SHADER) { \ |
| context->error(L, " supported in vertex shaders only ", S); \ |
| context->recover(); \ |
| } \ |
| } |
| |
| #define FRAG_ONLY(S, L) { \ |
| if (context->shaderType != GL_FRAGMENT_SHADER) { \ |
| context->error(L, " supported in fragment shaders only ", S); \ |
| context->recover(); \ |
| } \ |
| } |
| |
| #define ES2_ONLY(S, L) { \ |
| if (context->shaderVersion != 100) { \ |
| context->error(L, " supported in GLSL ES 1.00 only ", S); \ |
| context->recover(); \ |
| } \ |
| } |
| |
| #define ES3_ONLY(S, L) { \ |
| if (context->shaderVersion != 300) { \ |
| context->error(L, " supported in GLSL ES 3.00 only ", S); \ |
| context->recover(); \ |
| } \ |
| } |
| |
| |
| |
| #ifdef short |
| # undef short |
| #endif |
| |
| #ifdef YYTYPE_UINT8 |
| typedef YYTYPE_UINT8 yytype_uint8; |
| #else |
| typedef unsigned char yytype_uint8; |
| #endif |
| |
| #ifdef YYTYPE_INT8 |
| typedef YYTYPE_INT8 yytype_int8; |
| #elif (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| typedef signed char yytype_int8; |
| #else |
| typedef short int yytype_int8; |
| #endif |
| |
| #ifdef YYTYPE_UINT16 |
| typedef YYTYPE_UINT16 yytype_uint16; |
| #else |
| typedef unsigned short int yytype_uint16; |
| #endif |
| |
| #ifdef YYTYPE_INT16 |
| typedef YYTYPE_INT16 yytype_int16; |
| #else |
| typedef short int yytype_int16; |
| #endif |
| |
| #ifndef YYSIZE_T |
| # ifdef __SIZE_TYPE__ |
| # define YYSIZE_T __SIZE_TYPE__ |
| # elif defined size_t |
| # define YYSIZE_T size_t |
| # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| # include <stddef.h> /* INFRINGES ON USER NAME SPACE */ |
| # define YYSIZE_T size_t |
| # else |
| # define YYSIZE_T unsigned int |
| # endif |
| #endif |
| |
| #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) |
| |
| #ifndef YY_ |
| # if YYENABLE_NLS |
| # if ENABLE_NLS |
| # include <libintl.h> /* INFRINGES ON USER NAME SPACE */ |
| # define YY_(msgid) dgettext ("bison-runtime", msgid) |
| # endif |
| # endif |
| # ifndef YY_ |
| # define YY_(msgid) msgid |
| # endif |
| #endif |
| |
| /* Suppress unused-variable warnings by "using" E. */ |
| #if ! defined lint || defined __GNUC__ |
| # define YYUSE(e) ((void) (e)) |
| #else |
| # define YYUSE(e) /* empty */ |
| #endif |
| |
| /* Identity function, used to suppress warnings about constant conditions. */ |
| #ifndef lint |
| # define YYID(n) (n) |
| #else |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static int |
| YYID (int yyi) |
| #else |
| static int |
| YYID (yyi) |
| int yyi; |
| #endif |
| { |
| return yyi; |
| } |
| #endif |
| |
| #if ! defined yyoverflow || YYERROR_VERBOSE |
| |
| /* The parser invokes alloca or malloc; define the necessary symbols. */ |
| |
| # ifdef YYSTACK_USE_ALLOCA |
| # if YYSTACK_USE_ALLOCA |
| # ifdef __GNUC__ |
| # define YYSTACK_ALLOC __builtin_alloca |
| # elif defined __BUILTIN_VA_ARG_INCR |
| # include <alloca.h> /* INFRINGES ON USER NAME SPACE */ |
| # elif defined _AIX |
| # define YYSTACK_ALLOC __alloca |
| # elif defined _MSC_VER |
| # include <malloc.h> /* INFRINGES ON USER NAME SPACE */ |
| # define alloca _alloca |
| # else |
| # define YYSTACK_ALLOC alloca |
| # if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ |
| # ifndef _STDLIB_H |
| # define _STDLIB_H 1 |
| # endif |
| # endif |
| # endif |
| # endif |
| # endif |
| |
| # ifdef YYSTACK_ALLOC |
| /* Pacify GCC's `empty if-body' warning. */ |
| # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) |
| # ifndef YYSTACK_ALLOC_MAXIMUM |
| /* The OS might guarantee only one guard page at the bottom of the stack, |
| and a page size can be as small as 4096 bytes. So we cannot 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 _STDLIB_H \ |
| && ! ((defined YYMALLOC || defined malloc) \ |
| && (defined YYFREE || defined free))) |
| # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ |
| # ifndef _STDLIB_H |
| # define _STDLIB_H 1 |
| # endif |
| # endif |
| # ifndef YYMALLOC |
| # define YYMALLOC malloc |
| # if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ |
| # endif |
| # endif |
| # ifndef YYFREE |
| # define YYFREE free |
| # if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| void free (void *); /* INFRINGES ON USER NAME SPACE */ |
| # endif |
| # endif |
| # endif |
| #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ |
| |
| |
| #if (! defined yyoverflow \ |
| && (! defined __cplusplus \ |
| || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) |
| |
| /* A type that is properly aligned for any stack member. */ |
| union yyalloc |
| { |
| yytype_int16 yyss_alloc; |
| YYSTYPE yyvs_alloc; |
| }; |
| |
| /* The size of the maximum gap between one aligned stack and the next. */ |
| # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) |
| |
| /* The size of an array large to enough to hold all stacks, each with |
| N elements. */ |
| # define YYSTACK_BYTES(N) \ |
| ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ |
| + YYSTACK_GAP_MAXIMUM) |
| |
| /* Copy COUNT objects from FROM to TO. The source and destination do |
| not overlap. */ |
| # ifndef YYCOPY |
| # if defined __GNUC__ && 1 < __GNUC__ |
| # define YYCOPY(To, From, Count) \ |
| __builtin_memcpy (To, From, (Count) * sizeof (*(From))) |
| # else |
| # define YYCOPY(To, From, Count) \ |
| do \ |
| { \ |
| YYSIZE_T yyi; \ |
| for (yyi = 0; yyi < (Count); yyi++) \ |
| (To)[yyi] = (From)[yyi]; \ |
| } \ |
| while (YYID (0)) |
| # endif |
| # endif |
| |
| /* Relocate STACK from its old location to the new one. The |
| local variables YYSIZE and YYSTACKSIZE give the old and new number of |
| elements in the stack, and YYPTR gives the new location of the |
| stack. Advance YYPTR to a properly aligned location for the next |
| stack. */ |
| # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ |
| do \ |
| { \ |
| YYSIZE_T yynewbytes; \ |
| YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ |
| Stack = &yyptr->Stack_alloc; \ |
| yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ |
| yyptr += yynewbytes / sizeof (*yyptr); \ |
| } \ |
| while (YYID (0)) |
| |
| #endif |
| |
| /* YYFINAL -- State number of the termination state. */ |
| #define YYFINAL 107 |
| /* YYLAST -- Last index in YYTABLE. */ |
| #define YYLAST 2056 |
| |
| /* YYNTOKENS -- Number of terminals. */ |
| #define YYNTOKENS 128 |
| /* YYNNTS -- Number of nonterminals. */ |
| #define YYNNTS 89 |
| /* YYNRULES -- Number of rules. */ |
| #define YYNRULES 255 |
| /* YYNRULES -- Number of states. */ |
| #define YYNSTATES 370 |
| |
| /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ |
| #define YYUNDEFTOK 2 |
| #define YYMAXUTOK 382 |
| |
| #define YYTRANSLATE(YYX) \ |
| ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) |
| |
| /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ |
| static const yytype_uint8 yytranslate[] = |
| { |
| 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, |
| 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, |
| 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, |
| 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, |
| 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, |
| 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, |
| 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, |
| 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, |
| 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, |
| 125, 126, 127 |
| }; |
| |
| #if YYDEBUG |
| /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in |
| YYRHS. */ |
| static const yytype_uint16 yyprhs[] = |
| { |
| 0, 0, 3, 5, 7, 9, 11, 13, 15, 19, |
| 21, 26, 28, 32, 35, 38, 40, 42, 44, 48, |
| 51, 54, 57, 59, 62, 66, 69, 71, 73, 75, |
| 77, 80, 83, 86, 88, 90, 92, 94, 96, 100, |
| 104, 108, 110, 114, 118, 120, 124, 128, 130, 134, |
| 138, 142, 146, 148, 152, 156, 158, 162, 164, 168, |
| 170, 174, 176, 180, 182, 186, 188, 192, 194, 200, |
| 202, 206, 208, 210, 212, 214, 216, 218, 220, 222, |
| 224, 226, 228, 230, 234, 236, 239, 242, 247, 250, |
| 252, 254, 257, 261, 265, 268, 274, 278, 281, 285, |
| 288, 289, 291, 293, 295, 297, 299, 303, 309, 316, |
| 322, 324, 327, 332, 338, 343, 346, 348, 351, 353, |
| 355, 357, 359, 361, 364, 366, 369, 371, 373, 376, |
| 378, 380, 382, 385, 388, 390, 392, 395, 397, 399, |
| 401, 406, 408, 412, 414, 418, 422, 424, 429, 431, |
| 433, 435, 437, 439, 441, 443, 445, 447, 449, 451, |
| 453, 455, 457, 459, 461, 463, 465, 467, 469, 471, |
| 473, 475, 477, 479, 481, 483, 485, 487, 489, 491, |
| 493, 495, 497, 499, 501, 503, 505, 507, 509, 511, |
| 513, 515, 517, 518, 525, 526, 532, 534, 537, 541, |
| 543, 547, 549, 554, 556, 558, 560, 562, 564, 566, |
| 568, 570, 572, 575, 576, 577, 583, 585, 587, 588, |
| 591, 592, 595, 598, 602, 604, 607, 609, 612, 618, |
| 622, 624, 626, 631, 632, 639, 640, 649, 650, 658, |
| 660, 662, 664, 665, 668, 672, 675, 678, 681, 685, |
| 688, 690, 693, 695, 697, 698 |
| }; |
| |
| /* YYRHS -- A `-1'-separated list of the rules' RHS. */ |
| static const yytype_int16 yyrhs[] = |
| { |
| 213, 0, -1, 76, -1, 129, -1, 79, -1, 80, |
| -1, 78, -1, 81, -1, 104, 156, 105, -1, 130, |
| -1, 131, 106, 132, 107, -1, 133, -1, 131, 110, |
| 82, -1, 131, 85, -1, 131, 86, -1, 156, -1, |
| 134, -1, 135, -1, 131, 110, 135, -1, 137, 105, |
| -1, 136, 105, -1, 138, 55, -1, 138, -1, 138, |
| 154, -1, 137, 111, 154, -1, 139, 104, -1, 180, |
| -1, 76, -1, 82, -1, 131, -1, 85, 140, -1, |
| 86, 140, -1, 141, 140, -1, 118, -1, 116, -1, |
| 115, -1, 117, -1, 140, -1, 142, 119, 140, -1, |
| 142, 120, 140, -1, 142, 121, 140, -1, 142, -1, |
| 143, 118, 142, -1, 143, 116, 142, -1, 143, -1, |
| 144, 83, 143, -1, 144, 84, 143, -1, 144, -1, |
| 145, 122, 144, -1, 145, 123, 144, -1, 145, 87, |
| 144, -1, 145, 88, 144, -1, 145, -1, 146, 89, |
| 145, -1, 146, 90, 145, -1, 146, -1, 147, 126, |
| 146, -1, 147, -1, 148, 125, 147, -1, 148, -1, |
| 149, 124, 148, -1, 149, -1, 150, 91, 149, -1, |
| 150, -1, 151, 93, 150, -1, 151, -1, 152, 92, |
| 151, -1, 152, -1, 152, 127, 156, 112, 154, -1, |
| 153, -1, 140, 155, 154, -1, 113, -1, 94, -1, |
| 95, -1, 97, -1, 96, -1, 103, -1, 98, -1, |
| 99, -1, 100, -1, 101, -1, 102, -1, 154, -1, |
| 156, 111, 154, -1, 153, -1, 159, 114, -1, 167, |
| 114, -1, 7, 175, 179, 114, -1, 160, 105, -1, |
| 162, -1, 161, -1, 162, 164, -1, 161, 111, 164, |
| -1, 169, 76, 104, -1, 174, 76, -1, 174, 76, |
| 106, 157, 107, -1, 171, 165, 163, -1, 165, 163, |
| -1, 171, 165, 166, -1, 165, 166, -1, -1, 40, |
| -1, 41, -1, 42, -1, 174, -1, 168, -1, 167, |
| 111, 76, -1, 167, 111, 76, 106, 107, -1, 167, |
| 111, 76, 106, 157, 107, -1, 167, 111, 76, 113, |
| 188, -1, 169, -1, 169, 76, -1, 169, 76, 106, |
| 107, -1, 169, 76, 106, 157, 107, -1, 169, 76, |
| 113, 188, -1, 3, 76, -1, 174, -1, 172, 174, |
| -1, 53, -1, 52, -1, 9, -1, 8, -1, 44, |
| -1, 3, 44, -1, 173, -1, 170, 173, -1, 170, |
| -1, 176, -1, 176, 173, -1, 9, -1, 40, -1, |
| 41, -1, 51, 40, -1, 51, 41, -1, 43, -1, |
| 179, -1, 175, 179, -1, 4, -1, 5, -1, 6, |
| -1, 75, 104, 177, 105, -1, 178, -1, 177, 111, |
| 178, -1, 76, -1, 76, 113, 79, -1, 76, 113, |
| 80, -1, 180, -1, 180, 106, 157, 107, -1, 55, |
| -1, 11, -1, 12, -1, 13, -1, 10, -1, 31, |
| -1, 32, -1, 33, -1, 25, -1, 26, -1, 27, |
| -1, 28, -1, 29, -1, 30, -1, 34, -1, 35, |
| -1, 36, -1, 37, -1, 38, -1, 39, -1, 45, |
| -1, 46, -1, 47, -1, 48, -1, 49, -1, 50, |
| -1, 57, -1, 58, -1, 59, -1, 70, -1, 61, |
| -1, 62, -1, 63, -1, 64, -1, 65, -1, 66, |
| -1, 67, -1, 68, -1, 69, -1, 72, -1, 73, |
| -1, 74, -1, 181, -1, 77, -1, -1, 54, 76, |
| 108, 182, 184, 109, -1, -1, 54, 108, 183, 184, |
| 109, -1, 185, -1, 184, 185, -1, 174, 186, 114, |
| -1, 187, -1, 186, 111, 187, -1, 76, -1, 76, |
| 106, 157, 107, -1, 154, -1, 158, -1, 192, -1, |
| 191, -1, 189, -1, 201, -1, 202, -1, 205, -1, |
| 212, -1, 108, 109, -1, -1, -1, 108, 193, 200, |
| 194, 109, -1, 199, -1, 191, -1, -1, 197, 199, |
| -1, -1, 198, 191, -1, 108, 109, -1, 108, 200, |
| 109, -1, 190, -1, 200, 190, -1, 114, -1, 156, |
| 114, -1, 19, 104, 156, 105, 203, -1, 196, 17, |
| 196, -1, 196, -1, 156, -1, 169, 76, 113, 188, |
| -1, -1, 56, 104, 206, 204, 105, 195, -1, -1, |
| 16, 207, 196, 56, 104, 156, 105, 114, -1, -1, |
| 18, 104, 208, 209, 211, 105, 195, -1, 201, -1, |
| 189, -1, 204, -1, -1, 210, 114, -1, 210, 114, |
| 156, -1, 15, 114, -1, 14, 114, -1, 21, 114, |
| -1, 21, 156, 114, -1, 20, 114, -1, 214, -1, |
| 213, 214, -1, 215, -1, 158, -1, -1, 159, 216, |
| 199, -1 |
| }; |
| |
| /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ |
| static const yytype_uint16 yyrline[] = |
| { |
| 0, 190, 190, 225, 228, 233, 238, 243, 248, 254, |
| 257, 336, 339, 440, 450, 463, 471, 571, 574, 582, |
| 586, 593, 597, 604, 610, 619, 627, 704, 711, 721, |
| 724, 734, 744, 765, 766, 767, 768, 776, 777, 786, |
| 795, 808, 809, 817, 828, 829, 838, 850, 851, 861, |
| 871, 881, 894, 895, 905, 918, 919, 933, 934, 948, |
| 949, 963, 964, 977, 978, 991, 992, 1005, 1006, 1023, |
| 1024, 1037, 1038, 1039, 1040, 1042, 1043, 1044, 1046, 1048, |
| 1050, 1052, 1057, 1060, 1071, 1079, 1106, 1111, 1121, 1159, |
| 1162, 1169, 1177, 1198, 1219, 1230, 1259, 1264, 1274, 1279, |
| 1289, 1292, 1295, 1298, 1304, 1311, 1314, 1336, 1354, 1378, |
| 1401, 1405, 1423, 1431, 1463, 1483, 1571, 1580, 1603, 1606, |
| 1612, 1618, 1625, 1634, 1643, 1646, 1649, 1656, 1660, 1667, |
| 1671, 1676, 1681, 1687, 1693, 1702, 1712, 1719, 1722, 1725, |
| 1731, 1738, 1741, 1747, 1750, 1753, 1759, 1762, 1777, 1781, |
| 1785, 1789, 1793, 1797, 1802, 1807, 1812, 1817, 1822, 1827, |
| 1832, 1837, 1842, 1847, 1852, 1857, 1863, 1869, 1875, 1881, |
| 1887, 1893, 1899, 1905, 1911, 1916, 1921, 1930, 1935, 1940, |
| 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, |
| 1995, 2000, 2013, 2013, 2027, 2027, 2036, 2039, 2054, 2086, |
| 2090, 2096, 2104, 2120, 2124, 2128, 2129, 2135, 2136, 2137, |
| 2138, 2139, 2143, 2144, 2144, 2144, 2154, 2155, 2159, 2159, |
| 2160, 2160, 2165, 2168, 2178, 2181, 2187, 2188, 2192, 2200, |
| 2204, 2214, 2219, 2236, 2236, 2241, 2241, 2248, 2248, 2256, |
| 2259, 2265, 2268, 2274, 2278, 2285, 2292, 2299, 2306, 2317, |
| 2326, 2330, 2337, 2340, 2346, 2346 |
| }; |
| #endif |
| |
| #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE |
| /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. |
| First, the terminals, then, starting at YYNTOKENS, nonterminals. */ |
| static const char *const yytname[] = |
| { |
| "$end", "error", "$undefined", "INVARIANT", "HIGH_PRECISION", |
| "MEDIUM_PRECISION", "LOW_PRECISION", "PRECISION", "ATTRIBUTE", |
| "CONST_QUAL", "BOOL_TYPE", "FLOAT_TYPE", "INT_TYPE", "UINT_TYPE", |
| "BREAK", "CONTINUE", "DO", "ELSE", "FOR", "IF", "DISCARD", "RETURN", |
| "SWITCH", "CASE", "DEFAULT", "BVEC2", "BVEC3", "BVEC4", "IVEC2", "IVEC3", |
| "IVEC4", "VEC2", "VEC3", "VEC4", "UVEC2", "UVEC3", "UVEC4", "MATRIX2", |
| "MATRIX3", "MATRIX4", "IN_QUAL", "OUT_QUAL", "INOUT_QUAL", "UNIFORM", |
| "VARYING", "MATRIX2x3", "MATRIX3x2", "MATRIX2x4", "MATRIX4x2", |
| "MATRIX3x4", "MATRIX4x3", "CENTROID", "FLAT", "SMOOTH", "STRUCT", |
| "VOID_TYPE", "WHILE", "SAMPLER2D", "SAMPLERCUBE", "SAMPLER_EXTERNAL_OES", |
| "SAMPLER2DRECT", "SAMPLER2DARRAY", "ISAMPLER2D", "ISAMPLER3D", |
| "ISAMPLERCUBE", "ISAMPLER2DARRAY", "USAMPLER2D", "USAMPLER3D", |
| "USAMPLERCUBE", "USAMPLER2DARRAY", "SAMPLER3D", "SAMPLER3DRECT", |
| "SAMPLER2DSHADOW", "SAMPLERCUBESHADOW", "SAMPLER2DARRAYSHADOW", "LAYOUT", |
| "IDENTIFIER", "TYPE_NAME", "FLOATCONSTANT", "INTCONSTANT", |
| "UINTCONSTANT", "BOOLCONSTANT", "FIELD_SELECTION", "LEFT_OP", "RIGHT_OP", |
| "INC_OP", "DEC_OP", "LE_OP", "GE_OP", "EQ_OP", "NE_OP", "AND_OP", |
| "OR_OP", "XOR_OP", "MUL_ASSIGN", "DIV_ASSIGN", "ADD_ASSIGN", |
| "MOD_ASSIGN", "LEFT_ASSIGN", "RIGHT_ASSIGN", "AND_ASSIGN", "XOR_ASSIGN", |
| "OR_ASSIGN", "SUB_ASSIGN", "LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", |
| "RIGHT_BRACKET", "LEFT_BRACE", "RIGHT_BRACE", "DOT", "COMMA", "COLON", |
| "EQUAL", "SEMICOLON", "BANG", "DASH", "TILDE", "PLUS", "STAR", "SLASH", |
| "PERCENT", "LEFT_ANGLE", "RIGHT_ANGLE", "VERTICAL_BAR", "CARET", |
| "AMPERSAND", "QUESTION", "$accept", "variable_identifier", |
| "primary_expression", "postfix_expression", "integer_expression", |
| "function_call", "function_call_or_method", "function_call_generic", |
| "function_call_header_no_parameters", |
| "function_call_header_with_parameters", "function_call_header", |
| "function_identifier", "unary_expression", "unary_operator", |
| "multiplicative_expression", "additive_expression", "shift_expression", |
| "relational_expression", "equality_expression", "and_expression", |
| "exclusive_or_expression", "inclusive_or_expression", |
| "logical_and_expression", "logical_xor_expression", |
| "logical_or_expression", "conditional_expression", |
| "assignment_expression", "assignment_operator", "expression", |
| "constant_expression", "declaration", "function_prototype", |
| "function_declarator", "function_header_with_parameters", |
| "function_header", "parameter_declarator", "parameter_declaration", |
| "parameter_qualifier", "parameter_type_specifier", |
| "init_declarator_list", "single_declaration", "fully_specified_type", |
| "interpolation_qualifier", "parameter_type_qualifier", "type_qualifier", |
| "storage_qualifier", "type_specifier", "precision_qualifier", |
| "layout_qualifier", "layout_qualifier_id_list", "layout_qualifier_id", |
| "type_specifier_no_prec", "type_specifier_nonarray", "struct_specifier", |
| "$@1", "$@2", "struct_declaration_list", "struct_declaration", |
| "struct_declarator_list", "struct_declarator", "initializer", |
| "declaration_statement", "statement", "simple_statement", |
| "compound_statement", "$@3", "$@4", "statement_no_new_scope", |
| "statement_with_scope", "$@5", "$@6", "compound_statement_no_new_scope", |
| "statement_list", "expression_statement", "selection_statement", |
| "selection_rest_statement", "condition", "iteration_statement", "$@7", |
| "$@8", "$@9", "for_init_statement", "conditionopt", "for_rest_statement", |
| "jump_statement", "translation_unit", "external_declaration", |
| "function_definition", "$@10", 0 |
| }; |
| #endif |
| |
| # ifdef YYPRINT |
| /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to |
| token YYLEX-NUM. */ |
| static const yytype_uint16 yytoknum[] = |
| { |
| 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, |
| 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, |
| 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, |
| 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, |
| 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, |
| 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, |
| 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, |
| 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, |
| 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, |
| 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, |
| 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, |
| 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, |
| 375, 376, 377, 378, 379, 380, 381, 382 |
| }; |
| # endif |
| |
| /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ |
| static const yytype_uint8 yyr1[] = |
| { |
| 0, 128, 129, 130, 130, 130, 130, 130, 130, 131, |
| 131, 131, 131, 131, 131, 132, 133, 134, 134, 135, |
| 135, 136, 136, 137, 137, 138, 139, 139, 139, 140, |
| 140, 140, 140, 141, 141, 141, 141, 142, 142, 142, |
| 142, 143, 143, 143, 144, 144, 144, 145, 145, 145, |
| 145, 145, 146, 146, 146, 147, 147, 148, 148, 149, |
| 149, 150, 150, 151, 151, 152, 152, 153, 153, 154, |
| 154, 155, 155, 155, 155, 155, 155, 155, 155, 155, |
| 155, 155, 156, 156, 157, 158, 158, 158, 159, 160, |
| 160, 161, 161, 162, 163, 163, 164, 164, 164, 164, |
| 165, 165, 165, 165, 166, 167, 167, 167, 167, 167, |
| 168, 168, 168, 168, 168, 168, 169, 169, 170, 170, |
| 171, 172, 172, 172, 172, 172, 172, 172, 172, 173, |
| 173, 173, 173, 173, 173, 174, 174, 175, 175, 175, |
| 176, 177, 177, 178, 178, 178, 179, 179, 180, 180, |
| 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, |
| 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, |
| 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, |
| 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, |
| 180, 180, 182, 181, 183, 181, 184, 184, 185, 186, |
| 186, 187, 187, 188, 189, 190, 190, 191, 191, 191, |
| 191, 191, 192, 193, 194, 192, 195, 195, 197, 196, |
| 198, 196, 199, 199, 200, 200, 201, 201, 202, 203, |
| 203, 204, 204, 206, 205, 207, 205, 208, 205, 209, |
| 209, 210, 210, 211, 211, 212, 212, 212, 212, 212, |
| 213, 213, 214, 214, 216, 215 |
| }; |
| |
| /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ |
| static const yytype_uint8 yyr2[] = |
| { |
| 0, 2, 1, 1, 1, 1, 1, 1, 3, 1, |
| 4, 1, 3, 2, 2, 1, 1, 1, 3, 2, |
| 2, 2, 1, 2, 3, 2, 1, 1, 1, 1, |
| 2, 2, 2, 1, 1, 1, 1, 1, 3, 3, |
| 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, |
| 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, |
| 3, 1, 3, 1, 3, 1, 3, 1, 5, 1, |
| 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 3, 1, 2, 2, 4, 2, 1, |
| 1, 2, 3, 3, 2, 5, 3, 2, 3, 2, |
| 0, 1, 1, 1, 1, 1, 3, 5, 6, 5, |
| 1, 2, 4, 5, 4, 2, 1, 2, 1, 1, |
| 1, 1, 1, 2, 1, 2, 1, 1, 2, 1, |
| 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, |
| 4, 1, 3, 1, 3, 3, 1, 4, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 0, 6, 0, 5, 1, 2, 3, 1, |
| 3, 1, 4, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 2, 0, 0, 5, 1, 1, 0, 2, |
| 0, 2, 2, 3, 1, 2, 1, 2, 5, 3, |
| 1, 1, 4, 0, 6, 0, 8, 0, 7, 1, |
| 1, 1, 0, 2, 3, 2, 2, 2, 3, 2, |
| 1, 2, 1, 1, 0, 3 |
| }; |
| |
| /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state |
| STATE-NUM when YYTABLE doesn't specify something else to do. Zero |
| means the default is an error. */ |
| static const yytype_uint8 yydefact[] = |
| { |
| 0, 0, 137, 138, 139, 0, 121, 129, 152, 149, |
| 150, 151, 156, 157, 158, 159, 160, 161, 153, 154, |
| 155, 162, 163, 164, 165, 166, 167, 130, 131, 134, |
| 122, 168, 169, 170, 171, 172, 173, 0, 119, 118, |
| 0, 148, 174, 175, 176, 178, 179, 180, 181, 182, |
| 183, 184, 185, 186, 177, 187, 188, 189, 0, 191, |
| 253, 254, 0, 90, 100, 0, 105, 110, 126, 0, |
| 124, 116, 0, 127, 135, 146, 190, 0, 250, 252, |
| 123, 115, 0, 132, 133, 0, 194, 0, 85, 0, |
| 88, 100, 120, 101, 102, 103, 91, 0, 100, 0, |
| 86, 111, 125, 117, 136, 128, 0, 1, 251, 0, |
| 192, 0, 143, 0, 141, 0, 255, 92, 97, 99, |
| 104, 0, 106, 93, 0, 0, 2, 6, 4, 5, |
| 7, 28, 0, 0, 0, 35, 34, 36, 33, 3, |
| 9, 29, 11, 16, 17, 0, 0, 22, 0, 37, |
| 0, 41, 44, 47, 52, 55, 57, 59, 61, 63, |
| 65, 67, 84, 0, 26, 87, 0, 0, 0, 196, |
| 0, 140, 0, 0, 0, 235, 0, 0, 0, 0, |
| 0, 213, 222, 226, 37, 69, 82, 0, 204, 0, |
| 146, 207, 224, 206, 205, 0, 208, 209, 210, 211, |
| 94, 96, 98, 0, 0, 112, 0, 203, 114, 30, |
| 31, 0, 13, 14, 0, 0, 20, 19, 0, 21, |
| 23, 25, 32, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 147, 0, 201, 0, 199, 195, 197, |
| 144, 145, 142, 246, 245, 220, 237, 0, 249, 247, |
| 0, 233, 212, 0, 72, 73, 75, 74, 77, 78, |
| 79, 80, 81, 76, 71, 0, 0, 227, 223, 225, |
| 0, 107, 0, 109, 113, 8, 0, 15, 27, 12, |
| 18, 24, 38, 39, 40, 43, 42, 45, 46, 50, |
| 51, 48, 49, 53, 54, 56, 58, 60, 62, 64, |
| 66, 0, 193, 0, 0, 198, 0, 0, 0, 0, |
| 0, 248, 0, 214, 70, 83, 0, 108, 10, 0, |
| 0, 200, 0, 219, 221, 240, 239, 242, 220, 0, |
| 231, 0, 0, 0, 95, 68, 202, 0, 241, 0, |
| 0, 230, 228, 0, 0, 215, 0, 243, 0, 220, |
| 0, 217, 234, 216, 0, 244, 238, 229, 232, 236 |
| }; |
| |
| /* YYDEFGOTO[NTERM-NUM]. */ |
| static const yytype_int16 yydefgoto[] = |
| { |
| -1, 139, 140, 141, 286, 142, 143, 144, 145, 146, |
| 147, 148, 184, 150, 151, 152, 153, 154, 155, 156, |
| 157, 158, 159, 160, 161, 185, 186, 275, 187, 163, |
| 188, 189, 62, 63, 64, 118, 96, 97, 119, 65, |
| 66, 67, 68, 98, 69, 70, 71, 72, 73, 113, |
| 114, 74, 164, 76, 166, 111, 168, 169, 246, 247, |
| 208, 191, 192, 193, 194, 263, 343, 362, 316, 317, |
| 318, 363, 195, 196, 197, 352, 342, 198, 322, 255, |
| 319, 337, 349, 350, 199, 77, 78, 79, 89 |
| }; |
| |
| /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing |
| STATE-NUM. */ |
| #define YYPACT_NINF -324 |
| static const yytype_int16 yypact[] = |
| { |
| 1769, -31, -324, -324, -324, 144, -324, -324, -324, -324, |
| -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, |
| -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, |
| -324, -324, -324, -324, -324, -324, -324, 69, -324, -324, |
| -60, -324, -324, -324, -324, -324, -324, -324, -324, -324, |
| -324, -324, -324, -324, -324, -324, -324, -324, -82, -324, |
| -324, -88, -52, -48, 1, -23, -324, 2, 11, 1843, |
| -324, -324, 1979, 11, -324, -7, -324, 1694, -324, -324, |
| -324, -324, 1979, -324, -324, 18, -324, 31, -324, 59, |
| -324, 78, -324, -324, -324, -324, -324, 1843, 113, 85, |
| -324, -79, -324, -324, -324, -324, 1419, -324, -324, 55, |
| -324, 1843, 61, -55, -324, 356, -324, -324, -324, -324, |
| 102, 1843, -67, -324, 1128, 1419, 75, -324, -324, -324, |
| -324, -324, 1419, 1419, 1419, -324, -324, -324, -324, -324, |
| -324, -27, -324, -324, -324, 76, -44, 1514, 79, -324, |
| 1419, 37, -45, 30, -57, 27, 56, 62, 60, 95, |
| 96, -83, -324, 81, -324, -324, 1843, 114, 243, -324, |
| 80, -324, 31, 77, 83, -324, 89, 90, 84, 1226, |
| 97, 91, -324, -324, 230, -324, -324, -19, -324, -88, |
| -1, -324, -324, -324, -324, 472, -324, -324, -324, -324, |
| 93, -324, -324, 1321, 1419, -324, 99, -324, -324, -324, |
| -324, -37, -324, -324, 1419, 1911, -324, -324, 1419, 98, |
| -324, -324, -324, 1419, 1419, 1419, 1419, 1419, 1419, 1419, |
| 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, |
| 1419, 1419, 1419, -324, 1609, 103, -18, -324, -324, -324, |
| -324, -324, -324, -324, -324, 100, -324, 1419, -324, -324, |
| -13, -324, -324, 588, -324, -324, -324, -324, -324, -324, |
| -324, -324, -324, -324, -324, 1419, 1419, -324, -324, -324, |
| 1419, -324, 104, -324, -324, -324, 105, 92, -324, 109, |
| -324, -324, -324, -324, -324, 37, 37, -45, -45, 30, |
| 30, 30, 30, -57, -57, 27, 56, 62, 60, 95, |
| 96, 53, -324, 1419, 114, -324, 148, 59, 820, 936, |
| -35, -324, 1033, 588, -324, -324, 107, -324, -324, 1419, |
| 108, -324, 112, -324, -324, -324, -324, 1033, 100, 175, |
| 92, 145, 115, 116, -324, -324, -324, 1419, -324, 110, |
| 117, 206, -324, 118, 704, -324, -30, 1419, 704, 100, |
| 1419, -324, -324, -324, 119, 92, -324, -324, -324, -324 |
| }; |
| |
| /* YYPGOTO[NTERM-NUM]. */ |
| static const yytype_int16 yypgoto[] = |
| { |
| -324, -324, -324, -324, -324, -324, -324, 13, -324, -324, |
| -324, -324, -95, -324, -56, -53, -108, -62, -10, -8, |
| -6, -5, -3, -2, -324, -103, -124, -324, -130, -117, |
| 8, 12, -324, -324, -324, 120, 147, 137, 121, -324, |
| -324, -305, -324, -324, -324, -33, -64, 235, -324, -324, |
| 71, -54, 0, -324, -324, -324, 86, -154, -324, -69, |
| -198, -73, -176, -294, -324, -324, -324, -107, -323, -324, |
| -324, -87, -4, -61, -324, -324, -80, -324, -324, -324, |
| -324, -324, -324, -324, -324, -324, 173, -324, -324 |
| }; |
| |
| /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If |
| positive, shift that token. If negative, reduce the rule which |
| number is the opposite. If zero, do what YYDEFACT says. |
| If YYTABLE_NINF, syntax error. */ |
| #define YYTABLE_NINF -219 |
| static const yytype_int16 yytable[] = |
| { |
| 75, 207, 116, 162, 211, 103, 283, 206, 60, 241, |
| 92, 149, 61, 80, 249, 351, 85, 341, 104, 279, |
| 7, 162, 87, 220, 334, 123, 88, 124, 109, 149, |
| 230, 231, 341, 120, 125, 102, 367, 209, 210, 203, |
| 105, 93, 94, 95, 242, 81, 204, 167, 86, 260, |
| 171, 27, 28, 90, 29, 222, 172, 120, 212, 213, |
| 361, 217, 37, 91, 361, 232, 233, 218, 285, 75, |
| 338, 226, 75, 227, 276, 364, 276, 75, 101, 214, |
| 207, 276, 75, 215, 287, 60, 282, 92, 99, 61, |
| 249, 100, 276, 314, 291, 277, 315, 75, 276, 106, |
| 162, 321, 167, -26, 167, 106, -89, 112, 149, 83, |
| 84, 75, 311, 228, 229, 190, 234, 235, 93, 94, |
| 95, 75, 299, 300, 301, 302, 110, 320, 292, 293, |
| 294, 149, 149, 149, 149, 149, 149, 149, 149, 149, |
| 149, 149, 149, 149, 149, 149, 149, 279, 2, 3, |
| 4, 324, 325, 93, 94, 95, 223, 224, 225, 250, |
| 251, 122, 368, 326, 276, 329, 75, 115, 75, 165, |
| 295, 296, 303, 304, 170, 297, 298, 162, 200, -27, |
| 167, 216, 236, 221, 238, 149, 239, 237, 243, 240, |
| 245, 253, 340, 256, 257, 190, 330, 254, 258, 280, |
| 262, 261, -148, 276, 332, 345, 284, 340, -218, 313, |
| 162, 327, 328, -28, 344, 346, 347, 356, 149, 80, |
| 354, 353, 358, 359, 357, 355, 305, 365, 290, 306, |
| 333, 360, 307, 369, 308, 121, 207, 309, 117, 310, |
| 82, 201, 202, 252, 75, 331, 335, 2, 3, 4, |
| 108, 366, 244, 8, 9, 10, 11, 348, 336, 323, |
| 0, 0, 0, 190, 0, 0, 0, 0, 12, 13, |
| 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 0, 0, 0, 0, 0, 31, 32, |
| 33, 34, 35, 36, 0, 0, 0, 40, 41, 0, |
| 42, 43, 44, 0, 45, 46, 47, 48, 49, 50, |
| 51, 52, 53, 54, 0, 55, 56, 57, 190, 190, |
| 59, 0, 190, 190, 264, 265, 266, 267, 268, 269, |
| 270, 271, 272, 273, 0, 0, 0, 190, 0, 0, |
| 0, 0, 0, 274, 0, 0, 0, 0, 0, 0, |
| 0, 0, 248, 0, 190, 0, 0, 0, 190, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, |
| 173, 174, 175, 0, 176, 177, 178, 179, 0, 0, |
| 0, 12, 13, 14, 15, 16, 17, 18, 19, 20, |
| 21, 22, 23, 24, 25, 26, 27, 28, 0, 29, |
| 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, |
| 40, 41, 180, 42, 43, 44, 0, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 0, 55, 56, |
| 57, 58, 126, 59, 127, 128, 129, 130, 131, 0, |
| 0, 132, 133, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 134, 0, 0, 0, 181, 182, 0, 0, 0, 0, |
| 183, 135, 136, 137, 138, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 173, 174, 175, 0, |
| 176, 177, 178, 179, 0, 0, 0, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 0, 29, 30, 31, 32, 33, |
| 34, 35, 36, 37, 38, 39, 40, 41, 180, 42, |
| 43, 44, 0, 45, 46, 47, 48, 49, 50, 51, |
| 52, 53, 54, 0, 55, 56, 57, 58, 126, 59, |
| 127, 128, 129, 130, 131, 0, 0, 132, 133, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 134, 0, 0, 0, |
| 181, 278, 0, 0, 0, 0, 183, 135, 136, 137, |
| 138, 1, 2, 3, 4, 5, 6, 7, 8, 9, |
| 10, 11, 173, 174, 175, 0, 176, 177, 178, 179, |
| 0, 0, 0, 12, 13, 14, 15, 16, 17, 18, |
| 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, |
| 0, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 180, 42, 43, 44, 0, 45, |
| 46, 47, 48, 49, 50, 51, 52, 53, 54, 0, |
| 55, 56, 57, 58, 126, 59, 127, 128, 129, 130, |
| 131, 0, 0, 132, 133, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 134, 0, 0, 0, 181, 0, 0, 0, |
| 0, 0, 183, 135, 136, 137, 138, 1, 2, 3, |
| 4, 5, 6, 7, 8, 9, 10, 11, 173, 174, |
| 175, 0, 176, 177, 178, 179, 0, 0, 0, 12, |
| 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, |
| 23, 24, 25, 26, 27, 28, 0, 29, 30, 31, |
| 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, |
| 180, 42, 43, 44, 0, 45, 46, 47, 48, 49, |
| 50, 51, 52, 53, 54, 0, 55, 56, 57, 58, |
| 126, 59, 127, 128, 129, 130, 131, 0, 0, 132, |
| 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 134, 0, |
| 0, 0, 115, 0, 0, 0, 0, 0, 183, 135, |
| 136, 137, 138, 1, 2, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 173, 174, 175, 0, 176, 177, |
| 178, 179, 0, 0, 0, 12, 13, 14, 15, 16, |
| 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
| 27, 28, 0, 29, 30, 31, 32, 33, 34, 35, |
| 36, 37, 38, 39, 40, 41, 180, 42, 43, 44, |
| 0, 45, 46, 47, 48, 49, 50, 51, 52, 53, |
| 54, 0, 55, 56, 57, 58, 126, 59, 127, 128, |
| 129, 130, 131, 0, 0, 132, 133, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 134, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 183, 135, 136, 137, 138, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 12, 13, 14, 15, 16, 17, 18, 19, 20, |
| 21, 22, 23, 24, 25, 26, 27, 28, 0, 29, |
| 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, |
| 40, 41, 0, 42, 43, 44, 0, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 0, 55, 56, |
| 57, 58, 126, 59, 127, 128, 129, 130, 131, 0, |
| 0, 132, 133, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 339, 2, 3, 4, |
| 134, 6, 7, 8, 9, 10, 11, 0, 0, 0, |
| 183, 135, 136, 137, 138, 0, 0, 0, 12, 13, |
| 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 27, 28, 0, 29, 30, 31, 32, |
| 33, 34, 35, 36, 37, 38, 39, 40, 41, 0, |
| 42, 43, 44, 0, 45, 46, 47, 48, 49, 50, |
| 51, 52, 53, 54, 0, 55, 56, 57, 58, 126, |
| 59, 127, 128, 129, 130, 131, 0, 0, 132, 133, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 134, 8, 9, |
| 10, 11, 0, 0, 0, 0, 0, 0, 135, 136, |
| 137, 138, 0, 12, 13, 14, 15, 16, 17, 18, |
| 19, 20, 21, 22, 23, 24, 25, 26, 0, 0, |
| 0, 0, 0, 31, 32, 33, 34, 35, 36, 0, |
| 0, 0, 40, 41, 0, 42, 43, 44, 0, 45, |
| 46, 47, 48, 49, 50, 51, 52, 53, 54, 0, |
| 55, 56, 57, 0, 126, 59, 127, 128, 129, 130, |
| 131, 0, 0, 132, 133, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 134, 0, 0, 205, 8, 9, 10, 11, |
| 0, 0, 0, 135, 136, 137, 138, 0, 0, 0, |
| 0, 12, 13, 14, 15, 16, 17, 18, 19, 20, |
| 21, 22, 23, 24, 25, 26, 0, 0, 0, 0, |
| 0, 31, 32, 33, 34, 35, 36, 0, 0, 0, |
| 40, 41, 0, 42, 43, 44, 0, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 0, 55, 56, |
| 57, 0, 126, 59, 127, 128, 129, 130, 131, 0, |
| 0, 132, 133, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 134, 8, 9, 10, 11, 0, 0, 0, 0, 0, |
| 259, 135, 136, 137, 138, 0, 12, 13, 14, 15, |
| 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, |
| 26, 0, 0, 0, 0, 0, 31, 32, 33, 34, |
| 35, 36, 0, 0, 0, 40, 41, 0, 42, 43, |
| 44, 0, 45, 46, 47, 48, 49, 50, 51, 52, |
| 53, 54, 0, 55, 56, 57, 0, 126, 59, 127, |
| 128, 129, 130, 131, 0, 0, 132, 133, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 134, 0, 0, 281, 8, |
| 9, 10, 11, 0, 0, 0, 135, 136, 137, 138, |
| 0, 0, 0, 0, 12, 13, 14, 15, 16, 17, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 0, |
| 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, |
| 0, 0, 0, 40, 41, 0, 42, 43, 44, 0, |
| 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, |
| 0, 55, 56, 57, 0, 126, 59, 127, 128, 129, |
| 130, 131, 0, 0, 132, 133, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 134, 8, 9, 10, 11, 0, 0, |
| 0, 0, 0, 0, 135, 136, 137, 138, 0, 12, |
| 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, |
| 23, 24, 25, 26, 0, 0, 0, 0, 0, 31, |
| 32, 33, 34, 35, 36, 0, 0, 0, 40, 219, |
| 0, 42, 43, 44, 0, 45, 46, 47, 48, 49, |
| 50, 51, 52, 53, 54, 0, 55, 56, 57, 0, |
| 126, 59, 127, 128, 129, 130, 131, 0, 0, 132, |
| 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 2, 3, 4, 0, 0, 134, 8, |
| 9, 10, 11, 0, 0, 0, 0, 0, 0, 135, |
| 136, 137, 138, 0, 12, 13, 14, 15, 16, 17, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 0, |
| 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, |
| 0, 0, 0, 40, 41, 0, 42, 43, 44, 0, |
| 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, |
| 0, 55, 56, 57, 0, 0, 59, 0, 0, 0, |
| 0, 0, 0, 0, 107, 0, 0, 1, 2, 3, |
| 4, 5, 6, 7, 8, 9, 10, 11, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 312, 12, |
| 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, |
| 23, 24, 25, 26, 27, 28, 0, 29, 30, 31, |
| 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, |
| 0, 42, 43, 44, 0, 45, 46, 47, 48, 49, |
| 50, 51, 52, 53, 54, 0, 55, 56, 57, 58, |
| 0, 59, 1, 2, 3, 4, 5, 6, 7, 8, |
| 9, 10, 11, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 12, 13, 14, 15, 16, 17, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 0, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, 40, 41, 0, 42, 43, 44, 0, |
| 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, |
| 0, 55, 56, 57, 58, 0, 59, 2, 3, 4, |
| 0, 0, 0, 8, 9, 10, 11, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 12, 13, |
| 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 0, 0, 0, 0, 0, 31, 32, |
| 33, 34, 35, 36, 0, 0, 0, 40, 41, 0, |
| 42, 43, 44, 0, 45, 46, 47, 48, 49, 50, |
| 51, 52, 53, 54, 0, 55, 56, 57, 0, 0, |
| 59, 8, 9, 10, 11, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 12, 13, 14, 15, |
| 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, |
| 26, 0, 0, 0, 0, 0, 31, 32, 33, 34, |
| 35, 36, 0, 0, 0, 40, 41, 0, 42, 43, |
| 44, 0, 45, 46, 47, 48, 49, 50, 51, 52, |
| 53, 54, 0, 55, 56, 57, 0, 288, 59, 8, |
| 9, 10, 11, 289, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 12, 13, 14, 15, 16, 17, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 0, |
| 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, |
| 0, 0, 0, 40, 41, 0, 42, 43, 44, 0, |
| 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, |
| 0, 55, 56, 57, 0, 0, 59 |
| }; |
| |
| static const yytype_int16 yycheck[] = |
| { |
| 0, 125, 89, 106, 134, 69, 204, 124, 0, 92, |
| 9, 106, 0, 44, 168, 338, 76, 322, 72, 195, |
| 9, 124, 104, 147, 318, 104, 114, 106, 82, 124, |
| 87, 88, 337, 97, 113, 68, 359, 132, 133, 106, |
| 73, 40, 41, 42, 127, 76, 113, 111, 108, 179, |
| 105, 40, 41, 105, 43, 150, 111, 121, 85, 86, |
| 354, 105, 51, 111, 358, 122, 123, 111, 105, 69, |
| 105, 116, 72, 118, 111, 105, 111, 77, 76, 106, |
| 204, 111, 82, 110, 214, 77, 203, 9, 111, 77, |
| 244, 114, 111, 111, 218, 114, 114, 97, 111, 106, |
| 203, 114, 166, 104, 168, 106, 105, 76, 203, 40, |
| 41, 111, 242, 83, 84, 115, 89, 90, 40, 41, |
| 42, 121, 230, 231, 232, 233, 108, 257, 223, 224, |
| 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, |
| 235, 236, 237, 238, 239, 240, 241, 323, 4, 5, |
| 6, 275, 276, 40, 41, 42, 119, 120, 121, 79, |
| 80, 76, 360, 280, 111, 112, 166, 108, 168, 114, |
| 226, 227, 234, 235, 113, 228, 229, 280, 76, 104, |
| 244, 105, 126, 104, 124, 280, 91, 125, 107, 93, |
| 76, 114, 322, 104, 104, 195, 313, 114, 114, 106, |
| 109, 104, 104, 111, 56, 329, 107, 337, 108, 106, |
| 313, 107, 107, 104, 107, 107, 104, 347, 313, 44, |
| 105, 76, 105, 17, 114, 109, 236, 357, 215, 237, |
| 317, 113, 238, 114, 239, 98, 360, 240, 91, 241, |
| 5, 121, 121, 172, 244, 314, 319, 4, 5, 6, |
| 77, 358, 166, 10, 11, 12, 13, 337, 319, 263, |
| -1, -1, -1, 263, -1, -1, -1, -1, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, -1, -1, -1, -1, -1, 45, 46, |
| 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, |
| 57, 58, 59, -1, 61, 62, 63, 64, 65, 66, |
| 67, 68, 69, 70, -1, 72, 73, 74, 318, 319, |
| 77, -1, 322, 323, 94, 95, 96, 97, 98, 99, |
| 100, 101, 102, 103, -1, -1, -1, 337, -1, -1, |
| -1, -1, -1, 113, -1, -1, -1, -1, -1, -1, |
| -1, -1, 109, -1, 354, -1, -1, -1, 358, 3, |
| 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, |
| 14, 15, 16, -1, 18, 19, 20, 21, -1, -1, |
| -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 34, 35, 36, 37, 38, 39, 40, 41, -1, 43, |
| 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, -1, 61, 62, 63, |
| 64, 65, 66, 67, 68, 69, 70, -1, 72, 73, |
| 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, |
| -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 104, -1, -1, -1, 108, 109, -1, -1, -1, -1, |
| 114, 115, 116, 117, 118, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, 16, -1, |
| 18, 19, 20, 21, -1, -1, -1, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, -1, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, -1, 61, 62, 63, 64, 65, 66, 67, |
| 68, 69, 70, -1, 72, 73, 74, 75, 76, 77, |
| 78, 79, 80, 81, 82, -1, -1, 85, 86, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 104, -1, -1, -1, |
| 108, 109, -1, -1, -1, -1, 114, 115, 116, 117, |
| 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, |
| 12, 13, 14, 15, 16, -1, 18, 19, 20, 21, |
| -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, |
| 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, |
| -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, |
| 52, 53, 54, 55, 56, 57, 58, 59, -1, 61, |
| 62, 63, 64, 65, 66, 67, 68, 69, 70, -1, |
| 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, |
| 82, -1, -1, 85, 86, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, 104, -1, -1, -1, 108, -1, -1, -1, |
| -1, -1, 114, 115, 116, 117, 118, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, |
| 16, -1, 18, 19, 20, 21, -1, -1, -1, 25, |
| 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, |
| 36, 37, 38, 39, 40, 41, -1, 43, 44, 45, |
| 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, |
| 56, 57, 58, 59, -1, 61, 62, 63, 64, 65, |
| 66, 67, 68, 69, 70, -1, 72, 73, 74, 75, |
| 76, 77, 78, 79, 80, 81, 82, -1, -1, 85, |
| 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, 104, -1, |
| -1, -1, 108, -1, -1, -1, -1, -1, 114, 115, |
| 116, 117, 118, 3, 4, 5, 6, 7, 8, 9, |
| 10, 11, 12, 13, 14, 15, 16, -1, 18, 19, |
| 20, 21, -1, -1, -1, 25, 26, 27, 28, 29, |
| 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, |
| 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, |
| 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, |
| -1, 61, 62, 63, 64, 65, 66, 67, 68, 69, |
| 70, -1, 72, 73, 74, 75, 76, 77, 78, 79, |
| 80, 81, 82, -1, -1, 85, 86, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, 104, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, 114, 115, 116, 117, 118, 3, |
| 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 34, 35, 36, 37, 38, 39, 40, 41, -1, 43, |
| 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, |
| 54, 55, -1, 57, 58, 59, -1, 61, 62, 63, |
| 64, 65, 66, 67, 68, 69, 70, -1, 72, 73, |
| 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, |
| -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, |
| 104, 8, 9, 10, 11, 12, 13, -1, -1, -1, |
| 114, 115, 116, 117, 118, -1, -1, -1, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, 40, 41, -1, 43, 44, 45, 46, |
| 47, 48, 49, 50, 51, 52, 53, 54, 55, -1, |
| 57, 58, 59, -1, 61, 62, 63, 64, 65, 66, |
| 67, 68, 69, 70, -1, 72, 73, 74, 75, 76, |
| 77, 78, 79, 80, 81, 82, -1, -1, 85, 86, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, 104, 10, 11, |
| 12, 13, -1, -1, -1, -1, -1, -1, 115, 116, |
| 117, 118, -1, 25, 26, 27, 28, 29, 30, 31, |
| 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, |
| -1, -1, -1, 45, 46, 47, 48, 49, 50, -1, |
| -1, -1, 54, 55, -1, 57, 58, 59, -1, 61, |
| 62, 63, 64, 65, 66, 67, 68, 69, 70, -1, |
| 72, 73, 74, -1, 76, 77, 78, 79, 80, 81, |
| 82, -1, -1, 85, 86, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, 104, -1, -1, 107, 10, 11, 12, 13, |
| -1, -1, -1, 115, 116, 117, 118, -1, -1, -1, |
| -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 34, 35, 36, 37, 38, 39, -1, -1, -1, -1, |
| -1, 45, 46, 47, 48, 49, 50, -1, -1, -1, |
| 54, 55, -1, 57, 58, 59, -1, 61, 62, 63, |
| 64, 65, 66, 67, 68, 69, 70, -1, 72, 73, |
| 74, -1, 76, 77, 78, 79, 80, 81, 82, -1, |
| -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 104, 10, 11, 12, 13, -1, -1, -1, -1, -1, |
| 114, 115, 116, 117, 118, -1, 25, 26, 27, 28, |
| 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
| 39, -1, -1, -1, -1, -1, 45, 46, 47, 48, |
| 49, 50, -1, -1, -1, 54, 55, -1, 57, 58, |
| 59, -1, 61, 62, 63, 64, 65, 66, 67, 68, |
| 69, 70, -1, 72, 73, 74, -1, 76, 77, 78, |
| 79, 80, 81, 82, -1, -1, 85, 86, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, 104, -1, -1, 107, 10, |
| 11, 12, 13, -1, -1, -1, 115, 116, 117, 118, |
| -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, |
| 31, 32, 33, 34, 35, 36, 37, 38, 39, -1, |
| -1, -1, -1, -1, 45, 46, 47, 48, 49, 50, |
| -1, -1, -1, 54, 55, -1, 57, 58, 59, -1, |
| 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, |
| -1, 72, 73, 74, -1, 76, 77, 78, 79, 80, |
| 81, 82, -1, -1, 85, 86, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, 104, 10, 11, 12, 13, -1, -1, |
| -1, -1, -1, -1, 115, 116, 117, 118, -1, 25, |
| 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, |
| 36, 37, 38, 39, -1, -1, -1, -1, -1, 45, |
| 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, |
| -1, 57, 58, 59, -1, 61, 62, 63, 64, 65, |
| 66, 67, 68, 69, 70, -1, 72, 73, 74, -1, |
| 76, 77, 78, 79, 80, 81, 82, -1, -1, 85, |
| 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, 4, 5, 6, -1, -1, 104, 10, |
| 11, 12, 13, -1, -1, -1, -1, -1, -1, 115, |
| 116, 117, 118, -1, 25, 26, 27, 28, 29, 30, |
| 31, 32, 33, 34, 35, 36, 37, 38, 39, -1, |
| -1, -1, -1, -1, 45, 46, 47, 48, 49, 50, |
| -1, -1, -1, 54, 55, -1, 57, 58, 59, -1, |
| 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, |
| -1, 72, 73, 74, -1, -1, 77, -1, -1, -1, |
| -1, -1, -1, -1, 0, -1, -1, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 12, 13, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, 109, 25, |
| 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, |
| 36, 37, 38, 39, 40, 41, -1, 43, 44, 45, |
| 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, |
| -1, 57, 58, 59, -1, 61, 62, 63, 64, 65, |
| 66, 67, 68, 69, 70, -1, 72, 73, 74, 75, |
| -1, 77, 3, 4, 5, 6, 7, 8, 9, 10, |
| 11, 12, 13, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, |
| 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, |
| 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, |
| 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, |
| 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, |
| -1, 72, 73, 74, 75, -1, 77, 4, 5, 6, |
| -1, -1, -1, 10, 11, 12, 13, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, -1, -1, -1, -1, -1, 45, 46, |
| 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, |
| 57, 58, 59, -1, 61, 62, 63, 64, 65, 66, |
| 67, 68, 69, 70, -1, 72, 73, 74, -1, -1, |
| 77, 10, 11, 12, 13, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, |
| 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
| 39, -1, -1, -1, -1, -1, 45, 46, 47, 48, |
| 49, 50, -1, -1, -1, 54, 55, -1, 57, 58, |
| 59, -1, 61, 62, 63, 64, 65, 66, 67, 68, |
| 69, 70, -1, 72, 73, 74, -1, 76, 77, 10, |
| 11, 12, 13, 82, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, |
| 31, 32, 33, 34, 35, 36, 37, 38, 39, -1, |
| -1, -1, -1, -1, 45, 46, 47, 48, 49, 50, |
| -1, -1, -1, 54, 55, -1, 57, 58, 59, -1, |
| 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, |
| -1, 72, 73, 74, -1, -1, 77 |
| }; |
| |
| /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing |
| symbol of state STATE-NUM. */ |
| static const yytype_uint8 yystos[] = |
| { |
| 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, |
| 12, 13, 25, 26, 27, 28, 29, 30, 31, 32, |
| 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, |
| 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, |
| 54, 55, 57, 58, 59, 61, 62, 63, 64, 65, |
| 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, |
| 158, 159, 160, 161, 162, 167, 168, 169, 170, 172, |
| 173, 174, 175, 176, 179, 180, 181, 213, 214, 215, |
| 44, 76, 175, 40, 41, 76, 108, 104, 114, 216, |
| 105, 111, 9, 40, 41, 42, 164, 165, 171, 111, |
| 114, 76, 173, 174, 179, 173, 106, 0, 214, 179, |
| 108, 183, 76, 177, 178, 108, 199, 164, 163, 166, |
| 174, 165, 76, 104, 106, 113, 76, 78, 79, 80, |
| 81, 82, 85, 86, 104, 115, 116, 117, 118, 129, |
| 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, |
| 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, |
| 151, 152, 153, 157, 180, 114, 182, 174, 184, 185, |
| 113, 105, 111, 14, 15, 16, 18, 19, 20, 21, |
| 56, 108, 109, 114, 140, 153, 154, 156, 158, 159, |
| 180, 189, 190, 191, 192, 200, 201, 202, 205, 212, |
| 76, 163, 166, 106, 113, 107, 157, 154, 188, 140, |
| 140, 156, 85, 86, 106, 110, 105, 105, 111, 55, |
| 154, 104, 140, 119, 120, 121, 116, 118, 83, 84, |
| 87, 88, 122, 123, 89, 90, 126, 125, 124, 91, |
| 93, 92, 127, 107, 184, 76, 186, 187, 109, 185, |
| 79, 80, 178, 114, 114, 207, 104, 104, 114, 114, |
| 156, 104, 109, 193, 94, 95, 96, 97, 98, 99, |
| 100, 101, 102, 103, 113, 155, 111, 114, 109, 190, |
| 106, 107, 157, 188, 107, 105, 132, 156, 76, 82, |
| 135, 154, 140, 140, 140, 142, 142, 143, 143, 144, |
| 144, 144, 144, 145, 145, 146, 147, 148, 149, 150, |
| 151, 156, 109, 106, 111, 114, 196, 197, 198, 208, |
| 156, 114, 206, 200, 154, 154, 157, 107, 107, 112, |
| 157, 187, 56, 199, 191, 189, 201, 209, 105, 3, |
| 156, 169, 204, 194, 107, 154, 107, 104, 204, 210, |
| 211, 196, 203, 76, 105, 109, 156, 114, 105, 17, |
| 113, 191, 195, 199, 105, 156, 195, 196, 188, 114 |
| }; |
| |
| #define yyerrok (yyerrstatus = 0) |
| #define yyclearin (yychar = YYEMPTY) |
| #define YYEMPTY (-2) |
| #define YYEOF 0 |
| |
| #define YYACCEPT goto yyacceptlab |
| #define YYABORT goto yyabortlab |
| #define YYERROR goto yyerrorlab |
| |
| |
| /* Like YYERROR except do call yyerror. This remains here temporarily |
| to ease the transition to the new meaning of YYERROR, for GCC. |
| Once GCC version 2 has supplanted version 1, this can go. */ |
| |
| #define YYFAIL goto yyerrlab |
| |
| #define YYRECOVERING() (!!yyerrstatus) |
| |
| #define YYBACKUP(Token, Value) \ |
| do \ |
| if (yychar == YYEMPTY && yylen == 1) \ |
| { \ |
| yychar = (Token); \ |
| yylval = (Value); \ |
| yytoken = YYTRANSLATE (yychar); \ |
| YYPOPSTACK (1); \ |
| goto yybackup; \ |
| } \ |
| else \ |
| { \ |
| yyerror (context, YY_("syntax error: cannot back up")); \ |
| YYERROR; \ |
| } \ |
| while (YYID (0)) |
| |
| |
| #define YYTERROR 1 |
| #define YYERRCODE 256 |
| |
| |
| /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. |
| If N is 0, then set CURRENT to the empty location which ends |
| the previous symbol: RHS[0] (always defined). */ |
| |
| #define YYRHSLOC(Rhs, K) ((Rhs)[K]) |
| #ifndef YYLLOC_DEFAULT |
| # define YYLLOC_DEFAULT(Current, Rhs, N) \ |
| do \ |
| if (YYID (N)) \ |
| { \ |
| (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ |
| (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ |
| (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ |
| (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ |
| } \ |
| else \ |
| { \ |
| (Current).first_line = (Current).last_line = \ |
| YYRHSLOC (Rhs, 0).last_line; \ |
| (Current).first_column = (Current).last_column = \ |
| YYRHSLOC (Rhs, 0).last_column; \ |
| } \ |
| while (YYID (0)) |
| #endif |
| |
| |
| /* YY_LOCATION_PRINT -- Print the location on the stream. |
| This macro was not mandated originally: define only if we know |
| we won't break user code: when these are the locations we know. */ |
| |
| #ifndef YY_LOCATION_PRINT |
| # if YYLTYPE_IS_TRIVIAL |
| # define YY_LOCATION_PRINT(File, Loc) \ |
| fprintf (File, "%d.%d-%d.%d", \ |
| (Loc).first_line, (Loc).first_column, \ |
| (Loc).last_line, (Loc).last_column) |
| # else |
| # define YY_LOCATION_PRINT(File, Loc) ((void) 0) |
| # endif |
| #endif |
| |
| |
| /* YYLEX -- calling `yylex' with the right arguments. */ |
| |
| #ifdef YYLEX_PARAM |
| # define YYLEX yylex (&yylval, YYLEX_PARAM) |
| #else |
| # define YYLEX yylex (&yylval) |
| #endif |
| |
| /* Enable debugging if requested. */ |
| #if YYDEBUG |
| |
| # ifndef YYFPRINTF |
| # include <stdio.h> /* INFRINGES ON USER NAME SPACE */ |
| # define YYFPRINTF fprintf |
| # endif |
| |
| # define YYDPRINTF(Args) \ |
| do { \ |
| if (yydebug) \ |
| YYFPRINTF Args; \ |
| } while (YYID (0)) |
| |
| # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ |
| do { \ |
| if (yydebug) \ |
| { \ |
| YYFPRINTF (stderr, "%s ", Title); \ |
| yy_symbol_print (stderr, \ |
| Type, Value, context); \ |
| YYFPRINTF (stderr, "\n"); \ |
| } \ |
| } while (YYID (0)) |
| |
| |
| /*--------------------------------. |
| | Print this symbol on YYOUTPUT. | |
| `--------------------------------*/ |
| |
| /*ARGSUSED*/ |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static void |
| yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, TParseContext* context) |
| #else |
| static void |
| yy_symbol_value_print (yyoutput, yytype, yyvaluep, context) |
| FILE *yyoutput; |
| int yytype; |
| YYSTYPE const * const yyvaluep; |
| TParseContext* context; |
| #endif |
| { |
| if (!yyvaluep) |
| return; |
| YYUSE (context); |
| # ifdef YYPRINT |
| if (yytype < YYNTOKENS) |
| YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); |
| # else |
| YYUSE (yyoutput); |
| # endif |
| switch (yytype) |
| { |
| default: |
| break; |
| } |
| } |
| |
| |
| /*--------------------------------. |
| | Print this symbol on YYOUTPUT. | |
| `--------------------------------*/ |
| |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static void |
| yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, TParseContext* context) |
| #else |
| static void |
| yy_symbol_print (yyoutput, yytype, yyvaluep, context) |
| FILE *yyoutput; |
| int yytype; |
| YYSTYPE const * const yyvaluep; |
| TParseContext* context; |
| #endif |
| { |
| if (yytype < YYNTOKENS) |
| YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); |
| else |
| YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); |
| |
| yy_symbol_value_print (yyoutput, yytype, yyvaluep, context); |
| YYFPRINTF (yyoutput, ")"); |
| } |
| |
| /*------------------------------------------------------------------. |
| | yy_stack_print -- Print the state stack from its BOTTOM up to its | |
| | TOP (included). | |
| `------------------------------------------------------------------*/ |
| |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static void |
| yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) |
| #else |
| static void |
| yy_stack_print (yybottom, yytop) |
| yytype_int16 *yybottom; |
| yytype_int16 *yytop; |
| #endif |
| { |
| YYFPRINTF (stderr, "Stack now"); |
| for (; yybottom <= yytop; yybottom++) |
| { |
| int yybot = *yybottom; |
| YYFPRINTF (stderr, " %d", yybot); |
| } |
| YYFPRINTF (stderr, "\n"); |
| } |
| |
| # define YY_STACK_PRINT(Bottom, Top) \ |
| do { \ |
| if (yydebug) \ |
| yy_stack_print ((Bottom), (Top)); \ |
| } while (YYID (0)) |
| |
| |
| /*------------------------------------------------. |
| | Report that the YYRULE is going to be reduced. | |
| `------------------------------------------------*/ |
| |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static void |
| yy_reduce_print (YYSTYPE *yyvsp, int yyrule, TParseContext* context) |
| #else |
| static void |
| yy_reduce_print (yyvsp, yyrule, context) |
| YYSTYPE *yyvsp; |
| int yyrule; |
| TParseContext* context; |
| #endif |
| { |
| int yynrhs = yyr2[yyrule]; |
| int yyi; |
| unsigned long int yylno = yyrline[yyrule]; |
| YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", |
| yyrule - 1, yylno); |
| /* The symbols being reduced. */ |
| for (yyi = 0; yyi < yynrhs; yyi++) |
| { |
| YYFPRINTF (stderr, " $%d = ", yyi + 1); |
| yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], |
| &(yyvsp[(yyi + 1) - (yynrhs)]) |
| , context); |
| YYFPRINTF (stderr, "\n"); |
| } |
| } |
| |
| # define YY_REDUCE_PRINT(Rule) \ |
| do { \ |
| if (yydebug) \ |
| yy_reduce_print (yyvsp, Rule, context); \ |
| } while (YYID (0)) |
| |
| /* Nonzero means print parse trace. It is left uninitialized so that |
| multiple parsers can coexist. */ |
| int yydebug; |
| #else /* !YYDEBUG */ |
| # define YYDPRINTF(Args) |
| # define YY_SYMBOL_PRINT(Title, Type, Value, Location) |
| # define YY_STACK_PRINT(Bottom, Top) |
| # define YY_REDUCE_PRINT(Rule) |
| #endif /* !YYDEBUG */ |
| |
| |
| /* YYINITDEPTH -- initial size of the parser's stacks. */ |
| #ifndef YYINITDEPTH |
| # define YYINITDEPTH 200 |
| #endif |
| |
| /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only |
| if the built-in stack extension method is used). |
| |
| Do not make this value too large; the results are undefined if |
| YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) |
| evaluated with infinite-precision integer arithmetic. */ |
| |
| #ifndef YYMAXDEPTH |
| # define YYMAXDEPTH 10000 |
| #endif |
| |
| |
| |
| #if YYERROR_VERBOSE |
| |
| # ifndef yystrlen |
| # if defined __GLIBC__ && defined _STRING_H |
| # define yystrlen strlen |
| # else |
| /* Return the length of YYSTR. */ |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static YYSIZE_T |
| yystrlen (const char *yystr) |
| #else |
| static YYSIZE_T |
| yystrlen (yystr) |
| const char *yystr; |
| #endif |
| { |
| YYSIZE_T yylen; |
| for (yylen = 0; yystr[yylen]; yylen++) |
| continue; |
| return yylen; |
| } |
| # endif |
| # endif |
| |
| # ifndef yystpcpy |
| # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE |
| # define yystpcpy stpcpy |
| # else |
| /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in |
| YYDEST. */ |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static char * |
| yystpcpy (char *yydest, const char *yysrc) |
| #else |
| static char * |
| yystpcpy (yydest, yysrc) |
| char *yydest; |
| const char *yysrc; |
| #endif |
| { |
| char *yyd = yydest; |
| const char *yys = yysrc; |
| |
| while ((*yyd++ = *yys++) != '\0') |
| continue; |
| |
| return yyd - 1; |
| } |
| # endif |
| # endif |
| |
| # ifndef yytnamerr |
| /* Copy to YYRES the contents of YYSTR after stripping away unnecessary |
| quotes and backslashes, so that it's suitable for yyerror. The |
| heuristic is that double-quoting is unnecessary unless the string |
| contains an apostrophe, a comma, or backslash (other than |
| backslash-backslash). YYSTR is taken from yytname. If YYRES is |
| null, do not copy; instead, return the length of what the result |
| would have been. */ |
| static YYSIZE_T |
| yytnamerr (char *yyres, const char *yystr) |
| { |
| if (*yystr == '"') |
| { |
| YYSIZE_T yyn = 0; |
| char const *yyp = yystr; |
| |
| for (;;) |
| switch (*++yyp) |
| { |
| case '\'': |
| case ',': |
| goto do_not_strip_quotes; |
| |
| case '\\': |
| if (*++yyp != '\\') |
| goto do_not_strip_quotes; |
| /* Fall through. */ |
| default: |
| if (yyres) |
| yyres[yyn] = *yyp; |
| yyn++; |
| break; |
| |
| case '"': |
| if (yyres) |
| yyres[yyn] = '\0'; |
| return yyn; |
| } |
| do_not_strip_quotes: ; |
| } |
| |
| if (! yyres) |
| return yystrlen (yystr); |
| |
| return yystpcpy (yyres, yystr) - yyres; |
| } |
| # endif |
| |
| /* Copy into YYRESULT an error message about the unexpected token |
| YYCHAR while in state YYSTATE. Return the number of bytes copied, |
| including the terminating null byte. If YYRESULT is null, do not |
| copy anything; just return the number of bytes that would be |
| copied. As a special case, return 0 if an ordinary "syntax error" |
| message will do. Return YYSIZE_MAXIMUM if overflow occurs during |
| size calculation. */ |
| static YYSIZE_T |
| yysyntax_error (char *yyresult, int yystate, int yychar) |
| { |
| int yyn = yypact[yystate]; |
| |
| if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) |
| return 0; |
| else |
| { |
| int yytype = YYTRANSLATE (yychar); |
| YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); |
| YYSIZE_T yysize = yysize0; |
| YYSIZE_T yysize1; |
| int yysize_overflow = 0; |
| enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; |
| char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; |
| int yyx; |
| |
| # if 0 |
| /* This is so xgettext sees the translatable formats that are |
| constructed on the fly. */ |
| YY_("syntax error, unexpected %s"); |
| YY_("syntax error, unexpected %s, expecting %s"); |
| YY_("syntax error, unexpected %s, expecting %s or %s"); |
| YY_("syntax error, unexpected %s, expecting %s or %s or %s"); |
| YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); |
| # endif |
| char *yyfmt; |
| char const *yyf; |
| static char const yyunexpected[] = "syntax error, unexpected %s"; |
| static char const yyexpecting[] = ", expecting %s"; |
| static char const yyor[] = " or %s"; |
| char yyformat[sizeof yyunexpected |
| + sizeof yyexpecting - 1 |
| + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) |
| * (sizeof yyor - 1))]; |
| char const *yyprefix = yyexpecting; |
| |
| /* Start YYX at -YYN if negative to avoid negative indexes in |
| YYCHECK. */ |
| int yyxbegin = yyn < 0 ? -yyn : 0; |
| |
| /* Stay within bounds of both yycheck and yytname. */ |
| int yychecklim = YYLAST - yyn + 1; |
| int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; |
| int yycount = 1; |
| |
| yyarg[0] = yytname[yytype]; |
| yyfmt = yystpcpy (yyformat, yyunexpected); |
| |
| for (yyx = yyxbegin; yyx < yyxend; ++yyx) |
| if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) |
| { |
| if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) |
| { |
| yycount = 1; |
| yysize = yysize0; |
| yyformat[sizeof yyunexpected - 1] = '\0'; |
| break; |
| } |
| yyarg[yycount++] = yytname[yyx]; |
| yysize1 = yysize + yytnamerr (0, yytname[yyx]); |
| yysize_overflow |= (yysize1 < yysize); |
| yysize = yysize1; |
| yyfmt = yystpcpy (yyfmt, yyprefix); |
| yyprefix = yyor; |
| } |
| |
| yyf = YY_(yyformat); |
| yysize1 = yysize + yystrlen (yyf); |
| yysize_overflow |= (yysize1 < yysize); |
| yysize = yysize1; |
| |
| if (yysize_overflow) |
| return YYSIZE_MAXIMUM; |
| |
| if (yyresult) |
| { |
| /* Avoid sprintf, as that infringes on the user's name space. |
| Don't have undefined behavior even if the translation |
| produced a string with the wrong number of "%s"s. */ |
| char *yyp = yyresult; |
| int yyi = 0; |
| while ((*yyp = *yyf) != '\0') |
| { |
| if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) |
| { |
| yyp += yytnamerr (yyp, yyarg[yyi++]); |
| yyf += 2; |
| } |
| else |
| { |
| yyp++; |
| yyf++; |
| } |
| } |
| } |
| return yysize; |
| } |
| } |
| #endif /* YYERROR_VERBOSE */ |
| |
| |
| /*-----------------------------------------------. |
| | Release the memory associated to this symbol. | |
| `-----------------------------------------------*/ |
| |
| /*ARGSUSED*/ |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| static void |
| yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, TParseContext* context) |
| #else |
| static void |
| yydestruct (yymsg, yytype, yyvaluep, context) |
| const char *yymsg; |
| int yytype; |
| YYSTYPE *yyvaluep; |
| TParseContext* context; |
| #endif |
| { |
| YYUSE (yyvaluep); |
| YYUSE (context); |
| |
| if (!yymsg) |
| yymsg = "Deleting"; |
| YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); |
| |
| switch (yytype) |
| { |
| |
| default: |
| break; |
| } |
| } |
| |
| /* Prevent warnings from -Wmissing-prototypes. */ |
| #ifdef YYPARSE_PARAM |
| #if defined __STDC__ || defined __cplusplus |
| int yyparse (void *YYPARSE_PARAM); |
| #else |
| int yyparse (); |
| #endif |
| #else /* ! YYPARSE_PARAM */ |
| #if defined __STDC__ || defined __cplusplus |
| int yyparse (TParseContext* context); |
| #else |
| int yyparse (); |
| #endif |
| #endif /* ! YYPARSE_PARAM */ |
| |
| |
| |
| |
| |
| /*-------------------------. |
| | yyparse or yypush_parse. | |
| `-------------------------*/ |
| |
| #ifdef YYPARSE_PARAM |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| int |
| yyparse (void *YYPARSE_PARAM) |
| #else |
| int |
| yyparse (YYPARSE_PARAM) |
| void *YYPARSE_PARAM; |
| #endif |
| #else /* ! YYPARSE_PARAM */ |
| #if (defined __STDC__ || defined __C99__FUNC__ \ |
| || defined __cplusplus || defined _MSC_VER) |
| int |
| yyparse (TParseContext* context) |
| #else |
| int |
| yyparse (context) |
| TParseContext* context; |
| #endif |
| #endif |
| { |
| /* The lookahead symbol. */ |
| int yychar; |
| |
| /* The semantic value of the lookahead symbol. */ |
| YYSTYPE yylval; |
| |
| /* Number of syntax errors so far. */ |
| int yynerrs; |
| |
| int yystate; |
| /* Number of tokens to shift before error messages enabled. */ |
| int yyerrstatus; |
| |
| /* The stacks and their tools: |
| `yyss': related to states. |
| `yyvs': related to semantic values. |
| |
| Refer to the stacks thru separate pointers, to allow yyoverflow |
| to reallocate them elsewhere. */ |
| |
| /* The state stack. */ |
| yytype_int16 yyssa[YYINITDEPTH]; |
| yytype_int16 *yyss; |
| yytype_int16 *yyssp; |
| |
| /* The semantic value stack. */ |
| YYSTYPE yyvsa[YYINITDEPTH]; |
| YYSTYPE *yyvs; |
| YYSTYPE *yyvsp; |
| |
| YYSIZE_T yystacksize; |
| |
| int yyn; |
| int yyresult; |
| /* Lookahead token as an internal (translated) token number. */ |
| int yytoken; |
| /* The variables used to return semantic value and location from the |
| action routines. */ |
| YYSTYPE yyval; |
| |
| #if YYERROR_VERBOSE |
| /* Buffer for error messages, and its allocated size. */ |
| char yymsgbuf[128]; |
| char *yymsg = yymsgbuf; |
| YYSIZE_T yymsg_alloc = sizeof yymsgbuf; |
| #endif |
| |
| #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) |
| |
| /* The number of symbols on the RHS of the reduced rule. |
| Keep to zero when no symbol should be popped. */ |
| int yylen = 0; |
| |
| yytoken = 0; |
| yyss = yyssa; |
| yyvs = yyvsa; |
| yystacksize = YYINITDEPTH; |
| |
| YYDPRINTF ((stderr, "Starting parse\n")); |
| |
| yystate = 0; |
| yyerrstatus = 0; |
| yynerrs = 0; |
| yychar = YYEMPTY; /* Cause a token to be read. */ |
| |
| /* Initialize stack pointers. |
| Waste one element of value and location stack |
| so that they stay on the same level as the state stack. |
| The wasted elements are never initialized. */ |
| yyssp = yyss; |
| yyvsp = yyvs; |
| |
| goto yysetstate; |
| |
| /*------------------------------------------------------------. |
| | yynewstate -- Push a new state, which is found in yystate. | |
| `------------------------------------------------------------*/ |
| yynewstate: |
| /* In all cases, when you get here, the value and location stacks |
| have just been pushed. So pushing a state here evens the stacks. */ |
| yyssp++; |
| |
| yysetstate: |
| *yyssp = yystate; |
| |
| if (yyss + yystacksize - 1 <= yyssp) |
| { |
| /* Get the current used size of the three stacks, in elements. */ |
| YYSIZE_T yysize = yyssp - yyss + 1; |
| |
| #ifdef yyoverflow |
| { |
| /* Give user a chance to reallocate the stack. Use copies of |
| these so that the &'s don't force the real ones into |
| memory. */ |
| YYSTYPE *yyvs1 = yyvs; |
| yytype_int16 *yyss1 = yyss; |
| |
| /* Each stack pointer address is followed by the size of the |
| data in use in that stack, in bytes. This used to be a |
| conditional around just the two extra args, but that might |
| be undefined if yyoverflow is a macro. */ |
| yyoverflow (YY_("memory exhausted"), |
| &yyss1, yysize * sizeof (*yyssp), |
| &yyvs1, yysize * sizeof (*yyvsp), |
| &yystacksize); |
| |
| yyss = yyss1; |
| yyvs = yyvs1; |
| } |
| #else /* no yyoverflow */ |
| # ifndef YYSTACK_RELOCATE |
| goto yyexhaustedlab; |
| # else |
| /* Extend the stack our own way. */ |
| if (YYMAXDEPTH <= yystacksize) |
| goto yyexhaustedlab; |
| yystacksize *= 2; |
| if (YYMAXDEPTH < yystacksize) |
| yystacksize = YYMAXDEPTH; |
| |
| { |
| yytype_int16 *yyss1 = yyss; |
| union yyalloc *yyptr = |
| (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); |
| if (! yyptr) |
| goto yyexhaustedlab; |
| YYSTACK_RELOCATE (yyss_alloc, yyss); |
| YYSTACK_RELOCATE (yyvs_alloc, yyvs); |
| # undef YYSTACK_RELOCATE |
| if (yyss1 != yyssa) |
| YYSTACK_FREE (yyss1); |
| } |
| # endif |
| #endif /* no yyoverflow */ |
| |
| yyssp = yyss + yysize - 1; |
| yyvsp = yyvs + yysize - 1; |
| |
| YYDPRINTF ((stderr, "Stack size increased to %lu\n", |
| (unsigned long int) yystacksize)); |
| |
| if (yyss + yystacksize - 1 <= yyssp) |
| YYABORT; |
| } |
| |
| YYDPRINTF ((stderr, "Entering state %d\n", yystate)); |
| |
| if (yystate == YYFINAL) |
| YYACCEPT; |
| |
| goto yybackup; |
| |
| /*-----------. |
| | yybackup. | |
| `-----------*/ |
| yybackup: |
| |
| /* Do appropriate processing given the current state. Read a |
| lookahead token if we need one and don't already have one. */ |
| |
| /* First try to decide what to do without reference to lookahead token. */ |
| yyn = yypact[yystate]; |
| if (yyn == YYPACT_NINF) |
| goto yydefault; |
| |
| /* Not known => get a lookahead token if don't already have one. */ |
| |
| /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ |
| if (yychar == YYEMPTY) |
| { |
| YYDPRINTF ((stderr, "Reading a token: ")); |
| yychar = YYLEX; |
| } |
| |
| if (yychar <= YYEOF) |
| { |
| yychar = yytoken = YYEOF; |
| YYDPRINTF ((stderr, "Now at end of input.\n")); |
| } |
| else |
| { |
| yytoken = YYTRANSLATE (yychar); |
| YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); |
| } |
| |
| /* If the proper action on seeing token YYTOKEN is to reduce or 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 (yyn == 0 || yyn == YYTABLE_NINF) |
| goto yyerrlab; |
| yyn = -yyn; |
| goto yyreduce; |
| } |
| |
| /* Count tokens shifted since error; after three, turn off error |
| status. */ |
| if (yyerrstatus) |
| yyerrstatus--; |
| |
| /* Shift the lookahead token. */ |
| YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); |
| |
| /* Discard the shifted token. */ |
| yychar = YYEMPTY; |
| |
| yystate = yyn; |
| *++yyvsp = yylval; |
| |
| goto yynewstate; |
| |
| |
| /*-----------------------------------------------------------. |
| | yydefault -- do the default action for the current state. | |
| `-----------------------------------------------------------*/ |
| yydefault: |
| yyn = yydefact[yystate]; |
| if (yyn == 0) |
| goto yyerrlab; |
| goto yyreduce; |
| |
| |
| /*-----------------------------. |
| | yyreduce -- Do a reduction. | |
| `-----------------------------*/ |
| yyreduce: |
| /* yyn is the number of a rule to reduce with. */ |
| yylen = yyr2[yyn]; |
| |
| /* If YYLEN is nonzero, implement the default value of the action: |
| `$$ = $1'. |
| |
| Otherwise, the following line sets YYVAL to garbage. |
| This behavior is undocumented and Bison |
| users should not rely upon it. Assigning to YYVAL |
| unconditionally makes the parser a bit smaller, and it avoids a |
| GCC warning that YYVAL may be used uninitialized. */ |
| yyval = yyvsp[1-yylen]; |
| |
| |
| YY_REDUCE_PRINT (yyn); |
| switch (yyn) |
| { |
| case 2: |
| |
| { |
| // The symbol table search was done in the lexical phase |
| const TSymbol* symbol = (yyvsp[(1) - (1)].lex).symbol; |
| const TVariable* variable; |
| if (symbol == 0) { |
| context->error((yyvsp[(1) - (1)].lex).line, "undeclared identifier", (yyvsp[(1) - (1)].lex).string->c_str()); |
| context->recover(); |
| TType type(EbtFloat, EbpUndefined); |
| TVariable* fakeVariable = new TVariable((yyvsp[(1) - (1)].lex).string, type); |
| context->symbolTable.declare(*fakeVariable); |
| variable = fakeVariable; |
| } else { |
| // This identifier can only be a variable type symbol |
| if (! symbol->isVariable()) { |
| context->error((yyvsp[(1) - (1)].lex).line, "variable expected", (yyvsp[(1) - (1)].lex).string->c_str()); |
| context->recover(); |
| } |
| variable = static_cast<const TVariable*>(symbol); |
| } |
| |
| // don't delete $1.string, it's used by error recovery, and the pool |
| // pop will reclaim the memory |
| |
| if (variable->getType().getQualifier() == EvqConstExpr ) { |
| ConstantUnion* constArray = variable->getConstPointer(); |
| TType t(variable->getType()); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(constArray, t, (yyvsp[(1) - (1)].lex).line); |
| } else |
| (yyval.interm.intermTypedNode) = context->intermediate.addSymbol(variable->getUniqueId(), |
| variable->getName(), |
| variable->getType(), (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 3: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 4: |
| |
| { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setIConst((yyvsp[(1) - (1)].lex).i); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr), (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 5: |
| |
| { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setUConst((yyvsp[(1) - (1)].lex).u); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtUInt, EbpUndefined, EvqConstExpr), (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 6: |
| |
| { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setFConst((yyvsp[(1) - (1)].lex).f); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpUndefined, EvqConstExpr), (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 7: |
| |
| { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst((yyvsp[(1) - (1)].lex).b); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 8: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(2) - (3)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 9: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 10: |
| |
| { |
| if (!(yyvsp[(1) - (4)].interm.intermTypedNode)->isArray() && !(yyvsp[(1) - (4)].interm.intermTypedNode)->isMatrix() && !(yyvsp[(1) - (4)].interm.intermTypedNode)->isVector()) { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->getAsSymbolNode()) |
| context->error((yyvsp[(2) - (4)].lex).line, " left of '[' is not of type array, matrix, or vector ", (yyvsp[(1) - (4)].interm.intermTypedNode)->getAsSymbolNode()->getSymbol().c_str()); |
| else |
| context->error((yyvsp[(2) - (4)].lex).line, " left of '[' is not of type array, matrix, or vector ", "expression"); |
| context->recover(); |
| } |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getQualifier() == EvqConstExpr && (yyvsp[(3) - (4)].interm.intermTypedNode)->getQualifier() == EvqConstExpr) { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isArray()) { // constant folding for arrays |
| (yyval.interm.intermTypedNode) = context->addConstArrayNode((yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0), (yyvsp[(1) - (4)].interm.intermTypedNode), (yyvsp[(2) - (4)].lex).line); |
| } else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isVector()) { // constant folding for vectors |
| TVectorFields fields; |
| fields.num = 1; |
| fields.offsets[0] = (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0); // need to do it this way because v.xy sends fields integer array |
| (yyval.interm.intermTypedNode) = context->addConstVectorNode(fields, (yyvsp[(1) - (4)].interm.intermTypedNode), (yyvsp[(2) - (4)].lex).line); |
| } else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isMatrix()) { // constant folding for matrices |
| (yyval.interm.intermTypedNode) = context->addConstMatrixNode((yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0), (yyvsp[(1) - (4)].interm.intermTypedNode), (yyvsp[(2) - (4)].lex).line); |
| } |
| } else { |
| if ((yyvsp[(3) - (4)].interm.intermTypedNode)->getQualifier() == EvqConstExpr) { |
| if (((yyvsp[(1) - (4)].interm.intermTypedNode)->isVector() || (yyvsp[(1) - (4)].interm.intermTypedNode)->isMatrix()) && (yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getNominalSize() <= (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0) && !(yyvsp[(1) - (4)].interm.intermTypedNode)->isArray() ) { |
| std::stringstream extraInfoStream; |
| extraInfoStream << "field selection out of range '" << (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0) << "'"; |
| std::string extraInfo = extraInfoStream.str(); |
| context->error((yyvsp[(2) - (4)].lex).line, "", "[", extraInfo.c_str()); |
| context->recover(); |
| } else { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isArray()) { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getArraySize() == 0) { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getMaxArraySize() <= (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0)) { |
| if (context->arraySetMaxSize((yyvsp[(1) - (4)].interm.intermTypedNode)->getAsSymbolNode(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getTypePointer(), (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0), true, (yyvsp[(2) - (4)].lex).line)) |
| context->recover(); |
| } else { |
| if (context->arraySetMaxSize((yyvsp[(1) - (4)].interm.intermTypedNode)->getAsSymbolNode(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getTypePointer(), 0, false, (yyvsp[(2) - (4)].lex).line)) |
| context->recover(); |
| } |
| } else if ( (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0) >= (yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getArraySize()) { |
| std::stringstream extraInfoStream; |
| extraInfoStream << "array index out of range '" << (yyvsp[(3) - (4)].interm.intermTypedNode)->getAsConstantUnion()->getIConst(0) << "'"; |
| std::string extraInfo = extraInfoStream.str(); |
| context->error((yyvsp[(2) - (4)].lex).line, "", "[", extraInfo.c_str()); |
| context->recover(); |
| } |
| } |
| (yyval.interm.intermTypedNode) = context->intermediate.addIndex(EOpIndexDirect, (yyvsp[(1) - (4)].interm.intermTypedNode), (yyvsp[(3) - (4)].interm.intermTypedNode), (yyvsp[(2) - (4)].lex).line); |
| } |
| } else { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isArray() && (yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getArraySize() == 0) { |
| context->error((yyvsp[(2) - (4)].lex).line, "", "[", "array must be redeclared with a size before being indexed with a variable"); |
| context->recover(); |
| } |
| |
| (yyval.interm.intermTypedNode) = context->intermediate.addIndex(EOpIndexIndirect, (yyvsp[(1) - (4)].interm.intermTypedNode), (yyvsp[(3) - (4)].interm.intermTypedNode), (yyvsp[(2) - (4)].lex).line); |
| } |
| } |
| if ((yyval.interm.intermTypedNode) == 0) { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setFConst(0.0f); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpHigh, EvqConstExpr), (yyvsp[(2) - (4)].lex).line); |
| } else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isArray()) { |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getStruct()) |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getStruct(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getTypeName())); |
| else |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (4)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getPrecision(), EvqTemporary, (yyvsp[(1) - (4)].interm.intermTypedNode)->getNominalSize(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getSecondarySize())); |
| |
| if ((yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getQualifier() == EvqConstExpr) |
| (yyval.interm.intermTypedNode)->getTypePointer()->setQualifier(EvqConstExpr); |
| } else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isMatrix() && (yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getQualifier() == EvqConstExpr) |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (4)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getPrecision(), EvqConstExpr, (yyvsp[(1) - (4)].interm.intermTypedNode)->getNominalSize())); |
| else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isMatrix()) |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (4)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getPrecision(), EvqTemporary, (yyvsp[(1) - (4)].interm.intermTypedNode)->getNominalSize())); |
| else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isVector() && (yyvsp[(1) - (4)].interm.intermTypedNode)->getType().getQualifier() == EvqConstExpr) |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (4)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getPrecision(), EvqConstExpr)); |
| else if ((yyvsp[(1) - (4)].interm.intermTypedNode)->isVector()) |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (4)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (4)].interm.intermTypedNode)->getPrecision(), EvqTemporary)); |
| else |
| (yyval.interm.intermTypedNode)->setType((yyvsp[(1) - (4)].interm.intermTypedNode)->getType()); |
| } |
| break; |
| |
| case 11: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 12: |
| |
| { |
| if ((yyvsp[(1) - (3)].interm.intermTypedNode)->isArray()) { |
| context->error((yyvsp[(3) - (3)].lex).line, "cannot apply dot operator to an array", "."); |
| context->recover(); |
| } |
| |
| if ((yyvsp[(1) - (3)].interm.intermTypedNode)->isVector()) { |
| TVectorFields fields; |
| if (! context->parseVectorFields(*(yyvsp[(3) - (3)].lex).string, (yyvsp[(1) - (3)].interm.intermTypedNode)->getNominalSize(), fields, (yyvsp[(3) - (3)].lex).line)) { |
| fields.num = 1; |
| fields.offsets[0] = 0; |
| context->recover(); |
| } |
| |
| if ((yyvsp[(1) - (3)].interm.intermTypedNode)->getType().getQualifier() == EvqConstExpr) { // constant folding for vector fields |
| (yyval.interm.intermTypedNode) = context->addConstVectorNode(fields, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| else |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (3)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (3)].interm.intermTypedNode)->getPrecision(), EvqConstExpr, (int) (*(yyvsp[(3) - (3)].lex).string).size())); |
| } else { |
| TString vectorString = *(yyvsp[(3) - (3)].lex).string; |
| TIntermTyped* index = context->intermediate.addSwizzle(fields, (yyvsp[(3) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addIndex(EOpVectorSwizzle, (yyvsp[(1) - (3)].interm.intermTypedNode), index, (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (3)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (3)].interm.intermTypedNode)->getPrecision(), EvqTemporary, (int) vectorString.size())); |
| } |
| } else if ((yyvsp[(1) - (3)].interm.intermTypedNode)->isMatrix()) { |
| TMatrixFields fields; |
| if (! context->parseMatrixFields(*(yyvsp[(3) - (3)].lex).string, (yyvsp[(1) - (3)].interm.intermTypedNode)->getNominalSize(), fields, (yyvsp[(3) - (3)].lex).line)) { |
| fields.wholeRow = false; |
| fields.wholeCol = false; |
| fields.row = 0; |
| fields.col = 0; |
| context->recover(); |
| } |
| |
| if (fields.wholeRow || fields.wholeCol) { |
| context->error((yyvsp[(2) - (3)].lex).line, " non-scalar fields not implemented yet", "."); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setIConst(0); |
| TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr), (yyvsp[(3) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addIndex(EOpIndexDirect, (yyvsp[(1) - (3)].interm.intermTypedNode), index, (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (3)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (3)].interm.intermTypedNode)->getPrecision(),EvqTemporary, (yyvsp[(1) - (3)].interm.intermTypedNode)->getNominalSize())); |
| } else { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setIConst(fields.col * (yyvsp[(1) - (3)].interm.intermTypedNode)->getNominalSize() + fields.row); |
| TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr), (yyvsp[(3) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addIndex(EOpIndexDirect, (yyvsp[(1) - (3)].interm.intermTypedNode), index, (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode)->setType(TType((yyvsp[(1) - (3)].interm.intermTypedNode)->getBasicType(), (yyvsp[(1) - (3)].interm.intermTypedNode)->getPrecision())); |
| } |
| } else if ((yyvsp[(1) - (3)].interm.intermTypedNode)->getBasicType() == EbtStruct) { |
| bool fieldFound = false; |
| const TTypeList* fields = (yyvsp[(1) - (3)].interm.intermTypedNode)->getType().getStruct(); |
| if (fields == 0) { |
| context->error((yyvsp[(2) - (3)].lex).line, "structure has no fields", "Internal Error"); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } else { |
| unsigned int i; |
| for (i = 0; i < fields->size(); ++i) { |
| if ((*fields)[i].type->getFieldName() == *(yyvsp[(3) - (3)].lex).string) { |
| fieldFound = true; |
| break; |
| } |
| } |
| if (fieldFound) { |
| if ((yyvsp[(1) - (3)].interm.intermTypedNode)->getType().getQualifier() == EvqConstExpr) { |
| (yyval.interm.intermTypedNode) = context->addConstStruct(*(yyvsp[(3) - (3)].lex).string, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| else { |
| (yyval.interm.intermTypedNode)->setType(*(*fields)[i].type); |
| // change the qualifier of the return type, not of the structure field |
| // as the structure definition is shared between various structures. |
| (yyval.interm.intermTypedNode)->getTypePointer()->setQualifier(EvqConstExpr); |
| } |
| } else { |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setIConst(i); |
| TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, *(*fields)[i].type, (yyvsp[(3) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addIndex(EOpIndexDirectStruct, (yyvsp[(1) - (3)].interm.intermTypedNode), index, (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode)->setType(*(*fields)[i].type); |
| } |
| } else { |
| context->error((yyvsp[(2) - (3)].lex).line, " no such field in structure", (yyvsp[(3) - (3)].lex).string->c_str()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| } else { |
| context->error((yyvsp[(2) - (3)].lex).line, " field selection requires structure, vector, or matrix on left hand side", (yyvsp[(3) - (3)].lex).string->c_str()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| // don't delete $3.string, it's from the pool |
| } |
| break; |
| |
| case 13: |
| |
| { |
| if (context->lValueErrorCheck((yyvsp[(2) - (2)].lex).line, "++", (yyvsp[(1) - (2)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = context->intermediate.addUnaryMath(EOpPostIncrement, (yyvsp[(1) - (2)].interm.intermTypedNode), (yyvsp[(2) - (2)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->unaryOpError((yyvsp[(2) - (2)].lex).line, "++", (yyvsp[(1) - (2)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (2)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 14: |
| |
| { |
| if (context->lValueErrorCheck((yyvsp[(2) - (2)].lex).line, "--", (yyvsp[(1) - (2)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = context->intermediate.addUnaryMath(EOpPostDecrement, (yyvsp[(1) - (2)].interm.intermTypedNode), (yyvsp[(2) - (2)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->unaryOpError((yyvsp[(2) - (2)].lex).line, "--", (yyvsp[(1) - (2)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (2)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 15: |
| |
| { |
| if (context->integerErrorCheck((yyvsp[(1) - (1)].interm.intermTypedNode), "[]")) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 16: |
| |
| { |
| TFunction* fnCall = (yyvsp[(1) - (1)].interm).function; |
| TOperator op = fnCall->getBuiltInOp(); |
| |
| if (op != EOpNull) |
| { |
| // |
| // Then this should be a constructor. |
| // Don't go through the symbol table for constructors. |
| // Their parameters will be verified algorithmically. |
| // |
| TType type(EbtVoid, EbpUndefined); // use this to get the type back |
| if (context->constructorErrorCheck((yyvsp[(1) - (1)].interm).line, (yyvsp[(1) - (1)].interm).intermNode, *fnCall, op, &type)) { |
| (yyval.interm.intermTypedNode) = 0; |
| } else { |
| // |
| // It's a constructor, of type 'type'. |
| // |
| (yyval.interm.intermTypedNode) = context->addConstructor((yyvsp[(1) - (1)].interm).intermNode, &type, op, fnCall, (yyvsp[(1) - (1)].interm).line); |
| } |
| |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->recover(); |
| (yyval.interm.intermTypedNode) = context->intermediate.setAggregateOperator(0, op, (yyvsp[(1) - (1)].interm).line); |
| } |
| (yyval.interm.intermTypedNode)->setType(type); |
| } else { |
| // |
| // Not a constructor. Find it in the symbol table. |
| // |
| const TFunction* fnCandidate; |
| bool builtIn; |
| fnCandidate = context->findFunction((yyvsp[(1) - (1)].interm).line, fnCall, &builtIn); |
| if (fnCandidate) { |
| // |
| // A declared function. |
| // |
| if (builtIn && !fnCandidate->getExtension().empty() && |
| context->extensionErrorCheck((yyvsp[(1) - (1)].interm).line, fnCandidate->getExtension())) { |
| context->recover(); |
| } |
| op = fnCandidate->getBuiltInOp(); |
| if (builtIn && op != EOpNull) { |
| // |
| // A function call mapped to a built-in operation. |
| // |
| if (fnCandidate->getParamCount() == 1) { |
| // |
| // Treat it like a built-in unary operator. |
| // |
| (yyval.interm.intermTypedNode) = context->intermediate.addUnaryMath(op, (yyvsp[(1) - (1)].interm).intermNode, 0); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| std::stringstream extraInfoStream; |
| extraInfoStream << "built in unary operator function. Type: " << static_cast<TIntermTyped*>((yyvsp[(1) - (1)].interm).intermNode)->getCompleteString(); |
| std::string extraInfo = extraInfoStream.str(); |
| context->error((yyvsp[(1) - (1)].interm).intermNode->getLine(), " wrong operand type", "Internal Error", extraInfo.c_str()); |
| YYERROR; |
| } |
| } else { |
| (yyval.interm.intermTypedNode) = context->intermediate.setAggregateOperator((yyvsp[(1) - (1)].interm).intermAggregate, op, (yyvsp[(1) - (1)].interm).line); |
| } |
| } else { |
| // This is a real function call |
| |
| (yyval.interm.intermTypedNode) = context->intermediate.setAggregateOperator((yyvsp[(1) - (1)].interm).intermAggregate, EOpFunctionCall, (yyvsp[(1) - (1)].interm).line); |
| (yyval.interm.intermTypedNode)->setType(fnCandidate->getReturnType()); |
| |
| // this is how we know whether the given function is a builtIn function or a user defined function |
| // if builtIn == false, it's a userDefined -> could be an overloaded builtIn function also |
| // if builtIn == true, it's definitely a builtIn function with EOpNull |
| if (!builtIn) |
| (yyval.interm.intermTypedNode)->getAsAggregate()->setUserDefined(); |
| (yyval.interm.intermTypedNode)->getAsAggregate()->setName(fnCandidate->getMangledName()); |
| |
| TQualifier qual; |
| for (int i = 0; i < fnCandidate->getParamCount(); ++i) { |
| qual = fnCandidate->getParam(i).type->getQualifier(); |
| if (qual == EvqOut || qual == EvqInOut) { |
| if (context->lValueErrorCheck((yyval.interm.intermTypedNode)->getLine(), "assign", (yyval.interm.intermTypedNode)->getAsAggregate()->getSequence()[i]->getAsTyped())) { |
| context->error((yyvsp[(1) - (1)].interm).intermNode->getLine(), "Constant value cannot be passed for 'out' or 'inout' parameters.", "Error"); |
| context->recover(); |
| } |
| } |
| } |
| } |
| (yyval.interm.intermTypedNode)->setType(fnCandidate->getReturnType()); |
| } else { |
| // error message was put out by PaFindFunction() |
| // Put on a dummy node for error recovery |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setFConst(0.0f); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpUndefined, EvqConstExpr), (yyvsp[(1) - (1)].interm).line); |
| context->recover(); |
| } |
| } |
| delete fnCall; |
| } |
| break; |
| |
| case 17: |
| |
| { |
| (yyval.interm) = (yyvsp[(1) - (1)].interm); |
| } |
| break; |
| |
| case 18: |
| |
| { |
| context->error((yyvsp[(3) - (3)].interm).line, "methods are not supported", ""); |
| context->recover(); |
| (yyval.interm) = (yyvsp[(3) - (3)].interm); |
| } |
| break; |
| |
| case 19: |
| |
| { |
| (yyval.interm) = (yyvsp[(1) - (2)].interm); |
| (yyval.interm).line = (yyvsp[(2) - (2)].lex).line; |
| } |
| break; |
| |
| case 20: |
| |
| { |
| (yyval.interm) = (yyvsp[(1) - (2)].interm); |
| (yyval.interm).line = (yyvsp[(2) - (2)].lex).line; |
| } |
| break; |
| |
| case 21: |
| |
| { |
| (yyval.interm).function = (yyvsp[(1) - (2)].interm.function); |
| (yyval.interm).intermNode = 0; |
| } |
| break; |
| |
| case 22: |
| |
| { |
| (yyval.interm).function = (yyvsp[(1) - (1)].interm.function); |
| (yyval.interm).intermNode = 0; |
| } |
| break; |
| |
| case 23: |
| |
| { |
| TParameter param = { 0, new TType((yyvsp[(2) - (2)].interm.intermTypedNode)->getType()) }; |
| (yyvsp[(1) - (2)].interm.function)->addParameter(param); |
| (yyval.interm).function = (yyvsp[(1) - (2)].interm.function); |
| (yyval.interm).intermNode = (yyvsp[(2) - (2)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 24: |
| |
| { |
| TParameter param = { 0, new TType((yyvsp[(3) - (3)].interm.intermTypedNode)->getType()) }; |
| (yyvsp[(1) - (3)].interm).function->addParameter(param); |
| (yyval.interm).function = (yyvsp[(1) - (3)].interm).function; |
| (yyval.interm).intermNode = context->intermediate.growAggregate((yyvsp[(1) - (3)].interm).intermNode, (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| } |
| break; |
| |
| case 25: |
| |
| { |
| (yyval.interm.function) = (yyvsp[(1) - (2)].interm.function); |
| } |
| break; |
| |
| case 26: |
| |
| { |
| // |
| // Constructor |
| // |
| TOperator op = EOpNull; |
| if ((yyvsp[(1) - (1)].interm.type).userDef) { |
| op = EOpConstructStruct; |
| } else { |
| switch ((yyvsp[(1) - (1)].interm.type).type) { |
| case EbtFloat: |
| switch((yyvsp[(1) - (1)].interm.type).primarySize) { |
| case 1: |
| op = EOpConstructFloat; break; |
| case 2: |
| switch((yyvsp[(1) - (1)].interm.type).secondarySize) { |
| case 1: op = EOpConstructVec2; break; |
| case 2: op = EOpConstructMat2; break; |
| case 3: op = EOpConstructMat2x3; break; |
| case 4: op = EOpConstructMat2x4; break; |
| } |
| break; |
| case 3: |
| switch((yyvsp[(1) - (1)].interm.type).secondarySize) { |
| case 1: op = EOpConstructVec3; break; |
| case 2: op = EOpConstructMat3x2; break; |
| case 3: op = EOpConstructMat3; break; |
| case 4: op = EOpConstructMat3x4; break; |
| } |
| break; |
| case 4: |
| switch((yyvsp[(1) - (1)].interm.type).secondarySize) { |
| case 1: op = EOpConstructVec4; break; |
| case 2: op = EOpConstructMat4x2; break; |
| case 3: op = EOpConstructMat4x3; break; |
| case 4: op = EOpConstructMat4; break; |
| } |
| break; |
| } |
| break; |
| case EbtInt: |
| switch((yyvsp[(1) - (1)].interm.type).primarySize) { |
| case 1: op = EOpConstructInt; break; |
| case 2: FRAG_VERT_ONLY("ivec2", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructIVec2; break; |
| case 3: FRAG_VERT_ONLY("ivec3", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructIVec3; break; |
| case 4: FRAG_VERT_ONLY("ivec4", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructIVec4; break; |
| } |
| break; |
| case EbtUInt: |
| switch((yyvsp[(1) - (1)].interm.type).primarySize) { |
| case 1: op = EOpConstructUInt; break; |
| case 2: FRAG_VERT_ONLY("uvec2", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructUVec2; break; |
| case 3: FRAG_VERT_ONLY("uvec3", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructUVec3; break; |
| case 4: FRAG_VERT_ONLY("uvec4", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructUVec4; break; |
| } |
| break; |
| case EbtBool: |
| switch((yyvsp[(1) - (1)].interm.type).primarySize) { |
| case 1: op = EOpConstructBool; break; |
| case 2: FRAG_VERT_ONLY("bvec2", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructBVec2; break; |
| case 3: FRAG_VERT_ONLY("bvec3", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructBVec3; break; |
| case 4: FRAG_VERT_ONLY("bvec4", (yyvsp[(1) - (1)].interm.type).line); op = EOpConstructBVec4; break; |
| } |
| break; |
| default: break; |
| } |
| if (op == EOpNull) { |
| context->error((yyvsp[(1) - (1)].interm.type).line, "cannot construct this type", getBasicString((yyvsp[(1) - (1)].interm.type).type)); |
| context->recover(); |
| (yyvsp[(1) - (1)].interm.type).type = EbtFloat; |
| op = EOpConstructFloat; |
| } |
| } |
| TString tempString; |
| TType type((yyvsp[(1) - (1)].interm.type)); |
| TFunction *function = new TFunction(&tempString, type, op); |
| (yyval.interm.function) = function; |
| } |
| break; |
| |
| case 27: |
| |
| { |
| if (context->reservedErrorCheck((yyvsp[(1) - (1)].lex).line, *(yyvsp[(1) - (1)].lex).string)) |
| context->recover(); |
| TType type(EbtVoid, EbpUndefined); |
| TFunction *function = new TFunction((yyvsp[(1) - (1)].lex).string, type); |
| (yyval.interm.function) = function; |
| } |
| break; |
| |
| case 28: |
| |
| { |
| if (context->reservedErrorCheck((yyvsp[(1) - (1)].lex).line, *(yyvsp[(1) - (1)].lex).string)) |
| context->recover(); |
| TType type(EbtVoid, EbpUndefined); |
| TFunction *function = new TFunction((yyvsp[(1) - (1)].lex).string, type); |
| (yyval.interm.function) = function; |
| } |
| break; |
| |
| case 29: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 30: |
| |
| { |
| if (context->lValueErrorCheck((yyvsp[(1) - (2)].lex).line, "++", (yyvsp[(2) - (2)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = context->intermediate.addUnaryMath(EOpPreIncrement, (yyvsp[(2) - (2)].interm.intermTypedNode), (yyvsp[(1) - (2)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->unaryOpError((yyvsp[(1) - (2)].lex).line, "++", (yyvsp[(2) - (2)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(2) - (2)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 31: |
| |
| { |
| if (context->lValueErrorCheck((yyvsp[(1) - (2)].lex).line, "--", (yyvsp[(2) - (2)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = context->intermediate.addUnaryMath(EOpPreDecrement, (yyvsp[(2) - (2)].interm.intermTypedNode), (yyvsp[(1) - (2)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->unaryOpError((yyvsp[(1) - (2)].lex).line, "--", (yyvsp[(2) - (2)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(2) - (2)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 32: |
| |
| { |
| if ((yyvsp[(1) - (2)].interm).op != EOpNull) { |
| (yyval.interm.intermTypedNode) = context->intermediate.addUnaryMath((yyvsp[(1) - (2)].interm).op, (yyvsp[(2) - (2)].interm.intermTypedNode), (yyvsp[(1) - (2)].interm).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| const char* errorOp = ""; |
| switch((yyvsp[(1) - (2)].interm).op) { |
| case EOpNegative: errorOp = "-"; break; |
| case EOpLogicalNot: errorOp = "!"; break; |
| default: break; |
| } |
| context->unaryOpError((yyvsp[(1) - (2)].interm).line, errorOp, (yyvsp[(2) - (2)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(2) - (2)].interm.intermTypedNode); |
| } |
| } else |
| (yyval.interm.intermTypedNode) = (yyvsp[(2) - (2)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 33: |
| |
| { (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpNull; } |
| break; |
| |
| case 34: |
| |
| { (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpNegative; } |
| break; |
| |
| case 35: |
| |
| { (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpLogicalNot; } |
| break; |
| |
| case 36: |
| |
| { |
| ES3_ONLY("~", (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpBitwiseNot; |
| } |
| break; |
| |
| case 37: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 38: |
| |
| { |
| FRAG_VERT_ONLY("*", (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpMul, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "*", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 39: |
| |
| { |
| FRAG_VERT_ONLY("/", (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpDiv, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "/", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 40: |
| |
| { |
| FRAG_VERT_ONLY("%", (yyvsp[(2) - (3)].lex).line); |
| ES3_ONLY("%", (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpIMod, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "%", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 41: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 42: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpAdd, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "+", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 43: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpSub, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "-", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 44: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 45: |
| |
| { |
| ES3_ONLY("<<", (yyvsp[(2) - (3)].lex).line); |
| context->intermediate.addBinaryMath(EOpBitShiftLeft, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "<<", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 46: |
| |
| { |
| ES3_ONLY(">>", (yyvsp[(2) - (3)].lex).line); |
| context->intermediate.addBinaryMath(EOpBitShiftRight, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, ">>", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 47: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 48: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpLessThan, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "<", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 49: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpGreaterThan, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, ">", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 50: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpLessThanEqual, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "<=", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 51: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpGreaterThanEqual, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, ">=", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 52: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 53: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpEqual, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "==", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 54: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpNotEqual, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "!=", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 55: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 56: |
| |
| { |
| ES3_ONLY("&", (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpBitwiseAnd, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "&", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 57: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 58: |
| |
| { |
| ES3_ONLY("^", (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpBitwiseXor, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "^", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 59: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 60: |
| |
| { |
| ES3_ONLY("|", (yyvsp[(2) - (3)].lex).line); |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpBitwiseOr, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "|", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 61: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 62: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpLogicalAnd, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "&&", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 63: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 64: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpLogicalXor, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "^^", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 65: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 66: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addBinaryMath(EOpLogicalOr, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, "||", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| ConstantUnion *unionArray = new ConstantUnion[1]; |
| unionArray->setBConst(false); |
| (yyval.interm.intermTypedNode) = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), (yyvsp[(2) - (3)].lex).line); |
| } |
| } |
| break; |
| |
| case 67: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 68: |
| |
| { |
| if (context->boolErrorCheck((yyvsp[(2) - (5)].lex).line, (yyvsp[(1) - (5)].interm.intermTypedNode))) |
| context->recover(); |
| |
| (yyval.interm.intermTypedNode) = context->intermediate.addSelection((yyvsp[(1) - (5)].interm.intermTypedNode), (yyvsp[(3) - (5)].interm.intermTypedNode), (yyvsp[(5) - (5)].interm.intermTypedNode), (yyvsp[(2) - (5)].lex).line); |
| if ((yyvsp[(3) - (5)].interm.intermTypedNode)->getType() != (yyvsp[(5) - (5)].interm.intermTypedNode)->getType()) |
| (yyval.interm.intermTypedNode) = 0; |
| |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (5)].lex).line, ":", (yyvsp[(3) - (5)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(5) - (5)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(5) - (5)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 69: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 70: |
| |
| { |
| if (context->lValueErrorCheck((yyvsp[(2) - (3)].interm).line, "assign", (yyvsp[(1) - (3)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = context->intermediate.addAssign((yyvsp[(2) - (3)].interm).op, (yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].interm).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->assignError((yyvsp[(2) - (3)].interm).line, "assign", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 71: |
| |
| { (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpAssign; } |
| break; |
| |
| case 72: |
| |
| { FRAG_VERT_ONLY("*=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpMulAssign; } |
| break; |
| |
| case 73: |
| |
| { FRAG_VERT_ONLY("/=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpDivAssign; } |
| break; |
| |
| case 74: |
| |
| { ES3_ONLY("%=", (yyvsp[(1) - (1)].lex).line); |
| FRAG_VERT_ONLY("%=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpIModAssign; } |
| break; |
| |
| case 75: |
| |
| { (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpAddAssign; } |
| break; |
| |
| case 76: |
| |
| { (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpSubAssign; } |
| break; |
| |
| case 77: |
| |
| { ES3_ONLY("<<=", (yyvsp[(1) - (1)].lex).line); |
| FRAG_VERT_ONLY("<<=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpBitShiftLeftAssign; } |
| break; |
| |
| case 78: |
| |
| { ES3_ONLY(">>=", (yyvsp[(1) - (1)].lex).line); |
| FRAG_VERT_ONLY(">>=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpBitShiftRightAssign; } |
| break; |
| |
| case 79: |
| |
| { ES3_ONLY("&=", (yyvsp[(1) - (1)].lex).line); |
| FRAG_VERT_ONLY("&=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpBitwiseAndAssign; } |
| break; |
| |
| case 80: |
| |
| { ES3_ONLY("^=", (yyvsp[(1) - (1)].lex).line); |
| FRAG_VERT_ONLY("^=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpBitwiseXorAssign; } |
| break; |
| |
| case 81: |
| |
| { ES3_ONLY("|=", (yyvsp[(1) - (1)].lex).line); |
| FRAG_VERT_ONLY("|=", (yyvsp[(1) - (1)].lex).line); (yyval.interm).line = (yyvsp[(1) - (1)].lex).line; (yyval.interm).op = EOpBitwiseOrAssign; } |
| break; |
| |
| case 82: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 83: |
| |
| { |
| (yyval.interm.intermTypedNode) = context->intermediate.addComma((yyvsp[(1) - (3)].interm.intermTypedNode), (yyvsp[(3) - (3)].interm.intermTypedNode), (yyvsp[(2) - (3)].lex).line); |
| if ((yyval.interm.intermTypedNode) == 0) { |
| context->binaryOpError((yyvsp[(2) - (3)].lex).line, ",", (yyvsp[(1) - (3)].interm.intermTypedNode)->getCompleteString(), (yyvsp[(3) - (3)].interm.intermTypedNode)->getCompleteString()); |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(3) - (3)].interm.intermTypedNode); |
| } |
| } |
| break; |
| |
| case 84: |
| |
| { |
| if (context->constErrorCheck((yyvsp[(1) - (1)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 85: |
| |
| { |
| TFunction &function = *((yyvsp[(1) - (2)].interm).function); |
| |
| TIntermAggregate *prototype = new TIntermAggregate; |
| prototype->setType(function.getReturnType()); |
| prototype->setName(function.getName()); |
| |
| for (int i = 0; i < function.getParamCount(); i++) |
| { |
| const TParameter ¶m = function.getParam(i); |
| if (param.name != 0) |
| { |
| TVariable variable(param.name, *param.type); |
| |
| prototype = context->intermediate.growAggregate(prototype, context->intermediate.addSymbol(variable.getUniqueId(), variable.getName(), variable.getType(), (yyvsp[(1) - (2)].interm).line), (yyvsp[(1) - (2)].interm).line); |
| } |
| else |
| { |
| prototype = context->intermediate.growAggregate(prototype, context->intermediate.addSymbol(0, "", *param.type, (yyvsp[(1) - (2)].interm).line), (yyvsp[(1) - (2)].interm).line); |
| } |
| } |
| |
| prototype->setOp(EOpPrototype); |
| (yyval.interm.intermNode) = prototype; |
| |
| context->symbolTable.pop(); |
| } |
| break; |
| |
| case 86: |
| |
| { |
| if ((yyvsp[(1) - (2)].interm).intermAggregate) |
| (yyvsp[(1) - (2)].interm).intermAggregate->setOp(EOpDeclaration); |
| (yyval.interm.intermNode) = (yyvsp[(1) - (2)].interm).intermAggregate; |
| } |
| break; |
| |
| case 87: |
| |
| { |
| if (!context->symbolTable.setDefaultPrecision( (yyvsp[(3) - (4)].interm.type), (yyvsp[(2) - (4)].interm.precision) )) { |
| context->error((yyvsp[(1) - (4)].lex).line, "illegal type argument for default precision qualifier", getBasicString((yyvsp[(3) - (4)].interm.type).type)); |
| context->recover(); |
| } |
| (yyval.interm.intermNode) = 0; |
| } |
| break; |
| |
| case 88: |
| |
| { |
| // |
| // Multiple declarations of the same function are allowed. |
| // |
| // If this is a definition, the definition production code will check for redefinitions |
| // (we don't know at this point if it's a definition or not). |
| // |
| // Redeclarations are allowed. But, return types and parameter qualifiers must match. |
| // |
| TFunction* prevDec = static_cast<TFunction*>(context->symbolTable.find((yyvsp[(1) - (2)].interm.function)->getMangledName(), context->shaderVersion)); |
| if (prevDec) { |
| if (prevDec->getReturnType() != (yyvsp[(1) - (2)].interm.function)->getReturnType()) { |
| context->error((yyvsp[(2) - (2)].lex).line, "overloaded functions must have the same return type", (yyvsp[(1) - (2)].interm.function)->getReturnType().getBasicString()); |
| context->recover(); |
| } |
| for (int i = 0; i < prevDec->getParamCount(); ++i) { |
| if (prevDec->getParam(i).type->getQualifier() != (yyvsp[(1) - (2)].interm.function)->getParam(i).type->getQualifier()) { |
| context->error((yyvsp[(2) - (2)].lex).line, "overloaded functions must have the same parameter qualifiers", (yyvsp[(1) - (2)].interm.function)->getParam(i).type->getQualifierString()); |
| context->recover(); |
| } |
| } |
| } |
| |
| // |
| // If this is a redeclaration, it could also be a definition, |
| // in which case, we want to use the variable names from this one, and not the one that's |
| // being redeclared. So, pass back up this declaration, not the one in the symbol table. |
| // |
| (yyval.interm).function = (yyvsp[(1) - (2)].interm.function); |
| (yyval.interm).line = (yyvsp[(2) - (2)].lex).line; |
| |
| // We're at the inner scope level of the function's arguments and body statement. |
| // Add the function prototype to the surrounding scope instead. |
| context->symbolTable.getOuterLevel()->insert(*(yyval.interm).function); |
| } |
| break; |
| |
| case 89: |
| |
| { |
| (yyval.interm.function) = (yyvsp[(1) - (1)].interm.function); |
| } |
| break; |
| |
| case 90: |
| |
| { |
| (yyval.interm.function) = (yyvsp[(1) - (1)].interm.function); |
| } |
| break; |
| |
| case 91: |
| |
| { |
| // Add the parameter |
| (yyval.interm.function) = (yyvsp[(1) - (2)].interm.function); |
| if ((yyvsp[(2) - (2)].interm).param.type->getBasicType() != EbtVoid) |
| (yyvsp[(1) - (2)].interm.function)->addParameter((yyvsp[(2) - (2)].interm).param); |
| else |
| delete (yyvsp[(2) - (2)].interm).param.type; |
| } |
| break; |
| |
| case 92: |
| |
| { |
| // |
| // Only first parameter of one-parameter functions can be void |
| // The check for named parameters not being void is done in parameter_declarator |
| // |
| if ((yyvsp[(3) - (3)].interm).param.type->getBasicType() == EbtVoid) { |
| // |
| // This parameter > first is void |
| // |
| context->error((yyvsp[(2) - (3)].lex).line, "cannot be an argument type except for '(void)'", "void"); |
| context->recover(); |
| delete (yyvsp[(3) - (3)].interm).param.type; |
| } else { |
| // Add the parameter |
| (yyval.interm.function) = (yyvsp[(1) - (3)].interm.function); |
| (yyvsp[(1) - (3)].interm.function)->addParameter((yyvsp[(3) - (3)].interm).param); |
| } |
| } |
| break; |
| |
| case 93: |
| |
| { |
| if ((yyvsp[(1) - (3)].interm.type).qualifier != EvqGlobal && (yyvsp[(1) - (3)].interm.type).qualifier != EvqTemporary) { |
| context->error((yyvsp[(2) - (3)].lex).line, "no qualifiers allowed for function return", getQualifierString((yyvsp[(1) - (3)].interm.type).qualifier)); |
| context->recover(); |
| } |
| // make sure a sampler is not involved as well... |
| if (context->structQualifierErrorCheck((yyvsp[(2) - (3)].lex).line, (yyvsp[(1) - (3)].interm.type))) |
| context->recover(); |
| |
| // Add the function as a prototype after parsing it (we do not support recursion) |
| TFunction *function; |
| TType type((yyvsp[(1) - (3)].interm.type)); |
| function = new TFunction((yyvsp[(2) - (3)].lex).string, type); |
| (yyval.interm.function) = function; |
| |
| context->symbolTable.push(); |
| } |
| break; |
| |
| case 94: |
| |
| { |
| if ((yyvsp[(1) - (2)].interm.type).type == EbtVoid) { |
| context->error((yyvsp[(2) - (2)].lex).line, "illegal use of type 'void'", (yyvsp[(2) - (2)].lex).string->c_str()); |
| context->recover(); |
| } |
| if (context->reservedErrorCheck((yyvsp[(2) - (2)].lex).line, *(yyvsp[(2) - (2)].lex).string)) |
| context->recover(); |
| TParameter param = {(yyvsp[(2) - (2)].lex).string, new TType((yyvsp[(1) - (2)].interm.type))}; |
| (yyval.interm).line = (yyvsp[(2) - (2)].lex).line; |
| (yyval.interm).param = param; |
| } |
| break; |
| |
| case 95: |
| |
| { |
| // Check that we can make an array out of this type |
| if (context->arrayTypeErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(1) - (5)].interm.type))) |
| context->recover(); |
| |
| if (context->reservedErrorCheck((yyvsp[(2) - (5)].lex).line, *(yyvsp[(2) - (5)].lex).string)) |
| context->recover(); |
| |
| int size; |
| if (context->arraySizeErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(4) - (5)].interm.intermTypedNode), size)) |
| context->recover(); |
| (yyvsp[(1) - (5)].interm.type).setArray(true, size); |
| |
| TType* type = new TType((yyvsp[(1) - (5)].interm.type)); |
| TParameter param = { (yyvsp[(2) - (5)].lex).string, type }; |
| (yyval.interm).line = (yyvsp[(2) - (5)].lex).line; |
| (yyval.interm).param = param; |
| } |
| break; |
| |
| case 96: |
| |
| { |
| (yyval.interm) = (yyvsp[(3) - (3)].interm); |
| if (context->paramErrorCheck((yyvsp[(3) - (3)].interm).line, (yyvsp[(1) - (3)].interm.qualifier), (yyvsp[(2) - (3)].interm.qualifier), (yyval.interm).param.type)) |
| context->recover(); |
| } |
| break; |
| |
| case 97: |
| |
| { |
| (yyval.interm) = (yyvsp[(2) - (2)].interm); |
| if (context->parameterSamplerErrorCheck((yyvsp[(2) - (2)].interm).line, (yyvsp[(1) - (2)].interm.qualifier), *(yyvsp[(2) - (2)].interm).param.type)) |
| context->recover(); |
| if (context->paramErrorCheck((yyvsp[(2) - (2)].interm).line, EvqTemporary, (yyvsp[(1) - (2)].interm.qualifier), (yyval.interm).param.type)) |
| context->recover(); |
| } |
| break; |
| |
| case 98: |
| |
| { |
| (yyval.interm) = (yyvsp[(3) - (3)].interm); |
| if (context->paramErrorCheck((yyvsp[(3) - (3)].interm).line, (yyvsp[(1) - (3)].interm.qualifier), (yyvsp[(2) - (3)].interm.qualifier), (yyval.interm).param.type)) |
| context->recover(); |
| } |
| break; |
| |
| case 99: |
| |
| { |
| (yyval.interm) = (yyvsp[(2) - (2)].interm); |
| if (context->parameterSamplerErrorCheck((yyvsp[(2) - (2)].interm).line, (yyvsp[(1) - (2)].interm.qualifier), *(yyvsp[(2) - (2)].interm).param.type)) |
| context->recover(); |
| if (context->paramErrorCheck((yyvsp[(2) - (2)].interm).line, EvqTemporary, (yyvsp[(1) - (2)].interm.qualifier), (yyval.interm).param.type)) |
| context->recover(); |
| } |
| break; |
| |
| case 100: |
| |
| { |
| (yyval.interm.qualifier) = EvqIn; |
| } |
| break; |
| |
| case 101: |
| |
| { |
| (yyval.interm.qualifier) = EvqIn; |
| } |
| break; |
| |
| case 102: |
| |
| { |
| (yyval.interm.qualifier) = EvqOut; |
| } |
| break; |
| |
| case 103: |
| |
| { |
| (yyval.interm.qualifier) = EvqInOut; |
| } |
| break; |
| |
| case 104: |
| |
| { |
| TParameter param = { 0, new TType((yyvsp[(1) - (1)].interm.type)) }; |
| (yyval.interm).param = param; |
| } |
| break; |
| |
| case 105: |
| |
| { |
| (yyval.interm) = (yyvsp[(1) - (1)].interm); |
| } |
| break; |
| |
| case 106: |
| |
| { |
| if ((yyvsp[(1) - (3)].interm).type.type == EbtInvariant && !(yyvsp[(3) - (3)].lex).symbol) |
| { |
| context->error((yyvsp[(3) - (3)].lex).line, "undeclared identifier declared as invariant", (yyvsp[(3) - (3)].lex).string->c_str()); |
| context->recover(); |
| } |
| |
| TIntermSymbol* symbol = context->intermediate.addSymbol(0, *(yyvsp[(3) - (3)].lex).string, TType((yyvsp[(1) - (3)].interm).type), (yyvsp[(3) - (3)].lex).line); |
| (yyval.interm).intermAggregate = context->intermediate.growAggregate((yyvsp[(1) - (3)].interm).intermNode, symbol, (yyvsp[(3) - (3)].lex).line); |
| |
| if (context->structQualifierErrorCheck((yyvsp[(3) - (3)].lex).line, (yyval.interm).type)) |
| context->recover(); |
| |
| if (context->nonInitConstErrorCheck((yyvsp[(3) - (3)].lex).line, *(yyvsp[(3) - (3)].lex).string, (yyval.interm).type, false)) |
| context->recover(); |
| |
| TVariable* variable = 0; |
| if (context->nonInitErrorCheck((yyvsp[(3) - (3)].lex).line, *(yyvsp[(3) - (3)].lex).string, (yyval.interm).type, variable)) |
| context->recover(); |
| if (symbol && variable) |
| symbol->setId(variable->getUniqueId()); |
| } |
| break; |
| |
| case 107: |
| |
| { |
| if (context->structQualifierErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(1) - (5)].interm).type)) |
| context->recover(); |
| |
| if (context->nonInitConstErrorCheck((yyvsp[(3) - (5)].lex).line, *(yyvsp[(3) - (5)].lex).string, (yyvsp[(1) - (5)].interm).type, true)) |
| context->recover(); |
| |
| (yyval.interm) = (yyvsp[(1) - (5)].interm); |
| |
| if (context->arrayTypeErrorCheck((yyvsp[(4) - (5)].lex).line, (yyvsp[(1) - (5)].interm).type) || context->arrayQualifierErrorCheck((yyvsp[(4) - (5)].lex).line, (yyvsp[(1) - (5)].interm).type)) |
| context->recover(); |
| else { |
| (yyvsp[(1) - (5)].interm).type.setArray(true); |
| TVariable* variable; |
| if (context->arrayErrorCheck((yyvsp[(4) - (5)].lex).line, *(yyvsp[(3) - (5)].lex).string, (yyvsp[(1) - (5)].interm).type, variable)) |
| context->recover(); |
| } |
| } |
| break; |
| |
| case 108: |
| |
| { |
| if (context->structQualifierErrorCheck((yyvsp[(3) - (6)].lex).line, (yyvsp[(1) - (6)].interm).type)) |
| context->recover(); |
| |
| if (context->nonInitConstErrorCheck((yyvsp[(3) - (6)].lex).line, *(yyvsp[(3) - (6)].lex).string, (yyvsp[(1) - (6)].interm).type, true)) |
| context->recover(); |
| |
| (yyval.interm) = (yyvsp[(1) - (6)].interm); |
| |
| if (context->arrayTypeErrorCheck((yyvsp[(4) - (6)].lex).line, (yyvsp[(1) - (6)].interm).type) || context->arrayQualifierErrorCheck((yyvsp[(4) - (6)].lex).line, (yyvsp[(1) - (6)].interm).type)) |
| context->recover(); |
| else { |
| int size; |
| if (context->arraySizeErrorCheck((yyvsp[(4) - (6)].lex).line, (yyvsp[(5) - (6)].interm.intermTypedNode), size)) |
| context->recover(); |
| (yyvsp[(1) - (6)].interm).type.setArray(true, size); |
| TVariable* variable = 0; |
| if (context->arrayErrorCheck((yyvsp[(4) - (6)].lex).line, *(yyvsp[(3) - (6)].lex).string, (yyvsp[(1) - (6)].interm).type, variable)) |
| context->recover(); |
| TType type = TType((yyvsp[(1) - (6)].interm).type); |
| type.setArraySize(size); |
| (yyval.interm).intermAggregate = context->intermediate.growAggregate((yyvsp[(1) - (6)].interm).intermNode, context->intermediate.addSymbol(variable ? variable->getUniqueId() : 0, *(yyvsp[(3) - (6)].lex).string, type, (yyvsp[(3) - (6)].lex).line), (yyvsp[(3) - (6)].lex).line); |
| } |
| } |
| break; |
| |
| case 109: |
| |
| { |
| if (context->structQualifierErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(1) - (5)].interm).type)) |
| context->recover(); |
| |
| (yyval.interm) = (yyvsp[(1) - (5)].interm); |
| |
| TIntermNode* intermNode; |
| if (!context->executeInitializer((yyvsp[(3) - (5)].lex).line, *(yyvsp[(3) - (5)].lex).string, (yyvsp[(1) - (5)].interm).type, (yyvsp[(5) - (5)].interm.intermTypedNode), intermNode)) { |
| // |
| // build the intermediate representation |
| // |
| if (intermNode) |
| (yyval.interm).intermAggregate = context->intermediate.growAggregate((yyvsp[(1) - (5)].interm).intermNode, intermNode, (yyvsp[(4) - (5)].lex).line); |
| else |
| (yyval.interm).intermAggregate = (yyvsp[(1) - (5)].interm).intermAggregate; |
| } else { |
| context->recover(); |
| (yyval.interm).intermAggregate = 0; |
| } |
| } |
| break; |
| |
| case 110: |
| |
| { |
| (yyval.interm).type = (yyvsp[(1) - (1)].interm.type); |
| (yyval.interm).intermAggregate = context->intermediate.makeAggregate(context->intermediate.addSymbol(0, "", TType((yyvsp[(1) - (1)].interm.type)), (yyvsp[(1) - (1)].interm.type).line), (yyvsp[(1) - (1)].interm.type).line); |
| } |
| break; |
| |
| case 111: |
| |
| { |
| TIntermSymbol* symbol = context->intermediate.addSymbol(0, *(yyvsp[(2) - (2)].lex).string, TType((yyvsp[(1) - (2)].interm.type)), (yyvsp[(2) - (2)].lex).line); |
| (yyval.interm).intermAggregate = context->intermediate.makeAggregate(symbol, (yyvsp[(2) - (2)].lex).line); |
| |
| if (context->structQualifierErrorCheck((yyvsp[(2) - (2)].lex).line, (yyval.interm).type)) |
| context->recover(); |
| |
| if (context->nonInitConstErrorCheck((yyvsp[(2) - (2)].lex).line, *(yyvsp[(2) - (2)].lex).string, (yyval.interm).type, false)) |
| context->recover(); |
| |
| (yyval.interm).type = (yyvsp[(1) - (2)].interm.type); |
| |
| TVariable* variable = 0; |
| if (context->nonInitErrorCheck((yyvsp[(2) - (2)].lex).line, *(yyvsp[(2) - (2)].lex).string, (yyval.interm).type, variable)) |
| context->recover(); |
| if (variable && symbol) |
| symbol->setId(variable->getUniqueId()); |
| } |
| break; |
| |
| case 112: |
| |
| { |
| context->error((yyvsp[(2) - (4)].lex).line, "unsized array declarations not supported", (yyvsp[(2) - (4)].lex).string->c_str()); |
| context->recover(); |
| |
| TIntermSymbol* symbol = context->intermediate.addSymbol(0, *(yyvsp[(2) - (4)].lex).string, TType((yyvsp[(1) - (4)].interm.type)), (yyvsp[(2) - (4)].lex).line); |
| (yyval.interm).intermAggregate = context->intermediate.makeAggregate(symbol, (yyvsp[(2) - (4)].lex).line); |
| (yyval.interm).type = (yyvsp[(1) - (4)].interm.type); |
| } |
| break; |
| |
| case 113: |
| |
| { |
| TType type = TType((yyvsp[(1) - (5)].interm.type)); |
| int size; |
| if (context->arraySizeErrorCheck((yyvsp[(2) - (5)].lex).line, (yyvsp[(4) - (5)].interm.intermTypedNode), size)) |
| context->recover(); |
| type.setArraySize(size); |
| TIntermSymbol* symbol = context->intermediate.addSymbol(0, *(yyvsp[(2) - (5)].lex).string, type, (yyvsp[(2) - (5)].lex).line); |
| (yyval.interm).intermAggregate = context->intermediate.makeAggregate(symbol, (yyvsp[(2) - (5)].lex).line); |
| |
| if (context->structQualifierErrorCheck((yyvsp[(2) - (5)].lex).line, (yyvsp[(1) - (5)].interm.type))) |
| context->recover(); |
| |
| if (context->nonInitConstErrorCheck((yyvsp[(2) - (5)].lex).line, *(yyvsp[(2) - (5)].lex).string, (yyvsp[(1) - (5)].interm.type), true)) |
| context->recover(); |
| |
| (yyval.interm).type = (yyvsp[(1) - (5)].interm.type); |
| |
| if (context->arrayTypeErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(1) - (5)].interm.type)) || context->arrayQualifierErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(1) - (5)].interm.type))) |
| context->recover(); |
| else { |
| int size; |
| if (context->arraySizeErrorCheck((yyvsp[(3) - (5)].lex).line, (yyvsp[(4) - (5)].interm.intermTypedNode), size)) |
| context->recover(); |
| |
| (yyvsp[(1) - (5)].interm.type).setArray(true, size); |
| TVariable* variable = 0; |
| if (context->arrayErrorCheck((yyvsp[(3) - (5)].lex).line, *(yyvsp[(2) - (5)].lex).string, (yyvsp[(1) - (5)].interm.type), variable)) |
| context->recover(); |
| if (variable && symbol) |
| symbol->setId(variable->getUniqueId()); |
| } |
| } |
| break; |
| |
| case 114: |
| |
| { |
| if (context->structQualifierErrorCheck((yyvsp[(2) - (4)].lex).line, (yyvsp[(1) - (4)].interm.type))) |
| context->recover(); |
| |
| (yyval.interm).type = (yyvsp[(1) - (4)].interm.type); |
| |
| TIntermNode* intermNode; |
| if (!context->executeInitializer((yyvsp[(2) - (4)].lex).line, *(yyvsp[(2) - (4)].lex).string, (yyvsp[(1) - (4)].interm.type), (yyvsp[(4) - (4)].interm.intermTypedNode), intermNode)) { |
| // |
| // Build intermediate representation |
| // |
| if(intermNode) |
| (yyval.interm).intermAggregate = context->intermediate.makeAggregate(intermNode, (yyvsp[(3) - (4)].lex).line); |
| else |
| (yyval.interm).intermAggregate = 0; |
| } else { |
| context->recover(); |
| (yyval.interm).intermAggregate = 0; |
| } |
| } |
| break; |
| |
| case 115: |
| |
| { |
| if (context->globalErrorCheck((yyvsp[(1) - (2)].lex).line, context->symbolTable.atGlobalLevel(), "invariant varying")) |
| context->recover(); |
| (yyval.interm).type.setBasic(EbtInvariant, EvqInvariantVaryingOut, (yyvsp[(2) - (2)].lex).line); |
| if (!(yyvsp[(2) - (2)].lex).symbol) |
| { |
| context->error((yyvsp[(2) - (2)].lex).line, "undeclared identifier declared as invariant", (yyvsp[(2) - (2)].lex).string->c_str()); |
| context->recover(); |
| |
| (yyval.interm).intermAggregate = 0; |
| } |
| else |
| { |
| TIntermSymbol *symbol = context->intermediate.addSymbol(0, *(yyvsp[(2) - (2)].lex).string, TType((yyval.interm).type), (yyvsp[(2) - (2)].lex).line); |
| (yyval.interm).intermAggregate = context->intermediate.makeAggregate(symbol, (yyvsp[(2) - (2)].lex).line); |
| } |
| } |
| break; |
| |
| case 116: |
| |
| { |
| (yyval.interm.type) = (yyvsp[(1) - (1)].interm.type); |
| |
| if ((yyvsp[(1) - (1)].interm.type).array) { |
| context->error((yyvsp[(1) - (1)].interm.type).line, "not supported", "first-class array"); |
| context->recover(); |
| (yyvsp[(1) - (1)].interm.type).setArray(false); |
| } |
| } |
| break; |
| |
| case 117: |
| |
| { |
| if ((yyvsp[(2) - (2)].interm.type).array) { |
| context->error((yyvsp[(2) - (2)].interm.type).line, "not supported", "first-class array"); |
| context->recover(); |
| (yyvsp[(2) - (2)].interm.type).setArray(false); |
| } |
| |
| if ((yyvsp[(1) - (2)].interm.type).qualifier == EvqAttribute && |
| ((yyvsp[(2) - (2)].interm.type).type == EbtBool || (yyvsp[(2) - (2)].interm.type).type == EbtInt)) { |
| context->error((yyvsp[(2) - (2)].interm.type).line, "cannot be bool or int", getQualifierString((yyvsp[(1) - (2)].interm.type).qualifier)); |
| context->recover(); |
| } |
| if (((yyvsp[(1) - (2)].interm.type).qualifier == EvqVaryingIn || (yyvsp[(1) - (2)].interm.type).qualifier == EvqVaryingOut) && |
| ((yyvsp[(2) - (2)].interm.type).type == EbtBool || (yyvsp[(2) - (2)].interm.type).type == EbtInt)) { |
| context->error((yyvsp[(2) - (2)].interm.type).line, "cannot be bool or int", getQualifierString((yyvsp[(1) - (2)].interm.type).qualifier)); |
| context->recover(); |
| } |
| (yyval.interm.type) = (yyvsp[(2) - (2)].interm.type); |
| (yyval.interm.type).qualifier = (yyvsp[(1) - (2)].interm.type).qualifier; |
| } |
| break; |
| |
| case 118: |
| |
| { |
| (yyval.interm.type).qualifier = EvqSmooth; |
| } |
| break; |
| |
| case 119: |
| |
| { |
| (yyval.interm.type).qualifier = EvqFlat; |
| } |
| break; |
| |
| case 120: |
| |
| { |
| (yyval.interm.qualifier) = EvqConstReadOnly; |
| } |
| break; |
| |
| case 121: |
| |
| { |
| VERTEX_ONLY("attribute", (yyvsp[(1) - (1)].lex).line); |
| ES2_ONLY("attribute", (yyvsp[(1) - (1)].lex).line); |
| if (context->globalErrorCheck((yyvsp[(1) - (1)].lex).line, context->symbolTable.atGlobalLevel(), "attribute")) |
| context->recover(); |
| (yyval.interm.type).setBasic(EbtVoid, EvqAttribute, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 122: |
| |
| { |
| ES2_ONLY("varying", (yyvsp[(1) - (1)].lex).line); |
| if (context->globalErrorCheck((yyvsp[(1) - (1)].lex).line, context->symbolTable.atGlobalLevel(), "varying")) |
| context->recover(); |
| if (context->shaderType == GL_VERTEX_SHADER) |
| (yyval.interm.type).setBasic(EbtVoid, EvqVaryingOut, (yyvsp[(1) - (1)].lex).line); |
| else |
| (yyval.interm.type).setBasic(EbtVoid, EvqVaryingIn, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 123: |
| |
| { |
| ES2_ONLY("varying", (yyvsp[(1) - (2)].lex).line); |
| if (context->globalErrorCheck((yyvsp[(1) - (2)].lex).line, context->symbolTable.atGlobalLevel(), "invariant varying")) |
| context->recover(); |
| if (context->shaderType == GL_VERTEX_SHADER) |
| (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingOut, (yyvsp[(1) - (2)].lex).line); |
| else |
| (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingIn, (yyvsp[(1) - (2)].lex).line); |
| } |
| break; |
| |
| case 124: |
| |
| { |
| (yyval.interm.type).setBasic(EbtVoid, (yyvsp[(1) - (1)].interm.type).qualifier, (yyvsp[(1) - (1)].interm.type).line); |
| } |
| break; |
| |
| case 125: |
| |
| { |
| (yyval.interm.type) = context->joinInterpolationQualifiers((yyvsp[(1) - (2)].interm.type).line, (yyvsp[(1) - (2)].interm.type).qualifier, (yyvsp[(2) - (2)].interm.type).line, (yyvsp[(2) - (2)].interm.type).qualifier); |
| } |
| break; |
| |
| case 126: |
| |
| { |
| context->error((yyvsp[(1) - (1)].interm.type).line, "interpolation qualifier requires a fragment 'in' or vertex 'out' storage qualifier", getQualifierString((yyvsp[(1) - (1)].interm.type).qualifier)); |
| context->recover(); |
| |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtVoid, qual, (yyvsp[(1) - (1)].interm.type).line); |
| } |
| break; |
| |
| case 127: |
| |
| { |
| (yyval.interm.type).qualifier = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).layoutQualifier = (yyvsp[(1) - (1)].interm.layoutQualifier); |
| } |
| break; |
| |
| case 128: |
| |
| { |
| (yyval.interm.type).setBasic(EbtVoid, (yyvsp[(2) - (2)].interm.type).qualifier, (yyvsp[(2) - (2)].interm.type).line); |
| (yyval.interm.type).layoutQualifier = (yyvsp[(1) - (2)].interm.layoutQualifier); |
| } |
| break; |
| |
| case 129: |
| |
| { |
| (yyval.interm.type).qualifier = EvqConstExpr; |
| (yyval.interm.type).line = (yyvsp[(1) - (1)].lex).line; |
| } |
| break; |
| |
| case 130: |
| |
| { |
| ES3_ONLY("in", (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).qualifier = (context->shaderType == GL_FRAGMENT_SHADER) ? EvqVaryingIn : EvqAttribute; |
| (yyval.interm.type).line = (yyvsp[(1) - (1)].lex).line; |
| } |
| break; |
| |
| case 131: |
| |
| { |
| ES3_ONLY("out", (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).qualifier = (context->shaderType == GL_FRAGMENT_SHADER) ? EvqFragColor : EvqVaryingOut; |
| (yyval.interm.type).line = (yyvsp[(1) - (1)].lex).line; |
| } |
| break; |
| |
| case 132: |
| |
| { |
| ES3_ONLY("in", (yyvsp[(1) - (2)].lex).line); |
| // FIXME: Handle centroid qualifier |
| (yyval.interm.type).qualifier = (context->shaderType == GL_FRAGMENT_SHADER) ? EvqVaryingIn : EvqAttribute; |
| (yyval.interm.type).line = (yyvsp[(2) - (2)].lex).line; |
| } |
| break; |
| |
| case 133: |
| |
| { |
| ES3_ONLY("out", (yyvsp[(1) - (2)].lex).line); |
| // FIXME: Handle centroid qualifier |
| (yyval.interm.type).qualifier = (context->shaderType == GL_FRAGMENT_SHADER) ? EvqFragColor : EvqVaryingOut; |
| (yyval.interm.type).line = (yyvsp[(2) - (2)].lex).line; |
| } |
| break; |
| |
| case 134: |
| |
| { |
| if (context->globalErrorCheck((yyvsp[(1) - (1)].lex).line, context->symbolTable.atGlobalLevel(), "uniform")) |
| context->recover(); |
| (yyval.interm.type).qualifier = EvqUniform; |
| (yyval.interm.type).line = (yyvsp[(1) - (1)].lex).line; |
| } |
| break; |
| |
| case 135: |
| |
| { |
| (yyval.interm.type) = (yyvsp[(1) - (1)].interm.type); |
| |
| if ((yyval.interm.type).precision == EbpUndefined) { |
| (yyval.interm.type).precision = context->symbolTable.getDefaultPrecision((yyvsp[(1) - (1)].interm.type).type); |
| if (context->precisionErrorCheck((yyvsp[(1) - (1)].interm.type).line, (yyval.interm.type).precision, (yyvsp[(1) - (1)].interm.type).type)) { |
| context->recover(); |
| } |
| } |
| } |
| break; |
| |
| case 136: |
| |
| { |
| (yyval.interm.type) = (yyvsp[(2) - (2)].interm.type); |
| (yyval.interm.type).precision = (yyvsp[(1) - (2)].interm.precision); |
| } |
| break; |
| |
| case 137: |
| |
| { |
| (yyval.interm.precision) = EbpHigh; |
| } |
| break; |
| |
| case 138: |
| |
| { |
| (yyval.interm.precision) = EbpMedium; |
| } |
| break; |
| |
| case 139: |
| |
| { |
| (yyval.interm.precision) = EbpLow; |
| } |
| break; |
| |
| case 140: |
| |
| { |
| ES3_ONLY("layout", (yyvsp[(1) - (4)].lex).line); |
| (yyval.interm.layoutQualifier) = (yyvsp[(3) - (4)].interm.layoutQualifier); |
| } |
| break; |
| |
| case 141: |
| |
| { |
| (yyval.interm.layoutQualifier) = (yyvsp[(1) - (1)].interm.layoutQualifier); |
| } |
| break; |
| |
| case 142: |
| |
| { |
| (yyval.interm.layoutQualifier) = context->joinLayoutQualifiers((yyvsp[(1) - (3)].interm.layoutQualifier), (yyvsp[(3) - (3)].interm.layoutQualifier)); |
| } |
| break; |
| |
| case 143: |
| |
| { |
| (yyval.interm.layoutQualifier) = context->parseLayoutQualifier(*(yyvsp[(1) - (1)].lex).string, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 144: |
| |
| { |
| (yyval.interm.layoutQualifier) = context->parseLayoutQualifier(*(yyvsp[(1) - (3)].lex).string, (yyvsp[(1) - (3)].lex).line, *(yyvsp[(3) - (3)].lex).string, (yyvsp[(3) - (3)].lex).i, (yyvsp[(3) - (3)].lex).line); |
| } |
| break; |
| |
| case 145: |
| |
| { |
| (yyval.interm.layoutQualifier) = context->parseLayoutQualifier(*(yyvsp[(1) - (3)].lex).string, (yyvsp[(1) - (3)].lex).line, *(yyvsp[(3) - (3)].lex).string, (yyvsp[(3) - (3)].lex).i, (yyvsp[(3) - (3)].lex).line); |
| } |
| break; |
| |
| case 146: |
| |
| { |
| (yyval.interm.type) = (yyvsp[(1) - (1)].interm.type); |
| } |
| break; |
| |
| case 147: |
| |
| { |
| (yyval.interm.type) = (yyvsp[(1) - (4)].interm.type); |
| |
| if (context->arrayTypeErrorCheck((yyvsp[(2) - (4)].lex).line, (yyvsp[(1) - (4)].interm.type))) |
| context->recover(); |
| else { |
| int size; |
| if (context->arraySizeErrorCheck((yyvsp[(2) - (4)].lex).line, (yyvsp[(3) - (4)].interm.intermTypedNode), size)) |
| context->recover(); |
| (yyval.interm.type).setArray(true, size); |
| } |
| } |
| break; |
| |
| case 148: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtVoid, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 149: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 150: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtInt, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 151: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUInt, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 152: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtBool, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 153: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(2); |
| } |
| break; |
| |
| case 154: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(3); |
| } |
| break; |
| |
| case 155: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(4); |
| } |
| break; |
| |
| case 156: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtBool, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(2); |
| } |
| break; |
| |
| case 157: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtBool, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(3); |
| } |
| break; |
| |
| case 158: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtBool, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(4); |
| } |
| break; |
| |
| case 159: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtInt, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(2); |
| } |
| break; |
| |
| case 160: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtInt, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(3); |
| } |
| break; |
| |
| case 161: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtInt, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(4); |
| } |
| break; |
| |
| case 162: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUInt, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(2); |
| } |
| break; |
| |
| case 163: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUInt, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(3); |
| } |
| break; |
| |
| case 164: |
| |
| { |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUInt, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setAggregate(4); |
| } |
| break; |
| |
| case 165: |
| |
| { |
| FRAG_VERT_ONLY("mat2", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(2, 2); |
| } |
| break; |
| |
| case 166: |
| |
| { |
| FRAG_VERT_ONLY("mat3", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(3, 3); |
| } |
| break; |
| |
| case 167: |
| |
| { |
| FRAG_VERT_ONLY("mat4", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(4, 4); |
| } |
| break; |
| |
| case 168: |
| |
| { |
| FRAG_VERT_ONLY("mat2x3", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(2, 3); |
| } |
| break; |
| |
| case 169: |
| |
| { |
| FRAG_VERT_ONLY("mat3x2", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(3, 2); |
| } |
| break; |
| |
| case 170: |
| |
| { |
| FRAG_VERT_ONLY("mat2x4", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(2, 4); |
| } |
| break; |
| |
| case 171: |
| |
| { |
| FRAG_VERT_ONLY("mat4x2", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(4, 2); |
| } |
| break; |
| |
| case 172: |
| |
| { |
| FRAG_VERT_ONLY("mat3x4", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(3, 4); |
| } |
| break; |
| |
| case 173: |
| |
| { |
| FRAG_VERT_ONLY("mat4x3", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtFloat, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).setMatrix(4, 3); |
| } |
| break; |
| |
| case 174: |
| |
| { |
| FRAG_VERT_ONLY("sampler2D", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSampler2D, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 175: |
| |
| { |
| FRAG_VERT_ONLY("samplerCube", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSamplerCube, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 176: |
| |
| { |
| if (!context->supportsExtension("GL_OES_EGL_image_external")) { |
| context->error((yyvsp[(1) - (1)].lex).line, "unsupported type", "samplerExternalOES", ""); |
| context->recover(); |
| } |
| FRAG_VERT_ONLY("samplerExternalOES", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSamplerExternalOES, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 177: |
| |
| { |
| FRAG_VERT_ONLY("sampler3D", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSampler3D, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 178: |
| |
| { |
| FRAG_VERT_ONLY("sampler2DArray", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSampler2DArray, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 179: |
| |
| { |
| FRAG_VERT_ONLY("isampler2D", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtISampler2D, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 180: |
| |
| { |
| FRAG_VERT_ONLY("isampler3D", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtISampler3D, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 181: |
| |
| { |
| FRAG_VERT_ONLY("isamplerCube", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtISamplerCube, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 182: |
| |
| { |
| FRAG_VERT_ONLY("isampler2DArray", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtISampler2DArray, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 183: |
| |
| { |
| FRAG_VERT_ONLY("usampler2D", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUSampler2D, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 184: |
| |
| { |
| FRAG_VERT_ONLY("usampler3D", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUSampler3D, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 185: |
| |
| { |
| FRAG_VERT_ONLY("usamplerCube", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUSamplerCube, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 186: |
| |
| { |
| FRAG_VERT_ONLY("usampler2DArray", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtUSampler2DArray, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 187: |
| |
| { |
| FRAG_VERT_ONLY("sampler2DShadow", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSampler2DShadow, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 188: |
| |
| { |
| FRAG_VERT_ONLY("samplerCubeShadow", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSamplerCubeShadow, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 189: |
| |
| { |
| FRAG_VERT_ONLY("sampler2DArrayShadow", (yyvsp[(1) - (1)].lex).line); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtSampler2DArrayShadow, qual, (yyvsp[(1) - (1)].lex).line); |
| } |
| break; |
| |
| case 190: |
| |
| { |
| FRAG_VERT_ONLY("struct", (yyvsp[(1) - (1)].interm.type).line); |
| (yyval.interm.type) = (yyvsp[(1) - (1)].interm.type); |
| (yyval.interm.type).qualifier = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| } |
| break; |
| |
| case 191: |
| |
| { |
| // |
| // This is for user defined type names. The lexical phase looked up the |
| // type. |
| // |
| TType& structure = static_cast<TVariable*>((yyvsp[(1) - (1)].lex).symbol)->getType(); |
| TQualifier qual = context->symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary; |
| (yyval.interm.type).setBasic(EbtStruct, qual, (yyvsp[(1) - (1)].lex).line); |
| (yyval.interm.type).userDef = &structure; |
| } |
| break; |
| |
| case 192: |
| |
| { if (context->enterStructDeclaration((yyvsp[(2) - (3)].lex).line, *(yyvsp[(2) - (3)].lex).string)) context->recover(); } |
| break; |
| |
| case 193: |
| |
| { |
| if (context->reservedErrorCheck((yyvsp[(2) - (6)].lex).line, *(yyvsp[(2) - (6)].lex).string)) |
| context->recover(); |
| |
| TType* structure = new TType((yyvsp[(5) - (6)].interm.typeList), *(yyvsp[(2) - (6)].lex).string); |
| TVariable* userTypeDef = new TVariable((yyvsp[(2) - (6)].lex).string, *structure, true); |
| if (! context->symbolTable.declare(*userTypeDef)) { |
| context->error((yyvsp[(2) - (6)].lex).line, "redefinition", (yyvsp[(2) - (6)].lex).string->c_str(), "struct"); |
| context->recover(); |
| } |
| (yyval.interm.type).setBasic(EbtStruct, EvqTemporary, (yyvsp[(1) - (6)].lex).line); |
| (yyval.interm.type).userDef = structure; |
| context->exitStructDeclaration(); |
| } |
| break; |
| |
| case 194: |
| |
| { if (context->enterStructDeclaration((yyvsp[(2) - (2)].lex).line, *(yyvsp[(2) - (2)].lex).string)) context->recover(); } |
| break; |
| |
| case 195: |
| |
| { |
| TType* structure = new TType((yyvsp[(4) - (5)].interm.typeList), TString("")); |
| (yyval.interm.type).setBasic(EbtStruct, EvqTemporary, (yyvsp[(1) - (5)].lex).line); |
| (yyval.interm.type).userDef = structure; |
| context->exitStructDeclaration(); |
| } |
| break; |
| |
| case 196: |
| |
| { |
| (yyval.interm.typeList) = (yyvsp[(1) - (1)].interm.typeList); |
| } |
| break; |
| |
| case 197: |
| |
| { |
| (yyval.interm.typeList) = (yyvsp[(1) - (2)].interm.typeList); |
| for (unsigned int i = 0; i < (yyvsp[(2) - (2)].interm.typeList)->size(); ++i) { |
| for (unsigned int j = 0; j < (yyval.interm.typeList)->size(); ++j) { |
| if ((*(yyval.interm.typeList))[j].type->getFieldName() == (*(yyvsp[(2) - (2)].interm.typeList))[i].type->getFieldName()) { |
| context->error((*(yyvsp[(2) - (2)].interm.typeList))[i].line, "duplicate field name in structure:", "struct", (*(yyvsp[(2) - (2)].interm.typeList))[i].type->getFieldName().c_str()); |
| context->recover(); |
| } |
| } |
| (yyval.interm.typeList)->push_back((*(yyvsp[(2) - (2)].interm.typeList))[i]); |
| } |
| } |
| break; |
| |
| case 198: |
| |
| { |
| (yyval.interm.typeList) = (yyvsp[(2) - (3)].interm.typeList); |
| |
| if (context->voidErrorCheck((yyvsp[(1) - (3)].interm.type).line, (*(yyvsp[(2) - (3)].interm.typeList))[0].type->getFieldName(), (yyvsp[(1) - (3)].interm.type))) { |
| context->recover(); |
| } |
| for (unsigned int i = 0; i < (yyval.interm.typeList)->size(); ++i) { |
| // |
| // Careful not to replace already known aspects of type, like array-ness |
| // |
| TType* type = (*(yyval.interm.typeList))[i].type; |
| type->setBasicType((yyvsp[(1) - (3)].interm.type).type); |
| type->setNominalSize((yyvsp[(1) - (3)].interm.type).primarySize); |
| type->setSecondarySize((yyvsp[(1) - (3)].interm.type).secondarySize); |
| type->setPrecision((yyvsp[(1) - (3)].interm.type).precision); |
| |
| // don't allow arrays of arrays |
| if (type->isArray()) { |
| if (context->arrayTypeErrorCheck((yyvsp[(1) - (3)].interm.type).line, (yyvsp[(1) - (3)].interm.type))) |
| context->recover(); |
| } |
| if ((yyvsp[(1) - (3)].interm.type).array) |
| type->setArraySize((yyvsp[(1) - (3)].interm.type).arraySize); |
| if ((yyvsp[(1) - (3)].interm.type).userDef) { |
| type->setStruct((yyvsp[(1) - (3)].interm.type).userDef->getStruct()); |
| type->setTypeName((yyvsp[(1) - (3)].interm.type).userDef->getTypeName()); |
| } |
| } |
| } |
| break; |
| |
| case 199: |
| |
| { |
| (yyval.interm.typeList) = NewPoolTTypeList(); |
| (yyval.interm.typeList)->push_back((yyvsp[(1) - (1)].interm.typeLine)); |
| } |
| break; |
| |
| case 200: |
| |
| { |
| (yyval.interm.typeList)->push_back((yyvsp[(3) - (3)].interm.typeLine)); |
| } |
| break; |
| |
| case 201: |
| |
| { |
| if (context->reservedErrorCheck((yyvsp[(1) - (1)].lex).line, *(yyvsp[(1) - (1)].lex).string)) |
| context->recover(); |
| |
| (yyval.interm.typeLine).type = new TType(EbtVoid, EbpUndefined); |
| (yyval.interm.typeLine).line = (yyvsp[(1) - (1)].lex).line; |
| (yyval.interm.typeLine).type->setFieldName(*(yyvsp[(1) - (1)].lex).string); |
| } |
| break; |
| |
| case 202: |
| |
| { |
| if (context->reservedErrorCheck((yyvsp[(1) - (4)].lex).line, *(yyvsp[(1) - (4)].lex).string)) |
| context->recover(); |
| |
| (yyval.interm.typeLine).type = new TType(EbtVoid, EbpUndefined); |
| (yyval.interm.typeLine).line = (yyvsp[(1) - (4)].lex).line; |
| (yyval.interm.typeLine).type->setFieldName(*(yyvsp[(1) - (4)].lex).string); |
| |
| int size; |
| if (context->arraySizeErrorCheck((yyvsp[(2) - (4)].lex).line, (yyvsp[(3) - (4)].interm.intermTypedNode), size)) |
| context->recover(); |
| (yyval.interm.typeLine).type->setArraySize(size); |
| } |
| break; |
| |
| case 203: |
| |
| { (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); } |
| break; |
| |
| case 204: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 205: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermAggregate); } |
| break; |
| |
| case 206: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 207: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 208: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 209: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 210: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 211: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 212: |
| |
| { (yyval.interm.intermAggregate) = 0; } |
| break; |
| |
| case 213: |
| |
| { context->symbolTable.push(); } |
| break; |
| |
| case 214: |
| |
| { context->symbolTable.pop(); } |
| break; |
| |
| case 215: |
| |
| { |
| if ((yyvsp[(3) - (5)].interm.intermAggregate) != 0) { |
| (yyvsp[(3) - (5)].interm.intermAggregate)->setOp(EOpSequence); |
| (yyvsp[(3) - (5)].interm.intermAggregate)->setEndLine((yyvsp[(5) - (5)].lex).line); |
| } |
| (yyval.interm.intermAggregate) = (yyvsp[(3) - (5)].interm.intermAggregate); |
| } |
| break; |
| |
| case 216: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 217: |
| |
| { (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); } |
| break; |
| |
| case 218: |
| |
| { context->symbolTable.push(); } |
| break; |
| |
| case 219: |
| |
| { context->symbolTable.pop(); (yyval.interm.intermNode) = (yyvsp[(2) - (2)].interm.intermNode); } |
| break; |
| |
| case 220: |
| |
| { context->symbolTable.push(); } |
| break; |
| |
| case 221: |
| |
| { context->symbolTable.pop(); (yyval.interm.intermNode) = (yyvsp[(2) - (2)].interm.intermNode); } |
| break; |
| |
| case 222: |
| |
| { |
| (yyval.interm.intermNode) = 0; |
| } |
| break; |
| |
| case 223: |
| |
| { |
| if ((yyvsp[(2) - (3)].interm.intermAggregate)) { |
| (yyvsp[(2) - (3)].interm.intermAggregate)->setOp(EOpSequence); |
| (yyvsp[(2) - (3)].interm.intermAggregate)->setEndLine((yyvsp[(3) - (3)].lex).line); |
| } |
| (yyval.interm.intermNode) = (yyvsp[(2) - (3)].interm.intermAggregate); |
| } |
| break; |
| |
| case 224: |
| |
| { |
| (yyval.interm.intermAggregate) = context->intermediate.makeAggregate((yyvsp[(1) - (1)].interm.intermNode), 0); |
| } |
| break; |
| |
| case 225: |
| |
| { |
| (yyval.interm.intermAggregate) = context->intermediate.growAggregate((yyvsp[(1) - (2)].interm.intermAggregate), (yyvsp[(2) - (2)].interm.intermNode), 0); |
| } |
| break; |
| |
| case 226: |
| |
| { (yyval.interm.intermNode) = 0; } |
| break; |
| |
| case 227: |
| |
| { (yyval.interm.intermNode) = static_cast<TIntermNode*>((yyvsp[(1) - (2)].interm.intermTypedNode)); } |
| break; |
| |
| case 228: |
| |
| { |
| if (context->boolErrorCheck((yyvsp[(1) - (5)].lex).line, (yyvsp[(3) - (5)].interm.intermTypedNode))) |
| context->recover(); |
| (yyval.interm.intermNode) = context->intermediate.addSelection((yyvsp[(3) - (5)].interm.intermTypedNode), (yyvsp[(5) - (5)].interm.nodePair), (yyvsp[(1) - (5)].lex).line); |
| } |
| break; |
| |
| case 229: |
| |
| { |
| (yyval.interm.nodePair).node1 = (yyvsp[(1) - (3)].interm.intermNode); |
| (yyval.interm.nodePair).node2 = (yyvsp[(3) - (3)].interm.intermNode); |
| } |
| break; |
| |
| case 230: |
| |
| { |
| (yyval.interm.nodePair).node1 = (yyvsp[(1) - (1)].interm.intermNode); |
| (yyval.interm.nodePair).node2 = 0; |
| } |
| break; |
| |
| case 231: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| if (context->boolErrorCheck((yyvsp[(1) - (1)].interm.intermTypedNode)->getLine(), (yyvsp[(1) - (1)].interm.intermTypedNode))) |
| context->recover(); |
| } |
| break; |
| |
| case 232: |
| |
| { |
| TIntermNode* intermNode; |
| if (context->structQualifierErrorCheck((yyvsp[(2) - (4)].lex).line, (yyvsp[(1) - (4)].interm.type))) |
| context->recover(); |
| if (context->boolErrorCheck((yyvsp[(2) - (4)].lex).line, (yyvsp[(1) - (4)].interm.type))) |
| context->recover(); |
| |
| if (!context->executeInitializer((yyvsp[(2) - (4)].lex).line, *(yyvsp[(2) - (4)].lex).string, (yyvsp[(1) - (4)].interm.type), (yyvsp[(4) - (4)].interm.intermTypedNode), intermNode)) |
| (yyval.interm.intermTypedNode) = (yyvsp[(4) - (4)].interm.intermTypedNode); |
| else { |
| context->recover(); |
| (yyval.interm.intermTypedNode) = 0; |
| } |
| } |
| break; |
| |
| case 233: |
| |
| { context->symbolTable.push(); ++context->loopNestingLevel; } |
| break; |
| |
| case 234: |
| |
| { |
| context->symbolTable.pop(); |
| (yyval.interm.intermNode) = context->intermediate.addLoop(ELoopWhile, 0, (yyvsp[(4) - (6)].interm.intermTypedNode), 0, (yyvsp[(6) - (6)].interm.intermNode), (yyvsp[(1) - (6)].lex).line); |
| --context->loopNestingLevel; |
| } |
| break; |
| |
| case 235: |
| |
| { ++context->loopNestingLevel; } |
| break; |
| |
| case 236: |
| |
| { |
| if (context->boolErrorCheck((yyvsp[(8) - (8)].lex).line, (yyvsp[(6) - (8)].interm.intermTypedNode))) |
| context->recover(); |
| |
| (yyval.interm.intermNode) = context->intermediate.addLoop(ELoopDoWhile, 0, (yyvsp[(6) - (8)].interm.intermTypedNode), 0, (yyvsp[(3) - (8)].interm.intermNode), (yyvsp[(4) - (8)].lex).line); |
| --context->loopNestingLevel; |
| } |
| break; |
| |
| case 237: |
| |
| { context->symbolTable.push(); ++context->loopNestingLevel; } |
| break; |
| |
| case 238: |
| |
| { |
| context->symbolTable.pop(); |
| (yyval.interm.intermNode) = context->intermediate.addLoop(ELoopFor, (yyvsp[(4) - (7)].interm.intermNode), reinterpret_cast<TIntermTyped*>((yyvsp[(5) - (7)].interm.nodePair).node1), reinterpret_cast<TIntermTyped*>((yyvsp[(5) - (7)].interm.nodePair).node2), (yyvsp[(7) - (7)].interm.intermNode), (yyvsp[(1) - (7)].lex).line); |
| --context->loopNestingLevel; |
| } |
| break; |
| |
| case 239: |
| |
| { |
| (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); |
| } |
| break; |
| |
| case 240: |
| |
| { |
| (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); |
| } |
| break; |
| |
| case 241: |
| |
| { |
| (yyval.interm.intermTypedNode) = (yyvsp[(1) - (1)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 242: |
| |
| { |
| (yyval.interm.intermTypedNode) = 0; |
| } |
| break; |
| |
| case 243: |
| |
| { |
| (yyval.interm.nodePair).node1 = (yyvsp[(1) - (2)].interm.intermTypedNode); |
| (yyval.interm.nodePair).node2 = 0; |
| } |
| break; |
| |
| case 244: |
| |
| { |
| (yyval.interm.nodePair).node1 = (yyvsp[(1) - (3)].interm.intermTypedNode); |
| (yyval.interm.nodePair).node2 = (yyvsp[(3) - (3)].interm.intermTypedNode); |
| } |
| break; |
| |
| case 245: |
| |
| { |
| if (context->loopNestingLevel <= 0) { |
| context->error((yyvsp[(1) - (2)].lex).line, "continue statement only allowed in loops", ""); |
| context->recover(); |
| } |
| (yyval.interm.intermNode) = context->intermediate.addBranch(EOpContinue, (yyvsp[(1) - (2)].lex).line); |
| } |
| break; |
| |
| case 246: |
| |
| { |
| if (context->loopNestingLevel <= 0) { |
| context->error((yyvsp[(1) - (2)].lex).line, "break statement only allowed in loops", ""); |
| context->recover(); |
| } |
| (yyval.interm.intermNode) = context->intermediate.addBranch(EOpBreak, (yyvsp[(1) - (2)].lex).line); |
| } |
| break; |
| |
| case 247: |
| |
| { |
| (yyval.interm.intermNode) = context->intermediate.addBranch(EOpReturn, (yyvsp[(1) - (2)].lex).line); |
| if (context->currentFunctionType->getBasicType() != EbtVoid) { |
| context->error((yyvsp[(1) - (2)].lex).line, "non-void function must return a value", "return"); |
| context->recover(); |
| } |
| } |
| break; |
| |
| case 248: |
| |
| { |
| (yyval.interm.intermNode) = context->intermediate.addBranch(EOpReturn, (yyvsp[(2) - (3)].interm.intermTypedNode), (yyvsp[(1) - (3)].lex).line); |
| context->functionReturnsValue = true; |
| if (context->currentFunctionType->getBasicType() == EbtVoid) { |
| context->error((yyvsp[(1) - (3)].lex).line, "void function cannot return a value", "return"); |
| context->recover(); |
| } else if (*(context->currentFunctionType) != (yyvsp[(2) - (3)].interm.intermTypedNode)->getType()) { |
| context->error((yyvsp[(1) - (3)].lex).line, "function return is not matching type:", "return"); |
| context->recover(); |
| } |
| } |
| break; |
| |
| case 249: |
| |
| { |
| FRAG_ONLY("discard", (yyvsp[(1) - (2)].lex).line); |
| (yyval.interm.intermNode) = context->intermediate.addBranch(EOpKill, (yyvsp[(1) - (2)].lex).line); |
| } |
| break; |
| |
| case 250: |
| |
| { |
| (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); |
| context->treeRoot = (yyval.interm.intermNode); |
| } |
| break; |
| |
| case 251: |
| |
| { |
| (yyval.interm.intermNode) = context->intermediate.growAggregate((yyvsp[(1) - (2)].interm.intermNode), (yyvsp[(2) - (2)].interm.intermNode), 0); |
| context->treeRoot = (yyval.interm.intermNode); |
| } |
| break; |
| |
| case 252: |
| |
| { |
| (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); |
| } |
| break; |
| |
| case 253: |
| |
| { |
| (yyval.interm.intermNode) = (yyvsp[(1) - (1)].interm.intermNode); |
| } |
| break; |
| |
| case 254: |
| |
| { |
| TFunction* function = (yyvsp[(1) - (1)].interm).function; |
| |
| const TSymbol *builtIn = context->symbolTable.findBuiltIn(function->getMangledName(), context->shaderVersion); |
| |
| if (builtIn) |
| { |
| context->error((yyvsp[(1) - (1)].interm).line, "built-in functions cannot be redefined", function->getName().c_str()); |
| context->recover(); |
| } |
| |
| TFunction* prevDec = static_cast<TFunction*>(context->symbolTable.find(function->getMangledName(), context->shaderVersion)); |
| // |
| // Note: 'prevDec' could be 'function' if this is the first time we've seen function |
| // as it would have just been put in the symbol table. Otherwise, we're looking up |
| // an earlier occurance. |
| // |
| if (prevDec->isDefined()) { |
| // |
| // Then this function already has a body. |
| // |
| context->error((yyvsp[(1) - (1)].interm).line, "function already has a body", function->getName().c_str()); |
| context->recover(); |
| } |
| prevDec->setDefined(); |
| |
| // |
| // Raise error message if main function takes any parameters or return anything other than void |
| // |
| if (function->getName() == "main") { |
| if (function->getParamCount() > 0) { |
| context->error((yyvsp[(1) - (1)].interm).line, "function cannot take any parameter(s)", function->getName().c_str()); |
| context->recover(); |
| } |
| if (function->getReturnType().getBasicType() != EbtVoid) { |
| context->error((yyvsp[(1) - (1)].interm).line, "", function->getReturnType().getBasicString(), "main function cannot return a value"); |
| context->recover(); |
| } |
| } |
| |
| // |
| // Remember the return type for later checking for RETURN statements. |
| // |
| context->currentFunctionType = &(prevDec->getReturnType()); |
| context->functionReturnsValue = false; |
| |
| // |
| // Insert parameters into the symbol table. |
| // If the parameter has no name, it's not an error, just don't insert it |
| // (could be used for unused args). |
| // |
| // Also, accumulate the list of parameters into the HIL, so lower level code |
| // knows where to find parameters. |
| // |
| TIntermAggregate* paramNodes = new TIntermAggregate; |
| for (int i = 0; i < function->getParamCount(); i++) { |
| const TParameter& param = function->getParam(i); |
| if (param.name != 0) { |
| TVariable *variable = new TVariable(param.name, *param.type); |
| // |
| // Insert the parameters with name in the symbol table. |
| // |
| if (! context->symbolTable.declare(*variable)) { |
| context->error((yyvsp[(1) - (1)].interm).line, "redefinition", variable->getName().c_str()); |
| context->recover(); |
| delete variable; |
| } |
| |
| // |
| // Add the parameter to the HIL |
| // |
| paramNodes = context->intermediate.growAggregate( |
| paramNodes, |
| context->intermediate.addSymbol(variable->getUniqueId(), |
| variable->getName(), |
| variable->getType(), (yyvsp[(1) - (1)].interm).line), |
| (yyvsp[(1) - (1)].interm).line); |
| } else { |
| paramNodes = context->intermediate.growAggregate(paramNodes, context->intermediate.addSymbol(0, "", *param.type, (yyvsp[(1) - (1)].interm).line), (yyvsp[(1) - (1)].interm).line); |
| } |
| } |
| context->intermediate.setAggregateOperator(paramNodes, EOpParameters, (yyvsp[(1) - (1)].interm).line); |
| (yyvsp[(1) - (1)].interm).intermAggregate = paramNodes; |
| context->loopNestingLevel = 0; |
| } |
| break; |
| |
| case 255: |
| |
| { |
| //?? Check that all paths return a value if return type != void ? |
| // May be best done as post process phase on intermediate code |
| if (context->currentFunctionType->getBasicType() != EbtVoid && ! context->functionReturnsValue) { |
| context->error((yyvsp[(1) - (3)].interm).line, "function does not return a value:", "", (yyvsp[(1) - (3)].interm).function->getName().c_str()); |
| context->recover(); |
| } |
| |
| (yyval.interm.intermNode) = context->intermediate.growAggregate((yyvsp[(1) - (3)].interm).intermAggregate, (yyvsp[(3) - (3)].interm.intermNode), 0); |
| context->intermediate.setAggregateOperator((yyval.interm.intermNode), EOpFunction, (yyvsp[(1) - (3)].interm).line); |
| (yyval.interm.intermNode)->getAsAggregate()->setName((yyvsp[(1) - (3)].interm).function->getMangledName().c_str()); |
| (yyval.interm.intermNode)->getAsAggregate()->setType((yyvsp[(1) - (3)].interm).function->getReturnType()); |
| |
| // store the pragma information for debug and optimize and other vendor specific |
| // information. This information can be queried from the parse tree |
| (yyval.interm.intermNode)->getAsAggregate()->setOptimize(context->pragma().optimize); |
| (yyval.interm.intermNode)->getAsAggregate()->setDebug(context->pragma().debug); |
| |
| if ((yyvsp[(3) - (3)].interm.intermNode) && (yyvsp[(3) - (3)].interm.intermNode)->getAsAggregate()) |
| (yyval.interm.intermNode)->getAsAggregate()->setEndLine((yyvsp[(3) - (3)].interm.intermNode)->getAsAggregate()->getEndLine()); |
| |
| context->symbolTable.pop(); |
| } |
| break; |
| |
| |
| |
| default: break; |
| } |
| YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); |
| |
| YYPOPSTACK (yylen); |
| yylen = 0; |
| YY_STACK_PRINT (yyss, yyssp); |
| |
| *++yyvsp = yyval; |
| |
| /* Now `shift' the result of the reduction. Determine what state |
| that goes to, based on the state we popped back to and the rule |
| number reduced by. */ |
| |
| yyn = yyr1[yyn]; |
| |
| yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; |
| if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) |
| yystate = yytable[yystate]; |
| else |
| yystate = yydefgoto[yyn - YYNTOKENS]; |
| |
| goto yynewstate; |
| |
| |
| /*------------------------------------. |
| | yyerrlab -- here on detecting error | |
| `------------------------------------*/ |
| yyerrlab: |
| /* If not already recovering from an error, report this error. */ |
| if (!yyerrstatus) |
| { |
| ++yynerrs; |
| #if ! YYERROR_VERBOSE |
| yyerror (context, YY_("syntax error")); |
| #else |
| { |
| YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); |
| if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) |
| { |
| YYSIZE_T yyalloc = 2 * yysize; |
| if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) |
| yyalloc = YYSTACK_ALLOC_MAXIMUM; |
| if (yymsg != yymsgbuf) |
| YYSTACK_FREE (yymsg); |
| yymsg = (char *) YYSTACK_ALLOC (yyalloc); |
| if (yymsg) |
| yymsg_alloc = yyalloc; |
| else |
| { |
| yymsg = yymsgbuf; |
| yymsg_alloc = sizeof yymsgbuf; |
| } |
| } |
| |
| if (0 < yysize && yysize <= yymsg_alloc) |
| { |
| (void) yysyntax_error (yymsg, yystate, yychar); |
| yyerror (context, yymsg); |
| } |
| else |
| { |
| yyerror (context, YY_("syntax error")); |
| if (yysize != 0) |
| goto yyexhaustedlab; |
| } |
| } |
| #endif |
| } |
| |
| |
| |
| if (yyerrstatus == 3) |
| { |
| /* If just tried and failed to reuse lookahead token after an |
| error, discard it. */ |
| |
| if (yychar <= YYEOF) |
| { |
| /* Return failure if at end of input. */ |
| if (yychar == YYEOF) |
| YYABORT; |
| } |
| else |
| { |
| yydestruct ("Error: discarding", |
| yytoken, &yylval, context); |
| yychar = YYEMPTY; |
| } |
| } |
| |
| /* Else will try to reuse lookahead token after shifting the error |
| token. */ |
| goto yyerrlab1; |
| |
| |
| /*---------------------------------------------------. |
| | yyerrorlab -- error raised explicitly by YYERROR. | |
| `---------------------------------------------------*/ |
| yyerrorlab: |
| |
| /* Pacify compilers like GCC when the user code never invokes |
| YYERROR and the label yyerrorlab therefore never appears in user |
| code. */ |
| if (/*CONSTCOND*/ 0) |
| goto yyerrorlab; |
| |
| /* Do not reclaim the symbols of the rule which action triggered |
| this YYERROR. */ |
| YYPOPSTACK (yylen); |
| yylen = 0; |
| YY_STACK_PRINT (yyss, yyssp); |
| yystate = *yyssp; |
| goto yyerrlab1; |
| |
| |
| /*-------------------------------------------------------------. |
| | yyerrlab1 -- common code for both syntax error and YYERROR. | |
| `-------------------------------------------------------------*/ |
| yyerrlab1: |
| yyerrstatus = 3; /* Each real token shifted decrements this. */ |
| |
| for (;;) |
| { |
| yyn = yypact[yystate]; |
| if (yyn != YYPACT_NINF) |
| { |
| yyn += YYTERROR; |
| if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) |
| { |
| yyn = yytable[yyn]; |
| if (0 < yyn) |
| break; |
| } |
| } |
| |
| /* Pop the current state because it cannot handle the error token. */ |
| if (yyssp == yyss) |
| YYABORT; |
| |
| |
| yydestruct ("Error: popping", |
| yystos[yystate], yyvsp, context); |
| YYPOPSTACK (1); |
| yystate = *yyssp; |
| YY_STACK_PRINT (yyss, yyssp); |
| } |
| |
| *++yyvsp = yylval; |
| |
| |
| /* Shift the error token. */ |
| YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); |
| |
| yystate = yyn; |
| goto yynewstate; |
| |
| |
| /*-------------------------------------. |
| | yyacceptlab -- YYACCEPT comes here. | |
| `-------------------------------------*/ |
| yyacceptlab: |
| yyresult = 0; |
| goto yyreturn; |
| |
| /*-----------------------------------. |
| | yyabortlab -- YYABORT comes here. | |
| `-----------------------------------*/ |
| yyabortlab: |
| yyresult = 1; |
| goto yyreturn; |
| |
| #if !defined(yyoverflow) || YYERROR_VERBOSE |
| /*-------------------------------------------------. |
| | yyexhaustedlab -- memory exhaustion comes here. | |
| `-------------------------------------------------*/ |
| yyexhaustedlab: |
| yyerror (context, YY_("memory exhausted")); |
| yyresult = 2; |
| /* Fall through. */ |
| #endif |
| |
| yyreturn: |
| if (yychar != YYEMPTY) |
| yydestruct ("Cleanup: discarding lookahead", |
| yytoken, &yylval, context); |
| /* Do not reclaim the symbols of the rule which action triggered |
| this YYABORT or YYACCEPT. */ |
| YYPOPSTACK (yylen); |
| YY_STACK_PRINT (yyss, yyssp); |
| while (yyssp != yyss) |
| { |
| yydestruct ("Cleanup: popping", |
| yystos[*yyssp], yyvsp, context); |
| YYPOPSTACK (1); |
| } |
| #ifndef yyoverflow |
| if (yyss != yyssa) |
| YYSTACK_FREE (yyss); |
| #endif |
| #if YYERROR_VERBOSE |
| if (yymsg != yymsgbuf) |
| YYSTACK_FREE (yymsg); |
| #endif |
| /* Make sure YYID is used. */ |
| return YYID (yyresult); |
| } |
| |
| |
| |
| |
| |
| int glslang_parse(TParseContext* context) { |
| return yyparse(context); |
| } |
| |