mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-26 13:15:42 -04:00
10598 lines
462 KiB
C++
10598 lines
462 KiB
C++
/* A Bison parser, made by GNU Bison 3.0.4. */
|
|
|
|
/* Bison implementation for Yacc-like parsers in C
|
|
|
|
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
under terms of your choice, so long as that work isn't itself a
|
|
parser generator using the skeleton or a modified version thereof
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
special exception, which will cause the skeleton and the resulting
|
|
Bison output files to be licensed under the GNU General Public
|
|
License without this special exception.
|
|
|
|
This special exception was added by the Free Software Foundation in
|
|
version 2.2 of Bison. */
|
|
|
|
/* C LALR(1) parser skeleton written by Richard Stallman, by
|
|
simplifying the original so-called "semantic" parser. */
|
|
|
|
/* All symbols defined below should begin with yy or YY, to avoid
|
|
infringing on user name space. This should be done even for local
|
|
variables, as they might otherwise be expanded by user macros.
|
|
There are some unavoidable exceptions within include files to
|
|
define necessary library symbols; they are noted "INFRINGES ON
|
|
USER NAME SPACE" below. */
|
|
|
|
/* Identify Bison output. */
|
|
#define YYBISON 1
|
|
|
|
/* Bison version. */
|
|
#define YYBISON_VERSION "3.0.4"
|
|
|
|
/* Skeleton name. */
|
|
#define YYSKELETON_NAME "yacc.c"
|
|
|
|
/* Pure parsers. */
|
|
#define YYPURE 1
|
|
|
|
/* Push parsers. */
|
|
#define YYPUSH 0
|
|
|
|
/* Pull parsers. */
|
|
#define YYPULL 1
|
|
|
|
|
|
|
|
|
|
/* Copy the first part of user declarations. */
|
|
#line 69 "glslang.y" /* yacc.c:339 */
|
|
|
|
|
|
/* Based on:
|
|
ANSI C Yacc grammar
|
|
|
|
In 1985, Jeff Lee published his Yacc grammar (which is accompanied by a
|
|
matching Lex specification) for the April 30, 1985 draft version of the
|
|
ANSI C standard. Tom Stockfisch reposted it to net.sources in 1987; that
|
|
original, as mentioned in the answer to question 17.25 of the comp.lang.c
|
|
FAQ, can be ftp'ed from ftp.uu.net, file usenet/net.sources/ansi.c.grammar.Z.
|
|
|
|
I intend to keep this version as close to the current C Standard grammar as
|
|
possible; please let me know if you discover discrepancies.
|
|
|
|
Jutta Degener, 1995
|
|
*/
|
|
|
|
#include "SymbolTable.h"
|
|
#include "ParseHelper.h"
|
|
#include "../Public/ShaderLang.h"
|
|
#include "attribute.h"
|
|
|
|
using namespace glslang;
|
|
|
|
|
|
#line 92 "glslang_tab.cpp" /* yacc.c:339 */
|
|
|
|
# ifndef YY_NULLPTR
|
|
# if defined __cplusplus && 201103L <= __cplusplus
|
|
# define YY_NULLPTR nullptr
|
|
# else
|
|
# define YY_NULLPTR 0
|
|
# endif
|
|
# endif
|
|
|
|
/* Enabling verbose error messages. */
|
|
#ifdef YYERROR_VERBOSE
|
|
# undef YYERROR_VERBOSE
|
|
# define YYERROR_VERBOSE 1
|
|
#else
|
|
# define YYERROR_VERBOSE 1
|
|
#endif
|
|
|
|
/* In a future release of Bison, this section will be replaced
|
|
by #include "glslang_tab.cpp.h". */
|
|
#ifndef YY_YY_GLSLANG_TAB_CPP_H_INCLUDED
|
|
# define YY_YY_GLSLANG_TAB_CPP_H_INCLUDED
|
|
/* Debug traces. */
|
|
#ifndef YYDEBUG
|
|
# define YYDEBUG 1
|
|
#endif
|
|
#if YYDEBUG
|
|
extern int yydebug;
|
|
#endif
|
|
|
|
/* Token type. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
enum yytokentype
|
|
{
|
|
CONST = 258,
|
|
BOOL = 259,
|
|
INT = 260,
|
|
UINT = 261,
|
|
FLOAT = 262,
|
|
BVEC2 = 263,
|
|
BVEC3 = 264,
|
|
BVEC4 = 265,
|
|
IVEC2 = 266,
|
|
IVEC3 = 267,
|
|
IVEC4 = 268,
|
|
UVEC2 = 269,
|
|
UVEC3 = 270,
|
|
UVEC4 = 271,
|
|
VEC2 = 272,
|
|
VEC3 = 273,
|
|
VEC4 = 274,
|
|
MAT2 = 275,
|
|
MAT3 = 276,
|
|
MAT4 = 277,
|
|
MAT2X2 = 278,
|
|
MAT2X3 = 279,
|
|
MAT2X4 = 280,
|
|
MAT3X2 = 281,
|
|
MAT3X3 = 282,
|
|
MAT3X4 = 283,
|
|
MAT4X2 = 284,
|
|
MAT4X3 = 285,
|
|
MAT4X4 = 286,
|
|
SAMPLER2D = 287,
|
|
SAMPLER3D = 288,
|
|
SAMPLERCUBE = 289,
|
|
SAMPLER2DSHADOW = 290,
|
|
SAMPLERCUBESHADOW = 291,
|
|
SAMPLER2DARRAY = 292,
|
|
SAMPLER2DARRAYSHADOW = 293,
|
|
ISAMPLER2D = 294,
|
|
ISAMPLER3D = 295,
|
|
ISAMPLERCUBE = 296,
|
|
ISAMPLER2DARRAY = 297,
|
|
USAMPLER2D = 298,
|
|
USAMPLER3D = 299,
|
|
USAMPLERCUBE = 300,
|
|
USAMPLER2DARRAY = 301,
|
|
SAMPLER = 302,
|
|
SAMPLERSHADOW = 303,
|
|
TEXTURE2D = 304,
|
|
TEXTURE3D = 305,
|
|
TEXTURECUBE = 306,
|
|
TEXTURE2DARRAY = 307,
|
|
ITEXTURE2D = 308,
|
|
ITEXTURE3D = 309,
|
|
ITEXTURECUBE = 310,
|
|
ITEXTURE2DARRAY = 311,
|
|
UTEXTURE2D = 312,
|
|
UTEXTURE3D = 313,
|
|
UTEXTURECUBE = 314,
|
|
UTEXTURE2DARRAY = 315,
|
|
ATTRIBUTE = 316,
|
|
VARYING = 317,
|
|
FLOAT16_T = 318,
|
|
FLOAT32_T = 319,
|
|
DOUBLE = 320,
|
|
FLOAT64_T = 321,
|
|
INT64_T = 322,
|
|
UINT64_T = 323,
|
|
INT32_T = 324,
|
|
UINT32_T = 325,
|
|
INT16_T = 326,
|
|
UINT16_T = 327,
|
|
INT8_T = 328,
|
|
UINT8_T = 329,
|
|
I64VEC2 = 330,
|
|
I64VEC3 = 331,
|
|
I64VEC4 = 332,
|
|
U64VEC2 = 333,
|
|
U64VEC3 = 334,
|
|
U64VEC4 = 335,
|
|
I32VEC2 = 336,
|
|
I32VEC3 = 337,
|
|
I32VEC4 = 338,
|
|
U32VEC2 = 339,
|
|
U32VEC3 = 340,
|
|
U32VEC4 = 341,
|
|
I16VEC2 = 342,
|
|
I16VEC3 = 343,
|
|
I16VEC4 = 344,
|
|
U16VEC2 = 345,
|
|
U16VEC3 = 346,
|
|
U16VEC4 = 347,
|
|
I8VEC2 = 348,
|
|
I8VEC3 = 349,
|
|
I8VEC4 = 350,
|
|
U8VEC2 = 351,
|
|
U8VEC3 = 352,
|
|
U8VEC4 = 353,
|
|
DVEC2 = 354,
|
|
DVEC3 = 355,
|
|
DVEC4 = 356,
|
|
DMAT2 = 357,
|
|
DMAT3 = 358,
|
|
DMAT4 = 359,
|
|
F16VEC2 = 360,
|
|
F16VEC3 = 361,
|
|
F16VEC4 = 362,
|
|
F16MAT2 = 363,
|
|
F16MAT3 = 364,
|
|
F16MAT4 = 365,
|
|
F32VEC2 = 366,
|
|
F32VEC3 = 367,
|
|
F32VEC4 = 368,
|
|
F32MAT2 = 369,
|
|
F32MAT3 = 370,
|
|
F32MAT4 = 371,
|
|
F64VEC2 = 372,
|
|
F64VEC3 = 373,
|
|
F64VEC4 = 374,
|
|
F64MAT2 = 375,
|
|
F64MAT3 = 376,
|
|
F64MAT4 = 377,
|
|
DMAT2X2 = 378,
|
|
DMAT2X3 = 379,
|
|
DMAT2X4 = 380,
|
|
DMAT3X2 = 381,
|
|
DMAT3X3 = 382,
|
|
DMAT3X4 = 383,
|
|
DMAT4X2 = 384,
|
|
DMAT4X3 = 385,
|
|
DMAT4X4 = 386,
|
|
F16MAT2X2 = 387,
|
|
F16MAT2X3 = 388,
|
|
F16MAT2X4 = 389,
|
|
F16MAT3X2 = 390,
|
|
F16MAT3X3 = 391,
|
|
F16MAT3X4 = 392,
|
|
F16MAT4X2 = 393,
|
|
F16MAT4X3 = 394,
|
|
F16MAT4X4 = 395,
|
|
F32MAT2X2 = 396,
|
|
F32MAT2X3 = 397,
|
|
F32MAT2X4 = 398,
|
|
F32MAT3X2 = 399,
|
|
F32MAT3X3 = 400,
|
|
F32MAT3X4 = 401,
|
|
F32MAT4X2 = 402,
|
|
F32MAT4X3 = 403,
|
|
F32MAT4X4 = 404,
|
|
F64MAT2X2 = 405,
|
|
F64MAT2X3 = 406,
|
|
F64MAT2X4 = 407,
|
|
F64MAT3X2 = 408,
|
|
F64MAT3X3 = 409,
|
|
F64MAT3X4 = 410,
|
|
F64MAT4X2 = 411,
|
|
F64MAT4X3 = 412,
|
|
F64MAT4X4 = 413,
|
|
ATOMIC_UINT = 414,
|
|
ACCSTRUCTNV = 415,
|
|
ACCSTRUCTEXT = 416,
|
|
RAYQUERYEXT = 417,
|
|
FCOOPMATNV = 418,
|
|
ICOOPMATNV = 419,
|
|
UCOOPMATNV = 420,
|
|
SAMPLERCUBEARRAY = 421,
|
|
SAMPLERCUBEARRAYSHADOW = 422,
|
|
ISAMPLERCUBEARRAY = 423,
|
|
USAMPLERCUBEARRAY = 424,
|
|
SAMPLER1D = 425,
|
|
SAMPLER1DARRAY = 426,
|
|
SAMPLER1DARRAYSHADOW = 427,
|
|
ISAMPLER1D = 428,
|
|
SAMPLER1DSHADOW = 429,
|
|
SAMPLER2DRECT = 430,
|
|
SAMPLER2DRECTSHADOW = 431,
|
|
ISAMPLER2DRECT = 432,
|
|
USAMPLER2DRECT = 433,
|
|
SAMPLERBUFFER = 434,
|
|
ISAMPLERBUFFER = 435,
|
|
USAMPLERBUFFER = 436,
|
|
SAMPLER2DMS = 437,
|
|
ISAMPLER2DMS = 438,
|
|
USAMPLER2DMS = 439,
|
|
SAMPLER2DMSARRAY = 440,
|
|
ISAMPLER2DMSARRAY = 441,
|
|
USAMPLER2DMSARRAY = 442,
|
|
SAMPLEREXTERNALOES = 443,
|
|
SAMPLEREXTERNAL2DY2YEXT = 444,
|
|
ISAMPLER1DARRAY = 445,
|
|
USAMPLER1D = 446,
|
|
USAMPLER1DARRAY = 447,
|
|
F16SAMPLER1D = 448,
|
|
F16SAMPLER2D = 449,
|
|
F16SAMPLER3D = 450,
|
|
F16SAMPLER2DRECT = 451,
|
|
F16SAMPLERCUBE = 452,
|
|
F16SAMPLER1DARRAY = 453,
|
|
F16SAMPLER2DARRAY = 454,
|
|
F16SAMPLERCUBEARRAY = 455,
|
|
F16SAMPLERBUFFER = 456,
|
|
F16SAMPLER2DMS = 457,
|
|
F16SAMPLER2DMSARRAY = 458,
|
|
F16SAMPLER1DSHADOW = 459,
|
|
F16SAMPLER2DSHADOW = 460,
|
|
F16SAMPLER1DARRAYSHADOW = 461,
|
|
F16SAMPLER2DARRAYSHADOW = 462,
|
|
F16SAMPLER2DRECTSHADOW = 463,
|
|
F16SAMPLERCUBESHADOW = 464,
|
|
F16SAMPLERCUBEARRAYSHADOW = 465,
|
|
IMAGE1D = 466,
|
|
IIMAGE1D = 467,
|
|
UIMAGE1D = 468,
|
|
IMAGE2D = 469,
|
|
IIMAGE2D = 470,
|
|
UIMAGE2D = 471,
|
|
IMAGE3D = 472,
|
|
IIMAGE3D = 473,
|
|
UIMAGE3D = 474,
|
|
IMAGE2DRECT = 475,
|
|
IIMAGE2DRECT = 476,
|
|
UIMAGE2DRECT = 477,
|
|
IMAGECUBE = 478,
|
|
IIMAGECUBE = 479,
|
|
UIMAGECUBE = 480,
|
|
IMAGEBUFFER = 481,
|
|
IIMAGEBUFFER = 482,
|
|
UIMAGEBUFFER = 483,
|
|
IMAGE1DARRAY = 484,
|
|
IIMAGE1DARRAY = 485,
|
|
UIMAGE1DARRAY = 486,
|
|
IMAGE2DARRAY = 487,
|
|
IIMAGE2DARRAY = 488,
|
|
UIMAGE2DARRAY = 489,
|
|
IMAGECUBEARRAY = 490,
|
|
IIMAGECUBEARRAY = 491,
|
|
UIMAGECUBEARRAY = 492,
|
|
IMAGE2DMS = 493,
|
|
IIMAGE2DMS = 494,
|
|
UIMAGE2DMS = 495,
|
|
IMAGE2DMSARRAY = 496,
|
|
IIMAGE2DMSARRAY = 497,
|
|
UIMAGE2DMSARRAY = 498,
|
|
F16IMAGE1D = 499,
|
|
F16IMAGE2D = 500,
|
|
F16IMAGE3D = 501,
|
|
F16IMAGE2DRECT = 502,
|
|
F16IMAGECUBE = 503,
|
|
F16IMAGE1DARRAY = 504,
|
|
F16IMAGE2DARRAY = 505,
|
|
F16IMAGECUBEARRAY = 506,
|
|
F16IMAGEBUFFER = 507,
|
|
F16IMAGE2DMS = 508,
|
|
F16IMAGE2DMSARRAY = 509,
|
|
TEXTURECUBEARRAY = 510,
|
|
ITEXTURECUBEARRAY = 511,
|
|
UTEXTURECUBEARRAY = 512,
|
|
TEXTURE1D = 513,
|
|
ITEXTURE1D = 514,
|
|
UTEXTURE1D = 515,
|
|
TEXTURE1DARRAY = 516,
|
|
ITEXTURE1DARRAY = 517,
|
|
UTEXTURE1DARRAY = 518,
|
|
TEXTURE2DRECT = 519,
|
|
ITEXTURE2DRECT = 520,
|
|
UTEXTURE2DRECT = 521,
|
|
TEXTUREBUFFER = 522,
|
|
ITEXTUREBUFFER = 523,
|
|
UTEXTUREBUFFER = 524,
|
|
TEXTURE2DMS = 525,
|
|
ITEXTURE2DMS = 526,
|
|
UTEXTURE2DMS = 527,
|
|
TEXTURE2DMSARRAY = 528,
|
|
ITEXTURE2DMSARRAY = 529,
|
|
UTEXTURE2DMSARRAY = 530,
|
|
F16TEXTURE1D = 531,
|
|
F16TEXTURE2D = 532,
|
|
F16TEXTURE3D = 533,
|
|
F16TEXTURE2DRECT = 534,
|
|
F16TEXTURECUBE = 535,
|
|
F16TEXTURE1DARRAY = 536,
|
|
F16TEXTURE2DARRAY = 537,
|
|
F16TEXTURECUBEARRAY = 538,
|
|
F16TEXTUREBUFFER = 539,
|
|
F16TEXTURE2DMS = 540,
|
|
F16TEXTURE2DMSARRAY = 541,
|
|
SUBPASSINPUT = 542,
|
|
SUBPASSINPUTMS = 543,
|
|
ISUBPASSINPUT = 544,
|
|
ISUBPASSINPUTMS = 545,
|
|
USUBPASSINPUT = 546,
|
|
USUBPASSINPUTMS = 547,
|
|
F16SUBPASSINPUT = 548,
|
|
F16SUBPASSINPUTMS = 549,
|
|
LEFT_OP = 550,
|
|
RIGHT_OP = 551,
|
|
INC_OP = 552,
|
|
DEC_OP = 553,
|
|
LE_OP = 554,
|
|
GE_OP = 555,
|
|
EQ_OP = 556,
|
|
NE_OP = 557,
|
|
AND_OP = 558,
|
|
OR_OP = 559,
|
|
XOR_OP = 560,
|
|
MUL_ASSIGN = 561,
|
|
DIV_ASSIGN = 562,
|
|
ADD_ASSIGN = 563,
|
|
MOD_ASSIGN = 564,
|
|
LEFT_ASSIGN = 565,
|
|
RIGHT_ASSIGN = 566,
|
|
AND_ASSIGN = 567,
|
|
XOR_ASSIGN = 568,
|
|
OR_ASSIGN = 569,
|
|
SUB_ASSIGN = 570,
|
|
STRING_LITERAL = 571,
|
|
LEFT_PAREN = 572,
|
|
RIGHT_PAREN = 573,
|
|
LEFT_BRACKET = 574,
|
|
RIGHT_BRACKET = 575,
|
|
LEFT_BRACE = 576,
|
|
RIGHT_BRACE = 577,
|
|
DOT = 578,
|
|
COMMA = 579,
|
|
COLON = 580,
|
|
EQUAL = 581,
|
|
SEMICOLON = 582,
|
|
BANG = 583,
|
|
DASH = 584,
|
|
TILDE = 585,
|
|
PLUS = 586,
|
|
STAR = 587,
|
|
SLASH = 588,
|
|
PERCENT = 589,
|
|
LEFT_ANGLE = 590,
|
|
RIGHT_ANGLE = 591,
|
|
VERTICAL_BAR = 592,
|
|
CARET = 593,
|
|
AMPERSAND = 594,
|
|
QUESTION = 595,
|
|
INVARIANT = 596,
|
|
HIGH_PRECISION = 597,
|
|
MEDIUM_PRECISION = 598,
|
|
LOW_PRECISION = 599,
|
|
PRECISION = 600,
|
|
PACKED = 601,
|
|
RESOURCE = 602,
|
|
SUPERP = 603,
|
|
FLOATCONSTANT = 604,
|
|
INTCONSTANT = 605,
|
|
UINTCONSTANT = 606,
|
|
BOOLCONSTANT = 607,
|
|
IDENTIFIER = 608,
|
|
TYPE_NAME = 609,
|
|
CENTROID = 610,
|
|
IN = 611,
|
|
OUT = 612,
|
|
INOUT = 613,
|
|
STRUCT = 614,
|
|
VOID = 615,
|
|
WHILE = 616,
|
|
BREAK = 617,
|
|
CONTINUE = 618,
|
|
DO = 619,
|
|
ELSE = 620,
|
|
FOR = 621,
|
|
IF = 622,
|
|
DISCARD = 623,
|
|
RETURN = 624,
|
|
SWITCH = 625,
|
|
CASE = 626,
|
|
DEFAULT = 627,
|
|
UNIFORM = 628,
|
|
SHARED = 629,
|
|
BUFFER = 630,
|
|
FLAT = 631,
|
|
SMOOTH = 632,
|
|
LAYOUT = 633,
|
|
DOUBLECONSTANT = 634,
|
|
INT16CONSTANT = 635,
|
|
UINT16CONSTANT = 636,
|
|
FLOAT16CONSTANT = 637,
|
|
INT32CONSTANT = 638,
|
|
UINT32CONSTANT = 639,
|
|
INT64CONSTANT = 640,
|
|
UINT64CONSTANT = 641,
|
|
SUBROUTINE = 642,
|
|
DEMOTE = 643,
|
|
PAYLOADNV = 644,
|
|
PAYLOADINNV = 645,
|
|
HITATTRNV = 646,
|
|
CALLDATANV = 647,
|
|
CALLDATAINNV = 648,
|
|
PAYLOADEXT = 649,
|
|
PAYLOADINEXT = 650,
|
|
HITATTREXT = 651,
|
|
CALLDATAEXT = 652,
|
|
CALLDATAINEXT = 653,
|
|
PATCH = 654,
|
|
SAMPLE = 655,
|
|
NONUNIFORM = 656,
|
|
COHERENT = 657,
|
|
VOLATILE = 658,
|
|
RESTRICT = 659,
|
|
READONLY = 660,
|
|
WRITEONLY = 661,
|
|
DEVICECOHERENT = 662,
|
|
QUEUEFAMILYCOHERENT = 663,
|
|
WORKGROUPCOHERENT = 664,
|
|
SUBGROUPCOHERENT = 665,
|
|
NONPRIVATE = 666,
|
|
SHADERCALLCOHERENT = 667,
|
|
NOPERSPECTIVE = 668,
|
|
EXPLICITINTERPAMD = 669,
|
|
PERVERTEXNV = 670,
|
|
PERPRIMITIVENV = 671,
|
|
PERVIEWNV = 672,
|
|
PERTASKNV = 673,
|
|
PRECISE = 674
|
|
};
|
|
#endif
|
|
|
|
/* Value type. */
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
|
|
union YYSTYPE
|
|
{
|
|
#line 97 "glslang.y" /* yacc.c:355 */
|
|
|
|
struct {
|
|
glslang::TSourceLoc loc;
|
|
union {
|
|
glslang::TString *string;
|
|
int i;
|
|
unsigned int u;
|
|
long long i64;
|
|
unsigned long long u64;
|
|
bool b;
|
|
double d;
|
|
};
|
|
glslang::TSymbol* symbol;
|
|
} lex;
|
|
struct {
|
|
glslang::TSourceLoc loc;
|
|
glslang::TOperator op;
|
|
union {
|
|
TIntermNode* intermNode;
|
|
glslang::TIntermNodePair nodePair;
|
|
glslang::TIntermTyped* intermTypedNode;
|
|
glslang::TAttributes* attributes;
|
|
};
|
|
union {
|
|
glslang::TPublicType type;
|
|
glslang::TFunction* function;
|
|
glslang::TParameter param;
|
|
glslang::TTypeLoc typeLine;
|
|
glslang::TTypeList* typeList;
|
|
glslang::TArraySizes* arraySizes;
|
|
glslang::TIdentifierList* identifierList;
|
|
};
|
|
glslang::TArraySizes* typeParameters;
|
|
} interm;
|
|
|
|
#line 588 "glslang_tab.cpp" /* yacc.c:355 */
|
|
};
|
|
|
|
typedef union YYSTYPE YYSTYPE;
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
|
|
|
|
int yyparse (glslang::TParseContext* pParseContext);
|
|
|
|
#endif /* !YY_YY_GLSLANG_TAB_CPP_H_INCLUDED */
|
|
|
|
/* Copy the second part of user declarations. */
|
|
#line 133 "glslang.y" /* yacc.c:358 */
|
|
|
|
|
|
/* windows only pragma */
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4065)
|
|
#pragma warning(disable : 4127)
|
|
#pragma warning(disable : 4244)
|
|
#endif
|
|
|
|
#define parseContext (*pParseContext)
|
|
#define yyerror(context, msg) context->parserError(msg)
|
|
|
|
extern int yylex(YYSTYPE*, TParseContext&);
|
|
|
|
|
|
#line 619 "glslang_tab.cpp" /* yacc.c:358 */
|
|
|
|
#ifdef short
|
|
# undef short
|
|
#endif
|
|
|
|
#ifdef YYTYPE_UINT8
|
|
typedef YYTYPE_UINT8 yytype_uint8;
|
|
#else
|
|
typedef unsigned char yytype_uint8;
|
|
#endif
|
|
|
|
#ifdef YYTYPE_INT8
|
|
typedef YYTYPE_INT8 yytype_int8;
|
|
#else
|
|
typedef signed char yytype_int8;
|
|
#endif
|
|
|
|
#ifdef YYTYPE_UINT16
|
|
typedef YYTYPE_UINT16 yytype_uint16;
|
|
#else
|
|
typedef unsigned short int yytype_uint16;
|
|
#endif
|
|
|
|
#ifdef YYTYPE_INT16
|
|
typedef YYTYPE_INT16 yytype_int16;
|
|
#else
|
|
typedef short int yytype_int16;
|
|
#endif
|
|
|
|
#ifndef YYSIZE_T
|
|
# ifdef __SIZE_TYPE__
|
|
# define YYSIZE_T __SIZE_TYPE__
|
|
# elif defined size_t
|
|
# define YYSIZE_T size_t
|
|
# elif ! defined YYSIZE_T
|
|
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
|
|
# define YYSIZE_T size_t
|
|
# else
|
|
# define YYSIZE_T unsigned int
|
|
# endif
|
|
#endif
|
|
|
|
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
|
|
|
|
#ifndef YY_
|
|
# if defined YYENABLE_NLS && YYENABLE_NLS
|
|
# if ENABLE_NLS
|
|
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
|
|
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
|
|
# endif
|
|
# endif
|
|
# ifndef YY_
|
|
# define YY_(Msgid) Msgid
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef YY_ATTRIBUTE
|
|
# if (defined __GNUC__ \
|
|
&& (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
|
|
|| defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
|
|
# define YY_ATTRIBUTE(Spec) __attribute__(Spec)
|
|
# else
|
|
# define YY_ATTRIBUTE(Spec) /* empty */
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef YY_ATTRIBUTE_PURE
|
|
# define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
|
|
#endif
|
|
|
|
#ifndef YY_ATTRIBUTE_UNUSED
|
|
# define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
|
|
#endif
|
|
|
|
#if !defined _Noreturn \
|
|
&& (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
|
|
# if defined _MSC_VER && 1200 <= _MSC_VER
|
|
# define _Noreturn __declspec (noreturn)
|
|
# else
|
|
# define _Noreturn YY_ATTRIBUTE ((__noreturn__))
|
|
# endif
|
|
#endif
|
|
|
|
/* Suppress unused-variable warnings by "using" E. */
|
|
#if ! defined lint || defined __GNUC__
|
|
# define YYUSE(E) ((void) (E))
|
|
#else
|
|
# define YYUSE(E) /* empty */
|
|
#endif
|
|
|
|
#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
|
|
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
|
|
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
|
|
_Pragma ("GCC diagnostic push") \
|
|
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
|
|
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
|
|
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
|
|
_Pragma ("GCC diagnostic pop")
|
|
#else
|
|
# define YY_INITIAL_VALUE(Value) Value
|
|
#endif
|
|
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
|
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
|
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
|
|
#endif
|
|
#ifndef YY_INITIAL_VALUE
|
|
# define YY_INITIAL_VALUE(Value) /* Nothing. */
|
|
#endif
|
|
|
|
|
|
#if ! defined yyoverflow || YYERROR_VERBOSE
|
|
|
|
/* The parser invokes alloca or malloc; define the necessary symbols. */
|
|
|
|
# ifdef YYSTACK_USE_ALLOCA
|
|
# if YYSTACK_USE_ALLOCA
|
|
# ifdef __GNUC__
|
|
# define YYSTACK_ALLOC __builtin_alloca
|
|
# elif defined __BUILTIN_VA_ARG_INCR
|
|
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
|
|
# elif defined _AIX
|
|
# define YYSTACK_ALLOC __alloca
|
|
# elif defined _MSC_VER
|
|
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
|
|
# define alloca _alloca
|
|
# else
|
|
# define YYSTACK_ALLOC alloca
|
|
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
|
|
# include <stdlib.h> /* 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 <stdlib.h> /* 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 YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
|
|
|
|
/* A type that is properly aligned for any stack member. */
|
|
union yyalloc
|
|
{
|
|
yytype_int16 yyss_alloc;
|
|
YYSTYPE yyvs_alloc;
|
|
};
|
|
|
|
/* The size of the maximum gap between one aligned stack and the next. */
|
|
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
|
|
|
|
/* The size of an array large to enough to hold all stacks, each with
|
|
N elements. */
|
|
# define YYSTACK_BYTES(N) \
|
|
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
|
|
+ YYSTACK_GAP_MAXIMUM)
|
|
|
|
# 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 394
|
|
/* YYLAST -- Last index in YYTABLE. */
|
|
#define YYLAST 9550
|
|
|
|
/* YYNTOKENS -- Number of terminals. */
|
|
#define YYNTOKENS 420
|
|
/* YYNNTS -- Number of nonterminals. */
|
|
#define YYNNTS 111
|
|
/* YYNRULES -- Number of rules. */
|
|
#define YYNRULES 591
|
|
/* YYNSTATES -- Number of states. */
|
|
#define YYNSTATES 736
|
|
|
|
/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
|
|
by yylex, with out-of-bounds checking. */
|
|
#define YYUNDEFTOK 2
|
|
#define YYMAXUTOK 674
|
|
|
|
#define YYTRANSLATE(YYX) \
|
|
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
|
|
|
|
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
|
|
as returned by yylex, without out-of-bounds checking. */
|
|
static const yytype_uint16 yytranslate[] =
|
|
{
|
|
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
|
|
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
|
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
|
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
|
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
|
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
|
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
|
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
|
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
|
|
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
|
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
|
|
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
|
|
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
|
|
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
|
|
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
|
|
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
|
|
185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
|
|
195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
|
|
205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
|
|
215, 216, 217, 218, 219, 220, 221, 222, 223, 224,
|
|
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
|
|
235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
|
|
245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
|
|
255, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
|
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
|
|
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
|
|
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
|
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
|
|
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
|
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
|
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
|
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
|
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
|
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
|
|
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
|
|
375, 376, 377, 378, 379, 380, 381, 382, 383, 384,
|
|
385, 386, 387, 388, 389, 390, 391, 392, 393, 394,
|
|
395, 396, 397, 398, 399, 400, 401, 402, 403, 404,
|
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414,
|
|
415, 416, 417, 418, 419
|
|
};
|
|
|
|
#if YYDEBUG
|
|
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
|
|
static const yytype_uint16 yyrline[] =
|
|
{
|
|
0, 357, 357, 363, 366, 371, 374, 377, 381, 385,
|
|
388, 392, 396, 400, 404, 408, 412, 418, 426, 429,
|
|
432, 435, 438, 443, 451, 458, 465, 471, 475, 482,
|
|
485, 491, 498, 508, 516, 521, 549, 558, 564, 568,
|
|
572, 592, 593, 594, 595, 601, 602, 607, 612, 621,
|
|
622, 627, 635, 636, 642, 651, 652, 657, 662, 667,
|
|
675, 676, 685, 697, 698, 707, 708, 717, 718, 727,
|
|
728, 736, 737, 745, 746, 754, 755, 755, 773, 774,
|
|
790, 794, 798, 802, 807, 811, 815, 819, 823, 827,
|
|
831, 838, 841, 852, 859, 864, 869, 876, 880, 884,
|
|
888, 893, 898, 907, 907, 918, 922, 929, 936, 939,
|
|
946, 954, 974, 997, 1012, 1037, 1048, 1058, 1068, 1078,
|
|
1087, 1090, 1094, 1098, 1103, 1111, 1118, 1123, 1128, 1133,
|
|
1142, 1152, 1179, 1188, 1195, 1203, 1210, 1217, 1225, 1235,
|
|
1242, 1253, 1259, 1262, 1269, 1273, 1277, 1286, 1296, 1299,
|
|
1310, 1313, 1316, 1320, 1324, 1329, 1333, 1340, 1344, 1349,
|
|
1355, 1361, 1368, 1373, 1381, 1387, 1399, 1413, 1419, 1424,
|
|
1432, 1440, 1448, 1456, 1464, 1472, 1480, 1488, 1495, 1502,
|
|
1506, 1511, 1516, 1521, 1526, 1531, 1536, 1540, 1544, 1548,
|
|
1552, 1558, 1569, 1576, 1579, 1588, 1593, 1603, 1608, 1616,
|
|
1620, 1630, 1633, 1639, 1645, 1652, 1662, 1666, 1670, 1674,
|
|
1679, 1683, 1688, 1693, 1698, 1703, 1708, 1713, 1718, 1723,
|
|
1728, 1734, 1740, 1746, 1751, 1756, 1761, 1766, 1771, 1776,
|
|
1781, 1786, 1791, 1796, 1801, 1807, 1814, 1819, 1824, 1829,
|
|
1834, 1839, 1844, 1849, 1854, 1859, 1864, 1869, 1877, 1885,
|
|
1893, 1899, 1905, 1911, 1917, 1923, 1929, 1935, 1941, 1947,
|
|
1953, 1959, 1965, 1971, 1977, 1983, 1989, 1995, 2001, 2007,
|
|
2013, 2019, 2025, 2031, 2037, 2043, 2049, 2055, 2061, 2067,
|
|
2073, 2079, 2085, 2091, 2099, 2107, 2115, 2123, 2131, 2139,
|
|
2147, 2155, 2163, 2171, 2179, 2187, 2193, 2199, 2205, 2211,
|
|
2217, 2223, 2229, 2235, 2241, 2247, 2253, 2259, 2265, 2271,
|
|
2277, 2283, 2289, 2295, 2301, 2307, 2313, 2319, 2325, 2331,
|
|
2337, 2343, 2349, 2355, 2361, 2367, 2373, 2379, 2385, 2391,
|
|
2397, 2403, 2407, 2411, 2415, 2420, 2426, 2431, 2436, 2441,
|
|
2446, 2451, 2456, 2462, 2467, 2472, 2477, 2482, 2487, 2493,
|
|
2499, 2505, 2511, 2517, 2523, 2529, 2535, 2541, 2547, 2553,
|
|
2559, 2565, 2571, 2576, 2581, 2586, 2591, 2596, 2601, 2607,
|
|
2612, 2617, 2622, 2627, 2632, 2637, 2642, 2648, 2653, 2658,
|
|
2663, 2668, 2673, 2678, 2683, 2688, 2693, 2698, 2703, 2708,
|
|
2713, 2718, 2724, 2729, 2734, 2740, 2746, 2751, 2756, 2761,
|
|
2767, 2772, 2777, 2782, 2788, 2793, 2798, 2803, 2809, 2814,
|
|
2819, 2824, 2830, 2836, 2842, 2848, 2853, 2859, 2865, 2871,
|
|
2876, 2881, 2886, 2891, 2896, 2902, 2907, 2912, 2917, 2923,
|
|
2928, 2933, 2938, 2944, 2949, 2954, 2959, 2965, 2970, 2975,
|
|
2980, 2986, 2991, 2996, 3001, 3007, 3012, 3017, 3022, 3028,
|
|
3033, 3038, 3043, 3049, 3054, 3059, 3064, 3070, 3075, 3080,
|
|
3085, 3091, 3096, 3101, 3106, 3112, 3117, 3122, 3127, 3133,
|
|
3138, 3143, 3148, 3154, 3159, 3164, 3169, 3175, 3180, 3185,
|
|
3190, 3196, 3201, 3206, 3212, 3218, 3224, 3230, 3237, 3244,
|
|
3250, 3256, 3262, 3268, 3274, 3280, 3287, 3292, 3308, 3313,
|
|
3318, 3326, 3326, 3337, 3337, 3347, 3350, 3363, 3385, 3412,
|
|
3416, 3422, 3427, 3438, 3442, 3448, 3459, 3462, 3469, 3473,
|
|
3474, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3488, 3494,
|
|
3503, 3504, 3508, 3504, 3520, 3521, 3525, 3525, 3532, 3532,
|
|
3546, 3549, 3557, 3565, 3576, 3577, 3581, 3585, 3592, 3599,
|
|
3603, 3611, 3615, 3628, 3632, 3639, 3639, 3659, 3662, 3668,
|
|
3680, 3692, 3696, 3703, 3703, 3718, 3718, 3734, 3734, 3755,
|
|
3758, 3764, 3767, 3773, 3777, 3784, 3789, 3794, 3801, 3804,
|
|
3813, 3817, 3826, 3829, 3833, 3842, 3842, 3865, 3871, 3874,
|
|
3879, 3882
|
|
};
|
|
#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", "CONST", "BOOL", "INT", "UINT", "FLOAT",
|
|
"BVEC2", "BVEC3", "BVEC4", "IVEC2", "IVEC3", "IVEC4", "UVEC2", "UVEC3",
|
|
"UVEC4", "VEC2", "VEC3", "VEC4", "MAT2", "MAT3", "MAT4", "MAT2X2",
|
|
"MAT2X3", "MAT2X4", "MAT3X2", "MAT3X3", "MAT3X4", "MAT4X2", "MAT4X3",
|
|
"MAT4X4", "SAMPLER2D", "SAMPLER3D", "SAMPLERCUBE", "SAMPLER2DSHADOW",
|
|
"SAMPLERCUBESHADOW", "SAMPLER2DARRAY", "SAMPLER2DARRAYSHADOW",
|
|
"ISAMPLER2D", "ISAMPLER3D", "ISAMPLERCUBE", "ISAMPLER2DARRAY",
|
|
"USAMPLER2D", "USAMPLER3D", "USAMPLERCUBE", "USAMPLER2DARRAY", "SAMPLER",
|
|
"SAMPLERSHADOW", "TEXTURE2D", "TEXTURE3D", "TEXTURECUBE",
|
|
"TEXTURE2DARRAY", "ITEXTURE2D", "ITEXTURE3D", "ITEXTURECUBE",
|
|
"ITEXTURE2DARRAY", "UTEXTURE2D", "UTEXTURE3D", "UTEXTURECUBE",
|
|
"UTEXTURE2DARRAY", "ATTRIBUTE", "VARYING", "FLOAT16_T", "FLOAT32_T",
|
|
"DOUBLE", "FLOAT64_T", "INT64_T", "UINT64_T", "INT32_T", "UINT32_T",
|
|
"INT16_T", "UINT16_T", "INT8_T", "UINT8_T", "I64VEC2", "I64VEC3",
|
|
"I64VEC4", "U64VEC2", "U64VEC3", "U64VEC4", "I32VEC2", "I32VEC3",
|
|
"I32VEC4", "U32VEC2", "U32VEC3", "U32VEC4", "I16VEC2", "I16VEC3",
|
|
"I16VEC4", "U16VEC2", "U16VEC3", "U16VEC4", "I8VEC2", "I8VEC3", "I8VEC4",
|
|
"U8VEC2", "U8VEC3", "U8VEC4", "DVEC2", "DVEC3", "DVEC4", "DMAT2",
|
|
"DMAT3", "DMAT4", "F16VEC2", "F16VEC3", "F16VEC4", "F16MAT2", "F16MAT3",
|
|
"F16MAT4", "F32VEC2", "F32VEC3", "F32VEC4", "F32MAT2", "F32MAT3",
|
|
"F32MAT4", "F64VEC2", "F64VEC3", "F64VEC4", "F64MAT2", "F64MAT3",
|
|
"F64MAT4", "DMAT2X2", "DMAT2X3", "DMAT2X4", "DMAT3X2", "DMAT3X3",
|
|
"DMAT3X4", "DMAT4X2", "DMAT4X3", "DMAT4X4", "F16MAT2X2", "F16MAT2X3",
|
|
"F16MAT2X4", "F16MAT3X2", "F16MAT3X3", "F16MAT3X4", "F16MAT4X2",
|
|
"F16MAT4X3", "F16MAT4X4", "F32MAT2X2", "F32MAT2X3", "F32MAT2X4",
|
|
"F32MAT3X2", "F32MAT3X3", "F32MAT3X4", "F32MAT4X2", "F32MAT4X3",
|
|
"F32MAT4X4", "F64MAT2X2", "F64MAT2X3", "F64MAT2X4", "F64MAT3X2",
|
|
"F64MAT3X3", "F64MAT3X4", "F64MAT4X2", "F64MAT4X3", "F64MAT4X4",
|
|
"ATOMIC_UINT", "ACCSTRUCTNV", "ACCSTRUCTEXT", "RAYQUERYEXT",
|
|
"FCOOPMATNV", "ICOOPMATNV", "UCOOPMATNV", "SAMPLERCUBEARRAY",
|
|
"SAMPLERCUBEARRAYSHADOW", "ISAMPLERCUBEARRAY", "USAMPLERCUBEARRAY",
|
|
"SAMPLER1D", "SAMPLER1DARRAY", "SAMPLER1DARRAYSHADOW", "ISAMPLER1D",
|
|
"SAMPLER1DSHADOW", "SAMPLER2DRECT", "SAMPLER2DRECTSHADOW",
|
|
"ISAMPLER2DRECT", "USAMPLER2DRECT", "SAMPLERBUFFER", "ISAMPLERBUFFER",
|
|
"USAMPLERBUFFER", "SAMPLER2DMS", "ISAMPLER2DMS", "USAMPLER2DMS",
|
|
"SAMPLER2DMSARRAY", "ISAMPLER2DMSARRAY", "USAMPLER2DMSARRAY",
|
|
"SAMPLEREXTERNALOES", "SAMPLEREXTERNAL2DY2YEXT", "ISAMPLER1DARRAY",
|
|
"USAMPLER1D", "USAMPLER1DARRAY", "F16SAMPLER1D", "F16SAMPLER2D",
|
|
"F16SAMPLER3D", "F16SAMPLER2DRECT", "F16SAMPLERCUBE",
|
|
"F16SAMPLER1DARRAY", "F16SAMPLER2DARRAY", "F16SAMPLERCUBEARRAY",
|
|
"F16SAMPLERBUFFER", "F16SAMPLER2DMS", "F16SAMPLER2DMSARRAY",
|
|
"F16SAMPLER1DSHADOW", "F16SAMPLER2DSHADOW", "F16SAMPLER1DARRAYSHADOW",
|
|
"F16SAMPLER2DARRAYSHADOW", "F16SAMPLER2DRECTSHADOW",
|
|
"F16SAMPLERCUBESHADOW", "F16SAMPLERCUBEARRAYSHADOW", "IMAGE1D",
|
|
"IIMAGE1D", "UIMAGE1D", "IMAGE2D", "IIMAGE2D", "UIMAGE2D", "IMAGE3D",
|
|
"IIMAGE3D", "UIMAGE3D", "IMAGE2DRECT", "IIMAGE2DRECT", "UIMAGE2DRECT",
|
|
"IMAGECUBE", "IIMAGECUBE", "UIMAGECUBE", "IMAGEBUFFER", "IIMAGEBUFFER",
|
|
"UIMAGEBUFFER", "IMAGE1DARRAY", "IIMAGE1DARRAY", "UIMAGE1DARRAY",
|
|
"IMAGE2DARRAY", "IIMAGE2DARRAY", "UIMAGE2DARRAY", "IMAGECUBEARRAY",
|
|
"IIMAGECUBEARRAY", "UIMAGECUBEARRAY", "IMAGE2DMS", "IIMAGE2DMS",
|
|
"UIMAGE2DMS", "IMAGE2DMSARRAY", "IIMAGE2DMSARRAY", "UIMAGE2DMSARRAY",
|
|
"F16IMAGE1D", "F16IMAGE2D", "F16IMAGE3D", "F16IMAGE2DRECT",
|
|
"F16IMAGECUBE", "F16IMAGE1DARRAY", "F16IMAGE2DARRAY",
|
|
"F16IMAGECUBEARRAY", "F16IMAGEBUFFER", "F16IMAGE2DMS",
|
|
"F16IMAGE2DMSARRAY", "TEXTURECUBEARRAY", "ITEXTURECUBEARRAY",
|
|
"UTEXTURECUBEARRAY", "TEXTURE1D", "ITEXTURE1D", "UTEXTURE1D",
|
|
"TEXTURE1DARRAY", "ITEXTURE1DARRAY", "UTEXTURE1DARRAY", "TEXTURE2DRECT",
|
|
"ITEXTURE2DRECT", "UTEXTURE2DRECT", "TEXTUREBUFFER", "ITEXTUREBUFFER",
|
|
"UTEXTUREBUFFER", "TEXTURE2DMS", "ITEXTURE2DMS", "UTEXTURE2DMS",
|
|
"TEXTURE2DMSARRAY", "ITEXTURE2DMSARRAY", "UTEXTURE2DMSARRAY",
|
|
"F16TEXTURE1D", "F16TEXTURE2D", "F16TEXTURE3D", "F16TEXTURE2DRECT",
|
|
"F16TEXTURECUBE", "F16TEXTURE1DARRAY", "F16TEXTURE2DARRAY",
|
|
"F16TEXTURECUBEARRAY", "F16TEXTUREBUFFER", "F16TEXTURE2DMS",
|
|
"F16TEXTURE2DMSARRAY", "SUBPASSINPUT", "SUBPASSINPUTMS", "ISUBPASSINPUT",
|
|
"ISUBPASSINPUTMS", "USUBPASSINPUT", "USUBPASSINPUTMS", "F16SUBPASSINPUT",
|
|
"F16SUBPASSINPUTMS", "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", "STRING_LITERAL",
|
|
"LEFT_PAREN", "RIGHT_PAREN", "LEFT_BRACKET", "RIGHT_BRACKET",
|
|
"LEFT_BRACE", "RIGHT_BRACE", "DOT", "COMMA", "COLON", "EQUAL",
|
|
"SEMICOLON", "BANG", "DASH", "TILDE", "PLUS", "STAR", "SLASH", "PERCENT",
|
|
"LEFT_ANGLE", "RIGHT_ANGLE", "VERTICAL_BAR", "CARET", "AMPERSAND",
|
|
"QUESTION", "INVARIANT", "HIGH_PRECISION", "MEDIUM_PRECISION",
|
|
"LOW_PRECISION", "PRECISION", "PACKED", "RESOURCE", "SUPERP",
|
|
"FLOATCONSTANT", "INTCONSTANT", "UINTCONSTANT", "BOOLCONSTANT",
|
|
"IDENTIFIER", "TYPE_NAME", "CENTROID", "IN", "OUT", "INOUT", "STRUCT",
|
|
"VOID", "WHILE", "BREAK", "CONTINUE", "DO", "ELSE", "FOR", "IF",
|
|
"DISCARD", "RETURN", "SWITCH", "CASE", "DEFAULT", "UNIFORM", "SHARED",
|
|
"BUFFER", "FLAT", "SMOOTH", "LAYOUT", "DOUBLECONSTANT", "INT16CONSTANT",
|
|
"UINT16CONSTANT", "FLOAT16CONSTANT", "INT32CONSTANT", "UINT32CONSTANT",
|
|
"INT64CONSTANT", "UINT64CONSTANT", "SUBROUTINE", "DEMOTE", "PAYLOADNV",
|
|
"PAYLOADINNV", "HITATTRNV", "CALLDATANV", "CALLDATAINNV", "PAYLOADEXT",
|
|
"PAYLOADINEXT", "HITATTREXT", "CALLDATAEXT", "CALLDATAINEXT", "PATCH",
|
|
"SAMPLE", "NONUNIFORM", "COHERENT", "VOLATILE", "RESTRICT", "READONLY",
|
|
"WRITEONLY", "DEVICECOHERENT", "QUEUEFAMILYCOHERENT",
|
|
"WORKGROUPCOHERENT", "SUBGROUPCOHERENT", "NONPRIVATE",
|
|
"SHADERCALLCOHERENT", "NOPERSPECTIVE", "EXPLICITINTERPAMD",
|
|
"PERVERTEXNV", "PERPRIMITIVENV", "PERVIEWNV", "PERTASKNV", "PRECISE",
|
|
"$accept", "variable_identifier", "primary_expression",
|
|
"postfix_expression", "integer_expression", "function_call",
|
|
"function_call_or_method", "function_call_generic",
|
|
"function_call_header_no_parameters",
|
|
"function_call_header_with_parameters", "function_call_header",
|
|
"function_identifier", "unary_expression", "unary_operator",
|
|
"multiplicative_expression", "additive_expression", "shift_expression",
|
|
"relational_expression", "equality_expression", "and_expression",
|
|
"exclusive_or_expression", "inclusive_or_expression",
|
|
"logical_and_expression", "logical_xor_expression",
|
|
"logical_or_expression", "conditional_expression", "$@1",
|
|
"assignment_expression", "assignment_operator", "expression",
|
|
"constant_expression", "declaration", "block_structure", "$@2",
|
|
"identifier_list", "function_prototype", "function_declarator",
|
|
"function_header_with_parameters", "function_header",
|
|
"parameter_declarator", "parameter_declaration",
|
|
"parameter_type_specifier", "init_declarator_list", "single_declaration",
|
|
"fully_specified_type", "invariant_qualifier", "interpolation_qualifier",
|
|
"layout_qualifier", "layout_qualifier_id_list", "layout_qualifier_id",
|
|
"precise_qualifier", "type_qualifier", "single_type_qualifier",
|
|
"storage_qualifier", "non_uniform_qualifier", "type_name_list",
|
|
"type_specifier", "array_specifier", "type_parameter_specifier_opt",
|
|
"type_parameter_specifier", "type_parameter_specifier_list",
|
|
"type_specifier_nonarray", "precision_qualifier", "struct_specifier",
|
|
"$@3", "$@4", "struct_declaration_list", "struct_declaration",
|
|
"struct_declarator_list", "struct_declarator", "initializer",
|
|
"initializer_list", "declaration_statement", "statement",
|
|
"simple_statement", "demote_statement", "compound_statement", "$@5",
|
|
"$@6", "statement_no_new_scope", "statement_scoped", "$@7", "$@8",
|
|
"compound_statement_no_new_scope", "statement_list",
|
|
"expression_statement", "selection_statement",
|
|
"selection_statement_nonattributed", "selection_rest_statement",
|
|
"condition", "switch_statement", "switch_statement_nonattributed", "$@9",
|
|
"switch_statement_list", "case_label", "iteration_statement",
|
|
"iteration_statement_nonattributed", "$@10", "$@11", "$@12",
|
|
"for_init_statement", "conditionopt", "for_rest_statement",
|
|
"jump_statement", "translation_unit", "external_declaration",
|
|
"function_definition", "$@13", "attribute", "attribute_list",
|
|
"single_attribute", YY_NULLPTR
|
|
};
|
|
#endif
|
|
|
|
# ifdef YYPRINT
|
|
/* YYTOKNUM[NUM] -- (External) token number corresponding to the
|
|
(internal) symbol number NUM (which must be that of a token). */
|
|
static const yytype_uint16 yytoknum[] =
|
|
{
|
|
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
|
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
|
|
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
|
|
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
|
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
|
|
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
|
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
|
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
|
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
|
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
|
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
|
|
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
|
|
375, 376, 377, 378, 379, 380, 381, 382, 383, 384,
|
|
385, 386, 387, 388, 389, 390, 391, 392, 393, 394,
|
|
395, 396, 397, 398, 399, 400, 401, 402, 403, 404,
|
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414,
|
|
415, 416, 417, 418, 419, 420, 421, 422, 423, 424,
|
|
425, 426, 427, 428, 429, 430, 431, 432, 433, 434,
|
|
435, 436, 437, 438, 439, 440, 441, 442, 443, 444,
|
|
445, 446, 447, 448, 449, 450, 451, 452, 453, 454,
|
|
455, 456, 457, 458, 459, 460, 461, 462, 463, 464,
|
|
465, 466, 467, 468, 469, 470, 471, 472, 473, 474,
|
|
475, 476, 477, 478, 479, 480, 481, 482, 483, 484,
|
|
485, 486, 487, 488, 489, 490, 491, 492, 493, 494,
|
|
495, 496, 497, 498, 499, 500, 501, 502, 503, 504,
|
|
505, 506, 507, 508, 509, 510, 511, 512, 513, 514,
|
|
515, 516, 517, 518, 519, 520, 521, 522, 523, 524,
|
|
525, 526, 527, 528, 529, 530, 531, 532, 533, 534,
|
|
535, 536, 537, 538, 539, 540, 541, 542, 543, 544,
|
|
545, 546, 547, 548, 549, 550, 551, 552, 553, 554,
|
|
555, 556, 557, 558, 559, 560, 561, 562, 563, 564,
|
|
565, 566, 567, 568, 569, 570, 571, 572, 573, 574,
|
|
575, 576, 577, 578, 579, 580, 581, 582, 583, 584,
|
|
585, 586, 587, 588, 589, 590, 591, 592, 593, 594,
|
|
595, 596, 597, 598, 599, 600, 601, 602, 603, 604,
|
|
605, 606, 607, 608, 609, 610, 611, 612, 613, 614,
|
|
615, 616, 617, 618, 619, 620, 621, 622, 623, 624,
|
|
625, 626, 627, 628, 629, 630, 631, 632, 633, 634,
|
|
635, 636, 637, 638, 639, 640, 641, 642, 643, 644,
|
|
645, 646, 647, 648, 649, 650, 651, 652, 653, 654,
|
|
655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
|
|
665, 666, 667, 668, 669, 670, 671, 672, 673, 674
|
|
};
|
|
# endif
|
|
|
|
#define YYPACT_NINF -457
|
|
|
|
#define yypact_value_is_default(Yystate) \
|
|
(!!((Yystate) == (-457)))
|
|
|
|
#define YYTABLE_NINF -537
|
|
|
|
#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[] =
|
|
{
|
|
4075, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, 132, -457,
|
|
-457, -457, -457, -457, -1, -457, -457, -457, -457, -457,
|
|
-457, -301, -298, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, 11, -249, 17, 30, 6160,
|
|
20, -457, 28, -457, -457, -457, -457, 4492, -457, -457,
|
|
-457, -457, 50, -457, -457, 739, -457, -457, 16, -457,
|
|
81, -29, 69, -457, -313, -457, 111, -457, 6160, -457,
|
|
-457, -457, 6160, 103, 106, -457, -314, -457, 72, -457,
|
|
-457, 8566, 142, -457, -457, -457, 136, 6160, -457, 144,
|
|
-457, 53, -457, -457, 76, 6974, -457, -312, 1156, -457,
|
|
-457, -457, -457, 142, -309, -457, 7372, -308, -457, 119,
|
|
-457, 65, 8566, 8566, -457, 8566, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, 36, -457, -457, -457, 171,
|
|
85, 8964, 173, -457, 8566, -457, -457, -323, 174, -457,
|
|
6160, 139, 4909, -457, 6160, 8566, -457, -29, -457, 141,
|
|
-457, -457, 145, 99, 35, 26, 71, 156, 159, 161,
|
|
196, 195, 23, 181, 7770, -457, 183, 182, -457, -457,
|
|
186, 179, 180, -457, 191, 192, 187, 8168, 193, 8566,
|
|
188, 189, 127, -457, -457, 96, -457, -249, 200, 201,
|
|
-457, -457, -457, -457, -457, 1573, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, -24, 174, 7372, 13, 7372,
|
|
-457, -457, 7372, 6160, -457, 166, -457, -457, -457, 86,
|
|
-457, -457, 8566, 168, -457, -457, 8566, 205, -457, -457,
|
|
-457, 8566, -457, 139, 142, 124, -457, -457, -457, 5326,
|
|
-457, -457, -457, -457, 8566, 8566, 8566, 8566, 8566, 8566,
|
|
8566, 8566, 8566, 8566, 8566, 8566, 8566, 8566, 8566, 8566,
|
|
8566, 8566, 8566, -457, -457, -457, 206, 172, -457, 1990,
|
|
-457, -457, -457, 1990, -457, 8566, -457, -457, 130, 8566,
|
|
125, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, -457, -457, 8566, 8566, -457, -457, -457, -457,
|
|
-457, -457, -457, 7372, -457, 94, -457, 5743, -457, -457,
|
|
207, 204, -457, -457, -457, 131, 174, 139, -457, -457,
|
|
-457, -457, -457, 145, 145, 99, 99, 35, 35, 35,
|
|
35, 26, 26, 71, 156, 159, 161, 196, 195, 8566,
|
|
-457, 212, 60, -457, 1990, 3658, 169, 3241, 87, -457,
|
|
89, -457, -457, -457, -457, -457, 6576, -457, -457, -457,
|
|
-457, 143, 8566, 211, 172, 210, 204, 184, 6160, 217,
|
|
219, -457, -457, 3658, 218, -457, -457, -457, 8566, 220,
|
|
-457, -457, -457, 214, 2407, 8566, -457, 216, 223, 185,
|
|
224, 2824, -457, 225, -457, -457, 7372, -457, -457, -457,
|
|
97, 8566, 2407, 218, -457, -457, 1990, -457, 222, 204,
|
|
-457, -457, 1990, 229, -457, -457
|
|
};
|
|
|
|
/* 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[] =
|
|
{
|
|
0, 157, 210, 208, 209, 207, 214, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 211, 212, 213, 223, 224,
|
|
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
|
|
336, 337, 338, 339, 340, 341, 342, 362, 363, 364,
|
|
365, 366, 367, 368, 377, 390, 391, 378, 379, 381,
|
|
380, 382, 383, 384, 385, 386, 387, 388, 389, 165,
|
|
166, 236, 237, 235, 238, 245, 246, 243, 244, 241,
|
|
242, 239, 240, 268, 269, 270, 280, 281, 282, 265,
|
|
266, 267, 277, 278, 279, 262, 263, 264, 274, 275,
|
|
276, 259, 260, 261, 271, 272, 273, 247, 248, 249,
|
|
283, 284, 285, 250, 251, 252, 295, 296, 297, 253,
|
|
254, 255, 307, 308, 309, 256, 257, 258, 319, 320,
|
|
321, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
|
298, 299, 300, 301, 302, 303, 304, 305, 306, 310,
|
|
311, 312, 313, 314, 315, 316, 317, 318, 322, 323,
|
|
324, 325, 326, 327, 328, 329, 330, 334, 331, 332,
|
|
333, 493, 494, 495, 346, 347, 370, 373, 335, 344,
|
|
345, 361, 343, 392, 393, 396, 397, 398, 400, 401,
|
|
402, 404, 405, 406, 408, 409, 483, 484, 369, 371,
|
|
372, 348, 349, 350, 394, 351, 355, 356, 359, 399,
|
|
403, 407, 352, 353, 357, 358, 395, 354, 360, 439,
|
|
441, 442, 443, 445, 446, 447, 449, 450, 451, 453,
|
|
454, 455, 457, 458, 459, 461, 462, 463, 465, 466,
|
|
467, 469, 470, 471, 473, 474, 475, 477, 478, 479,
|
|
481, 482, 440, 444, 448, 452, 456, 464, 468, 472,
|
|
460, 476, 480, 374, 375, 376, 410, 419, 421, 415,
|
|
420, 422, 423, 425, 426, 427, 429, 430, 431, 433,
|
|
434, 435, 437, 438, 411, 412, 413, 424, 414, 416,
|
|
417, 418, 428, 432, 436, 485, 486, 489, 490, 491,
|
|
492, 487, 488, 584, 132, 498, 499, 500, 0, 497,
|
|
161, 159, 160, 158, 0, 206, 162, 163, 164, 134,
|
|
133, 0, 190, 171, 173, 169, 175, 177, 172, 174,
|
|
170, 176, 178, 167, 168, 192, 179, 186, 187, 188,
|
|
189, 180, 181, 182, 183, 184, 185, 135, 136, 137,
|
|
138, 139, 140, 147, 583, 0, 585, 0, 109, 108,
|
|
0, 120, 125, 154, 153, 151, 155, 0, 148, 150,
|
|
156, 130, 202, 152, 496, 0, 580, 582, 0, 503,
|
|
0, 0, 0, 97, 0, 94, 0, 107, 0, 116,
|
|
110, 118, 0, 119, 0, 95, 126, 100, 0, 149,
|
|
131, 0, 195, 201, 1, 581, 0, 0, 501, 144,
|
|
146, 0, 142, 193, 0, 0, 98, 0, 0, 586,
|
|
111, 115, 117, 113, 121, 112, 0, 127, 103, 0,
|
|
101, 0, 0, 0, 9, 0, 43, 42, 44, 41,
|
|
5, 6, 7, 8, 2, 16, 14, 15, 17, 10,
|
|
11, 12, 13, 3, 18, 37, 20, 25, 26, 0,
|
|
0, 30, 0, 204, 0, 36, 34, 0, 196, 96,
|
|
0, 0, 0, 505, 0, 0, 141, 0, 191, 0,
|
|
197, 45, 49, 52, 55, 60, 63, 65, 67, 69,
|
|
71, 73, 75, 0, 0, 99, 0, 531, 540, 544,
|
|
0, 0, 0, 565, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 45, 78, 91, 0, 518, 0, 156, 130,
|
|
521, 542, 520, 528, 519, 0, 522, 523, 546, 524,
|
|
553, 525, 526, 561, 527, 0, 114, 0, 122, 0,
|
|
513, 129, 0, 0, 105, 0, 102, 38, 39, 0,
|
|
22, 23, 0, 0, 28, 27, 0, 206, 31, 33,
|
|
40, 0, 203, 0, 511, 0, 509, 504, 506, 0,
|
|
93, 145, 143, 194, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 76, 198, 199, 0, 0, 530, 0,
|
|
563, 576, 575, 0, 567, 0, 579, 577, 0, 0,
|
|
0, 560, 529, 81, 82, 84, 83, 86, 87, 88,
|
|
89, 90, 85, 80, 0, 0, 545, 541, 543, 547,
|
|
554, 562, 124, 0, 516, 0, 128, 0, 106, 4,
|
|
0, 24, 21, 32, 205, 0, 512, 0, 507, 502,
|
|
46, 47, 48, 51, 50, 53, 54, 58, 59, 56,
|
|
57, 61, 62, 64, 66, 68, 70, 72, 74, 0,
|
|
200, 590, 0, 588, 532, 0, 0, 0, 0, 578,
|
|
0, 559, 79, 92, 123, 514, 0, 104, 19, 508,
|
|
510, 0, 0, 0, 0, 0, 551, 0, 0, 0,
|
|
0, 570, 569, 572, 538, 555, 515, 517, 0, 0,
|
|
587, 589, 533, 0, 0, 0, 571, 0, 0, 550,
|
|
0, 0, 548, 0, 77, 591, 0, 535, 564, 534,
|
|
0, 573, 0, 538, 537, 539, 557, 552, 0, 574,
|
|
568, 549, 558, 0, 566, 556
|
|
};
|
|
|
|
/* YYPGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yypgoto[] =
|
|
{
|
|
-457, -457, -457, -457, -457, -457, -457, -457, -457, -457,
|
|
-457, -457, 8868, -457, -87, -84, -127, -93, -33, -31,
|
|
-27, -25, -28, -26, -457, -86, -457, -103, -457, -111,
|
|
-125, 2, -457, -457, -457, 4, -457, -457, -457, 176,
|
|
194, 178, -457, -457, -337, -457, -457, -457, -457, 95,
|
|
-457, -37, -46, -457, 9, -457, 0, -63, -457, -457,
|
|
-457, -457, 263, -457, -457, -457, -456, -140, 10, -73,
|
|
-211, -457, -102, -198, -321, -457, -144, -457, -457, -155,
|
|
-154, -457, -457, 198, -274, -97, -457, 46, -457, -118,
|
|
-457, 51, -457, -457, -457, -457, 52, -457, -457, -457,
|
|
-457, -457, -457, -457, -457, 213, -457, -457, -457, -457,
|
|
-105
|
|
};
|
|
|
|
/* YYDEFGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yydefgoto[] =
|
|
{
|
|
-1, 443, 444, 445, 630, 446, 447, 448, 449, 450,
|
|
451, 452, 502, 454, 472, 473, 474, 475, 476, 477,
|
|
478, 479, 480, 481, 482, 503, 659, 504, 614, 505,
|
|
561, 506, 345, 533, 421, 507, 347, 348, 349, 379,
|
|
380, 381, 350, 351, 352, 353, 354, 355, 401, 402,
|
|
356, 357, 358, 359, 455, 404, 456, 407, 392, 393,
|
|
457, 362, 363, 364, 464, 397, 462, 463, 555, 556,
|
|
531, 625, 510, 511, 512, 513, 514, 589, 685, 718,
|
|
709, 710, 711, 719, 515, 516, 517, 518, 712, 689,
|
|
519, 520, 713, 733, 521, 522, 523, 665, 593, 667,
|
|
693, 707, 708, 524, 365, 366, 367, 376, 525, 662,
|
|
663
|
|
};
|
|
|
|
/* 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[] =
|
|
{
|
|
361, 551, 344, 415, 346, 405, 405, 484, 559, 360,
|
|
405, 484, 416, 552, 406, 485, 371, 527, 532, 372,
|
|
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, 627, 375, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, 389, 382, 530, 539, 664, 622, 618, 624, 483,
|
|
369, 626, 558, 417, 399, 571, 572, 582, 687, 458,
|
|
569, 570, 484, 540, 541, 377, 389, 490, 373, 623,
|
|
493, 382, 494, 495, 384, 400, 498, 385, 548, 383,
|
|
526, 528, 370, -35, 378, 542, 687, 390, 360, 543,
|
|
460, 573, 574, 583, 374, 361, 360, 344, 396, 346,
|
|
299, 466, 575, 576, 360, 304, 305, 467, 383, 560,
|
|
683, 386, 383, 717, 684, 391, 598, 360, 600, 535,
|
|
725, 360, 536, 418, 468, 666, 419, 461, 586, 420,
|
|
469, 717, 398, 545, 629, 694, 360, 695, 509, 546,
|
|
615, 615, 674, 615, 389, 728, 675, 508, 676, 558,
|
|
615, 615, 403, 616, 530, 460, 530, 460, 567, 530,
|
|
568, 631, 408, 603, 604, 605, 606, 607, 608, 609,
|
|
610, 611, 612, 633, 647, 648, 649, 650, 637, 615,
|
|
671, 638, 732, 613, 615, 637, 413, 669, 679, 414,
|
|
553, 405, 461, 459, 461, 697, 618, 615, 698, 360,
|
|
465, 360, 534, 360, 295, 296, 297, 564, 565, 566,
|
|
643, 644, 651, 652, 668, 645, 646, 558, 670, 544,
|
|
549, 636, 554, 484, 563, 577, 460, 578, 579, 580,
|
|
581, 584, 587, 590, 588, 727, 591, 592, 594, 595,
|
|
599, 672, 673, 601, 596, 509, 602, -36, -34, 628,
|
|
530, 632, 460, -29, 508, 661, 660, 678, 615, 682,
|
|
690, 700, 702, 461, 618, 704, 705, 703, 715, -536,
|
|
716, 722, 360, 721, 653, 487, 726, 654, 681, 734,
|
|
723, 735, 655, 657, 686, 656, 658, 699, 411, 461,
|
|
412, 368, 562, 635, 680, 691, 724, 730, 360, 731,
|
|
692, 619, 410, 530, 409, 706, 620, 621, 395, 701,
|
|
0, 0, 686, 0, 0, 0, 0, 0, 0, 509,
|
|
460, 0, 0, 509, 720, 714, 560, 0, 508, 0,
|
|
0, 0, 508, 0, 0, 0, 0, 0, 0, 0,
|
|
729, 0, 0, 530, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 461, 688, 0,
|
|
0, 0, 0, 0, 0, 0, 360, 0, 0, 0,
|
|
0, 0, 389, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 688, 0, 0, 0,
|
|
0, 0, 0, 0, 509, 509, 0, 509, 0, 0,
|
|
0, 0, 0, 508, 508, 0, 508, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 390, 0,
|
|
0, 0, 0, 509, 0, 0, 0, 360, 0, 0,
|
|
0, 0, 508, 0, 509, 0, 0, 0, 0, 0,
|
|
0, 509, 0, 508, 0, 0, 0, 0, 0, 0,
|
|
508, 0, 509, 0, 0, 0, 509, 0, 0, 0,
|
|
0, 508, 509, 0, 0, 508, 0, 0, 0, 394,
|
|
0, 508, 1, 2, 3, 4, 5, 6, 7, 8,
|
|
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
|
|
39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
|
|
49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
|
|
59, 60, 61, 62, 63, 64, 65, 66, 67, 68,
|
|
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
|
|
79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
|
|
99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
|
|
109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
|
|
119, 120, 121, 122, 123, 124, 125, 126, 127, 128,
|
|
129, 130, 131, 132, 133, 134, 135, 136, 137, 138,
|
|
139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
|
|
149, 150, 151, 152, 153, 154, 155, 156, 157, 158,
|
|
159, 160, 161, 162, 163, 164, 165, 166, 167, 168,
|
|
169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
|
|
179, 180, 181, 182, 183, 184, 185, 186, 187, 188,
|
|
189, 190, 191, 192, 193, 194, 195, 196, 197, 198,
|
|
199, 200, 201, 202, 203, 204, 205, 206, 207, 208,
|
|
209, 210, 211, 212, 213, 214, 215, 216, 217, 218,
|
|
219, 220, 221, 222, 223, 224, 225, 226, 227, 228,
|
|
229, 230, 231, 232, 233, 234, 235, 236, 237, 238,
|
|
239, 240, 241, 242, 243, 244, 245, 246, 247, 248,
|
|
249, 250, 251, 252, 253, 254, 255, 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, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 293, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
294, 295, 296, 297, 298, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 299, 300, 301, 302, 303, 304, 305,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 306, 307, 308, 309, 310, 311, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 312, 0, 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, 1,
|
|
2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
|
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, 0, 0, 422, 423, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 424, 425, 0, 486, 0, 487, 488, 0,
|
|
0, 0, 0, 489, 426, 427, 428, 429, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 294, 295, 296,
|
|
297, 298, 0, 0, 0, 430, 431, 432, 433, 434,
|
|
299, 300, 301, 302, 303, 304, 305, 490, 491, 492,
|
|
493, 0, 494, 495, 496, 497, 498, 499, 500, 306,
|
|
307, 308, 309, 310, 311, 435, 436, 437, 438, 439,
|
|
440, 441, 442, 312, 501, 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, 1, 2, 3, 4,
|
|
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
|
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
|
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
|
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
|
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
|
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
|
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
|
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
|
|
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
|
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
|
|
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
|
|
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
|
|
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
|
|
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
|
|
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
|
|
185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
|
|
195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
|
|
205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
|
|
215, 216, 217, 218, 219, 220, 221, 222, 223, 224,
|
|
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
|
|
235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
|
|
245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
|
|
255, 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, 0, 0,
|
|
422, 423, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 424,
|
|
425, 0, 486, 0, 487, 617, 0, 0, 0, 0,
|
|
489, 426, 427, 428, 429, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 294, 295, 296, 297, 298, 0,
|
|
0, 0, 430, 431, 432, 433, 434, 299, 300, 301,
|
|
302, 303, 304, 305, 490, 491, 492, 493, 0, 494,
|
|
495, 496, 497, 498, 499, 500, 306, 307, 308, 309,
|
|
310, 311, 435, 436, 437, 438, 439, 440, 441, 442,
|
|
312, 501, 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, 1, 2, 3, 4, 5, 6, 7,
|
|
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
|
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
|
|
38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
|
48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
|
|
58, 59, 60, 61, 62, 63, 64, 65, 66, 67,
|
|
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
|
|
78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
|
|
88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
|
|
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
|
|
118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
|
|
128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
|
|
138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
|
|
148, 149, 150, 151, 152, 153, 154, 155, 156, 157,
|
|
158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
|
|
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
|
178, 179, 180, 181, 182, 183, 184, 185, 186, 187,
|
|
188, 189, 190, 191, 192, 193, 194, 195, 196, 197,
|
|
198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
|
|
208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
|
|
228, 229, 230, 231, 232, 233, 234, 235, 236, 237,
|
|
238, 239, 240, 241, 242, 243, 244, 245, 246, 247,
|
|
248, 249, 250, 251, 252, 253, 254, 255, 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, 0, 0, 422, 423, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 424, 425, 0, 486,
|
|
0, 487, 0, 0, 0, 0, 0, 489, 426, 427,
|
|
428, 429, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 294, 295, 296, 297, 298, 0, 0, 0, 430,
|
|
431, 432, 433, 434, 299, 300, 301, 302, 303, 304,
|
|
305, 490, 491, 492, 493, 0, 494, 495, 496, 497,
|
|
498, 499, 500, 306, 307, 308, 309, 310, 311, 435,
|
|
436, 437, 438, 439, 440, 441, 442, 312, 501, 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,
|
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
|
|
111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
|
|
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
|
|
131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
|
|
141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
|
|
151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
|
|
161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
|
171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
|
|
181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
|
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
|
|
201, 202, 203, 204, 205, 206, 207, 208, 209, 210,
|
|
211, 212, 213, 214, 215, 216, 217, 218, 219, 220,
|
|
221, 222, 223, 224, 225, 226, 227, 228, 229, 230,
|
|
231, 232, 233, 234, 235, 236, 237, 238, 239, 240,
|
|
241, 242, 243, 244, 245, 246, 247, 248, 249, 250,
|
|
251, 252, 253, 254, 255, 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, 0, 0, 422, 423, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 424, 425, 0, 486, 0, 408, 0,
|
|
0, 0, 0, 0, 489, 426, 427, 428, 429, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 294, 295,
|
|
296, 297, 298, 0, 0, 0, 430, 431, 432, 433,
|
|
434, 299, 300, 301, 302, 303, 304, 305, 490, 491,
|
|
492, 493, 0, 494, 495, 496, 497, 498, 499, 500,
|
|
306, 307, 308, 309, 310, 311, 435, 436, 437, 438,
|
|
439, 440, 441, 442, 312, 501, 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, 1, 2, 3,
|
|
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
|
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
|
|
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
|
|
44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
|
|
54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, 0,
|
|
0, 422, 423, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
424, 425, 0, 486, 0, 0, 0, 0, 0, 0,
|
|
0, 489, 426, 427, 428, 429, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 294, 295, 296, 297, 298,
|
|
0, 0, 0, 430, 431, 432, 433, 434, 299, 300,
|
|
301, 302, 303, 304, 305, 490, 491, 492, 493, 0,
|
|
494, 495, 496, 497, 498, 499, 500, 306, 307, 308,
|
|
309, 310, 311, 435, 436, 437, 438, 439, 440, 441,
|
|
442, 312, 501, 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, 1, 2, 3, 4, 5, 6,
|
|
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
|
27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
|
|
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
|
47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
|
|
57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
|
|
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
|
|
77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
|
|
87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
|
|
97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
|
|
107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
|
|
117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
|
|
127, 128, 129, 130, 131, 132, 133, 134, 135, 136,
|
|
137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
|
|
147, 148, 149, 150, 151, 152, 153, 154, 155, 156,
|
|
157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
|
|
167, 168, 169, 170, 171, 172, 173, 174, 175, 176,
|
|
177, 178, 179, 180, 181, 182, 183, 184, 185, 186,
|
|
187, 188, 189, 190, 191, 192, 193, 194, 195, 196,
|
|
197, 198, 199, 200, 201, 202, 203, 204, 205, 206,
|
|
207, 208, 209, 210, 211, 212, 213, 214, 215, 216,
|
|
217, 218, 219, 220, 221, 222, 223, 224, 225, 226,
|
|
227, 228, 229, 230, 231, 232, 233, 234, 235, 236,
|
|
237, 238, 239, 240, 241, 242, 243, 244, 245, 246,
|
|
247, 248, 249, 250, 251, 252, 253, 254, 255, 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, 0, 0, 422, 423,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 424, 425, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 489, 426,
|
|
427, 428, 429, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 294, 295, 296, 297, 298, 0, 0, 0,
|
|
430, 431, 432, 433, 434, 299, 300, 301, 302, 303,
|
|
304, 305, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 306, 307, 308, 309, 310, 311,
|
|
435, 436, 437, 438, 439, 440, 441, 442, 312, 0,
|
|
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, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
|
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
|
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
|
|
40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
|
|
50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
|
|
60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
|
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
|
|
110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
|
|
120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
|
|
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
|
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
|
|
170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
|
|
180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
|
|
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
|
|
210, 211, 212, 213, 214, 215, 216, 217, 218, 219,
|
|
220, 221, 222, 223, 224, 225, 226, 227, 228, 229,
|
|
230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
|
240, 241, 242, 243, 244, 245, 246, 247, 248, 249,
|
|
250, 251, 252, 253, 254, 255, 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, 0, 0, 422, 423, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 424, 425, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 426, 427, 428, 429,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 294,
|
|
295, 296, 297, 0, 0, 0, 0, 430, 431, 432,
|
|
433, 434, 299, 300, 301, 302, 303, 304, 305, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 306, 307, 308, 309, 310, 311, 435, 436, 437,
|
|
438, 439, 440, 441, 442, 312, 0, 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, 1, 2,
|
|
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
|
|
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
|
|
23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
|
|
33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
|
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
|
|
53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
|
|
63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
|
|
73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
|
83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
|
|
93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
|
|
103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
|
|
113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
|
|
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
|
|
133, 134, 135, 136, 137, 138, 139, 140, 141, 142,
|
|
143, 144, 145, 146, 147, 148, 149, 150, 151, 152,
|
|
153, 154, 155, 156, 157, 158, 159, 160, 161, 162,
|
|
163, 164, 165, 166, 167, 168, 169, 170, 171, 172,
|
|
173, 174, 175, 176, 177, 178, 179, 180, 181, 182,
|
|
183, 184, 185, 186, 187, 188, 189, 190, 191, 192,
|
|
193, 194, 195, 196, 197, 198, 199, 200, 201, 202,
|
|
203, 204, 205, 206, 207, 208, 209, 210, 211, 212,
|
|
213, 214, 215, 216, 217, 218, 219, 220, 221, 222,
|
|
223, 224, 225, 226, 227, 228, 229, 230, 231, 232,
|
|
233, 234, 235, 236, 237, 238, 239, 240, 241, 242,
|
|
243, 244, 245, 246, 247, 248, 249, 250, 251, 252,
|
|
253, 254, 255, 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,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 293, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 294, 295, 296, 297,
|
|
298, 0, 0, 0, 0, 0, 0, 0, 0, 299,
|
|
300, 301, 302, 303, 304, 305, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 306, 307,
|
|
308, 309, 310, 311, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 312, 0, 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, 1, 2, 3, 4, 5,
|
|
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
|
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
|
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
|
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
|
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
|
|
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
|
|
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
|
|
76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
|
|
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
|
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
|
|
106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
|
|
116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
|
|
126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
136, 137, 138, 139, 140, 141, 142, 143, 144, 145,
|
|
146, 147, 148, 149, 150, 151, 152, 153, 154, 155,
|
|
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
|
166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
|
|
176, 177, 178, 179, 180, 181, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, 192, 193, 194, 195,
|
|
196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
|
|
206, 207, 208, 209, 210, 211, 212, 213, 214, 215,
|
|
216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
|
|
226, 227, 228, 229, 230, 231, 232, 233, 234, 235,
|
|
236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
|
|
246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
|
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, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 387,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 294, 295, 296, 297, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 388, 299, 300, 301, 302,
|
|
303, 304, 305, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 306, 307, 308, 309, 310,
|
|
311, 0, 0, 0, 0, 0, 0, 0, 0, 312,
|
|
0, 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, 1, 2, 3, 4, 5, 6, 7, 8,
|
|
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
|
|
39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
|
|
49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
|
|
59, 60, 61, 62, 63, 64, 65, 66, 67, 68,
|
|
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
|
|
79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
|
|
99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
|
|
109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
|
|
119, 120, 121, 122, 123, 124, 125, 126, 127, 128,
|
|
129, 130, 131, 132, 133, 134, 135, 136, 137, 138,
|
|
139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
|
|
149, 150, 151, 152, 153, 154, 155, 156, 157, 158,
|
|
159, 160, 161, 162, 163, 164, 165, 166, 167, 168,
|
|
169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
|
|
179, 180, 181, 182, 183, 184, 185, 186, 187, 188,
|
|
189, 190, 191, 192, 193, 194, 195, 196, 197, 198,
|
|
199, 200, 201, 202, 203, 204, 205, 206, 207, 208,
|
|
209, 210, 211, 212, 213, 214, 215, 216, 217, 218,
|
|
219, 220, 221, 222, 223, 224, 225, 226, 227, 228,
|
|
229, 230, 231, 232, 233, 234, 235, 236, 237, 238,
|
|
239, 240, 241, 242, 243, 244, 245, 246, 247, 248,
|
|
249, 250, 251, 252, 253, 254, 255, 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, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 557, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
294, 295, 296, 297, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 299, 300, 301, 302, 303, 304, 305,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 306, 307, 308, 309, 310, 311, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 312, 0, 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, 1,
|
|
2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
|
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 639, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 294, 295, 296,
|
|
297, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
299, 300, 301, 302, 303, 304, 305, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 306,
|
|
307, 308, 309, 310, 311, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 312, 0, 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, 1, 2, 3, 4,
|
|
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
|
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
|
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
|
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
|
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
|
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
|
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
|
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
|
|
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
|
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
|
|
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
|
|
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
|
|
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
|
|
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
|
|
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
|
|
185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
|
|
195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
|
|
205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
|
|
215, 216, 217, 218, 219, 220, 221, 222, 223, 224,
|
|
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
|
|
235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
|
|
245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
|
|
255, 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, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 677, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 294, 295, 296, 297, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 299, 300, 301,
|
|
302, 303, 304, 305, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 306, 307, 308, 309,
|
|
310, 311, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
312, 0, 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, 1, 2, 3, 4, 5, 6, 7,
|
|
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
|
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
|
|
38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
|
48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
|
|
58, 59, 60, 61, 62, 63, 64, 65, 66, 67,
|
|
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
|
|
78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
|
|
88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
|
|
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
|
|
118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
|
|
128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
|
|
138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
|
|
148, 149, 150, 151, 152, 153, 154, 155, 156, 157,
|
|
158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
|
|
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
|
178, 179, 180, 181, 182, 183, 184, 185, 186, 187,
|
|
188, 189, 190, 191, 192, 193, 194, 195, 196, 197,
|
|
198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
|
|
208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
|
|
228, 229, 230, 231, 232, 233, 234, 235, 236, 237,
|
|
238, 239, 240, 241, 242, 243, 244, 245, 246, 247,
|
|
248, 249, 250, 251, 252, 253, 254, 255, 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, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 294, 295, 296, 297, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 299, 300, 301, 302, 303, 304,
|
|
305, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 306, 307, 308, 309, 310, 311, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 312, 0, 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,
|
|
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, 0, 0, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, 0, 0, 422, 423, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 424, 425, 0, 0, 0, 529, 696, 0,
|
|
0, 0, 0, 0, 426, 427, 428, 429, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 430, 431, 432, 433, 434,
|
|
299, 0, 0, 0, 0, 304, 305, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 435, 436, 437, 438, 439,
|
|
440, 441, 442, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 325, 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, 0, 0, 61, 62, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, 0,
|
|
0, 422, 423, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
424, 425, 0, 0, 470, 0, 0, 0, 0, 0,
|
|
0, 0, 426, 427, 428, 429, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 430, 431, 432, 433, 434, 299, 0,
|
|
0, 0, 0, 304, 305, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 435, 436, 437, 438, 439, 440, 441,
|
|
442, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 325, 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, 0, 0, 61, 62, 63, 64, 65,
|
|
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
|
|
76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
|
|
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
|
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
|
|
106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
|
|
116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
|
|
126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
136, 137, 138, 139, 140, 141, 142, 143, 144, 145,
|
|
146, 147, 148, 149, 150, 151, 152, 153, 154, 155,
|
|
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
|
166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
|
|
176, 177, 178, 179, 180, 181, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, 192, 193, 194, 195,
|
|
196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
|
|
206, 207, 208, 209, 210, 211, 212, 213, 214, 215,
|
|
216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
|
|
226, 227, 228, 229, 230, 231, 232, 233, 234, 235,
|
|
236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
|
|
246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
|
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, 0, 0, 422,
|
|
423, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 424, 425,
|
|
0, 0, 0, 529, 0, 0, 0, 0, 0, 0,
|
|
426, 427, 428, 429, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 430, 431, 432, 433, 434, 299, 0, 0, 0,
|
|
0, 304, 305, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 435, 436, 437, 438, 439, 440, 441, 442, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 325, 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, 0, 0, 61, 62, 63, 64, 65, 66, 67,
|
|
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
|
|
78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
|
|
88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
|
|
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
|
|
118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
|
|
128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
|
|
138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
|
|
148, 149, 150, 151, 152, 153, 154, 155, 156, 157,
|
|
158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
|
|
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
|
178, 179, 180, 181, 182, 183, 184, 185, 186, 187,
|
|
188, 189, 190, 191, 192, 193, 194, 195, 196, 197,
|
|
198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
|
|
208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
|
|
228, 229, 230, 231, 232, 233, 234, 235, 236, 237,
|
|
238, 239, 240, 241, 242, 243, 244, 245, 246, 247,
|
|
248, 249, 250, 251, 252, 253, 254, 255, 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, 0, 0, 422, 423, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 424, 425, 0, 0,
|
|
585, 0, 0, 0, 0, 0, 0, 0, 426, 427,
|
|
428, 429, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 430,
|
|
431, 432, 433, 434, 299, 0, 0, 0, 0, 304,
|
|
305, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 435,
|
|
436, 437, 438, 439, 440, 441, 442, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 325, 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, 0,
|
|
0, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
|
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
|
|
110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
|
|
120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
|
|
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
|
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
|
|
170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
|
|
180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
|
|
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
|
|
210, 211, 212, 213, 214, 215, 216, 217, 218, 219,
|
|
220, 221, 222, 223, 224, 225, 226, 227, 228, 229,
|
|
230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
|
240, 241, 242, 243, 244, 245, 246, 247, 248, 249,
|
|
250, 251, 252, 253, 254, 255, 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, 0, 0, 422, 423, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 424, 425, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 597, 426, 427, 428, 429,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 430, 431, 432,
|
|
433, 434, 299, 0, 0, 0, 0, 304, 305, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 435, 436, 437,
|
|
438, 439, 440, 441, 442, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 325,
|
|
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, 0, 0, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, 0, 0, 422, 423, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 424, 425, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 426, 427, 428, 429, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 430, 431, 432, 433, 434,
|
|
299, 0, 0, 0, 0, 304, 305, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 435, 436, 437, 438, 439,
|
|
440, 441, 442, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 325, 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, 0, 0, 61, 62, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, 453,
|
|
0, 422, 423, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 471, 0, 0, 0, 0, 0, 0,
|
|
424, 425, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
537, 538, 426, 427, 428, 429, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 430, 431, 432, 433, 434, 299, 0,
|
|
0, 0, 550, 304, 547, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 471, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 435, 436, 437, 438, 439, 440, 441,
|
|
442, 0, 471, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 325, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 634,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 640, 641, 642, 471, 471, 471, 471, 471,
|
|
471, 471, 471, 471, 471, 471, 471, 471, 471, 471,
|
|
471, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
471
|
|
};
|
|
|
|
static const yytype_int16 yycheck[] =
|
|
{
|
|
0, 324, 0, 317, 0, 319, 319, 319, 464, 0,
|
|
319, 319, 326, 336, 327, 327, 317, 326, 326, 317,
|
|
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, 533, 327, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, 357, 349, 416, 425, 589, 527, 515, 529, 405,
|
|
321, 532, 462, 386, 353, 299, 300, 304, 665, 392,
|
|
295, 296, 319, 297, 298, 318, 382, 361, 327, 326,
|
|
364, 378, 366, 367, 324, 374, 370, 327, 451, 349,
|
|
413, 414, 353, 317, 324, 319, 693, 357, 349, 323,
|
|
397, 335, 336, 340, 353, 365, 357, 365, 368, 365,
|
|
354, 318, 301, 302, 365, 359, 360, 324, 378, 465,
|
|
320, 353, 382, 704, 324, 335, 497, 378, 499, 324,
|
|
711, 382, 327, 321, 318, 593, 324, 397, 484, 327,
|
|
324, 722, 321, 318, 318, 318, 397, 318, 408, 324,
|
|
324, 324, 623, 324, 460, 318, 322, 408, 324, 559,
|
|
324, 324, 353, 327, 527, 462, 529, 464, 329, 532,
|
|
331, 542, 321, 306, 307, 308, 309, 310, 311, 312,
|
|
313, 314, 315, 546, 571, 572, 573, 574, 324, 324,
|
|
325, 327, 726, 326, 324, 324, 353, 327, 327, 353,
|
|
460, 319, 462, 327, 464, 676, 664, 324, 325, 460,
|
|
326, 462, 353, 464, 342, 343, 344, 332, 333, 334,
|
|
567, 568, 575, 576, 595, 569, 570, 627, 599, 318,
|
|
317, 554, 353, 319, 353, 339, 533, 338, 337, 303,
|
|
305, 320, 319, 317, 322, 716, 327, 327, 317, 317,
|
|
317, 614, 615, 325, 327, 515, 327, 317, 317, 353,
|
|
623, 353, 559, 318, 515, 353, 320, 320, 324, 317,
|
|
361, 320, 322, 533, 732, 318, 317, 353, 318, 321,
|
|
326, 318, 533, 327, 577, 321, 321, 578, 659, 327,
|
|
365, 322, 579, 581, 665, 580, 582, 682, 382, 559,
|
|
382, 298, 467, 553, 637, 667, 710, 722, 559, 723,
|
|
667, 525, 378, 676, 376, 693, 525, 525, 365, 684,
|
|
-1, -1, 693, -1, -1, -1, -1, -1, -1, 589,
|
|
627, -1, -1, 593, 705, 698, 682, -1, 589, -1,
|
|
-1, -1, 593, -1, -1, -1, -1, -1, -1, -1,
|
|
721, -1, -1, 716, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 627, 665, -1,
|
|
-1, -1, -1, -1, -1, -1, 627, -1, -1, -1,
|
|
-1, -1, 688, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 693, -1, -1, -1,
|
|
-1, -1, -1, -1, 664, 665, -1, 667, -1, -1,
|
|
-1, -1, -1, 664, 665, -1, 667, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 688, -1,
|
|
-1, -1, -1, 693, -1, -1, -1, 688, -1, -1,
|
|
-1, -1, 693, -1, 704, -1, -1, -1, -1, -1,
|
|
-1, 711, -1, 704, -1, -1, -1, -1, -1, -1,
|
|
711, -1, 722, -1, -1, -1, 726, -1, -1, -1,
|
|
-1, 722, 732, -1, -1, 726, -1, -1, -1, 0,
|
|
-1, 732, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
|
|
111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
|
|
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
|
|
131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
|
|
141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
|
|
151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
|
|
161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
|
171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
|
|
181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
|
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
|
|
201, 202, 203, 204, 205, 206, 207, 208, 209, 210,
|
|
211, 212, 213, 214, 215, 216, 217, 218, 219, 220,
|
|
221, 222, 223, 224, 225, 226, 227, 228, 229, 230,
|
|
231, 232, 233, 234, 235, 236, 237, 238, 239, 240,
|
|
241, 242, 243, 244, 245, 246, 247, 248, 249, 250,
|
|
251, 252, 253, 254, 255, 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, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 327, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
341, 342, 343, 344, 345, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 354, 355, 356, 357, 358, 359, 360,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 373, 374, 375, 376, 377, 378, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 387, -1, 389, 390,
|
|
391, 392, 393, 394, 395, 396, 397, 398, 399, 400,
|
|
401, 402, 403, 404, 405, 406, 407, 408, 409, 410,
|
|
411, 412, 413, 414, 415, 416, 417, 418, 419, 3,
|
|
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
|
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
|
|
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
|
|
44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
|
|
54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, -1, -1, 297, 298, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 316, 317, -1, 319, -1, 321, 322, -1,
|
|
-1, -1, -1, 327, 328, 329, 330, 331, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 341, 342, 343,
|
|
344, 345, -1, -1, -1, 349, 350, 351, 352, 353,
|
|
354, 355, 356, 357, 358, 359, 360, 361, 362, 363,
|
|
364, -1, 366, 367, 368, 369, 370, 371, 372, 373,
|
|
374, 375, 376, 377, 378, 379, 380, 381, 382, 383,
|
|
384, 385, 386, 387, 388, 389, 390, 391, 392, 393,
|
|
394, 395, 396, 397, 398, 399, 400, 401, 402, 403,
|
|
404, 405, 406, 407, 408, 409, 410, 411, 412, 413,
|
|
414, 415, 416, 417, 418, 419, 3, 4, 5, 6,
|
|
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
|
27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
|
|
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
|
47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
|
|
57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
|
|
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
|
|
77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
|
|
87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
|
|
97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
|
|
107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
|
|
117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
|
|
127, 128, 129, 130, 131, 132, 133, 134, 135, 136,
|
|
137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
|
|
147, 148, 149, 150, 151, 152, 153, 154, 155, 156,
|
|
157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
|
|
167, 168, 169, 170, 171, 172, 173, 174, 175, 176,
|
|
177, 178, 179, 180, 181, 182, 183, 184, 185, 186,
|
|
187, 188, 189, 190, 191, 192, 193, 194, 195, 196,
|
|
197, 198, 199, 200, 201, 202, 203, 204, 205, 206,
|
|
207, 208, 209, 210, 211, 212, 213, 214, 215, 216,
|
|
217, 218, 219, 220, 221, 222, 223, 224, 225, 226,
|
|
227, 228, 229, 230, 231, 232, 233, 234, 235, 236,
|
|
237, 238, 239, 240, 241, 242, 243, 244, 245, 246,
|
|
247, 248, 249, 250, 251, 252, 253, 254, 255, 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, -1, -1,
|
|
297, 298, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 316,
|
|
317, -1, 319, -1, 321, 322, -1, -1, -1, -1,
|
|
327, 328, 329, 330, 331, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 341, 342, 343, 344, 345, -1,
|
|
-1, -1, 349, 350, 351, 352, 353, 354, 355, 356,
|
|
357, 358, 359, 360, 361, 362, 363, 364, -1, 366,
|
|
367, 368, 369, 370, 371, 372, 373, 374, 375, 376,
|
|
377, 378, 379, 380, 381, 382, 383, 384, 385, 386,
|
|
387, 388, 389, 390, 391, 392, 393, 394, 395, 396,
|
|
397, 398, 399, 400, 401, 402, 403, 404, 405, 406,
|
|
407, 408, 409, 410, 411, 412, 413, 414, 415, 416,
|
|
417, 418, 419, 3, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
|
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
|
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
|
|
40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
|
|
50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
|
|
60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
|
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
|
|
110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
|
|
120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
|
|
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
|
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
|
|
170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
|
|
180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
|
|
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
|
|
210, 211, 212, 213, 214, 215, 216, 217, 218, 219,
|
|
220, 221, 222, 223, 224, 225, 226, 227, 228, 229,
|
|
230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
|
240, 241, 242, 243, 244, 245, 246, 247, 248, 249,
|
|
250, 251, 252, 253, 254, 255, 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, -1, -1, 297, 298, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 316, 317, -1, 319,
|
|
-1, 321, -1, -1, -1, -1, -1, 327, 328, 329,
|
|
330, 331, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 341, 342, 343, 344, 345, -1, -1, -1, 349,
|
|
350, 351, 352, 353, 354, 355, 356, 357, 358, 359,
|
|
360, 361, 362, 363, 364, -1, 366, 367, 368, 369,
|
|
370, 371, 372, 373, 374, 375, 376, 377, 378, 379,
|
|
380, 381, 382, 383, 384, 385, 386, 387, 388, 389,
|
|
390, 391, 392, 393, 394, 395, 396, 397, 398, 399,
|
|
400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
|
|
410, 411, 412, 413, 414, 415, 416, 417, 418, 419,
|
|
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
|
|
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
|
|
23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
|
|
33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
|
43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
|
|
53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
|
|
63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
|
|
73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
|
83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
|
|
93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
|
|
103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
|
|
113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
|
|
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
|
|
133, 134, 135, 136, 137, 138, 139, 140, 141, 142,
|
|
143, 144, 145, 146, 147, 148, 149, 150, 151, 152,
|
|
153, 154, 155, 156, 157, 158, 159, 160, 161, 162,
|
|
163, 164, 165, 166, 167, 168, 169, 170, 171, 172,
|
|
173, 174, 175, 176, 177, 178, 179, 180, 181, 182,
|
|
183, 184, 185, 186, 187, 188, 189, 190, 191, 192,
|
|
193, 194, 195, 196, 197, 198, 199, 200, 201, 202,
|
|
203, 204, 205, 206, 207, 208, 209, 210, 211, 212,
|
|
213, 214, 215, 216, 217, 218, 219, 220, 221, 222,
|
|
223, 224, 225, 226, 227, 228, 229, 230, 231, 232,
|
|
233, 234, 235, 236, 237, 238, 239, 240, 241, 242,
|
|
243, 244, 245, 246, 247, 248, 249, 250, 251, 252,
|
|
253, 254, 255, 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, -1, -1, 297, 298, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 316, 317, -1, 319, -1, 321, -1,
|
|
-1, -1, -1, -1, 327, 328, 329, 330, 331, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 341, 342,
|
|
343, 344, 345, -1, -1, -1, 349, 350, 351, 352,
|
|
353, 354, 355, 356, 357, 358, 359, 360, 361, 362,
|
|
363, 364, -1, 366, 367, 368, 369, 370, 371, 372,
|
|
373, 374, 375, 376, 377, 378, 379, 380, 381, 382,
|
|
383, 384, 385, 386, 387, 388, 389, 390, 391, 392,
|
|
393, 394, 395, 396, 397, 398, 399, 400, 401, 402,
|
|
403, 404, 405, 406, 407, 408, 409, 410, 411, 412,
|
|
413, 414, 415, 416, 417, 418, 419, 3, 4, 5,
|
|
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
|
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
|
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
|
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
|
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
|
|
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
|
|
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
|
|
76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
|
|
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
|
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
|
|
106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
|
|
116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
|
|
126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
136, 137, 138, 139, 140, 141, 142, 143, 144, 145,
|
|
146, 147, 148, 149, 150, 151, 152, 153, 154, 155,
|
|
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
|
166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
|
|
176, 177, 178, 179, 180, 181, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, 192, 193, 194, 195,
|
|
196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
|
|
206, 207, 208, 209, 210, 211, 212, 213, 214, 215,
|
|
216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
|
|
226, 227, 228, 229, 230, 231, 232, 233, 234, 235,
|
|
236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
|
|
246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
|
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, -1,
|
|
-1, 297, 298, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
316, 317, -1, 319, -1, -1, -1, -1, -1, -1,
|
|
-1, 327, 328, 329, 330, 331, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 341, 342, 343, 344, 345,
|
|
-1, -1, -1, 349, 350, 351, 352, 353, 354, 355,
|
|
356, 357, 358, 359, 360, 361, 362, 363, 364, -1,
|
|
366, 367, 368, 369, 370, 371, 372, 373, 374, 375,
|
|
376, 377, 378, 379, 380, 381, 382, 383, 384, 385,
|
|
386, 387, 388, 389, 390, 391, 392, 393, 394, 395,
|
|
396, 397, 398, 399, 400, 401, 402, 403, 404, 405,
|
|
406, 407, 408, 409, 410, 411, 412, 413, 414, 415,
|
|
416, 417, 418, 419, 3, 4, 5, 6, 7, 8,
|
|
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
|
|
39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
|
|
49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
|
|
59, 60, 61, 62, 63, 64, 65, 66, 67, 68,
|
|
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
|
|
79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
|
|
99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
|
|
109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
|
|
119, 120, 121, 122, 123, 124, 125, 126, 127, 128,
|
|
129, 130, 131, 132, 133, 134, 135, 136, 137, 138,
|
|
139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
|
|
149, 150, 151, 152, 153, 154, 155, 156, 157, 158,
|
|
159, 160, 161, 162, 163, 164, 165, 166, 167, 168,
|
|
169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
|
|
179, 180, 181, 182, 183, 184, 185, 186, 187, 188,
|
|
189, 190, 191, 192, 193, 194, 195, 196, 197, 198,
|
|
199, 200, 201, 202, 203, 204, 205, 206, 207, 208,
|
|
209, 210, 211, 212, 213, 214, 215, 216, 217, 218,
|
|
219, 220, 221, 222, 223, 224, 225, 226, 227, 228,
|
|
229, 230, 231, 232, 233, 234, 235, 236, 237, 238,
|
|
239, 240, 241, 242, 243, 244, 245, 246, 247, 248,
|
|
249, 250, 251, 252, 253, 254, 255, 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, -1, -1, 297, 298,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 316, 317, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 327, 328,
|
|
329, 330, 331, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 341, 342, 343, 344, 345, -1, -1, -1,
|
|
349, 350, 351, 352, 353, 354, 355, 356, 357, 358,
|
|
359, 360, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 373, 374, 375, 376, 377, 378,
|
|
379, 380, 381, 382, 383, 384, 385, 386, 387, -1,
|
|
389, 390, 391, 392, 393, 394, 395, 396, 397, 398,
|
|
399, 400, 401, 402, 403, 404, 405, 406, 407, 408,
|
|
409, 410, 411, 412, 413, 414, 415, 416, 417, 418,
|
|
419, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
|
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, -1, -1, 297, 298, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 316, 317, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 328, 329, 330, 331,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 341,
|
|
342, 343, 344, -1, -1, -1, -1, 349, 350, 351,
|
|
352, 353, 354, 355, 356, 357, 358, 359, 360, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 373, 374, 375, 376, 377, 378, 379, 380, 381,
|
|
382, 383, 384, 385, 386, 387, -1, 389, 390, 391,
|
|
392, 393, 394, 395, 396, 397, 398, 399, 400, 401,
|
|
402, 403, 404, 405, 406, 407, 408, 409, 410, 411,
|
|
412, 413, 414, 415, 416, 417, 418, 419, 3, 4,
|
|
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
|
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
|
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
|
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
|
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
|
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
|
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
|
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
|
|
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
|
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
|
|
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
|
|
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
|
|
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
|
|
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
|
|
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
|
|
185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
|
|
195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
|
|
205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
|
|
215, 216, 217, 218, 219, 220, 221, 222, 223, 224,
|
|
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
|
|
235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
|
|
245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
|
|
255, 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,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 327, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 341, 342, 343, 344,
|
|
345, -1, -1, -1, -1, -1, -1, -1, -1, 354,
|
|
355, 356, 357, 358, 359, 360, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 373, 374,
|
|
375, 376, 377, 378, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 387, -1, 389, 390, 391, 392, 393, 394,
|
|
395, 396, 397, 398, 399, 400, 401, 402, 403, 404,
|
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414,
|
|
415, 416, 417, 418, 419, 3, 4, 5, 6, 7,
|
|
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
|
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
|
|
38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
|
48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
|
|
58, 59, 60, 61, 62, 63, 64, 65, 66, 67,
|
|
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
|
|
78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
|
|
88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
|
|
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
|
|
118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
|
|
128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
|
|
138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
|
|
148, 149, 150, 151, 152, 153, 154, 155, 156, 157,
|
|
158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
|
|
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
|
178, 179, 180, 181, 182, 183, 184, 185, 186, 187,
|
|
188, 189, 190, 191, 192, 193, 194, 195, 196, 197,
|
|
198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
|
|
208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
|
|
228, 229, 230, 231, 232, 233, 234, 235, 236, 237,
|
|
238, 239, 240, 241, 242, 243, 244, 245, 246, 247,
|
|
248, 249, 250, 251, 252, 253, 254, 255, 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, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 327,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 341, 342, 343, 344, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 353, 354, 355, 356, 357,
|
|
358, 359, 360, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 373, 374, 375, 376, 377,
|
|
378, -1, -1, -1, -1, -1, -1, -1, -1, 387,
|
|
-1, 389, 390, 391, 392, 393, 394, 395, 396, 397,
|
|
398, 399, 400, 401, 402, 403, 404, 405, 406, 407,
|
|
408, 409, 410, 411, 412, 413, 414, 415, 416, 417,
|
|
418, 419, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
|
|
111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
|
|
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
|
|
131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
|
|
141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
|
|
151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
|
|
161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
|
171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
|
|
181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
|
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
|
|
201, 202, 203, 204, 205, 206, 207, 208, 209, 210,
|
|
211, 212, 213, 214, 215, 216, 217, 218, 219, 220,
|
|
221, 222, 223, 224, 225, 226, 227, 228, 229, 230,
|
|
231, 232, 233, 234, 235, 236, 237, 238, 239, 240,
|
|
241, 242, 243, 244, 245, 246, 247, 248, 249, 250,
|
|
251, 252, 253, 254, 255, 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, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 322, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
341, 342, 343, 344, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 354, 355, 356, 357, 358, 359, 360,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 373, 374, 375, 376, 377, 378, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 387, -1, 389, 390,
|
|
391, 392, 393, 394, 395, 396, 397, 398, 399, 400,
|
|
401, 402, 403, 404, 405, 406, 407, 408, 409, 410,
|
|
411, 412, 413, 414, 415, 416, 417, 418, 419, 3,
|
|
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
|
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
|
|
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
|
|
44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
|
|
54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 322, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 341, 342, 343,
|
|
344, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
354, 355, 356, 357, 358, 359, 360, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 373,
|
|
374, 375, 376, 377, 378, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 387, -1, 389, 390, 391, 392, 393,
|
|
394, 395, 396, 397, 398, 399, 400, 401, 402, 403,
|
|
404, 405, 406, 407, 408, 409, 410, 411, 412, 413,
|
|
414, 415, 416, 417, 418, 419, 3, 4, 5, 6,
|
|
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
|
27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
|
|
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
|
47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
|
|
57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
|
|
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
|
|
77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
|
|
87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
|
|
97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
|
|
107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
|
|
117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
|
|
127, 128, 129, 130, 131, 132, 133, 134, 135, 136,
|
|
137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
|
|
147, 148, 149, 150, 151, 152, 153, 154, 155, 156,
|
|
157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
|
|
167, 168, 169, 170, 171, 172, 173, 174, 175, 176,
|
|
177, 178, 179, 180, 181, 182, 183, 184, 185, 186,
|
|
187, 188, 189, 190, 191, 192, 193, 194, 195, 196,
|
|
197, 198, 199, 200, 201, 202, 203, 204, 205, 206,
|
|
207, 208, 209, 210, 211, 212, 213, 214, 215, 216,
|
|
217, 218, 219, 220, 221, 222, 223, 224, 225, 226,
|
|
227, 228, 229, 230, 231, 232, 233, 234, 235, 236,
|
|
237, 238, 239, 240, 241, 242, 243, 244, 245, 246,
|
|
247, 248, 249, 250, 251, 252, 253, 254, 255, 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, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 322, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 341, 342, 343, 344, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 354, 355, 356,
|
|
357, 358, 359, 360, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 373, 374, 375, 376,
|
|
377, 378, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
387, -1, 389, 390, 391, 392, 393, 394, 395, 396,
|
|
397, 398, 399, 400, 401, 402, 403, 404, 405, 406,
|
|
407, 408, 409, 410, 411, 412, 413, 414, 415, 416,
|
|
417, 418, 419, 3, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
|
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
|
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
|
|
40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
|
|
50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
|
|
60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
|
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
|
|
110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
|
|
120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
|
|
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
|
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
|
|
170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
|
|
180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
|
|
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
|
|
210, 211, 212, 213, 214, 215, 216, 217, 218, 219,
|
|
220, 221, 222, 223, 224, 225, 226, 227, 228, 229,
|
|
230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
|
240, 241, 242, 243, 244, 245, 246, 247, 248, 249,
|
|
250, 251, 252, 253, 254, 255, 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, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 341, 342, 343, 344, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 354, 355, 356, 357, 358, 359,
|
|
360, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 373, 374, 375, 376, 377, 378, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 387, -1, 389,
|
|
390, 391, 392, 393, 394, 395, 396, 397, 398, 399,
|
|
400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
|
|
410, 411, 412, 413, 414, 415, 416, 417, 418, 419,
|
|
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, -1, -1, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, -1, -1, 297, 298, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 316, 317, -1, -1, -1, 321, 322, -1,
|
|
-1, -1, -1, -1, 328, 329, 330, 331, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 349, 350, 351, 352, 353,
|
|
354, -1, -1, -1, -1, 359, 360, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 379, 380, 381, 382, 383,
|
|
384, 385, 386, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 401, 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, -1, -1, 63, 64, 65,
|
|
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
|
|
76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
|
|
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
|
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
|
|
106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
|
|
116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
|
|
126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
136, 137, 138, 139, 140, 141, 142, 143, 144, 145,
|
|
146, 147, 148, 149, 150, 151, 152, 153, 154, 155,
|
|
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
|
166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
|
|
176, 177, 178, 179, 180, 181, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, 192, 193, 194, 195,
|
|
196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
|
|
206, 207, 208, 209, 210, 211, 212, 213, 214, 215,
|
|
216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
|
|
226, 227, 228, 229, 230, 231, 232, 233, 234, 235,
|
|
236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
|
|
246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
|
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, -1,
|
|
-1, 297, 298, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
316, 317, -1, -1, 320, -1, -1, -1, -1, -1,
|
|
-1, -1, 328, 329, 330, 331, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 349, 350, 351, 352, 353, 354, -1,
|
|
-1, -1, -1, 359, 360, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 379, 380, 381, 382, 383, 384, 385,
|
|
386, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 401, 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, -1, -1, 63, 64, 65, 66, 67,
|
|
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
|
|
78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
|
|
88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
|
|
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
|
|
118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
|
|
128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
|
|
138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
|
|
148, 149, 150, 151, 152, 153, 154, 155, 156, 157,
|
|
158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
|
|
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
|
178, 179, 180, 181, 182, 183, 184, 185, 186, 187,
|
|
188, 189, 190, 191, 192, 193, 194, 195, 196, 197,
|
|
198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
|
|
208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
|
|
228, 229, 230, 231, 232, 233, 234, 235, 236, 237,
|
|
238, 239, 240, 241, 242, 243, 244, 245, 246, 247,
|
|
248, 249, 250, 251, 252, 253, 254, 255, 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, -1, -1, 297,
|
|
298, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 316, 317,
|
|
-1, -1, -1, 321, -1, -1, -1, -1, -1, -1,
|
|
328, 329, 330, 331, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 349, 350, 351, 352, 353, 354, -1, -1, -1,
|
|
-1, 359, 360, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 379, 380, 381, 382, 383, 384, 385, 386, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 401, 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, -1, -1, 63, 64, 65, 66, 67, 68, 69,
|
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
|
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
|
|
110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
|
|
120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
|
|
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
|
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
|
|
170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
|
|
180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
|
|
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
|
|
210, 211, 212, 213, 214, 215, 216, 217, 218, 219,
|
|
220, 221, 222, 223, 224, 225, 226, 227, 228, 229,
|
|
230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
|
240, 241, 242, 243, 244, 245, 246, 247, 248, 249,
|
|
250, 251, 252, 253, 254, 255, 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, -1, -1, 297, 298, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 316, 317, -1, -1,
|
|
320, -1, -1, -1, -1, -1, -1, -1, 328, 329,
|
|
330, 331, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 349,
|
|
350, 351, 352, 353, 354, -1, -1, -1, -1, 359,
|
|
360, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 379,
|
|
380, 381, 382, 383, 384, 385, 386, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 401, 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, -1,
|
|
-1, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, -1, -1, 297, 298, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 316, 317, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 327, 328, 329, 330, 331,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 349, 350, 351,
|
|
352, 353, 354, -1, -1, -1, -1, 359, 360, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 379, 380, 381,
|
|
382, 383, 384, 385, 386, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 401,
|
|
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, -1, -1, 63,
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
|
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
|
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
|
|
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
|
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
|
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
|
|
134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
|
|
154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
|
164, 165, 166, 167, 168, 169, 170, 171, 172, 173,
|
|
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
|
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
|
|
214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
|
|
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
|
|
254, 255, 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, -1, -1, 297, 298, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 316, 317, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 328, 329, 330, 331, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 349, 350, 351, 352, 353,
|
|
354, -1, -1, -1, -1, 359, 360, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 379, 380, 381, 382, 383,
|
|
384, 385, 386, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 401, 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, -1, -1, 63, 64, 65,
|
|
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
|
|
76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
|
|
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
|
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
|
|
106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
|
|
116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
|
|
126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
136, 137, 138, 139, 140, 141, 142, 143, 144, 145,
|
|
146, 147, 148, 149, 150, 151, 152, 153, 154, 155,
|
|
156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
|
|
166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
|
|
176, 177, 178, 179, 180, 181, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, 192, 193, 194, 195,
|
|
196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
|
|
206, 207, 208, 209, 210, 211, 212, 213, 214, 215,
|
|
216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
|
|
226, 227, 228, 229, 230, 231, 232, 233, 234, 235,
|
|
236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
|
|
246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
|
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, 391,
|
|
-1, 297, 298, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 405, -1, -1, -1, -1, -1, -1,
|
|
316, 317, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
422, 423, 328, 329, 330, 331, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 349, 350, 351, 352, 353, 354, -1,
|
|
-1, -1, 454, 359, 360, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 465, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 379, 380, 381, 382, 383, 384, 385,
|
|
386, -1, 484, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 401, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 551,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 564, 565, 566, 567, 568, 569, 570, 571,
|
|
572, 573, 574, 575, 576, 577, 578, 579, 580, 581,
|
|
582, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
682
|
|
};
|
|
|
|
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
symbol of state STATE-NUM. */
|
|
static const yytype_uint16 yystos[] =
|
|
{
|
|
0, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
|
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
|
|
142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
|
|
152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 165, 166, 167, 168, 169, 170, 171,
|
|
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
|
182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
|
|
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
|
|
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
|
|
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
|
|
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
|
|
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
|
|
252, 253, 254, 255, 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, 327, 341, 342, 343, 344, 345, 354,
|
|
355, 356, 357, 358, 359, 360, 373, 374, 375, 376,
|
|
377, 378, 387, 389, 390, 391, 392, 393, 394, 395,
|
|
396, 397, 398, 399, 400, 401, 402, 403, 404, 405,
|
|
406, 407, 408, 409, 410, 411, 412, 413, 414, 415,
|
|
416, 417, 418, 419, 451, 452, 455, 456, 457, 458,
|
|
462, 463, 464, 465, 466, 467, 470, 471, 472, 473,
|
|
474, 476, 481, 482, 483, 524, 525, 526, 482, 321,
|
|
353, 317, 317, 327, 353, 327, 527, 318, 324, 459,
|
|
460, 461, 471, 476, 324, 327, 353, 327, 353, 472,
|
|
476, 335, 478, 479, 0, 525, 476, 485, 321, 353,
|
|
374, 468, 469, 353, 475, 319, 327, 477, 321, 503,
|
|
460, 459, 461, 353, 353, 317, 326, 477, 321, 324,
|
|
327, 454, 297, 298, 316, 317, 328, 329, 330, 331,
|
|
349, 350, 351, 352, 353, 379, 380, 381, 382, 383,
|
|
384, 385, 386, 421, 422, 423, 425, 426, 427, 428,
|
|
429, 430, 431, 432, 433, 474, 476, 480, 477, 327,
|
|
471, 476, 486, 487, 484, 326, 318, 324, 318, 324,
|
|
320, 432, 434, 435, 436, 437, 438, 439, 440, 441,
|
|
442, 443, 444, 445, 319, 327, 319, 321, 322, 327,
|
|
361, 362, 363, 364, 366, 367, 368, 369, 370, 371,
|
|
372, 388, 432, 445, 447, 449, 451, 455, 474, 476,
|
|
492, 493, 494, 495, 496, 504, 505, 506, 507, 510,
|
|
511, 514, 515, 516, 523, 528, 477, 326, 477, 321,
|
|
447, 490, 326, 453, 353, 324, 327, 432, 432, 449,
|
|
297, 298, 319, 323, 318, 318, 324, 360, 447, 317,
|
|
432, 324, 336, 476, 353, 488, 489, 322, 487, 486,
|
|
445, 450, 469, 353, 332, 333, 334, 329, 331, 295,
|
|
296, 299, 300, 335, 336, 301, 302, 339, 338, 337,
|
|
303, 305, 304, 340, 320, 320, 445, 319, 322, 497,
|
|
317, 327, 327, 518, 317, 317, 327, 327, 449, 317,
|
|
449, 325, 327, 306, 307, 308, 309, 310, 311, 312,
|
|
313, 314, 315, 326, 448, 324, 327, 322, 493, 507,
|
|
511, 516, 490, 326, 490, 491, 490, 486, 353, 318,
|
|
424, 449, 353, 447, 432, 488, 477, 324, 327, 322,
|
|
432, 432, 432, 434, 434, 435, 435, 436, 436, 436,
|
|
436, 437, 437, 438, 439, 440, 441, 442, 443, 446,
|
|
320, 353, 529, 530, 504, 517, 493, 519, 449, 327,
|
|
449, 325, 447, 447, 490, 322, 324, 322, 320, 327,
|
|
489, 449, 317, 320, 324, 498, 449, 464, 471, 509,
|
|
361, 492, 505, 520, 318, 318, 322, 490, 325, 450,
|
|
320, 530, 322, 353, 318, 317, 509, 521, 522, 500,
|
|
501, 502, 508, 512, 447, 318, 326, 494, 499, 503,
|
|
449, 327, 318, 365, 496, 494, 321, 490, 318, 449,
|
|
499, 500, 504, 513, 327, 322
|
|
};
|
|
|
|
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
|
static const yytype_uint16 yyr1[] =
|
|
{
|
|
0, 420, 421, 422, 422, 422, 422, 422, 422, 422,
|
|
422, 422, 422, 422, 422, 422, 422, 422, 423, 423,
|
|
423, 423, 423, 423, 424, 425, 426, 427, 427, 428,
|
|
428, 429, 429, 430, 431, 431, 431, 432, 432, 432,
|
|
432, 433, 433, 433, 433, 434, 434, 434, 434, 435,
|
|
435, 435, 436, 436, 436, 437, 437, 437, 437, 437,
|
|
438, 438, 438, 439, 439, 440, 440, 441, 441, 442,
|
|
442, 443, 443, 444, 444, 445, 446, 445, 447, 447,
|
|
448, 448, 448, 448, 448, 448, 448, 448, 448, 448,
|
|
448, 449, 449, 450, 451, 451, 451, 451, 451, 451,
|
|
451, 451, 451, 453, 452, 454, 454, 455, 456, 456,
|
|
457, 457, 458, 459, 459, 460, 460, 460, 460, 461,
|
|
462, 462, 462, 462, 462, 463, 463, 463, 463, 463,
|
|
464, 464, 465, 466, 466, 466, 466, 466, 466, 466,
|
|
466, 467, 468, 468, 469, 469, 469, 470, 471, 471,
|
|
472, 472, 472, 472, 472, 472, 472, 473, 473, 473,
|
|
473, 473, 473, 473, 473, 473, 473, 473, 473, 473,
|
|
473, 473, 473, 473, 473, 473, 473, 473, 473, 473,
|
|
473, 473, 473, 473, 473, 473, 473, 473, 473, 473,
|
|
473, 473, 474, 475, 475, 476, 476, 477, 477, 477,
|
|
477, 478, 478, 479, 480, 480, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 481, 481,
|
|
481, 481, 481, 481, 481, 481, 481, 481, 482, 482,
|
|
482, 484, 483, 485, 483, 486, 486, 487, 487, 488,
|
|
488, 489, 489, 490, 490, 490, 491, 491, 492, 493,
|
|
493, 494, 494, 494, 494, 494, 494, 494, 494, 495,
|
|
496, 497, 498, 496, 499, 499, 501, 500, 502, 500,
|
|
503, 503, 504, 504, 505, 505, 506, 506, 507, 508,
|
|
508, 509, 509, 510, 510, 512, 511, 513, 513, 514,
|
|
514, 515, 515, 517, 516, 518, 516, 519, 516, 520,
|
|
520, 521, 521, 522, 522, 523, 523, 523, 523, 523,
|
|
524, 524, 525, 525, 525, 527, 526, 528, 529, 529,
|
|
530, 530
|
|
};
|
|
|
|
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
|
|
static const yytype_uint8 yyr2[] =
|
|
{
|
|
0, 2, 1, 1, 3, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 4,
|
|
1, 3, 2, 2, 1, 1, 1, 2, 2, 2,
|
|
1, 2, 3, 2, 1, 1, 1, 1, 2, 2,
|
|
2, 1, 1, 1, 1, 1, 3, 3, 3, 1,
|
|
3, 3, 1, 3, 3, 1, 3, 3, 3, 3,
|
|
1, 3, 3, 1, 3, 1, 3, 1, 3, 1,
|
|
3, 1, 3, 1, 3, 1, 0, 6, 1, 3,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 3, 1, 2, 2, 4, 2, 3, 4,
|
|
2, 3, 4, 0, 6, 2, 3, 2, 1, 1,
|
|
2, 3, 3, 2, 3, 2, 1, 2, 1, 1,
|
|
1, 3, 4, 6, 5, 1, 2, 3, 5, 4,
|
|
1, 2, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 4, 1, 3, 1, 3, 1, 1, 1, 2,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 4, 1, 1, 3, 2, 3, 2, 3, 3,
|
|
4, 1, 0, 3, 1, 3, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 0, 6, 0, 5, 1, 2, 3, 4, 1,
|
|
3, 1, 2, 1, 3, 4, 1, 3, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
|
|
2, 0, 0, 5, 1, 1, 0, 2, 0, 2,
|
|
2, 3, 1, 2, 1, 2, 1, 2, 5, 3,
|
|
1, 1, 4, 1, 2, 0, 8, 0, 1, 3,
|
|
2, 1, 2, 0, 6, 0, 8, 0, 7, 1,
|
|
1, 1, 0, 2, 3, 2, 2, 2, 3, 2,
|
|
1, 2, 1, 1, 1, 0, 3, 5, 1, 3,
|
|
1, 4
|
|
};
|
|
|
|
|
|
#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 (pParseContext, YY_("syntax error: cannot back up")); \
|
|
YYERROR; \
|
|
} \
|
|
while (0)
|
|
|
|
/* Error token number */
|
|
#define YYTERROR 1
|
|
#define YYERRCODE 256
|
|
|
|
|
|
|
|
/* Enable debugging if requested. */
|
|
#if YYDEBUG
|
|
|
|
# ifndef YYFPRINTF
|
|
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
|
|
# define YYFPRINTF fprintf
|
|
# endif
|
|
|
|
# define YYDPRINTF(Args) \
|
|
do { \
|
|
if (yydebug) \
|
|
YYFPRINTF Args; \
|
|
} while (0)
|
|
|
|
/* This macro is provided for backward compatibility. */
|
|
#ifndef YY_LOCATION_PRINT
|
|
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
|
|
#endif
|
|
|
|
|
|
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
|
|
do { \
|
|
if (yydebug) \
|
|
{ \
|
|
YYFPRINTF (stderr, "%s ", Title); \
|
|
yy_symbol_print (stderr, \
|
|
Type, Value, pParseContext); \
|
|
YYFPRINTF (stderr, "\n"); \
|
|
} \
|
|
} while (0)
|
|
|
|
|
|
/*----------------------------------------.
|
|
| Print this symbol's value on YYOUTPUT. |
|
|
`----------------------------------------*/
|
|
|
|
static void
|
|
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, glslang::TParseContext* pParseContext)
|
|
{
|
|
FILE *yyo = yyoutput;
|
|
YYUSE (yyo);
|
|
YYUSE (pParseContext);
|
|
if (!yyvaluep)
|
|
return;
|
|
# ifdef YYPRINT
|
|
if (yytype < YYNTOKENS)
|
|
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
|
|
# endif
|
|
YYUSE (yytype);
|
|
}
|
|
|
|
|
|
/*--------------------------------.
|
|
| Print this symbol on YYOUTPUT. |
|
|
`--------------------------------*/
|
|
|
|
static void
|
|
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, glslang::TParseContext* pParseContext)
|
|
{
|
|
YYFPRINTF (yyoutput, "%s %s (",
|
|
yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
|
|
|
|
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pParseContext);
|
|
YYFPRINTF (yyoutput, ")");
|
|
}
|
|
|
|
/*------------------------------------------------------------------.
|
|
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
|
|
| TOP (included). |
|
|
`------------------------------------------------------------------*/
|
|
|
|
static void
|
|
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
|
|
{
|
|
YYFPRINTF (stderr, "Stack now");
|
|
for (; yybottom <= yytop; yybottom++)
|
|
{
|
|
int yybot = *yybottom;
|
|
YYFPRINTF (stderr, " %d", yybot);
|
|
}
|
|
YYFPRINTF (stderr, "\n");
|
|
}
|
|
|
|
# define YY_STACK_PRINT(Bottom, Top) \
|
|
do { \
|
|
if (yydebug) \
|
|
yy_stack_print ((Bottom), (Top)); \
|
|
} while (0)
|
|
|
|
|
|
/*------------------------------------------------.
|
|
| Report that the YYRULE is going to be reduced. |
|
|
`------------------------------------------------*/
|
|
|
|
static void
|
|
yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule, glslang::TParseContext* pParseContext)
|
|
{
|
|
unsigned long int yylno = yyrline[yyrule];
|
|
int yynrhs = yyr2[yyrule];
|
|
int yyi;
|
|
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
|
|
yyrule - 1, yylno);
|
|
/* The symbols being reduced. */
|
|
for (yyi = 0; yyi < yynrhs; yyi++)
|
|
{
|
|
YYFPRINTF (stderr, " $%d = ", yyi + 1);
|
|
yy_symbol_print (stderr,
|
|
yystos[yyssp[yyi + 1 - yynrhs]],
|
|
&(yyvsp[(yyi + 1) - (yynrhs)])
|
|
, pParseContext);
|
|
YYFPRINTF (stderr, "\n");
|
|
}
|
|
}
|
|
|
|
# define YY_REDUCE_PRINT(Rule) \
|
|
do { \
|
|
if (yydebug) \
|
|
yy_reduce_print (yyssp, yyvsp, Rule, pParseContext); \
|
|
} while (0)
|
|
|
|
/* Nonzero means print parse trace. It is left uninitialized so that
|
|
multiple parsers can coexist. */
|
|
int yydebug;
|
|
#else /* !YYDEBUG */
|
|
# define YYDPRINTF(Args)
|
|
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
|
|
# define YY_STACK_PRINT(Bottom, Top)
|
|
# define YY_REDUCE_PRINT(Rule)
|
|
#endif /* !YYDEBUG */
|
|
|
|
|
|
/* YYINITDEPTH -- initial size of the parser's stacks. */
|
|
#ifndef YYINITDEPTH
|
|
# define YYINITDEPTH 200
|
|
#endif
|
|
|
|
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
|
|
if the built-in stack extension method is used).
|
|
|
|
Do not make this value too large; the results are undefined if
|
|
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
|
|
evaluated with infinite-precision integer arithmetic. */
|
|
|
|
#ifndef YYMAXDEPTH
|
|
# define YYMAXDEPTH 10000
|
|
#endif
|
|
|
|
|
|
#if YYERROR_VERBOSE
|
|
|
|
# ifndef yystrlen
|
|
# if defined __GLIBC__ && defined _STRING_H
|
|
# define yystrlen strlen
|
|
# else
|
|
/* Return the length of YYSTR. */
|
|
static YYSIZE_T
|
|
yystrlen (const char *yystr)
|
|
{
|
|
YYSIZE_T yylen;
|
|
for (yylen = 0; yystr[yylen]; yylen++)
|
|
continue;
|
|
return yylen;
|
|
}
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef yystpcpy
|
|
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
|
|
# define yystpcpy stpcpy
|
|
# else
|
|
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
|
|
YYDEST. */
|
|
static char *
|
|
yystpcpy (char *yydest, const char *yysrc)
|
|
{
|
|
char *yyd = yydest;
|
|
const char *yys = yysrc;
|
|
|
|
while ((*yyd++ = *yys++) != '\0')
|
|
continue;
|
|
|
|
return yyd - 1;
|
|
}
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef yytnamerr
|
|
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
|
|
quotes and backslashes, so that it's suitable for yyerror. The
|
|
heuristic is that double-quoting is unnecessary unless the string
|
|
contains an apostrophe, a comma, or backslash (other than
|
|
backslash-backslash). YYSTR is taken from yytname. If YYRES is
|
|
null, do not copy; instead, return the length of what the result
|
|
would have been. */
|
|
static YYSIZE_T
|
|
yytnamerr (char *yyres, const char *yystr)
|
|
{
|
|
if (*yystr == '"')
|
|
{
|
|
YYSIZE_T yyn = 0;
|
|
char const *yyp = yystr;
|
|
|
|
for (;;)
|
|
switch (*++yyp)
|
|
{
|
|
case '\'':
|
|
case ',':
|
|
goto do_not_strip_quotes;
|
|
|
|
case '\\':
|
|
if (*++yyp != '\\')
|
|
goto do_not_strip_quotes;
|
|
/* Fall through. */
|
|
default:
|
|
if (yyres)
|
|
yyres[yyn] = *yyp;
|
|
yyn++;
|
|
break;
|
|
|
|
case '"':
|
|
if (yyres)
|
|
yyres[yyn] = '\0';
|
|
return yyn;
|
|
}
|
|
do_not_strip_quotes: ;
|
|
}
|
|
|
|
if (! yyres)
|
|
return yystrlen (yystr);
|
|
|
|
return yystpcpy (yyres, yystr) - yyres;
|
|
}
|
|
# endif
|
|
|
|
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
|
|
about the unexpected token YYTOKEN for the state stack whose top is
|
|
YYSSP.
|
|
|
|
Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
|
|
not large enough to hold the message. In that case, also set
|
|
*YYMSG_ALLOC to the required number of bytes. Return 2 if the
|
|
required number of bytes is too large to store. */
|
|
static int
|
|
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
|
|
yytype_int16 *yyssp, int yytoken)
|
|
{
|
|
YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
|
|
YYSIZE_T yysize = yysize0;
|
|
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
|
|
/* Internationalized format string. */
|
|
const char *yyformat = YY_NULLPTR;
|
|
/* Arguments of yyformat. */
|
|
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
|
|
/* Number of reported tokens (one for the "unexpected", one per
|
|
"expected"). */
|
|
int yycount = 0;
|
|
|
|
/* There are many possibilities here to consider:
|
|
- If this state is a consistent state with a default action, then
|
|
the only way this function was invoked is if the default action
|
|
is an error action. In that case, don't check for expected
|
|
tokens because there are none.
|
|
- The only way there can be no lookahead present (in yychar) is if
|
|
this state is a consistent state with a default action. Thus,
|
|
detecting the absence of a lookahead is sufficient to determine
|
|
that there is no unexpected or expected token to report. In that
|
|
case, just report a simple "syntax error".
|
|
- Don't assume there isn't a lookahead just because this state is a
|
|
consistent state with a default action. There might have been a
|
|
previous inconsistent state, consistent state with a non-default
|
|
action, or user semantic action that manipulated yychar.
|
|
- Of course, the expected token list depends on states to have
|
|
correct lookahead information, and it depends on the parser not
|
|
to perform extra reductions after fetching a lookahead from the
|
|
scanner and before detecting a syntax error. Thus, state merging
|
|
(from LALR or IELR) and default reductions corrupt the expected
|
|
token list. However, the list is correct for canonical LR with
|
|
one exception: it will still contain any token that will not be
|
|
accepted due to an error action in a later state.
|
|
*/
|
|
if (yytoken != YYEMPTY)
|
|
{
|
|
int yyn = yypact[*yyssp];
|
|
yyarg[yycount++] = yytname[yytoken];
|
|
if (!yypact_value_is_default (yyn))
|
|
{
|
|
/* Start YYX at -YYN if negative to avoid negative indexes in
|
|
YYCHECK. In other words, skip the first -YYN actions for
|
|
this state because they are default actions. */
|
|
int yyxbegin = yyn < 0 ? -yyn : 0;
|
|
/* Stay within bounds of both yycheck and yytname. */
|
|
int yychecklim = YYLAST - yyn + 1;
|
|
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
|
|
int yyx;
|
|
|
|
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
|
|
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
|
|
&& !yytable_value_is_error (yytable[yyx + yyn]))
|
|
{
|
|
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
|
|
{
|
|
yycount = 1;
|
|
yysize = yysize0;
|
|
break;
|
|
}
|
|
yyarg[yycount++] = yytname[yyx];
|
|
{
|
|
YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
|
|
if (! (yysize <= yysize1
|
|
&& yysize1 <= YYSTACK_ALLOC_MAXIMUM))
|
|
return 2;
|
|
yysize = yysize1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
switch (yycount)
|
|
{
|
|
# define YYCASE_(N, S) \
|
|
case N: \
|
|
yyformat = S; \
|
|
break
|
|
YYCASE_(0, YY_("syntax error"));
|
|
YYCASE_(1, YY_("syntax error, unexpected %s"));
|
|
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
|
|
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
|
|
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
|
|
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
|
|
# undef YYCASE_
|
|
}
|
|
|
|
{
|
|
YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
|
|
if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
|
|
return 2;
|
|
yysize = yysize1;
|
|
}
|
|
|
|
if (*yymsg_alloc < yysize)
|
|
{
|
|
*yymsg_alloc = 2 * yysize;
|
|
if (! (yysize <= *yymsg_alloc
|
|
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
|
|
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
|
|
return 1;
|
|
}
|
|
|
|
/* Avoid sprintf, as that infringes on the user's name space.
|
|
Don't have undefined behavior even if the translation
|
|
produced a string with the wrong number of "%s"s. */
|
|
{
|
|
char *yyp = *yymsg;
|
|
int yyi = 0;
|
|
while ((*yyp = *yyformat) != '\0')
|
|
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
|
|
{
|
|
yyp += yytnamerr (yyp, yyarg[yyi++]);
|
|
yyformat += 2;
|
|
}
|
|
else
|
|
{
|
|
yyp++;
|
|
yyformat++;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
#endif /* YYERROR_VERBOSE */
|
|
|
|
/*-----------------------------------------------.
|
|
| Release the memory associated to this symbol. |
|
|
`-----------------------------------------------*/
|
|
|
|
static void
|
|
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, glslang::TParseContext* pParseContext)
|
|
{
|
|
YYUSE (yyvaluep);
|
|
YYUSE (pParseContext);
|
|
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 (glslang::TParseContext* pParseContext)
|
|
{
|
|
/* 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);
|
|
|
|
/* Number of syntax errors so far. */
|
|
int yynerrs;
|
|
|
|
int yystate;
|
|
/* Number of tokens to shift before error messages enabled. */
|
|
int yyerrstatus;
|
|
|
|
/* The stacks and their tools:
|
|
'yyss': related to states.
|
|
'yyvs': related to semantic values.
|
|
|
|
Refer to the stacks 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;
|
|
|
|
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;
|
|
|
|
#if YYERROR_VERBOSE
|
|
/* Buffer for error messages, and its allocated size. */
|
|
char yymsgbuf[128];
|
|
char *yymsg = yymsgbuf;
|
|
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
|
|
#endif
|
|
|
|
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
|
|
|
|
/* The number of symbols on the RHS of the reduced rule.
|
|
Keep to zero when no symbol should be popped. */
|
|
int yylen = 0;
|
|
|
|
yyssp = yyss = yyssa;
|
|
yyvsp = yyvs = yyvsa;
|
|
yystacksize = YYINITDEPTH;
|
|
|
|
YYDPRINTF ((stderr, "Starting parse\n"));
|
|
|
|
yystate = 0;
|
|
yyerrstatus = 0;
|
|
yynerrs = 0;
|
|
yychar = YYEMPTY; /* Cause a token to be read. */
|
|
goto yysetstate;
|
|
|
|
/*------------------------------------------------------------.
|
|
| yynewstate -- Push a new state, which is found in yystate. |
|
|
`------------------------------------------------------------*/
|
|
yynewstate:
|
|
/* In all cases, when you get here, the value and location stacks
|
|
have just been pushed. So pushing a state here evens the stacks. */
|
|
yyssp++;
|
|
|
|
yysetstate:
|
|
*yyssp = yystate;
|
|
|
|
if (yyss + yystacksize - 1 <= yyssp)
|
|
{
|
|
/* Get the current used size of the three stacks, in elements. */
|
|
YYSIZE_T yysize = yyssp - yyss + 1;
|
|
|
|
#ifdef yyoverflow
|
|
{
|
|
/* Give user a chance to reallocate the stack. Use copies of
|
|
these so that the &'s don't force the real ones into
|
|
memory. */
|
|
YYSTYPE *yyvs1 = yyvs;
|
|
yytype_int16 *yyss1 = yyss;
|
|
|
|
/* Each stack pointer address is followed by the size of the
|
|
data in use in that stack, in bytes. This used to be a
|
|
conditional around just the two extra args, but that might
|
|
be undefined if yyoverflow is a macro. */
|
|
yyoverflow (YY_("memory exhausted"),
|
|
&yyss1, yysize * sizeof (*yyssp),
|
|
&yyvs1, yysize * sizeof (*yyvsp),
|
|
&yystacksize);
|
|
|
|
yyss = yyss1;
|
|
yyvs = yyvs1;
|
|
}
|
|
#else /* no yyoverflow */
|
|
# ifndef YYSTACK_RELOCATE
|
|
goto yyexhaustedlab;
|
|
# else
|
|
/* Extend the stack our own way. */
|
|
if (YYMAXDEPTH <= yystacksize)
|
|
goto yyexhaustedlab;
|
|
yystacksize *= 2;
|
|
if (YYMAXDEPTH < yystacksize)
|
|
yystacksize = YYMAXDEPTH;
|
|
|
|
{
|
|
yytype_int16 *yyss1 = yyss;
|
|
union yyalloc *yyptr =
|
|
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
|
|
if (! yyptr)
|
|
goto yyexhaustedlab;
|
|
YYSTACK_RELOCATE (yyss_alloc, yyss);
|
|
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
|
|
# undef YYSTACK_RELOCATE
|
|
if (yyss1 != yyssa)
|
|
YYSTACK_FREE (yyss1);
|
|
}
|
|
# endif
|
|
#endif /* no yyoverflow */
|
|
|
|
yyssp = yyss + yysize - 1;
|
|
yyvsp = yyvs + yysize - 1;
|
|
|
|
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
|
|
(unsigned long int) yystacksize));
|
|
|
|
if (yyss + yystacksize - 1 <= yyssp)
|
|
YYABORT;
|
|
}
|
|
|
|
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
|
|
|
|
if (yystate == YYFINAL)
|
|
YYACCEPT;
|
|
|
|
goto yybackup;
|
|
|
|
/*-----------.
|
|
| yybackup. |
|
|
`-----------*/
|
|
yybackup:
|
|
|
|
/* Do appropriate processing given the current state. Read a
|
|
lookahead token if we need one and don't already have one. */
|
|
|
|
/* First try to decide what to do without reference to lookahead token. */
|
|
yyn = yypact[yystate];
|
|
if (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, parseContext);
|
|
}
|
|
|
|
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
|
|
|
|
goto yynewstate;
|
|
|
|
|
|
/*-----------------------------------------------------------.
|
|
| yydefault -- do the default action for the current state. |
|
|
`-----------------------------------------------------------*/
|
|
yydefault:
|
|
yyn = yydefact[yystate];
|
|
if (yyn == 0)
|
|
goto yyerrlab;
|
|
goto yyreduce;
|
|
|
|
|
|
/*-----------------------------.
|
|
| yyreduce -- Do a reduction. |
|
|
`-----------------------------*/
|
|
yyreduce:
|
|
/* yyn is the number of a rule to reduce with. */
|
|
yylen = yyr2[yyn];
|
|
|
|
/* If YYLEN is nonzero, implement the default value of the action:
|
|
'$$ = $1'.
|
|
|
|
Otherwise, the following line sets YYVAL to garbage.
|
|
This behavior is undocumented and Bison
|
|
users should not rely upon it. Assigning to YYVAL
|
|
unconditionally makes the parser a bit smaller, and it avoids a
|
|
GCC warning that YYVAL may be used uninitialized. */
|
|
yyval = yyvsp[1-yylen];
|
|
|
|
|
|
YY_REDUCE_PRINT (yyn);
|
|
switch (yyn)
|
|
{
|
|
case 2:
|
|
#line 357 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleVariable((yyvsp[0].lex).loc, (yyvsp[0].lex).symbol, (yyvsp[0].lex).string);
|
|
}
|
|
#line 4229 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 3:
|
|
#line 363 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 4237 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 4:
|
|
#line 366 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-1].interm.intermTypedNode);
|
|
if ((yyval.interm.intermTypedNode)->getAsConstantUnion())
|
|
(yyval.interm.intermTypedNode)->getAsConstantUnion()->setExpression();
|
|
}
|
|
#line 4247 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 5:
|
|
#line 371 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).d, EbtFloat, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4255 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 6:
|
|
#line 374 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).i, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4263 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 7:
|
|
#line 377 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "unsigned literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).u, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4272 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 8:
|
|
#line 381 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).b, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4280 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 9:
|
|
#line 385 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).string, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4288 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 10:
|
|
#line 388 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit signed literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).i, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4297 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 11:
|
|
#line 392 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit signed literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).u, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4306 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 12:
|
|
#line 396 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit integer literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).i64, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4315 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 13:
|
|
#line 400 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit unsigned integer literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).u64, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4324 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 14:
|
|
#line 404 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt16Check((yyvsp[0].lex).loc, "16-bit integer literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((short)(yyvsp[0].lex).i, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4333 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 15:
|
|
#line 408 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt16Check((yyvsp[0].lex).loc, "16-bit unsigned integer literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((unsigned short)(yyvsp[0].lex).u, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4342 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 16:
|
|
#line 412 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double literal");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).d, EbtDouble, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4353 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 17:
|
|
#line 418 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float literal");
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion((yyvsp[0].lex).d, EbtFloat16, (yyvsp[0].lex).loc, true);
|
|
}
|
|
#line 4362 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 18:
|
|
#line 426 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 4370 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 19:
|
|
#line 429 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBracketDereference((yyvsp[-2].lex).loc, (yyvsp[-3].interm.intermTypedNode), (yyvsp[-1].interm.intermTypedNode));
|
|
}
|
|
#line 4378 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 20:
|
|
#line 432 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 4386 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 21:
|
|
#line 435 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleDotDereference((yyvsp[0].lex).loc, (yyvsp[-2].interm.intermTypedNode), *(yyvsp[0].lex).string);
|
|
}
|
|
#line 4394 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 22:
|
|
#line 438 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.variableCheck((yyvsp[-1].interm.intermTypedNode));
|
|
parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "++", (yyvsp[-1].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.handleUnaryMath((yyvsp[0].lex).loc, "++", EOpPostIncrement, (yyvsp[-1].interm.intermTypedNode));
|
|
}
|
|
#line 4404 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 23:
|
|
#line 443 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.variableCheck((yyvsp[-1].interm.intermTypedNode));
|
|
parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "--", (yyvsp[-1].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.handleUnaryMath((yyvsp[0].lex).loc, "--", EOpPostDecrement, (yyvsp[-1].interm.intermTypedNode));
|
|
}
|
|
#line 4414 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 24:
|
|
#line 451 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.integerCheck((yyvsp[0].interm.intermTypedNode), "[]");
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 4423 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 25:
|
|
#line 458 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleFunctionCall((yyvsp[0].interm).loc, (yyvsp[0].interm).function, (yyvsp[0].interm).intermNode);
|
|
delete (yyvsp[0].interm).function;
|
|
}
|
|
#line 4432 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 26:
|
|
#line 465 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
}
|
|
#line 4440 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 27:
|
|
#line 471 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-1].interm);
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
}
|
|
#line 4449 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 28:
|
|
#line 475 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-1].interm);
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
}
|
|
#line 4458 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 29:
|
|
#line 482 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-1].interm);
|
|
}
|
|
#line 4466 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 30:
|
|
#line 485 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
}
|
|
#line 4474 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 31:
|
|
#line 491 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
TParameter param = { 0, new TType };
|
|
param.type->shallowCopy((yyvsp[0].interm.intermTypedNode)->getType());
|
|
(yyvsp[-1].interm).function->addParameter(param);
|
|
(yyval.interm).function = (yyvsp[-1].interm).function;
|
|
(yyval.interm).intermNode = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 4486 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 32:
|
|
#line 498 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
TParameter param = { 0, new TType };
|
|
param.type->shallowCopy((yyvsp[0].interm.intermTypedNode)->getType());
|
|
(yyvsp[-2].interm).function->addParameter(param);
|
|
(yyval.interm).function = (yyvsp[-2].interm).function;
|
|
(yyval.interm).intermNode = parseContext.intermediate.growAggregate((yyvsp[-2].interm).intermNode, (yyvsp[0].interm.intermTypedNode), (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4498 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 33:
|
|
#line 508 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-1].interm);
|
|
}
|
|
#line 4506 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 34:
|
|
#line 516 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// Constructor
|
|
(yyval.interm).intermNode = 0;
|
|
(yyval.interm).function = parseContext.handleConstructorCall((yyvsp[0].interm.type).loc, (yyvsp[0].interm.type));
|
|
}
|
|
#line 4516 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 35:
|
|
#line 521 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
//
|
|
// Should be a method or subroutine call, but we haven't recognized the arguments yet.
|
|
//
|
|
(yyval.interm).function = 0;
|
|
(yyval.interm).intermNode = 0;
|
|
|
|
TIntermMethod* method = (yyvsp[0].interm.intermTypedNode)->getAsMethodNode();
|
|
if (method) {
|
|
(yyval.interm).function = new TFunction(&method->getMethodName(), TType(EbtInt), EOpArrayLength);
|
|
(yyval.interm).intermNode = method->getObject();
|
|
} else {
|
|
TIntermSymbol* symbol = (yyvsp[0].interm.intermTypedNode)->getAsSymbolNode();
|
|
if (symbol) {
|
|
parseContext.reservedErrorCheck(symbol->getLoc(), symbol->getName());
|
|
TFunction *function = new TFunction(&symbol->getName(), TType(EbtVoid));
|
|
(yyval.interm).function = function;
|
|
} else
|
|
parseContext.error((yyvsp[0].interm.intermTypedNode)->getLoc(), "function call, method, or subroutine call expected", "", "");
|
|
}
|
|
|
|
if ((yyval.interm).function == 0) {
|
|
// error recover
|
|
TString* empty = NewPoolTString("");
|
|
(yyval.interm).function = new TFunction(empty, TType(EbtVoid), EOpNull);
|
|
}
|
|
}
|
|
#line 4548 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 36:
|
|
#line 549 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// Constructor
|
|
(yyval.interm).intermNode = 0;
|
|
(yyval.interm).function = parseContext.handleConstructorCall((yyvsp[0].interm.type).loc, (yyvsp[0].interm.type));
|
|
}
|
|
#line 4558 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 37:
|
|
#line 558 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.variableCheck((yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
if (TIntermMethod* method = (yyvsp[0].interm.intermTypedNode)->getAsMethodNode())
|
|
parseContext.error((yyvsp[0].interm.intermTypedNode)->getLoc(), "incomplete method syntax", method->getMethodName().c_str(), "");
|
|
}
|
|
#line 4569 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 38:
|
|
#line 564 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "++", (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.handleUnaryMath((yyvsp[-1].lex).loc, "++", EOpPreIncrement, (yyvsp[0].interm.intermTypedNode));
|
|
}
|
|
#line 4578 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 39:
|
|
#line 568 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "--", (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.handleUnaryMath((yyvsp[-1].lex).loc, "--", EOpPreDecrement, (yyvsp[0].interm.intermTypedNode));
|
|
}
|
|
#line 4587 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 40:
|
|
#line 572 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-1].interm).op != EOpNull) {
|
|
char errorOp[2] = {0, 0};
|
|
switch((yyvsp[-1].interm).op) {
|
|
case EOpNegative: errorOp[0] = '-'; break;
|
|
case EOpLogicalNot: errorOp[0] = '!'; break;
|
|
case EOpBitwiseNot: errorOp[0] = '~'; break;
|
|
default: break; // some compilers want this
|
|
}
|
|
(yyval.interm.intermTypedNode) = parseContext.handleUnaryMath((yyvsp[-1].interm).loc, errorOp, (yyvsp[-1].interm).op, (yyvsp[0].interm.intermTypedNode));
|
|
} else {
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
if ((yyval.interm.intermTypedNode)->getAsConstantUnion())
|
|
(yyval.interm.intermTypedNode)->getAsConstantUnion()->setExpression();
|
|
}
|
|
}
|
|
#line 4608 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 41:
|
|
#line 592 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpNull; }
|
|
#line 4614 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 42:
|
|
#line 593 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpNegative; }
|
|
#line 4620 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 43:
|
|
#line 594 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpLogicalNot; }
|
|
#line 4626 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 44:
|
|
#line 595 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpBitwiseNot;
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "bitwise not"); }
|
|
#line 4633 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 45:
|
|
#line 601 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4639 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 46:
|
|
#line 602 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "*", EOpMul, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4649 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 47:
|
|
#line 607 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "/", EOpDiv, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4659 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 48:
|
|
#line 612 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[-1].lex).loc, "%");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "%", EOpMod, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4670 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 49:
|
|
#line 621 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4676 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 50:
|
|
#line 622 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "+", EOpAdd, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4686 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 51:
|
|
#line 627 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "-", EOpSub, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4696 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 52:
|
|
#line 635 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4702 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 53:
|
|
#line 636 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[-1].lex).loc, "bit shift left");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "<<", EOpLeftShift, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4713 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 54:
|
|
#line 642 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[-1].lex).loc, "bit shift right");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, ">>", EOpRightShift, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4724 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 55:
|
|
#line 651 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4730 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 56:
|
|
#line 652 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "<", EOpLessThan, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4740 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 57:
|
|
#line 657 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, ">", EOpGreaterThan, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4750 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 58:
|
|
#line 662 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "<=", EOpLessThanEqual, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4760 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 59:
|
|
#line 667 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, ">=", EOpGreaterThanEqual, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4770 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 60:
|
|
#line 675 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4776 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 61:
|
|
#line 676 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.arrayObjectCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "array comparison");
|
|
parseContext.opaqueCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "==");
|
|
parseContext.specializationCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "==");
|
|
parseContext.referenceCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "==");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "==", EOpEqual, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4790 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 62:
|
|
#line 685 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.arrayObjectCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "array comparison");
|
|
parseContext.opaqueCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "!=");
|
|
parseContext.specializationCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "!=");
|
|
parseContext.referenceCheck((yyvsp[-1].lex).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "!=");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "!=", EOpNotEqual, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4804 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 63:
|
|
#line 697 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4810 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 64:
|
|
#line 698 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[-1].lex).loc, "bitwise and");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "&", EOpAnd, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4821 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 65:
|
|
#line 707 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4827 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 66:
|
|
#line 708 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[-1].lex).loc, "bitwise exclusive or");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "^", EOpExclusiveOr, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4838 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 67:
|
|
#line 717 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4844 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 68:
|
|
#line 718 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[-1].lex).loc, "bitwise inclusive or");
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "|", EOpInclusiveOr, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 4855 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 69:
|
|
#line 727 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4861 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 70:
|
|
#line 728 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "&&", EOpLogicalAnd, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4871 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 71:
|
|
#line 736 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4877 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 72:
|
|
#line 737 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "^^", EOpLogicalXor, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4887 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 73:
|
|
#line 745 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4893 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 74:
|
|
#line 746 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.handleBinaryMath((yyvsp[-1].lex).loc, "||", EOpLogicalOr, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
if ((yyval.interm.intermTypedNode) == 0)
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addConstantUnion(false, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 4903 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 75:
|
|
#line 754 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4909 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 76:
|
|
#line 755 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
++parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 4917 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 77:
|
|
#line 758 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
--parseContext.controlFlowNestingLevel;
|
|
parseContext.boolCheck((yyvsp[-4].lex).loc, (yyvsp[-5].interm.intermTypedNode));
|
|
parseContext.rValueErrorCheck((yyvsp[-4].lex).loc, "?", (yyvsp[-5].interm.intermTypedNode));
|
|
parseContext.rValueErrorCheck((yyvsp[-1].lex).loc, ":", (yyvsp[-2].interm.intermTypedNode));
|
|
parseContext.rValueErrorCheck((yyvsp[-1].lex).loc, ":", (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addSelection((yyvsp[-5].interm.intermTypedNode), (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode), (yyvsp[-4].lex).loc);
|
|
if ((yyval.interm.intermTypedNode) == 0) {
|
|
parseContext.binaryOpError((yyvsp[-4].lex).loc, ":", (yyvsp[-2].interm.intermTypedNode)->getCompleteString(), (yyvsp[0].interm.intermTypedNode)->getCompleteString());
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
}
|
|
#line 4934 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 78:
|
|
#line 773 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode); }
|
|
#line 4940 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 79:
|
|
#line 774 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.arrayObjectCheck((yyvsp[-1].interm).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "array assignment");
|
|
parseContext.opaqueCheck((yyvsp[-1].interm).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "=");
|
|
parseContext.storage16BitAssignmentCheck((yyvsp[-1].interm).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "=");
|
|
parseContext.specializationCheck((yyvsp[-1].interm).loc, (yyvsp[-2].interm.intermTypedNode)->getType(), "=");
|
|
parseContext.lValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[-2].interm.intermTypedNode));
|
|
parseContext.rValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addAssign((yyvsp[-1].interm).op, (yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode), (yyvsp[-1].interm).loc);
|
|
if ((yyval.interm.intermTypedNode) == 0) {
|
|
parseContext.assignError((yyvsp[-1].interm).loc, "assign", (yyvsp[-2].interm.intermTypedNode)->getCompleteString(), (yyvsp[0].interm.intermTypedNode)->getCompleteString());
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
}
|
|
#line 4958 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 80:
|
|
#line 790 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).op = EOpAssign;
|
|
}
|
|
#line 4967 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 81:
|
|
#line 794 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).op = EOpMulAssign;
|
|
}
|
|
#line 4976 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 82:
|
|
#line 798 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).op = EOpDivAssign;
|
|
}
|
|
#line 4985 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 83:
|
|
#line 802 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "%=");
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).op = EOpModAssign;
|
|
}
|
|
#line 4995 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 84:
|
|
#line 807 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).op = EOpAddAssign;
|
|
}
|
|
#line 5004 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 85:
|
|
#line 811 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).op = EOpSubAssign;
|
|
}
|
|
#line 5013 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 86:
|
|
#line 815 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "bit-shift left assign");
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpLeftShiftAssign;
|
|
}
|
|
#line 5022 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 87:
|
|
#line 819 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "bit-shift right assign");
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpRightShiftAssign;
|
|
}
|
|
#line 5031 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 88:
|
|
#line 823 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "bitwise-and assign");
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpAndAssign;
|
|
}
|
|
#line 5040 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 89:
|
|
#line 827 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "bitwise-xor assign");
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpExclusiveOrAssign;
|
|
}
|
|
#line 5049 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 90:
|
|
#line 831 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "bitwise-or assign");
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc; (yyval.interm).op = EOpInclusiveOrAssign;
|
|
}
|
|
#line 5058 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 91:
|
|
#line 838 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 5066 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 92:
|
|
#line 841 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.samplerConstructorLocationCheck((yyvsp[-1].lex).loc, ",", (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.addComma((yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode), (yyvsp[-1].lex).loc);
|
|
if ((yyval.interm.intermTypedNode) == 0) {
|
|
parseContext.binaryOpError((yyvsp[-1].lex).loc, ",", (yyvsp[-2].interm.intermTypedNode)->getCompleteString(), (yyvsp[0].interm.intermTypedNode)->getCompleteString());
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
}
|
|
#line 5079 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 93:
|
|
#line 852 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.constantValueCheck((yyvsp[0].interm.intermTypedNode), "");
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 5088 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 94:
|
|
#line 859 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.handleFunctionDeclarator((yyvsp[-1].interm).loc, *(yyvsp[-1].interm).function, true /* prototype */);
|
|
(yyval.interm.intermNode) = 0;
|
|
// TODO: 4.0 functionality: subroutines: make the identifier a user type for this signature
|
|
}
|
|
#line 5098 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 95:
|
|
#line 864 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-1].interm).intermNode && (yyvsp[-1].interm).intermNode->getAsAggregate())
|
|
(yyvsp[-1].interm).intermNode->getAsAggregate()->setOperator(EOpSequence);
|
|
(yyval.interm.intermNode) = (yyvsp[-1].interm).intermNode;
|
|
}
|
|
#line 5108 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 96:
|
|
#line 869 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.profileRequires((yyvsp[-3].lex).loc, ENoProfile, 130, 0, "precision statement");
|
|
// lazy setting of the previous scope's defaults, has effect only the first time it is called in a particular scope
|
|
parseContext.symbolTable.setPreviousDefaultPrecisions(&parseContext.defaultPrecision[0]);
|
|
parseContext.setDefaultPrecision((yyvsp[-3].lex).loc, (yyvsp[-1].interm.type), (yyvsp[-2].interm.type).qualifier.precision);
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5120 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 97:
|
|
#line 876 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.declareBlock((yyvsp[-1].interm).loc, *(yyvsp[-1].interm).typeList);
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5129 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 98:
|
|
#line 880 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.declareBlock((yyvsp[-2].interm).loc, *(yyvsp[-2].interm).typeList, (yyvsp[-1].lex).string);
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5138 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 99:
|
|
#line 884 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.declareBlock((yyvsp[-3].interm).loc, *(yyvsp[-3].interm).typeList, (yyvsp[-2].lex).string, (yyvsp[-1].interm).arraySizes);
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5147 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 100:
|
|
#line 888 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalQualifierFixCheck((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).qualifier);
|
|
parseContext.updateStandaloneQualifierDefaults((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type));
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5157 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 101:
|
|
#line 893 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.checkNoShaderLayouts((yyvsp[-2].interm.type).loc, (yyvsp[-2].interm.type).shaderQualifiers);
|
|
parseContext.addQualifierToExisting((yyvsp[-2].interm.type).loc, (yyvsp[-2].interm.type).qualifier, *(yyvsp[-1].lex).string);
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5167 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 102:
|
|
#line 898 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.checkNoShaderLayouts((yyvsp[-3].interm.type).loc, (yyvsp[-3].interm.type).shaderQualifiers);
|
|
(yyvsp[-1].interm.identifierList)->push_back((yyvsp[-2].lex).string);
|
|
parseContext.addQualifierToExisting((yyvsp[-3].interm.type).loc, (yyvsp[-3].interm.type).qualifier, *(yyvsp[-1].interm.identifierList));
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 5178 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 103:
|
|
#line 907 "glslang.y" /* yacc.c:1646 */
|
|
{ parseContext.nestedBlockCheck((yyvsp[-2].interm.type).loc); }
|
|
#line 5184 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 104:
|
|
#line 907 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
--parseContext.structNestingLevel;
|
|
parseContext.blockName = (yyvsp[-4].lex).string;
|
|
parseContext.globalQualifierFixCheck((yyvsp[-5].interm.type).loc, (yyvsp[-5].interm.type).qualifier);
|
|
parseContext.checkNoShaderLayouts((yyvsp[-5].interm.type).loc, (yyvsp[-5].interm.type).shaderQualifiers);
|
|
parseContext.currentBlockQualifier = (yyvsp[-5].interm.type).qualifier;
|
|
(yyval.interm).loc = (yyvsp[-5].interm.type).loc;
|
|
(yyval.interm).typeList = (yyvsp[-1].interm.typeList);
|
|
}
|
|
#line 5198 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 105:
|
|
#line 918 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.identifierList) = new TIdentifierList;
|
|
(yyval.interm.identifierList)->push_back((yyvsp[0].lex).string);
|
|
}
|
|
#line 5207 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 106:
|
|
#line 922 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.identifierList) = (yyvsp[-2].interm.identifierList);
|
|
(yyval.interm.identifierList)->push_back((yyvsp[0].lex).string);
|
|
}
|
|
#line 5216 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 107:
|
|
#line 929 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).function = (yyvsp[-1].interm.function);
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
}
|
|
#line 5225 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 108:
|
|
#line 936 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.function) = (yyvsp[0].interm.function);
|
|
}
|
|
#line 5233 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 109:
|
|
#line 939 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.function) = (yyvsp[0].interm.function);
|
|
}
|
|
#line 5241 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 110:
|
|
#line 946 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// Add the parameter
|
|
(yyval.interm.function) = (yyvsp[-1].interm.function);
|
|
if ((yyvsp[0].interm).param.type->getBasicType() != EbtVoid)
|
|
(yyvsp[-1].interm.function)->addParameter((yyvsp[0].interm).param);
|
|
else
|
|
delete (yyvsp[0].interm).param.type;
|
|
}
|
|
#line 5254 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 111:
|
|
#line 954 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
//
|
|
// Only first parameter of one-parameter functions can be void
|
|
// The check for named parameters not being void is done in parameter_declarator
|
|
//
|
|
if ((yyvsp[0].interm).param.type->getBasicType() == EbtVoid) {
|
|
//
|
|
// This parameter > first is void
|
|
//
|
|
parseContext.error((yyvsp[-1].lex).loc, "cannot be an argument type except for '(void)'", "void", "");
|
|
delete (yyvsp[0].interm).param.type;
|
|
} else {
|
|
// Add the parameter
|
|
(yyval.interm.function) = (yyvsp[-2].interm.function);
|
|
(yyvsp[-2].interm.function)->addParameter((yyvsp[0].interm).param);
|
|
}
|
|
}
|
|
#line 5276 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 112:
|
|
#line 974 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-2].interm.type).qualifier.storage != EvqGlobal && (yyvsp[-2].interm.type).qualifier.storage != EvqTemporary) {
|
|
parseContext.error((yyvsp[-1].lex).loc, "no qualifiers allowed for function return",
|
|
GetStorageQualifierString((yyvsp[-2].interm.type).qualifier.storage), "");
|
|
}
|
|
if ((yyvsp[-2].interm.type).arraySizes)
|
|
parseContext.arraySizeRequiredCheck((yyvsp[-2].interm.type).loc, *(yyvsp[-2].interm.type).arraySizes);
|
|
|
|
// Add the function as a prototype after parsing it (we do not support recursion)
|
|
TFunction *function;
|
|
TType type((yyvsp[-2].interm.type));
|
|
|
|
// Potentially rename shader entry point function. No-op most of the time.
|
|
parseContext.renameShaderFunction((yyvsp[-1].lex).string);
|
|
|
|
// Make the function
|
|
function = new TFunction((yyvsp[-1].lex).string, type);
|
|
(yyval.interm.function) = function;
|
|
}
|
|
#line 5300 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 113:
|
|
#line 997 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-1].interm.type).arraySizes) {
|
|
parseContext.profileRequires((yyvsp[-1].interm.type).loc, ENoProfile, 120, E_GL_3DL_array_objects, "arrayed type");
|
|
parseContext.profileRequires((yyvsp[-1].interm.type).loc, EEsProfile, 300, 0, "arrayed type");
|
|
parseContext.arraySizeRequiredCheck((yyvsp[-1].interm.type).loc, *(yyvsp[-1].interm.type).arraySizes);
|
|
}
|
|
if ((yyvsp[-1].interm.type).basicType == EbtVoid) {
|
|
parseContext.error((yyvsp[0].lex).loc, "illegal use of type 'void'", (yyvsp[0].lex).string->c_str(), "");
|
|
}
|
|
parseContext.reservedErrorCheck((yyvsp[0].lex).loc, *(yyvsp[0].lex).string);
|
|
|
|
TParameter param = {(yyvsp[0].lex).string, new TType((yyvsp[-1].interm.type))};
|
|
(yyval.interm).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm).param = param;
|
|
}
|
|
#line 5320 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 114:
|
|
#line 1012 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-2].interm.type).arraySizes) {
|
|
parseContext.profileRequires((yyvsp[-2].interm.type).loc, ENoProfile, 120, E_GL_3DL_array_objects, "arrayed type");
|
|
parseContext.profileRequires((yyvsp[-2].interm.type).loc, EEsProfile, 300, 0, "arrayed type");
|
|
parseContext.arraySizeRequiredCheck((yyvsp[-2].interm.type).loc, *(yyvsp[-2].interm.type).arraySizes);
|
|
}
|
|
TType* type = new TType((yyvsp[-2].interm.type));
|
|
type->transferArraySizes((yyvsp[0].interm).arraySizes);
|
|
type->copyArrayInnerSizes((yyvsp[-2].interm.type).arraySizes);
|
|
|
|
parseContext.arrayOfArrayVersionCheck((yyvsp[-1].lex).loc, type->getArraySizes());
|
|
parseContext.arraySizeRequiredCheck((yyvsp[0].interm).loc, *(yyvsp[0].interm).arraySizes);
|
|
parseContext.reservedErrorCheck((yyvsp[-1].lex).loc, *(yyvsp[-1].lex).string);
|
|
|
|
TParameter param = { (yyvsp[-1].lex).string, type };
|
|
|
|
(yyval.interm).loc = (yyvsp[-1].lex).loc;
|
|
(yyval.interm).param = param;
|
|
}
|
|
#line 5344 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 115:
|
|
#line 1037 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
if ((yyvsp[-1].interm.type).qualifier.precision != EpqNone)
|
|
(yyval.interm).param.type->getQualifier().precision = (yyvsp[-1].interm.type).qualifier.precision;
|
|
parseContext.precisionQualifierCheck((yyval.interm).loc, (yyval.interm).param.type->getBasicType(), (yyval.interm).param.type->getQualifier());
|
|
|
|
parseContext.checkNoShaderLayouts((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).shaderQualifiers);
|
|
parseContext.parameterTypeCheck((yyvsp[0].interm).loc, (yyvsp[-1].interm.type).qualifier.storage, *(yyval.interm).param.type);
|
|
parseContext.paramCheckFix((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).qualifier, *(yyval.interm).param.type);
|
|
|
|
}
|
|
#line 5360 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 116:
|
|
#line 1048 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
|
|
parseContext.parameterTypeCheck((yyvsp[0].interm).loc, EvqIn, *(yyvsp[0].interm).param.type);
|
|
parseContext.paramCheckFixStorage((yyvsp[0].interm).loc, EvqTemporary, *(yyval.interm).param.type);
|
|
parseContext.precisionQualifierCheck((yyval.interm).loc, (yyval.interm).param.type->getBasicType(), (yyval.interm).param.type->getQualifier());
|
|
}
|
|
#line 5372 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 117:
|
|
#line 1058 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
if ((yyvsp[-1].interm.type).qualifier.precision != EpqNone)
|
|
(yyval.interm).param.type->getQualifier().precision = (yyvsp[-1].interm.type).qualifier.precision;
|
|
parseContext.precisionQualifierCheck((yyvsp[-1].interm.type).loc, (yyval.interm).param.type->getBasicType(), (yyval.interm).param.type->getQualifier());
|
|
|
|
parseContext.checkNoShaderLayouts((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).shaderQualifiers);
|
|
parseContext.parameterTypeCheck((yyvsp[0].interm).loc, (yyvsp[-1].interm.type).qualifier.storage, *(yyval.interm).param.type);
|
|
parseContext.paramCheckFix((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).qualifier, *(yyval.interm).param.type);
|
|
}
|
|
#line 5387 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 118:
|
|
#line 1068 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
|
|
parseContext.parameterTypeCheck((yyvsp[0].interm).loc, EvqIn, *(yyvsp[0].interm).param.type);
|
|
parseContext.paramCheckFixStorage((yyvsp[0].interm).loc, EvqTemporary, *(yyval.interm).param.type);
|
|
parseContext.precisionQualifierCheck((yyval.interm).loc, (yyval.interm).param.type->getBasicType(), (yyval.interm).param.type->getQualifier());
|
|
}
|
|
#line 5399 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 119:
|
|
#line 1078 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
TParameter param = { 0, new TType((yyvsp[0].interm.type)) };
|
|
(yyval.interm).param = param;
|
|
if ((yyvsp[0].interm.type).arraySizes)
|
|
parseContext.arraySizeRequiredCheck((yyvsp[0].interm.type).loc, *(yyvsp[0].interm.type).arraySizes);
|
|
}
|
|
#line 5410 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 120:
|
|
#line 1087 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[0].interm);
|
|
}
|
|
#line 5418 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 121:
|
|
#line 1090 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-2].interm);
|
|
parseContext.declareVariable((yyvsp[0].lex).loc, *(yyvsp[0].lex).string, (yyvsp[-2].interm).type);
|
|
}
|
|
#line 5427 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 122:
|
|
#line 1094 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-3].interm);
|
|
parseContext.declareVariable((yyvsp[-1].lex).loc, *(yyvsp[-1].lex).string, (yyvsp[-3].interm).type, (yyvsp[0].interm).arraySizes);
|
|
}
|
|
#line 5436 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 123:
|
|
#line 1098 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[-5].interm).type;
|
|
TIntermNode* initNode = parseContext.declareVariable((yyvsp[-3].lex).loc, *(yyvsp[-3].lex).string, (yyvsp[-5].interm).type, (yyvsp[-2].interm).arraySizes, (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm).intermNode = parseContext.intermediate.growAggregate((yyvsp[-5].interm).intermNode, initNode, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 5446 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 124:
|
|
#line 1103 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[-4].interm).type;
|
|
TIntermNode* initNode = parseContext.declareVariable((yyvsp[-2].lex).loc, *(yyvsp[-2].lex).string, (yyvsp[-4].interm).type, 0, (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm).intermNode = parseContext.intermediate.growAggregate((yyvsp[-4].interm).intermNode, initNode, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 5456 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 125:
|
|
#line 1111 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[0].interm.type);
|
|
(yyval.interm).intermNode = 0;
|
|
|
|
parseContext.declareTypeDefaults((yyval.interm).loc, (yyval.interm).type);
|
|
|
|
}
|
|
#line 5468 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 126:
|
|
#line 1118 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[-1].interm.type);
|
|
(yyval.interm).intermNode = 0;
|
|
parseContext.declareVariable((yyvsp[0].lex).loc, *(yyvsp[0].lex).string, (yyvsp[-1].interm.type));
|
|
}
|
|
#line 5478 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 127:
|
|
#line 1123 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[-2].interm.type);
|
|
(yyval.interm).intermNode = 0;
|
|
parseContext.declareVariable((yyvsp[-1].lex).loc, *(yyvsp[-1].lex).string, (yyvsp[-2].interm.type), (yyvsp[0].interm).arraySizes);
|
|
}
|
|
#line 5488 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 128:
|
|
#line 1128 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[-4].interm.type);
|
|
TIntermNode* initNode = parseContext.declareVariable((yyvsp[-3].lex).loc, *(yyvsp[-3].lex).string, (yyvsp[-4].interm.type), (yyvsp[-2].interm).arraySizes, (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm).intermNode = parseContext.intermediate.growAggregate(0, initNode, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 5498 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 129:
|
|
#line 1133 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).type = (yyvsp[-3].interm.type);
|
|
TIntermNode* initNode = parseContext.declareVariable((yyvsp[-2].lex).loc, *(yyvsp[-2].lex).string, (yyvsp[-3].interm.type), 0, (yyvsp[0].interm.intermTypedNode));
|
|
(yyval.interm).intermNode = parseContext.intermediate.growAggregate(0, initNode, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 5508 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 130:
|
|
#line 1142 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
|
|
parseContext.globalQualifierTypeCheck((yyvsp[0].interm.type).loc, (yyvsp[0].interm.type).qualifier, (yyval.interm.type));
|
|
if ((yyvsp[0].interm.type).arraySizes) {
|
|
parseContext.profileRequires((yyvsp[0].interm.type).loc, ENoProfile, 120, E_GL_3DL_array_objects, "arrayed type");
|
|
parseContext.profileRequires((yyvsp[0].interm.type).loc, EEsProfile, 300, 0, "arrayed type");
|
|
}
|
|
parseContext.precisionQualifierCheck((yyval.interm.type).loc, (yyval.interm.type).basicType, (yyval.interm.type).qualifier);
|
|
}
|
|
#line 5523 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 131:
|
|
#line 1152 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalQualifierFixCheck((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).qualifier);
|
|
parseContext.globalQualifierTypeCheck((yyvsp[-1].interm.type).loc, (yyvsp[-1].interm.type).qualifier, (yyvsp[0].interm.type));
|
|
|
|
if ((yyvsp[0].interm.type).arraySizes) {
|
|
parseContext.profileRequires((yyvsp[0].interm.type).loc, ENoProfile, 120, E_GL_3DL_array_objects, "arrayed type");
|
|
parseContext.profileRequires((yyvsp[0].interm.type).loc, EEsProfile, 300, 0, "arrayed type");
|
|
}
|
|
|
|
if ((yyvsp[0].interm.type).arraySizes && parseContext.arrayQualifierError((yyvsp[0].interm.type).loc, (yyvsp[-1].interm.type).qualifier))
|
|
(yyvsp[0].interm.type).arraySizes = nullptr;
|
|
|
|
parseContext.checkNoShaderLayouts((yyvsp[0].interm.type).loc, (yyvsp[-1].interm.type).shaderQualifiers);
|
|
(yyvsp[0].interm.type).shaderQualifiers.merge((yyvsp[-1].interm.type).shaderQualifiers);
|
|
parseContext.mergeQualifiers((yyvsp[0].interm.type).loc, (yyvsp[0].interm.type).qualifier, (yyvsp[-1].interm.type).qualifier, true);
|
|
parseContext.precisionQualifierCheck((yyvsp[0].interm.type).loc, (yyvsp[0].interm.type).basicType, (yyvsp[0].interm.type).qualifier);
|
|
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
|
|
if (! (yyval.interm.type).qualifier.isInterpolation() &&
|
|
((parseContext.language == EShLangVertex && (yyval.interm.type).qualifier.storage == EvqVaryingOut) ||
|
|
(parseContext.language == EShLangFragment && (yyval.interm.type).qualifier.storage == EvqVaryingIn)))
|
|
(yyval.interm.type).qualifier.smooth = true;
|
|
}
|
|
#line 5552 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 132:
|
|
#line 1179 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "invariant");
|
|
parseContext.profileRequires((yyval.interm.type).loc, ENoProfile, 120, 0, "invariant");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.invariant = true;
|
|
}
|
|
#line 5563 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 133:
|
|
#line 1188 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "smooth");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 130, 0, "smooth");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 300, 0, "smooth");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.smooth = true;
|
|
}
|
|
#line 5575 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 134:
|
|
#line 1195 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "flat");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 130, 0, "flat");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 300, 0, "flat");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.flat = true;
|
|
}
|
|
#line 5587 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 135:
|
|
#line 1203 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "noperspective");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 0, E_GL_NV_shader_noperspective_interpolation, "noperspective");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 130, 0, "noperspective");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.nopersp = true;
|
|
}
|
|
#line 5599 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 136:
|
|
#line 1210 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "__explicitInterpAMD");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 450, E_GL_AMD_shader_explicit_vertex_parameter, "explicit interpolation");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECompatibilityProfile, 450, E_GL_AMD_shader_explicit_vertex_parameter, "explicit interpolation");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.explicitInterp = true;
|
|
}
|
|
#line 5611 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 137:
|
|
#line 1217 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "pervertexNV");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 0, E_GL_NV_fragment_shader_barycentric, "fragment shader barycentric");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECompatibilityProfile, 0, E_GL_NV_fragment_shader_barycentric, "fragment shader barycentric");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 0, E_GL_NV_fragment_shader_barycentric, "fragment shader barycentric");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.pervertexNV = true;
|
|
}
|
|
#line 5624 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 138:
|
|
#line 1225 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// No need for profile version or extension check. Shader stage already checks both.
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "perprimitiveNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangFragmentMask | EShLangMeshNVMask), "perprimitiveNV");
|
|
// Fragment shader stage doesn't check for extension. So we explicitly add below extension check.
|
|
if (parseContext.language == EShLangFragment)
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_NV_mesh_shader, "perprimitiveNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.perPrimitiveNV = true;
|
|
}
|
|
#line 5639 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 139:
|
|
#line 1235 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// No need for profile version or extension check. Shader stage already checks both.
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "perviewNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangMeshNV, "perviewNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.perViewNV = true;
|
|
}
|
|
#line 5651 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 140:
|
|
#line 1242 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// No need for profile version or extension check. Shader stage already checks both.
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "taskNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangTaskNVMask | EShLangMeshNVMask), "taskNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.perTaskNV = true;
|
|
}
|
|
#line 5663 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 141:
|
|
#line 1253 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[-1].interm.type);
|
|
}
|
|
#line 5671 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 142:
|
|
#line 1259 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5679 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 143:
|
|
#line 1262 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[-2].interm.type);
|
|
(yyval.interm.type).shaderQualifiers.merge((yyvsp[0].interm.type).shaderQualifiers);
|
|
parseContext.mergeObjectLayoutQualifiers((yyval.interm.type).qualifier, (yyvsp[0].interm.type).qualifier, false);
|
|
}
|
|
#line 5689 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 144:
|
|
#line 1269 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.setLayoutQualifier((yyvsp[0].lex).loc, (yyval.interm.type), *(yyvsp[0].lex).string);
|
|
}
|
|
#line 5698 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 145:
|
|
#line 1273 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[-2].lex).loc);
|
|
parseContext.setLayoutQualifier((yyvsp[-2].lex).loc, (yyval.interm.type), *(yyvsp[-2].lex).string, (yyvsp[0].interm.intermTypedNode));
|
|
}
|
|
#line 5707 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 146:
|
|
#line 1277 "glslang.y" /* yacc.c:1646 */
|
|
{ // because "shared" is both an identifier and a keyword
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
TString strShared("shared");
|
|
parseContext.setLayoutQualifier((yyvsp[0].lex).loc, (yyval.interm.type), strShared);
|
|
}
|
|
#line 5717 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 147:
|
|
#line 1286 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.profileRequires((yyval.interm.type).loc, ECoreProfile | ECompatibilityProfile, 400, E_GL_ARB_gpu_shader5, "precise");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 320, Num_AEP_gpu_shader5, AEP_gpu_shader5, "precise");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.noContraction = true;
|
|
}
|
|
#line 5728 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 148:
|
|
#line 1296 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5736 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 149:
|
|
#line 1299 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[-1].interm.type);
|
|
if ((yyval.interm.type).basicType == EbtVoid)
|
|
(yyval.interm.type).basicType = (yyvsp[0].interm.type).basicType;
|
|
|
|
(yyval.interm.type).shaderQualifiers.merge((yyvsp[0].interm.type).shaderQualifiers);
|
|
parseContext.mergeQualifiers((yyval.interm.type).loc, (yyval.interm.type).qualifier, (yyvsp[0].interm.type).qualifier, false);
|
|
}
|
|
#line 5749 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 150:
|
|
#line 1310 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5757 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 151:
|
|
#line 1313 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5765 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 152:
|
|
#line 1316 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.checkPrecisionQualifier((yyvsp[0].interm.type).loc, (yyvsp[0].interm.type).qualifier.precision);
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5774 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 153:
|
|
#line 1320 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// allow inheritance of storage qualifier from block declaration
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5783 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 154:
|
|
#line 1324 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// allow inheritance of storage qualifier from block declaration
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5792 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 155:
|
|
#line 1329 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// allow inheritance of storage qualifier from block declaration
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5801 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 156:
|
|
#line 1333 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
}
|
|
#line 5809 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 157:
|
|
#line 1340 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqConst; // will later turn into EvqConstReadOnly, if the initializer is not constant
|
|
}
|
|
#line 5818 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 158:
|
|
#line 1344 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "inout");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqInOut;
|
|
}
|
|
#line 5828 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 159:
|
|
#line 1349 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "in");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
// whether this is a parameter "in" or a pipeline "in" will get sorted out a bit later
|
|
(yyval.interm.type).qualifier.storage = EvqIn;
|
|
}
|
|
#line 5839 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 160:
|
|
#line 1355 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "out");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
// whether this is a parameter "out" or a pipeline "out" will get sorted out a bit later
|
|
(yyval.interm.type).qualifier.storage = EvqOut;
|
|
}
|
|
#line 5850 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 161:
|
|
#line 1361 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 120, 0, "centroid");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 300, 0, "centroid");
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "centroid");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.centroid = true;
|
|
}
|
|
#line 5862 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 162:
|
|
#line 1368 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "uniform");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqUniform;
|
|
}
|
|
#line 5872 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 163:
|
|
#line 1373 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "shared");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, 430, E_GL_ARB_compute_shader, "shared");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, EEsProfile, 310, 0, "shared");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangComputeMask | EShLangMeshNVMask | EShLangTaskNVMask), "shared");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqShared;
|
|
}
|
|
#line 5885 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 164:
|
|
#line 1381 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "buffer");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqBuffer;
|
|
}
|
|
#line 5895 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 165:
|
|
#line 1387 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangVertex, "attribute");
|
|
parseContext.checkDeprecated((yyvsp[0].lex).loc, ECoreProfile, 130, "attribute");
|
|
parseContext.checkDeprecated((yyvsp[0].lex).loc, ENoProfile, 130, "attribute");
|
|
parseContext.requireNotRemoved((yyvsp[0].lex).loc, ECoreProfile, 420, "attribute");
|
|
parseContext.requireNotRemoved((yyvsp[0].lex).loc, EEsProfile, 300, "attribute");
|
|
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "attribute");
|
|
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqVaryingIn;
|
|
}
|
|
#line 5912 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 166:
|
|
#line 1399 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.checkDeprecated((yyvsp[0].lex).loc, ENoProfile, 130, "varying");
|
|
parseContext.checkDeprecated((yyvsp[0].lex).loc, ECoreProfile, 130, "varying");
|
|
parseContext.requireNotRemoved((yyvsp[0].lex).loc, ECoreProfile, 420, "varying");
|
|
parseContext.requireNotRemoved((yyvsp[0].lex).loc, EEsProfile, 300, "varying");
|
|
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "varying");
|
|
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
if (parseContext.language == EShLangVertex)
|
|
(yyval.interm.type).qualifier.storage = EvqVaryingOut;
|
|
else
|
|
(yyval.interm.type).qualifier.storage = EvqVaryingIn;
|
|
}
|
|
#line 5931 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 167:
|
|
#line 1413 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "patch");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangTessControlMask | EShLangTessEvaluationMask), "patch");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.patch = true;
|
|
}
|
|
#line 5942 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 168:
|
|
#line 1419 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "sample");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.sample = true;
|
|
}
|
|
#line 5952 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 169:
|
|
#line 1424 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "hitAttributeNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangIntersectMask | EShLangClosestHitMask
|
|
| EShLangAnyHitMask), "hitAttributeNV");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_NV_ray_tracing, "hitAttributeNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqHitAttr;
|
|
}
|
|
#line 5965 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 170:
|
|
#line 1432 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "hitAttributeEXT");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangIntersectMask | EShLangClosestHitMask
|
|
| EShLangAnyHitMask), "hitAttributeEXT");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_EXT_ray_tracing, "hitAttributeNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqHitAttr;
|
|
}
|
|
#line 5978 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 171:
|
|
#line 1440 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "rayPayloadNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangRayGenMask | EShLangClosestHitMask |
|
|
EShLangAnyHitMask | EShLangMissMask), "rayPayloadNV");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_NV_ray_tracing, "rayPayloadNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqPayload;
|
|
}
|
|
#line 5991 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 172:
|
|
#line 1448 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "rayPayloadEXT");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangRayGenMask | EShLangClosestHitMask |
|
|
EShLangAnyHitMask | EShLangMissMask), "rayPayloadEXT");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_EXT_ray_tracing, "rayPayloadEXT");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqPayload;
|
|
}
|
|
#line 6004 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 173:
|
|
#line 1456 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "rayPayloadInNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangClosestHitMask |
|
|
EShLangAnyHitMask | EShLangMissMask), "rayPayloadInNV");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_NV_ray_tracing, "rayPayloadInNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqPayloadIn;
|
|
}
|
|
#line 6017 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 174:
|
|
#line 1464 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "rayPayloadInEXT");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangClosestHitMask |
|
|
EShLangAnyHitMask | EShLangMissMask), "rayPayloadInEXT");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_EXT_ray_tracing, "rayPayloadInEXT");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqPayloadIn;
|
|
}
|
|
#line 6030 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 175:
|
|
#line 1472 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "callableDataNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangRayGenMask |
|
|
EShLangClosestHitMask | EShLangMissMask | EShLangCallableMask), "callableDataNV");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_NV_ray_tracing, "callableDataNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqCallableData;
|
|
}
|
|
#line 6043 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 176:
|
|
#line 1480 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "callableDataEXT");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangRayGenMask |
|
|
EShLangClosestHitMask | EShLangMissMask | EShLangCallableMask), "callableDataEXT");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_EXT_ray_tracing, "callableDataEXT");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqCallableData;
|
|
}
|
|
#line 6056 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 177:
|
|
#line 1488 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "callableDataInNV");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangCallableMask), "callableDataInNV");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_NV_ray_tracing, "callableDataInNV");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqCallableDataIn;
|
|
}
|
|
#line 6068 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 178:
|
|
#line 1495 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "callableDataInEXT");
|
|
parseContext.requireStage((yyvsp[0].lex).loc, (EShLanguageMask)(EShLangCallableMask), "callableDataInEXT");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ECoreProfile, 460, E_GL_EXT_ray_tracing, "callableDataInEXT");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.storage = EvqCallableDataIn;
|
|
}
|
|
#line 6080 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 179:
|
|
#line 1502 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.coherent = true;
|
|
}
|
|
#line 6089 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 180:
|
|
#line 1506 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_KHR_memory_scope_semantics, "devicecoherent");
|
|
(yyval.interm.type).qualifier.devicecoherent = true;
|
|
}
|
|
#line 6099 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 181:
|
|
#line 1511 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_KHR_memory_scope_semantics, "queuefamilycoherent");
|
|
(yyval.interm.type).qualifier.queuefamilycoherent = true;
|
|
}
|
|
#line 6109 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 182:
|
|
#line 1516 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_KHR_memory_scope_semantics, "workgroupcoherent");
|
|
(yyval.interm.type).qualifier.workgroupcoherent = true;
|
|
}
|
|
#line 6119 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 183:
|
|
#line 1521 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_KHR_memory_scope_semantics, "subgroupcoherent");
|
|
(yyval.interm.type).qualifier.subgroupcoherent = true;
|
|
}
|
|
#line 6129 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 184:
|
|
#line 1526 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_KHR_memory_scope_semantics, "nonprivate");
|
|
(yyval.interm.type).qualifier.nonprivate = true;
|
|
}
|
|
#line 6139 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 185:
|
|
#line 1531 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
parseContext.requireExtensions((yyvsp[0].lex).loc, 1, &E_GL_EXT_ray_tracing, "shadercallcoherent");
|
|
(yyval.interm.type).qualifier.shadercallcoherent = true;
|
|
}
|
|
#line 6149 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 186:
|
|
#line 1536 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.volatil = true;
|
|
}
|
|
#line 6158 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 187:
|
|
#line 1540 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.restrict = true;
|
|
}
|
|
#line 6167 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 188:
|
|
#line 1544 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.readonly = true;
|
|
}
|
|
#line 6176 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 189:
|
|
#line 1548 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.writeonly = true;
|
|
}
|
|
#line 6185 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 190:
|
|
#line 1552 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.spvRemoved((yyvsp[0].lex).loc, "subroutine");
|
|
parseContext.globalCheck((yyvsp[0].lex).loc, "subroutine");
|
|
parseContext.unimplemented((yyvsp[0].lex).loc, "subroutine");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
}
|
|
#line 6196 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 191:
|
|
#line 1558 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.spvRemoved((yyvsp[-3].lex).loc, "subroutine");
|
|
parseContext.globalCheck((yyvsp[-3].lex).loc, "subroutine");
|
|
parseContext.unimplemented((yyvsp[-3].lex).loc, "subroutine");
|
|
(yyval.interm.type).init((yyvsp[-3].lex).loc);
|
|
}
|
|
#line 6207 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 192:
|
|
#line 1569 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc);
|
|
(yyval.interm.type).qualifier.nonUniform = true;
|
|
}
|
|
#line 6216 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 193:
|
|
#line 1576 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// TODO
|
|
}
|
|
#line 6224 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 194:
|
|
#line 1579 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// TODO: 4.0 semantics: subroutines
|
|
// 1) make sure each identifier is a type declared earlier with SUBROUTINE
|
|
// 2) save all of the identifiers for future comparison with the declared function
|
|
}
|
|
#line 6234 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 195:
|
|
#line 1588 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[-1].interm.type);
|
|
(yyval.interm.type).qualifier.precision = parseContext.getDefaultPrecision((yyval.interm.type));
|
|
(yyval.interm.type).typeParameters = (yyvsp[0].interm.typeParameters);
|
|
}
|
|
#line 6244 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 196:
|
|
#line 1593 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.arrayOfArrayVersionCheck((yyvsp[0].interm).loc, (yyvsp[0].interm).arraySizes);
|
|
(yyval.interm.type) = (yyvsp[-2].interm.type);
|
|
(yyval.interm.type).qualifier.precision = parseContext.getDefaultPrecision((yyval.interm.type));
|
|
(yyval.interm.type).typeParameters = (yyvsp[-1].interm.typeParameters);
|
|
(yyval.interm.type).arraySizes = (yyvsp[0].interm).arraySizes;
|
|
}
|
|
#line 6256 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 197:
|
|
#line 1603 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[-1].lex).loc;
|
|
(yyval.interm).arraySizes = new TArraySizes;
|
|
(yyval.interm).arraySizes->addInnerSize();
|
|
}
|
|
#line 6266 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 198:
|
|
#line 1608 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm).loc = (yyvsp[-2].lex).loc;
|
|
(yyval.interm).arraySizes = new TArraySizes;
|
|
|
|
TArraySize size;
|
|
parseContext.arraySizeCheck((yyvsp[-1].interm.intermTypedNode)->getLoc(), (yyvsp[-1].interm.intermTypedNode), size, "array size");
|
|
(yyval.interm).arraySizes->addInnerSize(size);
|
|
}
|
|
#line 6279 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 199:
|
|
#line 1616 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-2].interm);
|
|
(yyval.interm).arraySizes->addInnerSize();
|
|
}
|
|
#line 6288 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 200:
|
|
#line 1620 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm) = (yyvsp[-3].interm);
|
|
|
|
TArraySize size;
|
|
parseContext.arraySizeCheck((yyvsp[-1].interm.intermTypedNode)->getLoc(), (yyvsp[-1].interm.intermTypedNode), size, "array size");
|
|
(yyval.interm).arraySizes->addInnerSize(size);
|
|
}
|
|
#line 6300 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 201:
|
|
#line 1630 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeParameters) = (yyvsp[0].interm.typeParameters);
|
|
}
|
|
#line 6308 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 202:
|
|
#line 1633 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeParameters) = 0;
|
|
}
|
|
#line 6316 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 203:
|
|
#line 1639 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeParameters) = (yyvsp[-1].interm.typeParameters);
|
|
}
|
|
#line 6324 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 204:
|
|
#line 1645 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeParameters) = new TArraySizes;
|
|
|
|
TArraySize size;
|
|
parseContext.arraySizeCheck((yyvsp[0].interm.intermTypedNode)->getLoc(), (yyvsp[0].interm.intermTypedNode), size, "type parameter");
|
|
(yyval.interm.typeParameters)->addInnerSize(size);
|
|
}
|
|
#line 6336 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 205:
|
|
#line 1652 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeParameters) = (yyvsp[-2].interm.typeParameters);
|
|
|
|
TArraySize size;
|
|
parseContext.arraySizeCheck((yyvsp[0].interm.intermTypedNode)->getLoc(), (yyvsp[0].interm.intermTypedNode), size, "type parameter");
|
|
(yyval.interm.typeParameters)->addInnerSize(size);
|
|
}
|
|
#line 6348 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 206:
|
|
#line 1662 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtVoid;
|
|
}
|
|
#line 6357 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 207:
|
|
#line 1666 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
}
|
|
#line 6366 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 208:
|
|
#line 1670 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
}
|
|
#line 6375 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 209:
|
|
#line 1674 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "unsigned integer");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
}
|
|
#line 6385 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 210:
|
|
#line 1679 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtBool;
|
|
}
|
|
#line 6394 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 211:
|
|
#line 1683 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6404 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 212:
|
|
#line 1688 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6414 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 213:
|
|
#line 1693 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6424 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 214:
|
|
#line 1698 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtBool;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6434 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 215:
|
|
#line 1703 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtBool;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6444 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 216:
|
|
#line 1708 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtBool;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6454 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 217:
|
|
#line 1713 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6464 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 218:
|
|
#line 1718 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6474 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 219:
|
|
#line 1723 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6484 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 220:
|
|
#line 1728 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "unsigned integer vector");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6495 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 221:
|
|
#line 1734 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "unsigned integer vector");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6506 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 222:
|
|
#line 1740 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fullIntegerCheck((yyvsp[0].lex).loc, "unsigned integer vector");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6517 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 223:
|
|
#line 1746 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 6527 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 224:
|
|
#line 1751 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 6537 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 225:
|
|
#line 1756 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 6547 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 226:
|
|
#line 1761 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 6557 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 227:
|
|
#line 1766 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 3);
|
|
}
|
|
#line 6567 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 228:
|
|
#line 1771 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 4);
|
|
}
|
|
#line 6577 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 229:
|
|
#line 1776 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 2);
|
|
}
|
|
#line 6587 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 230:
|
|
#line 1781 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 6597 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 231:
|
|
#line 1786 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 4);
|
|
}
|
|
#line 6607 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 232:
|
|
#line 1791 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 2);
|
|
}
|
|
#line 6617 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 233:
|
|
#line 1796 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 3);
|
|
}
|
|
#line 6627 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 234:
|
|
#line 1801 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 6637 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 235:
|
|
#line 1807 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
}
|
|
#line 6649 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 236:
|
|
#line 1814 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16ScalarVectorCheck((yyvsp[0].lex).loc, "float16_t", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
}
|
|
#line 6659 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 237:
|
|
#line 1819 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
}
|
|
#line 6669 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 238:
|
|
#line 1824 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
}
|
|
#line 6679 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 239:
|
|
#line 1829 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit signed integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt8;
|
|
}
|
|
#line 6689 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 240:
|
|
#line 1834 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit unsigned integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint8;
|
|
}
|
|
#line 6699 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 241:
|
|
#line 1839 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit signed integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt16;
|
|
}
|
|
#line 6709 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 242:
|
|
#line 1844 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit unsigned integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint16;
|
|
}
|
|
#line 6719 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 243:
|
|
#line 1849 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit signed integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
}
|
|
#line 6729 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 244:
|
|
#line 1854 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit unsigned integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
}
|
|
#line 6739 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 245:
|
|
#line 1859 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt64;
|
|
}
|
|
#line 6749 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 246:
|
|
#line 1864 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit unsigned integer", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint64;
|
|
}
|
|
#line 6759 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 247:
|
|
#line 1869 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double vector");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double vector");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6772 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 248:
|
|
#line 1877 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double vector");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double vector");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6785 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 249:
|
|
#line 1885 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double vector");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double vector");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6798 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 250:
|
|
#line 1893 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16ScalarVectorCheck((yyvsp[0].lex).loc, "half float vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6809 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 251:
|
|
#line 1899 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16ScalarVectorCheck((yyvsp[0].lex).loc, "half float vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6820 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 252:
|
|
#line 1905 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16ScalarVectorCheck((yyvsp[0].lex).loc, "half float vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6831 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 253:
|
|
#line 1911 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6842 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 254:
|
|
#line 1917 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6853 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 255:
|
|
#line 1923 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6864 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 256:
|
|
#line 1929 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6875 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 257:
|
|
#line 1935 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6886 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 258:
|
|
#line 1941 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6897 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 259:
|
|
#line 1947 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt8;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6908 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 260:
|
|
#line 1953 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt8;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6919 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 261:
|
|
#line 1959 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt8;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6930 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 262:
|
|
#line 1965 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt16;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6941 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 263:
|
|
#line 1971 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt16;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6952 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 264:
|
|
#line 1977 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt16;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6963 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 265:
|
|
#line 1983 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 6974 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 266:
|
|
#line 1989 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 6985 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 267:
|
|
#line 1995 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit signed integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 6996 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 268:
|
|
#line 2001 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt64;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 7007 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 269:
|
|
#line 2007 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt64;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 7018 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 270:
|
|
#line 2013 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt64;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 7029 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 271:
|
|
#line 2019 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint8;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 7040 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 272:
|
|
#line 2025 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint8;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 7051 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 273:
|
|
#line 2031 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int8ScalarVectorCheck((yyvsp[0].lex).loc, "8-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint8;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 7062 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 274:
|
|
#line 2037 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint16;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 7073 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 275:
|
|
#line 2043 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint16;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 7084 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 276:
|
|
#line 2049 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int16ScalarVectorCheck((yyvsp[0].lex).loc, "16-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint16;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 7095 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 277:
|
|
#line 2055 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 7106 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 278:
|
|
#line 2061 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 7117 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 279:
|
|
#line 2067 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitInt32Check((yyvsp[0].lex).loc, "32-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 7128 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 280:
|
|
#line 2073 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint64;
|
|
(yyval.interm.type).setVector(2);
|
|
}
|
|
#line 7139 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 281:
|
|
#line 2079 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint64;
|
|
(yyval.interm.type).setVector(3);
|
|
}
|
|
#line 7150 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 282:
|
|
#line 2085 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.int64Check((yyvsp[0].lex).loc, "64-bit unsigned integer vector", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint64;
|
|
(yyval.interm.type).setVector(4);
|
|
}
|
|
#line 7161 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 283:
|
|
#line 2091 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7174 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 284:
|
|
#line 2099 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7187 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 285:
|
|
#line 2107 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7200 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 286:
|
|
#line 2115 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7213 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 287:
|
|
#line 2123 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 3);
|
|
}
|
|
#line 7226 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 288:
|
|
#line 2131 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 4);
|
|
}
|
|
#line 7239 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 289:
|
|
#line 2139 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 2);
|
|
}
|
|
#line 7252 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 290:
|
|
#line 2147 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7265 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 291:
|
|
#line 2155 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 4);
|
|
}
|
|
#line 7278 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 292:
|
|
#line 2163 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 2);
|
|
}
|
|
#line 7291 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 293:
|
|
#line 2171 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 3);
|
|
}
|
|
#line 7304 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 294:
|
|
#line 2179 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ECoreProfile | ECompatibilityProfile, "double matrix");
|
|
if (! parseContext.symbolTable.atBuiltInLevel())
|
|
parseContext.doubleCheck((yyvsp[0].lex).loc, "double matrix");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7317 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 295:
|
|
#line 2187 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7328 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 296:
|
|
#line 2193 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7339 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 297:
|
|
#line 2199 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7350 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 298:
|
|
#line 2205 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7361 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 299:
|
|
#line 2211 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(2, 3);
|
|
}
|
|
#line 7372 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 300:
|
|
#line 2217 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(2, 4);
|
|
}
|
|
#line 7383 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 301:
|
|
#line 2223 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(3, 2);
|
|
}
|
|
#line 7394 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 302:
|
|
#line 2229 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7405 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 303:
|
|
#line 2235 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(3, 4);
|
|
}
|
|
#line 7416 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 304:
|
|
#line 2241 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(4, 2);
|
|
}
|
|
#line 7427 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 305:
|
|
#line 2247 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(4, 3);
|
|
}
|
|
#line 7438 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 306:
|
|
#line 2253 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16Check((yyvsp[0].lex).loc, "half float matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat16;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7449 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 307:
|
|
#line 2259 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7460 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 308:
|
|
#line 2265 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7471 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 309:
|
|
#line 2271 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7482 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 310:
|
|
#line 2277 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7493 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 311:
|
|
#line 2283 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 3);
|
|
}
|
|
#line 7504 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 312:
|
|
#line 2289 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(2, 4);
|
|
}
|
|
#line 7515 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 313:
|
|
#line 2295 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 2);
|
|
}
|
|
#line 7526 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 314:
|
|
#line 2301 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7537 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 315:
|
|
#line 2307 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(3, 4);
|
|
}
|
|
#line 7548 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 316:
|
|
#line 2313 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 2);
|
|
}
|
|
#line 7559 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 317:
|
|
#line 2319 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 3);
|
|
}
|
|
#line 7570 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 318:
|
|
#line 2325 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat32Check((yyvsp[0].lex).loc, "float32_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7581 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 319:
|
|
#line 2331 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7592 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 320:
|
|
#line 2337 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7603 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 321:
|
|
#line 2343 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7614 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 322:
|
|
#line 2349 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 2);
|
|
}
|
|
#line 7625 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 323:
|
|
#line 2355 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 3);
|
|
}
|
|
#line 7636 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 324:
|
|
#line 2361 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(2, 4);
|
|
}
|
|
#line 7647 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 325:
|
|
#line 2367 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 2);
|
|
}
|
|
#line 7658 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 326:
|
|
#line 2373 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 3);
|
|
}
|
|
#line 7669 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 327:
|
|
#line 2379 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(3, 4);
|
|
}
|
|
#line 7680 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 328:
|
|
#line 2385 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 2);
|
|
}
|
|
#line 7691 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 329:
|
|
#line 2391 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 3);
|
|
}
|
|
#line 7702 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 330:
|
|
#line 2397 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.explicitFloat64Check((yyvsp[0].lex).loc, "float64_t matrix", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtDouble;
|
|
(yyval.interm.type).setMatrix(4, 4);
|
|
}
|
|
#line 7713 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 331:
|
|
#line 2403 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtAccStruct;
|
|
}
|
|
#line 7722 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 332:
|
|
#line 2407 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtAccStruct;
|
|
}
|
|
#line 7731 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 333:
|
|
#line 2411 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtRayQuery;
|
|
}
|
|
#line 7740 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 334:
|
|
#line 2415 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.vulkanRemoved((yyvsp[0].lex).loc, "atomic counter types");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtAtomicUint;
|
|
}
|
|
#line 7750 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 335:
|
|
#line 2420 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd1D);
|
|
}
|
|
#line 7760 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 336:
|
|
#line 2426 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D);
|
|
}
|
|
#line 7770 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 337:
|
|
#line 2431 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd3D);
|
|
}
|
|
#line 7780 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 338:
|
|
#line 2436 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdCube);
|
|
}
|
|
#line 7790 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 339:
|
|
#line 2441 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D, false, true);
|
|
}
|
|
#line 7800 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 340:
|
|
#line 2446 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdCube, false, true);
|
|
}
|
|
#line 7810 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 341:
|
|
#line 2451 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D, true);
|
|
}
|
|
#line 7820 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 342:
|
|
#line 2456 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D, true, true);
|
|
}
|
|
#line 7830 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 343:
|
|
#line 2462 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd1D, false, true);
|
|
}
|
|
#line 7840 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 344:
|
|
#line 2467 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd1D, true);
|
|
}
|
|
#line 7850 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 345:
|
|
#line 2472 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd1D, true, true);
|
|
}
|
|
#line 7860 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 346:
|
|
#line 2477 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdCube, true);
|
|
}
|
|
#line 7870 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 347:
|
|
#line 2482 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdCube, true, true);
|
|
}
|
|
#line 7880 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 348:
|
|
#line 2487 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd1D);
|
|
}
|
|
#line 7891 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 349:
|
|
#line 2493 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd2D);
|
|
}
|
|
#line 7902 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 350:
|
|
#line 2499 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd3D);
|
|
}
|
|
#line 7913 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 351:
|
|
#line 2505 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdCube);
|
|
}
|
|
#line 7924 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 352:
|
|
#line 2511 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd1D, false, true);
|
|
}
|
|
#line 7935 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 353:
|
|
#line 2517 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd2D, false, true);
|
|
}
|
|
#line 7946 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 354:
|
|
#line 2523 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdCube, false, true);
|
|
}
|
|
#line 7957 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 355:
|
|
#line 2529 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd1D, true);
|
|
}
|
|
#line 7968 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 356:
|
|
#line 2535 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd2D, true);
|
|
}
|
|
#line 7979 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 357:
|
|
#line 2541 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd1D, true, true);
|
|
}
|
|
#line 7990 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 358:
|
|
#line 2547 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd2D, true, true);
|
|
}
|
|
#line 8001 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 359:
|
|
#line 2553 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdCube, true);
|
|
}
|
|
#line 8012 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 360:
|
|
#line 2559 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdCube, true, true);
|
|
}
|
|
#line 8023 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 361:
|
|
#line 2565 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd1D);
|
|
}
|
|
#line 8033 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 362:
|
|
#line 2571 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd2D);
|
|
}
|
|
#line 8043 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 363:
|
|
#line 2576 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd3D);
|
|
}
|
|
#line 8053 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 364:
|
|
#line 2581 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, EsdCube);
|
|
}
|
|
#line 8063 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 365:
|
|
#line 2586 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd2D, true);
|
|
}
|
|
#line 8073 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 366:
|
|
#line 2591 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd2D);
|
|
}
|
|
#line 8083 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 367:
|
|
#line 2596 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd3D);
|
|
}
|
|
#line 8093 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 368:
|
|
#line 2601 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, EsdCube);
|
|
}
|
|
#line 8103 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 369:
|
|
#line 2607 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd1D, true);
|
|
}
|
|
#line 8113 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 370:
|
|
#line 2612 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, EsdCube, true);
|
|
}
|
|
#line 8123 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 371:
|
|
#line 2617 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd1D);
|
|
}
|
|
#line 8133 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 372:
|
|
#line 2622 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd1D, true);
|
|
}
|
|
#line 8143 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 373:
|
|
#line 2627 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, EsdCube, true);
|
|
}
|
|
#line 8153 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 374:
|
|
#line 2632 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, EsdCube, true);
|
|
}
|
|
#line 8163 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 375:
|
|
#line 2637 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, EsdCube, true);
|
|
}
|
|
#line 8173 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 376:
|
|
#line 2642 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, EsdCube, true);
|
|
}
|
|
#line 8183 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 377:
|
|
#line 2648 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd2D, true);
|
|
}
|
|
#line 8193 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 378:
|
|
#line 2653 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd2D);
|
|
}
|
|
#line 8203 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 379:
|
|
#line 2658 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd3D);
|
|
}
|
|
#line 8213 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 380:
|
|
#line 2663 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd2D, true);
|
|
}
|
|
#line 8223 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 381:
|
|
#line 2668 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, EsdCube);
|
|
}
|
|
#line 8233 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 382:
|
|
#line 2673 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd2D);
|
|
}
|
|
#line 8243 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 383:
|
|
#line 2678 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd3D);
|
|
}
|
|
#line 8253 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 384:
|
|
#line 2683 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, EsdCube);
|
|
}
|
|
#line 8263 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 385:
|
|
#line 2688 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd2D, true);
|
|
}
|
|
#line 8273 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 386:
|
|
#line 2693 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd2D);
|
|
}
|
|
#line 8283 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 387:
|
|
#line 2698 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd3D);
|
|
}
|
|
#line 8293 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 388:
|
|
#line 2703 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, EsdCube);
|
|
}
|
|
#line 8303 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 389:
|
|
#line 2708 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd2D, true);
|
|
}
|
|
#line 8313 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 390:
|
|
#line 2713 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setPureSampler(false);
|
|
}
|
|
#line 8323 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 391:
|
|
#line 2718 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setPureSampler(true);
|
|
}
|
|
#line 8333 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 392:
|
|
#line 2724 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdRect);
|
|
}
|
|
#line 8343 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 393:
|
|
#line 2729 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdRect, false, true);
|
|
}
|
|
#line 8353 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 394:
|
|
#line 2734 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdRect);
|
|
}
|
|
#line 8364 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 395:
|
|
#line 2740 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdRect, false, true);
|
|
}
|
|
#line 8375 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 396:
|
|
#line 2746 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, EsdRect);
|
|
}
|
|
#line 8385 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 397:
|
|
#line 2751 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, EsdRect);
|
|
}
|
|
#line 8395 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 398:
|
|
#line 2756 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, EsdBuffer);
|
|
}
|
|
#line 8405 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 399:
|
|
#line 2761 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, EsdBuffer);
|
|
}
|
|
#line 8416 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 400:
|
|
#line 2767 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, EsdBuffer);
|
|
}
|
|
#line 8426 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 401:
|
|
#line 2772 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, EsdBuffer);
|
|
}
|
|
#line 8436 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 402:
|
|
#line 2777 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D, false, false, true);
|
|
}
|
|
#line 8446 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 403:
|
|
#line 2782 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd2D, false, false, true);
|
|
}
|
|
#line 8457 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 404:
|
|
#line 2788 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd2D, false, false, true);
|
|
}
|
|
#line 8467 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 405:
|
|
#line 2793 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd2D, false, false, true);
|
|
}
|
|
#line 8477 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 406:
|
|
#line 2798 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D, true, false, true);
|
|
}
|
|
#line 8487 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 407:
|
|
#line 2803 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float sampler", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat16, Esd2D, true, false, true);
|
|
}
|
|
#line 8498 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 408:
|
|
#line 2809 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtInt, Esd2D, true, false, true);
|
|
}
|
|
#line 8508 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 409:
|
|
#line 2814 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtUint, Esd2D, true, false, true);
|
|
}
|
|
#line 8518 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 410:
|
|
#line 2819 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd1D);
|
|
}
|
|
#line 8528 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 411:
|
|
#line 2824 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd1D);
|
|
}
|
|
#line 8539 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 412:
|
|
#line 2830 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd2D);
|
|
}
|
|
#line 8550 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 413:
|
|
#line 2836 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd3D);
|
|
}
|
|
#line 8561 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 414:
|
|
#line 2842 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, EsdCube);
|
|
}
|
|
#line 8572 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 415:
|
|
#line 2848 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd1D, true);
|
|
}
|
|
#line 8582 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 416:
|
|
#line 2853 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd1D, true);
|
|
}
|
|
#line 8593 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 417:
|
|
#line 2859 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd2D, true);
|
|
}
|
|
#line 8604 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 418:
|
|
#line 2865 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, EsdCube, true);
|
|
}
|
|
#line 8615 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 419:
|
|
#line 2871 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd1D);
|
|
}
|
|
#line 8625 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 420:
|
|
#line 2876 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd1D, true);
|
|
}
|
|
#line 8635 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 421:
|
|
#line 2881 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd1D);
|
|
}
|
|
#line 8645 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 422:
|
|
#line 2886 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd1D, true);
|
|
}
|
|
#line 8655 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 423:
|
|
#line 2891 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, EsdRect);
|
|
}
|
|
#line 8665 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 424:
|
|
#line 2896 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, EsdRect);
|
|
}
|
|
#line 8676 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 425:
|
|
#line 2902 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, EsdRect);
|
|
}
|
|
#line 8686 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 426:
|
|
#line 2907 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, EsdRect);
|
|
}
|
|
#line 8696 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 427:
|
|
#line 2912 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, EsdBuffer);
|
|
}
|
|
#line 8706 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 428:
|
|
#line 2917 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, EsdBuffer);
|
|
}
|
|
#line 8717 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 429:
|
|
#line 2923 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, EsdBuffer);
|
|
}
|
|
#line 8727 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 430:
|
|
#line 2928 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, EsdBuffer);
|
|
}
|
|
#line 8737 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 431:
|
|
#line 2933 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd2D, false, false, true);
|
|
}
|
|
#line 8747 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 432:
|
|
#line 2938 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd2D, false, false, true);
|
|
}
|
|
#line 8758 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 433:
|
|
#line 2944 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd2D, false, false, true);
|
|
}
|
|
#line 8768 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 434:
|
|
#line 2949 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd2D, false, false, true);
|
|
}
|
|
#line 8778 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 435:
|
|
#line 2954 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat, Esd2D, true, false, true);
|
|
}
|
|
#line 8788 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 436:
|
|
#line 2959 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float texture", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtFloat16, Esd2D, true, false, true);
|
|
}
|
|
#line 8799 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 437:
|
|
#line 2965 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtInt, Esd2D, true, false, true);
|
|
}
|
|
#line 8809 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 438:
|
|
#line 2970 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setTexture(EbtUint, Esd2D, true, false, true);
|
|
}
|
|
#line 8819 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 439:
|
|
#line 2975 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd1D);
|
|
}
|
|
#line 8829 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 440:
|
|
#line 2980 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd1D);
|
|
}
|
|
#line 8840 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 441:
|
|
#line 2986 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd1D);
|
|
}
|
|
#line 8850 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 442:
|
|
#line 2991 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd1D);
|
|
}
|
|
#line 8860 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 443:
|
|
#line 2996 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd2D);
|
|
}
|
|
#line 8870 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 444:
|
|
#line 3001 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd2D);
|
|
}
|
|
#line 8881 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 445:
|
|
#line 3007 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd2D);
|
|
}
|
|
#line 8891 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 446:
|
|
#line 3012 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd2D);
|
|
}
|
|
#line 8901 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 447:
|
|
#line 3017 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd3D);
|
|
}
|
|
#line 8911 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 448:
|
|
#line 3022 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd3D);
|
|
}
|
|
#line 8922 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 449:
|
|
#line 3028 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd3D);
|
|
}
|
|
#line 8932 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 450:
|
|
#line 3033 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd3D);
|
|
}
|
|
#line 8942 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 451:
|
|
#line 3038 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, EsdRect);
|
|
}
|
|
#line 8952 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 452:
|
|
#line 3043 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, EsdRect);
|
|
}
|
|
#line 8963 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 453:
|
|
#line 3049 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, EsdRect);
|
|
}
|
|
#line 8973 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 454:
|
|
#line 3054 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, EsdRect);
|
|
}
|
|
#line 8983 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 455:
|
|
#line 3059 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, EsdCube);
|
|
}
|
|
#line 8993 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 456:
|
|
#line 3064 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, EsdCube);
|
|
}
|
|
#line 9004 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 457:
|
|
#line 3070 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, EsdCube);
|
|
}
|
|
#line 9014 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 458:
|
|
#line 3075 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, EsdCube);
|
|
}
|
|
#line 9024 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 459:
|
|
#line 3080 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, EsdBuffer);
|
|
}
|
|
#line 9034 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 460:
|
|
#line 3085 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, EsdBuffer);
|
|
}
|
|
#line 9045 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 461:
|
|
#line 3091 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, EsdBuffer);
|
|
}
|
|
#line 9055 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 462:
|
|
#line 3096 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, EsdBuffer);
|
|
}
|
|
#line 9065 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 463:
|
|
#line 3101 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd1D, true);
|
|
}
|
|
#line 9075 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 464:
|
|
#line 3106 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd1D, true);
|
|
}
|
|
#line 9086 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 465:
|
|
#line 3112 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd1D, true);
|
|
}
|
|
#line 9096 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 466:
|
|
#line 3117 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd1D, true);
|
|
}
|
|
#line 9106 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 467:
|
|
#line 3122 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd2D, true);
|
|
}
|
|
#line 9116 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 468:
|
|
#line 3127 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd2D, true);
|
|
}
|
|
#line 9127 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 469:
|
|
#line 3133 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd2D, true);
|
|
}
|
|
#line 9137 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 470:
|
|
#line 3138 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd2D, true);
|
|
}
|
|
#line 9147 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 471:
|
|
#line 3143 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, EsdCube, true);
|
|
}
|
|
#line 9157 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 472:
|
|
#line 3148 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, EsdCube, true);
|
|
}
|
|
#line 9168 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 473:
|
|
#line 3154 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, EsdCube, true);
|
|
}
|
|
#line 9178 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 474:
|
|
#line 3159 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, EsdCube, true);
|
|
}
|
|
#line 9188 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 475:
|
|
#line 3164 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd2D, false, false, true);
|
|
}
|
|
#line 9198 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 476:
|
|
#line 3169 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd2D, false, false, true);
|
|
}
|
|
#line 9209 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 477:
|
|
#line 3175 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd2D, false, false, true);
|
|
}
|
|
#line 9219 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 478:
|
|
#line 3180 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd2D, false, false, true);
|
|
}
|
|
#line 9229 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 479:
|
|
#line 3185 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat, Esd2D, true, false, true);
|
|
}
|
|
#line 9239 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 480:
|
|
#line 3190 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float image", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtFloat16, Esd2D, true, false, true);
|
|
}
|
|
#line 9250 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 481:
|
|
#line 3196 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtInt, Esd2D, true, false, true);
|
|
}
|
|
#line 9260 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 482:
|
|
#line 3201 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setImage(EbtUint, Esd2D, true, false, true);
|
|
}
|
|
#line 9270 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 483:
|
|
#line 3206 "glslang.y" /* yacc.c:1646 */
|
|
{ // GL_OES_EGL_image_external
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D);
|
|
(yyval.interm.type).sampler.external = true;
|
|
}
|
|
#line 9281 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 484:
|
|
#line 3212 "glslang.y" /* yacc.c:1646 */
|
|
{ // GL_EXT_YUV_target
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.set(EbtFloat, Esd2D);
|
|
(yyval.interm.type).sampler.yuv = true;
|
|
}
|
|
#line 9292 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 485:
|
|
#line 3218 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtFloat);
|
|
}
|
|
#line 9303 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 486:
|
|
#line 3224 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtFloat, true);
|
|
}
|
|
#line 9314 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 487:
|
|
#line 3230 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float subpass input", parseContext.symbolTable.atBuiltInLevel());
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtFloat16);
|
|
}
|
|
#line 9326 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 488:
|
|
#line 3237 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.float16OpaqueCheck((yyvsp[0].lex).loc, "half float subpass input", parseContext.symbolTable.atBuiltInLevel());
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtFloat16, true);
|
|
}
|
|
#line 9338 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 489:
|
|
#line 3244 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtInt);
|
|
}
|
|
#line 9349 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 490:
|
|
#line 3250 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtInt, true);
|
|
}
|
|
#line 9360 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 491:
|
|
#line 3256 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtUint);
|
|
}
|
|
#line 9371 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 492:
|
|
#line 3262 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[0].lex).loc, EShLangFragment, "subpass input");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtSampler;
|
|
(yyval.interm.type).sampler.setSubpass(EbtUint, true);
|
|
}
|
|
#line 9382 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 493:
|
|
#line 3268 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.fcoopmatCheck((yyvsp[0].lex).loc, "fcoopmatNV", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtFloat;
|
|
(yyval.interm.type).coopmat = true;
|
|
}
|
|
#line 9393 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 494:
|
|
#line 3274 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.intcoopmatCheck((yyvsp[0].lex).loc, "icoopmatNV", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtInt;
|
|
(yyval.interm.type).coopmat = true;
|
|
}
|
|
#line 9404 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 495:
|
|
#line 3280 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.intcoopmatCheck((yyvsp[0].lex).loc, "ucoopmatNV", parseContext.symbolTable.atBuiltInLevel());
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtUint;
|
|
(yyval.interm.type).coopmat = true;
|
|
}
|
|
#line 9415 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 496:
|
|
#line 3287 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.type) = (yyvsp[0].interm.type);
|
|
(yyval.interm.type).qualifier.storage = parseContext.symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary;
|
|
parseContext.structTypeCheck((yyval.interm.type).loc, (yyval.interm.type));
|
|
}
|
|
#line 9425 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 497:
|
|
#line 3292 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
//
|
|
// This is for user defined type names. The lexical phase looked up the
|
|
// type.
|
|
//
|
|
if (const TVariable* variable = ((yyvsp[0].lex).symbol)->getAsVariable()) {
|
|
const TType& structure = variable->getType();
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
(yyval.interm.type).basicType = EbtStruct;
|
|
(yyval.interm.type).userDef = &structure;
|
|
} else
|
|
parseContext.error((yyvsp[0].lex).loc, "expected type name", (yyvsp[0].lex).string->c_str(), "");
|
|
}
|
|
#line 9443 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 498:
|
|
#line 3308 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 130, 0, "highp precision qualifier");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
parseContext.handlePrecisionQualifier((yyvsp[0].lex).loc, (yyval.interm.type).qualifier, EpqHigh);
|
|
}
|
|
#line 9453 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 499:
|
|
#line 3313 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 130, 0, "mediump precision qualifier");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
parseContext.handlePrecisionQualifier((yyvsp[0].lex).loc, (yyval.interm.type).qualifier, EpqMedium);
|
|
}
|
|
#line 9463 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 500:
|
|
#line 3318 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ENoProfile, 130, 0, "lowp precision qualifier");
|
|
(yyval.interm.type).init((yyvsp[0].lex).loc, parseContext.symbolTable.atGlobalLevel());
|
|
parseContext.handlePrecisionQualifier((yyvsp[0].lex).loc, (yyval.interm.type).qualifier, EpqLow);
|
|
}
|
|
#line 9473 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 501:
|
|
#line 3326 "glslang.y" /* yacc.c:1646 */
|
|
{ parseContext.nestedStructCheck((yyvsp[-2].lex).loc); }
|
|
#line 9479 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 502:
|
|
#line 3326 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
TType* structure = new TType((yyvsp[-1].interm.typeList), *(yyvsp[-4].lex).string);
|
|
parseContext.structArrayCheck((yyvsp[-4].lex).loc, *structure);
|
|
TVariable* userTypeDef = new TVariable((yyvsp[-4].lex).string, *structure, true);
|
|
if (! parseContext.symbolTable.insert(*userTypeDef))
|
|
parseContext.error((yyvsp[-4].lex).loc, "redefinition", (yyvsp[-4].lex).string->c_str(), "struct");
|
|
(yyval.interm.type).init((yyvsp[-5].lex).loc);
|
|
(yyval.interm.type).basicType = EbtStruct;
|
|
(yyval.interm.type).userDef = structure;
|
|
--parseContext.structNestingLevel;
|
|
}
|
|
#line 9495 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 503:
|
|
#line 3337 "glslang.y" /* yacc.c:1646 */
|
|
{ parseContext.nestedStructCheck((yyvsp[-1].lex).loc); }
|
|
#line 9501 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 504:
|
|
#line 3337 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
TType* structure = new TType((yyvsp[-1].interm.typeList), TString(""));
|
|
(yyval.interm.type).init((yyvsp[-4].lex).loc);
|
|
(yyval.interm.type).basicType = EbtStruct;
|
|
(yyval.interm.type).userDef = structure;
|
|
--parseContext.structNestingLevel;
|
|
}
|
|
#line 9513 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 505:
|
|
#line 3347 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeList) = (yyvsp[0].interm.typeList);
|
|
}
|
|
#line 9521 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 506:
|
|
#line 3350 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeList) = (yyvsp[-1].interm.typeList);
|
|
for (unsigned int i = 0; i < (yyvsp[0].interm.typeList)->size(); ++i) {
|
|
for (unsigned int j = 0; j < (yyval.interm.typeList)->size(); ++j) {
|
|
if ((*(yyval.interm.typeList))[j].type->getFieldName() == (*(yyvsp[0].interm.typeList))[i].type->getFieldName())
|
|
parseContext.error((*(yyvsp[0].interm.typeList))[i].loc, "duplicate member name:", "", (*(yyvsp[0].interm.typeList))[i].type->getFieldName().c_str());
|
|
}
|
|
(yyval.interm.typeList)->push_back((*(yyvsp[0].interm.typeList))[i]);
|
|
}
|
|
}
|
|
#line 9536 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 507:
|
|
#line 3363 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-2].interm.type).arraySizes) {
|
|
parseContext.profileRequires((yyvsp[-2].interm.type).loc, ENoProfile, 120, E_GL_3DL_array_objects, "arrayed type");
|
|
parseContext.profileRequires((yyvsp[-2].interm.type).loc, EEsProfile, 300, 0, "arrayed type");
|
|
if (parseContext.isEsProfile())
|
|
parseContext.arraySizeRequiredCheck((yyvsp[-2].interm.type).loc, *(yyvsp[-2].interm.type).arraySizes);
|
|
}
|
|
|
|
(yyval.interm.typeList) = (yyvsp[-1].interm.typeList);
|
|
|
|
parseContext.voidErrorCheck((yyvsp[-2].interm.type).loc, (*(yyvsp[-1].interm.typeList))[0].type->getFieldName(), (yyvsp[-2].interm.type).basicType);
|
|
parseContext.precisionQualifierCheck((yyvsp[-2].interm.type).loc, (yyvsp[-2].interm.type).basicType, (yyvsp[-2].interm.type).qualifier);
|
|
|
|
for (unsigned int i = 0; i < (yyval.interm.typeList)->size(); ++i) {
|
|
TType type((yyvsp[-2].interm.type));
|
|
type.setFieldName((*(yyval.interm.typeList))[i].type->getFieldName());
|
|
type.transferArraySizes((*(yyval.interm.typeList))[i].type->getArraySizes());
|
|
type.copyArrayInnerSizes((yyvsp[-2].interm.type).arraySizes);
|
|
parseContext.arrayOfArrayVersionCheck((*(yyval.interm.typeList))[i].loc, type.getArraySizes());
|
|
(*(yyval.interm.typeList))[i].type->shallowCopy(type);
|
|
}
|
|
}
|
|
#line 9563 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 508:
|
|
#line 3385 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-2].interm.type).arraySizes) {
|
|
parseContext.profileRequires((yyvsp[-2].interm.type).loc, ENoProfile, 120, E_GL_3DL_array_objects, "arrayed type");
|
|
parseContext.profileRequires((yyvsp[-2].interm.type).loc, EEsProfile, 300, 0, "arrayed type");
|
|
if (parseContext.isEsProfile())
|
|
parseContext.arraySizeRequiredCheck((yyvsp[-2].interm.type).loc, *(yyvsp[-2].interm.type).arraySizes);
|
|
}
|
|
|
|
(yyval.interm.typeList) = (yyvsp[-1].interm.typeList);
|
|
|
|
parseContext.memberQualifierCheck((yyvsp[-3].interm.type));
|
|
parseContext.voidErrorCheck((yyvsp[-2].interm.type).loc, (*(yyvsp[-1].interm.typeList))[0].type->getFieldName(), (yyvsp[-2].interm.type).basicType);
|
|
parseContext.mergeQualifiers((yyvsp[-2].interm.type).loc, (yyvsp[-2].interm.type).qualifier, (yyvsp[-3].interm.type).qualifier, true);
|
|
parseContext.precisionQualifierCheck((yyvsp[-2].interm.type).loc, (yyvsp[-2].interm.type).basicType, (yyvsp[-2].interm.type).qualifier);
|
|
|
|
for (unsigned int i = 0; i < (yyval.interm.typeList)->size(); ++i) {
|
|
TType type((yyvsp[-2].interm.type));
|
|
type.setFieldName((*(yyval.interm.typeList))[i].type->getFieldName());
|
|
type.transferArraySizes((*(yyval.interm.typeList))[i].type->getArraySizes());
|
|
type.copyArrayInnerSizes((yyvsp[-2].interm.type).arraySizes);
|
|
parseContext.arrayOfArrayVersionCheck((*(yyval.interm.typeList))[i].loc, type.getArraySizes());
|
|
(*(yyval.interm.typeList))[i].type->shallowCopy(type);
|
|
}
|
|
}
|
|
#line 9592 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 509:
|
|
#line 3412 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeList) = new TTypeList;
|
|
(yyval.interm.typeList)->push_back((yyvsp[0].interm.typeLine));
|
|
}
|
|
#line 9601 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 510:
|
|
#line 3416 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeList)->push_back((yyvsp[0].interm.typeLine));
|
|
}
|
|
#line 9609 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 511:
|
|
#line 3422 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.typeLine).type = new TType(EbtVoid);
|
|
(yyval.interm.typeLine).loc = (yyvsp[0].lex).loc;
|
|
(yyval.interm.typeLine).type->setFieldName(*(yyvsp[0].lex).string);
|
|
}
|
|
#line 9619 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 512:
|
|
#line 3427 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.arrayOfArrayVersionCheck((yyvsp[-1].lex).loc, (yyvsp[0].interm).arraySizes);
|
|
|
|
(yyval.interm.typeLine).type = new TType(EbtVoid);
|
|
(yyval.interm.typeLine).loc = (yyvsp[-1].lex).loc;
|
|
(yyval.interm.typeLine).type->setFieldName(*(yyvsp[-1].lex).string);
|
|
(yyval.interm.typeLine).type->transferArraySizes((yyvsp[0].interm).arraySizes);
|
|
}
|
|
#line 9632 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 513:
|
|
#line 3438 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 9640 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 514:
|
|
#line 3442 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
const char* initFeature = "{ } style initializers";
|
|
parseContext.requireProfile((yyvsp[-2].lex).loc, ~EEsProfile, initFeature);
|
|
parseContext.profileRequires((yyvsp[-2].lex).loc, ~EEsProfile, 420, E_GL_ARB_shading_language_420pack, initFeature);
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-1].interm.intermTypedNode);
|
|
}
|
|
#line 9651 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 515:
|
|
#line 3448 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
const char* initFeature = "{ } style initializers";
|
|
parseContext.requireProfile((yyvsp[-3].lex).loc, ~EEsProfile, initFeature);
|
|
parseContext.profileRequires((yyvsp[-3].lex).loc, ~EEsProfile, 420, E_GL_ARB_shading_language_420pack, initFeature);
|
|
(yyval.interm.intermTypedNode) = (yyvsp[-2].interm.intermTypedNode);
|
|
}
|
|
#line 9662 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 516:
|
|
#line 3459 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.growAggregate(0, (yyvsp[0].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode)->getLoc());
|
|
}
|
|
#line 9670 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 517:
|
|
#line 3462 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = parseContext.intermediate.growAggregate((yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.intermTypedNode));
|
|
}
|
|
#line 9678 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 518:
|
|
#line 3469 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9684 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 519:
|
|
#line 3473 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9690 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 520:
|
|
#line 3474 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9696 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 521:
|
|
#line 3480 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9702 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 522:
|
|
#line 3481 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9708 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 523:
|
|
#line 3482 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9714 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 524:
|
|
#line 3483 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9720 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 525:
|
|
#line 3484 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9726 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 526:
|
|
#line 3485 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9732 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 527:
|
|
#line 3486 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9738 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 528:
|
|
#line 3488 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9744 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 529:
|
|
#line 3494 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[-1].lex).loc, EShLangFragment, "demote");
|
|
parseContext.requireExtensions((yyvsp[-1].lex).loc, 1, &E_GL_EXT_demote_to_helper_invocation, "demote");
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpDemote, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 9754 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 530:
|
|
#line 3503 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = 0; }
|
|
#line 9760 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 531:
|
|
#line 3504 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.push();
|
|
++parseContext.statementNestingLevel;
|
|
}
|
|
#line 9769 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 532:
|
|
#line 3508 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.pop(&parseContext.defaultPrecision[0]);
|
|
--parseContext.statementNestingLevel;
|
|
}
|
|
#line 9778 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 533:
|
|
#line 3512 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-2].interm.intermNode) && (yyvsp[-2].interm.intermNode)->getAsAggregate())
|
|
(yyvsp[-2].interm.intermNode)->getAsAggregate()->setOperator(EOpSequence);
|
|
(yyval.interm.intermNode) = (yyvsp[-2].interm.intermNode);
|
|
}
|
|
#line 9788 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 534:
|
|
#line 3520 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9794 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 535:
|
|
#line 3521 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = (yyvsp[0].interm.intermNode); }
|
|
#line 9800 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 536:
|
|
#line 3525 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
++parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 9808 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 537:
|
|
#line 3528 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
--parseContext.controlFlowNestingLevel;
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9817 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 538:
|
|
#line 3532 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.push();
|
|
++parseContext.statementNestingLevel;
|
|
++parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 9827 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 539:
|
|
#line 3537 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.pop(&parseContext.defaultPrecision[0]);
|
|
--parseContext.statementNestingLevel;
|
|
--parseContext.controlFlowNestingLevel;
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9838 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 540:
|
|
#line 3546 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 9846 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 541:
|
|
#line 3549 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[-1].interm.intermNode) && (yyvsp[-1].interm.intermNode)->getAsAggregate())
|
|
(yyvsp[-1].interm.intermNode)->getAsAggregate()->setOperator(EOpSequence);
|
|
(yyval.interm.intermNode) = (yyvsp[-1].interm.intermNode);
|
|
}
|
|
#line 9856 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 542:
|
|
#line 3557 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = parseContext.intermediate.makeAggregate((yyvsp[0].interm.intermNode));
|
|
if ((yyvsp[0].interm.intermNode) && (yyvsp[0].interm.intermNode)->getAsBranchNode() && ((yyvsp[0].interm.intermNode)->getAsBranchNode()->getFlowOp() == EOpCase ||
|
|
(yyvsp[0].interm.intermNode)->getAsBranchNode()->getFlowOp() == EOpDefault)) {
|
|
parseContext.wrapupSwitchSubsequence(0, (yyvsp[0].interm.intermNode));
|
|
(yyval.interm.intermNode) = 0; // start a fresh subsequence for what's after this case
|
|
}
|
|
}
|
|
#line 9869 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 543:
|
|
#line 3565 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[0].interm.intermNode) && (yyvsp[0].interm.intermNode)->getAsBranchNode() && ((yyvsp[0].interm.intermNode)->getAsBranchNode()->getFlowOp() == EOpCase ||
|
|
(yyvsp[0].interm.intermNode)->getAsBranchNode()->getFlowOp() == EOpDefault)) {
|
|
parseContext.wrapupSwitchSubsequence((yyvsp[-1].interm.intermNode) ? (yyvsp[-1].interm.intermNode)->getAsAggregate() : 0, (yyvsp[0].interm.intermNode));
|
|
(yyval.interm.intermNode) = 0; // start a fresh subsequence for what's after this case
|
|
} else
|
|
(yyval.interm.intermNode) = parseContext.intermediate.growAggregate((yyvsp[-1].interm.intermNode), (yyvsp[0].interm.intermNode));
|
|
}
|
|
#line 9882 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 544:
|
|
#line 3576 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = 0; }
|
|
#line 9888 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 545:
|
|
#line 3577 "glslang.y" /* yacc.c:1646 */
|
|
{ (yyval.interm.intermNode) = static_cast<TIntermNode*>((yyvsp[-1].interm.intermTypedNode)); }
|
|
#line 9894 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 546:
|
|
#line 3581 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9902 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 547:
|
|
#line 3585 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.handleSelectionAttributes(*(yyvsp[-1].interm.attributes), (yyvsp[0].interm.intermNode));
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9911 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 548:
|
|
#line 3592 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.boolCheck((yyvsp[-4].lex).loc, (yyvsp[-2].interm.intermTypedNode));
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addSelection((yyvsp[-2].interm.intermTypedNode), (yyvsp[0].interm.nodePair), (yyvsp[-4].lex).loc);
|
|
}
|
|
#line 9920 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 549:
|
|
#line 3599 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.nodePair).node1 = (yyvsp[-2].interm.intermNode);
|
|
(yyval.interm.nodePair).node2 = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9929 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 550:
|
|
#line 3603 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.nodePair).node1 = (yyvsp[0].interm.intermNode);
|
|
(yyval.interm.nodePair).node2 = 0;
|
|
}
|
|
#line 9938 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 551:
|
|
#line 3611 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
parseContext.boolCheck((yyvsp[0].interm.intermTypedNode)->getLoc(), (yyvsp[0].interm.intermTypedNode));
|
|
}
|
|
#line 9947 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 552:
|
|
#line 3615 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.boolCheck((yyvsp[-2].lex).loc, (yyvsp[-3].interm.type));
|
|
|
|
TType type((yyvsp[-3].interm.type));
|
|
TIntermNode* initNode = parseContext.declareVariable((yyvsp[-2].lex).loc, *(yyvsp[-2].lex).string, (yyvsp[-3].interm.type), 0, (yyvsp[0].interm.intermTypedNode));
|
|
if (initNode)
|
|
(yyval.interm.intermTypedNode) = initNode->getAsTyped();
|
|
else
|
|
(yyval.interm.intermTypedNode) = 0;
|
|
}
|
|
#line 9962 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 553:
|
|
#line 3628 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9970 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 554:
|
|
#line 3632 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.handleSwitchAttributes(*(yyvsp[-1].interm.attributes), (yyvsp[0].interm.intermNode));
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 9979 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 555:
|
|
#line 3639 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// start new switch sequence on the switch stack
|
|
++parseContext.controlFlowNestingLevel;
|
|
++parseContext.statementNestingLevel;
|
|
parseContext.switchSequenceStack.push_back(new TIntermSequence);
|
|
parseContext.switchLevel.push_back(parseContext.statementNestingLevel);
|
|
parseContext.symbolTable.push();
|
|
}
|
|
#line 9992 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 556:
|
|
#line 3647 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = parseContext.addSwitch((yyvsp[-7].lex).loc, (yyvsp[-5].interm.intermTypedNode), (yyvsp[-1].interm.intermNode) ? (yyvsp[-1].interm.intermNode)->getAsAggregate() : 0);
|
|
delete parseContext.switchSequenceStack.back();
|
|
parseContext.switchSequenceStack.pop_back();
|
|
parseContext.switchLevel.pop_back();
|
|
parseContext.symbolTable.pop(&parseContext.defaultPrecision[0]);
|
|
--parseContext.statementNestingLevel;
|
|
--parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10006 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 557:
|
|
#line 3659 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = 0;
|
|
}
|
|
#line 10014 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 558:
|
|
#line 3662 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10022 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 559:
|
|
#line 3668 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = 0;
|
|
if (parseContext.switchLevel.size() == 0)
|
|
parseContext.error((yyvsp[-2].lex).loc, "cannot appear outside switch statement", "case", "");
|
|
else if (parseContext.switchLevel.back() != parseContext.statementNestingLevel)
|
|
parseContext.error((yyvsp[-2].lex).loc, "cannot be nested inside control flow", "case", "");
|
|
else {
|
|
parseContext.constantValueCheck((yyvsp[-1].interm.intermTypedNode), "case");
|
|
parseContext.integerCheck((yyvsp[-1].interm.intermTypedNode), "case");
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpCase, (yyvsp[-1].interm.intermTypedNode), (yyvsp[-2].lex).loc);
|
|
}
|
|
}
|
|
#line 10039 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 560:
|
|
#line 3680 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = 0;
|
|
if (parseContext.switchLevel.size() == 0)
|
|
parseContext.error((yyvsp[-1].lex).loc, "cannot appear outside switch statement", "default", "");
|
|
else if (parseContext.switchLevel.back() != parseContext.statementNestingLevel)
|
|
parseContext.error((yyvsp[-1].lex).loc, "cannot be nested inside control flow", "default", "");
|
|
else
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpDefault, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 10053 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 561:
|
|
#line 3692 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10061 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 562:
|
|
#line 3696 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.handleLoopAttributes(*(yyvsp[-1].interm.attributes), (yyvsp[0].interm.intermNode));
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10070 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 563:
|
|
#line 3703 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if (! parseContext.limits.whileLoops)
|
|
parseContext.error((yyvsp[-1].lex).loc, "while loops not available", "limitation", "");
|
|
parseContext.symbolTable.push();
|
|
++parseContext.loopNestingLevel;
|
|
++parseContext.statementNestingLevel;
|
|
++parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10083 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 564:
|
|
#line 3711 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.pop(&parseContext.defaultPrecision[0]);
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addLoop((yyvsp[0].interm.intermNode), (yyvsp[-2].interm.intermTypedNode), 0, true, (yyvsp[-5].lex).loc);
|
|
--parseContext.loopNestingLevel;
|
|
--parseContext.statementNestingLevel;
|
|
--parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10095 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 565:
|
|
#line 3718 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
++parseContext.loopNestingLevel;
|
|
++parseContext.statementNestingLevel;
|
|
++parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10105 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 566:
|
|
#line 3723 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if (! parseContext.limits.whileLoops)
|
|
parseContext.error((yyvsp[-7].lex).loc, "do-while loops not available", "limitation", "");
|
|
|
|
parseContext.boolCheck((yyvsp[0].lex).loc, (yyvsp[-2].interm.intermTypedNode));
|
|
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addLoop((yyvsp[-5].interm.intermNode), (yyvsp[-2].interm.intermTypedNode), 0, false, (yyvsp[-4].lex).loc);
|
|
--parseContext.loopNestingLevel;
|
|
--parseContext.statementNestingLevel;
|
|
--parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10121 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 567:
|
|
#line 3734 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.push();
|
|
++parseContext.loopNestingLevel;
|
|
++parseContext.statementNestingLevel;
|
|
++parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10132 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 568:
|
|
#line 3740 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.symbolTable.pop(&parseContext.defaultPrecision[0]);
|
|
(yyval.interm.intermNode) = parseContext.intermediate.makeAggregate((yyvsp[-3].interm.intermNode), (yyvsp[-5].lex).loc);
|
|
TIntermLoop* forLoop = parseContext.intermediate.addLoop((yyvsp[0].interm.intermNode), reinterpret_cast<TIntermTyped*>((yyvsp[-2].interm.nodePair).node1), reinterpret_cast<TIntermTyped*>((yyvsp[-2].interm.nodePair).node2), true, (yyvsp[-6].lex).loc);
|
|
if (! parseContext.limits.nonInductiveForLoops)
|
|
parseContext.inductiveLoopCheck((yyvsp[-6].lex).loc, (yyvsp[-3].interm.intermNode), forLoop);
|
|
(yyval.interm.intermNode) = parseContext.intermediate.growAggregate((yyval.interm.intermNode), forLoop, (yyvsp[-6].lex).loc);
|
|
(yyval.interm.intermNode)->getAsAggregate()->setOperator(EOpSequence);
|
|
--parseContext.loopNestingLevel;
|
|
--parseContext.statementNestingLevel;
|
|
--parseContext.controlFlowNestingLevel;
|
|
}
|
|
#line 10149 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 569:
|
|
#line 3755 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10157 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 570:
|
|
#line 3758 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10165 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 571:
|
|
#line 3764 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 10173 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 572:
|
|
#line 3767 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermTypedNode) = 0;
|
|
}
|
|
#line 10181 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 573:
|
|
#line 3773 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.nodePair).node1 = (yyvsp[-1].interm.intermTypedNode);
|
|
(yyval.interm.nodePair).node2 = 0;
|
|
}
|
|
#line 10190 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 574:
|
|
#line 3777 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.nodePair).node1 = (yyvsp[-2].interm.intermTypedNode);
|
|
(yyval.interm.nodePair).node2 = (yyvsp[0].interm.intermTypedNode);
|
|
}
|
|
#line 10199 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 575:
|
|
#line 3784 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if (parseContext.loopNestingLevel <= 0)
|
|
parseContext.error((yyvsp[-1].lex).loc, "continue statement only allowed in loops", "", "");
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpContinue, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 10209 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 576:
|
|
#line 3789 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if (parseContext.loopNestingLevel + parseContext.switchSequenceStack.size() <= 0)
|
|
parseContext.error((yyvsp[-1].lex).loc, "break statement only allowed in switch and loops", "", "");
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpBreak, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 10219 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 577:
|
|
#line 3794 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpReturn, (yyvsp[-1].lex).loc);
|
|
if (parseContext.currentFunctionType->getBasicType() != EbtVoid)
|
|
parseContext.error((yyvsp[-1].lex).loc, "non-void function must return a value", "return", "");
|
|
if (parseContext.inMain)
|
|
parseContext.postEntryPointReturn = true;
|
|
}
|
|
#line 10231 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 578:
|
|
#line 3801 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = parseContext.handleReturnValue((yyvsp[-2].lex).loc, (yyvsp[-1].interm.intermTypedNode));
|
|
}
|
|
#line 10239 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 579:
|
|
#line 3804 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireStage((yyvsp[-1].lex).loc, EShLangFragment, "discard");
|
|
(yyval.interm.intermNode) = parseContext.intermediate.addBranch(EOpKill, (yyvsp[-1].lex).loc);
|
|
}
|
|
#line 10248 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 580:
|
|
#line 3813 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
parseContext.intermediate.setTreeRoot((yyval.interm.intermNode));
|
|
}
|
|
#line 10257 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 581:
|
|
#line 3817 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
if ((yyvsp[0].interm.intermNode) != nullptr) {
|
|
(yyval.interm.intermNode) = parseContext.intermediate.growAggregate((yyvsp[-1].interm.intermNode), (yyvsp[0].interm.intermNode));
|
|
parseContext.intermediate.setTreeRoot((yyval.interm.intermNode));
|
|
}
|
|
}
|
|
#line 10268 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 582:
|
|
#line 3826 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10276 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 583:
|
|
#line 3829 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.intermNode) = (yyvsp[0].interm.intermNode);
|
|
}
|
|
#line 10284 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 584:
|
|
#line 3833 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
parseContext.requireProfile((yyvsp[0].lex).loc, ~EEsProfile, "extraneous semicolon");
|
|
parseContext.profileRequires((yyvsp[0].lex).loc, ~EEsProfile, 460, nullptr, "extraneous semicolon");
|
|
(yyval.interm.intermNode) = nullptr;
|
|
}
|
|
#line 10294 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 585:
|
|
#line 3842 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyvsp[0].interm).function = parseContext.handleFunctionDeclarator((yyvsp[0].interm).loc, *(yyvsp[0].interm).function, false /* not prototype */);
|
|
(yyvsp[0].interm).intermNode = parseContext.handleFunctionDefinition((yyvsp[0].interm).loc, *(yyvsp[0].interm).function);
|
|
}
|
|
#line 10303 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 586:
|
|
#line 3846 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
// May be best done as post process phase on intermediate code
|
|
if (parseContext.currentFunctionType->getBasicType() != EbtVoid && ! parseContext.functionReturnsValue)
|
|
parseContext.error((yyvsp[-2].interm).loc, "function does not return a value:", "", (yyvsp[-2].interm).function->getName().c_str());
|
|
parseContext.symbolTable.pop(&parseContext.defaultPrecision[0]);
|
|
(yyval.interm.intermNode) = parseContext.intermediate.growAggregate((yyvsp[-2].interm).intermNode, (yyvsp[0].interm.intermNode));
|
|
parseContext.intermediate.setAggregateOperator((yyval.interm.intermNode), EOpFunction, (yyvsp[-2].interm).function->getType(), (yyvsp[-2].interm).loc);
|
|
(yyval.interm.intermNode)->getAsAggregate()->setName((yyvsp[-2].interm).function->getMangledName().c_str());
|
|
|
|
// store the pragma information for debug and optimize and other vendor specific
|
|
// information. This information can be queried from the parse tree
|
|
(yyval.interm.intermNode)->getAsAggregate()->setOptimize(parseContext.contextPragma.optimize);
|
|
(yyval.interm.intermNode)->getAsAggregate()->setDebug(parseContext.contextPragma.debug);
|
|
(yyval.interm.intermNode)->getAsAggregate()->setPragmaTable(parseContext.contextPragma.pragmaTable);
|
|
}
|
|
#line 10323 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 587:
|
|
#line 3865 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.attributes) = (yyvsp[-2].interm.attributes);
|
|
parseContext.requireExtensions((yyvsp[-4].lex).loc, 1, &E_GL_EXT_control_flow_attributes, "attribute");
|
|
}
|
|
#line 10332 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 588:
|
|
#line 3871 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.attributes) = (yyvsp[0].interm.attributes);
|
|
}
|
|
#line 10340 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 589:
|
|
#line 3874 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.attributes) = parseContext.mergeAttributes((yyvsp[-2].interm.attributes), (yyvsp[0].interm.attributes));
|
|
}
|
|
#line 10348 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 590:
|
|
#line 3879 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.attributes) = parseContext.makeAttributes(*(yyvsp[0].lex).string);
|
|
}
|
|
#line 10356 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
case 591:
|
|
#line 3882 "glslang.y" /* yacc.c:1646 */
|
|
{
|
|
(yyval.interm.attributes) = parseContext.makeAttributes(*(yyvsp[-3].lex).string, (yyvsp[-1].interm.intermTypedNode));
|
|
}
|
|
#line 10364 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
break;
|
|
|
|
|
|
#line 10368 "glslang_tab.cpp" /* yacc.c:1646 */
|
|
default: break;
|
|
}
|
|
/* User semantic actions sometimes alter yychar, and that requires
|
|
that yytoken be updated with the new translation. We take the
|
|
approach of translating immediately before every use of yytoken.
|
|
One alternative is translating here after every semantic action,
|
|
but that translation would be missed if the semantic action invokes
|
|
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
|
|
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
|
|
incorrect destructor might then be invoked immediately. In the
|
|
case of YYERROR or YYBACKUP, subsequent parser actions might lead
|
|
to an incorrect destructor call or verbose syntax error message
|
|
before the lookahead is translated. */
|
|
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
|
|
|
|
YYPOPSTACK (yylen);
|
|
yylen = 0;
|
|
YY_STACK_PRINT (yyss, yyssp);
|
|
|
|
*++yyvsp = yyval;
|
|
|
|
/* Now 'shift' the result of the reduction. Determine what state
|
|
that goes to, based on the state we popped back to and the rule
|
|
number reduced by. */
|
|
|
|
yyn = yyr1[yyn];
|
|
|
|
yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
|
|
if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
|
yystate = yytable[yystate];
|
|
else
|
|
yystate = yydefgoto[yyn - YYNTOKENS];
|
|
|
|
goto yynewstate;
|
|
|
|
|
|
/*--------------------------------------.
|
|
| yyerrlab -- here on detecting error. |
|
|
`--------------------------------------*/
|
|
yyerrlab:
|
|
/* Make sure we have latest lookahead translation. See comments at
|
|
user semantic actions for why this is necessary. */
|
|
yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
|
|
|
|
/* If not already recovering from an error, report this error. */
|
|
if (!yyerrstatus)
|
|
{
|
|
++yynerrs;
|
|
#if ! YYERROR_VERBOSE
|
|
yyerror (pParseContext, 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 (pParseContext, yymsgp);
|
|
if (yysyntax_error_status == 2)
|
|
goto yyexhaustedlab;
|
|
}
|
|
# undef YYSYNTAX_ERROR
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
if (yyerrstatus == 3)
|
|
{
|
|
/* If just tried and failed to reuse lookahead token after an
|
|
error, discard it. */
|
|
|
|
if (yychar <= YYEOF)
|
|
{
|
|
/* Return failure if at end of input. */
|
|
if (yychar == YYEOF)
|
|
YYABORT;
|
|
}
|
|
else
|
|
{
|
|
yydestruct ("Error: discarding",
|
|
yytoken, &yylval, pParseContext);
|
|
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;
|
|
|
|
|
|
yydestruct ("Error: popping",
|
|
yystos[yystate], yyvsp, pParseContext);
|
|
YYPOPSTACK (1);
|
|
yystate = *yyssp;
|
|
YY_STACK_PRINT (yyss, yyssp);
|
|
}
|
|
|
|
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
|
*++yyvsp = yylval;
|
|
YY_IGNORE_MAYBE_UNINITIALIZED_END
|
|
|
|
|
|
/* 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 (pParseContext, 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, pParseContext);
|
|
}
|
|
/* 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, pParseContext);
|
|
YYPOPSTACK (1);
|
|
}
|
|
#ifndef yyoverflow
|
|
if (yyss != yyssa)
|
|
YYSTACK_FREE (yyss);
|
|
#endif
|
|
#if YYERROR_VERBOSE
|
|
if (yymsg != yymsgbuf)
|
|
YYSTACK_FREE (yymsg);
|
|
#endif
|
|
return yyresult;
|
|
}
|
|
#line 3887 "glslang.y" /* yacc.c:1906 */
|
|
|
|
|