Edit

kc3-lang/angle/src/compiler/glslang_tab.h

Branch :

  • Show log

    Commit

  • Author : daniel@transgaming.com
    Date : 2012-03-09 21:56:58
    Hash : 05bc204e
    Message : Regenerate the parser using Bison 2.4.2. TRAC #20052 Signed-off-by: Daniel Koch Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/trunk@1000 736b8ea6-26fd-11df-bfd4-992fa37f6226

  • src/compiler/glslang_tab.h
  • /* A Bison parser, made by GNU Bison 2.4.2.  */
    
    /* Skeleton interface for Bison's Yacc-like parsers in C
       
          Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 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.  */
    
    
    /* Tokens.  */
    #ifndef YYTOKENTYPE
    # define YYTOKENTYPE
       /* Put the tokens into the symbol table, so that GDB and other debuggers
          know about them.  */
       enum yytokentype {
         INVARIANT = 258,
         HIGH_PRECISION = 259,
         MEDIUM_PRECISION = 260,
         LOW_PRECISION = 261,
         PRECISION = 262,
         ATTRIBUTE = 263,
         CONST_QUAL = 264,
         BOOL_TYPE = 265,
         FLOAT_TYPE = 266,
         INT_TYPE = 267,
         BREAK = 268,
         CONTINUE = 269,
         DO = 270,
         ELSE = 271,
         FOR = 272,
         IF = 273,
         DISCARD = 274,
         RETURN = 275,
         BVEC2 = 276,
         BVEC3 = 277,
         BVEC4 = 278,
         IVEC2 = 279,
         IVEC3 = 280,
         IVEC4 = 281,
         VEC2 = 282,
         VEC3 = 283,
         VEC4 = 284,
         MATRIX2 = 285,
         MATRIX3 = 286,
         MATRIX4 = 287,
         IN_QUAL = 288,
         OUT_QUAL = 289,
         INOUT_QUAL = 290,
         UNIFORM = 291,
         VARYING = 292,
         STRUCT = 293,
         VOID_TYPE = 294,
         WHILE = 295,
         SAMPLER2D = 296,
         SAMPLERCUBE = 297,
         SAMPLER_EXTERNAL_OES = 298,
         SAMPLER2DRECT = 299,
         IDENTIFIER = 300,
         TYPE_NAME = 301,
         FLOATCONSTANT = 302,
         INTCONSTANT = 303,
         BOOLCONSTANT = 304,
         FIELD_SELECTION = 305,
         LEFT_OP = 306,
         RIGHT_OP = 307,
         INC_OP = 308,
         DEC_OP = 309,
         LE_OP = 310,
         GE_OP = 311,
         EQ_OP = 312,
         NE_OP = 313,
         AND_OP = 314,
         OR_OP = 315,
         XOR_OP = 316,
         MUL_ASSIGN = 317,
         DIV_ASSIGN = 318,
         ADD_ASSIGN = 319,
         MOD_ASSIGN = 320,
         LEFT_ASSIGN = 321,
         RIGHT_ASSIGN = 322,
         AND_ASSIGN = 323,
         XOR_ASSIGN = 324,
         OR_ASSIGN = 325,
         SUB_ASSIGN = 326,
         LEFT_PAREN = 327,
         RIGHT_PAREN = 328,
         LEFT_BRACKET = 329,
         RIGHT_BRACKET = 330,
         LEFT_BRACE = 331,
         RIGHT_BRACE = 332,
         DOT = 333,
         COMMA = 334,
         COLON = 335,
         EQUAL = 336,
         SEMICOLON = 337,
         BANG = 338,
         DASH = 339,
         TILDE = 340,
         PLUS = 341,
         STAR = 342,
         SLASH = 343,
         PERCENT = 344,
         LEFT_ANGLE = 345,
         RIGHT_ANGLE = 346,
         VERTICAL_BAR = 347,
         CARET = 348,
         AMPERSAND = 349,
         QUESTION = 350
       };
    #endif
    
    
    
    #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
    typedef union YYSTYPE
    {
    
    
        struct {
            TSourceLoc line;
            union {
                TString *string;
                float f;
                int i;
                bool b;
            };
            TSymbol* symbol;
        } lex;
        struct {
            TSourceLoc line;
            TOperator op;
            union {
                TIntermNode* intermNode;
                TIntermNodePair nodePair;
                TIntermTyped* intermTypedNode;
                TIntermAggregate* intermAggregate;
            };
            union {
                TPublicType type;
                TPrecision precision;
                TQualifier qualifier;
                TFunction* function;
                TParameter param;
                TTypeLine typeLine;
                TTypeList* typeList;
            };
        } interm;
    
    
    
    } YYSTYPE;
    # define YYSTYPE_IS_TRIVIAL 1
    # define yystype YYSTYPE /* obsolescent; will be withdrawn */
    # define YYSTYPE_IS_DECLARED 1
    #endif