https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5375e33490eaeefc21821…
commit 5375e33490eaeefc218211c343e6ccf7ceee0fa9
Author: Victor Perevertkin <victor.perevertkin(a)reactos.org>
AuthorDate: Thu Jan 28 06:36:00 2021 +0300
Commit: Victor Perevertkin <victor.perevertkin(a)reactos.org>
CommitDate: Thu Jan 28 06:43:05 2021 +0300
[CMAKE] Generate Flex and Bison files at build time
We have Flex and Bison distributed along with RosBE 2.2 so this should
not be a problem
---
CMakeLists.txt | 3 +-
dll/directx/wine/d3dcompiler_43/CMakeLists.txt | 34 +-
dll/directx/wine/d3dcompiler_43/asmshader.tab.c | 4415 --------------
dll/directx/wine/d3dcompiler_43/asmshader.tab.h | 267 -
dll/directx/wine/d3dcompiler_43/asmshader.yy.c | 3420 -----------
dll/directx/wine/d3dcompiler_43/asmshader.yy.h | 711 ---
dll/directx/wine/d3dcompiler_43/hlsl.tab.c | 4956 ---------------
dll/directx/wine/d3dcompiler_43/hlsl.tab.h | 208 -
dll/directx/wine/d3dcompiler_43/hlsl.yy.c | 3190 ----------
dll/directx/wine/d3dcompiler_43/hlsl.yy.h | 715 ---
dll/directx/wine/d3dcompiler_43/ppl.yy.c | 4757 ---------------
dll/directx/wine/d3dcompiler_43/ppl.yy.h | 730 ---
dll/directx/wine/d3dcompiler_43/ppy.tab.c | 2619 --------
dll/directx/wine/d3dcompiler_43/ppy.tab.h | 129 -
dll/win32/jscript/CMakeLists.txt | 10 +-
dll/win32/jscript/cc_parser.tab.c | 1846 ------
dll/win32/jscript/cc_parser.tab.h | 87 -
dll/win32/jscript/parser.tab.c | 4408 --------------
dll/win32/jscript/parser.tab.h | 140 -
dll/win32/msi/CMakeLists.txt | 7 +-
dll/win32/msi/cond.tab.c | 2552 --------
dll/win32/msi/sql.tab.c | 2744 ---------
dll/win32/msi/sql.tab.h | 137 -
dll/win32/msxml3/CMakeLists.txt | 11 +-
dll/win32/msxml3/xslpattern.tab.c | 2423 --------
dll/win32/msxml3/xslpattern.tab.h | 88 -
dll/win32/msxml3/xslpattern.yy.c | 2240 -------
dll/win32/msxml3/xslpattern.yy.h | 346 --
dll/win32/vbscript/CMakeLists.txt | 8 +-
dll/win32/vbscript/parser.tab.c | 3961 ------------
dll/win32/vbscript/parser.tab.h | 158 -
dll/win32/wbemprox/CMakeLists.txt | 7 +-
dll/win32/wbemprox/wql.tab.c | 2476 --------
dll/win32/wbemprox/wql.tab.h | 113 -
sdk/cmake/bison-flex.cmake | 27 -
sdk/tools/widl/CMakeLists.txt | 8 +-
sdk/tools/widl/parser.tab.c | 7408 -----------------------
sdk/tools/widl/parser.tab.h | 289 -
sdk/tools/widl/parser.yy.c | 3039 ----------
sdk/tools/widl/parser.yy.h | 698 ---
sdk/tools/wpp/CMakeLists.txt | 12 +-
sdk/tools/wpp/ppl.yy.c | 4602 --------------
sdk/tools/wpp/ppy.tab.c | 2614 --------
sdk/tools/wpp/ppy.tab.h | 124 -
44 files changed, 54 insertions(+), 68683 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b91387178d6..5795482d782 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -74,7 +74,8 @@ if(MSVC_IDE)
endif()
# Bison and Flex support
-# include(sdk/cmake/bison-flex.cmake)
+find_package(BISON REQUIRED)
+find_package(FLEX REQUIRED)
if(NOT CMAKE_CROSSCOMPILING)
set(TOOLS_FOLDER ${CMAKE_CURRENT_BINARY_DIR})
diff --git a/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
b/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
index 899b51ecb7e..baa23c10e72 100644
--- a/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
+++ b/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
@@ -17,13 +17,25 @@ list(APPEND SOURCE
reflection.c
utils.c)
+FLEX_TARGET(asmshader_scanner asmshader.l ${CMAKE_CURRENT_BINARY_DIR}/asmshader.yy.c)
+BISON_TARGET(asmshader_parser asmshader.y ${CMAKE_CURRENT_BINARY_DIR}/asmshader.tab.c
COMPILE_FLAGS "-p asmshader_")
+ADD_FLEX_BISON_DEPENDENCY(asmshader_scanner asmshader_parser)
+
+FLEX_TARGET(hlsl_scanner hlsl.l ${CMAKE_CURRENT_BINARY_DIR}/hlsl.yy.c)
+BISON_TARGET(hlsl_parser hlsl.y ${CMAKE_CURRENT_BINARY_DIR}/hlsl.tab.c COMPILE_FLAGS
"-p hlsl_")
+ADD_FLEX_BISON_DEPENDENCY(hlsl_scanner hlsl_parser)
+
+FLEX_TARGET(pp_scanner ppl.l ${CMAKE_CURRENT_BINARY_DIR}/ppl.yy.c)
+BISON_TARGET(pp_parser ppy.y ${CMAKE_CURRENT_BINARY_DIR}/ppy.tab.c COMPILE_FLAGS "-p
ppy_")
+ADD_FLEX_BISON_DEPENDENCY(pp_scanner pp_parser)
+
list(APPEND PCH_SKIP_SOURCE
- asmshader.tab.c
- asmshader.yy.c
- hlsl.tab.c
- hlsl.yy.c
- ppy.tab.c
- ppl.yy.c)
+ ${FLEX_asmshader_scanner_OUTPUTS}
+ ${BISON_asmshader_parser_OUTPUTS}
+ ${FLEX_hlsl_scanner_OUTPUTS}
+ ${BISON_hlsl_parser_OUTPUTS}
+ ${FLEX_pp_scanner_OUTPUTS}
+ ${BISON_pp_parser_OUTPUTS})
add_library(d3dcompiler_43 MODULE
${SOURCE}
@@ -32,16 +44,6 @@ add_library(d3dcompiler_43 MODULE
${CMAKE_CURRENT_BINARY_DIR}/d3dcompiler_43_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/d3dcompiler_43.def)
-# some files have been generated with relative file paths...
-set_source_files_properties(
- asmshader.tab.c
- asmshader.yy.c
- hlsl.tab.c
- hlsl.yy.c
- ppy.tab.c
- ppl.yy.c
- PROPERTIES COMPILE_FLAGS "-UREACTOS_SOURCE_DIR
-DREACTOS_SOURCE_DIR=\"\\\".\\\"\"")
-
set_module_type(d3dcompiler_43 win32dll)
target_link_libraries(d3dcompiler_43 dx10guid uuid wine wpp)
add_importlibs(d3dcompiler_43 msvcrt kernel32 ntdll)
diff --git a/dll/directx/wine/d3dcompiler_43/asmshader.tab.c
b/dll/directx/wine/d3dcompiler_43/asmshader.tab.c
deleted file mode 100644
index 4ac2b9dee0d..00000000000
--- a/dll/directx/wine/d3dcompiler_43/asmshader.tab.c
+++ /dev/null
@@ -1,4415 +0,0 @@
-/* A Bison parser, made by GNU Bison 3.4.1. */
-
-/* Bison implementation for Yacc-like parsers in C
-
- Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 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. */
-
-/* Undocumented macros, especially those whose name start with YY_,
- are private implementation details. Do not rely on them. */
-
-/* Identify Bison output. */
-#define YYBISON 1
-
-/* Bison version. */
-#define YYBISON_VERSION "3.4.1"
-
-/* Skeleton name. */
-#define YYSKELETON_NAME "yacc.c"
-
-/* Pure parsers. */
-#define YYPURE 0
-
-/* Push parsers. */
-#define YYPUSH 0
-
-/* Pull parsers. */
-#define YYPULL 1
-
-
-/* Substitute the variable and function names. */
-#define yyparse asmshader_parse
-#define yylex asmshader_lex
-#define yyerror asmshader_error
-#define yydebug asmshader_debug
-#define yynerrs asmshader_nerrs
-
-#define yylval asmshader_lval
-#define yychar asmshader_char
-
-/* First part of user prologue. */
-#line 22 "asmshader.y"
-
-#include "wine/debug.h"
-
-#include "d3dcompiler_private.h"
-
-WINE_DEFAULT_DEBUG_CHANNEL(asmshader);
-
-struct asm_parser asm_ctx;
-
-void WINAPIV asmparser_message(struct asm_parser *ctx, const char *fmt, ...)
-{
- __ms_va_list args;
-
- __ms_va_start(args, fmt);
- compilation_message(&ctx->messages, fmt, args);
- __ms_va_end(args);
-}
-
-static void asmshader_error(char const *s) {
- asmparser_message(&asm_ctx, "Line %u: Error \"%s\" from
bison\n", asm_ctx.line_no, s);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
-}
-
-static void set_rel_reg(struct shader_reg *reg, struct rel_reg *rel) {
- /* We can have an additional offset without true relative addressing
- * ex. c2[ 4 ] */
- reg->regnum += rel->additional_offset;
- if(!rel->has_rel_reg) {
- reg->rel_reg = NULL;
- } else {
- reg->rel_reg = d3dcompiler_alloc(sizeof(*reg->rel_reg));
- if(!reg->rel_reg) {
- return;
- }
- reg->rel_reg->type = rel->type;
- reg->rel_reg->u.swizzle = rel->swizzle;
- reg->rel_reg->regnum = rel->rel_regnum;
- }
-}
-
-/* Needed lexer functions declarations */
-int asmshader_lex(void);
-
-
-
-#line 124 "asmshader.tab.c"
-
-# ifndef YY_NULLPTR
-# if defined __cplusplus
-# if 201103L <= __cplusplus
-# define YY_NULLPTR nullptr
-# else
-# define YY_NULLPTR 0
-# endif
-# else
-# define YY_NULLPTR ((void*)0)
-# endif
-# endif
-
-/* Enabling verbose error messages. */
-#ifdef YYERROR_VERBOSE
-# undef YYERROR_VERBOSE
-# define YYERROR_VERBOSE 1
-#else
-# define YYERROR_VERBOSE 0
-#endif
-
-/* Use api.header.include to #include this header
- instead of duplicating it here. */
-#ifndef
YY_ASMSHADER_E_REACTOSSYNC_GCC_DLL_DIRECTX_WINE_D3DCOMPILER_43_ASMSHADER_TAB_H_INCLUDED
-# define
YY_ASMSHADER_E_REACTOSSYNC_GCC_DLL_DIRECTX_WINE_D3DCOMPILER_43_ASMSHADER_TAB_H_INCLUDED
-/* Debug traces. */
-#ifndef YYDEBUG
-# define YYDEBUG 0
-#endif
-#if YYDEBUG
-extern int asmshader_debug;
-#endif
-
-/* Token type. */
-#ifndef YYTOKENTYPE
-# define YYTOKENTYPE
- enum yytokentype
- {
- INSTR_ADD = 258,
- INSTR_NOP = 259,
- INSTR_MOV = 260,
- INSTR_SUB = 261,
- INSTR_MAD = 262,
- INSTR_MUL = 263,
- INSTR_RCP = 264,
- INSTR_RSQ = 265,
- INSTR_DP3 = 266,
- INSTR_DP4 = 267,
- INSTR_MIN = 268,
- INSTR_MAX = 269,
- INSTR_SLT = 270,
- INSTR_SGE = 271,
- INSTR_ABS = 272,
- INSTR_EXP = 273,
- INSTR_LOG = 274,
- INSTR_EXPP = 275,
- INSTR_LOGP = 276,
- INSTR_DST = 277,
- INSTR_LRP = 278,
- INSTR_FRC = 279,
- INSTR_POW = 280,
- INSTR_CRS = 281,
- INSTR_SGN = 282,
- INSTR_NRM = 283,
- INSTR_SINCOS = 284,
- INSTR_M4x4 = 285,
- INSTR_M4x3 = 286,
- INSTR_M3x4 = 287,
- INSTR_M3x3 = 288,
- INSTR_M3x2 = 289,
- INSTR_DCL = 290,
- INSTR_DEF = 291,
- INSTR_DEFB = 292,
- INSTR_DEFI = 293,
- INSTR_REP = 294,
- INSTR_ENDREP = 295,
- INSTR_IF = 296,
- INSTR_ELSE = 297,
- INSTR_ENDIF = 298,
- INSTR_BREAK = 299,
- INSTR_BREAKP = 300,
- INSTR_CALL = 301,
- INSTR_CALLNZ = 302,
- INSTR_LOOP = 303,
- INSTR_RET = 304,
- INSTR_ENDLOOP = 305,
- INSTR_LABEL = 306,
- INSTR_SETP = 307,
- INSTR_TEXLDL = 308,
- INSTR_LIT = 309,
- INSTR_MOVA = 310,
- INSTR_CND = 311,
- INSTR_CMP = 312,
- INSTR_DP2ADD = 313,
- INSTR_TEXCOORD = 314,
- INSTR_TEXCRD = 315,
- INSTR_TEXKILL = 316,
- INSTR_TEX = 317,
- INSTR_TEXLD = 318,
- INSTR_TEXBEM = 319,
- INSTR_TEXBEML = 320,
- INSTR_TEXREG2AR = 321,
- INSTR_TEXREG2GB = 322,
- INSTR_TEXREG2RGB = 323,
- INSTR_TEXM3x2PAD = 324,
- INSTR_TEXM3x2TEX = 325,
- INSTR_TEXM3x3PAD = 326,
- INSTR_TEXM3x3SPEC = 327,
- INSTR_TEXM3x3VSPEC = 328,
- INSTR_TEXM3x3TEX = 329,
- INSTR_TEXDP3TEX = 330,
- INSTR_TEXM3x2DEPTH = 331,
- INSTR_TEXDP3 = 332,
- INSTR_TEXM3x3 = 333,
- INSTR_TEXDEPTH = 334,
- INSTR_BEM = 335,
- INSTR_DSX = 336,
- INSTR_DSY = 337,
- INSTR_TEXLDP = 338,
- INSTR_TEXLDB = 339,
- INSTR_TEXLDD = 340,
- INSTR_PHASE = 341,
- REG_TEMP = 342,
- REG_OUTPUT = 343,
- REG_INPUT = 344,
- REG_CONSTFLOAT = 345,
- REG_CONSTINT = 346,
- REG_CONSTBOOL = 347,
- REG_TEXTURE = 348,
- REG_SAMPLER = 349,
- REG_TEXCRDOUT = 350,
- REG_OPOS = 351,
- REG_OFOG = 352,
- REG_OPTS = 353,
- REG_VERTEXCOLOR = 354,
- REG_FRAGCOLOR = 355,
- REG_FRAGDEPTH = 356,
- REG_VPOS = 357,
- REG_VFACE = 358,
- REG_ADDRESS = 359,
- REG_LOOP = 360,
- REG_PREDICATE = 361,
- REG_LABEL = 362,
- VER_VS10 = 363,
- VER_VS11 = 364,
- VER_VS20 = 365,
- VER_VS2X = 366,
- VER_VS30 = 367,
- VER_PS10 = 368,
- VER_PS11 = 369,
- VER_PS12 = 370,
- VER_PS13 = 371,
- VER_PS14 = 372,
- VER_PS20 = 373,
- VER_PS2X = 374,
- VER_PS30 = 375,
- SHIFT_X2 = 376,
- SHIFT_X4 = 377,
- SHIFT_X8 = 378,
- SHIFT_D2 = 379,
- SHIFT_D4 = 380,
- SHIFT_D8 = 381,
- MOD_SAT = 382,
- MOD_PP = 383,
- MOD_CENTROID = 384,
- COMP_GT = 385,
- COMP_LT = 386,
- COMP_GE = 387,
- COMP_LE = 388,
- COMP_EQ = 389,
- COMP_NE = 390,
- SMOD_BIAS = 391,
- SMOD_SCALEBIAS = 392,
- SMOD_DZ = 393,
- SMOD_DW = 394,
- SMOD_ABS = 395,
- SMOD_NOT = 396,
- SAMPTYPE_1D = 397,
- SAMPTYPE_2D = 398,
- SAMPTYPE_CUBE = 399,
- SAMPTYPE_VOLUME = 400,
- USAGE_POSITION = 401,
- USAGE_BLENDWEIGHT = 402,
- USAGE_BLENDINDICES = 403,
- USAGE_NORMAL = 404,
- USAGE_PSIZE = 405,
- USAGE_TEXCOORD = 406,
- USAGE_TANGENT = 407,
- USAGE_BINORMAL = 408,
- USAGE_TESSFACTOR = 409,
- USAGE_POSITIONT = 410,
- USAGE_COLOR = 411,
- USAGE_FOG = 412,
- USAGE_DEPTH = 413,
- USAGE_SAMPLE = 414,
- COMPONENT = 415,
- IMMVAL = 416,
- IMMBOOL = 417
- };
-#endif
-
-/* Value type. */
-#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
-union YYSTYPE
-{
-#line 68 "asmshader.y"
-
- struct {
- float val;
- BOOL integer;
- } immval;
- BOOL immbool;
- unsigned int regnum;
- struct shader_reg reg;
- DWORD srcmod;
- DWORD writemask;
- struct {
- DWORD writemask;
- DWORD idx;
- DWORD last;
- } wm_components;
- DWORD swizzle;
- struct {
- DWORD swizzle;
- DWORD idx;
- } sw_components;
- DWORD component;
- struct {
- DWORD mod;
- DWORD shift;
- } modshift;
- enum bwriter_comparison_type comptype;
- struct {
- DWORD dclusage;
- unsigned int regnum;
- } declaration;
- enum bwritersampler_texture_type samplertype;
- struct rel_reg rel_reg;
- struct src_regs sregs;
-
-#line 365 "asmshader.tab.c"
-
-};
-typedef union YYSTYPE YYSTYPE;
-# define YYSTYPE_IS_TRIVIAL 1
-# define YYSTYPE_IS_DECLARED 1
-#endif
-
-
-extern YYSTYPE asmshader_lval;
-
-int asmshader_parse (void);
-
-#endif /*
!YY_ASMSHADER_E_REACTOSSYNC_GCC_DLL_DIRECTX_WINE_D3DCOMPILER_43_ASMSHADER_TAB_H_INCLUDED
*/
-
-
-
-#ifdef short
-# undef short
-#endif
-
-#ifdef YYTYPE_UINT8
-typedef YYTYPE_UINT8 yytype_uint8;
-#else
-typedef unsigned char yytype_uint8;
-#endif
-
-#ifdef YYTYPE_INT8
-typedef YYTYPE_INT8 yytype_int8;
-#else
-typedef signed char yytype_int8;
-#endif
-
-#ifdef YYTYPE_UINT16
-typedef YYTYPE_UINT16 yytype_uint16;
-#else
-typedef unsigned short yytype_uint16;
-#endif
-
-#ifdef YYTYPE_INT16
-typedef YYTYPE_INT16 yytype_int16;
-#else
-typedef short yytype_int16;
-#endif
-
-#ifndef YYSIZE_T
-# ifdef __SIZE_TYPE__
-# define YYSIZE_T __SIZE_TYPE__
-# elif defined size_t
-# define YYSIZE_T size_t
-# elif ! defined YYSIZE_T
-# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
-# define YYSIZE_T size_t
-# else
-# define YYSIZE_T unsigned
-# endif
-#endif
-
-#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
-
-#ifndef YY_
-# if defined YYENABLE_NLS && YYENABLE_NLS
-# if ENABLE_NLS
-# include <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
-
-/* Suppress unused-variable warnings by "using" E. */
-#if ! defined lint || defined __GNUC__
-# define YYUSE(E) ((void) (E))
-#else
-# define YYUSE(E) /* empty */
-#endif
-
-#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 +
__GNUC_MINOR__
-/* Suppress an incorrect diagnostic about yylval being uninitialized. */
-# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
- _Pragma ("GCC diagnostic push") \
- _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
- _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
-# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
- _Pragma ("GCC diagnostic pop")
-#else
-# define YY_INITIAL_VALUE(Value) Value
-#endif
-#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
-# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
-# define YY_IGNORE_MAYBE_UNINITIALIZED_END
-#endif
-#ifndef YY_INITIAL_VALUE
-# define YY_INITIAL_VALUE(Value) /* Nothing. */
-#endif
-
-
-#define YY_ASSERT(E) ((void) (0 && (E)))
-
-#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 16
-/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 733
-
-/* YYNTOKENS -- Number of terminals. */
-#define YYNTOKENS 171
-/* YYNNTS -- Number of nonterminals. */
-#define YYNNTS 26
-/* YYNRULES -- Number of rules. */
-#define YYNRULES 228
-/* YYNSTATES -- Number of states. */
-#define YYNSTATES 552
-
-#define YYUNDEFTOK 2
-#define YYMAXUTOK 417
-
-/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
- as returned by yylex, with out-of-bounds checking. */
-#define YYTRANSLATE(YYX) \
- ((unsigned) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
-
-/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
- as returned by yylex. */
-static const yytype_uint8 yytranslate[] =
-{
- 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 169, 170, 2, 163, 164, 166, 165, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 167, 2, 168, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 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
-};
-
-#if YYDEBUG
- /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
-static const yytype_uint16 yyrline[] =
-{
- 0, 309, 309, 314, 319, 324, 329, 334, 339, 344,
- 349, 354, 359, 364, 369, 374, 380, 381, 386, 390,
- 395, 401, 406, 411, 416, 421, 426, 431, 436, 441,
- 446, 451, 456, 461, 466, 471, 476, 481, 486, 491,
- 496, 501, 506, 511, 516, 521, 526, 531, 536, 541,
- 546, 551, 556, 561, 573, 585, 608, 631, 653, 675,
- 685, 700, 707, 714, 718, 722, 726, 731, 736, 741,
- 746, 751, 756, 761, 766, 771, 776, 781, 786, 791,
- 796, 801, 806, 811, 816, 821, 826, 831, 836, 841,
- 847, 852, 857, 862, 873, 878, 883, 888, 893, 898,
- 903, 908, 913, 918, 923, 928, 933, 938, 943, 948,
- 953, 958, 963, 968, 973, 978, 985, 993, 1002, 1006,
- 1010, 1014, 1020, 1026, 1032, 1036, 1040, 1046, 1050, 1054,
- 1058, 1062, 1066, 1070, 1074, 1080, 1086, 1091, 1098, 1113,
- 1119, 1135, 1139, 1161, 1166, 1180, 1184, 1197, 1202, 1207,
- 1212, 1217, 1222, 1227, 1232, 1237, 1243, 1248, 1259, 1267,
- 1275, 1283, 1308, 1322, 1336, 1346, 1350, 1355, 1363, 1371,
- 1379, 1388, 1397, 1407, 1411, 1415, 1419, 1423, 1427, 1432,
- 1436, 1441, 1445, 1451, 1455, 1459, 1463, 1467, 1471, 1477,
- 1481, 1487, 1493, 1499, 1505, 1511, 1515, 1519, 1523, 1527,
- 1531, 1536, 1537, 1538, 1539, 1540, 1541, 1543, 1549, 1555,
- 1561, 1567, 1573, 1579, 1585, 1591, 1597, 1603, 1609, 1615,
- 1621, 1628, 1632, 1637, 1641, 1645, 1649, 1654, 1662
-};
-#endif
-
-#if YYDEBUG || YYERROR_VERBOSE || 0
-/* 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", "INSTR_ADD",
"INSTR_NOP", "INSTR_MOV",
- "INSTR_SUB", "INSTR_MAD", "INSTR_MUL",
"INSTR_RCP", "INSTR_RSQ",
- "INSTR_DP3", "INSTR_DP4", "INSTR_MIN",
"INSTR_MAX", "INSTR_SLT",
- "INSTR_SGE", "INSTR_ABS", "INSTR_EXP",
"INSTR_LOG", "INSTR_EXPP",
- "INSTR_LOGP", "INSTR_DST", "INSTR_LRP",
"INSTR_FRC", "INSTR_POW",
- "INSTR_CRS", "INSTR_SGN", "INSTR_NRM",
"INSTR_SINCOS", "INSTR_M4x4",
- "INSTR_M4x3", "INSTR_M3x4", "INSTR_M3x3",
"INSTR_M3x2", "INSTR_DCL",
- "INSTR_DEF", "INSTR_DEFB", "INSTR_DEFI",
"INSTR_REP", "INSTR_ENDREP",
- "INSTR_IF", "INSTR_ELSE", "INSTR_ENDIF",
"INSTR_BREAK", "INSTR_BREAKP",
- "INSTR_CALL", "INSTR_CALLNZ", "INSTR_LOOP",
"INSTR_RET", "INSTR_ENDLOOP",
- "INSTR_LABEL", "INSTR_SETP", "INSTR_TEXLDL",
"INSTR_LIT", "INSTR_MOVA",
- "INSTR_CND", "INSTR_CMP", "INSTR_DP2ADD",
"INSTR_TEXCOORD",
- "INSTR_TEXCRD", "INSTR_TEXKILL", "INSTR_TEX",
"INSTR_TEXLD",
- "INSTR_TEXBEM", "INSTR_TEXBEML", "INSTR_TEXREG2AR",
"INSTR_TEXREG2GB",
- "INSTR_TEXREG2RGB", "INSTR_TEXM3x2PAD",
"INSTR_TEXM3x2TEX",
- "INSTR_TEXM3x3PAD", "INSTR_TEXM3x3SPEC",
"INSTR_TEXM3x3VSPEC",
- "INSTR_TEXM3x3TEX", "INSTR_TEXDP3TEX",
"INSTR_TEXM3x2DEPTH",
- "INSTR_TEXDP3", "INSTR_TEXM3x3", "INSTR_TEXDEPTH",
"INSTR_BEM",
- "INSTR_DSX", "INSTR_DSY", "INSTR_TEXLDP",
"INSTR_TEXLDB", "INSTR_TEXLDD",
- "INSTR_PHASE", "REG_TEMP", "REG_OUTPUT",
"REG_INPUT", "REG_CONSTFLOAT",
- "REG_CONSTINT", "REG_CONSTBOOL", "REG_TEXTURE",
"REG_SAMPLER",
- "REG_TEXCRDOUT", "REG_OPOS", "REG_OFOG",
"REG_OPTS", "REG_VERTEXCOLOR",
- "REG_FRAGCOLOR", "REG_FRAGDEPTH", "REG_VPOS",
"REG_VFACE", "REG_ADDRESS",
- "REG_LOOP", "REG_PREDICATE", "REG_LABEL",
"VER_VS10", "VER_VS11",
- "VER_VS20", "VER_VS2X", "VER_VS30", "VER_PS10",
"VER_PS11", "VER_PS12",
- "VER_PS13", "VER_PS14", "VER_PS20", "VER_PS2X",
"VER_PS30", "SHIFT_X2",
- "SHIFT_X4", "SHIFT_X8", "SHIFT_D2", "SHIFT_D4",
"SHIFT_D8", "MOD_SAT",
- "MOD_PP", "MOD_CENTROID", "COMP_GT", "COMP_LT",
"COMP_GE", "COMP_LE",
- "COMP_EQ", "COMP_NE", "SMOD_BIAS",
"SMOD_SCALEBIAS", "SMOD_DZ",
- "SMOD_DW", "SMOD_ABS", "SMOD_NOT",
"SAMPTYPE_1D", "SAMPTYPE_2D",
- "SAMPTYPE_CUBE", "SAMPTYPE_VOLUME", "USAGE_POSITION",
- "USAGE_BLENDWEIGHT", "USAGE_BLENDINDICES",
"USAGE_NORMAL", "USAGE_PSIZE",
- "USAGE_TEXCOORD", "USAGE_TANGENT", "USAGE_BINORMAL",
"USAGE_TESSFACTOR",
- "USAGE_POSITIONT", "USAGE_COLOR", "USAGE_FOG",
"USAGE_DEPTH",
- "USAGE_SAMPLE", "COMPONENT", "IMMVAL",
"IMMBOOL", "'+'", "','",
"'.'",
- "'-'", "'['", "']'",
"'('", "')'", "$accept", "shader",
"version_marker",
- "instructions", "complexinstr", "instruction",
"dreg", "dreg_name",
- "writemask", "wm_components", "swizzle",
"sw_components", "omods",
- "omodifier", "sregs", "sreg", "rel_reg",
"immsum", "smod", "relreg_name",
- "sreg_name", "comp", "dclusage",
"dcl_inputreg", "sampdcl", "predicate", 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, 43, 44, 46, 45, 91, 93, 40,
- 41
-};
-# endif
-
-#define YYPACT_NINF -458
-
-#define yypact_value_is_default(Yystate) \
- (!!((Yystate) == (-458)))
-
-#define YYTABLE_NINF -1
-
-#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[] =
-{
- 386, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, 11, -458, -458, 389, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- 334, -42, -28, -10, -34, -458, 95, -458, -458, 3,
- -34, -34, -34, -34, -458, -458, -34, 3, -458, -458,
- -458, -458, -458, -458, -458, -458, 247, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, 647, -55, -458, -458, 647, 505, 505, 505,
- 505, 505, 505, 505, 505, 505, 505, 505, 505, 505,
- 505, 505, 505, 505, 505, 505, 505, 505, 505, 505,
- 505, 505, 505, 505, 505, 505, 505, 505, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, 123, 2, -458, -44,
- -40, -39, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, 185, -45, 185, -38, -458, -37, -458, -458,
- -458, -458, -458, -458, -38, -34, -34, -38, -38, -38,
- -38, -38, 247, 505, 505, 505, 505, 505, 505, 505,
- 505, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -458, -458, -76, 505, 505, 505, 505, 505, 505, 505,
- 505, 505, 505, 505, 505, 505, 505, 505, 505, 505,
- 505, 505, 505, 505, 505, 505, 505, -458, -57, 22,
- -458, -458, -458, -458, -458, -458, -458, -458, -458, -458,
- -35, -458, 1, 4, 8, 9, 10, 14, 16, 29,
- 49, 50, 51, 54, 55, 57, 58, 60, 68, 69,
- 70, 73, 74, 75, 76, 77, 78, 79, 89, 90,
- 91, 93, -458, -458, -458, 94, 94, 142, 82, 5,
- 96, 6, -57, 185, -37, -34, -58, -43, -38, -38,
- 98, 119, 129, 130, 131, 132, 133, -458, 134, 100,
- -458, -458, -458, 135, 136, 137, 138, 190, 191, 192,
- 193, 194, 195, 204, 205, 343, 344, 345, 346, -458,
- 378, 379, 380, 381, 382, 383, 388, 384, -57, -34,
- -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
- -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
- -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
- -458, -458, 94, -458, -458, -458, 385, -458, 387, -458,
- -37, -43, -458, -458, -458, -458, -154, -57, -458, -458,
- -458, -458, -458, -458, -458, -57, -34, -34, -34, -34,
- -34, -34, -34, -34, -458, 390, -34, -34, -34, -34,
- -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
- -34, -34, -34, -34, -34, -34, -34, -34, -458, 393,
- -458, 397, -38, -38, -38, -38, -38, -38, -38, -38,
- -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
- -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
- -38, -38, -38, -458, 394, 395, -43, -458, -57, -30,
- -458, -86, -458, -38, -38, -38, -38, -38, -38, -38,
- -38, -458, -38, -38, -38, -38, -38, -38, -38, -38,
- -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
- -38, -38, -38, -38, -458, -458, 448, 449, -458, -57,
- -458, -458, -57, 396, -458, 453, 454, -458, -84, -63,
- 452, 455, 396, -458, 456, -458, 457, 459, -59, -458,
- -458, -458
-};
-
- /* 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_uint8 yydefact[] =
-{
- 0, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 14, 15, 0, 16, 1, 2, 145, 22,
- 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
- 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
- 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
- 145, 0, 0, 0, 0, 67, 0, 70, 71, 72,
- 0, 0, 0, 0, 78, 79, 0, 0, 145, 145,
- 145, 145, 145, 145, 145, 145, 0, 145, 145, 145,
- 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
- 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
- 145, 115, 0, 0, 17, 18, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 223, 224,
- 225, 226, 207, 208, 209, 210, 211, 212, 213, 214,
- 215, 216, 217, 218, 219, 220, 0, 145, 145, 0,
- 0, 0, 181, 182, 183, 184, 185, 186, 187, 189,
- 188, 190, 191, 192, 193, 194, 196, 197, 198, 199,
- 195, 200, 0, 0, 0, 66, 156, 165, 201, 202,
- 203, 204, 205, 206, 68, 0, 0, 74, 75, 76,
- 77, 80, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 118, 119, 120, 121, 122, 123, 124, 126, 125,
- 127, 129, 128, 130, 131, 132, 134, 135, 136, 137,
- 133, 90, 165, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 20, 141, 0,
- 19, 147, 148, 149, 150, 151, 152, 153, 154, 155,
- 0, 146, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 221, 222, 60, 57, 53, 0, 0, 0,
- 0, 0, 141, 0, 165, 0, 0, 141, 69, 73,
- 0, 0, 0, 0, 0, 0, 0, 88, 0, 0,
- 117, 116, 91, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 92,
- 0, 0, 0, 0, 0, 0, 0, 0, 141, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 58, 54, 55, 62, 59, 61, 0, 65, 0, 164,
- 165, 141, 157, 179, 180, 171, 0, 141, 174, 173,
- 175, 176, 177, 178, 158, 141, 0, 0, 0, 0,
- 0, 0, 0, 0, 139, 138, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 143, 142,
- 227, 0, 21, 23, 24, 25, 26, 27, 28, 29,
- 30, 31, 32, 33, 34, 35, 36, 37, 39, 38,
- 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
- 50, 51, 52, 56, 0, 0, 141, 160, 141, 0,
- 166, 0, 159, 81, 82, 83, 84, 85, 86, 87,
- 89, 140, 93, 96, 97, 98, 99, 100, 101, 108,
- 102, 103, 104, 105, 106, 107, 109, 110, 111, 112,
- 113, 94, 95, 114, 144, 228, 0, 0, 162, 141,
- 161, 172, 141, 0, 167, 0, 0, 163, 0, 0,
- 0, 0, 0, 168, 0, 169, 0, 0, 0, 63,
- 64, 170
-};
-
- /* YYPGOTO[NTERM-NUM]. */
-static const yytype_int16 yypgoto[] =
-{
- -458, -458, -458, -458, -458, 17, -92, -458, -293, -458,
- -309, -458, 491, -458, -56, 306, -231, -457, -399, 146,
- -132, 21, -458, -206, -458, -458
-};
-
- /* YYDEFGOTO[NTERM-NUM]. */
-static const yytype_int16 yydefgoto[] =
-{
- -1, 14, 15, 17, 104, 105, 231, 232, 330, 425,
- 357, 449, 107, 271, 185, 186, 317, 406, 415, 407,
- 187, 195, 157, 305, 158, 106
-};
-
- /* 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_uint16 yytable[] =
-{
- 194, 331, 488, 399, 197, 198, 199, 200, 414, 489,
- 201, 16, 390, 391, 490, 270, 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, 403, 404, 159, 451,
- 312, 258, 314, 162, 163, 164, 165, 166, 167, 168,
- 169, 170, 171, 172, 160, 173, 174, 175, 176, 177,
- 178, 179, 180, 181, 403, 404, 539, 533, 408, 542,
- 196, 161, 534, 401, 543, 548, 259, 529, 202, 329,
- 306, 316, 487, 409, 410, 411, 412, 413, 491, 483,
- 544, 392, 395, 405, 544, 545, 492, 182, 356, 551,
- 320, 321, 322, 323, 324, 325, 326, 327, 328, 257,
- 309, 313, 356, 260, 310, 311, 315, 183, 358, 359,
- 316, 531, 184, 188, 189, 190, 191, 192, 193, 318,
- 319, 332, 333, 334, 335, 336, 337, 338, 339, 340,
- 341, 342, 343, 344, 345, 346, 347, 348, 349, 350,
- 351, 352, 353, 354, 355, 360, 396, 398, 361, 486,
- 393, 302, 362, 363, 364, 303, 394, 528, 365, 530,
- 366, 400, 162, 163, 164, 165, 166, 167, 168, 169,
- 170, 171, 172, 367, 173, 174, 175, 176, 177, 178,
- 179, 180, 181, 261, 262, 263, 264, 265, 266, 267,
- 268, 269, 302, 368, 369, 370, 303, 304, 371, 372,
- 537, 373, 374, 538, 375, 188, 189, 190, 191, 192,
- 193, 302, 376, 377, 378, 303, 182, 379, 380, 381,
- 382, 383, 384, 385, 261, 262, 263, 264, 265, 266,
- 267, 268, 269, 386, 387, 388, 183, 389, 397, 329,
- 424, 184, 416, 261, 262, 263, 264, 265, 266, 267,
- 268, 269, 162, 163, 164, 165, 166, 167, 168, 169,
- 170, 171, 172, 417, 173, 174, 175, 176, 177, 178,
- 179, 180, 181, 418, 419, 420, 421, 422, 423, 426,
- 427, 428, 429, 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, 211, 212, 213, 214, 215, 216,
- 217, 218, 219, 220, 221, 222, 223, 224, 225, 226,
- 227, 228, 229, 230, 430, 431, 432, 433, 434, 435,
- 493, 494, 495, 496, 497, 498, 499, 500, 436, 437,
- 502, 503, 504, 505, 506, 507, 508, 509, 510, 511,
- 512, 513, 514, 515, 516, 517, 518, 519, 520, 521,
- 522, 523, 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, 138, 139, 140, 141,
- 142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
- 152, 153, 154, 155, 1, 2, 3, 4, 5, 6,
- 7, 8, 9, 10, 11, 12, 13, 438, 439, 440,
- 441, 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, 156, 442, 443, 444, 445, 446, 447, 448, 484,
- 501, 485, 102, 524, 450, 526, 527, 405, 103, 203,
- 204, 205, 206, 207, 208, 209, 210, 525, 233, 234,
- 235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
- 245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
- 255, 256, 211, 212, 213, 214, 215, 216, 217, 218,
- 219, 220, 221, 222, 223, 224, 225, 226, 227, 228,
- 229, 230, 535, 536, 540, 541, 546, 531, 549, 547,
- 550, 402, 0, 0, 0, 0, 261, 262, 263, 264,
- 265, 266, 267, 268, 269, 532, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 307, 308,
- 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
-};
-
-static const yytype_int16 yycheck[] =
-{
- 56, 232, 401, 312, 60, 61, 62, 63, 317, 163,
- 66, 0, 305, 306, 168, 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, 104, 105, 90, 358,
- 182, 106, 184, 87, 88, 89, 90, 91, 92, 93,
- 94, 95, 96, 97, 92, 99, 100, 101, 102, 103,
- 104, 105, 106, 107, 104, 105, 533, 163, 121, 163,
- 59, 91, 168, 314, 168, 542, 141, 486, 67, 165,
- 88, 167, 401, 136, 137, 138, 139, 140, 407, 392,
- 163, 307, 308, 161, 163, 168, 415, 141, 165, 168,
- 202, 203, 204, 205, 206, 207, 208, 209, 210, 102,
- 164, 166, 165, 106, 164, 164, 164, 161, 106, 164,
- 167, 161, 166, 130, 131, 132, 133, 134, 135, 195,
- 196, 233, 234, 235, 236, 237, 238, 239, 240, 241,
- 242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
- 252, 253, 254, 255, 256, 164, 161, 161, 164, 400,
- 88, 89, 164, 164, 164, 93, 94, 486, 164, 488,
- 164, 313, 87, 88, 89, 90, 91, 92, 93, 94,
- 95, 96, 97, 164, 99, 100, 101, 102, 103, 104,
- 105, 106, 107, 121, 122, 123, 124, 125, 126, 127,
- 128, 129, 89, 164, 164, 164, 93, 94, 164, 164,
- 529, 164, 164, 532, 164, 130, 131, 132, 133, 134,
- 135, 89, 164, 164, 164, 93, 141, 164, 164, 164,
- 164, 164, 164, 164, 121, 122, 123, 124, 125, 126,
- 127, 128, 129, 164, 164, 164, 161, 164, 162, 165,
- 160, 166, 164, 121, 122, 123, 124, 125, 126, 127,
- 128, 129, 87, 88, 89, 90, 91, 92, 93, 94,
- 95, 96, 97, 164, 99, 100, 101, 102, 103, 104,
- 105, 106, 107, 164, 164, 164, 164, 164, 164, 164,
- 164, 164, 164, 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, 87, 88, 89, 90, 91, 92,
- 93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
- 103, 104, 105, 106, 164, 164, 164, 164, 164, 164,
- 416, 417, 418, 419, 420, 421, 422, 423, 164, 164,
- 426, 427, 428, 429, 430, 431, 432, 433, 434, 435,
- 436, 437, 438, 439, 440, 441, 442, 443, 444, 445,
- 446, 447, 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, 142, 143, 144, 145,
- 146, 147, 148, 149, 150, 151, 152, 153, 154, 155,
- 156, 157, 158, 159, 108, 109, 110, 111, 112, 113,
- 114, 115, 116, 117, 118, 119, 120, 164, 164, 164,
- 164, 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, 164, 164, 164, 164, 164, 164, 160, 164,
- 160, 164, 163, 160, 170, 161, 161, 161, 169, 68,
- 69, 70, 71, 72, 73, 74, 75, 170, 77, 78,
- 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
- 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
- 99, 100, 87, 88, 89, 90, 91, 92, 93, 94,
- 95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
- 105, 106, 164, 164, 161, 161, 164, 161, 161, 164,
- 161, 315, -1, -1, -1, -1, 121, 122, 123, 124,
- 125, 126, 127, 128, 129, 489, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 157, 158,
- 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
-};
-
- /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
- symbol of state STATE-NUM. */
-static const yytype_uint8 yystos[] =
-{
- 0, 108, 109, 110, 111, 112, 113, 114, 115, 116,
- 117, 118, 119, 120, 172, 173, 0, 174, 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, 163, 169, 175, 176, 196, 183, 183, 183,
- 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
- 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
- 183, 183, 183, 183, 183, 183, 183, 183, 142, 143,
- 144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
- 154, 155, 156, 157, 158, 159, 183, 193, 195, 90,
- 92, 91, 87, 88, 89, 90, 91, 92, 93, 94,
- 95, 96, 97, 99, 100, 101, 102, 103, 104, 105,
- 106, 107, 141, 161, 166, 185, 186, 191, 130, 131,
- 132, 133, 134, 135, 185, 192, 192, 185, 185, 185,
- 185, 185, 192, 183, 183, 183, 183, 183, 183, 183,
- 183, 87, 88, 89, 90, 91, 92, 93, 94, 95,
- 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
- 106, 177, 178, 183, 183, 183, 183, 183, 183, 183,
- 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
- 183, 183, 183, 183, 183, 183, 183, 176, 106, 141,
- 176, 121, 122, 123, 124, 125, 126, 127, 128, 129,
- 177, 184, 177, 177, 177, 177, 177, 177, 177, 177,
- 177, 177, 177, 177, 177, 177, 177, 177, 177, 177,
- 177, 177, 177, 177, 177, 177, 177, 177, 177, 177,
- 177, 177, 89, 93, 94, 194, 88, 183, 183, 164,
- 164, 164, 191, 166, 191, 164, 167, 187, 185, 185,
- 177, 177, 177, 177, 177, 177, 177, 177, 177, 165,
- 179, 187, 177, 177, 177, 177, 177, 177, 177, 177,
- 177, 177, 177, 177, 177, 177, 177, 177, 177, 177,
- 177, 177, 177, 177, 177, 177, 165, 181, 106, 164,
- 164, 164, 164, 164, 164, 164, 164, 164, 164, 164,
- 164, 164, 164, 164, 164, 164, 164, 164, 164, 164,
- 164, 164, 164, 164, 164, 164, 164, 164, 164, 164,
- 179, 179, 194, 88, 94, 194, 161, 162, 161, 181,
- 191, 187, 186, 104, 105, 161, 188, 190, 121, 136,
- 137, 138, 139, 140, 181, 189, 164, 164, 164, 164,
- 164, 164, 164, 164, 160, 180, 164, 164, 164, 164,
- 164, 164, 164, 164, 164, 164, 164, 164, 164, 164,
- 164, 164, 164, 164, 164, 164, 164, 164, 160, 182,
- 170, 181, 185, 185, 185, 185, 185, 185, 185, 185,
- 185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
- 185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
- 185, 185, 185, 179, 164, 164, 187, 181, 189, 163,
- 168, 181, 181, 185, 185, 185, 185, 185, 185, 185,
- 185, 160, 185, 185, 185, 185, 185, 185, 185, 185,
- 185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
- 185, 185, 185, 185, 160, 170, 161, 161, 181, 189,
- 181, 161, 190, 163, 168, 164, 164, 181, 181, 188,
- 161, 161, 163, 168, 163, 168, 164, 164, 188, 161,
- 161, 168
-};
-
- /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
-static const yytype_uint8 yyr1[] =
-{
- 0, 171, 172, 173, 173, 173, 173, 173, 173, 173,
- 173, 173, 173, 173, 173, 173, 174, 174, 175, 175,
- 175, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
- 176, 176, 176, 176, 176, 176, 177, 177, 178, 178,
- 178, 178, 178, 178, 178, 178, 178, 178, 178, 178,
- 178, 178, 178, 178, 178, 178, 178, 178, 179, 180,
- 180, 181, 181, 182, 182, 183, 183, 184, 184, 184,
- 184, 184, 184, 184, 184, 184, 185, 185, 186, 186,
- 186, 186, 186, 186, 186, 187, 187, 187, 187, 187,
- 187, 188, 188, 189, 189, 189, 189, 189, 189, 190,
- 190, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 192, 192, 192, 192, 192, 192, 193, 193, 193,
- 193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
- 193, 194, 194, 195, 195, 195, 195, 196, 196
-};
-
- /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
-static const yytype_uint8 yyr2[] =
-{
- 0, 2, 2, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 0, 2, 1, 2,
- 2, 5, 1, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 3, 4, 4, 5, 3, 4, 4,
- 3, 4, 4, 10, 10, 4, 2, 1, 2, 3,
- 1, 1, 1, 3, 2, 2, 2, 2, 1, 1,
- 2, 5, 5, 5, 5, 5, 5, 5, 3, 5,
- 2, 3, 3, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 1, 2, 2, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 2, 1,
- 2, 0, 2, 1, 2, 0, 2, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 3, 3, 4,
- 4, 5, 5, 6, 3, 0, 3, 4, 6, 6,
- 8, 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, 4, 5
-};
-
-
-#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 (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); \
- YYFPRINTF (stderr, "\n"); \
- } \
-} while (0)
-
-
-/*-----------------------------------.
-| Print this symbol's value on YYO. |
-`-----------------------------------*/
-
-static void
-yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
-{
- FILE *yyoutput = yyo;
- YYUSE (yyoutput);
- if (!yyvaluep)
- return;
-# ifdef YYPRINT
- if (yytype < YYNTOKENS)
- YYPRINT (yyo, yytoknum[yytype], *yyvaluep);
-# endif
- YYUSE (yytype);
-}
-
-
-/*---------------------------.
-| Print this symbol on YYO. |
-`---------------------------*/
-
-static void
-yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
-{
- YYFPRINTF (yyo, "%s %s (",
- yytype < YYNTOKENS ? "token" : "nterm",
yytname[yytype]);
-
- yy_symbol_value_print (yyo, yytype, yyvaluep);
- YYFPRINTF (yyo, ")");
-}
-
-/*------------------------------------------------------------------.
-| yy_stack_print -- Print the state stack from its BOTTOM up to its |
-| TOP (included). |
-`------------------------------------------------------------------*/
-
-static void
-yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
-{
- YYFPRINTF (stderr, "Stack now");
- for (; yybottom <= yytop; yybottom++)
- {
- int yybot = *yybottom;
- YYFPRINTF (stderr, " %d", yybot);
- }
- YYFPRINTF (stderr, "\n");
-}
-
-# define YY_STACK_PRINT(Bottom, Top) \
-do { \
- if (yydebug) \
- yy_stack_print ((Bottom), (Top)); \
-} while (0)
-
-
-/*------------------------------------------------.
-| Report that the YYRULE is going to be reduced. |
-`------------------------------------------------*/
-
-static void
-yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)
-{
- unsigned long yylno = yyrline[yyrule];
- int yynrhs = yyr2[yyrule];
- int yyi;
- YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
- yyrule - 1, yylno);
- /* The symbols being reduced. */
- for (yyi = 0; yyi < yynrhs; yyi++)
- {
- YYFPRINTF (stderr, " $%d = ", yyi + 1);
- yy_symbol_print (stderr,
- yystos[yyssp[yyi + 1 - yynrhs]],
- &yyvsp[(yyi + 1) - (yynrhs)]
- );
- YYFPRINTF (stderr, "\n");
- }
-}
-
-# define YY_REDUCE_PRINT(Rule) \
-do { \
- if (yydebug) \
- yy_reduce_print (yyssp, yyvsp, Rule); \
-} 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;
- else
- goto append;
-
- append:
- default:
- if (yyres)
- yyres[yyn] = *yyp;
- yyn++;
- break;
-
- case '"':
- if (yyres)
- yyres[yyn] = '\0';
- return yyn;
- }
- do_not_strip_quotes: ;
- }
-
- if (! yyres)
- return yystrlen (yystr);
-
- return (YYSIZE_T) (yystpcpy (yyres, yystr) - yyres);
-}
-# endif
-
-/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
- about the unexpected token YYTOKEN for the state stack whose top is
- YYSSP.
-
- Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
- not large enough to hold the message. In that case, also set
- *YYMSG_ALLOC to the required number of bytes. Return 2 if the
- required number of bytes is too large to store. */
-static int
-yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
- yytype_int16 *yyssp, int yytoken)
-{
- YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
- YYSIZE_T yysize = yysize0;
- enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
- /* Internationalized format string. */
- const char *yyformat = YY_NULLPTR;
- /* Arguments of yyformat. */
- char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
- /* Number of reported tokens (one for the "unexpected", one per
- "expected"). */
- int yycount = 0;
-
- /* There are many possibilities here to consider:
- - If this state is a consistent state with a default action, then
- the only way this function was invoked is if the default action
- is an error action. In that case, don't check for expected
- tokens because there are none.
- - The only way there can be no lookahead present (in yychar) is if
- this state is a consistent state with a default action. Thus,
- detecting the absence of a lookahead is sufficient to determine
- that there is no unexpected or expected token to report. In that
- case, just report a simple "syntax error".
- - Don't assume there isn't a lookahead just because this state is a
- consistent state with a default action. There might have been a
- previous inconsistent state, consistent state with a non-default
- action, or user semantic action that manipulated yychar.
- - Of course, the expected token list depends on states to have
- correct lookahead information, and it depends on the parser not
- to perform extra reductions after fetching a lookahead from the
- scanner and before detecting a syntax error. Thus, state merging
- (from LALR or IELR) and default reductions corrupt the expected
- token list. However, the list is correct for canonical LR with
- one exception: it will still contain any token that will not be
- accepted due to an error action in a later state.
- */
- if (yytoken != YYEMPTY)
- {
- int yyn = yypact[*yyssp];
- yyarg[yycount++] = yytname[yytoken];
- if (!yypact_value_is_default (yyn))
- {
- /* Start YYX at -YYN if negative to avoid negative indexes in
- YYCHECK. In other words, skip the first -YYN actions for
- this state because they are default actions. */
- int yyxbegin = yyn < 0 ? -yyn : 0;
- /* Stay within bounds of both yycheck and yytname. */
- int yychecklim = YYLAST - yyn + 1;
- int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
- int yyx;
-
- for (yyx = yyxbegin; yyx < yyxend; ++yyx)
- if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
- && !yytable_value_is_error (yytable[yyx + yyn]))
- {
- if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
- {
- yycount = 1;
- yysize = yysize0;
- break;
- }
- yyarg[yycount++] = yytname[yyx];
- {
- YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
- if (yysize <= yysize1 && yysize1 <=
YYSTACK_ALLOC_MAXIMUM)
- yysize = yysize1;
- else
- return 2;
- }
- }
- }
- }
-
- switch (yycount)
- {
-# define YYCASE_(N, S) \
- case N: \
- yyformat = S; \
- break
- default: /* Avoid compiler warnings. */
- YYCASE_(0, YY_("syntax error"));
- YYCASE_(1, YY_("syntax error, unexpected %s"));
- YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
- YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
- YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or
%s"));
- YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or
%s"));
-# undef YYCASE_
- }
-
- {
- YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
- if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
- yysize = yysize1;
- else
- return 2;
- }
-
- 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)
-{
- YYUSE (yyvaluep);
- if (!yymsg)
- yymsg = "Deleting";
- YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
-
- YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
- YYUSE (yytype);
- YY_IGNORE_MAYBE_UNINITIALIZED_END
-}
-
-
-
-
-/* The lookahead symbol. */
-int yychar;
-
-/* The semantic value of the lookahead symbol. */
-YYSTYPE yylval;
-/* Number of syntax errors so far. */
-int yynerrs;
-
-
-/*----------.
-| yyparse. |
-`----------*/
-
-int
-yyparse (void)
-{
- 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++;
-
-
-/*--------------------------------------------------------------------.
-| yynewstate -- set current state (the top of the stack) to yystate. |
-`--------------------------------------------------------------------*/
-yysetstate:
- YYDPRINTF ((stderr, "Entering state %d\n", yystate));
- YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
- *yyssp = (yytype_int16) yystate;
-
- if (yyss + yystacksize - 1 <= yyssp)
-#if !defined yyoverflow && !defined YYSTACK_RELOCATE
- goto yyexhaustedlab;
-#else
- {
- /* Get the current used size of the three stacks, in elements. */
- YYSIZE_T yysize = (YYSIZE_T) (yyssp - yyss + 1);
-
-# if defined 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 /* defined YYSTACK_RELOCATE */
- /* 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
-
- yyssp = yyss + yysize - 1;
- yyvsp = yyvs + yysize - 1;
-
- YYDPRINTF ((stderr, "Stack size increased to %lu\n",
- (unsigned long) yystacksize));
-
- if (yyss + yystacksize - 1 <= yyssp)
- YYABORT;
- }
-#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
-
- 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 ();
- }
-
- 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 310 "asmshader.y"
- {
- asm_ctx.funcs->end(&asm_ctx);
- }
-#line 1900 "asmshader.tab.c"
- break;
-
- case 3:
-#line 315 "asmshader.y"
- {
- TRACE("Vertex shader 1.0\n");
- create_vs10_parser(&asm_ctx);
- }
-#line 1909 "asmshader.tab.c"
- break;
-
- case 4:
-#line 320 "asmshader.y"
- {
- TRACE("Vertex shader 1.1\n");
- create_vs11_parser(&asm_ctx);
- }
-#line 1918 "asmshader.tab.c"
- break;
-
- case 5:
-#line 325 "asmshader.y"
- {
- TRACE("Vertex shader 2.0\n");
- create_vs20_parser(&asm_ctx);
- }
-#line 1927 "asmshader.tab.c"
- break;
-
- case 6:
-#line 330 "asmshader.y"
- {
- TRACE("Vertex shader 2.x\n");
- create_vs2x_parser(&asm_ctx);
- }
-#line 1936 "asmshader.tab.c"
- break;
-
- case 7:
-#line 335 "asmshader.y"
- {
- TRACE("Vertex shader 3.0\n");
- create_vs30_parser(&asm_ctx);
- }
-#line 1945 "asmshader.tab.c"
- break;
-
- case 8:
-#line 340 "asmshader.y"
- {
- TRACE("Pixel shader 1.0\n");
- create_ps10_parser(&asm_ctx);
- }
-#line 1954 "asmshader.tab.c"
- break;
-
- case 9:
-#line 345 "asmshader.y"
- {
- TRACE("Pixel shader 1.1\n");
- create_ps11_parser(&asm_ctx);
- }
-#line 1963 "asmshader.tab.c"
- break;
-
- case 10:
-#line 350 "asmshader.y"
- {
- TRACE("Pixel shader 1.2\n");
- create_ps12_parser(&asm_ctx);
- }
-#line 1972 "asmshader.tab.c"
- break;
-
- case 11:
-#line 355 "asmshader.y"
- {
- TRACE("Pixel shader 1.3\n");
- create_ps13_parser(&asm_ctx);
- }
-#line 1981 "asmshader.tab.c"
- break;
-
- case 12:
-#line 360 "asmshader.y"
- {
- TRACE("Pixel shader 1.4\n");
- create_ps14_parser(&asm_ctx);
- }
-#line 1990 "asmshader.tab.c"
- break;
-
- case 13:
-#line 365 "asmshader.y"
- {
- TRACE("Pixel shader 2.0\n");
- create_ps20_parser(&asm_ctx);
- }
-#line 1999 "asmshader.tab.c"
- break;
-
- case 14:
-#line 370 "asmshader.y"
- {
- TRACE("Pixel shader 2.x\n");
- create_ps2x_parser(&asm_ctx);
- }
-#line 2008 "asmshader.tab.c"
- break;
-
- case 15:
-#line 375 "asmshader.y"
- {
- TRACE("Pixel shader 3.0\n");
- create_ps30_parser(&asm_ctx);
- }
-#line 2017 "asmshader.tab.c"
- break;
-
- case 17:
-#line 382 "asmshader.y"
- {
- /* Nothing to do */
- }
-#line 2025 "asmshader.tab.c"
- break;
-
- case 18:
-#line 387 "asmshader.y"
- {
-
- }
-#line 2033 "asmshader.tab.c"
- break;
-
- case 19:
-#line 391 "asmshader.y"
- {
- TRACE("predicate\n");
- asm_ctx.funcs->predicate(&asm_ctx,
&(yyvsp[-1].reg));
- }
-#line 2042 "asmshader.tab.c"
- break;
-
- case 20:
-#line 396 "asmshader.y"
- {
- TRACE("coissue\n");
- asm_ctx.funcs->coissue(&asm_ctx);
- }
-#line 2051 "asmshader.tab.c"
- break;
-
- case 21:
-#line 402 "asmshader.y"
- {
- TRACE("ADD\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_ADD,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2060 "asmshader.tab.c"
- break;
-
- case 22:
-#line 407 "asmshader.y"
- {
- TRACE("NOP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_NOP, 0,
0, 0, 0, 0, 0);
- }
-#line 2069 "asmshader.tab.c"
- break;
-
- case 23:
-#line 412 "asmshader.y"
- {
- TRACE("MOV\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_MOV,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2078 "asmshader.tab.c"
- break;
-
- case 24:
-#line 417 "asmshader.y"
- {
- TRACE("SUB\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_SUB,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2087 "asmshader.tab.c"
- break;
-
- case 25:
-#line 422 "asmshader.y"
- {
- TRACE("MAD\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_MAD,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 3);
- }
-#line 2096 "asmshader.tab.c"
- break;
-
- case 26:
-#line 427 "asmshader.y"
- {
- TRACE("MUL\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_MUL,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2105 "asmshader.tab.c"
- break;
-
- case 27:
-#line 432 "asmshader.y"
- {
- TRACE("RCP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_RCP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2114 "asmshader.tab.c"
- break;
-
- case 28:
-#line 437 "asmshader.y"
- {
- TRACE("RSQ\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_RSQ,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2123 "asmshader.tab.c"
- break;
-
- case 29:
-#line 442 "asmshader.y"
- {
- TRACE("DP3\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_DP3,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2132 "asmshader.tab.c"
- break;
-
- case 30:
-#line 447 "asmshader.y"
- {
- TRACE("DP4\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_DP4,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2141 "asmshader.tab.c"
- break;
-
- case 31:
-#line 452 "asmshader.y"
- {
- TRACE("MIN\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_MIN,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2150 "asmshader.tab.c"
- break;
-
- case 32:
-#line 457 "asmshader.y"
- {
- TRACE("MAX\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_MAX,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2159 "asmshader.tab.c"
- break;
-
- case 33:
-#line 462 "asmshader.y"
- {
- TRACE("SLT\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_SLT,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2168 "asmshader.tab.c"
- break;
-
- case 34:
-#line 467 "asmshader.y"
- {
- TRACE("SGE\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_SGE,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2177 "asmshader.tab.c"
- break;
-
- case 35:
-#line 472 "asmshader.y"
- {
- TRACE("ABS\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_ABS,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2186 "asmshader.tab.c"
- break;
-
- case 36:
-#line 477 "asmshader.y"
- {
- TRACE("EXP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_EXP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2195 "asmshader.tab.c"
- break;
-
- case 37:
-#line 482 "asmshader.y"
- {
- TRACE("LOG\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_LOG,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2204 "asmshader.tab.c"
- break;
-
- case 38:
-#line 487 "asmshader.y"
- {
- TRACE("LOGP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_LOGP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2213 "asmshader.tab.c"
- break;
-
- case 39:
-#line 492 "asmshader.y"
- {
- TRACE("EXPP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_EXPP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2222 "asmshader.tab.c"
- break;
-
- case 40:
-#line 497 "asmshader.y"
- {
- TRACE("DST\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_DST,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2231 "asmshader.tab.c"
- break;
-
- case 41:
-#line 502 "asmshader.y"
- {
- TRACE("LRP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_LRP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 3);
- }
-#line 2240 "asmshader.tab.c"
- break;
-
- case 42:
-#line 507 "asmshader.y"
- {
- TRACE("FRC\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_FRC,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2249 "asmshader.tab.c"
- break;
-
- case 43:
-#line 512 "asmshader.y"
- {
- TRACE("POW\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_POW,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2258 "asmshader.tab.c"
- break;
-
- case 44:
-#line 517 "asmshader.y"
- {
- TRACE("CRS\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_CRS,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2267 "asmshader.tab.c"
- break;
-
- case 45:
-#line 522 "asmshader.y"
- {
- TRACE("SGN\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_SGN,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 3);
- }
-#line 2276 "asmshader.tab.c"
- break;
-
- case 46:
-#line 527 "asmshader.y"
- {
- TRACE("NRM\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_NRM,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2285 "asmshader.tab.c"
- break;
-
- case 47:
-#line 532 "asmshader.y"
- {
- TRACE("SINCOS\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_SINCOS,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2294 "asmshader.tab.c"
- break;
-
- case 48:
-#line 537 "asmshader.y"
- {
- TRACE("M4x4\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_M4x4,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2303 "asmshader.tab.c"
- break;
-
- case 49:
-#line 542 "asmshader.y"
- {
- TRACE("M4x3\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_M4x3,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2312 "asmshader.tab.c"
- break;
-
- case 50:
-#line 547 "asmshader.y"
- {
- TRACE("M3x4\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_M3x4,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2321 "asmshader.tab.c"
- break;
-
- case 51:
-#line 552 "asmshader.y"
- {
- TRACE("M3x3\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_M3x3,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2330 "asmshader.tab.c"
- break;
-
- case 52:
-#line 557 "asmshader.y"
- {
- TRACE("M3x2\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_M3x2,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2339 "asmshader.tab.c"
- break;
-
- case 53:
-#line 562 "asmshader.y"
- {
- struct shader_reg reg;
- TRACE("Output reg declaration\n");
- ZeroMemory(®, sizeof(reg));
- reg.type = BWRITERSPR_OUTPUT;
- reg.regnum = (yyvsp[0].regnum);
- reg.rel_reg = NULL;
- reg.srcmod = 0;
- reg.u.writemask = BWRITERSP_WRITEMASK_ALL;
- asm_ctx.funcs->dcl_output(&asm_ctx,
(yyvsp[-1].declaration).dclusage, (yyvsp[-1].declaration).regnum, ®);
- }
-#line 2355 "asmshader.tab.c"
- break;
-
- case 54:
-#line 574 "asmshader.y"
- {
- struct shader_reg reg;
- TRACE("Output reg declaration\n");
- ZeroMemory(®, sizeof(reg));
- reg.type = BWRITERSPR_OUTPUT;
- reg.regnum = (yyvsp[-1].regnum);
- reg.rel_reg = NULL;
- reg.srcmod = 0;
- reg.u.writemask = (yyvsp[0].writemask);
- asm_ctx.funcs->dcl_output(&asm_ctx,
(yyvsp[-2].declaration).dclusage, (yyvsp[-2].declaration).regnum, ®);
- }
-#line 2371 "asmshader.tab.c"
- break;
-
- case 55:
-#line 586 "asmshader.y"
- {
- struct shader_reg reg;
- TRACE("Input reg declaration\n");
- if((yyvsp[-1].modshift).shift != 0) {
- asmparser_message(&asm_ctx, "Line %u: Shift
modifier not allowed here\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- if(asm_ctx.shader->version == BWRITERPS_VERSION(2, 0)
||
- asm_ctx.shader->version == BWRITERPS_VERSION(2,
1)) {
- asmparser_message(&asm_ctx, "Line %u:
Declaration not supported in PS 2\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- ZeroMemory(®, sizeof(reg));
- reg.type = (yyvsp[0].reg).type;
- reg.regnum = (yyvsp[0].reg).regnum;
- reg.rel_reg = NULL;
- reg.srcmod = 0;
- reg.u.writemask = BWRITERSP_WRITEMASK_ALL;
- asm_ctx.funcs->dcl_input(&asm_ctx,
(yyvsp[-2].declaration).dclusage, (yyvsp[-2].declaration).regnum,
(yyvsp[-1].modshift).mod, ®);
- }
-#line 2398 "asmshader.tab.c"
- break;
-
- case 56:
-#line 609 "asmshader.y"
- {
- struct shader_reg reg;
- TRACE("Input reg declaration\n");
- if((yyvsp[-2].modshift).shift != 0) {
- asmparser_message(&asm_ctx, "Line %u: Shift
modifier not allowed here\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- if(asm_ctx.shader->version == BWRITERPS_VERSION(2, 0)
||
- asm_ctx.shader->version == BWRITERPS_VERSION(2,
1)) {
- asmparser_message(&asm_ctx, "Line %u:
Declaration not supported in PS 2\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- ZeroMemory(®, sizeof(reg));
- reg.type = (yyvsp[-1].reg).type;
- reg.regnum = (yyvsp[-1].reg).regnum;
- reg.rel_reg = NULL;
- reg.srcmod = 0;
- reg.u.writemask = (yyvsp[0].writemask);
- asm_ctx.funcs->dcl_input(&asm_ctx,
(yyvsp[-3].declaration).dclusage, (yyvsp[-3].declaration).regnum,
(yyvsp[-2].modshift).mod, ®);
- }
-#line 2425 "asmshader.tab.c"
- break;
-
- case 57:
-#line 632 "asmshader.y"
- {
- struct shader_reg reg;
- TRACE("Input reg declaration\n");
- if((yyvsp[-1].modshift).shift != 0) {
- asmparser_message(&asm_ctx, "Line %u: Shift
modifier not allowed here\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- if(asm_ctx.shader->type != ST_PIXEL) {
- asmparser_message(&asm_ctx, "Line %u:
Declaration needs a semantic\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- ZeroMemory(®, sizeof(reg));
- reg.type = (yyvsp[0].reg).type;
- reg.regnum = (yyvsp[0].reg).regnum;
- reg.rel_reg = NULL;
- reg.srcmod = 0;
- reg.u.writemask = BWRITERSP_WRITEMASK_ALL;
- asm_ctx.funcs->dcl_input(&asm_ctx, 0, 0,
(yyvsp[-1].modshift).mod, ®);
- }
-#line 2451 "asmshader.tab.c"
- break;
-
- case 58:
-#line 654 "asmshader.y"
- {
- struct shader_reg reg;
- TRACE("Input reg declaration\n");
- if((yyvsp[-2].modshift).shift != 0) {
- asmparser_message(&asm_ctx, "Line %u: Shift
modifier not allowed here\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- if(asm_ctx.shader->type != ST_PIXEL) {
- asmparser_message(&asm_ctx, "Line %u:
Declaration needs a semantic\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- ZeroMemory(®, sizeof(reg));
- reg.type = (yyvsp[-1].reg).type;
- reg.regnum = (yyvsp[-1].reg).regnum;
- reg.rel_reg = NULL;
- reg.srcmod = 0;
- reg.u.writemask = (yyvsp[0].writemask);
- asm_ctx.funcs->dcl_input(&asm_ctx, 0, 0,
(yyvsp[-2].modshift).mod, ®);
- }
-#line 2477 "asmshader.tab.c"
- break;
-
- case 59:
-#line 676 "asmshader.y"
- {
- TRACE("Sampler declared\n");
- if((yyvsp[-1].modshift).shift != 0) {
- asmparser_message(&asm_ctx, "Line %u: Shift
modifier not allowed here\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- asm_ctx.funcs->dcl_sampler(&asm_ctx,
(yyvsp[-2].samplertype), (yyvsp[-1].modshift).mod, (yyvsp[0].regnum), asm_ctx.line_no);
- }
-#line 2491 "asmshader.tab.c"
- break;
-
- case 60:
-#line 686 "asmshader.y"
- {
- TRACE("Sampler declared\n");
- if((yyvsp[-1].modshift).shift != 0) {
- asmparser_message(&asm_ctx, "Line %u: Shift
modifier not allowed here\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- if(asm_ctx.shader->type != ST_PIXEL) {
- asmparser_message(&asm_ctx, "Line %u:
Declaration needs a sampler type\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- asm_ctx.funcs->dcl_sampler(&asm_ctx,
BWRITERSTT_UNKNOWN, (yyvsp[-1].modshift).mod, (yyvsp[0].regnum), asm_ctx.line_no);
- }
-#line 2510 "asmshader.tab.c"
- break;
-
- case 61:
-#line 701 "asmshader.y"
- {
- TRACE("Error rule: sampler decl of input
reg\n");
- asmparser_message(&asm_ctx, "Line %u: Sampler
declarations of input regs is not valid\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 2521 "asmshader.tab.c"
- break;
-
- case 62:
-#line 708 "asmshader.y"
- {
- TRACE("Error rule: sampler decl of output
reg\n");
- asmparser_message(&asm_ctx, "Line %u: Sampler
declarations of output regs is not valid\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 2532 "asmshader.tab.c"
- break;
-
- case 63:
-#line 715 "asmshader.y"
- {
- asm_ctx.funcs->constF(&asm_ctx,
(yyvsp[-8].regnum), (yyvsp[-6].immval).val, (yyvsp[-4].immval).val,
(yyvsp[-2].immval).val, (yyvsp[0].immval).val);
- }
-#line 2540 "asmshader.tab.c"
- break;
-
- case 64:
-#line 719 "asmshader.y"
- {
- asm_ctx.funcs->constI(&asm_ctx,
(yyvsp[-8].regnum), (yyvsp[-6].immval).val, (yyvsp[-4].immval).val,
(yyvsp[-2].immval).val, (yyvsp[0].immval).val);
- }
-#line 2548 "asmshader.tab.c"
- break;
-
- case 65:
-#line 723 "asmshader.y"
- {
- asm_ctx.funcs->constB(&asm_ctx,
(yyvsp[-2].regnum), (yyvsp[0].immbool));
- }
-#line 2556 "asmshader.tab.c"
- break;
-
- case 66:
-#line 727 "asmshader.y"
- {
- TRACE("REP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_REP, 0,
0, 0, 0, &(yyvsp[0].sregs), 1);
- }
-#line 2565 "asmshader.tab.c"
- break;
-
- case 67:
-#line 732 "asmshader.y"
- {
- TRACE("ENDREP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_ENDREP,
0, 0, 0, 0, 0, 0);
- }
-#line 2574 "asmshader.tab.c"
- break;
-
- case 68:
-#line 737 "asmshader.y"
- {
- TRACE("IF\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_IF, 0,
0, 0, 0, &(yyvsp[0].sregs), 1);
- }
-#line 2583 "asmshader.tab.c"
- break;
-
- case 69:
-#line 742 "asmshader.y"
- {
- TRACE("IFC\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_IFC, 0,
0, (yyvsp[-1].comptype), 0, &(yyvsp[0].sregs), 2);
- }
-#line 2592 "asmshader.tab.c"
- break;
-
- case 70:
-#line 747 "asmshader.y"
- {
- TRACE("ELSE\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_ELSE, 0,
0, 0, 0, 0, 0);
- }
-#line 2601 "asmshader.tab.c"
- break;
-
- case 71:
-#line 752 "asmshader.y"
- {
- TRACE("ENDIF\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_ENDIF,
0, 0, 0, 0, 0, 0);
- }
-#line 2610 "asmshader.tab.c"
- break;
-
- case 72:
-#line 757 "asmshader.y"
- {
- TRACE("BREAK\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_BREAK,
0, 0, 0, 0, 0, 0);
- }
-#line 2619 "asmshader.tab.c"
- break;
-
- case 73:
-#line 762 "asmshader.y"
- {
- TRACE("BREAKC\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_BREAKC,
0, 0, (yyvsp[-1].comptype), 0, &(yyvsp[0].sregs), 2);
- }
-#line 2628 "asmshader.tab.c"
- break;
-
- case 74:
-#line 767 "asmshader.y"
- {
- TRACE("BREAKP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_BREAKP,
0, 0, 0, 0, &(yyvsp[0].sregs), 1);
- }
-#line 2637 "asmshader.tab.c"
- break;
-
- case 75:
-#line 772 "asmshader.y"
- {
- TRACE("CALL\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_CALL, 0,
0, 0, 0, &(yyvsp[0].sregs), 1);
- }
-#line 2646 "asmshader.tab.c"
- break;
-
- case 76:
-#line 777 "asmshader.y"
- {
- TRACE("CALLNZ\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_CALLNZ,
0, 0, 0, 0, &(yyvsp[0].sregs), 2);
- }
-#line 2655 "asmshader.tab.c"
- break;
-
- case 77:
-#line 782 "asmshader.y"
- {
- TRACE("LOOP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_LOOP, 0,
0, 0, 0, &(yyvsp[0].sregs), 2);
- }
-#line 2664 "asmshader.tab.c"
- break;
-
- case 78:
-#line 787 "asmshader.y"
- {
- TRACE("RET\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_RET, 0,
0, 0, 0, 0, 0);
- }
-#line 2673 "asmshader.tab.c"
- break;
-
- case 79:
-#line 792 "asmshader.y"
- {
- TRACE("ENDLOOP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_ENDLOOP,
0, 0, 0, 0, 0, 0);
- }
-#line 2682 "asmshader.tab.c"
- break;
-
- case 80:
-#line 797 "asmshader.y"
- {
- TRACE("LABEL\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_LABEL,
0, 0, 0, 0, &(yyvsp[0].sregs), 1);
- }
-#line 2691 "asmshader.tab.c"
- break;
-
- case 81:
-#line 802 "asmshader.y"
- {
- TRACE("SETP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_SETP, 0,
0, (yyvsp[-3].comptype), &(yyvsp[-2].reg), &(yyvsp[0].sregs), 2);
- }
-#line 2700 "asmshader.tab.c"
- break;
-
- case 82:
-#line 807 "asmshader.y"
- {
- TRACE("TEXLDL\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXLDL,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2709 "asmshader.tab.c"
- break;
-
- case 83:
-#line 812 "asmshader.y"
- {
- TRACE("LIT\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_LIT,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2718 "asmshader.tab.c"
- break;
-
- case 84:
-#line 817 "asmshader.y"
- {
- TRACE("MOVA\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_MOVA,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2727 "asmshader.tab.c"
- break;
-
- case 85:
-#line 822 "asmshader.y"
- {
- TRACE("CND\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_CND,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 3);
- }
-#line 2736 "asmshader.tab.c"
- break;
-
- case 86:
-#line 827 "asmshader.y"
- {
- TRACE("CMP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_CMP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 3);
- }
-#line 2745 "asmshader.tab.c"
- break;
-
- case 87:
-#line 832 "asmshader.y"
- {
- TRACE("DP2ADD\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_DP2ADD,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 3);
- }
-#line 2754 "asmshader.tab.c"
- break;
-
- case 88:
-#line 837 "asmshader.y"
- {
- TRACE("TEXCOORD\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXCOORD, (yyvsp[-1].modshift).mod, (yyvsp[-1].modshift).shift, 0,
&(yyvsp[0].reg), 0, 0);
- }
-#line 2763 "asmshader.tab.c"
- break;
-
- case 89:
-#line 842 "asmshader.y"
- {
- TRACE("TEXCRD\n");
- /* texcoord and texcrd share the same opcode */
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXCOORD, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2773 "asmshader.tab.c"
- break;
-
- case 90:
-#line 848 "asmshader.y"
- {
- TRACE("TEXKILL\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXKILL,
0, 0, 0, &(yyvsp[0].reg), 0, 0);
- }
-#line 2782 "asmshader.tab.c"
- break;
-
- case 91:
-#line 853 "asmshader.y"
- {
- TRACE("TEX\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEX,
(yyvsp[-1].modshift).mod, (yyvsp[-1].modshift).shift, 0, &(yyvsp[0].reg), 0, 0);
- }
-#line 2791 "asmshader.tab.c"
- break;
-
- case 92:
-#line 858 "asmshader.y"
- {
- TRACE("TEXDEPTH\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXDEPTH, (yyvsp[-1].modshift).mod, (yyvsp[-1].modshift).shift, 0,
&(yyvsp[0].reg), 0, 0);
- }
-#line 2800 "asmshader.tab.c"
- break;
-
- case 93:
-#line 863 "asmshader.y"
- {
- TRACE("TEXLD\n");
- /* There is more than one acceptable syntax for texld:
- with 1 sreg (PS 1.4) or
- with 2 sregs (PS 2.0+)
- Moreover, texld shares the same opcode as the tex
instruction,
- so there are a total of 3 valid syntaxes
- These variations are handled in asmparser.c */
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEX,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2815 "asmshader.tab.c"
- break;
-
- case 94:
-#line 874 "asmshader.y"
- {
- TRACE("TEXLDP\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXLDP,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2824 "asmshader.tab.c"
- break;
-
- case 95:
-#line 879 "asmshader.y"
- {
- TRACE("TEXLDB\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXLDB,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2833 "asmshader.tab.c"
- break;
-
- case 96:
-#line 884 "asmshader.y"
- {
- TRACE("TEXBEM\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXBEM,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2842 "asmshader.tab.c"
- break;
-
- case 97:
-#line 889 "asmshader.y"
- {
- TRACE("TEXBEML\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXBEML,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2851 "asmshader.tab.c"
- break;
-
- case 98:
-#line 894 "asmshader.y"
- {
- TRACE("TEXREG2AR\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXREG2AR, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2860 "asmshader.tab.c"
- break;
-
- case 99:
-#line 899 "asmshader.y"
- {
- TRACE("TEXREG2GB\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXREG2GB, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2869 "asmshader.tab.c"
- break;
-
- case 100:
-#line 904 "asmshader.y"
- {
- TRACE("TEXREG2RGB\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXREG2RGB, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2878 "asmshader.tab.c"
- break;
-
- case 101:
-#line 909 "asmshader.y"
- {
- TRACE("TEXM3x2PAD\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x2PAD, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2887 "asmshader.tab.c"
- break;
-
- case 102:
-#line 914 "asmshader.y"
- {
- TRACE("INSTR_TEXM3x3PAD\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x3PAD, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2896 "asmshader.tab.c"
- break;
-
- case 103:
-#line 919 "asmshader.y"
- {
- TRACE("TEXM3x3SPEC\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x3SPEC, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 2);
- }
-#line 2905 "asmshader.tab.c"
- break;
-
- case 104:
-#line 924 "asmshader.y"
- {
- TRACE("TEXM3x3VSPEC\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x3VSPEC, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2914 "asmshader.tab.c"
- break;
-
- case 105:
-#line 929 "asmshader.y"
- {
- TRACE("TEXM3x3TEX\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x3TEX, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2923 "asmshader.tab.c"
- break;
-
- case 106:
-#line 934 "asmshader.y"
- {
- TRACE("TEXDP3TEX\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXDP3TEX, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2932 "asmshader.tab.c"
- break;
-
- case 107:
-#line 939 "asmshader.y"
- {
- TRACE("TEXM3x2DEPTH\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x2DEPTH, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2941 "asmshader.tab.c"
- break;
-
- case 108:
-#line 944 "asmshader.y"
- {
- TRACE("TEXM3x2TEX\n");
- asm_ctx.funcs->instr(&asm_ctx,
BWRITERSIO_TEXM3x2TEX, (yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0,
&(yyvsp[-2].reg), &(yyvsp[0].sregs), 1);
- }
-#line 2950 "asmshader.tab.c"
- break;
-
- case 109:
-#line 949 "asmshader.y"
- {
- TRACE("TEXDP3\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXDP3,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2959 "asmshader.tab.c"
- break;
-
- case 110:
-#line 954 "asmshader.y"
- {
- TRACE("TEXM3x3\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXM3x3,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2968 "asmshader.tab.c"
- break;
-
- case 111:
-#line 959 "asmshader.y"
- {
- TRACE("BEM\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_BEM,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 2);
- }
-#line 2977 "asmshader.tab.c"
- break;
-
- case 112:
-#line 964 "asmshader.y"
- {
- TRACE("DSX\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_DSX,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2986 "asmshader.tab.c"
- break;
-
- case 113:
-#line 969 "asmshader.y"
- {
- TRACE("DSY\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_DSY,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 1);
- }
-#line 2995 "asmshader.tab.c"
- break;
-
- case 114:
-#line 974 "asmshader.y"
- {
- TRACE("TEXLDD\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_TEXLDD,
(yyvsp[-3].modshift).mod, (yyvsp[-3].modshift).shift, 0, &(yyvsp[-2].reg),
&(yyvsp[0].sregs), 4);
- }
-#line 3004 "asmshader.tab.c"
- break;
-
- case 115:
-#line 979 "asmshader.y"
- {
- TRACE("PHASE\n");
- asm_ctx.funcs->instr(&asm_ctx, BWRITERSIO_PHASE,
0, 0, 0, 0, 0, 0);
- }
-#line 3013 "asmshader.tab.c"
- break;
-
- case 116:
-#line 986 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[-1].reg).regnum;
- (yyval.reg).type = (yyvsp[-1].reg).type;
- (yyval.reg).u.writemask = BWRITERSP_WRITEMASK_ALL;
- (yyval.reg).srcmod = BWRITERSPSM_NONE;
- set_rel_reg(&(yyval.reg), &(yyvsp[0].rel_reg));
- }
-#line 3025 "asmshader.tab.c"
- break;
-
- case 117:
-#line 994 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[-1].reg).regnum;
- (yyval.reg).type = (yyvsp[-1].reg).type;
- (yyval.reg).u.writemask = (yyvsp[0].writemask);
- (yyval.reg).srcmod = BWRITERSPSM_NONE;
- (yyval.reg).rel_reg = NULL;
- }
-#line 3037 "asmshader.tab.c"
- break;
-
- case 118:
-#line 1003 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_TEMP;
- }
-#line 3045 "asmshader.tab.c"
- break;
-
- case 119:
-#line 1007 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_OUTPUT;
- }
-#line 3053 "asmshader.tab.c"
- break;
-
- case 120:
-#line 1011 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_INPUT;
- }
-#line 3061 "asmshader.tab.c"
- break;
-
- case 121:
-#line 1015 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register c%u
is not a valid destination register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3071 "asmshader.tab.c"
- break;
-
- case 122:
-#line 1021 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register i%u
is not a valid destination register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3081 "asmshader.tab.c"
- break;
-
- case 123:
-#line 1027 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register b%u
is not a valid destination register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3091 "asmshader.tab.c"
- break;
-
- case 124:
-#line 1033 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_TEXTURE;
- }
-#line 3099 "asmshader.tab.c"
- break;
-
- case 125:
-#line 1037 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_TEXCRDOUT;
- }
-#line 3107 "asmshader.tab.c"
- break;
-
- case 126:
-#line 1041 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register s%u
is not a valid destination register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3117 "asmshader.tab.c"
- break;
-
- case 127:
-#line 1047 "asmshader.y"
- {
- (yyval.reg).regnum = BWRITERSRO_POSITION; (yyval.reg).type =
BWRITERSPR_RASTOUT;
- }
-#line 3125 "asmshader.tab.c"
- break;
-
- case 128:
-#line 1051 "asmshader.y"
- {
- (yyval.reg).regnum = BWRITERSRO_POINT_SIZE; (yyval.reg).type
= BWRITERSPR_RASTOUT;
- }
-#line 3133 "asmshader.tab.c"
- break;
-
- case 129:
-#line 1055 "asmshader.y"
- {
- (yyval.reg).regnum = BWRITERSRO_FOG; (yyval.reg).type =
BWRITERSPR_RASTOUT;
- }
-#line 3141 "asmshader.tab.c"
- break;
-
- case 130:
-#line 1059 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_ATTROUT;
- }
-#line 3149 "asmshader.tab.c"
- break;
-
- case 131:
-#line 1063 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_COLOROUT;
- }
-#line 3157 "asmshader.tab.c"
- break;
-
- case 132:
-#line 1067 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type =
BWRITERSPR_DEPTHOUT;
- }
-#line 3165 "asmshader.tab.c"
- break;
-
- case 133:
-#line 1071 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type =
BWRITERSPR_PREDICATE;
- }
-#line 3173 "asmshader.tab.c"
- break;
-
- case 134:
-#line 1075 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register vPos
is not a valid destination register\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3183 "asmshader.tab.c"
- break;
-
- case 135:
-#line 1081 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register vFace
is not a valid destination register\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3193 "asmshader.tab.c"
- break;
-
- case 136:
-#line 1087 "asmshader.y"
- {
- /* index 0 is hardcoded for the addr register */
- (yyval.reg).regnum = 0; (yyval.reg).type = BWRITERSPR_ADDR;
- }
-#line 3202 "asmshader.tab.c"
- break;
-
- case 137:
-#line 1092 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register aL is
not a valid destination register\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3212 "asmshader.tab.c"
- break;
-
- case 138:
-#line 1099 "asmshader.y"
- {
- if((yyvsp[0].wm_components).writemask == SWIZZLE_ERR) {
- asmparser_message(&asm_ctx, "Line %u: Invalid
writemask specified\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- /* Provide a correct writemask to prevent following
complaints */
- (yyval.writemask) = BWRITERSP_WRITEMASK_ALL;
- }
- else {
- (yyval.writemask) = (yyvsp[0].wm_components).writemask;
- TRACE("Writemask: %x\n", (yyval.writemask));
- }
- }
-#line 3230 "asmshader.tab.c"
- break;
-
- case 139:
-#line 1114 "asmshader.y"
- {
- (yyval.wm_components).writemask = 1 <<
(yyvsp[0].component);
- (yyval.wm_components).last = (yyvsp[0].component);
- (yyval.wm_components).idx = 1;
- }
-#line 3240 "asmshader.tab.c"
- break;
-
- case 140:
-#line 1120 "asmshader.y"
- {
- if((yyvsp[-1].wm_components).writemask == SWIZZLE_ERR ||
(yyvsp[-1].wm_components).idx == 4)
- /* Wrong writemask */
- (yyval.wm_components).writemask = SWIZZLE_ERR;
- else {
- if((yyvsp[0].component) <=
(yyvsp[-1].wm_components).last)
- (yyval.wm_components).writemask = SWIZZLE_ERR;
- else {
- (yyval.wm_components).writemask =
(yyvsp[-1].wm_components).writemask | (1 << (yyvsp[0].component));
- (yyval.wm_components).idx =
(yyvsp[-1].wm_components).idx + 1;
- }
- }
- }
-#line 3258 "asmshader.tab.c"
- break;
-
- case 141:
-#line 1135 "asmshader.y"
- {
- (yyval.swizzle) = BWRITERVS_NOSWIZZLE;
- TRACE("Default swizzle: %08x\n", (yyval.swizzle));
- }
-#line 3267 "asmshader.tab.c"
- break;
-
- case 142:
-#line 1140 "asmshader.y"
- {
- if((yyvsp[0].sw_components).swizzle == SWIZZLE_ERR) {
- asmparser_message(&asm_ctx, "Line %u: Invalid
swizzle\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- /* Provide a correct swizzle to prevent following
complaints */
- (yyval.swizzle) = BWRITERVS_NOSWIZZLE;
- }
- else {
- DWORD last, i;
-
- (yyval.swizzle) = (yyvsp[0].sw_components).swizzle
<< BWRITERVS_SWIZZLE_SHIFT;
- /* Fill the swizzle by extending the last component */
- last = ((yyvsp[0].sw_components).swizzle >> 2 *
((yyvsp[0].sw_components).idx - 1)) & 0x03;
- for(i = (yyvsp[0].sw_components).idx; i < 4; i++){
- (yyval.swizzle) |= last <<
(BWRITERVS_SWIZZLE_SHIFT + 2 * i);
- }
- TRACE("Got a swizzle: %08x\n",
(yyval.swizzle));
- }
- }
-#line 3292 "asmshader.tab.c"
- break;
-
- case 143:
-#line 1162 "asmshader.y"
- {
- (yyval.sw_components).swizzle = (yyvsp[0].component);
- (yyval.sw_components).idx = 1;
- }
-#line 3301 "asmshader.tab.c"
- break;
-
- case 144:
-#line 1167 "asmshader.y"
- {
- if((yyvsp[-1].sw_components).idx == 4) {
- /* Too many sw_components */
- (yyval.sw_components).swizzle = SWIZZLE_ERR;
- (yyval.sw_components).idx = 4;
- }
- else {
- (yyval.sw_components).swizzle =
(yyvsp[-1].sw_components).swizzle | ((yyvsp[0].component) << 2 *
(yyvsp[-1].sw_components).idx);
- (yyval.sw_components).idx = (yyvsp[-1].sw_components).idx
+ 1;
- }
- }
-#line 3317 "asmshader.tab.c"
- break;
-
- case 145:
-#line 1180 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 0;
- }
-#line 3326 "asmshader.tab.c"
- break;
-
- case 146:
-#line 1185 "asmshader.y"
- {
- (yyval.modshift).mod = (yyvsp[-1].modshift).mod |
(yyvsp[0].modshift).mod;
- if((yyvsp[-1].modshift).shift &&
(yyvsp[0].modshift).shift) {
- asmparser_message(&asm_ctx, "Line %u: More than
one shift flag\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- (yyval.modshift).shift = (yyvsp[-1].modshift).shift;
- } else {
- (yyval.modshift).shift = (yyvsp[-1].modshift).shift |
(yyvsp[0].modshift).shift;
- }
- }
-#line 3342 "asmshader.tab.c"
- break;
-
- case 147:
-#line 1198 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 1;
- }
-#line 3351 "asmshader.tab.c"
- break;
-
- case 148:
-#line 1203 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 2;
- }
-#line 3360 "asmshader.tab.c"
- break;
-
- case 149:
-#line 1208 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 3;
- }
-#line 3369 "asmshader.tab.c"
- break;
-
- case 150:
-#line 1213 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 15;
- }
-#line 3378 "asmshader.tab.c"
- break;
-
- case 151:
-#line 1218 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 14;
- }
-#line 3387 "asmshader.tab.c"
- break;
-
- case 152:
-#line 1223 "asmshader.y"
- {
- (yyval.modshift).mod = 0;
- (yyval.modshift).shift = 13;
- }
-#line 3396 "asmshader.tab.c"
- break;
-
- case 153:
-#line 1228 "asmshader.y"
- {
- (yyval.modshift).mod = BWRITERSPDM_SATURATE;
- (yyval.modshift).shift = 0;
- }
-#line 3405 "asmshader.tab.c"
- break;
-
- case 154:
-#line 1233 "asmshader.y"
- {
- (yyval.modshift).mod = BWRITERSPDM_PARTIALPRECISION;
- (yyval.modshift).shift = 0;
- }
-#line 3414 "asmshader.tab.c"
- break;
-
- case 155:
-#line 1238 "asmshader.y"
- {
- (yyval.modshift).mod = BWRITERSPDM_MSAMPCENTROID;
- (yyval.modshift).shift = 0;
- }
-#line 3423 "asmshader.tab.c"
- break;
-
- case 156:
-#line 1244 "asmshader.y"
- {
- (yyval.sregs).reg[0] = (yyvsp[0].reg);
- (yyval.sregs).count = 1;
- }
-#line 3432 "asmshader.tab.c"
- break;
-
- case 157:
-#line 1249 "asmshader.y"
- {
- if((yyval.sregs).count == MAX_SRC_REGS){
- asmparser_message(&asm_ctx, "Line %u: Too many
source registers in this instruction\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- else
- (yyval.sregs).reg[(yyval.sregs).count++] =
(yyvsp[0].reg);
- }
-#line 3446 "asmshader.tab.c"
- break;
-
- case 158:
-#line 1260 "asmshader.y"
- {
- (yyval.reg).type = (yyvsp[-2].reg).type;
- (yyval.reg).regnum = (yyvsp[-2].reg).regnum;
- (yyval.reg).u.swizzle = (yyvsp[0].swizzle);
- (yyval.reg).srcmod = BWRITERSPSM_NONE;
- set_rel_reg(&(yyval.reg), &(yyvsp[-1].rel_reg));
- }
-#line 3458 "asmshader.tab.c"
- break;
-
- case 159:
-#line 1268 "asmshader.y"
- {
- (yyval.reg).type = (yyvsp[-3].reg).type;
- (yyval.reg).regnum = (yyvsp[-3].reg).regnum;
- set_rel_reg(&(yyval.reg), &(yyvsp[-2].rel_reg));
- (yyval.reg).srcmod = (yyvsp[-1].srcmod);
- (yyval.reg).u.swizzle = (yyvsp[0].swizzle);
- }
-#line 3470 "asmshader.tab.c"
- break;
-
- case 160:
-#line 1276 "asmshader.y"
- {
- (yyval.reg).type = (yyvsp[-2].reg).type;
- (yyval.reg).regnum = (yyvsp[-2].reg).regnum;
- (yyval.reg).srcmod = BWRITERSPSM_NEG;
- set_rel_reg(&(yyval.reg), &(yyvsp[-1].rel_reg));
- (yyval.reg).u.swizzle = (yyvsp[0].swizzle);
- }
-#line 3482 "asmshader.tab.c"
- break;
-
- case 161:
-#line 1284 "asmshader.y"
- {
- (yyval.reg).type = (yyvsp[-3].reg).type;
- (yyval.reg).regnum = (yyvsp[-3].reg).regnum;
- set_rel_reg(&(yyval.reg), &(yyvsp[-2].rel_reg));
- switch((yyvsp[-1].srcmod)) {
- case BWRITERSPSM_BIAS: (yyval.reg).srcmod =
BWRITERSPSM_BIASNEG; break;
- case BWRITERSPSM_X2: (yyval.reg).srcmod =
BWRITERSPSM_X2NEG; break;
- case BWRITERSPSM_SIGN: (yyval.reg).srcmod =
BWRITERSPSM_SIGNNEG; break;
- case BWRITERSPSM_ABS: (yyval.reg).srcmod =
BWRITERSPSM_ABSNEG; break;
- case BWRITERSPSM_DZ:
- asmparser_message(&asm_ctx, "Line %u:
Incompatible source modifiers: NEG and DZ\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- break;
- case BWRITERSPSM_DW:
- asmparser_message(&asm_ctx, "Line %u:
Incompatible source modifiers: NEG and DW\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- break;
- default:
- FIXME("Unhandled combination of NEGATE and
%u\n", (yyvsp[-1].srcmod));
- }
- (yyval.reg).u.swizzle = (yyvsp[0].swizzle);
- }
-#line 3511 "asmshader.tab.c"
- break;
-
- case 162:
-#line 1309 "asmshader.y"
- {
- if((yyvsp[-4].immval).val != 1.0 ||
(!(yyvsp[-4].immval).integer)) {
- asmparser_message(&asm_ctx, "Line %u: Only
\"1 - reg\" is valid for D3DSPSM_COMP, "
- "%g - reg found\n",
asm_ctx.line_no, (yyvsp[-4].immval).val);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- /* Complement - not compatible with other source modifiers
*/
- (yyval.reg).type = (yyvsp[-2].reg).type;
- (yyval.reg).regnum = (yyvsp[-2].reg).regnum;
- (yyval.reg).srcmod = BWRITERSPSM_COMP;
- set_rel_reg(&(yyval.reg), &(yyvsp[-1].rel_reg));
- (yyval.reg).u.swizzle = (yyvsp[0].swizzle);
- }
-#line 3529 "asmshader.tab.c"
- break;
-
- case 163:
-#line 1323 "asmshader.y"
- {
- /* For nicer error reporting */
- if((yyvsp[-5].immval).val != 1.0 ||
(!(yyvsp[-5].immval).integer)) {
- asmparser_message(&asm_ctx, "Line %u: Only
\"1 - reg\" is valid for D3DSPSM_COMP\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- } else {
- asmparser_message(&asm_ctx, "Line %u:
Incompatible source modifiers: D3DSPSM_COMP and %s\n",
- asm_ctx.line_no,
-
debug_print_srcmod((yyvsp[-1].srcmod)));
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- }
-#line 3547 "asmshader.tab.c"
- break;
-
- case 164:
-#line 1337 "asmshader.y"
- {
- (yyval.reg).type = (yyvsp[-1].reg).type;
- (yyval.reg).regnum = (yyvsp[-1].reg).regnum;
- (yyval.reg).rel_reg = NULL;
- (yyval.reg).srcmod = BWRITERSPSM_NOT;
- (yyval.reg).u.swizzle = (yyvsp[0].swizzle);
- }
-#line 3559 "asmshader.tab.c"
- break;
-
- case 165:
-#line 1346 "asmshader.y"
- {
- (yyval.rel_reg).has_rel_reg = FALSE;
- (yyval.rel_reg).additional_offset = 0;
- }
-#line 3568 "asmshader.tab.c"
- break;
-
- case 166:
-#line 1351 "asmshader.y"
- {
- (yyval.rel_reg).has_rel_reg = FALSE;
- (yyval.rel_reg).additional_offset = (yyvsp[-1].immval).val;
- }
-#line 3577 "asmshader.tab.c"
- break;
-
- case 167:
-#line 1356 "asmshader.y"
- {
- (yyval.rel_reg).has_rel_reg = TRUE;
- (yyval.rel_reg).type = (yyvsp[-2].reg).type;
- (yyval.rel_reg).additional_offset = 0;
- (yyval.rel_reg).rel_regnum = (yyvsp[-2].reg).regnum;
- (yyval.rel_reg).swizzle = (yyvsp[-1].swizzle);
- }
-#line 3589 "asmshader.tab.c"
- break;
-
- case 168:
-#line 1364 "asmshader.y"
- {
- (yyval.rel_reg).has_rel_reg = TRUE;
- (yyval.rel_reg).type = (yyvsp[-2].reg).type;
- (yyval.rel_reg).additional_offset = (yyvsp[-4].immval).val;
- (yyval.rel_reg).rel_regnum = (yyvsp[-2].reg).regnum;
- (yyval.rel_reg).swizzle = (yyvsp[-1].swizzle);
- }
-#line 3601 "asmshader.tab.c"
- break;
-
- case 169:
-#line 1372 "asmshader.y"
- {
- (yyval.rel_reg).has_rel_reg = TRUE;
- (yyval.rel_reg).type = (yyvsp[-4].reg).type;
- (yyval.rel_reg).additional_offset = (yyvsp[-1].immval).val;
- (yyval.rel_reg).rel_regnum = (yyvsp[-4].reg).regnum;
- (yyval.rel_reg).swizzle = (yyvsp[-3].swizzle);
- }
-#line 3613 "asmshader.tab.c"
- break;
-
- case 170:
-#line 1380 "asmshader.y"
- {
- (yyval.rel_reg).has_rel_reg = TRUE;
- (yyval.rel_reg).type = (yyvsp[-4].reg).type;
- (yyval.rel_reg).additional_offset = (yyvsp[-6].immval).val +
(yyvsp[-1].immval).val;
- (yyval.rel_reg).rel_regnum = (yyvsp[-4].reg).regnum;
- (yyval.rel_reg).swizzle = (yyvsp[-3].swizzle);
- }
-#line 3625 "asmshader.tab.c"
- break;
-
- case 171:
-#line 1389 "asmshader.y"
- {
- if(!(yyvsp[0].immval).integer) {
- asmparser_message(&asm_ctx, "Line %u: Unexpected
float %f\n",
- asm_ctx.line_no,
(yyvsp[0].immval).val);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- (yyval.immval).val = (yyvsp[0].immval).val;
- }
-#line 3638 "asmshader.tab.c"
- break;
-
- case 172:
-#line 1398 "asmshader.y"
- {
- if(!(yyvsp[0].immval).integer) {
- asmparser_message(&asm_ctx, "Line %u: Unexpected
float %f\n",
- asm_ctx.line_no,
(yyvsp[0].immval).val);
- set_parse_status(&asm_ctx.status, PARSE_ERR);
- }
- (yyval.immval).val = (yyvsp[-2].immval).val +
(yyvsp[0].immval).val;
- }
-#line 3651 "asmshader.tab.c"
- break;
-
- case 173:
-#line 1408 "asmshader.y"
- {
- (yyval.srcmod) = BWRITERSPSM_BIAS;
- }
-#line 3659 "asmshader.tab.c"
- break;
-
- case 174:
-#line 1412 "asmshader.y"
- {
- (yyval.srcmod) = BWRITERSPSM_X2;
- }
-#line 3667 "asmshader.tab.c"
- break;
-
- case 175:
-#line 1416 "asmshader.y"
- {
- (yyval.srcmod) = BWRITERSPSM_SIGN;
- }
-#line 3675 "asmshader.tab.c"
- break;
-
- case 176:
-#line 1420 "asmshader.y"
- {
- (yyval.srcmod) = BWRITERSPSM_DZ;
- }
-#line 3683 "asmshader.tab.c"
- break;
-
- case 177:
-#line 1424 "asmshader.y"
- {
- (yyval.srcmod) = BWRITERSPSM_DW;
- }
-#line 3691 "asmshader.tab.c"
- break;
-
- case 178:
-#line 1428 "asmshader.y"
- {
- (yyval.srcmod) = BWRITERSPSM_ABS;
- }
-#line 3699 "asmshader.tab.c"
- break;
-
- case 179:
-#line 1433 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type = BWRITERSPR_ADDR;
- }
-#line 3707 "asmshader.tab.c"
- break;
-
- case 180:
-#line 1437 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type = BWRITERSPR_LOOP;
- }
-#line 3715 "asmshader.tab.c"
- break;
-
- case 181:
-#line 1442 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_TEMP;
- }
-#line 3723 "asmshader.tab.c"
- break;
-
- case 182:
-#line 1446 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register o%u
is not a valid source register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3733 "asmshader.tab.c"
- break;
-
- case 183:
-#line 1452 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_INPUT;
- }
-#line 3741 "asmshader.tab.c"
- break;
-
- case 184:
-#line 1456 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_CONST;
- }
-#line 3749 "asmshader.tab.c"
- break;
-
- case 185:
-#line 1460 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_CONSTINT;
- }
-#line 3757 "asmshader.tab.c"
- break;
-
- case 186:
-#line 1464 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_CONSTBOOL;
- }
-#line 3765 "asmshader.tab.c"
- break;
-
- case 187:
-#line 1468 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_TEXTURE;
- }
-#line 3773 "asmshader.tab.c"
- break;
-
- case 188:
-#line 1472 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register oT%u
is not a valid source register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3783 "asmshader.tab.c"
- break;
-
- case 189:
-#line 1478 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_SAMPLER;
- }
-#line 3791 "asmshader.tab.c"
- break;
-
- case 190:
-#line 1482 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register oPos
is not a valid source register\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3801 "asmshader.tab.c"
- break;
-
- case 191:
-#line 1488 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register oFog
is not a valid source register\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3811 "asmshader.tab.c"
- break;
-
- case 192:
-#line 1494 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register oD%u
is not a valid source register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3821 "asmshader.tab.c"
- break;
-
- case 193:
-#line 1500 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register oC%u
is not a valid source register\n",
- asm_ctx.line_no, (yyvsp[0].regnum));
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3831 "asmshader.tab.c"
- break;
-
- case 194:
-#line 1506 "asmshader.y"
- {
- asmparser_message(&asm_ctx, "Line %u: Register
oDepth is not a valid source register\n",
- asm_ctx.line_no);
- set_parse_status(&asm_ctx.status, PARSE_WARN);
- }
-#line 3841 "asmshader.tab.c"
- break;
-
- case 195:
-#line 1512 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type =
BWRITERSPR_PREDICATE;
- }
-#line 3849 "asmshader.tab.c"
- break;
-
- case 196:
-#line 1516 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type =
BWRITERSPR_MISCTYPE;
- }
-#line 3857 "asmshader.tab.c"
- break;
-
- case 197:
-#line 1520 "asmshader.y"
- {
- (yyval.reg).regnum = 1; (yyval.reg).type =
BWRITERSPR_MISCTYPE;
- }
-#line 3865 "asmshader.tab.c"
- break;
-
- case 198:
-#line 1524 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type = BWRITERSPR_ADDR;
- }
-#line 3873 "asmshader.tab.c"
- break;
-
- case 199:
-#line 1528 "asmshader.y"
- {
- (yyval.reg).regnum = 0; (yyval.reg).type = BWRITERSPR_LOOP;
- }
-#line 3881 "asmshader.tab.c"
- break;
-
- case 200:
-#line 1532 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_LABEL;
- }
-#line 3889 "asmshader.tab.c"
- break;
-
- case 201:
-#line 1536 "asmshader.y"
- { (yyval.comptype) = BWRITER_COMPARISON_GT; }
-#line 3895 "asmshader.tab.c"
- break;
-
- case 202:
-#line 1537 "asmshader.y"
- { (yyval.comptype) = BWRITER_COMPARISON_LT; }
-#line 3901 "asmshader.tab.c"
- break;
-
- case 203:
-#line 1538 "asmshader.y"
- { (yyval.comptype) = BWRITER_COMPARISON_GE; }
-#line 3907 "asmshader.tab.c"
- break;
-
- case 204:
-#line 1539 "asmshader.y"
- { (yyval.comptype) = BWRITER_COMPARISON_LE; }
-#line 3913 "asmshader.tab.c"
- break;
-
- case 205:
-#line 1540 "asmshader.y"
- { (yyval.comptype) = BWRITER_COMPARISON_EQ; }
-#line 3919 "asmshader.tab.c"
- break;
-
- case 206:
-#line 1541 "asmshader.y"
- { (yyval.comptype) = BWRITER_COMPARISON_NE; }
-#line 3925 "asmshader.tab.c"
- break;
-
- case 207:
-#line 1544 "asmshader.y"
- {
- TRACE("dcl_position%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_POSITION;
- }
-#line 3935 "asmshader.tab.c"
- break;
-
- case 208:
-#line 1550 "asmshader.y"
- {
- TRACE("dcl_blendweight%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_BLENDWEIGHT;
- }
-#line 3945 "asmshader.tab.c"
- break;
-
- case 209:
-#line 1556 "asmshader.y"
- {
- TRACE("dcl_blendindices%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage =
BWRITERDECLUSAGE_BLENDINDICES;
- }
-#line 3955 "asmshader.tab.c"
- break;
-
- case 210:
-#line 1562 "asmshader.y"
- {
- TRACE("dcl_normal%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_NORMAL;
- }
-#line 3965 "asmshader.tab.c"
- break;
-
- case 211:
-#line 1568 "asmshader.y"
- {
- TRACE("dcl_psize%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_PSIZE;
- }
-#line 3975 "asmshader.tab.c"
- break;
-
- case 212:
-#line 1574 "asmshader.y"
- {
- TRACE("dcl_texcoord%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_TEXCOORD;
- }
-#line 3985 "asmshader.tab.c"
- break;
-
- case 213:
-#line 1580 "asmshader.y"
- {
- TRACE("dcl_tangent%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_TANGENT;
- }
-#line 3995 "asmshader.tab.c"
- break;
-
- case 214:
-#line 1586 "asmshader.y"
- {
- TRACE("dcl_binormal%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_BINORMAL;
- }
-#line 4005 "asmshader.tab.c"
- break;
-
- case 215:
-#line 1592 "asmshader.y"
- {
- TRACE("dcl_tessfactor%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_TESSFACTOR;
- }
-#line 4015 "asmshader.tab.c"
- break;
-
- case 216:
-#line 1598 "asmshader.y"
- {
- TRACE("dcl_positiont%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_POSITIONT;
- }
-#line 4025 "asmshader.tab.c"
- break;
-
- case 217:
-#line 1604 "asmshader.y"
- {
- TRACE("dcl_color%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_COLOR;
- }
-#line 4035 "asmshader.tab.c"
- break;
-
- case 218:
-#line 1610 "asmshader.y"
- {
- TRACE("dcl_fog%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_FOG;
- }
-#line 4045 "asmshader.tab.c"
- break;
-
- case 219:
-#line 1616 "asmshader.y"
- {
- TRACE("dcl_depth%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_DEPTH;
- }
-#line 4055 "asmshader.tab.c"
- break;
-
- case 220:
-#line 1622 "asmshader.y"
- {
- TRACE("dcl_sample%u\n", (yyvsp[0].regnum));
- (yyval.declaration).regnum = (yyvsp[0].regnum);
- (yyval.declaration).dclusage = BWRITERDECLUSAGE_SAMPLE;
- }
-#line 4065 "asmshader.tab.c"
- break;
-
- case 221:
-#line 1629 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_INPUT;
- }
-#line 4073 "asmshader.tab.c"
- break;
-
- case 222:
-#line 1633 "asmshader.y"
- {
- (yyval.reg).regnum = (yyvsp[0].regnum); (yyval.reg).type =
BWRITERSPR_TEXTURE;
- }
-#line 4081 "asmshader.tab.c"
- break;
-
- case 223:
-#line 1638 "asmshader.y"
- {
- (yyval.samplertype) = BWRITERSTT_1D;
- }
-#line 4089 "asmshader.tab.c"
- break;
-
- case 224:
-#line 1642 "asmshader.y"
- {
- (yyval.samplertype) = BWRITERSTT_2D;
- }
-#line 4097 "asmshader.tab.c"
- break;
-
- case 225:
-#line 1646 "asmshader.y"
- {
- (yyval.samplertype) = BWRITERSTT_CUBE;
- }
-#line 4105 "asmshader.tab.c"
- break;
-
- case 226:
-#line 1650 "asmshader.y"
- {
- (yyval.samplertype) = BWRITERSTT_VOLUME;
- }
-#line 4113 "asmshader.tab.c"
- break;
-
- case 227:
-#line 1655 "asmshader.y"
- {
- (yyval.reg).type = BWRITERSPR_PREDICATE;
- (yyval.reg).regnum = 0;
- (yyval.reg).rel_reg = NULL;
- (yyval.reg).srcmod = BWRITERSPSM_NONE;
- (yyval.reg).u.swizzle = (yyvsp[-1].swizzle);
- }
-#line 4125 "asmshader.tab.c"
- break;
-
- case 228:
-#line 1663 "asmshader.y"
- {
- (yyval.reg).type = BWRITERSPR_PREDICATE;
- (yyval.reg).regnum = 0;
- (yyval.reg).rel_reg = NULL;
- (yyval.reg).srcmod = BWRITERSPSM_NOT;
- (yyval.reg).u.swizzle = (yyvsp[-1].swizzle);
- }
-#line 4137 "asmshader.tab.c"
- break;
-
-
-#line 4141 "asmshader.tab.c"
-
- 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. */
- {
- const int yylhs = yyr1[yyn] - YYNTOKENS;
- const int yyi = yypgoto[yylhs] + *yyssp;
- yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
- ? yytable[yyi]
- : yydefgoto[yylhs]);
- }
-
- goto yynewstate;
-
-
-/*--------------------------------------.
-| yyerrlab -- here on detecting error. |
-`--------------------------------------*/
-yyerrlab:
- /* Make sure we have latest lookahead translation. See comments at
- user semantic actions for why this is necessary. */
- yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
-
- /* If not already recovering from an error, report this error. */
- if (!yyerrstatus)
- {
- ++yynerrs;
-#if ! YYERROR_VERBOSE
- yyerror (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 (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);
- 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 when the user code never invokes YYERROR and the
- label yyerrorlab therefore never appears in user code. */
- if (0)
- YYERROR;
-
- /* 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);
- 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 (YY_("memory exhausted"));
- yyresult = 2;
- /* Fall through. */
-#endif
-
-
-/*-----------------------------------------------------.
-| yyreturn -- parsing is finished, return the result. |
-`-----------------------------------------------------*/
-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);
- }
- /* 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);
- YYPOPSTACK (1);
- }
-#ifndef yyoverflow
- if (yyss != yyssa)
- YYSTACK_FREE (yyss);
-#endif
-#if YYERROR_VERBOSE
- if (yymsg != yymsgbuf)
- YYSTACK_FREE (yymsg);
-#endif
- return yyresult;
-}
-#line 1671 "asmshader.y"
-
-
-struct bwriter_shader *parse_asm_shader(char **messages)
-{
- struct bwriter_shader *ret = NULL;
-
- asm_ctx.shader = NULL;
- asm_ctx.status = PARSE_SUCCESS;
- asm_ctx.messages.size = asm_ctx.messages.capacity = 0;
- asm_ctx.line_no = 1;
-
- asmshader_parse();
-
- if (asm_ctx.status != PARSE_ERR)
- ret = asm_ctx.shader;
- else if (asm_ctx.shader)
- SlDeleteShader(asm_ctx.shader);
-
- if (messages)
- {
- if (asm_ctx.messages.size)
- {
- /* Shrink the buffer to the used size */
- *messages = d3dcompiler_realloc(asm_ctx.messages.string,
asm_ctx.messages.size + 1);
- if (!*messages)
- {
- ERR("Out of memory, no messages reported\n");
- d3dcompiler_free(asm_ctx.messages.string);
- }
- }
- else
- {
- *messages = NULL;
- }
- }
- else
- {
- if (asm_ctx.messages.capacity)
- d3dcompiler_free(asm_ctx.messages.string);
- }
-
- return ret;
-}
diff --git a/dll/directx/wine/d3dcompiler_43/asmshader.tab.h
b/dll/directx/wine/d3dcompiler_43/asmshader.tab.h
deleted file mode 100644
index 58408c95844..00000000000
--- a/dll/directx/wine/d3dcompiler_43/asmshader.tab.h
+++ /dev/null
@@ -1,267 +0,0 @@
-/* A Bison parser, made by GNU Bison 3.4.1. */
-
-/* Bison interface for Yacc-like parsers in C
-
- Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 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. */
-
-/* Undocumented macros, especially those whose name start with YY_,
- are private implementation details. Do not rely on them. */
-
-#ifndef
YY_ASMSHADER_E_REACTOSSYNC_GCC_DLL_DIRECTX_WINE_D3DCOMPILER_43_ASMSHADER_TAB_H_INCLUDED
-# define
YY_ASMSHADER_E_REACTOSSYNC_GCC_DLL_DIRECTX_WINE_D3DCOMPILER_43_ASMSHADER_TAB_H_INCLUDED
-/* Debug traces. */
-#ifndef YYDEBUG
-# define YYDEBUG 0
-#endif
-#if YYDEBUG
-extern int asmshader_debug;
-#endif
-
-/* Token type. */
-#ifndef YYTOKENTYPE
-# define YYTOKENTYPE
- enum yytokentype
- {
- INSTR_ADD = 258,
- INSTR_NOP = 259,
- INSTR_MOV = 260,
- INSTR_SUB = 261,
- INSTR_MAD = 262,
- INSTR_MUL = 263,
- INSTR_RCP = 264,
- INSTR_RSQ = 265,
- INSTR_DP3 = 266,
- INSTR_DP4 = 267,
- INSTR_MIN = 268,
- INSTR_MAX = 269,
- INSTR_SLT = 270,
- INSTR_SGE = 271,
- INSTR_ABS = 272,
- INSTR_EXP = 273,
- INSTR_LOG = 274,
- INSTR_EXPP = 275,
- INSTR_LOGP = 276,
- INSTR_DST = 277,
- INSTR_LRP = 278,
- INSTR_FRC = 279,
- INSTR_POW = 280,
- INSTR_CRS = 281,
- INSTR_SGN = 282,
- INSTR_NRM = 283,
- INSTR_SINCOS = 284,
- INSTR_M4x4 = 285,
- INSTR_M4x3 = 286,
- INSTR_M3x4 = 287,
- INSTR_M3x3 = 288,
- INSTR_M3x2 = 289,
- INSTR_DCL = 290,
- INSTR_DEF = 291,
- INSTR_DEFB = 292,
- INSTR_DEFI = 293,
- INSTR_REP = 294,
- INSTR_ENDREP = 295,
- INSTR_IF = 296,
- INSTR_ELSE = 297,
- INSTR_ENDIF = 298,
- INSTR_BREAK = 299,
- INSTR_BREAKP = 300,
- INSTR_CALL = 301,
- INSTR_CALLNZ = 302,
- INSTR_LOOP = 303,
- INSTR_RET = 304,
- INSTR_ENDLOOP = 305,
- INSTR_LABEL = 306,
- INSTR_SETP = 307,
- INSTR_TEXLDL = 308,
- INSTR_LIT = 309,
- INSTR_MOVA = 310,
- INSTR_CND = 311,
- INSTR_CMP = 312,
- INSTR_DP2ADD = 313,
- INSTR_TEXCOORD = 314,
- INSTR_TEXCRD = 315,
- INSTR_TEXKILL = 316,
- INSTR_TEX = 317,
- INSTR_TEXLD = 318,
- INSTR_TEXBEM = 319,
- INSTR_TEXBEML = 320,
- INSTR_TEXREG2AR = 321,
- INSTR_TEXREG2GB = 322,
- INSTR_TEXREG2RGB = 323,
- INSTR_TEXM3x2PAD = 324,
- INSTR_TEXM3x2TEX = 325,
- INSTR_TEXM3x3PAD = 326,
- INSTR_TEXM3x3SPEC = 327,
- INSTR_TEXM3x3VSPEC = 328,
- INSTR_TEXM3x3TEX = 329,
- INSTR_TEXDP3TEX = 330,
- INSTR_TEXM3x2DEPTH = 331,
- INSTR_TEXDP3 = 332,
- INSTR_TEXM3x3 = 333,
- INSTR_TEXDEPTH = 334,
- INSTR_BEM = 335,
- INSTR_DSX = 336,
- INSTR_DSY = 337,
- INSTR_TEXLDP = 338,
- INSTR_TEXLDB = 339,
- INSTR_TEXLDD = 340,
- INSTR_PHASE = 341,
- REG_TEMP = 342,
- REG_OUTPUT = 343,
- REG_INPUT = 344,
- REG_CONSTFLOAT = 345,
- REG_CONSTINT = 346,
- REG_CONSTBOOL = 347,
- REG_TEXTURE = 348,
- REG_SAMPLER = 349,
- REG_TEXCRDOUT = 350,
- REG_OPOS = 351,
- REG_OFOG = 352,
- REG_OPTS = 353,
- REG_VERTEXCOLOR = 354,
- REG_FRAGCOLOR = 355,
- REG_FRAGDEPTH = 356,
- REG_VPOS = 357,
- REG_VFACE = 358,
- REG_ADDRESS = 359,
- REG_LOOP = 360,
- REG_PREDICATE = 361,
- REG_LABEL = 362,
- VER_VS10 = 363,
- VER_VS11 = 364,
- VER_VS20 = 365,
- VER_VS2X = 366,
- VER_VS30 = 367,
- VER_PS10 = 368,
- VER_PS11 = 369,
- VER_PS12 = 370,
- VER_PS13 = 371,
- VER_PS14 = 372,
- VER_PS20 = 373,
- VER_PS2X = 374,
- VER_PS30 = 375,
- SHIFT_X2 = 376,
- SHIFT_X4 = 377,
- SHIFT_X8 = 378,
- SHIFT_D2 = 379,
- SHIFT_D4 = 380,
- SHIFT_D8 = 381,
- MOD_SAT = 382,
- MOD_PP = 383,
- MOD_CENTROID = 384,
- COMP_GT = 385,
- COMP_LT = 386,
- COMP_GE = 387,
- COMP_LE = 388,
- COMP_EQ = 389,
- COMP_NE = 390,
- SMOD_BIAS = 391,
- SMOD_SCALEBIAS = 392,
- SMOD_DZ = 393,
- SMOD_DW = 394,
- SMOD_ABS = 395,
- SMOD_NOT = 396,
- SAMPTYPE_1D = 397,
- SAMPTYPE_2D = 398,
- SAMPTYPE_CUBE = 399,
- SAMPTYPE_VOLUME = 400,
- USAGE_POSITION = 401,
- USAGE_BLENDWEIGHT = 402,
- USAGE_BLENDINDICES = 403,
- USAGE_NORMAL = 404,
- USAGE_PSIZE = 405,
- USAGE_TEXCOORD = 406,
- USAGE_TANGENT = 407,
- USAGE_BINORMAL = 408,
- USAGE_TESSFACTOR = 409,
- USAGE_POSITIONT = 410,
- USAGE_COLOR = 411,
- USAGE_FOG = 412,
- USAGE_DEPTH = 413,
- USAGE_SAMPLE = 414,
- COMPONENT = 415,
- IMMVAL = 416,
- IMMBOOL = 417
- };
-#endif
-
-/* Value type. */
-#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
-union YYSTYPE
-{
-#line 68 "asmshader.y"
-
- struct {
- float val;
- BOOL integer;
- } immval;
- BOOL immbool;
- unsigned int regnum;
- struct shader_reg reg;
- DWORD srcmod;
- DWORD writemask;
- struct {
- DWORD writemask;
- DWORD idx;
- DWORD last;
- } wm_components;
- DWORD swizzle;
- struct {
- DWORD swizzle;
- DWORD idx;
- } sw_components;
- DWORD component;
- struct {
- DWORD mod;
- DWORD shift;
- } modshift;
- enum bwriter_comparison_type comptype;
- struct {
- DWORD dclusage;
- unsigned int regnum;
- } declaration;
- enum bwritersampler_texture_type samplertype;
- struct rel_reg rel_reg;
- struct src_regs sregs;
-
-#line 255 "asmshader.tab.h"
-
-};
-typedef union YYSTYPE YYSTYPE;
-# define YYSTYPE_IS_TRIVIAL 1
-# define YYSTYPE_IS_DECLARED 1
-#endif
-
-
-extern YYSTYPE asmshader_lval;
-
-int asmshader_parse (void);
-
-#endif /*
!YY_ASMSHADER_E_REACTOSSYNC_GCC_DLL_DIRECTX_WINE_D3DCOMPILER_43_ASMSHADER_TAB_H_INCLUDED
*/
diff --git a/dll/directx/wine/d3dcompiler_43/asmshader.yy.c
b/dll/directx/wine/d3dcompiler_43/asmshader.yy.c
deleted file mode 100644
index bf9ca37e361..00000000000
--- a/dll/directx/wine/d3dcompiler_43/asmshader.yy.c
+++ /dev/null
@@ -1,3420 +0,0 @@
-#line 1 "asmshader.yy.c"
-
-#line 3 "asmshader.yy.c"
-
-#define YY_INT_ALIGNED short int
-
-/* A lexical scanner generated by flex */
-
-#define yy_create_buffer asmshader__create_buffer
-#define yy_delete_buffer asmshader__delete_buffer
-#define yy_scan_buffer asmshader__scan_buffer
-#define yy_scan_string asmshader__scan_string
-#define yy_scan_bytes asmshader__scan_bytes
-#define yy_init_buffer asmshader__init_buffer
-#define yy_flush_buffer asmshader__flush_buffer
-#define yy_load_buffer_state asmshader__load_buffer_state
-#define yy_switch_to_buffer asmshader__switch_to_buffer
-#define yypush_buffer_state asmshader_push_buffer_state
-#define yypop_buffer_state asmshader_pop_buffer_state
-#define yyensure_buffer_stack asmshader_ensure_buffer_stack
-#define yy_flex_debug asmshader__flex_debug
-#define yyin asmshader_in
-#define yyleng asmshader_leng
-#define yylex asmshader_lex
-#define yylineno asmshader_lineno
-#define yyout asmshader_out
-#define yyrestart asmshader_restart
-#define yytext asmshader_text
-#define yywrap asmshader_wrap
-#define yyalloc asmshader_alloc
-#define yyrealloc asmshader_realloc
-#define yyfree asmshader_free
-
-#define FLEX_SCANNER
-#define YY_FLEX_MAJOR_VERSION 2
-#define YY_FLEX_MINOR_VERSION 6
-#define YY_FLEX_SUBMINOR_VERSION 4
-#if YY_FLEX_SUBMINOR_VERSION > 0
-#define FLEX_BETA
-#endif
-
-#ifdef yy_create_buffer
-#define asmshader__create_buffer_ALREADY_DEFINED
-#else
-#define yy_create_buffer asmshader__create_buffer
-#endif
-
-#ifdef yy_delete_buffer
-#define asmshader__delete_buffer_ALREADY_DEFINED
-#else
-#define yy_delete_buffer asmshader__delete_buffer
-#endif
-
-#ifdef yy_scan_buffer
-#define asmshader__scan_buffer_ALREADY_DEFINED
-#else
-#define yy_scan_buffer asmshader__scan_buffer
-#endif
-
-#ifdef yy_scan_string
-#define asmshader__scan_string_ALREADY_DEFINED
-#else
-#define yy_scan_string asmshader__scan_string
-#endif
-
-#ifdef yy_scan_bytes
-#define asmshader__scan_bytes_ALREADY_DEFINED
-#else
-#define yy_scan_bytes asmshader__scan_bytes
-#endif
-
-#ifdef yy_init_buffer
-#define asmshader__init_buffer_ALREADY_DEFINED
-#else
-#define yy_init_buffer asmshader__init_buffer
-#endif
-
-#ifdef yy_flush_buffer
-#define asmshader__flush_buffer_ALREADY_DEFINED
-#else
-#define yy_flush_buffer asmshader__flush_buffer
-#endif
-
-#ifdef yy_load_buffer_state
-#define asmshader__load_buffer_state_ALREADY_DEFINED
-#else
-#define yy_load_buffer_state asmshader__load_buffer_state
-#endif
-
-#ifdef yy_switch_to_buffer
-#define asmshader__switch_to_buffer_ALREADY_DEFINED
-#else
-#define yy_switch_to_buffer asmshader__switch_to_buffer
-#endif
-
-#ifdef yypush_buffer_state
-#define asmshader_push_buffer_state_ALREADY_DEFINED
-#else
-#define yypush_buffer_state asmshader_push_buffer_state
-#endif
-
-#ifdef yypop_buffer_state
-#define asmshader_pop_buffer_state_ALREADY_DEFINED
-#else
-#define yypop_buffer_state asmshader_pop_buffer_state
-#endif
-
-#ifdef yyensure_buffer_stack
-#define asmshader_ensure_buffer_stack_ALREADY_DEFINED
-#else
-#define yyensure_buffer_stack asmshader_ensure_buffer_stack
-#endif
-
-#ifdef yylex
-#define asmshader_lex_ALREADY_DEFINED
-#else
-#define yylex asmshader_lex
-#endif
-
-#ifdef yyrestart
-#define asmshader_restart_ALREADY_DEFINED
-#else
-#define yyrestart asmshader_restart
-#endif
-
-#ifdef yylex_init
-#define asmshader_lex_init_ALREADY_DEFINED
-#else
-#define yylex_init asmshader_lex_init
-#endif
-
-#ifdef yylex_init_extra
-#define asmshader_lex_init_extra_ALREADY_DEFINED
-#else
-#define yylex_init_extra asmshader_lex_init_extra
-#endif
-
-#ifdef yylex_destroy
-#define asmshader_lex_destroy_ALREADY_DEFINED
-#else
-#define yylex_destroy asmshader_lex_destroy
-#endif
-
-#ifdef yyget_debug
-#define asmshader_get_debug_ALREADY_DEFINED
-#else
-#define yyget_debug asmshader_get_debug
-#endif
-
-#ifdef yyset_debug
-#define asmshader_set_debug_ALREADY_DEFINED
-#else
-#define yyset_debug asmshader_set_debug
-#endif
-
-#ifdef yyget_extra
-#define asmshader_get_extra_ALREADY_DEFINED
-#else
-#define yyget_extra asmshader_get_extra
-#endif
-
-#ifdef yyset_extra
-#define asmshader_set_extra_ALREADY_DEFINED
-#else
-#define yyset_extra asmshader_set_extra
-#endif
-
-#ifdef yyget_in
-#define asmshader_get_in_ALREADY_DEFINED
-#else
-#define yyget_in asmshader_get_in
-#endif
-
-#ifdef yyset_in
-#define asmshader_set_in_ALREADY_DEFINED
-#else
... 64136 lines suppressed ...