/* A Bison parser, made by GNU Bison 3.2.4. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018 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. */ /* Undocumented macros, especially those whose name start with YY_, are private implementation details. Do not rely on them. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "3.2.4" /* 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 /* First part of user prologue. */ #line 1 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:338 */ /* * 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 #ifndef _MSC_VER #include #endif #include #include "ast.h" #include "glsl_parser_extras.h" #include "compiler/glsl_types.h" #include "main/context.h" #ifdef _MSC_VER #pragma warning( disable : 4065 ) // switch statement contains 'default' but no 'case' labels #endif #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 155 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:338 */ # ifndef YY_NULLPTR # if defined __cplusplus # if 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # else # define YY_NULLPTR ((void*)0) # endif # endif /* 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_COMPILER_GLSL_GLSL_PARSER_H_INCLUDED # define YY__MESA_GLSL_SRC_COMPILER_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, BASIC_TYPE_TOK = 260, BREAK = 261, BUFFER = 262, CONTINUE = 263, DO = 264, ELSE = 265, FOR = 266, IF = 267, DISCARD = 268, RETURN = 269, SWITCH = 270, CASE = 271, DEFAULT = 272, CENTROID = 273, IN_TOK = 274, OUT_TOK = 275, INOUT_TOK = 276, UNIFORM = 277, VARYING = 278, SAMPLE = 279, NOPERSPECTIVE = 280, FLAT = 281, SMOOTH = 282, IMAGE1DSHADOW = 283, IMAGE2DSHADOW = 284, IMAGE1DARRAYSHADOW = 285, IMAGE2DARRAYSHADOW = 286, COHERENT = 287, VOLATILE = 288, RESTRICT = 289, READONLY = 290, WRITEONLY = 291, SHARED = 292, STRUCT = 293, VOID_TOK = 294, WHILE = 295, IDENTIFIER = 296, TYPE_IDENTIFIER = 297, NEW_IDENTIFIER = 298, FLOATCONSTANT = 299, DOUBLECONSTANT = 300, INTCONSTANT = 301, UINTCONSTANT = 302, BOOLCONSTANT = 303, INT64CONSTANT = 304, UINT64CONSTANT = 305, FIELD_SELECTION = 306, LEFT_OP = 307, RIGHT_OP = 308, INC_OP = 309, DEC_OP = 310, LE_OP = 311, GE_OP = 312, EQ_OP = 313, NE_OP = 314, AND_OP = 315, OR_OP = 316, XOR_OP = 317, MUL_ASSIGN = 318, DIV_ASSIGN = 319, ADD_ASSIGN = 320, MOD_ASSIGN = 321, LEFT_ASSIGN = 322, RIGHT_ASSIGN = 323, AND_ASSIGN = 324, XOR_ASSIGN = 325, OR_ASSIGN = 326, SUB_ASSIGN = 327, INVARIANT = 328, PRECISE = 329, LOWP = 330, MEDIUMP = 331, HIGHP = 332, SUPERP = 333, PRECISION = 334, VERSION_TOK = 335, EXTENSION = 336, LINE = 337, COLON = 338, EOL = 339, INTERFACE = 340, OUTPUT = 341, PRAGMA_DEBUG_ON = 342, PRAGMA_DEBUG_OFF = 343, PRAGMA_OPTIMIZE_ON = 344, PRAGMA_OPTIMIZE_OFF = 345, PRAGMA_WARNING_ON = 346, PRAGMA_WARNING_OFF = 347, PRAGMA_INVARIANT_ALL = 348, LAYOUT_TOK = 349, DOT_TOK = 350, ASM = 351, CLASS = 352, UNION = 353, ENUM = 354, TYPEDEF = 355, TEMPLATE = 356, THIS = 357, PACKED_TOK = 358, GOTO = 359, INLINE_TOK = 360, NOINLINE = 361, PUBLIC_TOK = 362, STATIC = 363, EXTERN = 364, EXTERNAL = 365, LONG_TOK = 366, SHORT_TOK = 367, HALF = 368, FIXED_TOK = 369, UNSIGNED = 370, INPUT_TOK = 371, HVEC2 = 372, HVEC3 = 373, HVEC4 = 374, FVEC2 = 375, FVEC3 = 376, FVEC4 = 377, SAMPLER3DRECT = 378, SIZEOF = 379, CAST = 380, NAMESPACE = 381, USING = 382, RESOURCE = 383, PATCH = 384, SUBROUTINE = 385, ERROR_TOK = 386, COMMON = 387, PARTITION = 388, ACTIVE = 389, FILTER = 390, ROW_MAJOR = 391, THEN = 392 }; #endif /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { #line 98 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:353 */ int n; int64_t n64; float real; double dreal; 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; ast_subroutine_list *subroutine_list; struct { ast_node *cond; ast_expression *rest; } for_rest_statement; struct { ast_node *then_statement; ast_node *else_statement; } selection_rest_statement; const glsl_type *type; #line 377 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:353 */ }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif /* Location type. */ #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED typedef struct YYLTYPE YYLTYPE; struct YYLTYPE { int first_line; int first_column; int last_line; int last_column; }; # define YYLTYPE_IS_DECLARED 1 # define YYLTYPE_IS_TRIVIAL 1 #endif int _mesa_glsl_parse (struct _mesa_glsl_parse_state *state); #endif /* !YY__MESA_GLSL_SRC_COMPILER_GLSL_GLSL_PARSER_H_INCLUDED */ #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 yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short 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 # 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 /* 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__ && ! defined __ICC && 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 2531 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 161 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 110 /* YYNRULES -- Number of rules. */ #define YYNRULES 310 /* YYNSTATES -- Number of states. */ #define YYNSTATES 472 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 392 #define YYTRANSLATE(YYX) \ ((unsigned) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex, without out-of-bounds checking. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 145, 2, 2, 2, 149, 152, 2, 138, 139, 147, 143, 142, 144, 2, 148, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 156, 158, 150, 157, 151, 155, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 140, 2, 141, 153, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 159, 154, 160, 146, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 291, 291, 290, 314, 316, 323, 333, 334, 335, 336, 337, 361, 366, 373, 375, 379, 380, 381, 385, 394, 402, 410, 421, 422, 426, 433, 440, 447, 454, 461, 468, 475, 482, 489, 490, 496, 500, 507, 513, 522, 526, 530, 534, 535, 539, 540, 544, 550, 562, 566, 572, 586, 587, 593, 599, 609, 610, 611, 612, 616, 617, 623, 629, 638, 639, 645, 654, 655, 661, 670, 671, 677, 683, 689, 698, 699, 705, 714, 715, 724, 725, 734, 735, 744, 745, 754, 755, 764, 765, 774, 775, 784, 785, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 808, 812, 828, 832, 837, 841, 846, 863, 867, 868, 872, 877, 885, 903, 914, 931, 946, 954, 971, 974, 982, 990, 1002, 1014, 1021, 1026, 1031, 1040, 1044, 1045, 1055, 1065, 1075, 1089, 1096, 1107, 1118, 1129, 1140, 1152, 1167, 1174, 1192, 1199, 1200, 1210, 1695, 1860, 1886, 1891, 1896, 1904, 1909, 1918, 1927, 1939, 1944, 1949, 1958, 1963, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1992, 2000, 2025, 2049, 2063, 2068, 2084, 2109, 2121, 2129, 2134, 2139, 2146, 2151, 2156, 2161, 2166, 2191, 2203, 2208, 2213, 2221, 2226, 2231, 2237, 2242, 2250, 2258, 2264, 2274, 2285, 2286, 2294, 2300, 2306, 2315, 2316, 2317, 2329, 2334, 2339, 2347, 2354, 2371, 2376, 2384, 2422, 2427, 2435, 2441, 2450, 2451, 2455, 2462, 2469, 2476, 2482, 2483, 2487, 2488, 2489, 2490, 2491, 2492, 2496, 2503, 2502, 2516, 2517, 2521, 2527, 2536, 2546, 2555, 2567, 2573, 2582, 2591, 2596, 2604, 2608, 2626, 2634, 2639, 2647, 2652, 2660, 2668, 2676, 2684, 2692, 2700, 2708, 2715, 2722, 2732, 2733, 2737, 2739, 2745, 2750, 2759, 2765, 2771, 2777, 2783, 2792, 2793, 2794, 2795, 2796, 2800, 2814, 2818, 2831, 2849, 2868, 2873, 2878, 2883, 2888, 2903, 2906, 2911, 2919, 2924, 2932, 2956, 2963, 2967, 2974, 2978, 2988, 2997, 3007, 3016, 3028, 3050, 3060 }; #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", "BASIC_TYPE_TOK", "BREAK", "BUFFER", "CONTINUE", "DO", "ELSE", "FOR", "IF", "DISCARD", "RETURN", "SWITCH", "CASE", "DEFAULT", "CENTROID", "IN_TOK", "OUT_TOK", "INOUT_TOK", "UNIFORM", "VARYING", "SAMPLE", "NOPERSPECTIVE", "FLAT", "SMOOTH", "IMAGE1DSHADOW", "IMAGE2DSHADOW", "IMAGE1DARRAYSHADOW", "IMAGE2DARRAYSHADOW", "COHERENT", "VOLATILE", "RESTRICT", "READONLY", "WRITEONLY", "SHARED", "STRUCT", "VOID_TOK", "WHILE", "IDENTIFIER", "TYPE_IDENTIFIER", "NEW_IDENTIFIER", "FLOATCONSTANT", "DOUBLECONSTANT", "INTCONSTANT", "UINTCONSTANT", "BOOLCONSTANT", "INT64CONSTANT", "UINT64CONSTANT", "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_WARNING_ON", "PRAGMA_WARNING_OFF", "PRAGMA_INVARIANT_ALL", "LAYOUT_TOK", "DOT_TOK", "ASM", "CLASS", "UNION", "ENUM", "TYPEDEF", "TEMPLATE", "THIS", "PACKED_TOK", "GOTO", "INLINE_TOK", "NOINLINE", "PUBLIC_TOK", "STATIC", "EXTERN", "EXTERNAL", "LONG_TOK", "SHORT_TOK", "HALF", "FIXED_TOK", "UNSIGNED", "INPUT_TOK", "HVEC2", "HVEC3", "HVEC4", "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", "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", "layout_qualifier_id", "interface_block_layout_qualifier", "subroutine_qualifier", "subroutine_type_list", "interpolation_qualifier", "type_qualifier", "auxiliary_storage_qualifier", "storage_qualifier", "memory_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_uniform_defaults", "layout_buffer_defaults", "layout_in_defaults", "layout_out_defaults", "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, 40, 41, 91, 93, 44, 43, 45, 33, 126, 42, 47, 37, 60, 62, 38, 94, 124, 63, 58, 61, 59, 123, 125 }; # endif #define YYPACT_NINF -398 #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-398))) #define YYTABLE_NINF -292 #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[] = { -73, 24, 72, -398, 192, -398, 37, -398, -398, -398, -398, 43, 6, 1753, -398, -398, 52, -398, -398, -398, 110, -398, 155, 170, -398, 193, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -22, -398, -398, 2208, 2208, -398, -398, -398, 258, 134, 171, 173, 182, 186, 188, 201, 140, 298, -398, 177, -398, -398, 1654, -398, -61, 169, 184, 67, -85, -398, 320, 2273, 2336, 2336, 69, 2401, 2336, 2401, -398, 178, -398, 2336, -398, -398, -398, -398, -398, 270, -398, -398, -398, -398, -398, 6, 2145, 172, -398, -398, -398, -398, -398, -398, 2336, 2336, -398, 2336, -398, 2336, 2336, -398, -398, 69, -398, -398, -398, -398, -398, -398, -398, 139, -398, 6, -398, -398, -398, 804, -398, -398, 319, 319, -398, -398, -398, 319, -398, 51, 319, 319, 319, 6, -398, 198, 203, -123, 204, -30, -18, -1, 0, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, 2401, -398, -398, 1846, 190, -398, 185, 265, 6, 933, -398, 2145, 200, -398, -398, -398, 199, -48, -398, -398, -398, 90, 206, 208, 1282, 212, 221, 209, 1759, 235, 236, -398, -398, -398, -398, -398, -398, -398, 1981, 1981, 1981, -398, -398, -398, -398, -398, 215, -398, -398, -398, 205, -398, -398, -398, 237, 129, 2016, 239, 180, 1981, 223, 3, 53, 27, 116, 226, 227, 228, 321, 322, -45, -398, -398, -66, -398, 225, 247, -398, -398, -398, -398, 488, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, 69, 6, -398, -398, -398, -103, 1493, 31, -398, -398, -398, -398, -398, -398, -398, -398, 245, -398, 1957, 2145, -398, 178, -46, -398, -398, -398, 996, -398, 1981, -398, 139, -398, 6, -398, -398, 347, 1568, 1981, -398, -398, 57, 1981, 1903, -398, -398, 144, -398, 1282, -398, -398, 337, 1981, -398, -398, 1981, 251, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, 1981, -398, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, -398, -398, -398, -398, 6, 178, 1493, 32, 1493, -398, -398, 1493, -398, -398, 250, 6, 232, 2145, 190, 6, -398, -398, -398, -398, -398, 259, -398, -398, 1903, 150, -398, 175, 256, 6, 260, -398, 646, -398, 261, 256, -398, -398, -398, -398, -398, 223, 223, 3, 3, 53, 53, 53, 53, 27, 27, 116, 226, 227, 228, 321, 322, -127, -398, -398, 190, -398, 1493, -398, -119, -398, -398, 63, 357, -398, -398, 1981, -398, 243, 264, 1282, 246, 249, 1439, -398, -398, 1981, -398, 938, -398, -398, 178, 252, 183, 1981, 1439, 394, -398, -8, -398, 1493, -398, -398, -398, -398, -398, -398, 190, -398, 255, 256, -398, 1282, 1981, 253, -398, -398, 1125, 1282, -5, -398, -398, -398, -104, -398, -398, -398, -398, -398, 1282, -398 }; /* 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, 14, 0, 1, 2, 16, 17, 18, 5, 0, 0, 0, 15, 6, 0, 185, 184, 208, 191, 181, 187, 188, 189, 190, 186, 182, 162, 161, 160, 193, 194, 195, 196, 197, 192, 0, 207, 206, 163, 164, 212, 211, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 156, 282, 280, 3, 279, 0, 0, 114, 123, 0, 133, 138, 168, 170, 167, 0, 165, 166, 169, 145, 202, 204, 171, 205, 20, 278, 111, 284, 0, 307, 308, 309, 310, 281, 0, 0, 0, 191, 187, 188, 190, 23, 24, 163, 164, 143, 168, 173, 165, 169, 144, 172, 0, 7, 8, 9, 10, 12, 13, 11, 0, 209, 0, 22, 21, 108, 0, 283, 112, 123, 123, 129, 130, 131, 123, 115, 0, 123, 123, 123, 0, 109, 16, 18, 139, 0, 191, 187, 188, 190, 175, 285, 299, 301, 303, 305, 176, 174, 146, 177, 292, 178, 168, 180, 286, 0, 203, 179, 0, 0, 0, 0, 215, 0, 0, 155, 154, 153, 150, 0, 148, 152, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 31, 26, 27, 32, 28, 29, 0, 0, 0, 56, 57, 58, 59, 246, 237, 241, 25, 34, 52, 36, 41, 42, 0, 0, 46, 0, 60, 0, 64, 67, 70, 75, 78, 80, 82, 84, 86, 88, 90, 92, 105, 0, 227, 0, 145, 230, 243, 229, 228, 0, 231, 232, 233, 234, 235, 116, 124, 125, 121, 122, 0, 132, 126, 128, 127, 134, 0, 140, 117, 302, 304, 306, 300, 198, 60, 107, 0, 50, 0, 0, 19, 220, 0, 218, 214, 216, 0, 110, 0, 147, 0, 157, 0, 274, 273, 0, 0, 0, 277, 275, 0, 0, 0, 53, 54, 0, 236, 0, 38, 39, 0, 0, 44, 43, 0, 207, 47, 49, 95, 96, 98, 97, 100, 101, 102, 103, 104, 99, 94, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 242, 245, 244, 0, 118, 0, 135, 0, 222, 142, 0, 199, 200, 0, 0, 0, 296, 221, 0, 217, 213, 151, 149, 159, 0, 268, 267, 270, 0, 276, 0, 251, 0, 0, 33, 0, 37, 0, 40, 48, 93, 61, 62, 63, 65, 66, 68, 69, 73, 74, 71, 72, 76, 77, 79, 81, 83, 85, 87, 89, 0, 106, 119, 120, 137, 0, 225, 0, 141, 201, 0, 293, 297, 219, 0, 269, 0, 0, 0, 0, 0, 0, 238, 35, 0, 136, 0, 223, 298, 294, 0, 0, 271, 0, 250, 248, 0, 253, 0, 240, 264, 239, 91, 224, 226, 295, 287, 0, 272, 266, 0, 0, 0, 254, 258, 0, 262, 0, 252, 265, 249, 0, 257, 260, 259, 261, 255, 263, 256 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -398, -398, -398, -398, -398, -398, 14, 4, -398, 127, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, 151, -398, -121, -65, -120, -42, 73, 79, 80, 81, 82, 78, -398, -117, -134, -398, -153, -78, 9, 23, -398, -398, -398, -398, 296, 176, -398, -398, -398, -398, -90, 1, -398, 146, -398, -398, -398, -398, 123, -38, -398, -9, -135, -13, -398, -398, 194, -398, 262, -161, 71, 74, -188, -398, 138, -154, -397, -398, -398, -6, 371, 136, 148, -398, -398, 66, -398, -398, -20, -398, -21, -398, -398, -398, -398, -398, -398, 382, -398, -44, -398, 370, -398, 84, -398, 379, 380, 383, 384, -398 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 2, 13, 3, 58, 6, 271, 344, 59, 206, 207, 208, 380, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 319, 231, 266, 232, 233, 62, 63, 64, 248, 131, 132, 133, 249, 65, 66, 67, 102, 175, 176, 177, 69, 179, 70, 71, 72, 73, 105, 162, 267, 76, 77, 78, 79, 167, 168, 272, 273, 352, 410, 235, 236, 237, 238, 297, 443, 444, 239, 240, 241, 438, 376, 242, 440, 457, 458, 459, 460, 243, 370, 419, 420, 244, 80, 81, 82, 83, 84, 433, 358, 359, 85, 86, 87, 88, 89 }; /* 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[] = { 75, 166, 104, 104, 74, 257, 275, 1, 454, 455, 14, 454, 455, -291, 68, 341, 339, 161, 11, 7, 8, 9, 60, 429, 147, -288, 16, 442, 285, 427, 160, 104, 104, 290, 256, 104, 61, 161, 341, 442, 104, 430, -289, -290, 265, 295, 75, 7, 8, 9, 74, 92, 471, 104, 348, 134, 19, 136, 154, 74, 68, 104, 104, 119, 104, 74, 104, 104, 60, 68, 4, 126, 5, 137, 19, 158, 341, 166, 75, 166, 306, 140, 61, 328, 329, 345, 127, 128, 129, 37, 38, 279, 342, 39, 280, 170, 361, 121, 122, 31, 32, 33, 34, 35, 165, 326, 327, 37, 38, 234, 340, 39, 362, 74, 147, 275, 134, 134, 12, 251, 349, 134, 351, 158, 134, 134, 134, 15, 259, 104, 174, 104, 178, 250, 371, 90, 360, 91, 373, 374, 260, 130, 42, 43, 44, 53, 324, 325, 381, 74, 255, 265, 456, -291, 75, 469, 75, 261, 262, 158, 407, 265, 409, 103, 107, 411, 54, 101, 106, 234, 382, 268, 268, 74, 332, 333, 171, 330, 331, 357, 7, 8, 9, 158, 54, 383, 166, 403, 353, 408, 356, 146, 152, 153, 141, 155, 157, 159, -288, 341, 364, 163, 375, 387, 388, 361, -113, 404, 391, 392, 393, 394, 406, -289, 351, 372, 351, 374, 109, 351, 428, 431, 103, 107, 345, 146, 234, 155, 159, 281, 74, 104, 282, 7, 8, 9, -290, 346, 104, 108, 158, 447, 172, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 461, 104, 110, 75, 111, 135, 298, 299, 389, 390, 75, 434, 347, 112, 437, 303, 357, 113, 304, 114, 234, 351, 173, 10, 74, 116, 234, 375, 146, 451, 377, 234, 115, 341, 158, 74, 421, 395, 396, 341, 445, 174, 351, 366, 448, 158, 463, 300, 464, 246, 117, 466, 468, 247, 351, 124, 252, 253, 254, 264, 164, 422, 118, 468, 341, 161, 135, 135, 104, 450, 126, 135, 341, 125, 135, 135, 135, 268, 169, 104, 42, 43, 44, -23, 318, 127, 128, 129, -24, 258, -51, 269, 301, 75, 293, 294, 270, 286, 31, 32, 33, 34, 35, 278, 234, 277, 287, 405, 138, 8, 139, 283, 234, 284, 288, 320, 74, 321, 322, 323, 291, 292, 296, 302, 307, 334, 158, 335, 337, 336, 121, 338, -50, 354, 367, 379, 423, -45, 412, 414, 130, 42, 43, 44, 417, 341, 424, 432, 435, 426, 436, 453, 439, 441, 397, 234, 465, 449, 234, 74, 462, 398, 74, 399, 402, 400, 264, 401, 245, 158, 234, 368, 158, 365, 74, 413, 264, 452, 276, 123, 378, 369, 416, 418, 158, 467, 470, 234, 120, 156, 415, 74, 234, 234, 148, 149, 74, 74, 150, 151, 0, 158, 0, 0, 234, 0, 158, 158, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 384, 385, 386, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 17, 18, 19, 180, 20, 181, 182, 0, 183, 184, 185, 186, 187, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 188, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 204, 343, 17, 18, 19, 180, 20, 181, 182, 0, 183, 184, 185, 186, 187, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 188, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 204, 425, 17, 18, 19, 180, 20, 181, 182, 0, 183, 184, 185, 186, 187, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 188, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 17, 18, 19, 0, 93, 0, 198, 19, 0, 0, 0, 199, 200, 201, 202, 21, 94, 95, 24, 96, 26, 27, 28, 29, 30, 0, 203, 204, 205, 31, 32, 33, 34, 35, 36, 37, 38, 0, 0, 39, 37, 38, 0, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 17, 18, 19, 0, 93, 0, 0, 99, 100, 42, 43, 44, 0, 0, 0, 21, 94, 95, 24, 96, 26, 27, 28, 29, 30, 0, 0, 0, 53, 31, 32, 33, 34, 35, 36, 37, 38, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 99, 100, 42, 43, 44, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 53, 0, 0, 274, 0, 0, 0, 350, 446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 17, 18, 19, 180, 20, 181, 182, 0, 183, 184, 185, 186, 187, 454, 455, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 0, 363, 31, 32, 33, 34, 35, 36, 37, 38, 188, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 204, 17, 18, 19, 180, 20, 181, 182, 0, 183, 184, 185, 186, 187, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 188, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 204, 17, 18, 19, 180, 20, 181, 182, 0, 183, 184, 185, 186, 187, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 188, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 38, 53, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 17, 18, 19, 0, 20, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 203, 122, 0, 31, 32, 33, 34, 35, 36, 37, 38, 54, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 40, 41, 42, 43, 44, 0, 45, 0, 0, 0, 0, 350, 0, 0, 0, 0, 17, 18, 19, 0, 20, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 54, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 0, 0, 39, 55, 56, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 40, 41, 42, 43, 44, 0, 45, 0, 12, 0, 0, 0, 0, 0, 46, 47, 48, 49, 50, 51, 52, 53, 0, 0, 0, 0, 0, 0, 0, 17, 18, 19, 0, 20, 0, 0, 0, 19, 0, 0, 0, 0, 54, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 0, 55, 56, 31, 32, 33, 34, 35, 36, 37, 38, 0, 0, 39, 0, 37, 38, 0, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 57, 196, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 44, 0, 45, 0, 0, 0, 0, 0, 0, 0, 46, 47, 48, 49, 50, 51, 52, 53, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 55, 56, 37, 38, 0, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 198, 0, 0, 196, 197, 199, 200, 201, 202, 17, 18, 19, 0, 93, 57, 0, 0, 0, 0, 0, 289, 0, 0, 0, 21, 94, 95, 24, 96, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 0, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 54, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 100, 42, 43, 44, 0, 0, 0, 198, 0, 19, 263, 0, 199, 200, 201, 202, 0, 0, 37, 38, 53, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 0, 0, 0, 0, 0, 54, 37, 38, 19, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 55, 56, 0, 196, 197, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 0, 37, 305, 0, 97, 39, 98, 189, 190, 191, 192, 193, 194, 195, 0, 0, 0, 196, 197, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198, 54, 0, 355, 0, 199, 200, 201, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 19, 0, 93, 0, 198, 0, 0, 0, 0, 199, 200, 201, 202, 21, 94, 95, 24, 96, 26, 27, 28, 29, 30, 0, 0, 0, 0, 31, 32, 33, 34, 35, 36, 37, 38, 0, 0, 39, 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, 0, 0, 93, 0, 0, 99, 100, 42, 43, 44, 0, 0, 0, 21, 94, 95, 24, 96, 26, 27, 28, 29, 30, 0, 0, 0, 53, 31, 32, 33, 34, 35, 36, 0, 0, 0, 97, 0, 98, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 17, 18, 0, 0, 142, 99, 100, 42, 43, 44, 0, 0, 0, 0, 0, 21, 143, 144, 24, 145, 26, 27, 28, 29, 30, 0, 53, 0, 0, 31, 32, 33, 34, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 17, 18, 0, 0, 93, 0, 0, 99, 100, 42, 43, 44, 0, 0, 0, 21, 94, 95, 24, 96, 26, 27, 28, 29, 30, 0, 0, 0, 53, 31, 32, 33, 34, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 17, 18, 0, 0, 20, 99, 100, 42, 43, 44, 0, 0, 0, 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 53, 0, 0, 31, 32, 33, 34, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 0, 0, 99, 100, 42, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 56 }; static const yytype_int16 yycheck[] = { 13, 91, 40, 41, 13, 140, 167, 80, 16, 17, 6, 16, 17, 43, 13, 142, 61, 140, 4, 41, 42, 43, 13, 142, 68, 43, 12, 424, 182, 156, 74, 69, 70, 186, 157, 73, 13, 140, 142, 436, 78, 160, 43, 43, 161, 198, 59, 41, 42, 43, 59, 37, 156, 91, 157, 64, 5, 142, 71, 68, 59, 99, 100, 59, 102, 74, 104, 105, 59, 68, 46, 4, 0, 158, 5, 74, 142, 167, 91, 169, 214, 67, 59, 56, 57, 239, 19, 20, 21, 38, 39, 139, 158, 42, 142, 108, 142, 158, 159, 32, 33, 34, 35, 36, 90, 52, 53, 38, 39, 122, 155, 42, 158, 122, 158, 276, 125, 126, 81, 132, 255, 130, 256, 122, 133, 134, 135, 84, 158, 167, 116, 169, 118, 132, 287, 83, 271, 159, 291, 292, 158, 74, 75, 76, 77, 94, 143, 144, 301, 158, 136, 268, 160, 43, 167, 160, 169, 158, 158, 158, 348, 278, 350, 40, 41, 353, 115, 40, 41, 182, 304, 140, 140, 182, 58, 59, 37, 150, 151, 269, 41, 42, 43, 182, 115, 319, 276, 340, 157, 157, 268, 68, 69, 70, 67, 72, 73, 74, 43, 142, 278, 78, 292, 324, 325, 142, 139, 341, 328, 329, 330, 331, 347, 43, 348, 158, 350, 370, 84, 353, 408, 158, 99, 100, 378, 102, 239, 104, 105, 139, 239, 269, 142, 41, 42, 43, 43, 250, 276, 45, 239, 429, 103, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 441, 292, 84, 269, 84, 64, 54, 55, 326, 327, 276, 417, 251, 84, 421, 139, 359, 84, 142, 84, 286, 408, 136, 84, 286, 138, 292, 370, 158, 435, 139, 297, 84, 142, 286, 297, 139, 332, 333, 142, 427, 280, 429, 282, 432, 297, 453, 95, 454, 126, 5, 458, 459, 130, 441, 139, 133, 134, 135, 161, 43, 139, 138, 470, 142, 140, 125, 126, 359, 139, 4, 130, 142, 142, 133, 134, 135, 140, 159, 370, 75, 76, 77, 138, 157, 19, 20, 21, 138, 138, 138, 159, 140, 359, 196, 197, 84, 138, 32, 33, 34, 35, 36, 157, 370, 158, 138, 346, 41, 42, 43, 158, 378, 158, 158, 217, 378, 147, 148, 149, 138, 138, 160, 139, 138, 152, 378, 153, 60, 154, 158, 62, 138, 141, 40, 51, 375, 139, 141, 160, 74, 75, 76, 77, 138, 142, 139, 43, 158, 141, 139, 10, 159, 157, 334, 421, 156, 158, 424, 421, 158, 335, 424, 336, 339, 337, 268, 338, 125, 421, 436, 286, 424, 280, 436, 357, 278, 436, 169, 61, 297, 286, 361, 370, 436, 458, 460, 453, 59, 72, 359, 453, 458, 459, 68, 68, 458, 459, 68, 68, -1, 453, -1, -1, 470, -1, 458, 459, 470, -1, -1, -1, -1, -1, -1, -1, -1, -1, 470, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 3, 4, 5, 6, 7, 8, 9, -1, 11, 12, 13, 14, 15, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 3, 4, 5, 6, 7, 8, 9, -1, 11, 12, 13, 14, 15, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 3, 4, 5, 6, 7, 8, 9, -1, 11, 12, 13, 14, 15, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, 3, 4, 5, -1, 7, -1, 138, 5, -1, -1, -1, 143, 144, 145, 146, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 158, 159, 160, 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, 42, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, 3, 4, 5, -1, 7, -1, -1, 73, 74, 75, 76, 77, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 94, 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, 94, -1, -1, 160, -1, -1, -1, 159, 160, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, 3, 4, 5, 6, 7, 8, 9, -1, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 160, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 3, 4, 5, 6, 7, 8, 9, -1, 11, 12, 13, 14, 15, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 3, 4, 5, 6, 7, 8, 9, -1, 11, 12, 13, 14, 15, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 38, 39, 94, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, -1, 3, 4, 5, -1, 7, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 158, 159, -1, 32, 33, 34, 35, 36, 37, 38, 39, 115, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, 73, 74, 75, 76, 77, -1, 79, -1, -1, -1, -1, 159, -1, -1, -1, -1, 3, 4, 5, -1, 7, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 115, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, 42, 129, 130, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 73, 74, 75, 76, 77, -1, 79, -1, 81, -1, -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, -1, 7, -1, -1, -1, 5, -1, -1, -1, -1, 115, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 129, 130, 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, 42, -1, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, 158, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, -1, -1, -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, -1, -1, -1, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, 129, 130, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 138, -1, -1, 54, 55, 143, 144, 145, 146, 3, 4, 5, -1, 7, 158, -1, -1, -1, -1, -1, 158, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, 115, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, -1, -1, 138, -1, 5, 141, -1, 143, 144, 145, 146, -1, -1, 38, 39, 94, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, -1, -1, -1, -1, -1, 115, 38, 39, 5, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 129, 130, -1, 54, 55, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, -1, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, -1, -1, -1, 54, 55, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 138, 115, -1, 141, -1, 143, 144, 145, 146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, -1, 7, -1, 138, -1, -1, -1, -1, 143, 144, 145, 146, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, 42, -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, -1, -1, 7, -1, -1, 73, 74, 75, 76, 77, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 94, 32, 33, 34, 35, 36, 37, -1, -1, -1, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 129, 130, 3, 4, -1, -1, 7, 73, 74, 75, 76, 77, -1, -1, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 94, -1, -1, 32, 33, 34, 35, 36, 37, -1, -1, -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, 3, 4, -1, -1, 7, -1, -1, 73, 74, 75, 76, 77, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 94, 32, 33, 34, 35, 36, 37, -1, -1, -1, -1, -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, 3, 4, -1, -1, 7, 73, 74, 75, 76, 77, -1, -1, -1, -1, -1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 94, -1, -1, 32, 33, 34, 35, 36, 37, -1, -1, -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, -1, -1, -1, -1, -1, -1, -1, 73, 74, 75, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -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 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 80, 162, 164, 46, 0, 166, 41, 42, 43, 84, 167, 81, 163, 168, 84, 167, 3, 4, 5, 7, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 32, 33, 34, 35, 36, 37, 38, 39, 42, 73, 74, 75, 76, 77, 79, 87, 88, 89, 90, 91, 92, 93, 94, 115, 129, 130, 158, 165, 169, 199, 200, 201, 202, 203, 209, 210, 211, 212, 216, 218, 219, 220, 221, 222, 224, 225, 226, 227, 228, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 83, 159, 167, 7, 19, 20, 22, 41, 43, 73, 74, 170, 212, 219, 220, 222, 170, 219, 227, 84, 84, 84, 84, 84, 84, 84, 138, 5, 138, 168, 258, 158, 159, 241, 139, 142, 4, 19, 20, 21, 74, 205, 206, 207, 222, 227, 142, 158, 41, 43, 167, 170, 7, 19, 20, 22, 219, 260, 266, 267, 268, 269, 219, 219, 224, 219, 262, 219, 212, 219, 260, 140, 223, 219, 43, 167, 211, 229, 230, 159, 224, 37, 103, 136, 167, 213, 214, 215, 167, 217, 6, 8, 9, 11, 12, 13, 14, 15, 40, 44, 45, 46, 47, 48, 49, 50, 54, 55, 138, 143, 144, 145, 146, 158, 159, 160, 170, 171, 172, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 224, 235, 236, 237, 238, 242, 243, 244, 247, 253, 257, 205, 206, 206, 204, 208, 212, 224, 206, 206, 206, 167, 157, 223, 138, 158, 158, 158, 158, 141, 181, 194, 198, 224, 140, 159, 84, 167, 231, 232, 160, 230, 229, 158, 157, 139, 142, 139, 142, 158, 158, 236, 138, 138, 158, 158, 197, 138, 138, 181, 181, 197, 160, 239, 54, 55, 95, 140, 139, 139, 142, 39, 195, 138, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 157, 196, 181, 147, 148, 149, 143, 144, 52, 53, 56, 57, 150, 151, 58, 59, 152, 153, 154, 60, 62, 61, 155, 142, 158, 160, 168, 236, 224, 167, 157, 223, 159, 195, 233, 157, 141, 141, 198, 211, 264, 265, 223, 142, 158, 160, 198, 214, 167, 40, 235, 243, 254, 197, 158, 197, 197, 211, 246, 139, 242, 51, 173, 197, 195, 195, 181, 181, 181, 183, 183, 184, 184, 185, 185, 185, 185, 186, 186, 187, 188, 189, 190, 191, 192, 197, 195, 167, 223, 233, 157, 233, 234, 233, 141, 231, 160, 264, 232, 138, 246, 255, 256, 139, 139, 167, 139, 160, 141, 156, 233, 142, 160, 158, 43, 263, 197, 158, 139, 236, 245, 159, 248, 157, 237, 240, 241, 195, 160, 233, 223, 158, 139, 197, 240, 10, 16, 17, 160, 249, 250, 251, 252, 233, 158, 236, 197, 156, 236, 249, 236, 160, 251, 156 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 161, 163, 162, 164, 164, 164, 165, 165, 165, 165, 165, 165, 165, 166, 166, 167, 167, 167, 168, 169, 169, 169, 170, 170, 171, 171, 171, 171, 171, 171, 171, 171, 171, 172, 172, 172, 172, 172, 172, 173, 174, 175, 176, 176, 177, 177, 178, 178, 179, 180, 180, 181, 181, 181, 181, 182, 182, 182, 182, 183, 183, 183, 183, 184, 184, 184, 185, 185, 185, 186, 186, 186, 186, 186, 187, 187, 187, 188, 188, 189, 189, 190, 190, 191, 191, 192, 192, 193, 193, 194, 194, 195, 195, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 197, 197, 198, 199, 199, 199, 199, 200, 201, 201, 202, 202, 203, 204, 204, 204, 205, 205, 206, 206, 206, 206, 206, 206, 207, 207, 207, 208, 209, 209, 209, 209, 209, 210, 210, 210, 210, 210, 210, 210, 211, 211, 212, 213, 213, 214, 214, 214, 215, 215, 215, 216, 216, 217, 217, 218, 218, 218, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 220, 220, 220, 221, 221, 221, 221, 221, 221, 221, 221, 221, 222, 222, 222, 222, 222, 223, 223, 223, 223, 224, 224, 225, 225, 225, 226, 226, 226, 227, 227, 227, 228, 228, 229, 229, 230, 231, 231, 232, 232, 233, 233, 233, 234, 234, 235, 236, 236, 237, 237, 237, 237, 237, 237, 238, 239, 238, 240, 240, 241, 241, 242, 242, 242, 243, 243, 244, 245, 245, 246, 246, 247, 248, 248, 249, 249, 250, 250, 251, 251, 252, 252, 253, 253, 253, 254, 254, 255, 255, 256, 256, 257, 257, 257, 257, 257, 258, 258, 258, 258, 258, 259, 260, 260, 260, 261, 262, 262, 262, 262, 262, 263, 263, 263, 264, 264, 265, 266, 266, 267, 267, 268, 268, 269, 269, 270, 270, 270, 270 }; /* 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, 2, 2, 0, 2, 1, 1, 1, 5, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 4, 1, 3, 2, 2, 1, 1, 1, 2, 2, 2, 1, 2, 3, 2, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 2, 2, 4, 1, 2, 1, 1, 2, 3, 3, 2, 3, 3, 2, 2, 0, 2, 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, 3, 1, 1, 1, 1, 1, 4, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 4, 1, 2, 1, 1, 1, 1, 1, 2, 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, 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, 1, 2, 1, 2, 2, 7, 1, 1, 1, 1, 2, 0, 1, 2, 1, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 1, 1, 1, 1 }; #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 int yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp) { int res = 0; int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; if (0 <= yylocp->first_line) { res += YYFPRINTF (yyo, "%d", yylocp->first_line); if (0 <= yylocp->first_column) res += YYFPRINTF (yyo, ".%d", yylocp->first_column); } if (0 <= yylocp->last_line) { if (yylocp->first_line < yylocp->last_line) { res += YYFPRINTF (yyo, "-%d", yylocp->last_line); if (0 <= end_col) res += YYFPRINTF (yyo, ".%d", end_col); } else if (0 <= end_col && yylocp->first_column < end_col) res += YYFPRINTF (yyo, "-%d", end_col); } return res; } # define 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 YYO. | `-----------------------------------*/ static void yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, struct _mesa_glsl_parse_state *state) { FILE *yyoutput = yyo; YYUSE (yyoutput); YYUSE (yylocationp); YYUSE (state); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyo, yytoknum[yytype], *yyvaluep); # endif YYUSE (yytype); } /*---------------------------. | Print this symbol on YYO. | `---------------------------*/ static void yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, struct _mesa_glsl_parse_state *state) { YYFPRINTF (yyo, "%s %s (", yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); YY_LOCATION_PRINT (yyo, *yylocationp); YYFPRINTF (yyo, ": "); yy_symbol_value_print (yyo, yytype, yyvaluep, yylocationp, state); YYFPRINTF (yyo, ")"); } /*------------------------------------------------------------------. | 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 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 (YYSIZE_T) (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 default: /* Avoid compiler warnings. */ YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } { 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 87 "../src/compiler/glsl/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 2244 "src/compiler/glsl/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 = (yytype_int16) yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = (YYSIZE_T) (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); yyss = yyss1; yyvs = yyvs1; yyls = yyls1; } #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) 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); yyerror_range[1] = yyloc; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: #line 291 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { _mesa_glsl_initialize_types(state); } #line 2435 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 3: #line 295 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { delete state->symbols; state->symbols = new(ralloc_parent(state)) glsl_symbol_table; if (state->es_shader) { if (state->stage == MESA_SHADER_FRAGMENT) { state->symbols->add_default_precision_qualifier("int", ast_precision_medium); } else { state->symbols->add_default_precision_qualifier("float", ast_precision_high); state->symbols->add_default_precision_qualifier("int", ast_precision_high); } state->symbols->add_default_precision_qualifier("sampler2D", ast_precision_low); state->symbols->add_default_precision_qualifier("samplerExternalOES", ast_precision_low); state->symbols->add_default_precision_qualifier("samplerCube", ast_precision_low); state->symbols->add_default_precision_qualifier("atomic_uint", ast_precision_high); } _mesa_glsl_initialize_types(state); } #line 2457 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 5: #line 317 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->process_version_directive(&(yylsp[-1]), (yyvsp[-1].n), NULL); if (state->error) { YYERROR; } } #line 2468 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 6: #line 324 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->process_version_directive(&(yylsp[-2]), (yyvsp[-2].n), (yyvsp[-1].identifier)); if (state->error) { YYERROR; } } #line 2479 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 7: #line 333 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; } #line 2485 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 8: #line 334 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; } #line 2491 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 9: #line 335 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; } #line 2497 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 10: #line 336 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; } #line 2503 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 11: #line 338 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { /* Pragma invariant(all) cannot be used in a fragment shader. * * Page 27 of the GLSL 1.20 spec, Page 53 of the GLSL ES 3.00 spec: * * "It is an error to use this pragma in a fragment shader." */ if (state->is_version(120, 300) && state->stage == MESA_SHADER_FRAGMENT) { _mesa_glsl_error(& (yylsp[-1]), state, "pragma `invariant(all)' cannot be used " "in a fragment shader."); } else 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; } (yyval.node) = NULL; } #line 2531 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 12: #line 362 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *mem_ctx = state->linalloc; (yyval.node) = new(mem_ctx) ast_warnings_toggle(true); } #line 2540 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 13: #line 367 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *mem_ctx = state->linalloc; (yyval.node) = new(mem_ctx) ast_warnings_toggle(false); } #line 2549 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 19: #line 386 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if (!_mesa_glsl_process_extension((yyvsp[-3].identifier), & (yylsp[-3]), (yyvsp[-1].identifier), & (yylsp[-1]), state)) { YYERROR; } } #line 2559 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 20: #line 395 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { /* 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 2571 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 21: #line 403 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { /* 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 2583 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 22: #line 410 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 2596 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 25: #line 427 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2607 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 26: #line 434 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2618 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 27: #line 441 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2629 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 28: #line 448 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_int64_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.int64_constant = (yyvsp[0].n64); } #line 2640 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 29: #line 455 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_uint64_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.uint64_constant = (yyvsp[0].n64); } #line 2651 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 30: #line 462 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2662 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 31: #line 469 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_double_constant, NULL, NULL, NULL); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->primary_expression.double_constant = (yyvsp[0].dreal); } #line 2673 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 32: #line 476 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2684 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 33: #line 483 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[-1].expression); } #line 2692 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 35: #line 491 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2702 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 36: #line 497 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[0].expression); } #line 2710 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 37: #line 501 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2721 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 38: #line 508 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_post_inc, (yyvsp[-1].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 2731 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 39: #line 514 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_post_dec, (yyvsp[-1].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 2741 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 47: #line 545 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[-1].expression); (yyval.expression)->set_location((yylsp[-1])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 2751 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 48: #line 551 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[-2].expression); (yyval.expression)->set_location((yylsp[-2])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 2761 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 50: #line 567 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_function_expression((yyvsp[0].type_specifier)); (yyval.expression)->set_location((yylsp[0])); } #line 2771 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 51: #line 573 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_function_expression((yyvsp[0].expression)); (yyval.expression)->set_location((yylsp[0])); } #line 2781 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 53: #line 588 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_pre_inc, (yyvsp[0].expression), NULL, NULL); (yyval.expression)->set_location((yylsp[-1])); } #line 2791 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 54: #line 594 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression(ast_pre_dec, (yyvsp[0].expression), NULL, NULL); (yyval.expression)->set_location((yylsp[-1])); } #line 2801 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 55: #line 600 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_expression((yyvsp[-1].n), (yyvsp[0].expression), NULL, NULL); (yyval.expression)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 2811 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 56: #line 609 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_plus; } #line 2817 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 57: #line 610 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_neg; } #line 2823 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 58: #line 611 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_logic_not; } #line 2829 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 59: #line 612 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_bit_not; } #line 2835 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 61: #line 618 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2845 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 62: #line 624 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2855 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 63: #line 630 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2865 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 65: #line 640 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2875 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 66: #line 646 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2885 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 68: #line 656 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2895 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 69: #line 662 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2905 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 71: #line 672 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2915 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 72: #line 678 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2925 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 73: #line 684 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2935 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 74: #line 690 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2945 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 76: #line 700 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2955 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 77: #line 706 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2965 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 79: #line 716 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2975 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 81: #line 726 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2985 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 83: #line 736 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 2995 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 85: #line 746 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 3005 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 87: #line 756 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 3015 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 89: #line 766 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 3025 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 91: #line 776 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 3035 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 93: #line 786 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 3045 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 94: #line 794 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_assign; } #line 3051 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 95: #line 795 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_mul_assign; } #line 3057 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 96: #line 796 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_div_assign; } #line 3063 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 97: #line 797 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_mod_assign; } #line 3069 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 98: #line 798 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_add_assign; } #line 3075 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 99: #line 799 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_sub_assign; } #line 3081 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 100: #line 800 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_ls_assign; } #line 3087 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 101: #line 801 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_rs_assign; } #line 3093 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 102: #line 802 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_and_assign; } #line 3099 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 103: #line 803 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_xor_assign; } #line 3105 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 104: #line 804 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.n) = ast_or_assign; } #line 3111 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 105: #line 809 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[0].expression); } #line 3119 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 106: #line 813 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3136 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 108: #line 833 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->symbols->pop_scope(); (yyval.node) = (yyvsp[-1].function); } #line 3145 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 109: #line 838 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (yyvsp[-1].declarator_list); } #line 3153 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 110: #line 842 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyvsp[-1].type_specifier)->default_precision = (yyvsp[-2].n); (yyval.node) = (yyvsp[-1].type_specifier); } #line 3162 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 111: #line 847 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_interface_block *block = (ast_interface_block *) (yyvsp[0].node); if (block->layout.has_layout() || block->layout.has_memory()) { if (!block->default_layout.merge_qualifier(& (yylsp[0]), state, block->layout, false)) { YYERROR; } } block->layout = block->default_layout; if (!block->layout.push_to_global(& (yylsp[0]), state)) { YYERROR; } (yyval.node) = (yyvsp[0].node); } #line 3180 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 115: #line 873 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.function) = (yyvsp[-1].function); (yyval.function)->parameters.push_tail(& (yyvsp[0].parameter_declarator)->link); } #line 3189 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 116: #line 878 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.function) = (yyvsp[-2].function); (yyval.function)->parameters.push_tail(& (yyvsp[0].parameter_declarator)->link); } #line 3198 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 117: #line 886 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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); if ((yyvsp[-2].fully_specified_type)->qualifier.is_subroutine_decl()) { /* add type for IDENTIFIER search */ state->symbols->add_type((yyvsp[-1].identifier), glsl_type::get_subroutine_instance((yyvsp[-1].identifier))); } else state->symbols->add_function(new(state) ir_function((yyvsp[-1].identifier))); state->symbols->push_scope(); } #line 3217 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 118: #line 904 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[0].identifier), ir_var_auto)); } #line 3232 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 119: #line 915 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if (state->allow_layout_qualifier_on_function_parameter) { void *ctx = state->linalloc; (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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[0].identifier), ir_var_auto)); } else { _mesa_glsl_error(&(yylsp[-2]), state, "is is not allowed on function parameter"); YYERROR; } } #line 3253 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 120: #line 932 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-1].identifier), ir_var_auto)); } #line 3269 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 121: #line 947 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.parameter_declarator) = (yyvsp[0].parameter_declarator); (yyval.parameter_declarator)->type->qualifier = (yyvsp[-1].type_qualifier); if (!(yyval.parameter_declarator)->type->qualifier.push_to_global(& (yylsp[-1]), state)) { YYERROR; } } #line 3281 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 122: #line 955 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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); if (!(yyval.parameter_declarator)->type->qualifier.push_to_global(& (yylsp[-1]), state)) { YYERROR; } (yyval.parameter_declarator)->type->specifier = (yyvsp[0].type_specifier); } #line 3298 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 123: #line 971 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); } #line 3306 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 124: #line 975 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 3318 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 125: #line 983 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 3330 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 126: #line 991 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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->has_420pack_or_es31() && (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), false); } #line 3346 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 127: #line 1003 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if ((yyvsp[0].type_qualifier).precision != ast_precision_none) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate precision qualifier"); if (!state->has_420pack_or_es31() && (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 3362 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 128: #line 1015 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier), false); } #line 3371 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 129: #line 1022 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; } #line 3380 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 130: #line 1027 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.out = 1; } #line 3389 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 131: #line 1032 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; (yyval.type_qualifier).flags.q.out = 1; } #line 3399 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 134: #line 1046 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3413 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 135: #line 1056 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3427 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 136: #line 1066 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3441 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 137: #line 1076 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3455 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 138: #line 1090 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; /* 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 3466 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 139: #line 1097 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[0].identifier), ir_var_auto)); } #line 3481 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 140: #line 1108 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-1].identifier), ir_var_auto)); } #line 3496 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 141: #line 1119 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-3].identifier), ir_var_auto)); } #line 3511 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 142: #line 1130 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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); state->symbols->add_variable(new(state) ir_variable(NULL, (yyvsp[-2].identifier), ir_var_auto)); } #line 3526 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 143: #line 1141 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3542 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 144: #line 1153 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 3558 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 145: #line 1168 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 3569 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 146: #line 1175 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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); if (!(yyval.fully_specified_type)->qualifier.push_to_global(& (yylsp[-1]), state)) { YYERROR; } (yyval.fully_specified_type)->specifier = (yyvsp[0].type_specifier); if ((yyval.fully_specified_type)->specifier->structure != NULL && (yyval.fully_specified_type)->specifier->structure->is_declaration) { (yyval.fully_specified_type)->specifier->structure->layout = &(yyval.fully_specified_type)->qualifier; } } #line 3588 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 147: #line 1193 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); } #line 3596 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 149: #line 1201 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-2].type_qualifier); if (!(yyval.type_qualifier).merge_qualifier(& (yylsp[0]), state, (yyvsp[0].type_qualifier), true)) { YYERROR; } } #line 3607 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 150: #line 1211 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 || state->is_version(420, 0))) { if (match_layout_qualifier((yyvsp[0].identifier), "depth_any", state) == 0) { (yyval.type_qualifier).flags.q.depth_type = 1; (yyval.type_qualifier).depth_type = ast_depth_any; } else if (match_layout_qualifier((yyvsp[0].identifier), "depth_greater", state) == 0) { (yyval.type_qualifier).flags.q.depth_type = 1; (yyval.type_qualifier).depth_type = ast_depth_greater; } else if (match_layout_qualifier((yyvsp[0].identifier), "depth_less", state) == 0) { (yyval.type_qualifier).flags.q.depth_type = 1; (yyval.type_qualifier).depth_type = ast_depth_less; } else if (match_layout_qualifier((yyvsp[0].identifier), "depth_unchanged", state) == 0) { (yyval.type_qualifier).flags.q.depth_type = 1; (yyval.type_qualifier).depth_type = ast_depth_unchanged; } 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), "std430", state) == 0) { (yyval.type_qualifier).flags.q.std430 = 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 < ARRAY_SIZE(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->has_geometry_shader() && !state->has_tessellation_shader()) { _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->has_shader_image_load_store()) { if (!(yyval.type_qualifier).flags.i) { static const struct { const char *name; GLenum format; glsl_base_type base_type; /** Minimum desktop GLSL version required for the image * format. Use 130 if already present in the original * ARB extension. */ unsigned required_glsl; /** Minimum GLSL ES version required for the image format. */ unsigned required_essl; /* NV_image_formats */ bool nv_image_formats; } map[] = { { "rgba32f", GL_RGBA32F, GLSL_TYPE_FLOAT, 130, 310, false }, { "rgba16f", GL_RGBA16F, GLSL_TYPE_FLOAT, 130, 310, false }, { "rg32f", GL_RG32F, GLSL_TYPE_FLOAT, 130, 0, true }, { "rg16f", GL_RG16F, GLSL_TYPE_FLOAT, 130, 0, true }, { "r11f_g11f_b10f", GL_R11F_G11F_B10F, GLSL_TYPE_FLOAT, 130, 0, true }, { "r32f", GL_R32F, GLSL_TYPE_FLOAT, 130, 310, false }, { "r16f", GL_R16F, GLSL_TYPE_FLOAT, 130, 0, true }, { "rgba32ui", GL_RGBA32UI, GLSL_TYPE_UINT, 130, 310, false }, { "rgba16ui", GL_RGBA16UI, GLSL_TYPE_UINT, 130, 310, false }, { "rgb10_a2ui", GL_RGB10_A2UI, GLSL_TYPE_UINT, 130, 0, true }, { "rgba8ui", GL_RGBA8UI, GLSL_TYPE_UINT, 130, 310, false }, { "rg32ui", GL_RG32UI, GLSL_TYPE_UINT, 130, 0, true }, { "rg16ui", GL_RG16UI, GLSL_TYPE_UINT, 130, 0, true }, { "rg8ui", GL_RG8UI, GLSL_TYPE_UINT, 130, 0, true }, { "r32ui", GL_R32UI, GLSL_TYPE_UINT, 130, 310, false }, { "r16ui", GL_R16UI, GLSL_TYPE_UINT, 130, 0, true }, { "r8ui", GL_R8UI, GLSL_TYPE_UINT, 130, 0, true }, { "rgba32i", GL_RGBA32I, GLSL_TYPE_INT, 130, 310, false }, { "rgba16i", GL_RGBA16I, GLSL_TYPE_INT, 130, 310, false }, { "rgba8i", GL_RGBA8I, GLSL_TYPE_INT, 130, 310, false }, { "rg32i", GL_RG32I, GLSL_TYPE_INT, 130, 0, true }, { "rg16i", GL_RG16I, GLSL_TYPE_INT, 130, 0, true }, { "rg8i", GL_RG8I, GLSL_TYPE_INT, 130, 0, true }, { "r32i", GL_R32I, GLSL_TYPE_INT, 130, 310, false }, { "r16i", GL_R16I, GLSL_TYPE_INT, 130, 0, true }, { "r8i", GL_R8I, GLSL_TYPE_INT, 130, 0, true }, { "rgba16", GL_RGBA16, GLSL_TYPE_FLOAT, 130, 0, true }, { "rgb10_a2", GL_RGB10_A2, GLSL_TYPE_FLOAT, 130, 0, true }, { "rgba8", GL_RGBA8, GLSL_TYPE_FLOAT, 130, 310, false }, { "rg16", GL_RG16, GLSL_TYPE_FLOAT, 130, 0, true }, { "rg8", GL_RG8, GLSL_TYPE_FLOAT, 130, 0, true }, { "r16", GL_R16, GLSL_TYPE_FLOAT, 130, 0, true }, { "r8", GL_R8, GLSL_TYPE_FLOAT, 130, 0, true }, { "rgba16_snorm", GL_RGBA16_SNORM, GLSL_TYPE_FLOAT, 130, 0, true }, { "rgba8_snorm", GL_RGBA8_SNORM, GLSL_TYPE_FLOAT, 130, 310, false }, { "rg16_snorm", GL_RG16_SNORM, GLSL_TYPE_FLOAT, 130, 0, true }, { "rg8_snorm", GL_RG8_SNORM, GLSL_TYPE_FLOAT, 130, 0, true }, { "r16_snorm", GL_R16_SNORM, GLSL_TYPE_FLOAT, 130, 0, true }, { "r8_snorm", GL_R8_SNORM, GLSL_TYPE_FLOAT, 130, 0, true } }; for (unsigned i = 0; i < ARRAY_SIZE(map); i++) { if ((state->is_version(map[i].required_glsl, map[i].required_essl) || (state->NV_image_formats_enable && map[i].nv_image_formats)) && 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) { if (match_layout_qualifier((yyvsp[0].identifier), "early_fragment_tests", state) == 0) { /* From section 4.4.1.3 of the GLSL 4.50 specification * (Fragment Shader Inputs): * * "Fragment shaders also allow the following layout * qualifier on in only (not with variable declarations) * layout-qualifier-id * early_fragment_tests * [...]" */ if (state->stage != MESA_SHADER_FRAGMENT) { _mesa_glsl_error(& (yylsp[0]), state, "early_fragment_tests layout qualifier only " "valid in fragment shaders"); } (yyval.type_qualifier).flags.q.early_fragment_tests = 1; } if (match_layout_qualifier((yyvsp[0].identifier), "inner_coverage", state) == 0) { if (state->stage != MESA_SHADER_FRAGMENT) { _mesa_glsl_error(& (yylsp[0]), state, "inner_coverage layout qualifier only " "valid in fragment shaders"); } if (state->INTEL_conservative_rasterization_enable) { (yyval.type_qualifier).flags.q.inner_coverage = 1; } else { _mesa_glsl_error(& (yylsp[0]), state, "inner_coverage layout qualifier present, " "but the INTEL_conservative_rasterization extension " "is not enabled."); } } if (match_layout_qualifier((yyvsp[0].identifier), "post_depth_coverage", state) == 0) { if (state->stage != MESA_SHADER_FRAGMENT) { _mesa_glsl_error(& (yylsp[0]), state, "post_depth_coverage layout qualifier only " "valid in fragment shaders"); } if (state->ARB_post_depth_coverage_enable || state->INTEL_conservative_rasterization_enable) { (yyval.type_qualifier).flags.q.post_depth_coverage = 1; } else { _mesa_glsl_error(& (yylsp[0]), state, "post_depth_coverage layout qualifier present, " "but the GL_ARB_post_depth_coverage extension " "is not enabled."); } } if ((yyval.type_qualifier).flags.q.post_depth_coverage && (yyval.type_qualifier).flags.q.inner_coverage) { _mesa_glsl_error(& (yylsp[0]), state, "post_depth_coverage & inner_coverage layout qualifiers " "are mutually exclusive"); } } const bool pixel_interlock_ordered = match_layout_qualifier((yyvsp[0].identifier), "pixel_interlock_ordered", state) == 0; const bool pixel_interlock_unordered = match_layout_qualifier((yyvsp[0].identifier), "pixel_interlock_unordered", state) == 0; const bool sample_interlock_ordered = match_layout_qualifier((yyvsp[0].identifier), "sample_interlock_ordered", state) == 0; const bool sample_interlock_unordered = match_layout_qualifier((yyvsp[0].identifier), "sample_interlock_unordered", state) == 0; if (pixel_interlock_ordered + pixel_interlock_unordered + sample_interlock_ordered + sample_interlock_unordered > 0 && state->stage != MESA_SHADER_FRAGMENT) { _mesa_glsl_error(& (yylsp[0]), state, "interlock layout qualifiers: " "pixel_interlock_ordered, pixel_interlock_unordered, " "sample_interlock_ordered and sample_interlock_unordered, " "only valid in fragment shader input layout declaration."); } else if (pixel_interlock_ordered + pixel_interlock_unordered + sample_interlock_ordered + sample_interlock_unordered > 0 && !state->ARB_fragment_shader_interlock_enable && !state->NV_fragment_shader_interlock_enable) { _mesa_glsl_error(& (yylsp[0]), state, "interlock layout qualifier present, but the " "GL_ARB_fragment_shader_interlock or " "GL_NV_fragment_shader_interlock extension is not " "enabled."); } else { (yyval.type_qualifier).flags.q.pixel_interlock_ordered = pixel_interlock_ordered; (yyval.type_qualifier).flags.q.pixel_interlock_unordered = pixel_interlock_unordered; (yyval.type_qualifier).flags.q.sample_interlock_ordered = sample_interlock_ordered; (yyval.type_qualifier).flags.q.sample_interlock_unordered = sample_interlock_unordered; } /* Layout qualifiers for tessellation evaluation shaders. */ if (!(yyval.type_qualifier).flags.i) { static const struct { const char *s; GLenum e; } map[] = { /* triangles already parsed by gs-specific code */ { "quads", GL_QUADS }, { "isolines", GL_ISOLINES }, }; for (unsigned i = 0; i < ARRAY_SIZE(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->has_tessellation_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "primitive mode qualifier `%s' requires " "GLSL 4.00 or ARB_tessellation_shader", (yyvsp[0].identifier)); } } if (!(yyval.type_qualifier).flags.i) { static const struct { const char *s; enum gl_tess_spacing e; } map[] = { { "equal_spacing", TESS_SPACING_EQUAL }, { "fractional_odd_spacing", TESS_SPACING_FRACTIONAL_ODD }, { "fractional_even_spacing", TESS_SPACING_FRACTIONAL_EVEN }, }; for (unsigned i = 0; i < ARRAY_SIZE(map); i++) { if (match_layout_qualifier((yyvsp[0].identifier), map[i].s, state) == 0) { (yyval.type_qualifier).flags.q.vertex_spacing = 1; (yyval.type_qualifier).vertex_spacing = map[i].e; break; } } if ((yyval.type_qualifier).flags.i && !state->has_tessellation_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "vertex spacing qualifier `%s' requires " "GLSL 4.00 or ARB_tessellation_shader", (yyvsp[0].identifier)); } } if (!(yyval.type_qualifier).flags.i) { if (match_layout_qualifier((yyvsp[0].identifier), "cw", state) == 0) { (yyval.type_qualifier).flags.q.ordering = 1; (yyval.type_qualifier).ordering = GL_CW; } else if (match_layout_qualifier((yyvsp[0].identifier), "ccw", state) == 0) { (yyval.type_qualifier).flags.q.ordering = 1; (yyval.type_qualifier).ordering = GL_CCW; } if ((yyval.type_qualifier).flags.i && !state->has_tessellation_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "ordering qualifier `%s' requires " "GLSL 4.00 or ARB_tessellation_shader", (yyvsp[0].identifier)); } } if (!(yyval.type_qualifier).flags.i) { if (match_layout_qualifier((yyvsp[0].identifier), "point_mode", state) == 0) { (yyval.type_qualifier).flags.q.point_mode = 1; (yyval.type_qualifier).point_mode = true; } if ((yyval.type_qualifier).flags.i && !state->has_tessellation_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "qualifier `point_mode' requires " "GLSL 4.00 or ARB_tessellation_shader"); } } if (!(yyval.type_qualifier).flags.i) { static const struct { const char *s; uint32_t mask; } map[] = { { "blend_support_multiply", BLEND_MULTIPLY }, { "blend_support_screen", BLEND_SCREEN }, { "blend_support_overlay", BLEND_OVERLAY }, { "blend_support_darken", BLEND_DARKEN }, { "blend_support_lighten", BLEND_LIGHTEN }, { "blend_support_colordodge", BLEND_COLORDODGE }, { "blend_support_colorburn", BLEND_COLORBURN }, { "blend_support_hardlight", BLEND_HARDLIGHT }, { "blend_support_softlight", BLEND_SOFTLIGHT }, { "blend_support_difference", BLEND_DIFFERENCE }, { "blend_support_exclusion", BLEND_EXCLUSION }, { "blend_support_hsl_hue", BLEND_HSL_HUE }, { "blend_support_hsl_saturation", BLEND_HSL_SATURATION }, { "blend_support_hsl_color", BLEND_HSL_COLOR }, { "blend_support_hsl_luminosity", BLEND_HSL_LUMINOSITY }, { "blend_support_all_equations", BLEND_ALL }, }; for (unsigned i = 0; i < ARRAY_SIZE(map); i++) { if (match_layout_qualifier((yyvsp[0].identifier), map[i].s, state) == 0) { (yyval.type_qualifier).flags.q.blend_support = 1; state->fs_blend_support |= map[i].mask; break; } } if ((yyval.type_qualifier).flags.i && !state->KHR_blend_equation_advanced_enable && !state->is_version(0, 320)) { _mesa_glsl_error(& (yylsp[0]), state, "advanced blending layout qualifiers require " "ESSL 3.20 or KHR_blend_equation_advanced"); } if ((yyval.type_qualifier).flags.i && state->stage != MESA_SHADER_FRAGMENT) { _mesa_glsl_error(& (yylsp[0]), state, "advanced blending layout qualifiers only " "valid in fragment shaders"); } } /* Layout qualifiers for ARB_compute_variable_group_size. */ if (!(yyval.type_qualifier).flags.i) { if (match_layout_qualifier((yyvsp[0].identifier), "local_size_variable", state) == 0) { (yyval.type_qualifier).flags.q.local_size_variable = 1; } if ((yyval.type_qualifier).flags.i && !state->ARB_compute_variable_group_size_enable) { _mesa_glsl_error(& (yylsp[0]), state, "qualifier `local_size_variable` requires " "ARB_compute_variable_group_size"); } } /* Layout qualifiers for ARB_bindless_texture. */ if (!(yyval.type_qualifier).flags.i) { if (match_layout_qualifier((yyvsp[0].identifier), "bindless_sampler", state) == 0) (yyval.type_qualifier).flags.q.bindless_sampler = 1; if (match_layout_qualifier((yyvsp[0].identifier), "bound_sampler", state) == 0) (yyval.type_qualifier).flags.q.bound_sampler = 1; if (state->has_shader_image_load_store()) { if (match_layout_qualifier((yyvsp[0].identifier), "bindless_image", state) == 0) (yyval.type_qualifier).flags.q.bindless_image = 1; if (match_layout_qualifier((yyvsp[0].identifier), "bound_image", state) == 0) (yyval.type_qualifier).flags.q.bound_image = 1; } if ((yyval.type_qualifier).flags.i && !state->has_bindless()) { _mesa_glsl_error(& (yylsp[0]), state, "qualifier `%s` requires " "ARB_bindless_texture", (yyvsp[0].identifier)); } } if (!(yyval.type_qualifier).flags.i && state->EXT_shader_framebuffer_fetch_non_coherent_enable) { if (match_layout_qualifier((yyvsp[0].identifier), "noncoherent", state) == 0) (yyval.type_qualifier).flags.q.non_coherent = 1; } // Layout qualifiers for NV_compute_shader_derivatives. if (!(yyval.type_qualifier).flags.i) { if (match_layout_qualifier((yyvsp[0].identifier), "derivative_group_quadsNV", state) == 0) { (yyval.type_qualifier).flags.q.derivative_group = 1; (yyval.type_qualifier).derivative_group = DERIVATIVE_GROUP_QUADS; } else if (match_layout_qualifier((yyvsp[0].identifier), "derivative_group_linearNV", state) == 0) { (yyval.type_qualifier).flags.q.derivative_group = 1; (yyval.type_qualifier).derivative_group = DERIVATIVE_GROUP_LINEAR; } if ((yyval.type_qualifier).flags.i) { if (!state->has_compute_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "qualifier `%s' requires " "a compute shader", (yyvsp[0].identifier)); } if (!state->NV_compute_shader_derivatives_enable) { _mesa_glsl_error(& (yylsp[0]), state, "qualifier `%s' requires " "NV_compute_shader_derivatives", (yyvsp[0].identifier)); } if (state->NV_compute_shader_derivatives_warn) { _mesa_glsl_warning(& (yylsp[0]), state, "NV_compute_shader_derivatives layout " "qualifier `%s' used", (yyvsp[0].identifier)); } } } if (!(yyval.type_qualifier).flags.i) { _mesa_glsl_error(& (yylsp[0]), state, "unrecognized layout identifier " "`%s'", (yyvsp[0].identifier)); YYERROR; } } #line 4096 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 151: #line 1696 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); void *ctx = state->linalloc; if ((yyvsp[0].expression)->oper != ast_int_constant && (yyvsp[0].expression)->oper != ast_uint_constant && !state->has_enhanced_layouts()) { _mesa_glsl_error(& (yylsp[-2]), state, "compile-time constant expressions require " "GLSL 4.40 or ARB_enhanced_layouts"); } if (match_layout_qualifier("align", (yyvsp[-2].identifier), state) == 0) { if (!state->has_enhanced_layouts()) { _mesa_glsl_error(& (yylsp[-2]), state, "align qualifier requires " "GLSL 4.40 or ARB_enhanced_layouts"); } else { (yyval.type_qualifier).flags.q.explicit_align = 1; (yyval.type_qualifier).align = (yyvsp[0].expression); } } 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)); } (yyval.type_qualifier).location = (yyvsp[0].expression); } if (match_layout_qualifier("component", (yyvsp[-2].identifier), state) == 0) { if (!state->has_enhanced_layouts()) { _mesa_glsl_error(& (yylsp[-2]), state, "component qualifier requires " "GLSL 4.40 or ARB_enhanced_layouts"); } else { (yyval.type_qualifier).flags.q.explicit_component = 1; (yyval.type_qualifier).component = (yyvsp[0].expression); } } if (match_layout_qualifier("index", (yyvsp[-2].identifier), state) == 0) { if (state->es_shader && !state->EXT_blend_func_extended_enable) { _mesa_glsl_error(& (yylsp[0]), state, "index layout qualifier requires EXT_blend_func_extended"); YYERROR; } (yyval.type_qualifier).flags.q.explicit_index = 1; (yyval.type_qualifier).index = (yyvsp[0].expression); } if ((state->has_420pack_or_es31() || state->has_atomic_counters() || state->has_shader_storage_buffer_objects()) && match_layout_qualifier("binding", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_binding = 1; (yyval.type_qualifier).binding = (yyvsp[0].expression); } if ((state->has_atomic_counters() || state->has_enhanced_layouts()) && match_layout_qualifier("offset", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_offset = 1; (yyval.type_qualifier).offset = (yyvsp[0].expression); } if (match_layout_qualifier("max_vertices", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.max_vertices = 1; (yyval.type_qualifier).max_vertices = new(ctx) ast_layout_expression((yylsp[-2]), (yyvsp[0].expression)); if (!state->has_geometry_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "#version 150 max_vertices qualifier " "specified", (yyvsp[0].expression)); } } 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; (yyval.type_qualifier).flags.q.explicit_stream = 1; (yyval.type_qualifier).stream = (yyvsp[0].expression); } } if (state->has_enhanced_layouts()) { if (match_layout_qualifier("xfb_buffer", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.xfb_buffer = 1; (yyval.type_qualifier).flags.q.explicit_xfb_buffer = 1; (yyval.type_qualifier).xfb_buffer = (yyvsp[0].expression); } if (match_layout_qualifier("xfb_offset", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.explicit_xfb_offset = 1; (yyval.type_qualifier).offset = (yyvsp[0].expression); } if (match_layout_qualifier("xfb_stride", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.xfb_stride = 1; (yyval.type_qualifier).flags.q.explicit_xfb_stride = 1; (yyval.type_qualifier).xfb_stride = (yyvsp[0].expression); } } 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 (!state->has_compute_shader()) { _mesa_glsl_error(& (yylsp[0]), state, "%s qualifier requires GLSL 4.30 or " "GLSL ES 3.10 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] = new(ctx) ast_layout_expression((yylsp[-2]), (yyvsp[0].expression)); } break; } } if (match_layout_qualifier("invocations", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.invocations = 1; (yyval.type_qualifier).invocations = new(ctx) ast_layout_expression((yylsp[-2]), (yyvsp[0].expression)); if (!state->is_version(400, 320) && !state->ARB_gpu_shader5_enable && !state->OES_geometry_shader_enable && !state->EXT_geometry_shader_enable) { _mesa_glsl_error(& (yylsp[0]), state, "GL_ARB_gpu_shader5 invocations " "qualifier specified", (yyvsp[0].expression)); } } /* Layout qualifiers for tessellation control shaders. */ if (match_layout_qualifier("vertices", (yyvsp[-2].identifier), state) == 0) { (yyval.type_qualifier).flags.q.vertices = 1; (yyval.type_qualifier).vertices = new(ctx) ast_layout_expression((yylsp[-2]), (yyvsp[0].expression)); if (!state->has_tessellation_shader()) { _mesa_glsl_error(& (yylsp[-2]), state, "vertices qualifier requires GLSL 4.00 or " "ARB_tessellation_shader"); } } /* 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 4265 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 152: #line 1861 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (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 4283 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 153: #line 1887 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.row_major = 1; } #line 4292 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 154: #line 1892 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.packed = 1; } #line 4301 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 155: #line 1897 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.shared = 1; } #line 4310 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 156: #line 1905 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.subroutine = 1; } #line 4319 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 157: #line 1910 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.subroutine = 1; (yyval.type_qualifier).subroutine_list = (yyvsp[-1].subroutine_list); } #line 4329 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 158: #line 1919 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); decl->set_location((yylsp[0])); (yyval.subroutine_list) = new(ctx) ast_subroutine_list(); (yyval.subroutine_list)->declarations.push_tail(&decl->link); } #line 4342 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 159: #line 1928 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; ast_declaration *decl = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); decl->set_location((yylsp[0])); (yyval.subroutine_list) = (yyvsp[-2].subroutine_list); (yyval.subroutine_list)->declarations.push_tail(&decl->link); } #line 4355 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 160: #line 1940 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.smooth = 1; } #line 4364 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 161: #line 1945 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.flat = 1; } #line 4373 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 162: #line 1950 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.noperspective = 1; } #line 4382 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 163: #line 1959 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.invariant = 1; } #line 4391 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 164: #line 1964 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.precise = 1; } #line 4400 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 171: #line 1975 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(&(yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).precision = (yyvsp[0].n); } #line 4409 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 172: #line 1993 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 4421 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 173: #line 2001 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if ((yyvsp[0].type_qualifier).flags.q.invariant) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate \"invariant\" qualifier"); if (!state->has_420pack_or_es31() && (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; /* GLSL ES 3.00 spec, section 4.6.1 "The Invariant Qualifier": * * "Only variables output from a shader can be candidates for invariance. * This includes user-defined output variables and the built-in output * variables. As only outputs can be declared as invariant, an invariant * output from one shader stage will still match an input of a subsequent * stage without the input being declared as invariant." * * On the desktop side, this text first appears in GLSL 4.30. */ if (state->is_version(430, 300) && (yyval.type_qualifier).flags.q.in) _mesa_glsl_error(&(yylsp[-1]), state, "invariant qualifiers cannot be used with shader inputs"); } #line 4450 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 174: #line 2026 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { /* 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->has_420pack_or_es31() && ((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), false); } #line 4478 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 175: #line 2050 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { /* 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. */ (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(& (yylsp[-1]), state, (yyvsp[0].type_qualifier), false, (yyvsp[0].type_qualifier).has_layout()); } #line 4496 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 176: #line 2064 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier), false); } #line 4505 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 177: #line 2069 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if ((yyvsp[0].type_qualifier).has_auxiliary_storage()) { _mesa_glsl_error(&(yylsp[-1]), state, "duplicate auxiliary storage qualifier (centroid or sample)"); } if ((!state->has_420pack_or_es31() && !state->EXT_gpu_shader4_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), false); } #line 4525 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 178: #line 2085 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { /* 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". * * GL_EXT_gpu_shader4 allows "varying out" in fragment shaders. */ if ((yyvsp[0].type_qualifier).has_storage() && (!state->EXT_gpu_shader4_enable || state->stage != MESA_SHADER_FRAGMENT || !(yyvsp[-1].type_qualifier).flags.q.varying || !(yyvsp[0].type_qualifier).flags.q.out)) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate storage qualifier"); if (!state->has_420pack_or_es31() && ((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), false); } #line 4554 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 179: #line 2110 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if ((yyvsp[0].type_qualifier).precision != ast_precision_none) _mesa_glsl_error(&(yylsp[-1]), state, "duplicate precision qualifier"); if (!(state->has_420pack_or_es31()) && (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 4570 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 180: #line 2122 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); (yyval.type_qualifier).merge_qualifier(&(yylsp[-1]), state, (yyvsp[0].type_qualifier), false); } #line 4579 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 181: #line 2130 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.centroid = 1; } #line 4588 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 182: #line 2135 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.sample = 1; } #line 4597 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 183: #line 2140 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.patch = 1; } #line 4606 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 184: #line 2147 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.constant = 1; } #line 4615 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 185: #line 2152 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.attribute = 1; } #line 4624 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 186: #line 2157 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.varying = 1; } #line 4633 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 187: #line 2162 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; } #line 4642 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 188: #line 2167 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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; } if (state->has_enhanced_layouts()) { (yyval.type_qualifier).flags.q.xfb_buffer = 1; (yyval.type_qualifier).flags.q.explicit_xfb_buffer = 0; (yyval.type_qualifier).xfb_buffer = state->out_qualifier->xfb_buffer; } } #line 4671 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 189: #line 2192 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; (yyval.type_qualifier).flags.q.out = 1; if (!state->has_framebuffer_fetch() || !state->is_version(130, 300) || state->stage != MESA_SHADER_FRAGMENT) _mesa_glsl_error(&(yylsp[0]), state, "A single interface variable cannot be " "declared as both input and output"); } #line 4687 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 190: #line 2204 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.uniform = 1; } #line 4696 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 191: #line 2209 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.buffer = 1; } #line 4705 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 192: #line 2214 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.shared_storage = 1; } #line 4714 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 193: #line 2222 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.coherent = 1; } #line 4723 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 194: #line 2227 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q._volatile = 1; } #line 4732 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 195: #line 2232 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 4742 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 196: #line 2238 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.read_only = 1; } #line 4751 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 197: #line 2243 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.write_only = 1; } #line 4760 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 198: #line 2251 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.array_specifier) = new(ctx) ast_array_specifier((yylsp[-1]), new(ctx) ast_expression( ast_unsized_array_dim, NULL, NULL, NULL)); (yyval.array_specifier)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 4772 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 199: #line 2259 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.array_specifier) = new(ctx) ast_array_specifier((yylsp[-2]), (yyvsp[-1].expression)); (yyval.array_specifier)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 4782 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 200: #line 2265 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.array_specifier) = (yyvsp[-2].array_specifier); if (state->check_arrays_of_arrays_allowed(& (yylsp[-2]))) { (yyval.array_specifier)->add_dimension(new(ctx) ast_expression(ast_unsized_array_dim, NULL, NULL, NULL)); } } #line 4796 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 201: #line 2275 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.array_specifier) = (yyvsp[-3].array_specifier); if (state->check_arrays_of_arrays_allowed(& (yylsp[-3]))) { (yyval.array_specifier)->add_dimension((yyvsp[-1].expression)); } } #line 4808 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 203: #line 2287 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_specifier) = (yyvsp[-1].type_specifier); (yyval.type_specifier)->array_specifier = (yyvsp[0].array_specifier); } #line 4817 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 204: #line 2295 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.type_specifier) = new(ctx) ast_type_specifier((yyvsp[0].type)); (yyval.type_specifier)->set_location((yylsp[0])); } #line 4827 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 205: #line 2301 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.type_specifier) = new(ctx) ast_type_specifier((yyvsp[0].struct_specifier)); (yyval.type_specifier)->set_location((yylsp[0])); } #line 4837 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 206: #line 2307 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.type_specifier) = new(ctx) ast_type_specifier((yyvsp[0].identifier)); (yyval.type_specifier)->set_location((yylsp[0])); } #line 4847 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 207: #line 2315 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type) = glsl_type::void_type; } #line 4853 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 208: #line 2316 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type) = (yyvsp[0].type); } #line 4859 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 209: #line 2318 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if ((yyvsp[0].type) == glsl_type::int_type) { (yyval.type) = glsl_type::uint_type; } else { _mesa_glsl_error(&(yylsp[-1]), state, "\"unsigned\" is only allowed before \"int\""); } } #line 4872 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 210: #line 2330 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->check_precision_qualifiers_allowed(&(yylsp[0])); (yyval.n) = ast_precision_high; } #line 4881 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 211: #line 2335 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->check_precision_qualifiers_allowed(&(yylsp[0])); (yyval.n) = ast_precision_medium; } #line 4890 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 212: #line 2340 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->check_precision_qualifiers_allowed(&(yylsp[0])); (yyval.n) = ast_precision_low; } #line 4899 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 213: #line 2348 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 4910 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 214: #line 2355 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; /* All anonymous structs have the same name. This simplifies matching of * globals whose type is an unnamed struct. * * It also avoids a memory leak when the same shader is compiled over and * over again. */ (yyval.struct_specifier) = new(ctx) ast_struct_specifier("#anon_struct", (yyvsp[-1].declarator_list)); (yyval.struct_specifier)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 4928 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 215: #line 2372 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.declarator_list) = (yyvsp[0].declarator_list); (yyvsp[0].declarator_list)->link.self_link(); } #line 4937 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 216: #line 2377 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.declarator_list) = (yyvsp[-1].declarator_list); (yyval.declarator_list)->link.insert_before(& (yyvsp[0].declarator_list)->link); } #line 4946 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 217: #line 2385 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; ast_fully_specified_type *const type = (yyvsp[-2].fully_specified_type); type->set_location((yylsp[-2])); if (state->has_bindless()) { ast_type_qualifier input_layout_mask; /* Allow to declare qualifiers for images. */ input_layout_mask.flags.i = 0; input_layout_mask.flags.q.coherent = 1; input_layout_mask.flags.q._volatile = 1; input_layout_mask.flags.q.restrict_flag = 1; input_layout_mask.flags.q.read_only = 1; input_layout_mask.flags.q.write_only = 1; input_layout_mask.flags.q.explicit_image_format = 1; if ((type->qualifier.flags.i & ~input_layout_mask.flags.i) != 0) { _mesa_glsl_error(&(yylsp[-2]), state, "only precision and image qualifiers may be " "applied to structure members"); } } else { 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 4985 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 218: #line 2423 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.declaration) = (yyvsp[0].declaration); (yyvsp[0].declaration)->link.self_link(); } #line 4994 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 219: #line 2428 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.declaration) = (yyvsp[-2].declaration); (yyval.declaration)->link.insert_before(& (yyvsp[0].declaration)->link); } #line 5003 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 220: #line 2436 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.declaration) = new(ctx) ast_declaration((yyvsp[0].identifier), NULL, NULL); (yyval.declaration)->set_location((yylsp[0])); } #line 5013 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 221: #line 2442 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.declaration) = new(ctx) ast_declaration((yyvsp[-1].identifier), (yyvsp[0].array_specifier), NULL); (yyval.declaration)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5023 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 223: #line 2452 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[-1].expression); } #line 5031 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 224: #line 2456 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.expression) = (yyvsp[-2].expression); } #line 5039 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 225: #line 2463 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.expression) = new(ctx) ast_aggregate_initializer(); (yyval.expression)->set_location((yylsp[0])); (yyval.expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 5050 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 226: #line 2470 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyvsp[-2].expression)->expressions.push_tail(& (yyvsp[0].expression)->link); } #line 5058 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 228: #line 2482 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (ast_node *) (yyvsp[0].compound_statement); } #line 5064 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 236: #line 2497 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.compound_statement) = new(ctx) ast_compound_statement(true, NULL); (yyval.compound_statement)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5074 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 237: #line 2503 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { state->symbols->push_scope(); } #line 5082 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 238: #line 2507 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 5093 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 239: #line 2516 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (ast_node *) (yyvsp[0].compound_statement); } #line 5099 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 241: #line 2522 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.compound_statement) = new(ctx) ast_compound_statement(false, NULL); (yyval.compound_statement)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5109 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 242: #line 2528 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.compound_statement) = new(ctx) ast_compound_statement(false, (yyvsp[-1].node)); (yyval.compound_statement)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 5119 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 243: #line 2537 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 5133 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 244: #line 2547 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { 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 5146 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 245: #line 2556 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if (!state->allow_extension_directive_midshader) { _mesa_glsl_error(& (yylsp[-1]), state, "#extension directive is not allowed " "in the middle of a shader"); YYERROR; } } #line 5159 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 246: #line 2568 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.node) = new(ctx) ast_expression_statement(NULL); (yyval.node)->set_location((yylsp[0])); } #line 5169 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 247: #line 2574 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.node) = new(ctx) ast_expression_statement((yyvsp[-1].expression)); (yyval.node)->set_location((yylsp[-1])); } #line 5179 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 248: #line 2583 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = new(state->linalloc) 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 5189 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 249: #line 2592 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.selection_rest_statement).then_statement = (yyvsp[-2].node); (yyval.selection_rest_statement).else_statement = (yyvsp[0].node); } #line 5198 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 250: #line 2597 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.selection_rest_statement).then_statement = (yyvsp[0].node); (yyval.selection_rest_statement).else_statement = NULL; } #line 5207 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 251: #line 2605 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (ast_node *) (yyvsp[0].expression); } #line 5215 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 252: #line 2609 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 5230 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 253: #line 2627 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = new(state->linalloc) ast_switch_statement((yyvsp[-2].expression), (yyvsp[0].switch_body)); (yyval.node)->set_location_range((yylsp[-4]), (yylsp[0])); } #line 5239 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 254: #line 2635 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.switch_body) = new(state->linalloc) ast_switch_body(NULL); (yyval.switch_body)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5248 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 255: #line 2640 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.switch_body) = new(state->linalloc) ast_switch_body((yyvsp[-1].case_statement_list)); (yyval.switch_body)->set_location_range((yylsp[-2]), (yylsp[0])); } #line 5257 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 256: #line 2648 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.case_label) = new(state->linalloc) ast_case_label((yyvsp[-1].expression)); (yyval.case_label)->set_location((yylsp[-1])); } #line 5266 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 257: #line 2653 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.case_label) = new(state->linalloc) ast_case_label(NULL); (yyval.case_label)->set_location((yylsp[0])); } #line 5275 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 258: #line 2661 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_case_label_list *labels = new(state->linalloc) 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 5287 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 259: #line 2669 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.case_label_list) = (yyvsp[-1].case_label_list); (yyval.case_label_list)->labels.push_tail(& (yyvsp[0].case_label)->link); } #line 5296 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 260: #line 2677 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_case_statement *stmts = new(state->linalloc) 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 5308 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 261: #line 2685 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.case_statement) = (yyvsp[-1].case_statement); (yyval.case_statement)->stmts.push_tail(& (yyvsp[0].node)->link); } #line 5317 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 262: #line 2693 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_case_statement_list *cases= new(state->linalloc) ast_case_statement_list(); cases->set_location((yylsp[0])); cases->cases.push_tail(& (yyvsp[0].case_statement)->link); (yyval.case_statement_list) = cases; } #line 5329 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 263: #line 2701 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.case_statement_list) = (yyvsp[-1].case_statement_list); (yyval.case_statement_list)->cases.push_tail(& (yyvsp[0].case_statement)->link); } #line 5338 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 264: #line 2709 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 5349 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 265: #line 2716 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 5360 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 266: #line 2723 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 5371 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 270: #line 2739 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; } #line 5379 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 271: #line 2746 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.for_rest_statement).cond = (yyvsp[-1].node); (yyval.for_rest_statement).rest = NULL; } #line 5388 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 272: #line 2751 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.for_rest_statement).cond = (yyvsp[-2].node); (yyval.for_rest_statement).rest = (yyvsp[0].expression); } #line 5397 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 273: #line 2760 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_continue, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 5407 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 274: #line 2766 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_break, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 5417 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 275: #line 2772 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_return, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 5427 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 276: #line 2778 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 5437 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 277: #line 2784 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (yyval.node) = new(ctx) ast_jump_statement(ast_jump_statement::ast_discard, NULL); (yyval.node)->set_location((yylsp[-1])); } #line 5447 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 278: #line 2792 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (yyvsp[0].function_definition); } #line 5453 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 279: #line 2793 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (yyvsp[0].node); } #line 5459 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 280: #line 2794 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (yyvsp[0].node); } #line 5465 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 281: #line 2795 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (yyvsp[0].node); } #line 5471 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 282: #line 2796 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; } #line 5477 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 283: #line 2801 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; (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 5491 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 284: #line 2815 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = (yyvsp[0].interface_block); } #line 5499 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 285: #line 2819 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_interface_block *block = (ast_interface_block *) (yyvsp[0].node); if (!(yyvsp[-1].type_qualifier).merge_qualifier(& (yylsp[-1]), state, block->layout, false, block->layout.has_layout())) { YYERROR; } block->layout = (yyvsp[-1].type_qualifier); (yyval.node) = block; } #line 5516 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 286: #line 2832 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_interface_block *block = (ast_interface_block *)(yyvsp[0].node); if (!block->default_layout.flags.q.buffer) { _mesa_glsl_error(& (yylsp[-1]), state, "memory qualifiers can only be used in the " "declaration of shader storage blocks"); } if (!(yyvsp[-1].type_qualifier).merge_qualifier(& (yylsp[-1]), state, block->layout, false)) { YYERROR; } block->layout = (yyvsp[-1].type_qualifier); (yyval.node) = block; } #line 5535 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 287: #line 2850 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { ast_interface_block *const block = (yyvsp[-1].interface_block); if ((yyvsp[-6].type_qualifier).flags.q.uniform) { block->default_layout = *state->default_uniform_qualifier; } else if ((yyvsp[-6].type_qualifier).flags.q.buffer) { block->default_layout = *state->default_shader_storage_qualifier; } block->block_name = (yyvsp[-5].identifier); block->declarations.push_degenerate_list_at_head(& (yyvsp[-3].declarator_list)->link); _mesa_ast_process_interface_block(& (yylsp[-6]), state, block, (yyvsp[-6].type_qualifier)); (yyval.interface_block) = block; } #line 5555 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 288: #line 2869 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.in = 1; } #line 5564 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 289: #line 2874 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.out = 1; } #line 5573 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 290: #line 2879 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.uniform = 1; } #line 5582 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 291: #line 2884 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { memset(& (yyval.type_qualifier), 0, sizeof((yyval.type_qualifier))); (yyval.type_qualifier).flags.q.buffer = 1; } #line 5591 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 292: #line 2889 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if (!(yyvsp[-1].type_qualifier).flags.q.patch) { _mesa_glsl_error(&(yylsp[-1]), state, "invalid interface qualifier"); } if ((yyvsp[0].type_qualifier).has_auxiliary_storage()) { _mesa_glsl_error(&(yylsp[-1]), state, "duplicate patch qualifier"); } (yyval.type_qualifier) = (yyvsp[0].type_qualifier); (yyval.type_qualifier).flags.q.patch = 1; } #line 5606 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 293: #line 2903 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.interface_block) = new(state->linalloc) ast_interface_block(NULL, NULL); } #line 5614 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 294: #line 2907 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.interface_block) = new(state->linalloc) ast_interface_block((yyvsp[0].identifier), NULL); (yyval.interface_block)->set_location((yylsp[0])); } #line 5623 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 295: #line 2912 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.interface_block) = new(state->linalloc) ast_interface_block((yyvsp[-1].identifier), (yyvsp[0].array_specifier)); (yyval.interface_block)->set_location_range((yylsp[-1]), (yylsp[0])); } #line 5632 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 296: #line 2920 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.declarator_list) = (yyvsp[0].declarator_list); (yyvsp[0].declarator_list)->link.self_link(); } #line 5641 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 297: #line 2925 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.declarator_list) = (yyvsp[-1].declarator_list); (yyvsp[0].declarator_list)->link.insert_before(& (yyval.declarator_list)->link); } #line 5650 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 298: #line 2933 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { void *ctx = state->linalloc; 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 5675 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 299: #line 2957 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); if (!(yyval.type_qualifier).merge_qualifier(& (yylsp[-1]), state, (yyvsp[0].type_qualifier), false, true)) { YYERROR; } } #line 5686 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 301: #line 2968 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); if (!(yyval.type_qualifier).merge_qualifier(& (yylsp[-1]), state, (yyvsp[0].type_qualifier), false, true)) { YYERROR; } } #line 5697 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 303: #line 2979 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); if (!(yyval.type_qualifier).merge_qualifier(& (yylsp[-1]), state, (yyvsp[0].type_qualifier), false, true)) { YYERROR; } if (!(yyval.type_qualifier).validate_in_qualifier(& (yylsp[-1]), state)) { YYERROR; } } #line 5711 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 304: #line 2989 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if (!(yyvsp[-2].type_qualifier).validate_in_qualifier(& (yylsp[-2]), state)) { YYERROR; } } #line 5721 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 305: #line 2998 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.type_qualifier) = (yyvsp[-1].type_qualifier); if (!(yyval.type_qualifier).merge_qualifier(& (yylsp[-1]), state, (yyvsp[0].type_qualifier), false, true)) { YYERROR; } if (!(yyval.type_qualifier).validate_out_qualifier(& (yylsp[-1]), state)) { YYERROR; } } #line 5735 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 306: #line 3008 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { if (!(yyvsp[-2].type_qualifier).validate_out_qualifier(& (yylsp[-2]), state)) { YYERROR; } } #line 5745 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 307: #line 3017 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; if (!state->default_uniform_qualifier-> merge_qualifier(& (yylsp[0]), state, (yyvsp[0].type_qualifier), false)) { YYERROR; } if (!state->default_uniform_qualifier-> push_to_global(& (yylsp[0]), state)) { YYERROR; } } #line 5761 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 308: #line 3029 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; if (!state->default_shader_storage_qualifier-> merge_qualifier(& (yylsp[0]), state, (yyvsp[0].type_qualifier), false)) { YYERROR; } if (!state->default_shader_storage_qualifier-> push_to_global(& (yylsp[0]), state)) { YYERROR; } /* From the GLSL 4.50 spec, section 4.4.5: * * "It is a compile-time error to specify the binding identifier for * the global scope or for block member declarations." */ if (state->default_shader_storage_qualifier->flags.q.explicit_binding) { _mesa_glsl_error(& (yylsp[0]), state, "binding qualifier cannot be set for default layout"); } } #line 5787 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 309: #line 3051 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; if (!(yyvsp[0].type_qualifier).merge_into_in_qualifier(& (yylsp[0]), state, (yyval.node))) { YYERROR; } if (!state->in_qualifier->push_to_global(& (yylsp[0]), state)) { YYERROR; } } #line 5801 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; case 310: #line 3061 "../src/compiler/glsl/glsl_parser.yy" /* yacc.c:1645 */ { (yyval.node) = NULL; if (!(yyvsp[0].type_qualifier).merge_into_out_qualifier(& (yylsp[0]), state, (yyval.node))) { YYERROR; } if (!state->out_qualifier->push_to_global(& (yylsp[0]), state)) { YYERROR; } } #line 5815 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ break; #line 5819 "src/compiler/glsl/glsl_parser.cpp" /* yacc.c:1645 */ 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. */ { const int yylhs = yyr1[yyn] - YYNTOKENS; const int yyi = yypgoto[yylhs] + *yyssp; yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp ? yytable[yyi] : yydefgoto[yylhs]); } goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? 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; /* 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; }