<p dir="ltr"><br>
On Oct 10, 2015 11:48 AM, "Rob Clark" <<a href="mailto:robdclark@gmail.com">robdclark@gmail.com</a>> wrote:<br>
><br>
> From: Rob Clark <<a href="mailto:robclark@freedesktop.org">robclark@freedesktop.org</a>><br>
><br>
> Move glsl_types into NIR, now that the dependency on glsl_symbol_table<br>
> has been split out.<br>
><br>
> Possibly makes sense to rename things at this point, but if we do that<br>
> I'd like to keep it split out into a separate patch to make git history<br>
> easier to follow (IMHO).</p>
<p dir="ltr">Agreed. That said, I'm not sure that renaming glsl_type is really needed. It is still heavily based on glsl at least for now.  And the type names are taken from glsl.  I'm not going to stand in the way of a rename though.</p>
<p dir="ltr">> Signed-off-by: Rob Clark <<a href="mailto:robclark@freedesktop.org">robclark@freedesktop.org</a>><br>
> ---<br>
>  src/glsl/Makefile.am                               |    3 -<br>
>  src/glsl/Makefile.sources                          |    4 +-<br>
>  src/glsl/builtin_type_macros.h                     |  172 --<br>
>  src/glsl/glsl_types.cpp                            | 1729 --------------------<br>
>  src/glsl/glsl_types.h                              |  867 ----------<br>
>  src/glsl/nir/builtin_type_macros.h                 |  172 ++<br>
>  src/glsl/nir/glsl_types.cpp                        | 1729 ++++++++++++++++++++<br>
>  src/glsl/nir/glsl_types.h                          |  867 ++++++++++<br>
>  src/glsl/nir/nir_types.h                           |    2 +-<br>
>  .../drivers/dri/i965/brw_cubemap_normalize.cpp     |    2 +-<br>
>  src/mesa/drivers/dri/i965/brw_fs.cpp               |    2 +-<br>
>  src/mesa/drivers/dri/i965/brw_fs.h                 |    2 +-<br>
>  .../dri/i965/brw_fs_channel_expressions.cpp        |    2 +-<br>
>  src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp  |    2 +-<br>
>  .../drivers/dri/i965/brw_fs_vector_splitting.cpp   |    2 +-<br>
>  src/mesa/drivers/dri/i965/brw_fs_visitor.cpp       |    2 +-<br>
>  .../dri/i965/brw_lower_unnormalized_offset.cpp     |    2 +-<br>
>  .../drivers/dri/i965/brw_schedule_instructions.cpp |    2 +-<br>
>  src/mesa/main/ff_fragment_shader.cpp               |    2 +-<br>
>  src/mesa/main/uniforms.h                           |    2 +-<br>
>  src/mesa/program/ir_to_mesa.cpp                    |    2 +-<br>
>  src/mesa/program/sampler.cpp                       |    2 +-<br>
>  22 files changed, 2784 insertions(+), 2787 deletions(-)<br>
>  delete mode 100644 src/glsl/builtin_type_macros.h<br>
>  delete mode 100644 src/glsl/glsl_types.cpp<br>
>  delete mode 100644 src/glsl/glsl_types.h<br>
>  create mode 100644 src/glsl/nir/builtin_type_macros.h<br>
>  create mode 100644 src/glsl/nir/glsl_types.cpp<br>
>  create mode 100644 src/glsl/nir/glsl_types.h<br>
><br>
> diff --git a/src/glsl/Makefile.am b/src/glsl/Makefile.am<br>
> index 347919b..437c6a5 100644<br>
> --- a/src/glsl/Makefile.am<br>
> +++ b/src/glsl/Makefile.am<br>
> @@ -148,9 +148,6 @@ libglsl_la_SOURCES =                                        \<br>
><br>
><br>
>  libnir_la_SOURCES =                                    \<br>
> -       glsl_types.cpp                                  \<br>
> -       builtin_types.cpp                               \<br>
> -       glsl_symbol_table.cpp                           \<br>
>         $(NIR_FILES)                                    \<br>
>         $(NIR_GENERATED_FILES)<br>
><br>
> diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources<br>
> index 436949c..6e61f23 100644<br>
> --- a/src/glsl/Makefile.sources<br>
> +++ b/src/glsl/Makefile.sources<br>
> @@ -20,6 +20,8 @@ NIR_GENERATED_FILES = \<br>
>  NIR_FILES = \<br>
>         nir/glsl_to_nir.cpp \<br>
>         nir/glsl_to_nir.h \<br>
> +       nir/glsl_types.cpp \<br>
> +       nir/glsl_types.h \<br>
>         nir/nir.c \<br>
>         nir/nir.h \<br>
>         nir/nir_array.h \<br>
> @@ -103,8 +105,6 @@ LIBGLSL_FILES = \<br>
>         glsl_parser_extras.h \<br>
>         glsl_symbol_table.cpp \<br>
>         glsl_symbol_table.h \<br>
> -       glsl_types.cpp \<br>
> -       glsl_types.h \<br>
>         hir_field_selection.cpp \<br>
>         ir_basic_block.cpp \<br>
>         ir_basic_block.h \<br>
> diff --git a/src/glsl/builtin_type_macros.h b/src/glsl/builtin_type_macros.h<br>
> deleted file mode 100644<br>
> index 8e16ae4..0000000<br>
> --- a/src/glsl/builtin_type_macros.h<br>
> +++ /dev/null<br>
> @@ -1,172 +0,0 @@<br>
> -/*<br>
> - * Copyright © 2013 Intel Corporation<br>
> - *<br>
> - * Permission is hereby granted, free of charge, to any person obtaining a<br>
> - * copy of this software and associated documentation files (the "Software"),<br>
> - * to deal in the Software without restriction, including without limitation<br>
> - * the rights to use, copy, modify, merge, publish, distribute, sublicense,<br>
> - * and/or sell copies of the Software, and to permit persons to whom the<br>
> - * Software is furnished to do so, subject to the following conditions:<br>
> - *<br>
> - * The above copyright notice and this permission notice (including the next<br>
> - * paragraph) shall be included in all copies or substantial portions of the<br>
> - * Software.<br>
> - *<br>
> - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br>
> - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br>
> - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL<br>
> - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br>
> - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING<br>
> - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER<br>
> - * DEALINGS IN THE SOFTWARE.<br>
> - */<br>
> -<br>
> -/**<br>
> - * \file builtin_type_macros.h<br>
> - *<br>
> - * This contains definitions for all GLSL built-in types, regardless of what<br>
> - * language version or extension might provide them.<br>
> - */<br>
> -<br>
> -#include "glsl_types.h"<br>
> -<br>
> -DECL_TYPE(error,  GL_INVALID_ENUM, GLSL_TYPE_ERROR, 0, 0)<br>
> -DECL_TYPE(void,   GL_INVALID_ENUM, GLSL_TYPE_VOID,  0, 0)<br>
> -<br>
> -DECL_TYPE(bool,   GL_BOOL,         GLSL_TYPE_BOOL,  1, 1)<br>
> -DECL_TYPE(bvec2,  GL_BOOL_VEC2,    GLSL_TYPE_BOOL,  2, 1)<br>
> -DECL_TYPE(bvec3,  GL_BOOL_VEC3,    GLSL_TYPE_BOOL,  3, 1)<br>
> -DECL_TYPE(bvec4,  GL_BOOL_VEC4,    GLSL_TYPE_BOOL,  4, 1)<br>
> -<br>
> -DECL_TYPE(int,    GL_INT,          GLSL_TYPE_INT,   1, 1)<br>
> -DECL_TYPE(ivec2,  GL_INT_VEC2,     GLSL_TYPE_INT,   2, 1)<br>
> -DECL_TYPE(ivec3,  GL_INT_VEC3,     GLSL_TYPE_INT,   3, 1)<br>
> -DECL_TYPE(ivec4,  GL_INT_VEC4,     GLSL_TYPE_INT,   4, 1)<br>
> -<br>
> -DECL_TYPE(uint,   GL_UNSIGNED_INT,      GLSL_TYPE_UINT, 1, 1)<br>
> -DECL_TYPE(uvec2,  GL_UNSIGNED_INT_VEC2, GLSL_TYPE_UINT, 2, 1)<br>
> -DECL_TYPE(uvec3,  GL_UNSIGNED_INT_VEC3, GLSL_TYPE_UINT, 3, 1)<br>
> -DECL_TYPE(uvec4,  GL_UNSIGNED_INT_VEC4, GLSL_TYPE_UINT, 4, 1)<br>
> -<br>
> -DECL_TYPE(float,  GL_FLOAT,        GLSL_TYPE_FLOAT, 1, 1)<br>
> -DECL_TYPE(vec2,   GL_FLOAT_VEC2,   GLSL_TYPE_FLOAT, 2, 1)<br>
> -DECL_TYPE(vec3,   GL_FLOAT_VEC3,   GLSL_TYPE_FLOAT, 3, 1)<br>
> -DECL_TYPE(vec4,   GL_FLOAT_VEC4,   GLSL_TYPE_FLOAT, 4, 1)<br>
> -<br>
> -DECL_TYPE(mat2,   GL_FLOAT_MAT2,   GLSL_TYPE_FLOAT, 2, 2)<br>
> -DECL_TYPE(mat3,   GL_FLOAT_MAT3,   GLSL_TYPE_FLOAT, 3, 3)<br>
> -DECL_TYPE(mat4,   GL_FLOAT_MAT4,   GLSL_TYPE_FLOAT, 4, 4)<br>
> -<br>
> -DECL_TYPE(mat2x3, GL_FLOAT_MAT2x3, GLSL_TYPE_FLOAT, 3, 2)<br>
> -DECL_TYPE(mat2x4, GL_FLOAT_MAT2x4, GLSL_TYPE_FLOAT, 4, 2)<br>
> -DECL_TYPE(mat3x2, GL_FLOAT_MAT3x2, GLSL_TYPE_FLOAT, 2, 3)<br>
> -DECL_TYPE(mat3x4, GL_FLOAT_MAT3x4, GLSL_TYPE_FLOAT, 4, 3)<br>
> -DECL_TYPE(mat4x2, GL_FLOAT_MAT4x2, GLSL_TYPE_FLOAT, 2, 4)<br>
> -DECL_TYPE(mat4x3, GL_FLOAT_MAT4x3, GLSL_TYPE_FLOAT, 3, 4)<br>
> -<br>
> -DECL_TYPE(double,  GL_DOUBLE,        GLSL_TYPE_DOUBLE, 1, 1)<br>
> -DECL_TYPE(dvec2,   GL_DOUBLE_VEC2,   GLSL_TYPE_DOUBLE, 2, 1)<br>
> -DECL_TYPE(dvec3,   GL_DOUBLE_VEC3,   GLSL_TYPE_DOUBLE, 3, 1)<br>
> -DECL_TYPE(dvec4,   GL_DOUBLE_VEC4,   GLSL_TYPE_DOUBLE, 4, 1)<br>
> -<br>
> -DECL_TYPE(dmat2,   GL_DOUBLE_MAT2,   GLSL_TYPE_DOUBLE, 2, 2)<br>
> -DECL_TYPE(dmat3,   GL_DOUBLE_MAT3,   GLSL_TYPE_DOUBLE, 3, 3)<br>
> -DECL_TYPE(dmat4,   GL_DOUBLE_MAT4,   GLSL_TYPE_DOUBLE, 4, 4)<br>
> -<br>
> -DECL_TYPE(dmat2x3, GL_DOUBLE_MAT2x3, GLSL_TYPE_DOUBLE, 3, 2)<br>
> -DECL_TYPE(dmat2x4, GL_DOUBLE_MAT2x4, GLSL_TYPE_DOUBLE, 4, 2)<br>
> -DECL_TYPE(dmat3x2, GL_DOUBLE_MAT3x2, GLSL_TYPE_DOUBLE, 2, 3)<br>
> -DECL_TYPE(dmat3x4, GL_DOUBLE_MAT3x4, GLSL_TYPE_DOUBLE, 4, 3)<br>
> -DECL_TYPE(dmat4x2, GL_DOUBLE_MAT4x2, GLSL_TYPE_DOUBLE, 2, 4)<br>
> -DECL_TYPE(dmat4x3, GL_DOUBLE_MAT4x3, GLSL_TYPE_DOUBLE, 3, 4)<br>
> -<br>
> -DECL_TYPE(sampler1D,         GL_SAMPLER_1D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,   0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2D,         GL_SAMPLER_2D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,   0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler3D,         GL_SAMPLER_3D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_3D,   0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(samplerCube,       GL_SAMPLER_CUBE,                 GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE, 0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler1DArray,    GL_SAMPLER_1D_ARRAY,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,   0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DArray,    GL_SAMPLER_2D_ARRAY,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,   0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(samplerCubeArray,  GL_SAMPLER_CUBE_MAP_ARRAY,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE, 0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DRect,     GL_SAMPLER_2D_RECT,              GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_RECT, 0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(samplerBuffer,     GL_SAMPLER_BUFFER,               GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_BUF,  0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DMS,       GL_SAMPLER_2D_MULTISAMPLE,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_MS,   0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DMSArray,  GL_SAMPLER_2D_MULTISAMPLE_ARRAY, GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_MS,   0, 1, GLSL_TYPE_FLOAT)<br>
> -<br>
> -DECL_TYPE(isampler1D,        GL_INT_SAMPLER_1D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,   0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler2D,        GL_INT_SAMPLER_2D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,   0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler3D,        GL_INT_SAMPLER_3D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_3D,   0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isamplerCube,      GL_INT_SAMPLER_CUBE,                 GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE, 0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler1DArray,   GL_INT_SAMPLER_1D_ARRAY,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,   0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler2DArray,   GL_INT_SAMPLER_2D_ARRAY,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,   0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isamplerCubeArray, GL_INT_SAMPLER_CUBE_MAP_ARRAY,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE, 0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler2DRect,    GL_INT_SAMPLER_2D_RECT,              GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_RECT, 0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isamplerBuffer,    GL_INT_SAMPLER_BUFFER,               GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_BUF,  0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler2DMS,      GL_INT_SAMPLER_2D_MULTISAMPLE,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_MS,   0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(isampler2DMSArray, GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY, GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_MS,   0, 1, GLSL_TYPE_INT)<br>
> -<br>
> -DECL_TYPE(usampler1D,        GL_UNSIGNED_INT_SAMPLER_1D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,   0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler2D,        GL_UNSIGNED_INT_SAMPLER_2D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,   0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler3D,        GL_UNSIGNED_INT_SAMPLER_3D,                   GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_3D,   0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usamplerCube,      GL_UNSIGNED_INT_SAMPLER_CUBE,                 GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE, 0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler1DArray,   GL_UNSIGNED_INT_SAMPLER_1D_ARRAY,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,   0, 1, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler2DArray,   GL_UNSIGNED_INT_SAMPLER_2D_ARRAY,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,   0, 1, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usamplerCubeArray, GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE, 0, 1, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler2DRect,    GL_UNSIGNED_INT_SAMPLER_2D_RECT,              GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_RECT, 0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usamplerBuffer,    GL_UNSIGNED_INT_SAMPLER_BUFFER,               GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_BUF,  0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler2DMS,      GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_MS,   0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(usampler2DMSArray, GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY, GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_MS,   0, 1, GLSL_TYPE_UINT)<br>
> -<br>
> -DECL_TYPE(sampler1DShadow,        GL_SAMPLER_1D_SHADOW,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,       1, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DShadow,        GL_SAMPLER_2D_SHADOW,             GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,       1, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(samplerCubeShadow,      GL_SAMPLER_CUBE_SHADOW,           GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE,     1, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler1DArrayShadow,   GL_SAMPLER_1D_ARRAY_SHADOW,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_1D,       1, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DArrayShadow,   GL_SAMPLER_2D_ARRAY_SHADOW,       GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_2D,       1, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(samplerCubeArrayShadow, GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW, GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_CUBE,     1, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(sampler2DRectShadow,    GL_SAMPLER_2D_RECT_SHADOW,        GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_RECT,     1, 0, GLSL_TYPE_FLOAT)<br>
> -<br>
> -DECL_TYPE(samplerExternalOES,     GL_SAMPLER_EXTERNAL_OES,          GLSL_TYPE_SAMPLER, GLSL_SAMPLER_DIM_EXTERNAL, 0, 0, GLSL_TYPE_FLOAT)<br>
> -<br>
> -DECL_TYPE(image1D,         GL_IMAGE_1D,                                GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_1D,     0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image2D,         GL_IMAGE_2D,                                GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_2D,     0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image3D,         GL_IMAGE_3D,                                GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_3D,     0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image2DRect,     GL_IMAGE_2D_RECT,                           GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_RECT,   0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(imageCube,       GL_IMAGE_CUBE,                              GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_CUBE,   0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(imageBuffer,     GL_IMAGE_BUFFER,                            GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_BUF,    0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image1DArray,    GL_IMAGE_1D_ARRAY,                          GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_1D,     0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image2DArray,    GL_IMAGE_2D_ARRAY,                          GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_2D,     0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(imageCubeArray,  GL_IMAGE_CUBE_MAP_ARRAY,                    GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_CUBE,   0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image2DMS,       GL_IMAGE_2D_MULTISAMPLE,                    GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_MS,     0, 0, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(image2DMSArray,  GL_IMAGE_2D_MULTISAMPLE_ARRAY,              GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_MS,     0, 1, GLSL_TYPE_FLOAT)<br>
> -DECL_TYPE(iimage1D,        GL_INT_IMAGE_1D,                            GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_1D,     0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage2D,        GL_INT_IMAGE_2D,                            GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_2D,     0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage3D,        GL_INT_IMAGE_3D,                            GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_3D,     0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage2DRect,    GL_INT_IMAGE_2D_RECT,                       GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_RECT,   0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimageCube,      GL_INT_IMAGE_CUBE,                          GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_CUBE,   0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimageBuffer,    GL_INT_IMAGE_BUFFER,                        GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_BUF,    0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage1DArray,   GL_INT_IMAGE_1D_ARRAY,                      GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_1D,     0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage2DArray,   GL_INT_IMAGE_2D_ARRAY,                      GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_2D,     0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimageCubeArray, GL_INT_IMAGE_CUBE_MAP_ARRAY,                GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_CUBE,   0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage2DMS,      GL_INT_IMAGE_2D_MULTISAMPLE,                GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_MS,     0, 0, GLSL_TYPE_INT)<br>
> -DECL_TYPE(iimage2DMSArray, GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY,          GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_MS,     0, 1, GLSL_TYPE_INT)<br>
> -DECL_TYPE(uimage1D,        GL_UNSIGNED_INT_IMAGE_1D,                   GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_1D,     0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage2D,        GL_UNSIGNED_INT_IMAGE_2D,                   GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_2D,     0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage3D,        GL_UNSIGNED_INT_IMAGE_3D,                   GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_3D,     0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage2DRect,    GL_UNSIGNED_INT_IMAGE_2D_RECT,              GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_RECT,   0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimageCube,      GL_UNSIGNED_INT_IMAGE_CUBE,                 GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_CUBE,   0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimageBuffer,    GL_UNSIGNED_INT_IMAGE_BUFFER,               GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_BUF,    0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage1DArray,   GL_UNSIGNED_INT_IMAGE_1D_ARRAY,             GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_1D,     0, 1, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage2DArray,   GL_UNSIGNED_INT_IMAGE_2D_ARRAY,             GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_2D,     0, 1, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimageCubeArray, GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY,       GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_CUBE,   0, 1, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage2DMS,      GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE,       GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_MS,     0, 0, GLSL_TYPE_UINT)<br>
> -DECL_TYPE(uimage2DMSArray, GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY, GLSL_TYPE_IMAGE, GLSL_SAMPLER_DIM_MS,     0, 1, GLSL_TYPE_UINT)<br>
> -<br>
> -DECL_TYPE(atomic_uint, GL_UNSIGNED_INT_ATOMIC_COUNTER, GLSL_TYPE_ATOMIC_UINT, 1, 1)<br>
> -<br>
> -STRUCT_TYPE(gl_DepthRangeParameters)<br>
> -STRUCT_TYPE(gl_PointParameters)<br>
> -STRUCT_TYPE(gl_MaterialParameters)<br>
> -STRUCT_TYPE(gl_LightSourceParameters)<br>
> -STRUCT_TYPE(gl_LightModelParameters)<br>
> -STRUCT_TYPE(gl_LightModelProducts)<br>
> -STRUCT_TYPE(gl_LightProducts)<br>
> -STRUCT_TYPE(gl_FogParameters)<br>
> diff --git a/src/glsl/glsl_types.cpp b/src/glsl/glsl_types.cpp<br>
> deleted file mode 100644<br>
> index b0bb2ff..0000000<br>
> --- a/src/glsl/glsl_types.cpp<br>
> +++ /dev/null<br>
> @@ -1,1729 +0,0 @@<br>
> -/*<br>
> - * Copyright © 2009 Intel Corporation<br>
> - *<br>
> - * Permission is hereby granted, free of charge, to any person obtaining a<br>
> - * copy of this software and associated documentation files (the "Software"),<br>
> - * to deal in the Software without restriction, including without limitation<br>
> - * the rights to use, copy, modify, merge, publish, distribute, sublicense,<br>
> - * and/or sell copies of the Software, and to permit persons to whom the<br>
> - * Software is furnished to do so, subject to the following conditions:<br>
> - *<br>
> - * The above copyright notice and this permission notice (including the next<br>
> - * paragraph) shall be included in all copies or substantial portions of the<br>
> - * Software.<br>
> - *<br>
> - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br>
> - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br>
> - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL<br>
> - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br>
> - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING<br>
> - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER<br>
> - * DEALINGS IN THE SOFTWARE.<br>
> - */<br>
> -<br>
> -#include <stdio.h><br>
> -#include "main/core.h" /* for Elements, MAX2 */<br>
> -#include "glsl_parser_extras.h"<br>
> -#include "glsl_types.h"<br>
> -#include "util/hash_table.h"<br>
> -<br>
> -<br>
> -mtx_t glsl_type::mutex = _MTX_INITIALIZER_NP;<br>
> -hash_table *glsl_type::array_types = NULL;<br>
> -hash_table *glsl_type::record_types = NULL;<br>
> -hash_table *glsl_type::interface_types = NULL;<br>
> -hash_table *glsl_type::subroutine_types = NULL;<br>
> -void *glsl_type::mem_ctx = NULL;<br>
> -<br>
> -void<br>
> -glsl_type::init_ralloc_type_ctx(void)<br>
> -{<br>
> -   if (glsl_type::mem_ctx == NULL) {<br>
> -      glsl_type::mem_ctx = ralloc_autofree_context();<br>
> -      assert(glsl_type::mem_ctx != NULL);<br>
> -   }<br>
> -}<br>
> -<br>
> -glsl_type::glsl_type(GLenum gl_type,<br>
> -                     glsl_base_type base_type, unsigned vector_elements,<br>
> -                     unsigned matrix_columns, const char *name) :<br>
> -   gl_type(gl_type),<br>
> -   base_type(base_type),<br>
> -   sampler_dimensionality(0), sampler_shadow(0), sampler_array(0),<br>
> -   sampler_type(0), interface_packing(0),<br>
> -   vector_elements(vector_elements), matrix_columns(matrix_columns),<br>
> -   length(0)<br>
> -{<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   init_ralloc_type_ctx();<br>
> -   assert(name != NULL);<br>
> -   this->name = ralloc_strdup(this->mem_ctx, name);<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   /* Neither dimension is zero or both dimensions are zero.<br>
> -    */<br>
> -   assert((vector_elements == 0) == (matrix_columns == 0));<br>
> -   memset(& fields, 0, sizeof(fields));<br>
> -}<br>
> -<br>
> -glsl_type::glsl_type(GLenum gl_type, glsl_base_type base_type,<br>
> -                     enum glsl_sampler_dim dim, bool shadow, bool array,<br>
> -                     unsigned type, const char *name) :<br>
> -   gl_type(gl_type),<br>
> -   base_type(base_type),<br>
> -   sampler_dimensionality(dim), sampler_shadow(shadow),<br>
> -   sampler_array(array), sampler_type(type), interface_packing(0),<br>
> -   length(0)<br>
> -{<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   init_ralloc_type_ctx();<br>
> -   assert(name != NULL);<br>
> -   this->name = ralloc_strdup(this->mem_ctx, name);<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   memset(& fields, 0, sizeof(fields));<br>
> -<br>
> -   if (base_type == GLSL_TYPE_SAMPLER) {<br>
> -      /* Samplers take no storage whatsoever. */<br>
> -      matrix_columns = vector_elements = 0;<br>
> -   } else {<br>
> -      matrix_columns = vector_elements = 1;<br>
> -   }<br>
> -}<br>
> -<br>
> -glsl_type::glsl_type(const glsl_struct_field *fields, unsigned num_fields,<br>
> -                     const char *name) :<br>
> -   gl_type(0),<br>
> -   base_type(GLSL_TYPE_STRUCT),<br>
> -   sampler_dimensionality(0), sampler_shadow(0), sampler_array(0),<br>
> -   sampler_type(0), interface_packing(0),<br>
> -   vector_elements(0), matrix_columns(0),<br>
> -   length(num_fields)<br>
> -{<br>
> -   unsigned int i;<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   init_ralloc_type_ctx();<br>
> -   assert(name != NULL);<br>
> -   this->name = ralloc_strdup(this->mem_ctx, name);<br>
> -   this->fields.structure = ralloc_array(this->mem_ctx,<br>
> -                                         glsl_struct_field, length);<br>
> -<br>
> -   for (i = 0; i < length; i++) {<br>
> -      this->fields.structure[i].type = fields[i].type;<br>
> -      this->fields.structure[i].name = ralloc_strdup(this->fields.structure,<br>
> -                                                     fields[i].name);<br>
> -      this->fields.structure[i].location = fields[i].location;<br>
> -      this->fields.structure[i].interpolation = fields[i].interpolation;<br>
> -      this->fields.structure[i].centroid = fields[i].centroid;<br>
> -      this->fields.structure[i].sample = fields[i].sample;<br>
> -      this->fields.structure[i].matrix_layout = fields[i].matrix_layout;<br>
> -      this->fields.structure[i].patch = fields[i].patch;<br>
> -      this->fields.structure[i].image_read_only = fields[i].image_read_only;<br>
> -      this->fields.structure[i].image_write_only = fields[i].image_write_only;<br>
> -      this->fields.structure[i].image_coherent = fields[i].image_coherent;<br>
> -      this->fields.structure[i].image_volatile = fields[i].image_volatile;<br>
> -      this->fields.structure[i].image_restrict = fields[i].image_restrict;<br>
> -   }<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -}<br>
> -<br>
> -glsl_type::glsl_type(const glsl_struct_field *fields, unsigned num_fields,<br>
> -                     enum glsl_interface_packing packing, const char *name) :<br>
> -   gl_type(0),<br>
> -   base_type(GLSL_TYPE_INTERFACE),<br>
> -   sampler_dimensionality(0), sampler_shadow(0), sampler_array(0),<br>
> -   sampler_type(0), interface_packing((unsigned) packing),<br>
> -   vector_elements(0), matrix_columns(0),<br>
> -   length(num_fields)<br>
> -{<br>
> -   unsigned int i;<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   init_ralloc_type_ctx();<br>
> -   assert(name != NULL);<br>
> -   this->name = ralloc_strdup(this->mem_ctx, name);<br>
> -   this->fields.structure = ralloc_array(this->mem_ctx,<br>
> -                                         glsl_struct_field, length);<br>
> -   for (i = 0; i < length; i++) {<br>
> -      this->fields.structure[i].type = fields[i].type;<br>
> -      this->fields.structure[i].name = ralloc_strdup(this->fields.structure,<br>
> -                                                     fields[i].name);<br>
> -      this->fields.structure[i].location = fields[i].location;<br>
> -      this->fields.structure[i].interpolation = fields[i].interpolation;<br>
> -      this->fields.structure[i].centroid = fields[i].centroid;<br>
> -      this->fields.structure[i].sample = fields[i].sample;<br>
> -      this->fields.structure[i].matrix_layout = fields[i].matrix_layout;<br>
> -      this->fields.structure[i].patch = fields[i].patch;<br>
> -   }<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -}<br>
> -<br>
> -glsl_type::glsl_type(const char *subroutine_name) :<br>
> -   gl_type(0),<br>
> -   base_type(GLSL_TYPE_SUBROUTINE),<br>
> -   sampler_dimensionality(0), sampler_shadow(0), sampler_array(0),<br>
> -   sampler_type(0), interface_packing(0),<br>
> -   vector_elements(1), matrix_columns(1),<br>
> -   length(0)<br>
> -{<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   init_ralloc_type_ctx();<br>
> -   assert(subroutine_name != NULL);<br>
> -   this->name = ralloc_strdup(this->mem_ctx, subroutine_name);<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -}<br>
> -<br>
> -bool<br>
> -glsl_type::contains_sampler() const<br>
> -{<br>
> -   if (this->is_array()) {<br>
> -      return this->fields.array->contains_sampler();<br>
> -   } else if (this->is_record()) {<br>
> -      for (unsigned int i = 0; i < this->length; i++) {<br>
> -         if (this->fields.structure[i].type->contains_sampler())<br>
> -            return true;<br>
> -      }<br>
> -      return false;<br>
> -   } else {<br>
> -      return this->is_sampler();<br>
> -   }<br>
> -}<br>
> -<br>
> -<br>
> -bool<br>
> -glsl_type::contains_integer() const<br>
> -{<br>
> -   if (this->is_array()) {<br>
> -      return this->fields.array->contains_integer();<br>
> -   } else if (this->is_record()) {<br>
> -      for (unsigned int i = 0; i < this->length; i++) {<br>
> -         if (this->fields.structure[i].type->contains_integer())<br>
> -            return true;<br>
> -      }<br>
> -      return false;<br>
> -   } else {<br>
> -      return this->is_integer();<br>
> -   }<br>
> -}<br>
> -<br>
> -bool<br>
> -glsl_type::contains_double() const<br>
> -{<br>
> -   if (this->is_array()) {<br>
> -      return this->fields.array->contains_double();<br>
> -   } else if (this->is_record()) {<br>
> -      for (unsigned int i = 0; i < this->length; i++) {<br>
> -         if (this->fields.structure[i].type->contains_double())<br>
> -            return true;<br>
> -      }<br>
> -      return false;<br>
> -   } else {<br>
> -      return this->is_double();<br>
> -   }<br>
> -}<br>
> -<br>
> -bool<br>
> -glsl_type::contains_opaque() const {<br>
> -   switch (base_type) {<br>
> -   case GLSL_TYPE_SAMPLER:<br>
> -   case GLSL_TYPE_IMAGE:<br>
> -   case GLSL_TYPE_ATOMIC_UINT:<br>
> -      return true;<br>
> -   case GLSL_TYPE_ARRAY:<br>
> -      return fields.array->contains_opaque();<br>
> -   case GLSL_TYPE_STRUCT:<br>
> -      for (unsigned int i = 0; i < length; i++) {<br>
> -         if (fields.structure[i].type->contains_opaque())<br>
> -            return true;<br>
> -      }<br>
> -      return false;<br>
> -   default:<br>
> -      return false;<br>
> -   }<br>
> -}<br>
> -<br>
> -bool<br>
> -glsl_type::contains_subroutine() const<br>
> -{<br>
> -   if (this->is_array()) {<br>
> -      return this->fields.array->contains_subroutine();<br>
> -   } else if (this->is_record()) {<br>
> -      for (unsigned int i = 0; i < this->length; i++) {<br>
> -         if (this->fields.structure[i].type->contains_subroutine())<br>
> -            return true;<br>
> -      }<br>
> -      return false;<br>
> -   } else {<br>
> -      return this->is_subroutine();<br>
> -   }<br>
> -}<br>
> -<br>
> -gl_texture_index<br>
> -glsl_type::sampler_index() const<br>
> -{<br>
> -   const glsl_type *const t = (this->is_array()) ? this->fields.array : this;<br>
> -<br>
> -   assert(t->is_sampler());<br>
> -<br>
> -   switch (t->sampler_dimensionality) {<br>
> -   case GLSL_SAMPLER_DIM_1D:<br>
> -      return (t->sampler_array) ? TEXTURE_1D_ARRAY_INDEX : TEXTURE_1D_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_2D:<br>
> -      return (t->sampler_array) ? TEXTURE_2D_ARRAY_INDEX : TEXTURE_2D_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_3D:<br>
> -      return TEXTURE_3D_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_CUBE:<br>
> -      return (t->sampler_array) ? TEXTURE_CUBE_ARRAY_INDEX : TEXTURE_CUBE_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_RECT:<br>
> -      return TEXTURE_RECT_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_BUF:<br>
> -      return TEXTURE_BUFFER_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_EXTERNAL:<br>
> -      return TEXTURE_EXTERNAL_INDEX;<br>
> -   case GLSL_SAMPLER_DIM_MS:<br>
> -      return (t->sampler_array) ? TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX : TEXTURE_2D_MULTISAMPLE_INDEX;<br>
> -   default:<br>
> -      assert(!"Should not get here.");<br>
> -      return TEXTURE_BUFFER_INDEX;<br>
> -   }<br>
> -}<br>
> -<br>
> -bool<br>
> -glsl_type::contains_image() const<br>
> -{<br>
> -   if (this->is_array()) {<br>
> -      return this->fields.array->contains_image();<br>
> -   } else if (this->is_record()) {<br>
> -      for (unsigned int i = 0; i < this->length; i++) {<br>
> -         if (this->fields.structure[i].type->contains_image())<br>
> -            return true;<br>
> -      }<br>
> -      return false;<br>
> -   } else {<br>
> -      return this->is_image();<br>
> -   }<br>
> -}<br>
> -<br>
> -const glsl_type *glsl_type::get_base_type() const<br>
> -{<br>
> -   switch (base_type) {<br>
> -   case GLSL_TYPE_UINT:<br>
> -      return uint_type;<br>
> -   case GLSL_TYPE_INT:<br>
> -      return int_type;<br>
> -   case GLSL_TYPE_FLOAT:<br>
> -      return float_type;<br>
> -   case GLSL_TYPE_DOUBLE:<br>
> -      return double_type;<br>
> -   case GLSL_TYPE_BOOL:<br>
> -      return bool_type;<br>
> -   default:<br>
> -      return error_type;<br>
> -   }<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *glsl_type::get_scalar_type() const<br>
> -{<br>
> -   const glsl_type *type = this;<br>
> -<br>
> -   /* Handle arrays */<br>
> -   while (type->base_type == GLSL_TYPE_ARRAY)<br>
> -      type = type->fields.array;<br>
> -<br>
> -   /* Handle vectors and matrices */<br>
> -   switch (type->base_type) {<br>
> -   case GLSL_TYPE_UINT:<br>
> -      return uint_type;<br>
> -   case GLSL_TYPE_INT:<br>
> -      return int_type;<br>
> -   case GLSL_TYPE_FLOAT:<br>
> -      return float_type;<br>
> -   case GLSL_TYPE_DOUBLE:<br>
> -      return double_type;<br>
> -   case GLSL_TYPE_BOOL:<br>
> -      return bool_type;<br>
> -   default:<br>
> -      /* Handle everything else */<br>
> -      return type;<br>
> -   }<br>
> -}<br>
> -<br>
> -<br>
> -void<br>
> -_mesa_glsl_release_types(void)<br>
> -{<br>
> -   /* Should only be called during atexit (either when unloading shared<br>
> -    * object, or if process terminates), so no mutex-locking should be<br>
> -    * necessary.<br>
> -    */<br>
> -   if (glsl_type::array_types != NULL) {<br>
> -      _mesa_hash_table_destroy(glsl_type::array_types, NULL);<br>
> -      glsl_type::array_types = NULL;<br>
> -   }<br>
> -<br>
> -   if (glsl_type::record_types != NULL) {<br>
> -      _mesa_hash_table_destroy(glsl_type::record_types, NULL);<br>
> -      glsl_type::record_types = NULL;<br>
> -   }<br>
> -<br>
> -   if (glsl_type::interface_types != NULL) {<br>
> -      _mesa_hash_table_destroy(glsl_type::interface_types, NULL);<br>
> -      glsl_type::interface_types = NULL;<br>
> -   }<br>
> -}<br>
> -<br>
> -<br>
> -glsl_type::glsl_type(const glsl_type *array, unsigned length) :<br>
> -   base_type(GLSL_TYPE_ARRAY),<br>
> -   sampler_dimensionality(0), sampler_shadow(0), sampler_array(0),<br>
> -   sampler_type(0), interface_packing(0),<br>
> -   vector_elements(0), matrix_columns(0),<br>
> -   length(length), name(NULL)<br>
> -{<br>
> -   this->fields.array = array;<br>
> -   /* Inherit the gl type of the base. The GL type is used for<br>
> -    * uniform/statevar handling in Mesa and the arrayness of the type<br>
> -    * is represented by the size rather than the type.<br>
> -    */<br>
> -   this->gl_type = array->gl_type;<br>
> -<br>
> -   /* Allow a maximum of 10 characters for the array size.  This is enough<br>
> -    * for 32-bits of ~0.  The extra 3 are for the '[', ']', and terminating<br>
> -    * NUL.<br>
> -    */<br>
> -   const unsigned name_length = strlen(array->name) + 10 + 3;<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -   char *const n = (char *) ralloc_size(this->mem_ctx, name_length);<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   if (length == 0)<br>
> -      snprintf(n, name_length, "%s[]", array->name);<br>
> -   else {<br>
> -      /* insert outermost dimensions in the correct spot<br>
> -       * otherwise the dimension order will be backwards<br>
> -       */<br>
> -      const char *pos = strchr(array->name, '[');<br>
> -      if (pos) {<br>
> -         int idx = pos - array->name;<br>
> -         snprintf(n, idx+1, "%s", array->name);<br>
> -         snprintf(n + idx, name_length - idx, "[%u]%s",<br>
> -                  length, array->name + idx);<br>
> -      } else {<br>
> -         snprintf(n, name_length, "%s[%u]", array->name, length);<br>
> -      }<br>
> -   }<br>
> -<br>
> -   this->name = n;<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::vec(unsigned components)<br>
> -{<br>
> -   if (components == 0 || components > 4)<br>
> -      return error_type;<br>
> -<br>
> -   static const glsl_type *const ts[] = {<br>
> -      float_type, vec2_type, vec3_type, vec4_type<br>
> -   };<br>
> -   return ts[components - 1];<br>
> -}<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::dvec(unsigned components)<br>
> -{<br>
> -   if (components == 0 || components > 4)<br>
> -      return error_type;<br>
> -<br>
> -   static const glsl_type *const ts[] = {<br>
> -      double_type, dvec2_type, dvec3_type, dvec4_type<br>
> -   };<br>
> -   return ts[components - 1];<br>
> -}<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::ivec(unsigned components)<br>
> -{<br>
> -   if (components == 0 || components > 4)<br>
> -      return error_type;<br>
> -<br>
> -   static const glsl_type *const ts[] = {<br>
> -      int_type, ivec2_type, ivec3_type, ivec4_type<br>
> -   };<br>
> -   return ts[components - 1];<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::uvec(unsigned components)<br>
> -{<br>
> -   if (components == 0 || components > 4)<br>
> -      return error_type;<br>
> -<br>
> -   static const glsl_type *const ts[] = {<br>
> -      uint_type, uvec2_type, uvec3_type, uvec4_type<br>
> -   };<br>
> -   return ts[components - 1];<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::bvec(unsigned components)<br>
> -{<br>
> -   if (components == 0 || components > 4)<br>
> -      return error_type;<br>
> -<br>
> -   static const glsl_type *const ts[] = {<br>
> -      bool_type, bvec2_type, bvec3_type, bvec4_type<br>
> -   };<br>
> -   return ts[components - 1];<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_instance(unsigned base_type, unsigned rows, unsigned columns)<br>
> -{<br>
> -   if (base_type == GLSL_TYPE_VOID)<br>
> -      return void_type;<br>
> -<br>
> -   if ((rows < 1) || (rows > 4) || (columns < 1) || (columns > 4))<br>
> -      return error_type;<br>
> -<br>
> -   /* Treat GLSL vectors as Nx1 matrices.<br>
> -    */<br>
> -   if (columns == 1) {<br>
> -      switch (base_type) {<br>
> -      case GLSL_TYPE_UINT:<br>
> -         return uvec(rows);<br>
> -      case GLSL_TYPE_INT:<br>
> -         return ivec(rows);<br>
> -      case GLSL_TYPE_FLOAT:<br>
> -         return vec(rows);<br>
> -      case GLSL_TYPE_DOUBLE:<br>
> -         return dvec(rows);<br>
> -      case GLSL_TYPE_BOOL:<br>
> -         return bvec(rows);<br>
> -      default:<br>
> -         return error_type;<br>
> -      }<br>
> -   } else {<br>
> -      if ((base_type != GLSL_TYPE_FLOAT && base_type != GLSL_TYPE_DOUBLE) || (rows == 1))<br>
> -         return error_type;<br>
> -<br>
> -      /* GLSL matrix types are named mat{COLUMNS}x{ROWS}.  Only the following<br>
> -       * combinations are valid:<br>
> -       *<br>
> -       *   1 2 3 4<br>
> -       * 1<br>
> -       * 2   x x x<br>
> -       * 3   x x x<br>
> -       * 4   x x x<br>
> -       */<br>
> -#define IDX(c,r) (((c-1)*3) + (r-1))<br>
> -<br>
> -      if (base_type == GLSL_TYPE_DOUBLE) {<br>
> -         switch (IDX(columns, rows)) {<br>
> -         case IDX(2,2): return dmat2_type;<br>
> -         case IDX(2,3): return dmat2x3_type;<br>
> -         case IDX(2,4): return dmat2x4_type;<br>
> -         case IDX(3,2): return dmat3x2_type;<br>
> -         case IDX(3,3): return dmat3_type;<br>
> -         case IDX(3,4): return dmat3x4_type;<br>
> -         case IDX(4,2): return dmat4x2_type;<br>
> -         case IDX(4,3): return dmat4x3_type;<br>
> -         case IDX(4,4): return dmat4_type;<br>
> -         default: return error_type;<br>
> -         }<br>
> -      } else {<br>
> -         switch (IDX(columns, rows)) {<br>
> -         case IDX(2,2): return mat2_type;<br>
> -         case IDX(2,3): return mat2x3_type;<br>
> -         case IDX(2,4): return mat2x4_type;<br>
> -         case IDX(3,2): return mat3x2_type;<br>
> -         case IDX(3,3): return mat3_type;<br>
> -         case IDX(3,4): return mat3x4_type;<br>
> -         case IDX(4,2): return mat4x2_type;<br>
> -         case IDX(4,3): return mat4x3_type;<br>
> -         case IDX(4,4): return mat4_type;<br>
> -         default: return error_type;<br>
> -         }<br>
> -      }<br>
> -   }<br>
> -<br>
> -   assert(!"Should not get here.");<br>
> -   return error_type;<br>
> -}<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_sampler_instance(enum glsl_sampler_dim dim,<br>
> -                                bool shadow,<br>
> -                                bool array,<br>
> -                                glsl_base_type type)<br>
> -{<br>
> -   switch (type) {<br>
> -   case GLSL_TYPE_FLOAT:<br>
> -      switch (dim) {<br>
> -      case GLSL_SAMPLER_DIM_1D:<br>
> -         if (shadow)<br>
> -            return (array ? sampler1DArrayShadow_type : sampler1DShadow_type);<br>
> -         else<br>
> -            return (array ? sampler1DArray_type : sampler1D_type);<br>
> -      case GLSL_SAMPLER_DIM_2D:<br>
> -         if (shadow)<br>
> -            return (array ? sampler2DArrayShadow_type : sampler2DShadow_type);<br>
> -         else<br>
> -            return (array ? sampler2DArray_type : sampler2D_type);<br>
> -      case GLSL_SAMPLER_DIM_3D:<br>
> -         if (shadow || array)<br>
> -            return error_type;<br>
> -         else<br>
> -            return sampler3D_type;<br>
> -      case GLSL_SAMPLER_DIM_CUBE:<br>
> -         if (shadow)<br>
> -            return (array ? samplerCubeArrayShadow_type : samplerCubeShadow_type);<br>
> -         else<br>
> -            return (array ? samplerCubeArray_type : samplerCube_type);<br>
> -      case GLSL_SAMPLER_DIM_RECT:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         if (shadow)<br>
> -            return sampler2DRectShadow_type;<br>
> -         else<br>
> -            return sampler2DRect_type;<br>
> -      case GLSL_SAMPLER_DIM_BUF:<br>
> -         if (shadow || array)<br>
> -            return error_type;<br>
> -         else<br>
> -            return samplerBuffer_type;<br>
> -      case GLSL_SAMPLER_DIM_MS:<br>
> -         if (shadow)<br>
> -            return error_type;<br>
> -         return (array ? sampler2DMSArray_type : sampler2DMS_type);<br>
> -      case GLSL_SAMPLER_DIM_EXTERNAL:<br>
> -         if (shadow || array)<br>
> -            return error_type;<br>
> -         else<br>
> -            return samplerExternalOES_type;<br>
> -      }<br>
> -   case GLSL_TYPE_INT:<br>
> -      if (shadow)<br>
> -         return error_type;<br>
> -      switch (dim) {<br>
> -      case GLSL_SAMPLER_DIM_1D:<br>
> -         return (array ? isampler1DArray_type : isampler1D_type);<br>
> -      case GLSL_SAMPLER_DIM_2D:<br>
> -         return (array ? isampler2DArray_type : isampler2D_type);<br>
> -      case GLSL_SAMPLER_DIM_3D:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         return isampler3D_type;<br>
> -      case GLSL_SAMPLER_DIM_CUBE:<br>
> -         return (array ? isamplerCubeArray_type : isamplerCube_type);<br>
> -      case GLSL_SAMPLER_DIM_RECT:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         return isampler2DRect_type;<br>
> -      case GLSL_SAMPLER_DIM_BUF:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         return isamplerBuffer_type;<br>
> -      case GLSL_SAMPLER_DIM_MS:<br>
> -         return (array ? isampler2DMSArray_type : isampler2DMS_type);<br>
> -      case GLSL_SAMPLER_DIM_EXTERNAL:<br>
> -         return error_type;<br>
> -      }<br>
> -   case GLSL_TYPE_UINT:<br>
> -      if (shadow)<br>
> -         return error_type;<br>
> -      switch (dim) {<br>
> -      case GLSL_SAMPLER_DIM_1D:<br>
> -         return (array ? usampler1DArray_type : usampler1D_type);<br>
> -      case GLSL_SAMPLER_DIM_2D:<br>
> -         return (array ? usampler2DArray_type : usampler2D_type);<br>
> -      case GLSL_SAMPLER_DIM_3D:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         return usampler3D_type;<br>
> -      case GLSL_SAMPLER_DIM_CUBE:<br>
> -         return (array ? usamplerCubeArray_type : usamplerCube_type);<br>
> -      case GLSL_SAMPLER_DIM_RECT:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         return usampler2DRect_type;<br>
> -      case GLSL_SAMPLER_DIM_BUF:<br>
> -         if (array)<br>
> -            return error_type;<br>
> -         return usamplerBuffer_type;<br>
> -      case GLSL_SAMPLER_DIM_MS:<br>
> -         return (array ? usampler2DMSArray_type : usampler2DMS_type);<br>
> -      case GLSL_SAMPLER_DIM_EXTERNAL:<br>
> -         return error_type;<br>
> -      }<br>
> -   default:<br>
> -      return error_type;<br>
> -   }<br>
> -<br>
> -   unreachable("switch statement above should be complete");<br>
> -}<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_array_instance(const glsl_type *base, unsigned array_size)<br>
> -{<br>
> -   /* Generate a name using the base type pointer in the key.  This is<br>
> -    * done because the name of the base type may not be unique across<br>
> -    * shaders.  For example, two shaders may have different record types<br>
> -    * named 'foo'.<br>
> -    */<br>
> -   char key[128];<br>
> -   snprintf(key, sizeof(key), "%p[%u]", (void *) base, array_size);<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   if (array_types == NULL) {<br>
> -      array_types = _mesa_hash_table_create(NULL, _mesa_key_hash_string,<br>
> -                                            _mesa_key_string_equal);<br>
> -   }<br>
> -<br>
> -   const struct hash_entry *entry = _mesa_hash_table_search(array_types, key);<br>
> -   if (entry == NULL) {<br>
> -      mtx_unlock(&glsl_type::mutex);<br>
> -      const glsl_type *t = new glsl_type(base, array_size);<br>
> -      mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -      entry = _mesa_hash_table_insert(array_types,<br>
> -                                      ralloc_strdup(mem_ctx, key),<br>
> -                                      (void *) t);<br>
> -   }<br>
> -<br>
> -   assert(((glsl_type *) entry->data)->base_type == GLSL_TYPE_ARRAY);<br>
> -   assert(((glsl_type *) entry->data)->length == array_size);<br>
> -   assert(((glsl_type *) entry->data)->fields.array == base);<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   return (glsl_type *) entry->data;<br>
> -}<br>
> -<br>
> -<br>
> -bool<br>
> -glsl_type::record_compare(const glsl_type *b) const<br>
> -{<br>
> -   if (this->length != b->length)<br>
> -      return false;<br>
> -<br>
> -   if (this->interface_packing != b->interface_packing)<br>
> -      return false;<br>
> -<br>
> -   /* From the GLSL 4.20 specification (Sec 4.2):<br>
> -    *<br>
> -    *     "Structures must have the same name, sequence of type names, and<br>
> -    *     type definitions, and field names to be considered the same type."<br>
> -    *<br>
> -    * GLSL ES behaves the same (Ver 1.00 Sec 4.2.4, Ver 3.00 Sec 4.2.5).<br>
> -    *<br>
> -    * Note that we cannot force type name check when comparing unnamed<br>
> -    * structure types, these have a unique name assigned during parsing.<br>
> -    */<br>
> -   if (!this->is_anonymous() && !b->is_anonymous())<br>
> -      if (strcmp(this->name, b->name) != 0)<br>
> -         return false;<br>
> -<br>
> -   for (unsigned i = 0; i < this->length; i++) {<br>
> -      if (this->fields.structure[i].type != b->fields.structure[i].type)<br>
> -         return false;<br>
> -      if (strcmp(this->fields.structure[i].name,<br>
> -                 b->fields.structure[i].name) != 0)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].matrix_layout<br>
> -         != b->fields.structure[i].matrix_layout)<br>
> -        return false;<br>
> -      if (this->fields.structure[i].location<br>
> -          != b->fields.structure[i].location)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].interpolation<br>
> -          != b->fields.structure[i].interpolation)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].centroid<br>
> -          != b->fields.structure[i].centroid)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].sample<br>
> -          != b->fields.structure[i].sample)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].patch<br>
> -          != b->fields.structure[i].patch)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].image_read_only<br>
> -          != b->fields.structure[i].image_read_only)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].image_write_only<br>
> -          != b->fields.structure[i].image_write_only)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].image_coherent<br>
> -          != b->fields.structure[i].image_coherent)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].image_volatile<br>
> -          != b->fields.structure[i].image_volatile)<br>
> -         return false;<br>
> -      if (this->fields.structure[i].image_restrict<br>
> -          != b->fields.structure[i].image_restrict)<br>
> -         return false;<br>
> -   }<br>
> -<br>
> -   return true;<br>
> -}<br>
> -<br>
> -<br>
> -bool<br>
> -glsl_type::record_key_compare(const void *a, const void *b)<br>
> -{<br>
> -   const glsl_type *const key1 = (glsl_type *) a;<br>
> -   const glsl_type *const key2 = (glsl_type *) b;<br>
> -<br>
> -   return strcmp(key1->name, key2->name) == 0 && key1->record_compare(key2);<br>
> -}<br>
> -<br>
> -<br>
> -/**<br>
> - * Generate an integer hash value for a glsl_type structure type.<br>
> - */<br>
> -unsigned<br>
> -glsl_type::record_key_hash(const void *a)<br>
> -{<br>
> -   const glsl_type *const key = (glsl_type *) a;<br>
> -   uintptr_t hash = key->length;<br>
> -   unsigned retval;<br>
> -<br>
> -   for (unsigned i = 0; i < key->length; i++) {<br>
> -      /* casting pointer to uintptr_t */<br>
> -      hash = (hash * 13 ) + (uintptr_t) key->fields.structure[i].type;<br>
> -   }<br>
> -<br>
> -   if (sizeof(hash) == 8)<br>
> -      retval = (hash & 0xffffffff) ^ ((uint64_t) hash >> 32);<br>
> -   else<br>
> -      retval = hash;<br>
> -<br>
> -   return retval;<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_record_instance(const glsl_struct_field *fields,<br>
> -                               unsigned num_fields,<br>
> -                               const char *name)<br>
> -{<br>
> -   const glsl_type key(fields, num_fields, name);<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   if (record_types == NULL) {<br>
> -      record_types = _mesa_hash_table_create(NULL, record_key_hash,<br>
> -                                             record_key_compare);<br>
> -   }<br>
> -<br>
> -   const struct hash_entry *entry = _mesa_hash_table_search(record_types,<br>
> -                                                            &key);<br>
> -   if (entry == NULL) {<br>
> -      mtx_unlock(&glsl_type::mutex);<br>
> -      const glsl_type *t = new glsl_type(fields, num_fields, name);<br>
> -      mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -      entry = _mesa_hash_table_insert(record_types, t, (void *) t);<br>
> -   }<br>
> -<br>
> -   assert(((glsl_type *) entry->data)->base_type == GLSL_TYPE_STRUCT);<br>
> -   assert(((glsl_type *) entry->data)->length == num_fields);<br>
> -   assert(strcmp(((glsl_type *) entry->data)->name, name) == 0);<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   return (glsl_type *) entry->data;<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_interface_instance(const glsl_struct_field *fields,<br>
> -                                  unsigned num_fields,<br>
> -                                  enum glsl_interface_packing packing,<br>
> -                                  const char *block_name)<br>
> -{<br>
> -   const glsl_type key(fields, num_fields, packing, block_name);<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   if (interface_types == NULL) {<br>
> -      interface_types = _mesa_hash_table_create(NULL, record_key_hash,<br>
> -                                                record_key_compare);<br>
> -   }<br>
> -<br>
> -   const struct hash_entry *entry = _mesa_hash_table_search(interface_types,<br>
> -                                                            &key);<br>
> -   if (entry == NULL) {<br>
> -      mtx_unlock(&glsl_type::mutex);<br>
> -      const glsl_type *t = new glsl_type(fields, num_fields,<br>
> -                                         packing, block_name);<br>
> -      mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -      entry = _mesa_hash_table_insert(interface_types, t, (void *) t);<br>
> -   }<br>
> -<br>
> -   assert(((glsl_type *) entry->data)->base_type == GLSL_TYPE_INTERFACE);<br>
> -   assert(((glsl_type *) entry->data)->length == num_fields);<br>
> -   assert(strcmp(((glsl_type *) entry->data)->name, block_name) == 0);<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   return (glsl_type *) entry->data;<br>
> -}<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_subroutine_instance(const char *subroutine_name)<br>
> -{<br>
> -   const glsl_type key(subroutine_name);<br>
> -<br>
> -   mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -   if (subroutine_types == NULL) {<br>
> -      subroutine_types = _mesa_hash_table_create(NULL, record_key_hash,<br>
> -                                                 record_key_compare);<br>
> -   }<br>
> -<br>
> -   const struct hash_entry *entry = _mesa_hash_table_search(subroutine_types,<br>
> -                                                            &key);<br>
> -   if (entry == NULL) {<br>
> -      mtx_unlock(&glsl_type::mutex);<br>
> -      const glsl_type *t = new glsl_type(subroutine_name);<br>
> -      mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -      entry = _mesa_hash_table_insert(subroutine_types, t, (void *) t);<br>
> -   }<br>
> -<br>
> -   assert(((glsl_type *) entry->data)->base_type == GLSL_TYPE_SUBROUTINE);<br>
> -   assert(strcmp(((glsl_type *) entry->data)->name, subroutine_name) == 0);<br>
> -<br>
> -   mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -   return (glsl_type *) entry->data;<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::get_mul_type(const glsl_type *type_a, const glsl_type *type_b)<br>
> -{<br>
> -   if (type_a == type_b) {<br>
> -      return type_a;<br>
> -   } else if (type_a->is_matrix() && type_b->is_matrix()) {<br>
> -      /* Matrix multiply.  The columns of A must match the rows of B.  Given<br>
> -       * the other previously tested constraints, this means the vector type<br>
> -       * of a row from A must be the same as the vector type of a column from<br>
> -       * B.<br>
> -       */<br>
> -      if (type_a->row_type() == type_b->column_type()) {<br>
> -         /* The resulting matrix has the number of columns of matrix B and<br>
> -          * the number of rows of matrix A.  We get the row count of A by<br>
> -          * looking at the size of a vector that makes up a column.  The<br>
> -          * transpose (size of a row) is done for B.<br>
> -          */<br>
> -         const glsl_type *const type =<br>
> -            get_instance(type_a->base_type,<br>
> -                         type_a->column_type()->vector_elements,<br>
> -                         type_b->row_type()->vector_elements);<br>
> -         assert(type != error_type);<br>
> -<br>
> -         return type;<br>
> -      }<br>
> -   } else if (type_a->is_matrix()) {<br>
> -      /* A is a matrix and B is a column vector.  Columns of A must match<br>
> -       * rows of B.  Given the other previously tested constraints, this<br>
> -       * means the vector type of a row from A must be the same as the<br>
> -       * vector the type of B.<br>
> -       */<br>
> -      if (type_a->row_type() == type_b) {<br>
> -         /* The resulting vector has a number of elements equal to<br>
> -          * the number of rows of matrix A. */<br>
> -         const glsl_type *const type =<br>
> -            get_instance(type_a->base_type,<br>
> -                         type_a->column_type()->vector_elements,<br>
> -                         1);<br>
> -         assert(type != error_type);<br>
> -<br>
> -         return type;<br>
> -      }<br>
> -   } else {<br>
> -      assert(type_b->is_matrix());<br>
> -<br>
> -      /* A is a row vector and B is a matrix.  Columns of A must match rows<br>
> -       * of B.  Given the other previously tested constraints, this means<br>
> -       * the type of A must be the same as the vector type of a column from<br>
> -       * B.<br>
> -       */<br>
> -      if (type_a == type_b->column_type()) {<br>
> -         /* The resulting vector has a number of elements equal to<br>
> -          * the number of columns of matrix B. */<br>
> -         const glsl_type *const type =<br>
> -            get_instance(type_a->base_type,<br>
> -                         type_b->row_type()->vector_elements,<br>
> -                         1);<br>
> -         assert(type != error_type);<br>
> -<br>
> -         return type;<br>
> -      }<br>
> -   }<br>
> -<br>
> -   return error_type;<br>
> -}<br>
> -<br>
> -<br>
> -const glsl_type *<br>
> -glsl_type::field_type(const char *name) const<br>
> -{<br>
> -   if (this->base_type != GLSL_TYPE_STRUCT<br>
> -       && this->base_type != GLSL_TYPE_INTERFACE)<br>
> -      return error_type;<br>
> -<br>
> -   for (unsigned i = 0; i < this->length; i++) {<br>
> -      if (strcmp(name, this->fields.structure[i].name) == 0)<br>
> -         return this->fields.structure[i].type;<br>
> -   }<br>
> -<br>
> -   return error_type;<br>
> -}<br>
> -<br>
> -<br>
> -int<br>
> -glsl_type::field_index(const char *name) const<br>
> -{<br>
> -   if (this->base_type != GLSL_TYPE_STRUCT<br>
> -       && this->base_type != GLSL_TYPE_INTERFACE)<br>
> -      return -1;<br>
> -<br>
> -   for (unsigned i = 0; i < this->length; i++) {<br>
> -      if (strcmp(name, this->fields.structure[i].name) == 0)<br>
> -         return i;<br>
> -   }<br>
> -<br>
> -   return -1;<br>
> -}<br>
> -<br>
> -<br>
> -unsigned<br>
> -glsl_type::component_slots() const<br>
> -{<br>
> -   switch (this->base_type) {<br>
> -   case GLSL_TYPE_UINT:<br>
> -   case GLSL_TYPE_INT:<br>
> -   case GLSL_TYPE_FLOAT:<br>
> -   case GLSL_TYPE_BOOL:<br>
> -      return this->components();<br>
> -<br>
> -   case GLSL_TYPE_DOUBLE:<br>
> -      return 2 * this->components();<br>
> -<br>
> -   case GLSL_TYPE_STRUCT:<br>
> -   case GLSL_TYPE_INTERFACE: {<br>
> -      unsigned size = 0;<br>
> -<br>
> -      for (unsigned i = 0; i < this->length; i++)<br>
> -         size += this->fields.structure[i].type->component_slots();<br>
> -<br>
> -      return size;<br>
> -   }<br>
> -<br>
> -   case GLSL_TYPE_ARRAY:<br>
> -      return this->length * this->fields.array->component_slots();<br>
> -<br>
> -   case GLSL_TYPE_IMAGE:<br>
> -      return 1;<br>
> -   case GLSL_TYPE_SUBROUTINE:<br>
> -     return 1;<br>
> -   case GLSL_TYPE_SAMPLER:<br>
> -   case GLSL_TYPE_ATOMIC_UINT:<br>
> -   case GLSL_TYPE_VOID:<br>
> -   case GLSL_TYPE_ERROR:<br>
> -      break;<br>
> -   }<br>
> -<br>
> -   return 0;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::record_location_offset(unsigned length) const<br>
> -{<br>
> -   unsigned offset = 0;<br>
> -   const glsl_type *t = this->without_array();<br>
> -   if (t->is_record()) {<br>
> -      assert(length <= t->length);<br>
> -<br>
> -      for (unsigned i = 0; i < length; i++) {<br>
> -         const glsl_type *st = t->fields.structure[i].type;<br>
> -         const glsl_type *wa = st->without_array();<br>
> -         if (wa->is_record()) {<br>
> -            unsigned r_offset = wa->record_location_offset(wa->length);<br>
> -            offset += st->is_array() ? st->length * r_offset : r_offset;<br>
> -         } else {<br>
> -            /* We dont worry about arrays here because unless the array<br>
> -             * contains a structure or another array it only takes up a single<br>
> -             * uniform slot.<br>
> -             */<br>
> -            offset += 1;<br>
> -         }<br>
> -      }<br>
> -   }<br>
> -   return offset;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::uniform_locations() const<br>
> -{<br>
> -   unsigned size = 0;<br>
> -<br>
> -   switch (this->base_type) {<br>
> -   case GLSL_TYPE_UINT:<br>
> -   case GLSL_TYPE_INT:<br>
> -   case GLSL_TYPE_FLOAT:<br>
> -   case GLSL_TYPE_DOUBLE:<br>
> -   case GLSL_TYPE_BOOL:<br>
> -   case GLSL_TYPE_SAMPLER:<br>
> -   case GLSL_TYPE_IMAGE:<br>
> -   case GLSL_TYPE_SUBROUTINE:<br>
> -      return 1;<br>
> -<br>
> -   case GLSL_TYPE_STRUCT:<br>
> -   case GLSL_TYPE_INTERFACE:<br>
> -      for (unsigned i = 0; i < this->length; i++)<br>
> -         size += this->fields.structure[i].type->uniform_locations();<br>
> -      return size;<br>
> -   case GLSL_TYPE_ARRAY:<br>
> -      return this->length * this->fields.array->uniform_locations();<br>
> -   default:<br>
> -      return 0;<br>
> -   }<br>
> -}<br>
> -<br>
> -bool<br>
> -glsl_type::can_implicitly_convert_to(const glsl_type *desired,<br>
> -                                     _mesa_glsl_parse_state *state) const<br>
> -{<br>
> -   if (this == desired)<br>
> -      return true;<br>
> -<br>
> -   /* There is no conversion among matrix types. */<br>
> -   if (this->matrix_columns > 1 || desired->matrix_columns > 1)<br>
> -      return false;<br>
> -<br>
> -   /* Vector size must match. */<br>
> -   if (this->vector_elements != desired->vector_elements)<br>
> -      return false;<br>
> -<br>
> -   /* int and uint can be converted to float. */<br>
> -   if (desired->is_float() && this->is_integer())<br>
> -      return true;<br>
> -<br>
> -   /* With GLSL 4.0 / ARB_gpu_shader5, int can be converted to uint.<br>
> -    * Note that state may be NULL here, when resolving function calls in the<br>
> -    * linker. By this time, all the state-dependent checks have already<br>
> -    * happened though, so allow anything that's allowed in any shader version. */<br>
> -   if ((!state || state->is_version(400, 0) || state->ARB_gpu_shader5_enable) &&<br>
> -         desired->base_type == GLSL_TYPE_UINT && this->base_type == GLSL_TYPE_INT)<br>
> -      return true;<br>
> -<br>
> -   /* No implicit conversions from double. */<br>
> -   if ((!state || state->has_double()) && this->is_double())<br>
> -      return false;<br>
> -<br>
> -   /* Conversions from different types to double. */<br>
> -   if ((!state || state->has_double()) && desired->is_double()) {<br>
> -      if (this->is_float())<br>
> -         return true;<br>
> -      if (this->is_integer())<br>
> -         return true;<br>
> -   }<br>
> -<br>
> -   return false;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::std140_base_alignment(bool row_major) const<br>
> -{<br>
> -   unsigned N = is_double() ? 8 : 4;<br>
> -<br>
> -   /* (1) If the member is a scalar consuming <N> basic machine units, the<br>
> -    *     base alignment is <N>.<br>
> -    *<br>
> -    * (2) If the member is a two- or four-component vector with components<br>
> -    *     consuming <N> basic machine units, the base alignment is 2<N> or<br>
> -    *     4<N>, respectively.<br>
> -    *<br>
> -    * (3) If the member is a three-component vector with components consuming<br>
> -    *     <N> basic machine units, the base alignment is 4<N>.<br>
> -    */<br>
> -   if (this->is_scalar() || this->is_vector()) {<br>
> -      switch (this->vector_elements) {<br>
> -      case 1:<br>
> -         return N;<br>
> -      case 2:<br>
> -         return 2 * N;<br>
> -      case 3:<br>
> -      case 4:<br>
> -         return 4 * N;<br>
> -      }<br>
> -   }<br>
> -<br>
> -   /* (4) If the member is an array of scalars or vectors, the base alignment<br>
> -    *     and array stride are set to match the base alignment of a single<br>
> -    *     array element, according to rules (1), (2), and (3), and rounded up<br>
> -    *     to the base alignment of a vec4. The array may have padding at the<br>
> -    *     end; the base offset of the member following the array is rounded up<br>
> -    *     to the next multiple of the base alignment.<br>
> -    *<br>
> -    * (6) If the member is an array of <S> column-major matrices with <C><br>
> -    *     columns and <R> rows, the matrix is stored identically to a row of<br>
> -    *     <S>*<C> column vectors with <R> components each, according to rule<br>
> -    *     (4).<br>
> -    *<br>
> -    * (8) If the member is an array of <S> row-major matrices with <C> columns<br>
> -    *     and <R> rows, the matrix is stored identically to a row of <S>*<R><br>
> -    *     row vectors with <C> components each, according to rule (4).<br>
> -    *<br>
> -    * (10) If the member is an array of <S> structures, the <S> elements of<br>
> -    *      the array are laid out in order, according to rule (9).<br>
> -    */<br>
> -   if (this->is_array()) {<br>
> -      if (this->fields.array->is_scalar() ||<br>
> -          this->fields.array->is_vector() ||<br>
> -          this->fields.array->is_matrix()) {<br>
> -         return MAX2(this->fields.array->std140_base_alignment(row_major), 16);<br>
> -      } else {<br>
> -         assert(this->fields.array->is_record() ||<br>
> -                this->fields.array->is_array());<br>
> -         return this->fields.array->std140_base_alignment(row_major);<br>
> -      }<br>
> -   }<br>
> -<br>
> -   /* (5) If the member is a column-major matrix with <C> columns and<br>
> -    *     <R> rows, the matrix is stored identically to an array of<br>
> -    *     <C> column vectors with <R> components each, according to<br>
> -    *     rule (4).<br>
> -    *<br>
> -    * (7) If the member is a row-major matrix with <C> columns and <R><br>
> -    *     rows, the matrix is stored identically to an array of <R><br>
> -    *     row vectors with <C> components each, according to rule (4).<br>
> -    */<br>
> -   if (this->is_matrix()) {<br>
> -      const struct glsl_type *vec_type, *array_type;<br>
> -      int c = this->matrix_columns;<br>
> -      int r = this->vector_elements;<br>
> -<br>
> -      if (row_major) {<br>
> -         vec_type = get_instance(base_type, c, 1);<br>
> -         array_type = glsl_type::get_array_instance(vec_type, r);<br>
> -      } else {<br>
> -         vec_type = get_instance(base_type, r, 1);<br>
> -         array_type = glsl_type::get_array_instance(vec_type, c);<br>
> -      }<br>
> -<br>
> -      return array_type->std140_base_alignment(false);<br>
> -   }<br>
> -<br>
> -   /* (9) If the member is a structure, the base alignment of the<br>
> -    *     structure is <N>, where <N> is the largest base alignment<br>
> -    *     value of any of its members, and rounded up to the base<br>
> -    *     alignment of a vec4. The individual members of this<br>
> -    *     sub-structure are then assigned offsets by applying this set<br>
> -    *     of rules recursively, where the base offset of the first<br>
> -    *     member of the sub-structure is equal to the aligned offset<br>
> -    *     of the structure. The structure may have padding at the end;<br>
> -    *     the base offset of the member following the sub-structure is<br>
> -    *     rounded up to the next multiple of the base alignment of the<br>
> -    *     structure.<br>
> -    */<br>
> -   if (this->is_record()) {<br>
> -      unsigned base_alignment = 16;<br>
> -      for (unsigned i = 0; i < this->length; i++) {<br>
> -         bool field_row_major = row_major;<br>
> -         const enum glsl_matrix_layout matrix_layout =<br>
> -            glsl_matrix_layout(this->fields.structure[i].matrix_layout);<br>
> -         if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) {<br>
> -            field_row_major = true;<br>
> -         } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) {<br>
> -            field_row_major = false;<br>
> -         }<br>
> -<br>
> -         const struct glsl_type *field_type = this->fields.structure[i].type;<br>
> -         base_alignment = MAX2(base_alignment,<br>
> -                               field_type->std140_base_alignment(field_row_major));<br>
> -      }<br>
> -      return base_alignment;<br>
> -   }<br>
> -<br>
> -   assert(!"not reached");<br>
> -   return -1;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::std140_size(bool row_major) const<br>
> -{<br>
> -   unsigned N = is_double() ? 8 : 4;<br>
> -<br>
> -   /* (1) If the member is a scalar consuming <N> basic machine units, the<br>
> -    *     base alignment is <N>.<br>
> -    *<br>
> -    * (2) If the member is a two- or four-component vector with components<br>
> -    *     consuming <N> basic machine units, the base alignment is 2<N> or<br>
> -    *     4<N>, respectively.<br>
> -    *<br>
> -    * (3) If the member is a three-component vector with components consuming<br>
> -    *     <N> basic machine units, the base alignment is 4<N>.<br>
> -    */<br>
> -   if (this->is_scalar() || this->is_vector()) {<br>
> -      return this->vector_elements * N;<br>
> -   }<br>
> -<br>
> -   /* (5) If the member is a column-major matrix with <C> columns and<br>
> -    *     <R> rows, the matrix is stored identically to an array of<br>
> -    *     <C> column vectors with <R> components each, according to<br>
> -    *     rule (4).<br>
> -    *<br>
> -    * (6) If the member is an array of <S> column-major matrices with <C><br>
> -    *     columns and <R> rows, the matrix is stored identically to a row of<br>
> -    *     <S>*<C> column vectors with <R> components each, according to rule<br>
> -    *     (4).<br>
> -    *<br>
> -    * (7) If the member is a row-major matrix with <C> columns and <R><br>
> -    *     rows, the matrix is stored identically to an array of <R><br>
> -    *     row vectors with <C> components each, according to rule (4).<br>
> -    *<br>
> -    * (8) If the member is an array of <S> row-major matrices with <C> columns<br>
> -    *     and <R> rows, the matrix is stored identically to a row of <S>*<R><br>
> -    *     row vectors with <C> components each, according to rule (4).<br>
> -    */<br>
> -   if (this->without_array()->is_matrix()) {<br>
> -      const struct glsl_type *element_type;<br>
> -      const struct glsl_type *vec_type;<br>
> -      unsigned int array_len;<br>
> -<br>
> -      if (this->is_array()) {<br>
> -         element_type = this->fields.array;<br>
> -         array_len = this->length;<br>
> -      } else {<br>
> -         element_type = this;<br>
> -         array_len = 1;<br>
> -      }<br>
> -<br>
> -      if (row_major) {<br>
> -         vec_type = get_instance(element_type->base_type,<br>
> -                                 element_type->matrix_columns, 1);<br>
> -<br>
> -         array_len *= element_type->vector_elements;<br>
> -      } else {<br>
> -         vec_type = get_instance(element_type->base_type,<br>
> -                                 element_type->vector_elements, 1);<br>
> -         array_len *= element_type->matrix_columns;<br>
> -      }<br>
> -      const glsl_type *array_type = glsl_type::get_array_instance(vec_type,<br>
> -                                                                  array_len);<br>
> -<br>
> -      return array_type->std140_size(false);<br>
> -   }<br>
> -<br>
> -   /* (4) If the member is an array of scalars or vectors, the base alignment<br>
> -    *     and array stride are set to match the base alignment of a single<br>
> -    *     array element, according to rules (1), (2), and (3), and rounded up<br>
> -    *     to the base alignment of a vec4. The array may have padding at the<br>
> -    *     end; the base offset of the member following the array is rounded up<br>
> -    *     to the next multiple of the base alignment.<br>
> -    *<br>
> -    * (10) If the member is an array of <S> structures, the <S> elements of<br>
> -    *      the array are laid out in order, according to rule (9).<br>
> -    */<br>
> -   if (this->is_array()) {<br>
> -      if (this->fields.array->is_record()) {<br>
> -         return this->length * this->fields.array->std140_size(row_major);<br>
> -      } else {<br>
> -         unsigned element_base_align =<br>
> -            this->fields.array->std140_base_alignment(row_major);<br>
> -         return this->length * MAX2(element_base_align, 16);<br>
> -      }<br>
> -   }<br>
> -<br>
> -   /* (9) If the member is a structure, the base alignment of the<br>
> -    *     structure is <N>, where <N> is the largest base alignment<br>
> -    *     value of any of its members, and rounded up to the base<br>
> -    *     alignment of a vec4. The individual members of this<br>
> -    *     sub-structure are then assigned offsets by applying this set<br>
> -    *     of rules recursively, where the base offset of the first<br>
> -    *     member of the sub-structure is equal to the aligned offset<br>
> -    *     of the structure. The structure may have padding at the end;<br>
> -    *     the base offset of the member following the sub-structure is<br>
> -    *     rounded up to the next multiple of the base alignment of the<br>
> -    *     structure.<br>
> -    */<br>
> -   if (this->is_record() || this->is_interface()) {<br>
> -      unsigned size = 0;<br>
> -      unsigned max_align = 0;<br>
> -<br>
> -      for (unsigned i = 0; i < this->length; i++) {<br>
> -         bool field_row_major = row_major;<br>
> -         const enum glsl_matrix_layout matrix_layout =<br>
> -            glsl_matrix_layout(this->fields.structure[i].matrix_layout);<br>
> -         if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) {<br>
> -            field_row_major = true;<br>
> -         } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) {<br>
> -            field_row_major = false;<br>
> -         }<br>
> -<br>
> -         const struct glsl_type *field_type = this->fields.structure[i].type;<br>
> -         unsigned align = field_type->std140_base_alignment(field_row_major);<br>
> -<br>
> -         /* Ignore unsized arrays when calculating size */<br>
> -         if (field_type->is_unsized_array())<br>
> -            continue;<br>
> -<br>
> -         size = glsl_align(size, align);<br>
> -         size += field_type->std140_size(field_row_major);<br>
> -<br>
> -         max_align = MAX2(align, max_align);<br>
> -<br>
> -         if (field_type->is_record() && (i + 1 < this->length))<br>
> -            size = glsl_align(size, 16);<br>
> -      }<br>
> -      size = glsl_align(size, MAX2(max_align, 16));<br>
> -      return size;<br>
> -   }<br>
> -<br>
> -   assert(!"not reached");<br>
> -   return -1;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::std430_base_alignment(bool row_major) const<br>
> -{<br>
> -<br>
> -   unsigned N = is_double() ? 8 : 4;<br>
> -<br>
> -   /* (1) If the member is a scalar consuming <N> basic machine units, the<br>
> -    *     base alignment is <N>.<br>
> -    *<br>
> -    * (2) If the member is a two- or four-component vector with components<br>
> -    *     consuming <N> basic machine units, the base alignment is 2<N> or<br>
> -    *     4<N>, respectively.<br>
> -    *<br>
> -    * (3) If the member is a three-component vector with components consuming<br>
> -    *     <N> basic machine units, the base alignment is 4<N>.<br>
> -    */<br>
> -   if (this->is_scalar() || this->is_vector()) {<br>
> -      switch (this->vector_elements) {<br>
> -      case 1:<br>
> -         return N;<br>
> -      case 2:<br>
> -         return 2 * N;<br>
> -      case 3:<br>
> -      case 4:<br>
> -         return 4 * N;<br>
> -      }<br>
> -   }<br>
> -<br>
> -   /* OpenGL 4.30 spec, section 7.6.2.2 "Standard Uniform Block Layout":<br>
> -    *<br>
> -    * "When using the std430 storage layout, shader storage blocks will be<br>
> -    * laid out in buffer storage identically to uniform and shader storage<br>
> -    * blocks using the std140 layout, except that the base alignment and<br>
> -    * stride of arrays of scalars and vectors in rule 4 and of structures<br>
> -    * in rule 9 are not rounded up a multiple of the base alignment of a vec4.<br>
> -    */<br>
> -<br>
> -   /* (1) If the member is a scalar consuming <N> basic machine units, the<br>
> -    *     base alignment is <N>.<br>
> -    *<br>
> -    * (2) If the member is a two- or four-component vector with components<br>
> -    *     consuming <N> basic machine units, the base alignment is 2<N> or<br>
> -    *     4<N>, respectively.<br>
> -    *<br>
> -    * (3) If the member is a three-component vector with components consuming<br>
> -    *     <N> basic machine units, the base alignment is 4<N>.<br>
> -    */<br>
> -   if (this->is_array())<br>
> -      return this->fields.array->std430_base_alignment(row_major);<br>
> -<br>
> -   /* (5) If the member is a column-major matrix with <C> columns and<br>
> -    *     <R> rows, the matrix is stored identically to an array of<br>
> -    *     <C> column vectors with <R> components each, according to<br>
> -    *     rule (4).<br>
> -    *<br>
> -    * (7) If the member is a row-major matrix with <C> columns and <R><br>
> -    *     rows, the matrix is stored identically to an array of <R><br>
> -    *     row vectors with <C> components each, according to rule (4).<br>
> -    */<br>
> -   if (this->is_matrix()) {<br>
> -      const struct glsl_type *vec_type, *array_type;<br>
> -      int c = this->matrix_columns;<br>
> -      int r = this->vector_elements;<br>
> -<br>
> -      if (row_major) {<br>
> -         vec_type = get_instance(base_type, c, 1);<br>
> -         array_type = glsl_type::get_array_instance(vec_type, r);<br>
> -      } else {<br>
> -         vec_type = get_instance(base_type, r, 1);<br>
> -         array_type = glsl_type::get_array_instance(vec_type, c);<br>
> -      }<br>
> -<br>
> -      return array_type->std430_base_alignment(false);<br>
> -   }<br>
> -<br>
> -      /* (9) If the member is a structure, the base alignment of the<br>
> -    *     structure is <N>, where <N> is the largest base alignment<br>
> -    *     value of any of its members, and rounded up to the base<br>
> -    *     alignment of a vec4. The individual members of this<br>
> -    *     sub-structure are then assigned offsets by applying this set<br>
> -    *     of rules recursively, where the base offset of the first<br>
> -    *     member of the sub-structure is equal to the aligned offset<br>
> -    *     of the structure. The structure may have padding at the end;<br>
> -    *     the base offset of the member following the sub-structure is<br>
> -    *     rounded up to the next multiple of the base alignment of the<br>
> -    *     structure.<br>
> -    */<br>
> -   if (this->is_record()) {<br>
> -      unsigned base_alignment = 0;<br>
> -      for (unsigned i = 0; i < this->length; i++) {<br>
> -         bool field_row_major = row_major;<br>
> -         const enum glsl_matrix_layout matrix_layout =<br>
> -            glsl_matrix_layout(this->fields.structure[i].matrix_layout);<br>
> -         if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) {<br>
> -            field_row_major = true;<br>
> -         } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) {<br>
> -            field_row_major = false;<br>
> -         }<br>
> -<br>
> -         const struct glsl_type *field_type = this->fields.structure[i].type;<br>
> -         base_alignment = MAX2(base_alignment,<br>
> -                               field_type->std430_base_alignment(field_row_major));<br>
> -      }<br>
> -      assert(base_alignment > 0);<br>
> -      return base_alignment;<br>
> -   }<br>
> -   assert(!"not reached");<br>
> -   return -1;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::std430_array_stride(bool row_major) const<br>
> -{<br>
> -   unsigned N = is_double() ? 8 : 4;<br>
> -<br>
> -   /* Notice that the array stride of a vec3 is not 3 * N but 4 * N.<br>
> -    * See OpenGL 4.30 spec, section 7.6.2.2 "Standard Uniform Block Layout"<br>
> -    *<br>
> -    * (3) If the member is a three-component vector with components consuming<br>
> -    *     <N> basic machine units, the base alignment is 4<N>.<br>
> -    */<br>
> -   if (this->is_vector() && this->vector_elements == 3)<br>
> -      return 4 * N;<br>
> -<br>
> -   /* By default use std430_size(row_major) */<br>
> -   return this->std430_size(row_major);<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::std430_size(bool row_major) const<br>
> -{<br>
> -   unsigned N = is_double() ? 8 : 4;<br>
> -<br>
> -   /* OpenGL 4.30 spec, section 7.6.2.2 "Standard Uniform Block Layout":<br>
> -    *<br>
> -    * "When using the std430 storage layout, shader storage blocks will be<br>
> -    * laid out in buffer storage identically to uniform and shader storage<br>
> -    * blocks using the std140 layout, except that the base alignment and<br>
> -    * stride of arrays of scalars and vectors in rule 4 and of structures<br>
> -    * in rule 9 are not rounded up a multiple of the base alignment of a vec4.<br>
> -    */<br>
> -   if (this->is_scalar() || this->is_vector())<br>
> -         return this->vector_elements * N;<br>
> -<br>
> -   if (this->without_array()->is_matrix()) {<br>
> -      const struct glsl_type *element_type;<br>
> -      const struct glsl_type *vec_type;<br>
> -      unsigned int array_len;<br>
> -<br>
> -      if (this->is_array()) {<br>
> -         element_type = this->without_array();<br>
> -         array_len = this->arrays_of_arrays_size();<br>
> -      } else {<br>
> -         element_type = this;<br>
> -         array_len = 1;<br>
> -      }<br>
> -<br>
> -      if (row_major) {<br>
> -         vec_type = get_instance(element_type->base_type,<br>
> -                                 element_type->matrix_columns, 1);<br>
> -<br>
> -         array_len *= element_type->vector_elements;<br>
> -      } else {<br>
> -         vec_type = get_instance(element_type->base_type,<br>
> -                                 element_type->vector_elements, 1);<br>
> -         array_len *= element_type->matrix_columns;<br>
> -      }<br>
> -      const glsl_type *array_type = glsl_type::get_array_instance(vec_type,<br>
> -                                                                  array_len);<br>
> -<br>
> -      return array_type->std430_size(false);<br>
> -   }<br>
> -<br>
> -   if (this->is_array()) {<br>
> -      if (this->without_array()->is_record())<br>
> -         return this->arrays_of_arrays_size() *<br>
> -            this->without_array()->std430_size(row_major);<br>
> -      else<br>
> -         return this->arrays_of_arrays_size() *<br>
> -            this->without_array()->std430_base_alignment(row_major);<br>
> -   }<br>
> -<br>
> -   if (this->is_record() || this->is_interface()) {<br>
> -      unsigned size = 0;<br>
> -      unsigned max_align = 0;<br>
> -<br>
> -      for (unsigned i = 0; i < this->length; i++) {<br>
> -         bool field_row_major = row_major;<br>
> -         const enum glsl_matrix_layout matrix_layout =<br>
> -            glsl_matrix_layout(this->fields.structure[i].matrix_layout);<br>
> -         if (matrix_layout == GLSL_MATRIX_LAYOUT_ROW_MAJOR) {<br>
> -            field_row_major = true;<br>
> -         } else if (matrix_layout == GLSL_MATRIX_LAYOUT_COLUMN_MAJOR) {<br>
> -            field_row_major = false;<br>
> -         }<br>
> -<br>
> -         const struct glsl_type *field_type = this->fields.structure[i].type;<br>
> -         unsigned align = field_type->std430_base_alignment(field_row_major);<br>
> -         size = glsl_align(size, align);<br>
> -         size += field_type->std430_size(field_row_major);<br>
> -<br>
> -         max_align = MAX2(align, max_align);<br>
> -      }<br>
> -      size = glsl_align(size, max_align);<br>
> -      return size;<br>
> -   }<br>
> -<br>
> -   assert(!"not reached");<br>
> -   return -1;<br>
> -}<br>
> -<br>
> -unsigned<br>
> -glsl_type::count_attribute_slots() const<br>
> -{<br>
> -   /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:<br>
> -    *<br>
> -    *     "A scalar input counts the same amount against this limit as a vec4,<br>
> -    *     so applications may want to consider packing groups of four<br>
> -    *     unrelated float inputs together into a vector to better utilize the<br>
> -    *     capabilities of the underlying hardware. A matrix input will use up<br>
> -    *     multiple locations.  The number of locations used will equal the<br>
> -    *     number of columns in the matrix."<br>
> -    *<br>
> -    * The spec does not explicitly say how arrays are counted.  However, it<br>
> -    * should be safe to assume the total number of slots consumed by an array<br>
> -    * is the number of entries in the array multiplied by the number of slots<br>
> -    * consumed by a single element of the array.<br>
> -    *<br>
> -    * The spec says nothing about how structs are counted, because vertex<br>
> -    * attributes are not allowed to be (or contain) structs.  However, Mesa<br>
> -    * allows varying structs, the number of varying slots taken up by a<br>
> -    * varying struct is simply equal to the sum of the number of slots taken<br>
> -    * up by each element.<br>
> -    */<br>
> -   switch (this->base_type) {<br>
> -   case GLSL_TYPE_UINT:<br>
> -   case GLSL_TYPE_INT:<br>
> -   case GLSL_TYPE_FLOAT:<br>
> -   case GLSL_TYPE_BOOL:<br>
> -   case GLSL_TYPE_DOUBLE:<br>
> -      return this->matrix_columns;<br>
> -<br>
> -   case GLSL_TYPE_STRUCT:<br>
> -   case GLSL_TYPE_INTERFACE: {<br>
> -      unsigned size = 0;<br>
> -<br>
> -      for (unsigned i = 0; i < this->length; i++)<br>
> -         size += this->fields.structure[i].type->count_attribute_slots();<br>
> -<br>
> -      return size;<br>
> -   }<br>
> -<br>
> -   case GLSL_TYPE_ARRAY:<br>
> -      return this->length * this->fields.array->count_attribute_slots();<br>
> -<br>
> -   case GLSL_TYPE_SAMPLER:<br>
> -   case GLSL_TYPE_IMAGE:<br>
> -   case GLSL_TYPE_ATOMIC_UINT:<br>
> -   case GLSL_TYPE_VOID:<br>
> -   case GLSL_TYPE_SUBROUTINE:<br>
> -   case GLSL_TYPE_ERROR:<br>
> -      break;<br>
> -   }<br>
> -<br>
> -   assert(!"Unexpected type in count_attribute_slots()");<br>
> -<br>
> -   return 0;<br>
> -}<br>
> -<br>
> -int<br>
> -glsl_type::coordinate_components() const<br>
> -{<br>
> -   int size;<br>
> -<br>
> -   switch (sampler_dimensionality) {<br>
> -   case GLSL_SAMPLER_DIM_1D:<br>
> -   case GLSL_SAMPLER_DIM_BUF:<br>
> -      size = 1;<br>
> -      break;<br>
> -   case GLSL_SAMPLER_DIM_2D:<br>
> -   case GLSL_SAMPLER_DIM_RECT:<br>
> -   case GLSL_SAMPLER_DIM_MS:<br>
> -   case GLSL_SAMPLER_DIM_EXTERNAL:<br>
> -      size = 2;<br>
> -      break;<br>
> -   case GLSL_SAMPLER_DIM_3D:<br>
> -   case GLSL_SAMPLER_DIM_CUBE:<br>
> -      size = 3;<br>
> -      break;<br>
> -   default:<br>
> -      assert(!"Should not get here.");<br>
> -      size = 1;<br>
> -      break;<br>
> -   }<br>
> -<br>
> -   /* Array textures need an additional component for the array index, except<br>
> -    * for cubemap array images that behave like a 2D array of interleaved<br>
> -    * cubemap faces.<br>
> -    */<br>
> -   if (sampler_array &&<br>
> -       !(base_type == GLSL_TYPE_IMAGE &&<br>
> -         sampler_dimensionality == GLSL_SAMPLER_DIM_CUBE))<br>
> -      size += 1;<br>
> -<br>
> -   return size;<br>
> -}<br>
> -<br>
> -/**<br>
> - * Declarations of type flyweights (glsl_type::_foo_type) and<br>
> - * convenience pointers (glsl_type::foo_type).<br>
> - * @{<br>
> - */<br>
> -#define DECL_TYPE(NAME, ...)                                    \<br>
> -   const glsl_type glsl_type::_##NAME##_type = glsl_type(__VA_ARGS__, #NAME); \<br>
> -   const glsl_type *const glsl_type::NAME##_type = &glsl_type::_##NAME##_type;<br>
> -<br>
> -#define STRUCT_TYPE(NAME)<br>
> -<br>
> -#include "builtin_type_macros.h"<br>
> -/** @} */<br>
> diff --git a/src/glsl/glsl_types.h b/src/glsl/glsl_types.h<br>
> deleted file mode 100644<br>
> index 3ec7642..0000000<br>
> --- a/src/glsl/glsl_types.h<br>
> +++ /dev/null<br>
> @@ -1,867 +0,0 @@<br>
> -/* -*- c++ -*- */<br>
> -/*<br>
> - * Copyright © 2009 Intel Corporation<br>
> - *<br>
> - * Permission is hereby granted, free of charge, to any person obtaining a<br>
> - * copy of this software and associated documentation files (the "Software"),<br>
> - * to deal in the Software without restriction, including without limitation<br>
> - * the rights to use, copy, modify, merge, publish, distribute, sublicense,<br>
> - * and/or sell copies of the Software, and to permit persons to whom the<br>
> - * Software is furnished to do so, subject to the following conditions:<br>
> - *<br>
> - * The above copyright notice and this permission notice (including the next<br>
> - * paragraph) shall be included in all copies or substantial portions of the<br>
> - * Software.<br>
> - *<br>
> - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br>
> - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br>
> - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL<br>
> - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br>
> - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING<br>
> - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER<br>
> - * DEALINGS IN THE SOFTWARE.<br>
> - */<br>
> -<br>
> -#pragma once<br>
> -#ifndef GLSL_TYPES_H<br>
> -#define GLSL_TYPES_H<br>
> -<br>
> -#include <string.h><br>
> -#include <assert.h><br>
> -<br>
> -#ifdef __cplusplus<br>
> -extern "C" {<br>
> -#endif<br>
> -<br>
> -struct _mesa_glsl_parse_state;<br>
> -struct glsl_symbol_table;<br>
> -<br>
> -extern void<br>
> -_mesa_glsl_initialize_types(struct _mesa_glsl_parse_state *state);<br>
> -<br>
> -extern void<br>
> -_mesa_glsl_release_types(void);<br>
> -<br>
> -#ifdef __cplusplus<br>
> -}<br>
> -#endif<br>
> -<br>
> -enum glsl_base_type {<br>
> -   GLSL_TYPE_UINT = 0,<br>
> -   GLSL_TYPE_INT,<br>
> -   GLSL_TYPE_FLOAT,<br>
> -   GLSL_TYPE_DOUBLE,<br>
> -   GLSL_TYPE_BOOL,<br>
> -   GLSL_TYPE_SAMPLER,<br>
> -   GLSL_TYPE_IMAGE,<br>
> -   GLSL_TYPE_ATOMIC_UINT,<br>
> -   GLSL_TYPE_STRUCT,<br>
> -   GLSL_TYPE_INTERFACE,<br>
> -   GLSL_TYPE_ARRAY,<br>
> -   GLSL_TYPE_VOID,<br>
> -   GLSL_TYPE_SUBROUTINE,<br>
> -   GLSL_TYPE_ERROR<br>
> -};<br>
> -<br>
> -enum glsl_sampler_dim {<br>
> -   GLSL_SAMPLER_DIM_1D = 0,<br>
> -   GLSL_SAMPLER_DIM_2D,<br>
> -   GLSL_SAMPLER_DIM_3D,<br>
> -   GLSL_SAMPLER_DIM_CUBE,<br>
> -   GLSL_SAMPLER_DIM_RECT,<br>
> -   GLSL_SAMPLER_DIM_BUF,<br>
> -   GLSL_SAMPLER_DIM_EXTERNAL,<br>
> -   GLSL_SAMPLER_DIM_MS<br>
> -};<br>
> -<br>
> -enum glsl_interface_packing {<br>
> -   GLSL_INTERFACE_PACKING_STD140,<br>
> -   GLSL_INTERFACE_PACKING_SHARED,<br>
> -   GLSL_INTERFACE_PACKING_PACKED,<br>
> -   GLSL_INTERFACE_PACKING_STD430<br>
> -};<br>
> -<br>
> -enum glsl_matrix_layout {<br>
> -   /**<br>
> -    * The layout of the matrix is inherited from the object containing the<br>
> -    * matrix (the top level structure or the uniform block).<br>
> -    */<br>
> -   GLSL_MATRIX_LAYOUT_INHERITED,<br>
> -<br>
> -   /**<br>
> -    * Explicit column-major layout<br>
> -    *<br>
> -    * If a uniform block doesn't have an explicit layout set, it will default<br>
> -    * to this layout.<br>
> -    */<br>
> -   GLSL_MATRIX_LAYOUT_COLUMN_MAJOR,<br>
> -<br>
> -   /**<br>
> -    * Row-major layout<br>
> -    */<br>
> -   GLSL_MATRIX_LAYOUT_ROW_MAJOR<br>
> -};<br>
> -<br>
> -#ifdef __cplusplus<br>
> -#include "GL/gl.h"<br>
> -#include "util/ralloc.h"<br>
> -#include "main/mtypes.h" /* for gl_texture_index, C++'s enum rules are broken */<br>
> -<br>
> -struct glsl_type {<br>
> -   GLenum gl_type;<br>
> -   glsl_base_type base_type;<br>
> -<br>
> -   unsigned sampler_dimensionality:3; /**< \see glsl_sampler_dim */<br>
> -   unsigned sampler_shadow:1;<br>
> -   unsigned sampler_array:1;<br>
> -   unsigned sampler_type:2;    /**< Type of data returned using this<br>
> -                               * sampler or image.  Only \c<br>
> -                               * GLSL_TYPE_FLOAT, \c GLSL_TYPE_INT,<br>
> -                               * and \c GLSL_TYPE_UINT are valid.<br>
> -                               */<br>
> -   unsigned interface_packing:2;<br>
> -<br>
> -   /* Callers of this ralloc-based new need not call delete. It's<br>
> -    * easier to just ralloc_free 'mem_ctx' (or any of its ancestors). */<br>
> -   static void* operator new(size_t size)<br>
> -   {<br>
> -      mtx_lock(&glsl_type::mutex);<br>
> -<br>
> -      /* mem_ctx should have been created by the static members */<br>
> -      assert(glsl_type::mem_ctx != NULL);<br>
> -<br>
> -      void *type;<br>
> -<br>
> -      type = ralloc_size(glsl_type::mem_ctx, size);<br>
> -      assert(type != NULL);<br>
> -<br>
> -      mtx_unlock(&glsl_type::mutex);<br>
> -<br>
> -      return type;<br>
> -   }<br>
> -<br>
> -   /* If the user *does* call delete, that's OK, we will just<br>
> -    * ralloc_free in that case. */<br>
> -   static void operator delete(void *type)<br>
> -   {<br>
> -      mtx_lock(&glsl_type::mutex);<br>
> -      ralloc_free(type);<br>
> -      mtx_unlock(&glsl_type::mutex);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * \name Vector and matrix element counts<br>
> -    *<br>
> -    * For scalars, each of these values will be 1.  For non-numeric types<br>
> -    * these will be 0.<br>
> -    */<br>
> -   /*@{*/<br>
> -   uint8_t vector_elements;    /**< 1, 2, 3, or 4 vector elements. */<br>
> -   uint8_t matrix_columns;     /**< 1, 2, 3, or 4 matrix columns. */<br>
> -   /*@}*/<br>
> -<br>
> -   /**<br>
> -    * For \c GLSL_TYPE_ARRAY, this is the length of the array.  For<br>
> -    * \c GLSL_TYPE_STRUCT or \c GLSL_TYPE_INTERFACE, it is the number of<br>
> -    * elements in the structure and the number of values pointed to by<br>
> -    * \c fields.structure (below).<br>
> -    */<br>
> -   unsigned length;<br>
> -<br>
> -   /**<br>
> -    * Name of the data type<br>
> -    *<br>
> -    * Will never be \c NULL.<br>
> -    */<br>
> -   const char *name;<br>
> -<br>
> -   /**<br>
> -    * Subtype of composite data types.<br>
> -    */<br>
> -   union {<br>
> -      const struct glsl_type *array;            /**< Type of array elements. */<br>
> -      const struct glsl_type *parameters;       /**< Parameters to function. */<br>
> -      struct glsl_struct_field *structure;      /**< List of struct fields. */<br>
> -   } fields;<br>
> -<br>
> -   /**<br>
> -    * \name Pointers to various public type singletons<br>
> -    */<br>
> -   /*@{*/<br>
> -#undef  DECL_TYPE<br>
> -#define DECL_TYPE(NAME, ...) \<br>
> -   static const glsl_type *const NAME##_type;<br>
> -#undef  STRUCT_TYPE<br>
> -#define STRUCT_TYPE(NAME) \<br>
> -   static const glsl_type *const struct_##NAME##_type;<br>
> -#include "builtin_type_macros.h"<br>
> -   /*@}*/<br>
> -<br>
> -   /**<br>
> -    * Convenience accessors for vector types (shorter than get_instance()).<br>
> -    * @{<br>
> -    */<br>
> -   static const glsl_type *vec(unsigned components);<br>
> -   static const glsl_type *dvec(unsigned components);<br>
> -   static const glsl_type *ivec(unsigned components);<br>
> -   static const glsl_type *uvec(unsigned components);<br>
> -   static const glsl_type *bvec(unsigned components);<br>
> -   /**@}*/<br>
> -<br>
> -   /**<br>
> -    * For numeric and boolean derived types returns the basic scalar type<br>
> -    *<br>
> -    * If the type is a numeric or boolean scalar, vector, or matrix type,<br>
> -    * this function gets the scalar type of the individual components.  For<br>
> -    * all other types, including arrays of numeric or boolean types, the<br>
> -    * error type is returned.<br>
> -    */<br>
> -   const glsl_type *get_base_type() const;<br>
> -<br>
> -   /**<br>
> -    * Get the basic scalar type which this type aggregates.<br>
> -    *<br>
> -    * If the type is a numeric or boolean scalar, vector, or matrix, or an<br>
> -    * array of any of those, this function gets the scalar type of the<br>
> -    * individual components.  For structs and arrays of structs, this function<br>
> -    * returns the struct type.  For samplers and arrays of samplers, this<br>
> -    * function returns the sampler type.<br>
> -    */<br>
> -   const glsl_type *get_scalar_type() const;<br>
> -<br>
> -   /**<br>
> -    * Get the instance of a built-in scalar, vector, or matrix type<br>
> -    */<br>
> -   static const glsl_type *get_instance(unsigned base_type, unsigned rows,<br>
> -                                       unsigned columns);<br>
> -<br>
> -   /**<br>
> -    * Get the instance of a sampler type<br>
> -    */<br>
> -   static const glsl_type *get_sampler_instance(enum glsl_sampler_dim dim,<br>
> -                                                bool shadow,<br>
> -                                                bool array,<br>
> -                                                glsl_base_type type);<br>
> -<br>
> -<br>
> -   /**<br>
> -    * Get the instance of an array type<br>
> -    */<br>
> -   static const glsl_type *get_array_instance(const glsl_type *base,<br>
> -                                             unsigned elements);<br>
> -<br>
> -   /**<br>
> -    * Get the instance of a record type<br>
> -    */<br>
> -   static const glsl_type *get_record_instance(const glsl_struct_field *fields,<br>
> -                                              unsigned num_fields,<br>
> -                                              const char *name);<br>
> -<br>
> -   /**<br>
> -    * Get the instance of an interface block type<br>
> -    */<br>
> -   static const glsl_type *get_interface_instance(const glsl_struct_field *fields,<br>
> -                                                 unsigned num_fields,<br>
> -                                                 enum glsl_interface_packing packing,<br>
> -                                                 const char *block_name);<br>
> -<br>
> -   /**<br>
> -    * Get the instance of an subroutine type<br>
> -    */<br>
> -   static const glsl_type *get_subroutine_instance(const char *subroutine_name);<br>
> -<br>
> -   /**<br>
> -    * Get the type resulting from a multiplication of \p type_a * \p type_b<br>
> -    */<br>
> -   static const glsl_type *get_mul_type(const glsl_type *type_a,<br>
> -                                        const glsl_type *type_b);<br>
> -<br>
> -   /**<br>
> -    * Query the total number of scalars that make up a scalar, vector or matrix<br>
> -    */<br>
> -   unsigned components() const<br>
> -   {<br>
> -      return vector_elements * matrix_columns;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Calculate the number of components slots required to hold this type<br>
> -    *<br>
> -    * This is used to determine how many uniform or varying locations a type<br>
> -    * might occupy.<br>
> -    */<br>
> -   unsigned component_slots() const;<br>
> -<br>
> -   /**<br>
> -    * Calculate offset between the base location of the struct in<br>
> -    * uniform storage and a struct member.<br>
> -    * For the initial call, length is the index of the member to find the<br>
> -    * offset for.<br>
> -    */<br>
> -   unsigned record_location_offset(unsigned length) const;<br>
> -<br>
> -   /**<br>
> -    * Calculate the number of unique values from glGetUniformLocation for the<br>
> -    * elements of the type.<br>
> -    *<br>
> -    * This is used to allocate slots in the UniformRemapTable, the amount of<br>
> -    * locations may not match with actual used storage space by the driver.<br>
> -    */<br>
> -   unsigned uniform_locations() const;<br>
> -<br>
> -   /**<br>
> -    * Calculate the number of attribute slots required to hold this type<br>
> -    *<br>
> -    * This implements the language rules of GLSL 1.50 for counting the number<br>
> -    * of slots used by a vertex attribute.  It also determines the number of<br>
> -    * varying slots the type will use up in the absence of varying packing<br>
> -    * (and thus, it can be used to measure the number of varying slots used by<br>
> -    * the varyings that are generated by lower_packed_varyings).<br>
> -    */<br>
> -   unsigned count_attribute_slots() const;<br>
> -<br>
> -<br>
> -   /**<br>
> -    * Alignment in bytes of the start of this type in a std140 uniform<br>
> -    * block.<br>
> -    */<br>
> -   unsigned std140_base_alignment(bool row_major) const;<br>
> -<br>
> -   /** Size in bytes of this type in a std140 uniform block.<br>
> -    *<br>
> -    * Note that this is not GL_UNIFORM_SIZE (which is the number of<br>
> -    * elements in the array)<br>
> -    */<br>
> -   unsigned std140_size(bool row_major) const;<br>
> -<br>
> -   /**<br>
> -    * Alignment in bytes of the start of this type in a std430 shader<br>
> -    * storage block.<br>
> -    */<br>
> -   unsigned std430_base_alignment(bool row_major) const;<br>
> -<br>
> -   /**<br>
> -    * Calculate array stride in bytes of this type in a std430 shader storage<br>
> -    * block.<br>
> -    */<br>
> -   unsigned std430_array_stride(bool row_major) const;<br>
> -<br>
> -   /**<br>
> -    * Size in bytes of this type in a std430 shader storage block.<br>
> -    *<br>
> -    * Note that this is not GL_BUFFER_SIZE<br>
> -    */<br>
> -   unsigned std430_size(bool row_major) const;<br>
> -<br>
> -   /**<br>
> -    * \brief Can this type be implicitly converted to another?<br>
> -    *<br>
> -    * \return True if the types are identical or if this type can be converted<br>
> -    *         to \c desired according to Section 4.1.10 of the GLSL spec.<br>
> -    *<br>
> -    * \verbatim<br>
> -    * From page 25 (31 of the pdf) of the GLSL 1.50 spec, Section 4.1.10<br>
> -    * Implicit Conversions:<br>
> -    *<br>
> -    *     In some situations, an expression and its type will be implicitly<br>
> -    *     converted to a different type. The following table shows all allowed<br>
> -    *     implicit conversions:<br>
> -    *<br>
> -    *     Type of expression | Can be implicitly converted to<br>
> -    *     --------------------------------------------------<br>
> -    *     int                  float<br>
> -    *     uint<br>
> -    *<br>
> -    *     ivec2                vec2<br>
> -    *     uvec2<br>
> -    *<br>
> -    *     ivec3                vec3<br>
> -    *     uvec3<br>
> -    *<br>
> -    *     ivec4                vec4<br>
> -    *     uvec4<br>
> -    *<br>
> -    *     There are no implicit array or structure conversions. For example,<br>
> -    *     an array of int cannot be implicitly converted to an array of float.<br>
> -    *     There are no implicit conversions between signed and unsigned<br>
> -    *     integers.<br>
> -    * \endverbatim<br>
> -    */<br>
> -   bool can_implicitly_convert_to(const glsl_type *desired,<br>
> -                                  _mesa_glsl_parse_state *state) const;<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a scalar (non-vector and non-matrix).<br>
> -    */<br>
> -   bool is_scalar() const<br>
> -   {<br>
> -      return (vector_elements == 1)<br>
> -        && (base_type >= GLSL_TYPE_UINT)<br>
> -        && (base_type <= GLSL_TYPE_BOOL);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a vector<br>
> -    */<br>
> -   bool is_vector() const<br>
> -   {<br>
> -      return (vector_elements > 1)<br>
> -        && (matrix_columns == 1)<br>
> -        && (base_type >= GLSL_TYPE_UINT)<br>
> -        && (base_type <= GLSL_TYPE_BOOL);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a matrix<br>
> -    */<br>
> -   bool is_matrix() const<br>
> -   {<br>
> -      /* GLSL only has float matrices. */<br>
> -      return (matrix_columns > 1) && (base_type == GLSL_TYPE_FLOAT || base_type == GLSL_TYPE_DOUBLE);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a non-array numeric type<br>
> -    */<br>
> -   bool is_numeric() const<br>
> -   {<br>
> -      return (base_type >= GLSL_TYPE_UINT) && (base_type <= GLSL_TYPE_DOUBLE);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is an integral type<br>
> -    */<br>
> -   bool is_integer() const<br>
> -   {<br>
> -      return (base_type == GLSL_TYPE_UINT) || (base_type == GLSL_TYPE_INT);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not type is an integral type, or for struct and array<br>
> -    * types, contains an integral type.<br>
> -    */<br>
> -   bool contains_integer() const;<br>
> -<br>
> -   /**<br>
> -    * Query whether or not type is a double type, or for struct and array<br>
> -    * types, contains a double type.<br>
> -    */<br>
> -   bool contains_double() const;<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a float type<br>
> -    */<br>
> -   bool is_float() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_FLOAT;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a double type<br>
> -    */<br>
> -   bool is_double() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_DOUBLE;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a non-array boolean type<br>
> -    */<br>
> -   bool is_boolean() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_BOOL;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a sampler<br>
> -    */<br>
> -   bool is_sampler() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_SAMPLER;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not type is a sampler, or for struct and array<br>
> -    * types, contains a sampler.<br>
> -    */<br>
> -   bool contains_sampler() const;<br>
> -<br>
> -   /**<br>
> -    * Get the Mesa texture target index for a sampler type.<br>
> -    */<br>
> -   gl_texture_index sampler_index() const;<br>
> -<br>
> -   /**<br>
> -    * Query whether or not type is an image, or for struct and array<br>
> -    * types, contains an image.<br>
> -    */<br>
> -   bool contains_image() const;<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is an image<br>
> -    */<br>
> -   bool is_image() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_IMAGE;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is an array<br>
> -    */<br>
> -   bool is_array() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_ARRAY;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is a record<br>
> -    */<br>
> -   bool is_record() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_STRUCT;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is an interface<br>
> -    */<br>
> -   bool is_interface() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_INTERFACE;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is the void type singleton.<br>
> -    */<br>
> -   bool is_void() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_VOID;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether or not a type is the error type singleton.<br>
> -    */<br>
> -   bool is_error() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_ERROR;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query if a type is unnamed/anonymous (named by the parser)<br>
> -    */<br>
> -<br>
> -   bool is_subroutine() const<br>
> -   {<br>
> -      return base_type == GLSL_TYPE_SUBROUTINE;<br>
> -   }<br>
> -   bool contains_subroutine() const;<br>
> -<br>
> -   bool is_anonymous() const<br>
> -   {<br>
> -      return !strncmp(name, "#anon", 5);<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Get the type stripped of any arrays<br>
> -    *<br>
> -    * \return<br>
> -    * Pointer to the type of elements of the first non-array type for array<br>
> -    * types, or pointer to itself for non-array types.<br>
> -    */<br>
> -   const glsl_type *without_array() const<br>
> -   {<br>
> -      const glsl_type *t = this;<br>
> -<br>
> -      while (t->is_array())<br>
> -         t = t->fields.array;<br>
> -<br>
> -      return t;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Return the total number of elements in an array including the elements<br>
> -    * in arrays of arrays.<br>
> -    */<br>
> -   unsigned arrays_of_arrays_size() const<br>
> -   {<br>
> -      if (!is_array())<br>
> -         return 0;<br>
> -<br>
> -      unsigned size = length;<br>
> -      const glsl_type *base_type = fields.array;<br>
> -<br>
> -      while (base_type->is_array()) {<br>
> -         size = size * base_type->length;<br>
> -         base_type = base_type->fields.array;<br>
> -      }<br>
> -      return size;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Return the amount of atomic counter storage required for a type.<br>
> -    */<br>
> -   unsigned atomic_size() const<br>
> -   {<br>
> -      if (base_type == GLSL_TYPE_ATOMIC_UINT)<br>
> -         return ATOMIC_COUNTER_SIZE;<br>
> -      else if (is_array())<br>
> -         return length * fields.array->atomic_size();<br>
> -      else<br>
> -         return 0;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Return whether a type contains any atomic counters.<br>
> -    */<br>
> -   bool contains_atomic() const<br>
> -   {<br>
> -      return atomic_size() > 0;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Return whether a type contains any opaque types.<br>
> -    */<br>
> -   bool contains_opaque() const;<br>
> -<br>
> -   /**<br>
> -    * Query the full type of a matrix row<br>
> -    *<br>
> -    * \return<br>
> -    * If the type is not a matrix, \c glsl_type::error_type is returned.<br>
> -    * Otherwise a type matching the rows of the matrix is returned.<br>
> -    */<br>
> -   const glsl_type *row_type() const<br>
> -   {<br>
> -      return is_matrix()<br>
> -        ? get_instance(base_type, matrix_columns, 1)<br>
> -        : error_type;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query the full type of a matrix column<br>
> -    *<br>
> -    * \return<br>
> -    * If the type is not a matrix, \c glsl_type::error_type is returned.<br>
> -    * Otherwise a type matching the columns of the matrix is returned.<br>
> -    */<br>
> -   const glsl_type *column_type() const<br>
> -   {<br>
> -      return is_matrix()<br>
> -        ? get_instance(base_type, vector_elements, 1)<br>
> -        : error_type;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Get the type of a structure field<br>
> -    *<br>
> -    * \return<br>
> -    * Pointer to the type of the named field.  If the type is not a structure<br>
> -    * or the named field does not exist, \c glsl_type::error_type is returned.<br>
> -    */<br>
> -   const glsl_type *field_type(const char *name) const;<br>
> -<br>
> -   /**<br>
> -    * Get the location of a field within a record type<br>
> -    */<br>
> -   int field_index(const char *name) const;<br>
> -<br>
> -   /**<br>
> -    * Query the number of elements in an array type<br>
> -    *<br>
> -    * \return<br>
> -    * The number of elements in the array for array types or -1 for non-array<br>
> -    * types.  If the number of elements in the array has not yet been declared,<br>
> -    * zero is returned.<br>
> -    */<br>
> -   int array_size() const<br>
> -   {<br>
> -      return is_array() ? length : -1;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Query whether the array size for all dimensions has been declared.<br>
> -    */<br>
> -   bool is_unsized_array() const<br>
> -   {<br>
> -      return is_array() && length == 0;<br>
> -   }<br>
> -<br>
> -   /**<br>
> -    * Return the number of coordinate components needed for this<br>
> -    * sampler or image type.<br>
> -    *<br>
> -    * This is based purely on the sampler's dimensionality.  For example, this<br>
> -    * returns 1 for sampler1D, and 3 for sampler2DArray.<br>
> -    *<br>
> -    * Note that this is often different than actual coordinate type used in<br>
> -    * a texturing built-in function, since those pack additional values (such<br>
> -    * as the shadow comparitor or projector) into the coordinate type.<br>
> -    */<br>
> -   int coordinate_components() const;<br>
> -<br>
> -   /**<br>
> -    * Compare a record type against another record type.<br>
> -    *<br>
> -    * This is useful for matching record types declared across shader stages.<br>
> -    */<br>
> -   bool record_compare(const glsl_type *b) const;<br>
> -<br>
> -private:<br>
> -<br>
> -   static mtx_t mutex;<br>
> -<br>
> -   /**<br>
> -    * ralloc context for all glsl_type allocations<br>
> -    *<br>
> -    * Set on the first call to \c glsl_type::new.<br>
> -    */<br>
> -   static void *mem_ctx;<br>
> -<br>
> -   void init_ralloc_type_ctx(void);<br>
> -<br>
> -   /** Constructor for vector and matrix types */<br>
> -   glsl_type(GLenum gl_type,<br>
> -            glsl_base_type base_type, unsigned vector_elements,<br>
> -            unsigned matrix_columns, const char *name);<br>
> -<br>
> -   /** Constructor for sampler or image types */<br>
> -   glsl_type(GLenum gl_type, glsl_base_type base_type,<br>
> -            enum glsl_sampler_dim dim, bool shadow, bool array,<br>
> -            unsigned type, const char *name);<br>
> -<br>
> -   /** Constructor for record types */<br>
> -   glsl_type(const glsl_struct_field *fields, unsigned num_fields,<br>
> -            const char *name);<br>
> -<br>
> -   /** Constructor for interface types */<br>
> -   glsl_type(const glsl_struct_field *fields, unsigned num_fields,<br>
> -            enum glsl_interface_packing packing, const char *name);<br>
> -<br>
> -   /** Constructor for array types */<br>
> -   glsl_type(const glsl_type *array, unsigned length);<br>
> -<br>
> -   /** Constructor for subroutine types */<br>
> -   glsl_type(const char *name);<br>
> -<br>
> -   /** Hash table containing the known array types. */<br>
> -   static struct hash_table *array_types;<br>
> -<br>
> -   /** Hash table containing the known record types. */<br>
> -   static struct hash_table *record_types;<br>
> -<br>
> -   /** Hash table containing the known interface types. */<br>
> -   static struct hash_table *interface_types;<br>
> -<br>
> -   /** Hash table containing the known subroutine types. */<br>
> -   static struct hash_table *subroutine_types;<br>
> -<br>
> -   static bool record_key_compare(const void *a, const void *b);<br>
> -   static unsigned record_key_hash(const void *key);<br>
> -<br>
> -   /**<br>
> -    * \name Built-in type flyweights<br>
> -    */<br>
> -   /*@{*/<br>
> -#undef  DECL_TYPE<br>
> -#define DECL_TYPE(NAME, ...) static const glsl_type _##NAME##_type;<br>
> -#undef  STRUCT_TYPE<br>
> -#define STRUCT_TYPE(NAME)        static const glsl_type _struct_##NAME##_type;<br>
> -#include "builtin_type_macros.h"<br>
> -   /*@}*/<br>
> -<br>
> -   /**<br>
> -    * \name Friend functions.<br>
> -    *<br>
> -    * These functions are friends because they must have C linkage and the<br>
> -    * need to call various private methods or access various private static<br>
> -    * data.<br>
> -    */<br>
> -   /*@{*/<br>
> -   friend void _mesa_glsl_initialize_types(struct _mesa_glsl_parse_state *);<br>
> -   friend void _mesa_glsl_release_types(void);<br>
> -   /*@}*/<br>
> -};<br>
> -<br>
> -struct glsl_struct_field {<br>
> -   const struct glsl_type *type;<br>
> -   const char *name;<br>
> -<br>
> -   /**<br>
> -    * For interface blocks, gl_varying_slot corresponding to the input/output<br>
> -    * if this is a built-in input/output (i.e. a member of the built-in<br>
> -    * gl_PerVertex interface block); -1 otherwise.<br>
> -    *<br>
> -    * Ignored for structs.<br>
> -    */<br>
> -   int location;<br>
> -<br>
> -   /**<br>
> -    * For interface blocks, the interpolation mode (as in<br>
> -    * ir_variable::interpolation).  0 otherwise.<br>
> -    */<br>
> -   unsigned interpolation:2;<br>
> -<br>
> -   /**<br>
> -    * For interface blocks, 1 if this variable uses centroid interpolation (as<br>
> -    * in ir_variable::centroid).  0 otherwise.<br>
> -    */<br>
> -   unsigned centroid:1;<br>
> -<br>
> -   /**<br>
> -    * For interface blocks, 1 if this variable uses sample interpolation (as<br>
> -    * in ir_variable::sample). 0 otherwise.<br>
> -    */<br>
> -   unsigned sample:1;<br>
> -<br>
> -   /**<br>
> -    * Layout of the matrix.  Uses glsl_matrix_layout values.<br>
> -    */<br>
> -   unsigned matrix_layout:2;<br>
> -<br>
> -   /**<br>
> -    * For interface blocks, 1 if this variable is a per-patch input or output<br>
> -    * (as in ir_variable::patch). 0 otherwise.<br>
> -    */<br>
> -   unsigned patch:1;<br>
> -<br>
> -   /**<br>
> -    * For interface blocks, it has a value if this variable uses multiple vertex<br>
> -    * streams (as in ir_variable::stream). -1 otherwise.<br>
> -    */<br>
> -   int stream;<br>
> -<br>
> -<br>
> -   /**<br>
> -    * Image qualifiers, applicable to buffer variables defined in shader<br>
> -    * storage buffer objects (SSBOs)<br>
> -    */<br>
> -   unsigned image_read_only:1;<br>
> -   unsigned image_write_only:1;<br>
> -   unsigned image_coherent:1;<br>
> -   unsigned image_volatile:1;<br>
> -   unsigned image_restrict:1;<br>
> -<br>
> -   glsl_struct_field(const struct glsl_type *_type, const char *_name)<br>
> -      : type(_type...</p>