2 * Copyright © 2008, 2009 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
23 #include <inttypes.h> /* for PRIx64 macro */
29 #include "main/context.h"
30 #include "main/debug_output.h"
31 #include "main/formats.h"
32 #include "main/shaderobj.h"
33 #include "util/u_atomic.h" /* for p_atomic_cmpxchg */
34 #include "util/ralloc.h"
35 #include "util/disk_cache.h"
36 #include "util/mesa-sha1.h"
38 #include "glsl_parser_extras.h"
39 #include "glsl_parser.h"
40 #include "ir_optimization.h"
41 #include "loop_analysis.h"
42 #include "builtin_functions.h"
45 * Format a short human-readable description of the given GLSL version.
48 glsl_compute_version_string(void *mem_ctx
, bool is_es
, unsigned version
)
50 return ralloc_asprintf(mem_ctx
, "GLSL%s %d.%02d", is_es
? " ES" : "",
51 version
/ 100, version
% 100);
55 static const unsigned known_desktop_glsl_versions
[] =
56 { 110, 120, 130, 140, 150, 330, 400, 410, 420, 430, 440, 450, 460 };
57 static const unsigned known_desktop_gl_versions
[] =
58 { 20, 21, 30, 31, 32, 33, 40, 41, 42, 43, 44, 45, 46 };
61 _mesa_glsl_parse_state::_mesa_glsl_parse_state(struct gl_context
*_ctx
,
62 gl_shader_stage stage
,
64 : ctx(_ctx
), cs_input_local_size_specified(false), cs_input_local_size(),
65 switch_state(), warnings_enabled(true)
67 assert(stage
< MESA_SHADER_STAGES
);
71 this->translation_unit
.make_empty();
72 this->symbols
= new(mem_ctx
) glsl_symbol_table
;
74 this->linalloc
= linear_alloc_parent(this, 0);
76 this->info_log
= ralloc_strdup(mem_ctx
, "");
78 this->loop_nesting_ast
= NULL
;
80 this->uses_builtin_functions
= false;
82 /* Set default language version and extensions */
83 this->language_version
= 110;
84 this->forced_language_version
= ctx
->Const
.ForceGLSLVersion
;
85 this->zero_init
= ctx
->Const
.GLSLZeroInit
;
86 this->gl_version
= 20;
87 this->compat_shader
= true;
88 this->es_shader
= false;
89 this->ARB_texture_rectangle_enable
= true;
91 /* OpenGL ES 2.0 has different defaults from desktop GL. */
92 if (ctx
->API
== API_OPENGLES2
) {
93 this->language_version
= 100;
94 this->es_shader
= true;
95 this->ARB_texture_rectangle_enable
= false;
98 this->extensions
= &ctx
->Extensions
;
100 this->Const
.MaxLights
= ctx
->Const
.MaxLights
;
101 this->Const
.MaxClipPlanes
= ctx
->Const
.MaxClipPlanes
;
102 this->Const
.MaxTextureUnits
= ctx
->Const
.MaxTextureUnits
;
103 this->Const
.MaxTextureCoords
= ctx
->Const
.MaxTextureCoordUnits
;
104 this->Const
.MaxVertexAttribs
= ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxAttribs
;
105 this->Const
.MaxVertexUniformComponents
= ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxUniformComponents
;
106 this->Const
.MaxVertexTextureImageUnits
= ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxTextureImageUnits
;
107 this->Const
.MaxCombinedTextureImageUnits
= ctx
->Const
.MaxCombinedTextureImageUnits
;
108 this->Const
.MaxTextureImageUnits
= ctx
->Const
.Program
[MESA_SHADER_FRAGMENT
].MaxTextureImageUnits
;
109 this->Const
.MaxFragmentUniformComponents
= ctx
->Const
.Program
[MESA_SHADER_FRAGMENT
].MaxUniformComponents
;
110 this->Const
.MinProgramTexelOffset
= ctx
->Const
.MinProgramTexelOffset
;
111 this->Const
.MaxProgramTexelOffset
= ctx
->Const
.MaxProgramTexelOffset
;
113 this->Const
.MaxDrawBuffers
= ctx
->Const
.MaxDrawBuffers
;
115 this->Const
.MaxDualSourceDrawBuffers
= ctx
->Const
.MaxDualSourceDrawBuffers
;
118 this->Const
.MaxVertexOutputComponents
= ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxOutputComponents
;
119 this->Const
.MaxGeometryInputComponents
= ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxInputComponents
;
120 this->Const
.MaxGeometryOutputComponents
= ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxOutputComponents
;
121 this->Const
.MaxGeometryShaderInvocations
= ctx
->Const
.MaxGeometryShaderInvocations
;
122 this->Const
.MaxFragmentInputComponents
= ctx
->Const
.Program
[MESA_SHADER_FRAGMENT
].MaxInputComponents
;
123 this->Const
.MaxGeometryTextureImageUnits
= ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxTextureImageUnits
;
124 this->Const
.MaxGeometryOutputVertices
= ctx
->Const
.MaxGeometryOutputVertices
;
125 this->Const
.MaxGeometryTotalOutputComponents
= ctx
->Const
.MaxGeometryTotalOutputComponents
;
126 this->Const
.MaxGeometryUniformComponents
= ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxUniformComponents
;
128 this->Const
.MaxVertexAtomicCounters
= ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxAtomicCounters
;
129 this->Const
.MaxTessControlAtomicCounters
= ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxAtomicCounters
;
130 this->Const
.MaxTessEvaluationAtomicCounters
= ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxAtomicCounters
;
131 this->Const
.MaxGeometryAtomicCounters
= ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxAtomicCounters
;
132 this->Const
.MaxFragmentAtomicCounters
= ctx
->Const
.Program
[MESA_SHADER_FRAGMENT
].MaxAtomicCounters
;
133 this->Const
.MaxComputeAtomicCounters
= ctx
->Const
.Program
[MESA_SHADER_COMPUTE
].MaxAtomicCounters
;
134 this->Const
.MaxCombinedAtomicCounters
= ctx
->Const
.MaxCombinedAtomicCounters
;
135 this->Const
.MaxAtomicBufferBindings
= ctx
->Const
.MaxAtomicBufferBindings
;
136 this->Const
.MaxVertexAtomicCounterBuffers
=
137 ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxAtomicBuffers
;
138 this->Const
.MaxTessControlAtomicCounterBuffers
=
139 ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxAtomicBuffers
;
140 this->Const
.MaxTessEvaluationAtomicCounterBuffers
=
141 ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxAtomicBuffers
;
142 this->Const
.MaxGeometryAtomicCounterBuffers
=
143 ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxAtomicBuffers
;
144 this->Const
.MaxFragmentAtomicCounterBuffers
=
145 ctx
->Const
.Program
[MESA_SHADER_FRAGMENT
].MaxAtomicBuffers
;
146 this->Const
.MaxComputeAtomicCounterBuffers
=
147 ctx
->Const
.Program
[MESA_SHADER_COMPUTE
].MaxAtomicBuffers
;
148 this->Const
.MaxCombinedAtomicCounterBuffers
=
149 ctx
->Const
.MaxCombinedAtomicBuffers
;
150 this->Const
.MaxAtomicCounterBufferSize
=
151 ctx
->Const
.MaxAtomicBufferSize
;
153 /* ARB_enhanced_layouts constants */
154 this->Const
.MaxTransformFeedbackBuffers
= ctx
->Const
.MaxTransformFeedbackBuffers
;
155 this->Const
.MaxTransformFeedbackInterleavedComponents
= ctx
->Const
.MaxTransformFeedbackInterleavedComponents
;
157 /* Compute shader constants */
158 for (unsigned i
= 0; i
< ARRAY_SIZE(this->Const
.MaxComputeWorkGroupCount
); i
++)
159 this->Const
.MaxComputeWorkGroupCount
[i
] = ctx
->Const
.MaxComputeWorkGroupCount
[i
];
160 for (unsigned i
= 0; i
< ARRAY_SIZE(this->Const
.MaxComputeWorkGroupSize
); i
++)
161 this->Const
.MaxComputeWorkGroupSize
[i
] = ctx
->Const
.MaxComputeWorkGroupSize
[i
];
163 this->Const
.MaxComputeTextureImageUnits
= ctx
->Const
.Program
[MESA_SHADER_COMPUTE
].MaxTextureImageUnits
;
164 this->Const
.MaxComputeUniformComponents
= ctx
->Const
.Program
[MESA_SHADER_COMPUTE
].MaxUniformComponents
;
166 this->Const
.MaxImageUnits
= ctx
->Const
.MaxImageUnits
;
167 this->Const
.MaxCombinedShaderOutputResources
= ctx
->Const
.MaxCombinedShaderOutputResources
;
168 this->Const
.MaxImageSamples
= ctx
->Const
.MaxImageSamples
;
169 this->Const
.MaxVertexImageUniforms
= ctx
->Const
.Program
[MESA_SHADER_VERTEX
].MaxImageUniforms
;
170 this->Const
.MaxTessControlImageUniforms
= ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxImageUniforms
;
171 this->Const
.MaxTessEvaluationImageUniforms
= ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxImageUniforms
;
172 this->Const
.MaxGeometryImageUniforms
= ctx
->Const
.Program
[MESA_SHADER_GEOMETRY
].MaxImageUniforms
;
173 this->Const
.MaxFragmentImageUniforms
= ctx
->Const
.Program
[MESA_SHADER_FRAGMENT
].MaxImageUniforms
;
174 this->Const
.MaxComputeImageUniforms
= ctx
->Const
.Program
[MESA_SHADER_COMPUTE
].MaxImageUniforms
;
175 this->Const
.MaxCombinedImageUniforms
= ctx
->Const
.MaxCombinedImageUniforms
;
177 /* ARB_viewport_array */
178 this->Const
.MaxViewports
= ctx
->Const
.MaxViewports
;
180 /* tessellation shader constants */
181 this->Const
.MaxPatchVertices
= ctx
->Const
.MaxPatchVertices
;
182 this->Const
.MaxTessGenLevel
= ctx
->Const
.MaxTessGenLevel
;
183 this->Const
.MaxTessControlInputComponents
= ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxInputComponents
;
184 this->Const
.MaxTessControlOutputComponents
= ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxOutputComponents
;
185 this->Const
.MaxTessControlTextureImageUnits
= ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxTextureImageUnits
;
186 this->Const
.MaxTessEvaluationInputComponents
= ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxInputComponents
;
187 this->Const
.MaxTessEvaluationOutputComponents
= ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxOutputComponents
;
188 this->Const
.MaxTessEvaluationTextureImageUnits
= ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxTextureImageUnits
;
189 this->Const
.MaxTessPatchComponents
= ctx
->Const
.MaxTessPatchComponents
;
190 this->Const
.MaxTessControlTotalOutputComponents
= ctx
->Const
.MaxTessControlTotalOutputComponents
;
191 this->Const
.MaxTessControlUniformComponents
= ctx
->Const
.Program
[MESA_SHADER_TESS_CTRL
].MaxUniformComponents
;
192 this->Const
.MaxTessEvaluationUniformComponents
= ctx
->Const
.Program
[MESA_SHADER_TESS_EVAL
].MaxUniformComponents
;
194 /* GL 4.5 / OES_sample_variables */
195 this->Const
.MaxSamples
= ctx
->Const
.MaxSamples
;
197 this->current_function
= NULL
;
198 this->toplevel_ir
= NULL
;
199 this->found_return
= false;
200 this->all_invariant
= false;
201 this->user_structures
= NULL
;
202 this->num_user_structures
= 0;
203 this->num_subroutines
= 0;
204 this->subroutines
= NULL
;
205 this->num_subroutine_types
= 0;
206 this->subroutine_types
= NULL
;
208 /* supported_versions should be large enough to support the known desktop
209 * GLSL versions plus 4 GLES versions (ES 1.00, ES 3.00, ES 3.10, ES 3.20)
211 STATIC_ASSERT((ARRAY_SIZE(known_desktop_glsl_versions
) + 4) ==
212 ARRAY_SIZE(this->supported_versions
));
214 /* Populate the list of supported GLSL versions */
215 /* FINISHME: Once the OpenGL 3.0 'forward compatible' context or
216 * the OpenGL 3.2 Core context is supported, this logic will need
217 * change. Older versions of GLSL are no longer supported
218 * outside the compatibility contexts of 3.x.
220 this->num_supported_versions
= 0;
221 if (_mesa_is_desktop_gl(ctx
)) {
222 for (unsigned i
= 0; i
< ARRAY_SIZE(known_desktop_glsl_versions
); i
++) {
223 if (known_desktop_glsl_versions
[i
] <= ctx
->Const
.GLSLVersion
) {
224 this->supported_versions
[this->num_supported_versions
].ver
225 = known_desktop_glsl_versions
[i
];
226 this->supported_versions
[this->num_supported_versions
].gl_ver
227 = known_desktop_gl_versions
[i
];
228 this->supported_versions
[this->num_supported_versions
].es
= false;
229 this->num_supported_versions
++;
233 if (ctx
->API
== API_OPENGLES2
|| ctx
->Extensions
.ARB_ES2_compatibility
) {
234 this->supported_versions
[this->num_supported_versions
].ver
= 100;
235 this->supported_versions
[this->num_supported_versions
].gl_ver
= 20;
236 this->supported_versions
[this->num_supported_versions
].es
= true;
237 this->num_supported_versions
++;
239 if (_mesa_is_gles3(ctx
) || ctx
->Extensions
.ARB_ES3_compatibility
) {
240 this->supported_versions
[this->num_supported_versions
].ver
= 300;
241 this->supported_versions
[this->num_supported_versions
].gl_ver
= 30;
242 this->supported_versions
[this->num_supported_versions
].es
= true;
243 this->num_supported_versions
++;
245 if (_mesa_is_gles31(ctx
) || ctx
->Extensions
.ARB_ES3_1_compatibility
) {
246 this->supported_versions
[this->num_supported_versions
].ver
= 310;
247 this->supported_versions
[this->num_supported_versions
].gl_ver
= 31;
248 this->supported_versions
[this->num_supported_versions
].es
= true;
249 this->num_supported_versions
++;
251 if ((ctx
->API
== API_OPENGLES2
&& ctx
->Version
>= 32) ||
252 ctx
->Extensions
.ARB_ES3_2_compatibility
) {
253 this->supported_versions
[this->num_supported_versions
].ver
= 320;
254 this->supported_versions
[this->num_supported_versions
].gl_ver
= 32;
255 this->supported_versions
[this->num_supported_versions
].es
= true;
256 this->num_supported_versions
++;
259 /* Create a string for use in error messages to tell the user which GLSL
260 * versions are supported.
262 char *supported
= ralloc_strdup(this, "");
263 for (unsigned i
= 0; i
< this->num_supported_versions
; i
++) {
264 unsigned ver
= this->supported_versions
[i
].ver
;
265 const char *const prefix
= (i
== 0)
267 : ((i
== this->num_supported_versions
- 1) ? ", and " : ", ");
268 const char *const suffix
= (this->supported_versions
[i
].es
) ? " ES" : "";
270 ralloc_asprintf_append(& supported
, "%s%u.%02u%s",
272 ver
/ 100, ver
% 100,
276 this->supported_version_string
= supported
;
278 if (ctx
->Const
.ForceGLSLExtensionsWarn
)
279 _mesa_glsl_process_extension("all", NULL
, "warn", NULL
, this);
281 this->default_uniform_qualifier
= new(this) ast_type_qualifier();
282 this->default_uniform_qualifier
->flags
.q
.shared
= 1;
283 this->default_uniform_qualifier
->flags
.q
.column_major
= 1;
285 this->default_shader_storage_qualifier
= new(this) ast_type_qualifier();
286 this->default_shader_storage_qualifier
->flags
.q
.shared
= 1;
287 this->default_shader_storage_qualifier
->flags
.q
.column_major
= 1;
289 this->fs_uses_gl_fragcoord
= false;
290 this->fs_redeclares_gl_fragcoord
= false;
291 this->fs_origin_upper_left
= false;
292 this->fs_pixel_center_integer
= false;
293 this->fs_redeclares_gl_fragcoord_with_no_layout_qualifiers
= false;
295 this->gs_input_prim_type_specified
= false;
296 this->tcs_output_vertices_specified
= false;
297 this->gs_input_size
= 0;
298 this->in_qualifier
= new(this) ast_type_qualifier();
299 this->out_qualifier
= new(this) ast_type_qualifier();
300 this->fs_early_fragment_tests
= false;
301 this->fs_inner_coverage
= false;
302 this->fs_post_depth_coverage
= false;
303 this->fs_pixel_interlock_ordered
= false;
304 this->fs_pixel_interlock_unordered
= false;
305 this->fs_sample_interlock_ordered
= false;
306 this->fs_sample_interlock_unordered
= false;
307 this->fs_blend_support
= 0;
308 memset(this->atomic_counter_offsets
, 0,
309 sizeof(this->atomic_counter_offsets
));
310 this->allow_extension_directive_midshader
=
311 ctx
->Const
.AllowGLSLExtensionDirectiveMidShader
;
312 this->allow_builtin_variable_redeclaration
=
313 ctx
->Const
.AllowGLSLBuiltinVariableRedeclaration
;
314 this->allow_layout_qualifier_on_function_parameter
=
315 ctx
->Const
.AllowLayoutQualifiersOnFunctionParameters
;
317 this->cs_input_local_size_variable_specified
= false;
319 /* ARB_bindless_texture */
320 this->bindless_sampler_specified
= false;
321 this->bindless_image_specified
= false;
322 this->bound_sampler_specified
= false;
323 this->bound_image_specified
= false;
327 * Determine whether the current GLSL version is sufficiently high to support
328 * a certain feature, and generate an error message if it isn't.
330 * \param required_glsl_version and \c required_glsl_es_version are
331 * interpreted as they are in _mesa_glsl_parse_state::is_version().
333 * \param locp is the parser location where the error should be reported.
335 * \param fmt (and additional arguments) constitute a printf-style error
336 * message to report if the version check fails. Information about the
337 * current and required GLSL versions will be appended. So, for example, if
338 * the GLSL version being compiled is 1.20, and check_version(130, 300, locp,
339 * "foo unsupported") is called, the error message will be "foo unsupported in
340 * GLSL 1.20 (GLSL 1.30 or GLSL 3.00 ES required)".
343 _mesa_glsl_parse_state::check_version(unsigned required_glsl_version
,
344 unsigned required_glsl_es_version
,
345 YYLTYPE
*locp
, const char *fmt
, ...)
347 if (this->is_version(required_glsl_version
, required_glsl_es_version
))
352 char *problem
= ralloc_vasprintf(this, fmt
, args
);
354 const char *glsl_version_string
355 = glsl_compute_version_string(this, false, required_glsl_version
);
356 const char *glsl_es_version_string
357 = glsl_compute_version_string(this, true, required_glsl_es_version
);
358 const char *requirement_string
= "";
359 if (required_glsl_version
&& required_glsl_es_version
) {
360 requirement_string
= ralloc_asprintf(this, " (%s or %s required)",
362 glsl_es_version_string
);
363 } else if (required_glsl_version
) {
364 requirement_string
= ralloc_asprintf(this, " (%s required)",
365 glsl_version_string
);
366 } else if (required_glsl_es_version
) {
367 requirement_string
= ralloc_asprintf(this, " (%s required)",
368 glsl_es_version_string
);
370 _mesa_glsl_error(locp
, this, "%s in %s%s",
371 problem
, this->get_version_string(),
378 * Process a GLSL #version directive.
380 * \param version is the integer that follows the #version token.
382 * \param ident is a string identifier that follows the integer, if any is
383 * present. Otherwise NULL.
386 _mesa_glsl_parse_state::process_version_directive(YYLTYPE
*locp
, int version
,
389 bool es_token_present
= false;
390 bool compat_token_present
= false;
392 if (strcmp(ident
, "es") == 0) {
393 es_token_present
= true;
394 } else if (version
>= 150) {
395 if (strcmp(ident
, "core") == 0) {
396 /* Accept the token. There's no need to record that this is
397 * a core profile shader since that's the only profile we support.
399 } else if (strcmp(ident
, "compatibility") == 0) {
400 compat_token_present
= true;
402 if (this->ctx
->API
!= API_OPENGL_COMPAT
) {
403 _mesa_glsl_error(locp
, this,
404 "the compatibility profile is not supported");
407 _mesa_glsl_error(locp
, this,
408 "\"%s\" is not a valid shading language profile; "
409 "if present, it must be \"core\"", ident
);
412 _mesa_glsl_error(locp
, this,
413 "illegal text following version number");
417 this->es_shader
= es_token_present
;
418 if (version
== 100) {
419 if (es_token_present
) {
420 _mesa_glsl_error(locp
, this,
421 "GLSL 1.00 ES should be selected using "
424 this->es_shader
= true;
428 if (this->es_shader
) {
429 this->ARB_texture_rectangle_enable
= false;
432 if (this->forced_language_version
)
433 this->language_version
= this->forced_language_version
;
435 this->language_version
= version
;
437 this->compat_shader
= compat_token_present
||
438 (this->ctx
->API
== API_OPENGL_COMPAT
&&
439 this->language_version
== 140) ||
440 (!this->es_shader
&& this->language_version
< 140);
442 bool supported
= false;
443 for (unsigned i
= 0; i
< this->num_supported_versions
; i
++) {
444 if (this->supported_versions
[i
].ver
== this->language_version
445 && this->supported_versions
[i
].es
== this->es_shader
) {
446 this->gl_version
= this->supported_versions
[i
].gl_ver
;
453 _mesa_glsl_error(locp
, this, "%s is not supported. "
454 "Supported versions are: %s",
455 this->get_version_string(),
456 this->supported_version_string
);
458 /* On exit, the language_version must be set to a valid value.
459 * Later calls to _mesa_glsl_initialize_types will misbehave if
460 * the version is invalid.
462 switch (this->ctx
->API
) {
463 case API_OPENGL_COMPAT
:
464 case API_OPENGL_CORE
:
465 this->language_version
= this->ctx
->Const
.GLSLVersion
;
469 assert(!"Should not get here.");
473 this->language_version
= 100;
480 /* This helper function will append the given message to the shader's
481 info log and report it via GL_ARB_debug_output. Per that extension,
482 'type' is one of the enum values classifying the message, and
483 'id' is the implementation-defined ID of the given message. */
485 _mesa_glsl_msg(const YYLTYPE
*locp
, _mesa_glsl_parse_state
*state
,
486 GLenum type
, const char *fmt
, va_list ap
)
488 bool error
= (type
== MESA_DEBUG_TYPE_ERROR
);
491 assert(state
->info_log
!= NULL
);
493 /* Get the offset that the new message will be written to. */
494 int msg_offset
= strlen(state
->info_log
);
496 ralloc_asprintf_append(&state
->info_log
, "%u:%u(%u): %s: ",
500 error
? "error" : "warning");
501 ralloc_vasprintf_append(&state
->info_log
, fmt
, ap
);
503 const char *const msg
= &state
->info_log
[msg_offset
];
504 struct gl_context
*ctx
= state
->ctx
;
506 /* Report the error via GL_ARB_debug_output. */
507 _mesa_shader_debug(ctx
, type
, &msg_id
, msg
);
509 ralloc_strcat(&state
->info_log
, "\n");
513 _mesa_glsl_error(YYLTYPE
*locp
, _mesa_glsl_parse_state
*state
,
514 const char *fmt
, ...)
521 _mesa_glsl_msg(locp
, state
, MESA_DEBUG_TYPE_ERROR
, fmt
, ap
);
527 _mesa_glsl_warning(const YYLTYPE
*locp
, _mesa_glsl_parse_state
*state
,
528 const char *fmt
, ...)
530 if (state
->warnings_enabled
) {
534 _mesa_glsl_msg(locp
, state
, MESA_DEBUG_TYPE_OTHER
, fmt
, ap
);
541 * Enum representing the possible behaviors that can be specified in
542 * an #extension directive.
552 * Element type for _mesa_glsl_supported_extensions
554 struct _mesa_glsl_extension
{
556 * Name of the extension when referred to in a GLSL extension
562 * Whether this extension is a part of AEP
567 * Predicate that checks whether the relevant extension is available for
570 bool (*available_pred
)(const struct gl_context
*,
571 gl_api api
, uint8_t version
);
574 * Flag in the _mesa_glsl_parse_state struct that should be set
575 * when this extension is enabled.
577 * See note in _mesa_glsl_extension::supported_flag about "pointer
580 bool _mesa_glsl_parse_state::* enable_flag
;
583 * Flag in the _mesa_glsl_parse_state struct that should be set
584 * when the shader requests "warn" behavior for this extension.
586 * See note in _mesa_glsl_extension::supported_flag about "pointer
589 bool _mesa_glsl_parse_state::* warn_flag
;
592 bool compatible_with_state(const _mesa_glsl_parse_state
*state
,
593 gl_api api
, uint8_t gl_version
) const;
594 void set_flags(_mesa_glsl_parse_state
*state
, ext_behavior behavior
) const;
597 /** Checks if the context supports a user-facing extension */
598 #define EXT(name_str, driver_cap, ...) \
599 static MAYBE_UNUSED bool \
600 has_##name_str(const struct gl_context *ctx, gl_api api, uint8_t version) \
602 return ctx->Extensions.driver_cap && (version >= \
603 _mesa_extension_table[MESA_EXTENSION_##name_str].version[api]); \
605 #include "main/extensions_table.h"
609 { "GL_" #NAME, false, has_##NAME, \
610 &_mesa_glsl_parse_state::NAME##_enable, \
611 &_mesa_glsl_parse_state::NAME##_warn }
613 #define EXT_AEP(NAME) \
614 { "GL_" #NAME, true, has_##NAME, \
615 &_mesa_glsl_parse_state::NAME##_enable, \
616 &_mesa_glsl_parse_state::NAME##_warn }
619 * Table of extensions that can be enabled/disabled within a shader,
620 * and the conditions under which they are supported.
622 static const _mesa_glsl_extension _mesa_glsl_supported_extensions
[] = {
623 /* ARB extensions go here, sorted alphabetically.
625 EXT(ARB_ES3_1_compatibility
),
626 EXT(ARB_ES3_2_compatibility
),
627 EXT(ARB_arrays_of_arrays
),
628 EXT(ARB_bindless_texture
),
629 EXT(ARB_compatibility
),
630 EXT(ARB_compute_shader
),
631 EXT(ARB_compute_variable_group_size
),
632 EXT(ARB_conservative_depth
),
633 EXT(ARB_cull_distance
),
634 EXT(ARB_derivative_control
),
635 EXT(ARB_draw_buffers
),
636 EXT(ARB_draw_instanced
),
637 EXT(ARB_enhanced_layouts
),
638 EXT(ARB_explicit_attrib_location
),
639 EXT(ARB_explicit_uniform_location
),
640 EXT(ARB_fragment_coord_conventions
),
641 EXT(ARB_fragment_layer_viewport
),
642 EXT(ARB_fragment_shader_interlock
),
643 EXT(ARB_gpu_shader5
),
644 EXT(ARB_gpu_shader_fp64
),
645 EXT(ARB_gpu_shader_int64
),
646 EXT(ARB_post_depth_coverage
),
647 EXT(ARB_sample_shading
),
648 EXT(ARB_separate_shader_objects
),
649 EXT(ARB_shader_atomic_counter_ops
),
650 EXT(ARB_shader_atomic_counters
),
651 EXT(ARB_shader_ballot
),
652 EXT(ARB_shader_bit_encoding
),
653 EXT(ARB_shader_clock
),
654 EXT(ARB_shader_draw_parameters
),
655 EXT(ARB_shader_group_vote
),
656 EXT(ARB_shader_image_load_store
),
657 EXT(ARB_shader_image_size
),
658 EXT(ARB_shader_precision
),
659 EXT(ARB_shader_stencil_export
),
660 EXT(ARB_shader_storage_buffer_object
),
661 EXT(ARB_shader_subroutine
),
662 EXT(ARB_shader_texture_image_samples
),
663 EXT(ARB_shader_texture_lod
),
664 EXT(ARB_shader_viewport_layer_array
),
665 EXT(ARB_shading_language_420pack
),
666 EXT(ARB_shading_language_packing
),
667 EXT(ARB_tessellation_shader
),
668 EXT(ARB_texture_cube_map_array
),
669 EXT(ARB_texture_gather
),
670 EXT(ARB_texture_multisample
),
671 EXT(ARB_texture_query_levels
),
672 EXT(ARB_texture_query_lod
),
673 EXT(ARB_texture_rectangle
),
674 EXT(ARB_uniform_buffer_object
),
675 EXT(ARB_vertex_attrib_64bit
),
676 EXT(ARB_viewport_array
),
678 /* KHR extensions go here, sorted alphabetically.
680 EXT_AEP(KHR_blend_equation_advanced
),
682 /* OES extensions go here, sorted alphabetically.
684 EXT(OES_EGL_image_external
),
685 EXT(OES_EGL_image_external_essl3
),
686 EXT(OES_geometry_point_size
),
687 EXT(OES_geometry_shader
),
688 EXT(OES_gpu_shader5
),
689 EXT(OES_primitive_bounding_box
),
690 EXT_AEP(OES_sample_variables
),
691 EXT_AEP(OES_shader_image_atomic
),
692 EXT(OES_shader_io_blocks
),
693 EXT_AEP(OES_shader_multisample_interpolation
),
694 EXT(OES_standard_derivatives
),
695 EXT(OES_tessellation_point_size
),
696 EXT(OES_tessellation_shader
),
698 EXT(OES_texture_buffer
),
699 EXT(OES_texture_cube_map_array
),
700 EXT_AEP(OES_texture_storage_multisample_2d_array
),
701 EXT(OES_viewport_array
),
703 /* All other extensions go here, sorted alphabetically.
705 EXT(AMD_conservative_depth
),
706 EXT(AMD_gpu_shader_int64
),
707 EXT(AMD_shader_stencil_export
),
708 EXT(AMD_shader_trinary_minmax
),
709 EXT(AMD_texture_texture4
),
710 EXT(AMD_vertex_shader_layer
),
711 EXT(AMD_vertex_shader_viewport_index
),
712 EXT(ANDROID_extension_pack_es31a
),
713 EXT(EXT_blend_func_extended
),
715 EXT(EXT_draw_buffers
),
716 EXT(EXT_clip_cull_distance
),
717 EXT(EXT_geometry_point_size
),
718 EXT_AEP(EXT_geometry_shader
),
719 EXT(EXT_gpu_shader4
),
720 EXT_AEP(EXT_gpu_shader5
),
721 EXT_AEP(EXT_primitive_bounding_box
),
722 EXT(EXT_separate_shader_objects
),
723 EXT(EXT_shader_framebuffer_fetch
),
724 EXT(EXT_shader_framebuffer_fetch_non_coherent
),
725 EXT(EXT_shader_image_load_formatted
),
726 EXT(EXT_shader_implicit_conversions
),
727 EXT(EXT_shader_integer_mix
),
728 EXT_AEP(EXT_shader_io_blocks
),
729 EXT(EXT_shader_samples_identical
),
730 EXT(EXT_tessellation_point_size
),
731 EXT_AEP(EXT_tessellation_shader
),
732 EXT(EXT_texture_array
),
733 EXT_AEP(EXT_texture_buffer
),
734 EXT_AEP(EXT_texture_cube_map_array
),
735 EXT(EXT_texture_query_lod
),
736 EXT(INTEL_conservative_rasterization
),
737 EXT(INTEL_shader_atomic_float_minmax
),
738 EXT(MESA_shader_integer_functions
),
739 EXT(NV_compute_shader_derivatives
),
740 EXT(NV_fragment_shader_interlock
),
741 EXT(NV_image_formats
),
742 EXT(NV_shader_atomic_float
),
749 * Determine whether a given extension is compatible with the target,
750 * API, and extension information in the current parser state.
752 bool _mesa_glsl_extension::compatible_with_state(
753 const _mesa_glsl_parse_state
*state
, gl_api api
, uint8_t gl_version
) const
755 return this->available_pred(state
->ctx
, api
, gl_version
);
759 * Set the appropriate flags in the parser state to establish the
760 * given behavior for this extension.
762 void _mesa_glsl_extension::set_flags(_mesa_glsl_parse_state
*state
,
763 ext_behavior behavior
) const
765 /* Note: the ->* operator indexes into state by the
766 * offsets this->enable_flag and this->warn_flag. See
767 * _mesa_glsl_extension::supported_flag for more info.
769 state
->*(this->enable_flag
) = (behavior
!= extension_disable
);
770 state
->*(this->warn_flag
) = (behavior
== extension_warn
);
774 * Find an extension by name in _mesa_glsl_supported_extensions. If
775 * the name is not found, return NULL.
777 static const _mesa_glsl_extension
*find_extension(const char *name
)
779 for (unsigned i
= 0; i
< ARRAY_SIZE(_mesa_glsl_supported_extensions
); ++i
) {
780 if (strcmp(name
, _mesa_glsl_supported_extensions
[i
].name
) == 0) {
781 return &_mesa_glsl_supported_extensions
[i
];
788 _mesa_glsl_process_extension(const char *name
, YYLTYPE
*name_locp
,
789 const char *behavior_string
, YYLTYPE
*behavior_locp
,
790 _mesa_glsl_parse_state
*state
)
792 uint8_t gl_version
= state
->ctx
->Extensions
.Version
;
793 gl_api api
= state
->ctx
->API
;
794 ext_behavior behavior
;
795 if (strcmp(behavior_string
, "warn") == 0) {
796 behavior
= extension_warn
;
797 } else if (strcmp(behavior_string
, "require") == 0) {
798 behavior
= extension_require
;
799 } else if (strcmp(behavior_string
, "enable") == 0) {
800 behavior
= extension_enable
;
801 } else if (strcmp(behavior_string
, "disable") == 0) {
802 behavior
= extension_disable
;
804 _mesa_glsl_error(behavior_locp
, state
,
805 "unknown extension behavior `%s'",
810 /* If we're in a desktop context but with an ES shader, use an ES API enum
811 * to verify extension availability.
813 if (state
->es_shader
&& api
!= API_OPENGLES2
)
815 /* Use the language-version derived GL version to extension checks, unless
816 * we're using meta, which sets the version to the max.
818 if (gl_version
!= 0xff)
819 gl_version
= state
->gl_version
;
821 if (strcmp(name
, "all") == 0) {
822 if ((behavior
== extension_enable
) || (behavior
== extension_require
)) {
823 _mesa_glsl_error(name_locp
, state
, "cannot %s all extensions",
824 (behavior
== extension_enable
)
825 ? "enable" : "require");
829 i
< ARRAY_SIZE(_mesa_glsl_supported_extensions
); ++i
) {
830 const _mesa_glsl_extension
*extension
831 = &_mesa_glsl_supported_extensions
[i
];
832 if (extension
->compatible_with_state(state
, api
, gl_version
)) {
833 _mesa_glsl_supported_extensions
[i
].set_flags(state
, behavior
);
838 const _mesa_glsl_extension
*extension
= find_extension(name
);
839 if (extension
&& extension
->compatible_with_state(state
, api
, gl_version
)) {
840 extension
->set_flags(state
, behavior
);
841 if (extension
->available_pred
== has_ANDROID_extension_pack_es31a
) {
843 i
< ARRAY_SIZE(_mesa_glsl_supported_extensions
); ++i
) {
844 const _mesa_glsl_extension
*extension
=
845 &_mesa_glsl_supported_extensions
[i
];
849 /* AEP should not be enabled if all of the sub-extensions can't
850 * also be enabled. This is not the proper layer to do such
851 * error-checking though.
853 assert(extension
->compatible_with_state(state
, api
, gl_version
));
854 extension
->set_flags(state
, behavior
);
858 static const char fmt
[] = "extension `%s' unsupported in %s shader";
860 if (behavior
== extension_require
) {
861 _mesa_glsl_error(name_locp
, state
, fmt
,
862 name
, _mesa_shader_stage_to_string(state
->stage
));
865 _mesa_glsl_warning(name_locp
, state
, fmt
,
866 name
, _mesa_shader_stage_to_string(state
->stage
));
876 * Recurses through <type> and <expr> if <expr> is an aggregate initializer
877 * and sets <expr>'s <constructor_type> field to <type>. Gives later functions
878 * (process_array_constructor, et al) sufficient information to do type
881 * Operates on assignments involving an aggregate initializer. E.g.,
883 * vec4 pos = {1.0, -1.0, 0.0, 1.0};
885 * or more ridiculously,
898 * {1.0, 2.0, 3.0, 4.0}, // a[0].v[0]
899 * {5.0, 6.0, 7.0, 8.0} // a[0].v[1]
904 * {1.0, 2.0, 3.0, 4.0}, // a[1].v[0]
905 * {5.0, 6.0, 7.0, 8.0} // a[1].v[1]
911 * {1.0, 2.0, 3.0, 4.0}, // b.v[0]
912 * {5.0, 6.0, 7.0, 8.0} // b.v[1]
918 * This pass is necessary because the right-hand side of <type> e = { ... }
919 * doesn't contain sufficient information to determine if the types match.
922 _mesa_ast_set_aggregate_type(const glsl_type
*type
,
923 ast_expression
*expr
)
925 ast_aggregate_initializer
*ai
= (ast_aggregate_initializer
*)expr
;
926 ai
->constructor_type
= type
;
928 /* If the aggregate is an array, recursively set its elements' types. */
929 if (type
->is_array()) {
930 /* Each array element has the type type->fields.array.
932 * E.g., if <type> if struct S[2] we want to set each element's type to
935 for (exec_node
*expr_node
= ai
->expressions
.get_head_raw();
936 !expr_node
->is_tail_sentinel();
937 expr_node
= expr_node
->next
) {
938 ast_expression
*expr
= exec_node_data(ast_expression
, expr_node
,
941 if (expr
->oper
== ast_aggregate
)
942 _mesa_ast_set_aggregate_type(type
->fields
.array
, expr
);
945 /* If the aggregate is a struct, recursively set its fields' types. */
946 } else if (type
->is_struct()) {
947 exec_node
*expr_node
= ai
->expressions
.get_head_raw();
949 /* Iterate through the struct's fields. */
950 for (unsigned i
= 0; !expr_node
->is_tail_sentinel() && i
< type
->length
;
951 i
++, expr_node
= expr_node
->next
) {
952 ast_expression
*expr
= exec_node_data(ast_expression
, expr_node
,
955 if (expr
->oper
== ast_aggregate
) {
956 _mesa_ast_set_aggregate_type(type
->fields
.structure
[i
].type
, expr
);
959 /* If the aggregate is a matrix, set its columns' types. */
960 } else if (type
->is_matrix()) {
961 for (exec_node
*expr_node
= ai
->expressions
.get_head_raw();
962 !expr_node
->is_tail_sentinel();
963 expr_node
= expr_node
->next
) {
964 ast_expression
*expr
= exec_node_data(ast_expression
, expr_node
,
967 if (expr
->oper
== ast_aggregate
)
968 _mesa_ast_set_aggregate_type(type
->column_type(), expr
);
974 _mesa_ast_process_interface_block(YYLTYPE
*locp
,
975 _mesa_glsl_parse_state
*state
,
976 ast_interface_block
*const block
,
977 const struct ast_type_qualifier
&q
)
979 if (q
.flags
.q
.buffer
) {
980 if (!state
->has_shader_storage_buffer_objects()) {
981 _mesa_glsl_error(locp
, state
,
982 "#version 430 / GL_ARB_shader_storage_buffer_object "
983 "required for defining shader storage blocks");
984 } else if (state
->ARB_shader_storage_buffer_object_warn
) {
985 _mesa_glsl_warning(locp
, state
,
986 "#version 430 / GL_ARB_shader_storage_buffer_object "
987 "required for defining shader storage blocks");
989 } else if (q
.flags
.q
.uniform
) {
990 if (!state
->has_uniform_buffer_objects()) {
991 _mesa_glsl_error(locp
, state
,
992 "#version 140 / GL_ARB_uniform_buffer_object "
993 "required for defining uniform blocks");
994 } else if (state
->ARB_uniform_buffer_object_warn
) {
995 _mesa_glsl_warning(locp
, state
,
996 "#version 140 / GL_ARB_uniform_buffer_object "
997 "required for defining uniform blocks");
1000 if (!state
->has_shader_io_blocks()) {
1001 if (state
->es_shader
) {
1002 _mesa_glsl_error(locp
, state
,
1003 "GL_OES_shader_io_blocks or #version 320 "
1004 "required for using interface blocks");
1006 _mesa_glsl_error(locp
, state
,
1007 "#version 150 required for using "
1008 "interface blocks");
1013 /* From the GLSL 1.50.11 spec, section 4.3.7 ("Interface Blocks"):
1014 * "It is illegal to have an input block in a vertex shader
1015 * or an output block in a fragment shader"
1017 if ((state
->stage
== MESA_SHADER_VERTEX
) && q
.flags
.q
.in
) {
1018 _mesa_glsl_error(locp
, state
,
1019 "`in' interface block is not allowed for "
1021 } else if ((state
->stage
== MESA_SHADER_FRAGMENT
) && q
.flags
.q
.out
) {
1022 _mesa_glsl_error(locp
, state
,
1023 "`out' interface block is not allowed for "
1024 "a fragment shader");
1027 /* Since block arrays require names, and both features are added in
1028 * the same language versions, we don't have to explicitly
1029 * version-check both things.
1031 if (block
->instance_name
!= NULL
) {
1032 state
->check_version(150, 300, locp
, "interface blocks with "
1033 "an instance name are not allowed");
1036 ast_type_qualifier::bitset_t interface_type_mask
;
1037 struct ast_type_qualifier temp_type_qualifier
;
1039 /* Get a bitmask containing only the in/out/uniform/buffer
1040 * flags, allowing us to ignore other irrelevant flags like
1041 * interpolation qualifiers.
1043 temp_type_qualifier
.flags
.i
= 0;
1044 temp_type_qualifier
.flags
.q
.uniform
= true;
1045 temp_type_qualifier
.flags
.q
.in
= true;
1046 temp_type_qualifier
.flags
.q
.out
= true;
1047 temp_type_qualifier
.flags
.q
.buffer
= true;
1048 temp_type_qualifier
.flags
.q
.patch
= true;
1049 interface_type_mask
= temp_type_qualifier
.flags
.i
;
1051 /* Get the block's interface qualifier. The interface_qualifier
1052 * production rule guarantees that only one bit will be set (and
1053 * it will be in/out/uniform).
1055 ast_type_qualifier::bitset_t block_interface_qualifier
= q
.flags
.i
;
1057 block
->default_layout
.flags
.i
|= block_interface_qualifier
;
1059 if (state
->stage
== MESA_SHADER_GEOMETRY
&&
1060 state
->has_explicit_attrib_stream() &&
1061 block
->default_layout
.flags
.q
.out
) {
1062 /* Assign global layout's stream value. */
1063 block
->default_layout
.flags
.q
.stream
= 1;
1064 block
->default_layout
.flags
.q
.explicit_stream
= 0;
1065 block
->default_layout
.stream
= state
->out_qualifier
->stream
;
1068 if (state
->has_enhanced_layouts() && block
->default_layout
.flags
.q
.out
) {
1069 /* Assign global layout's xfb_buffer value. */
1070 block
->default_layout
.flags
.q
.xfb_buffer
= 1;
1071 block
->default_layout
.flags
.q
.explicit_xfb_buffer
= 0;
1072 block
->default_layout
.xfb_buffer
= state
->out_qualifier
->xfb_buffer
;
1075 foreach_list_typed (ast_declarator_list
, member
, link
, &block
->declarations
) {
1076 ast_type_qualifier
& qualifier
= member
->type
->qualifier
;
1077 if ((qualifier
.flags
.i
& interface_type_mask
) == 0) {
1078 /* GLSLangSpec.1.50.11, 4.3.7 (Interface Blocks):
1079 * "If no optional qualifier is used in a member declaration, the
1080 * qualifier of the variable is just in, out, or uniform as declared
1081 * by interface-qualifier."
1083 qualifier
.flags
.i
|= block_interface_qualifier
;
1084 } else if ((qualifier
.flags
.i
& interface_type_mask
) !=
1085 block_interface_qualifier
) {
1086 /* GLSLangSpec.1.50.11, 4.3.7 (Interface Blocks):
1087 * "If optional qualifiers are used, they can include interpolation
1088 * and storage qualifiers and they must declare an input, output,
1089 * or uniform variable consistent with the interface qualifier of
1092 _mesa_glsl_error(locp
, state
,
1093 "uniform/in/out qualifier on "
1094 "interface block member does not match "
1095 "the interface block");
1098 if (!(q
.flags
.q
.in
|| q
.flags
.q
.out
) && qualifier
.flags
.q
.invariant
)
1099 _mesa_glsl_error(locp
, state
,
1100 "invariant qualifiers can be used only "
1101 "in interface block members for shader "
1102 "inputs or outputs");
1107 _mesa_ast_type_qualifier_print(const struct ast_type_qualifier
*q
)
1109 if (q
->is_subroutine_decl())
1110 printf("subroutine ");
1112 if (q
->subroutine_list
) {
1113 printf("subroutine (");
1114 q
->subroutine_list
->print();
1118 if (q
->flags
.q
.constant
)
1121 if (q
->flags
.q
.invariant
)
1122 printf("invariant ");
1124 if (q
->flags
.q
.attribute
)
1125 printf("attribute ");
1127 if (q
->flags
.q
.varying
)
1130 if (q
->flags
.q
.in
&& q
->flags
.q
.out
)
1140 if (q
->flags
.q
.centroid
)
1141 printf("centroid ");
1142 if (q
->flags
.q
.sample
)
1144 if (q
->flags
.q
.patch
)
1146 if (q
->flags
.q
.uniform
)
1148 if (q
->flags
.q
.buffer
)
1150 if (q
->flags
.q
.smooth
)
1152 if (q
->flags
.q
.flat
)
1154 if (q
->flags
.q
.noperspective
)
1155 printf("noperspective ");
1160 ast_node::print(void) const
1162 printf("unhandled node ");
1166 ast_node::ast_node(void)
1168 this->location
.source
= 0;
1169 this->location
.first_line
= 0;
1170 this->location
.first_column
= 0;
1171 this->location
.last_line
= 0;
1172 this->location
.last_column
= 0;
1177 ast_opt_array_dimensions_print(const ast_array_specifier
*array_specifier
)
1179 if (array_specifier
)
1180 array_specifier
->print();
1185 ast_compound_statement::print(void) const
1189 foreach_list_typed(ast_node
, ast
, link
, &this->statements
) {
1197 ast_compound_statement::ast_compound_statement(int new_scope
,
1198 ast_node
*statements
)
1200 this->new_scope
= new_scope
;
1202 if (statements
!= NULL
) {
1203 this->statements
.push_degenerate_list_at_head(&statements
->link
);
1209 ast_expression::print(void) const
1213 case ast_mul_assign
:
1214 case ast_div_assign
:
1215 case ast_mod_assign
:
1216 case ast_add_assign
:
1217 case ast_sub_assign
:
1220 case ast_and_assign
:
1221 case ast_xor_assign
:
1223 subexpressions
[0]->print();
1224 printf("%s ", operator_string(oper
));
1225 subexpressions
[1]->print();
1228 case ast_field_selection
:
1229 subexpressions
[0]->print();
1230 printf(". %s ", primary_expression
.identifier
);
1239 printf("%s ", operator_string(oper
));
1240 subexpressions
[0]->print();
1245 subexpressions
[0]->print();
1246 printf("%s ", operator_string(oper
));
1249 case ast_conditional
:
1250 subexpressions
[0]->print();
1252 subexpressions
[1]->print();
1254 subexpressions
[2]->print();
1257 case ast_array_index
:
1258 subexpressions
[0]->print();
1260 subexpressions
[1]->print();
1264 case ast_function_call
: {
1265 subexpressions
[0]->print();
1268 foreach_list_typed (ast_node
, ast
, link
, &this->expressions
) {
1269 if (&ast
->link
!= this->expressions
.get_head())
1279 case ast_identifier
:
1280 printf("%s ", primary_expression
.identifier
);
1283 case ast_int_constant
:
1284 printf("%d ", primary_expression
.int_constant
);
1287 case ast_uint_constant
:
1288 printf("%u ", primary_expression
.uint_constant
);
1291 case ast_float_constant
:
1292 printf("%f ", primary_expression
.float_constant
);
1295 case ast_double_constant
:
1296 printf("%f ", primary_expression
.double_constant
);
1299 case ast_int64_constant
:
1300 printf("%" PRId64
" ", primary_expression
.int64_constant
);
1303 case ast_uint64_constant
:
1304 printf("%" PRIu64
" ", primary_expression
.uint64_constant
);
1307 case ast_bool_constant
:
1309 primary_expression
.bool_constant
1310 ? "true" : "false");
1313 case ast_sequence
: {
1315 foreach_list_typed (ast_node
, ast
, link
, & this->expressions
) {
1316 if (&ast
->link
!= this->expressions
.get_head())
1325 case ast_aggregate
: {
1327 foreach_list_typed (ast_node
, ast
, link
, & this->expressions
) {
1328 if (&ast
->link
!= this->expressions
.get_head())
1343 ast_expression::ast_expression(int oper
,
1344 ast_expression
*ex0
,
1345 ast_expression
*ex1
,
1346 ast_expression
*ex2
) :
1347 primary_expression()
1349 this->oper
= ast_operators(oper
);
1350 this->subexpressions
[0] = ex0
;
1351 this->subexpressions
[1] = ex1
;
1352 this->subexpressions
[2] = ex2
;
1353 this->non_lvalue_description
= NULL
;
1354 this->is_lhs
= false;
1359 ast_expression_statement::print(void) const
1362 expression
->print();
1368 ast_expression_statement::ast_expression_statement(ast_expression
*ex
) :
1376 ast_function::print(void) const
1378 return_type
->print();
1379 printf(" %s (", identifier
);
1381 foreach_list_typed(ast_node
, ast
, link
, & this->parameters
) {
1389 ast_function::ast_function(void)
1390 : return_type(NULL
), identifier(NULL
), is_definition(false),
1398 ast_fully_specified_type::print(void) const
1400 _mesa_ast_type_qualifier_print(& qualifier
);
1406 ast_parameter_declarator::print(void) const
1410 printf("%s ", identifier
);
1411 ast_opt_array_dimensions_print(array_specifier
);
1416 ast_function_definition::print(void) const
1424 ast_declaration::print(void) const
1426 printf("%s ", identifier
);
1427 ast_opt_array_dimensions_print(array_specifier
);
1431 initializer
->print();
1436 ast_declaration::ast_declaration(const char *identifier
,
1437 ast_array_specifier
*array_specifier
,
1438 ast_expression
*initializer
)
1440 this->identifier
= identifier
;
1441 this->array_specifier
= array_specifier
;
1442 this->initializer
= initializer
;
1447 ast_declarator_list::print(void) const
1449 assert(type
|| invariant
);
1454 printf("invariant ");
1458 foreach_list_typed (ast_node
, ast
, link
, & this->declarations
) {
1459 if (&ast
->link
!= this->declarations
.get_head())
1469 ast_declarator_list::ast_declarator_list(ast_fully_specified_type
*type
)
1472 this->invariant
= false;
1473 this->precise
= false;
1477 ast_jump_statement::print(void) const
1481 printf("continue; ");
1488 if (opt_return_value
)
1489 opt_return_value
->print();
1494 printf("discard; ");
1500 ast_jump_statement::ast_jump_statement(int mode
, ast_expression
*return_value
)
1501 : opt_return_value(NULL
)
1503 this->mode
= ast_jump_modes(mode
);
1505 if (mode
== ast_return
)
1506 opt_return_value
= return_value
;
1511 ast_selection_statement::print(void) const
1517 then_statement
->print();
1519 if (else_statement
) {
1521 else_statement
->print();
1526 ast_selection_statement::ast_selection_statement(ast_expression
*condition
,
1527 ast_node
*then_statement
,
1528 ast_node
*else_statement
)
1530 this->condition
= condition
;
1531 this->then_statement
= then_statement
;
1532 this->else_statement
= else_statement
;
1537 ast_switch_statement::print(void) const
1539 printf("switch ( ");
1540 test_expression
->print();
1547 ast_switch_statement::ast_switch_statement(ast_expression
*test_expression
,
1550 this->test_expression
= test_expression
;
1556 ast_switch_body::print(void) const
1559 if (stmts
!= NULL
) {
1566 ast_switch_body::ast_switch_body(ast_case_statement_list
*stmts
)
1568 this->stmts
= stmts
;
1572 void ast_case_label::print(void) const
1574 if (test_value
!= NULL
) {
1576 test_value
->print();
1579 printf("default: ");
1584 ast_case_label::ast_case_label(ast_expression
*test_value
)
1586 this->test_value
= test_value
;
1590 void ast_case_label_list::print(void) const
1592 foreach_list_typed(ast_node
, ast
, link
, & this->labels
) {
1599 ast_case_label_list::ast_case_label_list(void)
1604 void ast_case_statement::print(void) const
1607 foreach_list_typed(ast_node
, ast
, link
, & this->stmts
) {
1614 ast_case_statement::ast_case_statement(ast_case_label_list
*labels
)
1616 this->labels
= labels
;
1620 void ast_case_statement_list::print(void) const
1622 foreach_list_typed(ast_node
, ast
, link
, & this->cases
) {
1628 ast_case_statement_list::ast_case_statement_list(void)
1634 ast_iteration_statement::print(void) const
1640 init_statement
->print();
1647 if (rest_expression
)
1648 rest_expression
->print();
1674 ast_iteration_statement::ast_iteration_statement(int mode
,
1676 ast_node
*condition
,
1677 ast_expression
*rest_expression
,
1680 this->mode
= ast_iteration_modes(mode
);
1681 this->init_statement
= init
;
1682 this->condition
= condition
;
1683 this->rest_expression
= rest_expression
;
1689 ast_struct_specifier::print(void) const
1691 printf("struct %s { ", name
);
1692 foreach_list_typed(ast_node
, ast
, link
, &this->declarations
) {
1699 ast_struct_specifier::ast_struct_specifier(const char *identifier
,
1700 ast_declarator_list
*declarator_list
)
1701 : name(identifier
), layout(NULL
), declarations(), is_declaration(true),
1704 this->declarations
.push_degenerate_list_at_head(&declarator_list
->link
);
1707 void ast_subroutine_list::print(void) const
1709 foreach_list_typed (ast_node
, ast
, link
, & this->declarations
) {
1710 if (&ast
->link
!= this->declarations
.get_head())
1717 set_shader_inout_layout(struct gl_shader
*shader
,
1718 struct _mesa_glsl_parse_state
*state
)
1720 /* Should have been prevented by the parser. */
1721 if (shader
->Stage
!= MESA_SHADER_GEOMETRY
&&
1722 shader
->Stage
!= MESA_SHADER_TESS_EVAL
&&
1723 shader
->Stage
!= MESA_SHADER_COMPUTE
) {
1724 assert(!state
->in_qualifier
->flags
.i
);
1727 if (shader
->Stage
!= MESA_SHADER_COMPUTE
) {
1728 /* Should have been prevented by the parser. */
1729 assert(!state
->cs_input_local_size_specified
);
1730 assert(!state
->cs_input_local_size_variable_specified
);
1731 assert(state
->cs_derivative_group
== DERIVATIVE_GROUP_NONE
);
1734 if (shader
->Stage
!= MESA_SHADER_FRAGMENT
) {
1735 /* Should have been prevented by the parser. */
1736 assert(!state
->fs_uses_gl_fragcoord
);
1737 assert(!state
->fs_redeclares_gl_fragcoord
);
1738 assert(!state
->fs_pixel_center_integer
);
1739 assert(!state
->fs_origin_upper_left
);
1740 assert(!state
->fs_early_fragment_tests
);
1741 assert(!state
->fs_inner_coverage
);
1742 assert(!state
->fs_post_depth_coverage
);
1743 assert(!state
->fs_pixel_interlock_ordered
);
1744 assert(!state
->fs_pixel_interlock_unordered
);
1745 assert(!state
->fs_sample_interlock_ordered
);
1746 assert(!state
->fs_sample_interlock_unordered
);
1749 for (unsigned i
= 0; i
< MAX_FEEDBACK_BUFFERS
; i
++) {
1750 if (state
->out_qualifier
->out_xfb_stride
[i
]) {
1751 unsigned xfb_stride
;
1752 if (state
->out_qualifier
->out_xfb_stride
[i
]->
1753 process_qualifier_constant(state
, "xfb_stride", &xfb_stride
,
1755 shader
->TransformFeedbackBufferStride
[i
] = xfb_stride
;
1760 switch (shader
->Stage
) {
1761 case MESA_SHADER_TESS_CTRL
:
1762 shader
->info
.TessCtrl
.VerticesOut
= 0;
1763 if (state
->tcs_output_vertices_specified
) {
1765 if (state
->out_qualifier
->vertices
->
1766 process_qualifier_constant(state
, "vertices", &vertices
,
1769 YYLTYPE loc
= state
->out_qualifier
->vertices
->get_location();
1770 if (vertices
> state
->Const
.MaxPatchVertices
) {
1771 _mesa_glsl_error(&loc
, state
, "vertices (%d) exceeds "
1772 "GL_MAX_PATCH_VERTICES", vertices
);
1774 shader
->info
.TessCtrl
.VerticesOut
= vertices
;
1778 case MESA_SHADER_TESS_EVAL
:
1779 shader
->info
.TessEval
.PrimitiveMode
= PRIM_UNKNOWN
;
1780 if (state
->in_qualifier
->flags
.q
.prim_type
)
1781 shader
->info
.TessEval
.PrimitiveMode
= state
->in_qualifier
->prim_type
;
1783 shader
->info
.TessEval
.Spacing
= TESS_SPACING_UNSPECIFIED
;
1784 if (state
->in_qualifier
->flags
.q
.vertex_spacing
)
1785 shader
->info
.TessEval
.Spacing
= state
->in_qualifier
->vertex_spacing
;
1787 shader
->info
.TessEval
.VertexOrder
= 0;
1788 if (state
->in_qualifier
->flags
.q
.ordering
)
1789 shader
->info
.TessEval
.VertexOrder
= state
->in_qualifier
->ordering
;
1791 shader
->info
.TessEval
.PointMode
= -1;
1792 if (state
->in_qualifier
->flags
.q
.point_mode
)
1793 shader
->info
.TessEval
.PointMode
= state
->in_qualifier
->point_mode
;
1795 case MESA_SHADER_GEOMETRY
:
1796 shader
->info
.Geom
.VerticesOut
= -1;
1797 if (state
->out_qualifier
->flags
.q
.max_vertices
) {
1798 unsigned qual_max_vertices
;
1799 if (state
->out_qualifier
->max_vertices
->
1800 process_qualifier_constant(state
, "max_vertices",
1801 &qual_max_vertices
, true)) {
1803 if (qual_max_vertices
> state
->Const
.MaxGeometryOutputVertices
) {
1804 YYLTYPE loc
= state
->out_qualifier
->max_vertices
->get_location();
1805 _mesa_glsl_error(&loc
, state
,
1806 "maximum output vertices (%d) exceeds "
1807 "GL_MAX_GEOMETRY_OUTPUT_VERTICES",
1810 shader
->info
.Geom
.VerticesOut
= qual_max_vertices
;
1814 if (state
->gs_input_prim_type_specified
) {
1815 shader
->info
.Geom
.InputType
= state
->in_qualifier
->prim_type
;
1817 shader
->info
.Geom
.InputType
= PRIM_UNKNOWN
;
1820 if (state
->out_qualifier
->flags
.q
.prim_type
) {
1821 shader
->info
.Geom
.OutputType
= state
->out_qualifier
->prim_type
;
1823 shader
->info
.Geom
.OutputType
= PRIM_UNKNOWN
;
1826 shader
->info
.Geom
.Invocations
= 0;
1827 if (state
->in_qualifier
->flags
.q
.invocations
) {
1828 unsigned invocations
;
1829 if (state
->in_qualifier
->invocations
->
1830 process_qualifier_constant(state
, "invocations",
1831 &invocations
, false)) {
1833 YYLTYPE loc
= state
->in_qualifier
->invocations
->get_location();
1834 if (invocations
> state
->Const
.MaxGeometryShaderInvocations
) {
1835 _mesa_glsl_error(&loc
, state
,
1836 "invocations (%d) exceeds "
1837 "GL_MAX_GEOMETRY_SHADER_INVOCATIONS",
1840 shader
->info
.Geom
.Invocations
= invocations
;
1845 case MESA_SHADER_COMPUTE
:
1846 if (state
->cs_input_local_size_specified
) {
1847 for (int i
= 0; i
< 3; i
++)
1848 shader
->info
.Comp
.LocalSize
[i
] = state
->cs_input_local_size
[i
];
1850 for (int i
= 0; i
< 3; i
++)
1851 shader
->info
.Comp
.LocalSize
[i
] = 0;
1854 shader
->info
.Comp
.LocalSizeVariable
=
1855 state
->cs_input_local_size_variable_specified
;
1857 shader
->info
.Comp
.DerivativeGroup
= state
->cs_derivative_group
;
1859 if (state
->NV_compute_shader_derivatives_enable
) {
1860 /* We allow multiple cs_input_layout nodes, but do not store them in
1861 * a convenient place, so for now live with an empty location error.
1864 if (shader
->info
.Comp
.DerivativeGroup
== DERIVATIVE_GROUP_QUADS
) {
1865 if (shader
->info
.Comp
.LocalSize
[0] % 2 != 0) {
1866 _mesa_glsl_error(&loc
, state
, "derivative_group_quadsNV must be used with a "
1867 "local group size whose first dimension "
1868 "is a multiple of 2\n");
1870 if (shader
->info
.Comp
.LocalSize
[1] % 2 != 0) {
1871 _mesa_glsl_error(&loc
, state
, "derivative_group_quadsNV must be used with a "
1872 "local group size whose second dimension "
1873 "is a multiple of 2\n");
1875 } else if (shader
->info
.Comp
.DerivativeGroup
== DERIVATIVE_GROUP_LINEAR
) {
1876 if ((shader
->info
.Comp
.LocalSize
[0] *
1877 shader
->info
.Comp
.LocalSize
[1] *
1878 shader
->info
.Comp
.LocalSize
[2]) % 4 != 0) {
1879 _mesa_glsl_error(&loc
, state
, "derivative_group_linearNV must be used with a "
1880 "local group size whose total number of invocations "
1881 "is a multiple of 4\n");
1888 case MESA_SHADER_FRAGMENT
:
1889 shader
->redeclares_gl_fragcoord
= state
->fs_redeclares_gl_fragcoord
;
1890 shader
->uses_gl_fragcoord
= state
->fs_uses_gl_fragcoord
;
1891 shader
->pixel_center_integer
= state
->fs_pixel_center_integer
;
1892 shader
->origin_upper_left
= state
->fs_origin_upper_left
;
1893 shader
->ARB_fragment_coord_conventions_enable
=
1894 state
->ARB_fragment_coord_conventions_enable
;
1895 shader
->EarlyFragmentTests
= state
->fs_early_fragment_tests
;
1896 shader
->InnerCoverage
= state
->fs_inner_coverage
;
1897 shader
->PostDepthCoverage
= state
->fs_post_depth_coverage
;
1898 shader
->PixelInterlockOrdered
= state
->fs_pixel_interlock_ordered
;
1899 shader
->PixelInterlockUnordered
= state
->fs_pixel_interlock_unordered
;
1900 shader
->SampleInterlockOrdered
= state
->fs_sample_interlock_ordered
;
1901 shader
->SampleInterlockUnordered
= state
->fs_sample_interlock_unordered
;
1902 shader
->BlendSupport
= state
->fs_blend_support
;
1906 /* Nothing to do. */
1910 shader
->bindless_sampler
= state
->bindless_sampler_specified
;
1911 shader
->bindless_image
= state
->bindless_image_specified
;
1912 shader
->bound_sampler
= state
->bound_sampler_specified
;
1913 shader
->bound_image
= state
->bound_image_specified
;
1916 /* src can be NULL if only the symbols found in the exec_list should be
1920 _mesa_glsl_copy_symbols_from_table(struct exec_list
*shader_ir
,
1921 struct glsl_symbol_table
*src
,
1922 struct glsl_symbol_table
*dest
)
1924 foreach_in_list (ir_instruction
, ir
, shader_ir
) {
1925 switch (ir
->ir_type
) {
1926 case ir_type_function
:
1927 dest
->add_function((ir_function
*) ir
);
1929 case ir_type_variable
: {
1930 ir_variable
*const var
= (ir_variable
*) ir
;
1932 if (var
->data
.mode
!= ir_var_temporary
)
1933 dest
->add_variable(var
);
1942 /* Explicitly copy the gl_PerVertex interface definitions because these
1943 * are needed to check they are the same during the interstage link.
1944 * They can’t necessarily be found via the exec_list because the members
1945 * might not be referenced. The GL spec still requires that they match
1948 const glsl_type
*iface
=
1949 src
->get_interface("gl_PerVertex", ir_var_shader_in
);
1951 dest
->add_interface(iface
->name
, iface
, ir_var_shader_in
);
1953 iface
= src
->get_interface("gl_PerVertex", ir_var_shader_out
);
1955 dest
->add_interface(iface
->name
, iface
, ir_var_shader_out
);
1962 assign_subroutine_indexes(struct _mesa_glsl_parse_state
*state
)
1967 for (j
= 0; j
< state
->num_subroutines
; j
++) {
1968 while (state
->subroutines
[j
]->subroutine_index
== -1) {
1969 for (k
= 0; k
< state
->num_subroutines
; k
++) {
1970 if (state
->subroutines
[k
]->subroutine_index
== index
)
1972 else if (k
== state
->num_subroutines
- 1) {
1973 state
->subroutines
[j
]->subroutine_index
= index
;
1982 add_builtin_defines(struct _mesa_glsl_parse_state
*state
,
1983 void (*add_builtin_define
)(struct glcpp_parser
*, const char *, int),
1984 struct glcpp_parser
*data
,
1988 unsigned gl_version
= state
->ctx
->Extensions
.Version
;
1989 gl_api api
= state
->ctx
->API
;
1991 if (gl_version
!= 0xff) {
1993 for (i
= 0; i
< state
->num_supported_versions
; i
++) {
1994 if (state
->supported_versions
[i
].ver
== version
&&
1995 state
->supported_versions
[i
].es
== es
) {
1996 gl_version
= state
->supported_versions
[i
].gl_ver
;
2001 if (i
== state
->num_supported_versions
)
2006 api
= API_OPENGLES2
;
2008 for (unsigned i
= 0;
2009 i
< ARRAY_SIZE(_mesa_glsl_supported_extensions
); ++i
) {
2010 const _mesa_glsl_extension
*extension
2011 = &_mesa_glsl_supported_extensions
[i
];
2012 if (extension
->compatible_with_state(state
, api
, gl_version
)) {
2013 add_builtin_define(data
, extension
->name
, 1);
2018 /* Implements parsing checks that we can't do during parsing */
2020 do_late_parsing_checks(struct _mesa_glsl_parse_state
*state
)
2022 if (state
->stage
== MESA_SHADER_COMPUTE
&& !state
->has_compute_shader()) {
2024 memset(&loc
, 0, sizeof(loc
));
2025 _mesa_glsl_error(&loc
, state
, "Compute shaders require "
2026 "GLSL 4.30 or GLSL ES 3.10");
2031 opt_shader_and_create_symbol_table(struct gl_context
*ctx
,
2032 struct glsl_symbol_table
*source_symbols
,
2033 struct gl_shader
*shader
)
2035 assert(shader
->CompileStatus
!= COMPILE_FAILURE
&&
2036 !shader
->ir
->is_empty());
2038 struct gl_shader_compiler_options
*options
=
2039 &ctx
->Const
.ShaderCompilerOptions
[shader
->Stage
];
2041 /* Do some optimization at compile time to reduce shader IR size
2042 * and reduce later work if the same shader is linked multiple times
2044 if (ctx
->Const
.GLSLOptimizeConservatively
) {
2045 /* Run it just once. */
2046 do_common_optimization(shader
->ir
, false, false, options
,
2047 ctx
->Const
.NativeIntegers
);
2049 /* Repeat it until it stops making changes. */
2050 while (do_common_optimization(shader
->ir
, false, false, options
,
2051 ctx
->Const
.NativeIntegers
))
2055 validate_ir_tree(shader
->ir
);
2057 enum ir_variable_mode other
;
2058 switch (shader
->Stage
) {
2059 case MESA_SHADER_VERTEX
:
2060 other
= ir_var_shader_in
;
2062 case MESA_SHADER_FRAGMENT
:
2063 other
= ir_var_shader_out
;
2066 /* Something invalid to ensure optimize_dead_builtin_uniforms
2067 * doesn't remove anything other than uniforms or constants.
2069 other
= ir_var_mode_count
;
2073 optimize_dead_builtin_variables(shader
->ir
, other
);
2075 validate_ir_tree(shader
->ir
);
2077 /* Retain any live IR, but trash the rest. */
2078 reparent_ir(shader
->ir
, shader
->ir
);
2080 /* Destroy the symbol table. Create a new symbol table that contains only
2081 * the variables and functions that still exist in the IR. The symbol
2082 * table will be used later during linking.
2084 * There must NOT be any freed objects still referenced by the symbol
2085 * table. That could cause the linker to dereference freed memory.
2087 * We don't have to worry about types or interface-types here because those
2088 * are fly-weights that are looked up by glsl_type.
2090 _mesa_glsl_copy_symbols_from_table(shader
->ir
, source_symbols
,
2095 _mesa_glsl_compile_shader(struct gl_context
*ctx
, struct gl_shader
*shader
,
2096 bool dump_ast
, bool dump_hir
, bool force_recompile
)
2098 const char *source
= force_recompile
&& shader
->FallbackSource
?
2099 shader
->FallbackSource
: shader
->Source
;
2101 if (!force_recompile
) {
2104 disk_cache_compute_key(ctx
->Cache
, source
, strlen(source
),
2106 if (disk_cache_has_key(ctx
->Cache
, shader
->sha1
)) {
2107 /* We've seen this shader before and know it compiles */
2108 if (ctx
->_Shader
->Flags
& GLSL_CACHE_INFO
) {
2109 _mesa_sha1_format(buf
, shader
->sha1
);
2110 fprintf(stderr
, "deferring compile of shader: %s\n", buf
);
2112 shader
->CompileStatus
= COMPILE_SKIPPED
;
2114 free((void *)shader
->FallbackSource
);
2115 shader
->FallbackSource
= NULL
;
2120 /* We should only ever end up here if a re-compile has been forced by a
2121 * shader cache miss. In which case we can skip the compile if its
2122 * already be done by a previous fallback or the initial compile call.
2124 if (shader
->CompileStatus
== COMPILE_SUCCESS
)
2128 struct _mesa_glsl_parse_state
*state
=
2129 new(shader
) _mesa_glsl_parse_state(ctx
, shader
->Stage
, shader
);
2131 if (ctx
->Const
.GenerateTemporaryNames
)
2132 (void) p_atomic_cmpxchg(&ir_variable::temporaries_allocate_names
,
2135 state
->error
= glcpp_preprocess(state
, &source
, &state
->info_log
,
2136 add_builtin_defines
, state
, ctx
);
2138 if (!state
->error
) {
2139 _mesa_glsl_lexer_ctor(state
, source
);
2140 _mesa_glsl_parse(state
);
2141 _mesa_glsl_lexer_dtor(state
);
2142 do_late_parsing_checks(state
);
2146 foreach_list_typed(ast_node
, ast
, link
, &state
->translation_unit
) {
2152 ralloc_free(shader
->ir
);
2153 shader
->ir
= new(shader
) exec_list
;
2154 if (!state
->error
&& !state
->translation_unit
.is_empty())
2155 _mesa_ast_to_hir(shader
->ir
, state
);
2157 if (!state
->error
) {
2158 validate_ir_tree(shader
->ir
);
2160 /* Print out the unoptimized IR. */
2162 _mesa_print_ir(stdout
, shader
->ir
, state
);
2166 if (shader
->InfoLog
)
2167 ralloc_free(shader
->InfoLog
);
2170 set_shader_inout_layout(shader
, state
);
2172 shader
->symbols
= new(shader
->ir
) glsl_symbol_table
;
2173 shader
->CompileStatus
= state
->error
? COMPILE_FAILURE
: COMPILE_SUCCESS
;
2174 shader
->InfoLog
= state
->info_log
;
2175 shader
->Version
= state
->language_version
;
2176 shader
->IsES
= state
->es_shader
;
2178 if (!state
->error
&& !shader
->ir
->is_empty()) {
2179 assign_subroutine_indexes(state
);
2180 lower_subroutine(shader
->ir
, state
);
2181 opt_shader_and_create_symbol_table(ctx
, state
->symbols
, shader
);
2184 if (!force_recompile
) {
2185 free((void *)shader
->FallbackSource
);
2186 shader
->FallbackSource
= NULL
;
2189 delete state
->symbols
;
2192 if (ctx
->Cache
&& shader
->CompileStatus
== COMPILE_SUCCESS
) {
2194 disk_cache_put_key(ctx
->Cache
, shader
->sha1
);
2195 if (ctx
->_Shader
->Flags
& GLSL_CACHE_INFO
) {
2196 _mesa_sha1_format(sha1_buf
, shader
->sha1
);
2197 fprintf(stderr
, "marking shader: %s\n", sha1_buf
);
2204 * Do the set of common optimizations passes
2206 * \param ir List of instructions to be optimized
2207 * \param linked Is the shader linked? This enables
2208 * optimizations passes that remove code at
2209 * global scope and could cause linking to
2211 * \param uniform_locations_assigned Have locations already been assigned for
2212 * uniforms? This prevents the declarations
2213 * of unused uniforms from being removed.
2214 * The setting of this flag only matters if
2215 * \c linked is \c true.
2216 * \param options The driver's preferred shader options.
2217 * \param native_integers Selects optimizations that depend on the
2218 * implementations supporting integers
2219 * natively (as opposed to supporting
2220 * integers in floating point registers).
2223 do_common_optimization(exec_list
*ir
, bool linked
,
2224 bool uniform_locations_assigned
,
2225 const struct gl_shader_compiler_options
*options
,
2226 bool native_integers
)
2228 const bool debug
= false;
2229 GLboolean progress
= GL_FALSE
;
2231 #define OPT(PASS, ...) do { \
2233 fprintf(stderr, "START GLSL optimization %s\n", #PASS); \
2234 const bool opt_progress = PASS(__VA_ARGS__); \
2235 progress = opt_progress || progress; \
2237 _mesa_print_ir(stderr, ir, NULL); \
2238 fprintf(stderr, "GLSL optimization %s: %s progress\n", \
2239 #PASS, opt_progress ? "made" : "no"); \
2241 progress = PASS(__VA_ARGS__) || progress; \
2245 OPT(lower_instructions
, ir
, SUB_TO_ADD_NEG
);
2248 OPT(do_function_inlining
, ir
);
2249 OPT(do_dead_functions
, ir
);
2250 OPT(do_structure_splitting
, ir
);
2252 propagate_invariance(ir
);
2253 OPT(do_if_simplification
, ir
);
2254 OPT(opt_flatten_nested_if_blocks
, ir
);
2255 OPT(opt_conditional_discard
, ir
);
2256 OPT(do_copy_propagation_elements
, ir
);
2258 if (options
->OptimizeForAOS
&& !linked
)
2259 OPT(opt_flip_matrices
, ir
);
2261 if (linked
&& options
->OptimizeForAOS
) {
2262 OPT(do_vectorize
, ir
);
2266 OPT(do_dead_code
, ir
, uniform_locations_assigned
);
2268 OPT(do_dead_code_unlinked
, ir
);
2269 OPT(do_dead_code_local
, ir
);
2270 OPT(do_tree_grafting
, ir
);
2271 OPT(do_constant_propagation
, ir
);
2273 OPT(do_constant_variable
, ir
);
2275 OPT(do_constant_variable_unlinked
, ir
);
2276 OPT(do_constant_folding
, ir
);
2277 OPT(do_minmax_prune
, ir
);
2278 OPT(do_rebalance_tree
, ir
);
2279 OPT(do_algebraic
, ir
, native_integers
, options
);
2280 OPT(do_lower_jumps
, ir
, true, true, options
->EmitNoMainReturn
,
2281 options
->EmitNoCont
, options
->EmitNoLoops
);
2282 OPT(do_vec_index_to_swizzle
, ir
);
2283 OPT(lower_vector_insert
, ir
, false);
2284 OPT(optimize_swizzles
, ir
);
2286 OPT(optimize_split_arrays
, ir
, linked
);
2287 OPT(optimize_redundant_jumps
, ir
);
2289 if (options
->MaxUnrollIterations
) {
2290 loop_state
*ls
= analyze_loop_variables(ir
);
2291 if (ls
->loop_found
) {
2292 bool loop_progress
= unroll_loops(ir
, ls
, options
);
2293 while (loop_progress
) {
2294 loop_progress
= false;
2295 loop_progress
|= do_constant_propagation(ir
);
2296 loop_progress
|= do_if_simplification(ir
);
2298 /* Some drivers only call do_common_optimization() once rather
2299 * than in a loop. So we must call do_lower_jumps() after
2300 * unrolling a loop because for drivers that use LLVM validation
2301 * will fail if a jump is not the last instruction in the block.
2302 * For example the following will fail LLVM validation:
2307 * (assign (x) (var_ref v124) (expression int + (var_ref v124)
2308 * (constant int (1)) ) )
2311 loop_progress
|= do_lower_jumps(ir
, true, true,
2312 options
->EmitNoMainReturn
,
2313 options
->EmitNoCont
,
2314 options
->EmitNoLoops
);
2316 progress
|= loop_progress
;
2329 * To be called at GL context ctor.
2332 _mesa_init_shader_compiler_types(void)
2334 glsl_type_singleton_init_or_ref();
2338 * To be called at GL context dtor.
2341 _mesa_destroy_shader_compiler_types(void)
2343 glsl_type_singleton_decref();
2347 * To be called at GL teardown time, this frees compiler datastructures.
2349 * After calling this, any previously compiled shaders and shader
2350 * programs would be invalid. So this should happen at approximately
2354 _mesa_destroy_shader_compiler(void)
2356 _mesa_destroy_shader_compiler_caches();
2360 * Releases compiler caches to trade off performance for memory.
2362 * Intended to be used with glReleaseShaderCompiler().
2365 _mesa_destroy_shader_compiler_caches(void)
2367 _mesa_glsl_release_builtin_functions();