/* A Bison parser, made by GNU Bison 3.0.2. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "3.0.2" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 1 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Substitute the variable and function names. */ #define yyparse _mesa_glsl_parse #define yylex _mesa_glsl_lex #define yyerror _mesa_glsl_error #define yydebug _mesa_glsl_debug #define yynerrs _mesa_glsl_nerrs /* Copy the first part of user declarations. */ #line 1 "glsl_parser.yy" /* yacc.c:339 */ /* * Copyright © 2008, 2009 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include "ast.h" #include "glsl_parser_extras.h" #include "glsl_types.h" #include "main/context.h" #undef yyerror static void yyerror(YYLTYPE *loc, _mesa_glsl_parse_state *st, const char *msg) { _mesa_glsl_error(loc, st, "%s", msg); } static int _mesa_glsl_lex(YYSTYPE *val, YYLTYPE *loc, _mesa_glsl_parse_state *state) { return _mesa_glsl_lexer_lex(val, loc, state->scanner); } static bool match_layout_qualifier(const char *s1, const char *s2, _mesa_glsl_parse_state *state) { /* From the GLSL 1.50 spec, section 4.3.8 (Layout Qualifiers): * * "The tokens in any layout-qualifier-id-list ... are not case * sensitive, unless explicitly noted otherwise." * * The text "unless explicitly noted otherwise" appears to be * vacuous--no desktop GLSL spec (up through GLSL 4.40) notes * otherwise. * * However, the GLSL ES 3.00 spec says, in section 4.3.8 (Layout * Qualifiers): * * "As for other identifiers, they are case sensitive." * * So we need to do a case-sensitive or a case-insensitive match, * depending on whether we are compiling for GLSL ES. */ if (state->es_shader) return strcmp(s1, s2); else return strcasecmp(s1, s2); } #line 145 "glsl_parser.cpp" /* yacc.c:339 */ # ifndef YY_NULLPTR # if defined __cplusplus && 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 1 #endif /* In a future release of Bison, this section will be replaced by #include "glsl_parser.h". */ #ifndef YY__MESA_GLSL_SRC_GLSL_GLSL_PARSER_H_INCLUDED # define YY__MESA_GLSL_SRC_GLSL_GLSL_PARSER_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int _mesa_glsl_debug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { ATTRIBUTE = 258, CONST_TOK = 259, BOOL_TOK = 260, FLOAT_TOK = 261, INT_TOK = 262, UINT_TOK = 263, BREAK = 264, CONTINUE = 265, DO = 266, ELSE = 267, FOR = 268, IF = 269, DISCARD = 270, RETURN = 271, SWITCH = 272, CASE = 273, DEFAULT = 274, BVEC2 = 275, BVEC3 = 276, BVEC4 = 277, IVEC2 = 278, IVEC3 = 279, IVEC4 = 280, UVEC2 = 281, UVEC3 = 282, UVEC4 = 283, VEC2 = 284, VEC3 = 285, VEC4 = 286, CENTROID = 287, IN_TOK = 288, OUT_TOK = 289, INOUT_TOK = 290, UNIFORM = 291, VARYING = 292, SAMPLE = 293, NOPERSPECTIVE = 294, FLAT = 295, SMOOTH = 296, MAT2X2 = 297, MAT2X3 = 298, MAT2X4 = 299, MAT3X2 = 300, MAT3X3 = 301, MAT3X4 = 302, MAT4X2 = 303, MAT4X3 = 304, MAT4X4 = 305, SAMPLER1D = 306, SAMPLER2D = 307, SAMPLER3D = 308, SAMPLERCUBE = 309, SAMPLER1DSHADOW = 310, SAMPLER2DSHADOW = 311, SAMPLERCUBESHADOW = 312, SAMPLER1DARRAY = 313, SAMPLER2DARRAY = 314, SAMPLER1DARRAYSHADOW = 315, SAMPLER2DARRAYSHADOW = 316, SAMPLERCUBEARRAY = 317, SAMPLERCUBEARRAYSHADOW = 318, ISAMPLER1D = 319, ISAMPLER2D = 320, ISAMPLER3D = 321, ISAMPLERCUBE = 322, ISAMPLER1DARRAY = 323, ISAMPLER2DARRAY = 324, ISAMPLERCUBEARRAY = 325, USAMPLER1D = 326, USAMPLER2D = 327, USAMPLER3D = 328, USAMPLERCUBE = 329, USAMPLER1DARRAY = 330, USAMPLER2DARRAY = 331, USAMPLERCUBEARRAY = 332, SAMPLER2DRECT = 333, ISAMPLER2DRECT = 334, USAMPLER2DRECT = 335, SAMPLER2DRECTSHADOW = 336, SAMPLERBUFFER = 337, ISAMPLERBUFFER = 338, USAMPLERBUFFER = 339, SAMPLER2DMS = 340, ISAMPLER2DMS = 341, USAMPLER2DMS = 342, SAMPLER2DMSARRAY = 343, ISAMPLER2DMSARRAY = 344, USAMPLER2DMSARRAY = 345, SAMPLEREXTERNALOES = 346, IMAGE1D = 347, IMAGE2D = 348, IMAGE3D = 349, IMAGE2DRECT = 350, IMAGECUBE = 351, IMAGEBUFFER = 352, IMAGE1DARRAY = 353, IMAGE2DARRAY = 354, IMAGECUBEARRAY = 355, IMAGE2DMS = 356, IMAGE2DMSARRAY = 357, IIMAGE1D = 358, IIMAGE2D = 359, IIMAGE3D = 360, IIMAGE2DRECT = 361, IIMAGECUBE = 362, IIMAGEBUFFER = 363, IIMAGE1DARRAY = 364, IIMAGE2DARRAY = 365, IIMAGECUBEARRAY = 366, IIMAGE2DMS = 367, IIMAGE2DMSARRAY = 368, UIMAGE1D = 369, UIMAGE2D = 370, UIMAGE3D = 371, UIMAGE2DRECT = 372, UIMAGECUBE = 373, UIMAGEBUFFER = 374, UIMAGE1DARRAY = 375, UIMAGE2DARRAY = 376, UIMAGECUBEARRAY = 377, UIMAGE2DMS = 378, UIMAGE2DMSARRAY = 379, IMAGE1DSHADOW = 380, IMAGE2DSHADOW = 381, IMAGE1DARRAYSHADOW = 382, IMAGE2DARRAYSHADOW = 383, COHERENT = 384, VOLATILE = 385, RESTRICT = 386, READONLY = 387, WRITEONLY = 388, ATOMIC_UINT = 389, STRUCT = 390, VOID_TOK = 391, WHILE = 392, IDENTIFIER = 393, TYPE_IDENTIFIER = 394, NEW_IDENTIFIER = 395, FLOATCONSTANT = 396, INTCONSTANT = 397, UINTCONSTANT = 398, BOOLCONSTANT = 399, FIELD_SELECTION = 400, LEFT_OP = 401, RIGHT_OP = 402, INC_OP = 403, DEC_OP = 404, LE_OP = 405, GE_OP = 406, EQ_OP = 407, NE_OP = 408, AND_OP = 409, OR_OP = 410, XOR_OP = 411, MUL_ASSIGN = 412, DIV_ASSIGN = 413, ADD_ASSIGN = 414, MOD_ASSIGN = 415, LEFT_ASSIGN = 416, RIGHT_ASSIGN = 417, AND_ASSIGN = 418, XOR_ASSIGN = 419, OR_ASSIGN = 420, SUB_ASSIGN = 421, INVARIANT = 422, PRECISE = 423, LOWP = 424, MEDIUMP = 425, HIGHP = 426, SUPERP = 427, PRECISION = 428, VERSION_TOK = 429, EXTENSION = 430, LINE = 431, COLON = 432, EOL = 433, INTERFACE = 434, OUTPUT = 435, PRAGMA_DEBUG_ON = 436, PRAGMA_DEBUG_OFF = 437, PRAGMA_OPTIMIZE_ON = 438, PRAGMA_OPTIMIZE_OFF = 439, PRAGMA_INVARIANT_ALL = 440, LAYOUT_TOK = 441, ASM = 442, CLASS = 443, UNION = 444, ENUM = 445, TYPEDEF = 446, TEMPLATE = 447, THIS = 448, PACKED_TOK = 449, GOTO = 450, INLINE_TOK = 451, NOINLINE = 452, PUBLIC_TOK = 453, STATIC = 454, EXTERN = 455, EXTERNAL = 456, LONG_TOK = 457, SHORT_TOK = 458, DOUBLE_TOK = 459, HALF = 460, FIXED_TOK = 461, UNSIGNED = 462, INPUT_TOK = 463, OUPTUT = 464, HVEC2 = 465, HVEC3 = 466, HVEC4 = 467, DVEC2 = 468, DVEC3 = 469, DVEC4 = 470, FVEC2 = 471, FVEC3 = 472, FVEC4 = 473, SAMPLER3DRECT = 474, SIZEOF = 475, CAST = 476, NAMESPACE = 477, USING = 478, RESOURCE = 479, PATCH = 480, SUBROUTINE = 481, ERROR_TOK = 482, COMMON = 483, PARTITION = 484, ACTIVE = 485, FILTER = 486, ROW_MAJOR = 487, THEN = 488 }; #endif /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE YYSTYPE; union YYSTYPE { #line 91 "glsl_parser.yy" /* yacc.c:355 */ int n; float real; const char *identifier; struct ast_type_qualifier type_qualifier; ast_node *node; ast_type_specifier *type_specifier; ast_array_specifier *array_specifier; ast_fully_specified_type *fully_specified_type; ast_function *function; ast_parameter_declarator *parameter_declarator; ast_function_definition *function_definition; ast_compound_statement *compound_statement; ast_expression *expression; ast_declarator_list *declarator_list; ast_struct_specifier *struct_specifier; ast_declaration *declaration; ast_switch_body *switch_body; ast_case_label *case_label; ast_case_label_list *case_label_list; ast_case_statement *case_statement; ast_case_statement_list *case_statement_list; ast_interface_block *interface_block; struct { ast_node *cond; ast_expression *rest; } for_rest_statement; struct { ast_node *then_statement; ast_node *else_statement; } selection_rest_statement; #line 456 "glsl_parser.cpp" /* yacc.c:355 */ }; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif /* Location type. */ #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED typedef struct YYLTYPE YYLTYPE; struct YYLTYPE { int first_line; int first_column; int last_line; int last_column; }; # define YYLTYPE_IS_DECLARED 1 # define YYLTYPE_IS_TRIVIAL 1 #endif int _mesa_glsl_parse (struct _mesa_glsl_parse_state *state); #endif /* !YY__MESA_GLSL_SRC_GLSL_GLSL_PARSER_H_INCLUDED */ /* Copy the second part of user declarations. */ #line 484 "glsl_parser.cpp" /* yacc.c:358 */ #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE # if (defined __GNUC__ \ && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C # define YY_ATTRIBUTE(Spec) __attribute__(Spec) # else # define YY_ATTRIBUTE(Spec) /* empty */ # endif #endif #ifndef YY_ATTRIBUTE_PURE # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) #endif #ifndef YY_ATTRIBUTE_UNUSED # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) #endif #if !defined _Noreturn \ && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) # if defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) #else # define YYUSE(E) /* empty */ #endif #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \ && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; YYLTYPE yyls_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \ + 2 * YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 5 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 5473 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 258 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 108 /* YYNRULES -- Number of rules. */ #define YYNRULES 385 /* YYNSTATES -- Number of states. */ #define YYNSTATES 539 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 488 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex, without out-of-bounds checking. */ static const yytype_uint16 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, 242, 2, 2, 2, 246, 249, 2, 234, 235, 244, 240, 239, 241, 238, 245, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 253, 255, 247, 254, 248, 252, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 236, 2, 237, 250, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 256, 251, 257, 243, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 295, 295, 294, 306, 308, 315, 325, 326, 327, 328, 329, 342, 344, 348, 349, 350, 354, 363, 371, 379, 390, 391, 395, 402, 409, 416, 423, 430, 437, 438, 444, 448, 455, 461, 470, 474, 478, 479, 488, 489, 493, 494, 498, 504, 516, 520, 526, 534, 545, 546, 550, 551, 555, 561, 573, 585, 586, 592, 598, 608, 609, 610, 611, 615, 616, 622, 628, 637, 638, 644, 653, 654, 660, 669, 670, 676, 682, 688, 697, 698, 704, 713, 714, 723, 724, 733, 734, 743, 744, 753, 754, 763, 764, 773, 774, 783, 784, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 807, 811, 827, 831, 836, 840, 845, 852, 856, 857, 861, 866, 874, 888, 898, 912, 917, 931, 934, 942, 950, 962, 975, 980, 985, 994, 998, 999, 1009, 1019, 1029, 1043, 1050, 1060, 1070, 1080, 1090, 1102, 1117, 1124, 1135, 1142, 1143, 1153, 1154, 1158, 1343, 1482, 1508, 1513, 1521, 1526, 1531, 1540, 1545, 1550, 1551, 1552, 1553, 1554, 1572, 1580, 1592, 1616, 1633, 1649, 1669, 1683, 1688, 1696, 1701, 1706, 1711, 1716, 1735, 1740, 1745, 1750, 1756, 1761, 1769, 1775, 1781, 1795, 1810, 1811, 1819, 1825, 1831, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1944, 1949, 1954, 1962, 1969, 1978, 1983, 1991, 2010, 2015, 2023, 2029, 2038, 2039, 2043, 2050, 2057, 2064, 2070, 2071, 2075, 2076, 2077, 2078, 2079, 2080, 2084, 2091, 2090, 2104, 2105, 2109, 2115, 2124, 2134, 2146, 2152, 2161, 2170, 2175, 2183, 2187, 2205, 2213, 2218, 2226, 2231, 2239, 2247, 2255, 2263, 2271, 2279, 2287, 2294, 2301, 2311, 2312, 2316, 2318, 2324, 2329, 2338, 2344, 2350, 2356, 2362, 2371, 2372, 2373, 2374, 2378, 2392, 2396, 2419, 2524, 2529, 2534, 2543, 2547, 2553, 2562, 2567, 2575, 2599, 2607, 2615 }; #endif #if YYDEBUG || YYERROR_VERBOSE || 1 /* 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", "ATTRIBUTE", "CONST_TOK", "BOOL_TOK", "FLOAT_TOK", "INT_TOK", "UINT_TOK", "BREAK", "CONTINUE", "DO", "ELSE", "FOR", "IF", "DISCARD", "RETURN", "SWITCH", "CASE", "DEFAULT", "BVEC2", "BVEC3", "BVEC4", "IVEC2", "IVEC3", "IVEC4", "UVEC2", "UVEC3", "UVEC4", "VEC2", "VEC3", "VEC4", "CENTROID", "IN_TOK", "OUT_TOK", "INOUT_TOK", "UNIFORM", "VARYING", "SAMPLE", "NOPERSPECTIVE", "FLAT", "SMOOTH", "MAT2X2", "MAT2X3", "MAT2X4", "MAT3X2", "MAT3X3", "MAT3X4", "MAT4X2", "MAT4X3", "MAT4X4", "SAMPLER1D", "SAMPLER2D", "SAMPLER3D", "SAMPLERCUBE", "SAMPLER1DSHADOW", "SAMPLER2DSHADOW", "SAMPLERCUBESHADOW", "SAMPLER1DARRAY", "SAMPLER2DARRAY", "SAMPLER1DARRAYSHADOW", "SAMPLER2DARRAYSHADOW", "SAMPLERCUBEARRAY", "SAMPLERCUBEARRAYSHADOW", "ISAMPLER1D", "ISAMPLER2D", "ISAMPLER3D", "ISAMPLERCUBE", "ISAMPLER1DARRAY", "ISAMPLER2DARRAY", "ISAMPLERCUBEARRAY", "USAMPLER1D", "USAMPLER2D", "USAMPLER3D", "USAMPLERCUBE", "USAMPLER1DARRAY", "USAMPLER2DARRAY", "USAMPLERCUBEARRAY", "SAMPLER2DRECT", "ISAMPLER2DRECT", "USAMPLER2DRECT", "SAMPLER2DRECTSHADOW", "SAMPLERBUFFER", "ISAMPLERBUFFER", "USAMPLERBUFFER", "SAMPLER2DMS", "ISAMPLER2DMS", "USAMPLER2DMS", "SAMPLER2DMSARRAY", "ISAMPLER2DMSARRAY", "USAMPLER2DMSARRAY", "SAMPLEREXTERNALOES", "IMAGE1D", "IMAGE2D", "IMAGE3D", "IMAGE2DRECT", "IMAGECUBE", "IMAGEBUFFER", "IMAGE1DARRAY", "IMAGE2DARRAY", "IMAGECUBEARRAY", "IMAGE2DMS", "IMAGE2DMSARRAY", "IIMAGE1D", "IIMAGE2D", "IIMAGE3D", "IIMAGE2DRECT", "IIMAGECUBE", "IIMAGEBUFFER", "IIMAGE1DARRAY", "IIMAGE2DARRAY", "IIMAGECUBEARRAY", "IIMAGE2DMS", "IIMAGE2DMSARRAY", "UIMAGE1D", "UIMAGE2D", "UIMAGE3D", "UIMAGE2DRECT", "UIMAGECUBE", "UIMAGEBUFFER", "UIMAGE1DARRAY", "UIMAGE2DARRAY", "UIMAGECUBEARRAY", "UIMAGE2DMS", "UIMAGE2DMSARRAY", "IMAGE1DSHADOW", "IMAGE2DSHADOW", "IMAGE1DARRAYSHADOW", "IMAGE2DARRAYSHADOW", "COHERENT", "VOLATILE", "RESTRICT", "READONLY", "WRITEONLY", "ATOMIC_UINT", "STRUCT", "VOID_TOK", "WHILE", "IDENTIFIER", "TYPE_IDENTIFIER", "NEW_IDENTIFIER", "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", "INVARIANT", "PRECISE", "LOWP", "MEDIUMP", "HIGHP", "SUPERP", "PRECISION", "VERSION_TOK", "EXTENSION", "LINE", "COLON", "EOL", "INTERFACE", "OUTPUT", "PRAGMA_DEBUG_ON", "PRAGMA_DEBUG_OFF", "PRAGMA_OPTIMIZE_ON", "PRAGMA_OPTIMIZE_OFF", "PRAGMA_INVARIANT_ALL", "LAYOUT_TOK", "ASM", "CLASS", "UNION", "ENUM", "TYPEDEF", "TEMPLATE", "THIS", "PACKED_TOK", "GOTO", "INLINE_TOK", "NOINLINE", "PUBLIC_TOK", "STATIC", "EXTERN", "EXTERNAL", "LONG_TOK", "SHORT_TOK", "DOUBLE_TOK", "HALF", "FIXED_TOK", "UNSIGNED", "INPUT_TOK", "OUPTUT", "HVEC2", "HVEC3", "HVEC4", "DVEC2", "DVEC3", "DVEC4", "FVEC2", "FVEC3", "FVEC4", "SAMPLER3DRECT", "SIZEOF", "CAST", "NAMESPACE", "USING", "RESOURCE", "PATCH", "SUBROUTINE", "ERROR_TOK", "COMMON", "PARTITION", "ACTIVE", "FILTER", "ROW_MAJOR", "THEN", "'('", "')'", "'['", "']'", "'.'", "','", "'+'", "'-'", "'!'", "'~'", "'*'", "'/'", "'%'", "'<'", "'>'", "'&'", "'^'", "'|'", "'?'", "':'", "'='", "';'", "'{'", "'}'", "$accept", "translation_unit", "$@1", "version_statement", "pragma_statement", "extension_statement_list", "any_identifier", "extension_statement", "external_declaration_list", "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", "method_call_generic", "method_call_header_no_parameters", "method_call_header_with_parameters", "method_call_header", "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_direction_qualifier", "parameter_type_specifier", "init_declarator_list", "single_declaration", "fully_specified_type", "layout_qualifier", "layout_qualifier_id_list", "integer_constant", "layout_qualifier_id", "interface_block_layout_qualifier", "interpolation_qualifier", "type_qualifier", "auxiliary_storage_qualifier", "storage_qualifier", "array_specifier", "type_specifier", "type_specifier_nonarray", "basic_type_specifier_nonarray", "precision_qualifier", "struct_specifier", "struct_declaration_list", "struct_declaration", "struct_declarator_list", "struct_declarator", "initializer", "initializer_list", "declaration_statement", "statement", "simple_statement", "compound_statement", "$@2", "statement_no_new_scope", "compound_statement_no_new_scope", "statement_list", "expression_statement", "selection_statement", "selection_rest_statement", "condition", "switch_statement", "switch_body", "case_label", "case_label_list", "case_statement", "case_statement_list", "iteration_statement", "for_init_statement", "conditionopt", "for_rest_statement", "jump_statement", "external_declaration", "function_definition", "interface_block", "basic_interface_block", "interface_qualifier", "instance_name_opt", "member_list", "member_declaration", "layout_defaults", YY_NULLPTR }; #endif # ifdef YYPRINT /* YYTOKNUM[NUM] -- (External) token number corresponding to the (internal) symbol number NUM (which must be that of a token). */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 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, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 40, 41, 91, 93, 46, 44, 43, 45, 33, 126, 42, 47, 37, 60, 62, 38, 94, 124, 63, 58, 61, 59, 123, 125 }; # endif #define YYPACT_NINF -394 #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-394))) #define YYTABLE_NINF -377 #define yytable_value_is_error(Yytable_value) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { -146, -108, 43, -394, -79, -394, -122, -394, -394, -394, -394, -85, 86, 4814, -394, -394, -76, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -28, -7, 2, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -117, -394, -394, 264, 264, -394, -394, -394, 58, -29, -26, -24, -19, 9, -104, -394, 4630, -394, -135, -52, -50, 11, -192, -394, 114, 313, 5107, 5334, 5107, 5107, -394, -41, -394, 5107, -394, -394, -394, -394, -394, 73, -394, 86, 4985, -37, -394, -394, -394, -394, -394, 5107, 5107, -394, 5107, -394, -394, -394, 5334, -394, -394, -394, -394, -394, -98, -394, -394, -394, 524, -394, -394, 32, 32, -394, -394, -394, 32, -394, 5334, 32, 32, 86, -394, 10, 15, -199, 29, -120, -115, -111, -394, -394, -394, -394, -394, -394, 3598, -15, -394, -23, 87, 86, 1275, -394, 4985, 14, -394, -394, -18, -113, -394, -394, 16, 17, 1973, 30, 36, 18, 3155, 40, 41, -394, -394, -394, -394, -394, 4002, 4002, 4002, -394, -394, -394, -394, -394, 20, -394, 44, -394, -61, -394, -394, -394, 31, -112, 4204, 49, -80, 4002, 12, -48, -77, -119, 46, 35, 39, 34, 126, 130, -101, -394, -394, -150, -394, 37, 5127, 57, -394, -394, -394, -394, 779, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, 86, -394, -394, -186, 2931, -178, -394, -394, -394, -394, -394, -394, -394, 62, -394, 3800, 4985, -394, -41, -145, -394, -394, -394, 1497, -394, 88, -394, -98, -394, -394, 157, 2468, 4002, -394, -394, -144, 4002, 3396, -394, -394, -94, -394, 1973, -394, -394, 4002, 114, -394, -394, 4002, 60, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, 4002, -394, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, -394, -394, -394, -41, 2931, -162, 2931, -394, -394, 2931, -394, -394, 69, 86, 50, 4985, -15, 86, -394, -394, -394, -394, -394, -394, 74, -394, -394, 3396, -70, -394, -69, 70, 86, 75, -394, 1034, 76, 70, -394, 78, -394, 79, -68, 4406, -394, -394, -394, -394, -394, 12, 12, -48, -48, -77, -77, -77, -77, -119, -119, 46, 35, 39, 34, 126, 130, -139, -394, -15, -394, 2931, -394, -149, -394, -394, -142, 178, -394, -394, 4002, -394, 64, 85, 1973, 65, 71, 2227, -394, -394, -394, -394, -394, 4002, 89, -394, 4002, -394, 2707, -394, -394, -41, 68, -67, 4002, 2227, 314, -394, -10, -394, 2931, -394, -394, -394, -394, -394, -394, -394, -15, -394, 72, 70, -394, 1973, 4002, 80, -394, -394, 1719, 1973, -6, -394, -394, -394, -136, -394, -394, -394, -394, -394, 1973, -394 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 4, 0, 0, 12, 0, 1, 2, 14, 15, 16, 5, 0, 0, 0, 13, 6, 0, 179, 178, 202, 199, 200, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 203, 204, 205, 176, 181, 182, 183, 180, 177, 161, 160, 159, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 230, 231, 233, 234, 235, 236, 237, 239, 240, 241, 242, 244, 245, 246, 247, 249, 250, 251, 253, 254, 255, 256, 258, 226, 243, 252, 232, 238, 248, 257, 259, 260, 261, 262, 263, 264, 229, 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, 184, 185, 186, 187, 188, 298, 0, 198, 197, 162, 163, 301, 300, 299, 0, 0, 0, 0, 0, 0, 0, 368, 3, 367, 0, 0, 118, 126, 0, 135, 140, 167, 166, 0, 164, 165, 147, 193, 195, 168, 196, 18, 366, 115, 371, 0, 369, 0, 0, 0, 181, 182, 183, 21, 22, 162, 163, 145, 167, 170, 146, 169, 0, 7, 8, 9, 10, 11, 0, 20, 19, 112, 0, 370, 116, 126, 126, 131, 132, 133, 126, 119, 0, 126, 126, 0, 113, 14, 16, 141, 0, 181, 182, 183, 172, 372, 171, 148, 173, 174, 0, 194, 175, 0, 0, 0, 0, 304, 0, 0, 158, 157, 154, 0, 150, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 24, 25, 27, 48, 0, 0, 0, 60, 61, 62, 63, 334, 326, 330, 23, 29, 56, 31, 36, 37, 0, 0, 42, 0, 64, 0, 68, 71, 74, 79, 82, 84, 86, 88, 90, 92, 94, 96, 109, 0, 316, 0, 167, 147, 319, 332, 318, 317, 0, 320, 321, 322, 323, 324, 120, 127, 128, 124, 125, 134, 129, 130, 136, 0, 142, 121, 384, 385, 383, 189, 64, 111, 0, 46, 0, 0, 17, 309, 0, 307, 303, 305, 0, 114, 0, 149, 0, 362, 361, 0, 0, 0, 365, 363, 0, 0, 0, 57, 58, 0, 325, 0, 33, 34, 0, 0, 40, 39, 0, 198, 43, 45, 99, 100, 102, 101, 104, 105, 106, 107, 108, 103, 98, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 331, 333, 122, 0, 137, 0, 311, 144, 0, 190, 191, 0, 0, 0, 380, 310, 0, 306, 302, 152, 153, 155, 151, 0, 356, 355, 358, 0, 364, 0, 339, 0, 0, 28, 0, 0, 35, 32, 0, 38, 0, 0, 52, 44, 97, 65, 66, 67, 69, 70, 72, 73, 77, 78, 75, 76, 80, 81, 83, 85, 87, 89, 91, 93, 0, 110, 123, 139, 0, 314, 0, 143, 192, 0, 377, 381, 308, 0, 357, 0, 0, 0, 0, 0, 0, 327, 30, 55, 50, 49, 0, 198, 53, 0, 138, 0, 312, 382, 378, 0, 0, 359, 0, 338, 336, 0, 341, 0, 329, 352, 328, 54, 95, 313, 315, 379, 373, 0, 360, 354, 0, 0, 0, 342, 346, 0, 350, 0, 340, 353, 337, 0, 345, 348, 347, 349, 343, 351, 344 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -394, -394, -394, -394, -394, -394, -1, 179, -394, -118, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, -394, 4942, -394, -143, -123, -181, -148, -62, -58, -56, -63, -60, -57, -394, -203, -245, -394, -242, 13, -3, 1, -394, -394, -394, -394, 140, 5, -394, -394, -394, -394, -171, -11, -394, -394, 19, -394, -394, -110, -394, -394, -211, -13, -394, -394, 7, -394, 109, -217, -64, -55, -370, -394, 21, -244, -393, -394, -394, -147, 205, 6, 22, -394, -394, -59, -394, -394, -166, -394, -165, -394, -394, -394, -394, -394, -394, 214, -394, -394, -152, -394, -394, -46, -394, -394 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 2, 13, 3, 148, 6, 330, 14, 149, 267, 268, 269, 435, 270, 271, 272, 273, 274, 275, 276, 439, 440, 441, 442, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 376, 292, 325, 293, 294, 152, 153, 154, 310, 208, 209, 210, 311, 155, 156, 157, 185, 240, 421, 241, 242, 159, 160, 161, 162, 228, 326, 164, 165, 166, 167, 233, 234, 331, 332, 407, 470, 297, 298, 299, 300, 354, 509, 510, 301, 302, 303, 504, 432, 304, 506, 524, 525, 526, 527, 305, 426, 479, 480, 306, 168, 169, 170, 171, 172, 499, 413, 414, 173 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_int16 yytable[] = { 163, 342, 158, 11, 232, 317, 222, 347, 521, 522, 150, 16, 521, 522, 151, 203, 334, 352, 184, 187, -374, 7, 8, 9, 324, -375, 186, 188, 1, -376, 363, 385, 386, 467, 4, 469, 203, 227, 471, 217, 7, 8, 9, 5, 204, 205, 206, 212, 221, 223, 227, 225, 226, 12, 396, 316, 229, 401, 327, 7, 8, 9, 232, 213, 232, 204, 205, 206, 403, 383, 384, 406, 186, 188, 327, 221, 408, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 355, 356, 398, 495, 508, 468, 15, 416, 398, 237, 416, 494, 10, 398, 174, 427, 398, 404, 399, 429, 430, 496, 508, 417, 428, -374, 497, 493, 436, 443, 538, 334, 415, 198, 199, 338, 360, 324, 514, 339, 361, 387, 388, 195, 444, 176, -375, 238, 319, 163, 528, 158, 175, 320, 433, -376, 222, 321, 398, 150, 224, 189, 190, 151, 397, 191, 465, 192, 464, 216, 412, 406, 193, 406, 211, 163, 406, 232, 481, 482, 489, 517, 398, 398, 490, 398, 231, 375, 357, 236, 358, 431, 207, 138, 139, 140, 201, 430, 221, 296, 194, 295, 202, 401, 466, 381, 382, 239, 227, 312, 492, 389, 390, 207, 138, 139, 140, 452, 453, 454, 455, 308, 211, 211, 315, 309, 230, 211, 313, 314, 211, 211, 235, 163, 327, 163, 406, 7, 8, 9, 138, 139, 140, 419, 420, 296, 328, 295, 500, 337, 503, 448, 449, 438, 456, 457, 412, -21, 511, -117, 523, 512, -22, 406, 536, 214, 8, 215, 431, 378, 379, 380, 518, 450, 451, 406, 318, 343, 329, 359, 17, 18, 336, 344, 340, 341, 345, 348, 349, 530, 353, -47, 531, 394, 533, 535, 364, 391, 393, 395, 515, 296, 392, 295, -46, 198, 535, 423, -41, 35, 177, 178, 409, 179, 39, 40, 41, 42, 43, 472, 474, 477, 398, 484, 402, 487, 486, 488, 163, 17, 18, 498, 501, 502, 505, 163, 516, -51, 507, 520, 529, 196, 458, 296, 461, 295, 532, 459, 462, 296, 460, 239, 463, 411, 296, 307, 295, 335, 35, 218, 219, 473, 220, 39, 40, 41, 42, 43, 519, 200, 437, 422, 534, 434, 476, 537, 197, 424, 425, 0, 478, 475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 128, 129, 130, 131, 0, 0, 0, 163, 180, 0, 181, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 0, 0, 0, 0, 0, 0, 296, 0, 295, 0, 0, 0, 0, 0, 0, 483, 182, 183, 138, 139, 140, 0, 0, 0, 0, 0, 0, 127, 128, 129, 130, 131, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 295, 296, 0, 295, 0, 0, 0, 0, 0, 0, 182, 183, 138, 139, 140, 0, 0, 0, 0, 296, 0, 295, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 296, 0, 295, 0, 0, 296, 296, 295, 295, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 295, 17, 18, 19, 20, 21, 22, 243, 244, 245, 0, 246, 247, 248, 249, 250, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 251, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 265, 266, 17, 18, 19, 20, 21, 22, 243, 244, 245, 0, 246, 247, 248, 249, 250, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 251, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 265, 400, 17, 18, 19, 20, 21, 22, 243, 244, 245, 0, 246, 247, 248, 249, 250, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 251, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 17, 18, 19, 20, 21, 22, 0, 0, 0, 0, 0, 264, 265, 485, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 177, 178, 0, 179, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 0, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 183, 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 177, 178, 333, 179, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 0, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 183, 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 19, 20, 21, 22, 243, 244, 245, 0, 246, 247, 248, 249, 250, 521, 522, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 418, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 251, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 265, 17, 18, 19, 20, 21, 22, 243, 244, 245, 0, 246, 247, 248, 249, 250, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 251, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 265, 17, 18, 19, 20, 21, 22, 243, 244, 245, 0, 246, 247, 248, 249, 250, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 251, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 17, 18, 19, 20, 21, 22, 0, 0, 0, 0, 0, 264, 199, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 264, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 405, 513, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 17, 18, 19, 20, 21, 22, 0, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 177, 178, 0, 179, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 183, 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 259, 0, 0, 322, 0, 0, 260, 261, 262, 263, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 259, 0, 0, 410, 0, 0, 260, 261, 262, 263, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 362, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 491, 0, 180, 135, 181, 252, 253, 254, 255, 256, 0, 0, 257, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 19, 20, 21, 22, 0, 259, 0, 0, 0, 0, 0, 260, 261, 262, 263, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 0, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 0, 12, 0, 0, 0, 0, 0, 142, 143, 144, 145, 146, 147, 17, 18, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 0, 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, 0, 0, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 0, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 137, 138, 139, 140, 0, 141, 17, 18, 19, 20, 21, 22, 0, 142, 143, 144, 145, 146, 147, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 177, 178, 0, 179, 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, 17, 18, 0, 0, 127, 128, 129, 130, 131, 132, 133, 134, 0, 0, 135, 0, 0, 0, 0, 0, 17, 18, 0, 0, 0, 0, 0, 0, 0, 35, 177, 178, 0, 179, 39, 40, 41, 42, 43, 0, 0, 0, 182, 183, 138, 139, 140, 0, 0, 35, 36, 37, 0, 38, 39, 40, 41, 42, 43, 323, 0, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 128, 129, 130, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 128, 129, 130, 131, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 0, 0, 182, 183, 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 182, 183, 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 0, 0, 445, 446, 447, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 19, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 0, 0, 135 }; static const yytype_int16 yycheck[] = { 13, 245, 13, 4, 175, 216, 158, 249, 18, 19, 13, 12, 18, 19, 13, 4, 233, 259, 136, 137, 140, 138, 139, 140, 227, 140, 136, 137, 174, 140, 275, 150, 151, 403, 142, 405, 4, 236, 408, 157, 138, 139, 140, 0, 33, 34, 35, 239, 158, 159, 236, 161, 162, 175, 155, 254, 166, 301, 236, 138, 139, 140, 233, 255, 235, 33, 34, 35, 254, 146, 147, 316, 182, 183, 236, 185, 254, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 148, 149, 239, 239, 484, 254, 178, 239, 239, 194, 239, 468, 178, 239, 177, 344, 239, 315, 255, 348, 349, 257, 502, 255, 255, 140, 255, 253, 357, 361, 253, 335, 330, 255, 256, 235, 235, 327, 495, 239, 239, 247, 248, 234, 376, 133, 140, 232, 255, 149, 507, 149, 256, 255, 235, 140, 295, 255, 239, 149, 160, 141, 178, 149, 252, 178, 398, 178, 397, 157, 328, 403, 178, 405, 154, 175, 408, 335, 235, 235, 235, 235, 239, 239, 239, 239, 174, 254, 236, 189, 238, 349, 168, 169, 170, 171, 235, 426, 295, 199, 178, 199, 239, 434, 402, 240, 241, 195, 236, 209, 442, 152, 153, 168, 169, 170, 171, 385, 386, 387, 388, 203, 202, 203, 212, 207, 140, 207, 210, 211, 210, 211, 256, 233, 236, 235, 468, 138, 139, 140, 169, 170, 171, 142, 143, 245, 256, 245, 477, 254, 481, 381, 382, 358, 389, 390, 414, 234, 490, 235, 257, 493, 234, 495, 257, 138, 139, 140, 426, 244, 245, 246, 501, 383, 384, 507, 234, 234, 178, 235, 3, 4, 255, 234, 255, 255, 255, 234, 234, 520, 257, 234, 521, 154, 525, 526, 234, 249, 251, 156, 498, 301, 250, 301, 234, 255, 537, 137, 235, 32, 33, 34, 237, 36, 37, 38, 39, 40, 41, 237, 257, 234, 239, 235, 312, 234, 237, 235, 328, 3, 4, 140, 255, 235, 256, 335, 255, 235, 254, 12, 255, 149, 391, 343, 394, 343, 253, 392, 395, 349, 393, 339, 396, 327, 354, 202, 354, 235, 32, 33, 34, 412, 36, 37, 38, 39, 40, 41, 502, 151, 358, 339, 525, 354, 416, 527, 149, 343, 343, -1, 426, 414, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, 131, 132, 133, -1, -1, -1, 414, 138, -1, 140, -1, -1, -1, -1, -1, -1, -1, -1, 426, -1, -1, -1, -1, -1, -1, -1, 434, -1, 434, -1, -1, -1, -1, -1, -1, 431, 167, 168, 169, 170, 171, -1, -1, -1, -1, -1, -1, 129, 130, 131, 132, 133, -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 481, -1, 481, 484, -1, 484, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, -1, -1, -1, 502, -1, 502, -1, -1, -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, -1, 520, -1, 520, -1, -1, 525, 526, 525, 526, -1, -1, -1, -1, -1, -1, -1, -1, 537, -1, 537, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 255, 256, 257, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 255, 256, 257, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 3, 4, 5, 6, 7, 8, -1, -1, -1, -1, -1, 255, 256, 257, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, -1, 139, -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, 167, 168, 169, 170, 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, 3, 4, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 257, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, -1, 139, -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, 167, 168, 169, 170, 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 257, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 255, 256, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 255, 256, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 16, 17, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 3, 4, 5, 6, 7, 8, -1, -1, -1, -1, -1, 255, 256, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -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, -1, -1, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, 255, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -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, 5, 6, 7, 8, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 256, 257, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -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, 5, 6, 7, 8, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 256, -1, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -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, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 3, 4, 5, 6, 7, 8, -1, -1, -1, -1, -1, 255, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 234, -1, -1, 237, -1, -1, 240, 241, 242, 243, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 234, -1, -1, 237, -1, -1, 240, 241, 242, 243, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, 148, 149, -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, -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, 3, 4, 5, 6, 7, 8, -1, 234, -1, -1, -1, -1, -1, 240, 241, 242, 243, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, -1, 139, -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, 167, 168, 169, 170, 171, -1, 173, -1, 175, -1, -1, -1, -1, -1, 181, 182, 183, 184, 185, 186, 3, 4, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, -1, -1, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, -1, 139, -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, 167, 168, 169, 170, 171, -1, 173, 3, 4, 5, 6, 7, 8, -1, 181, 182, 183, 184, 185, 186, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 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, 3, 4, -1, -1, 129, 130, 131, 132, 133, 134, 135, 136, -1, -1, 139, -1, -1, -1, -1, -1, 3, 4, -1, -1, -1, -1, -1, -1, -1, 32, 33, 34, -1, 36, 37, 38, 39, 40, 41, -1, -1, -1, 167, 168, 169, 170, 171, -1, -1, 32, 33, 34, -1, 36, 37, 38, 39, 40, 41, 227, -1, 186, -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, 257, 258, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 278, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, 131, 132, 133, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, 131, 132, 133, -1, -1, -1, -1, -1, -1, -1, -1, 327, -1, -1, -1, -1, 167, 168, 169, 170, 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, 167, 168, 169, 170, 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 5, 6, 7, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, -1, -1, 139 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 174, 259, 261, 142, 0, 263, 138, 139, 140, 178, 264, 175, 260, 265, 178, 264, 3, 4, 5, 6, 7, 8, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 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, 129, 130, 131, 132, 133, 134, 135, 136, 139, 167, 168, 169, 170, 171, 173, 181, 182, 183, 184, 185, 186, 262, 266, 300, 301, 302, 303, 304, 310, 311, 312, 313, 318, 319, 320, 321, 323, 324, 325, 326, 327, 357, 358, 359, 360, 361, 365, 177, 256, 264, 33, 34, 36, 138, 140, 167, 168, 267, 313, 319, 267, 319, 326, 178, 178, 178, 178, 178, 234, 265, 357, 255, 256, 340, 235, 239, 4, 33, 34, 35, 168, 306, 307, 308, 326, 239, 255, 138, 140, 264, 267, 33, 34, 36, 319, 360, 319, 323, 319, 319, 236, 322, 319, 140, 264, 312, 328, 329, 256, 323, 194, 232, 264, 314, 316, 317, 9, 10, 11, 13, 14, 15, 16, 17, 137, 141, 142, 143, 144, 145, 148, 149, 234, 240, 241, 242, 243, 255, 256, 257, 267, 268, 269, 271, 272, 273, 274, 275, 276, 277, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 298, 300, 301, 313, 323, 334, 335, 336, 337, 341, 342, 343, 346, 352, 356, 306, 307, 307, 305, 309, 323, 307, 307, 264, 254, 322, 234, 255, 255, 255, 237, 282, 295, 299, 323, 236, 256, 178, 264, 330, 331, 257, 329, 328, 255, 254, 235, 239, 255, 255, 335, 234, 234, 255, 255, 298, 234, 234, 282, 282, 298, 257, 338, 148, 149, 236, 238, 235, 235, 239, 136, 296, 234, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 254, 297, 282, 244, 245, 246, 240, 241, 146, 147, 150, 151, 247, 248, 152, 153, 249, 250, 251, 154, 156, 155, 252, 239, 255, 257, 335, 264, 254, 322, 256, 296, 332, 254, 237, 237, 299, 312, 363, 364, 322, 239, 255, 257, 142, 143, 315, 316, 137, 334, 342, 353, 298, 255, 298, 298, 312, 345, 235, 341, 270, 298, 264, 267, 278, 279, 280, 281, 296, 296, 282, 282, 282, 284, 284, 285, 285, 286, 286, 286, 286, 287, 287, 288, 289, 290, 291, 292, 293, 298, 296, 322, 332, 254, 332, 333, 332, 237, 330, 257, 363, 331, 234, 345, 354, 355, 235, 235, 264, 235, 257, 237, 234, 235, 235, 239, 136, 296, 253, 332, 239, 257, 255, 140, 362, 298, 255, 235, 335, 344, 256, 347, 254, 336, 339, 340, 296, 296, 257, 332, 322, 255, 235, 298, 339, 12, 18, 19, 257, 348, 349, 350, 351, 332, 255, 335, 298, 253, 335, 348, 335, 257, 350, 253 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 258, 260, 259, 261, 261, 261, 262, 262, 262, 262, 262, 263, 263, 264, 264, 264, 265, 266, 266, 266, 267, 267, 268, 268, 268, 268, 268, 268, 269, 269, 269, 269, 269, 269, 270, 271, 272, 272, 273, 273, 274, 274, 275, 275, 276, 277, 277, 277, 278, 278, 279, 279, 280, 280, 281, 282, 282, 282, 282, 283, 283, 283, 283, 284, 284, 284, 284, 285, 285, 285, 286, 286, 286, 287, 287, 287, 287, 287, 288, 288, 288, 289, 289, 290, 290, 291, 291, 292, 292, 293, 293, 294, 294, 295, 295, 296, 296, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 298, 298, 299, 300, 300, 300, 300, 301, 302, 302, 303, 303, 304, 305, 305, 306, 306, 307, 307, 307, 307, 307, 308, 308, 308, 309, 310, 310, 310, 310, 310, 311, 311, 311, 311, 311, 311, 311, 312, 312, 313, 314, 314, 315, 315, 316, 316, 316, 317, 317, 318, 318, 318, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 320, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 322, 322, 322, 322, 323, 323, 324, 324, 324, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 326, 326, 326, 327, 327, 328, 328, 329, 330, 330, 331, 331, 332, 332, 332, 333, 333, 334, 335, 335, 336, 336, 336, 336, 336, 336, 337, 338, 337, 339, 339, 340, 340, 341, 341, 342, 342, 343, 344, 344, 345, 345, 346, 347, 347, 348, 348, 349, 349, 350, 350, 351, 351, 352, 352, 352, 353, 353, 354, 354, 355, 355, 356, 356, 356, 356, 356, 357, 357, 357, 357, 358, 359, 359, 360, 361, 361, 361, 362, 362, 362, 363, 363, 364, 365, 365, 365 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 4, 0, 3, 4, 2, 2, 2, 2, 2, 0, 2, 1, 1, 1, 5, 1, 2, 2, 1, 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, 2, 2, 2, 1, 2, 3, 2, 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, 1, 2, 1, 1, 2, 3, 3, 2, 3, 2, 2, 0, 2, 2, 2, 2, 1, 1, 1, 1, 1, 3, 4, 6, 5, 1, 2, 3, 5, 4, 2, 2, 1, 2, 4, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 4, 1, 2, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 4, 1, 2, 3, 1, 3, 1, 2, 1, 3, 4, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 4, 1, 1, 2, 3, 1, 2, 1, 2, 5, 3, 1, 1, 4, 5, 2, 3, 3, 2, 1, 2, 2, 2, 1, 2, 5, 7, 6, 1, 1, 1, 0, 2, 3, 2, 2, 2, 3, 2, 1, 1, 1, 1, 2, 1, 2, 7, 1, 1, 1, 0, 1, 2, 1, 2, 3, 3, 3, 3 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (&yylloc, state, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Error token number */ #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (N) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (0) #endif #define YYRHSLOC(Rhs, K) ((Rhs)[K]) /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* YY_LOCATION_PRINT -- Print the location on the stream. This macro was not mandated originally: define only if we know we won't break user code: when these are the locations we know. */ #ifndef YY_LOCATION_PRINT # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL /* Print *YYLOCP on YYO. Private, do not rely on its existence. */ YY_ATTRIBUTE_UNUSED static unsigned yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp) { unsigned res = 0; int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; if (0 <= yylocp->first_line) { res += YYFPRINTF (yyo, "%d", yylocp->first_line); if (0 <= yylocp->first_column) res += YYFPRINTF (yyo, ".%d", yylocp->first_column); } if (0 <= yylocp->last_line) { if (yylocp->first_line < yylocp->last_line) { res += YYFPRINTF (yyo, "-%d", yylocp->last_line); if (0 <= end_col) res += YYFPRINTF (yyo, ".%d", end_col); } else if (0 <= end_col && yylocp->first_column < end_col) res += YYFPRINTF (yyo, "-%d", end_col); } return res; } # define YY_LOCATION_PRINT(File, Loc) \ yy_location_print_ (File, &(Loc)) # else # define YY_LOCATION_PRINT(File, Loc) ((void) 0) # endif #endif # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value, Location, state); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*----------------------------------------. | Print this symbol's value on YYOUTPUT. | `----------------------------------------*/ static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, struct _mesa_glsl_parse_state *state) { FILE *yyo = yyoutput; YYUSE (yyo); YYUSE (yylocationp); YYUSE (state); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # endif YYUSE (yytype); } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, struct _mesa_glsl_parse_state *state) { YYFPRINTF (yyoutput, "%s %s (", yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); YY_LOCATION_PRINT (yyoutput, *yylocationp); YYFPRINTF (yyoutput, ": "); yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp, state); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule, struct _mesa_glsl_parse_state *state) { unsigned long int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yystos[yyssp[yyi + 1 - yynrhs]], &(yyvsp[(yyi + 1) - (yynrhs)]) , &(yylsp[(yyi + 1) - (yynrhs)]) , state); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, yylsp, Rule, state); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ static YYSIZE_T yystrlen (const char *yystr) { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * yystpcpy (char *yydest, const char *yysrc) { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]); YYSIZE_T yysize = yysize0; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULLPTR; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; { YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } { YYSIZE_T yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp, struct _mesa_glsl_parse_state *state) { YYUSE (yyvaluep); YYUSE (yylocationp); YYUSE (state); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YYUSE (yytype); YY_IGNORE_MAYBE_UNINITIALIZED_END } /*----------. | yyparse. | `----------*/ int yyparse (struct _mesa_glsl_parse_state *state) { /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ /* Default value used for initialization, for pacifying older GCCs or non-GCC compilers. */ YY_INITIAL_VALUE (static YYSTYPE yyval_default;) YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default); /* Location data for the lookahead symbol. */ static YYLTYPE yyloc_default # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL = { 1, 1, 1, 1 } # endif ; YYLTYPE yylloc = yyloc_default; /* Number of syntax errors so far. */ int yynerrs; int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: 'yyss': related to states. 'yyvs': related to semantic values. 'yyls': related to locations. Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; /* The location stack. */ YYLTYPE yylsa[YYINITDEPTH]; YYLTYPE *yyls; YYLTYPE *yylsp; /* The locations where the error started and ended. */ YYLTYPE yyerror_range[3]; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken = 0; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; YYLTYPE yyloc; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yyssp = yyss = yyssa; yyvsp = yyvs = yyvsa; yylsp = yyls = yylsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* User initialization code. */ #line 80 "glsl_parser.yy" /* yacc.c:1429 */ { yylloc.first_line = 1; yylloc.first_column = 1; yylloc.last_line = 1; yylloc.last_column = 1; yylloc.source = 0; } #line 2996 "glsl_parser.cpp" /* yacc.c:1429 */ yylsp[0] = yylloc; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; YYLTYPE *yyls1 = yyls; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yyls1, yysize * sizeof (*yylsp), &yystacksize); yyls = yyls1; yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); YYSTACK_RELOCATE (yyls_alloc, yyls); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; yylsp = yyls + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = yylex (&yylval, &yylloc, state); } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END *++yylsp = yylloc; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; /* Default location. */ YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen); YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: #line 295 "glsl_parser.yy" /* yacc.c:1646 */ { _mesa_glsl_initialize_types(state); } #line 3187 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 3: #line 299 "glsl_parser.yy" /* yacc.c:1646 */ { delete state->symbols; state->symbols = new(ralloc_parent(state)) glsl_symbol_table; _mesa_glsl_initialize_types(state); } #line 3197 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 5: #line 309 "glsl_parser.yy" /* yacc.c:1646 */ { state->process_version_directive(&(yylsp[-1]), (yyvsp[-1].n), NULL); if (state->error) { YYERROR; } } #line 3208 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 6: #line 316 "glsl_parser.yy" /* yacc.c:1646 */ { state->process_version_directive(&(yylsp[-2]), (yyvsp[-2].n), (yyvsp[-1].identifier)); if (state->error) { YYERROR; } } #line 3219 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 11: #line 330 "glsl_parser.yy" /* yacc.c:1646 */ { if (!state->is_version(120, 100)) { _mesa_glsl_warning(& (yylsp[-1]), state, "pragma `invariant(all)' not supported in %s " "(GLSL ES 1.00 or GLSL 1.20 required)", state->get_version_string()); } else { state->all_invariant = true; } } #line 3234 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 17: #line 355 "glsl_parser.yy" /* yacc.c:1646 */ { if (!_mesa_glsl_process_extension((yyvsp[-3].identifier), & (yylsp[-3]), (yyvsp[-1].identifier), & (yylsp[-1]), state)) { YYERROR; } } #line 3244 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 18: #line 364 "glsl_parser.yy" /* yacc.c:1646 */ { /* FINISHME: The NULL test is required because pragmas are set to * FINISHME: NULL. (See production rule for external_declaration.) */ if ((yyvsp[0].node) != NULL) state->translation_unit.push_tail(& (yyvsp[0].node)->link); } #line 3256 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 19: #line 372 "glsl_parser.yy" /* yacc.c:1646 */ { /* FINISHME: The NULL test is required because pragmas are set to * FINISHME: NULL. (See production rule for external_declaration.) */ if ((yyvsp[0].node) != NULL) state->translation_unit.push_tail(& (yyvsp[0].node)->link); } #line 3268 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 20: #line 379 "glsl_parser.yy" /* yacc.c:1646 */ { if (!state->allow_extension_directive_midshader) { _mesa_glsl_error(& (yylsp[0]), state, "#extension directive is not allowed " "in the middle of a shader"); YYERROR; } } #line 3281 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 23: #line 396 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_identifier, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.identifier = (yyvsp[0].identifier); } #line 3292 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 24: #line 403 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_int_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.int_constant = (yyvsp[0].n); } #line 3303 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 25: #line 410 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_uint_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.uint_constant = (yyvsp[0].n); } #line 3314 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 26: #line 417 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_float_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.float_constant = (yyvsp[0].real); } #line 3325 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 27: #line 424 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_bool_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.bool_constant = (yyvsp[0].n); } #line 3336 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 28: #line 431 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-1].expression); } #line 3344 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 30: #line 439 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_array_index, (yyvsp[-3].expression), (yyvsp[-1].expression), NULL); (yyval.expression)->set_location_range((yylsp[-3]), (yylsp[0])); } #line 3354 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 31: #line 445 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[0].expression); } #line 3362 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 32: #line 449 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_field_selection, (yyvsp[-2].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); (yyval.expression)->primary_expression.identifier = (yyvsp[0].identifier); } #line 3373 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 33: #line 456 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_post_inc, (yyvsp[-1].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 3383 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 34: #line 462 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_post_dec, (yyvsp[-1].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 3393 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 38: #line 480 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_field_selection, (yyvsp[-2].expression), (yyvsp[0].expression), NULL); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3403 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 43: #line 499 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-1].expression); (yyval.expression)->set_location((yylsp[-1])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 3413 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 44: #line 505 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-2].expression); (yyval.expression)->set_location((yylsp[-2])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 3423 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 46: #line 521 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_function_expression((yyvsp[0].type_specifier)); (yyval.expression)->set_location((yylsp[0])); } #line 3433 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 47: #line 527 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_expression *callee = new(ctx) ast_expression((yyvsp[0].identifier)); callee->set_location((yylsp[0])); (yyval.expression) = new(ctx) ast_function_expression(callee); (yyval.expression)->set_location((yylsp[0])); } #line 3445 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 48: #line 535 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_expression *callee = new(ctx) ast_expression((yyvsp[0].identifier)); callee->set_location((yylsp[0])); (yyval.expression) = new(ctx) ast_function_expression(callee); (yyval.expression)->set_location((yylsp[0])); } #line 3457 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 53: #line 556 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-1].expression); (yyval.expression)->set_location((yylsp[-1])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 3467 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 54: #line 562 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-2].expression); (yyval.expression)->set_location((yylsp[-2])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 3477 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 55: #line 574 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_expression *callee = new(ctx) ast_expression((yyvsp[-1].identifier)); callee->set_location((yylsp[-1])); (yyval.expression) = new(ctx) ast_function_expression(callee); (yyval.expression)->set_location((yylsp[-1])); } #line 3489 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 57: #line 587 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_pre_inc, (yyvsp[0].expression), NULL, NULL); (yyval.expression)->set_location((yylsp[-1])); } #line 3499 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 58: #line 593 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_pre_dec, (yyvsp[0].expression), NULL, NULL); (yyval.expression)->set_location((yylsp[-1])); } #line 3509 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 59: #line 599 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression((yyvsp[-1].n), (yyvsp[0].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 3519 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 60: #line 608 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_plus; } #line 3525 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 61: #line 609 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_neg; } #line 3531 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 62: #line 610 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_logic_not; } #line 3537 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 63: #line 611 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_bit_not; } #line 3543 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 65: #line 617 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_mul, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3553 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 66: #line 623 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_div, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3563 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 67: #line 629 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_mod, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3573 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 69: #line 639 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_add, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3583 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 70: #line 645 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_sub, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3593 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 72: #line 655 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_lshift, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3603 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 73: #line 661 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_rshift, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3613 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 75: #line 671 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_less, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3623 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 76: #line 677 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_greater, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3633 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 77: #line 683 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_lequal, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3643 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 78: #line 689 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_gequal, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3653 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 80: #line 699 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_equal, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3663 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 81: #line 705 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_nequal, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3673 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 83: #line 715 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_bit_and, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3683 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 85: #line 725 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_bit_xor, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3693 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 87: #line 735 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_bit_or, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3703 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 89: #line 745 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_logic_and, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3713 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 91: #line 755 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_logic_xor, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3723 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 93: #line 765 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression_bin(ast_logic_or, (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3733 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 95: #line 775 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression(ast_conditional, (yyvsp[-4].expression), (yyvsp[-2].expression), (yyvsp[0].expression)); (yyval.expression)->set_location_range((yylsp[-4]), (yylsp[0])); } #line 3743 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 97: #line 785 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_expression((yyvsp[-1].n), (yyvsp[-2].expression), (yyvsp[0].expression), NULL); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 3753 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 98: #line 793 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_assign; } #line 3759 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 99: #line 794 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_mul_assign; } #line 3765 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 100: #line 795 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_div_assign; } #line 3771 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 101: #line 796 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_mod_assign; } #line 3777 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 102: #line 797 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_add_assign; } #line 3783 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 103: #line 798 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_sub_assign; } #line 3789 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 104: #line 799 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_ls_assign; } #line 3795 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 105: #line 800 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_rs_assign; } #line 3801 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 106: #line 801 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_and_assign; } #line 3807 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 107: #line 802 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_xor_assign; } #line 3813 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 108: #line 803 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = ast_or_assign; } #line 3819 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 109: #line 808 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[0].expression); } #line 3827 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 110: #line 812 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; if ((yyvsp[-2].expression)->oper != ast_sequence) { (yyval.expression) = new(ctx) ast_expression(ast_sequence, NULL, NULL, NULL); (yyval.expression)->set_location_range((yylsp[-2]), (yylsp[0])); (yyval.expression)->expressions.push_tail(& (yyvsp[-2].expression)->link); } else { (yyval.expression) = (yyvsp[-2].expression); } (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 3844 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 112: #line 832 "glsl_parser.yy" /* yacc.c:1646 */ { state->symbols->pop_scope(); (yyval.node) = (yyvsp[-1].function); } #line 3853 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 113: #line 837 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (yyvsp[-1].declarator_list); } #line 3861 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 114: #line 841 "glsl_parser.yy" /* yacc.c:1646 */ { (yyvsp[-1].type_specifier)->default_precision = (yyvsp[-2].n); (yyval.node) = (yyvsp[-1].type_specifier); } #line 3870 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 115: #line 846 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (yyvsp[0].node); } #line 3878 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 119: #line 862 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.function) = (yyvsp[-1].function); (yyval.function)->parameters.push_tail(& (yyvsp[0].parameter_declarator)->link); } #line 3887 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 120: #line 867 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.function) = (yyvsp[-2].function); (yyval.function)->parameters.push_tail(& (yyvsp[0].parameter_declarator)->link); } #line 3896 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 121: #line 875 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.function) = new(ctx) ast_function(); (yyval.function)->set_location((yylsp[-1])); (yyval.function)->return_type = (yyvsp[-2].fully_specified_type); (yyval.function)->identifier = (yyvsp[-1].identifier); state->symbols->add_function(new(state) ir_function((yyvsp[-1].identifier))); state->symbols->push_scope(); } #line 3911 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 122: #line 889 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.parameter_declarator) = new(ctx) ast_parameter_declarator(); (yyval.parameter_declarator)->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.parameter_declarator)->type = new(ctx) ast_fully_specified_type(); (yyval.parameter_declarator)->type->set_location((yylsp[-1])); (yyval.parameter_declarator)->type->specifier = (yyvsp[-1].type_specifier); (yyval.parameter_declarator)->identifier = (yyvsp[0].identifier); } #line 3925 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 123: #line 899 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.parameter_declarator) = new(ctx) ast_parameter_declarator(); (yyval.parameter_declarator)->set_location_range((yylsp[-2]), (yylsp[0])); (yyval.parameter_declarator)->type = new(ctx) ast_fully_specified_type(); (yyval.parameter_declarator)->type->set_location((yylsp[-2])); (yyval.parameter_declarator)->type->specifier = (yyvsp[-2].type_specifier); (yyval.parameter_declarator)->identifier = (yyvsp[-1].identifier); (yyval.parameter_declarator)->array_specifier = (yyvsp[0].array_specifier); } #line 3940 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 124: #line 913 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.parameter_declarator) = (yyvsp[0].parameter_declarator); (yyval.parameter_declarator)->type->qualifier = (yyvsp[-1].type_qualifier); } #line 3949 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 125: #line 918 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.parameter_declarator) = new(ctx) ast_parameter_declarator(); (yyval.parameter_declarator)->set_location((yylsp[0])); (yyval.parameter_declarator)->type = new(ctx) ast_fully_specified_type(); (yyval.parameter_declarator)->type->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.parameter_declarator)->type->qualifier = (yyvsp[-1].type_qualifier); (yyval.parameter_declarator)->type->specifier = (yyvsp[0].type_specifier); } #line 3963 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 126: #line 931 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); } #line 3971 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 127: #line 935 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).flags.q.constant) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate const qualifier"); (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).flags.q.constant = 1; } #line 3983 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 128: #line 943 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).flags.q.precise) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate precise qualifier"); (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).flags.q.precise = 1; } #line 3995 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 129: #line 951 "glsl_parser.yy" /* yacc.c:1646 */ { if (((yyvsp[-1].type_qualifier).flags.q.in || (yyvsp[-1].type_qualifier).flags.q.out) && ((yyvsp[0].type_qualifier).flags.q.in || (yyvsp[0].type_qualifier).flags.q.out)) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate in/out/inout qualifier"); if (!state->ARB_shading_language_420pack_enable && (yyvsp[0].type_qualifier).flags.q.constant) _mesa_glsl_error(&(yylsp[-1]), state, "in/out/inout must come after const " "or precise"); (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier)); } #line 4011 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 130: #line 963 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).precision != ast_precision_none) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate precision qualifier"); if (!state->ARB_shading_language_420pack_enable && (yyvsp[0].type_qualifier).flags.i != 0) _mesa_glsl_error(&(yylsp[-1]), state, "precision qualifiers must come last"); (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).precision = (yyvsp[-1].n); } #line 4026 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 131: #line 976 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; } #line 4035 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 132: #line 981 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.out = 1; } #line 4044 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 133: #line 986 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; (yyval.type_qualifier).flags.q.out = 1; } #line 4054 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 136: #line 1000 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); decl->set_location((yylsp[0])); (yyval.declarator_list) = (yyvsp[-2].declarator_list); (yyval.declarator_list)->declarations.push_tail(&decl->link); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[0].identifier), ir_var_auto)); } #line 4068 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 137: #line 1010 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-1].identifier), (yyvsp[0].array_specifier), NULL); decl->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.declarator_list) = (yyvsp[-3].declarator_list); (yyval.declarator_list)->declarations.push_tail(&decl->link); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-1].identifier), ir_var_auto)); } #line 4082 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 138: #line 1020 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-3].identifier), (yyvsp[-2].array_specifier), (yyvsp[0].expression)); decl->set_location_range((yylsp[-3]), (yylsp[-2])); (yyval.declarator_list) = (yyvsp[-5].declarator_list); (yyval.declarator_list)->declarations.push_tail(&decl->link); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-3].identifier), ir_var_auto)); } #line 4096 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 139: #line 1030 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-2].identifier), NULL, (yyvsp[0].expression)); decl->set_location((yylsp[-2])); (yyval.declarator_list) = (yyvsp[-4].declarator_list); (yyval.declarator_list)->declarations.push_tail(&decl->link); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-2].identifier), ir_var_auto)); } #line 4110 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 140: #line 1044 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; /* Empty declaration list is valid. */ (yyval.declarator_list) = new(ctx) ast_declarator_list((yyvsp[0].fully_specified_type)); (yyval.declarator_list)->set_location((yylsp[0])); } #line 4121 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 141: #line 1051 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); decl->set_location((yylsp[0])); (yyval.declarator_list) = new(ctx) ast_declarator_list((yyvsp[-1].fully_specified_type)); (yyval.declarator_list)->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.declarator_list)->declarations.push_tail(&decl->link); } #line 4135 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 142: #line 1061 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-1].identifier), (yyvsp[0].array_specifier), NULL); decl->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.declarator_list) = new(ctx) ast_declarator_list((yyvsp[-2].fully_specified_type)); (yyval.declarator_list)->set_location_range((yylsp[-2]), (yylsp[0])); (yyval.declarator_list)->declarations.push_tail(&decl->link); } #line 4149 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 143: #line 1071 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-3].identifier), (yyvsp[-2].array_specifier), (yyvsp[0].expression)); decl->set_location_range((yylsp[-3]), (yylsp[-2])); (yyval.declarator_list) = new(ctx) ast_declarator_list((yyvsp[-4].fully_specified_type)); (yyval.declarator_list)->set_location_range((yylsp[-4]), (yylsp[-2])); (yyval.declarator_list)->declarations.push_tail(&decl->link); } #line 4163 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 144: #line 1081 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-2].identifier), NULL, (yyvsp[0].expression)); decl->set_location((yylsp[-2])); (yyval.declarator_list) = new(ctx) ast_declarator_list((yyvsp[-3].fully_specified_type)); (yyval.declarator_list)->set_location_range((yylsp[-3]), (yylsp[-2])); (yyval.declarator_list)->declarations.push_tail(&decl->link); } #line 4177 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 145: #line 1091 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); decl->set_location((yylsp[0])); (yyval.declarator_list) = new(ctx) ast_declarator_list(NULL); (yyval.declarator_list)->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.declarator_list)->invariant = true; (yyval.declarator_list)->declarations.push_tail(&decl->link); } #line 4193 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 146: #line 1103 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); decl->set_location((yylsp[0])); (yyval.declarator_list) = new(ctx) ast_declarator_list(NULL); (yyval.declarator_list)->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.declarator_list)->precise = true; (yyval.declarator_list)->declarations.push_tail(&decl->link); } #line 4209 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 147: #line 1118 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.fully_specified_type) = new(ctx) ast_fully_specified_type(); (yyval.fully_specified_type)->set_location((yylsp[0])); (yyval.fully_specified_type)->specifier = (yyvsp[0].type_specifier); } #line 4220 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 148: #line 1125 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.fully_specified_type) = new(ctx) ast_fully_specified_type(); (yyval.fully_specified_type)->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.fully_specified_type)->qualifier = (yyvsp[-1].type_qualifier); (yyval.fully_specified_type)->specifier = (yyvsp[0].type_specifier); } #line 4232 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 149: #line 1136 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); } #line 4240 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 151: #line 1144 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.type_qualifier) = (yyvsp[-2].type_qualifier); if (!(yyval.type_qualifier).merge_qualifier(& (yylsp[0]), state, (yyvsp[0].type_qualifier))) { YYERROR; } } #line 4251 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 152: #line 1153 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = (yyvsp[0].n); } #line 4257 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 153: #line 1154 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.n) = (yyvsp[0].n); } #line 4263 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 154: #line 1159 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); /* Layout qualifiers for ARB_fragment_coord_conventions. */ if (!(yyval.type_qualifier).flags.i && (state->ARB_fragment_coord_conventions_enable || state->is_version(150, 0))) { if (match_layout_qualifier((yyvsp[0].identifier), "origin_upper_left", state) == 0) { (yyval.type_qualifier).flags.q.origin_upper_left = 1; } else if (match_layout_qualifier((yyvsp[0].identifier), "pixel_center_integer", state) == 0) { (yyval.type_qualifier).flags.q.pixel_center_integer = 1; } if ((yyval.type_qualifier).flags.i && state->ARB_fragment_coord_conventions_warn) { _mesa_glsl_warning(& (yylsp[0]), state, "GL_ARB_fragment_coord_conventions layout " "identifier `%s' used", (yyvsp[0].identifier)); } } /* Layout qualifiers for AMD/ARB_conservative_depth. */ if (!(yyval.type_qualifier).flags.i && (state->AMD_conservative_depth_enable || state->ARB_conservative_depth_enable)) { if (match_layout_qualifier((yyvsp[0].identifier), "depth_any", state) == 0) { (yyval.type_qualifier).flags.q.depth_any = 1; } else if (match_layout_qualifier((yyvsp[0].identifier), "depth_greater", state) == 0) { (yyval.type_qualifier).flags.q.depth_greater = 1; } else if (match_layout_qualifier((yyvsp[0].identifier), "depth_less", state) == 0) { (yyval.type_qualifier).flags.q.depth_less = 1; } else if (match_layout_qualifier((yyvsp[0].identifier), "depth_unchanged", state) == 0) { (yyval.type_qualifier).flags.q.depth_unchanged = 1; } if ((yyval.type_qualifier).flags.i && state->AMD_conservative_depth_warn) { _mesa_glsl_warning(& (yylsp[0]), state, "GL_AMD_conservative_depth " "layout qualifier `%s' is used", (yyvsp[0].identifier)); } if ((yyval.type_qualifier).flags.i && state->ARB_conservative_depth_warn) { _mesa_glsl_warning(& (yylsp[0]), state, "GL_ARB_conservative_depth " "layout qualifier `%s' is used", (yyvsp[0].identifier)); } } /* See also interface_block_layout_qualifier. */ if (!(yyval.type_qualifier).flags.i && state->has_uniform_buffer_objects()) { if (match_layout_qualifier((yyvsp[0].identifier), "std140", state) == 0) { (yyval.type_qualifier).flags.q.std140 = 1; } else if (match_layout_qualifier((yyvsp[0].identifier), "shared", state) == 0) { (yyval.type_qualifier).flags.q.shared = 1; } else if (match_layout_qualifier((yyvsp[0].identifier), "column_major", state) == 0) { (yyval.type_qualifier).flags.q.column_major = 1; /* "row_major" is a reserved word in GLSL 1.30+. Its token is parsed * below in the interface_block_layout_qualifier rule. * * It is not a reserved word in GLSL ES 3.00, so it's handled here as * an identifier. * * Also, this takes care of alternate capitalizations of * "row_major" (which is necessary because layout qualifiers * are case-insensitive in desktop GLSL). */ } else if (match_layout_qualifier((yyvsp[0].identifier), "row_major", state) == 0) { (yyval.type_qualifier).flags.q.row_major = 1; /* "packed" is a reserved word in GLSL, and its token is * parsed below in the interface_block_layout_qualifier rule. * However, we must take care of alternate capitalizations of * "packed", because layout qualifiers are case-insensitive * in desktop GLSL. */ } else if (match_layout_qualifier((yyvsp[0].identifier), "packed", state) == 0) { (yyval.type_qualifier).flags.q.packed = 1; } if ((yyval.type_qualifier).flags.i && state->ARB_uniform_buffer_object_warn) { _mesa_glsl_warning(& (yylsp[0]), state, "#version 140 / GL_ARB_uniform_buffer_object " "layout qualifier `%s' is used", (yyvsp[0].identifier)); } } /* Layout qualifiers for GLSL 1.50 geometry shaders. */ if (!(yyval.type_qualifier).flags.i) { static const struct { const char *s; GLenum e; } map[] = { { "points", GL_POINTS }, { "lines", GL_LINES }, { "lines_adjacency", GL_LINES_ADJACENCY }, { "line_strip", GL_LINE_STRIP }, { "triangles", GL_TRIANGLES }, { "triangles_adjacency", GL_TRIANGLES_ADJACENCY }, { "triangle_strip", GL_TRIANGLE_STRIP }, }; for (unsigned i = 0; i < Elements(map); i++) { if (match_layout_qualifier((yyvsp[0].identifier), map[i].s, state) == 0) { (yyval.type_qualifier).flags.q.prim_type = 1; (yyval.type_qualifier).prim_type = map[i].e; break; } } if ((yyval.type_qualifier).flags.i && !state->is_version(150, 0)) { _mesa_glsl_error(& (yylsp[0]), state, "#version 150 layout " "qualifier `%s' used", (yyvsp[0].identifier)); } } /* Layout qualifiers for ARB_shader_image_load_store. */ if (state->ARB_shader_image_load_store_enable || state->is_version(420, 0)) { if (!(yyval.type_qualifier).flags.i) { static const struct { const char *name; GLenum format; glsl_base_type base_type; } map[] = { { "rgba32f", GL_RGBA32F, GLSL_TYPE_FLOAT }, { "rgba16f", GL_RGBA16F, GLSL_TYPE_FLOAT }, { "rg32f", GL_RG32F, GLSL_TYPE_FLOAT }, { "rg16f", GL_RG16F, GLSL_TYPE_FLOAT }, { "r11f_g11f_b10f", GL_R11F_G11F_B10F, GLSL_TYPE_FLOAT }, { "r32f", GL_R32F, GLSL_TYPE_FLOAT }, { "r16f", GL_R16F, GLSL_TYPE_FLOAT }, { "rgba32ui", GL_RGBA32UI, GLSL_TYPE_UINT }, { "rgba16ui", GL_RGBA16UI, GLSL_TYPE_UINT }, { "rgb10_a2ui", GL_RGB10_A2UI, GLSL_TYPE_UINT }, { "rgba8ui", GL_RGBA8UI, GLSL_TYPE_UINT }, { "rg32ui", GL_RG32UI, GLSL_TYPE_UINT }, { "rg16ui", GL_RG16UI, GLSL_TYPE_UINT }, { "rg8ui", GL_RG8UI, GLSL_TYPE_UINT }, { "r32ui", GL_R32UI, GLSL_TYPE_UINT }, { "r16ui", GL_R16UI, GLSL_TYPE_UINT }, { "r8ui", GL_R8UI, GLSL_TYPE_UINT }, { "rgba32i", GL_RGBA32I, GLSL_TYPE_INT }, { "rgba16i", GL_RGBA16I, GLSL_TYPE_INT }, { "rgba8i", GL_RGBA8I, GLSL_TYPE_INT }, { "rg32i", GL_RG32I, GLSL_TYPE_INT }, { "rg16i", GL_RG16I, GLSL_TYPE_INT }, { "rg8i", GL_RG8I, GLSL_TYPE_INT }, { "r32i", GL_R32I, GLSL_TYPE_INT }, { "r16i", GL_R16I, GLSL_TYPE_INT }, { "r8i", GL_R8I, GLSL_TYPE_INT }, { "rgba16", GL_RGBA16, GLSL_TYPE_FLOAT }, { "rgb10_a2", GL_RGB10_A2, GLSL_TYPE_FLOAT }, { "rgba8", GL_RGBA8, GLSL_TYPE_FLOAT }, { "rg16", GL_RG16, GLSL_TYPE_FLOAT }, { "rg8", GL_RG8, GLSL_TYPE_FLOAT }, { "r16", GL_R16, GLSL_TYPE_FLOAT }, { "r8", GL_R8, GLSL_TYPE_FLOAT }, { "rgba16_snorm", GL_RGBA16_SNORM, GLSL_TYPE_FLOAT }, { "rgba8_snorm", GL_RGBA8_SNORM, GLSL_TYPE_FLOAT }, { "rg16_snorm", GL_RG16_SNORM, GLSL_TYPE_FLOAT }, { "rg8_snorm", GL_RG8_SNORM, GLSL_TYPE_FLOAT }, { "r16_snorm", GL_R16_SNORM, GLSL_TYPE_FLOAT }, { "r8_snorm", GL_R8_SNORM, GLSL_TYPE_FLOAT } }; for (unsigned i = 0; i < Elements(map); i++) { if (match_layout_qualifier((yyvsp[0].identifier), map[i].name, state) == 0) { (yyval.type_qualifier).flags.q.explicit_image_format = 1; (yyval.type_qualifier).image_format = map[i].format; (yyval.type_qualifier).image_base_type = map[i].base_type; break; } } } if (!(yyval.type_qualifier).flags.i && match_layout_qualifier((yyvsp[0].identifier), "early_fragment_tests", state) == 0) { (yyval.type_qualifier).flags.q.early_fragment_tests = 1; } } if (!(yyval.type_qualifier).flags.i) { _mesa_glsl_error(& (yylsp[0]), state, "unrecognized layout identifier " "`%s'", (yyvsp[0].identifier)); YYERROR; } } #line 4452 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 155: #line 1344 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); if (match_layout_qualifier("location", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_location = 1; if ((yyval.type_qualifier).flags.q.attribute == 1 && state->ARB_explicit_attrib_location_warn) { _mesa_glsl_warning(& (yylsp[-2]), state, "GL_ARB_explicit_attrib_location layout " "identifier `%s' used", (yyvsp[-2].identifier)); } if ((yyvsp[0].n) >= 0) { (yyval.type_qualifier).location = (yyvsp[0].n); } else { _mesa_glsl_error(& (yylsp[0]), state, "invalid location %d specified", (yyvsp[0].n)); YYERROR; } } if (match_layout_qualifier("index", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_index = 1; if ((yyvsp[0].n) >= 0) { (yyval.type_qualifier).index = (yyvsp[0].n); } else { _mesa_glsl_error(& (yylsp[0]), state, "invalid index %d specified", (yyvsp[0].n)); YYERROR; } } if ((state->ARB_shading_language_420pack_enable || state->ARB_shader_atomic_counters_enable) && match_layout_qualifier("binding", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_binding = 1; (yyval.type_qualifier).binding = (yyvsp[0].n); } if (state->ARB_shader_atomic_counters_enable && match_layout_qualifier("offset", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_offset = 1; (yyval.type_qualifier).offset = (yyvsp[0].n); } if (match_layout_qualifier("max_vertices", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.max_vertices = 1; if ((yyvsp[0].n) < 0) { _mesa_glsl_error(& (yylsp[0]), state, "invalid max_vertices %d specified", (yyvsp[0].n)); YYERROR; } else { (yyval.type_qualifier).max_vertices = (yyvsp[0].n); if (!state->is_version(150, 0)) { _mesa_glsl_error(& (yylsp[0]), state, "#version 150 max_vertices qualifier " "specified", (yyvsp[0].n)); } } } if (state->stage == MESA_SHADER_GEOMETRY) { if (match_layout_qualifier("stream", (yyvsp[-2].identifier), state) == 0 && state->check_explicit_attrib_stream_allowed(& (yylsp[0]))) { (yyval.type_qualifier).flags.q.stream = 1; if ((yyvsp[0].n) < 0) { _mesa_glsl_error(& (yylsp[0]), state, "invalid stream %d specified", (yyvsp[0].n)); YYERROR; } else { (yyval.type_qualifier).flags.q.explicit_stream = 1; (yyval.type_qualifier).stream = (yyvsp[0].n); } } } static const char * const local_size_qualifiers[3] = { "local_size_x", "local_size_y", "local_size_z", }; for (int i = 0; i < 3; i++) { if (match_layout_qualifier(local_size_qualifiers[i], (yyvsp[-2].identifier), state) == 0) { if ((yyvsp[0].n) <= 0) { _mesa_glsl_error(& (yylsp[0]), state, "invalid %s of %d specified", local_size_qualifiers[i], (yyvsp[0].n)); YYERROR; } else if (!state->is_version(430, 0) && !state->ARB_compute_shader_enable) { _mesa_glsl_error(& (yylsp[0]), state, "%s qualifier requires GLSL 4.30 or " "ARB_compute_shader", local_size_qualifiers[i]); YYERROR; } else { (yyval.type_qualifier).flags.q.local_size |= (1 << i); (yyval.type_qualifier).local_size[i] = (yyvsp[0].n); } break; } } if (match_layout_qualifier("invocations", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.invocations = 1; if ((yyvsp[0].n) <= 0) { _mesa_glsl_error(& (yylsp[0]), state, "invalid invocations %d specified", (yyvsp[0].n)); YYERROR; } else if ((yyvsp[0].n) > MAX_GEOMETRY_SHADER_INVOCATIONS) { _mesa_glsl_error(& (yylsp[0]), state, "invocations (%d) exceeds " "GL_MAX_GEOMETRY_SHADER_INVOCATIONS", (yyvsp[0].n)); YYERROR; } else { (yyval.type_qualifier).invocations = (yyvsp[0].n); if (!state->is_version(400, 0) && !state->ARB_gpu_shader5_enable) { _mesa_glsl_error(& (yylsp[0]), state, "GL_ARB_gpu_shader5 invocations " "qualifier specified", (yyvsp[0].n)); } } } /* If the identifier didn't match any known layout identifiers, * emit an error. */ if (!(yyval.type_qualifier).flags.i) { _mesa_glsl_error(& (yylsp[-2]), state, "unrecognized layout identifier " "`%s'", (yyvsp[-2].identifier)); YYERROR; } } #line 4595 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 156: #line 1483 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.type_qualifier) = (yyvsp[0].type_qualifier); /* Layout qualifiers for ARB_uniform_buffer_object. */ if ((yyval.type_qualifier).flags.q.uniform && !state->has_uniform_buffer_objects()) { _mesa_glsl_error(& (yylsp[0]), state, "#version 140 / GL_ARB_uniform_buffer_object " "layout qualifier `%s' is used", (yyvsp[0].type_qualifier)); } else if ((yyval.type_qualifier).flags.q.uniform && state->ARB_uniform_buffer_object_warn) { _mesa_glsl_warning(& (yylsp[0]), state, "#version 140 / GL_ARB_uniform_buffer_object " "layout qualifier `%s' is used", (yyvsp[0].type_qualifier)); } } #line 4613 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 157: #line 1509 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.row_major = 1; } #line 4622 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 158: #line 1514 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.packed = 1; } #line 4631 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 159: #line 1522 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.smooth = 1; } #line 4640 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 160: #line 1527 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.flat = 1; } #line 4649 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 161: #line 1532 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.noperspective = 1; } #line 4658 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 162: #line 1541 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.invariant = 1; } #line 4667 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 163: #line 1546 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.precise = 1; } #line 4676 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 168: #line 1555 "glsl_parser.yy" /* yacc.c:1646 */ { memset(&(yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).precision = (yyvsp[0].n); } #line 4685 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 169: #line 1573 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).flags.q.precise) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate \"precise\" qualifier"); (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).flags.q.precise = 1; } #line 4697 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 170: #line 1581 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).flags.q.invariant) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate \"invariant\" qualifier"); if (!state->ARB_shading_language_420pack_enable && (yyvsp[0].type_qualifier).flags.q.precise) _mesa_glsl_error(&(yylsp[-1]), state, "\"invariant\" must come after \"precise\""); (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).flags.q.invariant = 1; } #line 4713 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 171: #line 1593 "glsl_parser.yy" /* yacc.c:1646 */ { /* Section 4.3 of the GLSL 1.40 specification states: * "...qualified with one of these interpolation qualifiers" * * GLSL 1.30 claims to allow "one or more", but insists that: * "These interpolation qualifiers may only precede the qualifiers in, * centroid in, out, or centroid out in a declaration." * * ...which means that e.g. smooth can't precede smooth, so there can be * only one after all, and the 1.40 text is a clarification, not a change. */ if ((yyvsp[0].type_qualifier).has_interpolation()) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate interpolation qualifier"); if (!state->ARB_shading_language_420pack_enable && ((yyvsp[0].type_qualifier).flags.q.precise || (yyvsp[0].type_qualifier).flags.q.invariant)) { _mesa_glsl_error(&(yylsp[-1]), state, "interpolation qualifiers must come " "after \"precise\" or \"invariant\""); } (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier)); } #line 4741 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 172: #line 1617 "glsl_parser.yy" /* yacc.c:1646 */ { /* In the absence of ARB_shading_language_420pack, layout qualifiers may * appear no later than auxiliary storage qualifiers. There is no * particularly clear spec language mandating this, but in all examples * the layout qualifier precedes the storage qualifier. * * We allow combinations of layout with interpolation, invariant or * precise qualifiers since these are useful in ARB_separate_shader_objects. * There is no clear spec guidance on this either. */ if (!state->ARB_shading_language_420pack_enable && (yyvsp[0].type_qualifier).has_layout()) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate layout(...) qualifiers"); (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier)); } #line 4762 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 173: #line 1634 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).has_auxiliary_storage()) { _mesa_glsl_error(&(yylsp[-1]), state, "duplicate auxiliary storage qualifier (centroid or sample)"); } if (!state->ARB_shading_language_420pack_enable && ((yyvsp[0].type_qualifier).flags.q.precise || (yyvsp[0].type_qualifier).flags.q.invariant || (yyvsp[0].type_qualifier).has_interpolation() || (yyvsp[0].type_qualifier).has_layout())) { _mesa_glsl_error(&(yylsp[-1]), state, "auxiliary storage qualifiers must come " "just before storage qualifiers"); } (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier)); } #line 4782 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 174: #line 1650 "glsl_parser.yy" /* yacc.c:1646 */ { /* Section 4.3 of the GLSL 1.20 specification states: * "Variable declarations may have a storage qualifier specified..." * 1.30 clarifies this to "may have one storage qualifier". */ if ((yyvsp[0].type_qualifier).has_storage()) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate storage qualifier"); if (!state->ARB_shading_language_420pack_enable && ((yyvsp[0].type_qualifier).flags.q.precise || (yyvsp[0].type_qualifier).flags.q.invariant || (yyvsp[0].type_qualifier).has_interpolation() || (yyvsp[0].type_qualifier).has_layout() || (yyvsp[0].type_qualifier).has_auxiliary_storage())) { _mesa_glsl_error(&(yylsp[-1]), state, "storage qualifiers must come after " "precise, invariant, interpolation, layout and auxiliary " "storage qualifiers"); } (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier)); } #line 4806 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 175: #line 1670 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].type_qualifier).precision != ast_precision_none) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate precision qualifier"); if (!state->ARB_shading_language_420pack_enable && (yyvsp[0].type_qualifier).flags.i != 0) _mesa_glsl_error(&(yylsp[-1]), state, "precision qualifiers must come last"); (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).precision = (yyvsp[-1].n); } #line 4821 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 176: #line 1684 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.centroid = 1; } #line 4830 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 177: #line 1689 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.sample = 1; } #line 4839 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 178: #line 1697 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.constant = 1; } #line 4848 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 179: #line 1702 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.attribute = 1; } #line 4857 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 180: #line 1707 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.varying = 1; } #line 4866 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 181: #line 1712 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; } #line 4875 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 182: #line 1717 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.out = 1; if (state->stage == MESA_SHADER_GEOMETRY && state->has_explicit_attrib_stream()) { /* Section 4.3.8.2 (Output Layout Qualifiers) of the GLSL 4.00 * spec says: * * "If the block or variable is declared with the stream * identifier, it is associated with the specified stream; * otherwise, it is associated with the current default stream." */ (yyval.type_qualifier).flags.q.stream = 1; (yyval.type_qualifier).flags.q.explicit_stream = 0; (yyval.type_qualifier).stream = state->out_qualifier->stream; } } #line 4898 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 183: #line 1736 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.uniform = 1; } #line 4907 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 184: #line 1741 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.coherent = 1; } #line 4916 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 185: #line 1746 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q._volatile = 1; } #line 4925 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 186: #line 1751 "glsl_parser.yy" /* yacc.c:1646 */ { STATIC_ASSERT(sizeof((yyval.type_qualifier).flags.q) <= sizeof((yyval.type_qualifier).flags.i)); memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.restrict_flag = 1; } #line 4935 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 187: #line 1757 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.read_only = 1; } #line 4944 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 188: #line 1762 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.write_only = 1; } #line 4953 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 189: #line 1770 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.array_specifier) = new(ctx) ast_array_specifier((yylsp[-1])); (yyval.array_specifier)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 4963 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 190: #line 1776 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.array_specifier) = new(ctx) ast_array_specifier((yylsp[-2]), (yyvsp[-1].expression)); (yyval.array_specifier)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 4973 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 191: #line 1782 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.array_specifier) = (yyvsp[-2].array_specifier); if (!state->ARB_arrays_of_arrays_enable) { _mesa_glsl_error(& (yylsp[-2]), state, "GL_ARB_arrays_of_arrays " "required for defining arrays of arrays"); } else { _mesa_glsl_error(& (yylsp[-2]), state, "only the outermost array dimension can " "be unsized"); } } #line 4991 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 192: #line 1796 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.array_specifier) = (yyvsp[-3].array_specifier); if (!state->ARB_arrays_of_arrays_enable) { _mesa_glsl_error(& (yylsp[-3]), state, "GL_ARB_arrays_of_arrays " "required for defining arrays of arrays"); } (yyval.array_specifier)->add_dimension((yyvsp[-1].expression)); } #line 5007 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 194: #line 1812 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.type_specifier) = (yyvsp[-1].type_specifier); (yyval.type_specifier)->array_specifier = (yyvsp[0].array_specifier); } #line 5016 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 195: #line 1820 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.type_specifier) = new(ctx) ast_type_specifier((yyvsp[0].identifier)); (yyval.type_specifier)->set_location((yylsp[0])); } #line 5026 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 196: #line 1826 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.type_specifier) = new(ctx) ast_type_specifier((yyvsp[0].struct_specifier)); (yyval.type_specifier)->set_location((yylsp[0])); } #line 5036 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 197: #line 1832 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.type_specifier) = new(ctx) ast_type_specifier((yyvsp[0].identifier)); (yyval.type_specifier)->set_location((yylsp[0])); } #line 5046 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 198: #line 1840 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "void"; } #line 5052 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 199: #line 1841 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "float"; } #line 5058 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 200: #line 1842 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "int"; } #line 5064 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 201: #line 1843 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uint"; } #line 5070 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 202: #line 1844 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "bool"; } #line 5076 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 203: #line 1845 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "vec2"; } #line 5082 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 204: #line 1846 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "vec3"; } #line 5088 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 205: #line 1847 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "vec4"; } #line 5094 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 206: #line 1848 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "bvec2"; } #line 5100 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 207: #line 1849 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "bvec3"; } #line 5106 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 208: #line 1850 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "bvec4"; } #line 5112 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 209: #line 1851 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "ivec2"; } #line 5118 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 210: #line 1852 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "ivec3"; } #line 5124 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 211: #line 1853 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "ivec4"; } #line 5130 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 212: #line 1854 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uvec2"; } #line 5136 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 213: #line 1855 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uvec3"; } #line 5142 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 214: #line 1856 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uvec4"; } #line 5148 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 215: #line 1857 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat2"; } #line 5154 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 216: #line 1858 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat2x3"; } #line 5160 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 217: #line 1859 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat2x4"; } #line 5166 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 218: #line 1860 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat3x2"; } #line 5172 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 219: #line 1861 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat3"; } #line 5178 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 220: #line 1862 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat3x4"; } #line 5184 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 221: #line 1863 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat4x2"; } #line 5190 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 222: #line 1864 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat4x3"; } #line 5196 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 223: #line 1865 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "mat4"; } #line 5202 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 224: #line 1866 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler1D"; } #line 5208 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 225: #line 1867 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2D"; } #line 5214 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 226: #line 1868 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DRect"; } #line 5220 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 227: #line 1869 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler3D"; } #line 5226 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 228: #line 1870 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "samplerCube"; } #line 5232 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 229: #line 1871 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "samplerExternalOES"; } #line 5238 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 230: #line 1872 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler1DShadow"; } #line 5244 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 231: #line 1873 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DShadow"; } #line 5250 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 232: #line 1874 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DRectShadow"; } #line 5256 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 233: #line 1875 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "samplerCubeShadow"; } #line 5262 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 234: #line 1876 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler1DArray"; } #line 5268 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 235: #line 1877 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DArray"; } #line 5274 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 236: #line 1878 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler1DArrayShadow"; } #line 5280 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 237: #line 1879 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DArrayShadow"; } #line 5286 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 238: #line 1880 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "samplerBuffer"; } #line 5292 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 239: #line 1881 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "samplerCubeArray"; } #line 5298 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 240: #line 1882 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "samplerCubeArrayShadow"; } #line 5304 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 241: #line 1883 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler1D"; } #line 5310 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 242: #line 1884 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler2D"; } #line 5316 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 243: #line 1885 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler2DRect"; } #line 5322 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 244: #line 1886 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler3D"; } #line 5328 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 245: #line 1887 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isamplerCube"; } #line 5334 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 246: #line 1888 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler1DArray"; } #line 5340 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 247: #line 1889 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler2DArray"; } #line 5346 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 248: #line 1890 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isamplerBuffer"; } #line 5352 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 249: #line 1891 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isamplerCubeArray"; } #line 5358 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 250: #line 1892 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler1D"; } #line 5364 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 251: #line 1893 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler2D"; } #line 5370 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 252: #line 1894 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler2DRect"; } #line 5376 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 253: #line 1895 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler3D"; } #line 5382 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 254: #line 1896 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usamplerCube"; } #line 5388 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 255: #line 1897 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler1DArray"; } #line 5394 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 256: #line 1898 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler2DArray"; } #line 5400 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 257: #line 1899 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usamplerBuffer"; } #line 5406 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 258: #line 1900 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usamplerCubeArray"; } #line 5412 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 259: #line 1901 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DMS"; } #line 5418 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 260: #line 1902 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler2DMS"; } #line 5424 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 261: #line 1903 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler2DMS"; } #line 5430 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 262: #line 1904 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "sampler2DMSArray"; } #line 5436 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 263: #line 1905 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "isampler2DMSArray"; } #line 5442 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 264: #line 1906 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "usampler2DMSArray"; } #line 5448 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 265: #line 1907 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image1D"; } #line 5454 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 266: #line 1908 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image2D"; } #line 5460 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 267: #line 1909 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image3D"; } #line 5466 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 268: #line 1910 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image2DRect"; } #line 5472 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 269: #line 1911 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "imageCube"; } #line 5478 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 270: #line 1912 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "imageBuffer"; } #line 5484 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 271: #line 1913 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image1DArray"; } #line 5490 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 272: #line 1914 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image2DArray"; } #line 5496 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 273: #line 1915 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "imageCubeArray"; } #line 5502 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 274: #line 1916 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image2DMS"; } #line 5508 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 275: #line 1917 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "image2DMSArray"; } #line 5514 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 276: #line 1918 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage1D"; } #line 5520 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 277: #line 1919 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage2D"; } #line 5526 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 278: #line 1920 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage3D"; } #line 5532 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 279: #line 1921 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage2DRect"; } #line 5538 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 280: #line 1922 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimageCube"; } #line 5544 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 281: #line 1923 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimageBuffer"; } #line 5550 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 282: #line 1924 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage1DArray"; } #line 5556 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 283: #line 1925 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage2DArray"; } #line 5562 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 284: #line 1926 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimageCubeArray"; } #line 5568 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 285: #line 1927 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage2DMS"; } #line 5574 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 286: #line 1928 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "iimage2DMSArray"; } #line 5580 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 287: #line 1929 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage1D"; } #line 5586 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 288: #line 1930 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage2D"; } #line 5592 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 289: #line 1931 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage3D"; } #line 5598 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 290: #line 1932 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage2DRect"; } #line 5604 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 291: #line 1933 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimageCube"; } #line 5610 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 292: #line 1934 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimageBuffer"; } #line 5616 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 293: #line 1935 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage1DArray"; } #line 5622 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 294: #line 1936 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage2DArray"; } #line 5628 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 295: #line 1937 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimageCubeArray"; } #line 5634 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 296: #line 1938 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage2DMS"; } #line 5640 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 297: #line 1939 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "uimage2DMSArray"; } #line 5646 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 298: #line 1940 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.identifier) = "atomic_uint"; } #line 5652 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 299: #line 1945 "glsl_parser.yy" /* yacc.c:1646 */ { state->check_precision_qualifiers_allowed(&(yylsp[0])); (yyval.n) = ast_precision_high; } #line 5661 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 300: #line 1950 "glsl_parser.yy" /* yacc.c:1646 */ { state->check_precision_qualifiers_allowed(&(yylsp[0])); (yyval.n) = ast_precision_medium; } #line 5670 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 301: #line 1955 "glsl_parser.yy" /* yacc.c:1646 */ { state->check_precision_qualifiers_allowed(&(yylsp[0])); (yyval.n) = ast_precision_low; } #line 5679 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 302: #line 1963 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.struct_specifier) = new(ctx) ast_struct_specifier((yyvsp[-3].identifier), (yyvsp[-1].declarator_list)); (yyval.struct_specifier)->set_location_range((yylsp[-3]), (yylsp[0])); state->symbols->add_type((yyvsp[-3].identifier), glsl_type::void_type); } #line 5690 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 303: #line 1970 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.struct_specifier) = new(ctx) ast_struct_specifier(NULL, (yyvsp[-1].declarator_list)); (yyval.struct_specifier)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 5700 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 304: #line 1979 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.declarator_list) = (yyvsp[0].declarator_list); (yyvsp[0].declarator_list)->link.self_link(); } #line 5709 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 305: #line 1984 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.declarator_list) = (yyvsp[-1].declarator_list); (yyval.declarator_list)->link.insert_before(& (yyvsp[0].declarator_list)->link); } #line 5718 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 306: #line 1992 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_fully_specified_type *const type = (yyvsp[-2].fully_specified_type); type->set_location((yylsp[-2])); if (type->qualifier.flags.i != 0) _mesa_glsl_error(&(yylsp[-2]), state, "only precision qualifiers may be applied to " "structure members"); (yyval.declarator_list) = new(ctx) ast_declarator_list(type); (yyval.declarator_list)->set_location((yylsp[-1])); (yyval.declarator_list)->declarations.push_degenerate_list_at_head(& (yyvsp[-1].declaration)->link); } #line 5738 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 307: #line 2011 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.declaration) = (yyvsp[0].declaration); (yyvsp[0].declaration)->link.self_link(); } #line 5747 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 308: #line 2016 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.declaration) = (yyvsp[-2].declaration); (yyval.declaration)->link.insert_before(& (yyvsp[0].declaration)->link); } #line 5756 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 309: #line 2024 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.declaration) = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); (yyval.declaration)->set_location((yylsp[0])); } #line 5766 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 310: #line 2030 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.declaration) = new(ctx) ast_declaration((yyvsp[-1].identifier), (yyvsp[0].array_specifier), NULL); (yyval.declaration)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5776 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 312: #line 2040 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-1].expression); } #line 5784 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 313: #line 2044 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.expression) = (yyvsp[-2].expression); } #line 5792 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 314: #line 2051 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.expression) = new(ctx) ast_aggregate_initializer(); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 5803 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 315: #line 2058 "glsl_parser.yy" /* yacc.c:1646 */ { (yyvsp[-2].expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 5811 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 317: #line 2070 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (ast_node *) (yyvsp[0].compound_statement); } #line 5817 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 325: #line 2085 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.compound_statement) = new(ctx) ast_compound_statement(true, NULL); (yyval.compound_statement)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5827 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 326: #line 2091 "glsl_parser.yy" /* yacc.c:1646 */ { state->symbols->push_scope(); } #line 5835 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 327: #line 2095 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.compound_statement) = new(ctx) ast_compound_statement(true, (yyvsp[-1].node)); (yyval.compound_statement)->set_location_range((yylsp[-3]), (yylsp[0])); state->symbols->pop_scope(); } #line 5846 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 328: #line 2104 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (ast_node *) (yyvsp[0].compound_statement); } #line 5852 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 330: #line 2110 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.compound_statement) = new(ctx) ast_compound_statement(false, NULL); (yyval.compound_statement)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5862 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 331: #line 2116 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.compound_statement) = new(ctx) ast_compound_statement(false, (yyvsp[-1].node)); (yyval.compound_statement)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 5872 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 332: #line 2125 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].node) == NULL) { _mesa_glsl_error(& (yylsp[0]), state, " statement"); assert((yyvsp[0].node) != NULL); } (yyval.node) = (yyvsp[0].node); (yyval.node)->link.self_link(); } #line 5886 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 333: #line 2135 "glsl_parser.yy" /* yacc.c:1646 */ { if ((yyvsp[0].node) == NULL) { _mesa_glsl_error(& (yylsp[0]), state, " statement"); assert((yyvsp[0].node) != NULL); } (yyval.node) = (yyvsp[-1].node); (yyval.node)->link.insert_before(& (yyvsp[0].node)->link); } #line 5899 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 334: #line 2147 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_expression_statement(NULL); (yyval.node)->set_location((yylsp[0])); } #line 5909 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 335: #line 2153 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_expression_statement((yyvsp[-1].expression)); (yyval.node)->set_location((yylsp[-1])); } #line 5919 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 336: #line 2162 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = new(state) ast_selection_statement((yyvsp[-2].expression), (yyvsp[0].selection_rest_statement).then_statement, (yyvsp[0].selection_rest_statement).else_statement); (yyval.node)->set_location_range((yylsp[-4]), (yylsp[0])); } #line 5929 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 337: #line 2171 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.selection_rest_statement).then_statement = (yyvsp[-2].node); (yyval.selection_rest_statement).else_statement = (yyvsp[0].node); } #line 5938 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 338: #line 2176 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.selection_rest_statement).then_statement = (yyvsp[0].node); (yyval.selection_rest_statement).else_statement = NULL; } #line 5947 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 339: #line 2184 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (ast_node *) (yyvsp[0].expression); } #line 5955 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 340: #line 2188 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[-2].identifier), NULL, (yyvsp[0].expression)); ast_declarator_list *declarator = new(ctx) ast_declarator_list((yyvsp[-3].fully_specified_type)); decl->set_location_range((yylsp[-2]), (yylsp[0])); declarator->set_location((yylsp[-3])); declarator->declarations.push_tail(&decl->link); (yyval.node) = declarator; } #line 5970 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 341: #line 2206 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = new(state) ast_switch_statement((yyvsp[-2].expression), (yyvsp[0].switch_body)); (yyval.node)->set_location_range((yylsp[-4]), (yylsp[0])); } #line 5979 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 342: #line 2214 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.switch_body) = new(state) ast_switch_body(NULL); (yyval.switch_body)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5988 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 343: #line 2219 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.switch_body) = new(state) ast_switch_body((yyvsp[-1].case_statement_list)); (yyval.switch_body)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 5997 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 344: #line 2227 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.case_label) = new(state) ast_case_label((yyvsp[-1].expression)); (yyval.case_label)->set_location((yylsp[-1])); } #line 6006 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 345: #line 2232 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.case_label) = new(state) ast_case_label(NULL); (yyval.case_label)->set_location((yylsp[0])); } #line 6015 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 346: #line 2240 "glsl_parser.yy" /* yacc.c:1646 */ { ast_case_label_list *labels = new(state) ast_case_label_list(); labels->labels.push_tail(& (yyvsp[0].case_label)->link); (yyval.case_label_list) = labels; (yyval.case_label_list)->set_location((yylsp[0])); } #line 6027 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 347: #line 2248 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.case_label_list) = (yyvsp[-1].case_label_list); (yyval.case_label_list)->labels.push_tail(& (yyvsp[0].case_label)->link); } #line 6036 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 348: #line 2256 "glsl_parser.yy" /* yacc.c:1646 */ { ast_case_statement *stmts = new(state) ast_case_statement((yyvsp[-1].case_label_list)); stmts->set_location((yylsp[0])); stmts->stmts.push_tail(& (yyvsp[0].node)->link); (yyval.case_statement) = stmts; } #line 6048 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 349: #line 2264 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.case_statement) = (yyvsp[-1].case_statement); (yyval.case_statement)->stmts.push_tail(& (yyvsp[0].node)->link); } #line 6057 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 350: #line 2272 "glsl_parser.yy" /* yacc.c:1646 */ { ast_case_statement_list *cases= new(state) ast_case_statement_list(); cases->set_location((yylsp[0])); cases->cases.push_tail(& (yyvsp[0].case_statement)->link); (yyval.case_statement_list) = cases; } #line 6069 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 351: #line 2280 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.case_statement_list) = (yyvsp[-1].case_statement_list); (yyval.case_statement_list)->cases.push_tail(& (yyvsp[0].case_statement)->link); } #line 6078 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 352: #line 2288 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_iteration_statement(ast_iteration_statement::ast_while, NULL, (yyvsp[-2].node), NULL, (yyvsp[0].node)); (yyval.node)->set_location_range((yylsp[-4]), (yylsp[-1])); } #line 6089 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 353: #line 2295 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_iteration_statement(ast_iteration_statement::ast_do_while, NULL, (yyvsp[-2].expression), NULL, (yyvsp[-5].node)); (yyval.node)->set_location_range((yylsp[-6]), (yylsp[-1])); } #line 6100 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 354: #line 2302 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_iteration_statement(ast_iteration_statement::ast_for, (yyvsp[-3].node), (yyvsp[-2].for_rest_statement).cond, (yyvsp[-2].for_rest_statement).rest, (yyvsp[0].node)); (yyval.node)->set_location_range((yylsp[-5]), (yylsp[0])); } #line 6111 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 358: #line 2318 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = NULL; } #line 6119 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 359: #line 2325 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.for_rest_statement).cond = (yyvsp[-1].node); (yyval.for_rest_statement).rest = NULL; } #line 6128 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 360: #line 2330 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.for_rest_statement).cond = (yyvsp[-2].node); (yyval.for_rest_statement).rest = (yyvsp[0].expression); } #line 6137 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 361: #line 2339 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_continue, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 6147 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 362: #line 2345 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_break, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 6157 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 363: #line 2351 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_return, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 6167 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 364: #line 2357 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_return, (yyvsp[-1].expression)); (yyval.node)->set_location_range((yylsp[-2]), (yylsp[-1])); } #line 6177 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 365: #line 2363 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_discard, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 6187 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 366: #line 2371 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (yyvsp[0].function_definition); } #line 6193 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 367: #line 2372 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (yyvsp[0].node); } #line 6199 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 368: #line 2373 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = NULL; } #line 6205 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 369: #line 2374 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (yyvsp[0].node); } #line 6211 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 370: #line 2379 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; (yyval.function_definition) = new(ctx) ast_function_definition(); (yyval.function_definition)->set_location_range((yylsp[-1]), (yylsp[0])); (yyval.function_definition)->prototype = (yyvsp[-1].function); (yyval.function_definition)->body = (yyvsp[0].compound_statement); state->symbols->pop_scope(); } #line 6225 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 371: #line 2393 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = (yyvsp[0].interface_block); } #line 6233 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 372: #line 2397 "glsl_parser.yy" /* yacc.c:1646 */ { ast_interface_block *block = (yyvsp[0].interface_block); if (!block->layout.merge_qualifier(& (yylsp[-1]), state, (yyvsp[-1].type_qualifier))) { YYERROR; } foreach_list_typed (ast_declarator_list, member, link, &block->declarations) { ast_type_qualifier& qualifier = member->type->qualifier; if (qualifier.flags.q.stream && qualifier.stream != block->layout.stream) { _mesa_glsl_error(& (yylsp[-1]), state, "stream layout qualifier on " "interface block member does not match " "the interface block (%d vs %d)", qualifier.stream, block->layout.stream); YYERROR; } } (yyval.node) = block; } #line 6257 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 373: #line 2420 "glsl_parser.yy" /* yacc.c:1646 */ { ast_interface_block *const block = (yyvsp[-1].interface_block); block->block_name = (yyvsp[-5].identifier); block->declarations.push_degenerate_list_at_head(& (yyvsp[-3].declarator_list)->link); if ((yyvsp[-6].type_qualifier).flags.q.uniform) { if (!state->has_uniform_buffer_objects()) { _mesa_glsl_error(& (yylsp[-6]), state, "#version 140 / GL_ARB_uniform_buffer_object " "required for defining uniform blocks"); } else if (state->ARB_uniform_buffer_object_warn) { _mesa_glsl_warning(& (yylsp[-6]), state, "#version 140 / GL_ARB_uniform_buffer_object " "required for defining uniform blocks"); } } else { if (state->es_shader || state->language_version < 150) { _mesa_glsl_error(& (yylsp[-6]), state, "#version 150 required for using " "interface blocks"); } } /* From the GLSL 1.50.11 spec, section 4.3.7 ("Interface Blocks"): * "It is illegal to have an input block in a vertex shader * or an output block in a fragment shader" */ if ((state->stage == MESA_SHADER_VERTEX) && (yyvsp[-6].type_qualifier).flags.q.in) { _mesa_glsl_error(& (yylsp[-6]), state, "`in' interface block is not allowed for " "a vertex shader"); } else if ((state->stage == MESA_SHADER_FRAGMENT) && (yyvsp[-6].type_qualifier).flags.q.out) { _mesa_glsl_error(& (yylsp[-6]), state, "`out' interface block is not allowed for " "a fragment shader"); } /* Since block arrays require names, and both features are added in * the same language versions, we don't have to explicitly * version-check both things. */ if (block->instance_name != NULL) { state->check_version(150, 300, & (yylsp[-6]), "interface blocks with " "an instance name are not allowed"); } uint64_t interface_type_mask; struct ast_type_qualifier temp_type_qualifier; /* Get a bitmask containing only the in/out/uniform flags, allowing us * to ignore other irrelevant flags like interpolation qualifiers. */ temp_type_qualifier.flags.i = 0; temp_type_qualifier.flags.q.uniform = true; temp_type_qualifier.flags.q.in = true; temp_type_qualifier.flags.q.out = true; interface_type_mask = temp_type_qualifier.flags.i; /* Get the block's interface qualifier. The interface_qualifier * production rule guarantees that only one bit will be set (and * it will be in/out/uniform). */ uint64_t block_interface_qualifier = (yyvsp[-6].type_qualifier).flags.i; block->layout.flags.i |= block_interface_qualifier; if (state->stage == MESA_SHADER_GEOMETRY && state->has_explicit_attrib_stream()) { /* Assign global layout's stream value. */ block->layout.flags.q.stream = 1; block->layout.flags.q.explicit_stream = 0; block->layout.stream = state->out_qualifier->stream; } foreach_list_typed (ast_declarator_list, member, link, &block->declarations) { ast_type_qualifier& qualifier = member->type->qualifier; if ((qualifier.flags.i & interface_type_mask) == 0) { /* GLSLangSpec.1.50.11, 4.3.7 (Interface Blocks): * "If no optional qualifier is used in a member declaration, the * qualifier of the variable is just in, out, or uniform as declared * by interface-qualifier." */ qualifier.flags.i |= block_interface_qualifier; } else if ((qualifier.flags.i & interface_type_mask) != block_interface_qualifier) { /* GLSLangSpec.1.50.11, 4.3.7 (Interface Blocks): * "If optional qualifiers are used, they can include interpolation * and storage qualifiers and they must declare an input, output, * or uniform variable consistent with the interface qualifier of * the block." */ _mesa_glsl_error(& (yylsp[-6]), state, "uniform/in/out qualifier on " "interface block member does not match " "the interface block"); } } (yyval.interface_block) = block; } #line 6363 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 374: #line 2525 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; } #line 6372 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 375: #line 2530 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.out = 1; } #line 6381 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 376: #line 2535 "glsl_parser.yy" /* yacc.c:1646 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.uniform = 1; } #line 6390 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 377: #line 2543 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.interface_block) = new(state) ast_interface_block(*state->default_uniform_qualifier, NULL, NULL); } #line 6399 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 378: #line 2548 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.interface_block) = new(state) ast_interface_block(*state->default_uniform_qualifier, (yyvsp[0].identifier), NULL); (yyval.interface_block)->set_location((yylsp[0])); } #line 6409 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 379: #line 2554 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.interface_block) = new(state) ast_interface_block(*state->default_uniform_qualifier, (yyvsp[-1].identifier), (yyvsp[0].array_specifier)); (yyval.interface_block)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 6419 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 380: #line 2563 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.declarator_list) = (yyvsp[0].declarator_list); (yyvsp[0].declarator_list)->link.self_link(); } #line 6428 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 381: #line 2568 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.declarator_list) = (yyvsp[-1].declarator_list); (yyvsp[0].declarator_list)->link.insert_before(& (yyval.declarator_list)->link); } #line 6437 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 382: #line 2576 "glsl_parser.yy" /* yacc.c:1646 */ { void *ctx = state; ast_fully_specified_type *type = (yyvsp[-2].fully_specified_type); type->set_location((yylsp[-2])); if (type->qualifier.flags.q.attribute) { _mesa_glsl_error(& (yylsp[-2]), state, "keyword 'attribute' cannot be used with " "interface block member"); } else if (type->qualifier.flags.q.varying) { _mesa_glsl_error(& (yylsp[-2]), state, "keyword 'varying' cannot be used with " "interface block member"); } (yyval.declarator_list) = new(ctx) ast_declarator_list(type); (yyval.declarator_list)->set_location((yylsp[-1])); (yyval.declarator_list)->declarations.push_degenerate_list_at_head(& (yyvsp[-1].declaration)->link); } #line 6462 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 383: #line 2600 "glsl_parser.yy" /* yacc.c:1646 */ { if (!state->default_uniform_qualifier->merge_qualifier(& (yylsp[-2]), state, (yyvsp[-2].type_qualifier))) { YYERROR; } (yyval.node) = NULL; } #line 6473 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 384: #line 2608 "glsl_parser.yy" /* yacc.c:1646 */ { (yyval.node) = NULL; if (!state->in_qualifier->merge_in_qualifier(& (yylsp[-2]), state, (yyvsp[-2].type_qualifier), (yyval.node))) { YYERROR; } } #line 6484 "glsl_parser.cpp" /* yacc.c:1646 */ break; case 385: #line 2616 "glsl_parser.yy" /* yacc.c:1646 */ { if (state->stage != MESA_SHADER_GEOMETRY) { _mesa_glsl_error(& (yylsp[-2]), state, "out layout qualifiers only valid in " "geometry shaders"); } else { if ((yyvsp[-2].type_qualifier).flags.q.prim_type) { /* Make sure this is a valid output primitive type. */ switch ((yyvsp[-2].type_qualifier).prim_type) { case GL_POINTS: case GL_LINE_STRIP: case GL_TRIANGLE_STRIP: break; default: _mesa_glsl_error(&(yylsp[-2]), state, "invalid geometry shader output " "primitive type"); break; } } if (!state->out_qualifier->merge_qualifier(& (yylsp[-2]), state, (yyvsp[-2].type_qualifier))) YYERROR; /* Allow future assigments of global out's stream id value */ state->out_qualifier->flags.q.explicit_stream = 0; } (yyval.node) = NULL; } #line 6516 "glsl_parser.cpp" /* yacc.c:1646 */ break; #line 6520 "glsl_parser.cpp" /* yacc.c:1646 */ default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; *++yylsp = yyloc; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (&yylloc, state, YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (&yylloc, state, yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } yyerror_range[1] = yylloc; if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, &yylloc, state); 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; yyerror_range[1] = yylsp[1-yylen]; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yyerror_range[1] = *yylsp; yydestruct ("Error: popping", yystos[yystate], yyvsp, yylsp, state); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END yyerror_range[2] = yylloc; /* Using YYLLOC is tempting, but would change the location of the lookahead. YYLOC is available though. */ YYLLOC_DEFAULT (yyloc, yyerror_range, 2); *++yylsp = yyloc; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined yyoverflow || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (&yylloc, state, YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, &yylloc, state); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp, yylsp, state); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif return yyresult; }